SEO SQUIRRLY™ - Version 10.0.06

Version Description

  • 06/01/2020 =
  • Update - Inspect URL when the Audit can't be made
  • Update - Add all the Features Categories in the Overview
  • Update - Added the icons for all features
  • Fix - Better detection on URL crawling
  • Fix - Compatibility with cache plugins like Hummingbird and Cachify
  • Fix - Small CSS bugs and PHP notifications
Download this release

Release Info

Developer cifi
Plugin Icon 128x128 SEO SQUIRRLY™
Version 10.0.06
Comparing to
See all releases

Code changes from version 10.0.04 to 10.0.06

Files changed (90) hide show
  1. classes/RemoteController.php +23 -0
  2. classes/helpers/DevKit.php +4 -4
  3. classes/helpers/Tools.php +4 -2
  4. config.json +2 -1
  5. controllers/CheckSeo.php +1 -1
  6. controllers/Dashboard.php +1 -1
  7. controllers/FocusPages.php +22 -1
  8. controllers/Frontend.php +19 -15
  9. controllers/Menu.php +22 -10
  10. controllers/Snippet.php +8 -1
  11. core/BlockFeatures.php +12 -0
  12. languages/squirrly-seo-cs_CZ.mo +0 -0
  13. languages/squirrly-seo-cs_CZ.po +838 -497
  14. languages/squirrly-seo-de_DE.mo +0 -0
  15. languages/squirrly-seo-de_DE.po +864 -499
  16. languages/squirrly-seo-en_US.mo +0 -0
  17. languages/squirrly-seo-en_US.po +852 -516
  18. languages/squirrly-seo-ro_RO.mo +0 -0
  19. languages/squirrly-seo-ro_RO.po +985 -544
  20. models/Assistant.php +1 -1
  21. models/CheckSeo.php +70 -62
  22. models/Compatibility.php +28 -6
  23. models/Frontend.php +6 -4
  24. models/Menu.php +8 -8
  25. models/bulkseo/Metas.php +5 -8
  26. models/bulkseo/Opengraph.php +10 -4
  27. models/bulkseo/Twittercard.php +10 -4
  28. models/focuspages/Indexability.php +5 -0
  29. models/focuspages/Keyword.php +6 -0
  30. models/focuspages/Snippet.php +10 -8
  31. readme.txt +17 -0
  32. squirrly.php +3 -3
  33. view/Assistant/Settings.php +6 -0
  34. view/Audits/Addpage.php +1 -1
  35. view/Audits/Audit.php +1 -1
  36. view/Audits/AuditPageRow.php +5 -3
  37. view/Audits/Audits.php +14 -1
  38. view/Audits/Compare.php +1 -1
  39. view/Audits/Settings.php +1 -1
  40. view/Blocks/Account.php +11 -1
  41. view/Blocks/Assistant.php +1 -35
  42. view/Blocks/Connect.php +35 -33
  43. view/Blocks/Dashboard.php +6 -10
  44. view/Blocks/Features.php +315 -0
  45. view/Blocks/Stats.php +24 -1
  46. view/Blocks/VersionBar.php +10 -7
  47. view/BulkSeo/Bulkseo.php +1 -1
  48. view/Dashboard.php +0 -62
  49. view/FocusPages/Addpage.php +2 -2
  50. view/FocusPages/FocusPageRow.php +9 -9
  51. view/FocusPages/Pagelist.php +14 -1
  52. view/FocusPages/Settings.php +1 -1
  53. view/Goals/CheckSeo.php +2 -2
  54. view/Overview.php +67 -10
  55. view/Ranking/Rankings.php +3 -3
  56. view/Ranking/Settings.php +1 -2
  57. view/Research/Briefcase.php +4 -4
  58. view/Research/Labels.php +3 -3
  59. view/SeoSettings/Advanced.php +8 -13
  60. view/SeoSettings/Automation.php +1 -1
  61. view/SeoSettings/Bulkseo.php +0 -242
  62. view/SeoSettings/BulkseoRow.php +0 -39
  63. view/SeoSettings/Favicon.php +2 -2
  64. view/SeoSettings/Jsonld.php +1 -1
  65. view/SeoSettings/Metas.php +2 -2
  66. view/SeoSettings/Robots.php +2 -2
  67. view/SeoSettings/Sitemap.php +2 -2
  68. view/SeoSettings/Social.php +3 -3
  69. view/SeoSettings/Tracking.php +2 -2
  70. view/SeoSettings/Webmaster.php +2 -2
  71. view/assets/css/briefcase.css +4 -1
  72. view/assets/css/briefcase.min.css +1 -1
  73. view/assets/css/global.css +44 -1
  74. view/assets/css/global.min.css +1 -1
  75. view/assets/css/stats.css +9 -2
  76. view/assets/css/stats.min.css +1 -1
  77. view/assets/img/logos/favicon_92.png +0 -0
  78. view/assets/img/logos/goals_92.png +0 -0
  79. view/assets/img/logos/journey_92.png +0 -0
  80. view/assets/img/logos/jsonld_92.png +0 -0
  81. view/assets/img/logos/metas_92.png +0 -0
  82. view/assets/img/logos/redirect_92.png +0 -0
  83. view/assets/img/logos/robots_92.png +0 -0
  84. view/assets/img/logos/sitemap_92.png +0 -0
  85. view/assets/img/logos/social_92.png +0 -0
  86. view/assets/img/squirrly_features.png +0 -0
  87. view/assets/js/audits.js +41 -2
  88. view/assets/js/audits.min.js +1 -1
  89. view/assets/js/focuspages.js +39 -0
  90. view/assets/js/focuspages.min.js +1 -1
classes/RemoteController.php CHANGED
@@ -970,6 +970,29 @@ class SQ_Classes_RemoteController {
970
  return false;
971
  }
972
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
973
  /**************************************** CONNECTIONS */
974
  /**
975
  * Disconnect Google Analytics account
970
  return false;
971
  }
972
 
973
+ /**
974
+ * Get all focus pages and add them in the SQ_Models_Domain_FocusPage object
975
+ * Add the audit data for each focus page
976
+ * @param array $args
977
+ * @return SQ_Models_Domain_FocusPage|WP_Error|false
978
+ */
979
+ public static function getInspectURL($args = array()) {
980
+ self::$apimethod = 'get'; //call method
981
+
982
+ $json = json_decode(self::apiCall('api/posts/crawl', $args));
983
+
984
+ if (isset($json->error) && $json->error <> '') {
985
+ return (new WP_Error('api_error', $json->error));
986
+ } elseif (!isset($json->data)) {
987
+ return (new WP_Error('api_error', 'no_data'));
988
+ }
989
+
990
+ if (!empty($json->data)) {
991
+ return $json->data;
992
+ }
993
+
994
+ return false;
995
+ }
996
  /**************************************** CONNECTIONS */
997
  /**
998
  * Disconnect Google Analytics account
classes/helpers/DevKit.php CHANGED
@@ -6,7 +6,7 @@ class SQ_Classes_Helpers_DevKit {
6
  public static $package;
7
 
8
  public function __construct() {
9
- if (SQ_Classes_Helpers_Tools::getOption('sq_name') <> '') {
10
  if (isset($_SERVER['REQUEST_URI']) && function_exists('get_plugin_data')) {
11
  if (strpos($_SERVER['REQUEST_URI'], '/plugins.php') !== false) {
12
  $data = get_plugin_data(_SQ_ROOT_DIR_ . 'squirrly.php');
@@ -39,7 +39,7 @@ class SQ_Classes_Helpers_DevKit {
39
  SQ_Classes_Helpers_Tools::$options = @array_replace_recursive(SQ_Classes_Helpers_Tools::$options, self::$package['settings']);
40
 
41
  if (isset(self::$package['name']) && self::$package['name'] <> '') {
42
- SQ_Classes_Helpers_Tools::$options['sq_name'] = self::$package['name'] . ' - Squirrly Special';
43
  }
44
 
45
  SQ_Classes_Helpers_Tools::saveOptions();
@@ -64,8 +64,8 @@ class SQ_Classes_Helpers_DevKit {
64
  * @return mixed
65
  */
66
  public function changeString($string) {
67
- if (isset(self::$plugin['name']) && SQ_Classes_Helpers_Tools::getOption('sq_name') <> '') {
68
- return str_replace(self::$plugin['name'], SQ_Classes_Helpers_Tools::getOption('sq_name'), $string);
69
  }
70
  return $string;
71
  }
6
  public static $package;
7
 
8
  public function __construct() {
9
+ if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_name') <> '') {
10
  if (isset($_SERVER['REQUEST_URI']) && function_exists('get_plugin_data')) {
11
  if (strpos($_SERVER['REQUEST_URI'], '/plugins.php') !== false) {
12
  $data = get_plugin_data(_SQ_ROOT_DIR_ . 'squirrly.php');
39
  SQ_Classes_Helpers_Tools::$options = @array_replace_recursive(SQ_Classes_Helpers_Tools::$options, self::$package['settings']);
40
 
41
  if (isset(self::$package['name']) && self::$package['name'] <> '') {
42
+ SQ_Classes_Helpers_Tools::$options['sq_devkit_name'] = self::$package['name'];
43
  }
44
 
45
  SQ_Classes_Helpers_Tools::saveOptions();
64
  * @return mixed
65
  */
66
  public function changeString($string) {
67
+ if (isset(self::$plugin['name']) && SQ_Classes_Helpers_Tools::getOption('sq_devkit_name') <> '') {
68
+ return str_replace(self::$plugin['name'], SQ_Classes_Helpers_Tools::getOption('sq_devkit_name'), $string);
69
  }
70
  return $string;
71
  }
classes/helpers/Tools.php CHANGED
@@ -62,6 +62,8 @@ class SQ_Classes_Helpers_Tools {
62
  function hookInit() {
63
  //Load the languages pack
64
  $this->loadMultilanguage();
 
 
65
  //add extra links to the plugin in the Plugins list
66
  add_filter("plugin_row_meta", array($this, 'hookExtraLinks'), 10, 4);
67
  //add setting link in plugin
@@ -123,8 +125,8 @@ class SQ_Classes_Helpers_Tools {
123
  'sq_cloud_token' => false,
124
  'sq_offer' => false,
125
  // dev kit
126
- 'sq_logo' => _SQ_THEME_URL_ . 'img/settings/menu_icon_16.png',
127
- 'sq_name' => '',
128
  //Advanced settings
129
  'sq_seoexpert' => 0,
130
  //later buffer load
62
  function hookInit() {
63
  //Load the languages pack
64
  $this->loadMultilanguage();
65
+ //Check the Dev Kit settings
66
+ SQ_Classes_ObjController::getClass('SQ_Classes_Helpers_DevKit');
67
  //add extra links to the plugin in the Plugins list
68
  add_filter("plugin_row_meta", array($this, 'hookExtraLinks'), 10, 4);
69
  //add setting link in plugin
125
  'sq_cloud_token' => false,
126
  'sq_offer' => false,
127
  // dev kit
128
+ 'sq_devkit_logo' => false,
129
+ 'sq_devkit_name' => false,
130
  //Advanced settings
131
  'sq_seoexpert' => 0,
132
  //later buffer load
config.json CHANGED
@@ -44,7 +44,8 @@
44
  "sq_focuspages_getpage",
45
  "sq_focuspages_addnew",
46
  "sq_focuspages_update",
47
- "sq_focuspages_delete"
 
48
  ]
49
  },
50
  "active": "1",
44
  "sq_focuspages_getpage",
45
  "sq_focuspages_addnew",
46
  "sq_focuspages_update",
47
+ "sq_focuspages_delete",
48
+ "sq_focuspages_inspecturl"
49
  ]
50
  },
51
  "active": "1",
controllers/CheckSeo.php CHANGED
@@ -54,7 +54,7 @@ class SQ_Controllers_CheckSeo extends SQ_Classes_FrontController {
54
  if (!empty($report)) {
55
 
56
  if (!isset($this->model->dbtasks['count_tasks_for_today'])) {
57
- $this->model->dbtasks['count_tasks_for_today'] = 5;
58
  }
59
 
60
  $tasks_for_today = isset($this->model->dbtasks['tasks_for_today']) ? $this->model->dbtasks['tasks_for_today'] : array();
54
  if (!empty($report)) {
55
 
56
  if (!isset($this->model->dbtasks['count_tasks_for_today'])) {
57
+ $this->model->dbtasks['count_tasks_for_today'] = 5; //Show 5 goals per day
58
  }
59
 
60
  $tasks_for_today = isset($this->model->dbtasks['tasks_for_today']) ? $this->model->dbtasks['tasks_for_today'] : array();
controllers/Dashboard.php CHANGED
@@ -18,7 +18,7 @@ class SQ_Controllers_Dashboard extends SQ_Classes_FrontController {
18
  public function action() {
19
  parent::action();
20
 
21
- if (!current_user_can('manage_options')) {
22
  return;
23
  }
24
 
18
  public function action() {
19
  parent::action();
20
 
21
+ if (!current_user_can('sq_manage_snippets')) {
22
  return;
23
  }
24
 
controllers/FocusPages.php CHANGED
@@ -90,7 +90,7 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
90
  /**
91
  * Set the Focus Pages and Labels
92
  */
93
- public function setFocusPages(){
94
  $labels = SQ_Classes_Helpers_Tools::getValue('slabel', array());
95
  $days_back = (int)SQ_Classes_Helpers_Tools::getValue('days_back', 90);
96
  $sid = SQ_Classes_Helpers_Tools::getValue('sid', false);
@@ -274,6 +274,27 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
274
 
275
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
277
  case 'sq_focuspages_getpage':
278
  $json = array();
279
  SQ_Classes_Helpers_Tools::setHeader('json');
90
  /**
91
  * Set the Focus Pages and Labels
92
  */
93
+ public function setFocusPages() {
94
  $labels = SQ_Classes_Helpers_Tools::getValue('slabel', array());
95
  $days_back = (int)SQ_Classes_Helpers_Tools::getValue('days_back', 90);
96
  $sid = SQ_Classes_Helpers_Tools::getValue('sid', false);
274
 
275
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
276
 
277
+ case 'sq_focuspages_inspecturl':
278
+ $json = array();
279
+ SQ_Classes_Helpers_Tools::setHeader('json');
280
+ $post_id = (int)SQ_Classes_Helpers_Tools::getValue('post_id', 0);
281
+
282
+ //Set the focus pages and labels
283
+ $args = array();
284
+ $args['post_id'] = $post_id;
285
+ if ($json['html'] = SQ_Classes_RemoteController::getInspectURL($args)) {
286
+ if (function_exists('iconv')) {
287
+ $json['html'] = iconv('UTF-8', 'UTF-8//IGNORE', $json['html']);
288
+ }
289
+ }
290
+
291
+ if (SQ_Classes_Error::isError()) {
292
+ $json['error'] = SQ_Classes_Error::getError();
293
+ }
294
+
295
+ echo json_encode($json);
296
+ exit();
297
+
298
  case 'sq_focuspages_getpage':
299
  $json = array();
300
  SQ_Classes_Helpers_Tools::setHeader('json');
controllers/Frontend.php CHANGED
@@ -17,11 +17,16 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
17
  //For favicon and Robots
18
  $this->hookCheckFiles();
19
 
20
- if (!defined('CE_FILE')) { //compatible with other cache plugins
 
 
 
 
21
  //Hook the buffer on both actions in case one fails
22
  add_action('plugins_loaded', array($this, 'hookBuffer'), 9);
23
  }
24
 
 
25
  add_action('template_redirect', array($this, 'hookBuffer'), 1);
26
 
27
  //Set the post so that Squirrly will know which one to process
@@ -38,7 +43,7 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
38
 
39
  //Check the old permalink and redirect to the new permalink
40
  if (SQ_Classes_Helpers_Tools::getOption('sq_permalink_redirect')) {
41
- add_action('template_redirect',array($this->model, 'redirectPermalinks'), 10);
42
  }
43
 
44
  /* Check if sitemap is on and Load the Sitemap */
@@ -50,7 +55,7 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
50
  if (SQ_Classes_Helpers_Tools::getOption('sq_url_fix')) {
51
  add_action('the_content', array($this, 'fixFeedLinks'), 11);
52
  }
53
- }
54
 
55
  /**
56
  * HOOK THE BUFFER
@@ -61,16 +66,7 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
61
  remove_action('template_redirect', array($this, 'hookBuffer'), 1);
62
  }
63
 
64
- global $wp_super_cache_late_init;
65
- if (isset($wp_super_cache_late_init) && $wp_super_cache_late_init == 1 && !did_action('init')) {
66
- //add an action after Super cache late login is started
67
- add_action('init', array($this->model, 'startBuffer'), PHP_INT_MAX);
68
- } elseif (SQ_Classes_Helpers_Tools::getOption('sq_laterload') && !did_action('template_redirect')) {
69
- add_action('template_redirect', array($this->model, 'startBuffer'), PHP_INT_MAX);
70
- } else {
71
- $this->model->startBuffer();
72
- }
73
-
74
  }
75
 
76
  /**
@@ -78,7 +74,7 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
78
  */
79
  public function hookCheckFiles() {
80
  //Check for sitemap and robots
81
- if ($basename = $this->isFile($_SERVER['REQUEST_URI'])) {
82
  if (SQ_Classes_Helpers_Tools::getOption('sq_auto_robots') == 1) {
83
  if ($basename == "robots.txt") {
84
  SQ_Classes_ObjController::getClass('SQ_Models_Services_Robots');
@@ -182,11 +178,19 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
182
  return $content;
183
  }
184
 
 
 
 
185
  public function hookFrontfooter() {
186
  echo $this->model->getFooter();
187
  }
188
 
189
- public function isFile($url = null) {
 
 
 
 
 
190
  if (isset($url) && $url <> '') {
191
  $url = basename($url);
192
  if (strpos($url, '?') <> '') {
17
  //For favicon and Robots
18
  $this->hookCheckFiles();
19
 
20
+ //Check cache plugin compatibility
21
+ SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->checkCompatibility();
22
+
23
+ //Check if late loading is on
24
+ if (!apply_filters('sq_lateloading', SQ_Classes_Helpers_Tools::getOption('sq_laterload'))) {
25
  //Hook the buffer on both actions in case one fails
26
  add_action('plugins_loaded', array($this, 'hookBuffer'), 9);
27
  }
28
 
29
+ //In case plugins_loaded hook is disabled
30
  add_action('template_redirect', array($this, 'hookBuffer'), 1);
31
 
32
  //Set the post so that Squirrly will know which one to process
43
 
44
  //Check the old permalink and redirect to the new permalink
45
  if (SQ_Classes_Helpers_Tools::getOption('sq_permalink_redirect')) {
46
+ add_action('template_redirect', array($this->model, 'redirectPermalinks'), 10);
47
  }
48
 
49
  /* Check if sitemap is on and Load the Sitemap */
55
  if (SQ_Classes_Helpers_Tools::getOption('sq_url_fix')) {
56
  add_action('the_content', array($this, 'fixFeedLinks'), 11);
57
  }
58
+ }
59
 
60
  /**
61
  * HOOK THE BUFFER
66
  remove_action('template_redirect', array($this, 'hookBuffer'), 1);
67
  }
68
 
69
+ $this->model->startBuffer();
 
 
 
 
 
 
 
 
 
70
  }
71
 
72
  /**
74
  */
75
  public function hookCheckFiles() {
76
  //Check for sitemap and robots
77
+ if ($basename = $this->getFileName($_SERVER['REQUEST_URI'])) {
78
  if (SQ_Classes_Helpers_Tools::getOption('sq_auto_robots') == 1) {
79
  if ($basename == "robots.txt") {
80
  SQ_Classes_ObjController::getClass('SQ_Models_Services_Robots');
178
  return $content;
179
  }
180
 
181
+ /**
182
+ * Hook the footer
183
+ */
184
  public function hookFrontfooter() {
185
  echo $this->model->getFooter();
186
  }
187
 
188
+ /**
189
+ * Get the File Name if itțs a file in URL
190
+ * @param null $url
191
+ * @return bool|string|null
192
+ */
193
+ public function getFileName($url = null) {
194
  if (isset($url) && $url <> '') {
195
  $url = basename($url);
196
  if (strpos($url, '?') <> '') {
controllers/Menu.php CHANGED
@@ -96,13 +96,6 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
96
  /* add the plugin menu in admin */
97
  if (current_user_can('manage_options')) {
98
  try {
99
-
100
- if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
101
- //This option is use for custom Package installs
102
- //update text in case of devkit
103
- SQ_Classes_ObjController::getClass('SQ_Classes_Helpers_DevKit')->updatePluginData();
104
- }
105
-
106
  //check if activated
107
  if (get_transient('sq_activate') == 1) {
108
  // Delete the redirect transient
@@ -111,6 +104,10 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
111
  //Create Qss table if not exists
112
  SQ_Classes_ObjController::getClass('SQ_Models_Qss')->checkTableExists();
113
 
 
 
 
 
114
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
115
  wp_safe_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
116
  die();
@@ -260,9 +257,15 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
260
  'high'
261
  ));
262
 
 
 
 
 
 
 
263
  $wp_admin_bar->add_node(array(
264
  'id' => 'sq_bar_menu',
265
- 'title' => '<span class="sq_logo"></span> ' . __('Custom SEO', _SQ_PLUGIN_NAME_),
266
  'parent' => 'top-secondary',
267
  ));
268
 
@@ -323,7 +326,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
323
  'edit_posts',
324
  'sq_dashboard',
325
  null,
326
- _SQ_ASSETS_URL_ . 'img/logos/menu_icon_16.png'
327
  ));
328
 
329
  $this->model->addSubmenu(array('sq_none',
@@ -370,7 +373,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
370
  $this->model->addSubmenu(array('sq_dashboard',
371
  __('Squirrly Account Info', _SQ_PLUGIN_NAME_),
372
  __('Account Info', _SQ_PLUGIN_NAME_),
373
- 'edit_posts',
374
  'sq_account',
375
  array(SQ_Classes_ObjController::getClass('SQ_Controllers_Account'), 'init')
376
  ));
@@ -457,6 +460,15 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
457
  }
458
 
459
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('logo');
 
 
 
 
 
 
 
 
 
460
  }
461
 
462
  public function hookBuilders() {
96
  /* add the plugin menu in admin */
97
  if (current_user_can('manage_options')) {
98
  try {
 
 
 
 
 
 
 
99
  //check if activated
100
  if (get_transient('sq_activate') == 1) {
101
  // Delete the redirect transient
104
  //Create Qss table if not exists
105
  SQ_Classes_ObjController::getClass('SQ_Models_Qss')->checkTableExists();
106
 
107
+ //This option is use for custom Package installs
108
+ //update text in case of devkit
109
+ SQ_Classes_ObjController::getClass('SQ_Classes_Helpers_DevKit')->updatePluginData();
110
+
111
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
112
  wp_safe_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
113
  die();
257
  'high'
258
  ));
259
 
260
+ //Dev Kit images
261
+ $style = '';
262
+ if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
263
+ $style = '<style>.sq_logo{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;background-size: 100%;}</style>';
264
+ }
265
+
266
  $wp_admin_bar->add_node(array(
267
  'id' => 'sq_bar_menu',
268
+ 'title' => $style . '<span class="sq_logo"></span> ' . __('Custom SEO', _SQ_PLUGIN_NAME_),
269
  'parent' => 'top-secondary',
270
  ));
271
 
326
  'edit_posts',
327
  'sq_dashboard',
328
  null,
329
+ (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') ? SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') : _SQ_ASSETS_URL_ . 'img/logos/menu_icon_16.png')
330
  ));
331
 
332
  $this->model->addSubmenu(array('sq_none',
373
  $this->model->addSubmenu(array('sq_dashboard',
374
  __('Squirrly Account Info', _SQ_PLUGIN_NAME_),
375
  __('Account Info', _SQ_PLUGIN_NAME_),
376
+ 'manage_options',
377
  'sq_account',
378
  array(SQ_Classes_ObjController::getClass('SQ_Controllers_Account'), 'init')
379
  ));
460
  }
461
 
462
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('logo');
463
+
464
+ //Dev Kit images
465
+ if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
466
+ echo '<style>.toplevel_page_sq_dashboard .wp-menu-image img{max-width: 24px !important;}.sq_logo{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;background-size: 100%;}</style>';
467
+ }
468
+
469
+ if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_audit')) {
470
+ echo '<style>.sq_offer {display: none !important;}</style>';
471
+ }
472
  }
473
 
474
  public function hookBuilders() {
controllers/Snippet.php CHANGED
@@ -125,9 +125,16 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
125
  }
126
 
127
  try {
 
 
 
 
 
 
 
128
  $wp_admin_bar->add_node(array(
129
  'id' => 'sq_bar_menu',
130
- 'title' => '<span class="sq_logo"></span> ' . __('Custom SEO', _SQ_PLUGIN_NAME_),
131
  'parent' => 'top-secondary',
132
  ));
133
 
125
  }
126
 
127
  try {
128
+
129
+ //Dev Kit
130
+ $style = '';
131
+ if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
132
+ $style = '<style>.sq_logo{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;background-size: 100%;}</style>';
133
+ }
134
+
135
  $wp_admin_bar->add_node(array(
136
  'id' => 'sq_bar_menu',
137
+ 'title' => $style . '<span class="sq_logo"></span> ' . __('Custom SEO', _SQ_PLUGIN_NAME_),
138
  'parent' => 'top-secondary',
139
  ));
140
 
core/BlockFeatures.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
+
4
+ class SQ_Core_BlockFeatures extends SQ_Classes_BlockController {
5
+
6
+ function init() {
7
+ parent::init();
8
+
9
+ echo $this->getView('Blocks/Features');
10
+ }
11
+
12
+ }
languages/squirrly-seo-cs_CZ.mo CHANGED
Binary file
languages/squirrly-seo-cs_CZ.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-11 08:58+0300\n"
6
- "PO-Revision-Date: 2020-05-11 08:58+0300\n"
7
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
8
  "Language-Team: \n"
9
  "Language: cs_CZ\n"
@@ -16,84 +16,84 @@ msgstr ""
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Textdomain-Support: yes\n"
19
- "X-Generator: Poedit 2.2.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  #: classes/Error.php:79 classes/Error.php:90
23
  msgid "Don't bother me!"
24
  msgstr ""
25
 
26
- #: classes/RemoteController.php:257
27
  msgid "Too many API attempts, please slow down the request."
28
  msgstr ""
29
 
30
- #: classes/RemoteController.php:261
31
  msgid ""
32
  "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
33
  "in a minute."
34
  msgstr ""
35
 
36
- #: classes/RemoteController.php:320
37
  msgid "Articles optimized so far"
38
  msgstr ""
39
 
40
- #: classes/RemoteController.php:322 classes/RemoteController.php:329
41
  msgid "add post"
42
  msgstr ""
43
 
44
- #: classes/RemoteController.php:327
45
  msgid "Average optimization"
46
  msgstr ""
47
 
48
  # @ squirrly-seo
49
- #: classes/RemoteController.php:334
50
  #, fuzzy
51
  #| msgid "Do the research"
52
  msgid "Keyword Researches"
53
  msgstr "Recherchieren"
54
 
55
  # @ squirrly-seo
56
- #: classes/RemoteController.php:336
57
  #, fuzzy
58
  #| msgid "Do the research"
59
  msgid "do research"
60
  msgstr "Recherchieren"
61
 
62
- #: classes/RemoteController.php:341
63
  msgid "Keywords stored in Squirrly Briefcase"
64
  msgstr ""
65
 
66
- #: classes/RemoteController.php:343
67
  msgid "add keyword"
68
  msgstr ""
69
 
70
- #: classes/RemoteController.php:348
71
  msgid "Pages ranking in top 100 Google"
72
  msgstr ""
73
 
74
- #: classes/RemoteController.php:350
75
  msgid "see rankings"
76
  msgstr ""
77
 
78
- #: classes/RemoteController.php:355
79
  msgid "SEO Audits"
80
  msgstr ""
81
 
82
- #: classes/RemoteController.php:357
83
  msgid "see audits"
84
  msgstr ""
85
 
86
  # @ squirrly-seo
87
- #: classes/RemoteController.php:1250
88
  msgid "Keyword:"
89
  msgstr ""
90
 
91
  # @ squirrly-seo
92
- #: classes/RemoteController.php:1251
93
  msgid "date"
94
  msgstr ""
95
 
96
- #: classes/RemoteController.php:1252 controllers/CheckSeo.php:317
97
  #: controllers/Patterns.php:16 controllers/Research.php:259
98
  #: controllers/Research.php:290 controllers/Research.php:344
99
  #: controllers/Research.php:654
@@ -101,150 +101,150 @@ msgid "Saved!"
101
  msgstr ""
102
 
103
  # @ squirrly-seo
104
- #: classes/RemoteController.php:1253
105
  msgid "Read it!"
106
  msgstr ""
107
 
108
  # @ squirrly-seo
109
- #: classes/RemoteController.php:1254
110
  msgid "Insert it!"
111
  msgstr ""
112
 
113
  # @ squirrly-seo
114
- #: classes/RemoteController.php:1255
115
  msgid "Reference"
116
  msgstr ""
117
 
118
  # @ squirrly-seo
119
- #: classes/RemoteController.php:1256
120
  msgid "Insert as box"
121
  msgstr ""
122
 
123
- #: classes/RemoteController.php:1257
124
  msgid "Insert Link"
125
  msgstr ""
126
 
127
  # @ squirrly-seo
128
- #: classes/RemoteController.php:1258
129
  msgid "Not relevant?"
130
  msgstr ""
131
 
132
  # @ squirrly-seo
133
- #: classes/RemoteController.php:1259
134
  msgid "Insert in your article"
135
  msgstr ""
136
 
137
- #: classes/RemoteController.php:1260
138
  msgid ":( An error occurred while processing your request. Please try again"
139
  msgstr ""
140
 
141
  # @ squirrly-seo
142
- #: classes/RemoteController.php:1261
143
  msgid "No results found!"
144
  msgstr ""
145
 
146
- #: classes/RemoteController.php:1262
147
  #, php-format
148
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
149
  msgstr ""
150
 
151
- #: classes/RemoteController.php:1263
152
  msgid "Has creative commons attributes"
153
  msgstr ""
154
 
155
- #: classes/RemoteController.php:1264
156
  msgid "No known copyright restrictions"
157
  msgstr ""
158
 
159
- #: classes/RemoteController.php:1265
160
  msgid ""
161
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
162
  "optimize for a keyword before publishing?"
163
  msgstr ""
164
 
165
- #: classes/RemoteController.php:1266
166
  msgid "Your Subscription has Expired"
167
  msgstr ""
168
 
169
- #: classes/RemoteController.php:1267
170
  msgid "There are no keywords saved in briefcase yet"
171
  msgstr ""
172
 
173
- #: classes/RemoteController.php:1268
174
  #, php-format
175
  msgid "Congratulations! Your article is 100% optimized!"
176
  msgstr ""
177
 
178
- #: classes/RemoteController.php:1269
179
  #, php-format
180
  msgid "appears too many times. Try to remove %s of them"
181
  msgstr ""
182
 
183
- #: classes/RemoteController.php:1270
184
  #, php-format
185
  msgid "write %s more words"
186
  msgstr ""
187
 
188
- #: classes/RemoteController.php:1271
189
  #, php-format
190
  msgid "Add the keyword in the %s of your article"
191
  msgstr ""
192
 
193
- #: classes/RemoteController.php:1272
194
  msgid "Click to keep the highlight on"
195
  msgstr ""
196
 
197
- #: classes/RemoteController.php:1273
198
  msgid "introduction"
199
  msgstr ""
200
 
201
- #: classes/RemoteController.php:1274
202
  #, php-format
203
  msgid "Write more words after the %s keyword"
204
  msgstr ""
205
 
206
- #: classes/RemoteController.php:1275
207
  msgid "or use synonyms"
208
  msgstr ""
209
 
210
- #: classes/RemoteController.php:1276
211
  #, php-format
212
  msgid "add %s more word(s)"
213
  msgstr ""
214
 
215
- #: classes/RemoteController.php:1277
216
  #, php-format
217
  msgid "or remove %s word(s)"
218
  msgstr ""
219
 
220
- #: classes/RemoteController.php:1278
221
  #, php-format
222
  msgid "add %s more keyword(s)"
223
  msgstr ""
224
 
225
- #: classes/RemoteController.php:1279
226
  #, php-format
227
  msgid "write %s more words to start calculating"
228
  msgstr ""
229
 
230
- #: classes/RemoteController.php:1280 view/Research/Research.php:48
231
  msgid "Add to Briefcase"
232
  msgstr ""
233
 
234
- #: classes/RemoteController.php:1281
235
  msgid "Add Keyword to Briefcase"
236
  msgstr ""
237
 
238
- #: classes/RemoteController.php:1282
239
  msgid "Select"
240
  msgstr ""
241
 
242
- #: classes/RemoteController.php:1283 view/Blocks/Snippet.php:136
243
  #: view/Blocks/Snippet.php:509 view/Blocks/Snippet.php:765
244
  msgid "Auto Draft"
245
  msgstr ""
246
 
247
- #: classes/RemoteController.php:1284
248
  msgid ""
249
  "You’ve already used the Live Assistant to optimize this post when creating "
250
  "it in your Page Builder. Please go back and resume your optimization work "
@@ -287,59 +287,59 @@ msgstr ""
287
  msgid "The code for Facebook App must only contain numbers."
288
  msgstr ""
289
 
290
- #: classes/helpers/Tools.php:80
291
  msgid "Getting started"
292
  msgstr ""
293
 
294
- #: classes/helpers/Tools.php:105
295
  msgid "Documentation"
296
  msgstr ""
297
 
298
- #: classes/helpers/Tools.php:106
299
  msgid "Leave a review"
300
  msgstr ""
301
 
302
- #: classes/helpers/Tools.php:405
303
  msgid "Format"
304
  msgstr ""
305
 
306
- #: classes/helpers/Tools.php:423 classes/helpers/Tools.php:459
307
  msgid "Category"
308
  msgstr ""
309
 
310
- #: classes/helpers/Tools.php:441 classes/helpers/Tools.php:477
311
  msgid "Tag"
312
  msgstr ""
313
 
314
- #: classes/helpers/Tools.php:495
315
  msgid "Shipping Option"
316
  msgstr ""
317
 
318
- #: classes/helpers/Tools.php:513
319
  msgid "Author at"
320
  msgstr ""
321
 
322
- #: classes/helpers/Tools.php:585
323
  msgid "Are you looking for"
324
  msgstr ""
325
 
326
- #: classes/helpers/Tools.php:586
327
  msgid "These are the results for"
328
  msgstr ""
329
 
330
- #: classes/helpers/Tools.php:586
331
  msgid "that you can find on our website."
332
  msgstr ""
333
 
334
- #: classes/helpers/Tools.php:620
335
  msgid "Page not found"
336
  msgstr ""
337
 
338
- #: classes/helpers/Tools.php:621
339
  msgid "This page could not be found on our website."
340
  msgstr ""
341
 
342
- #: classes/helpers/Tools.php:889
343
  msgid "For better text comparison you need to install PHP mbstring extension."
344
  msgstr ""
345
 
@@ -483,7 +483,7 @@ msgid "No keyword found."
483
  msgstr ""
484
 
485
  #: controllers/Assistant.php:102 controllers/Assistant.php:129
486
- #: controllers/Audits.php:324 controllers/Ranking.php:134
487
  #: controllers/SeoSettings.php:149 controllers/SeoSettings.php:166
488
  #: controllers/SeoSettings.php:187 controllers/SeoSettings.php:224
489
  #: controllers/SeoSettings.php:250 controllers/SeoSettings.php:278
@@ -493,8 +493,8 @@ msgid "Saved"
493
  msgstr ""
494
 
495
  #: controllers/Assistant.php:108 controllers/BulkSeo.php:69
496
- #: controllers/Patterns.php:100 controllers/Post.php:246
497
- #: controllers/Post.php:299 controllers/Post.php:331 controllers/Post.php:366
498
  #: controllers/PostsList.php:182 controllers/Research.php:172
499
  #: controllers/Research.php:179 controllers/Research.php:217
500
  #: controllers/Research.php:240 controllers/Research.php:270
@@ -506,7 +506,7 @@ msgstr ""
506
  #: controllers/SeoSettings.php:543 controllers/SeoSettings.php:568
507
  #: controllers/SeoSettings.php:605 controllers/SeoSettings.php:642
508
  #: controllers/SeoSettings.php:656 controllers/SeoSettings.php:678
509
- #: controllers/SeoSettings.php:699 controllers/Snippet.php:159
510
  msgid "You do not have permission to perform this action"
511
  msgstr ""
512
 
@@ -522,44 +522,44 @@ msgid "The audit was not found. Please load another audit."
522
  msgstr ""
523
 
524
  # @ squirrly-seo
525
- #: controllers/Audits.php:203
526
  #, fuzzy
527
  #| msgid "Could not send the email..."
528
  msgid "Could not load the Audit Page."
529
  msgstr "Konnte E-Mail nicht senden ..."
530
 
531
- #: controllers/Audits.php:265
532
  msgid "Audit page is added. The audit may take a while so please be patient."
533
  msgstr ""
534
 
535
- #: controllers/Audits.php:268
536
  msgid "You reached the maximum number of audit pages for your account."
537
  msgstr ""
538
 
539
  # @ squirrly-seo
540
- #: controllers/Audits.php:271
541
  #, fuzzy
542
  #| msgid "Could not send the email..."
543
  msgid "Error! Could not add the audit page."
544
  msgstr "Konnte E-Mail nicht senden ..."
545
 
546
- #: controllers/Audits.php:275
547
  msgid "Error! Could not find the audit page in your website."
548
  msgstr ""
549
 
550
- #: controllers/Audits.php:285
551
  msgid "Audit page sent for recheck. It may take a while so please be patient."
552
  msgstr ""
553
 
554
- #: controllers/Audits.php:288 controllers/Audits.php:291
555
  msgid "The audit for all pages can be made once an hour."
556
  msgstr ""
557
 
558
- #: controllers/Audits.php:301
559
  msgid "The audit page is deleted"
560
  msgstr ""
561
 
562
- #: controllers/Audits.php:303 controllers/FocusPages.php:383
563
  #: controllers/Ranking.php:161 controllers/Ranking.php:179
564
  #: controllers/Ranking.php:197 controllers/Research.php:208
565
  #: controllers/Research.php:211 controllers/Research.php:234
@@ -570,7 +570,7 @@ msgstr ""
570
  msgid "Invalid params!"
571
  msgstr ""
572
 
573
- #: controllers/Audits.php:326
574
  msgid "Not a valid email address"
575
  msgstr ""
576
 
@@ -590,101 +590,101 @@ msgstr ""
590
  msgid "Saved! Task marked as done."
591
  msgstr ""
592
 
593
- #: controllers/FocusPages.php:256
594
  msgid "Focus Page does not exist or was deleted from your website."
595
  msgstr ""
596
 
597
- #: controllers/FocusPages.php:314
598
  msgid "Focus page is added. The audit may take a while so please be patient."
599
  msgstr ""
600
 
601
- #: controllers/FocusPages.php:321
602
  msgid "You reached the maximum number of focus pages for all your websites."
603
  msgstr ""
604
 
605
- #: controllers/FocusPages.php:324
606
  msgid "Error! Could not add the focus page."
607
  msgstr ""
608
 
609
- #: controllers/FocusPages.php:327
610
  msgid "Error! This focus page is not public."
611
  msgstr ""
612
 
613
- #: controllers/FocusPages.php:331 controllers/FocusPages.php:370
614
  msgid "Error! Could not find the focus page in your website."
615
  msgstr ""
616
 
617
- #: controllers/FocusPages.php:358
618
  msgid "Focus page sent for recheck. It may take a while so please be patient."
619
  msgstr ""
620
 
621
- #: controllers/FocusPages.php:361 controllers/FocusPages.php:365
622
  msgid "You've made too many requests, please wait a few minutes."
623
  msgstr ""
624
 
625
- #: controllers/FocusPages.php:381
626
  msgid "The focus page is deleted"
627
  msgstr ""
628
 
629
- #: controllers/Menu.php:126
630
  #, php-format
631
  msgid ""
632
  "An error occurred during activation. If this error persists, please contact "
633
  "us at: %s"
634
  msgstr ""
635
 
636
- #: controllers/Menu.php:163
637
  msgid "Dashboard"
638
  msgstr ""
639
 
640
  # @ squirrly-seo
641
- #: controllers/Menu.php:188 controllers/Menu.php:287 controllers/Menu.php:322
642
  #: view/Blocks/SLASearch.php:7
643
  #, fuzzy
644
  #| msgid "Squirrly settings"
645
  msgid "Squirrly SEO"
646
  msgstr "Squirrly Einstellungen"
647
 
648
- #: controllers/Menu.php:256
649
  msgid "SEO Snippet"
650
  msgstr ""
651
 
652
- #: controllers/Menu.php:265 controllers/Snippet.php:130
653
  msgid "Custom SEO"
654
  msgstr ""
655
 
656
  # @ squirrly-seo
657
- #: controllers/Menu.php:330
658
  #, fuzzy
659
  #| msgid "Squirrly settings"
660
  msgid "Squirrly Onboarding"
661
  msgstr "Squirrly Einstellungen"
662
 
663
- #: controllers/Menu.php:331
664
  msgid "Onboarding"
665
  msgstr ""
666
 
667
- #: controllers/Menu.php:360
668
  msgid "Import & Export SEO"
669
  msgstr ""
670
 
671
- #: controllers/Menu.php:361 view/SeoSettings/Backup.php:88
672
  msgid "Import SEO"
673
  msgstr ""
674
 
675
- #: controllers/Menu.php:371
676
  msgid "Squirrly Account Info"
677
  msgstr ""
678
 
679
- #: controllers/Menu.php:372
680
  msgid "Account Info"
681
  msgstr ""
682
 
683
- #: controllers/Menu.php:381
684
  msgid "Squirrly How To & Support"
685
  msgstr ""
686
 
687
- #: controllers/Menu.php:382
688
  msgid "Help & Support"
689
  msgstr ""
690
 
@@ -693,17 +693,17 @@ msgid "Saved! This is how the preview looks like"
693
  msgstr ""
694
 
695
  # @ squirrly-seo
696
- #: controllers/Post.php:293
697
  #, fuzzy
698
  #| msgid "Could not send the email..."
699
  msgid "Could not add the demo post."
700
  msgstr "Konnte E-Mail nicht senden ..."
701
 
702
- #: controllers/Post.php:355 controllers/Post.php:380
703
  msgid "Can't get the post URL"
704
  msgstr ""
705
 
706
- #: controllers/Post.php:385
707
  msgid "Invalid request"
708
  msgstr ""
709
 
@@ -906,7 +906,7 @@ msgid "Squirrly SEO Snippet"
906
  msgstr "Squirrly LIVE SEO-Assistent"
907
 
908
  # @ squirrly-seo
909
- #: controllers/Snippet.php:177
910
  #, fuzzy
911
  #| msgid "Could not send the email..."
912
  msgid "Could not save the data"
@@ -1233,7 +1233,7 @@ msgstr ""
1233
 
1234
  # @ squirrly-seo
1235
  #: models/Assistant.php:163 models/focuspages/Accuracy.php:45
1236
- #: models/focuspages/Traffic.php:100 models/focuspages/Traffic.php:105
1237
  #, fuzzy
1238
  #| msgid "Google %sAnalytics ID%s`:"
1239
  msgid "Connect Google Analytics"
@@ -1882,7 +1882,7 @@ msgstr ""
1882
  msgid "Add meta description to this page of your site"
1883
  msgstr ""
1884
 
1885
- #: models/Audits.php:156 models/bulkseo/Metas.php:92
1886
  msgid "Meta Keyword"
1887
  msgstr ""
1888
 
@@ -1911,7 +1911,7 @@ msgstr ""
1911
  msgid "Make sure that the search for your keywords is on a rising trend"
1912
  msgstr ""
1913
 
1914
- #: models/Audits.php:166 models/bulkseo/Metas.php:97
1915
  msgid "Canonical Link"
1916
  msgstr ""
1917
 
@@ -4657,46 +4657,46 @@ msgid "You got better Score for your Audit"
4657
  msgstr ""
4658
 
4659
  # @ squirrly-seo
4660
- #: models/CheckSeo.php:1475
4661
  #, fuzzy
4662
  #| msgid "Could not send the email..."
4663
  msgid "Could not verify the frontend."
4664
  msgstr "Konnte E-Mail nicht senden ..."
4665
 
4666
- #: models/CheckSeo.php:1842
4667
  msgid "Just another WordPress site"
4668
  msgstr ""
4669
 
4670
- #: models/CheckSeo.php:1969
4671
  #, php-format
4672
  msgid "Focus Page was not found (error %s)"
4673
  msgstr ""
4674
 
4675
- #: models/CheckSeo.php:1970
4676
  msgid ""
4677
- "Task details: The way your WordPress site is currently hosted can affect the "
4678
- "way Squirrly SEO operates in order to retrieve and process data about your "
4679
- "Focus Pages. It’s important to do everything on your end to ensure that the "
4680
- "Focus Pages audits can be generated by our system."
4681
  msgstr ""
4682
 
4683
- #: models/CheckSeo.php:1971 models/CheckSeo.php:1990
4684
  msgid ""
4685
  "Use a different browser to check if your Focus Page is visible. Whitelist "
4686
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
4687
  "page so that you’ll receive a full audit."
4688
  msgstr ""
4689
 
4690
- #: models/CheckSeo.php:1972
4691
  msgid "An error is preventing Squirrly from processing your Focus Page audits."
4692
  msgstr ""
4693
 
4694
- #: models/CheckSeo.php:1979
4695
  #, php-format
4696
  msgid "Your Focus Page is redirected to another page (error %s)"
4697
  msgstr ""
4698
 
4699
- #: models/CheckSeo.php:1980
4700
  #, php-format
4701
  msgid ""
4702
  "Right now, your Focus Page sends users and search engines to a different URL "
@@ -4708,23 +4708,23 @@ msgid ""
4708
  "operates."
4709
  msgstr ""
4710
 
4711
- #: models/CheckSeo.php:1981
4712
  msgid ""
4713
  "Choose a page that does NOT redirect to a different page as your Focus Page. "
4714
  "Your Focus Page should have a single URL associated to it so that Squirrly "
4715
  "can serve you the best data."
4716
  msgstr ""
4717
 
4718
- #: models/CheckSeo.php:1982
4719
  msgid "Make sure that your Focus Page is NOT redirected to a different page."
4720
  msgstr ""
4721
 
4722
- #: models/CheckSeo.php:1988
4723
  #, php-format
4724
  msgid "Ensure your Focus Pages can be accessed (error %s)"
4725
  msgstr ""
4726
 
4727
- #: models/CheckSeo.php:1989
4728
  #, php-format
4729
  msgid ""
4730
  "A server-side error is preventing Squirrly from being able to access and "
@@ -4734,16 +4734,16 @@ msgid ""
4734
  "page, which is a critical issue."
4735
  msgstr ""
4736
 
4737
- #: models/CheckSeo.php:1991
4738
  msgid "A server-side error is preventing your Focus Pages from being accessed."
4739
  msgstr ""
4740
 
4741
- #: models/CheckSeo.php:1996
4742
  #, php-format
4743
  msgid "Make sure your Focus Pages can be audited (error %s)"
4744
  msgstr ""
4745
 
4746
- #: models/CheckSeo.php:1997
4747
  msgid ""
4748
  "Squirrly is unable to generate the audit for your Focus Page because it "
4749
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
@@ -4751,30 +4751,52 @@ msgid ""
4751
  "Squirrly’s IP address."
4752
  msgstr ""
4753
 
4754
- #: models/CheckSeo.php:1998
4755
  msgid ""
4756
  "Check to see if your WordPress site’s server is offline. Whitelist our "
4757
  "crawler IP address (176.9.112.210) to allow our server to verify your page "
4758
  "so that you’ll receive a full audit."
4759
  msgstr ""
4760
 
4761
- #: models/CheckSeo.php:1999
4762
  msgid ""
4763
  "An error prevents Squirrly from gathering critical data about your Focus "
4764
  "Page."
4765
  msgstr ""
4766
 
4767
- #: models/FocusPages.php:21 models/bulkseo/Metas.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4768
  #: models/focuspages/Clicks.php:64 models/focuspages/Content.php:88
4769
  #: models/focuspages/Ctr.php:64 models/focuspages/Image.php:80
4770
  #: models/focuspages/Impressions.php:64 models/focuspages/Keyword.php:103
4771
- #: models/focuspages/Keyword.php:106 models/focuspages/Snippet.php:149
4772
  #: models/focuspages/Strategy.php:102 view/Blocks/KRFound.php:15
4773
  #: view/Blocks/KRHistory.php:15 view/Ranking/Gscsync.php:31
4774
  #: view/Ranking/Rankings.php:210 view/Ranking/Rankings.php:348
4775
  #: view/Research/Briefcase.php:107 view/Research/Briefcase.php:247
4776
  #: view/Research/History.php:29 view/Research/HistoryDetails.php:7
4777
- #: view/Research/Research.php:192 view/Research/Suggested.php:28
4778
  msgid "Keyword"
4779
  msgstr ""
4780
 
@@ -4908,7 +4930,7 @@ msgstr "Recherchieren"
4908
  msgid " Research"
4909
  msgstr "Recherchieren"
4910
 
4911
- #: models/Menu.php:139
4912
  msgid "Live Assistant"
4913
  msgstr ""
4914
 
@@ -4932,8 +4954,8 @@ msgstr ""
4932
  msgid " SEO Settings"
4933
  msgstr ""
4934
 
4935
- #: models/Menu.php:163 models/Menu.php:250 view/Blocks/FocusPages.php:6
4936
- #: view/FocusPages/Pagelist.php:23
4937
  msgid "Focus Pages"
4938
  msgstr ""
4939
 
@@ -4941,7 +4963,7 @@ msgstr ""
4941
  msgid " Focus Pages"
4942
  msgstr ""
4943
 
4944
- #: models/Menu.php:171 view/Blocks/Audits.php:6
4945
  msgid "SEO Audit"
4946
  msgstr ""
4947
 
@@ -5066,7 +5088,6 @@ msgid "Ranking settings"
5066
  msgstr "Squirrly Einstellungen"
5067
 
5068
  #: models/Menu.php:312 view/BulkSeo/Bulkseo.php:29
5069
- #: view/SeoSettings/Bulkseo.php:25
5070
  msgid "Bulk SEO"
5071
  msgstr ""
5072
 
@@ -5370,12 +5391,11 @@ msgid ""
5370
  msgstr ""
5371
 
5372
  #: models/Post.php:262 models/focuspages/Snippet.php:89
5373
- #: models/focuspages/Snippet.php:205 models/focuspages/Snippet.php:227
5374
  #: view/Audits/Addpage.php:131 view/Blocks/Snippet.php:171
5375
  #: view/Blocks/Snippet.php:570 view/Blocks/Snippet.php:825
5376
  #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:132
5377
- #: view/SeoSettings/Automation.php:125 view/SeoSettings/Bulkseo.php:138
5378
- #: view/SeoSettings/Metas.php:157
5379
  msgid "Title"
5380
  msgstr ""
5381
 
@@ -5545,16 +5565,16 @@ msgstr ""
5545
  msgid "Current"
5546
  msgstr ""
5547
 
5548
- #: models/bulkseo/Metas.php:55
5549
  msgid "Title not empty"
5550
  msgstr ""
5551
 
5552
- #: models/bulkseo/Metas.php:56 view/Blocks/Snippet.php:187
5553
  #: view/Blocks/Snippet.php:586 view/Blocks/Snippet.php:841
5554
  msgid "Current Title"
5555
  msgstr ""
5556
 
5557
- #: models/bulkseo/Metas.php:58
5558
  #, php-format
5559
  msgid ""
5560
  "The title for this URL must not be empty. %s Write a title for this page. "
@@ -5563,48 +5583,48 @@ msgid ""
5563
  "more clicks you can get when people find your page on search engines."
5564
  msgstr ""
5565
 
5566
- #: models/bulkseo/Metas.php:61
5567
  #, php-format
5568
  msgid "Title up to %s chars"
5569
  msgstr ""
5570
 
5571
- #: models/bulkseo/Metas.php:62
5572
  msgid "Current Title Length"
5573
  msgstr ""
5574
 
5575
- #: models/bulkseo/Metas.php:63 models/bulkseo/Metas.php:81
5576
- #: models/bulkseo/Opengraph.php:72 models/bulkseo/Opengraph.php:82
5577
- #: models/bulkseo/Twittercard.php:69 models/bulkseo/Twittercard.php:79
5578
  msgid "chars"
5579
  msgstr ""
5580
 
5581
- #: models/bulkseo/Metas.php:64 models/bulkseo/Opengraph.php:73
5582
- #: models/bulkseo/Twittercard.php:70
5583
  #, php-format
5584
  msgid ""
5585
  "Title has to be longer than %s chars and up to %s chars. %s You can change "
5586
  "the title max length from %sSEO Settings > Automation%s."
5587
  msgstr ""
5588
 
5589
- #: models/bulkseo/Metas.php:67 models/focuspages/Snippet.php:100
5590
  msgid "Keyword in title"
5591
  msgstr ""
5592
 
5593
  # @ squirrly-seo
5594
- #: models/bulkseo/Metas.php:68 models/bulkseo/Metas.php:86
5595
  #, fuzzy
5596
  #| msgid "Squirrly settings"
5597
  msgid "Squirrly Keyword"
5598
  msgstr "Squirrly Einstellungen"
5599
 
5600
  # @ squirrly-seo
5601
- #: models/bulkseo/Metas.php:69 models/bulkseo/Metas.php:87
5602
  #, fuzzy
5603
  #| msgid "Tips: 2-4 keywords"
5604
  msgid "no keywords"
5605
  msgstr "Tipp: Länge 2-4 Schlüsselwörter"
5606
 
5607
- #: models/bulkseo/Metas.php:70 models/focuspages/Snippet.php:102
5608
  #, php-format
5609
  msgid ""
5610
  "Your keyword must be present in the title of the page. %s It's a very "
@@ -5616,16 +5636,16 @@ msgid ""
5616
  "VectorWatch\" would be a much better choice for a title."
5617
  msgstr ""
5618
 
5619
- #: models/bulkseo/Metas.php:73
5620
  msgid "Description not empty"
5621
  msgstr ""
5622
 
5623
- #: models/bulkseo/Metas.php:74 view/Blocks/Snippet.php:239
5624
  #: view/Blocks/Snippet.php:630 view/Blocks/Snippet.php:885
5625
  msgid "Current Description"
5626
  msgstr ""
5627
 
5628
- #: models/bulkseo/Metas.php:76
5629
  #, php-format
5630
  msgid ""
5631
  "Meta descriptions are important for SEO on multiple search engines. %s You "
@@ -5634,28 +5654,28 @@ msgid ""
5634
  "on search engines."
5635
  msgstr ""
5636
 
5637
- #: models/bulkseo/Metas.php:79
5638
  #, php-format
5639
  msgid "Description up to %s chars"
5640
  msgstr ""
5641
 
5642
- #: models/bulkseo/Metas.php:80
5643
  msgid "Current Description Length"
5644
  msgstr ""
5645
 
5646
- #: models/bulkseo/Metas.php:82 models/bulkseo/Opengraph.php:83
5647
- #: models/bulkseo/Twittercard.php:80
5648
  #, php-format
5649
  msgid ""
5650
  "Description has to be longer than %s chars and up to %s chars. %s You can "
5651
  "change the description max length from %sSEO Settings > Automation%s."
5652
  msgstr ""
5653
 
5654
- #: models/bulkseo/Metas.php:85 models/focuspages/Snippet.php:105
5655
  msgid "Keyword in description"
5656
  msgstr ""
5657
 
5658
- #: models/bulkseo/Metas.php:88
5659
  #, php-format
5660
  msgid ""
5661
  "Same as with the title task. %s If a user reads the description of your page "
@@ -5667,28 +5687,28 @@ msgid ""
5667
  "lot about this, because that's what people want to find on the search engine."
5668
  msgstr ""
5669
 
5670
- #: models/bulkseo/Metas.php:91
5671
  msgid "Meta Keywords (2-4 Words)"
5672
  msgstr ""
5673
 
5674
  # @ squirrly-seo
5675
- #: models/bulkseo/Metas.php:93
5676
  #, fuzzy
5677
  #| msgid "Enter even more keywords."
5678
  msgid "no meta keywords"
5679
  msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5680
 
5681
- #: models/bulkseo/Metas.php:94
5682
  msgid ""
5683
  "Even if Meta keywords are not mandatory for Google, it's important for other "
5684
  "search engines to find this meta and to index your post for these keywords."
5685
  msgstr ""
5686
 
5687
- #: models/bulkseo/Metas.php:98
5688
  msgid "Current Link"
5689
  msgstr ""
5690
 
5691
- #: models/bulkseo/Metas.php:100
5692
  #, php-format
5693
  msgid ""
5694
  "You don't have to set any canonical link if your post is not copied from "
@@ -5698,24 +5718,26 @@ msgid ""
5698
  "gets indexed and ranked."
5699
  msgstr ""
5700
 
5701
- #: models/bulkseo/Metas.php:109
5702
  msgid "Some Squirrly Metas are deactivated."
5703
  msgstr ""
5704
 
5705
- #: models/bulkseo/Metas.php:114
5706
- msgid "Some Squirrly Metas are not set correctly."
 
 
5707
  msgstr ""
5708
 
5709
- #: models/bulkseo/Metas.php:119
5710
  msgid "Some Squirrly Metas are generated automatically."
5711
  msgstr ""
5712
 
5713
- #: models/bulkseo/Metas.php:122
5714
  msgid "All Squirrly Metas are customized and set correctly."
5715
  msgstr ""
5716
 
5717
- #: models/bulkseo/Metas.php:133 models/bulkseo/Opengraph.php:125
5718
- #: models/bulkseo/Twittercard.php:122 models/bulkseo/Visibility.php:69
5719
  #: models/focuspages/Accuracy.php:34 models/focuspages/Audit.php:144
5720
  #: models/focuspages/Authority.php:33 models/focuspages/Backlinks.php:46
5721
  #: models/focuspages/Clicks.php:56 models/focuspages/Content.php:75
@@ -5724,93 +5746,93 @@ msgstr ""
5724
  #: models/focuspages/Innerlinks.php:64 models/focuspages/Keyword.php:79
5725
  #: models/focuspages/Length.php:55 models/focuspages/Nofollow.php:65
5726
  #: models/focuspages/Onpage.php:78 models/focuspages/Ranking.php:35
5727
- #: models/focuspages/Snippet.php:143 models/focuspages/Social.php:56
5728
  #: models/focuspages/Strategy.php:96 models/focuspages/Traffic.php:94
5729
  msgid "Current URL"
5730
  msgstr ""
5731
 
5732
  # @ squirrly-seo
5733
- #: models/bulkseo/Metas.php:139
5734
  #, fuzzy
5735
  #| msgid "Enter even more keywords."
5736
  msgid "No Meta Keyword Found"
5737
  msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5738
 
5739
- #: models/bulkseo/Metas.php:155 models/bulkseo/Metas.php:191
5740
- #: models/bulkseo/Metas.php:224 models/bulkseo/Metas.php:268
5741
- #: models/bulkseo/Metas.php:304 models/bulkseo/Metas.php:337
5742
- #: models/bulkseo/Metas.php:385 models/bulkseo/Metas.php:424
5743
- #: models/bulkseo/Opengraph.php:139 models/bulkseo/Opengraph.php:175
5744
- #: models/bulkseo/Opengraph.php:207 models/bulkseo/Opengraph.php:243
5745
- #: models/bulkseo/Opengraph.php:279 models/bulkseo/Twittercard.php:136
5746
- #: models/bulkseo/Twittercard.php:172 models/bulkseo/Twittercard.php:204
5747
- #: models/bulkseo/Twittercard.php:240 models/bulkseo/Twittercard.php:276
5748
  #: models/bulkseo/Visibility.php:83 models/bulkseo/Visibility.php:122
5749
  #: models/bulkseo/Visibility.php:155
5750
  msgid "Squirrly Snippet is deactivated from this post."
5751
  msgstr ""
5752
 
5753
- #: models/bulkseo/Metas.php:159 models/bulkseo/Metas.php:195
5754
- #: models/bulkseo/Metas.php:228 models/bulkseo/Metas.php:272
5755
- #: models/bulkseo/Metas.php:308 models/bulkseo/Metas.php:341
5756
- #: models/bulkseo/Metas.php:389 models/bulkseo/Metas.php:428
5757
  #, php-format
5758
  msgid ""
5759
  "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
5760
  "%s."
5761
  msgstr ""
5762
 
5763
- #: models/bulkseo/Metas.php:163 models/bulkseo/Metas.php:199
5764
- #: models/bulkseo/Metas.php:232
5765
  #, php-format
5766
  msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
5767
  msgstr ""
5768
 
5769
- #: models/bulkseo/Metas.php:167 models/bulkseo/Metas.php:203
5770
- #: models/bulkseo/Metas.php:236 models/bulkseo/Metas.php:280
5771
- #: models/bulkseo/Metas.php:316 models/bulkseo/Metas.php:349
5772
- #: models/bulkseo/Metas.php:393 models/bulkseo/Metas.php:436
5773
  #, php-format
5774
  msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
5775
  msgstr ""
5776
 
5777
  # @ squirrly-seo
5778
- #: models/bulkseo/Metas.php:176 models/bulkseo/Metas.php:212
5779
- #: models/bulkseo/Opengraph.php:160 models/bulkseo/Opengraph.php:196
5780
- #: models/bulkseo/Twittercard.php:157 models/bulkseo/Twittercard.php:193
5781
  #, fuzzy
5782
  #| msgid "<< Leave it automatically"
5783
  msgid "Title is generated automatically."
5784
  msgstr "<< Lass es automatisch"
5785
 
5786
- #: models/bulkseo/Metas.php:240 models/bulkseo/Metas.php:353
5787
- #: models/bulkseo/Metas.php:397
5788
  #, php-format
5789
  msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
5790
  msgstr ""
5791
 
5792
- #: models/bulkseo/Metas.php:276 models/bulkseo/Metas.php:312
5793
- #: models/bulkseo/Metas.php:345
5794
  #, php-format
5795
  msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
5796
  msgstr ""
5797
 
5798
- #: models/bulkseo/Metas.php:289 models/bulkseo/Metas.php:326
5799
- #: models/bulkseo/Opengraph.php:228 models/bulkseo/Opengraph.php:264
5800
- #: models/bulkseo/Twittercard.php:225 models/bulkseo/Twittercard.php:261
5801
  msgid "Description is generated automatically."
5802
  msgstr ""
5803
 
5804
- #: models/bulkseo/Metas.php:432
5805
  #, php-format
5806
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
5807
  msgstr ""
5808
 
5809
- #: models/bulkseo/Opengraph.php:66
5810
  msgid "OG title not empty"
5811
  msgstr ""
5812
 
5813
- #: models/bulkseo/Opengraph.php:68
5814
  #, php-format
5815
  msgid ""
5816
  "You need to have an Open Graph title for this post. %s It will help you "
@@ -5818,16 +5840,16 @@ msgid ""
5818
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5819
  msgstr ""
5820
 
5821
- #: models/bulkseo/Opengraph.php:71
5822
  #, php-format
5823
  msgid "OG title up to %s chars"
5824
  msgstr ""
5825
 
5826
- #: models/bulkseo/Opengraph.php:76
5827
  msgid "OG description not empty"
5828
  msgstr ""
5829
 
5830
- #: models/bulkseo/Opengraph.php:78
5831
  #, php-format
5832
  msgid ""
5833
  "You need to have an Open Graph description for this post. %s It will help "
@@ -5835,20 +5857,20 @@ msgid ""
5835
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5836
  msgstr ""
5837
 
5838
- #: models/bulkseo/Opengraph.php:81
5839
  #, php-format
5840
  msgid "OG description up to %s chars"
5841
  msgstr ""
5842
 
5843
- #: models/bulkseo/Opengraph.php:86 view/SeoSettings/Metas.php:184
5844
  msgid "OG Image"
5845
  msgstr ""
5846
 
5847
- #: models/bulkseo/Opengraph.php:87 models/bulkseo/Twittercard.php:84
5848
  msgid "(featured image)"
5849
  msgstr ""
5850
 
5851
- #: models/bulkseo/Opengraph.php:88
5852
  #, php-format
5853
  msgid ""
5854
  "Set a good looking image for your URL. It needs to look good in Facebook and "
@@ -5856,55 +5878,57 @@ msgid ""
5856
  "attract more clicks to your site."
5857
  msgstr ""
5858
 
5859
- #: models/bulkseo/Opengraph.php:102
5860
  msgid "Open Graph is deactivated."
5861
  msgstr ""
5862
 
5863
- #: models/bulkseo/Opengraph.php:107
5864
- msgid "Open Graph is not set correctly."
 
 
5865
  msgstr ""
5866
 
5867
  # @ squirrly-seo
5868
- #: models/bulkseo/Opengraph.php:112
5869
  #, fuzzy
5870
  #| msgid "<< Leave it automatically"
5871
  msgid "Open Graph is generated automatically."
5872
  msgstr "<< Lass es automatisch"
5873
 
5874
- #: models/bulkseo/Opengraph.php:115
5875
  msgid "Open Graph is customized and set correctly."
5876
  msgstr ""
5877
 
5878
- #: models/bulkseo/Opengraph.php:143 models/bulkseo/Opengraph.php:179
5879
- #: models/bulkseo/Opengraph.php:211 models/bulkseo/Opengraph.php:247
5880
- #: models/bulkseo/Opengraph.php:283
5881
  #, php-format
5882
  msgid ""
5883
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
5884
  "%s."
5885
  msgstr ""
5886
 
5887
- #: models/bulkseo/Opengraph.php:147 models/bulkseo/Opengraph.php:183
5888
- #: models/bulkseo/Opengraph.php:215 models/bulkseo/Opengraph.php:251
5889
- #: models/bulkseo/Opengraph.php:287
5890
  #, php-format
5891
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
5892
  msgstr ""
5893
 
5894
- #: models/bulkseo/Opengraph.php:151 models/bulkseo/Opengraph.php:187
5895
- #: models/bulkseo/Opengraph.php:219 models/bulkseo/Opengraph.php:255
5896
- #: models/bulkseo/Opengraph.php:291 models/bulkseo/Twittercard.php:148
5897
- #: models/bulkseo/Twittercard.php:184 models/bulkseo/Twittercard.php:216
5898
- #: models/bulkseo/Twittercard.php:252 models/bulkseo/Twittercard.php:288
5899
  #, php-format
5900
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
5901
  msgstr ""
5902
 
5903
- #: models/bulkseo/Twittercard.php:63
5904
  msgid "TC title not empty"
5905
  msgstr ""
5906
 
5907
- #: models/bulkseo/Twittercard.php:65
5908
  #, php-format
5909
  msgid ""
5910
  "You need to have a title for the Twitter Card of this post. %s It will help "
@@ -5912,16 +5936,16 @@ msgid ""
5912
  "also important for SEO purposes."
5913
  msgstr ""
5914
 
5915
- #: models/bulkseo/Twittercard.php:68
5916
  #, php-format
5917
  msgid "TC title up to %s chars"
5918
  msgstr ""
5919
 
5920
- #: models/bulkseo/Twittercard.php:73
5921
  msgid "TC Description not empty"
5922
  msgstr ""
5923
 
5924
- #: models/bulkseo/Twittercard.php:75
5925
  #, php-format
5926
  msgid ""
5927
  "You need to have a Twitter Card description for this post. %s It will help "
@@ -5930,16 +5954,16 @@ msgid ""
5930
  "to your site. %s It's also important for SEO purposes."
5931
  msgstr ""
5932
 
5933
- #: models/bulkseo/Twittercard.php:78
5934
  #, php-format
5935
  msgid "TC description up to %s chars"
5936
  msgstr ""
5937
 
5938
- #: models/bulkseo/Twittercard.php:83
5939
  msgid "TC Image"
5940
  msgstr ""
5941
 
5942
- #: models/bulkseo/Twittercard.php:85
5943
  #, php-format
5944
  msgid ""
5945
  "Set a good looking image for your URL. It needs to look good in Twitter "
@@ -5947,34 +5971,36 @@ msgid ""
5947
  "clicks to your site."
5948
  msgstr ""
5949
 
5950
- #: models/bulkseo/Twittercard.php:99
5951
  msgid "Twitter Card is deactivated."
5952
  msgstr ""
5953
 
5954
- #: models/bulkseo/Twittercard.php:104
5955
- msgid "Twitter Card is not set correctly."
 
 
5956
  msgstr ""
5957
 
5958
- #: models/bulkseo/Twittercard.php:109
5959
  msgid "Twitter Card is generated automatically."
5960
  msgstr ""
5961
 
5962
- #: models/bulkseo/Twittercard.php:112
5963
  msgid "Twitter Card is customized and set correctly."
5964
  msgstr ""
5965
 
5966
- #: models/bulkseo/Twittercard.php:140 models/bulkseo/Twittercard.php:176
5967
- #: models/bulkseo/Twittercard.php:208 models/bulkseo/Twittercard.php:244
5968
- #: models/bulkseo/Twittercard.php:280
5969
  #, php-format
5970
  msgid ""
5971
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
5972
  "Automation%s."
5973
  msgstr ""
5974
 
5975
- #: models/bulkseo/Twittercard.php:144 models/bulkseo/Twittercard.php:180
5976
- #: models/bulkseo/Twittercard.php:212 models/bulkseo/Twittercard.php:248
5977
- #: models/bulkseo/Twittercard.php:284
5978
  #, php-format
5979
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
5980
  msgstr ""
@@ -6026,7 +6052,9 @@ msgid "Some visibility options are inactive."
6026
  msgstr ""
6027
 
6028
  #: models/bulkseo/Visibility.php:55
6029
- msgid "Visibility is not set correctly."
 
 
6030
  msgstr ""
6031
 
6032
  #: models/bulkseo/Visibility.php:59
@@ -6104,7 +6132,7 @@ msgstr ""
6104
 
6105
  #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
6106
  #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
6107
- #: models/focuspages/Indexability.php:95
6108
  msgid "Connect Google Search"
6109
  msgstr ""
6110
 
@@ -6263,6 +6291,18 @@ msgstr ""
6263
  msgid "At Least %s Majestic SEO Links"
6264
  msgstr ""
6265
 
 
 
 
 
 
 
 
 
 
 
 
 
6266
  # @ squirrly-seo
6267
  #: models/focuspages/Clicks.php:42
6268
  #, fuzzy
@@ -6283,8 +6323,8 @@ msgstr ""
6283
  #: models/focuspages/Clicks.php:75 models/focuspages/Content.php:93
6284
  #: models/focuspages/Ctr.php:75 models/focuspages/Image.php:88
6285
  #: models/focuspages/Impressions.php:75 models/focuspages/Keyword.php:114
6286
- #: models/focuspages/Keyword.php:176 models/focuspages/Keyword.php:194
6287
- #: models/focuspages/Keyword.php:217 models/focuspages/Snippet.php:151
6288
  #: models/focuspages/Strategy.php:112
6289
  msgid "No Keyword Found"
6290
  msgstr ""
@@ -6296,20 +6336,21 @@ msgstr ""
6296
  msgid "Optimize for a keyword"
6297
  msgstr ""
6298
 
 
 
 
 
 
 
 
 
6299
  # @ squirrly-seo
6300
- #: models/focuspages/Clicks.php:96 models/focuspages/Ctr.php:96
6301
- #: models/focuspages/Impressions.php:96
6302
  #, fuzzy
6303
  #| msgid "Google %sAnalytics ID%s`:"
6304
  msgid "Connect to Google Search Console"
6305
  msgstr "Google %sAnalytics ID%s`:"
6306
 
6307
- #: models/focuspages/Clicks.php:100 models/focuspages/Content.php:114
6308
- #: models/focuspages/Ctr.php:100 models/focuspages/Impressions.php:100
6309
- #: models/focuspages/Keyword.php:149 models/focuspages/Strategy.php:132
6310
- msgid "Optimize the page for a keyword"
6311
- msgstr ""
6312
-
6313
  #: models/focuspages/Content.php:46
6314
  #, php-format
6315
  msgid "Optimize to %s"
@@ -6404,15 +6445,15 @@ msgid ""
6404
  "you used it more than once."
6405
  msgstr ""
6406
 
6407
- #: models/focuspages/Image.php:85 models/focuspages/Snippet.php:154
6408
  msgid "Edit your snippet"
6409
  msgstr ""
6410
 
6411
- #: models/focuspages/Image.php:114
6412
  msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
6413
  msgstr ""
6414
 
6415
- #: models/focuspages/Image.php:115
6416
  msgid "No image found"
6417
  msgstr ""
6418
 
@@ -6420,6 +6461,13 @@ msgstr ""
6420
  msgid "Search Results Impressions in the last 3 months"
6421
  msgstr ""
6422
 
 
 
 
 
 
 
 
6423
  #: models/focuspages/Indexability.php:52
6424
  msgid "Yes, do index"
6425
  msgstr ""
@@ -6626,11 +6674,11 @@ msgstr ""
6626
  #: models/focuspages/Keyword.php:152
6627
  msgid ""
6628
  "Congratulations for ranking with this keyword, but it will require special "
6629
- "attention from you to keep it within TOP 20 positions"
6630
  msgstr ""
6631
 
6632
- #: models/focuspages/Keyword.php:176 models/focuspages/Keyword.php:194
6633
- #: models/focuspages/Keyword.php:217
6634
  msgid "Please add a keyword first."
6635
  msgstr ""
6636
 
@@ -6681,12 +6729,18 @@ msgid "Edit Page"
6681
  msgstr ""
6682
 
6683
  # @ squirrly-seo
6684
- #: models/focuspages/Length.php:84 models/focuspages/Length.php:114
6685
- #: models/focuspages/Traffic.php:120 models/focuspages/Traffic.php:137
6686
- #: models/focuspages/Traffic.php:153 models/focuspages/Traffic.php:169
6687
  #, fuzzy
6688
  #| msgid "Google %sAnalytics ID%s`:"
6689
- msgid "Connect Google Analytics first"
 
 
 
 
 
 
 
 
6690
  msgstr "Google %sAnalytics ID%s`:"
6691
 
6692
  #: models/focuspages/Nofollow.php:50
@@ -6799,8 +6853,8 @@ msgid ""
6799
  "that product."
6800
  msgstr ""
6801
 
6802
- #: models/focuspages/Snippet.php:95 models/focuspages/Snippet.php:206
6803
- #: models/focuspages/Snippet.php:228 view/Blocks/Snippet.php:613
6804
  #: view/Blocks/Snippet.php:868 view/SeoSettings/Automation.php:134
6805
  #: view/SeoSettings/Metas.php:166
6806
  msgid "Description"
@@ -6820,7 +6874,17 @@ msgid ""
6820
  "boost CTR (click-through rates)."
6821
  msgstr ""
6822
 
6823
- #: models/focuspages/Snippet.php:106
 
 
 
 
 
 
 
 
 
 
6824
  #, php-format
6825
  msgid ""
6826
  "Same as with the title task. %s If a user reads the description of your page "
@@ -6832,11 +6896,11 @@ msgid ""
6832
  "lot about this, because that's what people want to find on the search engine."
6833
  msgstr ""
6834
 
6835
- #: models/focuspages/Snippet.php:109
6836
  msgid "Open Graph - full definition"
6837
  msgstr ""
6838
 
6839
- #: models/focuspages/Snippet.php:111
6840
  #, php-format
6841
  msgid ""
6842
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -6848,11 +6912,11 @@ msgid ""
6848
  "relevant for your search engine position placements."
6849
  msgstr ""
6850
 
6851
- #: models/focuspages/Snippet.php:114
6852
  msgid "Twitter Cards - full definition"
6853
  msgstr ""
6854
 
6855
- #: models/focuspages/Snippet.php:116
6856
  #, php-format
6857
  msgid ""
6858
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -6862,11 +6926,11 @@ msgid ""
6862
  "that you won't miss a beat."
6863
  msgstr ""
6864
 
6865
- #: models/focuspages/Snippet.php:119
6866
  msgid "JSON-LD definition"
6867
  msgstr ""
6868
 
6869
- #: models/focuspages/Snippet.php:120
6870
  #, php-format
6871
  msgid ""
6872
  "To turn this task to green, you can easily use the JSON-LD section inside "
@@ -6877,11 +6941,11 @@ msgid ""
6877
  "%shttps://search.google.com/structured-data/testing-tool%s"
6878
  msgstr ""
6879
 
6880
- #: models/focuspages/Snippet.php:123
6881
  msgid "Customized"
6882
  msgstr ""
6883
 
6884
- #: models/focuspages/Snippet.php:124
6885
  #, php-format
6886
  msgid ""
6887
  "The Snippets of your most important pages should be customized. %s Use the "
@@ -6895,7 +6959,7 @@ msgid ""
6895
  "own custom snippet will be the one that gets displayed."
6896
  msgstr ""
6897
 
6898
- #: models/focuspages/Snippet.php:207 models/focuspages/Snippet.php:229
6899
  msgid "Image"
6900
  msgstr ""
6901
 
@@ -6994,7 +7058,7 @@ msgstr ""
6994
  msgid "Manage Strategy"
6995
  msgstr ""
6996
 
6997
- #: models/focuspages/Strategy.php:161 models/focuspages/Strategy.php:168
6998
  msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
6999
  msgstr ""
7000
 
@@ -7078,6 +7142,13 @@ msgid ""
7078
  "happen more often than you would think."
7079
  msgstr ""
7080
 
 
 
 
 
 
 
 
7081
  #: models/focuspages/Traffic.php:122
7082
  msgid "Not enough traffic to show relevant stats"
7083
  msgstr ""
@@ -7112,116 +7183,131 @@ msgstr ""
7112
  msgid "Add New"
7113
  msgstr ""
7114
 
7115
- #: view/Assistant/Settings.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7116
  msgid "Live Assistant Settings"
7117
  msgstr ""
7118
 
7119
  # @ squirrly-seo
7120
- #: view/Assistant/Settings.php:34
7121
  #, fuzzy
7122
  #| msgid "Squirrly settings"
7123
  msgid "Squirrly Tooltips"
7124
  msgstr "Squirrly Einstellungen"
7125
 
7126
- #: view/Assistant/Settings.php:35
7127
  #, php-format
7128
  msgid ""
7129
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. \"Enter a keyword"
7130
  "\")."
7131
  msgstr ""
7132
 
7133
- #: view/Assistant/Settings.php:45
7134
  msgid "Download Remote Images"
7135
  msgstr ""
7136
 
7137
- #: view/Assistant/Settings.php:46
7138
  #, php-format
7139
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
7140
  msgstr ""
7141
 
7142
- #: view/Assistant/Settings.php:47
7143
  msgid ""
7144
  "Prevent from losing the images you use in your articles in case the remote "
7145
  "images are deleted."
7146
  msgstr ""
7147
 
7148
- #: view/Assistant/Settings.php:58
7149
  msgid "Copyright Free Images"
7150
  msgstr ""
7151
 
7152
- #: view/Assistant/Settings.php:59
7153
  #, php-format
7154
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7155
  msgstr ""
7156
 
7157
- #: view/Assistant/Settings.php:69
7158
  msgid "Live Assistant Type"
7159
  msgstr ""
7160
 
7161
- #: view/Assistant/Settings.php:70
7162
  msgid "Select how you want Squirrly Live Assistant to load in editor."
7163
  msgstr ""
7164
 
7165
- #: view/Assistant/Settings.php:74
7166
  msgid "Auto"
7167
  msgstr ""
7168
 
7169
- #: view/Assistant/Settings.php:75
7170
  msgid "Integrated Box"
7171
  msgstr ""
7172
 
7173
- #: view/Assistant/Settings.php:76
7174
  msgid "Floating Box"
7175
  msgstr ""
7176
 
7177
- #: view/Assistant/Settings.php:89
7178
  msgid "Activate Live Assistant in Frontend"
7179
  msgstr ""
7180
 
7181
- #: view/Assistant/Settings.php:89
7182
  msgid "(BETA)"
7183
  msgstr ""
7184
 
7185
- #: view/Assistant/Settings.php:90
7186
  msgid ""
7187
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7188
  "with Builders."
7189
  msgstr ""
7190
 
7191
- #: view/Assistant/Settings.php:91
7192
  msgid "Currently supports the Elementor Builder plugin."
7193
  msgstr ""
7194
 
7195
- #: view/Assistant/Settings.php:98
7196
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
7197
  msgstr ""
7198
 
7199
- #: view/Assistant/Settings.php:100
7200
  msgid ""
7201
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
7202
  "post types."
7203
  msgstr ""
7204
 
7205
- #: view/Assistant/Settings.php:106
7206
  msgid "Exclusions"
7207
  msgstr ""
7208
 
7209
- #: view/Assistant/Settings.php:107
7210
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7211
  msgstr ""
7212
 
7213
- #: view/Assistant/Settings.php:108
7214
  msgid "Hold Control key to select multiple places"
7215
  msgstr ""
7216
 
7217
- #: view/Assistant/Settings.php:135 view/SeoSettings/Automation.php:474
7218
  #: view/SeoSettings/Automation.php:595 view/SeoSettings/Jsonld.php:243
7219
  #: view/SeoSettings/Metas.php:231 view/SeoSettings/Sitemap.php:305
7220
  #: view/SeoSettings/Social.php:372
7221
  msgid "Show Advanced Options"
7222
  msgstr ""
7223
 
7224
- #: view/Assistant/Settings.php:136 view/SeoSettings/Automation.php:475
7225
  #: view/SeoSettings/Automation.php:596 view/SeoSettings/Jsonld.php:244
7226
  #: view/SeoSettings/Metas.php:232 view/SeoSettings/Sitemap.php:306
7227
  #: view/SeoSettings/Social.php:373
@@ -7229,8 +7315,8 @@ msgid "Hide Advanced Options"
7229
  msgstr ""
7230
 
7231
  # @ squirrly-seo
7232
- #: view/Assistant/Settings.php:139 view/Audits/Settings.php:60
7233
- #: view/Ranking/Settings.php:173 view/SeoSettings/Advanced.php:95
7234
  #: view/SeoSettings/Automation.php:478 view/SeoSettings/Automation.php:599
7235
  #: view/SeoSettings/Backup.php:206 view/SeoSettings/Favicon.php:107
7236
  #: view/SeoSettings/Jsonld.php:247 view/SeoSettings/Metas.php:235
@@ -7242,22 +7328,6 @@ msgstr ""
7242
  msgid "Save Settings"
7243
  msgstr "Squirrly Einstellungen"
7244
 
7245
- #: view/Audits/Addpage.php:8 view/Audits/Audit.php:8 view/Audits/Audits.php:8
7246
- #: view/Audits/Compare.php:11 view/Audits/Settings.php:7
7247
- #: view/BulkSeo/Bulkseo.php:12 view/FocusPages/Addpage.php:8
7248
- #: view/FocusPages/Pagelist.php:8 view/FocusPages/Settings.php:7
7249
- #: view/Ranking/Rankings.php:17 view/Ranking/Settings.php:7
7250
- #: view/SeoSettings/Advanced.php:7 view/SeoSettings/Automation.php:7
7251
- #: view/SeoSettings/Backup.php:7 view/SeoSettings/Bulkseo.php:12
7252
- #: view/SeoSettings/Favicon.php:7 view/SeoSettings/Jsonld.php:7
7253
- #: view/SeoSettings/Metas.php:7 view/SeoSettings/Robots.php:7
7254
- #: view/SeoSettings/Sitemap.php:7 view/SeoSettings/Social.php:7
7255
- #: view/SeoSettings/Tracking.php:7 view/SeoSettings/Webmaster.php:7
7256
- msgid ""
7257
- "You do not have permission to access this page. You need Squirrly SEO Admin "
7258
- "role"
7259
- msgstr ""
7260
-
7261
  #: view/Audits/Addpage.php:22
7262
  msgid "Add a page in Audit"
7263
  msgstr ""
@@ -7270,13 +7340,12 @@ msgid ""
7270
  msgstr ""
7271
 
7272
  #: view/Audits/Addpage.php:92 view/BulkSeo/Bulkseo.php:101
7273
- #: view/FocusPages/Addpage.php:92 view/SeoSettings/Bulkseo.php:96
7274
  msgid "Any status"
7275
  msgstr ""
7276
 
7277
  #: view/Audits/Addpage.php:112 view/BulkSeo/Bulkseo.php:121
7278
- #: view/FocusPages/Addpage.php:112 view/Research/Research.php:200
7279
- #: view/SeoSettings/Bulkseo.php:116
7280
  msgid "Search"
7281
  msgstr ""
7282
 
@@ -7284,7 +7353,6 @@ msgstr ""
7284
  #: view/Audits/Compare.php:44 view/BulkSeo/Bulkseo.php:123
7285
  #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:6
7286
  #: view/Ranking/Rankings.php:58 view/Research/Briefcase.php:37
7287
- #: view/SeoSettings/Bulkseo.php:118
7288
  msgid "Show All"
7289
  msgstr ""
7290
 
@@ -7301,12 +7369,12 @@ msgid "Already added"
7301
  msgstr ""
7302
 
7303
  #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
7304
- #: view/FocusPages/Addpage.php:196 view/SeoSettings/Bulkseo.php:192
7305
  msgid "Prev Page"
7306
  msgstr ""
7307
 
7308
  #: view/Audits/Addpage.php:194 view/BulkSeo/Bulkseo.php:199
7309
- #: view/FocusPages/Addpage.php:197 view/SeoSettings/Bulkseo.php:193
7310
  msgid "Next Page"
7311
  msgstr ""
7312
 
@@ -7341,28 +7409,31 @@ msgid "Last checked"
7341
  msgstr ""
7342
 
7343
  # @ squirrly-seo
7344
- #: view/Audits/AuditPageRow.php:46 view/FocusPages/FocusPageRow.php:92
7345
  #, fuzzy
7346
  #| msgid "Could not send the email..."
7347
  msgid "Could not create the audit for this URL"
7348
  msgstr "Konnte E-Mail nicht senden ..."
7349
 
7350
- #: view/Audits/AuditPageRow.php:46 view/FocusPages/FocusPageRow.php:92
7351
  msgid "error code"
7352
  msgstr ""
7353
 
7354
- #: view/Audits/AuditPageRow.php:48
7355
  #, php-format
7356
  msgid ""
7357
- "The current way your WordPress site is hosted can cause experience issues to "
7358
- "the way Squirrly SEO works. %s In order to serve you with the best data, and "
7359
- "make sure that the Page audits can be processed, you will need to talk to "
7360
- "your hosting provider and tell them to make the following settings. %s "
7361
- "Please add the IP address 176.9.112.210 in the white-list for remote access "
7362
- "and it should work."
 
 
 
7363
  msgstr ""
7364
 
7365
- #: view/Audits/AuditPageRow.php:69
7366
  msgid "Delete Page from Audit"
7367
  msgstr ""
7368
 
@@ -7511,7 +7582,7 @@ msgstr ""
7511
  msgid "Audits"
7512
  msgstr ""
7513
 
7514
- #: view/Audits/Audits.php:55
7515
  #, php-format
7516
  msgid ""
7517
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
@@ -7519,11 +7590,18 @@ msgid ""
7519
  "involved."
7520
  msgstr ""
7521
 
7522
- #: view/Audits/Audits.php:62
7523
  #, php-format
7524
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
7525
  msgstr ""
7526
 
 
 
 
 
 
 
 
7527
  # @ squirrly-seo
7528
  #: view/Audits/Settings.php:30
7529
  #, fuzzy
@@ -7542,47 +7620,27 @@ msgstr "Ihre E-Mail Adresse:"
7542
  msgid "Enter the email address on which you want to receive the weekly audits."
7543
  msgstr ""
7544
 
7545
- #: view/Blocks/Account.php:33
 
 
 
 
7546
  msgid "Your Plan: "
7547
  msgstr ""
7548
 
7549
- #: view/Blocks/Account.php:34
7550
  msgid "Check Account Info"
7551
  msgstr ""
7552
 
7553
- #: view/Blocks/Account.php:39
7554
  msgid "Email: "
7555
  msgstr ""
7556
 
7557
- #: view/Blocks/Account.php:45
7558
  #, php-format
7559
  msgid "Due Date: %s"
7560
  msgstr ""
7561
 
7562
- #: view/Blocks/Assistant.php:13
7563
- msgid "Show Advanced SEO"
7564
- msgstr ""
7565
-
7566
- #: view/Blocks/Assistant.php:14
7567
- msgid ""
7568
- "Switch off to have the simplified version of the settings, intended for Non-"
7569
- "SEO Experts."
7570
- msgstr ""
7571
-
7572
- #: view/Blocks/Assistant.php:15
7573
- msgid ""
7574
- "It will offer the same level of SEO performance, but it will be less "
7575
- "customizable."
7576
- msgstr ""
7577
-
7578
- #: view/Blocks/Assistant.php:25
7579
- msgid "We Need Your Support"
7580
- msgstr ""
7581
-
7582
- #: view/Blocks/Assistant.php:34
7583
- msgid "Rate us if you like Squirrly SEO"
7584
- msgstr ""
7585
-
7586
  #: view/Blocks/Audits.php:7 view/Blocks/Audits.php:53
7587
  msgid "See Audits"
7588
  msgstr ""
@@ -7611,21 +7669,21 @@ msgstr ""
7611
  msgid "Go to Focus Pages"
7612
  msgstr ""
7613
 
7614
- #: view/Blocks/Connect.php:13 view/Blocks/Connect.php:27
7615
  msgid ""
7616
  "This option is used to track innerlinks and insights for your Focus Pages "
7617
  "and give detailed informations about them."
7618
  msgstr ""
7619
 
7620
- #: view/Blocks/Connect.php:15 view/Blocks/Connect.php:29
7621
  msgid "Let Squirrly API get data for Focus Pages"
7622
  msgstr ""
7623
 
7624
- #: view/Blocks/Connect.php:16
7625
  msgid "Connect"
7626
  msgstr ""
7627
 
7628
- #: view/Blocks/Connect.php:30
7629
  msgid "disconnect"
7630
  msgstr ""
7631
 
@@ -7680,6 +7738,285 @@ msgstr ""
7680
  msgid "Checking the website ..."
7681
  msgstr ""
7682
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7683
  #: view/Blocks/FocusPages.php:7
7684
  msgid "See Focus Pages"
7685
  msgstr ""
@@ -7704,10 +8041,6 @@ msgstr ""
7704
  msgid "Then set a page as focus"
7705
  msgstr ""
7706
 
7707
- #: view/Blocks/Jorney.php:12 view/Blocks/Jorney.php:95
7708
- msgid "14 Days Journey Course"
7709
- msgstr ""
7710
-
7711
  #: view/Blocks/Jorney.php:17
7712
  #, php-format
7713
  msgid "Follow the %sdaily recipe%s from below."
@@ -7764,13 +8097,13 @@ msgstr ""
7764
 
7765
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
7766
  #: view/Ranking/Rankings.php:395 view/Research/Briefcase.php:256
7767
- #: view/Research/History.php:30 view/Research/Research.php:193
7768
  #: view/Research/Suggested.php:29
7769
  msgid "Country"
7770
  msgstr ""
7771
 
7772
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
7773
- #: view/Research/History.php:30 view/Research/Research.php:193
7774
  #: view/Research/Suggested.php:29
7775
  msgid "Co"
7776
  msgstr ""
@@ -7778,14 +8111,14 @@ msgstr ""
7778
  #: view/Blocks/KRFound.php:18 view/Blocks/KRFound.php:19
7779
  #: view/Blocks/KRFound.php:64 view/Research/Briefcase.php:261
7780
  #: view/Research/HistoryDetails.php:16 view/Research/HistoryDetails.php:18
7781
- #: view/Research/Research.php:195 view/Research/Research.php:196
7782
  #: view/Research/Suggested.php:31 view/Research/Suggested.php:32
7783
  #: view/Research/Suggested.php:81
7784
  msgid "Competition"
7785
  msgstr ""
7786
 
7787
  #: view/Blocks/KRFound.php:22 view/Blocks/KRFound.php:69
7788
- #: view/Research/HistoryDetails.php:12 view/Research/Research.php:199
7789
  #: view/Research/Suggested.php:35 view/Research/Suggested.php:86
7790
  msgid "SEO Search Volume"
7791
  msgstr ""
@@ -7797,19 +8130,19 @@ msgstr ""
7797
 
7798
  #: view/Blocks/KRFound.php:26 view/Blocks/KRFound.php:74
7799
  #: view/Research/Briefcase.php:277 view/Research/HistoryDetails.php:8
7800
- #: view/Research/Research.php:203 view/Research/Suggested.php:39
7801
  #: view/Research/Suggested.php:91
7802
  msgid "Recent discussions"
7803
  msgstr ""
7804
 
7805
  #: view/Blocks/KRFound.php:27 view/Research/HistoryDetails.php:10
7806
- #: view/Research/Research.php:204 view/Research/Suggested.php:40
7807
  msgid "Discussion"
7808
  msgstr ""
7809
 
7810
  #: view/Blocks/KRFound.php:30 view/Blocks/KRFound.php:31
7811
  #: view/Blocks/KRFound.php:79 view/Research/Briefcase.php:283
7812
- #: view/Research/HistoryDetails.php:20 view/Research/Research.php:207
7813
  #: view/Research/Suggested.php:43
7814
  msgid "Trending"
7815
  msgstr ""
@@ -7842,11 +8175,6 @@ msgstr ""
7842
  msgid "Go to Briefcase"
7843
  msgstr ""
7844
 
7845
- #: view/Blocks/KRHistory.php:5 view/Onboarding/Step1.3.php:11
7846
- #: view/Research/Research.php:18
7847
- msgid "Keyword Research"
7848
- msgstr ""
7849
-
7850
  #: view/Blocks/KRHistory.php:6
7851
  msgid "See Research History"
7852
  msgstr ""
@@ -8399,53 +8727,53 @@ msgstr ""
8399
  msgid "%sPlease connect to SquirrlyCloud first%s"
8400
  msgstr ""
8401
 
8402
- #: view/Blocks/Stats.php:22
8403
  msgid "Hello"
8404
  msgstr ""
8405
 
8406
- #: view/Blocks/Stats.php:28
8407
  #, php-format
8408
  msgid "%s SEO Protection"
8409
  msgstr ""
8410
 
8411
- #: view/Blocks/Stats.php:31
8412
  msgid "All protection layers are activated."
8413
  msgstr ""
8414
 
8415
- #: view/Blocks/Stats.php:33
8416
  #, php-format
8417
  msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
8418
  msgstr ""
8419
 
8420
- #: view/Blocks/Stats.php:37
8421
  msgid "How does this work?"
8422
  msgstr ""
8423
 
8424
- #: view/Blocks/Stats.php:45
8425
  msgid "Pages SEO'ed"
8426
  msgstr ""
8427
 
8428
- #: view/Blocks/Stats.php:51
8429
  msgid "Post Types Covered"
8430
  msgstr ""
8431
 
8432
- #: view/Blocks/Stats.php:56 view/Goals/CheckSeo.php:102
8433
  #, php-format
8434
  msgid "%s Aspects"
8435
  msgstr ""
8436
 
8437
  # @ squirrly-seo
8438
- #: view/Blocks/Stats.php:57 view/Goals/CheckSeo.php:103
8439
  #, fuzzy
8440
  #| msgid "Squirrly settings"
8441
  msgid "Handled by Squirrly Genius."
8442
  msgstr "Squirrly Einstellungen"
8443
 
8444
- #: view/Blocks/Stats.php:59
8445
  msgid "Can I see them?"
8446
  msgstr ""
8447
 
8448
- #: view/Blocks/Stats.php:63 view/Goals/Goals.php:43
8449
  msgid "Run SEO Test"
8450
  msgstr ""
8451
 
@@ -8558,20 +8886,20 @@ msgstr ""
8558
  msgid "Thank you! You can send us a happy face tomorrow too."
8559
  msgstr ""
8560
 
8561
- #: view/Blocks/VersionBar.php:7
8562
  #, php-format
8563
  msgid ""
8564
  "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
8565
  "accurate and objective."
8566
  msgstr ""
8567
 
8568
- #: view/Blocks/VersionBar.php:10
8569
  #, php-format
8570
  msgid ""
8571
  "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
8572
  msgstr ""
8573
 
8574
- #: view/Blocks/VersionBar.php:16
8575
  #, php-format
8576
  msgid ""
8577
  "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
@@ -8580,14 +8908,14 @@ msgid ""
8580
  "your plan to %sBusiness Plan%s"
8581
  msgstr ""
8582
 
8583
- #: view/Blocks/VersionBar.php:23
8584
  #, php-format
8585
  msgid ""
8586
  "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
8587
  "hour."
8588
  msgstr ""
8589
 
8590
- #: view/Blocks/VersionBar.php:27
8591
  #, php-format
8592
  msgid ""
8593
  "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
@@ -8595,14 +8923,14 @@ msgid ""
8595
  "please upgrade your plan to %sPRO Plan%s"
8596
  msgstr ""
8597
 
8598
- #: view/Blocks/VersionBar.php:34
8599
  #, php-format
8600
  msgid ""
8601
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
8602
  "audit for each page every 5 mins."
8603
  msgstr ""
8604
 
8605
- #: view/Blocks/VersionBar.php:38
8606
  #, php-format
8607
  msgid ""
8608
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
@@ -8610,14 +8938,22 @@ msgid ""
8610
  "upgrade your plan to %sPRO Plan%s"
8611
  msgstr ""
8612
 
8613
- #: view/Blocks/VersionBar.php:46
 
 
 
 
 
 
 
 
8614
  #, php-format
8615
  msgid ""
8616
  "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
8617
  "tasks to get 100%% optimized posts and pages."
8618
  msgstr ""
8619
 
8620
- #: view/Blocks/VersionBar.php:50
8621
  #, php-format
8622
  msgid ""
8623
  "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
@@ -8625,7 +8961,7 @@ msgid ""
8625
  "Plan%s"
8626
  msgstr ""
8627
 
8628
- #: view/Blocks/VersionBar.php:58
8629
  #, php-format
8630
  msgid ""
8631
  "%sResearch %s:%s You have %s researches left for your account. The research "
@@ -8633,14 +8969,14 @@ msgid ""
8633
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
8634
  msgstr ""
8635
 
8636
- #: view/Blocks/VersionBar.php:62
8637
  #, php-format
8638
  msgid ""
8639
  "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
8640
  "Deep Keyword Research and get up to 50 results on each research."
8641
  msgstr ""
8642
 
8643
- #: view/Blocks/VersionBar.php:66
8644
  #, php-format
8645
  msgid ""
8646
  "%sResearch %s:%s You have %s researches left for your account. The research "
@@ -8648,64 +8984,64 @@ msgid ""
8648
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
8649
  msgstr ""
8650
 
8651
- #: view/Blocks/VersionBar.php:73
8652
  #, php-format
8653
  msgid ""
8654
  "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
8655
  "optimize your posts and pages."
8656
  msgstr ""
8657
 
8658
- #: view/Blocks/VersionBar.php:78
8659
  #, php-format
8660
  msgid ""
8661
  "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
8662
  "keywords to organize the keywords by your SEO strategy."
8663
  msgstr ""
8664
 
8665
- #: view/Blocks/VersionBar.php:84
8666
  #, php-format
8667
  msgid ""
8668
  "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
8669
  "find better matching keywords based on your research history."
8670
  msgstr ""
8671
 
8672
- #: view/Blocks/VersionBar.php:88
8673
  #, php-format
8674
  msgid ""
8675
  "This feature is only available for PRO and Business accounts. %sTo get "
8676
  "Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s"
8677
  msgstr ""
8678
 
8679
- #: view/Blocks/VersionBar.php:97
8680
  #, php-format
8681
  msgid ""
8682
  "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
8683
  "SEO for free."
8684
  msgstr ""
8685
 
8686
- #: view/Blocks/VersionBar.php:103
8687
  #, php-format
8688
  msgid ""
8689
  "%sOn-Page SEO Settings:%s This feature is included in all versions of "
8690
  "Squirrly SEO for free."
8691
  msgstr ""
8692
 
8693
- #: view/BulkSeo/Bulkseo.php:30 view/SeoSettings/Bulkseo.php:26
8694
  msgid ""
8695
  "Simplify the SEO process for all your posts types and optimize them in just "
8696
  "minutes. "
8697
  msgstr ""
8698
 
8699
- #: view/BulkSeo/Bulkseo.php:183 view/SeoSettings/Bulkseo.php:178
8700
  #, php-format
8701
  msgid "No data for this filter. %sShow All%s records for this post type."
8702
  msgstr ""
8703
 
8704
- #: view/BulkSeo/Bulkseo.php:185 view/SeoSettings/Bulkseo.php:180
8705
  msgid "No data found for this post type. Try other post types."
8706
  msgstr ""
8707
 
8708
- #: view/BulkSeo/BulkseoRow.php:26 view/SeoSettings/BulkseoRow.php:26
8709
  #, php-format
8710
  msgid "View &#8220;%s&#8221;"
8711
  msgstr ""
@@ -8748,10 +9084,6 @@ msgstr ""
8748
  msgid "Check connection"
8749
  msgstr ""
8750
 
8751
- #: view/Connect/GoogleSearchConsole.php:7
8752
- msgid "Google Search Console"
8753
- msgstr ""
8754
-
8755
  #: view/Connect/GoogleSearchConsole.php:12
8756
  msgid "You are connected to Google Search Console"
8757
  msgstr ""
@@ -8769,14 +9101,6 @@ msgid ""
8769
  "each Audit"
8770
  msgstr ""
8771
 
8772
- #: view/Dashboard.php:11
8773
- msgid "Connect to Squirrly Data Cloud"
8774
- msgstr ""
8775
-
8776
- #: view/Dashboard.php:22
8777
- msgid "Squirrly dashboard"
8778
- msgstr ""
8779
-
8780
  #: view/Errors/Maintenance.php:20
8781
  #, php-format
8782
  msgid ""
@@ -8828,30 +9152,19 @@ msgstr ""
8828
  msgid "Details"
8829
  msgstr ""
8830
 
8831
- #: view/FocusPages/FocusPageRow.php:94
8832
- #, php-format
8833
- msgid ""
8834
- "The current way your WordPress site is hosted can cause experience issues to "
8835
- "the way Squirrly SEO works. %s In order to serve you with the best data, and "
8836
- "make sure that the Focus Pages audits can be processed, you will need to "
8837
- "talk to your hosting provider and tell them to make the following settings. "
8838
- "%s Please add the IP address 176.9.112.210 in the white-list for remote "
8839
- "access and it should work."
8840
- msgstr ""
8841
-
8842
- #: view/FocusPages/FocusPageRow.php:99
8843
  msgid "Currently processing data. Please refresh in a few minutes."
8844
  msgstr ""
8845
 
8846
  # @ squirrly-seo
8847
- #: view/FocusPages/FocusPageRow.php:105 view/FocusPages/FocusPageRow.php:109
8848
- #: view/FocusPages/FocusPageRow.php:125 view/FocusPages/FocusPages.php:54
8849
  #, fuzzy
8850
  #| msgid "Change it >>"
8851
  msgid "Chance to Rank"
8852
  msgstr "Ändern >>"
8853
 
8854
- #: view/FocusPages/FocusPageRow.php:163
8855
  msgid "Delete Focus Page"
8856
  msgstr ""
8857
 
@@ -8951,7 +9264,7 @@ msgstr ""
8951
  msgid "Don't choose your Home Page, Contact Page or About Use page."
8952
  msgstr ""
8953
 
8954
- #: view/FocusPages/Pagelist.php:51
8955
  #, php-format
8956
  msgid ""
8957
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
@@ -8996,10 +9309,6 @@ msgstr ""
8996
  msgid "Congratulations!"
8997
  msgstr ""
8998
 
8999
- #: view/Goals/Goals.php:34
9000
- msgid "Daily SEO Goals"
9001
- msgstr ""
9002
-
9003
  #: view/Goals/Goals.php:36
9004
  #, php-format
9005
  msgid "%s goals for today"
@@ -9201,10 +9510,6 @@ msgstr ""
9201
  msgid "Get a Birds-Eye-View of your Site’s Overall SEO Optimization"
9202
  msgstr ""
9203
 
9204
- #: view/Onboarding/Step1.5.php:21
9205
- msgid "Google SERP Checker"
9206
- msgstr ""
9207
-
9208
  #: view/Onboarding/Step1.5.php:35
9209
  msgid ""
9210
  "Accurately Track Your Rankings with Squirrly’s User-Friendly Google SERP "
@@ -9434,6 +9739,36 @@ msgid ""
9434
  "our features %s by creating a free account"
9435
  msgstr ""
9436
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9437
  #: view/Ranking/Gscsync.php:15
9438
  msgid "Google Search Console Keywords Sync"
9439
  msgstr ""
@@ -9508,8 +9843,8 @@ msgstr ""
9508
 
9509
  #: view/Ranking/Rankings.php:35
9510
  msgid ""
9511
- "See the Google Search Console average possition, click and impressions for "
9512
- "organic keywords"
9513
  msgstr ""
9514
 
9515
  #: view/Ranking/Rankings.php:98
@@ -10306,7 +10641,7 @@ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
10306
  msgid "Welcome to Keyword Research History"
10307
  msgstr ""
10308
 
10309
- #: view/Research/HistoryDetails.php:22 view/Research/Research.php:208
10310
  #: view/Research/Suggested.php:44
10311
  msgid "Trend"
10312
  msgstr ""
@@ -10388,11 +10723,11 @@ msgid ""
10388
  "Squirrly's Market Intelligence Features."
10389
  msgstr ""
10390
 
10391
- #: view/Research/Research.php:34 view/Research/Research.php:145
10392
  msgid "You've reached your Keyword Research Limit"
10393
  msgstr ""
10394
 
10395
- #: view/Research/Research.php:35 view/Research/Research.php:146
10396
  msgid "Check Your Account"
10397
  msgstr ""
10398
 
@@ -10437,8 +10772,8 @@ msgid ""
10437
  "For local SEO you need to select the Country where you run your business"
10438
  msgstr ""
10439
 
10440
- #: view/Research/Research.php:100 view/Research/Research.php:152
10441
- #: view/Research/Research.php:220
10442
  msgid "Start Over"
10443
  msgstr ""
10444
 
@@ -10446,94 +10781,100 @@ msgstr ""
10446
  msgid "Step 3/4: Select similar keywords from below"
10447
  msgstr ""
10448
 
10449
- #: view/Research/Research.php:148
 
 
 
 
 
 
10450
  #, php-format
10451
  msgid "We could not find similar keywords. %sClick on \"Do research\""
10452
  msgstr ""
10453
 
10454
  # @ squirrly-seo
10455
- #: view/Research/Research.php:158
10456
  #, fuzzy
10457
  #| msgid "Do the research"
10458
  msgid "Do a deep research"
10459
  msgstr "Recherchieren"
10460
 
10461
  # @ squirrly-seo
10462
- #: view/Research/Research.php:162 view/Research/Research.php:168
10463
  #, fuzzy
10464
  #| msgid "Do the research"
10465
  msgid "Do research"
10466
  msgstr "Recherchieren"
10467
 
10468
- #: view/Research/Research.php:176
10469
  msgid ""
10470
  "Keyword Research in progress. We're doing all of this in real-time. Data is "
10471
  "fresh."
10472
  msgstr ""
10473
 
10474
- #: view/Research/Research.php:177
10475
  msgid "We're now finding 10 alternatives for each keyword you selected."
10476
  msgstr ""
10477
 
10478
- #: view/Research/Research.php:178
10479
  msgid ""
10480
  "For each alternative, we are looking at the top 10 pages ranked on Google "
10481
  "for that keyword."
10482
  msgstr ""
10483
 
10484
- #: view/Research/Research.php:179
10485
  msgid ""
10486
  "We are now measuring the web authority of each competing page and comparing "
10487
  "it to yours."
10488
  msgstr ""
10489
 
10490
- #: view/Research/Research.php:180
10491
  msgid "Looking at the monthly search volume for each keyword."
10492
  msgstr ""
10493
 
10494
- #: view/Research/Research.php:181
10495
  msgid "Analyzing the last 30 days of Google trends for each keyword."
10496
  msgstr ""
10497
 
10498
- #: view/Research/Research.php:182
10499
  msgid ""
10500
  "Seeing how many discussions there are on forums and Twitter for each keyword."
10501
  msgstr ""
10502
 
10503
- #: view/Research/Research.php:183
10504
  msgid ""
10505
  "Piecing all the keywords together now after analyzing each individual "
10506
  "keyword."
10507
  msgstr ""
10508
 
10509
- #: view/Research/Research.php:184
10510
  msgid "Preparing the results."
10511
  msgstr ""
10512
 
10513
- #: view/Research/Research.php:186
10514
  msgid "Step 4/4: We found some relevant keywords for you"
10515
  msgstr ""
10516
 
10517
- #: view/Research/Research.php:187
10518
  #, php-format
10519
  msgid ""
10520
  "Still processing. give it a bit more time, then go to %sResearch History%s. "
10521
  "Results will appear there."
10522
  msgstr ""
10523
 
10524
- #: view/Research/Research.php:188
10525
  msgid "Step 4/4: We could not find relevant keywords for you"
10526
  msgstr ""
10527
 
10528
- #: view/Research/Research.php:235
10529
  msgid "How to Find Amazing Keywords and get more search traffic?"
10530
  msgstr ""
10531
 
10532
- #: view/Research/Research.php:249
10533
  msgid "Already Have Keywords?"
10534
  msgstr ""
10535
 
10536
- #: view/Research/Research.php:252
10537
  msgid "Import Keywords From CSV"
10538
  msgstr ""
10539
 
@@ -10591,11 +10932,11 @@ msgstr ""
10591
  msgid "For compatibility with some Cache and CDN plugins."
10592
  msgstr ""
10593
 
10594
- #: view/SeoSettings/Advanced.php:78
10595
  msgid "Delete Squirrly Table on Uninstall"
10596
  msgstr ""
10597
 
10598
- #: view/SeoSettings/Advanced.php:79
10599
  msgid "Delete Squirrly SEO table and options on uninstall."
10600
  msgstr ""
10601
 
@@ -10874,6 +11215,12 @@ msgstr ""
10874
  msgid "JSON-LD Description Length"
10875
  msgstr ""
10876
 
 
 
 
 
 
 
10877
  #: view/SeoSettings/Backup.php:23
10878
  msgid "Import Settings & SEO"
10879
  msgstr ""
@@ -10997,12 +11344,6 @@ msgstr "Squirrly Einstellungen"
10997
  msgid "Website Icon"
10998
  msgstr ""
10999
 
11000
- #: view/SeoSettings/Favicon.php:29
11001
- msgid ""
11002
- "Add your website icon in the browser tabs and on other devices like iPhone, "
11003
- "iPad and Android phones."
11004
- msgstr ""
11005
-
11006
  #: view/SeoSettings/Favicon.php:35
11007
  msgid "Activate Favicon"
11008
  msgstr ""
@@ -11608,7 +11949,7 @@ msgstr ""
11608
 
11609
  #: view/SeoSettings/Social.php:271
11610
  msgid ""
11611
- "Add the Twitter card in your tweets so that your Twitter shares look good."
11612
  msgstr ""
11613
 
11614
  #: view/SeoSettings/Social.php:272
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-06-01 16:36+0300\n"
6
+ "PO-Revision-Date: 2020-06-01 16:36+0300\n"
7
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
8
  "Language-Team: \n"
9
  "Language: cs_CZ\n"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 2.3.1\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  #: classes/Error.php:79 classes/Error.php:90
23
  msgid "Don't bother me!"
24
  msgstr ""
25
 
26
+ #: classes/RemoteController.php:263
27
  msgid "Too many API attempts, please slow down the request."
28
  msgstr ""
29
 
30
+ #: classes/RemoteController.php:267
31
  msgid ""
32
  "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
33
  "in a minute."
34
  msgstr ""
35
 
36
+ #: classes/RemoteController.php:326
37
  msgid "Articles optimized so far"
38
  msgstr ""
39
 
40
+ #: classes/RemoteController.php:328 classes/RemoteController.php:335
41
  msgid "add post"
42
  msgstr ""
43
 
44
+ #: classes/RemoteController.php:333
45
  msgid "Average optimization"
46
  msgstr ""
47
 
48
  # @ squirrly-seo
49
+ #: classes/RemoteController.php:340
50
  #, fuzzy
51
  #| msgid "Do the research"
52
  msgid "Keyword Researches"
53
  msgstr "Recherchieren"
54
 
55
  # @ squirrly-seo
56
+ #: classes/RemoteController.php:342
57
  #, fuzzy
58
  #| msgid "Do the research"
59
  msgid "do research"
60
  msgstr "Recherchieren"
61
 
62
+ #: classes/RemoteController.php:347
63
  msgid "Keywords stored in Squirrly Briefcase"
64
  msgstr ""
65
 
66
+ #: classes/RemoteController.php:349
67
  msgid "add keyword"
68
  msgstr ""
69
 
70
+ #: classes/RemoteController.php:354
71
  msgid "Pages ranking in top 100 Google"
72
  msgstr ""
73
 
74
+ #: classes/RemoteController.php:356
75
  msgid "see rankings"
76
  msgstr ""
77
 
78
+ #: classes/RemoteController.php:361
79
  msgid "SEO Audits"
80
  msgstr ""
81
 
82
+ #: classes/RemoteController.php:363
83
  msgid "see audits"
84
  msgstr ""
85
 
86
  # @ squirrly-seo
87
+ #: classes/RemoteController.php:1279
88
  msgid "Keyword:"
89
  msgstr ""
90
 
91
  # @ squirrly-seo
92
+ #: classes/RemoteController.php:1280
93
  msgid "date"
94
  msgstr ""
95
 
96
+ #: classes/RemoteController.php:1281 controllers/CheckSeo.php:317
97
  #: controllers/Patterns.php:16 controllers/Research.php:259
98
  #: controllers/Research.php:290 controllers/Research.php:344
99
  #: controllers/Research.php:654
101
  msgstr ""
102
 
103
  # @ squirrly-seo
104
+ #: classes/RemoteController.php:1282
105
  msgid "Read it!"
106
  msgstr ""
107
 
108
  # @ squirrly-seo
109
+ #: classes/RemoteController.php:1283
110
  msgid "Insert it!"
111
  msgstr ""
112
 
113
  # @ squirrly-seo
114
+ #: classes/RemoteController.php:1284
115
  msgid "Reference"
116
  msgstr ""
117
 
118
  # @ squirrly-seo
119
+ #: classes/RemoteController.php:1285
120
  msgid "Insert as box"
121
  msgstr ""
122
 
123
+ #: classes/RemoteController.php:1286
124
  msgid "Insert Link"
125
  msgstr ""
126
 
127
  # @ squirrly-seo
128
+ #: classes/RemoteController.php:1287
129
  msgid "Not relevant?"
130
  msgstr ""
131
 
132
  # @ squirrly-seo
133
+ #: classes/RemoteController.php:1288
134
  msgid "Insert in your article"
135
  msgstr ""
136
 
137
+ #: classes/RemoteController.php:1289
138
  msgid ":( An error occurred while processing your request. Please try again"
139
  msgstr ""
140
 
141
  # @ squirrly-seo
142
+ #: classes/RemoteController.php:1290
143
  msgid "No results found!"
144
  msgstr ""
145
 
146
+ #: classes/RemoteController.php:1291
147
  #, php-format
148
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
149
  msgstr ""
150
 
151
+ #: classes/RemoteController.php:1292
152
  msgid "Has creative commons attributes"
153
  msgstr ""
154
 
155
+ #: classes/RemoteController.php:1293
156
  msgid "No known copyright restrictions"
157
  msgstr ""
158
 
159
+ #: classes/RemoteController.php:1294
160
  msgid ""
161
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
162
  "optimize for a keyword before publishing?"
163
  msgstr ""
164
 
165
+ #: classes/RemoteController.php:1295
166
  msgid "Your Subscription has Expired"
167
  msgstr ""
168
 
169
+ #: classes/RemoteController.php:1296
170
  msgid "There are no keywords saved in briefcase yet"
171
  msgstr ""
172
 
173
+ #: classes/RemoteController.php:1297
174
  #, php-format
175
  msgid "Congratulations! Your article is 100% optimized!"
176
  msgstr ""
177
 
178
+ #: classes/RemoteController.php:1298
179
  #, php-format
180
  msgid "appears too many times. Try to remove %s of them"
181
  msgstr ""
182
 
183
+ #: classes/RemoteController.php:1299
184
  #, php-format
185
  msgid "write %s more words"
186
  msgstr ""
187
 
188
+ #: classes/RemoteController.php:1300
189
  #, php-format
190
  msgid "Add the keyword in the %s of your article"
191
  msgstr ""
192
 
193
+ #: classes/RemoteController.php:1301
194
  msgid "Click to keep the highlight on"
195
  msgstr ""
196
 
197
+ #: classes/RemoteController.php:1302
198
  msgid "introduction"
199
  msgstr ""
200
 
201
+ #: classes/RemoteController.php:1303
202
  #, php-format
203
  msgid "Write more words after the %s keyword"
204
  msgstr ""
205
 
206
+ #: classes/RemoteController.php:1304
207
  msgid "or use synonyms"
208
  msgstr ""
209
 
210
+ #: classes/RemoteController.php:1305
211
  #, php-format
212
  msgid "add %s more word(s)"
213
  msgstr ""
214
 
215
+ #: classes/RemoteController.php:1306
216
  #, php-format
217
  msgid "or remove %s word(s)"
218
  msgstr ""
219
 
220
+ #: classes/RemoteController.php:1307
221
  #, php-format
222
  msgid "add %s more keyword(s)"
223
  msgstr ""
224
 
225
+ #: classes/RemoteController.php:1308
226
  #, php-format
227
  msgid "write %s more words to start calculating"
228
  msgstr ""
229
 
230
+ #: classes/RemoteController.php:1309 view/Research/Research.php:48
231
  msgid "Add to Briefcase"
232
  msgstr ""
233
 
234
+ #: classes/RemoteController.php:1310
235
  msgid "Add Keyword to Briefcase"
236
  msgstr ""
237
 
238
+ #: classes/RemoteController.php:1311
239
  msgid "Select"
240
  msgstr ""
241
 
242
+ #: classes/RemoteController.php:1312 view/Blocks/Snippet.php:136
243
  #: view/Blocks/Snippet.php:509 view/Blocks/Snippet.php:765
244
  msgid "Auto Draft"
245
  msgstr ""
246
 
247
+ #: classes/RemoteController.php:1313
248
  msgid ""
249
  "You’ve already used the Live Assistant to optimize this post when creating "
250
  "it in your Page Builder. Please go back and resume your optimization work "
287
  msgid "The code for Facebook App must only contain numbers."
288
  msgstr ""
289
 
290
+ #: classes/helpers/Tools.php:82
291
  msgid "Getting started"
292
  msgstr ""
293
 
294
+ #: classes/helpers/Tools.php:107
295
  msgid "Documentation"
296
  msgstr ""
297
 
298
+ #: classes/helpers/Tools.php:108
299
  msgid "Leave a review"
300
  msgstr ""
301
 
302
+ #: classes/helpers/Tools.php:407
303
  msgid "Format"
304
  msgstr ""
305
 
306
+ #: classes/helpers/Tools.php:425 classes/helpers/Tools.php:461
307
  msgid "Category"
308
  msgstr ""
309
 
310
+ #: classes/helpers/Tools.php:443 classes/helpers/Tools.php:479
311
  msgid "Tag"
312
  msgstr ""
313
 
314
+ #: classes/helpers/Tools.php:497
315
  msgid "Shipping Option"
316
  msgstr ""
317
 
318
+ #: classes/helpers/Tools.php:515
319
  msgid "Author at"
320
  msgstr ""
321
 
322
+ #: classes/helpers/Tools.php:587
323
  msgid "Are you looking for"
324
  msgstr ""
325
 
326
+ #: classes/helpers/Tools.php:588
327
  msgid "These are the results for"
328
  msgstr ""
329
 
330
+ #: classes/helpers/Tools.php:588
331
  msgid "that you can find on our website."
332
  msgstr ""
333
 
334
+ #: classes/helpers/Tools.php:622
335
  msgid "Page not found"
336
  msgstr ""
337
 
338
+ #: classes/helpers/Tools.php:623
339
  msgid "This page could not be found on our website."
340
  msgstr ""
341
 
342
+ #: classes/helpers/Tools.php:891
343
  msgid "For better text comparison you need to install PHP mbstring extension."
344
  msgstr ""
345
 
483
  msgstr ""
484
 
485
  #: controllers/Assistant.php:102 controllers/Assistant.php:129
486
+ #: controllers/Audits.php:337 controllers/Ranking.php:134
487
  #: controllers/SeoSettings.php:149 controllers/SeoSettings.php:166
488
  #: controllers/SeoSettings.php:187 controllers/SeoSettings.php:224
489
  #: controllers/SeoSettings.php:250 controllers/SeoSettings.php:278
493
  msgstr ""
494
 
495
  #: controllers/Assistant.php:108 controllers/BulkSeo.php:69
496
+ #: controllers/Patterns.php:100 controllers/Post.php:254
497
+ #: controllers/Post.php:307 controllers/Post.php:339 controllers/Post.php:374
498
  #: controllers/PostsList.php:182 controllers/Research.php:172
499
  #: controllers/Research.php:179 controllers/Research.php:217
500
  #: controllers/Research.php:240 controllers/Research.php:270
506
  #: controllers/SeoSettings.php:543 controllers/SeoSettings.php:568
507
  #: controllers/SeoSettings.php:605 controllers/SeoSettings.php:642
508
  #: controllers/SeoSettings.php:656 controllers/SeoSettings.php:678
509
+ #: controllers/SeoSettings.php:699 controllers/Snippet.php:166
510
  msgid "You do not have permission to perform this action"
511
  msgstr ""
512
 
522
  msgstr ""
523
 
524
  # @ squirrly-seo
525
+ #: controllers/Audits.php:163
526
  #, fuzzy
527
  #| msgid "Could not send the email..."
528
  msgid "Could not load the Audit Page."
529
  msgstr "Konnte E-Mail nicht senden ..."
530
 
531
+ #: controllers/Audits.php:278
532
  msgid "Audit page is added. The audit may take a while so please be patient."
533
  msgstr ""
534
 
535
+ #: controllers/Audits.php:281
536
  msgid "You reached the maximum number of audit pages for your account."
537
  msgstr ""
538
 
539
  # @ squirrly-seo
540
+ #: controllers/Audits.php:284
541
  #, fuzzy
542
  #| msgid "Could not send the email..."
543
  msgid "Error! Could not add the audit page."
544
  msgstr "Konnte E-Mail nicht senden ..."
545
 
546
+ #: controllers/Audits.php:288
547
  msgid "Error! Could not find the audit page in your website."
548
  msgstr ""
549
 
550
+ #: controllers/Audits.php:298
551
  msgid "Audit page sent for recheck. It may take a while so please be patient."
552
  msgstr ""
553
 
554
+ #: controllers/Audits.php:301 controllers/Audits.php:304
555
  msgid "The audit for all pages can be made once an hour."
556
  msgstr ""
557
 
558
+ #: controllers/Audits.php:314
559
  msgid "The audit page is deleted"
560
  msgstr ""
561
 
562
+ #: controllers/Audits.php:316 controllers/FocusPages.php:409
563
  #: controllers/Ranking.php:161 controllers/Ranking.php:179
564
  #: controllers/Ranking.php:197 controllers/Research.php:208
565
  #: controllers/Research.php:211 controllers/Research.php:234
570
  msgid "Invalid params!"
571
  msgstr ""
572
 
573
+ #: controllers/Audits.php:339
574
  msgid "Not a valid email address"
575
  msgstr ""
576
 
590
  msgid "Saved! Task marked as done."
591
  msgstr ""
592
 
593
+ #: controllers/FocusPages.php:147
594
  msgid "Focus Page does not exist or was deleted from your website."
595
  msgstr ""
596
 
597
+ #: controllers/FocusPages.php:340
598
  msgid "Focus page is added. The audit may take a while so please be patient."
599
  msgstr ""
600
 
601
+ #: controllers/FocusPages.php:347
602
  msgid "You reached the maximum number of focus pages for all your websites."
603
  msgstr ""
604
 
605
+ #: controllers/FocusPages.php:350
606
  msgid "Error! Could not add the focus page."
607
  msgstr ""
608
 
609
+ #: controllers/FocusPages.php:353
610
  msgid "Error! This focus page is not public."
611
  msgstr ""
612
 
613
+ #: controllers/FocusPages.php:357 controllers/FocusPages.php:396
614
  msgid "Error! Could not find the focus page in your website."
615
  msgstr ""
616
 
617
+ #: controllers/FocusPages.php:384
618
  msgid "Focus page sent for recheck. It may take a while so please be patient."
619
  msgstr ""
620
 
621
+ #: controllers/FocusPages.php:387 controllers/FocusPages.php:391
622
  msgid "You've made too many requests, please wait a few minutes."
623
  msgstr ""
624
 
625
+ #: controllers/FocusPages.php:407
626
  msgid "The focus page is deleted"
627
  msgstr ""
628
 
629
+ #: controllers/Menu.php:123
630
  #, php-format
631
  msgid ""
632
  "An error occurred during activation. If this error persists, please contact "
633
  "us at: %s"
634
  msgstr ""
635
 
636
+ #: controllers/Menu.php:160
637
  msgid "Dashboard"
638
  msgstr ""
639
 
640
  # @ squirrly-seo
641
+ #: controllers/Menu.php:185 controllers/Menu.php:290 controllers/Menu.php:325
642
  #: view/Blocks/SLASearch.php:7
643
  #, fuzzy
644
  #| msgid "Squirrly settings"
645
  msgid "Squirrly SEO"
646
  msgstr "Squirrly Einstellungen"
647
 
648
+ #: controllers/Menu.php:253
649
  msgid "SEO Snippet"
650
  msgstr ""
651
 
652
+ #: controllers/Menu.php:268 controllers/Snippet.php:137
653
  msgid "Custom SEO"
654
  msgstr ""
655
 
656
  # @ squirrly-seo
657
+ #: controllers/Menu.php:333
658
  #, fuzzy
659
  #| msgid "Squirrly settings"
660
  msgid "Squirrly Onboarding"
661
  msgstr "Squirrly Einstellungen"
662
 
663
+ #: controllers/Menu.php:334
664
  msgid "Onboarding"
665
  msgstr ""
666
 
667
+ #: controllers/Menu.php:363
668
  msgid "Import & Export SEO"
669
  msgstr ""
670
 
671
+ #: controllers/Menu.php:364 view/SeoSettings/Backup.php:88
672
  msgid "Import SEO"
673
  msgstr ""
674
 
675
+ #: controllers/Menu.php:374
676
  msgid "Squirrly Account Info"
677
  msgstr ""
678
 
679
+ #: controllers/Menu.php:375
680
  msgid "Account Info"
681
  msgstr ""
682
 
683
+ #: controllers/Menu.php:384
684
  msgid "Squirrly How To & Support"
685
  msgstr ""
686
 
687
+ #: controllers/Menu.php:385
688
  msgid "Help & Support"
689
  msgstr ""
690
 
693
  msgstr ""
694
 
695
  # @ squirrly-seo
696
+ #: controllers/Post.php:301
697
  #, fuzzy
698
  #| msgid "Could not send the email..."
699
  msgid "Could not add the demo post."
700
  msgstr "Konnte E-Mail nicht senden ..."
701
 
702
+ #: controllers/Post.php:363 controllers/Post.php:388
703
  msgid "Can't get the post URL"
704
  msgstr ""
705
 
706
+ #: controllers/Post.php:393
707
  msgid "Invalid request"
708
  msgstr ""
709
 
906
  msgstr "Squirrly LIVE SEO-Assistent"
907
 
908
  # @ squirrly-seo
909
+ #: controllers/Snippet.php:184
910
  #, fuzzy
911
  #| msgid "Could not send the email..."
912
  msgid "Could not save the data"
1233
 
1234
  # @ squirrly-seo
1235
  #: models/Assistant.php:163 models/focuspages/Accuracy.php:45
1236
+ #: models/focuspages/Length.php:71 models/focuspages/Traffic.php:105
1237
  #, fuzzy
1238
  #| msgid "Google %sAnalytics ID%s`:"
1239
  msgid "Connect Google Analytics"
1882
  msgid "Add meta description to this page of your site"
1883
  msgstr ""
1884
 
1885
+ #: models/Audits.php:156 models/bulkseo/Metas.php:89
1886
  msgid "Meta Keyword"
1887
  msgstr ""
1888
 
1911
  msgid "Make sure that the search for your keywords is on a rising trend"
1912
  msgstr ""
1913
 
1914
+ #: models/Audits.php:166 models/bulkseo/Metas.php:94
1915
  msgid "Canonical Link"
1916
  msgstr ""
1917
 
4657
  msgstr ""
4658
 
4659
  # @ squirrly-seo
4660
+ #: models/CheckSeo.php:1464
4661
  #, fuzzy
4662
  #| msgid "Could not send the email..."
4663
  msgid "Could not verify the frontend."
4664
  msgstr "Konnte E-Mail nicht senden ..."
4665
 
4666
+ #: models/CheckSeo.php:1831
4667
  msgid "Just another WordPress site"
4668
  msgstr ""
4669
 
4670
+ #: models/CheckSeo.php:1970
4671
  #, php-format
4672
  msgid "Focus Page was not found (error %s)"
4673
  msgstr ""
4674
 
4675
+ #: models/CheckSeo.php:1971 models/CheckSeo.php:2015
4676
  msgid ""
4677
+ "The way your WordPress site is currently hosted can affect the way Squirrly "
4678
+ "SEO operates in order to retrieve and process data about your Focus Pages. "
4679
+ "It’s important to do everything on your end to ensure that the Focus Pages "
4680
+ "audits can be generated by our system."
4681
  msgstr ""
4682
 
4683
+ #: models/CheckSeo.php:1972 models/CheckSeo.php:1991
4684
  msgid ""
4685
  "Use a different browser to check if your Focus Page is visible. Whitelist "
4686
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
4687
  "page so that you’ll receive a full audit."
4688
  msgstr ""
4689
 
4690
+ #: models/CheckSeo.php:1973 models/CheckSeo.php:2017
4691
  msgid "An error is preventing Squirrly from processing your Focus Page audits."
4692
  msgstr ""
4693
 
4694
+ #: models/CheckSeo.php:1980
4695
  #, php-format
4696
  msgid "Your Focus Page is redirected to another page (error %s)"
4697
  msgstr ""
4698
 
4699
+ #: models/CheckSeo.php:1981
4700
  #, php-format
4701
  msgid ""
4702
  "Right now, your Focus Page sends users and search engines to a different URL "
4708
  "operates."
4709
  msgstr ""
4710
 
4711
+ #: models/CheckSeo.php:1982
4712
  msgid ""
4713
  "Choose a page that does NOT redirect to a different page as your Focus Page. "
4714
  "Your Focus Page should have a single URL associated to it so that Squirrly "
4715
  "can serve you the best data."
4716
  msgstr ""
4717
 
4718
+ #: models/CheckSeo.php:1983
4719
  msgid "Make sure that your Focus Page is NOT redirected to a different page."
4720
  msgstr ""
4721
 
4722
+ #: models/CheckSeo.php:1989
4723
  #, php-format
4724
  msgid "Ensure your Focus Pages can be accessed (error %s)"
4725
  msgstr ""
4726
 
4727
+ #: models/CheckSeo.php:1990
4728
  #, php-format
4729
  msgid ""
4730
  "A server-side error is preventing Squirrly from being able to access and "
4734
  "page, which is a critical issue."
4735
  msgstr ""
4736
 
4737
+ #: models/CheckSeo.php:1992
4738
  msgid "A server-side error is preventing your Focus Pages from being accessed."
4739
  msgstr ""
4740
 
4741
+ #: models/CheckSeo.php:1997
4742
  #, php-format
4743
  msgid "Make sure your Focus Pages can be audited (error %s)"
4744
  msgstr ""
4745
 
4746
+ #: models/CheckSeo.php:1998
4747
  msgid ""
4748
  "Squirrly is unable to generate the audit for your Focus Page because it "
4749
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
4751
  "Squirrly’s IP address."
4752
  msgstr ""
4753
 
4754
+ #: models/CheckSeo.php:1999
4755
  msgid ""
4756
  "Check to see if your WordPress site’s server is offline. Whitelist our "
4757
  "crawler IP address (176.9.112.210) to allow our server to verify your page "
4758
  "so that you’ll receive a full audit."
4759
  msgstr ""
4760
 
4761
+ #: models/CheckSeo.php:2000 models/CheckSeo.php:2008
4762
  msgid ""
4763
  "An error prevents Squirrly from gathering critical data about your Focus "
4764
  "Page."
4765
  msgstr ""
4766
 
4767
+ #: models/CheckSeo.php:2005
4768
+ msgid "Make sure your Focus Pages can be audited (firewall protection)"
4769
+ msgstr ""
4770
+
4771
+ #: models/CheckSeo.php:2006
4772
+ msgid ""
4773
+ "Squirrly is unable to generate the audit for your Focus Page because it "
4774
+ "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
4775
+ "server has a firewall protection and is blocking Squirrly’s IP address."
4776
+ msgstr ""
4777
+
4778
+ #: models/CheckSeo.php:2007 models/CheckSeo.php:2016
4779
+ msgid ""
4780
+ "Whitelist our crawler IP address (176.9.112.210) to allow our server to "
4781
+ "verify your page so that you’ll receive a full audit."
4782
+ msgstr ""
4783
+
4784
+ #: models/CheckSeo.php:2014
4785
+ #, php-format
4786
+ msgid "Focus Page could not be verified (error: %s)"
4787
+ msgstr ""
4788
+
4789
+ #: models/FocusPages.php:21 models/bulkseo/Metas.php:134
4790
  #: models/focuspages/Clicks.php:64 models/focuspages/Content.php:88
4791
  #: models/focuspages/Ctr.php:64 models/focuspages/Image.php:80
4792
  #: models/focuspages/Impressions.php:64 models/focuspages/Keyword.php:103
4793
+ #: models/focuspages/Keyword.php:106 models/focuspages/Snippet.php:151
4794
  #: models/focuspages/Strategy.php:102 view/Blocks/KRFound.php:15
4795
  #: view/Blocks/KRHistory.php:15 view/Ranking/Gscsync.php:31
4796
  #: view/Ranking/Rankings.php:210 view/Ranking/Rankings.php:348
4797
  #: view/Research/Briefcase.php:107 view/Research/Briefcase.php:247
4798
  #: view/Research/History.php:29 view/Research/HistoryDetails.php:7
4799
+ #: view/Research/Research.php:194 view/Research/Suggested.php:28
4800
  msgid "Keyword"
4801
  msgstr ""
4802
 
4930
  msgid " Research"
4931
  msgstr "Recherchieren"
4932
 
4933
+ #: models/Menu.php:139 view/Blocks/Features.php:34
4934
  msgid "Live Assistant"
4935
  msgstr ""
4936
 
4954
  msgid " SEO Settings"
4955
  msgstr ""
4956
 
4957
+ #: models/Menu.php:163 models/Menu.php:250 view/Blocks/Features.php:7
4958
+ #: view/Blocks/FocusPages.php:6 view/FocusPages/Pagelist.php:23
4959
  msgid "Focus Pages"
4960
  msgstr ""
4961
 
4963
  msgid " Focus Pages"
4964
  msgstr ""
4965
 
4966
+ #: models/Menu.php:171 view/Blocks/Audits.php:6 view/Blocks/Features.php:187
4967
  msgid "SEO Audit"
4968
  msgstr ""
4969
 
5088
  msgstr "Squirrly Einstellungen"
5089
 
5090
  #: models/Menu.php:312 view/BulkSeo/Bulkseo.php:29
 
5091
  msgid "Bulk SEO"
5092
  msgstr ""
5093
 
5391
  msgstr ""
5392
 
5393
  #: models/Post.php:262 models/focuspages/Snippet.php:89
5394
+ #: models/focuspages/Snippet.php:218 models/focuspages/Snippet.php:240
5395
  #: view/Audits/Addpage.php:131 view/Blocks/Snippet.php:171
5396
  #: view/Blocks/Snippet.php:570 view/Blocks/Snippet.php:825
5397
  #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:132
5398
+ #: view/SeoSettings/Automation.php:125 view/SeoSettings/Metas.php:157
 
5399
  msgid "Title"
5400
  msgstr ""
5401
 
5565
  msgid "Current"
5566
  msgstr ""
5567
 
5568
+ #: models/bulkseo/Metas.php:52
5569
  msgid "Title not empty"
5570
  msgstr ""
5571
 
5572
+ #: models/bulkseo/Metas.php:53 view/Blocks/Snippet.php:187
5573
  #: view/Blocks/Snippet.php:586 view/Blocks/Snippet.php:841
5574
  msgid "Current Title"
5575
  msgstr ""
5576
 
5577
+ #: models/bulkseo/Metas.php:55
5578
  #, php-format
5579
  msgid ""
5580
  "The title for this URL must not be empty. %s Write a title for this page. "
5583
  "more clicks you can get when people find your page on search engines."
5584
  msgstr ""
5585
 
5586
+ #: models/bulkseo/Metas.php:58
5587
  #, php-format
5588
  msgid "Title up to %s chars"
5589
  msgstr ""
5590
 
5591
+ #: models/bulkseo/Metas.php:59
5592
  msgid "Current Title Length"
5593
  msgstr ""
5594
 
5595
+ #: models/bulkseo/Metas.php:60 models/bulkseo/Metas.php:78
5596
+ #: models/bulkseo/Opengraph.php:78 models/bulkseo/Opengraph.php:88
5597
+ #: models/bulkseo/Twittercard.php:75 models/bulkseo/Twittercard.php:85
5598
  msgid "chars"
5599
  msgstr ""
5600
 
5601
+ #: models/bulkseo/Metas.php:61 models/bulkseo/Opengraph.php:79
5602
+ #: models/bulkseo/Twittercard.php:76
5603
  #, php-format
5604
  msgid ""
5605
  "Title has to be longer than %s chars and up to %s chars. %s You can change "
5606
  "the title max length from %sSEO Settings > Automation%s."
5607
  msgstr ""
5608
 
5609
+ #: models/bulkseo/Metas.php:64 models/focuspages/Snippet.php:100
5610
  msgid "Keyword in title"
5611
  msgstr ""
5612
 
5613
  # @ squirrly-seo
5614
+ #: models/bulkseo/Metas.php:65 models/bulkseo/Metas.php:83
5615
  #, fuzzy
5616
  #| msgid "Squirrly settings"
5617
  msgid "Squirrly Keyword"
5618
  msgstr "Squirrly Einstellungen"
5619
 
5620
  # @ squirrly-seo
5621
+ #: models/bulkseo/Metas.php:66 models/bulkseo/Metas.php:84
5622
  #, fuzzy
5623
  #| msgid "Tips: 2-4 keywords"
5624
  msgid "no keywords"
5625
  msgstr "Tipp: Länge 2-4 Schlüsselwörter"
5626
 
5627
+ #: models/bulkseo/Metas.php:67 models/focuspages/Snippet.php:103
5628
  #, php-format
5629
  msgid ""
5630
  "Your keyword must be present in the title of the page. %s It's a very "
5636
  "VectorWatch\" would be a much better choice for a title."
5637
  msgstr ""
5638
 
5639
+ #: models/bulkseo/Metas.php:70
5640
  msgid "Description not empty"
5641
  msgstr ""
5642
 
5643
+ #: models/bulkseo/Metas.php:71 view/Blocks/Snippet.php:239
5644
  #: view/Blocks/Snippet.php:630 view/Blocks/Snippet.php:885
5645
  msgid "Current Description"
5646
  msgstr ""
5647
 
5648
+ #: models/bulkseo/Metas.php:73
5649
  #, php-format
5650
  msgid ""
5651
  "Meta descriptions are important for SEO on multiple search engines. %s You "
5654
  "on search engines."
5655
  msgstr ""
5656
 
5657
+ #: models/bulkseo/Metas.php:76
5658
  #, php-format
5659
  msgid "Description up to %s chars"
5660
  msgstr ""
5661
 
5662
+ #: models/bulkseo/Metas.php:77
5663
  msgid "Current Description Length"
5664
  msgstr ""
5665
 
5666
+ #: models/bulkseo/Metas.php:79 models/bulkseo/Opengraph.php:89
5667
+ #: models/bulkseo/Twittercard.php:86
5668
  #, php-format
5669
  msgid ""
5670
  "Description has to be longer than %s chars and up to %s chars. %s You can "
5671
  "change the description max length from %sSEO Settings > Automation%s."
5672
  msgstr ""
5673
 
5674
+ #: models/bulkseo/Metas.php:82 models/focuspages/Snippet.php:106
5675
  msgid "Keyword in description"
5676
  msgstr ""
5677
 
5678
+ #: models/bulkseo/Metas.php:85
5679
  #, php-format
5680
  msgid ""
5681
  "Same as with the title task. %s If a user reads the description of your page "
5687
  "lot about this, because that's what people want to find on the search engine."
5688
  msgstr ""
5689
 
5690
+ #: models/bulkseo/Metas.php:88
5691
  msgid "Meta Keywords (2-4 Words)"
5692
  msgstr ""
5693
 
5694
  # @ squirrly-seo
5695
+ #: models/bulkseo/Metas.php:90
5696
  #, fuzzy
5697
  #| msgid "Enter even more keywords."
5698
  msgid "no meta keywords"
5699
  msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5700
 
5701
+ #: models/bulkseo/Metas.php:91
5702
  msgid ""
5703
  "Even if Meta keywords are not mandatory for Google, it's important for other "
5704
  "search engines to find this meta and to index your post for these keywords."
5705
  msgstr ""
5706
 
5707
+ #: models/bulkseo/Metas.php:95
5708
  msgid "Current Link"
5709
  msgstr ""
5710
 
5711
+ #: models/bulkseo/Metas.php:97
5712
  #, php-format
5713
  msgid ""
5714
  "You don't have to set any canonical link if your post is not copied from "
5718
  "gets indexed and ranked."
5719
  msgstr ""
5720
 
5721
+ #: models/bulkseo/Metas.php:106
5722
  msgid "Some Squirrly Metas are deactivated."
5723
  msgstr ""
5724
 
5725
+ #: models/bulkseo/Metas.php:111
5726
+ msgid ""
5727
+ "Some Squirrly Metas are not set correctly. Click to open the Assistant in "
5728
+ "the right sidebar and follow the instructions."
5729
  msgstr ""
5730
 
5731
+ #: models/bulkseo/Metas.php:116
5732
  msgid "Some Squirrly Metas are generated automatically."
5733
  msgstr ""
5734
 
5735
+ #: models/bulkseo/Metas.php:119
5736
  msgid "All Squirrly Metas are customized and set correctly."
5737
  msgstr ""
5738
 
5739
+ #: models/bulkseo/Metas.php:130 models/bulkseo/Opengraph.php:131
5740
+ #: models/bulkseo/Twittercard.php:128 models/bulkseo/Visibility.php:69
5741
  #: models/focuspages/Accuracy.php:34 models/focuspages/Audit.php:144
5742
  #: models/focuspages/Authority.php:33 models/focuspages/Backlinks.php:46
5743
  #: models/focuspages/Clicks.php:56 models/focuspages/Content.php:75
5746
  #: models/focuspages/Innerlinks.php:64 models/focuspages/Keyword.php:79
5747
  #: models/focuspages/Length.php:55 models/focuspages/Nofollow.php:65
5748
  #: models/focuspages/Onpage.php:78 models/focuspages/Ranking.php:35
5749
+ #: models/focuspages/Snippet.php:145 models/focuspages/Social.php:56
5750
  #: models/focuspages/Strategy.php:96 models/focuspages/Traffic.php:94
5751
  msgid "Current URL"
5752
  msgstr ""
5753
 
5754
  # @ squirrly-seo
5755
+ #: models/bulkseo/Metas.php:136
5756
  #, fuzzy
5757
  #| msgid "Enter even more keywords."
5758
  msgid "No Meta Keyword Found"
5759
  msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5760
 
5761
+ #: models/bulkseo/Metas.php:152 models/bulkseo/Metas.php:188
5762
+ #: models/bulkseo/Metas.php:221 models/bulkseo/Metas.php:265
5763
+ #: models/bulkseo/Metas.php:301 models/bulkseo/Metas.php:334
5764
+ #: models/bulkseo/Metas.php:382 models/bulkseo/Metas.php:421
5765
+ #: models/bulkseo/Opengraph.php:145 models/bulkseo/Opengraph.php:181
5766
+ #: models/bulkseo/Opengraph.php:213 models/bulkseo/Opengraph.php:249
5767
+ #: models/bulkseo/Opengraph.php:285 models/bulkseo/Twittercard.php:142
5768
+ #: models/bulkseo/Twittercard.php:178 models/bulkseo/Twittercard.php:210
5769
+ #: models/bulkseo/Twittercard.php:246 models/bulkseo/Twittercard.php:282
5770
  #: models/bulkseo/Visibility.php:83 models/bulkseo/Visibility.php:122
5771
  #: models/bulkseo/Visibility.php:155
5772
  msgid "Squirrly Snippet is deactivated from this post."
5773
  msgstr ""
5774
 
5775
+ #: models/bulkseo/Metas.php:156 models/bulkseo/Metas.php:192
5776
+ #: models/bulkseo/Metas.php:225 models/bulkseo/Metas.php:269
5777
+ #: models/bulkseo/Metas.php:305 models/bulkseo/Metas.php:338
5778
+ #: models/bulkseo/Metas.php:386 models/bulkseo/Metas.php:425
5779
  #, php-format
5780
  msgid ""
5781
  "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
5782
  "%s."
5783
  msgstr ""
5784
 
5785
+ #: models/bulkseo/Metas.php:160 models/bulkseo/Metas.php:196
5786
+ #: models/bulkseo/Metas.php:229
5787
  #, php-format
5788
  msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
5789
  msgstr ""
5790
 
5791
+ #: models/bulkseo/Metas.php:164 models/bulkseo/Metas.php:200
5792
+ #: models/bulkseo/Metas.php:233 models/bulkseo/Metas.php:277
5793
+ #: models/bulkseo/Metas.php:313 models/bulkseo/Metas.php:346
5794
+ #: models/bulkseo/Metas.php:390 models/bulkseo/Metas.php:433
5795
  #, php-format
5796
  msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
5797
  msgstr ""
5798
 
5799
  # @ squirrly-seo
5800
+ #: models/bulkseo/Metas.php:173 models/bulkseo/Metas.php:209
5801
+ #: models/bulkseo/Opengraph.php:166 models/bulkseo/Opengraph.php:202
5802
+ #: models/bulkseo/Twittercard.php:163 models/bulkseo/Twittercard.php:199
5803
  #, fuzzy
5804
  #| msgid "<< Leave it automatically"
5805
  msgid "Title is generated automatically."
5806
  msgstr "<< Lass es automatisch"
5807
 
5808
+ #: models/bulkseo/Metas.php:237 models/bulkseo/Metas.php:350
5809
+ #: models/bulkseo/Metas.php:394
5810
  #, php-format
5811
  msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
5812
  msgstr ""
5813
 
5814
+ #: models/bulkseo/Metas.php:273 models/bulkseo/Metas.php:309
5815
+ #: models/bulkseo/Metas.php:342
5816
  #, php-format
5817
  msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
5818
  msgstr ""
5819
 
5820
+ #: models/bulkseo/Metas.php:286 models/bulkseo/Metas.php:323
5821
+ #: models/bulkseo/Opengraph.php:234 models/bulkseo/Opengraph.php:270
5822
+ #: models/bulkseo/Twittercard.php:231 models/bulkseo/Twittercard.php:267
5823
  msgid "Description is generated automatically."
5824
  msgstr ""
5825
 
5826
+ #: models/bulkseo/Metas.php:429
5827
  #, php-format
5828
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
5829
  msgstr ""
5830
 
5831
+ #: models/bulkseo/Opengraph.php:72
5832
  msgid "OG title not empty"
5833
  msgstr ""
5834
 
5835
+ #: models/bulkseo/Opengraph.php:74
5836
  #, php-format
5837
  msgid ""
5838
  "You need to have an Open Graph title for this post. %s It will help you "
5840
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5841
  msgstr ""
5842
 
5843
+ #: models/bulkseo/Opengraph.php:77
5844
  #, php-format
5845
  msgid "OG title up to %s chars"
5846
  msgstr ""
5847
 
5848
+ #: models/bulkseo/Opengraph.php:82
5849
  msgid "OG description not empty"
5850
  msgstr ""
5851
 
5852
+ #: models/bulkseo/Opengraph.php:84
5853
  #, php-format
5854
  msgid ""
5855
  "You need to have an Open Graph description for this post. %s It will help "
5857
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5858
  msgstr ""
5859
 
5860
+ #: models/bulkseo/Opengraph.php:87
5861
  #, php-format
5862
  msgid "OG description up to %s chars"
5863
  msgstr ""
5864
 
5865
+ #: models/bulkseo/Opengraph.php:92 view/SeoSettings/Metas.php:184
5866
  msgid "OG Image"
5867
  msgstr ""
5868
 
5869
+ #: models/bulkseo/Opengraph.php:93 models/bulkseo/Twittercard.php:90
5870
  msgid "(featured image)"
5871
  msgstr ""
5872
 
5873
+ #: models/bulkseo/Opengraph.php:94
5874
  #, php-format
5875
  msgid ""
5876
  "Set a good looking image for your URL. It needs to look good in Facebook and "
5878
  "attract more clicks to your site."
5879
  msgstr ""
5880
 
5881
+ #: models/bulkseo/Opengraph.php:108
5882
  msgid "Open Graph is deactivated."
5883
  msgstr ""
5884
 
5885
+ #: models/bulkseo/Opengraph.php:113
5886
+ msgid ""
5887
+ "Open Graph is not set correctly. Click to open the Assistant in the right "
5888
+ "sidebar and follow the instructions."
5889
  msgstr ""
5890
 
5891
  # @ squirrly-seo
5892
+ #: models/bulkseo/Opengraph.php:118
5893
  #, fuzzy
5894
  #| msgid "<< Leave it automatically"
5895
  msgid "Open Graph is generated automatically."
5896
  msgstr "<< Lass es automatisch"
5897
 
5898
+ #: models/bulkseo/Opengraph.php:121
5899
  msgid "Open Graph is customized and set correctly."
5900
  msgstr ""
5901
 
5902
+ #: models/bulkseo/Opengraph.php:149 models/bulkseo/Opengraph.php:185
5903
+ #: models/bulkseo/Opengraph.php:217 models/bulkseo/Opengraph.php:253
5904
+ #: models/bulkseo/Opengraph.php:289
5905
  #, php-format
5906
  msgid ""
5907
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
5908
  "%s."
5909
  msgstr ""
5910
 
5911
+ #: models/bulkseo/Opengraph.php:153 models/bulkseo/Opengraph.php:189
5912
+ #: models/bulkseo/Opengraph.php:221 models/bulkseo/Opengraph.php:257
5913
+ #: models/bulkseo/Opengraph.php:293
5914
  #, php-format
5915
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
5916
  msgstr ""
5917
 
5918
+ #: models/bulkseo/Opengraph.php:157 models/bulkseo/Opengraph.php:193
5919
+ #: models/bulkseo/Opengraph.php:225 models/bulkseo/Opengraph.php:261
5920
+ #: models/bulkseo/Opengraph.php:297 models/bulkseo/Twittercard.php:154
5921
+ #: models/bulkseo/Twittercard.php:190 models/bulkseo/Twittercard.php:222
5922
+ #: models/bulkseo/Twittercard.php:258 models/bulkseo/Twittercard.php:294
5923
  #, php-format
5924
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
5925
  msgstr ""
5926
 
5927
+ #: models/bulkseo/Twittercard.php:69
5928
  msgid "TC title not empty"
5929
  msgstr ""
5930
 
5931
+ #: models/bulkseo/Twittercard.php:71
5932
  #, php-format
5933
  msgid ""
5934
  "You need to have a title for the Twitter Card of this post. %s It will help "
5936
  "also important for SEO purposes."
5937
  msgstr ""
5938
 
5939
+ #: models/bulkseo/Twittercard.php:74
5940
  #, php-format
5941
  msgid "TC title up to %s chars"
5942
  msgstr ""
5943
 
5944
+ #: models/bulkseo/Twittercard.php:79
5945
  msgid "TC Description not empty"
5946
  msgstr ""
5947
 
5948
+ #: models/bulkseo/Twittercard.php:81
5949
  #, php-format
5950
  msgid ""
5951
  "You need to have a Twitter Card description for this post. %s It will help "
5954
  "to your site. %s It's also important for SEO purposes."
5955
  msgstr ""
5956
 
5957
+ #: models/bulkseo/Twittercard.php:84
5958
  #, php-format
5959
  msgid "TC description up to %s chars"
5960
  msgstr ""
5961
 
5962
+ #: models/bulkseo/Twittercard.php:89
5963
  msgid "TC Image"
5964
  msgstr ""
5965
 
5966
+ #: models/bulkseo/Twittercard.php:91
5967
  #, php-format
5968
  msgid ""
5969
  "Set a good looking image for your URL. It needs to look good in Twitter "
5971
  "clicks to your site."
5972
  msgstr ""
5973
 
5974
+ #: models/bulkseo/Twittercard.php:105
5975
  msgid "Twitter Card is deactivated."
5976
  msgstr ""
5977
 
5978
+ #: models/bulkseo/Twittercard.php:110
5979
+ msgid ""
5980
+ "Twitter Card is not set correctly. Click to open the Assistant in the right "
5981
+ "sidebar and follow the instructions."
5982
  msgstr ""
5983
 
5984
+ #: models/bulkseo/Twittercard.php:115
5985
  msgid "Twitter Card is generated automatically."
5986
  msgstr ""
5987
 
5988
+ #: models/bulkseo/Twittercard.php:118
5989
  msgid "Twitter Card is customized and set correctly."
5990
  msgstr ""
5991
 
5992
+ #: models/bulkseo/Twittercard.php:146 models/bulkseo/Twittercard.php:182
5993
+ #: models/bulkseo/Twittercard.php:214 models/bulkseo/Twittercard.php:250
5994
+ #: models/bulkseo/Twittercard.php:286
5995
  #, php-format
5996
  msgid ""
5997
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
5998
  "Automation%s."
5999
  msgstr ""
6000
 
6001
+ #: models/bulkseo/Twittercard.php:150 models/bulkseo/Twittercard.php:186
6002
+ #: models/bulkseo/Twittercard.php:218 models/bulkseo/Twittercard.php:254
6003
+ #: models/bulkseo/Twittercard.php:290
6004
  #, php-format
6005
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
6006
  msgstr ""
6052
  msgstr ""
6053
 
6054
  #: models/bulkseo/Visibility.php:55
6055
+ msgid ""
6056
+ "Visibility is not set correctly. Click to open the Assistant in the right "
6057
+ "sidebar and follow the instructions."
6058
  msgstr ""
6059
 
6060
  #: models/bulkseo/Visibility.php:59
6132
 
6133
  #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
6134
  #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
6135
+ #: models/focuspages/Indexability.php:95 models/focuspages/Traffic.php:100
6136
  msgid "Connect Google Search"
6137
  msgstr ""
6138
 
6291
  msgid "At Least %s Majestic SEO Links"
6292
  msgstr ""
6293
 
6294
+ #: models/focuspages/Backlinks.php:81 models/focuspages/Content.php:118
6295
+ #: models/focuspages/Image.php:109 models/focuspages/Impressions.php:102
6296
+ #: models/focuspages/Indexability.php:112 models/focuspages/Innerlinks.php:86
6297
+ #: models/focuspages/Keyword.php:156 models/focuspages/Length.php:93
6298
+ #: models/focuspages/Nofollow.php:77 models/focuspages/Onpage.php:94
6299
+ #: models/focuspages/Ranking.php:48 models/focuspages/Snippet.php:168
6300
+ #: models/focuspages/Social.php:72 models/focuspages/Strategy.php:136
6301
+ #: models/focuspages/Traffic.php:126
6302
+ msgid ""
6303
+ "Click to open the Assistant in the right sidebar and follow the instructions."
6304
+ msgstr ""
6305
+
6306
  # @ squirrly-seo
6307
  #: models/focuspages/Clicks.php:42
6308
  #, fuzzy
6323
  #: models/focuspages/Clicks.php:75 models/focuspages/Content.php:93
6324
  #: models/focuspages/Ctr.php:75 models/focuspages/Image.php:88
6325
  #: models/focuspages/Impressions.php:75 models/focuspages/Keyword.php:114
6326
+ #: models/focuspages/Keyword.php:182 models/focuspages/Keyword.php:200
6327
+ #: models/focuspages/Keyword.php:223 models/focuspages/Snippet.php:153
6328
  #: models/focuspages/Strategy.php:112
6329
  msgid "No Keyword Found"
6330
  msgstr ""
6336
  msgid "Optimize for a keyword"
6337
  msgstr ""
6338
 
6339
+ #: models/focuspages/Clicks.php:96 models/focuspages/Content.php:114
6340
+ #: models/focuspages/Ctr.php:100 models/focuspages/Impressions.php:96
6341
+ #: models/focuspages/Keyword.php:149 models/focuspages/Strategy.php:132
6342
+ msgid ""
6343
+ "Optimize the page for a keyword. Click to open the Assistant in the right "
6344
+ "sidebar and follow the instructions."
6345
+ msgstr ""
6346
+
6347
  # @ squirrly-seo
6348
+ #: models/focuspages/Clicks.php:98 models/focuspages/Ctr.php:96
 
6349
  #, fuzzy
6350
  #| msgid "Google %sAnalytics ID%s`:"
6351
  msgid "Connect to Google Search Console"
6352
  msgstr "Google %sAnalytics ID%s`:"
6353
 
 
 
 
 
 
 
6354
  #: models/focuspages/Content.php:46
6355
  #, php-format
6356
  msgid "Optimize to %s"
6445
  "you used it more than once."
6446
  msgstr ""
6447
 
6448
+ #: models/focuspages/Image.php:85 models/focuspages/Snippet.php:156
6449
  msgid "Edit your snippet"
6450
  msgstr ""
6451
 
6452
+ #: models/focuspages/Image.php:125
6453
  msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
6454
  msgstr ""
6455
 
6456
+ #: models/focuspages/Image.php:126
6457
  msgid "No image found"
6458
  msgstr ""
6459
 
6461
  msgid "Search Results Impressions in the last 3 months"
6462
  msgstr ""
6463
 
6464
+ # @ squirrly-seo
6465
+ #: models/focuspages/Impressions.php:98
6466
+ #, fuzzy
6467
+ #| msgid "Google %sAnalytics ID%s`:"
6468
+ msgid "Connect to Google Search Console."
6469
+ msgstr "Google %sAnalytics ID%s`:"
6470
+
6471
  #: models/focuspages/Indexability.php:52
6472
  msgid "Yes, do index"
6473
  msgstr ""
6674
  #: models/focuspages/Keyword.php:152
6675
  msgid ""
6676
  "Congratulations for ranking with this keyword, but it will require special "
6677
+ "attention from you to keep it within TOP 10 positions"
6678
  msgstr ""
6679
 
6680
+ #: models/focuspages/Keyword.php:182 models/focuspages/Keyword.php:200
6681
+ #: models/focuspages/Keyword.php:223
6682
  msgid "Please add a keyword first."
6683
  msgstr ""
6684
 
6729
  msgstr ""
6730
 
6731
  # @ squirrly-seo
6732
+ #: models/focuspages/Length.php:89
 
 
6733
  #, fuzzy
6734
  #| msgid "Google %sAnalytics ID%s`:"
6735
+ msgid "Connect to Google Analytics first."
6736
+ msgstr "Google %sAnalytics ID%s`:"
6737
+
6738
+ # @ squirrly-seo
6739
+ #: models/focuspages/Length.php:125 models/focuspages/Traffic.php:143
6740
+ #: models/focuspages/Traffic.php:159 models/focuspages/Traffic.php:175
6741
+ #, fuzzy
6742
+ #| msgid "Google %sAnalytics ID%s`:"
6743
+ msgid "Connect Google Analytics first."
6744
  msgstr "Google %sAnalytics ID%s`:"
6745
 
6746
  #: models/focuspages/Nofollow.php:50
6853
  "that product."
6854
  msgstr ""
6855
 
6856
+ #: models/focuspages/Snippet.php:95 models/focuspages/Snippet.php:219
6857
+ #: models/focuspages/Snippet.php:241 view/Blocks/Snippet.php:613
6858
  #: view/Blocks/Snippet.php:868 view/SeoSettings/Automation.php:134
6859
  #: view/SeoSettings/Metas.php:166
6860
  msgid "Description"
6874
  "boost CTR (click-through rates)."
6875
  msgstr ""
6876
 
6877
+ #: models/focuspages/Snippet.php:102
6878
+ #, php-format
6879
+ msgid "Keyword %s must be present in Title"
6880
+ msgstr ""
6881
+
6882
+ #: models/focuspages/Snippet.php:107
6883
+ #, php-format
6884
+ msgid "Keyword %s must be present in Description"
6885
+ msgstr ""
6886
+
6887
+ #: models/focuspages/Snippet.php:108
6888
  #, php-format
6889
  msgid ""
6890
  "Same as with the title task. %s If a user reads the description of your page "
6896
  "lot about this, because that's what people want to find on the search engine."
6897
  msgstr ""
6898
 
6899
+ #: models/focuspages/Snippet.php:111
6900
  msgid "Open Graph - full definition"
6901
  msgstr ""
6902
 
6903
+ #: models/focuspages/Snippet.php:113
6904
  #, php-format
6905
  msgid ""
6906
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
6912
  "relevant for your search engine position placements."
6913
  msgstr ""
6914
 
6915
+ #: models/focuspages/Snippet.php:116
6916
  msgid "Twitter Cards - full definition"
6917
  msgstr ""
6918
 
6919
+ #: models/focuspages/Snippet.php:118
6920
  #, php-format
6921
  msgid ""
6922
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
6926
  "that you won't miss a beat."
6927
  msgstr ""
6928
 
6929
+ #: models/focuspages/Snippet.php:121
6930
  msgid "JSON-LD definition"
6931
  msgstr ""
6932
 
6933
+ #: models/focuspages/Snippet.php:122
6934
  #, php-format
6935
  msgid ""
6936
  "To turn this task to green, you can easily use the JSON-LD section inside "
6941
  "%shttps://search.google.com/structured-data/testing-tool%s"
6942
  msgstr ""
6943
 
6944
+ #: models/focuspages/Snippet.php:125
6945
  msgid "Customized"
6946
  msgstr ""
6947
 
6948
+ #: models/focuspages/Snippet.php:126
6949
  #, php-format
6950
  msgid ""
6951
  "The Snippets of your most important pages should be customized. %s Use the "
6959
  "own custom snippet will be the one that gets displayed."
6960
  msgstr ""
6961
 
6962
+ #: models/focuspages/Snippet.php:220 models/focuspages/Snippet.php:242
6963
  msgid "Image"
6964
  msgstr ""
6965
 
7058
  msgid "Manage Strategy"
7059
  msgstr ""
7060
 
7061
+ #: models/focuspages/Strategy.php:168 models/focuspages/Strategy.php:175
7062
  msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
7063
  msgstr ""
7064
 
7142
  "happen more often than you would think."
7143
  msgstr ""
7144
 
7145
+ # @ squirrly-seo
7146
+ #: models/focuspages/Traffic.php:120
7147
+ #, fuzzy
7148
+ #| msgid "Google %sAnalytics ID%s`:"
7149
+ msgid "Connect Google Analytics first"
7150
+ msgstr "Google %sAnalytics ID%s`:"
7151
+
7152
  #: models/focuspages/Traffic.php:122
7153
  msgid "Not enough traffic to show relevant stats"
7154
  msgstr ""
7183
  msgid "Add New"
7184
  msgstr ""
7185
 
7186
+ #: view/Assistant/Settings.php:7 view/Audits/Addpage.php:8
7187
+ #: view/Audits/Audit.php:8 view/Audits/Audits.php:8 view/Audits/Compare.php:11
7188
+ #: view/Audits/Settings.php:7 view/BulkSeo/Bulkseo.php:12
7189
+ #: view/FocusPages/Addpage.php:8 view/FocusPages/Pagelist.php:8
7190
+ #: view/FocusPages/Settings.php:7 view/Ranking/Rankings.php:17
7191
+ #: view/Ranking/Settings.php:7 view/SeoSettings/Advanced.php:7
7192
+ #: view/SeoSettings/Automation.php:7 view/SeoSettings/Favicon.php:7
7193
+ #: view/SeoSettings/Metas.php:7 view/SeoSettings/Robots.php:7
7194
+ #: view/SeoSettings/Sitemap.php:7 view/SeoSettings/Social.php:7
7195
+ #: view/SeoSettings/Tracking.php:7 view/SeoSettings/Webmaster.php:7
7196
+ msgid ""
7197
+ "You do not have permission to access this page. You need Squirrly SEO Admin "
7198
+ "role."
7199
+ msgstr ""
7200
+
7201
+ #: view/Assistant/Settings.php:25
7202
  msgid "Live Assistant Settings"
7203
  msgstr ""
7204
 
7205
  # @ squirrly-seo
7206
+ #: view/Assistant/Settings.php:40
7207
  #, fuzzy
7208
  #| msgid "Squirrly settings"
7209
  msgid "Squirrly Tooltips"
7210
  msgstr "Squirrly Einstellungen"
7211
 
7212
+ #: view/Assistant/Settings.php:41
7213
  #, php-format
7214
  msgid ""
7215
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. \"Enter a keyword"
7216
  "\")."
7217
  msgstr ""
7218
 
7219
+ #: view/Assistant/Settings.php:51
7220
  msgid "Download Remote Images"
7221
  msgstr ""
7222
 
7223
+ #: view/Assistant/Settings.php:52
7224
  #, php-format
7225
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
7226
  msgstr ""
7227
 
7228
+ #: view/Assistant/Settings.php:53
7229
  msgid ""
7230
  "Prevent from losing the images you use in your articles in case the remote "
7231
  "images are deleted."
7232
  msgstr ""
7233
 
7234
+ #: view/Assistant/Settings.php:64
7235
  msgid "Copyright Free Images"
7236
  msgstr ""
7237
 
7238
+ #: view/Assistant/Settings.php:65
7239
  #, php-format
7240
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7241
  msgstr ""
7242
 
7243
+ #: view/Assistant/Settings.php:75
7244
  msgid "Live Assistant Type"
7245
  msgstr ""
7246
 
7247
+ #: view/Assistant/Settings.php:76
7248
  msgid "Select how you want Squirrly Live Assistant to load in editor."
7249
  msgstr ""
7250
 
7251
+ #: view/Assistant/Settings.php:80
7252
  msgid "Auto"
7253
  msgstr ""
7254
 
7255
+ #: view/Assistant/Settings.php:81
7256
  msgid "Integrated Box"
7257
  msgstr ""
7258
 
7259
+ #: view/Assistant/Settings.php:82
7260
  msgid "Floating Box"
7261
  msgstr ""
7262
 
7263
+ #: view/Assistant/Settings.php:95
7264
  msgid "Activate Live Assistant in Frontend"
7265
  msgstr ""
7266
 
7267
+ #: view/Assistant/Settings.php:95
7268
  msgid "(BETA)"
7269
  msgstr ""
7270
 
7271
+ #: view/Assistant/Settings.php:96
7272
  msgid ""
7273
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7274
  "with Builders."
7275
  msgstr ""
7276
 
7277
+ #: view/Assistant/Settings.php:97
7278
  msgid "Currently supports the Elementor Builder plugin."
7279
  msgstr ""
7280
 
7281
+ #: view/Assistant/Settings.php:104
7282
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
7283
  msgstr ""
7284
 
7285
+ #: view/Assistant/Settings.php:106
7286
  msgid ""
7287
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
7288
  "post types."
7289
  msgstr ""
7290
 
7291
+ #: view/Assistant/Settings.php:112
7292
  msgid "Exclusions"
7293
  msgstr ""
7294
 
7295
+ #: view/Assistant/Settings.php:113
7296
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7297
  msgstr ""
7298
 
7299
+ #: view/Assistant/Settings.php:114
7300
  msgid "Hold Control key to select multiple places"
7301
  msgstr ""
7302
 
7303
+ #: view/Assistant/Settings.php:141 view/SeoSettings/Automation.php:474
7304
  #: view/SeoSettings/Automation.php:595 view/SeoSettings/Jsonld.php:243
7305
  #: view/SeoSettings/Metas.php:231 view/SeoSettings/Sitemap.php:305
7306
  #: view/SeoSettings/Social.php:372
7307
  msgid "Show Advanced Options"
7308
  msgstr ""
7309
 
7310
+ #: view/Assistant/Settings.php:142 view/SeoSettings/Automation.php:475
7311
  #: view/SeoSettings/Automation.php:596 view/SeoSettings/Jsonld.php:244
7312
  #: view/SeoSettings/Metas.php:232 view/SeoSettings/Sitemap.php:306
7313
  #: view/SeoSettings/Social.php:373
7315
  msgstr ""
7316
 
7317
  # @ squirrly-seo
7318
+ #: view/Assistant/Settings.php:145 view/Audits/Settings.php:60
7319
+ #: view/Ranking/Settings.php:173 view/SeoSettings/Advanced.php:90
7320
  #: view/SeoSettings/Automation.php:478 view/SeoSettings/Automation.php:599
7321
  #: view/SeoSettings/Backup.php:206 view/SeoSettings/Favicon.php:107
7322
  #: view/SeoSettings/Jsonld.php:247 view/SeoSettings/Metas.php:235
7328
  msgid "Save Settings"
7329
  msgstr "Squirrly Einstellungen"
7330
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7331
  #: view/Audits/Addpage.php:22
7332
  msgid "Add a page in Audit"
7333
  msgstr ""
7340
  msgstr ""
7341
 
7342
  #: view/Audits/Addpage.php:92 view/BulkSeo/Bulkseo.php:101
7343
+ #: view/FocusPages/Addpage.php:92
7344
  msgid "Any status"
7345
  msgstr ""
7346
 
7347
  #: view/Audits/Addpage.php:112 view/BulkSeo/Bulkseo.php:121
7348
+ #: view/FocusPages/Addpage.php:112 view/Research/Research.php:202
 
7349
  msgid "Search"
7350
  msgstr ""
7351
 
7353
  #: view/Audits/Compare.php:44 view/BulkSeo/Bulkseo.php:123
7354
  #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:6
7355
  #: view/Ranking/Rankings.php:58 view/Research/Briefcase.php:37
 
7356
  msgid "Show All"
7357
  msgstr ""
7358
 
7369
  msgstr ""
7370
 
7371
  #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
7372
+ #: view/FocusPages/Addpage.php:196
7373
  msgid "Prev Page"
7374
  msgstr ""
7375
 
7376
  #: view/Audits/Addpage.php:194 view/BulkSeo/Bulkseo.php:199
7377
+ #: view/FocusPages/Addpage.php:197
7378
  msgid "Next Page"
7379
  msgstr ""
7380
 
7409
  msgstr ""
7410
 
7411
  # @ squirrly-seo
7412
+ #: view/Audits/AuditPageRow.php:46
7413
  #, fuzzy
7414
  #| msgid "Could not send the email..."
7415
  msgid "Could not create the audit for this URL"
7416
  msgstr "Konnte E-Mail nicht senden ..."
7417
 
7418
+ #: view/Audits/AuditPageRow.php:46
7419
  msgid "error code"
7420
  msgstr ""
7421
 
7422
+ #: view/Audits/AuditPageRow.php:49
7423
  #, php-format
7424
  msgid ""
7425
+ "The way your WordPress site is currently hosted can affect the way Squirrly "
7426
+ "SEO operates in order to retrieve and process data about this page. %sIt’s "
7427
+ "important to do everything on your end to ensure that the audits can be "
7428
+ "generated by our system. %s Whitelist our crawler IP address (176.9.112.210) "
7429
+ "to allow our server to verify your page so that you’ll receive a full audit."
7430
+ msgstr ""
7431
+
7432
+ #: view/Audits/AuditPageRow.php:50 view/FocusPages/FocusPageRow.php:96
7433
+ msgid "Inspect URL"
7434
  msgstr ""
7435
 
7436
+ #: view/Audits/AuditPageRow.php:73
7437
  msgid "Delete Page from Audit"
7438
  msgstr ""
7439
 
7582
  msgid "Audits"
7583
  msgstr ""
7584
 
7585
+ #: view/Audits/Audits.php:59
7586
  #, php-format
7587
  msgid ""
7588
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
7590
  "involved."
7591
  msgstr ""
7592
 
7593
+ #: view/Audits/Audits.php:66
7594
  #, php-format
7595
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
7596
  msgstr ""
7597
 
7598
+ # @ squirrly-seo
7599
+ #: view/Audits/Audits.php:87 view/FocusPages/Pagelist.php:85
7600
+ #, fuzzy
7601
+ #| msgid "Squirrly LIVE SEO assistant"
7602
+ msgid "Squirrly Inspect URL"
7603
+ msgstr "Squirrly LIVE SEO-Assistent"
7604
+
7605
  # @ squirrly-seo
7606
  #: view/Audits/Settings.php:30
7607
  #, fuzzy
7620
  msgid "Enter the email address on which you want to receive the weekly audits."
7621
  msgstr ""
7622
 
7623
+ #: view/Blocks/Account.php:10
7624
+ msgid "Account Info Unavailable"
7625
+ msgstr ""
7626
+
7627
+ #: view/Blocks/Account.php:43
7628
  msgid "Your Plan: "
7629
  msgstr ""
7630
 
7631
+ #: view/Blocks/Account.php:44
7632
  msgid "Check Account Info"
7633
  msgstr ""
7634
 
7635
+ #: view/Blocks/Account.php:49
7636
  msgid "Email: "
7637
  msgstr ""
7638
 
7639
+ #: view/Blocks/Account.php:55
7640
  #, php-format
7641
  msgid "Due Date: %s"
7642
  msgstr ""
7643
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7644
  #: view/Blocks/Audits.php:7 view/Blocks/Audits.php:53
7645
  msgid "See Audits"
7646
  msgstr ""
7669
  msgid "Go to Focus Pages"
7670
  msgstr ""
7671
 
7672
+ #: view/Blocks/Connect.php:14 view/Blocks/Connect.php:28
7673
  msgid ""
7674
  "This option is used to track innerlinks and insights for your Focus Pages "
7675
  "and give detailed informations about them."
7676
  msgstr ""
7677
 
7678
+ #: view/Blocks/Connect.php:16 view/Blocks/Connect.php:30
7679
  msgid "Let Squirrly API get data for Focus Pages"
7680
  msgstr ""
7681
 
7682
+ #: view/Blocks/Connect.php:17
7683
  msgid "Connect"
7684
  msgstr ""
7685
 
7686
+ #: view/Blocks/Connect.php:31
7687
  msgid "disconnect"
7688
  msgstr ""
7689
 
7738
  msgid "Checking the website ..."
7739
  msgstr ""
7740
 
7741
+ #: view/Blocks/Features.php:8
7742
+ msgid ""
7743
+ "The Assistant who maps the road to Better Rankings. For every single page. "
7744
+ "Always with different specifics."
7745
+ msgstr ""
7746
+
7747
+ #: view/Blocks/Features.php:9 view/Blocks/Features.php:18
7748
+ #: view/Blocks/Features.php:36 view/Blocks/Features.php:189
7749
+ msgid "Freemium"
7750
+ msgstr ""
7751
+
7752
+ #: view/Blocks/Features.php:16 view/Blocks/KRHistory.php:5
7753
+ #: view/Onboarding/Step1.3.php:11 view/Research/Research.php:18
7754
+ msgid "Keyword Research"
7755
+ msgstr ""
7756
+
7757
+ #: view/Blocks/Features.php:17
7758
+ msgid ""
7759
+ "Find the Best Keywords that your own website can rank for and get "
7760
+ "personalized competition data for each keyword."
7761
+ msgstr ""
7762
+
7763
+ #: view/Blocks/Features.php:25
7764
+ msgid "SEO Briefcase"
7765
+ msgstr ""
7766
+
7767
+ #: view/Blocks/Features.php:26
7768
+ msgid ""
7769
+ "Add keywords in your portfolio based on your current Campaigns, Trends, "
7770
+ "Performance for a successful SEO strategy."
7771
+ msgstr ""
7772
+
7773
+ #: view/Blocks/Features.php:27 view/Blocks/Features.php:45
7774
+ #: view/Blocks/Features.php:54 view/Blocks/Features.php:63
7775
+ #: view/Blocks/Features.php:72 view/Blocks/Features.php:81
7776
+ #: view/Blocks/Features.php:90 view/Blocks/Features.php:99
7777
+ #: view/Blocks/Features.php:108 view/Blocks/Features.php:117
7778
+ #: view/Blocks/Features.php:126 view/Blocks/Features.php:135
7779
+ #: view/Blocks/Features.php:144 view/Blocks/Features.php:153
7780
+ #: view/Blocks/Features.php:162 view/Blocks/Features.php:171
7781
+ #: view/Blocks/Features.php:180 view/Blocks/Features.php:198
7782
+ msgid "Free"
7783
+ msgstr ""
7784
+
7785
+ #: view/Blocks/Features.php:35
7786
+ msgid ""
7787
+ "Publish content that is fully optimized for BOTH Search Engines and Humans – "
7788
+ "every single time!"
7789
+ msgstr ""
7790
+
7791
+ #: view/Blocks/Features.php:43
7792
+ msgid "Google SERP with GSC"
7793
+ msgstr ""
7794
+
7795
+ #: view/Blocks/Features.php:44
7796
+ msgid ""
7797
+ "Get Google Search Console average possitions, clicks and impressions for "
7798
+ "organic keywords."
7799
+ msgstr ""
7800
+
7801
+ # @ squirrly-seo
7802
+ #: view/Blocks/Features.php:52
7803
+ #, fuzzy
7804
+ #| msgid "automatically"
7805
+ msgid "SEO Automation"
7806
+ msgstr "automatisch"
7807
+
7808
+ #: view/Blocks/Features.php:53
7809
+ msgid ""
7810
+ "Configure the SEO in 2 minutes for the entire website without writing a line "
7811
+ "of code."
7812
+ msgstr ""
7813
+
7814
+ # @ squirrly-seo
7815
+ #: view/Blocks/Features.php:61
7816
+ #, fuzzy
7817
+ #| msgid "Squirrly LIVE SEO assistant"
7818
+ msgid "Bulk SEO & Snippets"
7819
+ msgstr "Squirrly LIVE SEO-Assistent"
7820
+
7821
+ #: view/Blocks/Features.php:62
7822
+ msgid ""
7823
+ "Simplify the SEO process for all your posts types and optimize them in just "
7824
+ "minutes."
7825
+ msgstr ""
7826
+
7827
+ #: view/Blocks/Features.php:70 view/Goals/Goals.php:34
7828
+ msgid "Daily SEO Goals"
7829
+ msgstr ""
7830
+
7831
+ #: view/Blocks/Features.php:71
7832
+ msgid ""
7833
+ "The Non-Human SEO Consultant that prepares you goals that take you closer to "
7834
+ "the first page of Google."
7835
+ msgstr ""
7836
+
7837
+ #: view/Blocks/Features.php:79
7838
+ msgid "Open Graph Optimization"
7839
+ msgstr ""
7840
+
7841
+ #: view/Blocks/Features.php:80
7842
+ msgid "Add Social Open Graph protocol so that your Facebook shares look good."
7843
+ msgstr ""
7844
+
7845
+ #: view/Blocks/Features.php:88
7846
+ msgid "Twitter Card Optimization"
7847
+ msgstr ""
7848
+
7849
+ #: view/Blocks/Features.php:89
7850
+ msgid "Add Twitter Card in your tweets so that your Twitter shares look good."
7851
+ msgstr ""
7852
+
7853
+ #: view/Blocks/Features.php:97
7854
+ msgid "XML Sitemap"
7855
+ msgstr ""
7856
+
7857
+ #: view/Blocks/Features.php:98
7858
+ msgid ""
7859
+ "Use Squirrly’s Sitemap Generator and Settings to help your website get "
7860
+ "crawled and indexed by Google."
7861
+ msgstr ""
7862
+
7863
+ #: view/Blocks/Features.php:106
7864
+ msgid "JSON-LD Optimizaition"
7865
+ msgstr ""
7866
+
7867
+ #: view/Blocks/Features.php:107
7868
+ msgid ""
7869
+ "Edit your website’s JSON-LD Schema with Squirrly’s powerful semantic SEO "
7870
+ "Markup Solution."
7871
+ msgstr ""
7872
+
7873
+ # @ squirrly-seo
7874
+ #: view/Blocks/Features.php:115
7875
+ #, fuzzy
7876
+ #| msgid "Google %sAnalytics ID%s`:"
7877
+ msgid "Google Analytics Tracking"
7878
+ msgstr "Google %sAnalytics ID%s`:"
7879
+
7880
+ #: view/Blocks/Features.php:116
7881
+ msgid ""
7882
+ "Add the Google Analytics and Google Tag Manager tracking on your website."
7883
+ msgstr ""
7884
+
7885
+ #: view/Blocks/Features.php:124
7886
+ msgid "Facebook Pixel Tracking"
7887
+ msgstr ""
7888
+
7889
+ #: view/Blocks/Features.php:125
7890
+ msgid ""
7891
+ "Track visitors with website and e-commerce events for better Retargeting "
7892
+ "Campaigns."
7893
+ msgstr ""
7894
+
7895
+ #: view/Blocks/Features.php:133 view/Connect/GoogleSearchConsole.php:7
7896
+ msgid "Google Search Console"
7897
+ msgstr ""
7898
+
7899
+ #: view/Blocks/Features.php:134
7900
+ msgid ""
7901
+ "Connect your website with Google Search Console and get insights based on "
7902
+ "organic searched keywords."
7903
+ msgstr ""
7904
+
7905
+ #: view/Blocks/Features.php:142
7906
+ msgid "Robots.txt File"
7907
+ msgstr ""
7908
+
7909
+ #: view/Blocks/Features.php:143
7910
+ msgid ""
7911
+ "Tell search engine crawlers which pages or files the crawler can or can't "
7912
+ "request from your site."
7913
+ msgstr ""
7914
+
7915
+ #: view/Blocks/Features.php:151
7916
+ msgid "Favicon Site Icon"
7917
+ msgstr ""
7918
+
7919
+ #: view/Blocks/Features.php:152 view/SeoSettings/Favicon.php:29
7920
+ msgid ""
7921
+ "Add your website icon in the browser tabs and on other devices like iPhone, "
7922
+ "iPad and Android phones."
7923
+ msgstr ""
7924
+
7925
+ #: view/Blocks/Features.php:160
7926
+ msgid "On-Page SEO METAs"
7927
+ msgstr ""
7928
+
7929
+ #: view/Blocks/Features.php:161
7930
+ msgid ""
7931
+ "Add all Search Engine METAs like Title, Description, Canonical, Dublin Core, "
7932
+ "Robots and more."
7933
+ msgstr ""
7934
+
7935
+ #: view/Blocks/Features.php:169
7936
+ msgid "Remove META Duplicate"
7937
+ msgstr ""
7938
+
7939
+ #: view/Blocks/Features.php:170
7940
+ msgid "Fix Duplicate Titles and Descriptions without writing a line of code."
7941
+ msgstr ""
7942
+
7943
+ #: view/Blocks/Features.php:178
7944
+ msgid "404 Redirects"
7945
+ msgstr ""
7946
+
7947
+ #: view/Blocks/Features.php:179
7948
+ msgid ""
7949
+ "Automatically redirect the old posts and pages URLs to the new URLs to keep "
7950
+ "the post authority."
7951
+ msgstr ""
7952
+
7953
+ #: view/Blocks/Features.php:188 view/Blocks/Features.php:197
7954
+ msgid "Improve your Online Presence by knowing how your website is performing."
7955
+ msgstr ""
7956
+
7957
+ #: view/Blocks/Features.php:196 view/Blocks/Jorney.php:12
7958
+ #: view/Blocks/Jorney.php:95
7959
+ msgid "14 Days Journey Course"
7960
+ msgstr ""
7961
+
7962
+ #: view/Blocks/Features.php:205
7963
+ msgid "Blogging Assistant"
7964
+ msgstr ""
7965
+
7966
+ #: view/Blocks/Features.php:206
7967
+ msgid ""
7968
+ "Add relevant Copyright-free images, Tweets, Wikis, Blog Excerpts in your "
7969
+ "posts."
7970
+ msgstr ""
7971
+
7972
+ #: view/Blocks/Features.php:207
7973
+ msgid "Pro"
7974
+ msgstr ""
7975
+
7976
+ #: view/Blocks/Features.php:214 view/Onboarding/Step1.5.php:21
7977
+ msgid "Google SERP Checker"
7978
+ msgstr ""
7979
+
7980
+ #: view/Blocks/Features.php:215
7981
+ msgid ""
7982
+ "Accurately track your rankings with Squirrly’s user-friendly Google SERP "
7983
+ "Checker."
7984
+ msgstr ""
7985
+
7986
+ #: view/Blocks/Features.php:216
7987
+ msgid "Business"
7988
+ msgstr ""
7989
+
7990
+ # @ squirrly-seo
7991
+ #: view/Blocks/Features.php:233 view/Overview.php:65
7992
+ #, fuzzy
7993
+ #| msgid "Squirrly LIVE SEO assistant"
7994
+ msgid "Squirrly SEO Feature Categories"
7995
+ msgstr "Squirrly LIVE SEO-Assistent"
7996
+
7997
+ #: view/Blocks/Features.php:237
7998
+ #, php-format
7999
+ msgid ""
8000
+ "With a total of over %s200%s free in-depth features that only Squirrly can "
8001
+ "offer."
8002
+ msgstr ""
8003
+
8004
+ #: view/Blocks/Features.php:292
8005
+ msgid "Go to feature"
8006
+ msgstr ""
8007
+
8008
+ #: view/Blocks/Features.php:294
8009
+ msgid "Active"
8010
+ msgstr ""
8011
+
8012
+ #: view/Blocks/Features.php:296
8013
+ msgid "Inactive"
8014
+ msgstr ""
8015
+
8016
+ #: view/Blocks/Features.php:304
8017
+ msgid "more details"
8018
+ msgstr ""
8019
+
8020
  #: view/Blocks/FocusPages.php:7
8021
  msgid "See Focus Pages"
8022
  msgstr ""
8041
  msgid "Then set a page as focus"
8042
  msgstr ""
8043
 
 
 
 
 
8044
  #: view/Blocks/Jorney.php:17
8045
  #, php-format
8046
  msgid "Follow the %sdaily recipe%s from below."
8097
 
8098
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
8099
  #: view/Ranking/Rankings.php:395 view/Research/Briefcase.php:256
8100
+ #: view/Research/History.php:30 view/Research/Research.php:195
8101
  #: view/Research/Suggested.php:29
8102
  msgid "Country"
8103
  msgstr ""
8104
 
8105
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
8106
+ #: view/Research/History.php:30 view/Research/Research.php:195
8107
  #: view/Research/Suggested.php:29
8108
  msgid "Co"
8109
  msgstr ""
8111
  #: view/Blocks/KRFound.php:18 view/Blocks/KRFound.php:19
8112
  #: view/Blocks/KRFound.php:64 view/Research/Briefcase.php:261
8113
  #: view/Research/HistoryDetails.php:16 view/Research/HistoryDetails.php:18
8114
+ #: view/Research/Research.php:197 view/Research/Research.php:198
8115
  #: view/Research/Suggested.php:31 view/Research/Suggested.php:32
8116
  #: view/Research/Suggested.php:81
8117
  msgid "Competition"
8118
  msgstr ""
8119
 
8120
  #: view/Blocks/KRFound.php:22 view/Blocks/KRFound.php:69
8121
+ #: view/Research/HistoryDetails.php:12 view/Research/Research.php:201
8122
  #: view/Research/Suggested.php:35 view/Research/Suggested.php:86
8123
  msgid "SEO Search Volume"
8124
  msgstr ""
8130
 
8131
  #: view/Blocks/KRFound.php:26 view/Blocks/KRFound.php:74
8132
  #: view/Research/Briefcase.php:277 view/Research/HistoryDetails.php:8
8133
+ #: view/Research/Research.php:205 view/Research/Suggested.php:39
8134
  #: view/Research/Suggested.php:91
8135
  msgid "Recent discussions"
8136
  msgstr ""
8137
 
8138
  #: view/Blocks/KRFound.php:27 view/Research/HistoryDetails.php:10
8139
+ #: view/Research/Research.php:206 view/Research/Suggested.php:40
8140
  msgid "Discussion"
8141
  msgstr ""
8142
 
8143
  #: view/Blocks/KRFound.php:30 view/Blocks/KRFound.php:31
8144
  #: view/Blocks/KRFound.php:79 view/Research/Briefcase.php:283
8145
+ #: view/Research/HistoryDetails.php:20 view/Research/Research.php:209
8146
  #: view/Research/Suggested.php:43
8147
  msgid "Trending"
8148
  msgstr ""
8175
  msgid "Go to Briefcase"
8176
  msgstr ""
8177
 
 
 
 
 
 
8178
  #: view/Blocks/KRHistory.php:6
8179
  msgid "See Research History"
8180
  msgstr ""
8727
  msgid "%sPlease connect to SquirrlyCloud first%s"
8728
  msgstr ""
8729
 
8730
+ #: view/Blocks/Stats.php:45
8731
  msgid "Hello"
8732
  msgstr ""
8733
 
8734
+ #: view/Blocks/Stats.php:51
8735
  #, php-format
8736
  msgid "%s SEO Protection"
8737
  msgstr ""
8738
 
8739
+ #: view/Blocks/Stats.php:54
8740
  msgid "All protection layers are activated."
8741
  msgstr ""
8742
 
8743
+ #: view/Blocks/Stats.php:56
8744
  #, php-format
8745
  msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
8746
  msgstr ""
8747
 
8748
+ #: view/Blocks/Stats.php:60
8749
  msgid "How does this work?"
8750
  msgstr ""
8751
 
8752
+ #: view/Blocks/Stats.php:68
8753
  msgid "Pages SEO'ed"
8754
  msgstr ""
8755
 
8756
+ #: view/Blocks/Stats.php:74
8757
  msgid "Post Types Covered"
8758
  msgstr ""
8759
 
8760
+ #: view/Blocks/Stats.php:79 view/Goals/CheckSeo.php:102
8761
  #, php-format
8762
  msgid "%s Aspects"
8763
  msgstr ""
8764
 
8765
  # @ squirrly-seo
8766
+ #: view/Blocks/Stats.php:80 view/Goals/CheckSeo.php:103
8767
  #, fuzzy
8768
  #| msgid "Squirrly settings"
8769
  msgid "Handled by Squirrly Genius."
8770
  msgstr "Squirrly Einstellungen"
8771
 
8772
+ #: view/Blocks/Stats.php:82
8773
  msgid "Can I see them?"
8774
  msgstr ""
8775
 
8776
+ #: view/Blocks/Stats.php:86 view/Goals/Goals.php:43
8777
  msgid "Run SEO Test"
8778
  msgstr ""
8779
 
8886
  msgid "Thank you! You can send us a happy face tomorrow too."
8887
  msgstr ""
8888
 
8889
+ #: view/Blocks/VersionBar.php:9
8890
  #, php-format
8891
  msgid ""
8892
  "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
8893
  "accurate and objective."
8894
  msgstr ""
8895
 
8896
+ #: view/Blocks/VersionBar.php:12
8897
  #, php-format
8898
  msgid ""
8899
  "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
8900
  msgstr ""
8901
 
8902
+ #: view/Blocks/VersionBar.php:18
8903
  #, php-format
8904
  msgid ""
8905
  "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
8908
  "your plan to %sBusiness Plan%s"
8909
  msgstr ""
8910
 
8911
+ #: view/Blocks/VersionBar.php:25
8912
  #, php-format
8913
  msgid ""
8914
  "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
8915
  "hour."
8916
  msgstr ""
8917
 
8918
+ #: view/Blocks/VersionBar.php:29
8919
  #, php-format
8920
  msgid ""
8921
  "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
8923
  "please upgrade your plan to %sPRO Plan%s"
8924
  msgstr ""
8925
 
8926
+ #: view/Blocks/VersionBar.php:36
8927
  #, php-format
8928
  msgid ""
8929
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
8930
  "audit for each page every 5 mins."
8931
  msgstr ""
8932
 
8933
+ #: view/Blocks/VersionBar.php:40
8934
  #, php-format
8935
  msgid ""
8936
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
8938
  "upgrade your plan to %sPRO Plan%s"
8939
  msgstr ""
8940
 
8941
+ #: view/Blocks/VersionBar.php:44
8942
+ #, php-format
8943
+ msgid ""
8944
+ "Your current plan is OLD Squirrly plan: Please read the official notes about "
8945
+ "it %shttps://www.squirrly.co/you-received-access-to-all-updates-from-"
8946
+ "squirrly-seo/%s"
8947
+ msgstr ""
8948
+
8949
+ #: view/Blocks/VersionBar.php:52
8950
  #, php-format
8951
  msgid ""
8952
  "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
8953
  "tasks to get 100%% optimized posts and pages."
8954
  msgstr ""
8955
 
8956
+ #: view/Blocks/VersionBar.php:56
8957
  #, php-format
8958
  msgid ""
8959
  "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
8961
  "Plan%s"
8962
  msgstr ""
8963
 
8964
+ #: view/Blocks/VersionBar.php:64
8965
  #, php-format
8966
  msgid ""
8967
  "%sResearch %s:%s You have %s researches left for your account. The research "
8969
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
8970
  msgstr ""
8971
 
8972
+ #: view/Blocks/VersionBar.php:68
8973
  #, php-format
8974
  msgid ""
8975
  "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
8976
  "Deep Keyword Research and get up to 50 results on each research."
8977
  msgstr ""
8978
 
8979
+ #: view/Blocks/VersionBar.php:72
8980
  #, php-format
8981
  msgid ""
8982
  "%sResearch %s:%s You have %s researches left for your account. The research "
8984
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
8985
  msgstr ""
8986
 
8987
+ #: view/Blocks/VersionBar.php:79
8988
  #, php-format
8989
  msgid ""
8990
  "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
8991
  "optimize your posts and pages."
8992
  msgstr ""
8993
 
8994
+ #: view/Blocks/VersionBar.php:84
8995
  #, php-format
8996
  msgid ""
8997
  "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
8998
  "keywords to organize the keywords by your SEO strategy."
8999
  msgstr ""
9000
 
9001
+ #: view/Blocks/VersionBar.php:90
9002
  #, php-format
9003
  msgid ""
9004
  "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
9005
  "find better matching keywords based on your research history."
9006
  msgstr ""
9007
 
9008
+ #: view/Blocks/VersionBar.php:94
9009
  #, php-format
9010
  msgid ""
9011
  "This feature is only available for PRO and Business accounts. %sTo get "
9012
  "Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s"
9013
  msgstr ""
9014
 
9015
+ #: view/Blocks/VersionBar.php:103
9016
  #, php-format
9017
  msgid ""
9018
  "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
9019
  "SEO for free."
9020
  msgstr ""
9021
 
9022
+ #: view/Blocks/VersionBar.php:109
9023
  #, php-format
9024
  msgid ""
9025
  "%sOn-Page SEO Settings:%s This feature is included in all versions of "
9026
  "Squirrly SEO for free."
9027
  msgstr ""
9028
 
9029
+ #: view/BulkSeo/Bulkseo.php:30
9030
  msgid ""
9031
  "Simplify the SEO process for all your posts types and optimize them in just "
9032
  "minutes. "
9033
  msgstr ""
9034
 
9035
+ #: view/BulkSeo/Bulkseo.php:183
9036
  #, php-format
9037
  msgid "No data for this filter. %sShow All%s records for this post type."
9038
  msgstr ""
9039
 
9040
+ #: view/BulkSeo/Bulkseo.php:185
9041
  msgid "No data found for this post type. Try other post types."
9042
  msgstr ""
9043
 
9044
+ #: view/BulkSeo/BulkseoRow.php:26
9045
  #, php-format
9046
  msgid "View &#8220;%s&#8221;"
9047
  msgstr ""
9084
  msgid "Check connection"
9085
  msgstr ""
9086
 
 
 
 
 
9087
  #: view/Connect/GoogleSearchConsole.php:12
9088
  msgid "You are connected to Google Search Console"
9089
  msgstr ""
9101
  "each Audit"
9102
  msgstr ""
9103
 
 
 
 
 
 
 
 
 
9104
  #: view/Errors/Maintenance.php:20
9105
  #, php-format
9106
  msgid ""
9152
  msgid "Details"
9153
  msgstr ""
9154
 
9155
+ #: view/FocusPages/FocusPageRow.php:100
 
 
 
 
 
 
 
 
 
 
 
9156
  msgid "Currently processing data. Please refresh in a few minutes."
9157
  msgstr ""
9158
 
9159
  # @ squirrly-seo
9160
+ #: view/FocusPages/FocusPageRow.php:106 view/FocusPages/FocusPageRow.php:110
9161
+ #: view/FocusPages/FocusPageRow.php:126 view/FocusPages/FocusPages.php:54
9162
  #, fuzzy
9163
  #| msgid "Change it >>"
9164
  msgid "Chance to Rank"
9165
  msgstr "Ändern >>"
9166
 
9167
+ #: view/FocusPages/FocusPageRow.php:164
9168
  msgid "Delete Focus Page"
9169
  msgstr ""
9170
 
9264
  msgid "Don't choose your Home Page, Contact Page or About Use page."
9265
  msgstr ""
9266
 
9267
+ #: view/FocusPages/Pagelist.php:53
9268
  #, php-format
9269
  msgid ""
9270
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
9309
  msgid "Congratulations!"
9310
  msgstr ""
9311
 
 
 
 
 
9312
  #: view/Goals/Goals.php:36
9313
  #, php-format
9314
  msgid "%s goals for today"
9510
  msgid "Get a Birds-Eye-View of your Site’s Overall SEO Optimization"
9511
  msgstr ""
9512
 
 
 
 
 
9513
  #: view/Onboarding/Step1.5.php:35
9514
  msgid ""
9515
  "Accurately Track Your Rankings with Squirrly’s User-Friendly Google SERP "
9739
  "our features %s by creating a free account"
9740
  msgstr ""
9741
 
9742
+ #: view/Overview.php:43
9743
+ msgid ""
9744
+ "You do not have permission to access Daily Goals. You need Squirrly SEO "
9745
+ "Editor role."
9746
+ msgstr ""
9747
+
9748
+ #: view/Overview.php:80
9749
+ msgid "Show Advanced SEO"
9750
+ msgstr ""
9751
+
9752
+ #: view/Overview.php:81
9753
+ msgid ""
9754
+ "Switch off to have the simplified version of the settings, intended for Non-"
9755
+ "SEO Experts."
9756
+ msgstr ""
9757
+
9758
+ #: view/Overview.php:82
9759
+ msgid ""
9760
+ "It will offer the same level of SEO performance, but it will be less "
9761
+ "customizable."
9762
+ msgstr ""
9763
+
9764
+ #: view/Overview.php:94
9765
+ msgid "We Need Your Support"
9766
+ msgstr ""
9767
+
9768
+ #: view/Overview.php:103
9769
+ msgid "Rate us if you like Squirrly SEO"
9770
+ msgstr ""
9771
+
9772
  #: view/Ranking/Gscsync.php:15
9773
  msgid "Google Search Console Keywords Sync"
9774
  msgstr ""
9843
 
9844
  #: view/Ranking/Rankings.php:35
9845
  msgid ""
9846
+ "Get the Google Search Console average possitions, clicks and impressions for "
9847
+ "all organic keywords of your website."
9848
  msgstr ""
9849
 
9850
  #: view/Ranking/Rankings.php:98
10641
  msgid "Welcome to Keyword Research History"
10642
  msgstr ""
10643
 
10644
+ #: view/Research/HistoryDetails.php:22 view/Research/Research.php:210
10645
  #: view/Research/Suggested.php:44
10646
  msgid "Trend"
10647
  msgstr ""
10723
  "Squirrly's Market Intelligence Features."
10724
  msgstr ""
10725
 
10726
+ #: view/Research/Research.php:34 view/Research/Research.php:147
10727
  msgid "You've reached your Keyword Research Limit"
10728
  msgstr ""
10729
 
10730
+ #: view/Research/Research.php:35 view/Research/Research.php:148
10731
  msgid "Check Your Account"
10732
  msgstr ""
10733
 
10772
  "For local SEO you need to select the Country where you run your business"
10773
  msgstr ""
10774
 
10775
+ #: view/Research/Research.php:100 view/Research/Research.php:154
10776
+ #: view/Research/Research.php:222
10777
  msgid "Start Over"
10778
  msgstr ""
10779
 
10781
  msgid "Step 3/4: Select similar keywords from below"
10782
  msgstr ""
10783
 
10784
+ #: view/Research/Research.php:109
10785
+ msgid ""
10786
+ "Each selected keyword will consume 1 credit from your keyword research "
10787
+ "credits."
10788
+ msgstr ""
10789
+
10790
+ #: view/Research/Research.php:150
10791
  #, php-format
10792
  msgid "We could not find similar keywords. %sClick on \"Do research\""
10793
  msgstr ""
10794
 
10795
  # @ squirrly-seo
10796
+ #: view/Research/Research.php:160
10797
  #, fuzzy
10798
  #| msgid "Do the research"
10799
  msgid "Do a deep research"
10800
  msgstr "Recherchieren"
10801
 
10802
  # @ squirrly-seo
10803
+ #: view/Research/Research.php:164 view/Research/Research.php:170
10804
  #, fuzzy
10805
  #| msgid "Do the research"
10806
  msgid "Do research"
10807
  msgstr "Recherchieren"
10808
 
10809
+ #: view/Research/Research.php:178
10810
  msgid ""
10811
  "Keyword Research in progress. We're doing all of this in real-time. Data is "
10812
  "fresh."
10813
  msgstr ""
10814
 
10815
+ #: view/Research/Research.php:179
10816
  msgid "We're now finding 10 alternatives for each keyword you selected."
10817
  msgstr ""
10818
 
10819
+ #: view/Research/Research.php:180
10820
  msgid ""
10821
  "For each alternative, we are looking at the top 10 pages ranked on Google "
10822
  "for that keyword."
10823
  msgstr ""
10824
 
10825
+ #: view/Research/Research.php:181
10826
  msgid ""
10827
  "We are now measuring the web authority of each competing page and comparing "
10828
  "it to yours."
10829
  msgstr ""
10830
 
10831
+ #: view/Research/Research.php:182
10832
  msgid "Looking at the monthly search volume for each keyword."
10833
  msgstr ""
10834
 
10835
+ #: view/Research/Research.php:183
10836
  msgid "Analyzing the last 30 days of Google trends for each keyword."
10837
  msgstr ""
10838
 
10839
+ #: view/Research/Research.php:184
10840
  msgid ""
10841
  "Seeing how many discussions there are on forums and Twitter for each keyword."
10842
  msgstr ""
10843
 
10844
+ #: view/Research/Research.php:185
10845
  msgid ""
10846
  "Piecing all the keywords together now after analyzing each individual "
10847
  "keyword."
10848
  msgstr ""
10849
 
10850
+ #: view/Research/Research.php:186
10851
  msgid "Preparing the results."
10852
  msgstr ""
10853
 
10854
+ #: view/Research/Research.php:188
10855
  msgid "Step 4/4: We found some relevant keywords for you"
10856
  msgstr ""
10857
 
10858
+ #: view/Research/Research.php:189
10859
  #, php-format
10860
  msgid ""
10861
  "Still processing. give it a bit more time, then go to %sResearch History%s. "
10862
  "Results will appear there."
10863
  msgstr ""
10864
 
10865
+ #: view/Research/Research.php:190
10866
  msgid "Step 4/4: We could not find relevant keywords for you"
10867
  msgstr ""
10868
 
10869
+ #: view/Research/Research.php:237
10870
  msgid "How to Find Amazing Keywords and get more search traffic?"
10871
  msgstr ""
10872
 
10873
+ #: view/Research/Research.php:251
10874
  msgid "Already Have Keywords?"
10875
  msgstr ""
10876
 
10877
+ #: view/Research/Research.php:254
10878
  msgid "Import Keywords From CSV"
10879
  msgstr ""
10880
 
10932
  msgid "For compatibility with some Cache and CDN plugins."
10933
  msgstr ""
10934
 
10935
+ #: view/SeoSettings/Advanced.php:76
10936
  msgid "Delete Squirrly Table on Uninstall"
10937
  msgstr ""
10938
 
10939
+ #: view/SeoSettings/Advanced.php:77
10940
  msgid "Delete Squirrly SEO table and options on uninstall."
10941
  msgstr ""
10942
 
11215
  msgid "JSON-LD Description Length"
11216
  msgstr ""
11217
 
11218
+ #: view/SeoSettings/Backup.php:7 view/SeoSettings/Jsonld.php:7
11219
+ msgid ""
11220
+ "You do not have permission to access this page. You need Squirrly SEO Admin "
11221
+ "role"
11222
+ msgstr ""
11223
+
11224
  #: view/SeoSettings/Backup.php:23
11225
  msgid "Import Settings & SEO"
11226
  msgstr ""
11344
  msgid "Website Icon"
11345
  msgstr ""
11346
 
 
 
 
 
 
 
11347
  #: view/SeoSettings/Favicon.php:35
11348
  msgid "Activate Favicon"
11349
  msgstr ""
11949
 
11950
  #: view/SeoSettings/Social.php:271
11951
  msgid ""
11952
+ "Add the Twitter Card in your tweets so that your Twitter shares look good."
11953
  msgstr ""
11954
 
11955
  #: view/SeoSettings/Social.php:272
languages/squirrly-seo-de_DE.mo CHANGED
Binary file
languages/squirrly-seo-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-11 08:57+0300\n"
6
- "PO-Revision-Date: 2020-05-11 08:57+0300\n"
7
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
@@ -16,87 +16,87 @@ msgstr ""
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Textdomain-Support: yes\n"
19
- "X-Generator: Poedit 2.2.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  #: classes/Error.php:79 classes/Error.php:90
23
  msgid "Don't bother me!"
24
  msgstr ""
25
 
26
- #: classes/RemoteController.php:257
27
  msgid "Too many API attempts, please slow down the request."
28
  msgstr ""
29
 
30
- #: classes/RemoteController.php:261
31
  msgid ""
32
  "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
33
  "in a minute."
34
  msgstr ""
35
 
36
- #: classes/RemoteController.php:320
37
  msgid "Articles optimized so far"
38
  msgstr ""
39
 
40
- #: classes/RemoteController.php:322 classes/RemoteController.php:329
41
  msgid "add post"
42
  msgstr ""
43
 
44
- #: classes/RemoteController.php:327
45
  msgid "Average optimization"
46
  msgstr ""
47
 
48
  # @ squirrly-seo
49
- #: classes/RemoteController.php:334
50
  #, fuzzy
51
  #| msgid "Squirrly Keyword Research"
52
  msgid "Keyword Researches"
53
  msgstr "Squirrly Erweiterte Suche!"
54
 
55
  # @ squirrly-seo
56
- #: classes/RemoteController.php:336
57
  #, fuzzy
58
  #| msgid "Do a research"
59
  msgid "do research"
60
  msgstr "Recherchieren"
61
 
62
- #: classes/RemoteController.php:341
63
  msgid "Keywords stored in Squirrly Briefcase"
64
  msgstr ""
65
 
66
  # @ squirrly-seo
67
- #: classes/RemoteController.php:343
68
  #, fuzzy
69
  #| msgid "+ Add keyword"
70
  msgid "add keyword"
71
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
72
 
73
- #: classes/RemoteController.php:348
74
  msgid "Pages ranking in top 100 Google"
75
  msgstr ""
76
 
77
- #: classes/RemoteController.php:350
78
  msgid "see rankings"
79
  msgstr ""
80
 
81
- #: classes/RemoteController.php:355
82
  msgid "SEO Audits"
83
  msgstr ""
84
 
85
- #: classes/RemoteController.php:357
86
  msgid "see audits"
87
  msgstr ""
88
 
89
  # @ squirrly-seo
90
- #: classes/RemoteController.php:1250
91
  msgid "Keyword:"
92
  msgstr "Schlüsselwort:"
93
 
94
  # @ squirrly-seo
95
- #: classes/RemoteController.php:1251
96
  msgid "date"
97
  msgstr "Datum"
98
 
99
- #: classes/RemoteController.php:1252 controllers/CheckSeo.php:317
100
  #: controllers/Patterns.php:16 controllers/Research.php:259
101
  #: controllers/Research.php:290 controllers/Research.php:344
102
  #: controllers/Research.php:654
@@ -104,62 +104,62 @@ msgid "Saved!"
104
  msgstr ""
105
 
106
  # @ squirrly-seo
107
- #: classes/RemoteController.php:1253
108
  msgid "Read it!"
109
  msgstr "Lesen!"
110
 
111
  # @ squirrly-seo
112
- #: classes/RemoteController.php:1254
113
  msgid "Insert it!"
114
  msgstr "Einfügen!"
115
 
116
  # @ squirrly-seo
117
- #: classes/RemoteController.php:1255
118
  msgid "Reference"
119
  msgstr "Referenz"
120
 
121
  # @ squirrly-seo
122
- #: classes/RemoteController.php:1256
123
  msgid "Insert as box"
124
  msgstr "Als Box einfügen"
125
 
126
- #: classes/RemoteController.php:1257
127
  msgid "Insert Link"
128
  msgstr ""
129
 
130
  # @ squirrly-seo
131
- #: classes/RemoteController.php:1258
132
  msgid "Not relevant?"
133
  msgstr "Nicht relevant?"
134
 
135
  # @ squirrly-seo
136
- #: classes/RemoteController.php:1259
137
  msgid "Insert in your article"
138
  msgstr "In Artikel einfügen"
139
 
140
- #: classes/RemoteController.php:1260
141
  msgid ":( An error occurred while processing your request. Please try again"
142
  msgstr ""
143
 
144
  # @ squirrly-seo
145
- #: classes/RemoteController.php:1261
146
  msgid "No results found!"
147
  msgstr "Keine Ergebnisse gefunden!"
148
 
149
- #: classes/RemoteController.php:1262
150
  #, php-format
151
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
152
  msgstr ""
153
 
154
- #: classes/RemoteController.php:1263
155
  msgid "Has creative commons attributes"
156
  msgstr ""
157
 
158
- #: classes/RemoteController.php:1264
159
  msgid "No known copyright restrictions"
160
  msgstr ""
161
 
162
- #: classes/RemoteController.php:1265
163
  msgid ""
164
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
165
  "optimize for a keyword before publishing?"
@@ -167,89 +167,89 @@ msgstr ""
167
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
168
  "optimize for a keyword before publishing?"
169
 
170
- #: classes/RemoteController.php:1266
171
  msgid "Your Subscription has Expired"
172
  msgstr ""
173
 
174
- #: classes/RemoteController.php:1267
175
  msgid "There are no keywords saved in briefcase yet"
176
  msgstr ""
177
 
178
- #: classes/RemoteController.php:1268
179
  #, php-format
180
  msgid "Congratulations! Your article is 100% optimized!"
181
  msgstr ""
182
 
183
- #: classes/RemoteController.php:1269
184
  #, php-format
185
  msgid "appears too many times. Try to remove %s of them"
186
  msgstr ""
187
 
188
- #: classes/RemoteController.php:1270
189
  #, php-format
190
  msgid "write %s more words"
191
  msgstr ""
192
 
193
- #: classes/RemoteController.php:1271
194
  #, php-format
195
  msgid "Add the keyword in the %s of your article"
196
  msgstr ""
197
 
198
- #: classes/RemoteController.php:1272
199
  msgid "Click to keep the highlight on"
200
  msgstr ""
201
 
202
- #: classes/RemoteController.php:1273
203
  msgid "introduction"
204
  msgstr ""
205
 
206
- #: classes/RemoteController.php:1274
207
  #, php-format
208
  msgid "Write more words after the %s keyword"
209
  msgstr ""
210
 
211
- #: classes/RemoteController.php:1275
212
  msgid "or use synonyms"
213
  msgstr ""
214
 
215
- #: classes/RemoteController.php:1276
216
  #, php-format
217
  msgid "add %s more word(s)"
218
  msgstr ""
219
 
220
- #: classes/RemoteController.php:1277
221
  #, php-format
222
  msgid "or remove %s word(s)"
223
  msgstr ""
224
 
225
- #: classes/RemoteController.php:1278
226
  #, php-format
227
  msgid "add %s more keyword(s)"
228
  msgstr ""
229
 
230
- #: classes/RemoteController.php:1279
231
  #, php-format
232
  msgid "write %s more words to start calculating"
233
  msgstr ""
234
 
235
- #: classes/RemoteController.php:1280 view/Research/Research.php:48
236
  msgid "Add to Briefcase"
237
  msgstr ""
238
 
239
- #: classes/RemoteController.php:1281
240
  msgid "Add Keyword to Briefcase"
241
  msgstr ""
242
 
243
- #: classes/RemoteController.php:1282
244
  msgid "Select"
245
  msgstr ""
246
 
247
- #: classes/RemoteController.php:1283 view/Blocks/Snippet.php:136
248
  #: view/Blocks/Snippet.php:509 view/Blocks/Snippet.php:765
249
  msgid "Auto Draft"
250
  msgstr ""
251
 
252
- #: classes/RemoteController.php:1284
253
  msgid ""
254
  "You’ve already used the Live Assistant to optimize this post when creating "
255
  "it in your Page Builder. Please go back and resume your optimization work "
@@ -301,62 +301,62 @@ msgstr "Der Code für Facebook ist falsch."
301
  msgid "The code for Facebook App must only contain numbers."
302
  msgstr "Der Code für Facebook ist falsch."
303
 
304
- #: classes/helpers/Tools.php:80
305
  msgid "Getting started"
306
  msgstr ""
307
 
308
  # @ squirrly-seo
309
- #: classes/helpers/Tools.php:105
310
  #, fuzzy
311
  #| msgid "Competition:"
312
  msgid "Documentation"
313
  msgstr "Wettbewerb:"
314
 
315
- #: classes/helpers/Tools.php:106
316
  msgid "Leave a review"
317
  msgstr ""
318
 
319
- #: classes/helpers/Tools.php:405
320
  msgid "Format"
321
  msgstr ""
322
 
323
- #: classes/helpers/Tools.php:423 classes/helpers/Tools.php:459
324
  msgid "Category"
325
  msgstr ""
326
 
327
- #: classes/helpers/Tools.php:441 classes/helpers/Tools.php:477
328
  msgid "Tag"
329
  msgstr ""
330
 
331
- #: classes/helpers/Tools.php:495
332
  msgid "Shipping Option"
333
  msgstr ""
334
 
335
- #: classes/helpers/Tools.php:513
336
  msgid "Author at"
337
  msgstr ""
338
 
339
- #: classes/helpers/Tools.php:585
340
  msgid "Are you looking for"
341
  msgstr ""
342
 
343
- #: classes/helpers/Tools.php:586
344
  msgid "These are the results for"
345
  msgstr ""
346
 
347
- #: classes/helpers/Tools.php:586
348
  msgid "that you can find on our website."
349
  msgstr ""
350
 
351
- #: classes/helpers/Tools.php:620
352
  msgid "Page not found"
353
  msgstr ""
354
 
355
- #: classes/helpers/Tools.php:621
356
  msgid "This page could not be found on our website."
357
  msgstr ""
358
 
359
- #: classes/helpers/Tools.php:889
360
  msgid "For better text comparison you need to install PHP mbstring extension."
361
  msgstr ""
362
 
@@ -500,7 +500,7 @@ msgid "No keyword found."
500
  msgstr ""
501
 
502
  #: controllers/Assistant.php:102 controllers/Assistant.php:129
503
- #: controllers/Audits.php:324 controllers/Ranking.php:134
504
  #: controllers/SeoSettings.php:149 controllers/SeoSettings.php:166
505
  #: controllers/SeoSettings.php:187 controllers/SeoSettings.php:224
506
  #: controllers/SeoSettings.php:250 controllers/SeoSettings.php:278
@@ -510,8 +510,8 @@ msgid "Saved"
510
  msgstr ""
511
 
512
  #: controllers/Assistant.php:108 controllers/BulkSeo.php:69
513
- #: controllers/Patterns.php:100 controllers/Post.php:246
514
- #: controllers/Post.php:299 controllers/Post.php:331 controllers/Post.php:366
515
  #: controllers/PostsList.php:182 controllers/Research.php:172
516
  #: controllers/Research.php:179 controllers/Research.php:217
517
  #: controllers/Research.php:240 controllers/Research.php:270
@@ -523,7 +523,7 @@ msgstr ""
523
  #: controllers/SeoSettings.php:543 controllers/SeoSettings.php:568
524
  #: controllers/SeoSettings.php:605 controllers/SeoSettings.php:642
525
  #: controllers/SeoSettings.php:656 controllers/SeoSettings.php:678
526
- #: controllers/SeoSettings.php:699 controllers/Snippet.php:159
527
  msgid "You do not have permission to perform this action"
528
  msgstr ""
529
 
@@ -539,47 +539,47 @@ msgid "The audit was not found. Please load another audit."
539
  msgstr ""
540
 
541
  # @ squirrly-seo
542
- #: controllers/Audits.php:203
543
  #, fuzzy
544
  #| msgid "Could not send the email..."
545
  msgid "Could not load the Audit Page."
546
  msgstr "Konnte E-Mail nicht senden ..."
547
 
548
- #: controllers/Audits.php:265
549
  msgid "Audit page is added. The audit may take a while so please be patient."
550
  msgstr ""
551
 
552
- #: controllers/Audits.php:268
553
  msgid "You reached the maximum number of audit pages for your account."
554
  msgstr ""
555
 
556
  # @ squirrly-seo
557
- #: controllers/Audits.php:271
558
  #, fuzzy
559
  #| msgid "Upload error: Could not upload the favicon."
560
  msgid "Error! Could not add the audit page."
561
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
562
 
563
  # @ squirrly-seo
564
- #: controllers/Audits.php:275
565
  #, fuzzy
566
  #| msgid "Upload error: Could not upload the favicon."
567
  msgid "Error! Could not find the audit page in your website."
568
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
569
 
570
- #: controllers/Audits.php:285
571
  msgid "Audit page sent for recheck. It may take a while so please be patient."
572
  msgstr ""
573
 
574
- #: controllers/Audits.php:288 controllers/Audits.php:291
575
  msgid "The audit for all pages can be made once an hour."
576
  msgstr ""
577
 
578
- #: controllers/Audits.php:301
579
  msgid "The audit page is deleted"
580
  msgstr ""
581
 
582
- #: controllers/Audits.php:303 controllers/FocusPages.php:383
583
  #: controllers/Ranking.php:161 controllers/Ranking.php:179
584
  #: controllers/Ranking.php:197 controllers/Research.php:208
585
  #: controllers/Research.php:211 controllers/Research.php:234
@@ -590,7 +590,7 @@ msgstr ""
590
  msgid "Invalid params!"
591
  msgstr ""
592
 
593
- #: controllers/Audits.php:326
594
  msgid "Not a valid email address"
595
  msgstr ""
596
 
@@ -610,108 +610,108 @@ msgstr ""
610
  msgid "Saved! Task marked as done."
611
  msgstr ""
612
 
613
- #: controllers/FocusPages.php:256
614
  msgid "Focus Page does not exist or was deleted from your website."
615
  msgstr ""
616
 
617
- #: controllers/FocusPages.php:314
618
  msgid "Focus page is added. The audit may take a while so please be patient."
619
  msgstr ""
620
 
621
- #: controllers/FocusPages.php:321
622
  msgid "You reached the maximum number of focus pages for all your websites."
623
  msgstr ""
624
 
625
  # @ squirrly-seo
626
- #: controllers/FocusPages.php:324
627
  #, fuzzy
628
  #| msgid "Upload error: Could not upload the favicon."
629
  msgid "Error! Could not add the focus page."
630
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
631
 
632
- #: controllers/FocusPages.php:327
633
  msgid "Error! This focus page is not public."
634
  msgstr ""
635
 
636
- #: controllers/FocusPages.php:331 controllers/FocusPages.php:370
637
  msgid "Error! Could not find the focus page in your website."
638
  msgstr ""
639
 
640
- #: controllers/FocusPages.php:358
641
  msgid "Focus page sent for recheck. It may take a while so please be patient."
642
  msgstr ""
643
 
644
- #: controllers/FocusPages.php:361 controllers/FocusPages.php:365
645
  msgid "You've made too many requests, please wait a few minutes."
646
  msgstr ""
647
 
648
- #: controllers/FocusPages.php:381
649
  msgid "The focus page is deleted"
650
  msgstr ""
651
 
652
- #: controllers/Menu.php:126
653
  #, php-format
654
  msgid ""
655
  "An error occurred during activation. If this error persists, please contact "
656
  "us at: %s"
657
  msgstr ""
658
 
659
- #: controllers/Menu.php:163
660
  msgid "Dashboard"
661
  msgstr ""
662
 
663
  # @ squirrly-seo
664
- #: controllers/Menu.php:188 controllers/Menu.php:287 controllers/Menu.php:322
665
  #: view/Blocks/SLASearch.php:7
666
  #, fuzzy
667
  #| msgid "Squirrly settings"
668
  msgid "Squirrly SEO"
669
  msgstr "Squirrly Einstellungen"
670
 
671
- #: controllers/Menu.php:256
672
  msgid "SEO Snippet"
673
  msgstr ""
674
 
675
- #: controllers/Menu.php:265 controllers/Snippet.php:130
676
  msgid "Custom SEO"
677
  msgstr ""
678
 
679
  # @ squirrly-seo
680
- #: controllers/Menu.php:330
681
  #, fuzzy
682
  #| msgid "Squirrly settings"
683
  msgid "Squirrly Onboarding"
684
  msgstr "Squirrly Einstellungen"
685
 
686
- #: controllers/Menu.php:331
687
  msgid "Onboarding"
688
  msgstr ""
689
 
690
- #: controllers/Menu.php:360
691
  msgid "Import & Export SEO"
692
  msgstr ""
693
 
694
- #: controllers/Menu.php:361 view/SeoSettings/Backup.php:88
695
  msgid "Import SEO"
696
  msgstr ""
697
 
698
  # @ squirrly-seo
699
- #: controllers/Menu.php:371
700
  #, fuzzy
701
  #| msgid "Squirrly.co Login"
702
  msgid "Squirrly Account Info"
703
  msgstr "Squirrly.co Login"
704
 
705
- #: controllers/Menu.php:372
706
  msgid "Account Info"
707
  msgstr ""
708
 
709
- #: controllers/Menu.php:381
710
  msgid "Squirrly How To & Support"
711
  msgstr ""
712
 
713
  # @ squirrly-seo
714
- #: controllers/Menu.php:382
715
  #, fuzzy
716
  #| msgid "Support"
717
  msgid "Help & Support"
@@ -722,17 +722,17 @@ msgid "Saved! This is how the preview looks like"
722
  msgstr ""
723
 
724
  # @ squirrly-seo
725
- #: controllers/Post.php:293
726
  #, fuzzy
727
  #| msgid "Could not send the email..."
728
  msgid "Could not add the demo post."
729
  msgstr "Konnte E-Mail nicht senden ..."
730
 
731
- #: controllers/Post.php:355 controllers/Post.php:380
732
  msgid "Can't get the post URL"
733
  msgstr ""
734
 
735
- #: controllers/Post.php:385
736
  msgid "Invalid request"
737
  msgstr ""
738
 
@@ -947,7 +947,7 @@ msgid "Squirrly SEO Snippet"
947
  msgstr "Squirrly LIVE SEO-Assistent"
948
 
949
  # @ squirrly-seo
950
- #: controllers/Snippet.php:177
951
  #, fuzzy
952
  #| msgid "Could not send the email..."
953
  msgid "Could not save the data"
@@ -1302,7 +1302,7 @@ msgstr ""
1302
 
1303
  # @ squirrly-seo
1304
  #: models/Assistant.php:163 models/focuspages/Accuracy.php:45
1305
- #: models/focuspages/Traffic.php:100 models/focuspages/Traffic.php:105
1306
  #, fuzzy
1307
  #| msgid "Google %sAnalytics ID%s`:"
1308
  msgid "Connect Google Analytics"
@@ -1976,7 +1976,7 @@ msgid "Add meta description to this page of your site"
1976
  msgstr ""
1977
 
1978
  # @ squirrly-seo
1979
- #: models/Audits.php:156 models/bulkseo/Metas.php:92
1980
  #, fuzzy
1981
  #| msgid "Keyword:"
1982
  msgid "Meta Keyword"
@@ -2007,7 +2007,7 @@ msgstr ""
2007
  msgid "Make sure that the search for your keywords is on a rising trend"
2008
  msgstr ""
2009
 
2010
- #: models/Audits.php:166 models/bulkseo/Metas.php:97
2011
  msgid "Canonical Link"
2012
  msgstr ""
2013
 
@@ -4797,46 +4797,46 @@ msgid "You got better Score for your Audit"
4797
  msgstr ""
4798
 
4799
  # @ squirrly-seo
4800
- #: models/CheckSeo.php:1475
4801
  #, fuzzy
4802
  #| msgid "Could not send the email..."
4803
  msgid "Could not verify the frontend."
4804
  msgstr "Konnte E-Mail nicht senden ..."
4805
 
4806
- #: models/CheckSeo.php:1842
4807
  msgid "Just another WordPress site"
4808
  msgstr ""
4809
 
4810
- #: models/CheckSeo.php:1969
4811
  #, php-format
4812
  msgid "Focus Page was not found (error %s)"
4813
  msgstr ""
4814
 
4815
- #: models/CheckSeo.php:1970
4816
  msgid ""
4817
- "Task details: The way your WordPress site is currently hosted can affect the "
4818
- "way Squirrly SEO operates in order to retrieve and process data about your "
4819
- "Focus Pages. It’s important to do everything on your end to ensure that the "
4820
- "Focus Pages audits can be generated by our system."
4821
  msgstr ""
4822
 
4823
- #: models/CheckSeo.php:1971 models/CheckSeo.php:1990
4824
  msgid ""
4825
  "Use a different browser to check if your Focus Page is visible. Whitelist "
4826
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
4827
  "page so that you’ll receive a full audit."
4828
  msgstr ""
4829
 
4830
- #: models/CheckSeo.php:1972
4831
  msgid "An error is preventing Squirrly from processing your Focus Page audits."
4832
  msgstr ""
4833
 
4834
- #: models/CheckSeo.php:1979
4835
  #, php-format
4836
  msgid "Your Focus Page is redirected to another page (error %s)"
4837
  msgstr ""
4838
 
4839
- #: models/CheckSeo.php:1980
4840
  #, php-format
4841
  msgid ""
4842
  "Right now, your Focus Page sends users and search engines to a different URL "
@@ -4848,23 +4848,23 @@ msgid ""
4848
  "operates."
4849
  msgstr ""
4850
 
4851
- #: models/CheckSeo.php:1981
4852
  msgid ""
4853
  "Choose a page that does NOT redirect to a different page as your Focus Page. "
4854
  "Your Focus Page should have a single URL associated to it so that Squirrly "
4855
  "can serve you the best data."
4856
  msgstr ""
4857
 
4858
- #: models/CheckSeo.php:1982
4859
  msgid "Make sure that your Focus Page is NOT redirected to a different page."
4860
  msgstr ""
4861
 
4862
- #: models/CheckSeo.php:1988
4863
  #, php-format
4864
  msgid "Ensure your Focus Pages can be accessed (error %s)"
4865
  msgstr ""
4866
 
4867
- #: models/CheckSeo.php:1989
4868
  #, php-format
4869
  msgid ""
4870
  "A server-side error is preventing Squirrly from being able to access and "
@@ -4874,16 +4874,16 @@ msgid ""
4874
  "page, which is a critical issue."
4875
  msgstr ""
4876
 
4877
- #: models/CheckSeo.php:1991
4878
  msgid "A server-side error is preventing your Focus Pages from being accessed."
4879
  msgstr ""
4880
 
4881
- #: models/CheckSeo.php:1996
4882
  #, php-format
4883
  msgid "Make sure your Focus Pages can be audited (error %s)"
4884
  msgstr ""
4885
 
4886
- #: models/CheckSeo.php:1997
4887
  msgid ""
4888
  "Squirrly is unable to generate the audit for your Focus Page because it "
4889
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
@@ -4891,30 +4891,52 @@ msgid ""
4891
  "Squirrly’s IP address."
4892
  msgstr ""
4893
 
4894
- #: models/CheckSeo.php:1998
4895
  msgid ""
4896
  "Check to see if your WordPress site’s server is offline. Whitelist our "
4897
  "crawler IP address (176.9.112.210) to allow our server to verify your page "
4898
  "so that you’ll receive a full audit."
4899
  msgstr ""
4900
 
4901
- #: models/CheckSeo.php:1999
4902
  msgid ""
4903
  "An error prevents Squirrly from gathering critical data about your Focus "
4904
  "Page."
4905
  msgstr ""
4906
 
4907
- #: models/FocusPages.php:21 models/bulkseo/Metas.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4908
  #: models/focuspages/Clicks.php:64 models/focuspages/Content.php:88
4909
  #: models/focuspages/Ctr.php:64 models/focuspages/Image.php:80
4910
  #: models/focuspages/Impressions.php:64 models/focuspages/Keyword.php:103
4911
- #: models/focuspages/Keyword.php:106 models/focuspages/Snippet.php:149
4912
  #: models/focuspages/Strategy.php:102 view/Blocks/KRFound.php:15
4913
  #: view/Blocks/KRHistory.php:15 view/Ranking/Gscsync.php:31
4914
  #: view/Ranking/Rankings.php:210 view/Ranking/Rankings.php:348
4915
  #: view/Research/Briefcase.php:107 view/Research/Briefcase.php:247
4916
  #: view/Research/History.php:29 view/Research/HistoryDetails.php:7
4917
- #: view/Research/Research.php:192 view/Research/Suggested.php:28
4918
  msgid "Keyword"
4919
  msgstr ""
4920
 
@@ -5053,7 +5075,7 @@ msgstr "Recherchieren"
5053
  msgid " Research"
5054
  msgstr "Recherchieren"
5055
 
5056
- #: models/Menu.php:139
5057
  msgid "Live Assistant"
5058
  msgstr ""
5059
 
@@ -5077,8 +5099,8 @@ msgstr ""
5077
  msgid " SEO Settings"
5078
  msgstr ""
5079
 
5080
- #: models/Menu.php:163 models/Menu.php:250 view/Blocks/FocusPages.php:6
5081
- #: view/FocusPages/Pagelist.php:23
5082
  msgid "Focus Pages"
5083
  msgstr ""
5084
 
@@ -5086,7 +5108,7 @@ msgstr ""
5086
  msgid " Focus Pages"
5087
  msgstr ""
5088
 
5089
- #: models/Menu.php:171 view/Blocks/Audits.php:6
5090
  msgid "SEO Audit"
5091
  msgstr ""
5092
 
@@ -5226,7 +5248,6 @@ msgid "Ranking settings"
5226
  msgstr "Einstellungen speichern"
5227
 
5228
  #: models/Menu.php:312 view/BulkSeo/Bulkseo.php:29
5229
- #: view/SeoSettings/Bulkseo.php:25
5230
  msgid "Bulk SEO"
5231
  msgstr ""
5232
 
@@ -5540,12 +5561,11 @@ msgid ""
5540
  msgstr ""
5541
 
5542
  #: models/Post.php:262 models/focuspages/Snippet.php:89
5543
- #: models/focuspages/Snippet.php:205 models/focuspages/Snippet.php:227
5544
  #: view/Audits/Addpage.php:131 view/Blocks/Snippet.php:171
5545
  #: view/Blocks/Snippet.php:570 view/Blocks/Snippet.php:825
5546
  #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:132
5547
- #: view/SeoSettings/Automation.php:125 view/SeoSettings/Bulkseo.php:138
5548
- #: view/SeoSettings/Metas.php:157
5549
  msgid "Title"
5550
  msgstr ""
5551
 
@@ -5715,16 +5735,16 @@ msgstr ""
5715
  msgid "Current"
5716
  msgstr ""
5717
 
5718
- #: models/bulkseo/Metas.php:55
5719
  msgid "Title not empty"
5720
  msgstr ""
5721
 
5722
- #: models/bulkseo/Metas.php:56 view/Blocks/Snippet.php:187
5723
  #: view/Blocks/Snippet.php:586 view/Blocks/Snippet.php:841
5724
  msgid "Current Title"
5725
  msgstr ""
5726
 
5727
- #: models/bulkseo/Metas.php:58
5728
  #, php-format
5729
  msgid ""
5730
  "The title for this URL must not be empty. %s Write a title for this page. "
@@ -5733,48 +5753,48 @@ msgid ""
5733
  "more clicks you can get when people find your page on search engines."
5734
  msgstr ""
5735
 
5736
- #: models/bulkseo/Metas.php:61
5737
  #, php-format
5738
  msgid "Title up to %s chars"
5739
  msgstr ""
5740
 
5741
- #: models/bulkseo/Metas.php:62
5742
  msgid "Current Title Length"
5743
  msgstr ""
5744
 
5745
- #: models/bulkseo/Metas.php:63 models/bulkseo/Metas.php:81
5746
- #: models/bulkseo/Opengraph.php:72 models/bulkseo/Opengraph.php:82
5747
- #: models/bulkseo/Twittercard.php:69 models/bulkseo/Twittercard.php:79
5748
  msgid "chars"
5749
  msgstr ""
5750
 
5751
- #: models/bulkseo/Metas.php:64 models/bulkseo/Opengraph.php:73
5752
- #: models/bulkseo/Twittercard.php:70
5753
  #, php-format
5754
  msgid ""
5755
  "Title has to be longer than %s chars and up to %s chars. %s You can change "
5756
  "the title max length from %sSEO Settings > Automation%s."
5757
  msgstr ""
5758
 
5759
- #: models/bulkseo/Metas.php:67 models/focuspages/Snippet.php:100
5760
  msgid "Keyword in title"
5761
  msgstr ""
5762
 
5763
  # @ squirrly-seo
5764
- #: models/bulkseo/Metas.php:68 models/bulkseo/Metas.php:86
5765
  #, fuzzy
5766
  #| msgid "Squirrly Keyword Research"
5767
  msgid "Squirrly Keyword"
5768
  msgstr "Squirrly Erweiterte Suche!"
5769
 
5770
  # @ squirrly-seo
5771
- #: models/bulkseo/Metas.php:69 models/bulkseo/Metas.php:87
5772
  #, fuzzy
5773
  #| msgid "Keywords:"
5774
  msgid "no keywords"
5775
  msgstr "Schlüsselwörter:"
5776
 
5777
- #: models/bulkseo/Metas.php:70 models/focuspages/Snippet.php:102
5778
  #, php-format
5779
  msgid ""
5780
  "Your keyword must be present in the title of the page. %s It's a very "
@@ -5787,18 +5807,18 @@ msgid ""
5787
  msgstr ""
5788
 
5789
  # @ squirrly-seo
5790
- #: models/bulkseo/Metas.php:73
5791
  #, fuzzy
5792
  #| msgid "Description:"
5793
  msgid "Description not empty"
5794
  msgstr "Beschreibung:"
5795
 
5796
- #: models/bulkseo/Metas.php:74 view/Blocks/Snippet.php:239
5797
  #: view/Blocks/Snippet.php:630 view/Blocks/Snippet.php:885
5798
  msgid "Current Description"
5799
  msgstr ""
5800
 
5801
- #: models/bulkseo/Metas.php:76
5802
  #, php-format
5803
  msgid ""
5804
  "Meta descriptions are important for SEO on multiple search engines. %s You "
@@ -5807,28 +5827,28 @@ msgid ""
5807
  "on search engines."
5808
  msgstr ""
5809
 
5810
- #: models/bulkseo/Metas.php:79
5811
  #, php-format
5812
  msgid "Description up to %s chars"
5813
  msgstr ""
5814
 
5815
- #: models/bulkseo/Metas.php:80
5816
  msgid "Current Description Length"
5817
  msgstr ""
5818
 
5819
- #: models/bulkseo/Metas.php:82 models/bulkseo/Opengraph.php:83
5820
- #: models/bulkseo/Twittercard.php:80
5821
  #, php-format
5822
  msgid ""
5823
  "Description has to be longer than %s chars and up to %s chars. %s You can "
5824
  "change the description max length from %sSEO Settings > Automation%s."
5825
  msgstr ""
5826
 
5827
- #: models/bulkseo/Metas.php:85 models/focuspages/Snippet.php:105
5828
  msgid "Keyword in description"
5829
  msgstr ""
5830
 
5831
- #: models/bulkseo/Metas.php:88
5832
  #, php-format
5833
  msgid ""
5834
  "Same as with the title task. %s If a user reads the description of your page "
@@ -5840,28 +5860,28 @@ msgid ""
5840
  "lot about this, because that's what people want to find on the search engine."
5841
  msgstr ""
5842
 
5843
- #: models/bulkseo/Metas.php:91
5844
  msgid "Meta Keywords (2-4 Words)"
5845
  msgstr ""
5846
 
5847
  # @ squirrly-seo
5848
- #: models/bulkseo/Metas.php:93
5849
  #, fuzzy
5850
  #| msgid "Enter a keyword"
5851
  msgid "no meta keywords"
5852
  msgstr "Ein Schlüsselwort eingeben"
5853
 
5854
- #: models/bulkseo/Metas.php:94
5855
  msgid ""
5856
  "Even if Meta keywords are not mandatory for Google, it's important for other "
5857
  "search engines to find this meta and to index your post for these keywords."
5858
  msgstr ""
5859
 
5860
- #: models/bulkseo/Metas.php:98
5861
  msgid "Current Link"
5862
  msgstr ""
5863
 
5864
- #: models/bulkseo/Metas.php:100
5865
  #, php-format
5866
  msgid ""
5867
  "You don't have to set any canonical link if your post is not copied from "
@@ -5871,24 +5891,26 @@ msgid ""
5871
  "gets indexed and ranked."
5872
  msgstr ""
5873
 
5874
- #: models/bulkseo/Metas.php:109
5875
  msgid "Some Squirrly Metas are deactivated."
5876
  msgstr ""
5877
 
5878
- #: models/bulkseo/Metas.php:114
5879
- msgid "Some Squirrly Metas are not set correctly."
 
 
5880
  msgstr ""
5881
 
5882
- #: models/bulkseo/Metas.php:119
5883
  msgid "Some Squirrly Metas are generated automatically."
5884
  msgstr ""
5885
 
5886
- #: models/bulkseo/Metas.php:122
5887
  msgid "All Squirrly Metas are customized and set correctly."
5888
  msgstr ""
5889
 
5890
- #: models/bulkseo/Metas.php:133 models/bulkseo/Opengraph.php:125
5891
- #: models/bulkseo/Twittercard.php:122 models/bulkseo/Visibility.php:69
5892
  #: models/focuspages/Accuracy.php:34 models/focuspages/Audit.php:144
5893
  #: models/focuspages/Authority.php:33 models/focuspages/Backlinks.php:46
5894
  #: models/focuspages/Clicks.php:56 models/focuspages/Content.php:75
@@ -5897,93 +5919,93 @@ msgstr ""
5897
  #: models/focuspages/Innerlinks.php:64 models/focuspages/Keyword.php:79
5898
  #: models/focuspages/Length.php:55 models/focuspages/Nofollow.php:65
5899
  #: models/focuspages/Onpage.php:78 models/focuspages/Ranking.php:35
5900
- #: models/focuspages/Snippet.php:143 models/focuspages/Social.php:56
5901
  #: models/focuspages/Strategy.php:96 models/focuspages/Traffic.php:94
5902
  msgid "Current URL"
5903
  msgstr ""
5904
 
5905
  # @ squirrly-seo
5906
- #: models/bulkseo/Metas.php:139
5907
  #, fuzzy
5908
  #| msgid "Keyword:"
5909
  msgid "No Meta Keyword Found"
5910
  msgstr "Schlüsselwort:"
5911
 
5912
- #: models/bulkseo/Metas.php:155 models/bulkseo/Metas.php:191
5913
- #: models/bulkseo/Metas.php:224 models/bulkseo/Metas.php:268
5914
- #: models/bulkseo/Metas.php:304 models/bulkseo/Metas.php:337
5915
- #: models/bulkseo/Metas.php:385 models/bulkseo/Metas.php:424
5916
- #: models/bulkseo/Opengraph.php:139 models/bulkseo/Opengraph.php:175
5917
- #: models/bulkseo/Opengraph.php:207 models/bulkseo/Opengraph.php:243
5918
- #: models/bulkseo/Opengraph.php:279 models/bulkseo/Twittercard.php:136
5919
- #: models/bulkseo/Twittercard.php:172 models/bulkseo/Twittercard.php:204
5920
- #: models/bulkseo/Twittercard.php:240 models/bulkseo/Twittercard.php:276
5921
  #: models/bulkseo/Visibility.php:83 models/bulkseo/Visibility.php:122
5922
  #: models/bulkseo/Visibility.php:155
5923
  msgid "Squirrly Snippet is deactivated from this post."
5924
  msgstr ""
5925
 
5926
- #: models/bulkseo/Metas.php:159 models/bulkseo/Metas.php:195
5927
- #: models/bulkseo/Metas.php:228 models/bulkseo/Metas.php:272
5928
- #: models/bulkseo/Metas.php:308 models/bulkseo/Metas.php:341
5929
- #: models/bulkseo/Metas.php:389 models/bulkseo/Metas.php:428
5930
  #, php-format
5931
  msgid ""
5932
  "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
5933
  "%s."
5934
  msgstr ""
5935
 
5936
- #: models/bulkseo/Metas.php:163 models/bulkseo/Metas.php:199
5937
- #: models/bulkseo/Metas.php:232
5938
  #, php-format
5939
  msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
5940
  msgstr ""
5941
 
5942
- #: models/bulkseo/Metas.php:167 models/bulkseo/Metas.php:203
5943
- #: models/bulkseo/Metas.php:236 models/bulkseo/Metas.php:280
5944
- #: models/bulkseo/Metas.php:316 models/bulkseo/Metas.php:349
5945
- #: models/bulkseo/Metas.php:393 models/bulkseo/Metas.php:436
5946
  #, php-format
5947
  msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
5948
  msgstr ""
5949
 
5950
  # @ squirrly-seo
5951
- #: models/bulkseo/Metas.php:176 models/bulkseo/Metas.php:212
5952
- #: models/bulkseo/Opengraph.php:160 models/bulkseo/Opengraph.php:196
5953
- #: models/bulkseo/Twittercard.php:157 models/bulkseo/Twittercard.php:193
5954
  #, fuzzy
5955
  #| msgid "<< Leave it automatically"
5956
  msgid "Title is generated automatically."
5957
  msgstr "<< Lass es automatisch"
5958
 
5959
- #: models/bulkseo/Metas.php:240 models/bulkseo/Metas.php:353
5960
- #: models/bulkseo/Metas.php:397
5961
  #, php-format
5962
  msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
5963
  msgstr ""
5964
 
5965
- #: models/bulkseo/Metas.php:276 models/bulkseo/Metas.php:312
5966
- #: models/bulkseo/Metas.php:345
5967
  #, php-format
5968
  msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
5969
  msgstr ""
5970
 
5971
- #: models/bulkseo/Metas.php:289 models/bulkseo/Metas.php:326
5972
- #: models/bulkseo/Opengraph.php:228 models/bulkseo/Opengraph.php:264
5973
- #: models/bulkseo/Twittercard.php:225 models/bulkseo/Twittercard.php:261
5974
  msgid "Description is generated automatically."
5975
  msgstr ""
5976
 
5977
- #: models/bulkseo/Metas.php:432
5978
  #, php-format
5979
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
5980
  msgstr ""
5981
 
5982
- #: models/bulkseo/Opengraph.php:66
5983
  msgid "OG title not empty"
5984
  msgstr ""
5985
 
5986
- #: models/bulkseo/Opengraph.php:68
5987
  #, php-format
5988
  msgid ""
5989
  "You need to have an Open Graph title for this post. %s It will help you "
@@ -5991,16 +6013,16 @@ msgid ""
5991
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5992
  msgstr ""
5993
 
5994
- #: models/bulkseo/Opengraph.php:71
5995
  #, php-format
5996
  msgid "OG title up to %s chars"
5997
  msgstr ""
5998
 
5999
- #: models/bulkseo/Opengraph.php:76
6000
  msgid "OG description not empty"
6001
  msgstr ""
6002
 
6003
- #: models/bulkseo/Opengraph.php:78
6004
  #, php-format
6005
  msgid ""
6006
  "You need to have an Open Graph description for this post. %s It will help "
@@ -6008,23 +6030,23 @@ msgid ""
6008
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
6009
  msgstr ""
6010
 
6011
- #: models/bulkseo/Opengraph.php:81
6012
  #, php-format
6013
  msgid "OG description up to %s chars"
6014
  msgstr ""
6015
 
6016
  # @ squirrly-seo
6017
- #: models/bulkseo/Opengraph.php:86 view/SeoSettings/Metas.php:184
6018
  #, fuzzy
6019
  #| msgid "Images"
6020
  msgid "OG Image"
6021
  msgstr "Bilder"
6022
 
6023
- #: models/bulkseo/Opengraph.php:87 models/bulkseo/Twittercard.php:84
6024
  msgid "(featured image)"
6025
  msgstr ""
6026
 
6027
- #: models/bulkseo/Opengraph.php:88
6028
  #, php-format
6029
  msgid ""
6030
  "Set a good looking image for your URL. It needs to look good in Facebook and "
@@ -6032,55 +6054,57 @@ msgid ""
6032
  "attract more clicks to your site."
6033
  msgstr ""
6034
 
6035
- #: models/bulkseo/Opengraph.php:102
6036
  msgid "Open Graph is deactivated."
6037
  msgstr ""
6038
 
6039
- #: models/bulkseo/Opengraph.php:107
6040
- msgid "Open Graph is not set correctly."
 
 
6041
  msgstr ""
6042
 
6043
  # @ squirrly-seo
6044
- #: models/bulkseo/Opengraph.php:112
6045
  #, fuzzy
6046
  #| msgid "<< Leave it automatically"
6047
  msgid "Open Graph is generated automatically."
6048
  msgstr "<< Lass es automatisch"
6049
 
6050
- #: models/bulkseo/Opengraph.php:115
6051
  msgid "Open Graph is customized and set correctly."
6052
  msgstr ""
6053
 
6054
- #: models/bulkseo/Opengraph.php:143 models/bulkseo/Opengraph.php:179
6055
- #: models/bulkseo/Opengraph.php:211 models/bulkseo/Opengraph.php:247
6056
- #: models/bulkseo/Opengraph.php:283
6057
  #, php-format
6058
  msgid ""
6059
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
6060
  "%s."
6061
  msgstr ""
6062
 
6063
- #: models/bulkseo/Opengraph.php:147 models/bulkseo/Opengraph.php:183
6064
- #: models/bulkseo/Opengraph.php:215 models/bulkseo/Opengraph.php:251
6065
- #: models/bulkseo/Opengraph.php:287
6066
  #, php-format
6067
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
6068
  msgstr ""
6069
 
6070
- #: models/bulkseo/Opengraph.php:151 models/bulkseo/Opengraph.php:187
6071
- #: models/bulkseo/Opengraph.php:219 models/bulkseo/Opengraph.php:255
6072
- #: models/bulkseo/Opengraph.php:291 models/bulkseo/Twittercard.php:148
6073
- #: models/bulkseo/Twittercard.php:184 models/bulkseo/Twittercard.php:216
6074
- #: models/bulkseo/Twittercard.php:252 models/bulkseo/Twittercard.php:288
6075
  #, php-format
6076
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
6077
  msgstr ""
6078
 
6079
- #: models/bulkseo/Twittercard.php:63
6080
  msgid "TC title not empty"
6081
  msgstr ""
6082
 
6083
- #: models/bulkseo/Twittercard.php:65
6084
  #, php-format
6085
  msgid ""
6086
  "You need to have a title for the Twitter Card of this post. %s It will help "
@@ -6088,19 +6112,19 @@ msgid ""
6088
  "also important for SEO purposes."
6089
  msgstr ""
6090
 
6091
- #: models/bulkseo/Twittercard.php:68
6092
  #, php-format
6093
  msgid "TC title up to %s chars"
6094
  msgstr ""
6095
 
6096
  # @ squirrly-seo
6097
- #: models/bulkseo/Twittercard.php:73
6098
  #, fuzzy
6099
  #| msgid "Description:"
6100
  msgid "TC Description not empty"
6101
  msgstr "Beschreibung:"
6102
 
6103
- #: models/bulkseo/Twittercard.php:75
6104
  #, php-format
6105
  msgid ""
6106
  "You need to have a Twitter Card description for this post. %s It will help "
@@ -6109,19 +6133,19 @@ msgid ""
6109
  "to your site. %s It's also important for SEO purposes."
6110
  msgstr ""
6111
 
6112
- #: models/bulkseo/Twittercard.php:78
6113
  #, php-format
6114
  msgid "TC description up to %s chars"
6115
  msgstr ""
6116
 
6117
  # @ squirrly-seo
6118
- #: models/bulkseo/Twittercard.php:83
6119
  #, fuzzy
6120
  #| msgid "Images"
6121
  msgid "TC Image"
6122
  msgstr "Bilder"
6123
 
6124
- #: models/bulkseo/Twittercard.php:85
6125
  #, php-format
6126
  msgid ""
6127
  "Set a good looking image for your URL. It needs to look good in Twitter "
@@ -6129,34 +6153,36 @@ msgid ""
6129
  "clicks to your site."
6130
  msgstr ""
6131
 
6132
- #: models/bulkseo/Twittercard.php:99
6133
  msgid "Twitter Card is deactivated."
6134
  msgstr ""
6135
 
6136
- #: models/bulkseo/Twittercard.php:104
6137
- msgid "Twitter Card is not set correctly."
 
 
6138
  msgstr ""
6139
 
6140
- #: models/bulkseo/Twittercard.php:109
6141
  msgid "Twitter Card is generated automatically."
6142
  msgstr ""
6143
 
6144
- #: models/bulkseo/Twittercard.php:112
6145
  msgid "Twitter Card is customized and set correctly."
6146
  msgstr ""
6147
 
6148
- #: models/bulkseo/Twittercard.php:140 models/bulkseo/Twittercard.php:176
6149
- #: models/bulkseo/Twittercard.php:208 models/bulkseo/Twittercard.php:244
6150
- #: models/bulkseo/Twittercard.php:280
6151
  #, php-format
6152
  msgid ""
6153
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
6154
  "Automation%s."
6155
  msgstr ""
6156
 
6157
- #: models/bulkseo/Twittercard.php:144 models/bulkseo/Twittercard.php:180
6158
- #: models/bulkseo/Twittercard.php:212 models/bulkseo/Twittercard.php:248
6159
- #: models/bulkseo/Twittercard.php:284
6160
  #, php-format
6161
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
6162
  msgstr ""
@@ -6208,7 +6234,9 @@ msgid "Some visibility options are inactive."
6208
  msgstr ""
6209
 
6210
  #: models/bulkseo/Visibility.php:55
6211
- msgid "Visibility is not set correctly."
 
 
6212
  msgstr ""
6213
 
6214
  #: models/bulkseo/Visibility.php:59
@@ -6286,7 +6314,7 @@ msgstr ""
6286
 
6287
  #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
6288
  #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
6289
- #: models/focuspages/Indexability.php:95
6290
  msgid "Connect Google Search"
6291
  msgstr ""
6292
 
@@ -6448,6 +6476,18 @@ msgstr ""
6448
  msgid "At Least %s Majestic SEO Links"
6449
  msgstr ""
6450
 
 
 
 
 
 
 
 
 
 
 
 
 
6451
  # @ squirrly-seo
6452
  #: models/focuspages/Clicks.php:42
6453
  #, fuzzy
@@ -6468,8 +6508,8 @@ msgstr "Recherchieren"
6468
  #: models/focuspages/Clicks.php:75 models/focuspages/Content.php:93
6469
  #: models/focuspages/Ctr.php:75 models/focuspages/Image.php:88
6470
  #: models/focuspages/Impressions.php:75 models/focuspages/Keyword.php:114
6471
- #: models/focuspages/Keyword.php:176 models/focuspages/Keyword.php:194
6472
- #: models/focuspages/Keyword.php:217 models/focuspages/Snippet.php:151
6473
  #: models/focuspages/Strategy.php:112
6474
  msgid "No Keyword Found"
6475
  msgstr ""
@@ -6483,22 +6523,21 @@ msgstr ""
6483
  msgid "Optimize for a keyword"
6484
  msgstr "Schlüsselwort optimieren"
6485
 
 
 
 
 
 
 
 
 
6486
  # @ squirrly-seo
6487
- #: models/focuspages/Clicks.php:96 models/focuspages/Ctr.php:96
6488
- #: models/focuspages/Impressions.php:96
6489
  #, fuzzy
6490
  #| msgid "Google %sAnalytics ID%s`:"
6491
  msgid "Connect to Google Search Console"
6492
  msgstr "Google %sAnalytics ID%s`:"
6493
 
6494
- #: models/focuspages/Clicks.php:100 models/focuspages/Content.php:114
6495
- #: models/focuspages/Ctr.php:100 models/focuspages/Impressions.php:100
6496
- #: models/focuspages/Keyword.php:149 models/focuspages/Strategy.php:132
6497
- #, fuzzy
6498
- #| msgid "Optimize for Keyword"
6499
- msgid "Optimize the page for a keyword"
6500
- msgstr "Schlüsselwort optimieren"
6501
-
6502
  #: models/focuspages/Content.php:46
6503
  #, fuzzy, php-format
6504
  #| msgid "Optimize for Keyword"
@@ -6596,16 +6635,16 @@ msgid ""
6596
  "you used it more than once."
6597
  msgstr ""
6598
 
6599
- #: models/focuspages/Image.php:85 models/focuspages/Snippet.php:154
6600
  msgid "Edit your snippet"
6601
  msgstr ""
6602
 
6603
- #: models/focuspages/Image.php:114
6604
  msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
6605
  msgstr ""
6606
 
6607
  # @ squirrly-seo
6608
- #: models/focuspages/Image.php:115
6609
  #, fuzzy
6610
  #| msgid "No results found!"
6611
  msgid "No image found"
@@ -6615,6 +6654,13 @@ msgstr "Keine Ergebnisse gefunden!"
6615
  msgid "Search Results Impressions in the last 3 months"
6616
  msgstr ""
6617
 
 
 
 
 
 
 
 
6618
  #: models/focuspages/Indexability.php:52
6619
  msgid "Yes, do index"
6620
  msgstr ""
@@ -6830,11 +6876,11 @@ msgstr "Ein Schlüsselwort eingeben"
6830
  #: models/focuspages/Keyword.php:152
6831
  msgid ""
6832
  "Congratulations for ranking with this keyword, but it will require special "
6833
- "attention from you to keep it within TOP 20 positions"
6834
  msgstr ""
6835
 
6836
- #: models/focuspages/Keyword.php:176 models/focuspages/Keyword.php:194
6837
- #: models/focuspages/Keyword.php:217
6838
  msgid "Please add a keyword first."
6839
  msgstr ""
6840
 
@@ -6888,12 +6934,18 @@ msgid "Edit Page"
6888
  msgstr ""
6889
 
6890
  # @ squirrly-seo
6891
- #: models/focuspages/Length.php:84 models/focuspages/Length.php:114
6892
- #: models/focuspages/Traffic.php:120 models/focuspages/Traffic.php:137
6893
- #: models/focuspages/Traffic.php:153 models/focuspages/Traffic.php:169
6894
  #, fuzzy
6895
  #| msgid "Google %sAnalytics ID%s`:"
6896
- msgid "Connect Google Analytics first"
 
 
 
 
 
 
 
 
6897
  msgstr "Google %sAnalytics ID%s`:"
6898
 
6899
  #: models/focuspages/Nofollow.php:50
@@ -7009,8 +7061,8 @@ msgid ""
7009
  "that product."
7010
  msgstr ""
7011
 
7012
- #: models/focuspages/Snippet.php:95 models/focuspages/Snippet.php:206
7013
- #: models/focuspages/Snippet.php:228 view/Blocks/Snippet.php:613
7014
  #: view/Blocks/Snippet.php:868 view/SeoSettings/Automation.php:134
7015
  #: view/SeoSettings/Metas.php:166
7016
  msgid "Description"
@@ -7030,7 +7082,17 @@ msgid ""
7030
  "boost CTR (click-through rates)."
7031
  msgstr ""
7032
 
7033
- #: models/focuspages/Snippet.php:106
 
 
 
 
 
 
 
 
 
 
7034
  #, php-format
7035
  msgid ""
7036
  "Same as with the title task. %s If a user reads the description of your page "
@@ -7042,11 +7104,11 @@ msgid ""
7042
  "lot about this, because that's what people want to find on the search engine."
7043
  msgstr ""
7044
 
7045
- #: models/focuspages/Snippet.php:109
7046
  msgid "Open Graph - full definition"
7047
  msgstr ""
7048
 
7049
- #: models/focuspages/Snippet.php:111
7050
  #, php-format
7051
  msgid ""
7052
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -7058,11 +7120,11 @@ msgid ""
7058
  "relevant for your search engine position placements."
7059
  msgstr ""
7060
 
7061
- #: models/focuspages/Snippet.php:114
7062
  msgid "Twitter Cards - full definition"
7063
  msgstr ""
7064
 
7065
- #: models/focuspages/Snippet.php:116
7066
  #, php-format
7067
  msgid ""
7068
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -7072,11 +7134,11 @@ msgid ""
7072
  "that you won't miss a beat."
7073
  msgstr ""
7074
 
7075
- #: models/focuspages/Snippet.php:119
7076
  msgid "JSON-LD definition"
7077
  msgstr ""
7078
 
7079
- #: models/focuspages/Snippet.php:120
7080
  #, php-format
7081
  msgid ""
7082
  "To turn this task to green, you can easily use the JSON-LD section inside "
@@ -7087,11 +7149,11 @@ msgid ""
7087
  "%shttps://search.google.com/structured-data/testing-tool%s"
7088
  msgstr ""
7089
 
7090
- #: models/focuspages/Snippet.php:123
7091
  msgid "Customized"
7092
  msgstr ""
7093
 
7094
- #: models/focuspages/Snippet.php:124
7095
  #, php-format
7096
  msgid ""
7097
  "The Snippets of your most important pages should be customized. %s Use the "
@@ -7106,7 +7168,7 @@ msgid ""
7106
  msgstr ""
7107
 
7108
  # @ squirrly-seo
7109
- #: models/focuspages/Snippet.php:207 models/focuspages/Snippet.php:229
7110
  #, fuzzy
7111
  #| msgid "Images"
7112
  msgid "Image"
@@ -7207,7 +7269,7 @@ msgstr ""
7207
  msgid "Manage Strategy"
7208
  msgstr ""
7209
 
7210
- #: models/focuspages/Strategy.php:161 models/focuspages/Strategy.php:168
7211
  msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
7212
  msgstr ""
7213
 
@@ -7294,6 +7356,13 @@ msgid ""
7294
  "happen more often than you would think."
7295
  msgstr ""
7296
 
 
 
 
 
 
 
 
7297
  #: models/focuspages/Traffic.php:122
7298
  msgid "Not enough traffic to show relevant stats"
7299
  msgstr ""
@@ -7334,125 +7403,140 @@ msgstr "Keine Ergebnisse gefunden!"
7334
  msgid "Add New"
7335
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
7336
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7337
  # @ squirrly-seo
7338
- #: view/Assistant/Settings.php:19
7339
  #, fuzzy
7340
  #| msgid "Save settings"
7341
  msgid "Live Assistant Settings"
7342
  msgstr "Einstellungen speichern"
7343
 
7344
  # @ squirrly-seo
7345
- #: view/Assistant/Settings.php:34
7346
  #, fuzzy
7347
  #| msgid "Squirrly Options"
7348
  msgid "Squirrly Tooltips"
7349
  msgstr "Squirrly Optionen"
7350
 
7351
- #: view/Assistant/Settings.php:35
7352
  #, php-format
7353
  msgid ""
7354
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. \"Enter a keyword"
7355
  "\")."
7356
  msgstr ""
7357
 
7358
- #: view/Assistant/Settings.php:45
7359
  msgid "Download Remote Images"
7360
  msgstr ""
7361
 
7362
- #: view/Assistant/Settings.php:46
7363
  #, php-format
7364
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
7365
  msgstr ""
7366
 
7367
- #: view/Assistant/Settings.php:47
7368
  msgid ""
7369
  "Prevent from losing the images you use in your articles in case the remote "
7370
  "images are deleted."
7371
  msgstr ""
7372
 
7373
  # @ squirrly-seo
7374
- #: view/Assistant/Settings.php:58
7375
  #, fuzzy
7376
  #| msgid "Show only Copyright Free images"
7377
  msgid "Copyright Free Images"
7378
  msgstr "Nur urheberrechtfreie Bilder zeigen"
7379
 
7380
- #: view/Assistant/Settings.php:59
7381
  #, php-format
7382
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7383
  msgstr ""
7384
 
7385
  # @ squirrly-seo
7386
- #: view/Assistant/Settings.php:69
7387
  #, fuzzy
7388
  #| msgid "Save settings"
7389
  msgid "Live Assistant Type"
7390
  msgstr "Einstellungen speichern"
7391
 
7392
- #: view/Assistant/Settings.php:70
7393
  msgid "Select how you want Squirrly Live Assistant to load in editor."
7394
  msgstr ""
7395
 
7396
- #: view/Assistant/Settings.php:74
7397
  msgid "Auto"
7398
  msgstr ""
7399
 
7400
- #: view/Assistant/Settings.php:75
7401
  msgid "Integrated Box"
7402
  msgstr ""
7403
 
7404
- #: view/Assistant/Settings.php:76
7405
  msgid "Floating Box"
7406
  msgstr ""
7407
 
7408
- #: view/Assistant/Settings.php:89
7409
  msgid "Activate Live Assistant in Frontend"
7410
  msgstr ""
7411
 
7412
- #: view/Assistant/Settings.php:89
7413
  msgid "(BETA)"
7414
  msgstr ""
7415
 
7416
- #: view/Assistant/Settings.php:90
7417
  msgid ""
7418
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7419
  "with Builders."
7420
  msgstr ""
7421
 
7422
- #: view/Assistant/Settings.php:91
7423
  msgid "Currently supports the Elementor Builder plugin."
7424
  msgstr ""
7425
 
7426
- #: view/Assistant/Settings.php:98
7427
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
7428
  msgstr ""
7429
 
7430
- #: view/Assistant/Settings.php:100
7431
  msgid ""
7432
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
7433
  "post types."
7434
  msgstr ""
7435
 
7436
- #: view/Assistant/Settings.php:106
7437
  msgid "Exclusions"
7438
  msgstr ""
7439
 
7440
- #: view/Assistant/Settings.php:107
7441
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7442
  msgstr ""
7443
 
7444
- #: view/Assistant/Settings.php:108
7445
  msgid "Hold Control key to select multiple places"
7446
  msgstr ""
7447
 
7448
- #: view/Assistant/Settings.php:135 view/SeoSettings/Automation.php:474
7449
  #: view/SeoSettings/Automation.php:595 view/SeoSettings/Jsonld.php:243
7450
  #: view/SeoSettings/Metas.php:231 view/SeoSettings/Sitemap.php:305
7451
  #: view/SeoSettings/Social.php:372
7452
  msgid "Show Advanced Options"
7453
  msgstr ""
7454
 
7455
- #: view/Assistant/Settings.php:136 view/SeoSettings/Automation.php:475
7456
  #: view/SeoSettings/Automation.php:596 view/SeoSettings/Jsonld.php:244
7457
  #: view/SeoSettings/Metas.php:232 view/SeoSettings/Sitemap.php:306
7458
  #: view/SeoSettings/Social.php:373
@@ -7460,8 +7544,8 @@ msgid "Hide Advanced Options"
7460
  msgstr ""
7461
 
7462
  # @ squirrly-seo
7463
- #: view/Assistant/Settings.php:139 view/Audits/Settings.php:60
7464
- #: view/Ranking/Settings.php:173 view/SeoSettings/Advanced.php:95
7465
  #: view/SeoSettings/Automation.php:478 view/SeoSettings/Automation.php:599
7466
  #: view/SeoSettings/Backup.php:206 view/SeoSettings/Favicon.php:107
7467
  #: view/SeoSettings/Jsonld.php:247 view/SeoSettings/Metas.php:235
@@ -7473,22 +7557,6 @@ msgstr ""
7473
  msgid "Save Settings"
7474
  msgstr "Einstellungen speichern"
7475
 
7476
- #: view/Audits/Addpage.php:8 view/Audits/Audit.php:8 view/Audits/Audits.php:8
7477
- #: view/Audits/Compare.php:11 view/Audits/Settings.php:7
7478
- #: view/BulkSeo/Bulkseo.php:12 view/FocusPages/Addpage.php:8
7479
- #: view/FocusPages/Pagelist.php:8 view/FocusPages/Settings.php:7
7480
- #: view/Ranking/Rankings.php:17 view/Ranking/Settings.php:7
7481
- #: view/SeoSettings/Advanced.php:7 view/SeoSettings/Automation.php:7
7482
- #: view/SeoSettings/Backup.php:7 view/SeoSettings/Bulkseo.php:12
7483
- #: view/SeoSettings/Favicon.php:7 view/SeoSettings/Jsonld.php:7
7484
- #: view/SeoSettings/Metas.php:7 view/SeoSettings/Robots.php:7
7485
- #: view/SeoSettings/Sitemap.php:7 view/SeoSettings/Social.php:7
7486
- #: view/SeoSettings/Tracking.php:7 view/SeoSettings/Webmaster.php:7
7487
- msgid ""
7488
- "You do not have permission to access this page. You need Squirrly SEO Admin "
7489
- "role"
7490
- msgstr ""
7491
-
7492
  #: view/Audits/Addpage.php:22
7493
  msgid "Add a page in Audit"
7494
  msgstr ""
@@ -7501,13 +7569,12 @@ msgid ""
7501
  msgstr ""
7502
 
7503
  #: view/Audits/Addpage.php:92 view/BulkSeo/Bulkseo.php:101
7504
- #: view/FocusPages/Addpage.php:92 view/SeoSettings/Bulkseo.php:96
7505
  msgid "Any status"
7506
  msgstr ""
7507
 
7508
  #: view/Audits/Addpage.php:112 view/BulkSeo/Bulkseo.php:121
7509
- #: view/FocusPages/Addpage.php:112 view/Research/Research.php:200
7510
- #: view/SeoSettings/Bulkseo.php:116
7511
  msgid "Search"
7512
  msgstr ""
7513
 
@@ -7515,7 +7582,6 @@ msgstr ""
7515
  #: view/Audits/Compare.php:44 view/BulkSeo/Bulkseo.php:123
7516
  #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:6
7517
  #: view/Ranking/Rankings.php:58 view/Research/Briefcase.php:37
7518
- #: view/SeoSettings/Bulkseo.php:118
7519
  msgid "Show All"
7520
  msgstr ""
7521
 
@@ -7535,12 +7601,12 @@ msgid "Already added"
7535
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
7536
 
7537
  #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
7538
- #: view/FocusPages/Addpage.php:196 view/SeoSettings/Bulkseo.php:192
7539
  msgid "Prev Page"
7540
  msgstr ""
7541
 
7542
  #: view/Audits/Addpage.php:194 view/BulkSeo/Bulkseo.php:199
7543
- #: view/FocusPages/Addpage.php:197 view/SeoSettings/Bulkseo.php:193
7544
  msgid "Next Page"
7545
  msgstr ""
7546
 
@@ -7581,31 +7647,34 @@ msgid "Last checked"
7581
  msgstr ""
7582
 
7583
  # @ squirrly-seo
7584
- #: view/Audits/AuditPageRow.php:46 view/FocusPages/FocusPageRow.php:92
7585
  #, fuzzy
7586
  #| msgid "Could not send the email..."
7587
  msgid "Could not create the audit for this URL"
7588
  msgstr "Konnte E-Mail nicht senden ..."
7589
 
7590
  # @ squirrly-seo
7591
- #: view/Audits/AuditPageRow.php:46 view/FocusPages/FocusPageRow.php:92
7592
  #, fuzzy
7593
  #| msgid "An error occured."
7594
  msgid "error code"
7595
  msgstr "Ein Fehler ist aufgetreten."
7596
 
7597
- #: view/Audits/AuditPageRow.php:48
7598
  #, php-format
7599
  msgid ""
7600
- "The current way your WordPress site is hosted can cause experience issues to "
7601
- "the way Squirrly SEO works. %s In order to serve you with the best data, and "
7602
- "make sure that the Page audits can be processed, you will need to talk to "
7603
- "your hosting provider and tell them to make the following settings. %s "
7604
- "Please add the IP address 176.9.112.210 in the white-list for remote access "
7605
- "and it should work."
7606
  msgstr ""
7607
 
7608
- #: view/Audits/AuditPageRow.php:69
 
 
 
 
7609
  msgid "Delete Page from Audit"
7610
  msgstr ""
7611
 
@@ -7760,7 +7829,7 @@ msgstr ""
7760
  msgid "Audits"
7761
  msgstr ""
7762
 
7763
- #: view/Audits/Audits.php:55
7764
  #, php-format
7765
  msgid ""
7766
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
@@ -7768,11 +7837,18 @@ msgid ""
7768
  "involved."
7769
  msgstr ""
7770
 
7771
- #: view/Audits/Audits.php:62
7772
  #, php-format
7773
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
7774
  msgstr ""
7775
 
 
 
 
 
 
 
 
7776
  # @ squirrly-seo
7777
  #: view/Audits/Settings.php:30
7778
  #, fuzzy
@@ -7791,53 +7867,33 @@ msgstr "Ihre E-Mail Adresse:"
7791
  msgid "Enter the email address on which you want to receive the weekly audits."
7792
  msgstr ""
7793
 
7794
- #: view/Blocks/Account.php:33
 
 
 
 
7795
  msgid "Your Plan: "
7796
  msgstr ""
7797
 
7798
  # @ squirrly-seo
7799
- #: view/Blocks/Account.php:34
7800
  #, fuzzy
7801
  #| msgid "Squirrly.co Login"
7802
  msgid "Check Account Info"
7803
  msgstr "Squirrly.co Login"
7804
 
7805
  # @ squirrly-seo
7806
- #: view/Blocks/Account.php:39
7807
  #, fuzzy
7808
  #| msgid "Email:"
7809
  msgid "Email: "
7810
  msgstr "Ihre E-Mail Adresse:"
7811
 
7812
- #: view/Blocks/Account.php:45
7813
  #, php-format
7814
  msgid "Due Date: %s"
7815
  msgstr ""
7816
 
7817
- #: view/Blocks/Assistant.php:13
7818
- msgid "Show Advanced SEO"
7819
- msgstr ""
7820
-
7821
- #: view/Blocks/Assistant.php:14
7822
- msgid ""
7823
- "Switch off to have the simplified version of the settings, intended for Non-"
7824
- "SEO Experts."
7825
- msgstr ""
7826
-
7827
- #: view/Blocks/Assistant.php:15
7828
- msgid ""
7829
- "It will offer the same level of SEO performance, but it will be less "
7830
- "customizable."
7831
- msgstr ""
7832
-
7833
- #: view/Blocks/Assistant.php:25
7834
- msgid "We Need Your Support"
7835
- msgstr ""
7836
-
7837
- #: view/Blocks/Assistant.php:34
7838
- msgid "Rate us if you like Squirrly SEO"
7839
- msgstr ""
7840
-
7841
  #: view/Blocks/Audits.php:7 view/Blocks/Audits.php:53
7842
  msgid "See Audits"
7843
  msgstr ""
@@ -7866,25 +7922,25 @@ msgstr ""
7866
  msgid "Go to Focus Pages"
7867
  msgstr ""
7868
 
7869
- #: view/Blocks/Connect.php:13 view/Blocks/Connect.php:27
7870
  msgid ""
7871
  "This option is used to track innerlinks and insights for your Focus Pages "
7872
  "and give detailed informations about them."
7873
  msgstr ""
7874
 
7875
- #: view/Blocks/Connect.php:15 view/Blocks/Connect.php:29
7876
  msgid "Let Squirrly API get data for Focus Pages"
7877
  msgstr ""
7878
 
7879
  # @ squirrly-seo
7880
- #: view/Blocks/Connect.php:16
7881
  #, fuzzy
7882
  #| msgid "Connecting ..."
7883
  msgid "Connect"
7884
  msgstr "Verbinden ..."
7885
 
7886
  # @ squirrly-seo
7887
- #: view/Blocks/Connect.php:30
7888
  #, fuzzy
7889
  #| msgid "Connecting ..."
7890
  msgid "disconnect"
@@ -7941,6 +7997,306 @@ msgstr ""
7941
  msgid "Checking the website ..."
7942
  msgstr ""
7943
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7944
  #: view/Blocks/FocusPages.php:7
7945
  msgid "See Focus Pages"
7946
  msgstr ""
@@ -7965,10 +8321,6 @@ msgstr ""
7965
  msgid "Then set a page as focus"
7966
  msgstr ""
7967
 
7968
- #: view/Blocks/Jorney.php:12 view/Blocks/Jorney.php:95
7969
- msgid "14 Days Journey Course"
7970
- msgstr ""
7971
-
7972
  #: view/Blocks/Jorney.php:17
7973
  #, php-format
7974
  msgid "Follow the %sdaily recipe%s from below."
@@ -8025,13 +8377,13 @@ msgstr ""
8025
 
8026
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
8027
  #: view/Ranking/Rankings.php:395 view/Research/Briefcase.php:256
8028
- #: view/Research/History.php:30 view/Research/Research.php:193
8029
  #: view/Research/Suggested.php:29
8030
  msgid "Country"
8031
  msgstr ""
8032
 
8033
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
8034
- #: view/Research/History.php:30 view/Research/Research.php:193
8035
  #: view/Research/Suggested.php:29
8036
  msgid "Co"
8037
  msgstr ""
@@ -8039,14 +8391,14 @@ msgstr ""
8039
  #: view/Blocks/KRFound.php:18 view/Blocks/KRFound.php:19
8040
  #: view/Blocks/KRFound.php:64 view/Research/Briefcase.php:261
8041
  #: view/Research/HistoryDetails.php:16 view/Research/HistoryDetails.php:18
8042
- #: view/Research/Research.php:195 view/Research/Research.php:196
8043
  #: view/Research/Suggested.php:31 view/Research/Suggested.php:32
8044
  #: view/Research/Suggested.php:81
8045
  msgid "Competition"
8046
  msgstr ""
8047
 
8048
  #: view/Blocks/KRFound.php:22 view/Blocks/KRFound.php:69
8049
- #: view/Research/HistoryDetails.php:12 view/Research/Research.php:199
8050
  #: view/Research/Suggested.php:35 view/Research/Suggested.php:86
8051
  msgid "SEO Search Volume"
8052
  msgstr ""
@@ -8058,13 +8410,13 @@ msgstr ""
8058
 
8059
  #: view/Blocks/KRFound.php:26 view/Blocks/KRFound.php:74
8060
  #: view/Research/Briefcase.php:277 view/Research/HistoryDetails.php:8
8061
- #: view/Research/Research.php:203 view/Research/Suggested.php:39
8062
  #: view/Research/Suggested.php:91
8063
  msgid "Recent discussions"
8064
  msgstr ""
8065
 
8066
  #: view/Blocks/KRFound.php:27 view/Research/HistoryDetails.php:10
8067
- #: view/Research/Research.php:204 view/Research/Suggested.php:40
8068
  #, fuzzy
8069
  #| msgid "Recent discussions:"
8070
  msgid "Discussion"
@@ -8072,7 +8424,7 @@ msgstr "Bisherige Diskussionen:"
8072
 
8073
  #: view/Blocks/KRFound.php:30 view/Blocks/KRFound.php:31
8074
  #: view/Blocks/KRFound.php:79 view/Research/Briefcase.php:283
8075
- #: view/Research/HistoryDetails.php:20 view/Research/Research.php:207
8076
  #: view/Research/Suggested.php:43
8077
  msgid "Trending"
8078
  msgstr ""
@@ -8105,11 +8457,6 @@ msgstr ""
8105
  msgid "Go to Briefcase"
8106
  msgstr ""
8107
 
8108
- #: view/Blocks/KRHistory.php:5 view/Onboarding/Step1.3.php:11
8109
- #: view/Research/Research.php:18
8110
- msgid "Keyword Research"
8111
- msgstr ""
8112
-
8113
  #: view/Blocks/KRHistory.php:6
8114
  msgid "See Research History"
8115
  msgstr ""
@@ -8687,53 +9034,53 @@ msgstr ""
8687
  msgid "%sPlease connect to SquirrlyCloud first%s"
8688
  msgstr "This email connects you to Squirrly.co"
8689
 
8690
- #: view/Blocks/Stats.php:22
8691
  msgid "Hello"
8692
  msgstr ""
8693
 
8694
- #: view/Blocks/Stats.php:28
8695
  #, php-format
8696
  msgid "%s SEO Protection"
8697
  msgstr ""
8698
 
8699
- #: view/Blocks/Stats.php:31
8700
  msgid "All protection layers are activated."
8701
  msgstr ""
8702
 
8703
- #: view/Blocks/Stats.php:33
8704
  #, php-format
8705
  msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
8706
  msgstr ""
8707
 
8708
- #: view/Blocks/Stats.php:37
8709
  msgid "How does this work?"
8710
  msgstr ""
8711
 
8712
- #: view/Blocks/Stats.php:45
8713
  msgid "Pages SEO'ed"
8714
  msgstr ""
8715
 
8716
- #: view/Blocks/Stats.php:51
8717
  msgid "Post Types Covered"
8718
  msgstr ""
8719
 
8720
- #: view/Blocks/Stats.php:56 view/Goals/CheckSeo.php:102
8721
  #, php-format
8722
  msgid "%s Aspects"
8723
  msgstr ""
8724
 
8725
  # @ squirrly-seo
8726
- #: view/Blocks/Stats.php:57 view/Goals/CheckSeo.php:103
8727
  #, fuzzy
8728
  #| msgid "Squirrly settings"
8729
  msgid "Handled by Squirrly Genius."
8730
  msgstr "Squirrly Einstellungen"
8731
 
8732
- #: view/Blocks/Stats.php:59
8733
  msgid "Can I see them?"
8734
  msgstr ""
8735
 
8736
- #: view/Blocks/Stats.php:63 view/Goals/Goals.php:43
8737
  msgid "Run SEO Test"
8738
  msgstr ""
8739
 
@@ -8849,20 +9196,20 @@ msgstr ""
8849
  msgid "Thank you! You can send us a happy face tomorrow too."
8850
  msgstr "Danke! Sie können uns auch morgen ein fröhliches Gesicht senden."
8851
 
8852
- #: view/Blocks/VersionBar.php:7
8853
  #, php-format
8854
  msgid ""
8855
  "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
8856
  "accurate and objective."
8857
  msgstr ""
8858
 
8859
- #: view/Blocks/VersionBar.php:10
8860
  #, php-format
8861
  msgid ""
8862
  "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
8863
  msgstr ""
8864
 
8865
- #: view/Blocks/VersionBar.php:16
8866
  #, php-format
8867
  msgid ""
8868
  "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
@@ -8871,14 +9218,14 @@ msgid ""
8871
  "your plan to %sBusiness Plan%s"
8872
  msgstr ""
8873
 
8874
- #: view/Blocks/VersionBar.php:23
8875
  #, php-format
8876
  msgid ""
8877
  "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
8878
  "hour."
8879
  msgstr ""
8880
 
8881
- #: view/Blocks/VersionBar.php:27
8882
  #, php-format
8883
  msgid ""
8884
  "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
@@ -8886,14 +9233,14 @@ msgid ""
8886
  "please upgrade your plan to %sPRO Plan%s"
8887
  msgstr ""
8888
 
8889
- #: view/Blocks/VersionBar.php:34
8890
  #, php-format
8891
  msgid ""
8892
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
8893
  "audit for each page every 5 mins."
8894
  msgstr ""
8895
 
8896
- #: view/Blocks/VersionBar.php:38
8897
  #, php-format
8898
  msgid ""
8899
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
@@ -8901,14 +9248,22 @@ msgid ""
8901
  "upgrade your plan to %sPRO Plan%s"
8902
  msgstr ""
8903
 
8904
- #: view/Blocks/VersionBar.php:46
 
 
 
 
 
 
 
 
8905
  #, php-format
8906
  msgid ""
8907
  "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
8908
  "tasks to get 100%% optimized posts and pages."
8909
  msgstr ""
8910
 
8911
- #: view/Blocks/VersionBar.php:50
8912
  #, php-format
8913
  msgid ""
8914
  "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
@@ -8916,7 +9271,7 @@ msgid ""
8916
  "Plan%s"
8917
  msgstr ""
8918
 
8919
- #: view/Blocks/VersionBar.php:58
8920
  #, php-format
8921
  msgid ""
8922
  "%sResearch %s:%s You have %s researches left for your account. The research "
@@ -8924,14 +9279,14 @@ msgid ""
8924
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
8925
  msgstr ""
8926
 
8927
- #: view/Blocks/VersionBar.php:62
8928
  #, php-format
8929
  msgid ""
8930
  "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
8931
  "Deep Keyword Research and get up to 50 results on each research."
8932
  msgstr ""
8933
 
8934
- #: view/Blocks/VersionBar.php:66
8935
  #, php-format
8936
  msgid ""
8937
  "%sResearch %s:%s You have %s researches left for your account. The research "
@@ -8939,64 +9294,64 @@ msgid ""
8939
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
8940
  msgstr ""
8941
 
8942
- #: view/Blocks/VersionBar.php:73
8943
  #, php-format
8944
  msgid ""
8945
  "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
8946
  "optimize your posts and pages."
8947
  msgstr ""
8948
 
8949
- #: view/Blocks/VersionBar.php:78
8950
  #, php-format
8951
  msgid ""
8952
  "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
8953
  "keywords to organize the keywords by your SEO strategy."
8954
  msgstr ""
8955
 
8956
- #: view/Blocks/VersionBar.php:84
8957
  #, php-format
8958
  msgid ""
8959
  "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
8960
  "find better matching keywords based on your research history."
8961
  msgstr ""
8962
 
8963
- #: view/Blocks/VersionBar.php:88
8964
  #, php-format
8965
  msgid ""
8966
  "This feature is only available for PRO and Business accounts. %sTo get "
8967
  "Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s"
8968
  msgstr ""
8969
 
8970
- #: view/Blocks/VersionBar.php:97
8971
  #, php-format
8972
  msgid ""
8973
  "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
8974
  "SEO for free."
8975
  msgstr ""
8976
 
8977
- #: view/Blocks/VersionBar.php:103
8978
  #, php-format
8979
  msgid ""
8980
  "%sOn-Page SEO Settings:%s This feature is included in all versions of "
8981
  "Squirrly SEO for free."
8982
  msgstr ""
8983
 
8984
- #: view/BulkSeo/Bulkseo.php:30 view/SeoSettings/Bulkseo.php:26
8985
  msgid ""
8986
  "Simplify the SEO process for all your posts types and optimize them in just "
8987
  "minutes. "
8988
  msgstr ""
8989
 
8990
- #: view/BulkSeo/Bulkseo.php:183 view/SeoSettings/Bulkseo.php:178
8991
  #, php-format
8992
  msgid "No data for this filter. %sShow All%s records for this post type."
8993
  msgstr ""
8994
 
8995
- #: view/BulkSeo/Bulkseo.php:185 view/SeoSettings/Bulkseo.php:180
8996
  msgid "No data found for this post type. Try other post types."
8997
  msgstr ""
8998
 
8999
- #: view/BulkSeo/BulkseoRow.php:26 view/SeoSettings/BulkseoRow.php:26
9000
  #, php-format
9001
  msgid "View &#8220;%s&#8221;"
9002
  msgstr ""
@@ -9047,10 +9402,6 @@ msgstr "Anmelden"
9047
  msgid "Check connection"
9048
  msgstr "Verbinden ..."
9049
 
9050
- #: view/Connect/GoogleSearchConsole.php:7
9051
- msgid "Google Search Console"
9052
- msgstr ""
9053
-
9054
  #: view/Connect/GoogleSearchConsole.php:12
9055
  msgid "You are connected to Google Search Console"
9056
  msgstr ""
@@ -9068,14 +9419,6 @@ msgid ""
9068
  "each Audit"
9069
  msgstr ""
9070
 
9071
- #: view/Dashboard.php:11
9072
- msgid "Connect to Squirrly Data Cloud"
9073
- msgstr ""
9074
-
9075
- #: view/Dashboard.php:22
9076
- msgid "Squirrly dashboard"
9077
- msgstr ""
9078
-
9079
  #: view/Errors/Maintenance.php:20
9080
  #, php-format
9081
  msgid ""
@@ -9127,30 +9470,19 @@ msgstr ""
9127
  msgid "Details"
9128
  msgstr ""
9129
 
9130
- #: view/FocusPages/FocusPageRow.php:94
9131
- #, php-format
9132
- msgid ""
9133
- "The current way your WordPress site is hosted can cause experience issues to "
9134
- "the way Squirrly SEO works. %s In order to serve you with the best data, and "
9135
- "make sure that the Focus Pages audits can be processed, you will need to "
9136
- "talk to your hosting provider and tell them to make the following settings. "
9137
- "%s Please add the IP address 176.9.112.210 in the white-list for remote "
9138
- "access and it should work."
9139
- msgstr ""
9140
-
9141
- #: view/FocusPages/FocusPageRow.php:99
9142
  msgid "Currently processing data. Please refresh in a few minutes."
9143
  msgstr ""
9144
 
9145
  # @ squirrly-seo
9146
- #: view/FocusPages/FocusPageRow.php:105 view/FocusPages/FocusPageRow.php:109
9147
- #: view/FocusPages/FocusPageRow.php:125 view/FocusPages/FocusPages.php:54
9148
  #, fuzzy
9149
  #| msgid "Change it >>"
9150
  msgid "Chance to Rank"
9151
  msgstr "Ändern >>"
9152
 
9153
- #: view/FocusPages/FocusPageRow.php:163
9154
  msgid "Delete Focus Page"
9155
  msgstr ""
9156
 
@@ -9250,7 +9582,7 @@ msgstr ""
9250
  msgid "Don't choose your Home Page, Contact Page or About Use page."
9251
  msgstr ""
9252
 
9253
- #: view/FocusPages/Pagelist.php:51
9254
  #, php-format
9255
  msgid ""
9256
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
@@ -9304,10 +9636,6 @@ msgstr ""
9304
  msgid "Congratulations!"
9305
  msgstr ""
9306
 
9307
- #: view/Goals/Goals.php:34
9308
- msgid "Daily SEO Goals"
9309
- msgstr ""
9310
-
9311
  #: view/Goals/Goals.php:36
9312
  #, php-format
9313
  msgid "%s goals for today"
@@ -9520,10 +9848,6 @@ msgstr ""
9520
  msgid "Get a Birds-Eye-View of your Site’s Overall SEO Optimization"
9521
  msgstr ""
9522
 
9523
- #: view/Onboarding/Step1.5.php:21
9524
- msgid "Google SERP Checker"
9525
- msgstr ""
9526
-
9527
  #: view/Onboarding/Step1.5.php:35
9528
  msgid ""
9529
  "Accurately Track Your Rankings with Squirrly’s User-Friendly Google SERP "
@@ -9755,6 +10079,36 @@ msgid ""
9755
  "our features %s by creating a free account"
9756
  msgstr ""
9757
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9758
  #: view/Ranking/Gscsync.php:15
9759
  msgid "Google Search Console Keywords Sync"
9760
  msgstr ""
@@ -9829,8 +10183,8 @@ msgstr ""
9829
 
9830
  #: view/Ranking/Rankings.php:35
9831
  msgid ""
9832
- "See the Google Search Console average possition, click and impressions for "
9833
- "organic keywords"
9834
  msgstr ""
9835
 
9836
  #: view/Ranking/Rankings.php:98
@@ -10658,7 +11012,7 @@ msgid "Welcome to Keyword Research History"
10658
  msgstr "Squirrly Erweiterte Suche!"
10659
 
10660
  # @ squirrly-seo
10661
- #: view/Research/HistoryDetails.php:22 view/Research/Research.php:208
10662
  #: view/Research/Suggested.php:44
10663
  #, fuzzy
10664
  #| msgid "Trend:"
@@ -10743,13 +11097,13 @@ msgid ""
10743
  msgstr ""
10744
 
10745
  # @ squirrly-seo
10746
- #: view/Research/Research.php:34 view/Research/Research.php:145
10747
  #, fuzzy
10748
  #| msgid "Squirrly Keyword Research"
10749
  msgid "You've reached your Keyword Research Limit"
10750
  msgstr "Squirrly Erweiterte Suche!"
10751
 
10752
- #: view/Research/Research.php:35 view/Research/Research.php:146
10753
  msgid "Check Your Account"
10754
  msgstr ""
10755
 
@@ -10794,8 +11148,8 @@ msgid ""
10794
  "For local SEO you need to select the Country where you run your business"
10795
  msgstr ""
10796
 
10797
- #: view/Research/Research.php:100 view/Research/Research.php:152
10798
- #: view/Research/Research.php:220
10799
  msgid "Start Over"
10800
  msgstr ""
10801
 
@@ -10803,80 +11157,86 @@ msgstr ""
10803
  msgid "Step 3/4: Select similar keywords from below"
10804
  msgstr ""
10805
 
 
 
 
 
 
 
10806
  # @ default
10807
- #: view/Research/Research.php:148
10808
  #, fuzzy, php-format
10809
  #| msgid "Squirrly could not find any results for: "
10810
  msgid "We could not find similar keywords. %sClick on \"Do research\""
10811
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
10812
 
10813
  # @ squirrly-seo
10814
- #: view/Research/Research.php:158
10815
  #, fuzzy
10816
  #| msgid "Do a research"
10817
  msgid "Do a deep research"
10818
  msgstr "Recherchieren"
10819
 
10820
  # @ squirrly-seo
10821
- #: view/Research/Research.php:162 view/Research/Research.php:168
10822
  #, fuzzy
10823
  #| msgid "Do a research"
10824
  msgid "Do research"
10825
  msgstr "Recherchieren"
10826
 
10827
- #: view/Research/Research.php:176
10828
  msgid ""
10829
  "Keyword Research in progress. We're doing all of this in real-time. Data is "
10830
  "fresh."
10831
  msgstr ""
10832
 
10833
- #: view/Research/Research.php:177
10834
  msgid "We're now finding 10 alternatives for each keyword you selected."
10835
  msgstr ""
10836
 
10837
- #: view/Research/Research.php:178
10838
  msgid ""
10839
  "For each alternative, we are looking at the top 10 pages ranked on Google "
10840
  "for that keyword."
10841
  msgstr ""
10842
 
10843
- #: view/Research/Research.php:179
10844
  msgid ""
10845
  "We are now measuring the web authority of each competing page and comparing "
10846
  "it to yours."
10847
  msgstr ""
10848
 
10849
- #: view/Research/Research.php:180
10850
  msgid "Looking at the monthly search volume for each keyword."
10851
  msgstr ""
10852
 
10853
- #: view/Research/Research.php:181
10854
  msgid "Analyzing the last 30 days of Google trends for each keyword."
10855
  msgstr ""
10856
 
10857
- #: view/Research/Research.php:182
10858
  msgid ""
10859
  "Seeing how many discussions there are on forums and Twitter for each keyword."
10860
  msgstr ""
10861
 
10862
- #: view/Research/Research.php:183
10863
  msgid ""
10864
  "Piecing all the keywords together now after analyzing each individual "
10865
  "keyword."
10866
  msgstr ""
10867
 
10868
- #: view/Research/Research.php:184
10869
  msgid "Preparing the results."
10870
  msgstr ""
10871
 
10872
  # @ default
10873
- #: view/Research/Research.php:186
10874
  #, fuzzy
10875
  #| msgid "Squirrly could not find any results for: "
10876
  msgid "Step 4/4: We found some relevant keywords for you"
10877
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
10878
 
10879
- #: view/Research/Research.php:187
10880
  #, php-format
10881
  msgid ""
10882
  "Still processing. give it a bit more time, then go to %sResearch History%s. "
@@ -10884,24 +11244,24 @@ msgid ""
10884
  msgstr ""
10885
 
10886
  # @ default
10887
- #: view/Research/Research.php:188
10888
  #, fuzzy
10889
  #| msgid "Squirrly could not find any results for: "
10890
  msgid "Step 4/4: We could not find relevant keywords for you"
10891
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
10892
 
10893
- #: view/Research/Research.php:235
10894
  msgid "How to Find Amazing Keywords and get more search traffic?"
10895
  msgstr ""
10896
 
10897
  # @ squirrly-seo
10898
- #: view/Research/Research.php:249
10899
  #, fuzzy
10900
  #| msgid "+ Add keyword"
10901
  msgid "Already Have Keywords?"
10902
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
10903
 
10904
- #: view/Research/Research.php:252
10905
  msgid "Import Keywords From CSV"
10906
  msgstr ""
10907
 
@@ -10959,11 +11319,11 @@ msgstr ""
10959
  msgid "For compatibility with some Cache and CDN plugins."
10960
  msgstr ""
10961
 
10962
- #: view/SeoSettings/Advanced.php:78
10963
  msgid "Delete Squirrly Table on Uninstall"
10964
  msgstr ""
10965
 
10966
- #: view/SeoSettings/Advanced.php:79
10967
  msgid "Delete Squirrly SEO table and options on uninstall."
10968
  msgstr ""
10969
 
@@ -11248,6 +11608,12 @@ msgstr ""
11248
  msgid "JSON-LD Description Length"
11249
  msgstr ""
11250
 
 
 
 
 
 
 
11251
  #: view/SeoSettings/Backup.php:23
11252
  msgid "Import Settings & SEO"
11253
  msgstr ""
@@ -11377,12 +11743,6 @@ msgstr "Squirrly Einstellungen"
11377
  msgid "Website Icon"
11378
  msgstr "Ändern Sie das Website-Symbol"
11379
 
11380
- #: view/SeoSettings/Favicon.php:29
11381
- msgid ""
11382
- "Add your website icon in the browser tabs and on other devices like iPhone, "
11383
- "iPad and Android phones."
11384
- msgstr ""
11385
-
11386
  #: view/SeoSettings/Favicon.php:35
11387
  msgid "Activate Favicon"
11388
  msgstr ""
@@ -12013,7 +12373,7 @@ msgstr ""
12013
 
12014
  #: view/SeoSettings/Social.php:271
12015
  msgid ""
12016
- "Add the Twitter card in your tweets so that your Twitter shares look good."
12017
  msgstr ""
12018
 
12019
  #: view/SeoSettings/Social.php:272
@@ -12226,6 +12586,11 @@ msgid ""
12226
  "Pinterest account. Visit the %sRich Pins Validator%s"
12227
  msgstr ""
12228
 
 
 
 
 
 
12229
  # @ squirrly-seo
12230
  #, fuzzy
12231
  #~| msgid "Squirrly settings"
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-06-01 16:36+0300\n"
6
+ "PO-Revision-Date: 2020-06-01 16:36+0300\n"
7
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 2.3.1\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  #: classes/Error.php:79 classes/Error.php:90
23
  msgid "Don't bother me!"
24
  msgstr ""
25
 
26
+ #: classes/RemoteController.php:263
27
  msgid "Too many API attempts, please slow down the request."
28
  msgstr ""
29
 
30
+ #: classes/RemoteController.php:267
31
  msgid ""
32
  "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
33
  "in a minute."
34
  msgstr ""
35
 
36
+ #: classes/RemoteController.php:326
37
  msgid "Articles optimized so far"
38
  msgstr ""
39
 
40
+ #: classes/RemoteController.php:328 classes/RemoteController.php:335
41
  msgid "add post"
42
  msgstr ""
43
 
44
+ #: classes/RemoteController.php:333
45
  msgid "Average optimization"
46
  msgstr ""
47
 
48
  # @ squirrly-seo
49
+ #: classes/RemoteController.php:340
50
  #, fuzzy
51
  #| msgid "Squirrly Keyword Research"
52
  msgid "Keyword Researches"
53
  msgstr "Squirrly Erweiterte Suche!"
54
 
55
  # @ squirrly-seo
56
+ #: classes/RemoteController.php:342
57
  #, fuzzy
58
  #| msgid "Do a research"
59
  msgid "do research"
60
  msgstr "Recherchieren"
61
 
62
+ #: classes/RemoteController.php:347
63
  msgid "Keywords stored in Squirrly Briefcase"
64
  msgstr ""
65
 
66
  # @ squirrly-seo
67
+ #: classes/RemoteController.php:349
68
  #, fuzzy
69
  #| msgid "+ Add keyword"
70
  msgid "add keyword"
71
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
72
 
73
+ #: classes/RemoteController.php:354
74
  msgid "Pages ranking in top 100 Google"
75
  msgstr ""
76
 
77
+ #: classes/RemoteController.php:356
78
  msgid "see rankings"
79
  msgstr ""
80
 
81
+ #: classes/RemoteController.php:361
82
  msgid "SEO Audits"
83
  msgstr ""
84
 
85
+ #: classes/RemoteController.php:363
86
  msgid "see audits"
87
  msgstr ""
88
 
89
  # @ squirrly-seo
90
+ #: classes/RemoteController.php:1279
91
  msgid "Keyword:"
92
  msgstr "Schlüsselwort:"
93
 
94
  # @ squirrly-seo
95
+ #: classes/RemoteController.php:1280
96
  msgid "date"
97
  msgstr "Datum"
98
 
99
+ #: classes/RemoteController.php:1281 controllers/CheckSeo.php:317
100
  #: controllers/Patterns.php:16 controllers/Research.php:259
101
  #: controllers/Research.php:290 controllers/Research.php:344
102
  #: controllers/Research.php:654
104
  msgstr ""
105
 
106
  # @ squirrly-seo
107
+ #: classes/RemoteController.php:1282
108
  msgid "Read it!"
109
  msgstr "Lesen!"
110
 
111
  # @ squirrly-seo
112
+ #: classes/RemoteController.php:1283
113
  msgid "Insert it!"
114
  msgstr "Einfügen!"
115
 
116
  # @ squirrly-seo
117
+ #: classes/RemoteController.php:1284
118
  msgid "Reference"
119
  msgstr "Referenz"
120
 
121
  # @ squirrly-seo
122
+ #: classes/RemoteController.php:1285
123
  msgid "Insert as box"
124
  msgstr "Als Box einfügen"
125
 
126
+ #: classes/RemoteController.php:1286
127
  msgid "Insert Link"
128
  msgstr ""
129
 
130
  # @ squirrly-seo
131
+ #: classes/RemoteController.php:1287
132
  msgid "Not relevant?"
133
  msgstr "Nicht relevant?"
134
 
135
  # @ squirrly-seo
136
+ #: classes/RemoteController.php:1288
137
  msgid "Insert in your article"
138
  msgstr "In Artikel einfügen"
139
 
140
+ #: classes/RemoteController.php:1289
141
  msgid ":( An error occurred while processing your request. Please try again"
142
  msgstr ""
143
 
144
  # @ squirrly-seo
145
+ #: classes/RemoteController.php:1290
146
  msgid "No results found!"
147
  msgstr "Keine Ergebnisse gefunden!"
148
 
149
+ #: classes/RemoteController.php:1291
150
  #, php-format
151
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
152
  msgstr ""
153
 
154
+ #: classes/RemoteController.php:1292
155
  msgid "Has creative commons attributes"
156
  msgstr ""
157
 
158
+ #: classes/RemoteController.php:1293
159
  msgid "No known copyright restrictions"
160
  msgstr ""
161
 
162
+ #: classes/RemoteController.php:1294
163
  msgid ""
164
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
165
  "optimize for a keyword before publishing?"
167
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
168
  "optimize for a keyword before publishing?"
169
 
170
+ #: classes/RemoteController.php:1295
171
  msgid "Your Subscription has Expired"
172
  msgstr ""
173
 
174
+ #: classes/RemoteController.php:1296
175
  msgid "There are no keywords saved in briefcase yet"
176
  msgstr ""
177
 
178
+ #: classes/RemoteController.php:1297
179
  #, php-format
180
  msgid "Congratulations! Your article is 100% optimized!"
181
  msgstr ""
182
 
183
+ #: classes/RemoteController.php:1298
184
  #, php-format
185
  msgid "appears too many times. Try to remove %s of them"
186
  msgstr ""
187
 
188
+ #: classes/RemoteController.php:1299
189
  #, php-format
190
  msgid "write %s more words"
191
  msgstr ""
192
 
193
+ #: classes/RemoteController.php:1300
194
  #, php-format
195
  msgid "Add the keyword in the %s of your article"
196
  msgstr ""
197
 
198
+ #: classes/RemoteController.php:1301
199
  msgid "Click to keep the highlight on"
200
  msgstr ""
201
 
202
+ #: classes/RemoteController.php:1302
203
  msgid "introduction"
204
  msgstr ""
205
 
206
+ #: classes/RemoteController.php:1303
207
  #, php-format
208
  msgid "Write more words after the %s keyword"
209
  msgstr ""
210
 
211
+ #: classes/RemoteController.php:1304
212
  msgid "or use synonyms"
213
  msgstr ""
214
 
215
+ #: classes/RemoteController.php:1305
216
  #, php-format
217
  msgid "add %s more word(s)"
218
  msgstr ""
219
 
220
+ #: classes/RemoteController.php:1306
221
  #, php-format
222
  msgid "or remove %s word(s)"
223
  msgstr ""
224
 
225
+ #: classes/RemoteController.php:1307
226
  #, php-format
227
  msgid "add %s more keyword(s)"
228
  msgstr ""
229
 
230
+ #: classes/RemoteController.php:1308
231
  #, php-format
232
  msgid "write %s more words to start calculating"
233
  msgstr ""
234
 
235
+ #: classes/RemoteController.php:1309 view/Research/Research.php:48
236
  msgid "Add to Briefcase"
237
  msgstr ""
238
 
239
+ #: classes/RemoteController.php:1310
240
  msgid "Add Keyword to Briefcase"
241
  msgstr ""
242
 
243
+ #: classes/RemoteController.php:1311
244
  msgid "Select"
245
  msgstr ""
246
 
247
+ #: classes/RemoteController.php:1312 view/Blocks/Snippet.php:136
248
  #: view/Blocks/Snippet.php:509 view/Blocks/Snippet.php:765
249
  msgid "Auto Draft"
250
  msgstr ""
251
 
252
+ #: classes/RemoteController.php:1313
253
  msgid ""
254
  "You’ve already used the Live Assistant to optimize this post when creating "
255
  "it in your Page Builder. Please go back and resume your optimization work "
301
  msgid "The code for Facebook App must only contain numbers."
302
  msgstr "Der Code für Facebook ist falsch."
303
 
304
+ #: classes/helpers/Tools.php:82
305
  msgid "Getting started"
306
  msgstr ""
307
 
308
  # @ squirrly-seo
309
+ #: classes/helpers/Tools.php:107
310
  #, fuzzy
311
  #| msgid "Competition:"
312
  msgid "Documentation"
313
  msgstr "Wettbewerb:"
314
 
315
+ #: classes/helpers/Tools.php:108
316
  msgid "Leave a review"
317
  msgstr ""
318
 
319
+ #: classes/helpers/Tools.php:407
320
  msgid "Format"
321
  msgstr ""
322
 
323
+ #: classes/helpers/Tools.php:425 classes/helpers/Tools.php:461
324
  msgid "Category"
325
  msgstr ""
326
 
327
+ #: classes/helpers/Tools.php:443 classes/helpers/Tools.php:479
328
  msgid "Tag"
329
  msgstr ""
330
 
331
+ #: classes/helpers/Tools.php:497
332
  msgid "Shipping Option"
333
  msgstr ""
334
 
335
+ #: classes/helpers/Tools.php:515
336
  msgid "Author at"
337
  msgstr ""
338
 
339
+ #: classes/helpers/Tools.php:587
340
  msgid "Are you looking for"
341
  msgstr ""
342
 
343
+ #: classes/helpers/Tools.php:588
344
  msgid "These are the results for"
345
  msgstr ""
346
 
347
+ #: classes/helpers/Tools.php:588
348
  msgid "that you can find on our website."
349
  msgstr ""
350
 
351
+ #: classes/helpers/Tools.php:622
352
  msgid "Page not found"
353
  msgstr ""
354
 
355
+ #: classes/helpers/Tools.php:623
356
  msgid "This page could not be found on our website."
357
  msgstr ""
358
 
359
+ #: classes/helpers/Tools.php:891
360
  msgid "For better text comparison you need to install PHP mbstring extension."
361
  msgstr ""
362
 
500
  msgstr ""
501
 
502
  #: controllers/Assistant.php:102 controllers/Assistant.php:129
503
+ #: controllers/Audits.php:337 controllers/Ranking.php:134
504
  #: controllers/SeoSettings.php:149 controllers/SeoSettings.php:166
505
  #: controllers/SeoSettings.php:187 controllers/SeoSettings.php:224
506
  #: controllers/SeoSettings.php:250 controllers/SeoSettings.php:278
510
  msgstr ""
511
 
512
  #: controllers/Assistant.php:108 controllers/BulkSeo.php:69
513
+ #: controllers/Patterns.php:100 controllers/Post.php:254
514
+ #: controllers/Post.php:307 controllers/Post.php:339 controllers/Post.php:374
515
  #: controllers/PostsList.php:182 controllers/Research.php:172
516
  #: controllers/Research.php:179 controllers/Research.php:217
517
  #: controllers/Research.php:240 controllers/Research.php:270
523
  #: controllers/SeoSettings.php:543 controllers/SeoSettings.php:568
524
  #: controllers/SeoSettings.php:605 controllers/SeoSettings.php:642
525
  #: controllers/SeoSettings.php:656 controllers/SeoSettings.php:678
526
+ #: controllers/SeoSettings.php:699 controllers/Snippet.php:166
527
  msgid "You do not have permission to perform this action"
528
  msgstr ""
529
 
539
  msgstr ""
540
 
541
  # @ squirrly-seo
542
+ #: controllers/Audits.php:163
543
  #, fuzzy
544
  #| msgid "Could not send the email..."
545
  msgid "Could not load the Audit Page."
546
  msgstr "Konnte E-Mail nicht senden ..."
547
 
548
+ #: controllers/Audits.php:278
549
  msgid "Audit page is added. The audit may take a while so please be patient."
550
  msgstr ""
551
 
552
+ #: controllers/Audits.php:281
553
  msgid "You reached the maximum number of audit pages for your account."
554
  msgstr ""
555
 
556
  # @ squirrly-seo
557
+ #: controllers/Audits.php:284
558
  #, fuzzy
559
  #| msgid "Upload error: Could not upload the favicon."
560
  msgid "Error! Could not add the audit page."
561
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
562
 
563
  # @ squirrly-seo
564
+ #: controllers/Audits.php:288
565
  #, fuzzy
566
  #| msgid "Upload error: Could not upload the favicon."
567
  msgid "Error! Could not find the audit page in your website."
568
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
569
 
570
+ #: controllers/Audits.php:298
571
  msgid "Audit page sent for recheck. It may take a while so please be patient."
572
  msgstr ""
573
 
574
+ #: controllers/Audits.php:301 controllers/Audits.php:304
575
  msgid "The audit for all pages can be made once an hour."
576
  msgstr ""
577
 
578
+ #: controllers/Audits.php:314
579
  msgid "The audit page is deleted"
580
  msgstr ""
581
 
582
+ #: controllers/Audits.php:316 controllers/FocusPages.php:409
583
  #: controllers/Ranking.php:161 controllers/Ranking.php:179
584
  #: controllers/Ranking.php:197 controllers/Research.php:208
585
  #: controllers/Research.php:211 controllers/Research.php:234
590
  msgid "Invalid params!"
591
  msgstr ""
592
 
593
+ #: controllers/Audits.php:339
594
  msgid "Not a valid email address"
595
  msgstr ""
596
 
610
  msgid "Saved! Task marked as done."
611
  msgstr ""
612
 
613
+ #: controllers/FocusPages.php:147
614
  msgid "Focus Page does not exist or was deleted from your website."
615
  msgstr ""
616
 
617
+ #: controllers/FocusPages.php:340
618
  msgid "Focus page is added. The audit may take a while so please be patient."
619
  msgstr ""
620
 
621
+ #: controllers/FocusPages.php:347
622
  msgid "You reached the maximum number of focus pages for all your websites."
623
  msgstr ""
624
 
625
  # @ squirrly-seo
626
+ #: controllers/FocusPages.php:350
627
  #, fuzzy
628
  #| msgid "Upload error: Could not upload the favicon."
629
  msgid "Error! Could not add the focus page."
630
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
631
 
632
+ #: controllers/FocusPages.php:353
633
  msgid "Error! This focus page is not public."
634
  msgstr ""
635
 
636
+ #: controllers/FocusPages.php:357 controllers/FocusPages.php:396
637
  msgid "Error! Could not find the focus page in your website."
638
  msgstr ""
639
 
640
+ #: controllers/FocusPages.php:384
641
  msgid "Focus page sent for recheck. It may take a while so please be patient."
642
  msgstr ""
643
 
644
+ #: controllers/FocusPages.php:387 controllers/FocusPages.php:391
645
  msgid "You've made too many requests, please wait a few minutes."
646
  msgstr ""
647
 
648
+ #: controllers/FocusPages.php:407
649
  msgid "The focus page is deleted"
650
  msgstr ""
651
 
652
+ #: controllers/Menu.php:123
653
  #, php-format
654
  msgid ""
655
  "An error occurred during activation. If this error persists, please contact "
656
  "us at: %s"
657
  msgstr ""
658
 
659
+ #: controllers/Menu.php:160
660
  msgid "Dashboard"
661
  msgstr ""
662
 
663
  # @ squirrly-seo
664
+ #: controllers/Menu.php:185 controllers/Menu.php:290 controllers/Menu.php:325
665
  #: view/Blocks/SLASearch.php:7
666
  #, fuzzy
667
  #| msgid "Squirrly settings"
668
  msgid "Squirrly SEO"
669
  msgstr "Squirrly Einstellungen"
670
 
671
+ #: controllers/Menu.php:253
672
  msgid "SEO Snippet"
673
  msgstr ""
674
 
675
+ #: controllers/Menu.php:268 controllers/Snippet.php:137
676
  msgid "Custom SEO"
677
  msgstr ""
678
 
679
  # @ squirrly-seo
680
+ #: controllers/Menu.php:333
681
  #, fuzzy
682
  #| msgid "Squirrly settings"
683
  msgid "Squirrly Onboarding"
684
  msgstr "Squirrly Einstellungen"
685
 
686
+ #: controllers/Menu.php:334
687
  msgid "Onboarding"
688
  msgstr ""
689
 
690
+ #: controllers/Menu.php:363
691
  msgid "Import & Export SEO"
692
  msgstr ""
693
 
694
+ #: controllers/Menu.php:364 view/SeoSettings/Backup.php:88
695
  msgid "Import SEO"
696
  msgstr ""
697
 
698
  # @ squirrly-seo
699
+ #: controllers/Menu.php:374
700
  #, fuzzy
701
  #| msgid "Squirrly.co Login"
702
  msgid "Squirrly Account Info"
703
  msgstr "Squirrly.co Login"
704
 
705
+ #: controllers/Menu.php:375
706
  msgid "Account Info"
707
  msgstr ""
708
 
709
+ #: controllers/Menu.php:384
710
  msgid "Squirrly How To & Support"
711
  msgstr ""
712
 
713
  # @ squirrly-seo
714
+ #: controllers/Menu.php:385
715
  #, fuzzy
716
  #| msgid "Support"
717
  msgid "Help & Support"
722
  msgstr ""
723
 
724
  # @ squirrly-seo
725
+ #: controllers/Post.php:301
726
  #, fuzzy
727
  #| msgid "Could not send the email..."
728
  msgid "Could not add the demo post."
729
  msgstr "Konnte E-Mail nicht senden ..."
730
 
731
+ #: controllers/Post.php:363 controllers/Post.php:388
732
  msgid "Can't get the post URL"
733
  msgstr ""
734
 
735
+ #: controllers/Post.php:393
736
  msgid "Invalid request"
737
  msgstr ""
738
 
947
  msgstr "Squirrly LIVE SEO-Assistent"
948
 
949
  # @ squirrly-seo
950
+ #: controllers/Snippet.php:184
951
  #, fuzzy
952
  #| msgid "Could not send the email..."
953
  msgid "Could not save the data"
1302
 
1303
  # @ squirrly-seo
1304
  #: models/Assistant.php:163 models/focuspages/Accuracy.php:45
1305
+ #: models/focuspages/Length.php:71 models/focuspages/Traffic.php:105
1306
  #, fuzzy
1307
  #| msgid "Google %sAnalytics ID%s`:"
1308
  msgid "Connect Google Analytics"
1976
  msgstr ""
1977
 
1978
  # @ squirrly-seo
1979
+ #: models/Audits.php:156 models/bulkseo/Metas.php:89
1980
  #, fuzzy
1981
  #| msgid "Keyword:"
1982
  msgid "Meta Keyword"
2007
  msgid "Make sure that the search for your keywords is on a rising trend"
2008
  msgstr ""
2009
 
2010
+ #: models/Audits.php:166 models/bulkseo/Metas.php:94
2011
  msgid "Canonical Link"
2012
  msgstr ""
2013
 
4797
  msgstr ""
4798
 
4799
  # @ squirrly-seo
4800
+ #: models/CheckSeo.php:1464
4801
  #, fuzzy
4802
  #| msgid "Could not send the email..."
4803
  msgid "Could not verify the frontend."
4804
  msgstr "Konnte E-Mail nicht senden ..."
4805
 
4806
+ #: models/CheckSeo.php:1831
4807
  msgid "Just another WordPress site"
4808
  msgstr ""
4809
 
4810
+ #: models/CheckSeo.php:1970
4811
  #, php-format
4812
  msgid "Focus Page was not found (error %s)"
4813
  msgstr ""
4814
 
4815
+ #: models/CheckSeo.php:1971 models/CheckSeo.php:2015
4816
  msgid ""
4817
+ "The way your WordPress site is currently hosted can affect the way Squirrly "
4818
+ "SEO operates in order to retrieve and process data about your Focus Pages. "
4819
+ "It’s important to do everything on your end to ensure that the Focus Pages "
4820
+ "audits can be generated by our system."
4821
  msgstr ""
4822
 
4823
+ #: models/CheckSeo.php:1972 models/CheckSeo.php:1991
4824
  msgid ""
4825
  "Use a different browser to check if your Focus Page is visible. Whitelist "
4826
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
4827
  "page so that you’ll receive a full audit."
4828
  msgstr ""
4829
 
4830
+ #: models/CheckSeo.php:1973 models/CheckSeo.php:2017
4831
  msgid "An error is preventing Squirrly from processing your Focus Page audits."
4832
  msgstr ""
4833
 
4834
+ #: models/CheckSeo.php:1980
4835
  #, php-format
4836
  msgid "Your Focus Page is redirected to another page (error %s)"
4837
  msgstr ""
4838
 
4839
+ #: models/CheckSeo.php:1981
4840
  #, php-format
4841
  msgid ""
4842
  "Right now, your Focus Page sends users and search engines to a different URL "
4848
  "operates."
4849
  msgstr ""
4850
 
4851
+ #: models/CheckSeo.php:1982
4852
  msgid ""
4853
  "Choose a page that does NOT redirect to a different page as your Focus Page. "
4854
  "Your Focus Page should have a single URL associated to it so that Squirrly "
4855
  "can serve you the best data."
4856
  msgstr ""
4857
 
4858
+ #: models/CheckSeo.php:1983
4859
  msgid "Make sure that your Focus Page is NOT redirected to a different page."
4860
  msgstr ""
4861
 
4862
+ #: models/CheckSeo.php:1989
4863
  #, php-format
4864
  msgid "Ensure your Focus Pages can be accessed (error %s)"
4865
  msgstr ""
4866
 
4867
+ #: models/CheckSeo.php:1990
4868
  #, php-format
4869
  msgid ""
4870
  "A server-side error is preventing Squirrly from being able to access and "
4874
  "page, which is a critical issue."
4875
  msgstr ""
4876
 
4877
+ #: models/CheckSeo.php:1992
4878
  msgid "A server-side error is preventing your Focus Pages from being accessed."
4879
  msgstr ""
4880
 
4881
+ #: models/CheckSeo.php:1997
4882
  #, php-format
4883
  msgid "Make sure your Focus Pages can be audited (error %s)"
4884
  msgstr ""
4885
 
4886
+ #: models/CheckSeo.php:1998
4887
  msgid ""
4888
  "Squirrly is unable to generate the audit for your Focus Page because it "
4889
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
4891
  "Squirrly’s IP address."
4892
  msgstr ""
4893
 
4894
+ #: models/CheckSeo.php:1999
4895
  msgid ""
4896
  "Check to see if your WordPress site’s server is offline. Whitelist our "
4897
  "crawler IP address (176.9.112.210) to allow our server to verify your page "
4898
  "so that you’ll receive a full audit."
4899
  msgstr ""
4900
 
4901
+ #: models/CheckSeo.php:2000 models/CheckSeo.php:2008
4902
  msgid ""
4903
  "An error prevents Squirrly from gathering critical data about your Focus "
4904
  "Page."
4905
  msgstr ""
4906
 
4907
+ #: models/CheckSeo.php:2005
4908
+ msgid "Make sure your Focus Pages can be audited (firewall protection)"
4909
+ msgstr ""
4910
+
4911
+ #: models/CheckSeo.php:2006
4912
+ msgid ""
4913
+ "Squirrly is unable to generate the audit for your Focus Page because it "
4914
+ "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
4915
+ "server has a firewall protection and is blocking Squirrly’s IP address."
4916
+ msgstr ""
4917
+
4918
+ #: models/CheckSeo.php:2007 models/CheckSeo.php:2016
4919
+ msgid ""
4920
+ "Whitelist our crawler IP address (176.9.112.210) to allow our server to "
4921
+ "verify your page so that you’ll receive a full audit."
4922
+ msgstr ""
4923
+
4924
+ #: models/CheckSeo.php:2014
4925
+ #, php-format
4926
+ msgid "Focus Page could not be verified (error: %s)"
4927
+ msgstr ""
4928
+
4929
+ #: models/FocusPages.php:21 models/bulkseo/Metas.php:134
4930
  #: models/focuspages/Clicks.php:64 models/focuspages/Content.php:88
4931
  #: models/focuspages/Ctr.php:64 models/focuspages/Image.php:80
4932
  #: models/focuspages/Impressions.php:64 models/focuspages/Keyword.php:103
4933
+ #: models/focuspages/Keyword.php:106 models/focuspages/Snippet.php:151
4934
  #: models/focuspages/Strategy.php:102 view/Blocks/KRFound.php:15
4935
  #: view/Blocks/KRHistory.php:15 view/Ranking/Gscsync.php:31
4936
  #: view/Ranking/Rankings.php:210 view/Ranking/Rankings.php:348
4937
  #: view/Research/Briefcase.php:107 view/Research/Briefcase.php:247
4938
  #: view/Research/History.php:29 view/Research/HistoryDetails.php:7
4939
+ #: view/Research/Research.php:194 view/Research/Suggested.php:28
4940
  msgid "Keyword"
4941
  msgstr ""
4942
 
5075
  msgid " Research"
5076
  msgstr "Recherchieren"
5077
 
5078
+ #: models/Menu.php:139 view/Blocks/Features.php:34
5079
  msgid "Live Assistant"
5080
  msgstr ""
5081
 
5099
  msgid " SEO Settings"
5100
  msgstr ""
5101
 
5102
+ #: models/Menu.php:163 models/Menu.php:250 view/Blocks/Features.php:7
5103
+ #: view/Blocks/FocusPages.php:6 view/FocusPages/Pagelist.php:23
5104
  msgid "Focus Pages"
5105
  msgstr ""
5106
 
5108
  msgid " Focus Pages"
5109
  msgstr ""
5110
 
5111
+ #: models/Menu.php:171 view/Blocks/Audits.php:6 view/Blocks/Features.php:187
5112
  msgid "SEO Audit"
5113
  msgstr ""
5114
 
5248
  msgstr "Einstellungen speichern"
5249
 
5250
  #: models/Menu.php:312 view/BulkSeo/Bulkseo.php:29
 
5251
  msgid "Bulk SEO"
5252
  msgstr ""
5253
 
5561
  msgstr ""
5562
 
5563
  #: models/Post.php:262 models/focuspages/Snippet.php:89
5564
+ #: models/focuspages/Snippet.php:218 models/focuspages/Snippet.php:240
5565
  #: view/Audits/Addpage.php:131 view/Blocks/Snippet.php:171
5566
  #: view/Blocks/Snippet.php:570 view/Blocks/Snippet.php:825
5567
  #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:132
5568
+ #: view/SeoSettings/Automation.php:125 view/SeoSettings/Metas.php:157
 
5569
  msgid "Title"
5570
  msgstr ""
5571
 
5735
  msgid "Current"
5736
  msgstr ""
5737
 
5738
+ #: models/bulkseo/Metas.php:52
5739
  msgid "Title not empty"
5740
  msgstr ""
5741
 
5742
+ #: models/bulkseo/Metas.php:53 view/Blocks/Snippet.php:187
5743
  #: view/Blocks/Snippet.php:586 view/Blocks/Snippet.php:841
5744
  msgid "Current Title"
5745
  msgstr ""
5746
 
5747
+ #: models/bulkseo/Metas.php:55
5748
  #, php-format
5749
  msgid ""
5750
  "The title for this URL must not be empty. %s Write a title for this page. "
5753
  "more clicks you can get when people find your page on search engines."
5754
  msgstr ""
5755
 
5756
+ #: models/bulkseo/Metas.php:58
5757
  #, php-format
5758
  msgid "Title up to %s chars"
5759
  msgstr ""
5760
 
5761
+ #: models/bulkseo/Metas.php:59
5762
  msgid "Current Title Length"
5763
  msgstr ""
5764
 
5765
+ #: models/bulkseo/Metas.php:60 models/bulkseo/Metas.php:78
5766
+ #: models/bulkseo/Opengraph.php:78 models/bulkseo/Opengraph.php:88
5767
+ #: models/bulkseo/Twittercard.php:75 models/bulkseo/Twittercard.php:85
5768
  msgid "chars"
5769
  msgstr ""
5770
 
5771
+ #: models/bulkseo/Metas.php:61 models/bulkseo/Opengraph.php:79
5772
+ #: models/bulkseo/Twittercard.php:76
5773
  #, php-format
5774
  msgid ""
5775
  "Title has to be longer than %s chars and up to %s chars. %s You can change "
5776
  "the title max length from %sSEO Settings > Automation%s."
5777
  msgstr ""
5778
 
5779
+ #: models/bulkseo/Metas.php:64 models/focuspages/Snippet.php:100
5780
  msgid "Keyword in title"
5781
  msgstr ""
5782
 
5783
  # @ squirrly-seo
5784
+ #: models/bulkseo/Metas.php:65 models/bulkseo/Metas.php:83
5785
  #, fuzzy
5786
  #| msgid "Squirrly Keyword Research"
5787
  msgid "Squirrly Keyword"
5788
  msgstr "Squirrly Erweiterte Suche!"
5789
 
5790
  # @ squirrly-seo
5791
+ #: models/bulkseo/Metas.php:66 models/bulkseo/Metas.php:84
5792
  #, fuzzy
5793
  #| msgid "Keywords:"
5794
  msgid "no keywords"
5795
  msgstr "Schlüsselwörter:"
5796
 
5797
+ #: models/bulkseo/Metas.php:67 models/focuspages/Snippet.php:103
5798
  #, php-format
5799
  msgid ""
5800
  "Your keyword must be present in the title of the page. %s It's a very "
5807
  msgstr ""
5808
 
5809
  # @ squirrly-seo
5810
+ #: models/bulkseo/Metas.php:70
5811
  #, fuzzy
5812
  #| msgid "Description:"
5813
  msgid "Description not empty"
5814
  msgstr "Beschreibung:"
5815
 
5816
+ #: models/bulkseo/Metas.php:71 view/Blocks/Snippet.php:239
5817
  #: view/Blocks/Snippet.php:630 view/Blocks/Snippet.php:885
5818
  msgid "Current Description"
5819
  msgstr ""
5820
 
5821
+ #: models/bulkseo/Metas.php:73
5822
  #, php-format
5823
  msgid ""
5824
  "Meta descriptions are important for SEO on multiple search engines. %s You "
5827
  "on search engines."
5828
  msgstr ""
5829
 
5830
+ #: models/bulkseo/Metas.php:76
5831
  #, php-format
5832
  msgid "Description up to %s chars"
5833
  msgstr ""
5834
 
5835
+ #: models/bulkseo/Metas.php:77
5836
  msgid "Current Description Length"
5837
  msgstr ""
5838
 
5839
+ #: models/bulkseo/Metas.php:79 models/bulkseo/Opengraph.php:89
5840
+ #: models/bulkseo/Twittercard.php:86
5841
  #, php-format
5842
  msgid ""
5843
  "Description has to be longer than %s chars and up to %s chars. %s You can "
5844
  "change the description max length from %sSEO Settings > Automation%s."
5845
  msgstr ""
5846
 
5847
+ #: models/bulkseo/Metas.php:82 models/focuspages/Snippet.php:106
5848
  msgid "Keyword in description"
5849
  msgstr ""
5850
 
5851
+ #: models/bulkseo/Metas.php:85
5852
  #, php-format
5853
  msgid ""
5854
  "Same as with the title task. %s If a user reads the description of your page "
5860
  "lot about this, because that's what people want to find on the search engine."
5861
  msgstr ""
5862
 
5863
+ #: models/bulkseo/Metas.php:88
5864
  msgid "Meta Keywords (2-4 Words)"
5865
  msgstr ""
5866
 
5867
  # @ squirrly-seo
5868
+ #: models/bulkseo/Metas.php:90
5869
  #, fuzzy
5870
  #| msgid "Enter a keyword"
5871
  msgid "no meta keywords"
5872
  msgstr "Ein Schlüsselwort eingeben"
5873
 
5874
+ #: models/bulkseo/Metas.php:91
5875
  msgid ""
5876
  "Even if Meta keywords are not mandatory for Google, it's important for other "
5877
  "search engines to find this meta and to index your post for these keywords."
5878
  msgstr ""
5879
 
5880
+ #: models/bulkseo/Metas.php:95
5881
  msgid "Current Link"
5882
  msgstr ""
5883
 
5884
+ #: models/bulkseo/Metas.php:97
5885
  #, php-format
5886
  msgid ""
5887
  "You don't have to set any canonical link if your post is not copied from "
5891
  "gets indexed and ranked."
5892
  msgstr ""
5893
 
5894
+ #: models/bulkseo/Metas.php:106
5895
  msgid "Some Squirrly Metas are deactivated."
5896
  msgstr ""
5897
 
5898
+ #: models/bulkseo/Metas.php:111
5899
+ msgid ""
5900
+ "Some Squirrly Metas are not set correctly. Click to open the Assistant in "
5901
+ "the right sidebar and follow the instructions."
5902
  msgstr ""
5903
 
5904
+ #: models/bulkseo/Metas.php:116
5905
  msgid "Some Squirrly Metas are generated automatically."
5906
  msgstr ""
5907
 
5908
+ #: models/bulkseo/Metas.php:119
5909
  msgid "All Squirrly Metas are customized and set correctly."
5910
  msgstr ""
5911
 
5912
+ #: models/bulkseo/Metas.php:130 models/bulkseo/Opengraph.php:131
5913
+ #: models/bulkseo/Twittercard.php:128 models/bulkseo/Visibility.php:69
5914
  #: models/focuspages/Accuracy.php:34 models/focuspages/Audit.php:144
5915
  #: models/focuspages/Authority.php:33 models/focuspages/Backlinks.php:46
5916
  #: models/focuspages/Clicks.php:56 models/focuspages/Content.php:75
5919
  #: models/focuspages/Innerlinks.php:64 models/focuspages/Keyword.php:79
5920
  #: models/focuspages/Length.php:55 models/focuspages/Nofollow.php:65
5921
  #: models/focuspages/Onpage.php:78 models/focuspages/Ranking.php:35
5922
+ #: models/focuspages/Snippet.php:145 models/focuspages/Social.php:56
5923
  #: models/focuspages/Strategy.php:96 models/focuspages/Traffic.php:94
5924
  msgid "Current URL"
5925
  msgstr ""
5926
 
5927
  # @ squirrly-seo
5928
+ #: models/bulkseo/Metas.php:136
5929
  #, fuzzy
5930
  #| msgid "Keyword:"
5931
  msgid "No Meta Keyword Found"
5932
  msgstr "Schlüsselwort:"
5933
 
5934
+ #: models/bulkseo/Metas.php:152 models/bulkseo/Metas.php:188
5935
+ #: models/bulkseo/Metas.php:221 models/bulkseo/Metas.php:265
5936
+ #: models/bulkseo/Metas.php:301 models/bulkseo/Metas.php:334
5937
+ #: models/bulkseo/Metas.php:382 models/bulkseo/Metas.php:421
5938
+ #: models/bulkseo/Opengraph.php:145 models/bulkseo/Opengraph.php:181
5939
+ #: models/bulkseo/Opengraph.php:213 models/bulkseo/Opengraph.php:249
5940
+ #: models/bulkseo/Opengraph.php:285 models/bulkseo/Twittercard.php:142
5941
+ #: models/bulkseo/Twittercard.php:178 models/bulkseo/Twittercard.php:210
5942
+ #: models/bulkseo/Twittercard.php:246 models/bulkseo/Twittercard.php:282
5943
  #: models/bulkseo/Visibility.php:83 models/bulkseo/Visibility.php:122
5944
  #: models/bulkseo/Visibility.php:155
5945
  msgid "Squirrly Snippet is deactivated from this post."
5946
  msgstr ""
5947
 
5948
+ #: models/bulkseo/Metas.php:156 models/bulkseo/Metas.php:192
5949
+ #: models/bulkseo/Metas.php:225 models/bulkseo/Metas.php:269
5950
+ #: models/bulkseo/Metas.php:305 models/bulkseo/Metas.php:338
5951
+ #: models/bulkseo/Metas.php:386 models/bulkseo/Metas.php:425
5952
  #, php-format
5953
  msgid ""
5954
  "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
5955
  "%s."
5956
  msgstr ""
5957
 
5958
+ #: models/bulkseo/Metas.php:160 models/bulkseo/Metas.php:196
5959
+ #: models/bulkseo/Metas.php:229
5960
  #, php-format
5961
  msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
5962
  msgstr ""
5963
 
5964
+ #: models/bulkseo/Metas.php:164 models/bulkseo/Metas.php:200
5965
+ #: models/bulkseo/Metas.php:233 models/bulkseo/Metas.php:277
5966
+ #: models/bulkseo/Metas.php:313 models/bulkseo/Metas.php:346
5967
+ #: models/bulkseo/Metas.php:390 models/bulkseo/Metas.php:433
5968
  #, php-format
5969
  msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
5970
  msgstr ""
5971
 
5972
  # @ squirrly-seo
5973
+ #: models/bulkseo/Metas.php:173 models/bulkseo/Metas.php:209
5974
+ #: models/bulkseo/Opengraph.php:166 models/bulkseo/Opengraph.php:202
5975
+ #: models/bulkseo/Twittercard.php:163 models/bulkseo/Twittercard.php:199
5976
  #, fuzzy
5977
  #| msgid "<< Leave it automatically"
5978
  msgid "Title is generated automatically."
5979
  msgstr "<< Lass es automatisch"
5980
 
5981
+ #: models/bulkseo/Metas.php:237 models/bulkseo/Metas.php:350
5982
+ #: models/bulkseo/Metas.php:394
5983
  #, php-format
5984
  msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
5985
  msgstr ""
5986
 
5987
+ #: models/bulkseo/Metas.php:273 models/bulkseo/Metas.php:309
5988
+ #: models/bulkseo/Metas.php:342
5989
  #, php-format
5990
  msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
5991
  msgstr ""
5992
 
5993
+ #: models/bulkseo/Metas.php:286 models/bulkseo/Metas.php:323
5994
+ #: models/bulkseo/Opengraph.php:234 models/bulkseo/Opengraph.php:270
5995
+ #: models/bulkseo/Twittercard.php:231 models/bulkseo/Twittercard.php:267
5996
  msgid "Description is generated automatically."
5997
  msgstr ""
5998
 
5999
+ #: models/bulkseo/Metas.php:429
6000
  #, php-format
6001
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
6002
  msgstr ""
6003
 
6004
+ #: models/bulkseo/Opengraph.php:72
6005
  msgid "OG title not empty"
6006
  msgstr ""
6007
 
6008
+ #: models/bulkseo/Opengraph.php:74
6009
  #, php-format
6010
  msgid ""
6011
  "You need to have an Open Graph title for this post. %s It will help you "
6013
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
6014
  msgstr ""
6015
 
6016
+ #: models/bulkseo/Opengraph.php:77
6017
  #, php-format
6018
  msgid "OG title up to %s chars"
6019
  msgstr ""
6020
 
6021
+ #: models/bulkseo/Opengraph.php:82
6022
  msgid "OG description not empty"
6023
  msgstr ""
6024
 
6025
+ #: models/bulkseo/Opengraph.php:84
6026
  #, php-format
6027
  msgid ""
6028
  "You need to have an Open Graph description for this post. %s It will help "
6030
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
6031
  msgstr ""
6032
 
6033
+ #: models/bulkseo/Opengraph.php:87
6034
  #, php-format
6035
  msgid "OG description up to %s chars"
6036
  msgstr ""
6037
 
6038
  # @ squirrly-seo
6039
+ #: models/bulkseo/Opengraph.php:92 view/SeoSettings/Metas.php:184
6040
  #, fuzzy
6041
  #| msgid "Images"
6042
  msgid "OG Image"
6043
  msgstr "Bilder"
6044
 
6045
+ #: models/bulkseo/Opengraph.php:93 models/bulkseo/Twittercard.php:90
6046
  msgid "(featured image)"
6047
  msgstr ""
6048
 
6049
+ #: models/bulkseo/Opengraph.php:94
6050
  #, php-format
6051
  msgid ""
6052
  "Set a good looking image for your URL. It needs to look good in Facebook and "
6054
  "attract more clicks to your site."
6055
  msgstr ""
6056
 
6057
+ #: models/bulkseo/Opengraph.php:108
6058
  msgid "Open Graph is deactivated."
6059
  msgstr ""
6060
 
6061
+ #: models/bulkseo/Opengraph.php:113
6062
+ msgid ""
6063
+ "Open Graph is not set correctly. Click to open the Assistant in the right "
6064
+ "sidebar and follow the instructions."
6065
  msgstr ""
6066
 
6067
  # @ squirrly-seo
6068
+ #: models/bulkseo/Opengraph.php:118
6069
  #, fuzzy
6070
  #| msgid "<< Leave it automatically"
6071
  msgid "Open Graph is generated automatically."
6072
  msgstr "<< Lass es automatisch"
6073
 
6074
+ #: models/bulkseo/Opengraph.php:121
6075
  msgid "Open Graph is customized and set correctly."
6076
  msgstr ""
6077
 
6078
+ #: models/bulkseo/Opengraph.php:149 models/bulkseo/Opengraph.php:185
6079
+ #: models/bulkseo/Opengraph.php:217 models/bulkseo/Opengraph.php:253
6080
+ #: models/bulkseo/Opengraph.php:289
6081
  #, php-format
6082
  msgid ""
6083
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
6084
  "%s."
6085
  msgstr ""
6086
 
6087
+ #: models/bulkseo/Opengraph.php:153 models/bulkseo/Opengraph.php:189
6088
+ #: models/bulkseo/Opengraph.php:221 models/bulkseo/Opengraph.php:257
6089
+ #: models/bulkseo/Opengraph.php:293
6090
  #, php-format
6091
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
6092
  msgstr ""
6093
 
6094
+ #: models/bulkseo/Opengraph.php:157 models/bulkseo/Opengraph.php:193
6095
+ #: models/bulkseo/Opengraph.php:225 models/bulkseo/Opengraph.php:261
6096
+ #: models/bulkseo/Opengraph.php:297 models/bulkseo/Twittercard.php:154
6097
+ #: models/bulkseo/Twittercard.php:190 models/bulkseo/Twittercard.php:222
6098
+ #: models/bulkseo/Twittercard.php:258 models/bulkseo/Twittercard.php:294
6099
  #, php-format
6100
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
6101
  msgstr ""
6102
 
6103
+ #: models/bulkseo/Twittercard.php:69
6104
  msgid "TC title not empty"
6105
  msgstr ""
6106
 
6107
+ #: models/bulkseo/Twittercard.php:71
6108
  #, php-format
6109
  msgid ""
6110
  "You need to have a title for the Twitter Card of this post. %s It will help "
6112
  "also important for SEO purposes."
6113
  msgstr ""
6114
 
6115
+ #: models/bulkseo/Twittercard.php:74
6116
  #, php-format
6117
  msgid "TC title up to %s chars"
6118
  msgstr ""
6119
 
6120
  # @ squirrly-seo
6121
+ #: models/bulkseo/Twittercard.php:79
6122
  #, fuzzy
6123
  #| msgid "Description:"
6124
  msgid "TC Description not empty"
6125
  msgstr "Beschreibung:"
6126
 
6127
+ #: models/bulkseo/Twittercard.php:81
6128
  #, php-format
6129
  msgid ""
6130
  "You need to have a Twitter Card description for this post. %s It will help "
6133
  "to your site. %s It's also important for SEO purposes."
6134
  msgstr ""
6135
 
6136
+ #: models/bulkseo/Twittercard.php:84
6137
  #, php-format
6138
  msgid "TC description up to %s chars"
6139
  msgstr ""
6140
 
6141
  # @ squirrly-seo
6142
+ #: models/bulkseo/Twittercard.php:89
6143
  #, fuzzy
6144
  #| msgid "Images"
6145
  msgid "TC Image"
6146
  msgstr "Bilder"
6147
 
6148
+ #: models/bulkseo/Twittercard.php:91
6149
  #, php-format
6150
  msgid ""
6151
  "Set a good looking image for your URL. It needs to look good in Twitter "
6153
  "clicks to your site."
6154
  msgstr ""
6155
 
6156
+ #: models/bulkseo/Twittercard.php:105
6157
  msgid "Twitter Card is deactivated."
6158
  msgstr ""
6159
 
6160
+ #: models/bulkseo/Twittercard.php:110
6161
+ msgid ""
6162
+ "Twitter Card is not set correctly. Click to open the Assistant in the right "
6163
+ "sidebar and follow the instructions."
6164
  msgstr ""
6165
 
6166
+ #: models/bulkseo/Twittercard.php:115
6167
  msgid "Twitter Card is generated automatically."
6168
  msgstr ""
6169
 
6170
+ #: models/bulkseo/Twittercard.php:118
6171
  msgid "Twitter Card is customized and set correctly."
6172
  msgstr ""
6173
 
6174
+ #: models/bulkseo/Twittercard.php:146 models/bulkseo/Twittercard.php:182
6175
+ #: models/bulkseo/Twittercard.php:214 models/bulkseo/Twittercard.php:250
6176
+ #: models/bulkseo/Twittercard.php:286
6177
  #, php-format
6178
  msgid ""
6179
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
6180
  "Automation%s."
6181
  msgstr ""
6182
 
6183
+ #: models/bulkseo/Twittercard.php:150 models/bulkseo/Twittercard.php:186
6184
+ #: models/bulkseo/Twittercard.php:218 models/bulkseo/Twittercard.php:254
6185
+ #: models/bulkseo/Twittercard.php:290
6186
  #, php-format
6187
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
6188
  msgstr ""
6234
  msgstr ""
6235
 
6236
  #: models/bulkseo/Visibility.php:55
6237
+ msgid ""
6238
+ "Visibility is not set correctly. Click to open the Assistant in the right "
6239
+ "sidebar and follow the instructions."
6240
  msgstr ""
6241
 
6242
  #: models/bulkseo/Visibility.php:59
6314
 
6315
  #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
6316
  #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
6317
+ #: models/focuspages/Indexability.php:95 models/focuspages/Traffic.php:100
6318
  msgid "Connect Google Search"
6319
  msgstr ""
6320
 
6476
  msgid "At Least %s Majestic SEO Links"
6477
  msgstr ""
6478
 
6479
+ #: models/focuspages/Backlinks.php:81 models/focuspages/Content.php:118
6480
+ #: models/focuspages/Image.php:109 models/focuspages/Impressions.php:102
6481
+ #: models/focuspages/Indexability.php:112 models/focuspages/Innerlinks.php:86
6482
+ #: models/focuspages/Keyword.php:156 models/focuspages/Length.php:93
6483
+ #: models/focuspages/Nofollow.php:77 models/focuspages/Onpage.php:94
6484
+ #: models/focuspages/Ranking.php:48 models/focuspages/Snippet.php:168
6485
+ #: models/focuspages/Social.php:72 models/focuspages/Strategy.php:136
6486
+ #: models/focuspages/Traffic.php:126
6487
+ msgid ""
6488
+ "Click to open the Assistant in the right sidebar and follow the instructions."
6489
+ msgstr ""
6490
+
6491
  # @ squirrly-seo
6492
  #: models/focuspages/Clicks.php:42
6493
  #, fuzzy
6508
  #: models/focuspages/Clicks.php:75 models/focuspages/Content.php:93
6509
  #: models/focuspages/Ctr.php:75 models/focuspages/Image.php:88
6510
  #: models/focuspages/Impressions.php:75 models/focuspages/Keyword.php:114
6511
+ #: models/focuspages/Keyword.php:182 models/focuspages/Keyword.php:200
6512
+ #: models/focuspages/Keyword.php:223 models/focuspages/Snippet.php:153
6513
  #: models/focuspages/Strategy.php:112
6514
  msgid "No Keyword Found"
6515
  msgstr ""
6523
  msgid "Optimize for a keyword"
6524
  msgstr "Schlüsselwort optimieren"
6525
 
6526
+ #: models/focuspages/Clicks.php:96 models/focuspages/Content.php:114
6527
+ #: models/focuspages/Ctr.php:100 models/focuspages/Impressions.php:96
6528
+ #: models/focuspages/Keyword.php:149 models/focuspages/Strategy.php:132
6529
+ msgid ""
6530
+ "Optimize the page for a keyword. Click to open the Assistant in the right "
6531
+ "sidebar and follow the instructions."
6532
+ msgstr ""
6533
+
6534
  # @ squirrly-seo
6535
+ #: models/focuspages/Clicks.php:98 models/focuspages/Ctr.php:96
 
6536
  #, fuzzy
6537
  #| msgid "Google %sAnalytics ID%s`:"
6538
  msgid "Connect to Google Search Console"
6539
  msgstr "Google %sAnalytics ID%s`:"
6540
 
 
 
 
 
 
 
 
 
6541
  #: models/focuspages/Content.php:46
6542
  #, fuzzy, php-format
6543
  #| msgid "Optimize for Keyword"
6635
  "you used it more than once."
6636
  msgstr ""
6637
 
6638
+ #: models/focuspages/Image.php:85 models/focuspages/Snippet.php:156
6639
  msgid "Edit your snippet"
6640
  msgstr ""
6641
 
6642
+ #: models/focuspages/Image.php:125
6643
  msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
6644
  msgstr ""
6645
 
6646
  # @ squirrly-seo
6647
+ #: models/focuspages/Image.php:126
6648
  #, fuzzy
6649
  #| msgid "No results found!"
6650
  msgid "No image found"
6654
  msgid "Search Results Impressions in the last 3 months"
6655
  msgstr ""
6656
 
6657
+ # @ squirrly-seo
6658
+ #: models/focuspages/Impressions.php:98
6659
+ #, fuzzy
6660
+ #| msgid "Google %sAnalytics ID%s`:"
6661
+ msgid "Connect to Google Search Console."
6662
+ msgstr "Google %sAnalytics ID%s`:"
6663
+
6664
  #: models/focuspages/Indexability.php:52
6665
  msgid "Yes, do index"
6666
  msgstr ""
6876
  #: models/focuspages/Keyword.php:152
6877
  msgid ""
6878
  "Congratulations for ranking with this keyword, but it will require special "
6879
+ "attention from you to keep it within TOP 10 positions"
6880
  msgstr ""
6881
 
6882
+ #: models/focuspages/Keyword.php:182 models/focuspages/Keyword.php:200
6883
+ #: models/focuspages/Keyword.php:223
6884
  msgid "Please add a keyword first."
6885
  msgstr ""
6886
 
6934
  msgstr ""
6935
 
6936
  # @ squirrly-seo
6937
+ #: models/focuspages/Length.php:89
 
 
6938
  #, fuzzy
6939
  #| msgid "Google %sAnalytics ID%s`:"
6940
+ msgid "Connect to Google Analytics first."
6941
+ msgstr "Google %sAnalytics ID%s`:"
6942
+
6943
+ # @ squirrly-seo
6944
+ #: models/focuspages/Length.php:125 models/focuspages/Traffic.php:143
6945
+ #: models/focuspages/Traffic.php:159 models/focuspages/Traffic.php:175
6946
+ #, fuzzy
6947
+ #| msgid "Google %sAnalytics ID%s`:"
6948
+ msgid "Connect Google Analytics first."
6949
  msgstr "Google %sAnalytics ID%s`:"
6950
 
6951
  #: models/focuspages/Nofollow.php:50
7061
  "that product."
7062
  msgstr ""
7063
 
7064
+ #: models/focuspages/Snippet.php:95 models/focuspages/Snippet.php:219
7065
+ #: models/focuspages/Snippet.php:241 view/Blocks/Snippet.php:613
7066
  #: view/Blocks/Snippet.php:868 view/SeoSettings/Automation.php:134
7067
  #: view/SeoSettings/Metas.php:166
7068
  msgid "Description"
7082
  "boost CTR (click-through rates)."
7083
  msgstr ""
7084
 
7085
+ #: models/focuspages/Snippet.php:102
7086
+ #, php-format
7087
+ msgid "Keyword %s must be present in Title"
7088
+ msgstr ""
7089
+
7090
+ #: models/focuspages/Snippet.php:107
7091
+ #, php-format
7092
+ msgid "Keyword %s must be present in Description"
7093
+ msgstr ""
7094
+
7095
+ #: models/focuspages/Snippet.php:108
7096
  #, php-format
7097
  msgid ""
7098
  "Same as with the title task. %s If a user reads the description of your page "
7104
  "lot about this, because that's what people want to find on the search engine."
7105
  msgstr ""
7106
 
7107
+ #: models/focuspages/Snippet.php:111
7108
  msgid "Open Graph - full definition"
7109
  msgstr ""
7110
 
7111
+ #: models/focuspages/Snippet.php:113
7112
  #, php-format
7113
  msgid ""
7114
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
7120
  "relevant for your search engine position placements."
7121
  msgstr ""
7122
 
7123
+ #: models/focuspages/Snippet.php:116
7124
  msgid "Twitter Cards - full definition"
7125
  msgstr ""
7126
 
7127
+ #: models/focuspages/Snippet.php:118
7128
  #, php-format
7129
  msgid ""
7130
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
7134
  "that you won't miss a beat."
7135
  msgstr ""
7136
 
7137
+ #: models/focuspages/Snippet.php:121
7138
  msgid "JSON-LD definition"
7139
  msgstr ""
7140
 
7141
+ #: models/focuspages/Snippet.php:122
7142
  #, php-format
7143
  msgid ""
7144
  "To turn this task to green, you can easily use the JSON-LD section inside "
7149
  "%shttps://search.google.com/structured-data/testing-tool%s"
7150
  msgstr ""
7151
 
7152
+ #: models/focuspages/Snippet.php:125
7153
  msgid "Customized"
7154
  msgstr ""
7155
 
7156
+ #: models/focuspages/Snippet.php:126
7157
  #, php-format
7158
  msgid ""
7159
  "The Snippets of your most important pages should be customized. %s Use the "
7168
  msgstr ""
7169
 
7170
  # @ squirrly-seo
7171
+ #: models/focuspages/Snippet.php:220 models/focuspages/Snippet.php:242
7172
  #, fuzzy
7173
  #| msgid "Images"
7174
  msgid "Image"
7269
  msgid "Manage Strategy"
7270
  msgstr ""
7271
 
7272
+ #: models/focuspages/Strategy.php:168 models/focuspages/Strategy.php:175
7273
  msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
7274
  msgstr ""
7275
 
7356
  "happen more often than you would think."
7357
  msgstr ""
7358
 
7359
+ # @ squirrly-seo
7360
+ #: models/focuspages/Traffic.php:120
7361
+ #, fuzzy
7362
+ #| msgid "Google %sAnalytics ID%s`:"
7363
+ msgid "Connect Google Analytics first"
7364
+ msgstr "Google %sAnalytics ID%s`:"
7365
+
7366
  #: models/focuspages/Traffic.php:122
7367
  msgid "Not enough traffic to show relevant stats"
7368
  msgstr ""
7403
  msgid "Add New"
7404
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
7405
 
7406
+ #: view/Assistant/Settings.php:7 view/Audits/Addpage.php:8
7407
+ #: view/Audits/Audit.php:8 view/Audits/Audits.php:8 view/Audits/Compare.php:11
7408
+ #: view/Audits/Settings.php:7 view/BulkSeo/Bulkseo.php:12
7409
+ #: view/FocusPages/Addpage.php:8 view/FocusPages/Pagelist.php:8
7410
+ #: view/FocusPages/Settings.php:7 view/Ranking/Rankings.php:17
7411
+ #: view/Ranking/Settings.php:7 view/SeoSettings/Advanced.php:7
7412
+ #: view/SeoSettings/Automation.php:7 view/SeoSettings/Favicon.php:7
7413
+ #: view/SeoSettings/Metas.php:7 view/SeoSettings/Robots.php:7
7414
+ #: view/SeoSettings/Sitemap.php:7 view/SeoSettings/Social.php:7
7415
+ #: view/SeoSettings/Tracking.php:7 view/SeoSettings/Webmaster.php:7
7416
+ msgid ""
7417
+ "You do not have permission to access this page. You need Squirrly SEO Admin "
7418
+ "role."
7419
+ msgstr ""
7420
+
7421
  # @ squirrly-seo
7422
+ #: view/Assistant/Settings.php:25
7423
  #, fuzzy
7424
  #| msgid "Save settings"
7425
  msgid "Live Assistant Settings"
7426
  msgstr "Einstellungen speichern"
7427
 
7428
  # @ squirrly-seo
7429
+ #: view/Assistant/Settings.php:40
7430
  #, fuzzy
7431
  #| msgid "Squirrly Options"
7432
  msgid "Squirrly Tooltips"
7433
  msgstr "Squirrly Optionen"
7434
 
7435
+ #: view/Assistant/Settings.php:41
7436
  #, php-format
7437
  msgid ""
7438
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. \"Enter a keyword"
7439
  "\")."
7440
  msgstr ""
7441
 
7442
+ #: view/Assistant/Settings.php:51
7443
  msgid "Download Remote Images"
7444
  msgstr ""
7445
 
7446
+ #: view/Assistant/Settings.php:52
7447
  #, php-format
7448
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
7449
  msgstr ""
7450
 
7451
+ #: view/Assistant/Settings.php:53
7452
  msgid ""
7453
  "Prevent from losing the images you use in your articles in case the remote "
7454
  "images are deleted."
7455
  msgstr ""
7456
 
7457
  # @ squirrly-seo
7458
+ #: view/Assistant/Settings.php:64
7459
  #, fuzzy
7460
  #| msgid "Show only Copyright Free images"
7461
  msgid "Copyright Free Images"
7462
  msgstr "Nur urheberrechtfreie Bilder zeigen"
7463
 
7464
+ #: view/Assistant/Settings.php:65
7465
  #, php-format
7466
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7467
  msgstr ""
7468
 
7469
  # @ squirrly-seo
7470
+ #: view/Assistant/Settings.php:75
7471
  #, fuzzy
7472
  #| msgid "Save settings"
7473
  msgid "Live Assistant Type"
7474
  msgstr "Einstellungen speichern"
7475
 
7476
+ #: view/Assistant/Settings.php:76
7477
  msgid "Select how you want Squirrly Live Assistant to load in editor."
7478
  msgstr ""
7479
 
7480
+ #: view/Assistant/Settings.php:80
7481
  msgid "Auto"
7482
  msgstr ""
7483
 
7484
+ #: view/Assistant/Settings.php:81
7485
  msgid "Integrated Box"
7486
  msgstr ""
7487
 
7488
+ #: view/Assistant/Settings.php:82
7489
  msgid "Floating Box"
7490
  msgstr ""
7491
 
7492
+ #: view/Assistant/Settings.php:95
7493
  msgid "Activate Live Assistant in Frontend"
7494
  msgstr ""
7495
 
7496
+ #: view/Assistant/Settings.php:95
7497
  msgid "(BETA)"
7498
  msgstr ""
7499
 
7500
+ #: view/Assistant/Settings.php:96
7501
  msgid ""
7502
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7503
  "with Builders."
7504
  msgstr ""
7505
 
7506
+ #: view/Assistant/Settings.php:97
7507
  msgid "Currently supports the Elementor Builder plugin."
7508
  msgstr ""
7509
 
7510
+ #: view/Assistant/Settings.php:104
7511
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
7512
  msgstr ""
7513
 
7514
+ #: view/Assistant/Settings.php:106
7515
  msgid ""
7516
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
7517
  "post types."
7518
  msgstr ""
7519
 
7520
+ #: view/Assistant/Settings.php:112
7521
  msgid "Exclusions"
7522
  msgstr ""
7523
 
7524
+ #: view/Assistant/Settings.php:113
7525
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7526
  msgstr ""
7527
 
7528
+ #: view/Assistant/Settings.php:114
7529
  msgid "Hold Control key to select multiple places"
7530
  msgstr ""
7531
 
7532
+ #: view/Assistant/Settings.php:141 view/SeoSettings/Automation.php:474
7533
  #: view/SeoSettings/Automation.php:595 view/SeoSettings/Jsonld.php:243
7534
  #: view/SeoSettings/Metas.php:231 view/SeoSettings/Sitemap.php:305
7535
  #: view/SeoSettings/Social.php:372
7536
  msgid "Show Advanced Options"
7537
  msgstr ""
7538
 
7539
+ #: view/Assistant/Settings.php:142 view/SeoSettings/Automation.php:475
7540
  #: view/SeoSettings/Automation.php:596 view/SeoSettings/Jsonld.php:244
7541
  #: view/SeoSettings/Metas.php:232 view/SeoSettings/Sitemap.php:306
7542
  #: view/SeoSettings/Social.php:373
7544
  msgstr ""
7545
 
7546
  # @ squirrly-seo
7547
+ #: view/Assistant/Settings.php:145 view/Audits/Settings.php:60
7548
+ #: view/Ranking/Settings.php:173 view/SeoSettings/Advanced.php:90
7549
  #: view/SeoSettings/Automation.php:478 view/SeoSettings/Automation.php:599
7550
  #: view/SeoSettings/Backup.php:206 view/SeoSettings/Favicon.php:107
7551
  #: view/SeoSettings/Jsonld.php:247 view/SeoSettings/Metas.php:235
7557
  msgid "Save Settings"
7558
  msgstr "Einstellungen speichern"
7559
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7560
  #: view/Audits/Addpage.php:22
7561
  msgid "Add a page in Audit"
7562
  msgstr ""
7569
  msgstr ""
7570
 
7571
  #: view/Audits/Addpage.php:92 view/BulkSeo/Bulkseo.php:101
7572
+ #: view/FocusPages/Addpage.php:92
7573
  msgid "Any status"
7574
  msgstr ""
7575
 
7576
  #: view/Audits/Addpage.php:112 view/BulkSeo/Bulkseo.php:121
7577
+ #: view/FocusPages/Addpage.php:112 view/Research/Research.php:202
 
7578
  msgid "Search"
7579
  msgstr ""
7580
 
7582
  #: view/Audits/Compare.php:44 view/BulkSeo/Bulkseo.php:123
7583
  #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:6
7584
  #: view/Ranking/Rankings.php:58 view/Research/Briefcase.php:37
 
7585
  msgid "Show All"
7586
  msgstr ""
7587
 
7601
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
7602
 
7603
  #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
7604
+ #: view/FocusPages/Addpage.php:196
7605
  msgid "Prev Page"
7606
  msgstr ""
7607
 
7608
  #: view/Audits/Addpage.php:194 view/BulkSeo/Bulkseo.php:199
7609
+ #: view/FocusPages/Addpage.php:197
7610
  msgid "Next Page"
7611
  msgstr ""
7612
 
7647
  msgstr ""
7648
 
7649
  # @ squirrly-seo
7650
+ #: view/Audits/AuditPageRow.php:46
7651
  #, fuzzy
7652
  #| msgid "Could not send the email..."
7653
  msgid "Could not create the audit for this URL"
7654
  msgstr "Konnte E-Mail nicht senden ..."
7655
 
7656
  # @ squirrly-seo
7657
+ #: view/Audits/AuditPageRow.php:46
7658
  #, fuzzy
7659
  #| msgid "An error occured."
7660
  msgid "error code"
7661
  msgstr "Ein Fehler ist aufgetreten."
7662
 
7663
+ #: view/Audits/AuditPageRow.php:49
7664
  #, php-format
7665
  msgid ""
7666
+ "The way your WordPress site is currently hosted can affect the way Squirrly "
7667
+ "SEO operates in order to retrieve and process data about this page. %sIt’s "
7668
+ "important to do everything on your end to ensure that the audits can be "
7669
+ "generated by our system. %s Whitelist our crawler IP address (176.9.112.210) "
7670
+ "to allow our server to verify your page so that you’ll receive a full audit."
 
7671
  msgstr ""
7672
 
7673
+ #: view/Audits/AuditPageRow.php:50 view/FocusPages/FocusPageRow.php:96
7674
+ msgid "Inspect URL"
7675
+ msgstr ""
7676
+
7677
+ #: view/Audits/AuditPageRow.php:73
7678
  msgid "Delete Page from Audit"
7679
  msgstr ""
7680
 
7829
  msgid "Audits"
7830
  msgstr ""
7831
 
7832
+ #: view/Audits/Audits.php:59
7833
  #, php-format
7834
  msgid ""
7835
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
7837
  "involved."
7838
  msgstr ""
7839
 
7840
+ #: view/Audits/Audits.php:66
7841
  #, php-format
7842
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
7843
  msgstr ""
7844
 
7845
+ # @ squirrly-seo
7846
+ #: view/Audits/Audits.php:87 view/FocusPages/Pagelist.php:85
7847
+ #, fuzzy
7848
+ #| msgid "Squirrly LIVE SEO assistant"
7849
+ msgid "Squirrly Inspect URL"
7850
+ msgstr "Squirrly LIVE SEO-Assistent"
7851
+
7852
  # @ squirrly-seo
7853
  #: view/Audits/Settings.php:30
7854
  #, fuzzy
7867
  msgid "Enter the email address on which you want to receive the weekly audits."
7868
  msgstr ""
7869
 
7870
+ #: view/Blocks/Account.php:10
7871
+ msgid "Account Info Unavailable"
7872
+ msgstr ""
7873
+
7874
+ #: view/Blocks/Account.php:43
7875
  msgid "Your Plan: "
7876
  msgstr ""
7877
 
7878
  # @ squirrly-seo
7879
+ #: view/Blocks/Account.php:44
7880
  #, fuzzy
7881
  #| msgid "Squirrly.co Login"
7882
  msgid "Check Account Info"
7883
  msgstr "Squirrly.co Login"
7884
 
7885
  # @ squirrly-seo
7886
+ #: view/Blocks/Account.php:49
7887
  #, fuzzy
7888
  #| msgid "Email:"
7889
  msgid "Email: "
7890
  msgstr "Ihre E-Mail Adresse:"
7891
 
7892
+ #: view/Blocks/Account.php:55
7893
  #, php-format
7894
  msgid "Due Date: %s"
7895
  msgstr ""
7896
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7897
  #: view/Blocks/Audits.php:7 view/Blocks/Audits.php:53
7898
  msgid "See Audits"
7899
  msgstr ""
7922
  msgid "Go to Focus Pages"
7923
  msgstr ""
7924
 
7925
+ #: view/Blocks/Connect.php:14 view/Blocks/Connect.php:28
7926
  msgid ""
7927
  "This option is used to track innerlinks and insights for your Focus Pages "
7928
  "and give detailed informations about them."
7929
  msgstr ""
7930
 
7931
+ #: view/Blocks/Connect.php:16 view/Blocks/Connect.php:30
7932
  msgid "Let Squirrly API get data for Focus Pages"
7933
  msgstr ""
7934
 
7935
  # @ squirrly-seo
7936
+ #: view/Blocks/Connect.php:17
7937
  #, fuzzy
7938
  #| msgid "Connecting ..."
7939
  msgid "Connect"
7940
  msgstr "Verbinden ..."
7941
 
7942
  # @ squirrly-seo
7943
+ #: view/Blocks/Connect.php:31
7944
  #, fuzzy
7945
  #| msgid "Connecting ..."
7946
  msgid "disconnect"
7997
  msgid "Checking the website ..."
7998
  msgstr ""
7999
 
8000
+ #: view/Blocks/Features.php:8
8001
+ msgid ""
8002
+ "The Assistant who maps the road to Better Rankings. For every single page. "
8003
+ "Always with different specifics."
8004
+ msgstr ""
8005
+
8006
+ #: view/Blocks/Features.php:9 view/Blocks/Features.php:18
8007
+ #: view/Blocks/Features.php:36 view/Blocks/Features.php:189
8008
+ msgid "Freemium"
8009
+ msgstr ""
8010
+
8011
+ #: view/Blocks/Features.php:16 view/Blocks/KRHistory.php:5
8012
+ #: view/Onboarding/Step1.3.php:11 view/Research/Research.php:18
8013
+ msgid "Keyword Research"
8014
+ msgstr ""
8015
+
8016
+ #: view/Blocks/Features.php:17
8017
+ msgid ""
8018
+ "Find the Best Keywords that your own website can rank for and get "
8019
+ "personalized competition data for each keyword."
8020
+ msgstr ""
8021
+
8022
+ #: view/Blocks/Features.php:25
8023
+ msgid "SEO Briefcase"
8024
+ msgstr ""
8025
+
8026
+ #: view/Blocks/Features.php:26
8027
+ msgid ""
8028
+ "Add keywords in your portfolio based on your current Campaigns, Trends, "
8029
+ "Performance for a successful SEO strategy."
8030
+ msgstr ""
8031
+
8032
+ #: view/Blocks/Features.php:27 view/Blocks/Features.php:45
8033
+ #: view/Blocks/Features.php:54 view/Blocks/Features.php:63
8034
+ #: view/Blocks/Features.php:72 view/Blocks/Features.php:81
8035
+ #: view/Blocks/Features.php:90 view/Blocks/Features.php:99
8036
+ #: view/Blocks/Features.php:108 view/Blocks/Features.php:117
8037
+ #: view/Blocks/Features.php:126 view/Blocks/Features.php:135
8038
+ #: view/Blocks/Features.php:144 view/Blocks/Features.php:153
8039
+ #: view/Blocks/Features.php:162 view/Blocks/Features.php:171
8040
+ #: view/Blocks/Features.php:180 view/Blocks/Features.php:198
8041
+ msgid "Free"
8042
+ msgstr ""
8043
+
8044
+ #: view/Blocks/Features.php:35
8045
+ msgid ""
8046
+ "Publish content that is fully optimized for BOTH Search Engines and Humans – "
8047
+ "every single time!"
8048
+ msgstr ""
8049
+
8050
+ #: view/Blocks/Features.php:43
8051
+ msgid "Google SERP with GSC"
8052
+ msgstr ""
8053
+
8054
+ #: view/Blocks/Features.php:44
8055
+ msgid ""
8056
+ "Get Google Search Console average possitions, clicks and impressions for "
8057
+ "organic keywords."
8058
+ msgstr ""
8059
+
8060
+ # @ squirrly-seo
8061
+ #: view/Blocks/Features.php:52
8062
+ #, fuzzy
8063
+ #| msgid "automatically"
8064
+ msgid "SEO Automation"
8065
+ msgstr "automatisch"
8066
+
8067
+ #: view/Blocks/Features.php:53
8068
+ msgid ""
8069
+ "Configure the SEO in 2 minutes for the entire website without writing a line "
8070
+ "of code."
8071
+ msgstr ""
8072
+
8073
+ # @ squirrly-seo
8074
+ #: view/Blocks/Features.php:61
8075
+ #, fuzzy
8076
+ #| msgid "Squirrly LIVE SEO assistant"
8077
+ msgid "Bulk SEO & Snippets"
8078
+ msgstr "Squirrly LIVE SEO-Assistent"
8079
+
8080
+ #: view/Blocks/Features.php:62
8081
+ msgid ""
8082
+ "Simplify the SEO process for all your posts types and optimize them in just "
8083
+ "minutes."
8084
+ msgstr ""
8085
+
8086
+ #: view/Blocks/Features.php:70 view/Goals/Goals.php:34
8087
+ msgid "Daily SEO Goals"
8088
+ msgstr ""
8089
+
8090
+ #: view/Blocks/Features.php:71
8091
+ msgid ""
8092
+ "The Non-Human SEO Consultant that prepares you goals that take you closer to "
8093
+ "the first page of Google."
8094
+ msgstr ""
8095
+
8096
+ #: view/Blocks/Features.php:79
8097
+ #, fuzzy
8098
+ #| msgid "Optimize for Keyword"
8099
+ msgid "Open Graph Optimization"
8100
+ msgstr "Schlüsselwort optimieren"
8101
+
8102
+ #: view/Blocks/Features.php:80
8103
+ msgid "Add Social Open Graph protocol so that your Facebook shares look good."
8104
+ msgstr ""
8105
+
8106
+ #: view/Blocks/Features.php:88
8107
+ #, fuzzy
8108
+ #| msgid "Optimize for Keyword"
8109
+ msgid "Twitter Card Optimization"
8110
+ msgstr "Schlüsselwort optimieren"
8111
+
8112
+ #: view/Blocks/Features.php:89
8113
+ msgid "Add Twitter Card in your tweets so that your Twitter shares look good."
8114
+ msgstr ""
8115
+
8116
+ #: view/Blocks/Features.php:97
8117
+ msgid "XML Sitemap"
8118
+ msgstr ""
8119
+
8120
+ #: view/Blocks/Features.php:98
8121
+ msgid ""
8122
+ "Use Squirrly’s Sitemap Generator and Settings to help your website get "
8123
+ "crawled and indexed by Google."
8124
+ msgstr ""
8125
+
8126
+ #: view/Blocks/Features.php:106
8127
+ #, fuzzy
8128
+ #| msgid "Optimize for Keyword"
8129
+ msgid "JSON-LD Optimizaition"
8130
+ msgstr "Schlüsselwort optimieren"
8131
+
8132
+ #: view/Blocks/Features.php:107
8133
+ msgid ""
8134
+ "Edit your website’s JSON-LD Schema with Squirrly’s powerful semantic SEO "
8135
+ "Markup Solution."
8136
+ msgstr ""
8137
+
8138
+ # @ squirrly-seo
8139
+ #: view/Blocks/Features.php:115
8140
+ #, fuzzy
8141
+ #| msgid "The code for Google Analytics is incorrect."
8142
+ msgid "Google Analytics Tracking"
8143
+ msgstr "Der Code für Google Analytics ist falsch."
8144
+
8145
+ #: view/Blocks/Features.php:116
8146
+ msgid ""
8147
+ "Add the Google Analytics and Google Tag Manager tracking on your website."
8148
+ msgstr ""
8149
+
8150
+ # @ squirrly-seo
8151
+ #: view/Blocks/Features.php:124
8152
+ #, fuzzy
8153
+ #| msgid "Description:"
8154
+ msgid "Facebook Pixel Tracking"
8155
+ msgstr "Beschreibung:"
8156
+
8157
+ #: view/Blocks/Features.php:125
8158
+ msgid ""
8159
+ "Track visitors with website and e-commerce events for better Retargeting "
8160
+ "Campaigns."
8161
+ msgstr ""
8162
+
8163
+ #: view/Blocks/Features.php:133 view/Connect/GoogleSearchConsole.php:7
8164
+ msgid "Google Search Console"
8165
+ msgstr ""
8166
+
8167
+ #: view/Blocks/Features.php:134
8168
+ msgid ""
8169
+ "Connect your website with Google Search Console and get insights based on "
8170
+ "organic searched keywords."
8171
+ msgstr ""
8172
+
8173
+ #: view/Blocks/Features.php:142
8174
+ msgid "Robots.txt File"
8175
+ msgstr ""
8176
+
8177
+ #: view/Blocks/Features.php:143
8178
+ msgid ""
8179
+ "Tell search engine crawlers which pages or files the crawler can or can't "
8180
+ "request from your site."
8181
+ msgstr ""
8182
+
8183
+ # @ squirrly-seo
8184
+ #: view/Blocks/Features.php:151
8185
+ #, fuzzy
8186
+ #| msgid "Change the Website Icon"
8187
+ msgid "Favicon Site Icon"
8188
+ msgstr "Ändern Sie das Website-Symbol"
8189
+
8190
+ #: view/Blocks/Features.php:152 view/SeoSettings/Favicon.php:29
8191
+ msgid ""
8192
+ "Add your website icon in the browser tabs and on other devices like iPhone, "
8193
+ "iPad and Android phones."
8194
+ msgstr ""
8195
+
8196
+ #: view/Blocks/Features.php:160
8197
+ msgid "On-Page SEO METAs"
8198
+ msgstr ""
8199
+
8200
+ #: view/Blocks/Features.php:161
8201
+ msgid ""
8202
+ "Add all Search Engine METAs like Title, Description, Canonical, Dublin Core, "
8203
+ "Robots and more."
8204
+ msgstr ""
8205
+
8206
+ #: view/Blocks/Features.php:169
8207
+ msgid "Remove META Duplicate"
8208
+ msgstr ""
8209
+
8210
+ #: view/Blocks/Features.php:170
8211
+ msgid "Fix Duplicate Titles and Descriptions without writing a line of code."
8212
+ msgstr ""
8213
+
8214
+ #: view/Blocks/Features.php:178
8215
+ msgid "404 Redirects"
8216
+ msgstr ""
8217
+
8218
+ #: view/Blocks/Features.php:179
8219
+ msgid ""
8220
+ "Automatically redirect the old posts and pages URLs to the new URLs to keep "
8221
+ "the post authority."
8222
+ msgstr ""
8223
+
8224
+ #: view/Blocks/Features.php:188 view/Blocks/Features.php:197
8225
+ msgid "Improve your Online Presence by knowing how your website is performing."
8226
+ msgstr ""
8227
+
8228
+ #: view/Blocks/Features.php:196 view/Blocks/Jorney.php:12
8229
+ #: view/Blocks/Jorney.php:95
8230
+ msgid "14 Days Journey Course"
8231
+ msgstr ""
8232
+
8233
+ # @ squirrly-seo
8234
+ #: view/Blocks/Features.php:205
8235
+ #, fuzzy
8236
+ #| msgid "Blogs"
8237
+ msgid "Blogging Assistant"
8238
+ msgstr "Blogs"
8239
+
8240
+ #: view/Blocks/Features.php:206
8241
+ msgid ""
8242
+ "Add relevant Copyright-free images, Tweets, Wikis, Blog Excerpts in your "
8243
+ "posts."
8244
+ msgstr ""
8245
+
8246
+ # @ squirrly-seo
8247
+ #: view/Blocks/Features.php:207
8248
+ #, fuzzy
8249
+ #| msgid "Profile"
8250
+ msgid "Pro"
8251
+ msgstr "Profil"
8252
+
8253
+ #: view/Blocks/Features.php:214 view/Onboarding/Step1.5.php:21
8254
+ msgid "Google SERP Checker"
8255
+ msgstr ""
8256
+
8257
+ #: view/Blocks/Features.php:215
8258
+ msgid ""
8259
+ "Accurately track your rankings with Squirrly’s user-friendly Google SERP "
8260
+ "Checker."
8261
+ msgstr ""
8262
+
8263
+ #: view/Blocks/Features.php:216
8264
+ msgid "Business"
8265
+ msgstr ""
8266
+
8267
+ # @ squirrly-seo
8268
+ #: view/Blocks/Features.php:233 view/Overview.php:65
8269
+ #, fuzzy
8270
+ #| msgid "Squirrly LIVE SEO assistant"
8271
+ msgid "Squirrly SEO Feature Categories"
8272
+ msgstr "Squirrly LIVE SEO-Assistent"
8273
+
8274
+ #: view/Blocks/Features.php:237
8275
+ #, php-format
8276
+ msgid ""
8277
+ "With a total of over %s200%s free in-depth features that only Squirrly can "
8278
+ "offer."
8279
+ msgstr ""
8280
+
8281
+ # @ squirrly-seo
8282
+ #: view/Blocks/Features.php:292
8283
+ #, fuzzy
8284
+ #| msgid "Go to Profile"
8285
+ msgid "Go to feature"
8286
+ msgstr "Zum Profil"
8287
+
8288
+ #: view/Blocks/Features.php:294
8289
+ msgid "Active"
8290
+ msgstr ""
8291
+
8292
+ #: view/Blocks/Features.php:296
8293
+ msgid "Inactive"
8294
+ msgstr ""
8295
+
8296
+ #: view/Blocks/Features.php:304
8297
+ msgid "more details"
8298
+ msgstr ""
8299
+
8300
  #: view/Blocks/FocusPages.php:7
8301
  msgid "See Focus Pages"
8302
  msgstr ""
8321
  msgid "Then set a page as focus"
8322
  msgstr ""
8323
 
 
 
 
 
8324
  #: view/Blocks/Jorney.php:17
8325
  #, php-format
8326
  msgid "Follow the %sdaily recipe%s from below."
8377
 
8378
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
8379
  #: view/Ranking/Rankings.php:395 view/Research/Briefcase.php:256
8380
+ #: view/Research/History.php:30 view/Research/Research.php:195
8381
  #: view/Research/Suggested.php:29
8382
  msgid "Country"
8383
  msgstr ""
8384
 
8385
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
8386
+ #: view/Research/History.php:30 view/Research/Research.php:195
8387
  #: view/Research/Suggested.php:29
8388
  msgid "Co"
8389
  msgstr ""
8391
  #: view/Blocks/KRFound.php:18 view/Blocks/KRFound.php:19
8392
  #: view/Blocks/KRFound.php:64 view/Research/Briefcase.php:261
8393
  #: view/Research/HistoryDetails.php:16 view/Research/HistoryDetails.php:18
8394
+ #: view/Research/Research.php:197 view/Research/Research.php:198
8395
  #: view/Research/Suggested.php:31 view/Research/Suggested.php:32
8396
  #: view/Research/Suggested.php:81
8397
  msgid "Competition"
8398
  msgstr ""
8399
 
8400
  #: view/Blocks/KRFound.php:22 view/Blocks/KRFound.php:69
8401
+ #: view/Research/HistoryDetails.php:12 view/Research/Research.php:201
8402
  #: view/Research/Suggested.php:35 view/Research/Suggested.php:86
8403
  msgid "SEO Search Volume"
8404
  msgstr ""
8410
 
8411
  #: view/Blocks/KRFound.php:26 view/Blocks/KRFound.php:74
8412
  #: view/Research/Briefcase.php:277 view/Research/HistoryDetails.php:8
8413
+ #: view/Research/Research.php:205 view/Research/Suggested.php:39
8414
  #: view/Research/Suggested.php:91
8415
  msgid "Recent discussions"
8416
  msgstr ""
8417
 
8418
  #: view/Blocks/KRFound.php:27 view/Research/HistoryDetails.php:10
8419
+ #: view/Research/Research.php:206 view/Research/Suggested.php:40
8420
  #, fuzzy
8421
  #| msgid "Recent discussions:"
8422
  msgid "Discussion"
8424
 
8425
  #: view/Blocks/KRFound.php:30 view/Blocks/KRFound.php:31
8426
  #: view/Blocks/KRFound.php:79 view/Research/Briefcase.php:283
8427
+ #: view/Research/HistoryDetails.php:20 view/Research/Research.php:209
8428
  #: view/Research/Suggested.php:43
8429
  msgid "Trending"
8430
  msgstr ""
8457
  msgid "Go to Briefcase"
8458
  msgstr ""
8459
 
 
 
 
 
 
8460
  #: view/Blocks/KRHistory.php:6
8461
  msgid "See Research History"
8462
  msgstr ""
9034
  msgid "%sPlease connect to SquirrlyCloud first%s"
9035
  msgstr "This email connects you to Squirrly.co"
9036
 
9037
+ #: view/Blocks/Stats.php:45
9038
  msgid "Hello"
9039
  msgstr ""
9040
 
9041
+ #: view/Blocks/Stats.php:51
9042
  #, php-format
9043
  msgid "%s SEO Protection"
9044
  msgstr ""
9045
 
9046
+ #: view/Blocks/Stats.php:54
9047
  msgid "All protection layers are activated."
9048
  msgstr ""
9049
 
9050
+ #: view/Blocks/Stats.php:56
9051
  #, php-format
9052
  msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
9053
  msgstr ""
9054
 
9055
+ #: view/Blocks/Stats.php:60
9056
  msgid "How does this work?"
9057
  msgstr ""
9058
 
9059
+ #: view/Blocks/Stats.php:68
9060
  msgid "Pages SEO'ed"
9061
  msgstr ""
9062
 
9063
+ #: view/Blocks/Stats.php:74
9064
  msgid "Post Types Covered"
9065
  msgstr ""
9066
 
9067
+ #: view/Blocks/Stats.php:79 view/Goals/CheckSeo.php:102
9068
  #, php-format
9069
  msgid "%s Aspects"
9070
  msgstr ""
9071
 
9072
  # @ squirrly-seo
9073
+ #: view/Blocks/Stats.php:80 view/Goals/CheckSeo.php:103
9074
  #, fuzzy
9075
  #| msgid "Squirrly settings"
9076
  msgid "Handled by Squirrly Genius."
9077
  msgstr "Squirrly Einstellungen"
9078
 
9079
+ #: view/Blocks/Stats.php:82
9080
  msgid "Can I see them?"
9081
  msgstr ""
9082
 
9083
+ #: view/Blocks/Stats.php:86 view/Goals/Goals.php:43
9084
  msgid "Run SEO Test"
9085
  msgstr ""
9086
 
9196
  msgid "Thank you! You can send us a happy face tomorrow too."
9197
  msgstr "Danke! Sie können uns auch morgen ein fröhliches Gesicht senden."
9198
 
9199
+ #: view/Blocks/VersionBar.php:9
9200
  #, php-format
9201
  msgid ""
9202
  "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
9203
  "accurate and objective."
9204
  msgstr ""
9205
 
9206
+ #: view/Blocks/VersionBar.php:12
9207
  #, php-format
9208
  msgid ""
9209
  "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
9210
  msgstr ""
9211
 
9212
+ #: view/Blocks/VersionBar.php:18
9213
  #, php-format
9214
  msgid ""
9215
  "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
9218
  "your plan to %sBusiness Plan%s"
9219
  msgstr ""
9220
 
9221
+ #: view/Blocks/VersionBar.php:25
9222
  #, php-format
9223
  msgid ""
9224
  "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
9225
  "hour."
9226
  msgstr ""
9227
 
9228
+ #: view/Blocks/VersionBar.php:29
9229
  #, php-format
9230
  msgid ""
9231
  "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
9233
  "please upgrade your plan to %sPRO Plan%s"
9234
  msgstr ""
9235
 
9236
+ #: view/Blocks/VersionBar.php:36
9237
  #, php-format
9238
  msgid ""
9239
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
9240
  "audit for each page every 5 mins."
9241
  msgstr ""
9242
 
9243
+ #: view/Blocks/VersionBar.php:40
9244
  #, php-format
9245
  msgid ""
9246
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
9248
  "upgrade your plan to %sPRO Plan%s"
9249
  msgstr ""
9250
 
9251
+ #: view/Blocks/VersionBar.php:44
9252
+ #, php-format
9253
+ msgid ""
9254
+ "Your current plan is OLD Squirrly plan: Please read the official notes about "
9255
+ "it %shttps://www.squirrly.co/you-received-access-to-all-updates-from-"
9256
+ "squirrly-seo/%s"
9257
+ msgstr ""
9258
+
9259
+ #: view/Blocks/VersionBar.php:52
9260
  #, php-format
9261
  msgid ""
9262
  "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
9263
  "tasks to get 100%% optimized posts and pages."
9264
  msgstr ""
9265
 
9266
+ #: view/Blocks/VersionBar.php:56
9267
  #, php-format
9268
  msgid ""
9269
  "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
9271
  "Plan%s"
9272
  msgstr ""
9273
 
9274
+ #: view/Blocks/VersionBar.php:64
9275
  #, php-format
9276
  msgid ""
9277
  "%sResearch %s:%s You have %s researches left for your account. The research "
9279
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
9280
  msgstr ""
9281
 
9282
+ #: view/Blocks/VersionBar.php:68
9283
  #, php-format
9284
  msgid ""
9285
  "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
9286
  "Deep Keyword Research and get up to 50 results on each research."
9287
  msgstr ""
9288
 
9289
+ #: view/Blocks/VersionBar.php:72
9290
  #, php-format
9291
  msgid ""
9292
  "%sResearch %s:%s You have %s researches left for your account. The research "
9294
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
9295
  msgstr ""
9296
 
9297
+ #: view/Blocks/VersionBar.php:79
9298
  #, php-format
9299
  msgid ""
9300
  "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
9301
  "optimize your posts and pages."
9302
  msgstr ""
9303
 
9304
+ #: view/Blocks/VersionBar.php:84
9305
  #, php-format
9306
  msgid ""
9307
  "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
9308
  "keywords to organize the keywords by your SEO strategy."
9309
  msgstr ""
9310
 
9311
+ #: view/Blocks/VersionBar.php:90
9312
  #, php-format
9313
  msgid ""
9314
  "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
9315
  "find better matching keywords based on your research history."
9316
  msgstr ""
9317
 
9318
+ #: view/Blocks/VersionBar.php:94
9319
  #, php-format
9320
  msgid ""
9321
  "This feature is only available for PRO and Business accounts. %sTo get "
9322
  "Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s"
9323
  msgstr ""
9324
 
9325
+ #: view/Blocks/VersionBar.php:103
9326
  #, php-format
9327
  msgid ""
9328
  "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
9329
  "SEO for free."
9330
  msgstr ""
9331
 
9332
+ #: view/Blocks/VersionBar.php:109
9333
  #, php-format
9334
  msgid ""
9335
  "%sOn-Page SEO Settings:%s This feature is included in all versions of "
9336
  "Squirrly SEO for free."
9337
  msgstr ""
9338
 
9339
+ #: view/BulkSeo/Bulkseo.php:30
9340
  msgid ""
9341
  "Simplify the SEO process for all your posts types and optimize them in just "
9342
  "minutes. "
9343
  msgstr ""
9344
 
9345
+ #: view/BulkSeo/Bulkseo.php:183
9346
  #, php-format
9347
  msgid "No data for this filter. %sShow All%s records for this post type."
9348
  msgstr ""
9349
 
9350
+ #: view/BulkSeo/Bulkseo.php:185
9351
  msgid "No data found for this post type. Try other post types."
9352
  msgstr ""
9353
 
9354
+ #: view/BulkSeo/BulkseoRow.php:26
9355
  #, php-format
9356
  msgid "View &#8220;%s&#8221;"
9357
  msgstr ""
9402
  msgid "Check connection"
9403
  msgstr "Verbinden ..."
9404
 
 
 
 
 
9405
  #: view/Connect/GoogleSearchConsole.php:12
9406
  msgid "You are connected to Google Search Console"
9407
  msgstr ""
9419
  "each Audit"
9420
  msgstr ""
9421
 
 
 
 
 
 
 
 
 
9422
  #: view/Errors/Maintenance.php:20
9423
  #, php-format
9424
  msgid ""
9470
  msgid "Details"
9471
  msgstr ""
9472
 
9473
+ #: view/FocusPages/FocusPageRow.php:100
 
 
 
 
 
 
 
 
 
 
 
9474
  msgid "Currently processing data. Please refresh in a few minutes."
9475
  msgstr ""
9476
 
9477
  # @ squirrly-seo
9478
+ #: view/FocusPages/FocusPageRow.php:106 view/FocusPages/FocusPageRow.php:110
9479
+ #: view/FocusPages/FocusPageRow.php:126 view/FocusPages/FocusPages.php:54
9480
  #, fuzzy
9481
  #| msgid "Change it >>"
9482
  msgid "Chance to Rank"
9483
  msgstr "Ändern >>"
9484
 
9485
+ #: view/FocusPages/FocusPageRow.php:164
9486
  msgid "Delete Focus Page"
9487
  msgstr ""
9488
 
9582
  msgid "Don't choose your Home Page, Contact Page or About Use page."
9583
  msgstr ""
9584
 
9585
+ #: view/FocusPages/Pagelist.php:53
9586
  #, php-format
9587
  msgid ""
9588
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
9636
  msgid "Congratulations!"
9637
  msgstr ""
9638
 
 
 
 
 
9639
  #: view/Goals/Goals.php:36
9640
  #, php-format
9641
  msgid "%s goals for today"
9848
  msgid "Get a Birds-Eye-View of your Site’s Overall SEO Optimization"
9849
  msgstr ""
9850
 
 
 
 
 
9851
  #: view/Onboarding/Step1.5.php:35
9852
  msgid ""
9853
  "Accurately Track Your Rankings with Squirrly’s User-Friendly Google SERP "
10079
  "our features %s by creating a free account"
10080
  msgstr ""
10081
 
10082
+ #: view/Overview.php:43
10083
+ msgid ""
10084
+ "You do not have permission to access Daily Goals. You need Squirrly SEO "
10085
+ "Editor role."
10086
+ msgstr ""
10087
+
10088
+ #: view/Overview.php:80
10089
+ msgid "Show Advanced SEO"
10090
+ msgstr ""
10091
+
10092
+ #: view/Overview.php:81
10093
+ msgid ""
10094
+ "Switch off to have the simplified version of the settings, intended for Non-"
10095
+ "SEO Experts."
10096
+ msgstr ""
10097
+
10098
+ #: view/Overview.php:82
10099
+ msgid ""
10100
+ "It will offer the same level of SEO performance, but it will be less "
10101
+ "customizable."
10102
+ msgstr ""
10103
+
10104
+ #: view/Overview.php:94
10105
+ msgid "We Need Your Support"
10106
+ msgstr ""
10107
+
10108
+ #: view/Overview.php:103
10109
+ msgid "Rate us if you like Squirrly SEO"
10110
+ msgstr ""
10111
+
10112
  #: view/Ranking/Gscsync.php:15
10113
  msgid "Google Search Console Keywords Sync"
10114
  msgstr ""
10183
 
10184
  #: view/Ranking/Rankings.php:35
10185
  msgid ""
10186
+ "Get the Google Search Console average possitions, clicks and impressions for "
10187
+ "all organic keywords of your website."
10188
  msgstr ""
10189
 
10190
  #: view/Ranking/Rankings.php:98
11012
  msgstr "Squirrly Erweiterte Suche!"
11013
 
11014
  # @ squirrly-seo
11015
+ #: view/Research/HistoryDetails.php:22 view/Research/Research.php:210
11016
  #: view/Research/Suggested.php:44
11017
  #, fuzzy
11018
  #| msgid "Trend:"
11097
  msgstr ""
11098
 
11099
  # @ squirrly-seo
11100
+ #: view/Research/Research.php:34 view/Research/Research.php:147
11101
  #, fuzzy
11102
  #| msgid "Squirrly Keyword Research"
11103
  msgid "You've reached your Keyword Research Limit"
11104
  msgstr "Squirrly Erweiterte Suche!"
11105
 
11106
+ #: view/Research/Research.php:35 view/Research/Research.php:148
11107
  msgid "Check Your Account"
11108
  msgstr ""
11109
 
11148
  "For local SEO you need to select the Country where you run your business"
11149
  msgstr ""
11150
 
11151
+ #: view/Research/Research.php:100 view/Research/Research.php:154
11152
+ #: view/Research/Research.php:222
11153
  msgid "Start Over"
11154
  msgstr ""
11155
 
11157
  msgid "Step 3/4: Select similar keywords from below"
11158
  msgstr ""
11159
 
11160
+ #: view/Research/Research.php:109
11161
+ msgid ""
11162
+ "Each selected keyword will consume 1 credit from your keyword research "
11163
+ "credits."
11164
+ msgstr ""
11165
+
11166
  # @ default
11167
+ #: view/Research/Research.php:150
11168
  #, fuzzy, php-format
11169
  #| msgid "Squirrly could not find any results for: "
11170
  msgid "We could not find similar keywords. %sClick on \"Do research\""
11171
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
11172
 
11173
  # @ squirrly-seo
11174
+ #: view/Research/Research.php:160
11175
  #, fuzzy
11176
  #| msgid "Do a research"
11177
  msgid "Do a deep research"
11178
  msgstr "Recherchieren"
11179
 
11180
  # @ squirrly-seo
11181
+ #: view/Research/Research.php:164 view/Research/Research.php:170
11182
  #, fuzzy
11183
  #| msgid "Do a research"
11184
  msgid "Do research"
11185
  msgstr "Recherchieren"
11186
 
11187
+ #: view/Research/Research.php:178
11188
  msgid ""
11189
  "Keyword Research in progress. We're doing all of this in real-time. Data is "
11190
  "fresh."
11191
  msgstr ""
11192
 
11193
+ #: view/Research/Research.php:179
11194
  msgid "We're now finding 10 alternatives for each keyword you selected."
11195
  msgstr ""
11196
 
11197
+ #: view/Research/Research.php:180
11198
  msgid ""
11199
  "For each alternative, we are looking at the top 10 pages ranked on Google "
11200
  "for that keyword."
11201
  msgstr ""
11202
 
11203
+ #: view/Research/Research.php:181
11204
  msgid ""
11205
  "We are now measuring the web authority of each competing page and comparing "
11206
  "it to yours."
11207
  msgstr ""
11208
 
11209
+ #: view/Research/Research.php:182
11210
  msgid "Looking at the monthly search volume for each keyword."
11211
  msgstr ""
11212
 
11213
+ #: view/Research/Research.php:183
11214
  msgid "Analyzing the last 30 days of Google trends for each keyword."
11215
  msgstr ""
11216
 
11217
+ #: view/Research/Research.php:184
11218
  msgid ""
11219
  "Seeing how many discussions there are on forums and Twitter for each keyword."
11220
  msgstr ""
11221
 
11222
+ #: view/Research/Research.php:185
11223
  msgid ""
11224
  "Piecing all the keywords together now after analyzing each individual "
11225
  "keyword."
11226
  msgstr ""
11227
 
11228
+ #: view/Research/Research.php:186
11229
  msgid "Preparing the results."
11230
  msgstr ""
11231
 
11232
  # @ default
11233
+ #: view/Research/Research.php:188
11234
  #, fuzzy
11235
  #| msgid "Squirrly could not find any results for: "
11236
  msgid "Step 4/4: We found some relevant keywords for you"
11237
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
11238
 
11239
+ #: view/Research/Research.php:189
11240
  #, php-format
11241
  msgid ""
11242
  "Still processing. give it a bit more time, then go to %sResearch History%s. "
11244
  msgstr ""
11245
 
11246
  # @ default
11247
+ #: view/Research/Research.php:190
11248
  #, fuzzy
11249
  #| msgid "Squirrly could not find any results for: "
11250
  msgid "Step 4/4: We could not find relevant keywords for you"
11251
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
11252
 
11253
+ #: view/Research/Research.php:237
11254
  msgid "How to Find Amazing Keywords and get more search traffic?"
11255
  msgstr ""
11256
 
11257
  # @ squirrly-seo
11258
+ #: view/Research/Research.php:251
11259
  #, fuzzy
11260
  #| msgid "+ Add keyword"
11261
  msgid "Already Have Keywords?"
11262
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11263
 
11264
+ #: view/Research/Research.php:254
11265
  msgid "Import Keywords From CSV"
11266
  msgstr ""
11267
 
11319
  msgid "For compatibility with some Cache and CDN plugins."
11320
  msgstr ""
11321
 
11322
+ #: view/SeoSettings/Advanced.php:76
11323
  msgid "Delete Squirrly Table on Uninstall"
11324
  msgstr ""
11325
 
11326
+ #: view/SeoSettings/Advanced.php:77
11327
  msgid "Delete Squirrly SEO table and options on uninstall."
11328
  msgstr ""
11329
 
11608
  msgid "JSON-LD Description Length"
11609
  msgstr ""
11610
 
11611
+ #: view/SeoSettings/Backup.php:7 view/SeoSettings/Jsonld.php:7
11612
+ msgid ""
11613
+ "You do not have permission to access this page. You need Squirrly SEO Admin "
11614
+ "role"
11615
+ msgstr ""
11616
+
11617
  #: view/SeoSettings/Backup.php:23
11618
  msgid "Import Settings & SEO"
11619
  msgstr ""
11743
  msgid "Website Icon"
11744
  msgstr "Ändern Sie das Website-Symbol"
11745
 
 
 
 
 
 
 
11746
  #: view/SeoSettings/Favicon.php:35
11747
  msgid "Activate Favicon"
11748
  msgstr ""
12373
 
12374
  #: view/SeoSettings/Social.php:271
12375
  msgid ""
12376
+ "Add the Twitter Card in your tweets so that your Twitter shares look good."
12377
  msgstr ""
12378
 
12379
  #: view/SeoSettings/Social.php:272
12586
  "Pinterest account. Visit the %sRich Pins Validator%s"
12587
  msgstr ""
12588
 
12589
+ #, fuzzy
12590
+ #~| msgid "Optimize for Keyword"
12591
+ #~ msgid "Optimize the page for a keyword"
12592
+ #~ msgstr "Schlüsselwort optimieren"
12593
+
12594
  # @ squirrly-seo
12595
  #, fuzzy
12596
  #~| msgid "Squirrly settings"
languages/squirrly-seo-en_US.mo CHANGED
Binary file
languages/squirrly-seo-en_US.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2020-05-11 08:57+0300\n"
5
- "PO-Revision-Date: 2020-05-11 08:57+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en_US\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 2.2.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -19,213 +19,213 @@ msgstr ""
19
  msgid "Don't bother me!"
20
  msgstr ""
21
 
22
- #: classes/RemoteController.php:257
23
  msgid "Too many API attempts, please slow down the request."
24
  msgstr ""
25
 
26
- #: classes/RemoteController.php:261
27
  msgid ""
28
  "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
29
  "in a minute."
30
  msgstr ""
31
 
32
- #: classes/RemoteController.php:320
33
  msgid "Articles optimized so far"
34
  msgstr ""
35
 
36
- #: classes/RemoteController.php:322 classes/RemoteController.php:329
37
  msgid "add post"
38
  msgstr ""
39
 
40
- #: classes/RemoteController.php:327
41
  msgid "Average optimization"
42
  msgstr ""
43
 
44
- #: classes/RemoteController.php:334
45
  msgid "Keyword Researches"
46
  msgstr ""
47
 
48
- #: classes/RemoteController.php:336
49
  msgid "do research"
50
  msgstr ""
51
 
52
- #: classes/RemoteController.php:341
53
  msgid "Keywords stored in Squirrly Briefcase"
54
  msgstr ""
55
 
56
- #: classes/RemoteController.php:343
57
  msgid "add keyword"
58
  msgstr ""
59
 
60
- #: classes/RemoteController.php:348
61
  msgid "Pages ranking in top 100 Google"
62
  msgstr ""
63
 
64
- #: classes/RemoteController.php:350
65
  msgid "see rankings"
66
  msgstr ""
67
 
68
- #: classes/RemoteController.php:355
69
  msgid "SEO Audits"
70
  msgstr ""
71
 
72
- #: classes/RemoteController.php:357
73
  msgid "see audits"
74
  msgstr ""
75
 
76
- #: classes/RemoteController.php:1250
77
  msgid "Keyword:"
78
  msgstr ""
79
 
80
- #: classes/RemoteController.php:1251
81
  msgid "date"
82
  msgstr ""
83
 
84
- #: classes/RemoteController.php:1252 controllers/CheckSeo.php:317
85
  #: controllers/Patterns.php:16 controllers/Research.php:259
86
  #: controllers/Research.php:290 controllers/Research.php:344
87
  #: controllers/Research.php:654
88
  msgid "Saved!"
89
  msgstr ""
90
 
91
- #: classes/RemoteController.php:1253
92
  msgid "Read it!"
93
  msgstr ""
94
 
95
- #: classes/RemoteController.php:1254
96
  msgid "Insert it!"
97
  msgstr ""
98
 
99
- #: classes/RemoteController.php:1255
100
  msgid "Reference"
101
  msgstr ""
102
 
103
- #: classes/RemoteController.php:1256
104
  msgid "Insert as box"
105
  msgstr ""
106
 
107
- #: classes/RemoteController.php:1257
108
  msgid "Insert Link"
109
  msgstr ""
110
 
111
- #: classes/RemoteController.php:1258
112
  msgid "Not relevant?"
113
  msgstr ""
114
 
115
- #: classes/RemoteController.php:1259
116
  msgid "Insert in your article"
117
  msgstr ""
118
 
119
- #: classes/RemoteController.php:1260
120
  msgid ":( An error occurred while processing your request. Please try again"
121
  msgstr ""
122
 
123
- #: classes/RemoteController.php:1261
124
  msgid "No results found!"
125
  msgstr ""
126
 
127
- #: classes/RemoteController.php:1262
128
  #, php-format
129
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
130
  msgstr ""
131
 
132
- #: classes/RemoteController.php:1263
133
  msgid "Has creative commons attributes"
134
  msgstr ""
135
 
136
- #: classes/RemoteController.php:1264
137
  msgid "No known copyright restrictions"
138
  msgstr ""
139
 
140
- #: classes/RemoteController.php:1265
141
  msgid ""
142
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
143
  "optimize for a keyword before publishing?"
144
  msgstr ""
145
 
146
- #: classes/RemoteController.php:1266
147
  msgid "Your Subscription has Expired"
148
  msgstr ""
149
 
150
- #: classes/RemoteController.php:1267
151
  msgid "There are no keywords saved in briefcase yet"
152
  msgstr ""
153
 
154
- #: classes/RemoteController.php:1268
155
  #, php-format
156
  msgid "Congratulations! Your article is 100% optimized!"
157
  msgstr ""
158
 
159
- #: classes/RemoteController.php:1269
160
  #, php-format
161
  msgid "appears too many times. Try to remove %s of them"
162
  msgstr ""
163
 
164
- #: classes/RemoteController.php:1270
165
  #, php-format
166
  msgid "write %s more words"
167
  msgstr ""
168
 
169
- #: classes/RemoteController.php:1271
170
  #, php-format
171
  msgid "Add the keyword in the %s of your article"
172
  msgstr ""
173
 
174
- #: classes/RemoteController.php:1272
175
  msgid "Click to keep the highlight on"
176
  msgstr ""
177
 
178
- #: classes/RemoteController.php:1273
179
  msgid "introduction"
180
  msgstr ""
181
 
182
- #: classes/RemoteController.php:1274
183
  #, php-format
184
  msgid "Write more words after the %s keyword"
185
  msgstr ""
186
 
187
- #: classes/RemoteController.php:1275
188
  msgid "or use synonyms"
189
  msgstr ""
190
 
191
- #: classes/RemoteController.php:1276
192
  #, php-format
193
  msgid "add %s more word(s)"
194
  msgstr ""
195
 
196
- #: classes/RemoteController.php:1277
197
  #, php-format
198
  msgid "or remove %s word(s)"
199
  msgstr ""
200
 
201
- #: classes/RemoteController.php:1278
202
  #, php-format
203
  msgid "add %s more keyword(s)"
204
  msgstr ""
205
 
206
- #: classes/RemoteController.php:1279
207
  #, php-format
208
  msgid "write %s more words to start calculating"
209
  msgstr ""
210
 
211
- #: classes/RemoteController.php:1280 view/Research/Research.php:48
212
  msgid "Add to Briefcase"
213
  msgstr ""
214
 
215
- #: classes/RemoteController.php:1281
216
  msgid "Add Keyword to Briefcase"
217
  msgstr ""
218
 
219
- #: classes/RemoteController.php:1282
220
  msgid "Select"
221
  msgstr ""
222
 
223
- #: classes/RemoteController.php:1283 view/Blocks/Snippet.php:136
224
  #: view/Blocks/Snippet.php:509 view/Blocks/Snippet.php:765
225
  msgid "Auto Draft"
226
  msgstr ""
227
 
228
- #: classes/RemoteController.php:1284
229
  msgid ""
230
  "You’ve already used the Live Assistant to optimize this post when creating "
231
  "it in your Page Builder. Please go back and resume your optimization work "
@@ -268,59 +268,59 @@ msgstr "The code for Facebook Pixel must only contain numbers."
268
  msgid "The code for Facebook App must only contain numbers."
269
  msgstr "The code for Facebook App must only contain numbers."
270
 
271
- #: classes/helpers/Tools.php:80
272
  msgid "Getting started"
273
  msgstr ""
274
 
275
- #: classes/helpers/Tools.php:105
276
  msgid "Documentation"
277
  msgstr ""
278
 
279
- #: classes/helpers/Tools.php:106
280
  msgid "Leave a review"
281
  msgstr ""
282
 
283
- #: classes/helpers/Tools.php:405
284
  msgid "Format"
285
  msgstr ""
286
 
287
- #: classes/helpers/Tools.php:423 classes/helpers/Tools.php:459
288
  msgid "Category"
289
  msgstr ""
290
 
291
- #: classes/helpers/Tools.php:441 classes/helpers/Tools.php:477
292
  msgid "Tag"
293
  msgstr ""
294
 
295
- #: classes/helpers/Tools.php:495
296
  msgid "Shipping Option"
297
  msgstr ""
298
 
299
- #: classes/helpers/Tools.php:513
300
  msgid "Author at"
301
  msgstr ""
302
 
303
- #: classes/helpers/Tools.php:585
304
  msgid "Are you looking for"
305
  msgstr ""
306
 
307
- #: classes/helpers/Tools.php:586
308
  msgid "These are the results for"
309
  msgstr ""
310
 
311
- #: classes/helpers/Tools.php:586
312
  msgid "that you can find on our website."
313
  msgstr ""
314
 
315
- #: classes/helpers/Tools.php:620
316
  msgid "Page not found"
317
  msgstr ""
318
 
319
- #: classes/helpers/Tools.php:621
320
  msgid "This page could not be found on our website."
321
  msgstr ""
322
 
323
- #: classes/helpers/Tools.php:889
324
  msgid "For better text comparison you need to install PHP mbstring extension."
325
  msgstr ""
326
 
@@ -464,7 +464,7 @@ msgid "No keyword found."
464
  msgstr ""
465
 
466
  #: controllers/Assistant.php:102 controllers/Assistant.php:129
467
- #: controllers/Audits.php:324 controllers/Ranking.php:134
468
  #: controllers/SeoSettings.php:149 controllers/SeoSettings.php:166
469
  #: controllers/SeoSettings.php:187 controllers/SeoSettings.php:224
470
  #: controllers/SeoSettings.php:250 controllers/SeoSettings.php:278
@@ -474,8 +474,8 @@ msgid "Saved"
474
  msgstr ""
475
 
476
  #: controllers/Assistant.php:108 controllers/BulkSeo.php:69
477
- #: controllers/Patterns.php:100 controllers/Post.php:246
478
- #: controllers/Post.php:299 controllers/Post.php:331 controllers/Post.php:366
479
  #: controllers/PostsList.php:182 controllers/Research.php:172
480
  #: controllers/Research.php:179 controllers/Research.php:217
481
  #: controllers/Research.php:240 controllers/Research.php:270
@@ -487,7 +487,7 @@ msgstr ""
487
  #: controllers/SeoSettings.php:543 controllers/SeoSettings.php:568
488
  #: controllers/SeoSettings.php:605 controllers/SeoSettings.php:642
489
  #: controllers/SeoSettings.php:656 controllers/SeoSettings.php:678
490
- #: controllers/SeoSettings.php:699 controllers/Snippet.php:159
491
  msgid "You do not have permission to perform this action"
492
  msgstr ""
493
 
@@ -499,39 +499,39 @@ msgstr ""
499
  msgid "The audit was not found. Please load another audit."
500
  msgstr ""
501
 
502
- #: controllers/Audits.php:203
503
  msgid "Could not load the Audit Page."
504
  msgstr ""
505
 
506
- #: controllers/Audits.php:265
507
  msgid "Audit page is added. The audit may take a while so please be patient."
508
  msgstr ""
509
 
510
- #: controllers/Audits.php:268
511
  msgid "You reached the maximum number of audit pages for your account."
512
  msgstr ""
513
 
514
- #: controllers/Audits.php:271
515
  msgid "Error! Could not add the audit page."
516
  msgstr ""
517
 
518
- #: controllers/Audits.php:275
519
  msgid "Error! Could not find the audit page in your website."
520
  msgstr ""
521
 
522
- #: controllers/Audits.php:285
523
  msgid "Audit page sent for recheck. It may take a while so please be patient."
524
  msgstr ""
525
 
526
- #: controllers/Audits.php:288 controllers/Audits.php:291
527
  msgid "The audit for all pages can be made once an hour."
528
  msgstr ""
529
 
530
- #: controllers/Audits.php:301
531
  msgid "The audit page is deleted"
532
  msgstr ""
533
 
534
- #: controllers/Audits.php:303 controllers/FocusPages.php:383
535
  #: controllers/Ranking.php:161 controllers/Ranking.php:179
536
  #: controllers/Ranking.php:197 controllers/Research.php:208
537
  #: controllers/Research.php:211 controllers/Research.php:234
@@ -542,7 +542,7 @@ msgstr ""
542
  msgid "Invalid params!"
543
  msgstr ""
544
 
545
- #: controllers/Audits.php:326
546
  msgid "Not a valid email address"
547
  msgstr ""
548
 
@@ -562,99 +562,99 @@ msgstr ""
562
  msgid "Saved! Task marked as done."
563
  msgstr ""
564
 
565
- #: controllers/FocusPages.php:256
566
  #, fuzzy
567
  #| msgid "Focus Page does not exists or was deleted from your website."
568
  msgid "Focus Page does not exist or was deleted from your website."
569
  msgstr "Focus Page does not exist or was deleted from your website."
570
 
571
- #: controllers/FocusPages.php:314
572
  msgid "Focus page is added. The audit may take a while so please be patient."
573
  msgstr ""
574
 
575
- #: controllers/FocusPages.php:321
576
  msgid "You reached the maximum number of focus pages for all your websites."
577
  msgstr ""
578
 
579
- #: controllers/FocusPages.php:324
580
  msgid "Error! Could not add the focus page."
581
  msgstr ""
582
 
583
- #: controllers/FocusPages.php:327
584
  msgid "Error! This focus page is not public."
585
  msgstr ""
586
 
587
- #: controllers/FocusPages.php:331 controllers/FocusPages.php:370
588
  msgid "Error! Could not find the focus page in your website."
589
  msgstr ""
590
 
591
- #: controllers/FocusPages.php:358
592
  msgid "Focus page sent for recheck. It may take a while so please be patient."
593
  msgstr ""
594
 
595
- #: controllers/FocusPages.php:361 controllers/FocusPages.php:365
596
  #, fuzzy
597
  #| msgid "Too many requests, please wait 5 minutes."
598
  msgid "You've made too many requests, please wait a few minutes."
599
  msgstr "You've made too many requests, please wait a few minutes. "
600
 
601
- #: controllers/FocusPages.php:381
602
  msgid "The focus page is deleted"
603
  msgstr ""
604
 
605
- #: controllers/Menu.php:126
606
  #, php-format
607
  msgid ""
608
  "An error occurred during activation. If this error persists, please contact "
609
  "us at: %s"
610
  msgstr ""
611
 
612
- #: controllers/Menu.php:163
613
  msgid "Dashboard"
614
  msgstr ""
615
 
616
- #: controllers/Menu.php:188 controllers/Menu.php:287 controllers/Menu.php:322
617
  #: view/Blocks/SLASearch.php:7
618
  msgid "Squirrly SEO"
619
  msgstr ""
620
 
621
- #: controllers/Menu.php:256
622
  msgid "SEO Snippet"
623
  msgstr ""
624
 
625
- #: controllers/Menu.php:265 controllers/Snippet.php:130
626
  msgid "Custom SEO"
627
  msgstr ""
628
 
629
- #: controllers/Menu.php:330
630
  msgid "Squirrly Onboarding"
631
  msgstr ""
632
 
633
- #: controllers/Menu.php:331
634
  msgid "Onboarding"
635
  msgstr ""
636
 
637
- #: controllers/Menu.php:360
638
  msgid "Import & Export SEO"
639
  msgstr ""
640
 
641
- #: controllers/Menu.php:361 view/SeoSettings/Backup.php:88
642
  msgid "Import SEO"
643
  msgstr ""
644
 
645
- #: controllers/Menu.php:371
646
  msgid "Squirrly Account Info"
647
  msgstr ""
648
 
649
- #: controllers/Menu.php:372
650
  msgid "Account Info"
651
  msgstr ""
652
 
653
- #: controllers/Menu.php:381
654
  msgid "Squirrly How To & Support"
655
  msgstr ""
656
 
657
- #: controllers/Menu.php:382
658
  msgid "Help & Support"
659
  msgstr ""
660
 
@@ -662,15 +662,15 @@ msgstr ""
662
  msgid "Saved! This is how the preview looks like"
663
  msgstr ""
664
 
665
- #: controllers/Post.php:293
666
  msgid "Could not add the demo post."
667
  msgstr ""
668
 
669
- #: controllers/Post.php:355 controllers/Post.php:380
670
  msgid "Can't get the post URL"
671
  msgstr ""
672
 
673
- #: controllers/Post.php:385
674
  msgid "Invalid request"
675
  msgstr ""
676
 
@@ -862,7 +862,7 @@ msgstr ""
862
  msgid "Squirrly SEO Snippet"
863
  msgstr ""
864
 
865
- #: controllers/Snippet.php:177
866
  msgid "Could not save the data"
867
  msgstr ""
868
 
@@ -1207,7 +1207,7 @@ msgid ""
1207
  msgstr ""
1208
 
1209
  #: models/Assistant.php:163 models/focuspages/Accuracy.php:45
1210
- #: models/focuspages/Traffic.php:100 models/focuspages/Traffic.php:105
1211
  msgid "Connect Google Analytics"
1212
  msgstr ""
1213
 
@@ -1856,7 +1856,7 @@ msgstr ""
1856
  msgid "Add meta description to this page of your site"
1857
  msgstr "A short description about your job title."
1858
 
1859
- #: models/Audits.php:156 models/bulkseo/Metas.php:92
1860
  msgid "Meta Keyword"
1861
  msgstr ""
1862
 
@@ -1883,7 +1883,7 @@ msgstr ""
1883
  msgid "Make sure that the search for your keywords is on a rising trend"
1884
  msgstr ""
1885
 
1886
- #: models/Audits.php:166 models/bulkseo/Metas.php:97
1887
  msgid "Canonical Link"
1888
  msgstr ""
1889
 
@@ -4625,44 +4625,44 @@ msgstr ""
4625
  msgid "You got better Score for your Audit"
4626
  msgstr ""
4627
 
4628
- #: models/CheckSeo.php:1475
4629
  msgid "Could not verify the frontend."
4630
  msgstr ""
4631
 
4632
- #: models/CheckSeo.php:1842
4633
  msgid "Just another WordPress site"
4634
  msgstr ""
4635
 
4636
- #: models/CheckSeo.php:1969
4637
  #, php-format
4638
  msgid "Focus Page was not found (error %s)"
4639
  msgstr ""
4640
 
4641
- #: models/CheckSeo.php:1970
4642
  msgid ""
4643
- "Task details: The way your WordPress site is currently hosted can affect the "
4644
- "way Squirrly SEO operates in order to retrieve and process data about your "
4645
- "Focus Pages. It’s important to do everything on your end to ensure that the "
4646
- "Focus Pages audits can be generated by our system."
4647
  msgstr ""
4648
 
4649
- #: models/CheckSeo.php:1971 models/CheckSeo.php:1990
4650
  msgid ""
4651
  "Use a different browser to check if your Focus Page is visible. Whitelist "
4652
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
4653
  "page so that you’ll receive a full audit."
4654
  msgstr ""
4655
 
4656
- #: models/CheckSeo.php:1972
4657
  msgid "An error is preventing Squirrly from processing your Focus Page audits."
4658
  msgstr ""
4659
 
4660
- #: models/CheckSeo.php:1979
4661
  #, php-format
4662
  msgid "Your Focus Page is redirected to another page (error %s)"
4663
  msgstr ""
4664
 
4665
- #: models/CheckSeo.php:1980
4666
  #, php-format
4667
  msgid ""
4668
  "Right now, your Focus Page sends users and search engines to a different URL "
@@ -4674,23 +4674,23 @@ msgid ""
4674
  "operates."
4675
  msgstr ""
4676
 
4677
- #: models/CheckSeo.php:1981
4678
  msgid ""
4679
  "Choose a page that does NOT redirect to a different page as your Focus Page. "
4680
  "Your Focus Page should have a single URL associated to it so that Squirrly "
4681
  "can serve you the best data."
4682
  msgstr ""
4683
 
4684
- #: models/CheckSeo.php:1982
4685
  msgid "Make sure that your Focus Page is NOT redirected to a different page."
4686
  msgstr ""
4687
 
4688
- #: models/CheckSeo.php:1988
4689
  #, php-format
4690
  msgid "Ensure your Focus Pages can be accessed (error %s)"
4691
  msgstr ""
4692
 
4693
- #: models/CheckSeo.php:1989
4694
  #, php-format
4695
  msgid ""
4696
  "A server-side error is preventing Squirrly from being able to access and "
@@ -4700,16 +4700,16 @@ msgid ""
4700
  "page, which is a critical issue."
4701
  msgstr ""
4702
 
4703
- #: models/CheckSeo.php:1991
4704
  msgid "A server-side error is preventing your Focus Pages from being accessed."
4705
  msgstr ""
4706
 
4707
- #: models/CheckSeo.php:1996
4708
  #, php-format
4709
  msgid "Make sure your Focus Pages can be audited (error %s)"
4710
  msgstr ""
4711
 
4712
- #: models/CheckSeo.php:1997
4713
  msgid ""
4714
  "Squirrly is unable to generate the audit for your Focus Page because it "
4715
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
@@ -4717,30 +4717,52 @@ msgid ""
4717
  "Squirrly’s IP address."
4718
  msgstr ""
4719
 
4720
- #: models/CheckSeo.php:1998
4721
  msgid ""
4722
  "Check to see if your WordPress site’s server is offline. Whitelist our "
4723
  "crawler IP address (176.9.112.210) to allow our server to verify your page "
4724
  "so that you’ll receive a full audit."
4725
  msgstr ""
4726
 
4727
- #: models/CheckSeo.php:1999
4728
  msgid ""
4729
  "An error prevents Squirrly from gathering critical data about your Focus "
4730
  "Page."
4731
  msgstr ""
4732
 
4733
- #: models/FocusPages.php:21 models/bulkseo/Metas.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4734
  #: models/focuspages/Clicks.php:64 models/focuspages/Content.php:88
4735
  #: models/focuspages/Ctr.php:64 models/focuspages/Image.php:80
4736
  #: models/focuspages/Impressions.php:64 models/focuspages/Keyword.php:103
4737
- #: models/focuspages/Keyword.php:106 models/focuspages/Snippet.php:149
4738
  #: models/focuspages/Strategy.php:102 view/Blocks/KRFound.php:15
4739
  #: view/Blocks/KRHistory.php:15 view/Ranking/Gscsync.php:31
4740
  #: view/Ranking/Rankings.php:210 view/Ranking/Rankings.php:348
4741
  #: view/Research/Briefcase.php:107 view/Research/Briefcase.php:247
4742
  #: view/Research/History.php:29 view/Research/HistoryDetails.php:7
4743
- #: view/Research/Research.php:192 view/Research/Suggested.php:28
4744
  msgid "Keyword"
4745
  msgstr ""
4746
 
@@ -4859,7 +4881,7 @@ msgstr ""
4859
  msgid " Research"
4860
  msgstr ""
4861
 
4862
- #: models/Menu.php:139
4863
  msgid "Live Assistant"
4864
  msgstr ""
4865
 
@@ -4883,8 +4905,8 @@ msgstr ""
4883
  msgid " SEO Settings"
4884
  msgstr ""
4885
 
4886
- #: models/Menu.php:163 models/Menu.php:250 view/Blocks/FocusPages.php:6
4887
- #: view/FocusPages/Pagelist.php:23
4888
  msgid "Focus Pages"
4889
  msgstr ""
4890
 
@@ -4892,7 +4914,7 @@ msgstr ""
4892
  msgid " Focus Pages"
4893
  msgstr ""
4894
 
4895
- #: models/Menu.php:171 view/Blocks/Audits.php:6
4896
  msgid "SEO Audit"
4897
  msgstr ""
4898
 
@@ -5009,7 +5031,6 @@ msgid "Ranking settings"
5009
  msgstr ""
5010
 
5011
  #: models/Menu.php:312 view/BulkSeo/Bulkseo.php:29
5012
- #: view/SeoSettings/Bulkseo.php:25
5013
  msgid "Bulk SEO"
5014
  msgstr ""
5015
 
@@ -5309,12 +5330,11 @@ msgid ""
5309
  msgstr ""
5310
 
5311
  #: models/Post.php:262 models/focuspages/Snippet.php:89
5312
- #: models/focuspages/Snippet.php:205 models/focuspages/Snippet.php:227
5313
  #: view/Audits/Addpage.php:131 view/Blocks/Snippet.php:171
5314
  #: view/Blocks/Snippet.php:570 view/Blocks/Snippet.php:825
5315
  #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:132
5316
- #: view/SeoSettings/Automation.php:125 view/SeoSettings/Bulkseo.php:138
5317
- #: view/SeoSettings/Metas.php:157
5318
  msgid "Title"
5319
  msgstr ""
5320
 
@@ -5465,16 +5485,16 @@ msgstr ""
5465
  msgid "Current"
5466
  msgstr ""
5467
 
5468
- #: models/bulkseo/Metas.php:55
5469
  msgid "Title not empty"
5470
  msgstr ""
5471
 
5472
- #: models/bulkseo/Metas.php:56 view/Blocks/Snippet.php:187
5473
  #: view/Blocks/Snippet.php:586 view/Blocks/Snippet.php:841
5474
  msgid "Current Title"
5475
  msgstr ""
5476
 
5477
- #: models/bulkseo/Metas.php:58
5478
  #, php-format
5479
  msgid ""
5480
  "The title for this URL must not be empty. %s Write a title for this page. "
@@ -5483,25 +5503,25 @@ msgid ""
5483
  "more clicks you can get when people find your page on search engines."
5484
  msgstr ""
5485
 
5486
- #: models/bulkseo/Metas.php:61
5487
  #, php-format
5488
  msgid "Title up to %s chars"
5489
  msgstr ""
5490
 
5491
- #: models/bulkseo/Metas.php:62
5492
  #, fuzzy
5493
  #| msgid "Json-LD Title Length"
5494
  msgid "Current Title Length"
5495
  msgstr "JSON-LD Title Length"
5496
 
5497
- #: models/bulkseo/Metas.php:63 models/bulkseo/Metas.php:81
5498
- #: models/bulkseo/Opengraph.php:72 models/bulkseo/Opengraph.php:82
5499
- #: models/bulkseo/Twittercard.php:69 models/bulkseo/Twittercard.php:79
5500
  msgid "chars"
5501
  msgstr ""
5502
 
5503
- #: models/bulkseo/Metas.php:64 models/bulkseo/Opengraph.php:73
5504
- #: models/bulkseo/Twittercard.php:70
5505
  #, fuzzy, php-format
5506
  #| msgid ""
5507
  #| "Title length has to be bigger than %s chars and up to %s chars. %s You "
@@ -5513,19 +5533,19 @@ msgstr ""
5513
  "Title has to be longer than %s chars and up to %s chars. %s You can change "
5514
  "the title max length from %sSEO Settings > Automation%s."
5515
 
5516
- #: models/bulkseo/Metas.php:67 models/focuspages/Snippet.php:100
5517
  msgid "Keyword in title"
5518
  msgstr ""
5519
 
5520
- #: models/bulkseo/Metas.php:68 models/bulkseo/Metas.php:86
5521
  msgid "Squirrly Keyword"
5522
  msgstr ""
5523
 
5524
- #: models/bulkseo/Metas.php:69 models/bulkseo/Metas.php:87
5525
  msgid "no keywords"
5526
  msgstr ""
5527
 
5528
- #: models/bulkseo/Metas.php:70 models/focuspages/Snippet.php:102
5529
  #, php-format
5530
  msgid ""
5531
  "Your keyword must be present in the title of the page. %s It's a very "
@@ -5537,16 +5557,16 @@ msgid ""
5537
  "VectorWatch\" would be a much better choice for a title."
5538
  msgstr ""
5539
 
5540
- #: models/bulkseo/Metas.php:73
5541
  msgid "Description not empty"
5542
  msgstr ""
5543
 
5544
- #: models/bulkseo/Metas.php:74 view/Blocks/Snippet.php:239
5545
  #: view/Blocks/Snippet.php:630 view/Blocks/Snippet.php:885
5546
  msgid "Current Description"
5547
  msgstr ""
5548
 
5549
- #: models/bulkseo/Metas.php:76
5550
  #, php-format
5551
  msgid ""
5552
  "Meta descriptions are important for SEO on multiple search engines. %s You "
@@ -5555,19 +5575,19 @@ msgid ""
5555
  "on search engines."
5556
  msgstr ""
5557
 
5558
- #: models/bulkseo/Metas.php:79
5559
  #, php-format
5560
  msgid "Description up to %s chars"
5561
  msgstr ""
5562
 
5563
- #: models/bulkseo/Metas.php:80
5564
  #, fuzzy
5565
  #| msgid "Json-LD Description Length"
5566
  msgid "Current Description Length"
5567
  msgstr "JSON-LD Description Length"
5568
 
5569
- #: models/bulkseo/Metas.php:82 models/bulkseo/Opengraph.php:83
5570
- #: models/bulkseo/Twittercard.php:80
5571
  #, fuzzy, php-format
5572
  #| msgid ""
5573
  #| "Description length has to be bigger than %s chars and up to %s chars. %s "
@@ -5580,11 +5600,11 @@ msgstr ""
5580
  "Description has to be longer than %s chars and up to %s chars. %s You can "
5581
  "change the description max length from %sSEO Settings > Automation%s."
5582
 
5583
- #: models/bulkseo/Metas.php:85 models/focuspages/Snippet.php:105
5584
  msgid "Keyword in description"
5585
  msgstr ""
5586
 
5587
- #: models/bulkseo/Metas.php:88
5588
  #, fuzzy, php-format
5589
  #| msgid ""
5590
  #| "Same as with the title task. %s If a user reads the description of your "
@@ -5612,27 +5632,27 @@ msgstr ""
5612
  "description of the pages it brings to TOP 10. It's pretty clear they care a "
5613
  "lot about this, because that's what people want to find on the search engine."
5614
 
5615
- #: models/bulkseo/Metas.php:91
5616
  msgid "Meta Keywords (2-4 Words)"
5617
  msgstr ""
5618
 
5619
- #: models/bulkseo/Metas.php:93
5620
  #, fuzzy
5621
  #| msgid "categorise the keywords"
5622
  msgid "no meta keywords"
5623
  msgstr "group keywords "
5624
 
5625
- #: models/bulkseo/Metas.php:94
5626
  msgid ""
5627
  "Even if Meta keywords are not mandatory for Google, it's important for other "
5628
  "search engines to find this meta and to index your post for these keywords."
5629
  msgstr ""
5630
 
5631
- #: models/bulkseo/Metas.php:98
5632
  msgid "Current Link"
5633
  msgstr ""
5634
 
5635
- #: models/bulkseo/Metas.php:100
5636
  #, php-format
5637
  msgid ""
5638
  "You don't have to set any canonical link if your post is not copied from "
@@ -5642,28 +5662,28 @@ msgid ""
5642
  "gets indexed and ranked."
5643
  msgstr ""
5644
 
5645
- #: models/bulkseo/Metas.php:109
5646
  msgid "Some Squirrly Metas are deactivated."
5647
  msgstr ""
5648
 
5649
- #: models/bulkseo/Metas.php:114
5650
- #, fuzzy
5651
- #| msgid "Some Squirrly Metas are not set corretly."
5652
- msgid "Some Squirrly Metas are not set correctly."
5653
- msgstr "Some Squirrly Metas are not set correctly."
5654
 
5655
- #: models/bulkseo/Metas.php:119
5656
  msgid "Some Squirrly Metas are generated automatically."
5657
  msgstr ""
5658
 
5659
- #: models/bulkseo/Metas.php:122
5660
  #, fuzzy
5661
  #| msgid "All Squirrly Metas are customized and set corretly."
5662
  msgid "All Squirrly Metas are customized and set correctly."
5663
  msgstr "All Squirrly Metas are customized and set correctly."
5664
 
5665
- #: models/bulkseo/Metas.php:133 models/bulkseo/Opengraph.php:125
5666
- #: models/bulkseo/Twittercard.php:122 models/bulkseo/Visibility.php:69
5667
  #: models/focuspages/Accuracy.php:34 models/focuspages/Audit.php:144
5668
  #: models/focuspages/Authority.php:33 models/focuspages/Backlinks.php:46
5669
  #: models/focuspages/Clicks.php:56 models/focuspages/Content.php:75
@@ -5672,87 +5692,87 @@ msgstr "All Squirrly Metas are customized and set correctly."
5672
  #: models/focuspages/Innerlinks.php:64 models/focuspages/Keyword.php:79
5673
  #: models/focuspages/Length.php:55 models/focuspages/Nofollow.php:65
5674
  #: models/focuspages/Onpage.php:78 models/focuspages/Ranking.php:35
5675
- #: models/focuspages/Snippet.php:143 models/focuspages/Social.php:56
5676
  #: models/focuspages/Strategy.php:96 models/focuspages/Traffic.php:94
5677
  msgid "Current URL"
5678
  msgstr ""
5679
 
5680
- #: models/bulkseo/Metas.php:139
5681
  msgid "No Meta Keyword Found"
5682
  msgstr ""
5683
 
5684
- #: models/bulkseo/Metas.php:155 models/bulkseo/Metas.php:191
5685
- #: models/bulkseo/Metas.php:224 models/bulkseo/Metas.php:268
5686
- #: models/bulkseo/Metas.php:304 models/bulkseo/Metas.php:337
5687
- #: models/bulkseo/Metas.php:385 models/bulkseo/Metas.php:424
5688
- #: models/bulkseo/Opengraph.php:139 models/bulkseo/Opengraph.php:175
5689
- #: models/bulkseo/Opengraph.php:207 models/bulkseo/Opengraph.php:243
5690
- #: models/bulkseo/Opengraph.php:279 models/bulkseo/Twittercard.php:136
5691
- #: models/bulkseo/Twittercard.php:172 models/bulkseo/Twittercard.php:204
5692
- #: models/bulkseo/Twittercard.php:240 models/bulkseo/Twittercard.php:276
5693
  #: models/bulkseo/Visibility.php:83 models/bulkseo/Visibility.php:122
5694
  #: models/bulkseo/Visibility.php:155
5695
  msgid "Squirrly Snippet is deactivated from this post."
5696
  msgstr ""
5697
 
5698
- #: models/bulkseo/Metas.php:159 models/bulkseo/Metas.php:195
5699
- #: models/bulkseo/Metas.php:228 models/bulkseo/Metas.php:272
5700
- #: models/bulkseo/Metas.php:308 models/bulkseo/Metas.php:341
5701
- #: models/bulkseo/Metas.php:389 models/bulkseo/Metas.php:428
5702
  #, php-format
5703
  msgid ""
5704
  "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
5705
  "%s."
5706
  msgstr ""
5707
 
5708
- #: models/bulkseo/Metas.php:163 models/bulkseo/Metas.php:199
5709
- #: models/bulkseo/Metas.php:232
5710
  #, php-format
5711
  msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
5712
  msgstr ""
5713
 
5714
- #: models/bulkseo/Metas.php:167 models/bulkseo/Metas.php:203
5715
- #: models/bulkseo/Metas.php:236 models/bulkseo/Metas.php:280
5716
- #: models/bulkseo/Metas.php:316 models/bulkseo/Metas.php:349
5717
- #: models/bulkseo/Metas.php:393 models/bulkseo/Metas.php:436
5718
  #, php-format
5719
  msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
5720
  msgstr ""
5721
 
5722
- #: models/bulkseo/Metas.php:176 models/bulkseo/Metas.php:212
5723
- #: models/bulkseo/Opengraph.php:160 models/bulkseo/Opengraph.php:196
5724
- #: models/bulkseo/Twittercard.php:157 models/bulkseo/Twittercard.php:193
5725
  msgid "Title is generated automatically."
5726
  msgstr ""
5727
 
5728
- #: models/bulkseo/Metas.php:240 models/bulkseo/Metas.php:353
5729
- #: models/bulkseo/Metas.php:397
5730
  #, php-format
5731
  msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
5732
  msgstr ""
5733
 
5734
- #: models/bulkseo/Metas.php:276 models/bulkseo/Metas.php:312
5735
- #: models/bulkseo/Metas.php:345
5736
  #, php-format
5737
  msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
5738
  msgstr ""
5739
 
5740
- #: models/bulkseo/Metas.php:289 models/bulkseo/Metas.php:326
5741
- #: models/bulkseo/Opengraph.php:228 models/bulkseo/Opengraph.php:264
5742
- #: models/bulkseo/Twittercard.php:225 models/bulkseo/Twittercard.php:261
5743
  msgid "Description is generated automatically."
5744
  msgstr ""
5745
 
5746
- #: models/bulkseo/Metas.php:432
5747
  #, php-format
5748
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
5749
  msgstr ""
5750
 
5751
- #: models/bulkseo/Opengraph.php:66
5752
  msgid "OG title not empty"
5753
  msgstr ""
5754
 
5755
- #: models/bulkseo/Opengraph.php:68
5756
  #, php-format
5757
  msgid ""
5758
  "You need to have an Open Graph title for this post. %s It will help you "
@@ -5760,16 +5780,16 @@ msgid ""
5760
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5761
  msgstr ""
5762
 
5763
- #: models/bulkseo/Opengraph.php:71
5764
  #, php-format
5765
  msgid "OG title up to %s chars"
5766
  msgstr ""
5767
 
5768
- #: models/bulkseo/Opengraph.php:76
5769
  msgid "OG description not empty"
5770
  msgstr ""
5771
 
5772
- #: models/bulkseo/Opengraph.php:78
5773
  #, php-format
5774
  msgid ""
5775
  "You need to have an Open Graph description for this post. %s It will help "
@@ -5777,20 +5797,20 @@ msgid ""
5777
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5778
  msgstr ""
5779
 
5780
- #: models/bulkseo/Opengraph.php:81
5781
  #, php-format
5782
  msgid "OG description up to %s chars"
5783
  msgstr ""
5784
 
5785
- #: models/bulkseo/Opengraph.php:86 view/SeoSettings/Metas.php:184
5786
  msgid "OG Image"
5787
  msgstr ""
5788
 
5789
- #: models/bulkseo/Opengraph.php:87 models/bulkseo/Twittercard.php:84
5790
  msgid "(featured image)"
5791
  msgstr ""
5792
 
5793
- #: models/bulkseo/Opengraph.php:88
5794
  #, php-format
5795
  msgid ""
5796
  "Set a good looking image for your URL. It needs to look good in Facebook and "
@@ -5798,56 +5818,56 @@ msgid ""
5798
  "attract more clicks to your site."
5799
  msgstr ""
5800
 
5801
- #: models/bulkseo/Opengraph.php:102
5802
  msgid "Open Graph is deactivated."
5803
  msgstr ""
5804
 
5805
- #: models/bulkseo/Opengraph.php:107
5806
- #, fuzzy
5807
- #| msgid "Open Graph is not set corretly."
5808
- msgid "Open Graph is not set correctly."
5809
- msgstr "Open Graph is not set correctly."
5810
 
5811
- #: models/bulkseo/Opengraph.php:112
5812
  msgid "Open Graph is generated automatically."
5813
  msgstr ""
5814
 
5815
- #: models/bulkseo/Opengraph.php:115
5816
  #, fuzzy
5817
  #| msgid "Open Graph is customized and set corretly."
5818
  msgid "Open Graph is customized and set correctly."
5819
  msgstr "Open Graph is customized and set correctly."
5820
 
5821
- #: models/bulkseo/Opengraph.php:143 models/bulkseo/Opengraph.php:179
5822
- #: models/bulkseo/Opengraph.php:211 models/bulkseo/Opengraph.php:247
5823
- #: models/bulkseo/Opengraph.php:283
5824
  #, php-format
5825
  msgid ""
5826
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
5827
  "%s."
5828
  msgstr ""
5829
 
5830
- #: models/bulkseo/Opengraph.php:147 models/bulkseo/Opengraph.php:183
5831
- #: models/bulkseo/Opengraph.php:215 models/bulkseo/Opengraph.php:251
5832
- #: models/bulkseo/Opengraph.php:287
5833
  #, php-format
5834
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
5835
  msgstr ""
5836
 
5837
- #: models/bulkseo/Opengraph.php:151 models/bulkseo/Opengraph.php:187
5838
- #: models/bulkseo/Opengraph.php:219 models/bulkseo/Opengraph.php:255
5839
- #: models/bulkseo/Opengraph.php:291 models/bulkseo/Twittercard.php:148
5840
- #: models/bulkseo/Twittercard.php:184 models/bulkseo/Twittercard.php:216
5841
- #: models/bulkseo/Twittercard.php:252 models/bulkseo/Twittercard.php:288
5842
  #, php-format
5843
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
5844
  msgstr ""
5845
 
5846
- #: models/bulkseo/Twittercard.php:63
5847
  msgid "TC title not empty"
5848
  msgstr ""
5849
 
5850
- #: models/bulkseo/Twittercard.php:65
5851
  #, php-format
5852
  msgid ""
5853
  "You need to have a title for the Twitter Card of this post. %s It will help "
@@ -5855,16 +5875,16 @@ msgid ""
5855
  "also important for SEO purposes."
5856
  msgstr ""
5857
 
5858
- #: models/bulkseo/Twittercard.php:68
5859
  #, php-format
5860
  msgid "TC title up to %s chars"
5861
  msgstr ""
5862
 
5863
- #: models/bulkseo/Twittercard.php:73
5864
  msgid "TC Description not empty"
5865
  msgstr ""
5866
 
5867
- #: models/bulkseo/Twittercard.php:75
5868
  #, php-format
5869
  msgid ""
5870
  "You need to have a Twitter Card description for this post. %s It will help "
@@ -5873,16 +5893,16 @@ msgid ""
5873
  "to your site. %s It's also important for SEO purposes."
5874
  msgstr ""
5875
 
5876
- #: models/bulkseo/Twittercard.php:78
5877
  #, php-format
5878
  msgid "TC description up to %s chars"
5879
  msgstr ""
5880
 
5881
- #: models/bulkseo/Twittercard.php:83
5882
  msgid "TC Image"
5883
  msgstr ""
5884
 
5885
- #: models/bulkseo/Twittercard.php:85
5886
  #, php-format
5887
  msgid ""
5888
  "Set a good looking image for your URL. It needs to look good in Twitter "
@@ -5890,38 +5910,38 @@ msgid ""
5890
  "clicks to your site."
5891
  msgstr ""
5892
 
5893
- #: models/bulkseo/Twittercard.php:99
5894
  msgid "Twitter Card is deactivated."
5895
  msgstr ""
5896
 
5897
- #: models/bulkseo/Twittercard.php:104
5898
- #, fuzzy
5899
- #| msgid "Twitter Card is not set corretly."
5900
- msgid "Twitter Card is not set correctly."
5901
- msgstr "Twitter Card is not set correctly."
5902
 
5903
- #: models/bulkseo/Twittercard.php:109
5904
  msgid "Twitter Card is generated automatically."
5905
  msgstr ""
5906
 
5907
- #: models/bulkseo/Twittercard.php:112
5908
  #, fuzzy
5909
  #| msgid "Twitter Card is customized and set corretly."
5910
  msgid "Twitter Card is customized and set correctly."
5911
  msgstr "Twitter Card is customized and set correctly."
5912
 
5913
- #: models/bulkseo/Twittercard.php:140 models/bulkseo/Twittercard.php:176
5914
- #: models/bulkseo/Twittercard.php:208 models/bulkseo/Twittercard.php:244
5915
- #: models/bulkseo/Twittercard.php:280
5916
  #, php-format
5917
  msgid ""
5918
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
5919
  "Automation%s."
5920
  msgstr ""
5921
 
5922
- #: models/bulkseo/Twittercard.php:144 models/bulkseo/Twittercard.php:180
5923
- #: models/bulkseo/Twittercard.php:212 models/bulkseo/Twittercard.php:248
5924
- #: models/bulkseo/Twittercard.php:284
5925
  #, php-format
5926
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
5927
  msgstr ""
@@ -5973,10 +5993,10 @@ msgid "Some visibility options are inactive."
5973
  msgstr ""
5974
 
5975
  #: models/bulkseo/Visibility.php:55
5976
- #, fuzzy
5977
- #| msgid "Visibility is not set corretly."
5978
- msgid "Visibility is not set correctly."
5979
- msgstr "Visibility is not set correctly."
5980
 
5981
  #: models/bulkseo/Visibility.php:59
5982
  #, fuzzy
@@ -6055,7 +6075,7 @@ msgstr ""
6055
 
6056
  #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
6057
  #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
6058
- #: models/focuspages/Indexability.php:95
6059
  msgid "Connect Google Search"
6060
  msgstr ""
6061
 
@@ -6230,6 +6250,18 @@ msgstr ""
6230
  msgid "At Least %s Majestic SEO Links"
6231
  msgstr ""
6232
 
 
 
 
 
 
 
 
 
 
 
 
 
6233
  #: models/focuspages/Clicks.php:42
6234
  msgid "Clicks from Search Engine in the last 3 months"
6235
  msgstr ""
@@ -6246,8 +6278,8 @@ msgstr ""
6246
  #: models/focuspages/Clicks.php:75 models/focuspages/Content.php:93
6247
  #: models/focuspages/Ctr.php:75 models/focuspages/Image.php:88
6248
  #: models/focuspages/Impressions.php:75 models/focuspages/Keyword.php:114
6249
- #: models/focuspages/Keyword.php:176 models/focuspages/Keyword.php:194
6250
- #: models/focuspages/Keyword.php:217 models/focuspages/Snippet.php:151
6251
  #: models/focuspages/Strategy.php:112
6252
  msgid "No Keyword Found"
6253
  msgstr ""
@@ -6259,15 +6291,16 @@ msgstr ""
6259
  msgid "Optimize for a keyword"
6260
  msgstr ""
6261
 
6262
- #: models/focuspages/Clicks.php:96 models/focuspages/Ctr.php:96
6263
- #: models/focuspages/Impressions.php:96
6264
- msgid "Connect to Google Search Console"
 
 
 
6265
  msgstr ""
6266
 
6267
- #: models/focuspages/Clicks.php:100 models/focuspages/Content.php:114
6268
- #: models/focuspages/Ctr.php:100 models/focuspages/Impressions.php:100
6269
- #: models/focuspages/Keyword.php:149 models/focuspages/Strategy.php:132
6270
- msgid "Optimize the page for a keyword"
6271
  msgstr ""
6272
 
6273
  #: models/focuspages/Content.php:46
@@ -6401,15 +6434,15 @@ msgid ""
6401
  "you used it more than once."
6402
  msgstr ""
6403
 
6404
- #: models/focuspages/Image.php:85 models/focuspages/Snippet.php:154
6405
  msgid "Edit your snippet"
6406
  msgstr ""
6407
 
6408
- #: models/focuspages/Image.php:114
6409
  msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
6410
  msgstr ""
6411
 
6412
- #: models/focuspages/Image.php:115
6413
  #, fuzzy
6414
  #| msgid "There are no articles found"
6415
  msgid "No image found"
@@ -6419,6 +6452,10 @@ msgstr "No articles found"
6419
  msgid "Search Results Impressions in the last 3 months"
6420
  msgstr ""
6421
 
 
 
 
 
6422
  #: models/focuspages/Indexability.php:52
6423
  msgid "Yes, do index"
6424
  msgstr ""
@@ -6643,11 +6680,11 @@ msgstr ""
6643
  #: models/focuspages/Keyword.php:152
6644
  msgid ""
6645
  "Congratulations for ranking with this keyword, but it will require special "
6646
- "attention from you to keep it within TOP 20 positions"
6647
  msgstr ""
6648
 
6649
- #: models/focuspages/Keyword.php:176 models/focuspages/Keyword.php:194
6650
- #: models/focuspages/Keyword.php:217
6651
  msgid "Please add a keyword first."
6652
  msgstr ""
6653
 
@@ -6697,10 +6734,13 @@ msgstr ""
6697
  msgid "Edit Page"
6698
  msgstr ""
6699
 
6700
- #: models/focuspages/Length.php:84 models/focuspages/Length.php:114
6701
- #: models/focuspages/Traffic.php:120 models/focuspages/Traffic.php:137
6702
- #: models/focuspages/Traffic.php:153 models/focuspages/Traffic.php:169
6703
- msgid "Connect Google Analytics first"
 
 
 
6704
  msgstr ""
6705
 
6706
  #: models/focuspages/Nofollow.php:50
@@ -6813,8 +6853,8 @@ msgid ""
6813
  "that product."
6814
  msgstr ""
6815
 
6816
- #: models/focuspages/Snippet.php:95 models/focuspages/Snippet.php:206
6817
- #: models/focuspages/Snippet.php:228 view/Blocks/Snippet.php:613
6818
  #: view/Blocks/Snippet.php:868 view/SeoSettings/Automation.php:134
6819
  #: view/SeoSettings/Metas.php:166
6820
  msgid "Description"
@@ -6834,7 +6874,17 @@ msgid ""
6834
  "boost CTR (click-through rates)."
6835
  msgstr ""
6836
 
6837
- #: models/focuspages/Snippet.php:106
 
 
 
 
 
 
 
 
 
 
6838
  #, php-format
6839
  msgid ""
6840
  "Same as with the title task. %s If a user reads the description of your page "
@@ -6853,11 +6903,11 @@ msgstr ""
6853
  "description of the pages it brings to TOP 10. It's pretty clear they care a "
6854
  "lot about this, because that's what people want to find on the search engine."
6855
 
6856
- #: models/focuspages/Snippet.php:109
6857
  msgid "Open Graph - full definition"
6858
  msgstr ""
6859
 
6860
- #: models/focuspages/Snippet.php:111
6861
  #, php-format
6862
  msgid ""
6863
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -6869,11 +6919,11 @@ msgid ""
6869
  "relevant for your search engine position placements."
6870
  msgstr ""
6871
 
6872
- #: models/focuspages/Snippet.php:114
6873
  msgid "Twitter Cards - full definition"
6874
  msgstr ""
6875
 
6876
- #: models/focuspages/Snippet.php:116
6877
  #, php-format
6878
  msgid ""
6879
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -6883,13 +6933,13 @@ msgid ""
6883
  "that you won't miss a beat."
6884
  msgstr ""
6885
 
6886
- #: models/focuspages/Snippet.php:119
6887
  #, fuzzy
6888
  #| msgid "Json-LD definition"
6889
  msgid "JSON-LD definition"
6890
  msgstr "JSON-LD definition"
6891
 
6892
- #: models/focuspages/Snippet.php:120
6893
  #, php-format
6894
  msgid ""
6895
  "To turn this task to green, you can easily use the JSON-LD section inside "
@@ -6900,11 +6950,11 @@ msgid ""
6900
  "%shttps://search.google.com/structured-data/testing-tool%s"
6901
  msgstr ""
6902
 
6903
- #: models/focuspages/Snippet.php:123
6904
  msgid "Customized"
6905
  msgstr ""
6906
 
6907
- #: models/focuspages/Snippet.php:124
6908
  #, php-format
6909
  msgid ""
6910
  "The Snippets of your most important pages should be customized. %s Use the "
@@ -6918,7 +6968,7 @@ msgid ""
6918
  "own custom snippet will be the one that gets displayed."
6919
  msgstr ""
6920
 
6921
- #: models/focuspages/Snippet.php:207 models/focuspages/Snippet.php:229
6922
  msgid "Image"
6923
  msgstr ""
6924
 
@@ -7021,7 +7071,7 @@ msgstr ""
7021
  msgid "Manage Strategy"
7022
  msgstr ""
7023
 
7024
- #: models/focuspages/Strategy.php:161 models/focuspages/Strategy.php:168
7025
  msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
7026
  msgstr ""
7027
 
@@ -7105,6 +7155,10 @@ msgid ""
7105
  "happen more often than you would think."
7106
  msgstr ""
7107
 
 
 
 
 
7108
  #: models/focuspages/Traffic.php:122
7109
  msgid "Not enough traffic to show relevant stats"
7110
  msgstr ""
@@ -7141,123 +7195,138 @@ msgstr "No articles found"
7141
  msgid "Add New"
7142
  msgstr ""
7143
 
7144
- #: view/Assistant/Settings.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7145
  msgid "Live Assistant Settings"
7146
  msgstr ""
7147
 
7148
- #: view/Assistant/Settings.php:34
7149
  msgid "Squirrly Tooltips"
7150
  msgstr ""
7151
 
7152
- #: view/Assistant/Settings.php:35
7153
  #, php-format
7154
  msgid ""
7155
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. \"Enter a keyword"
7156
  "\")."
7157
  msgstr ""
7158
 
7159
- #: view/Assistant/Settings.php:45
7160
  msgid "Download Remote Images"
7161
  msgstr ""
7162
 
7163
- #: view/Assistant/Settings.php:46
7164
  #, php-format
7165
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
7166
  msgstr ""
7167
 
7168
- #: view/Assistant/Settings.php:47
7169
  msgid ""
7170
  "Prevent from losing the images you use in your articles in case the remote "
7171
  "images are deleted."
7172
  msgstr ""
7173
 
7174
- #: view/Assistant/Settings.php:58
7175
  msgid "Copyright Free Images"
7176
  msgstr ""
7177
 
7178
- #: view/Assistant/Settings.php:59
7179
  #, php-format
7180
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7181
  msgstr ""
7182
 
7183
- #: view/Assistant/Settings.php:69
7184
  #, fuzzy
7185
  #| msgid "use live assistant"
7186
  msgid "Live Assistant Type"
7187
  msgstr "use the Live Assistant"
7188
 
7189
- #: view/Assistant/Settings.php:70
7190
  msgid "Select how you want Squirrly Live Assistant to load in editor."
7191
  msgstr ""
7192
 
7193
- #: view/Assistant/Settings.php:74
7194
  msgid "Auto"
7195
  msgstr ""
7196
 
7197
- #: view/Assistant/Settings.php:75
7198
  msgid "Integrated Box"
7199
  msgstr ""
7200
 
7201
- #: view/Assistant/Settings.php:76
7202
  msgid "Floating Box"
7203
  msgstr ""
7204
 
7205
- #: view/Assistant/Settings.php:89
7206
  msgid "Activate Live Assistant in Frontend"
7207
  msgstr ""
7208
 
7209
- #: view/Assistant/Settings.php:89
7210
  msgid "(BETA)"
7211
  msgstr ""
7212
 
7213
- #: view/Assistant/Settings.php:90
7214
  msgid ""
7215
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7216
  "with Builders."
7217
  msgstr ""
7218
 
7219
- #: view/Assistant/Settings.php:91
7220
  msgid "Currently supports the Elementor Builder plugin."
7221
  msgstr ""
7222
 
7223
- #: view/Assistant/Settings.php:98
7224
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
7225
  msgstr ""
7226
 
7227
- #: view/Assistant/Settings.php:100
7228
  msgid ""
7229
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
7230
  "post types."
7231
  msgstr ""
7232
 
7233
- #: view/Assistant/Settings.php:106
7234
  msgid "Exclusions"
7235
  msgstr ""
7236
 
7237
- #: view/Assistant/Settings.php:107
7238
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7239
  msgstr ""
7240
 
7241
- #: view/Assistant/Settings.php:108
7242
  msgid "Hold Control key to select multiple places"
7243
  msgstr ""
7244
 
7245
- #: view/Assistant/Settings.php:135 view/SeoSettings/Automation.php:474
7246
  #: view/SeoSettings/Automation.php:595 view/SeoSettings/Jsonld.php:243
7247
  #: view/SeoSettings/Metas.php:231 view/SeoSettings/Sitemap.php:305
7248
  #: view/SeoSettings/Social.php:372
7249
  msgid "Show Advanced Options"
7250
  msgstr ""
7251
 
7252
- #: view/Assistant/Settings.php:136 view/SeoSettings/Automation.php:475
7253
  #: view/SeoSettings/Automation.php:596 view/SeoSettings/Jsonld.php:244
7254
  #: view/SeoSettings/Metas.php:232 view/SeoSettings/Sitemap.php:306
7255
  #: view/SeoSettings/Social.php:373
7256
  msgid "Hide Advanced Options"
7257
  msgstr ""
7258
 
7259
- #: view/Assistant/Settings.php:139 view/Audits/Settings.php:60
7260
- #: view/Ranking/Settings.php:173 view/SeoSettings/Advanced.php:95
7261
  #: view/SeoSettings/Automation.php:478 view/SeoSettings/Automation.php:599
7262
  #: view/SeoSettings/Backup.php:206 view/SeoSettings/Favicon.php:107
7263
  #: view/SeoSettings/Jsonld.php:247 view/SeoSettings/Metas.php:235
@@ -7267,22 +7336,6 @@ msgstr ""
7267
  msgid "Save Settings"
7268
  msgstr ""
7269
 
7270
- #: view/Audits/Addpage.php:8 view/Audits/Audit.php:8 view/Audits/Audits.php:8
7271
- #: view/Audits/Compare.php:11 view/Audits/Settings.php:7
7272
- #: view/BulkSeo/Bulkseo.php:12 view/FocusPages/Addpage.php:8
7273
- #: view/FocusPages/Pagelist.php:8 view/FocusPages/Settings.php:7
7274
- #: view/Ranking/Rankings.php:17 view/Ranking/Settings.php:7
7275
- #: view/SeoSettings/Advanced.php:7 view/SeoSettings/Automation.php:7
7276
- #: view/SeoSettings/Backup.php:7 view/SeoSettings/Bulkseo.php:12
7277
- #: view/SeoSettings/Favicon.php:7 view/SeoSettings/Jsonld.php:7
7278
- #: view/SeoSettings/Metas.php:7 view/SeoSettings/Robots.php:7
7279
- #: view/SeoSettings/Sitemap.php:7 view/SeoSettings/Social.php:7
7280
- #: view/SeoSettings/Tracking.php:7 view/SeoSettings/Webmaster.php:7
7281
- msgid ""
7282
- "You do not have permission to access this page. You need Squirrly SEO Admin "
7283
- "role"
7284
- msgstr ""
7285
-
7286
  #: view/Audits/Addpage.php:22
7287
  msgid "Add a page in Audit"
7288
  msgstr ""
@@ -7295,13 +7348,12 @@ msgid ""
7295
  msgstr ""
7296
 
7297
  #: view/Audits/Addpage.php:92 view/BulkSeo/Bulkseo.php:101
7298
- #: view/FocusPages/Addpage.php:92 view/SeoSettings/Bulkseo.php:96
7299
  msgid "Any status"
7300
  msgstr ""
7301
 
7302
  #: view/Audits/Addpage.php:112 view/BulkSeo/Bulkseo.php:121
7303
- #: view/FocusPages/Addpage.php:112 view/Research/Research.php:200
7304
- #: view/SeoSettings/Bulkseo.php:116
7305
  msgid "Search"
7306
  msgstr ""
7307
 
@@ -7309,7 +7361,6 @@ msgstr ""
7309
  #: view/Audits/Compare.php:44 view/BulkSeo/Bulkseo.php:123
7310
  #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:6
7311
  #: view/Ranking/Rankings.php:58 view/Research/Briefcase.php:37
7312
- #: view/SeoSettings/Bulkseo.php:118
7313
  msgid "Show All"
7314
  msgstr ""
7315
 
@@ -7326,12 +7377,12 @@ msgid "Already added"
7326
  msgstr ""
7327
 
7328
  #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
7329
- #: view/FocusPages/Addpage.php:196 view/SeoSettings/Bulkseo.php:192
7330
  msgid "Prev Page"
7331
  msgstr ""
7332
 
7333
  #: view/Audits/Addpage.php:194 view/BulkSeo/Bulkseo.php:199
7334
- #: view/FocusPages/Addpage.php:197 view/SeoSettings/Bulkseo.php:193
7335
  msgid "Next Page"
7336
  msgstr ""
7337
 
@@ -7361,26 +7412,29 @@ msgstr ""
7361
  msgid "Last checked"
7362
  msgstr ""
7363
 
7364
- #: view/Audits/AuditPageRow.php:46 view/FocusPages/FocusPageRow.php:92
7365
  msgid "Could not create the audit for this URL"
7366
  msgstr ""
7367
 
7368
- #: view/Audits/AuditPageRow.php:46 view/FocusPages/FocusPageRow.php:92
7369
  msgid "error code"
7370
  msgstr ""
7371
 
7372
- #: view/Audits/AuditPageRow.php:48
7373
  #, php-format
7374
  msgid ""
7375
- "The current way your WordPress site is hosted can cause experience issues to "
7376
- "the way Squirrly SEO works. %s In order to serve you with the best data, and "
7377
- "make sure that the Page audits can be processed, you will need to talk to "
7378
- "your hosting provider and tell them to make the following settings. %s "
7379
- "Please add the IP address 176.9.112.210 in the white-list for remote access "
7380
- "and it should work."
7381
  msgstr ""
7382
 
7383
- #: view/Audits/AuditPageRow.php:69
 
 
 
 
7384
  msgid "Delete Page from Audit"
7385
  msgstr ""
7386
 
@@ -7525,7 +7579,7 @@ msgstr ""
7525
  msgid "Audits"
7526
  msgstr ""
7527
 
7528
- #: view/Audits/Audits.php:55
7529
  #, php-format
7530
  msgid ""
7531
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
@@ -7533,11 +7587,15 @@ msgid ""
7533
  "involved."
7534
  msgstr ""
7535
 
7536
- #: view/Audits/Audits.php:62
7537
  #, php-format
7538
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
7539
  msgstr ""
7540
 
 
 
 
 
7541
  #: view/Audits/Settings.php:30
7542
  msgid "Audit Settings"
7543
  msgstr ""
@@ -7550,47 +7608,27 @@ msgstr ""
7550
  msgid "Enter the email address on which you want to receive the weekly audits."
7551
  msgstr ""
7552
 
7553
- #: view/Blocks/Account.php:33
 
 
 
 
7554
  msgid "Your Plan: "
7555
  msgstr ""
7556
 
7557
- #: view/Blocks/Account.php:34
7558
  msgid "Check Account Info"
7559
  msgstr ""
7560
 
7561
- #: view/Blocks/Account.php:39
7562
  msgid "Email: "
7563
  msgstr ""
7564
 
7565
- #: view/Blocks/Account.php:45
7566
  #, php-format
7567
  msgid "Due Date: %s"
7568
  msgstr ""
7569
 
7570
- #: view/Blocks/Assistant.php:13
7571
- msgid "Show Advanced SEO"
7572
- msgstr ""
7573
-
7574
- #: view/Blocks/Assistant.php:14
7575
- msgid ""
7576
- "Switch off to have the simplified version of the settings, intended for Non-"
7577
- "SEO Experts."
7578
- msgstr ""
7579
-
7580
- #: view/Blocks/Assistant.php:15
7581
- msgid ""
7582
- "It will offer the same level of SEO performance, but it will be less "
7583
- "customizable."
7584
- msgstr ""
7585
-
7586
- #: view/Blocks/Assistant.php:25
7587
- msgid "We Need Your Support"
7588
- msgstr ""
7589
-
7590
- #: view/Blocks/Assistant.php:34
7591
- msgid "Rate us if you like Squirrly SEO"
7592
- msgstr ""
7593
-
7594
  #: view/Blocks/Audits.php:7 view/Blocks/Audits.php:53
7595
  msgid "See Audits"
7596
  msgstr ""
@@ -7619,21 +7657,21 @@ msgstr ""
7619
  msgid "Go to Focus Pages"
7620
  msgstr ""
7621
 
7622
- #: view/Blocks/Connect.php:13 view/Blocks/Connect.php:27
7623
  msgid ""
7624
  "This option is used to track innerlinks and insights for your Focus Pages "
7625
  "and give detailed informations about them."
7626
  msgstr ""
7627
 
7628
- #: view/Blocks/Connect.php:15 view/Blocks/Connect.php:29
7629
  msgid "Let Squirrly API get data for Focus Pages"
7630
  msgstr ""
7631
 
7632
- #: view/Blocks/Connect.php:16
7633
  msgid "Connect"
7634
  msgstr ""
7635
 
7636
- #: view/Blocks/Connect.php:30
7637
  msgid "disconnect"
7638
  msgstr ""
7639
 
@@ -7688,6 +7726,283 @@ msgstr ""
7688
  msgid "Checking the website ..."
7689
  msgstr ""
7690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7691
  #: view/Blocks/FocusPages.php:7
7692
  msgid "See Focus Pages"
7693
  msgstr ""
@@ -7712,10 +8027,6 @@ msgstr ""
7712
  msgid "Then set a page as focus"
7713
  msgstr ""
7714
 
7715
- #: view/Blocks/Jorney.php:12 view/Blocks/Jorney.php:95
7716
- msgid "14 Days Journey Course"
7717
- msgstr ""
7718
-
7719
  #: view/Blocks/Jorney.php:17
7720
  #, php-format
7721
  msgid "Follow the %sdaily recipe%s from below."
@@ -7772,13 +8083,13 @@ msgstr ""
7772
 
7773
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
7774
  #: view/Ranking/Rankings.php:395 view/Research/Briefcase.php:256
7775
- #: view/Research/History.php:30 view/Research/Research.php:193
7776
  #: view/Research/Suggested.php:29
7777
  msgid "Country"
7778
  msgstr ""
7779
 
7780
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
7781
- #: view/Research/History.php:30 view/Research/Research.php:193
7782
  #: view/Research/Suggested.php:29
7783
  msgid "Co"
7784
  msgstr ""
@@ -7786,14 +8097,14 @@ msgstr ""
7786
  #: view/Blocks/KRFound.php:18 view/Blocks/KRFound.php:19
7787
  #: view/Blocks/KRFound.php:64 view/Research/Briefcase.php:261
7788
  #: view/Research/HistoryDetails.php:16 view/Research/HistoryDetails.php:18
7789
- #: view/Research/Research.php:195 view/Research/Research.php:196
7790
  #: view/Research/Suggested.php:31 view/Research/Suggested.php:32
7791
  #: view/Research/Suggested.php:81
7792
  msgid "Competition"
7793
  msgstr ""
7794
 
7795
  #: view/Blocks/KRFound.php:22 view/Blocks/KRFound.php:69
7796
- #: view/Research/HistoryDetails.php:12 view/Research/Research.php:199
7797
  #: view/Research/Suggested.php:35 view/Research/Suggested.php:86
7798
  msgid "SEO Search Volume"
7799
  msgstr ""
@@ -7805,19 +8116,19 @@ msgstr ""
7805
 
7806
  #: view/Blocks/KRFound.php:26 view/Blocks/KRFound.php:74
7807
  #: view/Research/Briefcase.php:277 view/Research/HistoryDetails.php:8
7808
- #: view/Research/Research.php:203 view/Research/Suggested.php:39
7809
  #: view/Research/Suggested.php:91
7810
  msgid "Recent discussions"
7811
  msgstr ""
7812
 
7813
  #: view/Blocks/KRFound.php:27 view/Research/HistoryDetails.php:10
7814
- #: view/Research/Research.php:204 view/Research/Suggested.php:40
7815
  msgid "Discussion"
7816
  msgstr ""
7817
 
7818
  #: view/Blocks/KRFound.php:30 view/Blocks/KRFound.php:31
7819
  #: view/Blocks/KRFound.php:79 view/Research/Briefcase.php:283
7820
- #: view/Research/HistoryDetails.php:20 view/Research/Research.php:207
7821
  #: view/Research/Suggested.php:43
7822
  msgid "Trending"
7823
  msgstr ""
@@ -7854,11 +8165,6 @@ msgstr ""
7854
  msgid "Go to Briefcase"
7855
  msgstr ""
7856
 
7857
- #: view/Blocks/KRHistory.php:5 view/Onboarding/Step1.3.php:11
7858
- #: view/Research/Research.php:18
7859
- msgid "Keyword Research"
7860
- msgstr ""
7861
-
7862
  #: view/Blocks/KRHistory.php:6
7863
  msgid "See Research History"
7864
  msgstr ""
@@ -8413,50 +8719,50 @@ msgstr ""
8413
  msgid "%sPlease connect to SquirrlyCloud first%s"
8414
  msgstr "%sPlease connect to SquirrlyCloud first%s"
8415
 
8416
- #: view/Blocks/Stats.php:22
8417
  msgid "Hello"
8418
  msgstr ""
8419
 
8420
- #: view/Blocks/Stats.php:28
8421
  #, php-format
8422
  msgid "%s SEO Protection"
8423
  msgstr ""
8424
 
8425
- #: view/Blocks/Stats.php:31
8426
  msgid "All protection layers are activated."
8427
  msgstr ""
8428
 
8429
- #: view/Blocks/Stats.php:33
8430
  #, php-format
8431
  msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
8432
  msgstr ""
8433
 
8434
- #: view/Blocks/Stats.php:37
8435
  msgid "How does this work?"
8436
  msgstr ""
8437
 
8438
- #: view/Blocks/Stats.php:45
8439
  msgid "Pages SEO'ed"
8440
  msgstr ""
8441
 
8442
- #: view/Blocks/Stats.php:51
8443
  msgid "Post Types Covered"
8444
  msgstr ""
8445
 
8446
- #: view/Blocks/Stats.php:56 view/Goals/CheckSeo.php:102
8447
  #, php-format
8448
  msgid "%s Aspects"
8449
  msgstr ""
8450
 
8451
- #: view/Blocks/Stats.php:57 view/Goals/CheckSeo.php:103
8452
  msgid "Handled by Squirrly Genius."
8453
  msgstr ""
8454
 
8455
- #: view/Blocks/Stats.php:59
8456
  msgid "Can I see them?"
8457
  msgstr ""
8458
 
8459
- #: view/Blocks/Stats.php:63 view/Goals/Goals.php:43
8460
  msgid "Run SEO Test"
8461
  msgstr ""
8462
 
@@ -8564,20 +8870,20 @@ msgstr ""
8564
  msgid "Thank you! You can send us a happy face tomorrow too."
8565
  msgstr "Thank you! You can send us a happy face tomorrow too."
8566
 
8567
- #: view/Blocks/VersionBar.php:7
8568
  #, php-format
8569
  msgid ""
8570
  "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
8571
  "accurate and objective."
8572
  msgstr ""
8573
 
8574
- #: view/Blocks/VersionBar.php:10
8575
  #, php-format
8576
  msgid ""
8577
  "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
8578
  msgstr ""
8579
 
8580
- #: view/Blocks/VersionBar.php:16
8581
  #, php-format
8582
  msgid ""
8583
  "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
@@ -8586,14 +8892,14 @@ msgid ""
8586
  "your plan to %sBusiness Plan%s"
8587
  msgstr ""
8588
 
8589
- #: view/Blocks/VersionBar.php:23
8590
  #, php-format
8591
  msgid ""
8592
  "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
8593
  "hour."
8594
  msgstr ""
8595
 
8596
- #: view/Blocks/VersionBar.php:27
8597
  #, php-format
8598
  msgid ""
8599
  "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
@@ -8601,14 +8907,14 @@ msgid ""
8601
  "please upgrade your plan to %sPRO Plan%s"
8602
  msgstr ""
8603
 
8604
- #: view/Blocks/VersionBar.php:34
8605
  #, php-format
8606
  msgid ""
8607
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
8608
  "audit for each page every 5 mins."
8609
  msgstr ""
8610
 
8611
- #: view/Blocks/VersionBar.php:38
8612
  #, php-format
8613
  msgid ""
8614
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
@@ -8616,14 +8922,22 @@ msgid ""
8616
  "upgrade your plan to %sPRO Plan%s"
8617
  msgstr ""
8618
 
8619
- #: view/Blocks/VersionBar.php:46
 
 
 
 
 
 
 
 
8620
  #, php-format
8621
  msgid ""
8622
  "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
8623
  "tasks to get 100%% optimized posts and pages."
8624
  msgstr ""
8625
 
8626
- #: view/Blocks/VersionBar.php:50
8627
  #, php-format
8628
  msgid ""
8629
  "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
@@ -8631,7 +8945,7 @@ msgid ""
8631
  "Plan%s"
8632
  msgstr ""
8633
 
8634
- #: view/Blocks/VersionBar.php:58
8635
  #, php-format
8636
  msgid ""
8637
  "%sResearch %s:%s You have %s researches left for your account. The research "
@@ -8639,14 +8953,14 @@ msgid ""
8639
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
8640
  msgstr ""
8641
 
8642
- #: view/Blocks/VersionBar.php:62
8643
  #, php-format
8644
  msgid ""
8645
  "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
8646
  "Deep Keyword Research and get up to 50 results on each research."
8647
  msgstr ""
8648
 
8649
- #: view/Blocks/VersionBar.php:66
8650
  #, php-format
8651
  msgid ""
8652
  "%sResearch %s:%s You have %s researches left for your account. The research "
@@ -8654,64 +8968,64 @@ msgid ""
8654
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
8655
  msgstr ""
8656
 
8657
- #: view/Blocks/VersionBar.php:73
8658
  #, php-format
8659
  msgid ""
8660
  "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
8661
  "optimize your posts and pages."
8662
  msgstr ""
8663
 
8664
- #: view/Blocks/VersionBar.php:78
8665
  #, php-format
8666
  msgid ""
8667
  "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
8668
  "keywords to organize the keywords by your SEO strategy."
8669
  msgstr ""
8670
 
8671
- #: view/Blocks/VersionBar.php:84
8672
  #, php-format
8673
  msgid ""
8674
  "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
8675
  "find better matching keywords based on your research history."
8676
  msgstr ""
8677
 
8678
- #: view/Blocks/VersionBar.php:88
8679
  #, php-format
8680
  msgid ""
8681
  "This feature is only available for PRO and Business accounts. %sTo get "
8682
  "Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s"
8683
  msgstr ""
8684
 
8685
- #: view/Blocks/VersionBar.php:97
8686
  #, php-format
8687
  msgid ""
8688
  "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
8689
  "SEO for free."
8690
  msgstr ""
8691
 
8692
- #: view/Blocks/VersionBar.php:103
8693
  #, php-format
8694
  msgid ""
8695
  "%sOn-Page SEO Settings:%s This feature is included in all versions of "
8696
  "Squirrly SEO for free."
8697
  msgstr ""
8698
 
8699
- #: view/BulkSeo/Bulkseo.php:30 view/SeoSettings/Bulkseo.php:26
8700
  msgid ""
8701
  "Simplify the SEO process for all your posts types and optimize them in just "
8702
  "minutes. "
8703
  msgstr ""
8704
 
8705
- #: view/BulkSeo/Bulkseo.php:183 view/SeoSettings/Bulkseo.php:178
8706
  #, php-format
8707
  msgid "No data for this filter. %sShow All%s records for this post type."
8708
  msgstr ""
8709
 
8710
- #: view/BulkSeo/Bulkseo.php:185 view/SeoSettings/Bulkseo.php:180
8711
  msgid "No data found for this post type. Try other post types."
8712
  msgstr ""
8713
 
8714
- #: view/BulkSeo/BulkseoRow.php:26 view/SeoSettings/BulkseoRow.php:26
8715
  #, php-format
8716
  msgid "View &#8220;%s&#8221;"
8717
  msgstr ""
@@ -8748,10 +9062,6 @@ msgstr ""
8748
  msgid "Check connection"
8749
  msgstr ""
8750
 
8751
- #: view/Connect/GoogleSearchConsole.php:7
8752
- msgid "Google Search Console"
8753
- msgstr ""
8754
-
8755
  #: view/Connect/GoogleSearchConsole.php:12
8756
  msgid "You are connected to Google Search Console"
8757
  msgstr ""
@@ -8766,16 +9076,6 @@ msgid ""
8766
  "each Audit"
8767
  msgstr ""
8768
 
8769
- #: view/Dashboard.php:11
8770
- #, fuzzy
8771
- #| msgid "%sPlease connect to Squirrly Cloud first%s"
8772
- msgid "Connect to Squirrly Data Cloud"
8773
- msgstr "%sPlease connect to SquirrlyCloud first%s"
8774
-
8775
- #: view/Dashboard.php:22
8776
- msgid "Squirrly dashboard"
8777
- msgstr ""
8778
-
8779
  #: view/Errors/Maintenance.php:20
8780
  #, php-format
8781
  msgid ""
@@ -8827,27 +9127,16 @@ msgstr ""
8827
  msgid "Details"
8828
  msgstr ""
8829
 
8830
- #: view/FocusPages/FocusPageRow.php:94
8831
- #, php-format
8832
- msgid ""
8833
- "The current way your WordPress site is hosted can cause experience issues to "
8834
- "the way Squirrly SEO works. %s In order to serve you with the best data, and "
8835
- "make sure that the Focus Pages audits can be processed, you will need to "
8836
- "talk to your hosting provider and tell them to make the following settings. "
8837
- "%s Please add the IP address 176.9.112.210 in the white-list for remote "
8838
- "access and it should work."
8839
- msgstr ""
8840
-
8841
- #: view/FocusPages/FocusPageRow.php:99
8842
  msgid "Currently processing data. Please refresh in a few minutes."
8843
  msgstr ""
8844
 
8845
- #: view/FocusPages/FocusPageRow.php:105 view/FocusPages/FocusPageRow.php:109
8846
- #: view/FocusPages/FocusPageRow.php:125 view/FocusPages/FocusPages.php:54
8847
  msgid "Chance to Rank"
8848
  msgstr ""
8849
 
8850
- #: view/FocusPages/FocusPageRow.php:163
8851
  msgid "Delete Focus Page"
8852
  msgstr ""
8853
 
@@ -8942,7 +9231,7 @@ msgstr ""
8942
  msgid "Don't choose your Home Page, Contact Page or About Use page."
8943
  msgstr ""
8944
 
8945
- #: view/FocusPages/Pagelist.php:51
8946
  #, php-format
8947
  msgid ""
8948
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
@@ -8987,10 +9276,6 @@ msgstr ""
8987
  msgid "Congratulations!"
8988
  msgstr ""
8989
 
8990
- #: view/Goals/Goals.php:34
8991
- msgid "Daily SEO Goals"
8992
- msgstr ""
8993
-
8994
  #: view/Goals/Goals.php:36
8995
  #, php-format
8996
  msgid "%s goals for today"
@@ -9188,10 +9473,6 @@ msgstr ""
9188
  msgid "Get a Birds-Eye-View of your Site’s Overall SEO Optimization"
9189
  msgstr ""
9190
 
9191
- #: view/Onboarding/Step1.5.php:21
9192
- msgid "Google SERP Checker"
9193
- msgstr ""
9194
-
9195
  #: view/Onboarding/Step1.5.php:35
9196
  msgid ""
9197
  "Accurately Track Your Rankings with Squirrly’s User-Friendly Google SERP "
@@ -9422,6 +9703,36 @@ msgid ""
9422
  "our features %s by creating a free account"
9423
  msgstr ""
9424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9425
  #: view/Ranking/Gscsync.php:15
9426
  msgid "Google Search Console Keywords Sync"
9427
  msgstr ""
@@ -9498,8 +9809,8 @@ msgstr ""
9498
 
9499
  #: view/Ranking/Rankings.php:35
9500
  msgid ""
9501
- "See the Google Search Console average possition, click and impressions for "
9502
- "organic keywords"
9503
  msgstr ""
9504
 
9505
  #: view/Ranking/Rankings.php:98
@@ -10282,7 +10593,7 @@ msgstr "group keywords "
10282
  msgid "Welcome to Keyword Research History"
10283
  msgstr ""
10284
 
10285
- #: view/Research/HistoryDetails.php:22 view/Research/Research.php:208
10286
  #: view/Research/Suggested.php:44
10287
  msgid "Trend"
10288
  msgstr ""
@@ -10372,13 +10683,13 @@ msgid ""
10372
  "Squirrly's Market Intelligence Features."
10373
  msgstr ""
10374
 
10375
- #: view/Research/Research.php:34 view/Research/Research.php:145
10376
  #, fuzzy
10377
  #| msgid "You reached the Keyword Research Limit"
10378
  msgid "You've reached your Keyword Research Limit"
10379
  msgstr "You've reached your Keyword Research Limit"
10380
 
10381
- #: view/Research/Research.php:35 view/Research/Research.php:146
10382
  msgid "Check Your Account"
10383
  msgstr ""
10384
 
@@ -10434,8 +10745,8 @@ msgid ""
10434
  msgstr ""
10435
  "For local SEO you need to select the Country where you run your business"
10436
 
10437
- #: view/Research/Research.php:100 view/Research/Research.php:152
10438
- #: view/Research/Research.php:220
10439
  msgid "Start Over"
10440
  msgstr ""
10441
 
@@ -10443,88 +10754,94 @@ msgstr ""
10443
  msgid "Step 3/4: Select similar keywords from below"
10444
  msgstr ""
10445
 
10446
- #: view/Research/Research.php:148
 
 
 
 
 
 
10447
  #, php-format
10448
  msgid "We could not find similar keywords. %sClick on \"Do research\""
10449
  msgstr ""
10450
 
10451
- #: view/Research/Research.php:158
10452
  msgid "Do a deep research"
10453
  msgstr ""
10454
 
10455
- #: view/Research/Research.php:162 view/Research/Research.php:168
10456
  msgid "Do research"
10457
  msgstr ""
10458
 
10459
- #: view/Research/Research.php:176
10460
  msgid ""
10461
  "Keyword Research in progress. We're doing all of this in real-time. Data is "
10462
  "fresh."
10463
  msgstr ""
10464
 
10465
- #: view/Research/Research.php:177
10466
  msgid "We're now finding 10 alternatives for each keyword you selected."
10467
  msgstr ""
10468
 
10469
- #: view/Research/Research.php:178
10470
  msgid ""
10471
  "For each alternative, we are looking at the top 10 pages ranked on Google "
10472
  "for that keyword."
10473
  msgstr ""
10474
 
10475
- #: view/Research/Research.php:179
10476
  msgid ""
10477
  "We are now measuring the web authority of each competing page and comparing "
10478
  "it to yours."
10479
  msgstr ""
10480
 
10481
- #: view/Research/Research.php:180
10482
  msgid "Looking at the monthly search volume for each keyword."
10483
  msgstr ""
10484
 
10485
- #: view/Research/Research.php:181
10486
  msgid "Analyzing the last 30 days of Google trends for each keyword."
10487
  msgstr ""
10488
 
10489
- #: view/Research/Research.php:182
10490
  msgid ""
10491
  "Seeing how many discussions there are on forums and Twitter for each keyword."
10492
  msgstr ""
10493
 
10494
- #: view/Research/Research.php:183
10495
  msgid ""
10496
  "Piecing all the keywords together now after analyzing each individual "
10497
  "keyword."
10498
  msgstr ""
10499
 
10500
- #: view/Research/Research.php:184
10501
  msgid "Preparing the results."
10502
  msgstr ""
10503
 
10504
- #: view/Research/Research.php:186
10505
  msgid "Step 4/4: We found some relevant keywords for you"
10506
  msgstr ""
10507
 
10508
- #: view/Research/Research.php:187
10509
  #, php-format
10510
  msgid ""
10511
  "Still processing. give it a bit more time, then go to %sResearch History%s. "
10512
  "Results will appear there."
10513
  msgstr ""
10514
 
10515
- #: view/Research/Research.php:188
10516
  msgid "Step 4/4: We could not find relevant keywords for you"
10517
  msgstr ""
10518
 
10519
- #: view/Research/Research.php:235
10520
  msgid "How to Find Amazing Keywords and get more search traffic?"
10521
  msgstr ""
10522
 
10523
- #: view/Research/Research.php:249
10524
  msgid "Already Have Keywords?"
10525
  msgstr ""
10526
 
10527
- #: view/Research/Research.php:252
10528
  msgid "Import Keywords From CSV"
10529
  msgstr ""
10530
 
@@ -10570,11 +10887,11 @@ msgstr ""
10570
  msgid "For compatibility with some Cache and CDN plugins."
10571
  msgstr ""
10572
 
10573
- #: view/SeoSettings/Advanced.php:78
10574
  msgid "Delete Squirrly Table on Uninstall"
10575
  msgstr ""
10576
 
10577
- #: view/SeoSettings/Advanced.php:79
10578
  msgid "Delete Squirrly SEO table and options on uninstall."
10579
  msgstr ""
10580
 
@@ -10861,6 +11178,12 @@ msgstr "JSON-LD Title Length"
10861
  msgid "JSON-LD Description Length"
10862
  msgstr "JSON-LD Description Length"
10863
 
 
 
 
 
 
 
10864
  #: view/SeoSettings/Backup.php:23
10865
  msgid "Import Settings & SEO"
10866
  msgstr ""
@@ -10981,18 +11304,6 @@ msgstr ""
10981
  msgid "Website Icon"
10982
  msgstr ""
10983
 
10984
- #: view/SeoSettings/Favicon.php:29
10985
- #, fuzzy
10986
- #| msgid ""
10987
- #| "Add your website icon in the browser tabs and on other deviced like "
10988
- #| "Iphone, Ipad and Android phones."
10989
- msgid ""
10990
- "Add your website icon in the browser tabs and on other devices like iPhone, "
10991
- "iPad and Android phones."
10992
- msgstr ""
10993
- "Add your website icon in the browser tabs and on other devices like iPhone, "
10994
- "iPad and Android phones."
10995
-
10996
  #: view/SeoSettings/Favicon.php:35
10997
  msgid "Activate Favicon"
10998
  msgstr ""
@@ -11629,7 +11940,7 @@ msgstr ""
11629
 
11630
  #: view/SeoSettings/Social.php:271
11631
  msgid ""
11632
- "Add the Twitter card in your tweets so that your Twitter shares look good."
11633
  msgstr ""
11634
 
11635
  #: view/SeoSettings/Social.php:272
@@ -11841,6 +12152,31 @@ msgid ""
11841
  "Pinterest account. Visit the %sRich Pins Validator%s"
11842
  msgstr ""
11843
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11844
  #, fuzzy, php-format
11845
  #~| msgid ""
11846
  #~| "Good news, %s is integrated in Squirrly SEO now and you don't have to "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2020-06-01 16:36+0300\n"
5
+ "PO-Revision-Date: 2020-06-01 16:36+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en_US\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 2.3.1\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
19
  msgid "Don't bother me!"
20
  msgstr ""
21
 
22
+ #: classes/RemoteController.php:263
23
  msgid "Too many API attempts, please slow down the request."
24
  msgstr ""
25
 
26
+ #: classes/RemoteController.php:267
27
  msgid ""
28
  "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
29
  "in a minute."
30
  msgstr ""
31
 
32
+ #: classes/RemoteController.php:326
33
  msgid "Articles optimized so far"
34
  msgstr ""
35
 
36
+ #: classes/RemoteController.php:328 classes/RemoteController.php:335
37
  msgid "add post"
38
  msgstr ""
39
 
40
+ #: classes/RemoteController.php:333
41
  msgid "Average optimization"
42
  msgstr ""
43
 
44
+ #: classes/RemoteController.php:340
45
  msgid "Keyword Researches"
46
  msgstr ""
47
 
48
+ #: classes/RemoteController.php:342
49
  msgid "do research"
50
  msgstr ""
51
 
52
+ #: classes/RemoteController.php:347
53
  msgid "Keywords stored in Squirrly Briefcase"
54
  msgstr ""
55
 
56
+ #: classes/RemoteController.php:349
57
  msgid "add keyword"
58
  msgstr ""
59
 
60
+ #: classes/RemoteController.php:354
61
  msgid "Pages ranking in top 100 Google"
62
  msgstr ""
63
 
64
+ #: classes/RemoteController.php:356
65
  msgid "see rankings"
66
  msgstr ""
67
 
68
+ #: classes/RemoteController.php:361
69
  msgid "SEO Audits"
70
  msgstr ""
71
 
72
+ #: classes/RemoteController.php:363
73
  msgid "see audits"
74
  msgstr ""
75
 
76
+ #: classes/RemoteController.php:1279
77
  msgid "Keyword:"
78
  msgstr ""
79
 
80
+ #: classes/RemoteController.php:1280
81
  msgid "date"
82
  msgstr ""
83
 
84
+ #: classes/RemoteController.php:1281 controllers/CheckSeo.php:317
85
  #: controllers/Patterns.php:16 controllers/Research.php:259
86
  #: controllers/Research.php:290 controllers/Research.php:344
87
  #: controllers/Research.php:654
88
  msgid "Saved!"
89
  msgstr ""
90
 
91
+ #: classes/RemoteController.php:1282
92
  msgid "Read it!"
93
  msgstr ""
94
 
95
+ #: classes/RemoteController.php:1283
96
  msgid "Insert it!"
97
  msgstr ""
98
 
99
+ #: classes/RemoteController.php:1284
100
  msgid "Reference"
101
  msgstr ""
102
 
103
+ #: classes/RemoteController.php:1285
104
  msgid "Insert as box"
105
  msgstr ""
106
 
107
+ #: classes/RemoteController.php:1286
108
  msgid "Insert Link"
109
  msgstr ""
110
 
111
+ #: classes/RemoteController.php:1287
112
  msgid "Not relevant?"
113
  msgstr ""
114
 
115
+ #: classes/RemoteController.php:1288
116
  msgid "Insert in your article"
117
  msgstr ""
118
 
119
+ #: classes/RemoteController.php:1289
120
  msgid ":( An error occurred while processing your request. Please try again"
121
  msgstr ""
122
 
123
+ #: classes/RemoteController.php:1290
124
  msgid "No results found!"
125
  msgstr ""
126
 
127
+ #: classes/RemoteController.php:1291
128
  #, php-format
129
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
130
  msgstr ""
131
 
132
+ #: classes/RemoteController.php:1292
133
  msgid "Has creative commons attributes"
134
  msgstr ""
135
 
136
+ #: classes/RemoteController.php:1293
137
  msgid "No known copyright restrictions"
138
  msgstr ""
139
 
140
+ #: classes/RemoteController.php:1294
141
  msgid ""
142
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
143
  "optimize for a keyword before publishing?"
144
  msgstr ""
145
 
146
+ #: classes/RemoteController.php:1295
147
  msgid "Your Subscription has Expired"
148
  msgstr ""
149
 
150
+ #: classes/RemoteController.php:1296
151
  msgid "There are no keywords saved in briefcase yet"
152
  msgstr ""
153
 
154
+ #: classes/RemoteController.php:1297
155
  #, php-format
156
  msgid "Congratulations! Your article is 100% optimized!"
157
  msgstr ""
158
 
159
+ #: classes/RemoteController.php:1298
160
  #, php-format
161
  msgid "appears too many times. Try to remove %s of them"
162
  msgstr ""
163
 
164
+ #: classes/RemoteController.php:1299
165
  #, php-format
166
  msgid "write %s more words"
167
  msgstr ""
168
 
169
+ #: classes/RemoteController.php:1300
170
  #, php-format
171
  msgid "Add the keyword in the %s of your article"
172
  msgstr ""
173
 
174
+ #: classes/RemoteController.php:1301
175
  msgid "Click to keep the highlight on"
176
  msgstr ""
177
 
178
+ #: classes/RemoteController.php:1302
179
  msgid "introduction"
180
  msgstr ""
181
 
182
+ #: classes/RemoteController.php:1303
183
  #, php-format
184
  msgid "Write more words after the %s keyword"
185
  msgstr ""
186
 
187
+ #: classes/RemoteController.php:1304
188
  msgid "or use synonyms"
189
  msgstr ""
190
 
191
+ #: classes/RemoteController.php:1305
192
  #, php-format
193
  msgid "add %s more word(s)"
194
  msgstr ""
195
 
196
+ #: classes/RemoteController.php:1306
197
  #, php-format
198
  msgid "or remove %s word(s)"
199
  msgstr ""
200
 
201
+ #: classes/RemoteController.php:1307
202
  #, php-format
203
  msgid "add %s more keyword(s)"
204
  msgstr ""
205
 
206
+ #: classes/RemoteController.php:1308
207
  #, php-format
208
  msgid "write %s more words to start calculating"
209
  msgstr ""
210
 
211
+ #: classes/RemoteController.php:1309 view/Research/Research.php:48
212
  msgid "Add to Briefcase"
213
  msgstr ""
214
 
215
+ #: classes/RemoteController.php:1310
216
  msgid "Add Keyword to Briefcase"
217
  msgstr ""
218
 
219
+ #: classes/RemoteController.php:1311
220
  msgid "Select"
221
  msgstr ""
222
 
223
+ #: classes/RemoteController.php:1312 view/Blocks/Snippet.php:136
224
  #: view/Blocks/Snippet.php:509 view/Blocks/Snippet.php:765
225
  msgid "Auto Draft"
226
  msgstr ""
227
 
228
+ #: classes/RemoteController.php:1313
229
  msgid ""
230
  "You’ve already used the Live Assistant to optimize this post when creating "
231
  "it in your Page Builder. Please go back and resume your optimization work "
268
  msgid "The code for Facebook App must only contain numbers."
269
  msgstr "The code for Facebook App must only contain numbers."
270
 
271
+ #: classes/helpers/Tools.php:82
272
  msgid "Getting started"
273
  msgstr ""
274
 
275
+ #: classes/helpers/Tools.php:107
276
  msgid "Documentation"
277
  msgstr ""
278
 
279
+ #: classes/helpers/Tools.php:108
280
  msgid "Leave a review"
281
  msgstr ""
282
 
283
+ #: classes/helpers/Tools.php:407
284
  msgid "Format"
285
  msgstr ""
286
 
287
+ #: classes/helpers/Tools.php:425 classes/helpers/Tools.php:461
288
  msgid "Category"
289
  msgstr ""
290
 
291
+ #: classes/helpers/Tools.php:443 classes/helpers/Tools.php:479
292
  msgid "Tag"
293
  msgstr ""
294
 
295
+ #: classes/helpers/Tools.php:497
296
  msgid "Shipping Option"
297
  msgstr ""
298
 
299
+ #: classes/helpers/Tools.php:515
300
  msgid "Author at"
301
  msgstr ""
302
 
303
+ #: classes/helpers/Tools.php:587
304
  msgid "Are you looking for"
305
  msgstr ""
306
 
307
+ #: classes/helpers/Tools.php:588
308
  msgid "These are the results for"
309
  msgstr ""
310
 
311
+ #: classes/helpers/Tools.php:588
312
  msgid "that you can find on our website."
313
  msgstr ""
314
 
315
+ #: classes/helpers/Tools.php:622
316
  msgid "Page not found"
317
  msgstr ""
318
 
319
+ #: classes/helpers/Tools.php:623
320
  msgid "This page could not be found on our website."
321
  msgstr ""
322
 
323
+ #: classes/helpers/Tools.php:891
324
  msgid "For better text comparison you need to install PHP mbstring extension."
325
  msgstr ""
326
 
464
  msgstr ""
465
 
466
  #: controllers/Assistant.php:102 controllers/Assistant.php:129
467
+ #: controllers/Audits.php:337 controllers/Ranking.php:134
468
  #: controllers/SeoSettings.php:149 controllers/SeoSettings.php:166
469
  #: controllers/SeoSettings.php:187 controllers/SeoSettings.php:224
470
  #: controllers/SeoSettings.php:250 controllers/SeoSettings.php:278
474
  msgstr ""
475
 
476
  #: controllers/Assistant.php:108 controllers/BulkSeo.php:69
477
+ #: controllers/Patterns.php:100 controllers/Post.php:254
478
+ #: controllers/Post.php:307 controllers/Post.php:339 controllers/Post.php:374
479
  #: controllers/PostsList.php:182 controllers/Research.php:172
480
  #: controllers/Research.php:179 controllers/Research.php:217
481
  #: controllers/Research.php:240 controllers/Research.php:270
487
  #: controllers/SeoSettings.php:543 controllers/SeoSettings.php:568
488
  #: controllers/SeoSettings.php:605 controllers/SeoSettings.php:642
489
  #: controllers/SeoSettings.php:656 controllers/SeoSettings.php:678
490
+ #: controllers/SeoSettings.php:699 controllers/Snippet.php:166
491
  msgid "You do not have permission to perform this action"
492
  msgstr ""
493
 
499
  msgid "The audit was not found. Please load another audit."
500
  msgstr ""
501
 
502
+ #: controllers/Audits.php:163
503
  msgid "Could not load the Audit Page."
504
  msgstr ""
505
 
506
+ #: controllers/Audits.php:278
507
  msgid "Audit page is added. The audit may take a while so please be patient."
508
  msgstr ""
509
 
510
+ #: controllers/Audits.php:281
511
  msgid "You reached the maximum number of audit pages for your account."
512
  msgstr ""
513
 
514
+ #: controllers/Audits.php:284
515
  msgid "Error! Could not add the audit page."
516
  msgstr ""
517
 
518
+ #: controllers/Audits.php:288
519
  msgid "Error! Could not find the audit page in your website."
520
  msgstr ""
521
 
522
+ #: controllers/Audits.php:298
523
  msgid "Audit page sent for recheck. It may take a while so please be patient."
524
  msgstr ""
525
 
526
+ #: controllers/Audits.php:301 controllers/Audits.php:304
527
  msgid "The audit for all pages can be made once an hour."
528
  msgstr ""
529
 
530
+ #: controllers/Audits.php:314
531
  msgid "The audit page is deleted"
532
  msgstr ""
533
 
534
+ #: controllers/Audits.php:316 controllers/FocusPages.php:409
535
  #: controllers/Ranking.php:161 controllers/Ranking.php:179
536
  #: controllers/Ranking.php:197 controllers/Research.php:208
537
  #: controllers/Research.php:211 controllers/Research.php:234
542
  msgid "Invalid params!"
543
  msgstr ""
544
 
545
+ #: controllers/Audits.php:339
546
  msgid "Not a valid email address"
547
  msgstr ""
548
 
562
  msgid "Saved! Task marked as done."
563
  msgstr ""
564
 
565
+ #: controllers/FocusPages.php:147
566
  #, fuzzy
567
  #| msgid "Focus Page does not exists or was deleted from your website."
568
  msgid "Focus Page does not exist or was deleted from your website."
569
  msgstr "Focus Page does not exist or was deleted from your website."
570
 
571
+ #: controllers/FocusPages.php:340
572
  msgid "Focus page is added. The audit may take a while so please be patient."
573
  msgstr ""
574
 
575
+ #: controllers/FocusPages.php:347
576
  msgid "You reached the maximum number of focus pages for all your websites."
577
  msgstr ""
578
 
579
+ #: controllers/FocusPages.php:350
580
  msgid "Error! Could not add the focus page."
581
  msgstr ""
582
 
583
+ #: controllers/FocusPages.php:353
584
  msgid "Error! This focus page is not public."
585
  msgstr ""
586
 
587
+ #: controllers/FocusPages.php:357 controllers/FocusPages.php:396
588
  msgid "Error! Could not find the focus page in your website."
589
  msgstr ""
590
 
591
+ #: controllers/FocusPages.php:384
592
  msgid "Focus page sent for recheck. It may take a while so please be patient."
593
  msgstr ""
594
 
595
+ #: controllers/FocusPages.php:387 controllers/FocusPages.php:391
596
  #, fuzzy
597
  #| msgid "Too many requests, please wait 5 minutes."
598
  msgid "You've made too many requests, please wait a few minutes."
599
  msgstr "You've made too many requests, please wait a few minutes. "
600
 
601
+ #: controllers/FocusPages.php:407
602
  msgid "The focus page is deleted"
603
  msgstr ""
604
 
605
+ #: controllers/Menu.php:123
606
  #, php-format
607
  msgid ""
608
  "An error occurred during activation. If this error persists, please contact "
609
  "us at: %s"
610
  msgstr ""
611
 
612
+ #: controllers/Menu.php:160
613
  msgid "Dashboard"
614
  msgstr ""
615
 
616
+ #: controllers/Menu.php:185 controllers/Menu.php:290 controllers/Menu.php:325
617
  #: view/Blocks/SLASearch.php:7
618
  msgid "Squirrly SEO"
619
  msgstr ""
620
 
621
+ #: controllers/Menu.php:253
622
  msgid "SEO Snippet"
623
  msgstr ""
624
 
625
+ #: controllers/Menu.php:268 controllers/Snippet.php:137
626
  msgid "Custom SEO"
627
  msgstr ""
628
 
629
+ #: controllers/Menu.php:333
630
  msgid "Squirrly Onboarding"
631
  msgstr ""
632
 
633
+ #: controllers/Menu.php:334
634
  msgid "Onboarding"
635
  msgstr ""
636
 
637
+ #: controllers/Menu.php:363
638
  msgid "Import & Export SEO"
639
  msgstr ""
640
 
641
+ #: controllers/Menu.php:364 view/SeoSettings/Backup.php:88
642
  msgid "Import SEO"
643
  msgstr ""
644
 
645
+ #: controllers/Menu.php:374
646
  msgid "Squirrly Account Info"
647
  msgstr ""
648
 
649
+ #: controllers/Menu.php:375
650
  msgid "Account Info"
651
  msgstr ""
652
 
653
+ #: controllers/Menu.php:384
654
  msgid "Squirrly How To & Support"
655
  msgstr ""
656
 
657
+ #: controllers/Menu.php:385
658
  msgid "Help & Support"
659
  msgstr ""
660
 
662
  msgid "Saved! This is how the preview looks like"
663
  msgstr ""
664
 
665
+ #: controllers/Post.php:301
666
  msgid "Could not add the demo post."
667
  msgstr ""
668
 
669
+ #: controllers/Post.php:363 controllers/Post.php:388
670
  msgid "Can't get the post URL"
671
  msgstr ""
672
 
673
+ #: controllers/Post.php:393
674
  msgid "Invalid request"
675
  msgstr ""
676
 
862
  msgid "Squirrly SEO Snippet"
863
  msgstr ""
864
 
865
+ #: controllers/Snippet.php:184
866
  msgid "Could not save the data"
867
  msgstr ""
868
 
1207
  msgstr ""
1208
 
1209
  #: models/Assistant.php:163 models/focuspages/Accuracy.php:45
1210
+ #: models/focuspages/Length.php:71 models/focuspages/Traffic.php:105
1211
  msgid "Connect Google Analytics"
1212
  msgstr ""
1213
 
1856
  msgid "Add meta description to this page of your site"
1857
  msgstr "A short description about your job title."
1858
 
1859
+ #: models/Audits.php:156 models/bulkseo/Metas.php:89
1860
  msgid "Meta Keyword"
1861
  msgstr ""
1862
 
1883
  msgid "Make sure that the search for your keywords is on a rising trend"
1884
  msgstr ""
1885
 
1886
+ #: models/Audits.php:166 models/bulkseo/Metas.php:94
1887
  msgid "Canonical Link"
1888
  msgstr ""
1889
 
4625
  msgid "You got better Score for your Audit"
4626
  msgstr ""
4627
 
4628
+ #: models/CheckSeo.php:1464
4629
  msgid "Could not verify the frontend."
4630
  msgstr ""
4631
 
4632
+ #: models/CheckSeo.php:1831
4633
  msgid "Just another WordPress site"
4634
  msgstr ""
4635
 
4636
+ #: models/CheckSeo.php:1970
4637
  #, php-format
4638
  msgid "Focus Page was not found (error %s)"
4639
  msgstr ""
4640
 
4641
+ #: models/CheckSeo.php:1971 models/CheckSeo.php:2015
4642
  msgid ""
4643
+ "The way your WordPress site is currently hosted can affect the way Squirrly "
4644
+ "SEO operates in order to retrieve and process data about your Focus Pages. "
4645
+ "It’s important to do everything on your end to ensure that the Focus Pages "
4646
+ "audits can be generated by our system."
4647
  msgstr ""
4648
 
4649
+ #: models/CheckSeo.php:1972 models/CheckSeo.php:1991
4650
  msgid ""
4651
  "Use a different browser to check if your Focus Page is visible. Whitelist "
4652
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
4653
  "page so that you’ll receive a full audit."
4654
  msgstr ""
4655
 
4656
+ #: models/CheckSeo.php:1973 models/CheckSeo.php:2017
4657
  msgid "An error is preventing Squirrly from processing your Focus Page audits."
4658
  msgstr ""
4659
 
4660
+ #: models/CheckSeo.php:1980
4661
  #, php-format
4662
  msgid "Your Focus Page is redirected to another page (error %s)"
4663
  msgstr ""
4664
 
4665
+ #: models/CheckSeo.php:1981
4666
  #, php-format
4667
  msgid ""
4668
  "Right now, your Focus Page sends users and search engines to a different URL "
4674
  "operates."
4675
  msgstr ""
4676
 
4677
+ #: models/CheckSeo.php:1982
4678
  msgid ""
4679
  "Choose a page that does NOT redirect to a different page as your Focus Page. "
4680
  "Your Focus Page should have a single URL associated to it so that Squirrly "
4681
  "can serve you the best data."
4682
  msgstr ""
4683
 
4684
+ #: models/CheckSeo.php:1983
4685
  msgid "Make sure that your Focus Page is NOT redirected to a different page."
4686
  msgstr ""
4687
 
4688
+ #: models/CheckSeo.php:1989
4689
  #, php-format
4690
  msgid "Ensure your Focus Pages can be accessed (error %s)"
4691
  msgstr ""
4692
 
4693
+ #: models/CheckSeo.php:1990
4694
  #, php-format
4695
  msgid ""
4696
  "A server-side error is preventing Squirrly from being able to access and "
4700
  "page, which is a critical issue."
4701
  msgstr ""
4702
 
4703
+ #: models/CheckSeo.php:1992
4704
  msgid "A server-side error is preventing your Focus Pages from being accessed."
4705
  msgstr ""
4706
 
4707
+ #: models/CheckSeo.php:1997
4708
  #, php-format
4709
  msgid "Make sure your Focus Pages can be audited (error %s)"
4710
  msgstr ""
4711
 
4712
+ #: models/CheckSeo.php:1998
4713
  msgid ""
4714
  "Squirrly is unable to generate the audit for your Focus Page because it "
4715
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
4717
  "Squirrly’s IP address."
4718
  msgstr ""
4719
 
4720
+ #: models/CheckSeo.php:1999
4721
  msgid ""
4722
  "Check to see if your WordPress site’s server is offline. Whitelist our "
4723
  "crawler IP address (176.9.112.210) to allow our server to verify your page "
4724
  "so that you’ll receive a full audit."
4725
  msgstr ""
4726
 
4727
+ #: models/CheckSeo.php:2000 models/CheckSeo.php:2008
4728
  msgid ""
4729
  "An error prevents Squirrly from gathering critical data about your Focus "
4730
  "Page."
4731
  msgstr ""
4732
 
4733
+ #: models/CheckSeo.php:2005
4734
+ msgid "Make sure your Focus Pages can be audited (firewall protection)"
4735
+ msgstr ""
4736
+
4737
+ #: models/CheckSeo.php:2006
4738
+ msgid ""
4739
+ "Squirrly is unable to generate the audit for your Focus Page because it "
4740
+ "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
4741
+ "server has a firewall protection and is blocking Squirrly’s IP address."
4742
+ msgstr ""
4743
+
4744
+ #: models/CheckSeo.php:2007 models/CheckSeo.php:2016
4745
+ msgid ""
4746
+ "Whitelist our crawler IP address (176.9.112.210) to allow our server to "
4747
+ "verify your page so that you’ll receive a full audit."
4748
+ msgstr ""
4749
+
4750
+ #: models/CheckSeo.php:2014
4751
+ #, php-format
4752
+ msgid "Focus Page could not be verified (error: %s)"
4753
+ msgstr ""
4754
+
4755
+ #: models/FocusPages.php:21 models/bulkseo/Metas.php:134
4756
  #: models/focuspages/Clicks.php:64 models/focuspages/Content.php:88
4757
  #: models/focuspages/Ctr.php:64 models/focuspages/Image.php:80
4758
  #: models/focuspages/Impressions.php:64 models/focuspages/Keyword.php:103
4759
+ #: models/focuspages/Keyword.php:106 models/focuspages/Snippet.php:151
4760
  #: models/focuspages/Strategy.php:102 view/Blocks/KRFound.php:15
4761
  #: view/Blocks/KRHistory.php:15 view/Ranking/Gscsync.php:31
4762
  #: view/Ranking/Rankings.php:210 view/Ranking/Rankings.php:348
4763
  #: view/Research/Briefcase.php:107 view/Research/Briefcase.php:247
4764
  #: view/Research/History.php:29 view/Research/HistoryDetails.php:7
4765
+ #: view/Research/Research.php:194 view/Research/Suggested.php:28
4766
  msgid "Keyword"
4767
  msgstr ""
4768
 
4881
  msgid " Research"
4882
  msgstr ""
4883
 
4884
+ #: models/Menu.php:139 view/Blocks/Features.php:34
4885
  msgid "Live Assistant"
4886
  msgstr ""
4887
 
4905
  msgid " SEO Settings"
4906
  msgstr ""
4907
 
4908
+ #: models/Menu.php:163 models/Menu.php:250 view/Blocks/Features.php:7
4909
+ #: view/Blocks/FocusPages.php:6 view/FocusPages/Pagelist.php:23
4910
  msgid "Focus Pages"
4911
  msgstr ""
4912
 
4914
  msgid " Focus Pages"
4915
  msgstr ""
4916
 
4917
+ #: models/Menu.php:171 view/Blocks/Audits.php:6 view/Blocks/Features.php:187
4918
  msgid "SEO Audit"
4919
  msgstr ""
4920
 
5031
  msgstr ""
5032
 
5033
  #: models/Menu.php:312 view/BulkSeo/Bulkseo.php:29
 
5034
  msgid "Bulk SEO"
5035
  msgstr ""
5036
 
5330
  msgstr ""
5331
 
5332
  #: models/Post.php:262 models/focuspages/Snippet.php:89
5333
+ #: models/focuspages/Snippet.php:218 models/focuspages/Snippet.php:240
5334
  #: view/Audits/Addpage.php:131 view/Blocks/Snippet.php:171
5335
  #: view/Blocks/Snippet.php:570 view/Blocks/Snippet.php:825
5336
  #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:132
5337
+ #: view/SeoSettings/Automation.php:125 view/SeoSettings/Metas.php:157
 
5338
  msgid "Title"
5339
  msgstr ""
5340
 
5485
  msgid "Current"
5486
  msgstr ""
5487
 
5488
+ #: models/bulkseo/Metas.php:52
5489
  msgid "Title not empty"
5490
  msgstr ""
5491
 
5492
+ #: models/bulkseo/Metas.php:53 view/Blocks/Snippet.php:187
5493
  #: view/Blocks/Snippet.php:586 view/Blocks/Snippet.php:841
5494
  msgid "Current Title"
5495
  msgstr ""
5496
 
5497
+ #: models/bulkseo/Metas.php:55
5498
  #, php-format
5499
  msgid ""
5500
  "The title for this URL must not be empty. %s Write a title for this page. "
5503
  "more clicks you can get when people find your page on search engines."
5504
  msgstr ""
5505
 
5506
+ #: models/bulkseo/Metas.php:58
5507
  #, php-format
5508
  msgid "Title up to %s chars"
5509
  msgstr ""
5510
 
5511
+ #: models/bulkseo/Metas.php:59
5512
  #, fuzzy
5513
  #| msgid "Json-LD Title Length"
5514
  msgid "Current Title Length"
5515
  msgstr "JSON-LD Title Length"
5516
 
5517
+ #: models/bulkseo/Metas.php:60 models/bulkseo/Metas.php:78
5518
+ #: models/bulkseo/Opengraph.php:78 models/bulkseo/Opengraph.php:88
5519
+ #: models/bulkseo/Twittercard.php:75 models/bulkseo/Twittercard.php:85
5520
  msgid "chars"
5521
  msgstr ""
5522
 
5523
+ #: models/bulkseo/Metas.php:61 models/bulkseo/Opengraph.php:79
5524
+ #: models/bulkseo/Twittercard.php:76
5525
  #, fuzzy, php-format
5526
  #| msgid ""
5527
  #| "Title length has to be bigger than %s chars and up to %s chars. %s You "
5533
  "Title has to be longer than %s chars and up to %s chars. %s You can change "
5534
  "the title max length from %sSEO Settings > Automation%s."
5535
 
5536
+ #: models/bulkseo/Metas.php:64 models/focuspages/Snippet.php:100
5537
  msgid "Keyword in title"
5538
  msgstr ""
5539
 
5540
+ #: models/bulkseo/Metas.php:65 models/bulkseo/Metas.php:83
5541
  msgid "Squirrly Keyword"
5542
  msgstr ""
5543
 
5544
+ #: models/bulkseo/Metas.php:66 models/bulkseo/Metas.php:84
5545
  msgid "no keywords"
5546
  msgstr ""
5547
 
5548
+ #: models/bulkseo/Metas.php:67 models/focuspages/Snippet.php:103
5549
  #, php-format
5550
  msgid ""
5551
  "Your keyword must be present in the title of the page. %s It's a very "
5557
  "VectorWatch\" would be a much better choice for a title."
5558
  msgstr ""
5559
 
5560
+ #: models/bulkseo/Metas.php:70
5561
  msgid "Description not empty"
5562
  msgstr ""
5563
 
5564
+ #: models/bulkseo/Metas.php:71 view/Blocks/Snippet.php:239
5565
  #: view/Blocks/Snippet.php:630 view/Blocks/Snippet.php:885
5566
  msgid "Current Description"
5567
  msgstr ""
5568
 
5569
+ #: models/bulkseo/Metas.php:73
5570
  #, php-format
5571
  msgid ""
5572
  "Meta descriptions are important for SEO on multiple search engines. %s You "
5575
  "on search engines."
5576
  msgstr ""
5577
 
5578
+ #: models/bulkseo/Metas.php:76
5579
  #, php-format
5580
  msgid "Description up to %s chars"
5581
  msgstr ""
5582
 
5583
+ #: models/bulkseo/Metas.php:77
5584
  #, fuzzy
5585
  #| msgid "Json-LD Description Length"
5586
  msgid "Current Description Length"
5587
  msgstr "JSON-LD Description Length"
5588
 
5589
+ #: models/bulkseo/Metas.php:79 models/bulkseo/Opengraph.php:89
5590
+ #: models/bulkseo/Twittercard.php:86
5591
  #, fuzzy, php-format
5592
  #| msgid ""
5593
  #| "Description length has to be bigger than %s chars and up to %s chars. %s "
5600
  "Description has to be longer than %s chars and up to %s chars. %s You can "
5601
  "change the description max length from %sSEO Settings > Automation%s."
5602
 
5603
+ #: models/bulkseo/Metas.php:82 models/focuspages/Snippet.php:106
5604
  msgid "Keyword in description"
5605
  msgstr ""
5606
 
5607
+ #: models/bulkseo/Metas.php:85
5608
  #, fuzzy, php-format
5609
  #| msgid ""
5610
  #| "Same as with the title task. %s If a user reads the description of your "
5632
  "description of the pages it brings to TOP 10. It's pretty clear they care a "
5633
  "lot about this, because that's what people want to find on the search engine."
5634
 
5635
+ #: models/bulkseo/Metas.php:88
5636
  msgid "Meta Keywords (2-4 Words)"
5637
  msgstr ""
5638
 
5639
+ #: models/bulkseo/Metas.php:90
5640
  #, fuzzy
5641
  #| msgid "categorise the keywords"
5642
  msgid "no meta keywords"
5643
  msgstr "group keywords "
5644
 
5645
+ #: models/bulkseo/Metas.php:91
5646
  msgid ""
5647
  "Even if Meta keywords are not mandatory for Google, it's important for other "
5648
  "search engines to find this meta and to index your post for these keywords."
5649
  msgstr ""
5650
 
5651
+ #: models/bulkseo/Metas.php:95
5652
  msgid "Current Link"
5653
  msgstr ""
5654
 
5655
+ #: models/bulkseo/Metas.php:97
5656
  #, php-format
5657
  msgid ""
5658
  "You don't have to set any canonical link if your post is not copied from "
5662
  "gets indexed and ranked."
5663
  msgstr ""
5664
 
5665
+ #: models/bulkseo/Metas.php:106
5666
  msgid "Some Squirrly Metas are deactivated."
5667
  msgstr ""
5668
 
5669
+ #: models/bulkseo/Metas.php:111
5670
+ msgid ""
5671
+ "Some Squirrly Metas are not set correctly. Click to open the Assistant in "
5672
+ "the right sidebar and follow the instructions."
5673
+ msgstr ""
5674
 
5675
+ #: models/bulkseo/Metas.php:116
5676
  msgid "Some Squirrly Metas are generated automatically."
5677
  msgstr ""
5678
 
5679
+ #: models/bulkseo/Metas.php:119
5680
  #, fuzzy
5681
  #| msgid "All Squirrly Metas are customized and set corretly."
5682
  msgid "All Squirrly Metas are customized and set correctly."
5683
  msgstr "All Squirrly Metas are customized and set correctly."
5684
 
5685
+ #: models/bulkseo/Metas.php:130 models/bulkseo/Opengraph.php:131
5686
+ #: models/bulkseo/Twittercard.php:128 models/bulkseo/Visibility.php:69
5687
  #: models/focuspages/Accuracy.php:34 models/focuspages/Audit.php:144
5688
  #: models/focuspages/Authority.php:33 models/focuspages/Backlinks.php:46
5689
  #: models/focuspages/Clicks.php:56 models/focuspages/Content.php:75
5692
  #: models/focuspages/Innerlinks.php:64 models/focuspages/Keyword.php:79
5693
  #: models/focuspages/Length.php:55 models/focuspages/Nofollow.php:65
5694
  #: models/focuspages/Onpage.php:78 models/focuspages/Ranking.php:35
5695
+ #: models/focuspages/Snippet.php:145 models/focuspages/Social.php:56
5696
  #: models/focuspages/Strategy.php:96 models/focuspages/Traffic.php:94
5697
  msgid "Current URL"
5698
  msgstr ""
5699
 
5700
+ #: models/bulkseo/Metas.php:136
5701
  msgid "No Meta Keyword Found"
5702
  msgstr ""
5703
 
5704
+ #: models/bulkseo/Metas.php:152 models/bulkseo/Metas.php:188
5705
+ #: models/bulkseo/Metas.php:221 models/bulkseo/Metas.php:265
5706
+ #: models/bulkseo/Metas.php:301 models/bulkseo/Metas.php:334
5707
+ #: models/bulkseo/Metas.php:382 models/bulkseo/Metas.php:421
5708
+ #: models/bulkseo/Opengraph.php:145 models/bulkseo/Opengraph.php:181
5709
+ #: models/bulkseo/Opengraph.php:213 models/bulkseo/Opengraph.php:249
5710
+ #: models/bulkseo/Opengraph.php:285 models/bulkseo/Twittercard.php:142
5711
+ #: models/bulkseo/Twittercard.php:178 models/bulkseo/Twittercard.php:210
5712
+ #: models/bulkseo/Twittercard.php:246 models/bulkseo/Twittercard.php:282
5713
  #: models/bulkseo/Visibility.php:83 models/bulkseo/Visibility.php:122
5714
  #: models/bulkseo/Visibility.php:155
5715
  msgid "Squirrly Snippet is deactivated from this post."
5716
  msgstr ""
5717
 
5718
+ #: models/bulkseo/Metas.php:156 models/bulkseo/Metas.php:192
5719
+ #: models/bulkseo/Metas.php:225 models/bulkseo/Metas.php:269
5720
+ #: models/bulkseo/Metas.php:305 models/bulkseo/Metas.php:338
5721
+ #: models/bulkseo/Metas.php:386 models/bulkseo/Metas.php:425
5722
  #, php-format
5723
  msgid ""
5724
  "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
5725
  "%s."
5726
  msgstr ""
5727
 
5728
+ #: models/bulkseo/Metas.php:160 models/bulkseo/Metas.php:196
5729
+ #: models/bulkseo/Metas.php:229
5730
  #, php-format
5731
  msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
5732
  msgstr ""
5733
 
5734
+ #: models/bulkseo/Metas.php:164 models/bulkseo/Metas.php:200
5735
+ #: models/bulkseo/Metas.php:233 models/bulkseo/Metas.php:277
5736
+ #: models/bulkseo/Metas.php:313 models/bulkseo/Metas.php:346
5737
+ #: models/bulkseo/Metas.php:390 models/bulkseo/Metas.php:433
5738
  #, php-format
5739
  msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
5740
  msgstr ""
5741
 
5742
+ #: models/bulkseo/Metas.php:173 models/bulkseo/Metas.php:209
5743
+ #: models/bulkseo/Opengraph.php:166 models/bulkseo/Opengraph.php:202
5744
+ #: models/bulkseo/Twittercard.php:163 models/bulkseo/Twittercard.php:199
5745
  msgid "Title is generated automatically."
5746
  msgstr ""
5747
 
5748
+ #: models/bulkseo/Metas.php:237 models/bulkseo/Metas.php:350
5749
+ #: models/bulkseo/Metas.php:394
5750
  #, php-format
5751
  msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
5752
  msgstr ""
5753
 
5754
+ #: models/bulkseo/Metas.php:273 models/bulkseo/Metas.php:309
5755
+ #: models/bulkseo/Metas.php:342
5756
  #, php-format
5757
  msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
5758
  msgstr ""
5759
 
5760
+ #: models/bulkseo/Metas.php:286 models/bulkseo/Metas.php:323
5761
+ #: models/bulkseo/Opengraph.php:234 models/bulkseo/Opengraph.php:270
5762
+ #: models/bulkseo/Twittercard.php:231 models/bulkseo/Twittercard.php:267
5763
  msgid "Description is generated automatically."
5764
  msgstr ""
5765
 
5766
+ #: models/bulkseo/Metas.php:429
5767
  #, php-format
5768
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
5769
  msgstr ""
5770
 
5771
+ #: models/bulkseo/Opengraph.php:72
5772
  msgid "OG title not empty"
5773
  msgstr ""
5774
 
5775
+ #: models/bulkseo/Opengraph.php:74
5776
  #, php-format
5777
  msgid ""
5778
  "You need to have an Open Graph title for this post. %s It will help you "
5780
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5781
  msgstr ""
5782
 
5783
+ #: models/bulkseo/Opengraph.php:77
5784
  #, php-format
5785
  msgid "OG title up to %s chars"
5786
  msgstr ""
5787
 
5788
+ #: models/bulkseo/Opengraph.php:82
5789
  msgid "OG description not empty"
5790
  msgstr ""
5791
 
5792
+ #: models/bulkseo/Opengraph.php:84
5793
  #, php-format
5794
  msgid ""
5795
  "You need to have an Open Graph description for this post. %s It will help "
5797
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5798
  msgstr ""
5799
 
5800
+ #: models/bulkseo/Opengraph.php:87
5801
  #, php-format
5802
  msgid "OG description up to %s chars"
5803
  msgstr ""
5804
 
5805
+ #: models/bulkseo/Opengraph.php:92 view/SeoSettings/Metas.php:184
5806
  msgid "OG Image"
5807
  msgstr ""
5808
 
5809
+ #: models/bulkseo/Opengraph.php:93 models/bulkseo/Twittercard.php:90
5810
  msgid "(featured image)"
5811
  msgstr ""
5812
 
5813
+ #: models/bulkseo/Opengraph.php:94
5814
  #, php-format
5815
  msgid ""
5816
  "Set a good looking image for your URL. It needs to look good in Facebook and "
5818
  "attract more clicks to your site."
5819
  msgstr ""
5820
 
5821
+ #: models/bulkseo/Opengraph.php:108
5822
  msgid "Open Graph is deactivated."
5823
  msgstr ""
5824
 
5825
+ #: models/bulkseo/Opengraph.php:113
5826
+ msgid ""
5827
+ "Open Graph is not set correctly. Click to open the Assistant in the right "
5828
+ "sidebar and follow the instructions."
5829
+ msgstr ""
5830
 
5831
+ #: models/bulkseo/Opengraph.php:118
5832
  msgid "Open Graph is generated automatically."
5833
  msgstr ""
5834
 
5835
+ #: models/bulkseo/Opengraph.php:121
5836
  #, fuzzy
5837
  #| msgid "Open Graph is customized and set corretly."
5838
  msgid "Open Graph is customized and set correctly."
5839
  msgstr "Open Graph is customized and set correctly."
5840
 
5841
+ #: models/bulkseo/Opengraph.php:149 models/bulkseo/Opengraph.php:185
5842
+ #: models/bulkseo/Opengraph.php:217 models/bulkseo/Opengraph.php:253
5843
+ #: models/bulkseo/Opengraph.php:289
5844
  #, php-format
5845
  msgid ""
5846
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
5847
  "%s."
5848
  msgstr ""
5849
 
5850
+ #: models/bulkseo/Opengraph.php:153 models/bulkseo/Opengraph.php:189
5851
+ #: models/bulkseo/Opengraph.php:221 models/bulkseo/Opengraph.php:257
5852
+ #: models/bulkseo/Opengraph.php:293
5853
  #, php-format
5854
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
5855
  msgstr ""
5856
 
5857
+ #: models/bulkseo/Opengraph.php:157 models/bulkseo/Opengraph.php:193
5858
+ #: models/bulkseo/Opengraph.php:225 models/bulkseo/Opengraph.php:261
5859
+ #: models/bulkseo/Opengraph.php:297 models/bulkseo/Twittercard.php:154
5860
+ #: models/bulkseo/Twittercard.php:190 models/bulkseo/Twittercard.php:222
5861
+ #: models/bulkseo/Twittercard.php:258 models/bulkseo/Twittercard.php:294
5862
  #, php-format
5863
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
5864
  msgstr ""
5865
 
5866
+ #: models/bulkseo/Twittercard.php:69
5867
  msgid "TC title not empty"
5868
  msgstr ""
5869
 
5870
+ #: models/bulkseo/Twittercard.php:71
5871
  #, php-format
5872
  msgid ""
5873
  "You need to have a title for the Twitter Card of this post. %s It will help "
5875
  "also important for SEO purposes."
5876
  msgstr ""
5877
 
5878
+ #: models/bulkseo/Twittercard.php:74
5879
  #, php-format
5880
  msgid "TC title up to %s chars"
5881
  msgstr ""
5882
 
5883
+ #: models/bulkseo/Twittercard.php:79
5884
  msgid "TC Description not empty"
5885
  msgstr ""
5886
 
5887
+ #: models/bulkseo/Twittercard.php:81
5888
  #, php-format
5889
  msgid ""
5890
  "You need to have a Twitter Card description for this post. %s It will help "
5893
  "to your site. %s It's also important for SEO purposes."
5894
  msgstr ""
5895
 
5896
+ #: models/bulkseo/Twittercard.php:84
5897
  #, php-format
5898
  msgid "TC description up to %s chars"
5899
  msgstr ""
5900
 
5901
+ #: models/bulkseo/Twittercard.php:89
5902
  msgid "TC Image"
5903
  msgstr ""
5904
 
5905
+ #: models/bulkseo/Twittercard.php:91
5906
  #, php-format
5907
  msgid ""
5908
  "Set a good looking image for your URL. It needs to look good in Twitter "
5910
  "clicks to your site."
5911
  msgstr ""
5912
 
5913
+ #: models/bulkseo/Twittercard.php:105
5914
  msgid "Twitter Card is deactivated."
5915
  msgstr ""
5916
 
5917
+ #: models/bulkseo/Twittercard.php:110
5918
+ msgid ""
5919
+ "Twitter Card is not set correctly. Click to open the Assistant in the right "
5920
+ "sidebar and follow the instructions."
5921
+ msgstr ""
5922
 
5923
+ #: models/bulkseo/Twittercard.php:115
5924
  msgid "Twitter Card is generated automatically."
5925
  msgstr ""
5926
 
5927
+ #: models/bulkseo/Twittercard.php:118
5928
  #, fuzzy
5929
  #| msgid "Twitter Card is customized and set corretly."
5930
  msgid "Twitter Card is customized and set correctly."
5931
  msgstr "Twitter Card is customized and set correctly."
5932
 
5933
+ #: models/bulkseo/Twittercard.php:146 models/bulkseo/Twittercard.php:182
5934
+ #: models/bulkseo/Twittercard.php:214 models/bulkseo/Twittercard.php:250
5935
+ #: models/bulkseo/Twittercard.php:286
5936
  #, php-format
5937
  msgid ""
5938
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
5939
  "Automation%s."
5940
  msgstr ""
5941
 
5942
+ #: models/bulkseo/Twittercard.php:150 models/bulkseo/Twittercard.php:186
5943
+ #: models/bulkseo/Twittercard.php:218 models/bulkseo/Twittercard.php:254
5944
+ #: models/bulkseo/Twittercard.php:290
5945
  #, php-format
5946
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
5947
  msgstr ""
5993
  msgstr ""
5994
 
5995
  #: models/bulkseo/Visibility.php:55
5996
+ msgid ""
5997
+ "Visibility is not set correctly. Click to open the Assistant in the right "
5998
+ "sidebar and follow the instructions."
5999
+ msgstr ""
6000
 
6001
  #: models/bulkseo/Visibility.php:59
6002
  #, fuzzy
6075
 
6076
  #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
6077
  #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
6078
+ #: models/focuspages/Indexability.php:95 models/focuspages/Traffic.php:100
6079
  msgid "Connect Google Search"
6080
  msgstr ""
6081
 
6250
  msgid "At Least %s Majestic SEO Links"
6251
  msgstr ""
6252
 
6253
+ #: models/focuspages/Backlinks.php:81 models/focuspages/Content.php:118
6254
+ #: models/focuspages/Image.php:109 models/focuspages/Impressions.php:102
6255
+ #: models/focuspages/Indexability.php:112 models/focuspages/Innerlinks.php:86
6256
+ #: models/focuspages/Keyword.php:156 models/focuspages/Length.php:93
6257
+ #: models/focuspages/Nofollow.php:77 models/focuspages/Onpage.php:94
6258
+ #: models/focuspages/Ranking.php:48 models/focuspages/Snippet.php:168
6259
+ #: models/focuspages/Social.php:72 models/focuspages/Strategy.php:136
6260
+ #: models/focuspages/Traffic.php:126
6261
+ msgid ""
6262
+ "Click to open the Assistant in the right sidebar and follow the instructions."
6263
+ msgstr ""
6264
+
6265
  #: models/focuspages/Clicks.php:42
6266
  msgid "Clicks from Search Engine in the last 3 months"
6267
  msgstr ""
6278
  #: models/focuspages/Clicks.php:75 models/focuspages/Content.php:93
6279
  #: models/focuspages/Ctr.php:75 models/focuspages/Image.php:88
6280
  #: models/focuspages/Impressions.php:75 models/focuspages/Keyword.php:114
6281
+ #: models/focuspages/Keyword.php:182 models/focuspages/Keyword.php:200
6282
+ #: models/focuspages/Keyword.php:223 models/focuspages/Snippet.php:153
6283
  #: models/focuspages/Strategy.php:112
6284
  msgid "No Keyword Found"
6285
  msgstr ""
6291
  msgid "Optimize for a keyword"
6292
  msgstr ""
6293
 
6294
+ #: models/focuspages/Clicks.php:96 models/focuspages/Content.php:114
6295
+ #: models/focuspages/Ctr.php:100 models/focuspages/Impressions.php:96
6296
+ #: models/focuspages/Keyword.php:149 models/focuspages/Strategy.php:132
6297
+ msgid ""
6298
+ "Optimize the page for a keyword. Click to open the Assistant in the right "
6299
+ "sidebar and follow the instructions."
6300
  msgstr ""
6301
 
6302
+ #: models/focuspages/Clicks.php:98 models/focuspages/Ctr.php:96
6303
+ msgid "Connect to Google Search Console"
 
 
6304
  msgstr ""
6305
 
6306
  #: models/focuspages/Content.php:46
6434
  "you used it more than once."
6435
  msgstr ""
6436
 
6437
+ #: models/focuspages/Image.php:85 models/focuspages/Snippet.php:156
6438
  msgid "Edit your snippet"
6439
  msgstr ""
6440
 
6441
+ #: models/focuspages/Image.php:125
6442
  msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
6443
  msgstr ""
6444
 
6445
+ #: models/focuspages/Image.php:126
6446
  #, fuzzy
6447
  #| msgid "There are no articles found"
6448
  msgid "No image found"
6452
  msgid "Search Results Impressions in the last 3 months"
6453
  msgstr ""
6454
 
6455
+ #: models/focuspages/Impressions.php:98
6456
+ msgid "Connect to Google Search Console."
6457
+ msgstr ""
6458
+
6459
  #: models/focuspages/Indexability.php:52
6460
  msgid "Yes, do index"
6461
  msgstr ""
6680
  #: models/focuspages/Keyword.php:152
6681
  msgid ""
6682
  "Congratulations for ranking with this keyword, but it will require special "
6683
+ "attention from you to keep it within TOP 10 positions"
6684
  msgstr ""
6685
 
6686
+ #: models/focuspages/Keyword.php:182 models/focuspages/Keyword.php:200
6687
+ #: models/focuspages/Keyword.php:223
6688
  msgid "Please add a keyword first."
6689
  msgstr ""
6690
 
6734
  msgid "Edit Page"
6735
  msgstr ""
6736
 
6737
+ #: models/focuspages/Length.php:89
6738
+ msgid "Connect to Google Analytics first."
6739
+ msgstr ""
6740
+
6741
+ #: models/focuspages/Length.php:125 models/focuspages/Traffic.php:143
6742
+ #: models/focuspages/Traffic.php:159 models/focuspages/Traffic.php:175
6743
+ msgid "Connect Google Analytics first."
6744
  msgstr ""
6745
 
6746
  #: models/focuspages/Nofollow.php:50
6853
  "that product."
6854
  msgstr ""
6855
 
6856
+ #: models/focuspages/Snippet.php:95 models/focuspages/Snippet.php:219
6857
+ #: models/focuspages/Snippet.php:241 view/Blocks/Snippet.php:613
6858
  #: view/Blocks/Snippet.php:868 view/SeoSettings/Automation.php:134
6859
  #: view/SeoSettings/Metas.php:166
6860
  msgid "Description"
6874
  "boost CTR (click-through rates)."
6875
  msgstr ""
6876
 
6877
+ #: models/focuspages/Snippet.php:102
6878
+ #, php-format
6879
+ msgid "Keyword %s must be present in Title"
6880
+ msgstr ""
6881
+
6882
+ #: models/focuspages/Snippet.php:107
6883
+ #, php-format
6884
+ msgid "Keyword %s must be present in Description"
6885
+ msgstr ""
6886
+
6887
+ #: models/focuspages/Snippet.php:108
6888
  #, php-format
6889
  msgid ""
6890
  "Same as with the title task. %s If a user reads the description of your page "
6903
  "description of the pages it brings to TOP 10. It's pretty clear they care a "
6904
  "lot about this, because that's what people want to find on the search engine."
6905
 
6906
+ #: models/focuspages/Snippet.php:111
6907
  msgid "Open Graph - full definition"
6908
  msgstr ""
6909
 
6910
+ #: models/focuspages/Snippet.php:113
6911
  #, php-format
6912
  msgid ""
6913
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
6919
  "relevant for your search engine position placements."
6920
  msgstr ""
6921
 
6922
+ #: models/focuspages/Snippet.php:116
6923
  msgid "Twitter Cards - full definition"
6924
  msgstr ""
6925
 
6926
+ #: models/focuspages/Snippet.php:118
6927
  #, php-format
6928
  msgid ""
6929
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
6933
  "that you won't miss a beat."
6934
  msgstr ""
6935
 
6936
+ #: models/focuspages/Snippet.php:121
6937
  #, fuzzy
6938
  #| msgid "Json-LD definition"
6939
  msgid "JSON-LD definition"
6940
  msgstr "JSON-LD definition"
6941
 
6942
+ #: models/focuspages/Snippet.php:122
6943
  #, php-format
6944
  msgid ""
6945
  "To turn this task to green, you can easily use the JSON-LD section inside "
6950
  "%shttps://search.google.com/structured-data/testing-tool%s"
6951
  msgstr ""
6952
 
6953
+ #: models/focuspages/Snippet.php:125
6954
  msgid "Customized"
6955
  msgstr ""
6956
 
6957
+ #: models/focuspages/Snippet.php:126
6958
  #, php-format
6959
  msgid ""
6960
  "The Snippets of your most important pages should be customized. %s Use the "
6968
  "own custom snippet will be the one that gets displayed."
6969
  msgstr ""
6970
 
6971
+ #: models/focuspages/Snippet.php:220 models/focuspages/Snippet.php:242
6972
  msgid "Image"
6973
  msgstr ""
6974
 
7071
  msgid "Manage Strategy"
7072
  msgstr ""
7073
 
7074
+ #: models/focuspages/Strategy.php:168 models/focuspages/Strategy.php:175
7075
  msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
7076
  msgstr ""
7077
 
7155
  "happen more often than you would think."
7156
  msgstr ""
7157
 
7158
+ #: models/focuspages/Traffic.php:120
7159
+ msgid "Connect Google Analytics first"
7160
+ msgstr ""
7161
+
7162
  #: models/focuspages/Traffic.php:122
7163
  msgid "Not enough traffic to show relevant stats"
7164
  msgstr ""
7195
  msgid "Add New"
7196
  msgstr ""
7197
 
7198
+ #: view/Assistant/Settings.php:7 view/Audits/Addpage.php:8
7199
+ #: view/Audits/Audit.php:8 view/Audits/Audits.php:8 view/Audits/Compare.php:11
7200
+ #: view/Audits/Settings.php:7 view/BulkSeo/Bulkseo.php:12
7201
+ #: view/FocusPages/Addpage.php:8 view/FocusPages/Pagelist.php:8
7202
+ #: view/FocusPages/Settings.php:7 view/Ranking/Rankings.php:17
7203
+ #: view/Ranking/Settings.php:7 view/SeoSettings/Advanced.php:7
7204
+ #: view/SeoSettings/Automation.php:7 view/SeoSettings/Favicon.php:7
7205
+ #: view/SeoSettings/Metas.php:7 view/SeoSettings/Robots.php:7
7206
+ #: view/SeoSettings/Sitemap.php:7 view/SeoSettings/Social.php:7
7207
+ #: view/SeoSettings/Tracking.php:7 view/SeoSettings/Webmaster.php:7
7208
+ msgid ""
7209
+ "You do not have permission to access this page. You need Squirrly SEO Admin "
7210
+ "role."
7211
+ msgstr ""
7212
+
7213
+ #: view/Assistant/Settings.php:25
7214
  msgid "Live Assistant Settings"
7215
  msgstr ""
7216
 
7217
+ #: view/Assistant/Settings.php:40
7218
  msgid "Squirrly Tooltips"
7219
  msgstr ""
7220
 
7221
+ #: view/Assistant/Settings.php:41
7222
  #, php-format
7223
  msgid ""
7224
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. \"Enter a keyword"
7225
  "\")."
7226
  msgstr ""
7227
 
7228
+ #: view/Assistant/Settings.php:51
7229
  msgid "Download Remote Images"
7230
  msgstr ""
7231
 
7232
+ #: view/Assistant/Settings.php:52
7233
  #, php-format
7234
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
7235
  msgstr ""
7236
 
7237
+ #: view/Assistant/Settings.php:53
7238
  msgid ""
7239
  "Prevent from losing the images you use in your articles in case the remote "
7240
  "images are deleted."
7241
  msgstr ""
7242
 
7243
+ #: view/Assistant/Settings.php:64
7244
  msgid "Copyright Free Images"
7245
  msgstr ""
7246
 
7247
+ #: view/Assistant/Settings.php:65
7248
  #, php-format
7249
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7250
  msgstr ""
7251
 
7252
+ #: view/Assistant/Settings.php:75
7253
  #, fuzzy
7254
  #| msgid "use live assistant"
7255
  msgid "Live Assistant Type"
7256
  msgstr "use the Live Assistant"
7257
 
7258
+ #: view/Assistant/Settings.php:76
7259
  msgid "Select how you want Squirrly Live Assistant to load in editor."
7260
  msgstr ""
7261
 
7262
+ #: view/Assistant/Settings.php:80
7263
  msgid "Auto"
7264
  msgstr ""
7265
 
7266
+ #: view/Assistant/Settings.php:81
7267
  msgid "Integrated Box"
7268
  msgstr ""
7269
 
7270
+ #: view/Assistant/Settings.php:82
7271
  msgid "Floating Box"
7272
  msgstr ""
7273
 
7274
+ #: view/Assistant/Settings.php:95
7275
  msgid "Activate Live Assistant in Frontend"
7276
  msgstr ""
7277
 
7278
+ #: view/Assistant/Settings.php:95
7279
  msgid "(BETA)"
7280
  msgstr ""
7281
 
7282
+ #: view/Assistant/Settings.php:96
7283
  msgid ""
7284
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7285
  "with Builders."
7286
  msgstr ""
7287
 
7288
+ #: view/Assistant/Settings.php:97
7289
  msgid "Currently supports the Elementor Builder plugin."
7290
  msgstr ""
7291
 
7292
+ #: view/Assistant/Settings.php:104
7293
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
7294
  msgstr ""
7295
 
7296
+ #: view/Assistant/Settings.php:106
7297
  msgid ""
7298
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
7299
  "post types."
7300
  msgstr ""
7301
 
7302
+ #: view/Assistant/Settings.php:112
7303
  msgid "Exclusions"
7304
  msgstr ""
7305
 
7306
+ #: view/Assistant/Settings.php:113
7307
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7308
  msgstr ""
7309
 
7310
+ #: view/Assistant/Settings.php:114
7311
  msgid "Hold Control key to select multiple places"
7312
  msgstr ""
7313
 
7314
+ #: view/Assistant/Settings.php:141 view/SeoSettings/Automation.php:474
7315
  #: view/SeoSettings/Automation.php:595 view/SeoSettings/Jsonld.php:243
7316
  #: view/SeoSettings/Metas.php:231 view/SeoSettings/Sitemap.php:305
7317
  #: view/SeoSettings/Social.php:372
7318
  msgid "Show Advanced Options"
7319
  msgstr ""
7320
 
7321
+ #: view/Assistant/Settings.php:142 view/SeoSettings/Automation.php:475
7322
  #: view/SeoSettings/Automation.php:596 view/SeoSettings/Jsonld.php:244
7323
  #: view/SeoSettings/Metas.php:232 view/SeoSettings/Sitemap.php:306
7324
  #: view/SeoSettings/Social.php:373
7325
  msgid "Hide Advanced Options"
7326
  msgstr ""
7327
 
7328
+ #: view/Assistant/Settings.php:145 view/Audits/Settings.php:60
7329
+ #: view/Ranking/Settings.php:173 view/SeoSettings/Advanced.php:90
7330
  #: view/SeoSettings/Automation.php:478 view/SeoSettings/Automation.php:599
7331
  #: view/SeoSettings/Backup.php:206 view/SeoSettings/Favicon.php:107
7332
  #: view/SeoSettings/Jsonld.php:247 view/SeoSettings/Metas.php:235
7336
  msgid "Save Settings"
7337
  msgstr ""
7338
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7339
  #: view/Audits/Addpage.php:22
7340
  msgid "Add a page in Audit"
7341
  msgstr ""
7348
  msgstr ""
7349
 
7350
  #: view/Audits/Addpage.php:92 view/BulkSeo/Bulkseo.php:101
7351
+ #: view/FocusPages/Addpage.php:92
7352
  msgid "Any status"
7353
  msgstr ""
7354
 
7355
  #: view/Audits/Addpage.php:112 view/BulkSeo/Bulkseo.php:121
7356
+ #: view/FocusPages/Addpage.php:112 view/Research/Research.php:202
 
7357
  msgid "Search"
7358
  msgstr ""
7359
 
7361
  #: view/Audits/Compare.php:44 view/BulkSeo/Bulkseo.php:123
7362
  #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:6
7363
  #: view/Ranking/Rankings.php:58 view/Research/Briefcase.php:37
 
7364
  msgid "Show All"
7365
  msgstr ""
7366
 
7377
  msgstr ""
7378
 
7379
  #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
7380
+ #: view/FocusPages/Addpage.php:196
7381
  msgid "Prev Page"
7382
  msgstr ""
7383
 
7384
  #: view/Audits/Addpage.php:194 view/BulkSeo/Bulkseo.php:199
7385
+ #: view/FocusPages/Addpage.php:197
7386
  msgid "Next Page"
7387
  msgstr ""
7388
 
7412
  msgid "Last checked"
7413
  msgstr ""
7414
 
7415
+ #: view/Audits/AuditPageRow.php:46
7416
  msgid "Could not create the audit for this URL"
7417
  msgstr ""
7418
 
7419
+ #: view/Audits/AuditPageRow.php:46
7420
  msgid "error code"
7421
  msgstr ""
7422
 
7423
+ #: view/Audits/AuditPageRow.php:49
7424
  #, php-format
7425
  msgid ""
7426
+ "The way your WordPress site is currently hosted can affect the way Squirrly "
7427
+ "SEO operates in order to retrieve and process data about this page. %sIt’s "
7428
+ "important to do everything on your end to ensure that the audits can be "
7429
+ "generated by our system. %s Whitelist our crawler IP address (176.9.112.210) "
7430
+ "to allow our server to verify your page so that you’ll receive a full audit."
 
7431
  msgstr ""
7432
 
7433
+ #: view/Audits/AuditPageRow.php:50 view/FocusPages/FocusPageRow.php:96
7434
+ msgid "Inspect URL"
7435
+ msgstr ""
7436
+
7437
+ #: view/Audits/AuditPageRow.php:73
7438
  msgid "Delete Page from Audit"
7439
  msgstr ""
7440
 
7579
  msgid "Audits"
7580
  msgstr ""
7581
 
7582
+ #: view/Audits/Audits.php:59
7583
  #, php-format
7584
  msgid ""
7585
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
7587
  "involved."
7588
  msgstr ""
7589
 
7590
+ #: view/Audits/Audits.php:66
7591
  #, php-format
7592
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
7593
  msgstr ""
7594
 
7595
+ #: view/Audits/Audits.php:87 view/FocusPages/Pagelist.php:85
7596
+ msgid "Squirrly Inspect URL"
7597
+ msgstr ""
7598
+
7599
  #: view/Audits/Settings.php:30
7600
  msgid "Audit Settings"
7601
  msgstr ""
7608
  msgid "Enter the email address on which you want to receive the weekly audits."
7609
  msgstr ""
7610
 
7611
+ #: view/Blocks/Account.php:10
7612
+ msgid "Account Info Unavailable"
7613
+ msgstr ""
7614
+
7615
+ #: view/Blocks/Account.php:43
7616
  msgid "Your Plan: "
7617
  msgstr ""
7618
 
7619
+ #: view/Blocks/Account.php:44
7620
  msgid "Check Account Info"
7621
  msgstr ""
7622
 
7623
+ #: view/Blocks/Account.php:49
7624
  msgid "Email: "
7625
  msgstr ""
7626
 
7627
+ #: view/Blocks/Account.php:55
7628
  #, php-format
7629
  msgid "Due Date: %s"
7630
  msgstr ""
7631
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7632
  #: view/Blocks/Audits.php:7 view/Blocks/Audits.php:53
7633
  msgid "See Audits"
7634
  msgstr ""
7657
  msgid "Go to Focus Pages"
7658
  msgstr ""
7659
 
7660
+ #: view/Blocks/Connect.php:14 view/Blocks/Connect.php:28
7661
  msgid ""
7662
  "This option is used to track innerlinks and insights for your Focus Pages "
7663
  "and give detailed informations about them."
7664
  msgstr ""
7665
 
7666
+ #: view/Blocks/Connect.php:16 view/Blocks/Connect.php:30
7667
  msgid "Let Squirrly API get data for Focus Pages"
7668
  msgstr ""
7669
 
7670
+ #: view/Blocks/Connect.php:17
7671
  msgid "Connect"
7672
  msgstr ""
7673
 
7674
+ #: view/Blocks/Connect.php:31
7675
  msgid "disconnect"
7676
  msgstr ""
7677
 
7726
  msgid "Checking the website ..."
7727
  msgstr ""
7728
 
7729
+ #: view/Blocks/Features.php:8
7730
+ msgid ""
7731
+ "The Assistant who maps the road to Better Rankings. For every single page. "
7732
+ "Always with different specifics."
7733
+ msgstr ""
7734
+
7735
+ #: view/Blocks/Features.php:9 view/Blocks/Features.php:18
7736
+ #: view/Blocks/Features.php:36 view/Blocks/Features.php:189
7737
+ msgid "Freemium"
7738
+ msgstr ""
7739
+
7740
+ #: view/Blocks/Features.php:16 view/Blocks/KRHistory.php:5
7741
+ #: view/Onboarding/Step1.3.php:11 view/Research/Research.php:18
7742
+ msgid "Keyword Research"
7743
+ msgstr ""
7744
+
7745
+ #: view/Blocks/Features.php:17
7746
+ msgid ""
7747
+ "Find the Best Keywords that your own website can rank for and get "
7748
+ "personalized competition data for each keyword."
7749
+ msgstr ""
7750
+
7751
+ #: view/Blocks/Features.php:25
7752
+ msgid "SEO Briefcase"
7753
+ msgstr ""
7754
+
7755
+ #: view/Blocks/Features.php:26
7756
+ msgid ""
7757
+ "Add keywords in your portfolio based on your current Campaigns, Trends, "
7758
+ "Performance for a successful SEO strategy."
7759
+ msgstr ""
7760
+
7761
+ #: view/Blocks/Features.php:27 view/Blocks/Features.php:45
7762
+ #: view/Blocks/Features.php:54 view/Blocks/Features.php:63
7763
+ #: view/Blocks/Features.php:72 view/Blocks/Features.php:81
7764
+ #: view/Blocks/Features.php:90 view/Blocks/Features.php:99
7765
+ #: view/Blocks/Features.php:108 view/Blocks/Features.php:117
7766
+ #: view/Blocks/Features.php:126 view/Blocks/Features.php:135
7767
+ #: view/Blocks/Features.php:144 view/Blocks/Features.php:153
7768
+ #: view/Blocks/Features.php:162 view/Blocks/Features.php:171
7769
+ #: view/Blocks/Features.php:180 view/Blocks/Features.php:198
7770
+ msgid "Free"
7771
+ msgstr ""
7772
+
7773
+ #: view/Blocks/Features.php:35
7774
+ msgid ""
7775
+ "Publish content that is fully optimized for BOTH Search Engines and Humans – "
7776
+ "every single time!"
7777
+ msgstr ""
7778
+
7779
+ #: view/Blocks/Features.php:43
7780
+ msgid "Google SERP with GSC"
7781
+ msgstr ""
7782
+
7783
+ #: view/Blocks/Features.php:44
7784
+ msgid ""
7785
+ "Get Google Search Console average possitions, clicks and impressions for "
7786
+ "organic keywords."
7787
+ msgstr ""
7788
+
7789
+ #: view/Blocks/Features.php:52
7790
+ msgid "SEO Automation"
7791
+ msgstr ""
7792
+
7793
+ #: view/Blocks/Features.php:53
7794
+ msgid ""
7795
+ "Configure the SEO in 2 minutes for the entire website without writing a line "
7796
+ "of code."
7797
+ msgstr ""
7798
+
7799
+ #: view/Blocks/Features.php:61
7800
+ msgid "Bulk SEO & Snippets"
7801
+ msgstr ""
7802
+
7803
+ #: view/Blocks/Features.php:62
7804
+ msgid ""
7805
+ "Simplify the SEO process for all your posts types and optimize them in just "
7806
+ "minutes."
7807
+ msgstr ""
7808
+
7809
+ #: view/Blocks/Features.php:70 view/Goals/Goals.php:34
7810
+ msgid "Daily SEO Goals"
7811
+ msgstr ""
7812
+
7813
+ #: view/Blocks/Features.php:71
7814
+ msgid ""
7815
+ "The Non-Human SEO Consultant that prepares you goals that take you closer to "
7816
+ "the first page of Google."
7817
+ msgstr ""
7818
+
7819
+ #: view/Blocks/Features.php:79
7820
+ #, fuzzy
7821
+ #| msgid "Open Graph is not set corretly."
7822
+ msgid "Open Graph Optimization"
7823
+ msgstr "Open Graph is not set correctly."
7824
+
7825
+ #: view/Blocks/Features.php:80
7826
+ msgid "Add Social Open Graph protocol so that your Facebook shares look good."
7827
+ msgstr ""
7828
+
7829
+ #: view/Blocks/Features.php:88
7830
+ msgid "Twitter Card Optimization"
7831
+ msgstr ""
7832
+
7833
+ #: view/Blocks/Features.php:89
7834
+ msgid "Add Twitter Card in your tweets so that your Twitter shares look good."
7835
+ msgstr ""
7836
+
7837
+ #: view/Blocks/Features.php:97
7838
+ msgid "XML Sitemap"
7839
+ msgstr ""
7840
+
7841
+ #: view/Blocks/Features.php:98
7842
+ msgid ""
7843
+ "Use Squirrly’s Sitemap Generator and Settings to help your website get "
7844
+ "crawled and indexed by Google."
7845
+ msgstr ""
7846
+
7847
+ #: view/Blocks/Features.php:106
7848
+ #, fuzzy
7849
+ #| msgid "Json-LD definition"
7850
+ msgid "JSON-LD Optimizaition"
7851
+ msgstr "JSON-LD definition"
7852
+
7853
+ #: view/Blocks/Features.php:107
7854
+ msgid ""
7855
+ "Edit your website’s JSON-LD Schema with Squirrly’s powerful semantic SEO "
7856
+ "Markup Solution."
7857
+ msgstr ""
7858
+
7859
+ #: view/Blocks/Features.php:115
7860
+ msgid "Google Analytics Tracking"
7861
+ msgstr ""
7862
+
7863
+ #: view/Blocks/Features.php:116
7864
+ msgid ""
7865
+ "Add the Google Analytics and Google Tag Manager tracking on your website."
7866
+ msgstr ""
7867
+
7868
+ #: view/Blocks/Features.php:124
7869
+ msgid "Facebook Pixel Tracking"
7870
+ msgstr ""
7871
+
7872
+ #: view/Blocks/Features.php:125
7873
+ msgid ""
7874
+ "Track visitors with website and e-commerce events for better Retargeting "
7875
+ "Campaigns."
7876
+ msgstr ""
7877
+
7878
+ #: view/Blocks/Features.php:133 view/Connect/GoogleSearchConsole.php:7
7879
+ msgid "Google Search Console"
7880
+ msgstr ""
7881
+
7882
+ #: view/Blocks/Features.php:134
7883
+ msgid ""
7884
+ "Connect your website with Google Search Console and get insights based on "
7885
+ "organic searched keywords."
7886
+ msgstr ""
7887
+
7888
+ #: view/Blocks/Features.php:142
7889
+ msgid "Robots.txt File"
7890
+ msgstr ""
7891
+
7892
+ #: view/Blocks/Features.php:143
7893
+ msgid ""
7894
+ "Tell search engine crawlers which pages or files the crawler can or can't "
7895
+ "request from your site."
7896
+ msgstr ""
7897
+
7898
+ #: view/Blocks/Features.php:151
7899
+ msgid "Favicon Site Icon"
7900
+ msgstr ""
7901
+
7902
+ #: view/Blocks/Features.php:152 view/SeoSettings/Favicon.php:29
7903
+ #, fuzzy
7904
+ #| msgid ""
7905
+ #| "Add your website icon in the browser tabs and on other deviced like "
7906
+ #| "Iphone, Ipad and Android phones."
7907
+ msgid ""
7908
+ "Add your website icon in the browser tabs and on other devices like iPhone, "
7909
+ "iPad and Android phones."
7910
+ msgstr ""
7911
+ "Add your website icon in the browser tabs and on other devices like iPhone, "
7912
+ "iPad and Android phones."
7913
+
7914
+ #: view/Blocks/Features.php:160
7915
+ msgid "On-Page SEO METAs"
7916
+ msgstr ""
7917
+
7918
+ #: view/Blocks/Features.php:161
7919
+ msgid ""
7920
+ "Add all Search Engine METAs like Title, Description, Canonical, Dublin Core, "
7921
+ "Robots and more."
7922
+ msgstr ""
7923
+
7924
+ #: view/Blocks/Features.php:169
7925
+ msgid "Remove META Duplicate"
7926
+ msgstr ""
7927
+
7928
+ #: view/Blocks/Features.php:170
7929
+ msgid "Fix Duplicate Titles and Descriptions without writing a line of code."
7930
+ msgstr ""
7931
+
7932
+ #: view/Blocks/Features.php:178
7933
+ msgid "404 Redirects"
7934
+ msgstr ""
7935
+
7936
+ #: view/Blocks/Features.php:179
7937
+ msgid ""
7938
+ "Automatically redirect the old posts and pages URLs to the new URLs to keep "
7939
+ "the post authority."
7940
+ msgstr ""
7941
+
7942
+ #: view/Blocks/Features.php:188 view/Blocks/Features.php:197
7943
+ msgid "Improve your Online Presence by knowing how your website is performing."
7944
+ msgstr ""
7945
+
7946
+ #: view/Blocks/Features.php:196 view/Blocks/Jorney.php:12
7947
+ #: view/Blocks/Jorney.php:95
7948
+ msgid "14 Days Journey Course"
7949
+ msgstr ""
7950
+
7951
+ #: view/Blocks/Features.php:205
7952
+ msgid "Blogging Assistant"
7953
+ msgstr ""
7954
+
7955
+ #: view/Blocks/Features.php:206
7956
+ msgid ""
7957
+ "Add relevant Copyright-free images, Tweets, Wikis, Blog Excerpts in your "
7958
+ "posts."
7959
+ msgstr ""
7960
+
7961
+ #: view/Blocks/Features.php:207
7962
+ msgid "Pro"
7963
+ msgstr ""
7964
+
7965
+ #: view/Blocks/Features.php:214 view/Onboarding/Step1.5.php:21
7966
+ msgid "Google SERP Checker"
7967
+ msgstr ""
7968
+
7969
+ #: view/Blocks/Features.php:215
7970
+ msgid ""
7971
+ "Accurately track your rankings with Squirrly’s user-friendly Google SERP "
7972
+ "Checker."
7973
+ msgstr ""
7974
+
7975
+ #: view/Blocks/Features.php:216
7976
+ msgid "Business"
7977
+ msgstr ""
7978
+
7979
+ #: view/Blocks/Features.php:233 view/Overview.php:65
7980
+ msgid "Squirrly SEO Feature Categories"
7981
+ msgstr ""
7982
+
7983
+ #: view/Blocks/Features.php:237
7984
+ #, php-format
7985
+ msgid ""
7986
+ "With a total of over %s200%s free in-depth features that only Squirrly can "
7987
+ "offer."
7988
+ msgstr ""
7989
+
7990
+ #: view/Blocks/Features.php:292
7991
+ msgid "Go to feature"
7992
+ msgstr ""
7993
+
7994
+ #: view/Blocks/Features.php:294
7995
+ msgid "Active"
7996
+ msgstr ""
7997
+
7998
+ #: view/Blocks/Features.php:296
7999
+ msgid "Inactive"
8000
+ msgstr ""
8001
+
8002
+ #: view/Blocks/Features.php:304
8003
+ msgid "more details"
8004
+ msgstr ""
8005
+
8006
  #: view/Blocks/FocusPages.php:7
8007
  msgid "See Focus Pages"
8008
  msgstr ""
8027
  msgid "Then set a page as focus"
8028
  msgstr ""
8029
 
 
 
 
 
8030
  #: view/Blocks/Jorney.php:17
8031
  #, php-format
8032
  msgid "Follow the %sdaily recipe%s from below."
8083
 
8084
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
8085
  #: view/Ranking/Rankings.php:395 view/Research/Briefcase.php:256
8086
+ #: view/Research/History.php:30 view/Research/Research.php:195
8087
  #: view/Research/Suggested.php:29
8088
  msgid "Country"
8089
  msgstr ""
8090
 
8091
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
8092
+ #: view/Research/History.php:30 view/Research/Research.php:195
8093
  #: view/Research/Suggested.php:29
8094
  msgid "Co"
8095
  msgstr ""
8097
  #: view/Blocks/KRFound.php:18 view/Blocks/KRFound.php:19
8098
  #: view/Blocks/KRFound.php:64 view/Research/Briefcase.php:261
8099
  #: view/Research/HistoryDetails.php:16 view/Research/HistoryDetails.php:18
8100
+ #: view/Research/Research.php:197 view/Research/Research.php:198
8101
  #: view/Research/Suggested.php:31 view/Research/Suggested.php:32
8102
  #: view/Research/Suggested.php:81
8103
  msgid "Competition"
8104
  msgstr ""
8105
 
8106
  #: view/Blocks/KRFound.php:22 view/Blocks/KRFound.php:69
8107
+ #: view/Research/HistoryDetails.php:12 view/Research/Research.php:201
8108
  #: view/Research/Suggested.php:35 view/Research/Suggested.php:86
8109
  msgid "SEO Search Volume"
8110
  msgstr ""
8116
 
8117
  #: view/Blocks/KRFound.php:26 view/Blocks/KRFound.php:74
8118
  #: view/Research/Briefcase.php:277 view/Research/HistoryDetails.php:8
8119
+ #: view/Research/Research.php:205 view/Research/Suggested.php:39
8120
  #: view/Research/Suggested.php:91
8121
  msgid "Recent discussions"
8122
  msgstr ""
8123
 
8124
  #: view/Blocks/KRFound.php:27 view/Research/HistoryDetails.php:10
8125
+ #: view/Research/Research.php:206 view/Research/Suggested.php:40
8126
  msgid "Discussion"
8127
  msgstr ""
8128
 
8129
  #: view/Blocks/KRFound.php:30 view/Blocks/KRFound.php:31
8130
  #: view/Blocks/KRFound.php:79 view/Research/Briefcase.php:283
8131
+ #: view/Research/HistoryDetails.php:20 view/Research/Research.php:209
8132
  #: view/Research/Suggested.php:43
8133
  msgid "Trending"
8134
  msgstr ""
8165
  msgid "Go to Briefcase"
8166
  msgstr ""
8167
 
 
 
 
 
 
8168
  #: view/Blocks/KRHistory.php:6
8169
  msgid "See Research History"
8170
  msgstr ""
8719
  msgid "%sPlease connect to SquirrlyCloud first%s"
8720
  msgstr "%sPlease connect to SquirrlyCloud first%s"
8721
 
8722
+ #: view/Blocks/Stats.php:45
8723
  msgid "Hello"
8724
  msgstr ""
8725
 
8726
+ #: view/Blocks/Stats.php:51
8727
  #, php-format
8728
  msgid "%s SEO Protection"
8729
  msgstr ""
8730
 
8731
+ #: view/Blocks/Stats.php:54
8732
  msgid "All protection layers are activated."
8733
  msgstr ""
8734
 
8735
+ #: view/Blocks/Stats.php:56
8736
  #, php-format
8737
  msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
8738
  msgstr ""
8739
 
8740
+ #: view/Blocks/Stats.php:60
8741
  msgid "How does this work?"
8742
  msgstr ""
8743
 
8744
+ #: view/Blocks/Stats.php:68
8745
  msgid "Pages SEO'ed"
8746
  msgstr ""
8747
 
8748
+ #: view/Blocks/Stats.php:74
8749
  msgid "Post Types Covered"
8750
  msgstr ""
8751
 
8752
+ #: view/Blocks/Stats.php:79 view/Goals/CheckSeo.php:102
8753
  #, php-format
8754
  msgid "%s Aspects"
8755
  msgstr ""
8756
 
8757
+ #: view/Blocks/Stats.php:80 view/Goals/CheckSeo.php:103
8758
  msgid "Handled by Squirrly Genius."
8759
  msgstr ""
8760
 
8761
+ #: view/Blocks/Stats.php:82
8762
  msgid "Can I see them?"
8763
  msgstr ""
8764
 
8765
+ #: view/Blocks/Stats.php:86 view/Goals/Goals.php:43
8766
  msgid "Run SEO Test"
8767
  msgstr ""
8768
 
8870
  msgid "Thank you! You can send us a happy face tomorrow too."
8871
  msgstr "Thank you! You can send us a happy face tomorrow too."
8872
 
8873
+ #: view/Blocks/VersionBar.php:9
8874
  #, php-format
8875
  msgid ""
8876
  "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
8877
  "accurate and objective."
8878
  msgstr ""
8879
 
8880
+ #: view/Blocks/VersionBar.php:12
8881
  #, php-format
8882
  msgid ""
8883
  "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
8884
  msgstr ""
8885
 
8886
+ #: view/Blocks/VersionBar.php:18
8887
  #, php-format
8888
  msgid ""
8889
  "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
8892
  "your plan to %sBusiness Plan%s"
8893
  msgstr ""
8894
 
8895
+ #: view/Blocks/VersionBar.php:25
8896
  #, php-format
8897
  msgid ""
8898
  "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
8899
  "hour."
8900
  msgstr ""
8901
 
8902
+ #: view/Blocks/VersionBar.php:29
8903
  #, php-format
8904
  msgid ""
8905
  "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
8907
  "please upgrade your plan to %sPRO Plan%s"
8908
  msgstr ""
8909
 
8910
+ #: view/Blocks/VersionBar.php:36
8911
  #, php-format
8912
  msgid ""
8913
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
8914
  "audit for each page every 5 mins."
8915
  msgstr ""
8916
 
8917
+ #: view/Blocks/VersionBar.php:40
8918
  #, php-format
8919
  msgid ""
8920
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
8922
  "upgrade your plan to %sPRO Plan%s"
8923
  msgstr ""
8924
 
8925
+ #: view/Blocks/VersionBar.php:44
8926
+ #, php-format
8927
+ msgid ""
8928
+ "Your current plan is OLD Squirrly plan: Please read the official notes about "
8929
+ "it %shttps://www.squirrly.co/you-received-access-to-all-updates-from-"
8930
+ "squirrly-seo/%s"
8931
+ msgstr ""
8932
+
8933
+ #: view/Blocks/VersionBar.php:52
8934
  #, php-format
8935
  msgid ""
8936
  "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
8937
  "tasks to get 100%% optimized posts and pages."
8938
  msgstr ""
8939
 
8940
+ #: view/Blocks/VersionBar.php:56
8941
  #, php-format
8942
  msgid ""
8943
  "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
8945
  "Plan%s"
8946
  msgstr ""
8947
 
8948
+ #: view/Blocks/VersionBar.php:64
8949
  #, php-format
8950
  msgid ""
8951
  "%sResearch %s:%s You have %s researches left for your account. The research "
8953
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
8954
  msgstr ""
8955
 
8956
+ #: view/Blocks/VersionBar.php:68
8957
  #, php-format
8958
  msgid ""
8959
  "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
8960
  "Deep Keyword Research and get up to 50 results on each research."
8961
  msgstr ""
8962
 
8963
+ #: view/Blocks/VersionBar.php:72
8964
  #, php-format
8965
  msgid ""
8966
  "%sResearch %s:%s You have %s researches left for your account. The research "
8968
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
8969
  msgstr ""
8970
 
8971
+ #: view/Blocks/VersionBar.php:79
8972
  #, php-format
8973
  msgid ""
8974
  "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
8975
  "optimize your posts and pages."
8976
  msgstr ""
8977
 
8978
+ #: view/Blocks/VersionBar.php:84
8979
  #, php-format
8980
  msgid ""
8981
  "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
8982
  "keywords to organize the keywords by your SEO strategy."
8983
  msgstr ""
8984
 
8985
+ #: view/Blocks/VersionBar.php:90
8986
  #, php-format
8987
  msgid ""
8988
  "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
8989
  "find better matching keywords based on your research history."
8990
  msgstr ""
8991
 
8992
+ #: view/Blocks/VersionBar.php:94
8993
  #, php-format
8994
  msgid ""
8995
  "This feature is only available for PRO and Business accounts. %sTo get "
8996
  "Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s"
8997
  msgstr ""
8998
 
8999
+ #: view/Blocks/VersionBar.php:103
9000
  #, php-format
9001
  msgid ""
9002
  "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
9003
  "SEO for free."
9004
  msgstr ""
9005
 
9006
+ #: view/Blocks/VersionBar.php:109
9007
  #, php-format
9008
  msgid ""
9009
  "%sOn-Page SEO Settings:%s This feature is included in all versions of "
9010
  "Squirrly SEO for free."
9011
  msgstr ""
9012
 
9013
+ #: view/BulkSeo/Bulkseo.php:30
9014
  msgid ""
9015
  "Simplify the SEO process for all your posts types and optimize them in just "
9016
  "minutes. "
9017
  msgstr ""
9018
 
9019
+ #: view/BulkSeo/Bulkseo.php:183
9020
  #, php-format
9021
  msgid "No data for this filter. %sShow All%s records for this post type."
9022
  msgstr ""
9023
 
9024
+ #: view/BulkSeo/Bulkseo.php:185
9025
  msgid "No data found for this post type. Try other post types."
9026
  msgstr ""
9027
 
9028
+ #: view/BulkSeo/BulkseoRow.php:26
9029
  #, php-format
9030
  msgid "View &#8220;%s&#8221;"
9031
  msgstr ""
9062
  msgid "Check connection"
9063
  msgstr ""
9064
 
 
 
 
 
9065
  #: view/Connect/GoogleSearchConsole.php:12
9066
  msgid "You are connected to Google Search Console"
9067
  msgstr ""
9076
  "each Audit"
9077
  msgstr ""
9078
 
 
 
 
 
 
 
 
 
 
 
9079
  #: view/Errors/Maintenance.php:20
9080
  #, php-format
9081
  msgid ""
9127
  msgid "Details"
9128
  msgstr ""
9129
 
9130
+ #: view/FocusPages/FocusPageRow.php:100
 
 
 
 
 
 
 
 
 
 
 
9131
  msgid "Currently processing data. Please refresh in a few minutes."
9132
  msgstr ""
9133
 
9134
+ #: view/FocusPages/FocusPageRow.php:106 view/FocusPages/FocusPageRow.php:110
9135
+ #: view/FocusPages/FocusPageRow.php:126 view/FocusPages/FocusPages.php:54
9136
  msgid "Chance to Rank"
9137
  msgstr ""
9138
 
9139
+ #: view/FocusPages/FocusPageRow.php:164
9140
  msgid "Delete Focus Page"
9141
  msgstr ""
9142
 
9231
  msgid "Don't choose your Home Page, Contact Page or About Use page."
9232
  msgstr ""
9233
 
9234
+ #: view/FocusPages/Pagelist.php:53
9235
  #, php-format
9236
  msgid ""
9237
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
9276
  msgid "Congratulations!"
9277
  msgstr ""
9278
 
 
 
 
 
9279
  #: view/Goals/Goals.php:36
9280
  #, php-format
9281
  msgid "%s goals for today"
9473
  msgid "Get a Birds-Eye-View of your Site’s Overall SEO Optimization"
9474
  msgstr ""
9475
 
 
 
 
 
9476
  #: view/Onboarding/Step1.5.php:35
9477
  msgid ""
9478
  "Accurately Track Your Rankings with Squirrly’s User-Friendly Google SERP "
9703
  "our features %s by creating a free account"
9704
  msgstr ""
9705
 
9706
+ #: view/Overview.php:43
9707
+ msgid ""
9708
+ "You do not have permission to access Daily Goals. You need Squirrly SEO "
9709
+ "Editor role."
9710
+ msgstr ""
9711
+
9712
+ #: view/Overview.php:80
9713
+ msgid "Show Advanced SEO"
9714
+ msgstr ""
9715
+
9716
+ #: view/Overview.php:81
9717
+ msgid ""
9718
+ "Switch off to have the simplified version of the settings, intended for Non-"
9719
+ "SEO Experts."
9720
+ msgstr ""
9721
+
9722
+ #: view/Overview.php:82
9723
+ msgid ""
9724
+ "It will offer the same level of SEO performance, but it will be less "
9725
+ "customizable."
9726
+ msgstr ""
9727
+
9728
+ #: view/Overview.php:94
9729
+ msgid "We Need Your Support"
9730
+ msgstr ""
9731
+
9732
+ #: view/Overview.php:103
9733
+ msgid "Rate us if you like Squirrly SEO"
9734
+ msgstr ""
9735
+
9736
  #: view/Ranking/Gscsync.php:15
9737
  msgid "Google Search Console Keywords Sync"
9738
  msgstr ""
9809
 
9810
  #: view/Ranking/Rankings.php:35
9811
  msgid ""
9812
+ "Get the Google Search Console average possitions, clicks and impressions for "
9813
+ "all organic keywords of your website."
9814
  msgstr ""
9815
 
9816
  #: view/Ranking/Rankings.php:98
10593
  msgid "Welcome to Keyword Research History"
10594
  msgstr ""
10595
 
10596
+ #: view/Research/HistoryDetails.php:22 view/Research/Research.php:210
10597
  #: view/Research/Suggested.php:44
10598
  msgid "Trend"
10599
  msgstr ""
10683
  "Squirrly's Market Intelligence Features."
10684
  msgstr ""
10685
 
10686
+ #: view/Research/Research.php:34 view/Research/Research.php:147
10687
  #, fuzzy
10688
  #| msgid "You reached the Keyword Research Limit"
10689
  msgid "You've reached your Keyword Research Limit"
10690
  msgstr "You've reached your Keyword Research Limit"
10691
 
10692
+ #: view/Research/Research.php:35 view/Research/Research.php:148
10693
  msgid "Check Your Account"
10694
  msgstr ""
10695
 
10745
  msgstr ""
10746
  "For local SEO you need to select the Country where you run your business"
10747
 
10748
+ #: view/Research/Research.php:100 view/Research/Research.php:154
10749
+ #: view/Research/Research.php:222
10750
  msgid "Start Over"
10751
  msgstr ""
10752
 
10754
  msgid "Step 3/4: Select similar keywords from below"
10755
  msgstr ""
10756
 
10757
+ #: view/Research/Research.php:109
10758
+ msgid ""
10759
+ "Each selected keyword will consume 1 credit from your keyword research "
10760
+ "credits."
10761
+ msgstr ""
10762
+
10763
+ #: view/Research/Research.php:150
10764
  #, php-format
10765
  msgid "We could not find similar keywords. %sClick on \"Do research\""
10766
  msgstr ""
10767
 
10768
+ #: view/Research/Research.php:160
10769
  msgid "Do a deep research"
10770
  msgstr ""
10771
 
10772
+ #: view/Research/Research.php:164 view/Research/Research.php:170
10773
  msgid "Do research"
10774
  msgstr ""
10775
 
10776
+ #: view/Research/Research.php:178
10777
  msgid ""
10778
  "Keyword Research in progress. We're doing all of this in real-time. Data is "
10779
  "fresh."
10780
  msgstr ""
10781
 
10782
+ #: view/Research/Research.php:179
10783
  msgid "We're now finding 10 alternatives for each keyword you selected."
10784
  msgstr ""
10785
 
10786
+ #: view/Research/Research.php:180
10787
  msgid ""
10788
  "For each alternative, we are looking at the top 10 pages ranked on Google "
10789
  "for that keyword."
10790
  msgstr ""
10791
 
10792
+ #: view/Research/Research.php:181
10793
  msgid ""
10794
  "We are now measuring the web authority of each competing page and comparing "
10795
  "it to yours."
10796
  msgstr ""
10797
 
10798
+ #: view/Research/Research.php:182
10799
  msgid "Looking at the monthly search volume for each keyword."
10800
  msgstr ""
10801
 
10802
+ #: view/Research/Research.php:183
10803
  msgid "Analyzing the last 30 days of Google trends for each keyword."
10804
  msgstr ""
10805
 
10806
+ #: view/Research/Research.php:184
10807
  msgid ""
10808
  "Seeing how many discussions there are on forums and Twitter for each keyword."
10809
  msgstr ""
10810
 
10811
+ #: view/Research/Research.php:185
10812
  msgid ""
10813
  "Piecing all the keywords together now after analyzing each individual "
10814
  "keyword."
10815
  msgstr ""
10816
 
10817
+ #: view/Research/Research.php:186
10818
  msgid "Preparing the results."
10819
  msgstr ""
10820
 
10821
+ #: view/Research/Research.php:188
10822
  msgid "Step 4/4: We found some relevant keywords for you"
10823
  msgstr ""
10824
 
10825
+ #: view/Research/Research.php:189
10826
  #, php-format
10827
  msgid ""
10828
  "Still processing. give it a bit more time, then go to %sResearch History%s. "
10829
  "Results will appear there."
10830
  msgstr ""
10831
 
10832
+ #: view/Research/Research.php:190
10833
  msgid "Step 4/4: We could not find relevant keywords for you"
10834
  msgstr ""
10835
 
10836
+ #: view/Research/Research.php:237
10837
  msgid "How to Find Amazing Keywords and get more search traffic?"
10838
  msgstr ""
10839
 
10840
+ #: view/Research/Research.php:251
10841
  msgid "Already Have Keywords?"
10842
  msgstr ""
10843
 
10844
+ #: view/Research/Research.php:254
10845
  msgid "Import Keywords From CSV"
10846
  msgstr ""
10847
 
10887
  msgid "For compatibility with some Cache and CDN plugins."
10888
  msgstr ""
10889
 
10890
+ #: view/SeoSettings/Advanced.php:76
10891
  msgid "Delete Squirrly Table on Uninstall"
10892
  msgstr ""
10893
 
10894
+ #: view/SeoSettings/Advanced.php:77
10895
  msgid "Delete Squirrly SEO table and options on uninstall."
10896
  msgstr ""
10897
 
11178
  msgid "JSON-LD Description Length"
11179
  msgstr "JSON-LD Description Length"
11180
 
11181
+ #: view/SeoSettings/Backup.php:7 view/SeoSettings/Jsonld.php:7
11182
+ msgid ""
11183
+ "You do not have permission to access this page. You need Squirrly SEO Admin "
11184
+ "role"
11185
+ msgstr ""
11186
+
11187
  #: view/SeoSettings/Backup.php:23
11188
  msgid "Import Settings & SEO"
11189
  msgstr ""
11304
  msgid "Website Icon"
11305
  msgstr ""
11306
 
 
 
 
 
 
 
 
 
 
 
 
 
11307
  #: view/SeoSettings/Favicon.php:35
11308
  msgid "Activate Favicon"
11309
  msgstr ""
11940
 
11941
  #: view/SeoSettings/Social.php:271
11942
  msgid ""
11943
+ "Add the Twitter Card in your tweets so that your Twitter shares look good."
11944
  msgstr ""
11945
 
11946
  #: view/SeoSettings/Social.php:272
12152
  "Pinterest account. Visit the %sRich Pins Validator%s"
12153
  msgstr ""
12154
 
12155
+ #, fuzzy
12156
+ #~| msgid "Some Squirrly Metas are not set corretly."
12157
+ #~ msgid "Some Squirrly Metas are not set correctly."
12158
+ #~ msgstr "Some Squirrly Metas are not set correctly."
12159
+
12160
+ #, fuzzy
12161
+ #~| msgid "Open Graph is not set corretly."
12162
+ #~ msgid "Open Graph is not set correctly."
12163
+ #~ msgstr "Open Graph is not set correctly."
12164
+
12165
+ #, fuzzy
12166
+ #~| msgid "Twitter Card is not set corretly."
12167
+ #~ msgid "Twitter Card is not set correctly."
12168
+ #~ msgstr "Twitter Card is not set correctly."
12169
+
12170
+ #, fuzzy
12171
+ #~| msgid "Visibility is not set corretly."
12172
+ #~ msgid "Visibility is not set correctly."
12173
+ #~ msgstr "Visibility is not set correctly."
12174
+
12175
+ #, fuzzy
12176
+ #~| msgid "%sPlease connect to Squirrly Cloud first%s"
12177
+ #~ msgid "Connect to Squirrly Data Cloud"
12178
+ #~ msgstr "%sPlease connect to SquirrlyCloud first%s"
12179
+
12180
  #, fuzzy, php-format
12181
  #~| msgid ""
12182
  #~| "Good news, %s is integrated in Squirrly SEO now and you don't have to "
languages/squirrly-seo-ro_RO.mo CHANGED
Binary file
languages/squirrly-seo-ro_RO.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO\n"
4
- "POT-Creation-Date: 2020-05-14 16:13+0300\n"
5
- "PO-Revision-Date: 2020-05-19 13:31+0300\n"
6
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
7
  "Language-Team: Squirrly UK <support@squirrly.co>\n"
8
  "Language: ro_RO\n"
@@ -21,11 +21,11 @@ msgstr ""
21
  msgid "Don't bother me!"
22
  msgstr "Nu mă deranja!"
23
 
24
- #: classes/RemoteController.php:257
25
  msgid "Too many API attempts, please slow down the request."
26
  msgstr "Prea multe încercări de API, vă rugăm să încetiniți solicitarea."
27
 
28
- #: classes/RemoteController.php:261
29
  msgid ""
30
  "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
31
  "in a minute."
@@ -33,117 +33,117 @@ msgstr ""
33
  "Squirrly Cloud este în stare de întreținere în acest moment. Dar vom reveni "
34
  "într-un minut."
35
 
36
- #: classes/RemoteController.php:320
37
  msgid "Articles optimized so far"
38
  msgstr "Articole optimizate până acum"
39
 
40
- #: classes/RemoteController.php:322 classes/RemoteController.php:329
41
  msgid "add post"
42
  msgstr "adauga post"
43
 
44
- #: classes/RemoteController.php:327
45
  msgid "Average optimization"
46
  msgstr "Media de optimizare"
47
 
48
- #: classes/RemoteController.php:334
49
  msgid "Keyword Researches"
50
  msgstr "Cuvinte cheie verificate"
51
 
52
- #: classes/RemoteController.php:336
53
  msgid "do research"
54
  msgstr "pornește verificare"
55
 
56
- #: classes/RemoteController.php:341
57
  msgid "Keywords stored in Squirrly Briefcase"
58
  msgstr "Cuvinte cheie salvate în Servieta Squirrly"
59
 
60
- #: classes/RemoteController.php:343
61
  msgid "add keyword"
62
  msgstr "Adaugă cuvânt cheie"
63
 
64
- #: classes/RemoteController.php:348
65
  msgid "Pages ranking in top 100 Google"
66
  msgstr "Pagini care se clasează în top 100 Google"
67
 
68
- #: classes/RemoteController.php:350
69
  msgid "see rankings"
70
  msgstr "Vezi rank-urile"
71
 
72
- #: classes/RemoteController.php:355
73
  msgid "SEO Audits"
74
  msgstr "Audituri SEO"
75
 
76
- #: classes/RemoteController.php:357
77
  msgid "see audits"
78
  msgstr "vezi audituri"
79
 
80
- #: classes/RemoteController.php:1250
81
  msgid "Keyword:"
82
  msgstr "Cuvant cheie:"
83
 
84
- #: classes/RemoteController.php:1251
85
  msgid "date"
86
  msgstr "data"
87
 
88
- #: classes/RemoteController.php:1252 controllers/CheckSeo.php:317
89
  #: controllers/Patterns.php:16 controllers/Research.php:259
90
  #: controllers/Research.php:290 controllers/Research.php:344
91
  #: controllers/Research.php:654
92
  msgid "Saved!"
93
  msgstr "Salvat!"
94
 
95
- #: classes/RemoteController.php:1253
96
  msgid "Read it!"
97
  msgstr "Citeste!"
98
 
99
- #: classes/RemoteController.php:1254
100
  msgid "Insert it!"
101
  msgstr "Adauga!"
102
 
103
- #: classes/RemoteController.php:1255
104
  msgid "Reference"
105
  msgstr "Referință"
106
 
107
- #: classes/RemoteController.php:1256
108
  msgid "Insert as box"
109
  msgstr "Adaugă o casuță"
110
 
111
- #: classes/RemoteController.php:1257
112
  msgid "Insert Link"
113
  msgstr "Adaugă Link"
114
 
115
- #: classes/RemoteController.php:1258
116
  msgid "Not relevant?"
117
  msgstr "Nu este relevant?"
118
 
119
- #: classes/RemoteController.php:1259
120
  msgid "Insert in your article"
121
  msgstr "Adauga paragraf in articol"
122
 
123
- #: classes/RemoteController.php:1260
124
  msgid ":( An error occurred while processing your request. Please try again"
125
  msgstr ":( A apărut o eroare la procesarea cererii. Încercați din nou"
126
 
127
- #: classes/RemoteController.php:1261
128
  msgid "No results found!"
129
  msgstr "Nu s-a gasit nimic ..."
130
 
131
- #: classes/RemoteController.php:1262
132
  #, php-format
133
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
134
  msgstr ""
135
  "[ ATTRIBUTE: Verificați: %s pentru a vedea condițiile de atribuire a "
136
  "imaginii ]"
137
 
138
- #: classes/RemoteController.php:1263
139
  msgid "Has creative commons attributes"
140
  msgstr "Are condiții de atribuire"
141
 
142
- #: classes/RemoteController.php:1264
143
  msgid "No known copyright restrictions"
144
  msgstr "Nu sunt restricții de copyright cunoscute"
145
 
146
- #: classes/RemoteController.php:1265
147
  msgid ""
148
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
149
  "optimize for a keyword before publishing?"
@@ -151,89 +151,89 @@ msgstr ""
151
  "Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa îl "
152
  "optimizezi înainte de publicare?"
153
 
154
- #: classes/RemoteController.php:1266
155
  msgid "Your Subscription has Expired"
156
  msgstr "Abonamentul dvs. a expirat"
157
 
158
- #: classes/RemoteController.php:1267
159
  msgid "There are no keywords saved in briefcase yet"
160
  msgstr "Încă nu există cuvinte cheie salvate în Servieta Squirrly"
161
 
162
- #: classes/RemoteController.php:1268
163
  #, php-format
164
  msgid "Congratulations! Your article is 100% optimized!"
165
  msgstr "Felicitări! Articolul dumneavoastră este 100% optimizat !"
166
 
167
- #: classes/RemoteController.php:1269
168
  #, php-format
169
  msgid "appears too many times. Try to remove %s of them"
170
  msgstr "apare de prea multe ori. Șterge %s cuvint(e) cheie"
171
 
172
- #: classes/RemoteController.php:1270
173
  #, php-format
174
  msgid "write %s more words"
175
  msgstr "mai adaugă %s cuvinte"
176
 
177
- #: classes/RemoteController.php:1271
178
  #, php-format
179
  msgid "Add the keyword in the %s of your article"
180
  msgstr "Adaugă cuvântul cheie la %s articolului"
181
 
182
- #: classes/RemoteController.php:1272
183
  msgid "Click to keep the highlight on"
184
  msgstr "Faceți clic pentru a continua sublinierea"
185
 
186
- #: classes/RemoteController.php:1273
187
  msgid "introduction"
188
  msgstr "introducere"
189
 
190
- #: classes/RemoteController.php:1274
191
  #, php-format
192
  msgid "Write more words after the %s keyword"
193
  msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
194
 
195
- #: classes/RemoteController.php:1275
196
  msgid "or use synonyms"
197
  msgstr "sau foloseste sinonime"
198
 
199
- #: classes/RemoteController.php:1276
200
  #, php-format
201
  msgid "add %s more word(s)"
202
  msgstr "Mai adauga %s cuvinte"
203
 
204
- #: classes/RemoteController.php:1277
205
  #, php-format
206
  msgid "or remove %s word(s)"
207
  msgstr "sau sterge %s cuvinte"
208
 
209
- #: classes/RemoteController.php:1278
210
  #, php-format
211
  msgid "add %s more keyword(s)"
212
  msgstr "mai adauga %s cuvint(e) cheie"
213
 
214
- #: classes/RemoteController.php:1279
215
  #, php-format
216
  msgid "write %s more words to start calculating"
217
  msgstr "Scrie %s cuvinte pentru a se putea verifica"
218
 
219
- #: classes/RemoteController.php:1280 view/Research/Research.php:48
220
  msgid "Add to Briefcase"
221
  msgstr "Adăugați în Servieta Squirrly"
222
 
223
- #: classes/RemoteController.php:1281
224
  msgid "Add Keyword to Briefcase"
225
  msgstr "Adăugați cuvinte cheie în Servieta Squirrly"
226
 
227
- #: classes/RemoteController.php:1282
228
  msgid "Select"
229
  msgstr "Selectează"
230
 
231
- #: classes/RemoteController.php:1283 view/Blocks/Snippet.php:136
232
  #: view/Blocks/Snippet.php:509 view/Blocks/Snippet.php:765
233
  msgid "Auto Draft"
234
  msgstr "Auto Draft"
235
 
236
- #: classes/RemoteController.php:1284
237
  msgid ""
238
  "You’ve already used the Live Assistant to optimize this post when creating "
239
  "it in your Page Builder. Please go back and resume your optimization work "
@@ -275,59 +275,59 @@ msgstr "Codul Facebook Pixel poate conține doar numere."
275
  msgid "The code for Facebook App must only contain numbers."
276
  msgstr "Codul Facebook App poate conține doar numele."
277
 
278
- #: classes/helpers/Tools.php:80
279
  msgid "Getting started"
280
  msgstr "Setări"
281
 
282
- #: classes/helpers/Tools.php:105
283
  msgid "Documentation"
284
  msgstr "Documentație"
285
 
286
- #: classes/helpers/Tools.php:106
287
  msgid "Leave a review"
288
  msgstr "Lasă o evaluare"
289
 
290
- #: classes/helpers/Tools.php:405
291
  msgid "Format"
292
  msgstr "Format"
293
 
294
- #: classes/helpers/Tools.php:423 classes/helpers/Tools.php:459
295
  msgid "Category"
296
  msgstr "Categorie"
297
 
298
- #: classes/helpers/Tools.php:441 classes/helpers/Tools.php:477
299
  msgid "Tag"
300
  msgstr "Etichetă"
301
 
302
- #: classes/helpers/Tools.php:495
303
  msgid "Shipping Option"
304
  msgstr "Opțiunea de expediere"
305
 
306
- #: classes/helpers/Tools.php:513
307
  msgid "Author at"
308
  msgstr "Autor la"
309
 
310
- #: classes/helpers/Tools.php:585
311
  msgid "Are you looking for"
312
  msgstr "Căutați"
313
 
314
- #: classes/helpers/Tools.php:586
315
  msgid "These are the results for"
316
  msgstr "Nu s-a găsit nimic pentru"
317
 
318
- #: classes/helpers/Tools.php:586
319
  msgid "that you can find on our website."
320
  msgstr "pe care îl puteți găsi pe site-ul nostru."
321
 
322
- #: classes/helpers/Tools.php:620
323
  msgid "Page not found"
324
  msgstr "Pagina nu a fost găsită"
325
 
326
- #: classes/helpers/Tools.php:621
327
  msgid "This page could not be found on our website."
328
  msgstr "Această pagină nu a putut fi găsită pe site-ul nostru."
329
 
330
- #: classes/helpers/Tools.php:889
331
  msgid "For better text comparison you need to install PHP mbstring extension."
332
  msgstr ""
333
  "Pentru o comparație mai bună a textului, trebuie să instalați extensia PHP "
@@ -481,7 +481,7 @@ msgid "No keyword found."
481
  msgstr "Nu a fost găsit niciun cuvânt cheie."
482
 
483
  #: controllers/Assistant.php:102 controllers/Assistant.php:129
484
- #: controllers/Audits.php:324 controllers/Ranking.php:134
485
  #: controllers/SeoSettings.php:149 controllers/SeoSettings.php:166
486
  #: controllers/SeoSettings.php:187 controllers/SeoSettings.php:224
487
  #: controllers/SeoSettings.php:250 controllers/SeoSettings.php:278
@@ -491,8 +491,8 @@ msgid "Saved"
491
  msgstr "Salvat"
492
 
493
  #: controllers/Assistant.php:108 controllers/BulkSeo.php:69
494
- #: controllers/Patterns.php:100 controllers/Post.php:246
495
- #: controllers/Post.php:299 controllers/Post.php:331 controllers/Post.php:366
496
  #: controllers/PostsList.php:182 controllers/Research.php:172
497
  #: controllers/Research.php:179 controllers/Research.php:217
498
  #: controllers/Research.php:240 controllers/Research.php:270
@@ -504,7 +504,7 @@ msgstr "Salvat"
504
  #: controllers/SeoSettings.php:543 controllers/SeoSettings.php:568
505
  #: controllers/SeoSettings.php:605 controllers/SeoSettings.php:642
506
  #: controllers/SeoSettings.php:656 controllers/SeoSettings.php:678
507
- #: controllers/SeoSettings.php:699 controllers/Snippet.php:159
508
  msgid "You do not have permission to perform this action"
509
  msgstr "Nu aveți permisiunea de a efectua această acțiune"
510
 
@@ -516,43 +516,43 @@ msgstr "Nu s-a putut salva data."
516
  msgid "The audit was not found. Please load another audit."
517
  msgstr "Auditul nu a fost găsit. Vă rugăm să încărcați un alt audit."
518
 
519
- #: controllers/Audits.php:203
520
  msgid "Could not load the Audit Page."
521
  msgstr "Nu s-a putut încărca pagina de audit."
522
 
523
- #: controllers/Audits.php:265
524
  msgid "Audit page is added. The audit may take a while so please be patient."
525
  msgstr ""
526
  "S-a adăugat pagina de audit. Auditul poate dura câteva minute, vă rugăm să "
527
  "aveți răbdare."
528
 
529
- #: controllers/Audits.php:268
530
  msgid "You reached the maximum number of audit pages for your account."
531
  msgstr "Ați atins numărul maxim de pagini de audit pentru contul dvs."
532
 
533
- #: controllers/Audits.php:271
534
  msgid "Error! Could not add the audit page."
535
  msgstr "Eroare! Nu se poate adăuga pagina de audit."
536
 
537
- #: controllers/Audits.php:275
538
  msgid "Error! Could not find the audit page in your website."
539
  msgstr "Eroare! Nu se poate adăuga pagina de audit in website."
540
 
541
- #: controllers/Audits.php:285
542
  msgid "Audit page sent for recheck. It may take a while so please be patient."
543
  msgstr ""
544
  "Pagina de audit a fost trimisă pentru verificare. Poate dura ceva timp, vă "
545
  "rugăm să aveți răbdare."
546
 
547
- #: controllers/Audits.php:288 controllers/Audits.php:291
548
  msgid "The audit for all pages can be made once an hour."
549
  msgstr "Auditul pentru toate paginile se poate face o dată pe oră."
550
 
551
- #: controllers/Audits.php:301
552
  msgid "The audit page is deleted"
553
  msgstr "Pagina de audit a fost ștearsă"
554
 
555
- #: controllers/Audits.php:303 controllers/FocusPages.php:383
556
  #: controllers/Ranking.php:161 controllers/Ranking.php:179
557
  #: controllers/Ranking.php:197 controllers/Research.php:208
558
  #: controllers/Research.php:211 controllers/Research.php:234
@@ -563,7 +563,7 @@ msgstr "Pagina de audit a fost ștearsă"
563
  msgid "Invalid params!"
564
  msgstr "Parametrii greșiți!"
565
 
566
- #: controllers/Audits.php:326
567
  msgid "Not a valid email address"
568
  msgstr "Te rog introdu o adresă email validă."
569
 
@@ -583,48 +583,48 @@ msgstr "Nu s-a putut rezolva. Trebuie să o schimbați manual."
583
  msgid "Saved! Task marked as done."
584
  msgstr "Salvat! Sarcina marcată ca terminată."
585
 
586
- #: controllers/FocusPages.php:256
587
  msgid "Focus Page does not exist or was deleted from your website."
588
  msgstr "Acest Focus Page nu există sau a fost șters de pe site-ul dvs. web."
589
 
590
- #: controllers/FocusPages.php:314
591
  msgid "Focus page is added. The audit may take a while so please be patient."
592
  msgstr ""
593
  "Se adaugă Focus Page. Auditul poate dura ceva timp, vă rugăm să aveți "
594
  "răbdare."
595
 
596
- #: controllers/FocusPages.php:321
597
  msgid "You reached the maximum number of focus pages for all your websites."
598
  msgstr ""
599
  "Ați atins numărul maxim de Focus Pages pentru toate site-urile dvs. web."
600
 
601
- #: controllers/FocusPages.php:324
602
  msgid "Error! Could not add the focus page."
603
  msgstr "Eroare! Nu se poate adăuga acest Focus Page."
604
 
605
- #: controllers/FocusPages.php:327
606
  msgid "Error! This focus page is not public."
607
  msgstr "Eroare! Acest Focus Page nu este publică."
608
 
609
- #: controllers/FocusPages.php:331 controllers/FocusPages.php:370
610
  msgid "Error! Could not find the focus page in your website."
611
  msgstr "Eroare! Nu s-a putut găsi acest Focus Page pe site-ul dvs. web."
612
 
613
- #: controllers/FocusPages.php:358
614
  msgid "Focus page sent for recheck. It may take a while so please be patient."
615
  msgstr ""
616
  "Focus Page a fost trimis pentru verificare. Poate dura ceva timp, vă rugăm "
617
  "să aveți răbdare."
618
 
619
- #: controllers/FocusPages.php:361 controllers/FocusPages.php:365
620
  msgid "You've made too many requests, please wait a few minutes."
621
  msgstr "Ați făcut prea multe cereri, vă rugăm să așteptați câteva minute."
622
 
623
- #: controllers/FocusPages.php:381
624
  msgid "The focus page is deleted"
625
  msgstr "Pagina de focalizare este ștearsă"
626
 
627
- #: controllers/Menu.php:126
628
  #, php-format
629
  msgid ""
630
  "An error occurred during activation. If this error persists, please contact "
@@ -633,52 +633,52 @@ msgstr ""
633
  "A apărut o eroare în timpul activării. Dacă această eroare persistă, vă "
634
  "rugăm să ne contactați la adresa: %s"
635
 
636
- #: controllers/Menu.php:163
637
  msgid "Dashboard"
638
  msgstr "Dashboard"
639
 
640
- #: controllers/Menu.php:188 controllers/Menu.php:287 controllers/Menu.php:322
641
  #: view/Blocks/SLASearch.php:7
642
  msgid "Squirrly SEO"
643
  msgstr "Squirrly SEO"
644
 
645
- #: controllers/Menu.php:256
646
  msgid "SEO Snippet"
647
  msgstr "Snippet SEO"
648
 
649
- #: controllers/Menu.php:265 controllers/Snippet.php:130
650
  msgid "Custom SEO"
651
  msgstr "SEO personalizat"
652
 
653
- #: controllers/Menu.php:330
654
  msgid "Squirrly Onboarding"
655
  msgstr "Îmbarcare Squirrly"
656
 
657
- #: controllers/Menu.php:331
658
  msgid "Onboarding"
659
  msgstr "Îmbarcare"
660
 
661
- #: controllers/Menu.php:360
662
  msgid "Import & Export SEO"
663
  msgstr "Import & Export SEO"
664
 
665
- #: controllers/Menu.php:361 view/SeoSettings/Backup.php:88
666
  msgid "Import SEO"
667
  msgstr "Importă SEO"
668
 
669
- #: controllers/Menu.php:371
670
  msgid "Squirrly Account Info"
671
  msgstr "Informații Cont Squirrly"
672
 
673
- #: controllers/Menu.php:372
674
  msgid "Account Info"
675
  msgstr "Informatii cont"
676
 
677
- #: controllers/Menu.php:381
678
  msgid "Squirrly How To & Support"
679
  msgstr "Suport Squirrly"
680
 
681
- #: controllers/Menu.php:382
682
  msgid "Help & Support"
683
  msgstr "Suport"
684
 
@@ -686,15 +686,15 @@ msgstr "Suport"
686
  msgid "Saved! This is how the preview looks like"
687
  msgstr "Salvat! Așa arată previzualizarea"
688
 
689
- #: controllers/Post.php:293
690
  msgid "Could not add the demo post."
691
  msgstr "Nu s-a putut trimite postul de demo."
692
 
693
- #: controllers/Post.php:355 controllers/Post.php:380
694
  msgid "Can't get the post URL"
695
  msgstr "Nu pot primi URL-ul postului"
696
 
697
- #: controllers/Post.php:385
698
  msgid "Invalid request"
699
  msgstr "Solicitare incorectă"
700
 
@@ -916,7 +916,7 @@ msgstr ""
916
  msgid "Squirrly SEO Snippet"
917
  msgstr "Snipet Squirrly"
918
 
919
- #: controllers/Snippet.php:177
920
  #, fuzzy
921
  #| msgid "Could not send the email..."
922
  msgid "Could not save the data"
@@ -1376,7 +1376,7 @@ msgstr ""
1376
  "care are imagini grozave."
1377
 
1378
  #: models/Assistant.php:163 models/focuspages/Accuracy.php:45
1379
- #: models/focuspages/Traffic.php:100 models/focuspages/Traffic.php:105
1380
  #, fuzzy
1381
  #| msgid "Google %sAnalytics ID%s:"
1382
  msgid "Connect Google Analytics"
@@ -2356,7 +2356,7 @@ msgstr ""
2356
  msgid "Add meta description to this page of your site"
2357
  msgstr "Adăugați meta description la această pagină a site-ului dvs."
2358
 
2359
- #: models/Audits.php:156 models/bulkseo/Metas.php:92
2360
  #, fuzzy
2361
  #| msgid "Keyword"
2362
  msgid "Meta Keyword"
@@ -2392,7 +2392,7 @@ msgstr ""
2392
  "Asigurați-vă că căutarea cuvintelor dvs. cheie este într-o tendință în "
2393
  "creștere"
2394
 
2395
- #: models/Audits.php:166 models/bulkseo/Metas.php:97
2396
  #, fuzzy
2397
  msgid "Canonical Link"
2398
  msgstr "Link canonic"
@@ -6672,29 +6672,29 @@ msgstr "Ați obținut un clasament mai bun pentru cuvintele dvs. cheie"
6672
  msgid "You got better Score for your Audit"
6673
  msgstr "Ai obținut un scor mai bun pentru auditul tău"
6674
 
6675
- #: models/CheckSeo.php:1475
6676
  #, fuzzy
6677
  #| msgid "Could not send the email..."
6678
  msgid "Could not verify the frontend."
6679
  msgstr "Nu s-a putut trimite email ..."
6680
 
6681
- #: models/CheckSeo.php:1842
6682
  #, fuzzy
6683
  msgid "Just another WordPress site"
6684
  msgstr "Doar un alt WordPress site"
6685
 
6686
- #: models/CheckSeo.php:1969
6687
  #, fuzzy, php-format
6688
  msgid "Focus Page was not found (error %s)"
6689
  msgstr "Pagina focalizare nu a fost găsită (eroare %s)"
6690
 
6691
- #: models/CheckSeo.php:1970
6692
  #, fuzzy
6693
  msgid ""
6694
- "Task details: The way your WordPress site is currently hosted can affect the "
6695
- "way Squirrly SEO operates in order to retrieve and process data about your "
6696
- "Focus Pages. It’s important to do everything on your end to ensure that the "
6697
- "Focus Pages audits can be generated by our system."
6698
  msgstr ""
6699
  "Detalii despre sarcină: Modul în care este găzduit site-ul dvs. WordPress în "
6700
  "prezent poate afecta modul în care funcționează Squirrly SEO pentru a prelua "
@@ -6702,7 +6702,7 @@ msgstr ""
6702
  "faceți totul la sfârșitul dvs. pentru a vă asigura că auditul Pagini Focus "
6703
  "poate fi generat de sistemul nostru."
6704
 
6705
- #: models/CheckSeo.php:1971 models/CheckSeo.php:1990
6706
  #, fuzzy
6707
  msgid ""
6708
  "Use a different browser to check if your Focus Page is visible. Whitelist "
@@ -6714,19 +6714,19 @@ msgstr ""
6714
  "(176.9.112.210) pentru a permite serverului nostru să verifice pagina dvs. "
6715
  "astfel încât să primiți un audit complet."
6716
 
6717
- #: models/CheckSeo.php:1972
6718
  #, fuzzy
6719
  msgid "An error is preventing Squirrly from processing your Focus Page audits."
6720
  msgstr ""
6721
  "O eroare îl împiedică pe Squirrly să proceseze auditul dvs. Focus Page."
6722
 
6723
- #: models/CheckSeo.php:1979
6724
  #, fuzzy, php-format
6725
  msgid "Your Focus Page is redirected to another page (error %s)"
6726
  msgstr ""
6727
  "Pagina dvs. de focalizare este redirecționată către o altă pagină (eroare %s)"
6728
 
6729
- #: models/CheckSeo.php:1980
6730
  #, fuzzy, php-format
6731
  msgid ""
6732
  "Right now, your Focus Page sends users and search engines to a different URL "
@@ -6746,7 +6746,7 @@ msgstr ""
6746
  "la ce pagină ar trebui să fie clasate. %s O redirecție interferează, de "
6747
  "asemenea, cu modul în care funcționează sistemul Focus Pages al lui Squirrly."
6748
 
6749
- #: models/CheckSeo.php:1981
6750
  #, fuzzy
6751
  msgid ""
6752
  "Choose a page that does NOT redirect to a different page as your Focus Page. "
@@ -6757,19 +6757,19 @@ msgstr ""
6757
  "de focalizare. Pagina dvs. de focalizare ar trebui să aibă o singură adresă "
6758
  "URL asociată, astfel încât Squirrly să vă poată servi cele mai bune date."
6759
 
6760
- #: models/CheckSeo.php:1982
6761
  #, fuzzy
6762
  msgid "Make sure that your Focus Page is NOT redirected to a different page."
6763
  msgstr ""
6764
  "Asigurați-vă că pagina dvs. Focus nu este redirecționată către o altă pagină."
6765
 
6766
- #: models/CheckSeo.php:1988
6767
  #, fuzzy, php-format
6768
  msgid "Ensure your Focus Pages can be accessed (error %s)"
6769
  msgstr ""
6770
  "Asigurați-vă că paginile dvs. de focalizare pot fi accesate (eroare %s)"
6771
 
6772
- #: models/CheckSeo.php:1989
6773
  #, fuzzy, php-format
6774
  msgid ""
6775
  "A server-side error is preventing Squirrly from being able to access and "
@@ -6785,19 +6785,19 @@ msgstr ""
6785
  "asemenea să împiedice vizitatorii umani să acceseze pagina dvs., ceea ce "
6786
  "este o problemă critică."
6787
 
6788
- #: models/CheckSeo.php:1991
6789
  #, fuzzy
6790
  msgid "A server-side error is preventing your Focus Pages from being accessed."
6791
  msgstr ""
6792
  "O eroare din partea serverului împiedică accesarea paginilor dvs. focus."
6793
 
6794
- #: models/CheckSeo.php:1996
6795
  #, fuzzy, php-format
6796
  msgid "Make sure your Focus Pages can be audited (error %s)"
6797
  msgstr ""
6798
  "Asigurați-vă că paginile dvs. de focalizare pot fi auditate (eroare %s)"
6799
 
6800
- #: models/CheckSeo.php:1997
6801
  #, fuzzy
6802
  msgid ""
6803
  "Squirrly is unable to generate the audit for your Focus Page because it "
@@ -6810,7 +6810,7 @@ msgstr ""
6810
  "posibil ca serverul site-ului dvs. WordPress să fie defect, sau poate că "
6811
  "serverul dvs. blochează din greșește adresa IP a lui Squirrly."
6812
 
6813
- #: models/CheckSeo.php:1998
6814
  #, fuzzy
6815
  msgid ""
6816
  "Check to see if your WordPress site’s server is offline. Whitelist our "
@@ -6822,7 +6822,7 @@ msgstr ""
6822
  "serverului nostru să verifice pagina dvs. astfel încât să primiți un audit "
6823
  "complet."
6824
 
6825
- #: models/CheckSeo.php:1999
6826
  #, fuzzy
6827
  msgid ""
6828
  "An error prevents Squirrly from gathering critical data about your Focus "
@@ -6831,17 +6831,51 @@ msgstr ""
6831
  "O eroare îl împiedică pe Squirrly să strângă date critice despre pagina dvs. "
6832
  "de focalizare."
6833
 
6834
- #: models/FocusPages.php:21 models/bulkseo/Metas.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6835
  #: models/focuspages/Clicks.php:64 models/focuspages/Content.php:88
6836
  #: models/focuspages/Ctr.php:64 models/focuspages/Image.php:80
6837
  #: models/focuspages/Impressions.php:64 models/focuspages/Keyword.php:103
6838
- #: models/focuspages/Keyword.php:106 models/focuspages/Snippet.php:149
6839
  #: models/focuspages/Strategy.php:102 view/Blocks/KRFound.php:15
6840
  #: view/Blocks/KRHistory.php:15 view/Ranking/Gscsync.php:31
6841
  #: view/Ranking/Rankings.php:210 view/Ranking/Rankings.php:348
6842
  #: view/Research/Briefcase.php:107 view/Research/Briefcase.php:247
6843
  #: view/Research/History.php:29 view/Research/HistoryDetails.php:7
6844
- #: view/Research/Research.php:192 view/Research/Suggested.php:28
6845
  msgid "Keyword"
6846
  msgstr "Cuvant cheie:"
6847
 
@@ -6980,7 +7014,7 @@ msgstr "Cercetări"
6980
  msgid " Research"
6981
  msgstr "Cercetări"
6982
 
6983
- #: models/Menu.php:139
6984
  #, fuzzy
6985
  msgid "Live Assistant"
6986
  msgstr "Asistent live"
@@ -7010,8 +7044,8 @@ msgstr "Setări SEO"
7010
  msgid " SEO Settings"
7011
  msgstr "Setări SEO"
7012
 
7013
- #: models/Menu.php:163 models/Menu.php:250 view/Blocks/FocusPages.php:6
7014
- #: view/FocusPages/Pagelist.php:23
7015
  #, fuzzy
7016
  msgid "Focus Pages"
7017
  msgstr "Pagini Focus"
@@ -7021,7 +7055,7 @@ msgstr "Pagini Focus"
7021
  msgid " Focus Pages"
7022
  msgstr "Pagini Focus"
7023
 
7024
- #: models/Menu.php:171 view/Blocks/Audits.php:6
7025
  #, fuzzy
7026
  msgid "SEO Audit"
7027
  msgstr "Auditul SEO"
@@ -7170,7 +7204,6 @@ msgid "Ranking settings"
7170
  msgstr "setari"
7171
 
7172
  #: models/Menu.php:312 view/BulkSeo/Bulkseo.php:29
7173
- #: view/SeoSettings/Bulkseo.php:25
7174
  #, fuzzy
7175
  msgid "Bulk SEO"
7176
  msgstr "SEO în vrac"
@@ -7540,12 +7573,11 @@ msgstr ""
7540
  "citit evitând repetările."
7541
 
7542
  #: models/Post.php:262 models/focuspages/Snippet.php:89
7543
- #: models/focuspages/Snippet.php:205 models/focuspages/Snippet.php:227
7544
  #: view/Audits/Addpage.php:131 view/Blocks/Snippet.php:171
7545
  #: view/Blocks/Snippet.php:570 view/Blocks/Snippet.php:825
7546
  #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:132
7547
- #: view/SeoSettings/Automation.php:125 view/SeoSettings/Bulkseo.php:138
7548
- #: view/SeoSettings/Metas.php:157
7549
  msgid "Title"
7550
  msgstr "Titlul"
7551
 
@@ -7732,18 +7764,18 @@ msgstr "Nu sunt suficiente date pentru a procesa această sarcină"
7732
  msgid "Current"
7733
  msgstr "Actual"
7734
 
7735
- #: models/bulkseo/Metas.php:55
7736
  #, fuzzy
7737
  msgid "Title not empty"
7738
  msgstr "Titlul nu este gol"
7739
 
7740
- #: models/bulkseo/Metas.php:56 view/Blocks/Snippet.php:187
7741
  #: view/Blocks/Snippet.php:586 view/Blocks/Snippet.php:841
7742
  #, fuzzy
7743
  msgid "Current Title"
7744
  msgstr "Titlul curent"
7745
 
7746
- #: models/bulkseo/Metas.php:58
7747
  #, fuzzy, php-format
7748
  msgid ""
7749
  "The title for this URL must not be empty. %s Write a title for this page. "
@@ -7757,24 +7789,24 @@ msgstr ""
7757
  "titlul, cu atât mai multe clicuri puteți obține atunci când oamenii găsesc "
7758
  "pagina dvs. pe motoarele de căutare."
7759
 
7760
- #: models/bulkseo/Metas.php:61
7761
  #, fuzzy, php-format
7762
  msgid "Title up to %s chars"
7763
  msgstr "Titlu până la %s caractere"
7764
 
7765
- #: models/bulkseo/Metas.php:62
7766
  #, fuzzy
7767
  msgid "Current Title Length"
7768
  msgstr "Lungimea curentă a titlului"
7769
 
7770
- #: models/bulkseo/Metas.php:63 models/bulkseo/Metas.php:81
7771
- #: models/bulkseo/Opengraph.php:72 models/bulkseo/Opengraph.php:82
7772
- #: models/bulkseo/Twittercard.php:69 models/bulkseo/Twittercard.php:79
7773
  msgid "chars"
7774
  msgstr "caractere"
7775
 
7776
- #: models/bulkseo/Metas.php:64 models/bulkseo/Opengraph.php:73
7777
- #: models/bulkseo/Twittercard.php:70
7778
  #, fuzzy, php-format
7779
  msgid ""
7780
  "Title has to be longer than %s chars and up to %s chars. %s You can change "
@@ -7784,23 +7816,23 @@ msgstr ""
7784
  "%s Puteți modifica lungimea maximă a titlului de la %sSEO Setări> "
7785
  "Automatizare %s."
7786
 
7787
- #: models/bulkseo/Metas.php:67 models/focuspages/Snippet.php:100
7788
  msgid "Keyword in title"
7789
  msgstr "Cuvânt cheie in Titlu"
7790
 
7791
- #: models/bulkseo/Metas.php:68 models/bulkseo/Metas.php:86
7792
  #, fuzzy
7793
  #| msgid "Squirrly Keyword Research"
7794
  msgid "Squirrly Keyword"
7795
  msgstr " Cercetare cuvinte cheie"
7796
 
7797
- #: models/bulkseo/Metas.php:69 models/bulkseo/Metas.php:87
7798
  #, fuzzy
7799
  #| msgid "manage keywords"
7800
  msgid "no keywords"
7801
  msgstr "Cuvinte cheie"
7802
 
7803
- #: models/bulkseo/Metas.php:70 models/focuspages/Snippet.php:102
7804
  #, fuzzy, php-format
7805
  msgid ""
7806
  "Your keyword must be present in the title of the page. %s It's a very "
@@ -7819,19 +7851,19 @@ msgstr ""
7819
  "este un smartwatch proiectat de VectorWatch. %s \"Cumpărați SmartWatch "
7820
  "ieftin - Luna de VectorWatch\" ar fi o alegere mult mai bună pentru un titlu."
7821
 
7822
- #: models/bulkseo/Metas.php:73
7823
  #, fuzzy
7824
  #| msgid "Description:"
7825
  msgid "Description not empty"
7826
  msgstr "Descrierea:"
7827
 
7828
- #: models/bulkseo/Metas.php:74 view/Blocks/Snippet.php:239
7829
  #: view/Blocks/Snippet.php:630 view/Blocks/Snippet.php:885
7830
  #, fuzzy
7831
  msgid "Current Description"
7832
  msgstr "Descrierea curentă"
7833
 
7834
- #: models/bulkseo/Metas.php:76
7835
  #, fuzzy, php-format
7836
  msgid ""
7837
  "Meta descriptions are important for SEO on multiple search engines. %s You "
@@ -7844,19 +7876,19 @@ msgstr ""
7844
  "%s Cu cât îl scrii mai bine, cu atât sunt mai mari șansele ca oamenii să "
7845
  "facă clic pe listă când o găsesc pe motoarele de căutare."
7846
 
7847
- #: models/bulkseo/Metas.php:79
7848
  #, fuzzy, php-format
7849
  msgid "Description up to %s chars"
7850
  msgstr "Descrierea până la %s caractere"
7851
 
7852
- #: models/bulkseo/Metas.php:80
7853
  #, fuzzy
7854
  #| msgid "Custom description: "
7855
  msgid "Current Description Length"
7856
  msgstr "Descrierea:"
7857
 
7858
- #: models/bulkseo/Metas.php:82 models/bulkseo/Opengraph.php:83
7859
- #: models/bulkseo/Twittercard.php:80
7860
  #, fuzzy, php-format
7861
  msgid ""
7862
  "Description has to be longer than %s chars and up to %s chars. %s You can "
@@ -7866,13 +7898,13 @@ msgstr ""
7866
  "caractere. %s Puteți schimba lungimea maximă a descrierii de la %sSEO "
7867
  "Setări> Automatizare %s."
7868
 
7869
- #: models/bulkseo/Metas.php:85 models/focuspages/Snippet.php:105
7870
  #, fuzzy
7871
  #| msgid "Custom description: "
7872
  msgid "Keyword in description"
7873
  msgstr "Descrierea:"
7874
 
7875
- #: models/bulkseo/Metas.php:88
7876
  #, fuzzy, php-format
7877
  msgid ""
7878
  "Same as with the title task. %s If a user reads the description of your page "
@@ -7892,18 +7924,18 @@ msgstr ""
7892
  "care le aduce la TOP 10. Este destul de clar că le pasă foarte mult de acest "
7893
  "lucru, pentru că asta vor oamenii să găsească în motorul de căutare."
7894
 
7895
- #: models/bulkseo/Metas.php:91
7896
  #, fuzzy
7897
  msgid "Meta Keywords (2-4 Words)"
7898
  msgstr "Cuvinte cheie meta (2-4 cuvinte)"
7899
 
7900
- #: models/bulkseo/Metas.php:93
7901
  #, fuzzy
7902
  #| msgid "Enter a keyword"
7903
  msgid "no meta keywords"
7904
  msgstr "Adauga cuvant"
7905
 
7906
- #: models/bulkseo/Metas.php:94
7907
  #, fuzzy
7908
  msgid ""
7909
  "Even if Meta keywords are not mandatory for Google, it's important for other "
@@ -7913,13 +7945,13 @@ msgstr ""
7913
  "important pentru alte motoare de căutare să găsească această meta și să îți "
7914
  "indexeze postarea pentru aceste cuvinte cheie."
7915
 
7916
- #: models/bulkseo/Metas.php:98
7917
  #, fuzzy
7918
  #| msgid "Current: "
7919
  msgid "Current Link"
7920
  msgstr "Pozitia curenta"
7921
 
7922
- #: models/bulkseo/Metas.php:100
7923
  #, fuzzy, php-format
7924
  msgid ""
7925
  "You don't have to set any canonical link if your post is not copied from "
@@ -7934,28 +7966,29 @@ msgstr ""
7934
  "utilizat pentru a spune motoarelor de căutare care este URL-ul original. "
7935
  "Originalul este cel care este indexat și clasat."
7936
 
7937
- #: models/bulkseo/Metas.php:109
7938
  #, fuzzy
7939
  msgid "Some Squirrly Metas are deactivated."
7940
  msgstr "Unele metale Squirrly sunt dezactivate."
7941
 
7942
- #: models/bulkseo/Metas.php:114
7943
- #, fuzzy
7944
- msgid "Some Squirrly Metas are not set correctly."
7945
- msgstr "Unele metale Squirrly nu sunt setate corect."
 
7946
 
7947
- #: models/bulkseo/Metas.php:119
7948
  #, fuzzy
7949
  msgid "Some Squirrly Metas are generated automatically."
7950
  msgstr "Unele metale Squirrly sunt generate automat."
7951
 
7952
- #: models/bulkseo/Metas.php:122
7953
  #, fuzzy
7954
  msgid "All Squirrly Metas are customized and set correctly."
7955
  msgstr "Toate metoda Squirrly sunt personalizate și setate corect."
7956
 
7957
- #: models/bulkseo/Metas.php:133 models/bulkseo/Opengraph.php:125
7958
- #: models/bulkseo/Twittercard.php:122 models/bulkseo/Visibility.php:69
7959
  #: models/focuspages/Accuracy.php:34 models/focuspages/Audit.php:144
7960
  #: models/focuspages/Authority.php:33 models/focuspages/Backlinks.php:46
7961
  #: models/focuspages/Clicks.php:56 models/focuspages/Content.php:75
@@ -7964,38 +7997,38 @@ msgstr "Toate metoda Squirrly sunt personalizate și setate corect."
7964
  #: models/focuspages/Innerlinks.php:64 models/focuspages/Keyword.php:79
7965
  #: models/focuspages/Length.php:55 models/focuspages/Nofollow.php:65
7966
  #: models/focuspages/Onpage.php:78 models/focuspages/Ranking.php:35
7967
- #: models/focuspages/Snippet.php:143 models/focuspages/Social.php:56
7968
  #: models/focuspages/Strategy.php:96 models/focuspages/Traffic.php:94
7969
  #, fuzzy
7970
  #| msgid "Current: "
7971
  msgid "Current URL"
7972
  msgstr "Pozitia curenta"
7973
 
7974
- #: models/bulkseo/Metas.php:139
7975
  #, fuzzy
7976
  #| msgid "Keyword"
7977
  msgid "No Meta Keyword Found"
7978
  msgstr "Cuvant cheie:"
7979
 
7980
- #: models/bulkseo/Metas.php:155 models/bulkseo/Metas.php:191
7981
- #: models/bulkseo/Metas.php:224 models/bulkseo/Metas.php:268
7982
- #: models/bulkseo/Metas.php:304 models/bulkseo/Metas.php:337
7983
- #: models/bulkseo/Metas.php:385 models/bulkseo/Metas.php:424
7984
- #: models/bulkseo/Opengraph.php:139 models/bulkseo/Opengraph.php:175
7985
- #: models/bulkseo/Opengraph.php:207 models/bulkseo/Opengraph.php:243
7986
- #: models/bulkseo/Opengraph.php:279 models/bulkseo/Twittercard.php:136
7987
- #: models/bulkseo/Twittercard.php:172 models/bulkseo/Twittercard.php:204
7988
- #: models/bulkseo/Twittercard.php:240 models/bulkseo/Twittercard.php:276
7989
  #: models/bulkseo/Visibility.php:83 models/bulkseo/Visibility.php:122
7990
  #: models/bulkseo/Visibility.php:155
7991
  #, fuzzy
7992
  msgid "Squirrly Snippet is deactivated from this post."
7993
  msgstr "Squirrly Snippet este dezactivat de la această postare."
7994
 
7995
- #: models/bulkseo/Metas.php:159 models/bulkseo/Metas.php:195
7996
- #: models/bulkseo/Metas.php:228 models/bulkseo/Metas.php:272
7997
- #: models/bulkseo/Metas.php:308 models/bulkseo/Metas.php:341
7998
- #: models/bulkseo/Metas.php:389 models/bulkseo/Metas.php:428
7999
  #, fuzzy, php-format
8000
  msgid ""
8001
  "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
@@ -8004,58 +8037,58 @@ msgstr ""
8004
  "Metasele SEO pentru acest tip de post sunt dezactivate din %setări ESSEO> "
8005
  "Automatizare %s."
8006
 
8007
- #: models/bulkseo/Metas.php:163 models/bulkseo/Metas.php:199
8008
- #: models/bulkseo/Metas.php:232
8009
  #, fuzzy, php-format
8010
  msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
8011
  msgstr "Titlul Meta este dezactivat din %setări SSEO> Metas %s."
8012
 
8013
- #: models/bulkseo/Metas.php:167 models/bulkseo/Metas.php:203
8014
- #: models/bulkseo/Metas.php:236 models/bulkseo/Metas.php:280
8015
- #: models/bulkseo/Metas.php:316 models/bulkseo/Metas.php:349
8016
- #: models/bulkseo/Metas.php:393 models/bulkseo/Metas.php:436
8017
  #, fuzzy, php-format
8018
  msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
8019
  msgstr "Metasele SEO sunt dezactivate din %setări SSEO> Metas %s."
8020
 
8021
- #: models/bulkseo/Metas.php:176 models/bulkseo/Metas.php:212
8022
- #: models/bulkseo/Opengraph.php:160 models/bulkseo/Opengraph.php:196
8023
- #: models/bulkseo/Twittercard.php:157 models/bulkseo/Twittercard.php:193
8024
  #, fuzzy
8025
  #| msgid "<< Leave it automatically"
8026
  msgid "Title is generated automatically."
8027
  msgstr "<< Sa se adauge automat"
8028
 
8029
- #: models/bulkseo/Metas.php:240 models/bulkseo/Metas.php:353
8030
- #: models/bulkseo/Metas.php:397
8031
  #, fuzzy, php-format
8032
  msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
8033
  msgstr "Cuvinte cheie Meta este dezactivat de la %sSEO Setări> Metas %s."
8034
 
8035
- #: models/bulkseo/Metas.php:276 models/bulkseo/Metas.php:312
8036
- #: models/bulkseo/Metas.php:345
8037
  #, fuzzy, php-format
8038
  msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
8039
  msgstr "Meta Description este dezactivat de la %sSEO Setări> Metas %s."
8040
 
8041
- #: models/bulkseo/Metas.php:289 models/bulkseo/Metas.php:326
8042
- #: models/bulkseo/Opengraph.php:228 models/bulkseo/Opengraph.php:264
8043
- #: models/bulkseo/Twittercard.php:225 models/bulkseo/Twittercard.php:261
8044
  #, fuzzy
8045
  msgid "Description is generated automatically."
8046
  msgstr "Descrierea este generată automat."
8047
 
8048
- #: models/bulkseo/Metas.php:432
8049
  #, fuzzy, php-format
8050
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
8051
  msgstr "Meta Canonical este dezactivat de la %sSEO Setări> Metas %s."
8052
 
8053
- #: models/bulkseo/Opengraph.php:66
8054
  #, fuzzy
8055
  msgid "OG title not empty"
8056
  msgstr "Titlul OG nu este gol"
8057
 
8058
- #: models/bulkseo/Opengraph.php:68
8059
  #, fuzzy, php-format
8060
  msgid ""
8061
  "You need to have an Open Graph title for this post. %s It will help you "
@@ -8067,17 +8100,17 @@ msgstr ""
8067
  "partajează această adresă URL pe Facebook, LinkedIN și alte rețele sociale. "
8068
  "%s Este important și în scopuri SEO."
8069
 
8070
- #: models/bulkseo/Opengraph.php:71
8071
  #, fuzzy, php-format
8072
  msgid "OG title up to %s chars"
8073
  msgstr "Titlu OG până la %s caractere"
8074
 
8075
- #: models/bulkseo/Opengraph.php:76
8076
  #, fuzzy
8077
  msgid "OG description not empty"
8078
  msgstr "Descrierea OG nu este goală"
8079
 
8080
- #: models/bulkseo/Opengraph.php:78
8081
  #, fuzzy, php-format
8082
  msgid ""
8083
  "You need to have an Open Graph description for this post. %s It will help "
@@ -8089,23 +8122,23 @@ msgstr ""
8089
  "partajează această adresă URL pe Facebook, LinkedIN și alte rețele sociale. "
8090
  "%s Este important și în scopuri SEO."
8091
 
8092
- #: models/bulkseo/Opengraph.php:81
8093
  #, fuzzy, php-format
8094
  msgid "OG description up to %s chars"
8095
  msgstr "Descrierea OG până la %s caractere"
8096
 
8097
- #: models/bulkseo/Opengraph.php:86 view/SeoSettings/Metas.php:184
8098
  #, fuzzy
8099
  #| msgid "Images"
8100
  msgid "OG Image"
8101
  msgstr "Imagini"
8102
 
8103
- #: models/bulkseo/Opengraph.php:87 models/bulkseo/Twittercard.php:84
8104
  #, fuzzy
8105
  msgid "(featured image)"
8106
  msgstr "(imagine prezentată)"
8107
 
8108
- #: models/bulkseo/Opengraph.php:88
8109
  #, fuzzy, php-format
8110
  msgid ""
8111
  "Set a good looking image for your URL. It needs to look good in Facebook and "
@@ -8117,30 +8150,31 @@ msgstr ""
8117
  "adresă URL. %s O imagine excelentă va atrage mai multe clicuri pe site-ul "
8118
  "dvs."
8119
 
8120
- #: models/bulkseo/Opengraph.php:102
8121
  #, fuzzy
8122
  msgid "Open Graph is deactivated."
8123
  msgstr "Open Graph este dezactivat."
8124
 
8125
- #: models/bulkseo/Opengraph.php:107
8126
- #, fuzzy
8127
- msgid "Open Graph is not set correctly."
8128
- msgstr "Open Graph nu este setat corect."
 
8129
 
8130
- #: models/bulkseo/Opengraph.php:112
8131
  #, fuzzy
8132
  #| msgid "<< Leave it automatically"
8133
  msgid "Open Graph is generated automatically."
8134
  msgstr "<< Sa se adauge automat"
8135
 
8136
- #: models/bulkseo/Opengraph.php:115
8137
  #, fuzzy
8138
  msgid "Open Graph is customized and set correctly."
8139
  msgstr "Open Graph este personalizat și setat corect."
8140
 
8141
- #: models/bulkseo/Opengraph.php:143 models/bulkseo/Opengraph.php:179
8142
- #: models/bulkseo/Opengraph.php:211 models/bulkseo/Opengraph.php:247
8143
- #: models/bulkseo/Opengraph.php:283
8144
  #, fuzzy, php-format
8145
  msgid ""
8146
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
@@ -8149,28 +8183,28 @@ msgstr ""
8149
  "Deschiderea graficului pentru acest tip de post este dezactivată de la %sSEO "
8150
  "Setări> Automatizare %s."
8151
 
8152
- #: models/bulkseo/Opengraph.php:147 models/bulkseo/Opengraph.php:183
8153
- #: models/bulkseo/Opengraph.php:215 models/bulkseo/Opengraph.php:251
8154
- #: models/bulkseo/Opengraph.php:287
8155
  #, fuzzy, php-format
8156
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
8157
  msgstr "Open Graph este dezactivat din %sSEO Setări> Social Media %s."
8158
 
8159
- #: models/bulkseo/Opengraph.php:151 models/bulkseo/Opengraph.php:187
8160
- #: models/bulkseo/Opengraph.php:219 models/bulkseo/Opengraph.php:255
8161
- #: models/bulkseo/Opengraph.php:291 models/bulkseo/Twittercard.php:148
8162
- #: models/bulkseo/Twittercard.php:184 models/bulkseo/Twittercard.php:216
8163
- #: models/bulkseo/Twittercard.php:252 models/bulkseo/Twittercard.php:288
8164
  #, fuzzy, php-format
8165
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
8166
  msgstr "Social Media este dezactivat din %sSEO Setări> Social Media %s."
8167
 
8168
- #: models/bulkseo/Twittercard.php:63
8169
  #, fuzzy
8170
  msgid "TC title not empty"
8171
  msgstr "Titlul TC nu este gol"
8172
 
8173
- #: models/bulkseo/Twittercard.php:65
8174
  #, fuzzy, php-format
8175
  msgid ""
8176
  "You need to have a title for the Twitter Card of this post. %s It will help "
@@ -8181,18 +8215,18 @@ msgstr ""
8181
  "va ajuta să controlezi aspectul postării tale când este distribuită pe "
8182
  "Twitter. %s Este important și în scopuri SEO."
8183
 
8184
- #: models/bulkseo/Twittercard.php:68
8185
  #, fuzzy, php-format
8186
  msgid "TC title up to %s chars"
8187
  msgstr "Titlul TC până la %s caractere"
8188
 
8189
- #: models/bulkseo/Twittercard.php:73
8190
  #, fuzzy
8191
  #| msgid "Description:"
8192
  msgid "TC Description not empty"
8193
  msgstr "Descrierea:"
8194
 
8195
- #: models/bulkseo/Twittercard.php:75
8196
  #, fuzzy, php-format
8197
  msgid ""
8198
  "You need to have a Twitter Card description for this post. %s It will help "
@@ -8206,18 +8240,18 @@ msgstr ""
8206
  "descrierii cardului dvs. Twitter va atrage mai multe clicuri pe site-ul "
8207
  "dvs. %s Este important și în scopuri SEO."
8208
 
8209
- #: models/bulkseo/Twittercard.php:78
8210
  #, fuzzy, php-format
8211
  msgid "TC description up to %s chars"
8212
  msgstr "Descrierea TC până la %s caractere"
8213
 
8214
- #: models/bulkseo/Twittercard.php:83
8215
  #, fuzzy
8216
  #| msgid "Images"
8217
  msgid "TC Image"
8218
  msgstr "Imagini"
8219
 
8220
- #: models/bulkseo/Twittercard.php:85
8221
  #, fuzzy, php-format
8222
  msgid ""
8223
  "Set a good looking image for your URL. It needs to look good in Twitter "
@@ -8228,29 +8262,30 @@ msgstr ""
8228
  "fluxurile Twitter atunci când oamenii vor partaja această adresă URL. %s O "
8229
  "imagine excelentă va atrage mai multe clicuri pe site-ul dvs."
8230
 
8231
- #: models/bulkseo/Twittercard.php:99
8232
  #, fuzzy
8233
  msgid "Twitter Card is deactivated."
8234
  msgstr "Cardul Twitter este dezactivat."
8235
 
8236
- #: models/bulkseo/Twittercard.php:104
8237
- #, fuzzy
8238
- msgid "Twitter Card is not set correctly."
8239
- msgstr "Cardul Twitter nu este setat corect."
 
8240
 
8241
- #: models/bulkseo/Twittercard.php:109
8242
  #, fuzzy
8243
  msgid "Twitter Card is generated automatically."
8244
  msgstr "Cardul Twitter este generat automat."
8245
 
8246
- #: models/bulkseo/Twittercard.php:112
8247
  #, fuzzy
8248
  msgid "Twitter Card is customized and set correctly."
8249
  msgstr "Cardul Twitter este personalizat și setat corect."
8250
 
8251
- #: models/bulkseo/Twittercard.php:140 models/bulkseo/Twittercard.php:176
8252
- #: models/bulkseo/Twittercard.php:208 models/bulkseo/Twittercard.php:244
8253
- #: models/bulkseo/Twittercard.php:280
8254
  #, fuzzy, php-format
8255
  msgid ""
8256
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
@@ -8259,9 +8294,9 @@ msgstr ""
8259
  "Cardul Twitter pentru acest tip de post este dezactivat de la %sSEO Setări> "
8260
  "Automatizare %s."
8261
 
8262
- #: models/bulkseo/Twittercard.php:144 models/bulkseo/Twittercard.php:180
8263
- #: models/bulkseo/Twittercard.php:212 models/bulkseo/Twittercard.php:248
8264
- #: models/bulkseo/Twittercard.php:284
8265
  #, fuzzy, php-format
8266
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
8267
  msgstr "Cardul Twitter este dezactivat din %sSEO Setări> Social Media %s."
@@ -8335,9 +8370,10 @@ msgid "Some visibility options are inactive."
8335
  msgstr "Unele opțiuni de vizibilitate sunt inactive."
8336
 
8337
  #: models/bulkseo/Visibility.php:55
8338
- #, fuzzy
8339
- msgid "Visibility is not set correctly."
8340
- msgstr "Vizibilitatea nu este setată corect."
 
8341
 
8342
  #: models/bulkseo/Visibility.php:59
8343
  #, fuzzy
@@ -8436,7 +8472,7 @@ msgstr ""
8436
 
8437
  #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
8438
  #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
8439
- #: models/focuspages/Indexability.php:95
8440
  #, fuzzy
8441
  msgid "Connect Google Search"
8442
  msgstr "Inregistreaza-te la Squirrly.co"
@@ -8657,6 +8693,18 @@ msgstr "domenii unice"
8657
  msgid "At Least %s Majestic SEO Links"
8658
  msgstr "Cel puțin %s Link-uri SEO Majestic"
8659
 
 
 
 
 
 
 
 
 
 
 
 
 
8660
  #: models/focuspages/Clicks.php:42
8661
  #, fuzzy
8662
  msgid "Clicks from Search Engine in the last 3 months"
@@ -8674,8 +8722,8 @@ msgstr "Mai multe detalii"
8674
  #: models/focuspages/Clicks.php:75 models/focuspages/Content.php:93
8675
  #: models/focuspages/Ctr.php:75 models/focuspages/Image.php:88
8676
  #: models/focuspages/Impressions.php:75 models/focuspages/Keyword.php:114
8677
- #: models/focuspages/Keyword.php:176 models/focuspages/Keyword.php:194
8678
- #: models/focuspages/Keyword.php:217 models/focuspages/Snippet.php:151
8679
  #: models/focuspages/Strategy.php:112
8680
  #, fuzzy
8681
  #| msgid "Keyword"
@@ -8691,20 +8739,19 @@ msgstr "Cuvant cheie:"
8691
  msgid "Optimize for a keyword"
8692
  msgstr "Optimizare dupa cuvant cheie"
8693
 
8694
- #: models/focuspages/Clicks.php:96 models/focuspages/Ctr.php:96
8695
- #: models/focuspages/Impressions.php:96
 
 
 
 
 
 
 
8696
  #, fuzzy
8697
  msgid "Connect to Google Search Console"
8698
  msgstr "Inregistreaza-te la Squirrly.co"
8699
 
8700
- #: models/focuspages/Clicks.php:100 models/focuspages/Content.php:114
8701
- #: models/focuspages/Ctr.php:100 models/focuspages/Impressions.php:100
8702
- #: models/focuspages/Keyword.php:149 models/focuspages/Strategy.php:132
8703
- #, fuzzy
8704
- #| msgid "Optimize for Keyword"
8705
- msgid "Optimize the page for a keyword"
8706
- msgstr "Optimizare dupa cuvant cheie"
8707
-
8708
  #: models/focuspages/Content.php:46
8709
  #, fuzzy, php-format
8710
  #| msgid "Optimize"
@@ -8848,18 +8895,18 @@ msgstr ""
8848
  "ar putea avea în vedere supra-optimizarea dacă l-ați utilizat de mai multe "
8849
  "ori."
8850
 
8851
- #: models/focuspages/Image.php:85 models/focuspages/Snippet.php:154
8852
  #, fuzzy
8853
  msgid "Edit your snippet"
8854
  msgstr "Editează fragmentul"
8855
 
8856
- #: models/focuspages/Image.php:114
8857
  #, fuzzy
8858
  msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
8859
  msgstr ""
8860
  "Optimizați mai întâi postarea folosind un cuvânt cheie din Squirrly Briefcase"
8861
 
8862
- #: models/focuspages/Image.php:115
8863
  #, fuzzy
8864
  #| msgid "No results found!"
8865
  msgid "No image found"
@@ -8870,6 +8917,11 @@ msgstr "Nu s-a gasit nimic ..."
8870
  msgid "Search Results Impressions in the last 3 months"
8871
  msgstr "Rezultate căutare Impresii din ultimele 3 luni"
8872
 
 
 
 
 
 
8873
  #: models/focuspages/Indexability.php:52
8874
  #, fuzzy
8875
  msgid "Yes, do index"
@@ -9189,8 +9241,8 @@ msgstr ""
9189
  "Felicitări pentru clasarea cu acest cuvânt cheie, dar va necesita o atenție "
9190
  "specială din partea dvs. pentru a-l menține în pozițiile TOP 10"
9191
 
9192
- #: models/focuspages/Keyword.php:176 models/focuspages/Keyword.php:194
9193
- #: models/focuspages/Keyword.php:217
9194
  #, fuzzy
9195
  msgid "Please add a keyword first."
9196
  msgstr "Vă rugăm să adăugați mai întâi un cuvânt cheie."
@@ -9261,12 +9313,17 @@ msgstr ""
9261
  msgid "Edit Page"
9262
  msgstr "Editare pagină"
9263
 
9264
- #: models/focuspages/Length.php:84 models/focuspages/Length.php:114
9265
- #: models/focuspages/Traffic.php:120 models/focuspages/Traffic.php:137
9266
- #: models/focuspages/Traffic.php:153 models/focuspages/Traffic.php:169
9267
  #, fuzzy
9268
  #| msgid "Google %sAnalytics ID%s:"
9269
- msgid "Connect Google Analytics first"
 
 
 
 
 
 
 
9270
  msgstr "Google %sAnalytics ID%s:"
9271
 
9272
  #: models/focuspages/Nofollow.php:50
@@ -9441,8 +9498,8 @@ msgstr ""
9441
  "prețuri (în cazul în care site-ul dvs. afișează mai multe produse), atunci "
9442
  "titlul dvs. ar trebui să conțină doar numele mărcii acelui produs."
9443
 
9444
- #: models/focuspages/Snippet.php:95 models/focuspages/Snippet.php:206
9445
- #: models/focuspages/Snippet.php:228 view/Blocks/Snippet.php:613
9446
  #: view/Blocks/Snippet.php:868 view/SeoSettings/Automation.php:134
9447
  #: view/SeoSettings/Metas.php:166
9448
  msgid "Description"
@@ -9473,7 +9530,19 @@ msgstr ""
9473
  "Utilizați descrieri minunate pentru paginile de pe site-ul dvs. pentru a "
9474
  "stimula CTR (ratele de clic)."
9475
 
9476
- #: models/focuspages/Snippet.php:106
 
 
 
 
 
 
 
 
 
 
 
 
9477
  #, fuzzy, php-format
9478
  msgid ""
9479
  "Same as with the title task. %s If a user reads the description of your page "
@@ -9493,12 +9562,12 @@ msgstr ""
9493
  "care le aduce la TOP 10. Este destul de clar că le pasă mult de acest lucru, "
9494
  "pentru că asta vor oamenii să găsească în motorul de căutare."
9495
 
9496
- #: models/focuspages/Snippet.php:109
9497
  #, fuzzy
9498
  msgid "Open Graph - full definition"
9499
  msgstr "Open Graph - definiție completă"
9500
 
9501
- #: models/focuspages/Snippet.php:111
9502
  #, fuzzy, php-format
9503
  msgid ""
9504
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -9518,12 +9587,12 @@ msgstr ""
9518
  "TOATE etichetele og sunt prezente. %s Și da, acest lucru este relevant "
9519
  "pentru destinațiile de plasare a motorului de căutare."
9520
 
9521
- #: models/focuspages/Snippet.php:114
9522
  #, fuzzy
9523
  msgid "Twitter Cards - full definition"
9524
  msgstr "Cărți Twitter - definiție completă"
9525
 
9526
- #: models/focuspages/Snippet.php:116
9527
  #, fuzzy, php-format
9528
  msgid ""
9529
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -9539,12 +9608,12 @@ msgstr ""
9539
  "că verificați toate definițiile necesare, astfel încât să nu pierdeți o "
9540
  "bătaie."
9541
 
9542
- #: models/focuspages/Snippet.php:119
9543
  #, fuzzy
9544
  msgid "JSON-LD definition"
9545
  msgstr "Definiția JSON-LD"
9546
 
9547
- #: models/focuspages/Snippet.php:120
9548
  #, fuzzy, php-format
9549
  msgid ""
9550
  "To turn this task to green, you can easily use the JSON-LD section inside "
@@ -9562,12 +9631,12 @@ msgstr ""
9562
  "valida JSON-LD existent cu: %shttps: //search.google.com/structured-data/"
9563
  "testing-tool%s"
9564
 
9565
- #: models/focuspages/Snippet.php:123
9566
  #, fuzzy
9567
  msgid "Customized"
9568
  msgstr "Modificare META"
9569
 
9570
- #: models/focuspages/Snippet.php:124
9571
  #, fuzzy, php-format
9572
  msgid ""
9573
  "The Snippets of your most important pages should be customized. %s Use the "
@@ -9592,7 +9661,7 @@ msgstr ""
9592
  "experiment pe care îl execută. De cele mai multe ori, propriul fragment "
9593
  "personalizat va fi cel care va fi afișat."
9594
 
9595
- #: models/focuspages/Snippet.php:207 models/focuspages/Snippet.php:229
9596
  msgid "Image"
9597
  msgstr "Imagine"
9598
 
@@ -9738,7 +9807,7 @@ msgstr ""
9738
  msgid "Manage Strategy"
9739
  msgstr "Gestionează strategia"
9740
 
9741
- #: models/focuspages/Strategy.php:161 models/focuspages/Strategy.php:168
9742
  #, fuzzy
9743
  msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
9744
  msgstr ""
@@ -9860,6 +9929,12 @@ msgstr ""
9860
  "rămâne doar unul și că unicul cod este cel legat de contul Google "
9861
  "Analytics. %s Aceste probleme se întâmplă mai des decât ai crede."
9862
 
 
 
 
 
 
 
9863
  #: models/focuspages/Traffic.php:122
9864
  #, fuzzy
9865
  msgid "Not enough traffic to show relevant stats"
@@ -9906,18 +9981,36 @@ msgstr "Nu s-a gasit nimic ..."
9906
  msgid "Add New"
9907
  msgstr "Adaugă nou"
9908
 
9909
- #: view/Assistant/Settings.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9910
  #, fuzzy
9911
  #| msgid "Save settings"
9912
  msgid "Live Assistant Settings"
9913
  msgstr "Salveaza setari"
9914
 
9915
- #: view/Assistant/Settings.php:34
9916
  #, fuzzy
9917
  msgid "Squirrly Tooltips"
9918
  msgstr "Optiuni Squirrly"
9919
 
9920
- #: view/Assistant/Settings.php:35
9921
  #, fuzzy, php-format
9922
  msgid ""
9923
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. \"Enter a keyword"
@@ -9926,19 +10019,19 @@ msgstr ""
9926
  "Afișați %sSquirrly Tooltips %s la postarea unui nou articol (de exemplu, "
9927
  "\"Introduceți un cuvânt cheie\")."
9928
 
9929
- #: view/Assistant/Settings.php:45
9930
  #, fuzzy
9931
  msgid "Download Remote Images"
9932
  msgstr "Descărcați imagini la distanță"
9933
 
9934
- #: view/Assistant/Settings.php:46
9935
  #, fuzzy, php-format
9936
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
9937
  msgstr ""
9938
  "Descărcați %sremote images %s în biblioteca dvs. %sMedia %s pentru noile "
9939
  "postări."
9940
 
9941
- #: view/Assistant/Settings.php:47
9942
  #, fuzzy
9943
  msgid ""
9944
  "Prevent from losing the images you use in your articles in case the remote "
@@ -9947,53 +10040,53 @@ msgstr ""
9947
  "Împiedicați pierderea imaginilor pe care le utilizați în articolele dvs. în "
9948
  "cazul în care imaginile la distanță sunt șterse."
9949
 
9950
- #: view/Assistant/Settings.php:58
9951
  #, fuzzy
9952
  #| msgid "Show only Copyright Free images"
9953
  msgid "Copyright Free Images"
9954
  msgstr "Arata doar imagini fara copyright"
9955
 
9956
- #: view/Assistant/Settings.php:59
9957
  #, fuzzy, php-format
9958
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
9959
  msgstr "Căutați %sCopyright Free Images %s în Squirrly Live Assistant."
9960
 
9961
- #: view/Assistant/Settings.php:69
9962
  #, fuzzy
9963
  #| msgid "Save settings"
9964
  msgid "Live Assistant Type"
9965
  msgstr "Salveaza setari"
9966
 
9967
- #: view/Assistant/Settings.php:70
9968
  #, fuzzy
9969
  msgid "Select how you want Squirrly Live Assistant to load in editor."
9970
  msgstr "Asistent SEO Live"
9971
 
9972
- #: view/Assistant/Settings.php:74
9973
  msgid "Auto"
9974
  msgstr "Auto"
9975
 
9976
- #: view/Assistant/Settings.php:75
9977
  #, fuzzy
9978
  msgid "Integrated Box"
9979
  msgstr "Caseta integrată"
9980
 
9981
- #: view/Assistant/Settings.php:76
9982
  #, fuzzy
9983
  msgid "Floating Box"
9984
  msgstr "Cutie plutitoare"
9985
 
9986
- #: view/Assistant/Settings.php:89
9987
  #, fuzzy
9988
  msgid "Activate Live Assistant in Frontend"
9989
  msgstr "Activați Asistent Live în Frontend"
9990
 
9991
- #: view/Assistant/Settings.php:89
9992
  #, fuzzy
9993
  msgid "(BETA)"
9994
  msgstr "(BETA)"
9995
 
9996
- #: view/Assistant/Settings.php:90
9997
  #, fuzzy
9998
  msgid ""
9999
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
@@ -10002,17 +10095,17 @@ msgstr ""
10002
  "Încărcați Squirrly Live Assistant în Frontend pentru a personaliza postările "
10003
  "și paginile cu Builders."
10004
 
10005
- #: view/Assistant/Settings.php:91
10006
  #, fuzzy
10007
  msgid "Currently supports the Elementor Builder plugin."
10008
  msgstr "În prezent acceptă pluginul Elementor Builder."
10009
 
10010
- #: view/Assistant/Settings.php:98
10011
  #, fuzzy
10012
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
10013
  msgstr "Locuri în care NU doriți să se încarce Squirrly Live Assistant"
10014
 
10015
- #: view/Assistant/Settings.php:100
10016
  #, fuzzy
10017
  msgid ""
10018
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
@@ -10021,29 +10114,29 @@ msgstr ""
10021
  "Nu selectați nimic dacă doriți ca Squirrly Live Assistant să se încarce "
10022
  "pentru toate tipurile de post."
10023
 
10024
- #: view/Assistant/Settings.php:106
10025
  msgid "Exclusions"
10026
  msgstr "Excluderi"
10027
 
10028
- #: view/Assistant/Settings.php:107
10029
  #, fuzzy
10030
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
10031
  msgstr ""
10032
  "Selectați locațiile în care NU doriți să se încarce Squirrly Live Assistant."
10033
 
10034
- #: view/Assistant/Settings.php:108
10035
  #, fuzzy
10036
  msgid "Hold Control key to select multiple places"
10037
  msgstr "Țineți apăsată tasta de control pentru a selecta mai multe locuri"
10038
 
10039
- #: view/Assistant/Settings.php:135 view/SeoSettings/Automation.php:474
10040
  #: view/SeoSettings/Automation.php:595 view/SeoSettings/Jsonld.php:243
10041
  #: view/SeoSettings/Metas.php:231 view/SeoSettings/Sitemap.php:305
10042
  #: view/SeoSettings/Social.php:372
10043
  msgid "Show Advanced Options"
10044
  msgstr "Arată opțiuni avansate"
10045
 
10046
- #: view/Assistant/Settings.php:136 view/SeoSettings/Automation.php:475
10047
  #: view/SeoSettings/Automation.php:596 view/SeoSettings/Jsonld.php:244
10048
  #: view/SeoSettings/Metas.php:232 view/SeoSettings/Sitemap.php:306
10049
  #: view/SeoSettings/Social.php:373
@@ -10051,8 +10144,8 @@ msgstr "Arată opțiuni avansate"
10051
  msgid "Hide Advanced Options"
10052
  msgstr "Ascundeți opțiunile avansate"
10053
 
10054
- #: view/Assistant/Settings.php:139 view/Audits/Settings.php:60
10055
- #: view/Ranking/Settings.php:173 view/SeoSettings/Advanced.php:95
10056
  #: view/SeoSettings/Automation.php:478 view/SeoSettings/Automation.php:599
10057
  #: view/SeoSettings/Backup.php:206 view/SeoSettings/Favicon.php:107
10058
  #: view/SeoSettings/Jsonld.php:247 view/SeoSettings/Metas.php:235
@@ -10062,25 +10155,6 @@ msgstr "Ascundeți opțiunile avansate"
10062
  msgid "Save Settings"
10063
  msgstr "Salveaza setari"
10064
 
10065
- #: view/Audits/Addpage.php:8 view/Audits/Audit.php:8 view/Audits/Audits.php:8
10066
- #: view/Audits/Compare.php:11 view/Audits/Settings.php:7
10067
- #: view/BulkSeo/Bulkseo.php:12 view/FocusPages/Addpage.php:8
10068
- #: view/FocusPages/Pagelist.php:8 view/FocusPages/Settings.php:7
10069
- #: view/Ranking/Rankings.php:17 view/Ranking/Settings.php:7
10070
- #: view/SeoSettings/Advanced.php:7 view/SeoSettings/Automation.php:7
10071
- #: view/SeoSettings/Backup.php:7 view/SeoSettings/Bulkseo.php:12
10072
- #: view/SeoSettings/Favicon.php:7 view/SeoSettings/Jsonld.php:7
10073
- #: view/SeoSettings/Metas.php:7 view/SeoSettings/Robots.php:7
10074
- #: view/SeoSettings/Sitemap.php:7 view/SeoSettings/Social.php:7
10075
- #: view/SeoSettings/Tracking.php:7 view/SeoSettings/Webmaster.php:7
10076
- #, fuzzy
10077
- msgid ""
10078
- "You do not have permission to access this page. You need Squirrly SEO Admin "
10079
- "role"
10080
- msgstr ""
10081
- "Nu aveți permisiunea de a accesa această pagină. Ai nevoie de Squirrly SEO "
10082
- "Administrator"
10083
-
10084
  #: view/Audits/Addpage.php:22
10085
  #, fuzzy
10086
  msgid "Add a page in Audit"
@@ -10097,14 +10171,13 @@ msgstr ""
10097
  "ului dvs. în termeni de blogging, SEO, social, autoritate, link-uri și trafic"
10098
 
10099
  #: view/Audits/Addpage.php:92 view/BulkSeo/Bulkseo.php:101
10100
- #: view/FocusPages/Addpage.php:92 view/SeoSettings/Bulkseo.php:96
10101
  #, fuzzy
10102
  msgid "Any status"
10103
  msgstr "Orice statut"
10104
 
10105
  #: view/Audits/Addpage.php:112 view/BulkSeo/Bulkseo.php:121
10106
- #: view/FocusPages/Addpage.php:112 view/Research/Research.php:200
10107
- #: view/SeoSettings/Bulkseo.php:116
10108
  msgid "Search"
10109
  msgstr "Caută"
10110
 
@@ -10112,7 +10185,6 @@ msgstr "Caută"
10112
  #: view/Audits/Compare.php:44 view/BulkSeo/Bulkseo.php:123
10113
  #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:6
10114
  #: view/Ranking/Rankings.php:58 view/Research/Briefcase.php:37
10115
- #: view/SeoSettings/Bulkseo.php:118
10116
  msgid "Show All"
10117
  msgstr "Arată toate"
10118
 
@@ -10132,13 +10204,13 @@ msgid "Already added"
10132
  msgstr "Cuvinte cheie:"
10133
 
10134
  #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
10135
- #: view/FocusPages/Addpage.php:196 view/SeoSettings/Bulkseo.php:192
10136
  #, fuzzy
10137
  msgid "Prev Page"
10138
  msgstr "Pagina Prev"
10139
 
10140
  #: view/Audits/Addpage.php:194 view/BulkSeo/Bulkseo.php:199
10141
- #: view/FocusPages/Addpage.php:197 view/SeoSettings/Bulkseo.php:193
10142
  msgid "Next Page"
10143
  msgstr "Pagina următoare"
10144
 
@@ -10176,37 +10248,39 @@ msgstr "Afișați numai sarcini incomplete"
10176
  msgid "Last checked"
10177
  msgstr "Ultima verificare"
10178
 
10179
- #: view/Audits/AuditPageRow.php:46 view/FocusPages/FocusPageRow.php:92
10180
  #, fuzzy
10181
  #| msgid "Could not send the email..."
10182
  msgid "Could not create the audit for this URL"
10183
  msgstr "Nu s-a putut trimite email ..."
10184
 
10185
- #: view/Audits/AuditPageRow.php:46 view/FocusPages/FocusPageRow.php:92
10186
  #, fuzzy
10187
  #| msgid "An error occured."
10188
  msgid "error code"
10189
  msgstr "A aparut o eroare."
10190
 
10191
- #: view/Audits/AuditPageRow.php:48
10192
  #, fuzzy, php-format
10193
  msgid ""
10194
- "The current way your WordPress site is hosted can cause experience issues to "
10195
- "the way Squirrly SEO works. %s In order to serve you with the best data, and "
10196
- "make sure that the Page audits can be processed, you will need to talk to "
10197
- "your hosting provider and tell them to make the following settings. %s "
10198
- "Please add the IP address 176.9.112.210 in the white-list for remote access "
10199
- "and it should work."
10200
  msgstr ""
10201
- "Modul actual de găzduire a site-ului dvs. WordPress poate provoca probleme "
10202
- "de experiență asupra modului în care funcționează Squirrly SEO. %s Pentru a "
10203
- " oferi cele mai bune date și pentru a asigura procesele de pagină "
10204
- "pot fi procesate, va trebui discutați cu furnizorul dvs. de găzduire și "
10205
- " le spuneți efectueze următoarele setări. %s Vă rugăm să adăugați "
10206
- "adresa IP 176.9.112.210 în lista albă pentru acces la distanță și ar trebui "
10207
- "să funcționeze."
 
 
 
10208
 
10209
- #: view/Audits/AuditPageRow.php:69
10210
  #, fuzzy
10211
  msgid "Delete Page from Audit"
10212
  msgstr "Ștergeți pagina din audit"
@@ -10379,7 +10453,7 @@ msgstr "Show Audit"
10379
  msgid "Audits"
10380
  msgstr "auditurile"
10381
 
10382
- #: view/Audits/Audits.php:55
10383
  #, fuzzy, php-format
10384
  msgid ""
10385
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
@@ -10390,13 +10464,19 @@ msgstr ""
10390
  "minute %s pentru a genera noul audit pentru fiecare pagină. Sunt multe "
10391
  "prelucrări implicate."
10392
 
10393
- #: view/Audits/Audits.php:62
10394
  #, fuzzy, php-format
10395
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
10396
  msgstr ""
10397
  "Aflați cum să vă îmbunătățiți scorul Auditului SEO în timp %s Faceți clic "
10398
  "aici %s"
10399
 
 
 
 
 
 
 
10400
  #: view/Audits/Settings.php:30
10401
  #, fuzzy
10402
  #| msgid " settings"
@@ -10415,60 +10495,32 @@ msgid "Enter the email address on which you want to receive the weekly audits."
10415
  msgstr ""
10416
  "Introduceți adresa de e-mail pe care doriți să primiți audituri săptămânale."
10417
 
10418
- #: view/Blocks/Account.php:33
 
 
 
 
 
 
10419
  #, fuzzy
10420
  msgid "Your Plan: "
10421
  msgstr "Planul tau:"
10422
 
10423
- #: view/Blocks/Account.php:34
10424
  #, fuzzy
10425
  #| msgid "Squirrly account information"
10426
  msgid "Check Account Info"
10427
  msgstr "Informatii cont Squirrly"
10428
 
10429
- #: view/Blocks/Account.php:39
10430
  msgid "Email: "
10431
  msgstr "E-mail: "
10432
 
10433
- #: view/Blocks/Account.php:45
10434
  #, php-format
10435
  msgid "Due Date: %s"
10436
  msgstr "Data scadentă: %s"
10437
 
10438
- #: view/Blocks/Assistant.php:13
10439
- #, fuzzy
10440
- #| msgid "Social Media Options"
10441
- msgid "Show Advanced SEO"
10442
- msgstr "Optiuni Social Media"
10443
-
10444
- #: view/Blocks/Assistant.php:14
10445
- #, fuzzy
10446
- msgid ""
10447
- "Switch off to have the simplified version of the settings, intended for Non-"
10448
- "SEO Experts."
10449
- msgstr ""
10450
- "Opriți pentru a avea versiunea simplificată a setărilor, destinată "
10451
- "experților non-SEO."
10452
-
10453
- #: view/Blocks/Assistant.php:15
10454
- #, fuzzy
10455
- msgid ""
10456
- "It will offer the same level of SEO performance, but it will be less "
10457
- "customizable."
10458
- msgstr ""
10459
- "Va oferi același nivel de performanță SEO, dar va fi mai puțin "
10460
- "personalizabil."
10461
-
10462
- #: view/Blocks/Assistant.php:25
10463
- #, fuzzy
10464
- msgid "We Need Your Support"
10465
- msgstr "Avem nevoie de sprijinul tău"
10466
-
10467
- #: view/Blocks/Assistant.php:34
10468
- #, fuzzy
10469
- msgid "Rate us if you like Squirrly SEO"
10470
- msgstr "Evaluează-ne dacă îți place SEO Squirrly"
10471
-
10472
  #: view/Blocks/Audits.php:7 view/Blocks/Audits.php:53
10473
  #, fuzzy
10474
  msgid "See Audits"
@@ -10505,7 +10557,7 @@ msgstr "Până când auditul este gata, încercați secțiunea Focus Pages"
10505
  msgid "Go to Focus Pages"
10506
  msgstr "Accesați Pagini Focus"
10507
 
10508
- #: view/Blocks/Connect.php:13 view/Blocks/Connect.php:27
10509
  #, fuzzy
10510
  msgid ""
10511
  "This option is used to track innerlinks and insights for your Focus Pages "
@@ -10515,16 +10567,16 @@ msgstr ""
10515
  "informațiile pentru paginile dvs. Focus și pentru a oferi informații "
10516
  "detaliate despre acestea."
10517
 
10518
- #: view/Blocks/Connect.php:15 view/Blocks/Connect.php:29
10519
  #, fuzzy
10520
  msgid "Let Squirrly API get data for Focus Pages"
10521
  msgstr "Permiteți Squirrly API să obțină date pentru Focus Pages"
10522
 
10523
- #: view/Blocks/Connect.php:16
10524
  msgid "Connect"
10525
  msgstr "Conecteaza"
10526
 
10527
- #: view/Blocks/Connect.php:30
10528
  #, fuzzy
10529
  #| msgid "Connecting ..."
10530
  msgid "disconnect"
@@ -10596,6 +10648,331 @@ msgstr "Îmbunătățiți-vă SEO cu Bulk SEO"
10596
  msgid "Checking the website ..."
10597
  msgstr "Verificat cu google ..."
10598
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10599
  #: view/Blocks/FocusPages.php:7
10600
  #, fuzzy
10601
  msgid "See Focus Pages"
@@ -10626,11 +11003,6 @@ msgstr "Adăugați o nouă pagină"
10626
  msgid "Then set a page as focus"
10627
  msgstr "Apoi, setați o pagină ca focus"
10628
 
10629
- #: view/Blocks/Jorney.php:12 view/Blocks/Jorney.php:95
10630
- #, fuzzy
10631
- msgid "14 Days Journey Course"
10632
- msgstr "Curs de 14 zile de călătorie"
10633
-
10634
  #: view/Blocks/Jorney.php:17
10635
  #, fuzzy, php-format
10636
  msgid "Follow the %sdaily recipe%s from below."
@@ -10703,13 +11075,13 @@ msgstr "Cuvinte cheie:"
10703
 
10704
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
10705
  #: view/Ranking/Rankings.php:395 view/Research/Briefcase.php:256
10706
- #: view/Research/History.php:30 view/Research/Research.php:193
10707
  #: view/Research/Suggested.php:29
10708
  msgid "Country"
10709
  msgstr "Țară"
10710
 
10711
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
10712
- #: view/Research/History.php:30 view/Research/Research.php:193
10713
  #: view/Research/Suggested.php:29
10714
  #, fuzzy
10715
  msgid "Co"
@@ -10718,7 +11090,7 @@ msgstr "co"
10718
  #: view/Blocks/KRFound.php:18 view/Blocks/KRFound.php:19
10719
  #: view/Blocks/KRFound.php:64 view/Research/Briefcase.php:261
10720
  #: view/Research/HistoryDetails.php:16 view/Research/HistoryDetails.php:18
10721
- #: view/Research/Research.php:195 view/Research/Research.php:196
10722
  #: view/Research/Suggested.php:31 view/Research/Suggested.php:32
10723
  #: view/Research/Suggested.php:81
10724
  #, fuzzy
@@ -10726,7 +11098,7 @@ msgid "Competition"
10726
  msgstr "Concurență"
10727
 
10728
  #: view/Blocks/KRFound.php:22 view/Blocks/KRFound.php:69
10729
- #: view/Research/HistoryDetails.php:12 view/Research/Research.php:199
10730
  #: view/Research/Suggested.php:35 view/Research/Suggested.php:86
10731
  #, fuzzy
10732
  msgid "SEO Search Volume"
@@ -10740,20 +11112,20 @@ msgstr "SV"
10740
 
10741
  #: view/Blocks/KRFound.php:26 view/Blocks/KRFound.php:74
10742
  #: view/Research/Briefcase.php:277 view/Research/HistoryDetails.php:8
10743
- #: view/Research/Research.php:203 view/Research/Suggested.php:39
10744
  #: view/Research/Suggested.php:91
10745
  #, fuzzy
10746
  msgid "Recent discussions"
10747
  msgstr "Discuții recente"
10748
 
10749
  #: view/Blocks/KRFound.php:27 view/Research/HistoryDetails.php:10
10750
- #: view/Research/Research.php:204 view/Research/Suggested.php:40
10751
  msgid "Discussion"
10752
  msgstr "Discuţie"
10753
 
10754
  #: view/Blocks/KRFound.php:30 view/Blocks/KRFound.php:31
10755
  #: view/Blocks/KRFound.php:79 view/Research/Briefcase.php:283
10756
- #: view/Research/HistoryDetails.php:20 view/Research/Research.php:207
10757
  #: view/Research/Suggested.php:43
10758
  msgid "Trending"
10759
  msgstr "Tendință"
@@ -10792,12 +11164,6 @@ msgstr "Până atunci, adăugați cuvinte cheie în servietă"
10792
  msgid "Go to Briefcase"
10793
  msgstr "Accesați Servieta"
10794
 
10795
- #: view/Blocks/KRHistory.php:5 view/Onboarding/Step1.3.php:11
10796
- #: view/Research/Research.php:18
10797
- #, fuzzy
10798
- msgid "Keyword Research"
10799
- msgstr "Cercetare cu cuvinte cheie"
10800
-
10801
  #: view/Blocks/KRHistory.php:6
10802
  #, fuzzy
10803
  #| msgid "Search it:"
@@ -11433,56 +11799,56 @@ msgstr "Activați Squirrly SEO pentru a încărca fragmentul Squirrly"
11433
  msgid "%sPlease connect to SquirrlyCloud first%s"
11434
  msgstr "Acest email te conecteaza la Squirrly"
11435
 
11436
- #: view/Blocks/Stats.php:22
11437
  msgid "Hello"
11438
  msgstr "Bună"
11439
 
11440
- #: view/Blocks/Stats.php:28
11441
  #, fuzzy, php-format
11442
  msgid "%s SEO Protection"
11443
  msgstr "%s Protecție SEO"
11444
 
11445
- #: view/Blocks/Stats.php:31
11446
  #, fuzzy
11447
  msgid "All protection layers are activated."
11448
  msgstr "Toate straturile de protecție sunt activate."
11449
 
11450
- #: view/Blocks/Stats.php:33
11451
  #, fuzzy, php-format
11452
  msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
11453
  msgstr "Porniți SEO de la %sSquirrly> Setări SEO %s."
11454
 
11455
- #: view/Blocks/Stats.php:37
11456
  msgid "How does this work?"
11457
  msgstr "Cum funcționează ?"
11458
 
11459
- #: view/Blocks/Stats.php:45
11460
  #, fuzzy
11461
  msgid "Pages SEO'ed"
11462
  msgstr "Pagini SEO"
11463
 
11464
- #: view/Blocks/Stats.php:51
11465
  #, fuzzy
11466
  msgid "Post Types Covered"
11467
  msgstr "Tipuri de post acoperite"
11468
 
11469
- #: view/Blocks/Stats.php:56 view/Goals/CheckSeo.php:102
11470
  #, fuzzy, php-format
11471
  msgid "%s Aspects"
11472
  msgstr "%s Aspecte"
11473
 
11474
- #: view/Blocks/Stats.php:57 view/Goals/CheckSeo.php:103
11475
  #, fuzzy
11476
  #| msgid "Recommended by Squirrly"
11477
  msgid "Handled by Squirrly Genius."
11478
  msgstr "Recomandat de Squirrly"
11479
 
11480
- #: view/Blocks/Stats.php:59
11481
  #, fuzzy
11482
  msgid "Can I see them?"
11483
  msgstr "Pot să le văd?"
11484
 
11485
- #: view/Blocks/Stats.php:63 view/Goals/Goals.php:43
11486
  #, fuzzy
11487
  msgid "Run SEO Test"
11488
  msgstr "Executați testul SEO"
@@ -11596,7 +11962,7 @@ msgstr "Lecții noi lun. și mar. pe %sTwitter %s."
11596
  msgid "Thank you! You can send us a happy face tomorrow too."
11597
  msgstr "Multumim! Ne poti trimite o fata vesela si maine."
11598
 
11599
- #: view/Blocks/VersionBar.php:7
11600
  #, fuzzy, php-format
11601
  msgid ""
11602
  "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
@@ -11605,7 +11971,7 @@ msgstr ""
11605
  "%sSERP Checker %s: %s Actualizăm zilnic cele mai bune rânduri pentru fiecare "
11606
  "cuvânt cheie. 100%% precis și obiectiv."
11607
 
11608
- #: view/Blocks/VersionBar.php:10
11609
  #, fuzzy, php-format
11610
  msgid ""
11611
  "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
@@ -11613,7 +11979,7 @@ msgstr ""
11613
  "%sNo au rămas întrebări SERP. %s Vă rugăm să verificați starea %saccount și "
11614
  "limitele %s"
11615
 
11616
- #: view/Blocks/VersionBar.php:16
11617
  #, fuzzy, php-format
11618
  msgid ""
11619
  "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
@@ -11626,7 +11992,7 @@ msgstr ""
11626
  "nu poziții exacte în SERP. %s Pentru a vă verifica clasamentul zilnic, vă "
11627
  "rugăm să actualizați planul la %sBusiness Plan %s"
11628
 
11629
- #: view/Blocks/VersionBar.php:23
11630
  #, fuzzy, php-format
11631
  msgid ""
11632
  "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
@@ -11635,7 +12001,7 @@ msgstr ""
11635
  "%sAudit %s: %s Adăugați maximum (s) pagini (s) în Audit și solicitați un nou "
11636
  "audit la fiecare oră."
11637
 
11638
- #: view/Blocks/VersionBar.php:27
11639
  #, fuzzy, php-format
11640
  msgid ""
11641
  "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
@@ -11647,7 +12013,7 @@ msgstr ""
11647
  "și a reîmprospăta auditul la fiecare oră, vă rugăm să actualizați planul la "
11648
  "%sPRO Plan %s"
11649
 
11650
- #: view/Blocks/VersionBar.php:34
11651
  #, fuzzy, php-format
11652
  msgid ""
11653
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
@@ -11656,7 +12022,7 @@ msgstr ""
11656
  "%sFocus Pages %s: %s Adăugați maximum %s pagina (pagini) în paginile Focus "
11657
  "și solicitați un nou audit pentru fiecare pagină la fiecare 5 minute."
11658
 
11659
- #: view/Blocks/VersionBar.php:38
11660
  #, fuzzy, php-format
11661
  msgid ""
11662
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
@@ -11668,7 +12034,15 @@ msgstr ""
11668
  "Pentru a adăuga mai multe pagini în Pagini Focus, vă rugăm să actualizați "
11669
  "planul la %sPRO Plan %s"
11670
 
11671
- #: view/Blocks/VersionBar.php:46
 
 
 
 
 
 
 
 
11672
  #, fuzzy, php-format
11673
  msgid ""
11674
  "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
@@ -11677,7 +12051,7 @@ msgstr ""
11677
  "%sLive Assistant %s: %s Utilizați Squirrly Live Assistant cu toate sarcinile "
11678
  "de optimizare pentru a obține 100%% postări și pagini optimizate."
11679
 
11680
- #: view/Blocks/VersionBar.php:50
11681
  #, fuzzy, php-format
11682
  msgid ""
11683
  "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
@@ -11688,7 +12062,7 @@ msgstr ""
11688
  "optimiza postările și paginile. %s Pentru a optimiza postările dvs. la 100 "
11689
  "%%, vă rugăm să actualizați planul la Planul %sPRO %s"
11690
 
11691
- #: view/Blocks/VersionBar.php:58
11692
  #, fuzzy, php-format
11693
  msgid ""
11694
  "%sResearch %s:%s You have %s researches left for your account. The research "
@@ -11700,7 +12074,7 @@ msgstr ""
11700
  "mai multe cercetări și până la 50 de rezultate pe cercetare, vă rugăm să "
11701
  "actualizați planul dvs. la %sBusiness Plan %s"
11702
 
11703
- #: view/Blocks/VersionBar.php:62
11704
  #, fuzzy, php-format
11705
  msgid ""
11706
  "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
@@ -11710,7 +12084,7 @@ msgstr ""
11710
  "face cercetări profunde cu cuvinte cheie și puteți obține până la 50 de "
11711
  "rezultate pentru fiecare cercetare."
11712
 
11713
- #: view/Blocks/VersionBar.php:66
11714
  #, fuzzy, php-format
11715
  msgid ""
11716
  "%sResearch %s:%s You have %s researches left for your account. The research "
@@ -11722,7 +12096,7 @@ msgstr ""
11722
  "multe cercetări și până la 50 de rezultate pe cercetare, vă rugăm să "
11723
  "actualizați planul dvs. la %sBusiness Plan %s"
11724
 
11725
- #: view/Blocks/VersionBar.php:73
11726
  #, fuzzy, php-format
11727
  msgid ""
11728
  "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
@@ -11731,7 +12105,7 @@ msgstr ""
11731
  "%sSquirrly Servieta: %s Adăugați cuvinte cheie nelimitate în servieta "
11732
  "Squirrly pentru a vă optimiza mesajele și paginile."
11733
 
11734
- #: view/Blocks/VersionBar.php:78
11735
  #, fuzzy, php-format
11736
  msgid ""
11737
  "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
@@ -11741,7 +12115,7 @@ msgstr ""
11741
  "Squirrly Servieta pentru organizarea cuvintelor cheie după strategia dvs. "
11742
  "SEO."
11743
 
11744
- #: view/Blocks/VersionBar.php:84
11745
  #, fuzzy, php-format
11746
  msgid ""
11747
  "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
@@ -11751,7 +12125,7 @@ msgstr ""
11751
  "săptămână dacă găsim cuvinte cheie mai potrivite în funcție de istoricul "
11752
  "dvs. de cercetare."
11753
 
11754
- #: view/Blocks/VersionBar.php:88
11755
  #, fuzzy, php-format
11756
  msgid ""
11757
  "This feature is only available for PRO and Business accounts. %sTo get "
@@ -11761,7 +12135,7 @@ msgstr ""
11761
  "Business. %s Pentru a primi sugestii de cuvinte cheie în fiecare săptămână, "
11762
  "vă rugăm să actualizați planul la %sBusiness Plan %s"
11763
 
11764
- #: view/Blocks/VersionBar.php:97
11765
  #, fuzzy, php-format
11766
  msgid ""
11767
  "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
@@ -11770,7 +12144,7 @@ msgstr ""
11770
  "%sBulk Setări SEO: %s Această caracteristică este inclusă în toate "
11771
  "versiunile de Squirrly SEO gratuit."
11772
 
11773
- #: view/Blocks/VersionBar.php:103
11774
  #, fuzzy, php-format
11775
  msgid ""
11776
  "%sOn-Page SEO Settings:%s This feature is included in all versions of "
@@ -11779,7 +12153,7 @@ msgstr ""
11779
  "%sOn-Page Setări SEO: %s Această caracteristică este inclusă în toate "
11780
  "versiunile de Squirrly SEO gratuit."
11781
 
11782
- #: view/BulkSeo/Bulkseo.php:30 view/SeoSettings/Bulkseo.php:26
11783
  #, fuzzy
11784
  msgid ""
11785
  "Simplify the SEO process for all your posts types and optimize them in just "
@@ -11788,21 +12162,21 @@ msgstr ""
11788
  "Simplificați procesul SEO pentru toate tipurile de postări și optimizați-le "
11789
  "în doar câteva minute."
11790
 
11791
- #: view/BulkSeo/Bulkseo.php:183 view/SeoSettings/Bulkseo.php:178
11792
  #, fuzzy, php-format
11793
  msgid "No data for this filter. %sShow All%s records for this post type."
11794
  msgstr ""
11795
  "Nu există date pentru acest filtru. %s Afișează Toate %s înregistrări "
11796
  "pentru acest tip de postare."
11797
 
11798
- #: view/BulkSeo/Bulkseo.php:185 view/SeoSettings/Bulkseo.php:180
11799
  #, fuzzy
11800
  msgid "No data found for this post type. Try other post types."
11801
  msgstr ""
11802
  "Nu au fost găsite date pentru acest tip de postare. Încercați alte tipuri de "
11803
  "postare."
11804
 
11805
- #: view/BulkSeo/BulkseoRow.php:26 view/SeoSettings/BulkseoRow.php:26
11806
  #, fuzzy, php-format
11807
  msgid "View &#8220;%s&#8221;"
11808
  msgstr "Vizualizare & # 8220; %s & # 8221;"
@@ -11848,10 +12222,6 @@ msgstr "Autentificare"
11848
  msgid "Check connection"
11849
  msgstr "Conectare ..."
11850
 
11851
- #: view/Connect/GoogleSearchConsole.php:7
11852
- msgid "Google Search Console"
11853
- msgstr "Google Search Console"
11854
-
11855
  #: view/Connect/GoogleSearchConsole.php:12
11856
  #, fuzzy
11857
  msgid "You are connected to Google Search Console"
@@ -11871,16 +12241,6 @@ msgstr ""
11871
  "Conectați Google Search Console și obțineți informații despre trafic pentru "
11872
  "site-ul dvs. web pentru fiecare audit"
11873
 
11874
- #: view/Dashboard.php:11
11875
- #, fuzzy
11876
- #| msgid "This email connects you to Squirrly.co"
11877
- msgid "Connect to Squirrly Data Cloud"
11878
- msgstr "Acest email te conecteaza la Squirrly"
11879
-
11880
- #: view/Dashboard.php:22
11881
- msgid "Squirrly dashboard"
11882
- msgstr "Dashboard Squirrly"
11883
-
11884
  #: view/Errors/Maintenance.php:20
11885
  #, fuzzy, php-format
11886
  msgid ""
@@ -11947,37 +12307,19 @@ msgstr "Solicitați un nou audit"
11947
  msgid "Details"
11948
  msgstr "Detalii"
11949
 
11950
- #: view/FocusPages/FocusPageRow.php:94
11951
- #, fuzzy, php-format
11952
- msgid ""
11953
- "The current way your WordPress site is hosted can cause experience issues to "
11954
- "the way Squirrly SEO works. %s In order to serve you with the best data, and "
11955
- "make sure that the Focus Pages audits can be processed, you will need to "
11956
- "talk to your hosting provider and tell them to make the following settings. "
11957
- "%s Please add the IP address 176.9.112.210 in the white-list for remote "
11958
- "access and it should work."
11959
- msgstr ""
11960
- "Modul actual de găzduire a site-ului dvs. WordPress poate provoca probleme "
11961
- "de experiență asupra modului în care funcționează Squirrly SEO. %s Pentru a "
11962
- "vă oferi cele mai bune date și pentru a vă asigura că auditul Focus Pages "
11963
- "poate fi procesat, va trebui să discutați cu furnizorul dvs. de hosting și "
11964
- "să le spuneți să efectueze următoarele setări. %s Vă rugăm să adăugați "
11965
- "adresa IP 176.9.112.210 în lista albă pentru acces la distanță și ar trebui "
11966
- "să funcționeze."
11967
-
11968
- #: view/FocusPages/FocusPageRow.php:99
11969
  #, fuzzy
11970
  msgid "Currently processing data. Please refresh in a few minutes."
11971
  msgstr ""
11972
  "În prezent procesarea datelor. Vă rugăm să reîmprospătați în câteva minute."
11973
 
11974
- #: view/FocusPages/FocusPageRow.php:105 view/FocusPages/FocusPageRow.php:109
11975
- #: view/FocusPages/FocusPageRow.php:125 view/FocusPages/FocusPages.php:54
11976
  #, fuzzy
11977
  msgid "Chance to Rank"
11978
  msgstr "Șansă la clasare"
11979
 
11980
- #: view/FocusPages/FocusPageRow.php:163
11981
  #, fuzzy
11982
  msgid "Delete Focus Page"
11983
  msgstr "Ștergeți pagina Focus"
@@ -12087,7 +12429,7 @@ msgstr ""
12087
  "Nu alegeți pagina dvs. de pornire, pagina de contact sau pagina Despre "
12088
  "utilizare."
12089
 
12090
- #: view/FocusPages/Pagelist.php:51
12091
  #, fuzzy, php-format
12092
  msgid ""
12093
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
@@ -12149,11 +12491,6 @@ msgstr ""
12149
  msgid "Congratulations!"
12150
  msgstr "Felicitări!"
12151
 
12152
- #: view/Goals/Goals.php:34
12153
- #, fuzzy
12154
- msgid "Daily SEO Goals"
12155
- msgstr "Obiective zilnice SEO"
12156
-
12157
  #: view/Goals/Goals.php:36
12158
  #, fuzzy, php-format
12159
  msgid "%s goals for today"
@@ -12407,11 +12744,6 @@ msgstr ""
12407
  "Obțineți o vizualizare a păsărilor din optimizarea SEO generală a site-ului "
12408
  "dvs."
12409
 
12410
- #: view/Onboarding/Step1.5.php:21
12411
- #, fuzzy
12412
- msgid "Google SERP Checker"
12413
- msgstr "Google SERP Checker"
12414
-
12415
  #: view/Onboarding/Step1.5.php:35
12416
  #, fuzzy
12417
  msgid ""
@@ -12708,6 +13040,49 @@ msgstr ""
12708
  "Obțineți acces la consultantul SEO non-uman, paginile focus, auditurile SEO "
12709
  "și toate caracteristicile noastre %s prin crearea unui cont gratuit"
12710
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12711
  #: view/Ranking/Gscsync.php:15
12712
  #, fuzzy
12713
  msgid "Google Search Console Keywords Sync"
@@ -12814,8 +13189,8 @@ msgstr ""
12814
  #: view/Ranking/Rankings.php:35
12815
  #, fuzzy
12816
  msgid ""
12817
- "See the Google Search Console average possition, click and impressions for "
12818
- "organic keywords"
12819
  msgstr ""
12820
  "Consultați posesia medie, clicurile și afișările Google Search Console "
12821
  "pentru cuvinte cheie organice"
@@ -13681,7 +14056,7 @@ msgstr "Cuvinte cheie:"
13681
  msgid "Welcome to Keyword Research History"
13682
  msgstr " Cercetare cuvinte cheie"
13683
 
13684
- #: view/Research/HistoryDetails.php:22 view/Research/Research.php:208
13685
  #: view/Research/Suggested.php:44
13686
  msgid "Trend"
13687
  msgstr "Trend"
@@ -13780,11 +14155,11 @@ msgstr ""
13780
  "personalizate despre concurență pentru fiecare cuvânt cheie pe care îl "
13781
  "cercetați, datorită funcțiilor de informații de piață ale Squirrly."
13782
 
13783
- #: view/Research/Research.php:34 view/Research/Research.php:145
13784
  msgid "You've reached your Keyword Research Limit"
13785
  msgstr "Ai atins limita de Keyword Research"
13786
 
13787
- #: view/Research/Research.php:35 view/Research/Research.php:146
13788
  #, fuzzy
13789
  msgid "Check Your Account"
13790
  msgstr "Verificați-vă contul"
@@ -13840,8 +14215,8 @@ msgid ""
13840
  msgstr ""
13841
  "Pentru SEO local, trebuie să selectați Țara în care vă conduceți afacerea"
13842
 
13843
- #: view/Research/Research.php:100 view/Research/Research.php:152
13844
- #: view/Research/Research.php:220
13845
  msgid "Start Over"
13846
  msgstr "Reia de la început"
13847
 
@@ -13850,25 +14225,31 @@ msgstr "Reia de la început"
13850
  msgid "Step 3/4: Select similar keywords from below"
13851
  msgstr "Pasul 3/4: selectați cuvinte cheie similare de jos"
13852
 
13853
- #: view/Research/Research.php:148
 
 
 
 
 
 
13854
  #, php-format
13855
  msgid "We could not find similar keywords. %sClick on \"Do research\""
13856
  msgstr ""
13857
  "Squirrly nu a putut gasi rezultate asemanatoare. %sClick on \"Do research\""
13858
 
13859
- #: view/Research/Research.php:158
13860
  #, fuzzy
13861
  #| msgid "Do a research"
13862
  msgid "Do a deep research"
13863
  msgstr "Mai multe detalii"
13864
 
13865
- #: view/Research/Research.php:162 view/Research/Research.php:168
13866
  #, fuzzy
13867
  #| msgid "Do a research"
13868
  msgid "Do research"
13869
  msgstr "Mai multe detalii"
13870
 
13871
- #: view/Research/Research.php:176
13872
  #, fuzzy
13873
  msgid ""
13874
  "Keyword Research in progress. We're doing all of this in real-time. Data is "
@@ -13877,12 +14258,12 @@ msgstr ""
13877
  "Cuvinte cheie Cercetări în curs. Facem toate acestea în timp real. Datele "
13878
  "sunt proaspete."
13879
 
13880
- #: view/Research/Research.php:177
13881
  #, fuzzy
13882
  msgid "We're now finding 10 alternatives for each keyword you selected."
13883
  msgstr "Acum găsim 10 alternative pentru fiecare cuvânt cheie selectat."
13884
 
13885
- #: view/Research/Research.php:178
13886
  #, fuzzy
13887
  msgid ""
13888
  "For each alternative, we are looking at the top 10 pages ranked on Google "
@@ -13891,7 +14272,7 @@ msgstr ""
13891
  "Pentru fiecare alternativă, ne uităm la primele 10 pagini clasate pe Google "
13892
  "pentru acest cuvânt cheie."
13893
 
13894
- #: view/Research/Research.php:179
13895
  #, fuzzy
13896
  msgid ""
13897
  "We are now measuring the web authority of each competing page and comparing "
@@ -13900,19 +14281,19 @@ msgstr ""
13900
  "Acum măsurăm autoritatea web a fiecărei pagini concurente și o comparăm cu a "
13901
  "ta."
13902
 
13903
- #: view/Research/Research.php:180
13904
  #, fuzzy
13905
  msgid "Looking at the monthly search volume for each keyword."
13906
  msgstr "Analizând volumul lunar de căutare pentru fiecare cuvânt cheie."
13907
 
13908
- #: view/Research/Research.php:181
13909
  #, fuzzy
13910
  msgid "Analyzing the last 30 days of Google trends for each keyword."
13911
  msgstr ""
13912
  "Analizând ultimele 30 de zile ale tendințelor Google pentru fiecare cuvânt "
13913
  "cheie."
13914
 
13915
- #: view/Research/Research.php:182
13916
  #, fuzzy
13917
  msgid ""
13918
  "Seeing how many discussions there are on forums and Twitter for each keyword."
@@ -13920,7 +14301,7 @@ msgstr ""
13920
  "Văzând câte discuții există pe forumuri și Twitter pentru fiecare cuvânt "
13921
  "cheie."
13922
 
13923
- #: view/Research/Research.php:183
13924
  #, fuzzy
13925
  msgid ""
13926
  "Piecing all the keywords together now after analyzing each individual "
@@ -13929,18 +14310,18 @@ msgstr ""
13929
  "Împărțirea tuturor cuvintelor cheie acum după analizarea fiecărui cuvânt "
13930
  "cheie individual"
13931
 
13932
- #: view/Research/Research.php:184
13933
  #, fuzzy
13934
  msgid "Preparing the results."
13935
  msgstr "Pregătirea rezultatelor."
13936
 
13937
- #: view/Research/Research.php:186
13938
  #, fuzzy
13939
  #| msgid "We could not find relevant keywords for you"
13940
  msgid "Step 4/4: We found some relevant keywords for you"
13941
  msgstr "Squirrly nu a putut gasi rezultate pentru"
13942
 
13943
- #: view/Research/Research.php:187
13944
  #, fuzzy, php-format
13945
  msgid ""
13946
  "Still processing. give it a bit more time, then go to %sResearch History%s. "
@@ -13949,24 +14330,24 @@ msgstr ""
13949
  "Încă se procesează. acordați-i un pic mai mult timp, apoi mergeți la "
13950
  "%sRecizare Istoric %s. Rezultatele vor apărea acolo."
13951
 
13952
- #: view/Research/Research.php:188
13953
  #, fuzzy
13954
  #| msgid "We could not find relevant keywords for you"
13955
  msgid "Step 4/4: We could not find relevant keywords for you"
13956
  msgstr "Squirrly nu a putut gasi rezultate pentru"
13957
 
13958
- #: view/Research/Research.php:235
13959
  #, fuzzy
13960
  msgid "How to Find Amazing Keywords and get more search traffic?"
13961
  msgstr ""
13962
  "Cum să găsiți cuvinte cheie uimitoare și să obțineți mai mult trafic de "
13963
  "căutare?"
13964
 
13965
- #: view/Research/Research.php:249
13966
  msgid "Already Have Keywords?"
13967
  msgstr "Ai deja Cuvinte Cheie?"
13968
 
13969
- #: view/Research/Research.php:252
13970
  msgid "Import Keywords From CSV"
13971
  msgstr "Importa cuvinte cheie din fisier CSV"
13972
 
@@ -14028,12 +14409,12 @@ msgstr ""
14028
  msgid "For compatibility with some Cache and CDN plugins."
14029
  msgstr "Pentru compatibilitate cu unele pluginuri Cache și CDN."
14030
 
14031
- #: view/SeoSettings/Advanced.php:78
14032
  #, fuzzy
14033
  msgid "Delete Squirrly Table on Uninstall"
14034
  msgstr "Ștergeți Squirrly Table pe Dezinstalare"
14035
 
14036
- #: view/SeoSettings/Advanced.php:79
14037
  #, fuzzy
14038
  msgid "Delete Squirrly SEO table and options on uninstall."
14039
  msgstr "Ștergeți tabelul SEO Squirrly și opțiunile de pe dezinstalare."
@@ -14394,6 +14775,15 @@ msgstr "Lungimea titlului JSON-LD"
14394
  msgid "JSON-LD Description Length"
14395
  msgstr "JSON-LD Lungime descriere"
14396
 
 
 
 
 
 
 
 
 
 
14397
  #: view/SeoSettings/Backup.php:23
14398
  #, fuzzy
14399
  msgid "Import Settings & SEO"
@@ -14549,15 +14939,6 @@ msgstr "Squirrly"
14549
  msgid "Website Icon"
14550
  msgstr "Schimba icoana site-ului"
14551
 
14552
- #: view/SeoSettings/Favicon.php:29
14553
- #, fuzzy
14554
- msgid ""
14555
- "Add your website icon in the browser tabs and on other devices like iPhone, "
14556
- "iPad and Android phones."
14557
- msgstr ""
14558
- "Adăugați pictograma site-ului dvs. web în filele browserului și pe alte "
14559
- "dispozitive, cum ar fi iPhone, iPad și telefoane Android."
14560
-
14561
  #: view/SeoSettings/Favicon.php:35
14562
  #, fuzzy
14563
  msgid "Activate Favicon"
@@ -15330,7 +15711,7 @@ msgstr "Adăugați mai multe ID-uri de administrare Facebook"
15330
  #: view/SeoSettings/Social.php:271
15331
  #, fuzzy
15332
  msgid ""
15333
- "Add the Twitter card in your tweets so that your Twitter shares look good."
15334
  msgstr ""
15335
  "Adăugați cardul Twitter în tweet-urile dvs. pentru ca share-urile dvs. "
15336
  "Twitter să arate bine."
@@ -15589,6 +15970,69 @@ msgstr ""
15589
  "Adăugați codul de verificare Pinterest pentru a conecta site-ul dvs. web la "
15590
  "contul dvs. Pinterest. Accesați %sRich Pins Validator %s"
15591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15592
  #, fuzzy
15593
  #~| msgid "Squirrly"
15594
  #~ msgid "Start using Squirrly SEO"
@@ -16266,8 +16710,5 @@ msgstr ""
16266
  #~ "comments."
16267
  #~ msgstr "Este recomandat sa primesti notificari cand vin comenzi noi"
16268
 
16269
- #~ msgid "XML sitemap: "
16270
- #~ msgstr "XML sitemap: "
16271
-
16272
  #~ msgid "Let "
16273
  #~ msgstr "Lasa"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO\n"
4
+ "POT-Creation-Date: 2020-06-01 16:36+0300\n"
5
+ "PO-Revision-Date: 2020-06-01 16:36+0300\n"
6
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
7
  "Language-Team: Squirrly UK <support@squirrly.co>\n"
8
  "Language: ro_RO\n"
21
  msgid "Don't bother me!"
22
  msgstr "Nu mă deranja!"
23
 
24
+ #: classes/RemoteController.php:263
25
  msgid "Too many API attempts, please slow down the request."
26
  msgstr "Prea multe încercări de API, vă rugăm să încetiniți solicitarea."
27
 
28
+ #: classes/RemoteController.php:267
29
  msgid ""
30
  "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
31
  "in a minute."
33
  "Squirrly Cloud este în stare de întreținere în acest moment. Dar vom reveni "
34
  "într-un minut."
35
 
36
+ #: classes/RemoteController.php:326
37
  msgid "Articles optimized so far"
38
  msgstr "Articole optimizate până acum"
39
 
40
+ #: classes/RemoteController.php:328 classes/RemoteController.php:335
41
  msgid "add post"
42
  msgstr "adauga post"
43
 
44
+ #: classes/RemoteController.php:333
45
  msgid "Average optimization"
46
  msgstr "Media de optimizare"
47
 
48
+ #: classes/RemoteController.php:340
49
  msgid "Keyword Researches"
50
  msgstr "Cuvinte cheie verificate"
51
 
52
+ #: classes/RemoteController.php:342
53
  msgid "do research"
54
  msgstr "pornește verificare"
55
 
56
+ #: classes/RemoteController.php:347
57
  msgid "Keywords stored in Squirrly Briefcase"
58
  msgstr "Cuvinte cheie salvate în Servieta Squirrly"
59
 
60
+ #: classes/RemoteController.php:349
61
  msgid "add keyword"
62
  msgstr "Adaugă cuvânt cheie"
63
 
64
+ #: classes/RemoteController.php:354
65
  msgid "Pages ranking in top 100 Google"
66
  msgstr "Pagini care se clasează în top 100 Google"
67
 
68
+ #: classes/RemoteController.php:356
69
  msgid "see rankings"
70
  msgstr "Vezi rank-urile"
71
 
72
+ #: classes/RemoteController.php:361
73
  msgid "SEO Audits"
74
  msgstr "Audituri SEO"
75
 
76
+ #: classes/RemoteController.php:363
77
  msgid "see audits"
78
  msgstr "vezi audituri"
79
 
80
+ #: classes/RemoteController.php:1279
81
  msgid "Keyword:"
82
  msgstr "Cuvant cheie:"
83
 
84
+ #: classes/RemoteController.php:1280
85
  msgid "date"
86
  msgstr "data"
87
 
88
+ #: classes/RemoteController.php:1281 controllers/CheckSeo.php:317
89
  #: controllers/Patterns.php:16 controllers/Research.php:259
90
  #: controllers/Research.php:290 controllers/Research.php:344
91
  #: controllers/Research.php:654
92
  msgid "Saved!"
93
  msgstr "Salvat!"
94
 
95
+ #: classes/RemoteController.php:1282
96
  msgid "Read it!"
97
  msgstr "Citeste!"
98
 
99
+ #: classes/RemoteController.php:1283
100
  msgid "Insert it!"
101
  msgstr "Adauga!"
102
 
103
+ #: classes/RemoteController.php:1284
104
  msgid "Reference"
105
  msgstr "Referință"
106
 
107
+ #: classes/RemoteController.php:1285
108
  msgid "Insert as box"
109
  msgstr "Adaugă o casuță"
110
 
111
+ #: classes/RemoteController.php:1286
112
  msgid "Insert Link"
113
  msgstr "Adaugă Link"
114
 
115
+ #: classes/RemoteController.php:1287
116
  msgid "Not relevant?"
117
  msgstr "Nu este relevant?"
118
 
119
+ #: classes/RemoteController.php:1288
120
  msgid "Insert in your article"
121
  msgstr "Adauga paragraf in articol"
122
 
123
+ #: classes/RemoteController.php:1289
124
  msgid ":( An error occurred while processing your request. Please try again"
125
  msgstr ":( A apărut o eroare la procesarea cererii. Încercați din nou"
126
 
127
+ #: classes/RemoteController.php:1290
128
  msgid "No results found!"
129
  msgstr "Nu s-a gasit nimic ..."
130
 
131
+ #: classes/RemoteController.php:1291
132
  #, php-format
133
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
134
  msgstr ""
135
  "[ ATTRIBUTE: Verificați: %s pentru a vedea condițiile de atribuire a "
136
  "imaginii ]"
137
 
138
+ #: classes/RemoteController.php:1292
139
  msgid "Has creative commons attributes"
140
  msgstr "Are condiții de atribuire"
141
 
142
+ #: classes/RemoteController.php:1293
143
  msgid "No known copyright restrictions"
144
  msgstr "Nu sunt restricții de copyright cunoscute"
145
 
146
+ #: classes/RemoteController.php:1294
147
  msgid ""
148
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
149
  "optimize for a keyword before publishing?"
151
  "Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa îl "
152
  "optimizezi înainte de publicare?"
153
 
154
+ #: classes/RemoteController.php:1295
155
  msgid "Your Subscription has Expired"
156
  msgstr "Abonamentul dvs. a expirat"
157
 
158
+ #: classes/RemoteController.php:1296
159
  msgid "There are no keywords saved in briefcase yet"
160
  msgstr "Încă nu există cuvinte cheie salvate în Servieta Squirrly"
161
 
162
+ #: classes/RemoteController.php:1297
163
  #, php-format
164
  msgid "Congratulations! Your article is 100% optimized!"
165
  msgstr "Felicitări! Articolul dumneavoastră este 100% optimizat !"
166
 
167
+ #: classes/RemoteController.php:1298
168
  #, php-format
169
  msgid "appears too many times. Try to remove %s of them"
170
  msgstr "apare de prea multe ori. Șterge %s cuvint(e) cheie"
171
 
172
+ #: classes/RemoteController.php:1299
173
  #, php-format
174
  msgid "write %s more words"
175
  msgstr "mai adaugă %s cuvinte"
176
 
177
+ #: classes/RemoteController.php:1300
178
  #, php-format
179
  msgid "Add the keyword in the %s of your article"
180
  msgstr "Adaugă cuvântul cheie la %s articolului"
181
 
182
+ #: classes/RemoteController.php:1301
183
  msgid "Click to keep the highlight on"
184
  msgstr "Faceți clic pentru a continua sublinierea"
185
 
186
+ #: classes/RemoteController.php:1302
187
  msgid "introduction"
188
  msgstr "introducere"
189
 
190
+ #: classes/RemoteController.php:1303
191
  #, php-format
192
  msgid "Write more words after the %s keyword"
193
  msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
194
 
195
+ #: classes/RemoteController.php:1304
196
  msgid "or use synonyms"
197
  msgstr "sau foloseste sinonime"
198
 
199
+ #: classes/RemoteController.php:1305
200
  #, php-format
201
  msgid "add %s more word(s)"
202
  msgstr "Mai adauga %s cuvinte"
203
 
204
+ #: classes/RemoteController.php:1306
205
  #, php-format
206
  msgid "or remove %s word(s)"
207
  msgstr "sau sterge %s cuvinte"
208
 
209
+ #: classes/RemoteController.php:1307
210
  #, php-format
211
  msgid "add %s more keyword(s)"
212
  msgstr "mai adauga %s cuvint(e) cheie"
213
 
214
+ #: classes/RemoteController.php:1308
215
  #, php-format
216
  msgid "write %s more words to start calculating"
217
  msgstr "Scrie %s cuvinte pentru a se putea verifica"
218
 
219
+ #: classes/RemoteController.php:1309 view/Research/Research.php:48
220
  msgid "Add to Briefcase"
221
  msgstr "Adăugați în Servieta Squirrly"
222
 
223
+ #: classes/RemoteController.php:1310
224
  msgid "Add Keyword to Briefcase"
225
  msgstr "Adăugați cuvinte cheie în Servieta Squirrly"
226
 
227
+ #: classes/RemoteController.php:1311
228
  msgid "Select"
229
  msgstr "Selectează"
230
 
231
+ #: classes/RemoteController.php:1312 view/Blocks/Snippet.php:136
232
  #: view/Blocks/Snippet.php:509 view/Blocks/Snippet.php:765
233
  msgid "Auto Draft"
234
  msgstr "Auto Draft"
235
 
236
+ #: classes/RemoteController.php:1313
237
  msgid ""
238
  "You’ve already used the Live Assistant to optimize this post when creating "
239
  "it in your Page Builder. Please go back and resume your optimization work "
275
  msgid "The code for Facebook App must only contain numbers."
276
  msgstr "Codul Facebook App poate conține doar numele."
277
 
278
+ #: classes/helpers/Tools.php:82
279
  msgid "Getting started"
280
  msgstr "Setări"
281
 
282
+ #: classes/helpers/Tools.php:107
283
  msgid "Documentation"
284
  msgstr "Documentație"
285
 
286
+ #: classes/helpers/Tools.php:108
287
  msgid "Leave a review"
288
  msgstr "Lasă o evaluare"
289
 
290
+ #: classes/helpers/Tools.php:407
291
  msgid "Format"
292
  msgstr "Format"
293
 
294
+ #: classes/helpers/Tools.php:425 classes/helpers/Tools.php:461
295
  msgid "Category"
296
  msgstr "Categorie"
297
 
298
+ #: classes/helpers/Tools.php:443 classes/helpers/Tools.php:479
299
  msgid "Tag"
300
  msgstr "Etichetă"
301
 
302
+ #: classes/helpers/Tools.php:497
303
  msgid "Shipping Option"
304
  msgstr "Opțiunea de expediere"
305
 
306
+ #: classes/helpers/Tools.php:515
307
  msgid "Author at"
308
  msgstr "Autor la"
309
 
310
+ #: classes/helpers/Tools.php:587
311
  msgid "Are you looking for"
312
  msgstr "Căutați"
313
 
314
+ #: classes/helpers/Tools.php:588
315
  msgid "These are the results for"
316
  msgstr "Nu s-a găsit nimic pentru"
317
 
318
+ #: classes/helpers/Tools.php:588
319
  msgid "that you can find on our website."
320
  msgstr "pe care îl puteți găsi pe site-ul nostru."
321
 
322
+ #: classes/helpers/Tools.php:622
323
  msgid "Page not found"
324
  msgstr "Pagina nu a fost găsită"
325
 
326
+ #: classes/helpers/Tools.php:623
327
  msgid "This page could not be found on our website."
328
  msgstr "Această pagină nu a putut fi găsită pe site-ul nostru."
329
 
330
+ #: classes/helpers/Tools.php:891
331
  msgid "For better text comparison you need to install PHP mbstring extension."
332
  msgstr ""
333
  "Pentru o comparație mai bună a textului, trebuie să instalați extensia PHP "
481
  msgstr "Nu a fost găsit niciun cuvânt cheie."
482
 
483
  #: controllers/Assistant.php:102 controllers/Assistant.php:129
484
+ #: controllers/Audits.php:337 controllers/Ranking.php:134
485
  #: controllers/SeoSettings.php:149 controllers/SeoSettings.php:166
486
  #: controllers/SeoSettings.php:187 controllers/SeoSettings.php:224
487
  #: controllers/SeoSettings.php:250 controllers/SeoSettings.php:278
491
  msgstr "Salvat"
492
 
493
  #: controllers/Assistant.php:108 controllers/BulkSeo.php:69
494
+ #: controllers/Patterns.php:100 controllers/Post.php:254
495
+ #: controllers/Post.php:307 controllers/Post.php:339 controllers/Post.php:374
496
  #: controllers/PostsList.php:182 controllers/Research.php:172
497
  #: controllers/Research.php:179 controllers/Research.php:217
498
  #: controllers/Research.php:240 controllers/Research.php:270
504
  #: controllers/SeoSettings.php:543 controllers/SeoSettings.php:568
505
  #: controllers/SeoSettings.php:605 controllers/SeoSettings.php:642
506
  #: controllers/SeoSettings.php:656 controllers/SeoSettings.php:678
507
+ #: controllers/SeoSettings.php:699 controllers/Snippet.php:166
508
  msgid "You do not have permission to perform this action"
509
  msgstr "Nu aveți permisiunea de a efectua această acțiune"
510
 
516
  msgid "The audit was not found. Please load another audit."
517
  msgstr "Auditul nu a fost găsit. Vă rugăm să încărcați un alt audit."
518
 
519
+ #: controllers/Audits.php:163
520
  msgid "Could not load the Audit Page."
521
  msgstr "Nu s-a putut încărca pagina de audit."
522
 
523
+ #: controllers/Audits.php:278
524
  msgid "Audit page is added. The audit may take a while so please be patient."
525
  msgstr ""
526
  "S-a adăugat pagina de audit. Auditul poate dura câteva minute, vă rugăm să "
527
  "aveți răbdare."
528
 
529
+ #: controllers/Audits.php:281
530
  msgid "You reached the maximum number of audit pages for your account."
531
  msgstr "Ați atins numărul maxim de pagini de audit pentru contul dvs."
532
 
533
+ #: controllers/Audits.php:284
534
  msgid "Error! Could not add the audit page."
535
  msgstr "Eroare! Nu se poate adăuga pagina de audit."
536
 
537
+ #: controllers/Audits.php:288
538
  msgid "Error! Could not find the audit page in your website."
539
  msgstr "Eroare! Nu se poate adăuga pagina de audit in website."
540
 
541
+ #: controllers/Audits.php:298
542
  msgid "Audit page sent for recheck. It may take a while so please be patient."
543
  msgstr ""
544
  "Pagina de audit a fost trimisă pentru verificare. Poate dura ceva timp, vă "
545
  "rugăm să aveți răbdare."
546
 
547
+ #: controllers/Audits.php:301 controllers/Audits.php:304
548
  msgid "The audit for all pages can be made once an hour."
549
  msgstr "Auditul pentru toate paginile se poate face o dată pe oră."
550
 
551
+ #: controllers/Audits.php:314
552
  msgid "The audit page is deleted"
553
  msgstr "Pagina de audit a fost ștearsă"
554
 
555
+ #: controllers/Audits.php:316 controllers/FocusPages.php:409
556
  #: controllers/Ranking.php:161 controllers/Ranking.php:179
557
  #: controllers/Ranking.php:197 controllers/Research.php:208
558
  #: controllers/Research.php:211 controllers/Research.php:234
563
  msgid "Invalid params!"
564
  msgstr "Parametrii greșiți!"
565
 
566
+ #: controllers/Audits.php:339
567
  msgid "Not a valid email address"
568
  msgstr "Te rog introdu o adresă email validă."
569
 
583
  msgid "Saved! Task marked as done."
584
  msgstr "Salvat! Sarcina marcată ca terminată."
585
 
586
+ #: controllers/FocusPages.php:147
587
  msgid "Focus Page does not exist or was deleted from your website."
588
  msgstr "Acest Focus Page nu există sau a fost șters de pe site-ul dvs. web."
589
 
590
+ #: controllers/FocusPages.php:340
591
  msgid "Focus page is added. The audit may take a while so please be patient."
592
  msgstr ""
593
  "Se adaugă Focus Page. Auditul poate dura ceva timp, vă rugăm să aveți "
594
  "răbdare."
595
 
596
+ #: controllers/FocusPages.php:347
597
  msgid "You reached the maximum number of focus pages for all your websites."
598
  msgstr ""
599
  "Ați atins numărul maxim de Focus Pages pentru toate site-urile dvs. web."
600
 
601
+ #: controllers/FocusPages.php:350
602
  msgid "Error! Could not add the focus page."
603
  msgstr "Eroare! Nu se poate adăuga acest Focus Page."
604
 
605
+ #: controllers/FocusPages.php:353
606
  msgid "Error! This focus page is not public."
607
  msgstr "Eroare! Acest Focus Page nu este publică."
608
 
609
+ #: controllers/FocusPages.php:357 controllers/FocusPages.php:396
610
  msgid "Error! Could not find the focus page in your website."
611
  msgstr "Eroare! Nu s-a putut găsi acest Focus Page pe site-ul dvs. web."
612
 
613
+ #: controllers/FocusPages.php:384
614
  msgid "Focus page sent for recheck. It may take a while so please be patient."
615
  msgstr ""
616
  "Focus Page a fost trimis pentru verificare. Poate dura ceva timp, vă rugăm "
617
  "să aveți răbdare."
618
 
619
+ #: controllers/FocusPages.php:387 controllers/FocusPages.php:391
620
  msgid "You've made too many requests, please wait a few minutes."
621
  msgstr "Ați făcut prea multe cereri, vă rugăm să așteptați câteva minute."
622
 
623
+ #: controllers/FocusPages.php:407
624
  msgid "The focus page is deleted"
625
  msgstr "Pagina de focalizare este ștearsă"
626
 
627
+ #: controllers/Menu.php:123
628
  #, php-format
629
  msgid ""
630
  "An error occurred during activation. If this error persists, please contact "
633
  "A apărut o eroare în timpul activării. Dacă această eroare persistă, vă "
634
  "rugăm să ne contactați la adresa: %s"
635
 
636
+ #: controllers/Menu.php:160
637
  msgid "Dashboard"
638
  msgstr "Dashboard"
639
 
640
+ #: controllers/Menu.php:185 controllers/Menu.php:290 controllers/Menu.php:325
641
  #: view/Blocks/SLASearch.php:7
642
  msgid "Squirrly SEO"
643
  msgstr "Squirrly SEO"
644
 
645
+ #: controllers/Menu.php:253
646
  msgid "SEO Snippet"
647
  msgstr "Snippet SEO"
648
 
649
+ #: controllers/Menu.php:268 controllers/Snippet.php:137
650
  msgid "Custom SEO"
651
  msgstr "SEO personalizat"
652
 
653
+ #: controllers/Menu.php:333
654
  msgid "Squirrly Onboarding"
655
  msgstr "Îmbarcare Squirrly"
656
 
657
+ #: controllers/Menu.php:334
658
  msgid "Onboarding"
659
  msgstr "Îmbarcare"
660
 
661
+ #: controllers/Menu.php:363
662
  msgid "Import & Export SEO"
663
  msgstr "Import & Export SEO"
664
 
665
+ #: controllers/Menu.php:364 view/SeoSettings/Backup.php:88
666
  msgid "Import SEO"
667
  msgstr "Importă SEO"
668
 
669
+ #: controllers/Menu.php:374
670
  msgid "Squirrly Account Info"
671
  msgstr "Informații Cont Squirrly"
672
 
673
+ #: controllers/Menu.php:375
674
  msgid "Account Info"
675
  msgstr "Informatii cont"
676
 
677
+ #: controllers/Menu.php:384
678
  msgid "Squirrly How To & Support"
679
  msgstr "Suport Squirrly"
680
 
681
+ #: controllers/Menu.php:385
682
  msgid "Help & Support"
683
  msgstr "Suport"
684
 
686
  msgid "Saved! This is how the preview looks like"
687
  msgstr "Salvat! Așa arată previzualizarea"
688
 
689
+ #: controllers/Post.php:301
690
  msgid "Could not add the demo post."
691
  msgstr "Nu s-a putut trimite postul de demo."
692
 
693
+ #: controllers/Post.php:363 controllers/Post.php:388
694
  msgid "Can't get the post URL"
695
  msgstr "Nu pot primi URL-ul postului"
696
 
697
+ #: controllers/Post.php:393
698
  msgid "Invalid request"
699
  msgstr "Solicitare incorectă"
700
 
916
  msgid "Squirrly SEO Snippet"
917
  msgstr "Snipet Squirrly"
918
 
919
+ #: controllers/Snippet.php:184
920
  #, fuzzy
921
  #| msgid "Could not send the email..."
922
  msgid "Could not save the data"
1376
  "care are imagini grozave."
1377
 
1378
  #: models/Assistant.php:163 models/focuspages/Accuracy.php:45
1379
+ #: models/focuspages/Length.php:71 models/focuspages/Traffic.php:105
1380
  #, fuzzy
1381
  #| msgid "Google %sAnalytics ID%s:"
1382
  msgid "Connect Google Analytics"
2356
  msgid "Add meta description to this page of your site"
2357
  msgstr "Adăugați meta description la această pagină a site-ului dvs."
2358
 
2359
+ #: models/Audits.php:156 models/bulkseo/Metas.php:89
2360
  #, fuzzy
2361
  #| msgid "Keyword"
2362
  msgid "Meta Keyword"
2392
  "Asigurați-vă că căutarea cuvintelor dvs. cheie este într-o tendință în "
2393
  "creștere"
2394
 
2395
+ #: models/Audits.php:166 models/bulkseo/Metas.php:94
2396
  #, fuzzy
2397
  msgid "Canonical Link"
2398
  msgstr "Link canonic"
6672
  msgid "You got better Score for your Audit"
6673
  msgstr "Ai obținut un scor mai bun pentru auditul tău"
6674
 
6675
+ #: models/CheckSeo.php:1464
6676
  #, fuzzy
6677
  #| msgid "Could not send the email..."
6678
  msgid "Could not verify the frontend."
6679
  msgstr "Nu s-a putut trimite email ..."
6680
 
6681
+ #: models/CheckSeo.php:1831
6682
  #, fuzzy
6683
  msgid "Just another WordPress site"
6684
  msgstr "Doar un alt WordPress site"
6685
 
6686
+ #: models/CheckSeo.php:1970
6687
  #, fuzzy, php-format
6688
  msgid "Focus Page was not found (error %s)"
6689
  msgstr "Pagina focalizare nu a fost găsită (eroare %s)"
6690
 
6691
+ #: models/CheckSeo.php:1971 models/CheckSeo.php:2015
6692
  #, fuzzy
6693
  msgid ""
6694
+ "The way your WordPress site is currently hosted can affect the way Squirrly "
6695
+ "SEO operates in order to retrieve and process data about your Focus Pages. "
6696
+ "It’s important to do everything on your end to ensure that the Focus Pages "
6697
+ "audits can be generated by our system."
6698
  msgstr ""
6699
  "Detalii despre sarcină: Modul în care este găzduit site-ul dvs. WordPress în "
6700
  "prezent poate afecta modul în care funcționează Squirrly SEO pentru a prelua "
6702
  "faceți totul la sfârșitul dvs. pentru a vă asigura că auditul Pagini Focus "
6703
  "poate fi generat de sistemul nostru."
6704
 
6705
+ #: models/CheckSeo.php:1972 models/CheckSeo.php:1991
6706
  #, fuzzy
6707
  msgid ""
6708
  "Use a different browser to check if your Focus Page is visible. Whitelist "
6714
  "(176.9.112.210) pentru a permite serverului nostru să verifice pagina dvs. "
6715
  "astfel încât să primiți un audit complet."
6716
 
6717
+ #: models/CheckSeo.php:1973 models/CheckSeo.php:2017
6718
  #, fuzzy
6719
  msgid "An error is preventing Squirrly from processing your Focus Page audits."
6720
  msgstr ""
6721
  "O eroare îl împiedică pe Squirrly să proceseze auditul dvs. Focus Page."
6722
 
6723
+ #: models/CheckSeo.php:1980
6724
  #, fuzzy, php-format
6725
  msgid "Your Focus Page is redirected to another page (error %s)"
6726
  msgstr ""
6727
  "Pagina dvs. de focalizare este redirecționată către o altă pagină (eroare %s)"
6728
 
6729
+ #: models/CheckSeo.php:1981
6730
  #, fuzzy, php-format
6731
  msgid ""
6732
  "Right now, your Focus Page sends users and search engines to a different URL "
6746
  "la ce pagină ar trebui să fie clasate. %s O redirecție interferează, de "
6747
  "asemenea, cu modul în care funcționează sistemul Focus Pages al lui Squirrly."
6748
 
6749
+ #: models/CheckSeo.php:1982
6750
  #, fuzzy
6751
  msgid ""
6752
  "Choose a page that does NOT redirect to a different page as your Focus Page. "
6757
  "de focalizare. Pagina dvs. de focalizare ar trebui să aibă o singură adresă "
6758
  "URL asociată, astfel încât Squirrly să vă poată servi cele mai bune date."
6759
 
6760
+ #: models/CheckSeo.php:1983
6761
  #, fuzzy
6762
  msgid "Make sure that your Focus Page is NOT redirected to a different page."
6763
  msgstr ""
6764
  "Asigurați-vă că pagina dvs. Focus nu este redirecționată către o altă pagină."
6765
 
6766
+ #: models/CheckSeo.php:1989
6767
  #, fuzzy, php-format
6768
  msgid "Ensure your Focus Pages can be accessed (error %s)"
6769
  msgstr ""
6770
  "Asigurați-vă că paginile dvs. de focalizare pot fi accesate (eroare %s)"
6771
 
6772
+ #: models/CheckSeo.php:1990
6773
  #, fuzzy, php-format
6774
  msgid ""
6775
  "A server-side error is preventing Squirrly from being able to access and "
6785
  "asemenea să împiedice vizitatorii umani să acceseze pagina dvs., ceea ce "
6786
  "este o problemă critică."
6787
 
6788
+ #: models/CheckSeo.php:1992
6789
  #, fuzzy
6790
  msgid "A server-side error is preventing your Focus Pages from being accessed."
6791
  msgstr ""
6792
  "O eroare din partea serverului împiedică accesarea paginilor dvs. focus."
6793
 
6794
+ #: models/CheckSeo.php:1997
6795
  #, fuzzy, php-format
6796
  msgid "Make sure your Focus Pages can be audited (error %s)"
6797
  msgstr ""
6798
  "Asigurați-vă că paginile dvs. de focalizare pot fi auditate (eroare %s)"
6799
 
6800
+ #: models/CheckSeo.php:1998
6801
  #, fuzzy
6802
  msgid ""
6803
  "Squirrly is unable to generate the audit for your Focus Page because it "
6810
  "posibil ca serverul site-ului dvs. WordPress să fie defect, sau poate că "
6811
  "serverul dvs. blochează din greșește adresa IP a lui Squirrly."
6812
 
6813
+ #: models/CheckSeo.php:1999
6814
  #, fuzzy
6815
  msgid ""
6816
  "Check to see if your WordPress site’s server is offline. Whitelist our "
6822
  "serverului nostru să verifice pagina dvs. astfel încât să primiți un audit "
6823
  "complet."
6824
 
6825
+ #: models/CheckSeo.php:2000 models/CheckSeo.php:2008
6826
  #, fuzzy
6827
  msgid ""
6828
  "An error prevents Squirrly from gathering critical data about your Focus "
6831
  "O eroare îl împiedică pe Squirrly să strângă date critice despre pagina dvs. "
6832
  "de focalizare."
6833
 
6834
+ #: models/CheckSeo.php:2005
6835
+ #, fuzzy
6836
+ msgid "Make sure your Focus Pages can be audited (firewall protection)"
6837
+ msgstr ""
6838
+ "Asigurați-vă că paginile dvs. de focalizare pot fi auditate (eroare %s)"
6839
+
6840
+ #: models/CheckSeo.php:2006
6841
+ #, fuzzy
6842
+ msgid ""
6843
+ "Squirrly is unable to generate the audit for your Focus Page because it "
6844
+ "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
6845
+ "server has a firewall protection and is blocking Squirrly’s IP address."
6846
+ msgstr ""
6847
+ "Squirrly nu poate genera auditul pentru pagina dvs. de focalizare, deoarece "
6848
+ "nu se poate conecta la serverul site-ului dvs. WordPress. De ce? Este "
6849
+ "posibil ca serverul site-ului dvs. WordPress să fie defect, sau poate că "
6850
+ "serverul dvs. blochează din greșește adresa IP a lui Squirrly."
6851
+
6852
+ #: models/CheckSeo.php:2007 models/CheckSeo.php:2016
6853
+ #, fuzzy
6854
+ msgid ""
6855
+ "Whitelist our crawler IP address (176.9.112.210) to allow our server to "
6856
+ "verify your page so that you’ll receive a full audit."
6857
+ msgstr ""
6858
+ "Verificați dacă serverul site-ului dvs. WordPress este deconectat. Lista "
6859
+ "completă a adresei IP a crawlerului (176.9.112.210) pentru a permite "
6860
+ "serverului nostru să verifice pagina dvs. astfel încât să primiți un audit "
6861
+ "complet."
6862
+
6863
+ #: models/CheckSeo.php:2014
6864
+ #, fuzzy, php-format
6865
+ msgid "Focus Page could not be verified (error: %s)"
6866
+ msgstr "Pagina focalizare nu a fost găsită (eroare %s)"
6867
+
6868
+ #: models/FocusPages.php:21 models/bulkseo/Metas.php:134
6869
  #: models/focuspages/Clicks.php:64 models/focuspages/Content.php:88
6870
  #: models/focuspages/Ctr.php:64 models/focuspages/Image.php:80
6871
  #: models/focuspages/Impressions.php:64 models/focuspages/Keyword.php:103
6872
+ #: models/focuspages/Keyword.php:106 models/focuspages/Snippet.php:151
6873
  #: models/focuspages/Strategy.php:102 view/Blocks/KRFound.php:15
6874
  #: view/Blocks/KRHistory.php:15 view/Ranking/Gscsync.php:31
6875
  #: view/Ranking/Rankings.php:210 view/Ranking/Rankings.php:348
6876
  #: view/Research/Briefcase.php:107 view/Research/Briefcase.php:247
6877
  #: view/Research/History.php:29 view/Research/HistoryDetails.php:7
6878
+ #: view/Research/Research.php:194 view/Research/Suggested.php:28
6879
  msgid "Keyword"
6880
  msgstr "Cuvant cheie:"
6881
 
7014
  msgid " Research"
7015
  msgstr "Cercetări"
7016
 
7017
+ #: models/Menu.php:139 view/Blocks/Features.php:34
7018
  #, fuzzy
7019
  msgid "Live Assistant"
7020
  msgstr "Asistent live"
7044
  msgid " SEO Settings"
7045
  msgstr "Setări SEO"
7046
 
7047
+ #: models/Menu.php:163 models/Menu.php:250 view/Blocks/Features.php:7
7048
+ #: view/Blocks/FocusPages.php:6 view/FocusPages/Pagelist.php:23
7049
  #, fuzzy
7050
  msgid "Focus Pages"
7051
  msgstr "Pagini Focus"
7055
  msgid " Focus Pages"
7056
  msgstr "Pagini Focus"
7057
 
7058
+ #: models/Menu.php:171 view/Blocks/Audits.php:6 view/Blocks/Features.php:187
7059
  #, fuzzy
7060
  msgid "SEO Audit"
7061
  msgstr "Auditul SEO"
7204
  msgstr "setari"
7205
 
7206
  #: models/Menu.php:312 view/BulkSeo/Bulkseo.php:29
 
7207
  #, fuzzy
7208
  msgid "Bulk SEO"
7209
  msgstr "SEO în vrac"
7573
  "citit evitând repetările."
7574
 
7575
  #: models/Post.php:262 models/focuspages/Snippet.php:89
7576
+ #: models/focuspages/Snippet.php:218 models/focuspages/Snippet.php:240
7577
  #: view/Audits/Addpage.php:131 view/Blocks/Snippet.php:171
7578
  #: view/Blocks/Snippet.php:570 view/Blocks/Snippet.php:825
7579
  #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:132
7580
+ #: view/SeoSettings/Automation.php:125 view/SeoSettings/Metas.php:157
 
7581
  msgid "Title"
7582
  msgstr "Titlul"
7583
 
7764
  msgid "Current"
7765
  msgstr "Actual"
7766
 
7767
+ #: models/bulkseo/Metas.php:52
7768
  #, fuzzy
7769
  msgid "Title not empty"
7770
  msgstr "Titlul nu este gol"
7771
 
7772
+ #: models/bulkseo/Metas.php:53 view/Blocks/Snippet.php:187
7773
  #: view/Blocks/Snippet.php:586 view/Blocks/Snippet.php:841
7774
  #, fuzzy
7775
  msgid "Current Title"
7776
  msgstr "Titlul curent"
7777
 
7778
+ #: models/bulkseo/Metas.php:55
7779
  #, fuzzy, php-format
7780
  msgid ""
7781
  "The title for this URL must not be empty. %s Write a title for this page. "
7789
  "titlul, cu atât mai multe clicuri puteți obține atunci când oamenii găsesc "
7790
  "pagina dvs. pe motoarele de căutare."
7791
 
7792
+ #: models/bulkseo/Metas.php:58
7793
  #, fuzzy, php-format
7794
  msgid "Title up to %s chars"
7795
  msgstr "Titlu până la %s caractere"
7796
 
7797
+ #: models/bulkseo/Metas.php:59
7798
  #, fuzzy
7799
  msgid "Current Title Length"
7800
  msgstr "Lungimea curentă a titlului"
7801
 
7802
+ #: models/bulkseo/Metas.php:60 models/bulkseo/Metas.php:78
7803
+ #: models/bulkseo/Opengraph.php:78 models/bulkseo/Opengraph.php:88
7804
+ #: models/bulkseo/Twittercard.php:75 models/bulkseo/Twittercard.php:85
7805
  msgid "chars"
7806
  msgstr "caractere"
7807
 
7808
+ #: models/bulkseo/Metas.php:61 models/bulkseo/Opengraph.php:79
7809
+ #: models/bulkseo/Twittercard.php:76
7810
  #, fuzzy, php-format
7811
  msgid ""
7812
  "Title has to be longer than %s chars and up to %s chars. %s You can change "
7816
  "%s Puteți modifica lungimea maximă a titlului de la %sSEO Setări> "
7817
  "Automatizare %s."
7818
 
7819
+ #: models/bulkseo/Metas.php:64 models/focuspages/Snippet.php:100
7820
  msgid "Keyword in title"
7821
  msgstr "Cuvânt cheie in Titlu"
7822
 
7823
+ #: models/bulkseo/Metas.php:65 models/bulkseo/Metas.php:83
7824
  #, fuzzy
7825
  #| msgid "Squirrly Keyword Research"
7826
  msgid "Squirrly Keyword"
7827
  msgstr " Cercetare cuvinte cheie"
7828
 
7829
+ #: models/bulkseo/Metas.php:66 models/bulkseo/Metas.php:84
7830
  #, fuzzy
7831
  #| msgid "manage keywords"
7832
  msgid "no keywords"
7833
  msgstr "Cuvinte cheie"
7834
 
7835
+ #: models/bulkseo/Metas.php:67 models/focuspages/Snippet.php:103
7836
  #, fuzzy, php-format
7837
  msgid ""
7838
  "Your keyword must be present in the title of the page. %s It's a very "
7851
  "este un smartwatch proiectat de VectorWatch. %s \"Cumpărați SmartWatch "
7852
  "ieftin - Luna de VectorWatch\" ar fi o alegere mult mai bună pentru un titlu."
7853
 
7854
+ #: models/bulkseo/Metas.php:70
7855
  #, fuzzy
7856
  #| msgid "Description:"
7857
  msgid "Description not empty"
7858
  msgstr "Descrierea:"
7859
 
7860
+ #: models/bulkseo/Metas.php:71 view/Blocks/Snippet.php:239
7861
  #: view/Blocks/Snippet.php:630 view/Blocks/Snippet.php:885
7862
  #, fuzzy
7863
  msgid "Current Description"
7864
  msgstr "Descrierea curentă"
7865
 
7866
+ #: models/bulkseo/Metas.php:73
7867
  #, fuzzy, php-format
7868
  msgid ""
7869
  "Meta descriptions are important for SEO on multiple search engines. %s You "
7876
  "%s Cu cât îl scrii mai bine, cu atât sunt mai mari șansele ca oamenii să "
7877
  "facă clic pe listă când o găsesc pe motoarele de căutare."
7878
 
7879
+ #: models/bulkseo/Metas.php:76
7880
  #, fuzzy, php-format
7881
  msgid "Description up to %s chars"
7882
  msgstr "Descrierea până la %s caractere"
7883
 
7884
+ #: models/bulkseo/Metas.php:77
7885
  #, fuzzy
7886
  #| msgid "Custom description: "
7887
  msgid "Current Description Length"
7888
  msgstr "Descrierea:"
7889
 
7890
+ #: models/bulkseo/Metas.php:79 models/bulkseo/Opengraph.php:89
7891
+ #: models/bulkseo/Twittercard.php:86
7892
  #, fuzzy, php-format
7893
  msgid ""
7894
  "Description has to be longer than %s chars and up to %s chars. %s You can "
7898
  "caractere. %s Puteți schimba lungimea maximă a descrierii de la %sSEO "
7899
  "Setări> Automatizare %s."
7900
 
7901
+ #: models/bulkseo/Metas.php:82 models/focuspages/Snippet.php:106
7902
  #, fuzzy
7903
  #| msgid "Custom description: "
7904
  msgid "Keyword in description"
7905
  msgstr "Descrierea:"
7906
 
7907
+ #: models/bulkseo/Metas.php:85
7908
  #, fuzzy, php-format
7909
  msgid ""
7910
  "Same as with the title task. %s If a user reads the description of your page "
7924
  "care le aduce la TOP 10. Este destul de clar că le pasă foarte mult de acest "
7925
  "lucru, pentru că asta vor oamenii să găsească în motorul de căutare."
7926
 
7927
+ #: models/bulkseo/Metas.php:88
7928
  #, fuzzy
7929
  msgid "Meta Keywords (2-4 Words)"
7930
  msgstr "Cuvinte cheie meta (2-4 cuvinte)"
7931
 
7932
+ #: models/bulkseo/Metas.php:90
7933
  #, fuzzy
7934
  #| msgid "Enter a keyword"
7935
  msgid "no meta keywords"
7936
  msgstr "Adauga cuvant"
7937
 
7938
+ #: models/bulkseo/Metas.php:91
7939
  #, fuzzy
7940
  msgid ""
7941
  "Even if Meta keywords are not mandatory for Google, it's important for other "
7945
  "important pentru alte motoare de căutare să găsească această meta și să îți "
7946
  "indexeze postarea pentru aceste cuvinte cheie."
7947
 
7948
+ #: models/bulkseo/Metas.php:95
7949
  #, fuzzy
7950
  #| msgid "Current: "
7951
  msgid "Current Link"
7952
  msgstr "Pozitia curenta"
7953
 
7954
+ #: models/bulkseo/Metas.php:97
7955
  #, fuzzy, php-format
7956
  msgid ""
7957
  "You don't have to set any canonical link if your post is not copied from "
7966
  "utilizat pentru a spune motoarelor de căutare care este URL-ul original. "
7967
  "Originalul este cel care este indexat și clasat."
7968
 
7969
+ #: models/bulkseo/Metas.php:106
7970
  #, fuzzy
7971
  msgid "Some Squirrly Metas are deactivated."
7972
  msgstr "Unele metale Squirrly sunt dezactivate."
7973
 
7974
+ #: models/bulkseo/Metas.php:111
7975
+ msgid ""
7976
+ "Some Squirrly Metas are not set correctly. Click to open the Assistant in "
7977
+ "the right sidebar and follow the instructions."
7978
+ msgstr ""
7979
 
7980
+ #: models/bulkseo/Metas.php:116
7981
  #, fuzzy
7982
  msgid "Some Squirrly Metas are generated automatically."
7983
  msgstr "Unele metale Squirrly sunt generate automat."
7984
 
7985
+ #: models/bulkseo/Metas.php:119
7986
  #, fuzzy
7987
  msgid "All Squirrly Metas are customized and set correctly."
7988
  msgstr "Toate metoda Squirrly sunt personalizate și setate corect."
7989
 
7990
+ #: models/bulkseo/Metas.php:130 models/bulkseo/Opengraph.php:131
7991
+ #: models/bulkseo/Twittercard.php:128 models/bulkseo/Visibility.php:69
7992
  #: models/focuspages/Accuracy.php:34 models/focuspages/Audit.php:144
7993
  #: models/focuspages/Authority.php:33 models/focuspages/Backlinks.php:46
7994
  #: models/focuspages/Clicks.php:56 models/focuspages/Content.php:75
7997
  #: models/focuspages/Innerlinks.php:64 models/focuspages/Keyword.php:79
7998
  #: models/focuspages/Length.php:55 models/focuspages/Nofollow.php:65
7999
  #: models/focuspages/Onpage.php:78 models/focuspages/Ranking.php:35
8000
+ #: models/focuspages/Snippet.php:145 models/focuspages/Social.php:56
8001
  #: models/focuspages/Strategy.php:96 models/focuspages/Traffic.php:94
8002
  #, fuzzy
8003
  #| msgid "Current: "
8004
  msgid "Current URL"
8005
  msgstr "Pozitia curenta"
8006
 
8007
+ #: models/bulkseo/Metas.php:136
8008
  #, fuzzy
8009
  #| msgid "Keyword"
8010
  msgid "No Meta Keyword Found"
8011
  msgstr "Cuvant cheie:"
8012
 
8013
+ #: models/bulkseo/Metas.php:152 models/bulkseo/Metas.php:188
8014
+ #: models/bulkseo/Metas.php:221 models/bulkseo/Metas.php:265
8015
+ #: models/bulkseo/Metas.php:301 models/bulkseo/Metas.php:334
8016
+ #: models/bulkseo/Metas.php:382 models/bulkseo/Metas.php:421
8017
+ #: models/bulkseo/Opengraph.php:145 models/bulkseo/Opengraph.php:181
8018
+ #: models/bulkseo/Opengraph.php:213 models/bulkseo/Opengraph.php:249
8019
+ #: models/bulkseo/Opengraph.php:285 models/bulkseo/Twittercard.php:142
8020
+ #: models/bulkseo/Twittercard.php:178 models/bulkseo/Twittercard.php:210
8021
+ #: models/bulkseo/Twittercard.php:246 models/bulkseo/Twittercard.php:282
8022
  #: models/bulkseo/Visibility.php:83 models/bulkseo/Visibility.php:122
8023
  #: models/bulkseo/Visibility.php:155
8024
  #, fuzzy
8025
  msgid "Squirrly Snippet is deactivated from this post."
8026
  msgstr "Squirrly Snippet este dezactivat de la această postare."
8027
 
8028
+ #: models/bulkseo/Metas.php:156 models/bulkseo/Metas.php:192
8029
+ #: models/bulkseo/Metas.php:225 models/bulkseo/Metas.php:269
8030
+ #: models/bulkseo/Metas.php:305 models/bulkseo/Metas.php:338
8031
+ #: models/bulkseo/Metas.php:386 models/bulkseo/Metas.php:425
8032
  #, fuzzy, php-format
8033
  msgid ""
8034
  "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
8037
  "Metasele SEO pentru acest tip de post sunt dezactivate din %setări ESSEO> "
8038
  "Automatizare %s."
8039
 
8040
+ #: models/bulkseo/Metas.php:160 models/bulkseo/Metas.php:196
8041
+ #: models/bulkseo/Metas.php:229
8042
  #, fuzzy, php-format
8043
  msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
8044
  msgstr "Titlul Meta este dezactivat din %setări SSEO> Metas %s."
8045
 
8046
+ #: models/bulkseo/Metas.php:164 models/bulkseo/Metas.php:200
8047
+ #: models/bulkseo/Metas.php:233 models/bulkseo/Metas.php:277
8048
+ #: models/bulkseo/Metas.php:313 models/bulkseo/Metas.php:346
8049
+ #: models/bulkseo/Metas.php:390 models/bulkseo/Metas.php:433
8050
  #, fuzzy, php-format
8051
  msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
8052
  msgstr "Metasele SEO sunt dezactivate din %setări SSEO> Metas %s."
8053
 
8054
+ #: models/bulkseo/Metas.php:173 models/bulkseo/Metas.php:209
8055
+ #: models/bulkseo/Opengraph.php:166 models/bulkseo/Opengraph.php:202
8056
+ #: models/bulkseo/Twittercard.php:163 models/bulkseo/Twittercard.php:199
8057
  #, fuzzy
8058
  #| msgid "<< Leave it automatically"
8059
  msgid "Title is generated automatically."
8060
  msgstr "<< Sa se adauge automat"
8061
 
8062
+ #: models/bulkseo/Metas.php:237 models/bulkseo/Metas.php:350
8063
+ #: models/bulkseo/Metas.php:394
8064
  #, fuzzy, php-format
8065
  msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
8066
  msgstr "Cuvinte cheie Meta este dezactivat de la %sSEO Setări> Metas %s."
8067
 
8068
+ #: models/bulkseo/Metas.php:273 models/bulkseo/Metas.php:309
8069
+ #: models/bulkseo/Metas.php:342
8070
  #, fuzzy, php-format
8071
  msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
8072
  msgstr "Meta Description este dezactivat de la %sSEO Setări> Metas %s."
8073
 
8074
+ #: models/bulkseo/Metas.php:286 models/bulkseo/Metas.php:323
8075
+ #: models/bulkseo/Opengraph.php:234 models/bulkseo/Opengraph.php:270
8076
+ #: models/bulkseo/Twittercard.php:231 models/bulkseo/Twittercard.php:267
8077
  #, fuzzy
8078
  msgid "Description is generated automatically."
8079
  msgstr "Descrierea este generată automat."
8080
 
8081
+ #: models/bulkseo/Metas.php:429
8082
  #, fuzzy, php-format
8083
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
8084
  msgstr "Meta Canonical este dezactivat de la %sSEO Setări> Metas %s."
8085
 
8086
+ #: models/bulkseo/Opengraph.php:72
8087
  #, fuzzy
8088
  msgid "OG title not empty"
8089
  msgstr "Titlul OG nu este gol"
8090
 
8091
+ #: models/bulkseo/Opengraph.php:74
8092
  #, fuzzy, php-format
8093
  msgid ""
8094
  "You need to have an Open Graph title for this post. %s It will help you "
8100
  "partajează această adresă URL pe Facebook, LinkedIN și alte rețele sociale. "
8101
  "%s Este important și în scopuri SEO."
8102
 
8103
+ #: models/bulkseo/Opengraph.php:77
8104
  #, fuzzy, php-format
8105
  msgid "OG title up to %s chars"
8106
  msgstr "Titlu OG până la %s caractere"
8107
 
8108
+ #: models/bulkseo/Opengraph.php:82
8109
  #, fuzzy
8110
  msgid "OG description not empty"
8111
  msgstr "Descrierea OG nu este goală"
8112
 
8113
+ #: models/bulkseo/Opengraph.php:84
8114
  #, fuzzy, php-format
8115
  msgid ""
8116
  "You need to have an Open Graph description for this post. %s It will help "
8122
  "partajează această adresă URL pe Facebook, LinkedIN și alte rețele sociale. "
8123
  "%s Este important și în scopuri SEO."
8124
 
8125
+ #: models/bulkseo/Opengraph.php:87
8126
  #, fuzzy, php-format
8127
  msgid "OG description up to %s chars"
8128
  msgstr "Descrierea OG până la %s caractere"
8129
 
8130
+ #: models/bulkseo/Opengraph.php:92 view/SeoSettings/Metas.php:184
8131
  #, fuzzy
8132
  #| msgid "Images"
8133
  msgid "OG Image"
8134
  msgstr "Imagini"
8135
 
8136
+ #: models/bulkseo/Opengraph.php:93 models/bulkseo/Twittercard.php:90
8137
  #, fuzzy
8138
  msgid "(featured image)"
8139
  msgstr "(imagine prezentată)"
8140
 
8141
+ #: models/bulkseo/Opengraph.php:94
8142
  #, fuzzy, php-format
8143
  msgid ""
8144
  "Set a good looking image for your URL. It needs to look good in Facebook and "
8150
  "adresă URL. %s O imagine excelentă va atrage mai multe clicuri pe site-ul "
8151
  "dvs."
8152
 
8153
+ #: models/bulkseo/Opengraph.php:108
8154
  #, fuzzy
8155
  msgid "Open Graph is deactivated."
8156
  msgstr "Open Graph este dezactivat."
8157
 
8158
+ #: models/bulkseo/Opengraph.php:113
8159
+ msgid ""
8160
+ "Open Graph is not set correctly. Click to open the Assistant in the right "
8161
+ "sidebar and follow the instructions."
8162
+ msgstr ""
8163
 
8164
+ #: models/bulkseo/Opengraph.php:118
8165
  #, fuzzy
8166
  #| msgid "<< Leave it automatically"
8167
  msgid "Open Graph is generated automatically."
8168
  msgstr "<< Sa se adauge automat"
8169
 
8170
+ #: models/bulkseo/Opengraph.php:121
8171
  #, fuzzy
8172
  msgid "Open Graph is customized and set correctly."
8173
  msgstr "Open Graph este personalizat și setat corect."
8174
 
8175
+ #: models/bulkseo/Opengraph.php:149 models/bulkseo/Opengraph.php:185
8176
+ #: models/bulkseo/Opengraph.php:217 models/bulkseo/Opengraph.php:253
8177
+ #: models/bulkseo/Opengraph.php:289
8178
  #, fuzzy, php-format
8179
  msgid ""
8180
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
8183
  "Deschiderea graficului pentru acest tip de post este dezactivată de la %sSEO "
8184
  "Setări> Automatizare %s."
8185
 
8186
+ #: models/bulkseo/Opengraph.php:153 models/bulkseo/Opengraph.php:189
8187
+ #: models/bulkseo/Opengraph.php:221 models/bulkseo/Opengraph.php:257
8188
+ #: models/bulkseo/Opengraph.php:293
8189
  #, fuzzy, php-format
8190
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
8191
  msgstr "Open Graph este dezactivat din %sSEO Setări> Social Media %s."
8192
 
8193
+ #: models/bulkseo/Opengraph.php:157 models/bulkseo/Opengraph.php:193
8194
+ #: models/bulkseo/Opengraph.php:225 models/bulkseo/Opengraph.php:261
8195
+ #: models/bulkseo/Opengraph.php:297 models/bulkseo/Twittercard.php:154
8196
+ #: models/bulkseo/Twittercard.php:190 models/bulkseo/Twittercard.php:222
8197
+ #: models/bulkseo/Twittercard.php:258 models/bulkseo/Twittercard.php:294
8198
  #, fuzzy, php-format
8199
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
8200
  msgstr "Social Media este dezactivat din %sSEO Setări> Social Media %s."
8201
 
8202
+ #: models/bulkseo/Twittercard.php:69
8203
  #, fuzzy
8204
  msgid "TC title not empty"
8205
  msgstr "Titlul TC nu este gol"
8206
 
8207
+ #: models/bulkseo/Twittercard.php:71
8208
  #, fuzzy, php-format
8209
  msgid ""
8210
  "You need to have a title for the Twitter Card of this post. %s It will help "
8215
  "va ajuta să controlezi aspectul postării tale când este distribuită pe "
8216
  "Twitter. %s Este important și în scopuri SEO."
8217
 
8218
+ #: models/bulkseo/Twittercard.php:74
8219
  #, fuzzy, php-format
8220
  msgid "TC title up to %s chars"
8221
  msgstr "Titlul TC până la %s caractere"
8222
 
8223
+ #: models/bulkseo/Twittercard.php:79
8224
  #, fuzzy
8225
  #| msgid "Description:"
8226
  msgid "TC Description not empty"
8227
  msgstr "Descrierea:"
8228
 
8229
+ #: models/bulkseo/Twittercard.php:81
8230
  #, fuzzy, php-format
8231
  msgid ""
8232
  "You need to have a Twitter Card description for this post. %s It will help "
8240
  "descrierii cardului dvs. Twitter va atrage mai multe clicuri pe site-ul "
8241
  "dvs. %s Este important și în scopuri SEO."
8242
 
8243
+ #: models/bulkseo/Twittercard.php:84
8244
  #, fuzzy, php-format
8245
  msgid "TC description up to %s chars"
8246
  msgstr "Descrierea TC până la %s caractere"
8247
 
8248
+ #: models/bulkseo/Twittercard.php:89
8249
  #, fuzzy
8250
  #| msgid "Images"
8251
  msgid "TC Image"
8252
  msgstr "Imagini"
8253
 
8254
+ #: models/bulkseo/Twittercard.php:91
8255
  #, fuzzy, php-format
8256
  msgid ""
8257
  "Set a good looking image for your URL. It needs to look good in Twitter "
8262
  "fluxurile Twitter atunci când oamenii vor partaja această adresă URL. %s O "
8263
  "imagine excelentă va atrage mai multe clicuri pe site-ul dvs."
8264
 
8265
+ #: models/bulkseo/Twittercard.php:105
8266
  #, fuzzy
8267
  msgid "Twitter Card is deactivated."
8268
  msgstr "Cardul Twitter este dezactivat."
8269
 
8270
+ #: models/bulkseo/Twittercard.php:110
8271
+ msgid ""
8272
+ "Twitter Card is not set correctly. Click to open the Assistant in the right "
8273
+ "sidebar and follow the instructions."
8274
+ msgstr ""
8275
 
8276
+ #: models/bulkseo/Twittercard.php:115
8277
  #, fuzzy
8278
  msgid "Twitter Card is generated automatically."
8279
  msgstr "Cardul Twitter este generat automat."
8280
 
8281
+ #: models/bulkseo/Twittercard.php:118
8282
  #, fuzzy
8283
  msgid "Twitter Card is customized and set correctly."
8284
  msgstr "Cardul Twitter este personalizat și setat corect."
8285
 
8286
+ #: models/bulkseo/Twittercard.php:146 models/bulkseo/Twittercard.php:182
8287
+ #: models/bulkseo/Twittercard.php:214 models/bulkseo/Twittercard.php:250
8288
+ #: models/bulkseo/Twittercard.php:286
8289
  #, fuzzy, php-format
8290
  msgid ""
8291
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
8294
  "Cardul Twitter pentru acest tip de post este dezactivat de la %sSEO Setări> "
8295
  "Automatizare %s."
8296
 
8297
+ #: models/bulkseo/Twittercard.php:150 models/bulkseo/Twittercard.php:186
8298
+ #: models/bulkseo/Twittercard.php:218 models/bulkseo/Twittercard.php:254
8299
+ #: models/bulkseo/Twittercard.php:290
8300
  #, fuzzy, php-format
8301
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
8302
  msgstr "Cardul Twitter este dezactivat din %sSEO Setări> Social Media %s."
8370
  msgstr "Unele opțiuni de vizibilitate sunt inactive."
8371
 
8372
  #: models/bulkseo/Visibility.php:55
8373
+ msgid ""
8374
+ "Visibility is not set correctly. Click to open the Assistant in the right "
8375
+ "sidebar and follow the instructions."
8376
+ msgstr ""
8377
 
8378
  #: models/bulkseo/Visibility.php:59
8379
  #, fuzzy
8472
 
8473
  #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
8474
  #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
8475
+ #: models/focuspages/Indexability.php:95 models/focuspages/Traffic.php:100
8476
  #, fuzzy
8477
  msgid "Connect Google Search"
8478
  msgstr "Inregistreaza-te la Squirrly.co"
8693
  msgid "At Least %s Majestic SEO Links"
8694
  msgstr "Cel puțin %s Link-uri SEO Majestic"
8695
 
8696
+ #: models/focuspages/Backlinks.php:81 models/focuspages/Content.php:118
8697
+ #: models/focuspages/Image.php:109 models/focuspages/Impressions.php:102
8698
+ #: models/focuspages/Indexability.php:112 models/focuspages/Innerlinks.php:86
8699
+ #: models/focuspages/Keyword.php:156 models/focuspages/Length.php:93
8700
+ #: models/focuspages/Nofollow.php:77 models/focuspages/Onpage.php:94
8701
+ #: models/focuspages/Ranking.php:48 models/focuspages/Snippet.php:168
8702
+ #: models/focuspages/Social.php:72 models/focuspages/Strategy.php:136
8703
+ #: models/focuspages/Traffic.php:126
8704
+ msgid ""
8705
+ "Click to open the Assistant in the right sidebar and follow the instructions."
8706
+ msgstr ""
8707
+
8708
  #: models/focuspages/Clicks.php:42
8709
  #, fuzzy
8710
  msgid "Clicks from Search Engine in the last 3 months"
8722
  #: models/focuspages/Clicks.php:75 models/focuspages/Content.php:93
8723
  #: models/focuspages/Ctr.php:75 models/focuspages/Image.php:88
8724
  #: models/focuspages/Impressions.php:75 models/focuspages/Keyword.php:114
8725
+ #: models/focuspages/Keyword.php:182 models/focuspages/Keyword.php:200
8726
+ #: models/focuspages/Keyword.php:223 models/focuspages/Snippet.php:153
8727
  #: models/focuspages/Strategy.php:112
8728
  #, fuzzy
8729
  #| msgid "Keyword"
8739
  msgid "Optimize for a keyword"
8740
  msgstr "Optimizare dupa cuvant cheie"
8741
 
8742
+ #: models/focuspages/Clicks.php:96 models/focuspages/Content.php:114
8743
+ #: models/focuspages/Ctr.php:100 models/focuspages/Impressions.php:96
8744
+ #: models/focuspages/Keyword.php:149 models/focuspages/Strategy.php:132
8745
+ msgid ""
8746
+ "Optimize the page for a keyword. Click to open the Assistant in the right "
8747
+ "sidebar and follow the instructions."
8748
+ msgstr ""
8749
+
8750
+ #: models/focuspages/Clicks.php:98 models/focuspages/Ctr.php:96
8751
  #, fuzzy
8752
  msgid "Connect to Google Search Console"
8753
  msgstr "Inregistreaza-te la Squirrly.co"
8754
 
 
 
 
 
 
 
 
 
8755
  #: models/focuspages/Content.php:46
8756
  #, fuzzy, php-format
8757
  #| msgid "Optimize"
8895
  "ar putea avea în vedere supra-optimizarea dacă l-ați utilizat de mai multe "
8896
  "ori."
8897
 
8898
+ #: models/focuspages/Image.php:85 models/focuspages/Snippet.php:156
8899
  #, fuzzy
8900
  msgid "Edit your snippet"
8901
  msgstr "Editează fragmentul"
8902
 
8903
+ #: models/focuspages/Image.php:125
8904
  #, fuzzy
8905
  msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
8906
  msgstr ""
8907
  "Optimizați mai întâi postarea folosind un cuvânt cheie din Squirrly Briefcase"
8908
 
8909
+ #: models/focuspages/Image.php:126
8910
  #, fuzzy
8911
  #| msgid "No results found!"
8912
  msgid "No image found"
8917
  msgid "Search Results Impressions in the last 3 months"
8918
  msgstr "Rezultate căutare Impresii din ultimele 3 luni"
8919
 
8920
+ #: models/focuspages/Impressions.php:98
8921
+ #, fuzzy
8922
+ msgid "Connect to Google Search Console."
8923
+ msgstr "Inregistreaza-te la Squirrly.co"
8924
+
8925
  #: models/focuspages/Indexability.php:52
8926
  #, fuzzy
8927
  msgid "Yes, do index"
9241
  "Felicitări pentru clasarea cu acest cuvânt cheie, dar va necesita o atenție "
9242
  "specială din partea dvs. pentru a-l menține în pozițiile TOP 10"
9243
 
9244
+ #: models/focuspages/Keyword.php:182 models/focuspages/Keyword.php:200
9245
+ #: models/focuspages/Keyword.php:223
9246
  #, fuzzy
9247
  msgid "Please add a keyword first."
9248
  msgstr "Vă rugăm să adăugați mai întâi un cuvânt cheie."
9313
  msgid "Edit Page"
9314
  msgstr "Editare pagină"
9315
 
9316
+ #: models/focuspages/Length.php:89
 
 
9317
  #, fuzzy
9318
  #| msgid "Google %sAnalytics ID%s:"
9319
+ msgid "Connect to Google Analytics first."
9320
+ msgstr "Google %sAnalytics ID%s:"
9321
+
9322
+ #: models/focuspages/Length.php:125 models/focuspages/Traffic.php:143
9323
+ #: models/focuspages/Traffic.php:159 models/focuspages/Traffic.php:175
9324
+ #, fuzzy
9325
+ #| msgid "Google %sAnalytics ID%s:"
9326
+ msgid "Connect Google Analytics first."
9327
  msgstr "Google %sAnalytics ID%s:"
9328
 
9329
  #: models/focuspages/Nofollow.php:50
9498
  "prețuri (în cazul în care site-ul dvs. afișează mai multe produse), atunci "
9499
  "titlul dvs. ar trebui să conțină doar numele mărcii acelui produs."
9500
 
9501
+ #: models/focuspages/Snippet.php:95 models/focuspages/Snippet.php:219
9502
+ #: models/focuspages/Snippet.php:241 view/Blocks/Snippet.php:613
9503
  #: view/Blocks/Snippet.php:868 view/SeoSettings/Automation.php:134
9504
  #: view/SeoSettings/Metas.php:166
9505
  msgid "Description"
9530
  "Utilizați descrieri minunate pentru paginile de pe site-ul dvs. pentru a "
9531
  "stimula CTR (ratele de clic)."
9532
 
9533
+ #: models/focuspages/Snippet.php:102
9534
+ #, fuzzy, php-format
9535
+ #| msgid "Keywords are used in Title"
9536
+ msgid "Keyword %s must be present in Title"
9537
+ msgstr "Cuvânt cheie prezent in Titlu"
9538
+
9539
+ #: models/focuspages/Snippet.php:107
9540
+ #, fuzzy, php-format
9541
+ #| msgid "Custom description: "
9542
+ msgid "Keyword %s must be present in Description"
9543
+ msgstr "Descrierea:"
9544
+
9545
+ #: models/focuspages/Snippet.php:108
9546
  #, fuzzy, php-format
9547
  msgid ""
9548
  "Same as with the title task. %s If a user reads the description of your page "
9562
  "care le aduce la TOP 10. Este destul de clar că le pasă mult de acest lucru, "
9563
  "pentru că asta vor oamenii să găsească în motorul de căutare."
9564
 
9565
+ #: models/focuspages/Snippet.php:111
9566
  #, fuzzy
9567
  msgid "Open Graph - full definition"
9568
  msgstr "Open Graph - definiție completă"
9569
 
9570
+ #: models/focuspages/Snippet.php:113
9571
  #, fuzzy, php-format
9572
  msgid ""
9573
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
9587
  "TOATE etichetele og sunt prezente. %s Și da, acest lucru este relevant "
9588
  "pentru destinațiile de plasare a motorului de căutare."
9589
 
9590
+ #: models/focuspages/Snippet.php:116
9591
  #, fuzzy
9592
  msgid "Twitter Cards - full definition"
9593
  msgstr "Cărți Twitter - definiție completă"
9594
 
9595
+ #: models/focuspages/Snippet.php:118
9596
  #, fuzzy, php-format
9597
  msgid ""
9598
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
9608
  "că verificați toate definițiile necesare, astfel încât să nu pierdeți o "
9609
  "bătaie."
9610
 
9611
+ #: models/focuspages/Snippet.php:121
9612
  #, fuzzy
9613
  msgid "JSON-LD definition"
9614
  msgstr "Definiția JSON-LD"
9615
 
9616
+ #: models/focuspages/Snippet.php:122
9617
  #, fuzzy, php-format
9618
  msgid ""
9619
  "To turn this task to green, you can easily use the JSON-LD section inside "
9631
  "valida JSON-LD existent cu: %shttps: //search.google.com/structured-data/"
9632
  "testing-tool%s"
9633
 
9634
+ #: models/focuspages/Snippet.php:125
9635
  #, fuzzy
9636
  msgid "Customized"
9637
  msgstr "Modificare META"
9638
 
9639
+ #: models/focuspages/Snippet.php:126
9640
  #, fuzzy, php-format
9641
  msgid ""
9642
  "The Snippets of your most important pages should be customized. %s Use the "
9661
  "experiment pe care îl execută. De cele mai multe ori, propriul fragment "
9662
  "personalizat va fi cel care va fi afișat."
9663
 
9664
+ #: models/focuspages/Snippet.php:220 models/focuspages/Snippet.php:242
9665
  msgid "Image"
9666
  msgstr "Imagine"
9667
 
9807
  msgid "Manage Strategy"
9808
  msgstr "Gestionează strategia"
9809
 
9810
+ #: models/focuspages/Strategy.php:168 models/focuspages/Strategy.php:175
9811
  #, fuzzy
9812
  msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
9813
  msgstr ""
9929
  "rămâne doar unul și că unicul cod este cel legat de contul Google "
9930
  "Analytics. %s Aceste probleme se întâmplă mai des decât ai crede."
9931
 
9932
+ #: models/focuspages/Traffic.php:120
9933
+ #, fuzzy
9934
+ #| msgid "Google %sAnalytics ID%s:"
9935
+ msgid "Connect Google Analytics first"
9936
+ msgstr "Google %sAnalytics ID%s:"
9937
+
9938
  #: models/focuspages/Traffic.php:122
9939
  #, fuzzy
9940
  msgid "Not enough traffic to show relevant stats"
9981
  msgid "Add New"
9982
  msgstr "Adaugă nou"
9983
 
9984
+ #: view/Assistant/Settings.php:7 view/Audits/Addpage.php:8
9985
+ #: view/Audits/Audit.php:8 view/Audits/Audits.php:8 view/Audits/Compare.php:11
9986
+ #: view/Audits/Settings.php:7 view/BulkSeo/Bulkseo.php:12
9987
+ #: view/FocusPages/Addpage.php:8 view/FocusPages/Pagelist.php:8
9988
+ #: view/FocusPages/Settings.php:7 view/Ranking/Rankings.php:17
9989
+ #: view/Ranking/Settings.php:7 view/SeoSettings/Advanced.php:7
9990
+ #: view/SeoSettings/Automation.php:7 view/SeoSettings/Favicon.php:7
9991
+ #: view/SeoSettings/Metas.php:7 view/SeoSettings/Robots.php:7
9992
+ #: view/SeoSettings/Sitemap.php:7 view/SeoSettings/Social.php:7
9993
+ #: view/SeoSettings/Tracking.php:7 view/SeoSettings/Webmaster.php:7
9994
+ #, fuzzy
9995
+ msgid ""
9996
+ "You do not have permission to access this page. You need Squirrly SEO Admin "
9997
+ "role."
9998
+ msgstr ""
9999
+ "Nu aveți permisiunea de a accesa această pagină. Ai nevoie de Squirrly SEO "
10000
+ "Administrator"
10001
+
10002
+ #: view/Assistant/Settings.php:25
10003
  #, fuzzy
10004
  #| msgid "Save settings"
10005
  msgid "Live Assistant Settings"
10006
  msgstr "Salveaza setari"
10007
 
10008
+ #: view/Assistant/Settings.php:40
10009
  #, fuzzy
10010
  msgid "Squirrly Tooltips"
10011
  msgstr "Optiuni Squirrly"
10012
 
10013
+ #: view/Assistant/Settings.php:41
10014
  #, fuzzy, php-format
10015
  msgid ""
10016
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. \"Enter a keyword"
10019
  "Afișați %sSquirrly Tooltips %s la postarea unui nou articol (de exemplu, "
10020
  "\"Introduceți un cuvânt cheie\")."
10021
 
10022
+ #: view/Assistant/Settings.php:51
10023
  #, fuzzy
10024
  msgid "Download Remote Images"
10025
  msgstr "Descărcați imagini la distanță"
10026
 
10027
+ #: view/Assistant/Settings.php:52
10028
  #, fuzzy, php-format
10029
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
10030
  msgstr ""
10031
  "Descărcați %sremote images %s în biblioteca dvs. %sMedia %s pentru noile "
10032
  "postări."
10033
 
10034
+ #: view/Assistant/Settings.php:53
10035
  #, fuzzy
10036
  msgid ""
10037
  "Prevent from losing the images you use in your articles in case the remote "
10040
  "Împiedicați pierderea imaginilor pe care le utilizați în articolele dvs. în "
10041
  "cazul în care imaginile la distanță sunt șterse."
10042
 
10043
+ #: view/Assistant/Settings.php:64
10044
  #, fuzzy
10045
  #| msgid "Show only Copyright Free images"
10046
  msgid "Copyright Free Images"
10047
  msgstr "Arata doar imagini fara copyright"
10048
 
10049
+ #: view/Assistant/Settings.php:65
10050
  #, fuzzy, php-format
10051
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
10052
  msgstr "Căutați %sCopyright Free Images %s în Squirrly Live Assistant."
10053
 
10054
+ #: view/Assistant/Settings.php:75
10055
  #, fuzzy
10056
  #| msgid "Save settings"
10057
  msgid "Live Assistant Type"
10058
  msgstr "Salveaza setari"
10059
 
10060
+ #: view/Assistant/Settings.php:76
10061
  #, fuzzy
10062
  msgid "Select how you want Squirrly Live Assistant to load in editor."
10063
  msgstr "Asistent SEO Live"
10064
 
10065
+ #: view/Assistant/Settings.php:80
10066
  msgid "Auto"
10067
  msgstr "Auto"
10068
 
10069
+ #: view/Assistant/Settings.php:81
10070
  #, fuzzy
10071
  msgid "Integrated Box"
10072
  msgstr "Caseta integrată"
10073
 
10074
+ #: view/Assistant/Settings.php:82
10075
  #, fuzzy
10076
  msgid "Floating Box"
10077
  msgstr "Cutie plutitoare"
10078
 
10079
+ #: view/Assistant/Settings.php:95
10080
  #, fuzzy
10081
  msgid "Activate Live Assistant in Frontend"
10082
  msgstr "Activați Asistent Live în Frontend"
10083
 
10084
+ #: view/Assistant/Settings.php:95
10085
  #, fuzzy
10086
  msgid "(BETA)"
10087
  msgstr "(BETA)"
10088
 
10089
+ #: view/Assistant/Settings.php:96
10090
  #, fuzzy
10091
  msgid ""
10092
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
10095
  "Încărcați Squirrly Live Assistant în Frontend pentru a personaliza postările "
10096
  "și paginile cu Builders."
10097
 
10098
+ #: view/Assistant/Settings.php:97
10099
  #, fuzzy
10100
  msgid "Currently supports the Elementor Builder plugin."
10101
  msgstr "În prezent acceptă pluginul Elementor Builder."
10102
 
10103
+ #: view/Assistant/Settings.php:104
10104
  #, fuzzy
10105
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
10106
  msgstr "Locuri în care NU doriți să se încarce Squirrly Live Assistant"
10107
 
10108
+ #: view/Assistant/Settings.php:106
10109
  #, fuzzy
10110
  msgid ""
10111
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
10114
  "Nu selectați nimic dacă doriți ca Squirrly Live Assistant să se încarce "
10115
  "pentru toate tipurile de post."
10116
 
10117
+ #: view/Assistant/Settings.php:112
10118
  msgid "Exclusions"
10119
  msgstr "Excluderi"
10120
 
10121
+ #: view/Assistant/Settings.php:113
10122
  #, fuzzy
10123
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
10124
  msgstr ""
10125
  "Selectați locațiile în care NU doriți să se încarce Squirrly Live Assistant."
10126
 
10127
+ #: view/Assistant/Settings.php:114
10128
  #, fuzzy
10129
  msgid "Hold Control key to select multiple places"
10130
  msgstr "Țineți apăsată tasta de control pentru a selecta mai multe locuri"
10131
 
10132
+ #: view/Assistant/Settings.php:141 view/SeoSettings/Automation.php:474
10133
  #: view/SeoSettings/Automation.php:595 view/SeoSettings/Jsonld.php:243
10134
  #: view/SeoSettings/Metas.php:231 view/SeoSettings/Sitemap.php:305
10135
  #: view/SeoSettings/Social.php:372
10136
  msgid "Show Advanced Options"
10137
  msgstr "Arată opțiuni avansate"
10138
 
10139
+ #: view/Assistant/Settings.php:142 view/SeoSettings/Automation.php:475
10140
  #: view/SeoSettings/Automation.php:596 view/SeoSettings/Jsonld.php:244
10141
  #: view/SeoSettings/Metas.php:232 view/SeoSettings/Sitemap.php:306
10142
  #: view/SeoSettings/Social.php:373
10144
  msgid "Hide Advanced Options"
10145
  msgstr "Ascundeți opțiunile avansate"
10146
 
10147
+ #: view/Assistant/Settings.php:145 view/Audits/Settings.php:60
10148
+ #: view/Ranking/Settings.php:173 view/SeoSettings/Advanced.php:90
10149
  #: view/SeoSettings/Automation.php:478 view/SeoSettings/Automation.php:599
10150
  #: view/SeoSettings/Backup.php:206 view/SeoSettings/Favicon.php:107
10151
  #: view/SeoSettings/Jsonld.php:247 view/SeoSettings/Metas.php:235
10155
  msgid "Save Settings"
10156
  msgstr "Salveaza setari"
10157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10158
  #: view/Audits/Addpage.php:22
10159
  #, fuzzy
10160
  msgid "Add a page in Audit"
10171
  "ului dvs. în termeni de blogging, SEO, social, autoritate, link-uri și trafic"
10172
 
10173
  #: view/Audits/Addpage.php:92 view/BulkSeo/Bulkseo.php:101
10174
+ #: view/FocusPages/Addpage.php:92
10175
  #, fuzzy
10176
  msgid "Any status"
10177
  msgstr "Orice statut"
10178
 
10179
  #: view/Audits/Addpage.php:112 view/BulkSeo/Bulkseo.php:121
10180
+ #: view/FocusPages/Addpage.php:112 view/Research/Research.php:202
 
10181
  msgid "Search"
10182
  msgstr "Caută"
10183
 
10185
  #: view/Audits/Compare.php:44 view/BulkSeo/Bulkseo.php:123
10186
  #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:6
10187
  #: view/Ranking/Rankings.php:58 view/Research/Briefcase.php:37
 
10188
  msgid "Show All"
10189
  msgstr "Arată toate"
10190
 
10204
  msgstr "Cuvinte cheie:"
10205
 
10206
  #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
10207
+ #: view/FocusPages/Addpage.php:196
10208
  #, fuzzy
10209
  msgid "Prev Page"
10210
  msgstr "Pagina Prev"
10211
 
10212
  #: view/Audits/Addpage.php:194 view/BulkSeo/Bulkseo.php:199
10213
+ #: view/FocusPages/Addpage.php:197
10214
  msgid "Next Page"
10215
  msgstr "Pagina următoare"
10216
 
10248
  msgid "Last checked"
10249
  msgstr "Ultima verificare"
10250
 
10251
+ #: view/Audits/AuditPageRow.php:46
10252
  #, fuzzy
10253
  #| msgid "Could not send the email..."
10254
  msgid "Could not create the audit for this URL"
10255
  msgstr "Nu s-a putut trimite email ..."
10256
 
10257
+ #: view/Audits/AuditPageRow.php:46
10258
  #, fuzzy
10259
  #| msgid "An error occured."
10260
  msgid "error code"
10261
  msgstr "A aparut o eroare."
10262
 
10263
+ #: view/Audits/AuditPageRow.php:49
10264
  #, fuzzy, php-format
10265
  msgid ""
10266
+ "The way your WordPress site is currently hosted can affect the way Squirrly "
10267
+ "SEO operates in order to retrieve and process data about this page. %sIt’s "
10268
+ "important to do everything on your end to ensure that the audits can be "
10269
+ "generated by our system. %s Whitelist our crawler IP address (176.9.112.210) "
10270
+ "to allow our server to verify your page so that you’ll receive a full audit."
 
10271
  msgstr ""
10272
+ "Detalii despre sarcină: Modul în care este găzduit site-ul dvs. WordPress în "
10273
+ "prezent poate afecta modul în care funcționează Squirrly SEO pentru a prelua "
10274
+ "și prelucra date despre paginile dvs. de focalizare. Este important "
10275
+ "faceți totul la sfârșitul dvs. pentru a asigura auditul Pagini Focus "
10276
+ "poate fi generat de sistemul nostru."
10277
+
10278
+ #: view/Audits/AuditPageRow.php:50 view/FocusPages/FocusPageRow.php:96
10279
+ #, fuzzy
10280
+ msgid "Inspect URL"
10281
+ msgstr "Adresa URL"
10282
 
10283
+ #: view/Audits/AuditPageRow.php:73
10284
  #, fuzzy
10285
  msgid "Delete Page from Audit"
10286
  msgstr "Ștergeți pagina din audit"
10453
  msgid "Audits"
10454
  msgstr "auditurile"
10455
 
10456
+ #: view/Audits/Audits.php:59
10457
  #, fuzzy, php-format
10458
  msgid ""
10459
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
10464
  "minute %s pentru a genera noul audit pentru fiecare pagină. Sunt multe "
10465
  "prelucrări implicate."
10466
 
10467
+ #: view/Audits/Audits.php:66
10468
  #, fuzzy, php-format
10469
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
10470
  msgstr ""
10471
  "Aflați cum să vă îmbunătățiți scorul Auditului SEO în timp %s Faceți clic "
10472
  "aici %s"
10473
 
10474
+ #: view/Audits/Audits.php:87 view/FocusPages/Pagelist.php:85
10475
+ #, fuzzy
10476
+ #| msgid "Squirrly Snippet"
10477
+ msgid "Squirrly Inspect URL"
10478
+ msgstr "Snipet Squirrly"
10479
+
10480
  #: view/Audits/Settings.php:30
10481
  #, fuzzy
10482
  #| msgid " settings"
10495
  msgstr ""
10496
  "Introduceți adresa de e-mail pe care doriți să primiți audituri săptămânale."
10497
 
10498
+ #: view/Blocks/Account.php:10
10499
+ #, fuzzy
10500
+ #| msgid "Account Info"
10501
+ msgid "Account Info Unavailable"
10502
+ msgstr "Informatii cont"
10503
+
10504
+ #: view/Blocks/Account.php:43
10505
  #, fuzzy
10506
  msgid "Your Plan: "
10507
  msgstr "Planul tau:"
10508
 
10509
+ #: view/Blocks/Account.php:44
10510
  #, fuzzy
10511
  #| msgid "Squirrly account information"
10512
  msgid "Check Account Info"
10513
  msgstr "Informatii cont Squirrly"
10514
 
10515
+ #: view/Blocks/Account.php:49
10516
  msgid "Email: "
10517
  msgstr "E-mail: "
10518
 
10519
+ #: view/Blocks/Account.php:55
10520
  #, php-format
10521
  msgid "Due Date: %s"
10522
  msgstr "Data scadentă: %s"
10523
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10524
  #: view/Blocks/Audits.php:7 view/Blocks/Audits.php:53
10525
  #, fuzzy
10526
  msgid "See Audits"
10557
  msgid "Go to Focus Pages"
10558
  msgstr "Accesați Pagini Focus"
10559
 
10560
+ #: view/Blocks/Connect.php:14 view/Blocks/Connect.php:28
10561
  #, fuzzy
10562
  msgid ""
10563
  "This option is used to track innerlinks and insights for your Focus Pages "
10567
  "informațiile pentru paginile dvs. Focus și pentru a oferi informații "
10568
  "detaliate despre acestea."
10569
 
10570
+ #: view/Blocks/Connect.php:16 view/Blocks/Connect.php:30
10571
  #, fuzzy
10572
  msgid "Let Squirrly API get data for Focus Pages"
10573
  msgstr "Permiteți Squirrly API să obțină date pentru Focus Pages"
10574
 
10575
+ #: view/Blocks/Connect.php:17
10576
  msgid "Connect"
10577
  msgstr "Conecteaza"
10578
 
10579
+ #: view/Blocks/Connect.php:31
10580
  #, fuzzy
10581
  #| msgid "Connecting ..."
10582
  msgid "disconnect"
10648
  msgid "Checking the website ..."
10649
  msgstr "Verificat cu google ..."
10650
 
10651
+ #: view/Blocks/Features.php:8
10652
+ msgid ""
10653
+ "The Assistant who maps the road to Better Rankings. For every single page. "
10654
+ "Always with different specifics."
10655
+ msgstr ""
10656
+
10657
+ #: view/Blocks/Features.php:9 view/Blocks/Features.php:18
10658
+ #: view/Blocks/Features.php:36 view/Blocks/Features.php:189
10659
+ msgid "Freemium"
10660
+ msgstr ""
10661
+
10662
+ #: view/Blocks/Features.php:16 view/Blocks/KRHistory.php:5
10663
+ #: view/Onboarding/Step1.3.php:11 view/Research/Research.php:18
10664
+ #, fuzzy
10665
+ msgid "Keyword Research"
10666
+ msgstr "Cercetare cu cuvinte cheie"
10667
+
10668
+ #: view/Blocks/Features.php:17
10669
+ msgid ""
10670
+ "Find the Best Keywords that your own website can rank for and get "
10671
+ "personalized competition data for each keyword."
10672
+ msgstr ""
10673
+
10674
+ #: view/Blocks/Features.php:25
10675
+ #, fuzzy
10676
+ msgid "SEO Briefcase"
10677
+ msgstr "Servietă"
10678
+
10679
+ #: view/Blocks/Features.php:26
10680
+ msgid ""
10681
+ "Add keywords in your portfolio based on your current Campaigns, Trends, "
10682
+ "Performance for a successful SEO strategy."
10683
+ msgstr ""
10684
+
10685
+ #: view/Blocks/Features.php:27 view/Blocks/Features.php:45
10686
+ #: view/Blocks/Features.php:54 view/Blocks/Features.php:63
10687
+ #: view/Blocks/Features.php:72 view/Blocks/Features.php:81
10688
+ #: view/Blocks/Features.php:90 view/Blocks/Features.php:99
10689
+ #: view/Blocks/Features.php:108 view/Blocks/Features.php:117
10690
+ #: view/Blocks/Features.php:126 view/Blocks/Features.php:135
10691
+ #: view/Blocks/Features.php:144 view/Blocks/Features.php:153
10692
+ #: view/Blocks/Features.php:162 view/Blocks/Features.php:171
10693
+ #: view/Blocks/Features.php:180 view/Blocks/Features.php:198
10694
+ msgid "Free"
10695
+ msgstr ""
10696
+
10697
+ #: view/Blocks/Features.php:35
10698
+ msgid ""
10699
+ "Publish content that is fully optimized for BOTH Search Engines and Humans – "
10700
+ "every single time!"
10701
+ msgstr ""
10702
+
10703
+ #: view/Blocks/Features.php:43
10704
+ #, fuzzy
10705
+ msgid "Google SERP with GSC"
10706
+ msgstr "Google SERP Checker"
10707
+
10708
+ #: view/Blocks/Features.php:44
10709
+ #, fuzzy
10710
+ msgid ""
10711
+ "Get Google Search Console average possitions, clicks and impressions for "
10712
+ "organic keywords."
10713
+ msgstr ""
10714
+ "Consultați posesia medie, clicurile și afișările Google Search Console "
10715
+ "pentru cuvinte cheie organice"
10716
+
10717
+ #: view/Blocks/Features.php:52
10718
+ #, fuzzy
10719
+ #| msgid "Automation"
10720
+ msgid "SEO Automation"
10721
+ msgstr "Automatizare"
10722
+
10723
+ #: view/Blocks/Features.php:53
10724
+ msgid ""
10725
+ "Configure the SEO in 2 minutes for the entire website without writing a line "
10726
+ "of code."
10727
+ msgstr ""
10728
+
10729
+ #: view/Blocks/Features.php:61
10730
+ #, fuzzy
10731
+ #| msgid "Squirrly Snippet"
10732
+ msgid "Bulk SEO & Snippets"
10733
+ msgstr "Snipet Squirrly"
10734
+
10735
+ #: view/Blocks/Features.php:62
10736
+ #, fuzzy
10737
+ msgid ""
10738
+ "Simplify the SEO process for all your posts types and optimize them in just "
10739
+ "minutes."
10740
+ msgstr ""
10741
+ "Simplificați procesul SEO pentru toate tipurile de postări și optimizați-le "
10742
+ "în doar câteva minute."
10743
+
10744
+ #: view/Blocks/Features.php:70 view/Goals/Goals.php:34
10745
+ #, fuzzy
10746
+ msgid "Daily SEO Goals"
10747
+ msgstr "Obiective zilnice SEO"
10748
+
10749
+ #: view/Blocks/Features.php:71
10750
+ msgid ""
10751
+ "The Non-Human SEO Consultant that prepares you goals that take you closer to "
10752
+ "the first page of Google."
10753
+ msgstr ""
10754
+
10755
+ #: view/Blocks/Features.php:79
10756
+ #, fuzzy
10757
+ #| msgid "Over Optimization %s"
10758
+ msgid "Open Graph Optimization"
10759
+ msgstr "Supra Optimizat %s"
10760
+
10761
+ #: view/Blocks/Features.php:80
10762
+ #, fuzzy
10763
+ #| msgid ""
10764
+ #| "Add the Social Open Graph protocol so that your Facebook shares look good."
10765
+ msgid "Add Social Open Graph protocol so that your Facebook shares look good."
10766
+ msgstr "Adauga Open Graph meta pentru o afisare mai frumoasa in Facebook."
10767
+
10768
+ #: view/Blocks/Features.php:88
10769
+ #, fuzzy
10770
+ msgid "Twitter Card Optimization"
10771
+ msgstr "Optimizarea primei pagini"
10772
+
10773
+ #: view/Blocks/Features.php:89
10774
+ #, fuzzy
10775
+ msgid "Add Twitter Card in your tweets so that your Twitter shares look good."
10776
+ msgstr ""
10777
+ "Adăugați cardul Twitter în tweet-urile dvs. pentru ca share-urile dvs. "
10778
+ "Twitter să arate bine."
10779
+
10780
+ #: view/Blocks/Features.php:97
10781
+ #, fuzzy
10782
+ #| msgid "XML sitemap: "
10783
+ msgid "XML Sitemap"
10784
+ msgstr "XML sitemap: "
10785
+
10786
+ #: view/Blocks/Features.php:98
10787
+ msgid ""
10788
+ "Use Squirrly’s Sitemap Generator and Settings to help your website get "
10789
+ "crawled and indexed by Google."
10790
+ msgstr ""
10791
+
10792
+ #: view/Blocks/Features.php:106
10793
+ #, fuzzy
10794
+ msgid "JSON-LD Optimizaition"
10795
+ msgstr "Definiția JSON-LD"
10796
+
10797
+ #: view/Blocks/Features.php:107
10798
+ msgid ""
10799
+ "Edit your website’s JSON-LD Schema with Squirrly’s powerful semantic SEO "
10800
+ "Markup Solution."
10801
+ msgstr ""
10802
+
10803
+ #: view/Blocks/Features.php:115
10804
+ #, fuzzy
10805
+ #| msgid "Load Google Analytics Tracking Script"
10806
+ msgid "Google Analytics Tracking"
10807
+ msgstr "Incarca codul pentru Google Analytics"
10808
+
10809
+ #: view/Blocks/Features.php:116
10810
+ #, fuzzy
10811
+ msgid ""
10812
+ "Add the Google Analytics and Google Tag Manager tracking on your website."
10813
+ msgstr ""
10814
+ "Conectați Google Analytics și obțineți informații despre trafic pentru site-"
10815
+ "ul dvs. web pentru fiecare audit"
10816
+
10817
+ #: view/Blocks/Features.php:124
10818
+ #, fuzzy
10819
+ msgid "Facebook Pixel Tracking"
10820
+ msgstr "Încărcați scriptul de urmărire a pixelilor Facebook"
10821
+
10822
+ #: view/Blocks/Features.php:125
10823
+ msgid ""
10824
+ "Track visitors with website and e-commerce events for better Retargeting "
10825
+ "Campaigns."
10826
+ msgstr ""
10827
+
10828
+ #: view/Blocks/Features.php:133 view/Connect/GoogleSearchConsole.php:7
10829
+ msgid "Google Search Console"
10830
+ msgstr "Google Search Console"
10831
+
10832
+ #: view/Blocks/Features.php:134
10833
+ #, fuzzy
10834
+ msgid ""
10835
+ "Connect your website with Google Search Console and get insights based on "
10836
+ "organic searched keywords."
10837
+ msgstr ""
10838
+ "Conectați Google Search Console și obțineți informații despre trafic pentru "
10839
+ "site-ul dvs. web pentru fiecare audit"
10840
+
10841
+ #: view/Blocks/Features.php:142
10842
+ #, fuzzy
10843
+ msgid "Robots.txt File"
10844
+ msgstr "File Robots"
10845
+
10846
+ #: view/Blocks/Features.php:143
10847
+ #, fuzzy
10848
+ msgid ""
10849
+ "Tell search engine crawlers which pages or files the crawler can or can't "
10850
+ "request from your site."
10851
+ msgstr ""
10852
+ "Un fișier robots.txt spune crawler-urilor motorului de căutare ce pagini sau "
10853
+ "fișiere pe care crawlerul le pot sau nu le pot solicita de pe site-ul dvs."
10854
+
10855
+ #: view/Blocks/Features.php:151
10856
+ #, fuzzy
10857
+ #| msgid "Change the Website Icon"
10858
+ msgid "Favicon Site Icon"
10859
+ msgstr "Schimba icoana site-ului"
10860
+
10861
+ #: view/Blocks/Features.php:152 view/SeoSettings/Favicon.php:29
10862
+ #, fuzzy
10863
+ msgid ""
10864
+ "Add your website icon in the browser tabs and on other devices like iPhone, "
10865
+ "iPad and Android phones."
10866
+ msgstr ""
10867
+ "Adăugați pictograma site-ului dvs. web în filele browserului și pe alte "
10868
+ "dispozitive, cum ar fi iPhone, iPad și telefoane Android."
10869
+
10870
+ #: view/Blocks/Features.php:160
10871
+ msgid "On-Page SEO METAs"
10872
+ msgstr ""
10873
+
10874
+ #: view/Blocks/Features.php:161
10875
+ msgid ""
10876
+ "Add all Search Engine METAs like Title, Description, Canonical, Dublin Core, "
10877
+ "Robots and more."
10878
+ msgstr ""
10879
+
10880
+ #: view/Blocks/Features.php:169
10881
+ msgid "Remove META Duplicate"
10882
+ msgstr ""
10883
+
10884
+ #: view/Blocks/Features.php:170
10885
+ msgid "Fix Duplicate Titles and Descriptions without writing a line of code."
10886
+ msgstr ""
10887
+
10888
+ #: view/Blocks/Features.php:178
10889
+ msgid "404 Redirects"
10890
+ msgstr ""
10891
+
10892
+ #: view/Blocks/Features.php:179
10893
+ msgid ""
10894
+ "Automatically redirect the old posts and pages URLs to the new URLs to keep "
10895
+ "the post authority."
10896
+ msgstr ""
10897
+
10898
+ #: view/Blocks/Features.php:188 view/Blocks/Features.php:197
10899
+ msgid "Improve your Online Presence by knowing how your website is performing."
10900
+ msgstr ""
10901
+
10902
+ #: view/Blocks/Features.php:196 view/Blocks/Jorney.php:12
10903
+ #: view/Blocks/Jorney.php:95
10904
+ #, fuzzy
10905
+ msgid "14 Days Journey Course"
10906
+ msgstr "Curs de 14 zile de călătorie"
10907
+
10908
+ #: view/Blocks/Features.php:205
10909
+ #, fuzzy
10910
+ msgid "Blogging Assistant"
10911
+ msgstr "Construiți cu Blogging Assistant"
10912
+
10913
+ #: view/Blocks/Features.php:206
10914
+ msgid ""
10915
+ "Add relevant Copyright-free images, Tweets, Wikis, Blog Excerpts in your "
10916
+ "posts."
10917
+ msgstr ""
10918
+
10919
+ #: view/Blocks/Features.php:207
10920
+ #, fuzzy
10921
+ msgid "Pro"
10922
+ msgstr "Problemă"
10923
+
10924
+ #: view/Blocks/Features.php:214 view/Onboarding/Step1.5.php:21
10925
+ #, fuzzy
10926
+ msgid "Google SERP Checker"
10927
+ msgstr "Google SERP Checker"
10928
+
10929
+ #: view/Blocks/Features.php:215
10930
+ #, fuzzy
10931
+ msgid ""
10932
+ "Accurately track your rankings with Squirrly’s user-friendly Google SERP "
10933
+ "Checker."
10934
+ msgstr ""
10935
+ "Urmăriți-vă cu precizie clasamentele cu verificatorul Google SERP de "
10936
+ "Squirrly, ușor de utilizat"
10937
+
10938
+ #: view/Blocks/Features.php:216
10939
+ msgid "Business"
10940
+ msgstr ""
10941
+
10942
+ #: view/Blocks/Features.php:233 view/Overview.php:65
10943
+ #, fuzzy
10944
+ #| msgid "Squirrly SEO Editor"
10945
+ msgid "Squirrly SEO Feature Categories"
10946
+ msgstr "Editor Squirrly SEO"
10947
+
10948
+ #: view/Blocks/Features.php:237
10949
+ #, php-format
10950
+ msgid ""
10951
+ "With a total of over %s200%s free in-depth features that only Squirrly can "
10952
+ "offer."
10953
+ msgstr ""
10954
+
10955
+ #: view/Blocks/Features.php:292
10956
+ #, fuzzy
10957
+ msgid "Go to feature"
10958
+ msgstr "Accesați Servieta"
10959
+
10960
+ #: view/Blocks/Features.php:294
10961
+ #, fuzzy
10962
+ msgid "Active"
10963
+ msgstr "Activați META-urile"
10964
+
10965
+ #: view/Blocks/Features.php:296
10966
+ #, fuzzy
10967
+ msgid "Inactive"
10968
+ msgstr "sarcină activă"
10969
+
10970
+ #: view/Blocks/Features.php:304
10971
+ #, fuzzy
10972
+ #| msgid "More details"
10973
+ msgid "more details"
10974
+ msgstr "Mai mult"
10975
+
10976
  #: view/Blocks/FocusPages.php:7
10977
  #, fuzzy
10978
  msgid "See Focus Pages"
11003
  msgid "Then set a page as focus"
11004
  msgstr "Apoi, setați o pagină ca focus"
11005
 
 
 
 
 
 
11006
  #: view/Blocks/Jorney.php:17
11007
  #, fuzzy, php-format
11008
  msgid "Follow the %sdaily recipe%s from below."
11075
 
11076
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
11077
  #: view/Ranking/Rankings.php:395 view/Research/Briefcase.php:256
11078
+ #: view/Research/History.php:30 view/Research/Research.php:195
11079
  #: view/Research/Suggested.php:29
11080
  msgid "Country"
11081
  msgstr "Țară"
11082
 
11083
  #: view/Blocks/KRFound.php:16 view/Blocks/KRHistory.php:16
11084
+ #: view/Research/History.php:30 view/Research/Research.php:195
11085
  #: view/Research/Suggested.php:29
11086
  #, fuzzy
11087
  msgid "Co"
11090
  #: view/Blocks/KRFound.php:18 view/Blocks/KRFound.php:19
11091
  #: view/Blocks/KRFound.php:64 view/Research/Briefcase.php:261
11092
  #: view/Research/HistoryDetails.php:16 view/Research/HistoryDetails.php:18
11093
+ #: view/Research/Research.php:197 view/Research/Research.php:198
11094
  #: view/Research/Suggested.php:31 view/Research/Suggested.php:32
11095
  #: view/Research/Suggested.php:81
11096
  #, fuzzy
11098
  msgstr "Concurență"
11099
 
11100
  #: view/Blocks/KRFound.php:22 view/Blocks/KRFound.php:69
11101
+ #: view/Research/HistoryDetails.php:12 view/Research/Research.php:201
11102
  #: view/Research/Suggested.php:35 view/Research/Suggested.php:86
11103
  #, fuzzy
11104
  msgid "SEO Search Volume"
11112
 
11113
  #: view/Blocks/KRFound.php:26 view/Blocks/KRFound.php:74
11114
  #: view/Research/Briefcase.php:277 view/Research/HistoryDetails.php:8
11115
+ #: view/Research/Research.php:205 view/Research/Suggested.php:39
11116
  #: view/Research/Suggested.php:91
11117
  #, fuzzy
11118
  msgid "Recent discussions"
11119
  msgstr "Discuții recente"
11120
 
11121
  #: view/Blocks/KRFound.php:27 view/Research/HistoryDetails.php:10
11122
+ #: view/Research/Research.php:206 view/Research/Suggested.php:40
11123
  msgid "Discussion"
11124
  msgstr "Discuţie"
11125
 
11126
  #: view/Blocks/KRFound.php:30 view/Blocks/KRFound.php:31
11127
  #: view/Blocks/KRFound.php:79 view/Research/Briefcase.php:283
11128
+ #: view/Research/HistoryDetails.php:20 view/Research/Research.php:209
11129
  #: view/Research/Suggested.php:43
11130
  msgid "Trending"
11131
  msgstr "Tendință"
11164
  msgid "Go to Briefcase"
11165
  msgstr "Accesați Servieta"
11166
 
 
 
 
 
 
 
11167
  #: view/Blocks/KRHistory.php:6
11168
  #, fuzzy
11169
  #| msgid "Search it:"
11799
  msgid "%sPlease connect to SquirrlyCloud first%s"
11800
  msgstr "Acest email te conecteaza la Squirrly"
11801
 
11802
+ #: view/Blocks/Stats.php:45
11803
  msgid "Hello"
11804
  msgstr "Bună"
11805
 
11806
+ #: view/Blocks/Stats.php:51
11807
  #, fuzzy, php-format
11808
  msgid "%s SEO Protection"
11809
  msgstr "%s Protecție SEO"
11810
 
11811
+ #: view/Blocks/Stats.php:54
11812
  #, fuzzy
11813
  msgid "All protection layers are activated."
11814
  msgstr "Toate straturile de protecție sunt activate."
11815
 
11816
+ #: view/Blocks/Stats.php:56
11817
  #, fuzzy, php-format
11818
  msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
11819
  msgstr "Porniți SEO de la %sSquirrly> Setări SEO %s."
11820
 
11821
+ #: view/Blocks/Stats.php:60
11822
  msgid "How does this work?"
11823
  msgstr "Cum funcționează ?"
11824
 
11825
+ #: view/Blocks/Stats.php:68
11826
  #, fuzzy
11827
  msgid "Pages SEO'ed"
11828
  msgstr "Pagini SEO"
11829
 
11830
+ #: view/Blocks/Stats.php:74
11831
  #, fuzzy
11832
  msgid "Post Types Covered"
11833
  msgstr "Tipuri de post acoperite"
11834
 
11835
+ #: view/Blocks/Stats.php:79 view/Goals/CheckSeo.php:102
11836
  #, fuzzy, php-format
11837
  msgid "%s Aspects"
11838
  msgstr "%s Aspecte"
11839
 
11840
+ #: view/Blocks/Stats.php:80 view/Goals/CheckSeo.php:103
11841
  #, fuzzy
11842
  #| msgid "Recommended by Squirrly"
11843
  msgid "Handled by Squirrly Genius."
11844
  msgstr "Recomandat de Squirrly"
11845
 
11846
+ #: view/Blocks/Stats.php:82
11847
  #, fuzzy
11848
  msgid "Can I see them?"
11849
  msgstr "Pot să le văd?"
11850
 
11851
+ #: view/Blocks/Stats.php:86 view/Goals/Goals.php:43
11852
  #, fuzzy
11853
  msgid "Run SEO Test"
11854
  msgstr "Executați testul SEO"
11962
  msgid "Thank you! You can send us a happy face tomorrow too."
11963
  msgstr "Multumim! Ne poti trimite o fata vesela si maine."
11964
 
11965
+ #: view/Blocks/VersionBar.php:9
11966
  #, fuzzy, php-format
11967
  msgid ""
11968
  "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
11971
  "%sSERP Checker %s: %s Actualizăm zilnic cele mai bune rânduri pentru fiecare "
11972
  "cuvânt cheie. 100%% precis și obiectiv."
11973
 
11974
+ #: view/Blocks/VersionBar.php:12
11975
  #, fuzzy, php-format
11976
  msgid ""
11977
  "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
11979
  "%sNo au rămas întrebări SERP. %s Vă rugăm să verificați starea %saccount și "
11980
  "limitele %s"
11981
 
11982
+ #: view/Blocks/VersionBar.php:18
11983
  #, fuzzy, php-format
11984
  msgid ""
11985
  "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
11992
  "nu poziții exacte în SERP. %s Pentru a vă verifica clasamentul zilnic, vă "
11993
  "rugăm să actualizați planul la %sBusiness Plan %s"
11994
 
11995
+ #: view/Blocks/VersionBar.php:25
11996
  #, fuzzy, php-format
11997
  msgid ""
11998
  "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
12001
  "%sAudit %s: %s Adăugați maximum (s) pagini (s) în Audit și solicitați un nou "
12002
  "audit la fiecare oră."
12003
 
12004
+ #: view/Blocks/VersionBar.php:29
12005
  #, fuzzy, php-format
12006
  msgid ""
12007
  "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
12013
  "și a reîmprospăta auditul la fiecare oră, vă rugăm să actualizați planul la "
12014
  "%sPRO Plan %s"
12015
 
12016
+ #: view/Blocks/VersionBar.php:36
12017
  #, fuzzy, php-format
12018
  msgid ""
12019
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
12022
  "%sFocus Pages %s: %s Adăugați maximum %s pagina (pagini) în paginile Focus "
12023
  "și solicitați un nou audit pentru fiecare pagină la fiecare 5 minute."
12024
 
12025
+ #: view/Blocks/VersionBar.php:40
12026
  #, fuzzy, php-format
12027
  msgid ""
12028
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
12034
  "Pentru a adăuga mai multe pagini în Pagini Focus, vă rugăm să actualizați "
12035
  "planul la %sPRO Plan %s"
12036
 
12037
+ #: view/Blocks/VersionBar.php:44
12038
+ #, php-format
12039
+ msgid ""
12040
+ "Your current plan is OLD Squirrly plan: Please read the official notes about "
12041
+ "it %shttps://www.squirrly.co/you-received-access-to-all-updates-from-"
12042
+ "squirrly-seo/%s"
12043
+ msgstr ""
12044
+
12045
+ #: view/Blocks/VersionBar.php:52
12046
  #, fuzzy, php-format
12047
  msgid ""
12048
  "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
12051
  "%sLive Assistant %s: %s Utilizați Squirrly Live Assistant cu toate sarcinile "
12052
  "de optimizare pentru a obține 100%% postări și pagini optimizate."
12053
 
12054
+ #: view/Blocks/VersionBar.php:56
12055
  #, fuzzy, php-format
12056
  msgid ""
12057
  "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
12062
  "optimiza postările și paginile. %s Pentru a optimiza postările dvs. la 100 "
12063
  "%%, vă rugăm să actualizați planul la Planul %sPRO %s"
12064
 
12065
+ #: view/Blocks/VersionBar.php:64
12066
  #, fuzzy, php-format
12067
  msgid ""
12068
  "%sResearch %s:%s You have %s researches left for your account. The research "
12074
  "mai multe cercetări și până la 50 de rezultate pe cercetare, vă rugăm să "
12075
  "actualizați planul dvs. la %sBusiness Plan %s"
12076
 
12077
+ #: view/Blocks/VersionBar.php:68
12078
  #, fuzzy, php-format
12079
  msgid ""
12080
  "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
12084
  "face cercetări profunde cu cuvinte cheie și puteți obține până la 50 de "
12085
  "rezultate pentru fiecare cercetare."
12086
 
12087
+ #: view/Blocks/VersionBar.php:72
12088
  #, fuzzy, php-format
12089
  msgid ""
12090
  "%sResearch %s:%s You have %s researches left for your account. The research "
12096
  "multe cercetări și până la 50 de rezultate pe cercetare, vă rugăm să "
12097
  "actualizați planul dvs. la %sBusiness Plan %s"
12098
 
12099
+ #: view/Blocks/VersionBar.php:79
12100
  #, fuzzy, php-format
12101
  msgid ""
12102
  "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
12105
  "%sSquirrly Servieta: %s Adăugați cuvinte cheie nelimitate în servieta "
12106
  "Squirrly pentru a vă optimiza mesajele și paginile."
12107
 
12108
+ #: view/Blocks/VersionBar.php:84
12109
  #, fuzzy, php-format
12110
  msgid ""
12111
  "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
12115
  "Squirrly Servieta pentru organizarea cuvintelor cheie după strategia dvs. "
12116
  "SEO."
12117
 
12118
+ #: view/Blocks/VersionBar.php:90
12119
  #, fuzzy, php-format
12120
  msgid ""
12121
  "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
12125
  "săptămână dacă găsim cuvinte cheie mai potrivite în funcție de istoricul "
12126
  "dvs. de cercetare."
12127
 
12128
+ #: view/Blocks/VersionBar.php:94
12129
  #, fuzzy, php-format
12130
  msgid ""
12131
  "This feature is only available for PRO and Business accounts. %sTo get "
12135
  "Business. %s Pentru a primi sugestii de cuvinte cheie în fiecare săptămână, "
12136
  "vă rugăm să actualizați planul la %sBusiness Plan %s"
12137
 
12138
+ #: view/Blocks/VersionBar.php:103
12139
  #, fuzzy, php-format
12140
  msgid ""
12141
  "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
12144
  "%sBulk Setări SEO: %s Această caracteristică este inclusă în toate "
12145
  "versiunile de Squirrly SEO gratuit."
12146
 
12147
+ #: view/Blocks/VersionBar.php:109
12148
  #, fuzzy, php-format
12149
  msgid ""
12150
  "%sOn-Page SEO Settings:%s This feature is included in all versions of "
12153
  "%sOn-Page Setări SEO: %s Această caracteristică este inclusă în toate "
12154
  "versiunile de Squirrly SEO gratuit."
12155
 
12156
+ #: view/BulkSeo/Bulkseo.php:30
12157
  #, fuzzy
12158
  msgid ""
12159
  "Simplify the SEO process for all your posts types and optimize them in just "
12162
  "Simplificați procesul SEO pentru toate tipurile de postări și optimizați-le "
12163
  "în doar câteva minute."
12164
 
12165
+ #: view/BulkSeo/Bulkseo.php:183
12166
  #, fuzzy, php-format
12167
  msgid "No data for this filter. %sShow All%s records for this post type."
12168
  msgstr ""
12169
  "Nu există date pentru acest filtru. %s Afișează Toate %s înregistrări "
12170
  "pentru acest tip de postare."
12171
 
12172
+ #: view/BulkSeo/Bulkseo.php:185
12173
  #, fuzzy
12174
  msgid "No data found for this post type. Try other post types."
12175
  msgstr ""
12176
  "Nu au fost găsite date pentru acest tip de postare. Încercați alte tipuri de "
12177
  "postare."
12178
 
12179
+ #: view/BulkSeo/BulkseoRow.php:26
12180
  #, fuzzy, php-format
12181
  msgid "View &#8220;%s&#8221;"
12182
  msgstr "Vizualizare & # 8220; %s & # 8221;"
12222
  msgid "Check connection"
12223
  msgstr "Conectare ..."
12224
 
 
 
 
 
12225
  #: view/Connect/GoogleSearchConsole.php:12
12226
  #, fuzzy
12227
  msgid "You are connected to Google Search Console"
12241
  "Conectați Google Search Console și obțineți informații despre trafic pentru "
12242
  "site-ul dvs. web pentru fiecare audit"
12243
 
 
 
 
 
 
 
 
 
 
 
12244
  #: view/Errors/Maintenance.php:20
12245
  #, fuzzy, php-format
12246
  msgid ""
12307
  msgid "Details"
12308
  msgstr "Detalii"
12309
 
12310
+ #: view/FocusPages/FocusPageRow.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12311
  #, fuzzy
12312
  msgid "Currently processing data. Please refresh in a few minutes."
12313
  msgstr ""
12314
  "În prezent procesarea datelor. Vă rugăm să reîmprospătați în câteva minute."
12315
 
12316
+ #: view/FocusPages/FocusPageRow.php:106 view/FocusPages/FocusPageRow.php:110
12317
+ #: view/FocusPages/FocusPageRow.php:126 view/FocusPages/FocusPages.php:54
12318
  #, fuzzy
12319
  msgid "Chance to Rank"
12320
  msgstr "Șansă la clasare"
12321
 
12322
+ #: view/FocusPages/FocusPageRow.php:164
12323
  #, fuzzy
12324
  msgid "Delete Focus Page"
12325
  msgstr "Ștergeți pagina Focus"
12429
  "Nu alegeți pagina dvs. de pornire, pagina de contact sau pagina Despre "
12430
  "utilizare."
12431
 
12432
+ #: view/FocusPages/Pagelist.php:53
12433
  #, fuzzy, php-format
12434
  msgid ""
12435
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
12491
  msgid "Congratulations!"
12492
  msgstr "Felicitări!"
12493
 
 
 
 
 
 
12494
  #: view/Goals/Goals.php:36
12495
  #, fuzzy, php-format
12496
  msgid "%s goals for today"
12744
  "Obțineți o vizualizare a păsărilor din optimizarea SEO generală a site-ului "
12745
  "dvs."
12746
 
 
 
 
 
 
12747
  #: view/Onboarding/Step1.5.php:35
12748
  #, fuzzy
12749
  msgid ""
13040
  "Obțineți acces la consultantul SEO non-uman, paginile focus, auditurile SEO "
13041
  "și toate caracteristicile noastre %s prin crearea unui cont gratuit"
13042
 
13043
+ #: view/Overview.php:43
13044
+ #, fuzzy
13045
+ msgid ""
13046
+ "You do not have permission to access Daily Goals. You need Squirrly SEO "
13047
+ "Editor role."
13048
+ msgstr ""
13049
+ "Nu aveți permisiunea de a accesa această pagină. Ai nevoie de Squirrly SEO "
13050
+ "Administrator"
13051
+
13052
+ #: view/Overview.php:80
13053
+ #, fuzzy
13054
+ #| msgid "Social Media Options"
13055
+ msgid "Show Advanced SEO"
13056
+ msgstr "Optiuni Social Media"
13057
+
13058
+ #: view/Overview.php:81
13059
+ #, fuzzy
13060
+ msgid ""
13061
+ "Switch off to have the simplified version of the settings, intended for Non-"
13062
+ "SEO Experts."
13063
+ msgstr ""
13064
+ "Opriți pentru a avea versiunea simplificată a setărilor, destinată "
13065
+ "experților non-SEO."
13066
+
13067
+ #: view/Overview.php:82
13068
+ #, fuzzy
13069
+ msgid ""
13070
+ "It will offer the same level of SEO performance, but it will be less "
13071
+ "customizable."
13072
+ msgstr ""
13073
+ "Va oferi același nivel de performanță SEO, dar va fi mai puțin "
13074
+ "personalizabil."
13075
+
13076
+ #: view/Overview.php:94
13077
+ #, fuzzy
13078
+ msgid "We Need Your Support"
13079
+ msgstr "Avem nevoie de sprijinul tău"
13080
+
13081
+ #: view/Overview.php:103
13082
+ #, fuzzy
13083
+ msgid "Rate us if you like Squirrly SEO"
13084
+ msgstr "Evaluează-ne dacă îți place SEO Squirrly"
13085
+
13086
  #: view/Ranking/Gscsync.php:15
13087
  #, fuzzy
13088
  msgid "Google Search Console Keywords Sync"
13189
  #: view/Ranking/Rankings.php:35
13190
  #, fuzzy
13191
  msgid ""
13192
+ "Get the Google Search Console average possitions, clicks and impressions for "
13193
+ "all organic keywords of your website."
13194
  msgstr ""
13195
  "Consultați posesia medie, clicurile și afișările Google Search Console "
13196
  "pentru cuvinte cheie organice"
14056
  msgid "Welcome to Keyword Research History"
14057
  msgstr " Cercetare cuvinte cheie"
14058
 
14059
+ #: view/Research/HistoryDetails.php:22 view/Research/Research.php:210
14060
  #: view/Research/Suggested.php:44
14061
  msgid "Trend"
14062
  msgstr "Trend"
14155
  "personalizate despre concurență pentru fiecare cuvânt cheie pe care îl "
14156
  "cercetați, datorită funcțiilor de informații de piață ale Squirrly."
14157
 
14158
+ #: view/Research/Research.php:34 view/Research/Research.php:147
14159
  msgid "You've reached your Keyword Research Limit"
14160
  msgstr "Ai atins limita de Keyword Research"
14161
 
14162
+ #: view/Research/Research.php:35 view/Research/Research.php:148
14163
  #, fuzzy
14164
  msgid "Check Your Account"
14165
  msgstr "Verificați-vă contul"
14215
  msgstr ""
14216
  "Pentru SEO local, trebuie să selectați Țara în care vă conduceți afacerea"
14217
 
14218
+ #: view/Research/Research.php:100 view/Research/Research.php:154
14219
+ #: view/Research/Research.php:222
14220
  msgid "Start Over"
14221
  msgstr "Reia de la început"
14222
 
14225
  msgid "Step 3/4: Select similar keywords from below"
14226
  msgstr "Pasul 3/4: selectați cuvinte cheie similare de jos"
14227
 
14228
+ #: view/Research/Research.php:109
14229
+ msgid ""
14230
+ "Each selected keyword will consume 1 credit from your keyword research "
14231
+ "credits."
14232
+ msgstr ""
14233
+
14234
+ #: view/Research/Research.php:150
14235
  #, php-format
14236
  msgid "We could not find similar keywords. %sClick on \"Do research\""
14237
  msgstr ""
14238
  "Squirrly nu a putut gasi rezultate asemanatoare. %sClick on \"Do research\""
14239
 
14240
+ #: view/Research/Research.php:160
14241
  #, fuzzy
14242
  #| msgid "Do a research"
14243
  msgid "Do a deep research"
14244
  msgstr "Mai multe detalii"
14245
 
14246
+ #: view/Research/Research.php:164 view/Research/Research.php:170
14247
  #, fuzzy
14248
  #| msgid "Do a research"
14249
  msgid "Do research"
14250
  msgstr "Mai multe detalii"
14251
 
14252
+ #: view/Research/Research.php:178
14253
  #, fuzzy
14254
  msgid ""
14255
  "Keyword Research in progress. We're doing all of this in real-time. Data is "
14258
  "Cuvinte cheie Cercetări în curs. Facem toate acestea în timp real. Datele "
14259
  "sunt proaspete."
14260
 
14261
+ #: view/Research/Research.php:179
14262
  #, fuzzy
14263
  msgid "We're now finding 10 alternatives for each keyword you selected."
14264
  msgstr "Acum găsim 10 alternative pentru fiecare cuvânt cheie selectat."
14265
 
14266
+ #: view/Research/Research.php:180
14267
  #, fuzzy
14268
  msgid ""
14269
  "For each alternative, we are looking at the top 10 pages ranked on Google "
14272
  "Pentru fiecare alternativă, ne uităm la primele 10 pagini clasate pe Google "
14273
  "pentru acest cuvânt cheie."
14274
 
14275
+ #: view/Research/Research.php:181
14276
  #, fuzzy
14277
  msgid ""
14278
  "We are now measuring the web authority of each competing page and comparing "
14281
  "Acum măsurăm autoritatea web a fiecărei pagini concurente și o comparăm cu a "
14282
  "ta."
14283
 
14284
+ #: view/Research/Research.php:182
14285
  #, fuzzy
14286
  msgid "Looking at the monthly search volume for each keyword."
14287
  msgstr "Analizând volumul lunar de căutare pentru fiecare cuvânt cheie."
14288
 
14289
+ #: view/Research/Research.php:183
14290
  #, fuzzy
14291
  msgid "Analyzing the last 30 days of Google trends for each keyword."
14292
  msgstr ""
14293
  "Analizând ultimele 30 de zile ale tendințelor Google pentru fiecare cuvânt "
14294
  "cheie."
14295
 
14296
+ #: view/Research/Research.php:184
14297
  #, fuzzy
14298
  msgid ""
14299
  "Seeing how many discussions there are on forums and Twitter for each keyword."
14301
  "Văzând câte discuții există pe forumuri și Twitter pentru fiecare cuvânt "
14302
  "cheie."
14303
 
14304
+ #: view/Research/Research.php:185
14305
  #, fuzzy
14306
  msgid ""
14307
  "Piecing all the keywords together now after analyzing each individual "
14310
  "Împărțirea tuturor cuvintelor cheie acum după analizarea fiecărui cuvânt "
14311
  "cheie individual"
14312
 
14313
+ #: view/Research/Research.php:186
14314
  #, fuzzy
14315
  msgid "Preparing the results."
14316
  msgstr "Pregătirea rezultatelor."
14317
 
14318
+ #: view/Research/Research.php:188
14319
  #, fuzzy
14320
  #| msgid "We could not find relevant keywords for you"
14321
  msgid "Step 4/4: We found some relevant keywords for you"
14322
  msgstr "Squirrly nu a putut gasi rezultate pentru"
14323
 
14324
+ #: view/Research/Research.php:189
14325
  #, fuzzy, php-format
14326
  msgid ""
14327
  "Still processing. give it a bit more time, then go to %sResearch History%s. "
14330
  "Încă se procesează. acordați-i un pic mai mult timp, apoi mergeți la "
14331
  "%sRecizare Istoric %s. Rezultatele vor apărea acolo."
14332
 
14333
+ #: view/Research/Research.php:190
14334
  #, fuzzy
14335
  #| msgid "We could not find relevant keywords for you"
14336
  msgid "Step 4/4: We could not find relevant keywords for you"
14337
  msgstr "Squirrly nu a putut gasi rezultate pentru"
14338
 
14339
+ #: view/Research/Research.php:237
14340
  #, fuzzy
14341
  msgid "How to Find Amazing Keywords and get more search traffic?"
14342
  msgstr ""
14343
  "Cum să găsiți cuvinte cheie uimitoare și să obțineți mai mult trafic de "
14344
  "căutare?"
14345
 
14346
+ #: view/Research/Research.php:251
14347
  msgid "Already Have Keywords?"
14348
  msgstr "Ai deja Cuvinte Cheie?"
14349
 
14350
+ #: view/Research/Research.php:254
14351
  msgid "Import Keywords From CSV"
14352
  msgstr "Importa cuvinte cheie din fisier CSV"
14353
 
14409
  msgid "For compatibility with some Cache and CDN plugins."
14410
  msgstr "Pentru compatibilitate cu unele pluginuri Cache și CDN."
14411
 
14412
+ #: view/SeoSettings/Advanced.php:76
14413
  #, fuzzy
14414
  msgid "Delete Squirrly Table on Uninstall"
14415
  msgstr "Ștergeți Squirrly Table pe Dezinstalare"
14416
 
14417
+ #: view/SeoSettings/Advanced.php:77
14418
  #, fuzzy
14419
  msgid "Delete Squirrly SEO table and options on uninstall."
14420
  msgstr "Ștergeți tabelul SEO Squirrly și opțiunile de pe dezinstalare."
14775
  msgid "JSON-LD Description Length"
14776
  msgstr "JSON-LD Lungime descriere"
14777
 
14778
+ #: view/SeoSettings/Backup.php:7 view/SeoSettings/Jsonld.php:7
14779
+ #, fuzzy
14780
+ msgid ""
14781
+ "You do not have permission to access this page. You need Squirrly SEO Admin "
14782
+ "role"
14783
+ msgstr ""
14784
+ "Nu aveți permisiunea de a accesa această pagină. Ai nevoie de Squirrly SEO "
14785
+ "Administrator"
14786
+
14787
  #: view/SeoSettings/Backup.php:23
14788
  #, fuzzy
14789
  msgid "Import Settings & SEO"
14939
  msgid "Website Icon"
14940
  msgstr "Schimba icoana site-ului"
14941
 
 
 
 
 
 
 
 
 
 
14942
  #: view/SeoSettings/Favicon.php:35
14943
  #, fuzzy
14944
  msgid "Activate Favicon"
15711
  #: view/SeoSettings/Social.php:271
15712
  #, fuzzy
15713
  msgid ""
15714
+ "Add the Twitter Card in your tweets so that your Twitter shares look good."
15715
  msgstr ""
15716
  "Adăugați cardul Twitter în tweet-urile dvs. pentru ca share-urile dvs. "
15717
  "Twitter să arate bine."
15970
  "Adăugați codul de verificare Pinterest pentru a conecta site-ul dvs. web la "
15971
  "contul dvs. Pinterest. Accesați %sRich Pins Validator %s"
15972
 
15973
+ #, fuzzy
15974
+ #~ msgid "Some Squirrly Metas are not set correctly."
15975
+ #~ msgstr "Unele metale Squirrly nu sunt setate corect."
15976
+
15977
+ #, fuzzy
15978
+ #~ msgid "Open Graph is not set correctly."
15979
+ #~ msgstr "Open Graph nu este setat corect."
15980
+
15981
+ #, fuzzy
15982
+ #~ msgid "Twitter Card is not set correctly."
15983
+ #~ msgstr "Cardul Twitter nu este setat corect."
15984
+
15985
+ #, fuzzy
15986
+ #~ msgid "Visibility is not set correctly."
15987
+ #~ msgstr "Vizibilitatea nu este setată corect."
15988
+
15989
+ #, fuzzy
15990
+ #~| msgid "Optimize for Keyword"
15991
+ #~ msgid "Optimize the page for a keyword"
15992
+ #~ msgstr "Optimizare dupa cuvant cheie"
15993
+
15994
+ #, fuzzy, php-format
15995
+ #~ msgid ""
15996
+ #~ "The current way your WordPress site is hosted can cause experience issues "
15997
+ #~ "to the way Squirrly SEO works. %s In order to serve you with the best "
15998
+ #~ "data, and make sure that the Page audits can be processed, you will need "
15999
+ #~ "to talk to your hosting provider and tell them to make the following "
16000
+ #~ "settings. %s Please add the IP address 176.9.112.210 in the white-list "
16001
+ #~ "for remote access and it should work."
16002
+ #~ msgstr ""
16003
+ #~ "Modul actual de găzduire a site-ului dvs. WordPress poate provoca "
16004
+ #~ "probleme de experiență asupra modului în care funcționează Squirrly SEO. "
16005
+ #~ "%s Pentru a vă oferi cele mai bune date și pentru a vă asigura că "
16006
+ #~ "procesele de pagină pot fi procesate, va trebui să discutați cu "
16007
+ #~ "furnizorul dvs. de găzduire și să le spuneți să efectueze următoarele "
16008
+ #~ "setări. %s Vă rugăm să adăugați adresa IP 176.9.112.210 în lista albă "
16009
+ #~ "pentru acces la distanță și ar trebui să funcționeze."
16010
+
16011
+ #, fuzzy
16012
+ #~| msgid "This email connects you to Squirrly.co"
16013
+ #~ msgid "Connect to Squirrly Data Cloud"
16014
+ #~ msgstr "Acest email te conecteaza la Squirrly"
16015
+
16016
+ #~ msgid "Squirrly dashboard"
16017
+ #~ msgstr "Dashboard Squirrly"
16018
+
16019
+ #, fuzzy, php-format
16020
+ #~ msgid ""
16021
+ #~ "The current way your WordPress site is hosted can cause experience issues "
16022
+ #~ "to the way Squirrly SEO works. %s In order to serve you with the best "
16023
+ #~ "data, and make sure that the Focus Pages audits can be processed, you "
16024
+ #~ "will need to talk to your hosting provider and tell them to make the "
16025
+ #~ "following settings. %s Please add the IP address 176.9.112.210 in the "
16026
+ #~ "white-list for remote access and it should work."
16027
+ #~ msgstr ""
16028
+ #~ "Modul actual de găzduire a site-ului dvs. WordPress poate provoca "
16029
+ #~ "probleme de experiență asupra modului în care funcționează Squirrly SEO. "
16030
+ #~ "%s Pentru a vă oferi cele mai bune date și pentru a vă asigura că auditul "
16031
+ #~ "Focus Pages poate fi procesat, va trebui să discutați cu furnizorul dvs. "
16032
+ #~ "de hosting și să le spuneți să efectueze următoarele setări. %s Vă rugăm "
16033
+ #~ "să adăugați adresa IP 176.9.112.210 în lista albă pentru acces la "
16034
+ #~ "distanță și ar trebui să funcționeze."
16035
+
16036
  #, fuzzy
16037
  #~| msgid "Squirrly"
16038
  #~ msgid "Start using Squirrly SEO"
16710
  #~ "comments."
16711
  #~ msgstr "Este recomandat sa primesti notificari cand vin comenzi noi"
16712
 
 
 
 
16713
  #~ msgid "Let "
16714
  #~ msgstr "Lasa"
models/Assistant.php CHANGED
@@ -43,7 +43,7 @@ class SQ_Models_Assistant {
43
  */
44
  public function getModal() {
45
  return '
46
- <div id="sq_assistant_modal" class="modal fade" role="dialog">
47
  <div class="modal-dialog modal-lg">
48
  <div class="modal-content bg-light">
49
  <div class="modal-header">
43
  */
44
  public function getModal() {
45
  return '
46
+ <div id="sq_assistant_modal" tabindex="-1" class="modal fade" role="dialog">
47
  <div class="modal-dialog modal-lg">
48
  <div class="modal-content bg-light">
49
  <div class="modal-header">
models/CheckSeo.php CHANGED
@@ -1318,6 +1318,14 @@ class SQ_Models_CheckSeo {
1318
  ///////////////////////////// to do tasks
1319
  $tasks = $this->getTasks();
1320
  foreach ($tasks as $function => $task) {
 
 
 
 
 
 
 
 
1321
 
1322
  ///////////////////DEV ONLY
1323
  //if (SQ_DEBUG) $this->dbtasks[$this->category_name][$function] = $task;
@@ -1330,7 +1338,7 @@ class SQ_Models_CheckSeo {
1330
  if (!isset($this->dbtasks[$this->category_name][$function])) $this->dbtasks[$this->category_name][$function] = array();
1331
  //merge the local and remote task
1332
  $this->dbtasks[$this->category_name][$function] = array_merge($this->dbtasks[$this->category_name][$function], $remote_tasks[$function]);
1333
- }elseif (method_exists($this, $function)) {
1334
  //Call the local function if exists
1335
  if ($result = @call_user_func(array($this, $function))) {
1336
  if (!isset($this->dbtasks[$this->category_name][$function])) $this->dbtasks[$this->category_name][$function] = array();
@@ -1358,26 +1366,7 @@ class SQ_Models_CheckSeo {
1358
 
1359
  public function saveStats() {
1360
  global $wpdb;
1361
- $settings = $stats = array();
1362
-
1363
- $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsMetas();
1364
- $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsJsonld();
1365
- $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsSocialOG();
1366
- $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsSocialTWC();
1367
- $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsSitemap();
1368
- $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsPatterns();
1369
-
1370
- $valid = 0;
1371
- foreach ($settings as $setting) {
1372
- if ($setting) {
1373
- $valid += 1;
1374
- }
1375
- }
1376
-
1377
- $stats['seo_percent'] = 0;
1378
- if ($valid > 0) {
1379
- $stats['seo_percent'] = number_format((($valid * 100) / count($settings)), 0);
1380
- }
1381
 
1382
  $stats['post_count'] = 0;
1383
  if ($row = $wpdb->get_row("SELECT COUNT(`ID`) as count FROM " . $wpdb->posts . " WHERE `post_status` = 'publish'")) {
@@ -1962,46 +1951,9 @@ class SQ_Models_CheckSeo {
1962
  if (!empty($this->focuspages)) {
1963
  foreach ($this->focuspages as $focuspage) {
1964
  if ($focuspage->audit_error) {
1965
- switch ($focuspage->audit_error) {
1966
- case 404:
1967
- case 400:
1968
- $array = array(
1969
- 'warning' => sprintf(__("Focus Page was not found (error %s)", _SQ_PLUGIN_NAME_), $focuspage->audit_error),
1970
- 'message' => __("Task details: The way your WordPress site is currently hosted can affect the way Squirrly SEO operates in order to retrieve and process data about your Focus Pages. It’s important to do everything on your end to ensure that the Focus Pages audits can be generated by our system.", _SQ_PLUGIN_NAME_),
1971
- 'solution' => __("Use a different browser to check if your Focus Page is visible. Whitelist our crawler IP address (176.9.112.210) to allow our server to verify your page so that you’ll receive a full audit.", _SQ_PLUGIN_NAME_),
1972
- 'goal' => __("An error is preventing Squirrly from processing your Focus Page audits.", _SQ_PLUGIN_NAME_),
1973
- );
1974
- break;
1975
- case 301:
1976
- case 302:
1977
- case 'external_redirect':
1978
- $array = array(
1979
- 'warning' => sprintf(__("Your Focus Page is redirected to another page (error %s)", _SQ_PLUGIN_NAME_), $focuspage->audit_error),
1980
- 'message' => sprintf(__("Right now, your Focus Page sends users and search engines to a different URL from the one they originally requested. That’s because you set up a 301 or a 302 redirect for this page. %s A redirect indicates that your Focus Page has moved to a different location. If the wrong type of redirect has been set up, search engines can be become confused as to which page they should rank. %s A redirect also interferes with how Squirrly’s Focus Pages system operates.", _SQ_PLUGIN_NAME_), '<br />', '<br />'),
1981
- 'solution' => __("Choose a page that does NOT redirect to a different page as your Focus Page. Your Focus Page should have a single URL associated to it so that Squirrly can serve you the best data.", _SQ_PLUGIN_NAME_),
1982
- 'goal' => __("Make sure that your Focus Page is NOT redirected to a different page.", _SQ_PLUGIN_NAME_),
1983
- );
1984
- break;
1985
- case 500:
1986
- case 503:
1987
- $array = array(
1988
- 'warning' => sprintf(__("Ensure your Focus Pages can be accessed (error %s)", _SQ_PLUGIN_NAME_), $focuspage->audit_error),
1989
- 'message' => sprintf(__("A server-side error is preventing Squirrly from being able to access and audit your Focus Page. You need to fix this so that Squirrly SEO can analyze your page and serve you complete data on how to improve its chances of ranking. %sThe error can also prevent human visitors from accessing your page, which is a critical issue.", _SQ_PLUGIN_NAME_), '<br />', '<br />'),
1990
- 'solution' => __("Use a different browser to check if your Focus Page is visible. Whitelist our crawler IP address (176.9.112.210) to allow our server to verify your page so that you’ll receive a full audit.", _SQ_PLUGIN_NAME_),
1991
- 'goal' => __("A server-side error is preventing your Focus Pages from being accessed.", _SQ_PLUGIN_NAME_),
1992
- );
1993
- break;
1994
- case 521:
1995
- $array = array(
1996
- 'warning' => sprintf(__("Make sure your Focus Pages can be audited (error %s)", _SQ_PLUGIN_NAME_), $focuspage->audit_error),
1997
- 'message' => __("Squirrly is unable to generate the audit for your Focus Page because it can’t connect to your WordPress site’s server. Why? Your WordPress site’s server may be down, or maybe your server is inadvertently blocking Squirrly’s IP address.", _SQ_PLUGIN_NAME_),
1998
- 'solution' => __("Check to see if your WordPress site’s server is offline. Whitelist our crawler IP address (176.9.112.210) to allow our server to verify your page so that you’ll receive a full audit.", _SQ_PLUGIN_NAME_),
1999
- 'goal' => __("An error prevents Squirrly from gathering critical data about your Focus Page.", _SQ_PLUGIN_NAME_),
2000
- );
2001
- break;
2002
- }
2003
-
2004
  $valid = false;
 
2005
  }
2006
  }
2007
  }
@@ -2010,6 +1962,62 @@ class SQ_Models_CheckSeo {
2010
  return $array;
2011
  }
2012
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2013
  /**
2014
  * Check the Focus Pages for Platform SEO category
2015
  * @return array
@@ -2344,7 +2352,7 @@ class SQ_Models_CheckSeo {
2344
  if (!$this->focuspages) return false;
2345
  $valid = false;
2346
 
2347
- if(!$this->dbtasks[$this->category_name]['FocusPagesInnerLinks']['completed']){
2348
  return false;
2349
  }
2350
 
@@ -2388,7 +2396,7 @@ class SQ_Models_CheckSeo {
2388
  if (!$this->focuspages) return false;
2389
  $valid = false;
2390
 
2391
- if(!$this->dbtasks[$this->category_name]['FocusPagesInnerLinks3']['completed']){
2392
  return false;
2393
  }
2394
 
1318
  ///////////////////////////// to do tasks
1319
  $tasks = $this->getTasks();
1320
  foreach ($tasks as $function => $task) {
1321
+ //For Dev Kit
1322
+ if (in_array('Audits', $task['tools']) && !SQ_Classes_Helpers_Tools::getMenuVisible('show_audit')) {
1323
+ continue;
1324
+ } elseif (in_array('Rankings', $task['tools']) && !SQ_Classes_Helpers_Tools::getMenuVisible('show_rankings')) {
1325
+ continue;
1326
+ } elseif (in_array('Focus Pages', $task['tools']) && !SQ_Classes_Helpers_Tools::getMenuVisible('show_focuspages')) {
1327
+ continue;
1328
+ }
1329
 
1330
  ///////////////////DEV ONLY
1331
  //if (SQ_DEBUG) $this->dbtasks[$this->category_name][$function] = $task;
1338
  if (!isset($this->dbtasks[$this->category_name][$function])) $this->dbtasks[$this->category_name][$function] = array();
1339
  //merge the local and remote task
1340
  $this->dbtasks[$this->category_name][$function] = array_merge($this->dbtasks[$this->category_name][$function], $remote_tasks[$function]);
1341
+ } elseif (method_exists($this, $function)) {
1342
  //Call the local function if exists
1343
  if ($result = @call_user_func(array($this, $function))) {
1344
  if (!isset($this->dbtasks[$this->category_name][$function])) $this->dbtasks[$this->category_name][$function] = array();
1366
 
1367
  public function saveStats() {
1368
  global $wpdb;
1369
+ $stats = array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1370
 
1371
  $stats['post_count'] = 0;
1372
  if ($row = $wpdb->get_row("SELECT COUNT(`ID`) as count FROM " . $wpdb->posts . " WHERE `post_status` = 'publish'")) {
1951
  if (!empty($this->focuspages)) {
1952
  foreach ($this->focuspages as $focuspage) {
1953
  if ($focuspage->audit_error) {
1954
+ $array = $this->getErrorMessage($focuspage->audit_error);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1955
  $valid = false;
1956
+ break;
1957
  }
1958
  }
1959
  }
1962
  return $array;
1963
  }
1964
 
1965
+ public function getErrorMessage($error_code) {
1966
+ switch ($error_code) {
1967
+ case 404:
1968
+ case 400:
1969
+ return array(
1970
+ 'warning' => sprintf(__("Focus Page was not found (error %s)", _SQ_PLUGIN_NAME_), $error_code),
1971
+ 'message' => __("The way your WordPress site is currently hosted can affect the way Squirrly SEO operates in order to retrieve and process data about your Focus Pages. It’s important to do everything on your end to ensure that the Focus Pages audits can be generated by our system.", _SQ_PLUGIN_NAME_),
1972
+ 'solution' => __("Use a different browser to check if your Focus Page is visible. Whitelist our crawler IP address (176.9.112.210) to allow our server to verify your page so that you’ll receive a full audit.", _SQ_PLUGIN_NAME_),
1973
+ 'goal' => __("An error is preventing Squirrly from processing your Focus Page audits.", _SQ_PLUGIN_NAME_),
1974
+ );
1975
+ break;
1976
+ case 301:
1977
+ case 302:
1978
+ case 'external_redirect':
1979
+ return array(
1980
+ 'warning' => sprintf(__("Your Focus Page is redirected to another page (error %s)", _SQ_PLUGIN_NAME_), $error_code),
1981
+ 'message' => sprintf(__("Right now, your Focus Page sends users and search engines to a different URL from the one they originally requested. That’s because you set up a 301 or a 302 redirect for this page. %s A redirect indicates that your Focus Page has moved to a different location. If the wrong type of redirect has been set up, search engines can be become confused as to which page they should rank. %s A redirect also interferes with how Squirrly’s Focus Pages system operates.", _SQ_PLUGIN_NAME_), '<br />', '<br />'),
1982
+ 'solution' => __("Choose a page that does NOT redirect to a different page as your Focus Page. Your Focus Page should have a single URL associated to it so that Squirrly can serve you the best data.", _SQ_PLUGIN_NAME_),
1983
+ 'goal' => __("Make sure that your Focus Page is NOT redirected to a different page.", _SQ_PLUGIN_NAME_),
1984
+ );
1985
+ break;
1986
+ case 500:
1987
+ case 503:
1988
+ return array(
1989
+ 'warning' => sprintf(__("Ensure your Focus Pages can be accessed (error %s)", _SQ_PLUGIN_NAME_), $error_code),
1990
+ 'message' => sprintf(__("A server-side error is preventing Squirrly from being able to access and audit your Focus Page. You need to fix this so that Squirrly SEO can analyze your page and serve you complete data on how to improve its chances of ranking. %sThe error can also prevent human visitors from accessing your page, which is a critical issue.", _SQ_PLUGIN_NAME_), '<br />', '<br />'),
1991
+ 'solution' => __("Use a different browser to check if your Focus Page is visible. Whitelist our crawler IP address (176.9.112.210) to allow our server to verify your page so that you’ll receive a full audit.", _SQ_PLUGIN_NAME_),
1992
+ 'goal' => __("A server-side error is preventing your Focus Pages from being accessed.", _SQ_PLUGIN_NAME_),
1993
+ );
1994
+ break;
1995
+ case 521:
1996
+ return array(
1997
+ 'warning' => sprintf(__("Make sure your Focus Pages can be audited (error %s)", _SQ_PLUGIN_NAME_), $error_code),
1998
+ 'message' => __("Squirrly is unable to generate the audit for your Focus Page because it can’t connect to your WordPress site’s server. Why? Your WordPress site’s server may be down, or maybe your server is inadvertently blocking Squirrly’s IP address.", _SQ_PLUGIN_NAME_),
1999
+ 'solution' => __("Check to see if your WordPress site’s server is offline. Whitelist our crawler IP address (176.9.112.210) to allow our server to verify your page so that you’ll receive a full audit.", _SQ_PLUGIN_NAME_),
2000
+ 'goal' => __("An error prevents Squirrly from gathering critical data about your Focus Page.", _SQ_PLUGIN_NAME_),
2001
+ );
2002
+ break;
2003
+ case 'firewall':
2004
+ return array(
2005
+ 'warning' => __("Make sure your Focus Pages can be audited (firewall protection)", _SQ_PLUGIN_NAME_),
2006
+ 'message' => __("Squirrly is unable to generate the audit for your Focus Page because it can’t connect to your WordPress site’s server. Why? Your WordPress site’s server has a firewall protection and is blocking Squirrly’s IP address.", _SQ_PLUGIN_NAME_),
2007
+ 'solution' => __("Whitelist our crawler IP address (176.9.112.210) to allow our server to verify your page so that you’ll receive a full audit.", _SQ_PLUGIN_NAME_),
2008
+ 'goal' => __("An error prevents Squirrly from gathering critical data about your Focus Page.", _SQ_PLUGIN_NAME_),
2009
+ );
2010
+ break;
2011
+ }
2012
+
2013
+ return array(
2014
+ 'warning' => sprintf(__("Focus Page could not be verified (error: %s)", _SQ_PLUGIN_NAME_), $error_code),
2015
+ 'message' => __("The way your WordPress site is currently hosted can affect the way Squirrly SEO operates in order to retrieve and process data about your Focus Pages. It’s important to do everything on your end to ensure that the Focus Pages audits can be generated by our system.", _SQ_PLUGIN_NAME_),
2016
+ 'solution' => __("Whitelist our crawler IP address (176.9.112.210) to allow our server to verify your page so that you’ll receive a full audit.", _SQ_PLUGIN_NAME_),
2017
+ 'goal' => __("An error is preventing Squirrly from processing your Focus Page audits.", _SQ_PLUGIN_NAME_),
2018
+ );
2019
+ }
2020
+
2021
  /**
2022
  * Check the Focus Pages for Platform SEO category
2023
  * @return array
2352
  if (!$this->focuspages) return false;
2353
  $valid = false;
2354
 
2355
+ if (!$this->dbtasks[$this->category_name]['FocusPagesInnerLinks']['completed']) {
2356
  return false;
2357
  }
2358
 
2396
  if (!$this->focuspages) return false;
2397
  $valid = false;
2398
 
2399
+ if (!$this->dbtasks[$this->category_name]['FocusPagesInnerLinks3']['completed']) {
2400
  return false;
2401
  }
2402
 
models/Compatibility.php CHANGED
@@ -2,18 +2,40 @@
2
 
3
  class SQ_Models_Compatibility {
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  /**
6
  * Prevent other plugins javascript
7
  */
8
  public function fixEnqueueErrors() {
9
  global $wp_styles, $wp_scripts;
10
- $corelib = array('admin-bar', 'colors', 'ie', 'common', 'utils', 'wp-auth-check','dismissible-notices',
11
  'media-editor', 'media-audiovideo', 'media-views', 'imgareaselect', 'mce-view', 'image-edit',
12
- 'wp-color-picker','migrate_style','jquery-ui-draggable','jquery-ui-core',
13
- 'wordfence-global-style','ip2location_country_blocker_admin_menu_styles','wf-adminbar','autoptimize-toolbar',
14
- 'yoast-seo-adminbar','bbp-admin-css','bp-admin-common-css','bp-admin-bar','elementor-common','ithemes-icon-font',
15
- 'wordfence-ls-admin-global','woocommerce_admin_menu_styles','besclwp_cpt_admin_style','uabb-notice-settings',
16
- 'besclwp_cpt_admin_script','itsec-core-admin-notices','sandbox-website','flatsome-panel-css'
17
  );
18
 
19
  foreach ($wp_styles->queue as $key => $queue) {
2
 
3
  class SQ_Models_Compatibility {
4
 
5
+ /**
6
+ * Check compatibility for late loading buffer
7
+ */
8
+ public function checkCompatibility() {
9
+ if (defined('CE_FILE')) { //compatible with other cache plugins
10
+ add_filter('sq_lateloading', '__return_true');
11
+ }
12
+
13
+ if (SQ_Classes_Helpers_Tools::isPluginInstalled('hummingbird-performance/wp-hummingbird.php')) { //compatible with hummingbird
14
+ add_filter('sq_lateloading', '__return_true');
15
+ }
16
+
17
+ if (SQ_Classes_Helpers_Tools::isPluginInstalled('cachify/cachify.php')) { //compatible with cachify
18
+ add_filter('sq_lateloading', '__return_true');
19
+ }
20
+
21
+ global $wp_super_cache_late_init;
22
+ if (isset($wp_super_cache_late_init) && $wp_super_cache_late_init == 1 && !did_action('init')) {
23
+ add_filter('sq_lateloading', '__return_true');
24
+ }
25
+ }
26
+
27
  /**
28
  * Prevent other plugins javascript
29
  */
30
  public function fixEnqueueErrors() {
31
  global $wp_styles, $wp_scripts;
32
+ $corelib = array('admin-bar', 'colors', 'ie', 'common', 'utils', 'wp-auth-check', 'dismissible-notices',
33
  'media-editor', 'media-audiovideo', 'media-views', 'imgareaselect', 'mce-view', 'image-edit',
34
+ 'wp-color-picker', 'migrate_style', 'jquery-ui-draggable', 'jquery-ui-core',
35
+ 'wordfence-global-style', 'ip2location_country_blocker_admin_menu_styles', 'wf-adminbar', 'autoptimize-toolbar',
36
+ 'yoast-seo-adminbar', 'bbp-admin-css', 'bp-admin-common-css', 'bp-admin-bar', 'elementor-common', 'ithemes-icon-font',
37
+ 'wordfence-ls-admin-global', 'woocommerce_admin_menu_styles', 'besclwp_cpt_admin_style', 'uabb-notice-settings',
38
+ 'besclwp_cpt_admin_script', 'itsec-core-admin-notices', 'sandbox-website', 'flatsome-panel-css'
39
  );
40
 
41
  foreach ($wp_styles->queue as $key => $queue) {
models/Frontend.php CHANGED
@@ -194,11 +194,13 @@ class SQ_Models_Frontend {
194
  $footer = array();
195
 
196
  if ($this->_post && $this->_post->sq->doseo) {
197
- SQ_Classes_ObjController::getClass('SQ_Models_Services_Analytics');
198
- $footer['sq_google_analytics'] = apply_filters('sq_google_analytics_amp', false);
 
199
 
200
- SQ_Classes_ObjController::getClass('SQ_Models_Services_Pixel');
201
- $footer['sq_facebook_pixel'] = apply_filters('sq_facebook_pixel_amp', false);
 
202
  }
203
 
204
  $footer = @array_filter($footer);
194
  $footer = array();
195
 
196
  if ($this->_post && $this->_post->sq->doseo) {
197
+ if (SQ_Classes_Helpers_Tools::getOption('sq_auto_tracking')) {
198
+ SQ_Classes_ObjController::getClass('SQ_Models_Services_Analytics');
199
+ $footer['sq_google_analytics'] = apply_filters('sq_google_analytics_amp', false);
200
 
201
+ SQ_Classes_ObjController::getClass('SQ_Models_Services_Pixel');
202
+ $footer['sq_facebook_pixel'] = apply_filters('sq_facebook_pixel_amp', false);
203
+ }
204
  }
205
 
206
  $footer = @array_filter($footer);
models/Menu.php CHANGED
@@ -327,49 +327,49 @@ class SQ_Models_Menu {
327
  'title' => __("SEO Metas", _SQ_PLUGIN_NAME_),
328
  'description' => __("required on-page metas", _SQ_PLUGIN_NAME_),
329
  'capability' => 'sq_manage_settings',
330
- 'icon' => 'settings_92.png'
331
  ),
332
  'sq_seosettings/jsonld' => array(
333
  'title' => __("JSON LD", _SQ_PLUGIN_NAME_),
334
  'description' => __("google structured data", _SQ_PLUGIN_NAME_),
335
  'capability' => 'sq_manage_settings',
336
- 'icon' => 'settings_92.png'
337
  ),
338
  'sq_seosettings/social' => array(
339
  'title' => __("Social Media", _SQ_PLUGIN_NAME_),
340
  'description' => __("social share options", _SQ_PLUGIN_NAME_),
341
  'capability' => 'sq_manage_settings',
342
- 'icon' => 'settings_92.png'
343
  ),
344
  'sq_seosettings/tracking' => array(
345
  'title' => __("Tracking Tools", _SQ_PLUGIN_NAME_),
346
  'description' => __("google analytics, pixel, etc.", _SQ_PLUGIN_NAME_),
347
  'capability' => 'sq_manage_settings',
348
- 'icon' => 'settings_92.png'
349
  ),
350
  'sq_seosettings/webmaster' => array(
351
  'title' => __("Connection", _SQ_PLUGIN_NAME_),
352
  'description' => __("webmaster tools", _SQ_PLUGIN_NAME_),
353
  'capability' => 'sq_manage_settings',
354
- 'icon' => 'settings_92.png'
355
  ),
356
  'sq_seosettings/sitemap' => array(
357
  'title' => __("Sitemap XML", _SQ_PLUGIN_NAME_),
358
  'description' => __("setup the sitemap", _SQ_PLUGIN_NAME_),
359
  'capability' => 'sq_manage_settings',
360
- 'icon' => 'settings_92.png'
361
  ),
362
  'sq_seosettings/robots' => array(
363
  'title' => __("Robots.txt", _SQ_PLUGIN_NAME_),
364
  'description' => __("search engine filters", _SQ_PLUGIN_NAME_),
365
  'capability' => 'sq_manage_settings',
366
- 'icon' => 'settings_92.png'
367
  ),
368
  'sq_seosettings/favicon' => array(
369
  'title' => __("Favicon", _SQ_PLUGIN_NAME_),
370
  'description' => __("add website icon", _SQ_PLUGIN_NAME_),
371
  'capability' => 'sq_manage_settings',
372
- 'icon' => 'settings_92.png'
373
  ),
374
  'sq_seosettings/backup' => array(
375
  'title' => __("Import/Export", _SQ_PLUGIN_NAME_),
327
  'title' => __("SEO Metas", _SQ_PLUGIN_NAME_),
328
  'description' => __("required on-page metas", _SQ_PLUGIN_NAME_),
329
  'capability' => 'sq_manage_settings',
330
+ 'icon' => 'metas_92.png'
331
  ),
332
  'sq_seosettings/jsonld' => array(
333
  'title' => __("JSON LD", _SQ_PLUGIN_NAME_),
334
  'description' => __("google structured data", _SQ_PLUGIN_NAME_),
335
  'capability' => 'sq_manage_settings',
336
+ 'icon' => 'jsonld_92.png'
337
  ),
338
  'sq_seosettings/social' => array(
339
  'title' => __("Social Media", _SQ_PLUGIN_NAME_),
340
  'description' => __("social share options", _SQ_PLUGIN_NAME_),
341
  'capability' => 'sq_manage_settings',
342
+ 'icon' => 'social_92.png'
343
  ),
344
  'sq_seosettings/tracking' => array(
345
  'title' => __("Tracking Tools", _SQ_PLUGIN_NAME_),
346
  'description' => __("google analytics, pixel, etc.", _SQ_PLUGIN_NAME_),
347
  'capability' => 'sq_manage_settings',
348
+ 'icon' => 'traffic_92.png'
349
  ),
350
  'sq_seosettings/webmaster' => array(
351
  'title' => __("Connection", _SQ_PLUGIN_NAME_),
352
  'description' => __("webmaster tools", _SQ_PLUGIN_NAME_),
353
  'capability' => 'sq_manage_settings',
354
+ 'icon' => 'websites_92.png'
355
  ),
356
  'sq_seosettings/sitemap' => array(
357
  'title' => __("Sitemap XML", _SQ_PLUGIN_NAME_),
358
  'description' => __("setup the sitemap", _SQ_PLUGIN_NAME_),
359
  'capability' => 'sq_manage_settings',
360
+ 'icon' => 'sitemap_92.png'
361
  ),
362
  'sq_seosettings/robots' => array(
363
  'title' => __("Robots.txt", _SQ_PLUGIN_NAME_),
364
  'description' => __("search engine filters", _SQ_PLUGIN_NAME_),
365
  'capability' => 'sq_manage_settings',
366
+ 'icon' => 'robots_92.png'
367
  ),
368
  'sq_seosettings/favicon' => array(
369
  'title' => __("Favicon", _SQ_PLUGIN_NAME_),
370
  'description' => __("add website icon", _SQ_PLUGIN_NAME_),
371
  'capability' => 'sq_manage_settings',
372
+ 'icon' => 'favicon_92.png'
373
  ),
374
  'sq_seosettings/backup' => array(
375
  'title' => __("Import/Export", _SQ_PLUGIN_NAME_),
models/bulkseo/Metas.php CHANGED
@@ -7,6 +7,7 @@ class SQ_Models_Bulkseo_Metas extends SQ_Models_Abstract_Assistant {
7
 
8
  protected $_title_length;
9
  protected $_description_length;
 
10
  protected $_title_maxlength = 75;
11
  protected $_description_maxlength = 255;
12
  protected $_keyword = false;
@@ -38,12 +39,8 @@ class SQ_Models_Bulkseo_Metas extends SQ_Models_Abstract_Assistant {
38
  $this->_loadpatterns = false;
39
  }
40
 
41
-
42
- $this->_title_length = strlen(utf8_decode($this->_post->sq->title));
43
- $this->_description_length = strlen(utf8_decode($this->_post->sq->description));
44
- // if ($this->_loadpatterns && ($this->_post->sq_adm->title == '' || $this->_post->sq_adm->description == '')) {
45
- // $this->_pattern = true;
46
- // }
47
 
48
  }
49
 
@@ -249,7 +246,7 @@ class SQ_Models_Bulkseo_Metas extends SQ_Models_Abstract_Assistant {
249
  $keywords = preg_split('/,/', $this->_keyword);
250
  if (!empty($keywords)) {
251
  foreach ($keywords as $keyword) {
252
- if ($keyword <> '' && (SQ_Classes_Helpers_Tools::findStr($this->_post->sq->title, $keyword) !== false)) {
253
  $task['completed'] = true;
254
  return $task;
255
  }
@@ -362,7 +359,7 @@ class SQ_Models_Bulkseo_Metas extends SQ_Models_Abstract_Assistant {
362
  $keywords = preg_split('/,/', $this->_keyword);
363
  if (!empty($keywords)) {
364
  foreach ($keywords as $keyword) {
365
- if ($keyword <> '' && (SQ_Classes_Helpers_Tools::findStr($this->_post->sq->description, $keyword) !== false)) {
366
  $task['completed'] = true;
367
  return $task;
368
  }
7
 
8
  protected $_title_length;
9
  protected $_description_length;
10
+ //
11
  protected $_title_maxlength = 75;
12
  protected $_description_maxlength = 255;
13
  protected $_keyword = false;
39
  $this->_loadpatterns = false;
40
  }
41
 
42
+ $this->_title_length = strlen(html_entity_decode(utf8_decode($this->_post->sq->title)));
43
+ $this->_description_length = strlen(html_entity_decode(utf8_decode($this->_post->sq->description)));
 
 
 
 
44
 
45
  }
46
 
246
  $keywords = preg_split('/,/', $this->_keyword);
247
  if (!empty($keywords)) {
248
  foreach ($keywords as $keyword) {
249
+ if ($keyword <> '' && (SQ_Classes_Helpers_Tools::findStr($this->_post->sq->title, trim($keyword)) !== false)) {
250
  $task['completed'] = true;
251
  return $task;
252
  }
359
  $keywords = preg_split('/,/', $this->_keyword);
360
  if (!empty($keywords)) {
361
  foreach ($keywords as $keyword) {
362
+ if ($keyword <> '' && (SQ_Classes_Helpers_Tools::findStr($this->_post->sq->description, trim($keyword)) !== false)) {
363
  $task['completed'] = true;
364
  return $task;
365
  }
models/bulkseo/Opengraph.php CHANGED
@@ -5,6 +5,9 @@ class SQ_Models_Bulkseo_Opengraph extends SQ_Models_Abstract_Assistant {
5
  protected $_category = 'opengraph';
6
  protected $_patterns;
7
 
 
 
 
8
  protected $_og_title;
9
  protected $_og_description;
10
  protected $_og_media;
@@ -45,6 +48,9 @@ class SQ_Models_Bulkseo_Opengraph extends SQ_Models_Abstract_Assistant {
45
  $this->_og_title = ($this->_post->sq->og_title <> '' ? $this->_post->sq->og_title : SQ_Classes_Helpers_Sanitize::truncate($this->_post->sq->title, self::TITLE_MINLENGTH, $this->_post->sq->og_title_maxlength));
46
  $this->_og_description = ($this->_post->sq->og_description <> '' ? $this->_post->sq->og_description : SQ_Classes_Helpers_Sanitize::truncate($this->_post->sq->description, self::DESCRIPTION_MINLENGTH, $this->_post->sq->og_description_maxlength));
47
 
 
 
 
48
  $this->_og_media = $this->_post->sq->og_media;
49
  if ($this->_og_media == '') {
50
  $images = SQ_Classes_ObjController::getNewClass('SQ_Models_Services_OpenGraph')->getPostImages();
@@ -69,7 +75,7 @@ class SQ_Models_Bulkseo_Opengraph extends SQ_Models_Abstract_Assistant {
69
  ),
70
  'title_length' => array(
71
  'title' => sprintf(__("OG title up to %s chars", _SQ_PLUGIN_NAME_), $this->_title_maxlength),
72
- 'value' => strlen(utf8_decode($this->_og_title)) . ' ' . __('chars', _SQ_PLUGIN_NAME_),
73
  'description' => sprintf(__("Title has to be longer than %s chars and up to %s chars. %s You can change the title max length from %sSEO Settings > Automation%s.", _SQ_PLUGIN_NAME_), self::TITLE_MINLENGTH, $this->_title_maxlength, '<br /><br />', '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation') . '">', '</a>'),
74
  ),
75
  'description_empty' => array(
@@ -79,7 +85,7 @@ class SQ_Models_Bulkseo_Opengraph extends SQ_Models_Abstract_Assistant {
79
  ),
80
  'description_length' => array(
81
  'title' => sprintf(__("OG description up to %s chars", _SQ_PLUGIN_NAME_), $this->_description_maxlength),
82
- 'value' => strlen(utf8_decode($this->_og_description)) . ' ' . __('chars', _SQ_PLUGIN_NAME_),
83
  'description' => sprintf(__("Description has to be longer than %s chars and up to %s chars. %s You can change the description max length from %sSEO Settings > Automation%s.", _SQ_PLUGIN_NAME_), self::DESCRIPTION_MINLENGTH, $this->_description_maxlength, '<br /><br />', '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation') . '">', '</a>'),
84
  ),
85
  'image' => array(
@@ -197,7 +203,7 @@ class SQ_Models_Bulkseo_Opengraph extends SQ_Models_Abstract_Assistant {
197
  $task['pattern'] = true;
198
  }
199
 
200
- $task['completed'] = (strlen(utf8_decode($this->_og_title)) > self::TITLE_MINLENGTH && strlen(utf8_decode($this->_og_title)) < ((int)$this->_title_maxlength + self::CHARS_ERROR));
201
 
202
  return $task;
203
  }
@@ -265,7 +271,7 @@ class SQ_Models_Bulkseo_Opengraph extends SQ_Models_Abstract_Assistant {
265
  $task['pattern'] = true;
266
  }
267
 
268
- $task['completed'] = (strlen(utf8_decode($this->_og_description)) > self::DESCRIPTION_MINLENGTH && strlen(utf8_decode($this->_og_description)) < ((int)$this->_description_maxlength + self::CHARS_ERROR));
269
 
270
  return $task;
271
  }
5
  protected $_category = 'opengraph';
6
  protected $_patterns;
7
 
8
+ protected $_title_length;
9
+ protected $_description_length;
10
+ //
11
  protected $_og_title;
12
  protected $_og_description;
13
  protected $_og_media;
48
  $this->_og_title = ($this->_post->sq->og_title <> '' ? $this->_post->sq->og_title : SQ_Classes_Helpers_Sanitize::truncate($this->_post->sq->title, self::TITLE_MINLENGTH, $this->_post->sq->og_title_maxlength));
49
  $this->_og_description = ($this->_post->sq->og_description <> '' ? $this->_post->sq->og_description : SQ_Classes_Helpers_Sanitize::truncate($this->_post->sq->description, self::DESCRIPTION_MINLENGTH, $this->_post->sq->og_description_maxlength));
50
 
51
+ $this->_title_length = strlen(html_entity_decode(utf8_decode($this->_og_title)));
52
+ $this->_description_length = strlen(html_entity_decode(utf8_decode($this->_og_description)));
53
+
54
  $this->_og_media = $this->_post->sq->og_media;
55
  if ($this->_og_media == '') {
56
  $images = SQ_Classes_ObjController::getNewClass('SQ_Models_Services_OpenGraph')->getPostImages();
75
  ),
76
  'title_length' => array(
77
  'title' => sprintf(__("OG title up to %s chars", _SQ_PLUGIN_NAME_), $this->_title_maxlength),
78
+ 'value' => $this->_title_length . ' ' . __('chars', _SQ_PLUGIN_NAME_),
79
  'description' => sprintf(__("Title has to be longer than %s chars and up to %s chars. %s You can change the title max length from %sSEO Settings > Automation%s.", _SQ_PLUGIN_NAME_), self::TITLE_MINLENGTH, $this->_title_maxlength, '<br /><br />', '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation') . '">', '</a>'),
80
  ),
81
  'description_empty' => array(
85
  ),
86
  'description_length' => array(
87
  'title' => sprintf(__("OG description up to %s chars", _SQ_PLUGIN_NAME_), $this->_description_maxlength),
88
+ 'value' => $this->_description_length . ' ' . __('chars', _SQ_PLUGIN_NAME_),
89
  'description' => sprintf(__("Description has to be longer than %s chars and up to %s chars. %s You can change the description max length from %sSEO Settings > Automation%s.", _SQ_PLUGIN_NAME_), self::DESCRIPTION_MINLENGTH, $this->_description_maxlength, '<br /><br />', '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation') . '">', '</a>'),
90
  ),
91
  'image' => array(
203
  $task['pattern'] = true;
204
  }
205
 
206
+ $task['completed'] = ($this->_title_length > self::TITLE_MINLENGTH && $this->_title_length < ((int)$this->_title_maxlength + self::CHARS_ERROR));
207
 
208
  return $task;
209
  }
271
  $task['pattern'] = true;
272
  }
273
 
274
+ $task['completed'] = ($this->_description_length > self::DESCRIPTION_MINLENGTH && $this->_description_length < ((int)$this->_description_maxlength + self::CHARS_ERROR));
275
 
276
  return $task;
277
  }
models/bulkseo/Twittercard.php CHANGED
@@ -4,6 +4,9 @@ class SQ_Models_Bulkseo_Twittercard extends SQ_Models_Abstract_Assistant {
4
 
5
  protected $_category = 'twittercard';
6
 
 
 
 
7
  protected $_tw_title;
8
  protected $_tw_description;
9
  protected $_tw_media;
@@ -43,6 +46,9 @@ class SQ_Models_Bulkseo_Twittercard extends SQ_Models_Abstract_Assistant {
43
  $this->_tw_title = ($this->_post->sq->tw_title <> '' ? $this->_post->sq->tw_title : SQ_Classes_Helpers_Sanitize::truncate($this->_post->sq->title, 10, $this->_post->sq->tw_title_maxlength));
44
  $this->_tw_description = ($this->_post->sq->tw_description <> '' ? $this->_post->sq->tw_description : SQ_Classes_Helpers_Sanitize::truncate($this->_post->sq->description, 10, $this->_post->sq->tw_description_maxlength));
45
 
 
 
 
46
  $this->_tw_media = $this->_post->sq->tw_media;
47
  if ($this->_tw_media == '') {
48
  $images = SQ_Classes_ObjController::getNewClass('SQ_Models_Services_OpenGraph')->getPostImages();
@@ -66,7 +72,7 @@ class SQ_Models_Bulkseo_Twittercard extends SQ_Models_Abstract_Assistant {
66
  ),
67
  'title_length' => array(
68
  'title' => sprintf(__("TC title up to %s chars", _SQ_PLUGIN_NAME_), $this->_title_maxlength),
69
- 'value' => strlen(utf8_decode($this->_tw_title)) . ' ' . __('chars', _SQ_PLUGIN_NAME_),
70
  'description' => sprintf(__("Title has to be longer than %s chars and up to %s chars. %s You can change the title max length from %sSEO Settings > Automation%s.", _SQ_PLUGIN_NAME_), self::TITLE_MINLENGTH, $this->_title_maxlength, '<br /><br />', '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation') . '">', '</a>'),
71
  ),
72
  'description_empty' => array(
@@ -76,7 +82,7 @@ class SQ_Models_Bulkseo_Twittercard extends SQ_Models_Abstract_Assistant {
76
  ),
77
  'description_length' => array(
78
  'title' => sprintf(__("TC description up to %s chars", _SQ_PLUGIN_NAME_), $this->_description_maxlength),
79
- 'value' => strlen(utf8_decode($this->_tw_description)) . ' ' . __('chars', _SQ_PLUGIN_NAME_),
80
  'description' => sprintf(__("Description has to be longer than %s chars and up to %s chars. %s You can change the description max length from %sSEO Settings > Automation%s.", _SQ_PLUGIN_NAME_), self::DESCRIPTION_MINLENGTH, $this->_description_maxlength, '<br /><br />', '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation') . '">', '</a>'),
81
  ),
82
  'image' => array(
@@ -194,7 +200,7 @@ class SQ_Models_Bulkseo_Twittercard extends SQ_Models_Abstract_Assistant {
194
  $task['pattern'] = true;
195
  }
196
 
197
- $task['completed'] = (strlen(utf8_decode($this->_tw_title)) > self::TITLE_MINLENGTH && strlen(utf8_decode($this->_tw_title)) < ((int)$this->_title_maxlength + self::CHARS_ERROR));
198
 
199
  return $task;
200
  }
@@ -262,7 +268,7 @@ class SQ_Models_Bulkseo_Twittercard extends SQ_Models_Abstract_Assistant {
262
  $task['pattern'] = true;
263
  }
264
 
265
- $task['completed'] = (strlen(utf8_decode($this->_tw_description)) > self::DESCRIPTION_MINLENGTH && strlen(utf8_decode($this->_tw_description)) < ((int)$this->_description_maxlength + self::CHARS_ERROR));
266
 
267
  return $task;
268
  }
4
 
5
  protected $_category = 'twittercard';
6
 
7
+ protected $_title_length;
8
+ protected $_description_length;
9
+ //
10
  protected $_tw_title;
11
  protected $_tw_description;
12
  protected $_tw_media;
46
  $this->_tw_title = ($this->_post->sq->tw_title <> '' ? $this->_post->sq->tw_title : SQ_Classes_Helpers_Sanitize::truncate($this->_post->sq->title, 10, $this->_post->sq->tw_title_maxlength));
47
  $this->_tw_description = ($this->_post->sq->tw_description <> '' ? $this->_post->sq->tw_description : SQ_Classes_Helpers_Sanitize::truncate($this->_post->sq->description, 10, $this->_post->sq->tw_description_maxlength));
48
 
49
+ $this->_title_length = strlen(html_entity_decode(utf8_decode($this->_tw_title)));
50
+ $this->_description_length = strlen(html_entity_decode(utf8_decode($this->_tw_description)));
51
+
52
  $this->_tw_media = $this->_post->sq->tw_media;
53
  if ($this->_tw_media == '') {
54
  $images = SQ_Classes_ObjController::getNewClass('SQ_Models_Services_OpenGraph')->getPostImages();
72
  ),
73
  'title_length' => array(
74
  'title' => sprintf(__("TC title up to %s chars", _SQ_PLUGIN_NAME_), $this->_title_maxlength),
75
+ 'value' => $this->_title_length . ' ' . __('chars', _SQ_PLUGIN_NAME_),
76
  'description' => sprintf(__("Title has to be longer than %s chars and up to %s chars. %s You can change the title max length from %sSEO Settings > Automation%s.", _SQ_PLUGIN_NAME_), self::TITLE_MINLENGTH, $this->_title_maxlength, '<br /><br />', '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation') . '">', '</a>'),
77
  ),
78
  'description_empty' => array(
82
  ),
83
  'description_length' => array(
84
  'title' => sprintf(__("TC description up to %s chars", _SQ_PLUGIN_NAME_), $this->_description_maxlength),
85
+ 'value' => $this->_description_length . ' ' . __('chars', _SQ_PLUGIN_NAME_),
86
  'description' => sprintf(__("Description has to be longer than %s chars and up to %s chars. %s You can change the description max length from %sSEO Settings > Automation%s.", _SQ_PLUGIN_NAME_), self::DESCRIPTION_MINLENGTH, $this->_description_maxlength, '<br /><br />', '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation') . '">', '</a>'),
87
  ),
88
  'image' => array(
200
  $task['pattern'] = true;
201
  }
202
 
203
+ $task['completed'] = ($this->_title_length > self::TITLE_MINLENGTH && $this->_title_length < ((int)$this->_title_maxlength + self::CHARS_ERROR));
204
 
205
  return $task;
206
  }
268
  $task['pattern'] = true;
269
  }
270
 
271
+ $task['completed'] = ($this->_description_length > self::DESCRIPTION_MINLENGTH && $this->_description_length < ((int)$this->_description_maxlength + self::CHARS_ERROR));
272
 
273
  return $task;
274
  }
models/focuspages/Indexability.php CHANGED
@@ -155,6 +155,11 @@ class SQ_Models_Focuspages_Indexability extends SQ_Models_Abstract_Assistant {
155
  return $task;
156
  }
157
 
 
 
 
 
 
158
  $task['completed'] = false;
159
  return $task;
160
  }
155
  return $task;
156
  }
157
 
158
+ if (isset($this->_audit->data->serp_checker->position) && $this->_audit->data->serp_checker->position) {
159
+ $task['completed'] = true;
160
+ return $task;
161
+ }
162
+
163
  $task['completed'] = false;
164
  return $task;
165
  }
models/focuspages/Keyword.php CHANGED
@@ -150,6 +150,12 @@ class SQ_Models_Focuspages_Keyword extends SQ_Models_Abstract_Assistant {
150
  } elseif (!$this->_completed) {
151
  if (isset($this->_audit->data->serp_checker->position) && $this->_audit->data->serp_checker->position > 0 && $this->_audit->data->serp_checker->position <= 10) {
152
  return __("Congratulations for ranking with this keyword, but it will require special attention from you to keep it within TOP 10 positions", _SQ_PLUGIN_NAME_);
 
 
 
 
 
 
153
  }
154
  }
155
 
150
  } elseif (!$this->_completed) {
151
  if (isset($this->_audit->data->serp_checker->position) && $this->_audit->data->serp_checker->position > 0 && $this->_audit->data->serp_checker->position <= 10) {
152
  return __("Congratulations for ranking with this keyword, but it will require special attention from you to keep it within TOP 10 positions", _SQ_PLUGIN_NAME_);
153
+ }else {
154
+ foreach ($this->_tasks[$this->_category] as $task) {
155
+ if ($task['completed'] === false) {
156
+ return __("Click to open the Assistant in the right sidebar and follow the instructions.", _SQ_PLUGIN_NAME_);
157
+ }
158
+ }
159
  }
160
  }
161
 
models/focuspages/Snippet.php CHANGED
@@ -52,7 +52,7 @@ class SQ_Models_Focuspages_Snippet extends SQ_Models_Abstract_Assistant {
52
  $keywords = explode(',', $this->_post->sq->keywords);
53
 
54
  foreach ($keywords as $keyword) {
55
- if ($this->_keyword_in_title = (stripos($this->_post->sq->title, $keyword) !== false)) {
56
  break;
57
  }
58
  }
@@ -66,7 +66,7 @@ class SQ_Models_Focuspages_Snippet extends SQ_Models_Abstract_Assistant {
66
  $keywords = explode(',', $this->_post->sq->keywords);
67
 
68
  foreach ($keywords as $keyword) {
69
- if ($this->_keyword_in_description = (stripos($this->_post->sq->description, $keyword) !== false)) {
70
  break;
71
  }
72
  }
@@ -89,39 +89,41 @@ class SQ_Models_Focuspages_Snippet extends SQ_Models_Abstract_Assistant {
89
  'title' => __("Title", _SQ_PLUGIN_NAME_),
90
  'value' => $this->_title,
91
  'penalty' => 5,
92
- 'description' => sprintf(__('To turn this task to green, go and define a title for this page. You can easily do this by using the %sSnippet%s from Squirrly SEO. %s Make sure that you have a Title defined for your Focus Page. %s Not having a title defined is bad for both search engines and Humans. %s Why? %s It\'s weird for someone to try to figure out if they landed on your Pricing page, and not get a clear answer. If you have multiple pricing pages (in case your site displays multiple products) then your title should only contain the brand name of that product.', _SQ_PLUGIN_NAME_),'<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo', array('sid=' . (isset($this->_post->ID) ? $this->_post->ID : ''), 'stype=' . (isset($this->_post->post_type) ? $this->_post->post_type : ''))) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />', '<br /><br />'),
93
  ),
94
  'description' => array(
95
  'title' => __("Description", _SQ_PLUGIN_NAME_),
96
  'value' => $this->_description,
97
- 'description' => sprintf(__('To turn this task to green, go and define a %sMeta description%s for this page. You can easily do this by using the Snippet from Squirrly SEO. %s Make sure that you have a META description set up for this Focus Page. %s The meta description is very important for showing others the value they can find by clicking to go to your page. %s Think of it as an awesome ad that gets people excited enough that they visit your page after reading it. %s Sometimes, Google displays the exact META description that you create inside the search result pages. Use great descriptions for pages on your site to boost CTR (click-through rates).', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo', array('sid=' . (isset($this->_post->ID) ? $this->_post->ID : ''), 'stype=' . (isset($this->_post->post_type) ? $this->_post->post_type : ''))) . '" target="_blank">', '</a>','<br /><br />', '<br /><br />', '<br /><br />', '<br /><br />'),
98
  ),
99
  'keywordtitle' => array(
100
  'title' => __("Keyword in title", _SQ_PLUGIN_NAME_),
101
  'penalty' => 5,
 
102
  'description' => sprintf(__('Your keyword must be present in the title of the page. %s It\'s a very important element through which you make sure that you connect the searcher\'s intent to the content on your page. %s If I\'m looking for "buy cheap smartwatch" and you give me a page called "Luna Presentation", I will never click your page. Why? Because I might not know that Luna is a smartwatch designed by VectorWatch. %s "Buy Cheap Smartwatch - Luna by VectorWatch" would be a much better choice for a title.', _SQ_PLUGIN_NAME_), '<br /><br />', '<br /><br />', '<br /><br />'),
103
  ),
104
  'keyworddescription' => array(
105
  'title' => __("Keyword in description", _SQ_PLUGIN_NAME_),
 
106
  'description' => sprintf(__('Same as with the title task. %s If a user reads the description of your page on Google, but cannot find the keyword they searched for in that text, then they\'d have very low chances of actually clicking and visiting your page. %s They\'d go to the next page ranked on Google for that keyword. %s Think about this: Google itself is trying more and more to display keywords in the description of the pages it bring to TOP 10. It\'s pretty clear they care a lot about this, because that\'s what people want to find on the search engine.', _SQ_PLUGIN_NAME_), '<br /><br />', '<br /><br />', '<br /><br />'),
107
  ),
108
  'ogdetails' => array(
109
  'title' => __("Open Graph - full definition", _SQ_PLUGIN_NAME_),
110
  'penalty' => 1,
111
- 'description' => sprintf(__('To turn this task to green, you can easily use the %sSnippet%s from Squirrly SEO to get all the definitions in place. %s With this task, we make sure that you have the full Open Graph definitions created for this Focus Page. %s There are many things which could interfere with the code, there are times when you could forget setting some of the elements up, so Squirrly SEO helps you make sure that ALL the og tags are present. %s And yes, this is relevant for your search engine position placements.', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo', array('sid=' . (isset($this->_post->ID) ? $this->_post->ID : ''), 'stype=' . (isset($this->_post->post_type) ? $this->_post->post_type : ''))) . '" target="_blank">', '</a>','<br /><br />', '<br /><br />', '<br /><br />'),
112
  ),
113
  'tcdetails' => array(
114
  'title' => __("Twitter Cards - full definition", _SQ_PLUGIN_NAME_),
115
  'penalty' => 1,
116
- 'description' => sprintf(__('To turn this task to green, you can easily use the %sSnippet%s from Squirrly SEO to get all the definitions in place. %s Checking to make sure that your Twitter Cards definitions are made properly. %s Same as with the Open Graph task, Squirrly SEO makes sure to check for all the required definitions, so that you won\'t miss a beat.', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo', array('sid=' . (isset($this->_post->ID) ? $this->_post->ID : ''), 'stype=' . (isset($this->_post->post_type) ? $this->_post->post_type : ''))) . '" target="_blank">', '</a>','<br /><br />', '<br /><br />'),
117
  ),
118
  'jsondetails' => array(
119
  'title' => __("JSON-LD definition", _SQ_PLUGIN_NAME_),
120
- 'description' => sprintf(__('To turn this task to green, you can easily use the JSON-LD section inside %sSquirrly > SEO Settings > JSON-LD%s. %s Make sure that you complete all fields with the proper information. %s This gives important Semantic context to Google and it plays a role in determining how high your page should be placed in search rankings. %s You can validate your existing JSON-LD with: %shttps://search.google.com/structured-data/testing-tool%s', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'jsonld') . '" target="_blank">', '</a>','<br /><br />', '<br /><br />', '<br /><br />', '<a href="https://search.google.com/structured-data/testing-tool" target="_blank">', '</a>'),
121
  ),
122
  'customization' => array(
123
  'title' => __("Customized", _SQ_PLUGIN_NAME_),
124
- 'description' => sprintf(__('The Snippets of your most important pages should be customized. %s Use the %sSnippet%s from Squirrly SEO to customize the meta settings, the open graph, etc. for this page. %s Since Focus Pages are the most important pages on your site, you\'ll want people to love the search engine listings that you build for this page. %s Therefore, you should define a custom SEO listing to improve the number of clicks you get when people DO find your page on search engines. %s NOTE: sometimes Google tries to create automated snippets and display those, but it\'s just an experiment they run. Most of the times, your own custom snippet will be the one that gets displayed.', _SQ_PLUGIN_NAME_), '<br /><br />','<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo', array('sid=' . (isset($this->_post->ID) ? $this->_post->ID : ''), 'stype=' . (isset($this->_post->post_type) ? $this->_post->post_type : ''))) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />'),
125
  ),
126
  );
127
 
52
  $keywords = explode(',', $this->_post->sq->keywords);
53
 
54
  foreach ($keywords as $keyword) {
55
+ if ($this->_keyword_in_title = (stripos($this->_post->sq->title, trim($keyword)) !== false)) {
56
  break;
57
  }
58
  }
66
  $keywords = explode(',', $this->_post->sq->keywords);
67
 
68
  foreach ($keywords as $keyword) {
69
+ if ($this->_keyword_in_description = (stripos($this->_post->sq->description, trim($keyword)) !== false)) {
70
  break;
71
  }
72
  }
89
  'title' => __("Title", _SQ_PLUGIN_NAME_),
90
  'value' => $this->_title,
91
  'penalty' => 5,
92
+ 'description' => sprintf(__('To turn this task to green, go and define a title for this page. You can easily do this by using the %sSnippet%s from Squirrly SEO. %s Make sure that you have a Title defined for your Focus Page. %s Not having a title defined is bad for both search engines and Humans. %s Why? %s It\'s weird for someone to try to figure out if they landed on your Pricing page, and not get a clear answer. If you have multiple pricing pages (in case your site displays multiple products) then your title should only contain the brand name of that product.', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo', array('sid=' . (isset($this->_post->ID) ? $this->_post->ID : ''), 'stype=' . (isset($this->_post->post_type) ? $this->_post->post_type : ''))) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />', '<br /><br />'),
93
  ),
94
  'description' => array(
95
  'title' => __("Description", _SQ_PLUGIN_NAME_),
96
  'value' => $this->_description,
97
+ 'description' => sprintf(__('To turn this task to green, go and define a %sMeta description%s for this page. You can easily do this by using the Snippet from Squirrly SEO. %s Make sure that you have a META description set up for this Focus Page. %s The meta description is very important for showing others the value they can find by clicking to go to your page. %s Think of it as an awesome ad that gets people excited enough that they visit your page after reading it. %s Sometimes, Google displays the exact META description that you create inside the search result pages. Use great descriptions for pages on your site to boost CTR (click-through rates).', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo', array('sid=' . (isset($this->_post->ID) ? $this->_post->ID : ''), 'stype=' . (isset($this->_post->post_type) ? $this->_post->post_type : ''))) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />', '<br /><br />'),
98
  ),
99
  'keywordtitle' => array(
100
  'title' => __("Keyword in title", _SQ_PLUGIN_NAME_),
101
  'penalty' => 5,
102
+ 'value' => sprintf(__('Keyword %s must be present in Title', _SQ_PLUGIN_NAME_), '"'.$this->_keyword.'"'),
103
  'description' => sprintf(__('Your keyword must be present in the title of the page. %s It\'s a very important element through which you make sure that you connect the searcher\'s intent to the content on your page. %s If I\'m looking for "buy cheap smartwatch" and you give me a page called "Luna Presentation", I will never click your page. Why? Because I might not know that Luna is a smartwatch designed by VectorWatch. %s "Buy Cheap Smartwatch - Luna by VectorWatch" would be a much better choice for a title.', _SQ_PLUGIN_NAME_), '<br /><br />', '<br /><br />', '<br /><br />'),
104
  ),
105
  'keyworddescription' => array(
106
  'title' => __("Keyword in description", _SQ_PLUGIN_NAME_),
107
+ 'value' => sprintf(__('Keyword %s must be present in Description', _SQ_PLUGIN_NAME_), '"'.$this->_keyword.'"'),
108
  'description' => sprintf(__('Same as with the title task. %s If a user reads the description of your page on Google, but cannot find the keyword they searched for in that text, then they\'d have very low chances of actually clicking and visiting your page. %s They\'d go to the next page ranked on Google for that keyword. %s Think about this: Google itself is trying more and more to display keywords in the description of the pages it bring to TOP 10. It\'s pretty clear they care a lot about this, because that\'s what people want to find on the search engine.', _SQ_PLUGIN_NAME_), '<br /><br />', '<br /><br />', '<br /><br />'),
109
  ),
110
  'ogdetails' => array(
111
  'title' => __("Open Graph - full definition", _SQ_PLUGIN_NAME_),
112
  'penalty' => 1,
113
+ 'description' => sprintf(__('To turn this task to green, you can easily use the %sSnippet%s from Squirrly SEO to get all the definitions in place. %s With this task, we make sure that you have the full Open Graph definitions created for this Focus Page. %s There are many things which could interfere with the code, there are times when you could forget setting some of the elements up, so Squirrly SEO helps you make sure that ALL the og tags are present. %s And yes, this is relevant for your search engine position placements.', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo', array('sid=' . (isset($this->_post->ID) ? $this->_post->ID : ''), 'stype=' . (isset($this->_post->post_type) ? $this->_post->post_type : ''))) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />'),
114
  ),
115
  'tcdetails' => array(
116
  'title' => __("Twitter Cards - full definition", _SQ_PLUGIN_NAME_),
117
  'penalty' => 1,
118
+ 'description' => sprintf(__('To turn this task to green, you can easily use the %sSnippet%s from Squirrly SEO to get all the definitions in place. %s Checking to make sure that your Twitter Cards definitions are made properly. %s Same as with the Open Graph task, Squirrly SEO makes sure to check for all the required definitions, so that you won\'t miss a beat.', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo', array('sid=' . (isset($this->_post->ID) ? $this->_post->ID : ''), 'stype=' . (isset($this->_post->post_type) ? $this->_post->post_type : ''))) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />'),
119
  ),
120
  'jsondetails' => array(
121
  'title' => __("JSON-LD definition", _SQ_PLUGIN_NAME_),
122
+ 'description' => sprintf(__('To turn this task to green, you can easily use the JSON-LD section inside %sSquirrly > SEO Settings > JSON-LD%s. %s Make sure that you complete all fields with the proper information. %s This gives important Semantic context to Google and it plays a role in determining how high your page should be placed in search rankings. %s You can validate your existing JSON-LD with: %shttps://search.google.com/structured-data/testing-tool%s', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'jsonld') . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />', '<a href="https://search.google.com/structured-data/testing-tool" target="_blank">', '</a>'),
123
  ),
124
  'customization' => array(
125
  'title' => __("Customized", _SQ_PLUGIN_NAME_),
126
+ 'description' => sprintf(__('The Snippets of your most important pages should be customized. %s Use the %sSnippet%s from Squirrly SEO to customize the meta settings, the open graph, etc. for this page. %s Since Focus Pages are the most important pages on your site, you\'ll want people to love the search engine listings that you build for this page. %s Therefore, you should define a custom SEO listing to improve the number of clicks you get when people DO find your page on search engines. %s NOTE: sometimes Google tries to create automated snippets and display those, but it\'s just an experiment they run. Most of the times, your own custom snippet will be the one that gets displayed.', _SQ_PLUGIN_NAME_), '<br /><br />', '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo', array('sid=' . (isset($this->_post->ID) ? $this->_post->ID : ''), 'stype=' . (isset($this->_post->post_type) ? $this->_post->post_type : ''))) . '" target="_blank">', '</a>', '<br /><br />', '<br /><br />', '<br /><br />'),
127
  ),
128
  );
129
 
readme.txt CHANGED
@@ -392,6 +392,23 @@ Type a keyword to the right of the screen and start using Squirrly Seo. Enjoy!
392
  Squirrly SEO 10.0.0 it's a big update. We've re-designed the UX and added many new features. If you don't want to change the current experience you have with Squirrly you can remain on the current stable version of Squirrly SEO.
393
 
394
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
395
  = 10.0.04 - 05/25/2020 =
396
  * Fix - Audit Term ID in the Audit Page returned an error if post ID wasn't found
397
  * Fix - Focus Pages audit info to show data in case not all the Focus Pages have valid audits
392
  Squirrly SEO 10.0.0 it's a big update. We've re-designed the UX and added many new features. If you don't want to change the current experience you have with Squirrly you can remain on the current stable version of Squirrly SEO.
393
 
394
  == Changelog ==
395
+ = 10.0.06 - 06/01/2020 =
396
+ * Update - Inspect URL when the Audit can't be made
397
+ * Update - Add all the Features Categories in the Overview
398
+ * Update - Added the icons for all features
399
+ * Fix - Better detection on URL crawling
400
+ * Fix - Compatibility with cache plugins like Hummingbird and Cachify
401
+ * Fix - Small CSS bugs and PHP notifications
402
+
403
+ = 10.0.05 - 05/29/2020 =
404
+ * Update - Edit the Blog URL in your Squirrly Cloud
405
+ * Update - Dev Kit with Squirrly SEO 2020
406
+ * Update - Create random collors on new Briefcase Labels
407
+ * Fix - Hide Account information for editors
408
+ * Fix - Show Daily SEO Goals for Editors and Squirrly SEO Editor role
409
+ * Fix - Setup Audit custom email in Squirrly Cloud
410
+ * Fix - Setup Ranking custom country in Squirrly Cloud
411
+
412
  = 10.0.04 - 05/25/2020 =
413
  * Fix - Audit Term ID in the Audit Page returned an error if post ID wasn't found
414
  * Fix - Focus Pages audit info to show data in case not all the Focus Pages have valid audits
squirrly.php CHANGED
@@ -8,7 +8,7 @@
8
  * Description: SEO By Squirrly is for the NON-SEO experts. Get Excellent Seo with Better Content, Ranking and Analytics. For Both Humans and Search Bots.<BR> <a href="http://cloud.squirrly.co/user" target="_blank"><strong>Check your profile</strong></a>
9
  * Author: Squirrly SEO
10
  * Author URI: https://plugin.squirrly.co
11
- * Version: 10.0.04
12
  * License: GPLv2 or later
13
  * License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
14
  * Text Domain: squirrly-seo
@@ -16,9 +16,9 @@
16
  */
17
  if (!defined('SQ_VERSION')) {
18
  /* SET THE CURRENT VERSION ABOVE AND BELOW */
19
- define('SQ_VERSION', '10.0.04');
20
  //The last stable version
21
- define('SQ_STABLE_VERSION', '9.2.21');
22
  // Call config files
23
  try {
24
  require_once(dirname(__FILE__) . '/config/config.php');
8
  * Description: SEO By Squirrly is for the NON-SEO experts. Get Excellent Seo with Better Content, Ranking and Analytics. For Both Humans and Search Bots.<BR> <a href="http://cloud.squirrly.co/user" target="_blank"><strong>Check your profile</strong></a>
9
  * Author: Squirrly SEO
10
  * Author URI: https://plugin.squirrly.co
11
+ * Version: 10.0.06
12
  * License: GPLv2 or later
13
  * License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
14
  * Text Domain: squirrly-seo
16
  */
17
  if (!defined('SQ_VERSION')) {
18
  /* SET THE CURRENT VERSION ABOVE AND BELOW */
19
+ define('SQ_VERSION', '10.0.06');
20
  //The last stable version
21
+ define('SQ_STABLE_VERSION', '10.0.04');
22
  // Call config files
23
  try {
24
  require_once(dirname(__FILE__) . '/config/config.php');
view/Assistant/Settings.php CHANGED
@@ -2,6 +2,12 @@
2
  <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
3
  <?php do_action('sq_notices'); ?>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
 
 
 
 
 
 
5
  <?php echo SQ_Classes_ObjController::getClass('SQ_Models_Menu')->getAdminTabs(SQ_Classes_Helpers_Tools::getValue('tab'), 'sq_assistant'); ?>
6
  <div class="d-flex flex-row flex-nowrap flex-grow-1 bg-white pl-3 pr-0 mr-0">
7
  <div class="flex-grow-1 mr-3 sq_flex">
2
  <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
3
  <?php do_action('sq_notices'); ?>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
+ <?php
6
+ if (!current_user_can('sq_manage_settings')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
+ return;
9
+ }
10
+ ?>
11
  <?php echo SQ_Classes_ObjController::getClass('SQ_Models_Menu')->getAdminTabs(SQ_Classes_Helpers_Tools::getValue('tab'), 'sq_assistant'); ?>
12
  <div class="d-flex flex-row flex-nowrap flex-grow-1 bg-white pl-3 pr-0 mr-0">
13
  <div class="flex-grow-1 mr-3 sq_flex">
view/Audits/Addpage.php CHANGED
@@ -5,7 +5,7 @@
5
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
6
  <?php
7
  if (!current_user_can('sq_manage_focuspages')) {
8
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_) . '</div>';
9
  return;
10
  }
11
  ?>
5
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
6
  <?php
7
  if (!current_user_can('sq_manage_focuspages')) {
8
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_) . '</div>';
9
  return;
10
  }
11
  ?>
view/Audits/Audit.php CHANGED
@@ -5,7 +5,7 @@
5
  <div class="d-flex flex-row flex-nowrap my-0 bg-nav" style="clear: both !important;">
6
  <?php
7
  if (!current_user_can('sq_manage_focuspages')) {
8
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_) . '</div>';
9
  return;
10
  }
11
  ?>
5
  <div class="d-flex flex-row flex-nowrap my-0 bg-nav" style="clear: both !important;">
6
  <?php
7
  if (!current_user_can('sq_manage_focuspages')) {
8
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_) . '</div>';
9
  return;
10
  }
11
  ?>
view/Audits/AuditPageRow.php CHANGED
@@ -27,7 +27,7 @@ if (strtotime($view->auditpage->audit_datetime)) {
27
 
28
  <?php if ($post instanceof SQ_Models_Domain_Post) { ?>
29
  <div class="sq_auditpages_title col-sm-12 px-0 mx-0 font-weight-bold">
30
- <?php echo $post->sq->title ?> <?php echo(($post->post_status <> 'publish' && $post->post_status <> 'inherit' && $post->post_status <> '') ? ' <spam style="font-weight: normal">(' . $post->post_status . ')</spam>' : '') ?>
31
  <?php if ($edit_link) { ?>
32
  <a href="<?php echo $edit_link ?>" target="_blank">
33
  <i class="fa fa-edit" style="font-size: 11px"></i>
@@ -43,10 +43,12 @@ if (strtotime($view->auditpage->audit_datetime)) {
43
  </td>
44
  <?php if ($view->auditpage->audit_error) { ?>
45
  <td>
46
- <div class="text-danger my-2"><?php echo __('Could not create the audit for this URL', _SQ_PLUGIN_NAME_) . ((int)$view->auditpage->audit_error > 0 ? ' (' . __('error code', _SQ_PLUGIN_NAME_) . ': ' . (int)$view->auditpage->audit_error . ')' : '') ?></div>
47
  <div class="text-black-50" style="font-size: 11px">
48
- <em><?php echo sprintf(__('The current way your WordPress site is hosted can cause experience issues to the way Squirrly SEO works. %s In order to serve you with the best data, and make sure that the Page audits can be processed, you will need to talk to your hosting provider and tell them to make the following settings. %s Please add the IP address 176.9.112.210 in the white-list for remote access and it should work.', _SQ_PLUGIN_NAME_), '<br />', '<br />') ?></em>
 
49
  </div>
 
50
  </td>
51
  <?php } else { ?>
52
  <td></td>
27
 
28
  <?php if ($post instanceof SQ_Models_Domain_Post) { ?>
29
  <div class="sq_auditpages_title col-sm-12 px-0 mx-0 font-weight-bold">
30
+ <?php echo (isset($post->sq->title) ? $post->sq->title : '') ?> <?php echo(($post->post_status <> 'publish' && $post->post_status <> 'inherit' && $post->post_status <> '') ? ' <spam style="font-weight: normal">(' . $post->post_status . ')</spam>' : '') ?>
31
  <?php if ($edit_link) { ?>
32
  <a href="<?php echo $edit_link ?>" target="_blank">
33
  <i class="fa fa-edit" style="font-size: 11px"></i>
43
  </td>
44
  <?php if ($view->auditpage->audit_error) { ?>
45
  <td>
46
+ <div class="text-danger my-2"><?php echo __('Could not create the audit for this URL', _SQ_PLUGIN_NAME_) . ' (' . __('error code', _SQ_PLUGIN_NAME_) . ': ' . $view->auditpage->audit_error . ')' ?></div>
47
  <div class="text-black-50" style="font-size: 11px">
48
+ <em><?php echo sprintf(__('The way your WordPress site is currently hosted can affect the way Squirrly SEO operates in order to retrieve and process data about this page. %sIt’s important to do everything on your end to ensure that the audits can be generated by our system. %s Whitelist our crawler IP address (176.9.112.210) to allow our server to verify your page so that you’ll receive a full audit.', _SQ_PLUGIN_NAME_), '<br /><br />', '<br /><br />') ?></em>
49
+ <div class="my-1 text-info sq_previewurl font-weight-bold" style="cursor: pointer" onclick="jQuery('#sq_previewurl_modal').attr('data-post_id', '<?php echo $view->auditpage->user_post_id ?>'); jQuery('#sq_previewurl_modal').sq_inspectURL()" data-dismiss="modal"><?php _e('Inspect URL', _SQ_PLUGIN_NAME_); ?></div>
50
  </div>
51
+
52
  </td>
53
  <?php } else { ?>
54
  <td></td>
view/Audits/Audits.php CHANGED
@@ -5,7 +5,7 @@
5
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
6
  <?php
7
  if (!current_user_can('sq_manage_focuspages')) {
8
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_) . '</div>';
9
  return;
10
  }
11
  ?>
@@ -80,3 +80,16 @@
80
  </div>
81
  </div>
82
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
6
  <?php
7
  if (!current_user_can('sq_manage_focuspages')) {
8
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_) . '</div>';
9
  return;
10
  }
11
  ?>
80
  </div>
81
  </div>
82
  </div>
83
+ <div id="sq_previewurl_modal" tabindex="-1" class="modal fade" role="dialog">
84
+ <div class="modal-dialog modal-lg" style="max-width: 100% !important;">
85
+ <div class="modal-content bg-light">
86
+ <div class="modal-header">
87
+ <h4 class="modal-title"><?php _e('Squirrly Inspect URL', _SQ_PLUGIN_NAME_); ?></h4>
88
+ <i class="fa fa-refresh" style="font-family: FontAwesome, Arial, sans-serif;font-size: 20px !important;cursor: pointer;margin: 2px 10px !important;" onclick="jQuery('#sq_previewurl_modal').sq_inspectURL()"></i>
89
+ <button type="button" class="close" data-dismiss="modal">&times;</button>
90
+ </div>
91
+ <div class="modal-body" style="min-height: 200px; height:calc(100vh - 120px); overflow-y: auto;">
92
+ </div>
93
+ </div>
94
+ </div>
95
+ </div>
view/Audits/Compare.php CHANGED
@@ -8,7 +8,7 @@
8
  <div class="d-flex flex-row flex-nowrap my-0 bg-nav" style="clear: both !important;">
9
  <?php
10
  if (!current_user_can('sq_manage_focuspages')) {
11
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_) . '</div>';
12
  return;
13
  }
14
  ?>
8
  <div class="d-flex flex-row flex-nowrap my-0 bg-nav" style="clear: both !important;">
9
  <?php
10
  if (!current_user_can('sq_manage_focuspages')) {
11
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_) . '</div>';
12
  return;
13
  }
14
  ?>
view/Audits/Settings.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_focuspages')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_focuspages')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
view/Blocks/Account.php CHANGED
@@ -1,10 +1,20 @@
1
  <?php
2
  $whole = $decimal = 0;
3
  if (isset($view->checkin->subscription_devkit) && $view->checkin->subscription_devkit) {
 
 
 
 
 
 
 
 
 
 
4
  return;
5
  }
6
  if (isset($view->checkin->product_price) && (int)$view->checkin->product_price > 0) {
7
- list($whole, $decimal) = explode('.', number_format($view->checkin->product_price,2,'.',''));
8
  }
9
  if (isset($view->checkin->subscription_status) && isset($view->checkin->product_name)) {
10
  if ($view->checkin->subscription_status == 'active' && $view->checkin->product_name == 'Free') {
1
  <?php
2
  $whole = $decimal = 0;
3
  if (isset($view->checkin->subscription_devkit) && $view->checkin->subscription_devkit) {
4
+ ?>
5
+ <div class="card-text col-sm-12 p-0 m-0 border-0">
6
+ <div class="author">
7
+ <i class="avatar sq_icons sq_icon_package"></i>
8
+ </div>
9
+ <div class="title mt-4 mb-0 text-center">
10
+ <h6><?php echo __('Account Info Unavailable', _SQ_PLUGIN_NAME_) ?></h6>
11
+ </div>
12
+ </div>
13
+ <?php
14
  return;
15
  }
16
  if (isset($view->checkin->product_price) && (int)$view->checkin->product_price > 0) {
17
+ list($whole, $decimal) = explode('.', number_format($view->checkin->product_price, 2, '.', ''));
18
  }
19
  if (isset($view->checkin->subscription_status) && isset($view->checkin->product_name)) {
20
  if ($view->checkin->subscription_status == 'active' && $view->checkin->product_name == 'Free') {
view/Blocks/Assistant.php CHANGED
@@ -3,42 +3,8 @@
3
  <div id="sq_assistant_<?php echo $page ?>" class="sq_assistant">
4
  <?php echo SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->getAssistant($page); ?>
5
  </div>
6
- <div class="border"></div>
7
- <?php if ($page == 'sq_dashboard') { ?>
8
- <div class="my-4 py-4">
9
- <div class="col-sm-12 row m-0">
10
- <div class="checker col-sm-12 row m-0 p-0">
11
- <div class="col-sm-12 p-0 m-0 sq-switch sq-switch-sm sq_save_ajax">
12
- <input type="checkbox" id="sq_seoexpert" name="sq_seoexpert" class="sq-switch" data-action="sq_ajax_seosettings_save" data-input="sq_seoexpert" data-name="sq_seoexpert" <?php echo(SQ_Classes_Helpers_Tools::getOption('sq_seoexpert') ? 'checked="checked"' : '') ?> value="1"/>
13
- <label for="sq_seoexpert" class="ml-1"><?php _e('Show Advanced SEO', _SQ_PLUGIN_NAME_); ?></label>
14
- <div class="text-black-50 m-0 mt-2 p-1" style="font-size: 13px;"><?php _e('Switch off to have the simplified version of the settings, intended for Non-SEO Experts.', _SQ_PLUGIN_NAME_); ?></div>
15
- <div class="text-black-50 m-0 mt-2 p-1" style="font-size: 13px;"><?php _e('It will offer the same level of SEO performance, but it will be less customizable.', _SQ_PLUGIN_NAME_); ?></div>
16
- </div>
17
- </div>
18
- </div>
19
- </div>
20
- <div class="border"></div>
21
 
22
- <div class="my-3 py-3">
23
- <div class="col-sm-12 row m-0">
24
- <div class="checker col-sm-12 row m-0 p-0 text-center">
25
- <div class="col-sm-12 my-2 mx-auto p-0 font-weight-bold" style="font-size: 18px;"><?php echo __('We Need Your Support', _SQ_PLUGIN_NAME_) ?></div>
26
-
27
- <div class="col-sm-12 my-2 p-0">
28
- <a href="https://wordpress.org/support/view/plugin-reviews/squirrly-seo#postform" target="_blank">
29
- <img src="<?php echo _SQ_ASSETS_URL_ . 'img/5stars.png' ?>">
30
- </a>
31
- </div>
32
- <div class="col-sm-12 my-2 p-0">
33
- <a href="https://wordpress.org/support/view/plugin-reviews/squirrly-seo#postform" target="_blank" class="font-weight-bold" style="font-size: 16px;">
34
- <?php echo __('Rate us if you like Squirrly SEO', _SQ_PLUGIN_NAME_) ?>
35
- </a>
36
- </div>
37
- </div>
38
- </div>
39
- </div>
40
- <?php } ?>
41
- <div class="border"></div>
42
 
43
  <?php echo SQ_Classes_ObjController::getClass('SQ_Core_BlockKnowledgeBase')->init(); ?>
44
 
3
  <div id="sq_assistant_<?php echo $page ?>" class="sq_assistant">
4
  <?php echo SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->getAssistant($page); ?>
5
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
+ <div class="border my-1"></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
  <?php echo SQ_Classes_ObjController::getClass('SQ_Core_BlockKnowledgeBase')->init(); ?>
10
 
view/Blocks/Connect.php CHANGED
@@ -1,39 +1,41 @@
1
- <div class="card col-sm-12 p-0 m-0 border-0">
2
- <div class="card-body py-1">
3
- <div id="sq_assistant_sq_seosettings" class="sq_assistant">
4
- <form method="post" action="">
5
- <ul id="sq_assistant_tasks_sq_seosettings" class="p-0 m-0">
6
- <?php if (!SQ_Classes_Helpers_Tools::getOption('sq_cloud_connect')) { ?>
 
7
 
8
- <li class="sq_task row border-0" style="cursor: default">
9
- <?php wp_nonce_field('sq_cloud_connect', 'sq_nonce'); ?>
10
- <input type="hidden" name="action" value="sq_cloud_connect"/>
11
- <i class="fa fa-check" title="ssss" data-original-title=""></i>
12
- <div class="message" style="display: none"></div>
13
- <div class="description" style="display: none"><?php _e('This option is used to track innerlinks and insights for your Focus Pages and give detailed informations about them.', _SQ_PLUGIN_NAME_); ?></div>
14
- <h4>
15
- <?php _e('Let Squirrly API get data for Focus Pages', _SQ_PLUGIN_NAME_); ?>
16
- <button type="submit" class="btn btn-primary btn-sm inline p-0 px-3 m-0"><?php _e('Connect', _SQ_PLUGIN_NAME_); ?></button>
17
- </h4>
18
- </li>
19
 
20
- <?php } else { ?>
21
 
22
- <li class="sq_task row completed border-0" style="cursor: default">
23
- <?php wp_nonce_field('sq_cloud_disconnect', 'sq_nonce'); ?>
24
- <input type="hidden" name="action" value="sq_cloud_disconnect"/>
25
- <i class="fa fa-check" title="" data-original-title=""></i>
26
- <div class="message" style="display: none"></div>
27
- <div class="description" style="display: none"><?php _e('This option is used to track innerlinks and insights for your Focus Pages and give detailed informations about them.', _SQ_PLUGIN_NAME_); ?></div>
28
- <h4>
29
- <?php _e('Let Squirrly API get data for Focus Pages', _SQ_PLUGIN_NAME_); ?>
30
- <button type="submit" class="btn btn-link btn-sm inline p-0 m-0">(<?php _e('disconnect', _SQ_PLUGIN_NAME_); ?>)</button>
31
- </h4>
32
- </li>
33
 
34
- <?php } ?>
35
- </ul>
36
- </form>
 
37
  </div>
38
  </div>
39
- </div>
1
+ <?php if (current_user_can('sq_manage_snippets') && SQ_Classes_Helpers_Tools::getOption('sq_seoexpert')) { ?>
2
+ <div class="card col-sm-12 p-0 m-0 border-0">
3
+ <div class="card-body py-1">
4
+ <div id="sq_assistant_sq_seosettings" class="sq_assistant">
5
+ <form method="post" action="">
6
+ <ul id="sq_assistant_tasks_sq_seosettings" class="p-0 m-0">
7
+ <?php if (!SQ_Classes_Helpers_Tools::getOption('sq_cloud_connect')) { ?>
8
 
9
+ <li class="sq_task row border-0" style="cursor: default">
10
+ <?php wp_nonce_field('sq_cloud_connect', 'sq_nonce'); ?>
11
+ <input type="hidden" name="action" value="sq_cloud_connect"/>
12
+ <i class="fa fa-check" title="ssss" data-original-title=""></i>
13
+ <div class="message" style="display: none"></div>
14
+ <div class="description" style="display: none"><?php _e('This option is used to track innerlinks and insights for your Focus Pages and give detailed informations about them.', _SQ_PLUGIN_NAME_); ?></div>
15
+ <h4>
16
+ <?php _e('Let Squirrly API get data for Focus Pages', _SQ_PLUGIN_NAME_); ?>
17
+ <button type="submit" class="btn btn-primary btn-sm inline p-0 px-3 m-0"><?php _e('Connect', _SQ_PLUGIN_NAME_); ?></button>
18
+ </h4>
19
+ </li>
20
 
21
+ <?php } else { ?>
22
 
23
+ <li class="sq_task row completed border-0" style="cursor: default">
24
+ <?php wp_nonce_field('sq_cloud_disconnect', 'sq_nonce'); ?>
25
+ <input type="hidden" name="action" value="sq_cloud_disconnect"/>
26
+ <i class="fa fa-check" title="" data-original-title=""></i>
27
+ <div class="message" style="display: none"></div>
28
+ <div class="description" style="display: none"><?php _e('This option is used to track innerlinks and insights for your Focus Pages and give detailed informations about them.', _SQ_PLUGIN_NAME_); ?></div>
29
+ <h4>
30
+ <?php _e('Let Squirrly API get data for Focus Pages', _SQ_PLUGIN_NAME_); ?>
31
+ <button type="submit" class="btn btn-link btn-sm inline p-0 m-0">(<?php _e('disconnect', _SQ_PLUGIN_NAME_); ?>)</button>
32
+ </h4>
33
+ </li>
34
 
35
+ <?php } ?>
36
+ </ul>
37
+ </form>
38
+ </div>
39
  </div>
40
  </div>
41
+ <?php } ?>
view/Blocks/Dashboard.php CHANGED
@@ -192,7 +192,7 @@ $tasks_incompleted = SQ_Classes_ObjController::getClass('SQ_Controllers_CheckSeo
192
  <div style="margin: 20px 0; text-align: center">
193
  <a class="wp_button" href="<?php echo SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard') ?>" style="font-size: 16px;">
194
  <?php if (count($tasks_completed) > 2) { ?>
195
- <span><?php echo sprintf(__("See %s other achievements", _SQ_PLUGIN_NAME_), '+' . (count($tasks_completed) - 2) ) ?></span>
196
  <?php } else { ?>
197
  <span><?php echo __("See today's achievements", _SQ_PLUGIN_NAME_) ?></span>
198
  <?php } ?>
@@ -238,10 +238,10 @@ $tasks_incompleted = SQ_Classes_ObjController::getClass('SQ_Controllers_CheckSeo
238
  <?php echo sprintf(__("No other goals for today. %sGood job!"), '<br />'); ?>
239
  </h4>
240
  <div style="margin: 10px 0; text-align: center">
241
- <a class="wp_button recheck_seo" href="<?php echo SQ_Classes_Helpers_Tools::getAdminUrl('sq_focuspages', 'pagelist') ?>" class="btn btn-sm btn-success" style="font-size: 14px"><?php echo __('Rank your best pages with Focus Pages'); ?></a>
242
  </div>
243
  <div style="margin: 10px 0; text-align: center">
244
- <a class="wp_button recheck_seo" href="<?php echo SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo') ?>" class="btn btn-sm btn-success" style="font-size: 14px"><?php echo __('Boost your SEO with Bulk SEO'); ?></a>
245
  </div>
246
  <?php } ?>
247
 
@@ -259,7 +259,7 @@ $tasks_incompleted = SQ_Classes_ObjController::getClass('SQ_Controllers_CheckSeo
259
  sq_profilelevel(0);
260
  }, 1000);
261
 
262
-
263
  (function ($) {
264
  $.fn.sq_widget_recheck = function () {
265
  var $this = this;
@@ -282,17 +282,13 @@ $tasks_incompleted = SQ_Classes_ObjController::getClass('SQ_Controllers_CheckSeo
282
  };
283
 
284
  $(document).ready(function () {
285
- $('#sq_dashboard_widget').find('.recheck_seo').on('click', function () {
286
- $('#sq_dashboard_widget').sq_widget_recheck();
287
- });
288
-
289
  <?php
290
  $report_time = SQ_Classes_Helpers_Tools::getOption('seoreport_time');
291
-
292
  if (empty($report_time) || (time() - (int)$report_time) > (3600 * 12)) { ?>
293
  $('#sq_dashboard_widget').sq_widget_recheck();
294
- <?php } ?>
295
  });
296
  })(jQuery);
 
297
 
298
  </script>
192
  <div style="margin: 20px 0; text-align: center">
193
  <a class="wp_button" href="<?php echo SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard') ?>" style="font-size: 16px;">
194
  <?php if (count($tasks_completed) > 2) { ?>
195
+ <span><?php echo sprintf(__("See %s other achievements", _SQ_PLUGIN_NAME_), '+' . (count($tasks_completed) - 2)) ?></span>
196
  <?php } else { ?>
197
  <span><?php echo __("See today's achievements", _SQ_PLUGIN_NAME_) ?></span>
198
  <?php } ?>
238
  <?php echo sprintf(__("No other goals for today. %sGood job!"), '<br />'); ?>
239
  </h4>
240
  <div style="margin: 10px 0; text-align: center">
241
+ <a class="wp_button" href="<?php echo SQ_Classes_Helpers_Tools::getAdminUrl('sq_focuspages', 'pagelist') ?>" class="btn btn-sm btn-success" style="font-size: 14px"><?php echo __('Rank your best pages with Focus Pages'); ?></a>
242
  </div>
243
  <div style="margin: 10px 0; text-align: center">
244
+ <a class="wp_button" href="<?php echo SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo') ?>" class="btn btn-sm btn-success" style="font-size: 14px"><?php echo __('Boost your SEO with Bulk SEO'); ?></a>
245
  </div>
246
  <?php } ?>
247
 
259
  sq_profilelevel(0);
260
  }, 1000);
261
 
262
+ <?php if (current_user_can('sq_manage_snippets')) {?>
263
  (function ($) {
264
  $.fn.sq_widget_recheck = function () {
265
  var $this = this;
282
  };
283
 
284
  $(document).ready(function () {
 
 
 
 
285
  <?php
286
  $report_time = SQ_Classes_Helpers_Tools::getOption('seoreport_time');
 
287
  if (empty($report_time) || (time() - (int)$report_time) > (3600 * 12)) { ?>
288
  $('#sq_dashboard_widget').sq_widget_recheck();
289
+ <?php }?>
290
  });
291
  })(jQuery);
292
+ <?php }?>
293
 
294
  </script>
view/Blocks/Features.php ADDED
@@ -0,0 +1,315 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $codes = json_decode(json_encode(SQ_Classes_Helpers_Tools::getOption('codes')));
3
+ $connect = json_decode(json_encode(SQ_Classes_Helpers_Tools::getOption('connect')));
4
+
5
+ $features = array(
6
+ array(
7
+ 'title' => __('Focus Pages', _SQ_PLUGIN_NAME_),
8
+ 'description' => __('The Assistant who maps the road to Better Rankings. For every single page. Always with different specifics.', _SQ_PLUGIN_NAME_),
9
+ 'mode' => __('Freemium', _SQ_PLUGIN_NAME_),
10
+ 'option' => true,
11
+ 'logo' => 'focuspages_92.png',
12
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_focuspages', 'pagelist'),
13
+ 'details' => 'https://plugin.squirrly.co/focus-pages/',
14
+ ), //Focus Pages
15
+ array(
16
+ 'title' => __('Keyword Research', _SQ_PLUGIN_NAME_),
17
+ 'description' => __('Find the Best Keywords that your own website can rank for and get personalized competition data for each keyword.', _SQ_PLUGIN_NAME_),
18
+ 'mode' => __('Freemium', _SQ_PLUGIN_NAME_),
19
+ 'option' => true,
20
+ 'logo' => 'kr_92.png',
21
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_research', 'research'),
22
+ 'details' => 'https://plugin.squirrly.co/best-keyword-research-tool-for-seo/',
23
+ ), //Keyword Research
24
+ array(
25
+ 'title' => __('SEO Briefcase', _SQ_PLUGIN_NAME_),
26
+ 'description' => __('Add keywords in your portfolio based on your current Campaigns, Trends, Performance for a successful SEO strategy.', _SQ_PLUGIN_NAME_),
27
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
28
+ 'option' => true,
29
+ 'logo' => 'briefcase_92.png',
30
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_research', 'briefcase'),
31
+ 'details' => 'https://plugin.squirrly.co/briefcase-keyword-management-tool/',
32
+ ),//SEO Briefcase
33
+ array(
34
+ 'title' => __('Live Assistant', _SQ_PLUGIN_NAME_),
35
+ 'description' => __('Publish content that is fully optimized for BOTH Search Engines and Humans – every single time!', _SQ_PLUGIN_NAME_),
36
+ 'mode' => __('Freemium', _SQ_PLUGIN_NAME_),
37
+ 'option' => true,
38
+ 'logo' => 'sla_92.png',
39
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_assistant'),
40
+ 'details' => 'https://plugin.squirrly.co/seo-virtual-assistant/',
41
+ ),//Live Assistant
42
+ array(
43
+ 'title' => __('Google SERP with GSC', _SQ_PLUGIN_NAME_),
44
+ 'description' => __('Get Google Search Console average possitions, clicks and impressions for organic keywords.', _SQ_PLUGIN_NAME_),
45
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
46
+ 'option' => true,
47
+ 'logo' => 'ranking_92.png',
48
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_rankings', 'rankings'),
49
+ 'details' => 'https://plugin.squirrly.co/google-serp-checker/',
50
+ ),//Google SERP with GSC
51
+ array(
52
+ 'title' => __('SEO Automation', _SQ_PLUGIN_NAME_),
53
+ 'description' => __("Configure the SEO in 2 minutes for the entire website without writing a line of code.", _SQ_PLUGIN_NAME_),
54
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
55
+ 'option' => SQ_Classes_Helpers_Tools::getOption('sq_auto_pattern'),
56
+ 'logo' => 'automation_92.png',
57
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation'),
58
+ 'details' => false,
59
+ ),//SEO Automation
60
+ array(
61
+ 'title' => __('Bulk SEO & Snippets', _SQ_PLUGIN_NAME_),
62
+ 'description' => __('Simplify the SEO process for all your posts types and optimize them in just minutes.', _SQ_PLUGIN_NAME_),
63
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
64
+ 'option' => true,
65
+ 'logo' => 'bulkseo_92.png',
66
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo'),
67
+ 'details' => 'https://plugin.squirrly.co/bulk-seo-settings/',
68
+ ),//Bulk SEO
69
+ array(
70
+ 'title' => __('Daily SEO Goals', _SQ_PLUGIN_NAME_),
71
+ 'description' => __('The Non-Human SEO Consultant that prepares you goals that take you closer to the first page of Google.', _SQ_PLUGIN_NAME_),
72
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
73
+ 'option' => true,
74
+ 'logo' => 'goals_92.png',
75
+ 'link' => '#tasks',
76
+ 'details' => false,
77
+ ),//Daily SEO Goals
78
+ array(
79
+ 'title' => __('Open Graph Optimization', _SQ_PLUGIN_NAME_),
80
+ 'description' => __('Add Social Open Graph protocol so that your Facebook shares look good.', _SQ_PLUGIN_NAME_),
81
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
82
+ 'option' => SQ_Classes_Helpers_Tools::getOption('sq_auto_facebook'),
83
+ 'logo' => 'social_92.png',
84
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'social'),
85
+ 'details' => 'https://plugin.squirrly.co/wordpress-open-graph/',
86
+ ),//Open Graph Optimization
87
+ array(
88
+ 'title' => __('Twitter Card Optimization', _SQ_PLUGIN_NAME_),
89
+ 'description' => __('Add Twitter Card in your tweets so that your Twitter shares look good.', _SQ_PLUGIN_NAME_),
90
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
91
+ 'option' => SQ_Classes_Helpers_Tools::getOption('sq_auto_twitter'),
92
+ 'logo' => 'social_92.png',
93
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'social'),
94
+ 'details' => 'https://plugin.squirrly.co/wordpress-open-graph/',
95
+ ),//Twitter Card Optimization
96
+ array(
97
+ 'title' => __('XML Sitemap', _SQ_PLUGIN_NAME_),
98
+ 'description' => __('Use Squirrly’s Sitemap Generator and Settings to help your website get crawled and indexed by Google.', _SQ_PLUGIN_NAME_),
99
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
100
+ 'option' => SQ_Classes_Helpers_Tools::getOption('sq_auto_sitemap'),
101
+ 'logo' => 'sitemap_92.png',
102
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'sitemap'),
103
+ 'details' => 'https://plugin.squirrly.co/auto-xml-sitemap-generator/',
104
+ ), //XML Sitemap
105
+ array(
106
+ 'title' => __('JSON-LD Optimizaition', _SQ_PLUGIN_NAME_),
107
+ 'description' => __('Edit your website’s JSON-LD Schema with Squirrly’s powerful semantic SEO Markup Solution.', _SQ_PLUGIN_NAME_),
108
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
109
+ 'option' => SQ_Classes_Helpers_Tools::getOption('sq_auto_jsonld'),
110
+ 'logo' => 'jsonld_92.png',
111
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'jsonld'),
112
+ 'details' => 'https://plugin.squirrly.co/json-ld-semantic-seo-markup/',
113
+ ), //JSON-LD Optimizaition
114
+ array(
115
+ 'title' => __('Google Analytics Tracking', _SQ_PLUGIN_NAME_),
116
+ 'description' => __('Add the Google Analytics and Google Tag Manager tracking on your website.', _SQ_PLUGIN_NAME_),
117
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
118
+ 'option' => (SQ_Classes_Helpers_Tools::getOption('sq_auto_tracking') && isset($codes->google_analytics) && $codes->google_analytics <> ''),
119
+ 'logo' => 'traffic_92.png',
120
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'tracking'),
121
+ 'details' => false,
122
+ ), //Google Analytics Tracking
123
+ array(
124
+ 'title' => __('Facebook Pixel Tracking', _SQ_PLUGIN_NAME_),
125
+ 'description' => __('Track visitors with website and e-commerce events for better Retargeting Campaigns.', _SQ_PLUGIN_NAME_),
126
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
127
+ 'option' => (SQ_Classes_Helpers_Tools::getOption('sq_auto_tracking') && isset($codes->facebook_pixel) && $codes->facebook_pixel <> ''),
128
+ 'logo' => 'traffic_92.png',
129
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'tracking'),
130
+ 'details' => false,
131
+ ), //Facebook Pixel Tracking
132
+ array(
133
+ 'title' => __('Google Search Console', _SQ_PLUGIN_NAME_),
134
+ 'description' => __('Connect your website with Google Search Console and get insights based on organic searched keywords.', _SQ_PLUGIN_NAME_),
135
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
136
+ 'option' => (SQ_Classes_Helpers_Tools::getOption('sq_auto_webmasters') && isset($connect->google_search_console) && $connect->google_search_console <> ''),
137
+ 'logo' => 'websites_92.png',
138
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'tracking'),
139
+ 'details' => false,
140
+ ), //Google Search Console
141
+ array(
142
+ 'title' => __('Robots.txt File', _SQ_PLUGIN_NAME_),
143
+ 'description' => __("Tell search engine crawlers which pages or files the crawler can or can't request from your site.", _SQ_PLUGIN_NAME_),
144
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
145
+ 'option' => SQ_Classes_Helpers_Tools::getOption('sq_auto_robots'),
146
+ 'logo' => 'robots_92.png',
147
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'robots'),
148
+ 'details' => false,
149
+ ), //Robots.txt File
150
+ array(
151
+ 'title' => __('Favicon Site Icon', _SQ_PLUGIN_NAME_),
152
+ 'description' => __("Add your website icon in the browser tabs and on other devices like iPhone, iPad and Android phones.", _SQ_PLUGIN_NAME_),
153
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
154
+ 'option' => SQ_Classes_Helpers_Tools::getOption('sq_auto_favicon'),
155
+ 'logo' => 'favicon_92.png',
156
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'favicon'),
157
+ 'details' => false,
158
+ ), //Favicon Site Icon
159
+ array(
160
+ 'title' => __('On-Page SEO METAs', _SQ_PLUGIN_NAME_),
161
+ 'description' => __("Add all Search Engine METAs like Title, Description, Canonical, Dublin Core, Robots and more.", _SQ_PLUGIN_NAME_),
162
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
163
+ 'option' => (SQ_Classes_Helpers_Tools::getOption('sq_auto_title') || SQ_Classes_Helpers_Tools::getOption('sq_auto_description') || SQ_Classes_Helpers_Tools::getOption('sq_auto_canonical') || SQ_Classes_Helpers_Tools::getOption('sq_auto_noindex')),
164
+ 'logo' => 'metas_92.png',
165
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'metas'),
166
+ 'details' => 'https://howto.squirrly.co/kb/seo-metas/',
167
+ ), //On-Page SEO METAs
168
+ array(
169
+ 'title' => __('Remove META Duplicate', _SQ_PLUGIN_NAME_),
170
+ 'description' => __("Fix Duplicate Titles and Descriptions without writing a line of code.", _SQ_PLUGIN_NAME_),
171
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
172
+ 'option' => (SQ_Classes_Helpers_Tools::getOption('sq_auto_title') || SQ_Classes_Helpers_Tools::getOption('sq_auto_description') || SQ_Classes_Helpers_Tools::getOption('sq_auto_canonical') || SQ_Classes_Helpers_Tools::getOption('sq_auto_noindex') || (SQ_Classes_Helpers_Tools::getOption('sq_jsonld_clearcode') && SQ_Classes_Helpers_Tools::getOption('sq_auto_jsonld')) ),
173
+ 'logo' => 'metas_92.png',
174
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'metas'),
175
+ 'details' => 'https://plugin.squirrly.co/duplicate-removal-tool/',
176
+ ), //Remove META Duplicate
177
+ array(
178
+ 'title' => __('404 Redirects', _SQ_PLUGIN_NAME_),
179
+ 'description' => __('Automatically redirect the old posts and pages URLs to the new URLs to keep the post authority.', _SQ_PLUGIN_NAME_),
180
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
181
+ 'option' => true,
182
+ 'logo' => 'redirect_92.png',
183
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation'),
184
+ 'details' => false,
185
+ ), //404 Redirects
186
+ array(
187
+ 'title' => __('SEO Audit', _SQ_PLUGIN_NAME_),
188
+ 'description' => __('Improve your Online Presence by knowing how your website is performing.', _SQ_PLUGIN_NAME_),
189
+ 'mode' => __('Freemium', _SQ_PLUGIN_NAME_),
190
+ 'option' => true,
191
+ 'logo' => 'audit_92.png',
192
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_audits', 'audits'),
193
+ 'details' => 'https://plugin.squirrly.co/site-seo-audit-tool/',
194
+ ), //SEO Audit
195
+ array(
196
+ 'title' => __('14 Days Journey Course', _SQ_PLUGIN_NAME_),
197
+ 'description' => __('Improve your Online Presence by knowing how your website is performing.', _SQ_PLUGIN_NAME_),
198
+ 'mode' => __('Free', _SQ_PLUGIN_NAME_),
199
+ 'option' => (SQ_Classes_Helpers_Tools::getOption('sq_seojourney') <> ''),
200
+ 'logo' => 'jsonld_92.png',
201
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_onboarding', 'step2.1'),
202
+ 'details' => 'https://www.squirrly.co/seo/journey/',
203
+ ), //14 Days Journey Course
204
+ array(
205
+ 'title' => __('Blogging Assistant', _SQ_PLUGIN_NAME_),
206
+ 'description' => __('Add relevant Copyright-free images, Tweets, Wikis, Blog Excerpts in your posts.', _SQ_PLUGIN_NAME_),
207
+ 'mode' => __('Pro', _SQ_PLUGIN_NAME_),
208
+ 'option' => 'na',
209
+ 'logo' => 'sla_92.png',
210
+ 'link' => 'https://plugin.squirrly.co/research-tools-for-writers/',
211
+ 'details' => 'https://plugin.squirrly.co/research-tools-for-writers/',
212
+ ), //Blogging Assistant
213
+ array(
214
+ 'title' => __('Google SERP Checker', _SQ_PLUGIN_NAME_),
215
+ 'description' => __('Accurately track your rankings with Squirrly’s user-friendly Google SERP Checker.', _SQ_PLUGIN_NAME_),
216
+ 'mode' => __('Business', _SQ_PLUGIN_NAME_),
217
+ 'option' => 'na',
218
+ 'logo' => 'ranking_92.png',
219
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_rankings', 'rankings'),
220
+ 'details' => 'https://plugin.squirrly.co/google-serp-checker/',
221
+ ), //Google SERP Checker
222
+
223
+ );
224
+ ?>
225
+ <a name="features"></a>
226
+ <div class="sq_features border my-3 py-3">
227
+ <div class="row text-left m-0 p-3">
228
+ <div class="px-2 text-center" style="width: 38%;">
229
+ <img src="<?php echo _SQ_ASSETS_URL_ . 'img/onboarding/speedometer.png' ?>" style="width: 100%; max-width: 320px;">
230
+ </div>
231
+ <div class="col-sm px-2 py-5">
232
+ <div class="col-sm-12 m-0 p-0">
233
+ <h3><?php echo __('Squirrly SEO Feature Categories', _SQ_PLUGIN_NAME_) ?></h3>
234
+ </div>
235
+ <div class="sq_separator"></div>
236
+ <div class="col-sm-12 m-2 p-0">
237
+ <div class="my-2"><?php echo sprintf(__("With a total of over %s200%s free in-depth features that only Squirrly can offer.", _SQ_PLUGIN_NAME_), '<strong>', '</strong>'); ?>
238
+ <a href="https://trello.com/c/BSOkxHSv/116-official-list-squirrly-seo-2019-strategy-features-grouped-by-tools-given-to-you-when-you-install-squirrly" target="_blank">See the full list</a>
239
+ </div>
240
+ </div>
241
+ </div>
242
+ </div>
243
+
244
+ <div class="row px-3 py-0">
245
+ <?php foreach ($features
246
+
247
+ as $index => $feature){ ?>
248
+ <?php
249
+ $color = 'text-info';
250
+ $background_color = '#fff';
251
+ switch (strtolower($feature['mode'])) {
252
+ case 'free':
253
+ $color = 'text-success';
254
+ $background_color = '#f6fff966';
255
+ break;
256
+ case 'freemium':
257
+ $color = 'text-info';
258
+ $background_color = '#f6f7ff57';
259
+ break;
260
+ case 'pro':
261
+ case 'business':
262
+ $color = 'text-warning';
263
+ $background_color = '#fff6f64d';
264
+ break;
265
+ }
266
+ if($feature['option'] == false){
267
+ $background_color = '#d6d6d6';
268
+ }
269
+ ?>
270
+ <?php if ($index % 3 == 0){ ?></div>
271
+ <div class="row px-3 py-0"><?php } ?>
272
+ <div class="col-sm-4 px-2">
273
+ <div class="card py-3 px-3 shadow-sm" style="background-color: <?php echo $background_color ?>">
274
+ <div class="card-body m-0 p-0">
275
+ <div class="row px-3">
276
+ <div class="col-sm-1 p-0">
277
+ <img src="<?php echo _SQ_ASSETS_URL_ . 'img/logos/' . $feature['logo'] ?>" style="width: 24px; vertical-align: middle;">
278
+ </div>
279
+ <div class="col-sm-11 p-0 pl-3"><h5><?php echo $feature['title'] ?></h5></div>
280
+ </div>
281
+ <div class="row px-3">
282
+
283
+ <div class="col-sm-12 font-weight-bold text-right" style="font-size: 14px">
284
+ <a href="https://plugin.squirrly.co/squirrly-seo-pricing/" target="_blank" class="<?php echo $color ?>"><?php echo $feature['mode'] ?></a>
285
+ </div>
286
+ </div>
287
+ <div class="my-2 text-black-50" style="min-height: 70px"><?php echo $feature['description'] ?></div>
288
+ <div class="row my-2 px-3">
289
+ <div class="col-sm-6 p-0">
290
+ <a href="<?php echo $feature['link'] ?>" target="_blank">
291
+ <?php if ($feature['option'] === 'na') { ?>
292
+ <strong class="text-info"><?php echo __('Go to feature', _SQ_PLUGIN_NAME_) ?></strong>
293
+ <?php } elseif ($feature['option'] == true) { ?>
294
+ <strong class="text-success"><?php echo __('Active', _SQ_PLUGIN_NAME_) ?></strong>
295
+ <?php } elseif ($feature['option'] == false) { ?>
296
+ <strong class="text-danger"><?php echo __('Inactive', _SQ_PLUGIN_NAME_) ?></strong>
297
+ <?php } else { ?>
298
+ <strong class="text-info"><?php echo $feature['option'] ?></strong>
299
+ <?php } ?>
300
+ </a>
301
+ </div>
302
+ <div class="col-sm-6 p-0 text-right">
303
+ <?php if ($feature['details']) { ?>
304
+ <a href="<?php echo $feature['details'] ?>" target="_blank" class="text-black-50"><?php echo __('more details', _SQ_PLUGIN_NAME_) ?></a>
305
+ <?php } ?>
306
+
307
+ </div>
308
+ </div>
309
+ </div>
310
+ </div>
311
+ </div>
312
+ <?php } ?>
313
+ </div>
314
+
315
+ </div>
view/Blocks/Stats.php CHANGED
@@ -1,6 +1,29 @@
1
  <div id="sq_stats">
2
  <?php
3
  $dbtasks = json_decode(get_option(SQ_TASKS), true);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  if (!isset($dbtasks['sq_onboarding']['OnboardingBanner']) || $dbtasks['sq_onboarding']['OnboardingBanner']['active']) {
5
  ?>
6
  <div id="OnboardingBanner" class="banner col-sm-12 m-0 mt-4 p-0" style="box-shadow: 0 0 10px -3px #994525;">
@@ -74,4 +97,4 @@
74
  </div>
75
  </div>
76
  </div>
77
- </div>
1
  <div id="sq_stats">
2
  <?php
3
  $dbtasks = json_decode(get_option(SQ_TASKS), true);
4
+
5
+ /////////////////// Check the SEO Protection in real time
6
+ $settings = array();
7
+ $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsMetas();
8
+ $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsJsonld();
9
+ $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsSocialOG();
10
+ $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsSocialTWC();
11
+ $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsSitemap();
12
+ $settings[] = SQ_Classes_ObjController::getClass('SQ_Models_Assistant')->checkSettingsPatterns();
13
+
14
+ $valid = 0;
15
+ foreach ($settings as $setting) {
16
+ if ($setting) {
17
+ $valid += 1;
18
+ }
19
+ }
20
+
21
+ $view->stats['seo_percent'] = 0;
22
+ if ($valid > 0) {
23
+ $view->stats['seo_percent'] = number_format((($valid * 100) / count($settings)), 0);
24
+ }
25
+ ////////////////////////////////////////////////////////////
26
+
27
  if (!isset($dbtasks['sq_onboarding']['OnboardingBanner']) || $dbtasks['sq_onboarding']['OnboardingBanner']['active']) {
28
  ?>
29
  <div id="OnboardingBanner" class="banner col-sm-12 m-0 mt-4 p-0" style="box-shadow: 0 0 10px -3px #994525;">
97
  </div>
98
  </div>
99
  </div>
100
+ </div>
view/Blocks/VersionBar.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php $page = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('page', '')); ?>
2
- <div id="sq_notification_bar" style="margin: 5px 0 -15px 0;">
 
 
3
  <?php if (isset($view->checkin) && isset($view->checkin->subscription_status)) { ?>
4
  <?php if ($page == 'sq_rankings') { ?>
5
  <?php if ($view->checkin->subscription_serpcheck) { ?>
@@ -23,7 +25,7 @@
23
  <?php echo sprintf(__("%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every hour.", _SQ_PLUGIN_NAME_), '<strong>', $view->checkin->product_type, '</strong>', $view->checkin->subscription_max_audit_pages); ?>
24
  </div>
25
  <?php } elseif ($view->checkin->subscription_max_audit_pages && $view->checkin->subscription_status == 'freemium') { ?>
26
- <div class="alert alert-warning text-center p-1 small">
27
  <?php echo sprintf(__("%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated once a week. %sTo add more pages in Audit and refresh the audit every hour please upgrade your plan to %sPRO Plan%s", _SQ_PLUGIN_NAME_), '<strong>', $view->checkin->product_type, '</strong>', $view->checkin->subscription_max_audit_pages, '<br />', '<a href="' . SQ_Classes_RemoteController::getMySquirrlyLink('plans') . '" target="_blank"><strong>', '</strong></a>'); ?>
28
  </div>
29
  <?php } ?>
@@ -37,9 +39,9 @@
37
  <div class="alert alert-warning text-center m-0 p-1 small">
38
  <?php echo sprintf(__("%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new audit for each page every 5 mins. %sTo add more pages in Focus Pages please upgrade your plan to %sPRO Plan%s", _SQ_PLUGIN_NAME_), '<strong>', $view->checkin->product_type, '</strong>', $view->checkin->subscription_max_focus_pages, '<br />', '<a href="' . SQ_Classes_RemoteController::getMySquirrlyLink('plans') . '" target="_blank"><strong>', '</strong></a>'); ?>
39
  </div>
40
- <?php }elseif ($view->checkin->subscription_onetime) { ?>
41
  <div class="alert alert-warning text-center m-0 p-1 small">
42
- <?php echo sprintf(__("Your current plan is OLD Squirrly plan: Please read the official notes about it %shttps://www.squirrly.co/you-received-access-to-all-updates-from-squirrly-seo/%s", _SQ_PLUGIN_NAME_),'<a href="https://www.squirrly.co/you-received-access-to-all-updates-from-squirrly-seo/" target="_blank"><strong>', '</strong></a>'); ?>
43
  </div>
44
  <?php } ?>
45
  <?php } ?>
@@ -85,10 +87,10 @@
85
  <?php if ($page == 'sq_research' && SQ_Classes_Helpers_Tools::getValue('tab', '') == 'suggested') { ?>
86
  <?php if ($view->checkin->subscription_status == 'active') { ?>
87
  <div class="alert alert-success text-center m-0 p-1 small">
88
- <?php echo sprintf(__("%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we find better matching keywords based on your research history.", _SQ_PLUGIN_NAME_), '<strong>',$view->checkin->product_type, '</strong>'); ?>
89
  </div>
90
  <?php } elseif ($view->checkin->subscription_status == 'freemium') { ?>
91
- <div class="alert alert-warning text-center p-1 small">
92
  <?php echo sprintf(__("This feature is only available for PRO and Business accounts. %sTo get Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s", _SQ_PLUGIN_NAME_), '<br />', '<a href="' . SQ_Classes_RemoteController::getMySquirrlyLink('plans') . '" target="_blank"><strong>', '</strong></a>'); ?>
93
  </div>
94
  <?php } ?>
@@ -107,7 +109,8 @@
107
  <?php echo sprintf(__("%sOn-Page SEO Settings:%s This feature is included in all versions of Squirrly SEO for free.", _SQ_PLUGIN_NAME_), '<strong>', '</strong>'); ?>
108
  </div>
109
  <?php } ?>
110
- <?php if(SQ_Classes_Helpers_Tools::getOption('sq_offer') && (!isset( $_COOKIE[ 'sq_nooffer' ] ))) { ?>
 
111
  <?php echo SQ_Classes_Helpers_Tools::getOption('sq_offer') ?>
112
  <?php } ?>
113
  </div>
1
  <?php $page = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('page', '')); ?>
2
+ <div id="sq_notification_bar" style="margin: 20px 0 -15px 0;">
3
+
4
+
5
  <?php if (isset($view->checkin) && isset($view->checkin->subscription_status)) { ?>
6
  <?php if ($page == 'sq_rankings') { ?>
7
  <?php if ($view->checkin->subscription_serpcheck) { ?>
25
  <?php echo sprintf(__("%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every hour.", _SQ_PLUGIN_NAME_), '<strong>', $view->checkin->product_type, '</strong>', $view->checkin->subscription_max_audit_pages); ?>
26
  </div>
27
  <?php } elseif ($view->checkin->subscription_max_audit_pages && $view->checkin->subscription_status == 'freemium') { ?>
28
+ <div class="alert alert-warning text-center m-0 p-1 small">
29
  <?php echo sprintf(__("%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated once a week. %sTo add more pages in Audit and refresh the audit every hour please upgrade your plan to %sPRO Plan%s", _SQ_PLUGIN_NAME_), '<strong>', $view->checkin->product_type, '</strong>', $view->checkin->subscription_max_audit_pages, '<br />', '<a href="' . SQ_Classes_RemoteController::getMySquirrlyLink('plans') . '" target="_blank"><strong>', '</strong></a>'); ?>
30
  </div>
31
  <?php } ?>
39
  <div class="alert alert-warning text-center m-0 p-1 small">
40
  <?php echo sprintf(__("%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new audit for each page every 5 mins. %sTo add more pages in Focus Pages please upgrade your plan to %sPRO Plan%s", _SQ_PLUGIN_NAME_), '<strong>', $view->checkin->product_type, '</strong>', $view->checkin->subscription_max_focus_pages, '<br />', '<a href="' . SQ_Classes_RemoteController::getMySquirrlyLink('plans') . '" target="_blank"><strong>', '</strong></a>'); ?>
41
  </div>
42
+ <?php } elseif ($view->checkin->subscription_onetime) { ?>
43
  <div class="alert alert-warning text-center m-0 p-1 small">
44
+ <?php echo sprintf(__("Your current plan is OLD Squirrly plan: Please read the official notes about it %shttps://www.squirrly.co/you-received-access-to-all-updates-from-squirrly-seo/%s", _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/you-received-access-to-all-updates-from-squirrly-seo/" target="_blank"><strong>', '</strong></a>'); ?>
45
  </div>
46
  <?php } ?>
47
  <?php } ?>
87
  <?php if ($page == 'sq_research' && SQ_Classes_Helpers_Tools::getValue('tab', '') == 'suggested') { ?>
88
  <?php if ($view->checkin->subscription_status == 'active') { ?>
89
  <div class="alert alert-success text-center m-0 p-1 small">
90
+ <?php echo sprintf(__("%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we find better matching keywords based on your research history.", _SQ_PLUGIN_NAME_), '<strong>', $view->checkin->product_type, '</strong>'); ?>
91
  </div>
92
  <?php } elseif ($view->checkin->subscription_status == 'freemium') { ?>
93
+ <div class="alert alert-warning text-center m-0 p-1 small">
94
  <?php echo sprintf(__("This feature is only available for PRO and Business accounts. %sTo get Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s", _SQ_PLUGIN_NAME_), '<br />', '<a href="' . SQ_Classes_RemoteController::getMySquirrlyLink('plans') . '" target="_blank"><strong>', '</strong></a>'); ?>
95
  </div>
96
  <?php } ?>
109
  <?php echo sprintf(__("%sOn-Page SEO Settings:%s This feature is included in all versions of Squirrly SEO for free.", _SQ_PLUGIN_NAME_), '<strong>', '</strong>'); ?>
110
  </div>
111
  <?php } ?>
112
+
113
+ <?php if (SQ_Classes_Helpers_Tools::getOption('sq_offer') && (!isset($_COOKIE['sq_nooffer']))) { ?>
114
  <?php echo SQ_Classes_Helpers_Tools::getOption('sq_offer') ?>
115
  <?php } ?>
116
  </div>
view/BulkSeo/Bulkseo.php CHANGED
@@ -9,7 +9,7 @@
9
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
10
  <?php
11
  if (!current_user_can('sq_manage_snippet')) {
12
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_) . '</div>';
13
  return;
14
  }
15
  ?>
9
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
10
  <?php
11
  if (!current_user_can('sq_manage_snippet')) {
12
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_) . '</div>';
13
  return;
14
  }
15
  ?>
view/Dashboard.php DELETED
@@ -1,62 +0,0 @@
1
- <script type="text/javascript" src="//www.google.com/jsapi"></script>
2
- <div id="sq_wrap">
3
- <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
4
-
5
- <div class="d-flex flex-row my-0 bg-white col-sm-12 p-0 m-0">
6
- <?php if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') { ?>
7
- <div class="sq_col flex-grow-1 mx-0 px-3">
8
- <div class="bg-title col-sm-8 mx-auto card-body my-3 p-2 offset-2 rounded-top" style="min-width: 600px;">
9
- <div class="col-sm-12 text-left m-0 p-0">
10
- <div class="sq_icons sq_squirrly_icon m-2"></div>
11
- <h3 class="card-title"><?php _e('Connect to Squirrly Data Cloud', _SQ_PLUGIN_NAME_); ?>:</h3>
12
- </div>
13
-
14
- <?php SQ_Classes_ObjController::getClass('SQ_Core_Blocklogin')->init(); ?>
15
- </div>
16
- </div>
17
- <?php } else { ?>
18
- <div class="sq_col flex-grow-1 mx-0 px-3">
19
- <div class="card col-sm-12 p-0">
20
- <div class="card-body p-2 bg-title rounded-top">
21
- <div class="sq_icons sq_squirrly_icon m-2"></div>
22
- <h3 class="card-title"><?php _e('Squirrly dashboard', _SQ_PLUGIN_NAME_); ?></h3>
23
- </div>
24
- <?php SQ_Classes_ObjController::getClass('SQ_Core_Blocklogin')->init(); ?>
25
- </div>
26
-
27
- <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockJorney')->init(); ?>
28
- <?php
29
- if (SQ_Classes_Helpers_Tools::getMenuVisible('show_account_info')) {
30
- if (!SQ_Classes_ObjController::getClass('SQ_Core_BlockJorney')->getJourneyDays()) {
31
- SQ_Classes_ObjController::getClass('SQ_Core_BlockStats')->init();
32
- }
33
- }
34
- ?>
35
- <?php SQ_Classes_ObjController::getClass('SQ_Controllers_CheckSeo')->init(); ?>
36
- <?php if (current_user_can('sq_manage_focuspages')) {
37
- SQ_Classes_ObjController::getClass('SQ_Core_BlockFocusPages')->init();
38
- SQ_Classes_ObjController::getClass('SQ_Core_BlockAudits')->init();
39
- } ?>
40
- <?php if (current_user_can('sq_manage_focuspages')) {
41
- SQ_Classes_ObjController::getClass('SQ_Core_BlockKRFound')->init();
42
- } ?>
43
- <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockKRHistory')->init(); ?>
44
-
45
- <?php
46
- if (current_user_can('sq_manage_focuspages')) {
47
- SQ_Classes_ObjController::getClass('SQ_Core_BlockRanks')->init();
48
- }
49
- ?>
50
-
51
- </div>
52
-
53
- <?php } ?>
54
- <div class="sq_col sq_col_side ">
55
- <div class="card col-sm-12 p-0">
56
- <?php echo SQ_Classes_ObjController::getClass('SQ_Core_BlockSupport')->init(); ?>
57
- <?php echo SQ_Classes_ObjController::getClass('SQ_Core_BlockAssistant')->init(); ?>
58
- </div>
59
- </div>
60
-
61
- </div>
62
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
view/FocusPages/Addpage.php CHANGED
@@ -5,7 +5,7 @@
5
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
6
  <?php
7
  if (!current_user_can('sq_manage_focuspages')) {
8
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_) . '</div>';
9
  return;
10
  }
11
  ?>
@@ -176,7 +176,7 @@
176
  </button>
177
  </form>
178
  <?php } else { ?>
179
- <span class="text-danger font-weight-bold text-center" title="<?php echo __('Only pages with IDs can be added as Focus Page', _SQ_PLUGIN_NAME_) ?>"><?php echo __("Can't be added", _SQ_PLUGIN_NAME_) ?></span>
180
  <?php } ?>
181
  <?php } else { ?>
182
  <a href="<?php echo SQ_Classes_Helpers_Tools::getAdminUrl('sq_focuspages', 'pagelist', array('sid=' . $focuspage->id)) ?>" class="btn btn-sm text-white bg-success bg-green text-center" style="width: 150px;"><?php echo __('See Tasks', _SQ_PLUGIN_NAME_) ?></a>
5
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
6
  <?php
7
  if (!current_user_can('sq_manage_focuspages')) {
8
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_) . '</div>';
9
  return;
10
  }
11
  ?>
176
  </button>
177
  </form>
178
  <?php } else { ?>
179
+ <span class="text-danger font-weight-bold text-center" title="<?php echo __('Only pages with IDs can be added as Focus Page', _SQ_PLUGIN_NAME_) ?>"><?php echo __("Can't be added", _SQ_PLUGIN_NAME_) ?> <a href="https://howto.squirrly.co/kb/focus-pages-page-audits/#add_new_focus_page" target="_blank" ><i class="fa fa-question-circle"></i></a></span>
180
  <?php } ?>
181
  <?php } else { ?>
182
  <a href="<?php echo SQ_Classes_Helpers_Tools::getAdminUrl('sq_focuspages', 'pagelist', array('sid=' . $focuspage->id)) ?>" class="btn btn-sm text-white bg-success bg-green text-center" style="width: 150px;"><?php echo __('See Tasks', _SQ_PLUGIN_NAME_) ?></a>
view/FocusPages/FocusPageRow.php CHANGED
@@ -87,12 +87,14 @@ if ($view->focuspage->id <> '') {
87
 
88
  </td>
89
  <?php echo $view->getView('FocusPages/FocusPageStats'); ?>
90
- <?php if ($view->focuspage->audit_error) { ?>
 
 
91
  <td colspan="<?php echo(count((array)$categories) + 1) ?>">
92
- <div class="text-danger my-2"><?php echo __('Could not create the audit for this URL', _SQ_PLUGIN_NAME_) . ((int)$view->focuspage->audit_error > 0 ? ' (' . __('error code', _SQ_PLUGIN_NAME_) . ': ' . (int)$view->focuspage->audit_error . ')' : '') ?></div>
93
- <div class="text-black-50" style="font-size: 11px">
94
- <em><?php echo sprintf(__('The current way your WordPress site is hosted can cause experience issues to the way Squirrly SEO works. %s In order to serve you with the best data, and make sure that the Focus Pages audits can be processed, you will need to talk to your hosting provider and tell them to make the following settings. %s Please add the IP address 176.9.112.210 in the white-list for remote access and it should work.', _SQ_PLUGIN_NAME_), '<br />', '<br />') ?></em>
95
- </div>
96
  </td>
97
  <?php } elseif (!$audit_done) { ?>
98
  <td colspan="<?php echo(count((array)$categories) + 1) ?>">
@@ -123,7 +125,7 @@ if ($view->focuspage->id <> '') {
123
  <?php } elseif (!$view->focuspage->indexed) { ?>
124
  <td style="min-width: 100px; width: 100px; text-align: center;">
125
  <div class="tab_header"><?php echo __('Chance to Rank', _SQ_PLUGIN_NAME_) ?></div>
126
- <strong style="font-size: 22px; line-height: 40px; color:<?php echo $color ?>;"><?php echo ((int)$view->focuspage->visibility > 0 ? (int)$view->focuspage->visibility . '%' : $view->focuspage->visibility); ?></strong>
127
  </td><?php } ?>
128
 
129
  <?php if (!empty($categories)) {
@@ -170,6 +172,4 @@ if ($view->focuspage->id <> '') {
170
 
171
 
172
  </td>
173
- <?php
174
-
175
- }
87
 
88
  </td>
89
  <?php echo $view->getView('FocusPages/FocusPageStats'); ?>
90
+ <?php if ($view->focuspage->audit_error) {
91
+ $audit_error = SQ_Classes_ObjController::getClass('SQ_Models_CheckSeo')->getErrorMessage($view->focuspage->audit_error);
92
+ ?>
93
  <td colspan="<?php echo(count((array)$categories) + 1) ?>">
94
+ <div class="text-danger my-2"><?php echo $audit_error['warning'] ?></div>
95
+ <div class="text-black-50 my-1" style="font-size: 11px"><?php echo $audit_error['message'] ?></div>
96
+ <div class="text-black-50 my-1" style="font-size: 11px"><?php echo $audit_error['solution'] ?></div>
97
+ <div class="text-info sq_previewurl font-weight-bold small" style="cursor: pointer" onclick="jQuery('#sq_previewurl_modal').attr('data-post_id', '<?php echo$view->focuspage->user_post_id ?>'); jQuery('#sq_previewurl_modal').sq_inspectURL()" data-dismiss="modal"><?php _e('Inspect URL', _SQ_PLUGIN_NAME_); ?></div>
98
  </td>
99
  <?php } elseif (!$audit_done) { ?>
100
  <td colspan="<?php echo(count((array)$categories) + 1) ?>">
125
  <?php } elseif (!$view->focuspage->indexed) { ?>
126
  <td style="min-width: 100px; width: 100px; text-align: center;">
127
  <div class="tab_header"><?php echo __('Chance to Rank', _SQ_PLUGIN_NAME_) ?></div>
128
+ <strong style="font-size: 22px; line-height: 40px; color:<?php echo $color ?>;"><?php echo((int)$view->focuspage->visibility > 0 ? (int)$view->focuspage->visibility . '%' : $view->focuspage->visibility); ?></strong>
129
  </td><?php } ?>
130
 
131
  <?php if (!empty($categories)) {
172
 
173
 
174
  </td>
175
+ <?php } ?>
 
 
view/FocusPages/Pagelist.php CHANGED
@@ -5,7 +5,7 @@
5
  <div class="d-flex flex-row flex-nowrap my-0 bg-nav" style="clear: both !important;">
6
  <?php
7
  if (!current_user_can('sq_manage_focuspages')) {
8
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_) . '</div>';
9
  return;
10
  }
11
  ?>
@@ -78,3 +78,16 @@
78
  </div>
79
  </div>
80
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  <div class="d-flex flex-row flex-nowrap my-0 bg-nav" style="clear: both !important;">
6
  <?php
7
  if (!current_user_can('sq_manage_focuspages')) {
8
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_) . '</div>';
9
  return;
10
  }
11
  ?>
78
  </div>
79
  </div>
80
  </div>
81
+ <div id="sq_previewurl_modal" tabindex="-1" class="modal fade" role="dialog">
82
+ <div class="modal-dialog modal-lg" style="max-width: 100% !important;">
83
+ <div class="modal-content bg-light">
84
+ <div class="modal-header">
85
+ <h4 class="modal-title"><?php _e('Squirrly Inspect URL', _SQ_PLUGIN_NAME_); ?></h4>
86
+ <i class="fa fa-refresh" style="font-family: FontAwesome, Arial, sans-serif;font-size: 20px !important;cursor: pointer;margin: 2px 10px !important;" onclick="jQuery('#sq_previewurl_modal').sq_inspectURL()"></i>
87
+ <button type="button" class="close" data-dismiss="modal">&times;</button>
88
+ </div>
89
+ <div class="modal-body" style="min-height: 200px; height:calc(100vh - 120px); overflow-y: auto;">
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </div>
view/FocusPages/Settings.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_focuspages')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_focuspages')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
view/Goals/CheckSeo.php CHANGED
@@ -83,7 +83,7 @@ $category_name = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('pa
83
  <div id="sq_seocheck_content" class="col-sm-12 my-4 py-3" style="box-shadow: 0 0 10px -3px #994525; background-color: white; min-height: 100px;"></div>
84
 
85
  </div>
86
- <div id="sq_loading_modal" class="sq_loading_modal modal fade" role="dialog">
87
  <div class="modal-dialog">
88
  <div class="modal-content bg-light">
89
  <div class="modal-header">
@@ -124,7 +124,7 @@ $category_name = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('pa
124
  break;
125
  }
126
  if ($row['completed']) { ?>
127
- <div id="sq_success_modal" class="sq_success_modal modal fade" role="dialog">
128
  <div class="modal-dialog">
129
  <div class="modal-content bg-light">
130
  <div class="modal-header">
83
  <div id="sq_seocheck_content" class="col-sm-12 my-4 py-3" style="box-shadow: 0 0 10px -3px #994525; background-color: white; min-height: 100px;"></div>
84
 
85
  </div>
86
+ <div id="sq_loading_modal" tabindex="-1" class="sq_loading_modal modal fade" role="dialog">
87
  <div class="modal-dialog">
88
  <div class="modal-content bg-light">
89
  <div class="modal-header">
124
  break;
125
  }
126
  if ($row['completed']) { ?>
127
+ <div id="sq_success_modal" tabindex="-1" class="sq_success_modal modal fade" role="dialog">
128
  <div class="modal-dialog">
129
  <div class="modal-content bg-light">
130
  <div class="modal-header">
view/Overview.php CHANGED
@@ -1,4 +1,4 @@
1
- <div id="sq_wrap">
2
  <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
3
  <?php do_action('sq_form_notices'); ?>
4
  <?php if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') { ?>
@@ -36,23 +36,80 @@
36
 
37
  <div class="sq_flex flex-grow-1 mx-0 px-3">
38
  <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockStats')->init(); ?>
39
- <?php SQ_Classes_ObjController::getClass('SQ_Controllers_CheckSeo')->init(); ?>
40
- <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockJorney')->init(); ?>
 
 
 
 
 
41
  </div>
42
 
43
 
44
  <div class="sq_col sq_col_side ">
45
- <div class="card col-sm-12 p-0">
46
  <?php echo SQ_Classes_ObjController::getClass('SQ_Core_BlockSupport')->init(); ?>
47
  <?php if (SQ_Classes_Helpers_Tools::getMenuVisible('show_panel') && current_user_can('manage_options')) { ?>
48
  <div class="sq_account_info" style="min-height: 20px;"></div>
49
  <?php } ?>
50
- <?php if (current_user_can('sq_manage_snippets')) { ?>
51
- <?php if (SQ_Classes_Helpers_Tools::getOption('sq_seoexpert')) { ?>
52
- <?php echo SQ_Classes_ObjController::getClass('SQ_Core_BlockConnect')->init(); ?>
53
- <?php } ?>
54
- <?php echo SQ_Classes_ObjController::getClass('SQ_Core_BlockAssistant')->init(); ?>
55
- <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  </div>
57
  </div>
58
  </div>
1
+ <div id="sq_wrap" class="sq_overview">
2
  <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
3
  <?php do_action('sq_form_notices'); ?>
4
  <?php if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') { ?>
36
 
37
  <div class="sq_flex flex-grow-1 mx-0 px-3">
38
  <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockStats')->init(); ?>
39
+ <?php if (current_user_can('sq_manage_snippets')) { ?>
40
+ <?php SQ_Classes_ObjController::getClass('SQ_Controllers_CheckSeo')->init(); ?>
41
+ <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockJorney')->init(); ?>
42
+ <?php } else {
43
+ echo '<div class="col-sm-12 alert alert-success text-center mx-0 my-3 p-3">' . __("You do not have permission to access Daily Goals. You need Squirrly SEO Editor role.", _SQ_PLUGIN_NAME_) . '</div>';
44
+ } ?>
45
+ <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockFeatures')->init(); ?>
46
  </div>
47
 
48
 
49
  <div class="sq_col sq_col_side ">
50
+ <div class="card col-sm-12 p-0 my-1">
51
  <?php echo SQ_Classes_ObjController::getClass('SQ_Core_BlockSupport')->init(); ?>
52
  <?php if (SQ_Classes_Helpers_Tools::getMenuVisible('show_panel') && current_user_can('manage_options')) { ?>
53
  <div class="sq_account_info" style="min-height: 20px;"></div>
54
  <?php } ?>
55
+
56
+
57
+ </div>
58
+
59
+ <div class="card col-sm-12 p-0 my-1">
60
+ <?php echo SQ_Classes_ObjController::getClass('SQ_Core_BlockConnect')->init(); ?>
61
+ </div>
62
+
63
+ <div class="card col-sm-12 p-0 my-1">
64
+ <div class="card col-sm-12 px-1 py-3 m-0 my-2 border-0 shadow-none">
65
+ <h5 class="card-title text-center"><?php _e('Squirrly SEO Feature Categories', _SQ_PLUGIN_NAME_); ?></h5>
66
+ <div class="card-body pt-4">
67
+ <a href="#features"><img src="<?php echo _SQ_ASSETS_URL_ . 'img/squirrly_features.png' ?>" style="width: 100%"></a>
68
+ </div>
69
+ </div>
70
+ </div>
71
+
72
+
73
+ <?php if (current_user_can('sq_manage_snippets')) { ?>
74
+ <div class="card col-sm-12 p-0 my-1">
75
+ <div class="my-4 py-4">
76
+ <div class="col-sm-12 row m-0">
77
+ <div class="checker col-sm-12 row m-0 p-0">
78
+ <div class="col-sm-12 p-0 m-0 sq-switch sq-switch-sm sq_save_ajax">
79
+ <input type="checkbox" id="sq_seoexpert" name="sq_seoexpert" class="sq-switch" data-action="sq_ajax_seosettings_save" data-input="sq_seoexpert" data-name="sq_seoexpert" <?php echo(SQ_Classes_Helpers_Tools::getOption('sq_seoexpert') ? 'checked="checked"' : '') ?> value="1"/>
80
+ <label for="sq_seoexpert" class="ml-1"><?php _e('Show Advanced SEO', _SQ_PLUGIN_NAME_); ?></label>
81
+ <div class="text-black-50 m-0 mt-2 p-1" style="font-size: 13px;"><?php _e('Switch off to have the simplified version of the settings, intended for Non-SEO Experts.', _SQ_PLUGIN_NAME_); ?></div>
82
+ <div class="text-black-50 m-0 mt-2 p-1" style="font-size: 13px;"><?php _e('It will offer the same level of SEO performance, but it will be less customizable.', _SQ_PLUGIN_NAME_); ?></div>
83
+ </div>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ </div>
88
+ <?php } ?>
89
+
90
+ <div class="card col-sm-12 p-0 my-1">
91
+ <div class="my-3 py-3">
92
+ <div class="col-sm-12 row m-0">
93
+ <div class="checker col-sm-12 row m-0 p-0 text-center">
94
+ <div class="col-sm-12 my-2 mx-auto p-0 font-weight-bold" style="font-size: 18px;"><?php echo __('We Need Your Support', _SQ_PLUGIN_NAME_) ?></div>
95
+
96
+ <div class="col-sm-12 my-2 p-0">
97
+ <a href="https://wordpress.org/support/view/plugin-reviews/squirrly-seo#postform" target="_blank">
98
+ <img src="<?php echo _SQ_ASSETS_URL_ . 'img/5stars.png' ?>">
99
+ </a>
100
+ </div>
101
+ <div class="col-sm-12 my-2 p-0">
102
+ <a href="https://wordpress.org/support/view/plugin-reviews/squirrly-seo#postform" target="_blank" class="font-weight-bold" style="font-size: 16px;">
103
+ <?php echo __('Rate us if you like Squirrly SEO', _SQ_PLUGIN_NAME_) ?>
104
+ </a>
105
+ </div>
106
+ </div>
107
+ </div>
108
+ </div>
109
+ </div>
110
+
111
+ <div class="card col-sm-12 p-0 my-1">
112
+ <?php echo SQ_Classes_ObjController::getClass('SQ_Core_BlockKnowledgeBase')->init(); ?>
113
  </div>
114
  </div>
115
  </div>
view/Ranking/Rankings.php CHANGED
@@ -14,7 +14,7 @@ $days_back = (int)SQ_Classes_Helpers_Tools::getValue('days_back', 30);
14
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
15
  <?php
16
  if (!current_user_can('sq_manage_focuspages')) {
17
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_) . '</div>';
18
  return;
19
  }
20
  ?>
@@ -32,7 +32,7 @@ $days_back = (int)SQ_Classes_Helpers_Tools::getValue('days_back', 30);
32
  <?php if ($view->checkin->subscription_serpcheck) { ?>
33
  <div class="card-title-description m-2"><?php _e("It's a fully functional SEO Ranking Tool that helps you find the true position of your website in Google for any keyword and any country you want", _SQ_PLUGIN_NAME_); ?></div>
34
  <?php } else { ?>
35
- <div class="card-title-description m-2"><?php _e("See the Google Search Console average possition, click and impressions for organic keywords", _SQ_PLUGIN_NAME_); ?></div>
36
  <?php } ?>
37
  </div>
38
 
@@ -341,7 +341,7 @@ $days_back = (int)SQ_Classes_Helpers_Tools::getValue('days_back', 30);
341
  continue;
342
  }
343
  ?>
344
- <div id="sq_ranking_modal<?php echo $key; ?>" class="sq_ranking_modal modal fade" role="dialog">
345
  <div class="modal-dialog">
346
  <div class="modal-content bg-light">
347
  <div class="modal-header">
14
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
15
  <?php
16
  if (!current_user_can('sq_manage_focuspages')) {
17
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_) . '</div>';
18
  return;
19
  }
20
  ?>
32
  <?php if ($view->checkin->subscription_serpcheck) { ?>
33
  <div class="card-title-description m-2"><?php _e("It's a fully functional SEO Ranking Tool that helps you find the true position of your website in Google for any keyword and any country you want", _SQ_PLUGIN_NAME_); ?></div>
34
  <?php } else { ?>
35
+ <div class="card-title-description m-2"><?php _e("Get the Google Search Console average possitions, clicks and impressions for all organic keywords of your website.", _SQ_PLUGIN_NAME_); ?></div>
36
  <?php } ?>
37
  </div>
38
 
341
  continue;
342
  }
343
  ?>
344
+ <div id="sq_ranking_modal<?php echo $key; ?>" tabindex="-1" class="sq_ranking_modal modal fade" role="dialog">
345
  <div class="modal-dialog">
346
  <div class="modal-content bg-light">
347
  <div class="modal-header">
view/Ranking/Settings.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_focuspages')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
@@ -184,4 +184,3 @@
184
 
185
  </div>
186
  </div>
187
- </div>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_focuspages')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
184
 
185
  </div>
186
  </div>
 
view/Research/Briefcase.php CHANGED
@@ -68,7 +68,7 @@
68
  </select>
69
  <button class="sq_bulk_submit btn btn-sm btn-success"><?php _e('Apply'); ?></button>
70
 
71
- <div id="sq_label_manage_popup_bulk" class="sq_label_manage_popup modal fade" role="dialog">
72
  <div class="modal-dialog" style="width: 600px;">
73
  <div class="modal-content bg-light">
74
  <div class="modal-header">
@@ -240,7 +240,7 @@
240
  </table>
241
 
242
  <?php foreach ($view->keywords as $key => $row) { ?>
243
- <div id="sq_kr_research<?php echo $key; ?>" class="sq_kr_research modal fade" role="dialog">
244
  <div class="modal-dialog">
245
  <div class="modal-content bg-light">
246
  <div class="modal-header">
@@ -312,7 +312,7 @@
312
  </div>
313
  </div>
314
  </div>
315
- <div id="sq_label_manage_popup<?php echo $key ?>" class="sq_label_manage_popup modal fade" role="dialog">
316
  <div class="modal-dialog" style="width: 600px;">
317
  <div class="modal-content bg-light">
318
  <div class="modal-header">
@@ -394,7 +394,7 @@
394
  <div>
395
  <button type="button" class="btn rounded-0 btn-success my-1 px-2 mx-2" style="min-width: 175px" onclick="jQuery('.sq_briefcase_restore_dialog').modal('show')" data-dismiss="modal"><?php _e('Import Keywords', _SQ_PLUGIN_NAME_); ?></button>
396
  </div>
397
- <div class="sq_briefcase_restore_dialog modal fade" role="dialog">
398
  <div class="modal-dialog modal-lg">
399
  <div class="modal-content bg-light">
400
  <div class="modal-header">
68
  </select>
69
  <button class="sq_bulk_submit btn btn-sm btn-success"><?php _e('Apply'); ?></button>
70
 
71
+ <div id="sq_label_manage_popup_bulk" tabindex="-1" class="sq_label_manage_popup modal fade" role="dialog">
72
  <div class="modal-dialog" style="width: 600px;">
73
  <div class="modal-content bg-light">
74
  <div class="modal-header">
240
  </table>
241
 
242
  <?php foreach ($view->keywords as $key => $row) { ?>
243
+ <div id="sq_kr_research<?php echo $key; ?>" tabindex="-1" class="sq_kr_research modal fade" role="dialog">
244
  <div class="modal-dialog">
245
  <div class="modal-content bg-light">
246
  <div class="modal-header">
312
  </div>
313
  </div>
314
  </div>
315
+ <div id="sq_label_manage_popup<?php echo $key ?>" tabindex="-1" class="sq_label_manage_popup modal fade" role="dialog">
316
  <div class="modal-dialog" style="width: 600px;">
317
  <div class="modal-content bg-light">
318
  <div class="modal-header">
394
  <div>
395
  <button type="button" class="btn rounded-0 btn-success my-1 px-2 mx-2" style="min-width: 175px" onclick="jQuery('.sq_briefcase_restore_dialog').modal('show')" data-dismiss="modal"><?php _e('Import Keywords', _SQ_PLUGIN_NAME_); ?></button>
396
  </div>
397
+ <div class="sq_briefcase_restore_dialog modal fade" tabindex="-1" role="dialog">
398
  <div class="modal-dialog modal-lg">
399
  <div class="modal-content bg-light">
400
  <div class="modal-header">
view/Research/Labels.php CHANGED
@@ -20,7 +20,7 @@
20
  <?php do_action('sq_subscription_notices'); ?>
21
 
22
  <button class="btn btn-lg btn-warning text-white col-sm-3 ml-3" onclick="jQuery('.sq_add_labels_dialog').modal('show')" data-dismiss="modal"><i class="fa fa-plus-square-o"></i> <?php _e('Add new Label', _SQ_PLUGIN_NAME_); ?></button>
23
- <div class="sq_add_labels_dialog modal fade" role="dialog">
24
  <div class="modal-dialog">
25
  <div class="modal-content bg-light">
26
  <div class="modal-header">
@@ -34,7 +34,7 @@
34
  </div>
35
  <div class="form-group">
36
  <label for="sq_labelcolor" style="display: block"><?php _e('Label Color', _SQ_PLUGIN_NAME_); ?></label>
37
- <input type="text" id="sq_labelcolor" value="#ff0000"/>
38
  </div>
39
 
40
 
@@ -46,7 +46,7 @@
46
  </div>
47
  </div>
48
  </div>
49
- <div class="sq_edit_label_dialog modal fade" role="dialog">
50
  <div class="modal-dialog">
51
  <div class="modal-content bg-light">
52
  <div class="modal-header">
20
  <?php do_action('sq_subscription_notices'); ?>
21
 
22
  <button class="btn btn-lg btn-warning text-white col-sm-3 ml-3" onclick="jQuery('.sq_add_labels_dialog').modal('show')" data-dismiss="modal"><i class="fa fa-plus-square-o"></i> <?php _e('Add new Label', _SQ_PLUGIN_NAME_); ?></button>
23
+ <div class="sq_add_labels_dialog modal fade" tabindex="-1" role="dialog">
24
  <div class="modal-dialog">
25
  <div class="modal-content bg-light">
26
  <div class="modal-header">
34
  </div>
35
  <div class="form-group">
36
  <label for="sq_labelcolor" style="display: block"><?php _e('Label Color', _SQ_PLUGIN_NAME_); ?></label>
37
+ <input type="text" id="sq_labelcolor" value="<?php echo sprintf('#%06X', mt_rand(0, 0xFFFFFF)); ?>"/>
38
  </div>
39
 
40
 
46
  </div>
47
  </div>
48
  </div>
49
+ <div class="sq_edit_label_dialog modal fade" tabindex="-1" role="dialog">
50
  <div class="modal-dialog">
51
  <div class="modal-content bg-light">
52
  <div class="modal-header">
view/SeoSettings/Advanced.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_) . '</div>';
8
  return;
9
  }
10
  ?>
@@ -68,22 +68,17 @@
68
 
69
  <div class="sq_separator my-3"></div>
70
 
71
- <div class="col-sm-12 pt-0 pb-4">
72
-
73
- <div class="col-sm-12 row mb-1 ml-1">
74
- <div class="checker col-sm-12 row my-2 py-1">
75
- <div class="col-sm-12 p-0 sq-switch sq-switch-sm">
76
- <input type="hidden" name="sq_complete_uninstall" value="0"/>
77
- <input type="checkbox" id="sq_complete_uninstall" name="sq_complete_uninstall" class="sq-switch" <?php echo(SQ_Classes_Helpers_Tools::getOption('sq_complete_uninstall') ? 'checked="checked"' : '') ?> value="1"/>
78
- <label for="sq_complete_uninstall" class="ml-2"><?php _e('Delete Squirrly Table on Uninstall', _SQ_PLUGIN_NAME_); ?></label>
79
- <div class="offset-1 small text-black-50"><?php echo __('Delete Squirrly SEO table and options on uninstall.', _SQ_PLUGIN_NAME_); ?></div>
80
- </div>
81
  </div>
82
  </div>
83
-
84
  </div>
85
 
86
-
87
  </div>
88
 
89
  </div>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_) . '</div>';
8
  return;
9
  }
10
  ?>
68
 
69
  <div class="sq_separator my-3"></div>
70
 
71
+ <div class="col-sm-12 row mb-1 ml-1">
72
+ <div class="checker col-sm-12 row my-2 py-1">
73
+ <div class="col-sm-12 p-0 sq-switch sq-switch-sm">
74
+ <input type="hidden" name="sq_complete_uninstall" value="0"/>
75
+ <input type="checkbox" id="sq_complete_uninstall" name="sq_complete_uninstall" class="sq-switch" <?php echo(SQ_Classes_Helpers_Tools::getOption('sq_complete_uninstall') ? 'checked="checked"' : '') ?> value="1"/>
76
+ <label for="sq_complete_uninstall" class="ml-2"><?php _e('Delete Squirrly Table on Uninstall', _SQ_PLUGIN_NAME_); ?></label>
77
+ <div class="offset-1 small text-black-50"><?php echo __('Delete Squirrly SEO table and options on uninstall.', _SQ_PLUGIN_NAME_); ?></div>
 
 
 
78
  </div>
79
  </div>
 
80
  </div>
81
 
 
82
  </div>
83
 
84
  </div>
view/SeoSettings/Automation.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
view/SeoSettings/Bulkseo.php DELETED
@@ -1,242 +0,0 @@
1
- <div id="sq_wrap">
2
- <?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
3
- <?php SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet')->init(); ?>
4
- <?php SQ_Classes_ObjController::getClass('SQ_Controllers_Patterns')->init(); ?>
5
- <?php $patterns = SQ_Classes_Helpers_Tools::getOption('patterns'); ?>
6
- <?php do_action('sq_notices'); ?>
7
-
8
-
9
- <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
10
- <?php
11
- if (!current_user_can('sq_manage_snippet')) {
12
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">' . __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_) . '</div>';
13
- return;
14
- }
15
- ?>
16
- <?php echo SQ_Classes_ObjController::getClass('SQ_Models_Menu')->getAdminTabs(SQ_Classes_Helpers_Tools::getValue('tab', 'bulkseo'), 'sq_seosettings'); ?>
17
- <div class="d-flex flex-row flex-nowrap flex-grow-1 bg-white pl-3 pr-0 mr-0">
18
- <div class="flex-grow-1 mr-3">
19
- <?php do_action('sq_form_notices'); ?>
20
-
21
- <div class="card col-sm-12 p-0">
22
- <div class="card-body p-2 bg-title rounded-top">
23
- <div class="sq_help_question float-right"><a href="https://howto.squirrly.co/kb/bulk-seo/" target="_blank"><i class="fa fa-question-circle"></i></a></div>
24
- <div class="sq_icons sq_bulkseo_icon m-2"></div>
25
- <h3 class="card-title"><?php _e('Bulk SEO', _SQ_PLUGIN_NAME_); ?>:</h3>
26
- <div class="card-title-description m-2"><?php _e('Simplify the SEO process for all your posts types and optimize them in just minutes. ', _SQ_PLUGIN_NAME_); ?></div>
27
- </div>
28
- <div id="sq_seosettings_bulkseo" class="card col-sm-12 p-0 tab-panel border-0">
29
-
30
- <div class="row px-3">
31
- <form id="sq_bulkseo_form" method="get" class="form-inline col-sm-12 ignore">
32
- <input type="hidden" name="page" value="<?php echo SQ_Classes_Helpers_Tools::getValue('page') ?>">
33
- <input type="hidden" name="tab" value="<?php echo SQ_Classes_Helpers_Tools::getValue('tab') ?>">
34
- <div class="sq_filter_label col-sm-12 row p-2">
35
- <?php if (isset($view->labels) && !empty($view->labels)) {
36
- $keyword_labels = SQ_Classes_Helpers_Tools::getValue('slabel', array());
37
- foreach ($view->labels as $category => $label) {
38
- if ($label->show) {
39
- ?>
40
- <input type="checkbox" name="slabel[]" onclick="jQuery('input[type=submit]').trigger('click');" id="search_checkbox_<?php echo $category ?>" style="display: none;" value="<?php echo $category ?>" <?php echo(in_array($category, (array)$keyword_labels) ? 'checked' : '') ?> />
41
- <label for="search_checkbox_<?php echo $category ?>" class="sq_circle_label fa <?php echo(in_array($category, (array)$keyword_labels) ? 'sq_active' : '') ?>" data-id="<?php echo $category ?>" style="background-color: <?php echo $label->color ?>" title="<?php echo $label->name ?>"><?php echo $label->name ?></label>
42
- <?php
43
- }
44
- }
45
- } ?>
46
- </div>
47
-
48
- <div class="col-sm-12 row px-0 mx-0">
49
-
50
- <div class="col-sm-2 py-2 pl-0 pr-1 mx-0">
51
-
52
- <select name="stype" class="col-sm-12 d-inline-block m-0 p-1" onchange="jQuery('form#sq_bulkseo_form').submit();">
53
- <?php
54
- foreach ($patterns as $pattern => $type) {
55
- if (in_array($pattern, array('custom', 'tax-category', 'search', 'archive', '404'))) continue;
56
- if (strpos($pattern, 'product') !== false || strpos($pattern, 'shop') !== false) {
57
- if (!SQ_Classes_Helpers_Tools::isEcommerce()) continue;
58
- }
59
-
60
- ?>
61
- <option <?php echo(($pattern == SQ_Classes_Helpers_Tools::getValue('stype', 'post')) ? 'selected="selected"' : '') ?> value="<?php echo $pattern ?>"><?php echo ucwords(str_replace(array('-', '_'), ' ', $pattern)); ?></option>
62
- <?php
63
- }
64
-
65
- $filter = array('public' => true, '_builtin' => false);
66
- $types = get_post_types($filter);
67
- foreach ($types as $pattern => $type) {
68
- if (in_array($pattern, array_keys($patterns))) {
69
- continue;
70
- }
71
- ?>
72
- <option <?php echo(($pattern == SQ_Classes_Helpers_Tools::getValue('stype', 'post')) ? 'selected="selected"' : '') ?> value="<?php echo $pattern ?>"><?php echo ucwords(str_replace(array('-', '_'), ' ', $pattern)); ?></option>
73
- <?php
74
- }
75
-
76
- $filter = array('public' => true,);
77
- $taxonomies = get_taxonomies($filter);
78
- foreach ($taxonomies as $pattern => $type) {
79
- //remove tax that are already included in patterns
80
- if (in_array($pattern, array('post_tag', 'post_format', 'product_cat', 'product_tag', 'product_shipping_class'))) continue;
81
- if (in_array($pattern, array_keys($patterns))) continue;
82
- ?>
83
- <option <?php echo(($pattern == SQ_Classes_Helpers_Tools::getValue('stype', 'post')) ? 'selected="selected"' : '') ?> value="<?php echo $pattern ?>"><?php echo ucwords(str_replace(array('-', '_'), ' ', $pattern)); ?></option>
84
- <?php
85
- }
86
- ?>
87
- </select>
88
-
89
- </div>
90
- <div class="col-sm-2 py-2 pl-0 pr-1 mx-0">
91
- <?php if (!empty($view->pages)) {
92
- foreach ($view->pages as $index => $post) {
93
- if (isset($post->ID)) {
94
- ?>
95
- <select name="sstatus" class="col-sm-12 d-inline-block m-0 p-1" onchange="jQuery('form#sq_bulkseo_form').submit();">
96
- <option <?php echo((!SQ_Classes_Helpers_Tools::getValue('sstatus', false)) ? 'selected="selected"' : '') ?> value=""><?php echo __('Any status', _SQ_PLUGIN_NAME_); ?></option>
97
- <?php
98
-
99
- $statuses = array('draft', 'publish', 'pending', 'future', 'private');
100
- foreach ($statuses as $status) { ?>
101
- <option <?php echo(($status == SQ_Classes_Helpers_Tools::getValue('sstatus', false)) ? 'selected="selected"' : '') ?> value="<?php echo $status ?>"><?php echo ucfirst($status); ?></option>
102
- <?php
103
- }
104
- ?>
105
- </select>
106
- <?php
107
- break;
108
- }
109
- }
110
- } ?>
111
-
112
- </div>
113
- <div class="col-sm-8 p-0 py-2 mx-0">
114
- <div class="d-flex flex-row justify-content-end p-0 m-0">
115
- <input type="search" class="d-inline-block align-middle col-sm-7 p-2 mr-2" id="post-search-input" autofocus name="skeyword" value="<?php echo htmlspecialchars(SQ_Classes_Helpers_Tools::getValue('skeyword')) ?>"/>
116
- <input type="submit" class="btn btn-primary" value="<?php echo __('Search', _SQ_PLUGIN_NAME_) ?>"/>
117
- <?php if ((SQ_Classes_Helpers_Tools::getIsset('skeyword') && SQ_Classes_Helpers_Tools::getValue('skeyword') <> '#all') || SQ_Classes_Helpers_Tools::getIsset('slabel') || SQ_Classes_Helpers_Tools::getIsset('sid') || SQ_Classes_Helpers_Tools::getIsset('sstatus')) { ?>
118
- <button type="button" class="btn btn-info ml-1 p-v-xs" onclick="location.href = '<?php echo SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'bulkseo') . '&stype=' . SQ_Classes_Helpers_Tools::getValue('stype', 'post') ?>';" style="cursor: pointer"><?php echo __('Show All') ?></button>
119
- <?php } ?>
120
- </div>
121
- </div>
122
-
123
- </div>
124
- </form>
125
- </div>
126
-
127
- <div class="card-body p-0 position-relative">
128
- <?php
129
- $post_type = SQ_Classes_Helpers_Tools::getValue('stype', 'post');
130
- $categories = SQ_Classes_ObjController::getClass('SQ_Models_BulkSeo')->getCategories();
131
- ?>
132
- <div class="sq_overflow col-sm-12 m-0 p-2 flexcroll">
133
- <div class="card col-sm-12 my-1 p-0 border-0 " style="display: inline-block;">
134
-
135
- <table class="table table-light table-striped table-hover table-bordered">
136
- <thead class="thead-dark">
137
- <tr>
138
- <th><?php echo __('Title', _SQ_PLUGIN_NAME_) ?></th>
139
- <?php
140
- if (!empty($categories)) {
141
- foreach ($categories as $category_title) {
142
- echo '<th>' . $category_title . '</th>';
143
- }
144
- }
145
- ?>
146
- </tr>
147
- </thead>
148
- <tbody>
149
- <?php
150
- $loaded_posts = array();
151
- if (!empty($view->pages)) {
152
- foreach ($view->pages as $index => $post) {
153
- if (!$post) continue; //don't load post if errors
154
- if (in_array($post->hash, $loaded_posts)) continue; //don't load post for multiple times
155
-
156
- $can_edit_post = ($post->ID ? current_user_can('edit_post', $post->ID) : false);
157
- $can_edit_tax = ($post->term_id ? current_user_can('edit_term', $post->term_id) : false);
158
- if (!current_user_can('sq_manage_snippets') && !$can_edit_tax && !$can_edit_post) continue;
159
- ?>
160
- <tr id="sq_row_<?php echo $post->hash ?>" class="<?php echo($index % 2 ? 'even' : 'odd') ?>">
161
- <?php
162
- $view->post = $post;
163
- echo $view->getView('SeoSettings/BulkseoRow');
164
- ?>
165
- </tr>
166
-
167
- <div id="sq_blocksnippet_<?php echo $post->hash ?>" data-snippet="backend" class="sq_blocksnippet shadow-sm border-bottom" style="display: none"><?php
168
- SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet')->setPost($post);
169
- echo SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet')->getView('Blocks/Snippet'); ?>
170
- </div>
171
- <?php
172
- $loaded_posts[] = $post->hash;
173
- }
174
- } else { ?>
175
- <tr id="sq_row" class="even">
176
- <td colspan="<?php echo(count((array)$categories) + 1) ?>" class="text-center">
177
- <?php if ((SQ_Classes_Helpers_Tools::getIsset('skeyword') && SQ_Classes_Helpers_Tools::getValue('skeyword') <> '#all') || SQ_Classes_Helpers_Tools::getIsset('slabel') || SQ_Classes_Helpers_Tools::getIsset('sid') || SQ_Classes_Helpers_Tools::getIsset('sstatus')) { ?>
178
- <?php echo sprintf(__('No data for this filter. %sShow All%s records for this post type.', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'bulkseo') . '&stype=' . SQ_Classes_Helpers_Tools::getValue('stype', 'post') . '" >', '</a>') ?>
179
- <?php } else { ?>
180
- <?php echo __('No data found for this post type. Try other post types.', _SQ_PLUGIN_NAME_) ?>
181
- <?php } ?>
182
- </td>
183
- </tr>
184
-
185
- <?php } ?>
186
- </tbody>
187
- </table>
188
- <div class="nav-previous alignleft"><?php the_posts_pagination(array(
189
- 'mid_size' => 3,
190
- 'base' => 'admin.php%_%',
191
- 'format' => '?spage=%#%',
192
- 'prev_text' => __('Prev Page', _SQ_PLUGIN_NAME_),
193
- 'next_text' => __('Next Page', _SQ_PLUGIN_NAME_),
194
- ));; ?></div>
195
- </div>
196
-
197
- </div>
198
- </div>
199
- </div>
200
- </div>
201
- </div>
202
-
203
- <div class="sq_col_side sticky">
204
- <div class="card col-sm-12 p-0">
205
- <?php echo SQ_Classes_ObjController::getClass('SQ_Core_BlockSupport')->init(); ?>
206
- <div class="sq_assistant">
207
- <ul class="p-0 mx-5">
208
- <li class="completed text-black-50 p-0 m-0">
209
- <img src="<?php echo _SQ_ASSETS_URL_ . 'img/help/bs_steps.png' ?>" style="max-width: 100%">
210
- </li>
211
- </ul>
212
- </div>
213
- <?php
214
- $loaded_posts = array();
215
- if (!empty($view->pages)) {
216
- foreach ($view->pages as $post) {
217
- if (in_array($post->hash, $loaded_posts)) continue; //don't load post for multiple times
218
- ?>
219
- <div id="sq_assistant_<?php echo $post->hash ?>" class="sq_assistant">
220
- <?php
221
- $categories = apply_filters('sq_assistant_categories_page', $post->hash);
222
-
223
- if (!empty($categories)) {
224
- foreach ($categories as $index => $category) {
225
- if (isset($category->assistant)) {
226
- echo $category->assistant;
227
- }
228
- }
229
- }
230
- ?>
231
- </div>
232
- <?php
233
- $loaded_posts[] = $post->hash;
234
-
235
- }
236
- } ?>
237
- </div>
238
- </div>
239
-
240
- </div>
241
- </div>
242
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
view/SeoSettings/BulkseoRow.php DELETED
@@ -1,39 +0,0 @@
1
- <?php
2
- //SQ_Debug::dump($view->post);
3
- $edit_link = false;
4
-
5
- if (isset($view->post->ID)) {
6
- if ($view->post->post_type <> 'profile') {
7
- $edit_link = get_edit_post_link($view->post->ID, false);
8
- }
9
-
10
- } elseif ($view->post->term_id) {
11
- $term = get_term_by('term_id', $view->post->term_id, $view->post->taxonomy);
12
- if (!is_wp_error($term)) {
13
- $edit_link = get_edit_term_link($term->term_id, $view->post->taxonomy);
14
- }
15
- }
16
-
17
- if ($view->post instanceof SQ_Models_Domain_Post) { ?>
18
- <td style="max-width: 380px;">
19
- <div class="col-sm-12 px-0 mx-0 font-weight-bold"><?php echo $view->post->sq->title ?><?php echo(($view->post->post_status <> 'publish' && $view->post->post_status <> 'inherit' && $view->post->post_status <> '') ? ' <spam style="font-weight: normal">(' . $view->post->post_status . ')</spam>' : '') ?>
20
- <?php if ($edit_link) { ?>
21
- <a href="<?php echo $edit_link ?>" target="_blank">
22
- <i class="fa fa-edit" style="font-size: 11px"></i>
23
- </a>
24
- <?php } ?>
25
- </div>
26
- <div class="small "><?php echo '<a href="' . $view->post->url . '" title="' . esc_attr(sprintf(__('View &#8220;%s&#8221;'), $view->post->post_title)) . '" class="text-link" rel="permalink" target="_blank">' . urldecode($view->post->url) . '</a>' ?></div>
27
- </td>
28
- <?php
29
- $categories = apply_filters('sq_assistant_categories_page', $view->post->hash);
30
- if (!empty($categories)) {
31
- foreach ($categories as $name => $category) {
32
- ?>
33
- <td style="min-width: 110px; ">
34
- <div class="sq_show_snippet <?php echo(($category->value === false) ? 'sq_circle_label' : '') ?>" data-id="<?php echo $view->post->hash ?>" data-category="<?php echo $name ?>" style="cursor: pointer; <?php echo(($category->value === false) ? 'background-color' : 'color') ?>: <?php echo $category->color ?>;" title="<?php echo $category->title ?>"><?php echo(($category->value !== false) ? $category->value : '') ?></div>
35
- </td>
36
- <?php
37
- }
38
- } ?>
39
- <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
view/SeoSettings/Favicon.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
@@ -22,7 +22,7 @@
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-8 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
- <div class="sq_icons sq_settings_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title"><?php _e('Website Icon', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  <div class="col-sm-12 text-left m-0 p-0">
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-8 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
+ <div class="sq_icons sq_favicon_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title"><?php _e('Website Icon', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  <div class="col-sm-12 text-left m-0 p-0">
view/SeoSettings/Jsonld.php CHANGED
@@ -22,7 +22,7 @@
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-8 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
- <div class="sq_icons sq_settings_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title py-4"><?php _e('JSON-LD Structured Data', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  </div>
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-8 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
+ <div class="sq_icons sq_jsonld_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title py-4"><?php _e('JSON-LD Structured Data', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  </div>
view/SeoSettings/Metas.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
@@ -24,7 +24,7 @@
24
  <div class="col-sm-12 text-left m-0 p-0">
25
  <div class="sq_help_question float-right"><a href="https://howto.squirrly.co/kb/seo-metas/" target="_blank"><i class="fa fa-question-circle"></i></a></div>
26
  <div class="sq_icons_content p-3 py-4">
27
- <div class="sq_icons sq_settings_icon m-2"></div>
28
  </div>
29
  <h3 class="card-title py-4"><?php _e('SEO Metas', _SQ_PLUGIN_NAME_); ?>:</h3>
30
  </div>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
24
  <div class="col-sm-12 text-left m-0 p-0">
25
  <div class="sq_help_question float-right"><a href="https://howto.squirrly.co/kb/seo-metas/" target="_blank"><i class="fa fa-question-circle"></i></a></div>
26
  <div class="sq_icons_content p-3 py-4">
27
+ <div class="sq_icons sq_metas_icon m-2"></div>
28
  </div>
29
  <h3 class="card-title py-4"><?php _e('SEO Metas', _SQ_PLUGIN_NAME_); ?>:</h3>
30
  </div>
view/SeoSettings/Robots.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
@@ -22,7 +22,7 @@
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-8 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
- <div class="sq_icons sq_settings_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title"><?php _e('Robots File', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  <div class="col-sm-12 text-left m-0 p-0">
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-8 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
+ <div class="sq_icons sq_robots_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title"><?php _e('Robots File', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  <div class="col-sm-12 text-left m-0 p-0">
view/SeoSettings/Sitemap.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
@@ -23,7 +23,7 @@
23
  <div class="card-body p-2 bg-title rounded-top row">
24
  <div class="col-sm-8 text-left m-0 p-0">
25
  <div class="sq_icons_content p-3 py-4">
26
- <div class="sq_icons sq_settings_icon m-2"></div>
27
  </div>
28
  <h3 class="card-title py-4"><?php _e('Sitemap XML', _SQ_PLUGIN_NAME_); ?>:</h3>
29
  </div>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
23
  <div class="card-body p-2 bg-title rounded-top row">
24
  <div class="col-sm-8 text-left m-0 p-0">
25
  <div class="sq_icons_content p-3 py-4">
26
+ <div class="sq_icons sq_sitemap_icon m-2"></div>
27
  </div>
28
  <h3 class="card-title py-4"><?php _e('Sitemap XML', _SQ_PLUGIN_NAME_); ?>:</h3>
29
  </div>
view/SeoSettings/Social.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
@@ -22,7 +22,7 @@
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-7 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
- <div class="sq_icons sq_settings_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title py-4"><?php _e('Social Media', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  </div>
@@ -268,7 +268,7 @@
268
  <input type="hidden" name="sq_auto_twitter" value="0"/>
269
  <input type="checkbox" id="sq_auto_twitter" name="sq_auto_twitter" class="sq-switch" <?php echo(SQ_Classes_Helpers_Tools::getOption('sq_auto_twitter') ? 'checked="checked"' : '') ?> value="1"/>
270
  <label for="sq_auto_twitter" class="ml-2"><?php _e('Activate Twitter Card', _SQ_PLUGIN_NAME_); ?></label>
271
- <div class="offset-1 small text-black-50"><?php _e('Add the Twitter card in your tweets so that your Twitter shares look good.', _SQ_PLUGIN_NAME_); ?></div>
272
  <div class="offset-1 small text-black-50"><?php echo sprintf(__('Make sure you validate the twitter card with your Twitter account. Visit %sTwitter Card Validator%s', _SQ_PLUGIN_NAME_), '<a href="https://cards-dev.twitter.com/validator?url=' . home_url() . '" target="_blank" ><strong>', '</strong></a>'); ?></div>
273
  </div>
274
  </div>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-7 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
+ <div class="sq_icons sq_social_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title py-4"><?php _e('Social Media', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  </div>
268
  <input type="hidden" name="sq_auto_twitter" value="0"/>
269
  <input type="checkbox" id="sq_auto_twitter" name="sq_auto_twitter" class="sq-switch" <?php echo(SQ_Classes_Helpers_Tools::getOption('sq_auto_twitter') ? 'checked="checked"' : '') ?> value="1"/>
270
  <label for="sq_auto_twitter" class="ml-2"><?php _e('Activate Twitter Card', _SQ_PLUGIN_NAME_); ?></label>
271
+ <div class="offset-1 small text-black-50"><?php _e('Add the Twitter Card in your tweets so that your Twitter shares look good.', _SQ_PLUGIN_NAME_); ?></div>
272
  <div class="offset-1 small text-black-50"><?php echo sprintf(__('Make sure you validate the twitter card with your Twitter account. Visit %sTwitter Card Validator%s', _SQ_PLUGIN_NAME_), '<a href="https://cards-dev.twitter.com/validator?url=' . home_url() . '" target="_blank" ><strong>', '</strong></a>'); ?></div>
273
  </div>
274
  </div>
view/SeoSettings/Tracking.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
@@ -22,7 +22,7 @@
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-7 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
- <div class="sq_icons sq_settings_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title py-4"><?php _e('Tracking Tools', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  </div>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-7 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
+ <div class="sq_icons sq_traffic_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title py-4"><?php _e('Tracking Tools', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  </div>
view/SeoSettings/Webmaster.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
- echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
@@ -22,7 +22,7 @@
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-7 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
- <div class="sq_icons sq_settings_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title py-4"><?php _e('Webmaster Tools', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  </div>
4
  <div class="d-flex flex-row my-0 bg-white" style="clear: both !important;">
5
  <?php
6
  if (!current_user_can('sq_manage_settings')) {
7
+ echo '<div class="col-sm-12 alert alert-success text-center m-0 p-3">'. __("You do not have permission to access this page. You need Squirrly SEO Admin role.", _SQ_PLUGIN_NAME_).'</div>';
8
  return;
9
  }
10
  ?>
22
  <div class="card-body p-2 bg-title rounded-top row">
23
  <div class="col-sm-7 text-left m-0 p-0">
24
  <div class="sq_icons_content p-3 py-4">
25
+ <div class="sq_icons sq_websites_icon m-2"></div>
26
  </div>
27
  <h3 class="card-title py-4"><?php _e('Webmaster Tools', _SQ_PLUGIN_NAME_); ?>:</h3>
28
  </div>
view/assets/css/briefcase.css CHANGED
@@ -148,8 +148,11 @@
148
  }
149
 
150
 
151
- #sq_briefcaselabels .wp-color-result-text{
 
 
152
  line-height: 29px;
 
153
  }
154
 
155
  .wp-picker-holder *{
148
  }
149
 
150
 
151
+ #sq_briefcaselabels .wp-color-result-text,
152
+ #sq_briefcaselabels .wp-color-picker,
153
+ #sq_briefcaselabels .wp-picker-clear{
154
  line-height: 29px;
155
+ padding: 1px 6px;
156
  }
157
 
158
  .wp-picker-holder *{
view/assets/css/briefcase.min.css CHANGED
@@ -1 +1 @@
1
- #sq_toolbar *{-webkit-box-sizing:content-box!important;box-sizing:content-box!important}.sq_absolute{top:28px!important}@media (min-width:768px){.modal-dialog{width:600px;margin:60px auto!important}}#sq_briefcase .wp-picker-holder .iris-slider{height:182.346px!important;width:26.2px!important}#sq_briefcase .wp-picker-container .wp-color-result.button{height:23px}#sq_briefcase ul.sq_row_stats li{float:left;margin-right:10px;font-size:14px}#sq_briefcase ul.sq_row_stats li i.fa-refresh{font-size:11px;color:#999;line-height:30px;display:none}#sq_briefcase .sq_saved_label:hover span.sq_delete_label,#sq_briefcase .sq_saved_label:hover span.sq_edit_label,#sq_briefcase table.table tr:hover .sq_label_manage,#sq_briefcase table.table tr:hover .sq_label_refresh,#sq_briefcase table.table tr:hover ul.sq_row_stats li i.fa-refresh,#sq_briefcaselabels .sq_saved_label:hover span.sq_delete_label,#sq_briefcaselabels .sq_saved_label:hover span.sq_edit_label{display:block}#sq_briefcase table.table td{font-size:15px}#sq_ranks table.table-keywords td:first-child{width:60%;font-weight:700;color:#428ea1}#sq_ranks table.table-keywords td:nth-child(2){width:120px}#sq_ranks table.table-keywords td:nth-child(3){width:150px}#sq_briefcase table.subtable td{font-size:13px;padding:5px 13px!important}#sq_briefcase table.subtable tr:hover{background-color:#f2f6fe}#sq_briefcase .sq_checkbox_label,#sq_briefcase .sq_circle_label{display:block;float:left;width:117px;height:20px;margin:5px 6px 25px;font-size:11px}#sq_briefcase .sq_saved_label,#sq_briefcaselabels .sq_saved_label{display:block;float:left;margin:5px 6px 25px}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label,#sq_briefcase .sq_saved_label,#sq_briefcaselabels .sq_saved_label{position:relative;margin-right:10px;width:90px;height:20px;font-size:11px;line-height:13px;margin-bottom:30px}#sq_briefcase .sq_saved_label .sq_saved_label_name,#sq_briefcaselabels .sq_saved_label .sq_saved_label_name{display:block;margin-top:23px}#sq_briefcase .sq_saved_label span.sq_delete_label{right:4px;top:2px;font-size:13px}#sq_briefcase .sq_saved_label span.sq_delete_label,#sq_briefcase .sq_saved_label span.sq_edit_label{display:none;cursor:pointer;position:absolute;color:#fff;font-weight:700;text-shadow:0 0 2px #444}#sq_briefcaselabels .sq_saved_label span.sq_delete_label{right:4px;top:2px;font-size:13px}#sq_briefcaselabels .sq_saved_label span.sq_delete_label,#sq_briefcaselabels .sq_saved_label span.sq_edit_label{display:none;cursor:pointer;position:absolute;color:#fff;font-weight:700;text-shadow:0 0 2px #444}#sq_briefcase .sq_saved_label span.sq_edit_label,#sq_briefcaselabels .sq_saved_label span.sq_edit_label{right:18px;top:4px;font-size:11px}#sq_briefcaselabels .wp-color-result-text{line-height:29px}.wp-picker-holder *{box-sizing:content-box!important}#sq_briefcase .table .sq_circle_label{display:block;float:left;width:20px;height:5px;margin:0 2px -3px 0}#sq_briefcase .table .sq_label_manage,#sq_briefcase .table .sq_label_refresh{display:none;cursor:pointer;float:left;margin:0 5px;line-height:30px}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label:before,#sq_briefcase .sq_filter_label .sq_circle_label:before,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label:before{content:" ";display:block;height:calc(100% + 4px);width:calc(100% + 4px);margin:-2px 0 2px}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label:hover:before,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label:hover:before{content:"click to select";display:block;height:calc(100% + 4px);width:calc(100% + 4px);margin:0;line-height:22px;font-size:13px;color:#eee;text-shadow:1px 1px #333}#sq_briefcase .sq_label_manage_popup .sq_checkbox_label:hover:before{font-size:10px;margin:0 0 0 6px}#sq_briefcase .sq_filter_label .sq_circle_label.sq_active:before{display:block;padding-left:calc(50% - 5px);margin:-2px 0 2px;line-height:22px;content:"\f00c";color:#fff;text-shadow:1px 0 #555}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label.sq_active:before,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label.sq_active:before{display:block;font-size:16px;padding-left:calc(50% - 5px);margin:-2px 0 2px;line-height:22px;content:"\f00c";color:#fff;text-shadow:1px 0 #555}#sq_briefcase .sq_filter_label .sq_circle_label.sq_active:before,#src_settings .wp-list-table th{font-size:14px}.wp-picker-clear,div.wp-picker-holder{z-index:999!important;position:absolute!important}#update-nag,.notice-error,.screen-meta-toggle,.show-settings,.update-nag,.updated{display:none!important}#sq_briefcase *,#sq_briefcase :after,#sq_briefcase :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#src_settings{font-family:Arial,sans-serif;position:relative}#screen-options-link-wrap{display:none}.tablenav-pages-navspan{height:28px}#src_settings #sq_briefcase_title{display:table;font-size:36px;font-weight:400;line-height:49px;color:#333;margin:0 15px 3px 0;padding-top:5px;padding-bottom:0;height:auto;vertical-align:bottom;text-shadow:1px 1px #fff}#src_settings #sq_briefcase_title a,#src_settings #sq_briefcase_title input{display:block;float:left;font-size:15px;font-weight:700;color:#fff;background-color:#15b14a;border:1px solid #fff;line-height:25px;padding:5px 10px;margin:6px 0 0;text-decoration:none;cursor:pointer}#src_settings .sq_login_link{line-height:35px;color:#504310;font-size:15px;text-shadow:.1em .1em #ffff52;background:#ffd424;cursor:pointer;border:1px solid #f7a504;font-weight:700;padding:0 10px;text-align:center;text-decoration:none;margin:0 auto;width:500px;display:block}#src_settings #sq_briefcase_title #sq_goto_dashboard,#src_settings #sq_briefcase_title #sq_goto_newpost,#src_settings #sq_goto_dashboard,#src_settings #sq_goto_newpost{line-height:35px;color:#504310;text-shadow:.1em .1em #ffff52;background:#ffd424;cursor:pointer;border:1px solid #f7a504;font-weight:700;width:250px;text-align:center;text-decoration:none}#src_settings #sq_goto_dashboard,#src_settings #sq_goto_newpost{display:block;font-size:18px;margin:6px auto;padding:5px 10px;height:35px}#src_settings #sq_briefcase_title #sq_goto_dashboard,#src_settings #sq_briefcase_title #sq_goto_newpost{display:inline-block;font-size:15px;padding:0 10px;margin:6px 0 5px 6px}#src_settings #sq_login_success{text-align:center;font-size:18px;padding:14px 0;margin:15px auto;color:green}#src_settings #sq_login_success img{margin:30px auto 8px}#src_settings #sq_login_success ul{padding:0;margin:0}#src_settings #sq_login_success li{text-align:left;font-size:13px;padding:10px;margin:0 7px}.sq_loading{height:60px;background:url(../img/loading.gif) no-repeat center!important}#src_settings .sq_user_title{color:#1d9ed4!important;font-size:26px;margin:0;padding:5px 0!important;text-align:left}#src_settings #sq_user_stats_list li{margin:0;padding:3px 0 3px 24px;line-height:25px;font-size:14px}#src_settings #sq_user_stats_list li strong{color:#20bc49;font-size:16px}#src_settings #sq_user_info .sq_briefcase_info{color:#333;padding-top:15px;text-align:left}#src_settings #sq_user_info .sq_briefcase_info a{font-weight:700}#src_settings #sq_user_info .sq_button a{clear:both;display:block;float:right;font-size:15px;font-weight:700;color:#fff;background-color:#20bc49;border:1px solid #fff;line-height:25px;padding:5px 10px;margin:20px 0 0 20px;text-decoration:none;text-shadow:1px 1px #333;cursor:pointer}#src_settings #sq_userinfo{color:#333;font-size:14px;font-weight:400;min-height:500px;margin:0 15px 5px 0;padding:0;text-shadow:1px 1px #fff}#src_settings #sq_userinfo li{padding:10px}.sq_userinfo fieldset{float:none!important}#src_settings .sq_icon{display:block;float:left;margin:5px 11px 0 0;height:50px;width:50px;background-size:100%}#sq_briefcase #sq_posts_title,#src_settings #sq_posts_title{font-size:36px;font-weight:400;line-height:50px;color:#444;margin:0;padding:5px;height:auto}#src_settings .wp-list-table th#rank{width:120px}#src_settings .wp-list-table .column-author,#src_settings .wp-list-table .column-optimized,#src_settings .wp-list-table .column-shares,#src_settings .wp-list-table .column-type{width:8%;text-align:right}#src_settings .wp-list-table th#country{width:40px}#src_settings .wp-list-table th#shares{width:10%}#src_settings .wp-list-table th#recheck{width:8%}#src_settings .wp-list-table .column-country{white-space:nowrap}#sq_analytics .sq_analytics_tasks_row>table,#sq_analytics .sq_second_column span,#src_settings .subrow-table{width:100%}#src_settings .subrow-table .subrow-column{vertical-align:middle;padding:4px 3px;border-bottom:1px dashed #ddd}#src_settings .subrow-table .subrow-column.column-country{width:10px}td.sq_rank_column .sq_rank_column_row:hover .sq_chart_title{color:#b8860b}.sq_rank_layout_content .sq_rank_zone_header .sq_rank_zone_title{background-position:-60px -74px}.sq_post_rank_row:before{display:block;border:0;content:" ";background:url(../img/sprite.png) repeat-x 0 -360px;width:100%;height:5px;border-radius:2px 2px 0 0}#sq_analytics div.sq_analytics_groups{width:95%;margin:0 auto 50px}#sq_analytics .sq_analytics_list>li{margin-top:40px}#sq_analytics .sq_analytics_list td{border:0;vertical-align:top;overflow:visible}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description span{display:block;margin-bottom:15px;margin-left:0}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_list_success span,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description span.sq_analytics_tasks_alias{margin-bottom:10px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description ul li{margin-left:10px;margin-top:7px;font-size:14px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_fix a,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_tip a{text-decoration:none;font-weight:700;color:orange}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_values li>div{float:left;margin-right:10px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_values li{clear:both;height:30px;line-height:20px;border-bottom:1px dashed #eee}td.column-recheck .sq_rank_column_button{width:80px;background-color:#d3d3d3;display:block;margin:1px auto 10px;font-size:13px;font-weight:700;color:#fff;line-height:16px;text-shadow:none;padding:7px 0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border:0;box-shadow:0 0 2px 0 #fff;cursor:pointer;text-align:center;z-index:2}td.sq_rank_column .sq_rank_column_row{text-align:center;position:relative;width:100%;min-height:25px}td.sq_rank_column .sq_rank_column_row .sq_optimize{font-size:12px;color:#f08080;cursor:pointer}td.sq_rank_column .sq_rank_column_row .sq_no_rank{color:#999}td.sq_rank_column .sq_rank_column_row .sq_chart_title{position:absolute;font-size:9px;color:#cfcfcf;top:33px;text-align:center;width:100%}td.column-rank .sq_rank_column_button,td.sq_rank_column .sq_rank_column_button{display:block;margin:1px auto 10px;font-weight:700;color:#fff;text-shadow:none;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border:0;box-shadow:0 0 2px 0 #fff;cursor:pointer;text-align:center;z-index:2}td.sq_rank_column .sq_rank_column_button{background-color:#15b14a;font-size:13px;line-height:16px;padding:7px 0;width:100px}td.column-rank .sq_rank_column_button{padding:3px 0;font-size:11px;width:90px;line-height:14px;background-color:#d3d3d3}.sq_post_rank_row{position:relative;padding:0 0 5px!important;margin:0!important;border-left:1px solid #999;border-right:1px solid #999;background-color:#fff;min-width:460px;overflow:visible!important;box-shadow:0 5px 6px -4px #000!important;-moz-box-shadow:0 5px 6px -4px #000!important;-webkit-box-shadow:0 5px 6px -4px #000!important}.sq_post_rank_row .sq_post_rank_title{display:block;text-align:left;font-size:18px;font-weight:400;line-height:30px;color:#333;margin:0 0 10px;padding:10px 0 10px 10px;height:16px}.sq_post_rank_row .sq_separator{display:block;clear:both;background:url(../img/sprite.png) repeat-x 0 -367px;width:100%;height:3px;margin:2px auto 30px}.sq_post_rank_row .sq_post_rank_close{position:absolute;background-color:#e5d8cd;right:-7px;top:-7px;font-size:13px;font-weight:700;color:#333;width:8px;line-height:16px;padding:0 5px 3px;border-radius:10px;-webkit-border-radius:10px;-moz-border-radius:10px;border:1px solid #556b2f;cursor:pointer;z-index:2}.sq_post_rank_row .sq_post_rank_refresh{position:absolute;right:30px;top:18px;font-size:12px;font-weight:700;color:#fff;line-height:16px;padding:2px 9px;background-color:#15b14a;text-shadow:1px 1px #333;border:1px solid #20bc49;box-shadow:0 0 2px 0 #57c332;cursor:pointer;z-index:2}#sq_analytics .sq_first_header_column{width:122px}#sq_analytics .sq_second_column{width:528px}#sq_analytics .sq_third_column{position:relative;overflow:visible;width:300px;text-align:center}#sq_analytics .sq_analytics_task_completed{display:block;top:-22px;float:left;position:relative;line-height:40px;width:auto;height:auto;min-width:50px;min-height:40px;margin:0 20px;padding:10px;text-align:center;font-size:30px;color:#fff;box-shadow:1px 1px 2px 0 #999;filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=1, Color='#999');-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=1, Direction=270, Color='#999')";border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0}#sq_analytics .sq_analytics_tasks .sq_analytics_task_completed{display:block;width:100px;height:65px;font-size:20px;color:#fff;text-shadow:1px 1px #555;line-height:29px;vertical-align:middle}#sq_analytics .sq_analytics_task_completed:before{content:"";width:0;height:0;position:absolute;bottom:-13px;left:0;border-width:0 0 14px 25px;border-style:solid;z-index:2}#sq_analytics .sq_analytics_task_completed:after{content:"";width:0;height:0;position:absolute;bottom:-15px;left:0;border-collapse:collapse;border-width:0 0 15px 28px;border-style:solid;border-color:transparent transparent transparent #999}#sq_analytics .sq_audit_task_completed_green{color:#fff;background:#15b14a}#sq_analytics .sq_audit_task_completed_green_text{color:#20bc49}#sq_analytics .sq_audit_task_completed_green:before{border-color:transparent transparent transparent #20bc49}#sq_analytics .sq_audit_task_completed_yellow{color:#fff;background:#f6a304}#sq_analytics .sq_audit_task_completed_yellow_text{color:#f6a304}#sq_analytics .sq_audit_task_completed_yellow:before{border-color:transparent transparent transparent #f6a304}#sq_analytics .sq_audit_task_completed_red{color:#fff;background:#bb0d0c}#sq_analytics .sq_audit_task_completed_red_text{color:#bb0d0c}#sq_analytics .sq_audit_task_completed_red:before{border-color:transparent transparent transparent #bb0d0c}#sq_analytics .sq_analytics_list .sq_analytics_tasks_header{height:50px;overflow:visible}#sq_analytics .sq_analytics_list .sq_analytics_tasks_header .sq_analytics_tasks_header_title{float:left;font-size:36px;line-height:16px}#sq_analytics .sq_analytics_list .sq_analytics_tasks_header .sq_analytics_task_completed{margin:0 21px!important;padding:10px}#sq_analytics .sq_analytics_list .sq_analytics_tasks_header .sq_analytics_task_completed:before{right:4px;left:auto}#sq_analytics .sq_analytics_list .sq_analytics_tasks_header .sq_analytics_task_completed:after{bottom:-15px;right:2px;left:auto;border-width:0 0 15px 26px}.sq_analytics_tasks_fail,.sq_analytics_tasks_pass{display:block;height:84px;width:97px;margin-right:20px}.sq_analytics_tasks_pass{background:url(../img/sprite.png) repeat-x -5px -380px}.sq_analytics_tasks_fail{background:url(../img/sprite.png) repeat-x -103px -380px}#sq_analytics .sq_analytics_tasks_row{width:100%;position:relative;margin-top:30px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_title{font-size:24px;line-height:28px;color:#a8a8a8;padding-right:10px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value{font-size:24px;line-height:28px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value_fail a,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value_pass a{font-size:15px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value_pass{color:#20bc49}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_fix strong,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value_fail{color:#f7681a}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description{padding-top:20px;max-width:540px;font-size:16px;line-height:21px;color:#a8a8a8}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_tasks_value{font-size:15px;line-height:21px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description a{text-decoration:none}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_fix,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_tip{font-size:14px;line-height:19px;color:#333}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_values{width:330px;margin:30px auto 0}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_values li .sq_analytics_values_title{font-size:16px;width:195px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_values li .sq_analytics_values_value{font-weight:700;width:75px;text-align:right}#sq_analytics .sq_list_error_title,#sq_analytics .sq_list_success_title{display:block;font-size:20px;color:#333;height:31px;width:90%!important;margin-top:30px;padding-left:30px;border-bottom:5px solid #ccc;box-shadow:0 1px 0 0 #999;filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=1, Color='#999');-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=1, Direction=270, Color='#999')";border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#sq_analytics .sq_list_error,#sq_analytics .sq_list_success{display:block;font-size:15px;font-weight:400;color:#333;margin-left:0;margin-top:5px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value .sq_list_error,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value .sq_list_success{font-style:italic}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_video_cover{background:#333 url(../img/sprite.png) no-repeat -208px -375px;width:280px;height:158px;border:2px solid #000;border-radius:5px;margin:0 auto;cursor:pointer}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_video a{display:block;width:280px;text-align:center;font-size:15px;margin:0 5px}#sq_analytics .sq_analytics_tasks_row .sq_chart_text{position:absolute;font-size:14px;line-height:20px;color:#cfcfcf;top:80px;text-align:center;width:93%}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_side{text-align:center}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_side .sq_analytics_tasks_side_text{display:block;font-size:14px;line-height:21px;color:#cfcfcf;text-align:center}#sq_briefcase button.btn-success{color:#fff;background-color:#589ee4;border-color:transparent}#sq_briefcase button.btn-success:active,#sq_briefcase button.btn-success:hover,#sq_briefcase button.btn-warning{color:#fff;background-color:#3971aa;border-color:transparent}#sq_briefcase button.btn-warning{background-color:#f2ca4c}#sq_briefcase button.btn-warning:active,#sq_briefcase button.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}#sq_briefcase table.table tbody td,#sq_briefcase table.table tbody th{line-height:30px;font-size:14px;padding:10px}#sq_briefcase .subtable{width:100%;background-color:#f9fafc;border:1px solid #e8ebf0}#sq_briefcase .subtable td,#sq_briefcase .subtable th{padding:6px 13px}#sq_briefcase .subtable th{background-color:#8684a4;color:#fff}#sq_briefcase .subtable td .btn{padding:1px 12px}#sq_analytics .sq_rank_sprite{float:left;display:block;margin:1px 0 0;background:url(../img/sprite.png) no-repeat 20px 0;width:20px;height:20px}#sq_analytics .sq_rank_flag_big{display:block;float:none;margin:0 auto 6px;background-position:-7px -279px;width:72px;height:70px}#sq_analytics .sq_rank_flag_facebook{background-position:-10px -253px}#sq_analytics .sq_rank_flag_facebook_big{background-position:-7px -279px}#sq_analytics .sq_rank_flag_facebook_like{background-position:-212px -253px}#sq_analytics .sq_rank_flag_twitter{background-position:-53px -253px}#sq_analytics .sq_rank_flag_twitter_big{background-position:-372px -279px}#sq_analytics .sq_rank_flag_googleplus{background-position:-31px -253px}#sq_analytics .sq_rank_flag_googleplus_big{background-position:-153px -279px}#sq_analytics .sq_rank_flag_stumbleupon{background-position:-190px -253px}#sq_analytics .sq_rank_flag_stumbleupon_big{background-position:-299px -279px}#sq_analytics .sq_rank_flag_linkedin{background-position:-231px -253px}#sq_analytics .sq_rank_flag_linkedin_big{background-position:-80px -279px}#sq_analytics .sq_rank_flag_reddit{background-position:-250px -253px}#sq_analytics .sq_rank_flag_reddit_big{background-position:-226px -279px}#sq_analytics .sq_rank_seomoz_inbound{background-position:-97px -253px}#sq_analytics .sq_rank_seomoz_authority{background-position:-119px -253px}#sq_analytics .sq_rank_google_pagerank,#sq_analytics .sq_rank_seomoz_rank{background-position:-273px -253px}#sq_analytics .sq_rank_squirrly_rank{background-position:-314px -253px}#sq_analytics .sq_rank_ahrefs_rank{background-position:-333px -253px}.sq_rank_custom_meta{display:block;font-size:13px;width:16px;height:16px;margin:0;padding:0;cursor:pointer;float:right}.sq_rank_customtitle{background-position:-308px -75px}.sq_rank_customdescription{background-position:-326px -75px}.sq_kr_countries{display:none}ul.sq_research_complexity,ul.sq_research_lang{position:absolute;background-color:#fcfcfc;border:0;font-size:14px;display:block;width:50%;height:27px;margin:0;padding:0;overflow:hidden;max-height:249px;z-index:9999}ul.sq_research_complexity{right:242px;width:140px}ul.sq_research_complexity:hover,ul.sq_research_lang:hover{box-shadow:0 0 10px 0 #333;height:auto;overflow-y:auto;z-index:9999}ul.sq_research_lang>li:before{display:inline-block;content:" ";background:url(../img/flags.png) no-repeat 0 -2541px;border:1px solid #fff;width:16px;height:12px;cursor:pointer;margin:0 5px -2px 0;padding:0}ul.sq_research_complexity>li,ul.sq_research_lang>li{margin:0 0 5px;padding:0 2px;line-height:24px;cursor:pointer}ul.sq_research_complexity li.sq_complexity_first,ul.sq_research_lang li.sq_research_first{border:1px solid #589ee4;color:#589ee4}ul.sq_research_complexity li.selected,ul.sq_research_lang li.selected{background-color:#d3d3d3}@media screen and (max-width:782px){#src_settings .wp-list-table td.column-author,#src_settings .wp-list-table td.column-recheck,#src_settings .wp-list-table td.column-type,#src_settings .wp-list-table th#author,#src_settings .wp-list-table th#recheck,#src_settings .wp-list-table th#type{display:none}}@media only screen and (max-width:1050px){#src_settings .wp-list-table td.column-recheck,#src_settings .wp-list-table td.column-type,#src_settings .wp-list-table th#recheck,#src_settings .wp-list-table th#type{display:none}}
1
+ #sq_toolbar *{-webkit-box-sizing:content-box!important;box-sizing:content-box!important}.sq_absolute{top:28px!important}@media (min-width:768px){.modal-dialog{width:600px;margin:60px auto!important}}#sq_briefcase .wp-picker-holder .iris-slider{height:182.346px!important;width:26.2px!important}#sq_briefcase .wp-picker-container .wp-color-result.button{height:23px}#sq_briefcase ul.sq_row_stats li{float:left;margin-right:10px;font-size:14px}#sq_briefcase ul.sq_row_stats li i.fa-refresh{font-size:11px;color:#999;line-height:30px;display:none}#sq_briefcase .sq_saved_label:hover span.sq_delete_label,#sq_briefcase .sq_saved_label:hover span.sq_edit_label,#sq_briefcase table.table tr:hover .sq_label_manage,#sq_briefcase table.table tr:hover .sq_label_refresh,#sq_briefcase table.table tr:hover ul.sq_row_stats li i.fa-refresh,#sq_briefcaselabels .sq_saved_label:hover span.sq_delete_label,#sq_briefcaselabels .sq_saved_label:hover span.sq_edit_label{display:block}#sq_briefcase table.table td{font-size:15px}#sq_ranks table.table-keywords td:first-child{width:60%;font-weight:700;color:#428ea1}#sq_ranks table.table-keywords td:nth-child(2){width:120px}#sq_ranks table.table-keywords td:nth-child(3){width:150px}#sq_briefcase table.subtable td{font-size:13px;padding:5px 13px!important}#sq_briefcase table.subtable tr:hover{background-color:#f2f6fe}#sq_briefcase .sq_checkbox_label,#sq_briefcase .sq_circle_label{display:block;float:left;width:117px;height:20px;margin:5px 6px 25px;font-size:11px}#sq_briefcase .sq_saved_label,#sq_briefcaselabels .sq_saved_label{display:block;float:left;margin:5px 6px 25px}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label,#sq_briefcase .sq_saved_label,#sq_briefcaselabels .sq_saved_label{position:relative;margin-right:10px;width:90px;height:20px;font-size:11px;line-height:13px;margin-bottom:30px}#sq_briefcase .sq_saved_label .sq_saved_label_name,#sq_briefcaselabels .sq_saved_label .sq_saved_label_name{display:block;margin-top:23px}#sq_briefcase .sq_saved_label span.sq_delete_label{right:4px;top:2px;font-size:13px}#sq_briefcase .sq_saved_label span.sq_delete_label,#sq_briefcase .sq_saved_label span.sq_edit_label{display:none;cursor:pointer;position:absolute;color:#fff;font-weight:700;text-shadow:0 0 2px #444}#sq_briefcaselabels .sq_saved_label span.sq_delete_label{right:4px;top:2px;font-size:13px}#sq_briefcaselabels .sq_saved_label span.sq_delete_label,#sq_briefcaselabels .sq_saved_label span.sq_edit_label{display:none;cursor:pointer;position:absolute;color:#fff;font-weight:700;text-shadow:0 0 2px #444}#sq_briefcase .sq_saved_label span.sq_edit_label,#sq_briefcaselabels .sq_saved_label span.sq_edit_label{right:18px;top:4px;font-size:11px}#sq_briefcaselabels .wp-color-picker,#sq_briefcaselabels .wp-color-result-text,#sq_briefcaselabels .wp-picker-clear{line-height:29px;padding:1px 6px}.wp-picker-holder *{box-sizing:content-box!important}#sq_briefcase .table .sq_circle_label{display:block;float:left;width:20px;height:5px;margin:0 2px -3px 0}#sq_briefcase .table .sq_label_manage,#sq_briefcase .table .sq_label_refresh{display:none;cursor:pointer;float:left;margin:0 5px;line-height:30px}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label:before,#sq_briefcase .sq_filter_label .sq_circle_label:before,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label:before{content:" ";display:block;height:calc(100% + 4px);width:calc(100% + 4px);margin:-2px 0 2px}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label:hover:before,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label:hover:before{content:"click to select";display:block;height:calc(100% + 4px);width:calc(100% + 4px);margin:0;line-height:22px;font-size:13px;color:#eee;text-shadow:1px 1px #333}#sq_briefcase .sq_label_manage_popup .sq_checkbox_label:hover:before{font-size:10px;margin:0 0 0 6px}#sq_briefcase .sq_filter_label .sq_circle_label.sq_active:before{display:block;padding-left:calc(50% - 5px);margin:-2px 0 2px;line-height:22px;content:"\f00c";color:#fff;text-shadow:1px 0 #555}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label.sq_active:before,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label.sq_active:before{display:block;font-size:16px;padding-left:calc(50% - 5px);margin:-2px 0 2px;line-height:22px;content:"\f00c";color:#fff;text-shadow:1px 0 #555}#sq_briefcase .sq_filter_label .sq_circle_label.sq_active:before,#src_settings .wp-list-table th{font-size:14px}.wp-picker-clear,div.wp-picker-holder{z-index:999!important;position:absolute!important}#update-nag,.notice-error,.screen-meta-toggle,.show-settings,.update-nag,.updated{display:none!important}#sq_briefcase *,#sq_briefcase :after,#sq_briefcase :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#src_settings{font-family:Arial,sans-serif;position:relative}#screen-options-link-wrap{display:none}.tablenav-pages-navspan{height:28px}#src_settings #sq_briefcase_title{display:table;font-size:36px;font-weight:400;line-height:49px;color:#333;margin:0 15px 3px 0;padding-top:5px;padding-bottom:0;height:auto;vertical-align:bottom;text-shadow:1px 1px #fff}#src_settings #sq_briefcase_title a,#src_settings #sq_briefcase_title input{display:block;float:left;font-size:15px;font-weight:700;color:#fff;background-color:#15b14a;border:1px solid #fff;line-height:25px;padding:5px 10px;margin:6px 0 0;text-decoration:none;cursor:pointer}#src_settings .sq_login_link{line-height:35px;color:#504310;font-size:15px;text-shadow:.1em .1em #ffff52;background:#ffd424;cursor:pointer;border:1px solid #f7a504;font-weight:700;padding:0 10px;text-align:center;text-decoration:none;margin:0 auto;width:500px;display:block}#src_settings #sq_briefcase_title #sq_goto_dashboard,#src_settings #sq_briefcase_title #sq_goto_newpost,#src_settings #sq_goto_dashboard,#src_settings #sq_goto_newpost{line-height:35px;color:#504310;text-shadow:.1em .1em #ffff52;background:#ffd424;cursor:pointer;border:1px solid #f7a504;font-weight:700;width:250px;text-align:center;text-decoration:none}#src_settings #sq_goto_dashboard,#src_settings #sq_goto_newpost{display:block;font-size:18px;margin:6px auto;padding:5px 10px;height:35px}#src_settings #sq_briefcase_title #sq_goto_dashboard,#src_settings #sq_briefcase_title #sq_goto_newpost{display:inline-block;font-size:15px;padding:0 10px;margin:6px 0 5px 6px}#src_settings #sq_login_success{text-align:center;font-size:18px;padding:14px 0;margin:15px auto;color:green}#src_settings #sq_login_success img{margin:30px auto 8px}#src_settings #sq_login_success ul{padding:0;margin:0}#src_settings #sq_login_success li{text-align:left;font-size:13px;padding:10px;margin:0 7px}.sq_loading{height:60px;background:url(../img/loading.gif) no-repeat center!important}#src_settings .sq_user_title{color:#1d9ed4!important;font-size:26px;margin:0;padding:5px 0!important;text-align:left}#src_settings #sq_user_stats_list li{margin:0;padding:3px 0 3px 24px;line-height:25px;font-size:14px}#src_settings #sq_user_stats_list li strong{color:#20bc49;font-size:16px}#src_settings #sq_user_info .sq_briefcase_info{color:#333;padding-top:15px;text-align:left}#src_settings #sq_user_info .sq_briefcase_info a{font-weight:700}#src_settings #sq_user_info .sq_button a{clear:both;display:block;float:right;font-size:15px;font-weight:700;color:#fff;background-color:#20bc49;border:1px solid #fff;line-height:25px;padding:5px 10px;margin:20px 0 0 20px;text-decoration:none;text-shadow:1px 1px #333;cursor:pointer}#src_settings #sq_userinfo{color:#333;font-size:14px;font-weight:400;min-height:500px;margin:0 15px 5px 0;padding:0;text-shadow:1px 1px #fff}#src_settings #sq_userinfo li{padding:10px}.sq_userinfo fieldset{float:none!important}#src_settings .sq_icon{display:block;float:left;margin:5px 11px 0 0;height:50px;width:50px;background-size:100%}#sq_briefcase #sq_posts_title,#src_settings #sq_posts_title{font-size:36px;font-weight:400;line-height:50px;color:#444;margin:0;padding:5px;height:auto}#src_settings .wp-list-table th#rank{width:120px}#src_settings .wp-list-table .column-author,#src_settings .wp-list-table .column-optimized,#src_settings .wp-list-table .column-shares,#src_settings .wp-list-table .column-type{width:8%;text-align:right}#src_settings .wp-list-table th#country{width:40px}#src_settings .wp-list-table th#shares{width:10%}#src_settings .wp-list-table th#recheck{width:8%}#src_settings .wp-list-table .column-country{white-space:nowrap}#sq_analytics .sq_analytics_tasks_row>table,#sq_analytics .sq_second_column span,#src_settings .subrow-table{width:100%}#src_settings .subrow-table .subrow-column{vertical-align:middle;padding:4px 3px;border-bottom:1px dashed #ddd}#src_settings .subrow-table .subrow-column.column-country{width:10px}td.sq_rank_column .sq_rank_column_row:hover .sq_chart_title{color:#b8860b}.sq_rank_layout_content .sq_rank_zone_header .sq_rank_zone_title{background-position:-60px -74px}.sq_post_rank_row:before{display:block;border:0;content:" ";background:url(../img/sprite.png) repeat-x 0 -360px;width:100%;height:5px;border-radius:2px 2px 0 0}#sq_analytics div.sq_analytics_groups{width:95%;margin:0 auto 50px}#sq_analytics .sq_analytics_list>li{margin-top:40px}#sq_analytics .sq_analytics_list td{border:0;vertical-align:top;overflow:visible}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description span{display:block;margin-bottom:15px;margin-left:0}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_list_success span,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description span.sq_analytics_tasks_alias{margin-bottom:10px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description ul li{margin-left:10px;margin-top:7px;font-size:14px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_fix a,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_tip a{text-decoration:none;font-weight:700;color:orange}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_values li>div{float:left;margin-right:10px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_values li{clear:both;height:30px;line-height:20px;border-bottom:1px dashed #eee}td.column-recheck .sq_rank_column_button{width:80px;background-color:#d3d3d3;display:block;margin:1px auto 10px;font-size:13px;font-weight:700;color:#fff;line-height:16px;text-shadow:none;padding:7px 0;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border:0;box-shadow:0 0 2px 0 #fff;cursor:pointer;text-align:center;z-index:2}td.sq_rank_column .sq_rank_column_row{text-align:center;position:relative;width:100%;min-height:25px}td.sq_rank_column .sq_rank_column_row .sq_optimize{font-size:12px;color:#f08080;cursor:pointer}td.sq_rank_column .sq_rank_column_row .sq_no_rank{color:#999}td.sq_rank_column .sq_rank_column_row .sq_chart_title{position:absolute;font-size:9px;color:#cfcfcf;top:33px;text-align:center;width:100%}td.column-rank .sq_rank_column_button,td.sq_rank_column .sq_rank_column_button{display:block;margin:1px auto 10px;font-weight:700;color:#fff;text-shadow:none;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;border:0;box-shadow:0 0 2px 0 #fff;cursor:pointer;text-align:center;z-index:2}td.sq_rank_column .sq_rank_column_button{background-color:#15b14a;font-size:13px;line-height:16px;padding:7px 0;width:100px}td.column-rank .sq_rank_column_button{padding:3px 0;font-size:11px;width:90px;line-height:14px;background-color:#d3d3d3}.sq_post_rank_row{position:relative;padding:0 0 5px!important;margin:0!important;border-left:1px solid #999;border-right:1px solid #999;background-color:#fff;min-width:460px;overflow:visible!important;box-shadow:0 5px 6px -4px #000!important;-moz-box-shadow:0 5px 6px -4px #000!important;-webkit-box-shadow:0 5px 6px -4px #000!important}.sq_post_rank_row .sq_post_rank_title{display:block;text-align:left;font-size:18px;font-weight:400;line-height:30px;color:#333;margin:0 0 10px;padding:10px 0 10px 10px;height:16px}.sq_post_rank_row .sq_separator{display:block;clear:both;background:url(../img/sprite.png) repeat-x 0 -367px;width:100%;height:3px;margin:2px auto 30px}.sq_post_rank_row .sq_post_rank_close{position:absolute;background-color:#e5d8cd;right:-7px;top:-7px;font-size:13px;font-weight:700;color:#333;width:8px;line-height:16px;padding:0 5px 3px;border-radius:10px;-webkit-border-radius:10px;-moz-border-radius:10px;border:1px solid #556b2f;cursor:pointer;z-index:2}.sq_post_rank_row .sq_post_rank_refresh{position:absolute;right:30px;top:18px;font-size:12px;font-weight:700;color:#fff;line-height:16px;padding:2px 9px;background-color:#15b14a;text-shadow:1px 1px #333;border:1px solid #20bc49;box-shadow:0 0 2px 0 #57c332;cursor:pointer;z-index:2}#sq_analytics .sq_first_header_column{width:122px}#sq_analytics .sq_second_column{width:528px}#sq_analytics .sq_third_column{position:relative;overflow:visible;width:300px;text-align:center}#sq_analytics .sq_analytics_task_completed{display:block;top:-22px;float:left;position:relative;line-height:40px;width:auto;height:auto;min-width:50px;min-height:40px;margin:0 20px;padding:10px;text-align:center;font-size:30px;color:#fff;box-shadow:1px 1px 2px 0 #999;filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=1, Color='#999');-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=1, Direction=270, Color='#999')";border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;-webkit-border-radius:5px 5px 5px 0}#sq_analytics .sq_analytics_tasks .sq_analytics_task_completed{display:block;width:100px;height:65px;font-size:20px;color:#fff;text-shadow:1px 1px #555;line-height:29px;vertical-align:middle}#sq_analytics .sq_analytics_task_completed:before{content:"";width:0;height:0;position:absolute;bottom:-13px;left:0;border-width:0 0 14px 25px;border-style:solid;z-index:2}#sq_analytics .sq_analytics_task_completed:after{content:"";width:0;height:0;position:absolute;bottom:-15px;left:0;border-collapse:collapse;border-width:0 0 15px 28px;border-style:solid;border-color:transparent transparent transparent #999}#sq_analytics .sq_audit_task_completed_green{color:#fff;background:#15b14a}#sq_analytics .sq_audit_task_completed_green_text{color:#20bc49}#sq_analytics .sq_audit_task_completed_green:before{border-color:transparent transparent transparent #20bc49}#sq_analytics .sq_audit_task_completed_yellow{color:#fff;background:#f6a304}#sq_analytics .sq_audit_task_completed_yellow_text{color:#f6a304}#sq_analytics .sq_audit_task_completed_yellow:before{border-color:transparent transparent transparent #f6a304}#sq_analytics .sq_audit_task_completed_red{color:#fff;background:#bb0d0c}#sq_analytics .sq_audit_task_completed_red_text{color:#bb0d0c}#sq_analytics .sq_audit_task_completed_red:before{border-color:transparent transparent transparent #bb0d0c}#sq_analytics .sq_analytics_list .sq_analytics_tasks_header{height:50px;overflow:visible}#sq_analytics .sq_analytics_list .sq_analytics_tasks_header .sq_analytics_tasks_header_title{float:left;font-size:36px;line-height:16px}#sq_analytics .sq_analytics_list .sq_analytics_tasks_header .sq_analytics_task_completed{margin:0 21px!important;padding:10px}#sq_analytics .sq_analytics_list .sq_analytics_tasks_header .sq_analytics_task_completed:before{right:4px;left:auto}#sq_analytics .sq_analytics_list .sq_analytics_tasks_header .sq_analytics_task_completed:after{bottom:-15px;right:2px;left:auto;border-width:0 0 15px 26px}.sq_analytics_tasks_fail,.sq_analytics_tasks_pass{display:block;height:84px;width:97px;margin-right:20px}.sq_analytics_tasks_pass{background:url(../img/sprite.png) repeat-x -5px -380px}.sq_analytics_tasks_fail{background:url(../img/sprite.png) repeat-x -103px -380px}#sq_analytics .sq_analytics_tasks_row{width:100%;position:relative;margin-top:30px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_title{font-size:24px;line-height:28px;color:#a8a8a8;padding-right:10px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value{font-size:24px;line-height:28px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value_fail a,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value_pass a{font-size:15px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value_pass{color:#20bc49}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_fix strong,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value_fail{color:#f7681a}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description{padding-top:20px;max-width:540px;font-size:16px;line-height:21px;color:#a8a8a8}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_tasks_value{font-size:15px;line-height:21px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description a{text-decoration:none}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_fix,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_tip{font-size:14px;line-height:19px;color:#333}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_values{width:330px;margin:30px auto 0}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_values li .sq_analytics_values_title{font-size:16px;width:195px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_description .sq_analytics_values li .sq_analytics_values_value{font-weight:700;width:75px;text-align:right}#sq_analytics .sq_list_error_title,#sq_analytics .sq_list_success_title{display:block;font-size:20px;color:#333;height:31px;width:90%!important;margin-top:30px;padding-left:30px;border-bottom:5px solid #ccc;box-shadow:0 1px 0 0 #999;filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=1, Color='#999');-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=1, Direction=270, Color='#999')";border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#sq_analytics .sq_list_error,#sq_analytics .sq_list_success{display:block;font-size:15px;font-weight:400;color:#333;margin-left:0;margin-top:5px}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value .sq_list_error,#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_value .sq_list_success{font-style:italic}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_video_cover{background:#333 url(../img/sprite.png) no-repeat -208px -375px;width:280px;height:158px;border:2px solid #000;border-radius:5px;margin:0 auto;cursor:pointer}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_video a{display:block;width:280px;text-align:center;font-size:15px;margin:0 5px}#sq_analytics .sq_analytics_tasks_row .sq_chart_text{position:absolute;font-size:14px;line-height:20px;color:#cfcfcf;top:80px;text-align:center;width:93%}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_side{text-align:center}#sq_analytics .sq_analytics_tasks_row .sq_analytics_tasks_side .sq_analytics_tasks_side_text{display:block;font-size:14px;line-height:21px;color:#cfcfcf;text-align:center}#sq_briefcase button.btn-success{color:#fff;background-color:#589ee4;border-color:transparent}#sq_briefcase button.btn-success:active,#sq_briefcase button.btn-success:hover,#sq_briefcase button.btn-warning{color:#fff;background-color:#3971aa;border-color:transparent}#sq_briefcase button.btn-warning{background-color:#f2ca4c}#sq_briefcase button.btn-warning:active,#sq_briefcase button.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}#sq_briefcase table.table tbody td,#sq_briefcase table.table tbody th{line-height:30px;font-size:14px;padding:10px}#sq_briefcase .subtable{width:100%;background-color:#f9fafc;border:1px solid #e8ebf0}#sq_briefcase .subtable td,#sq_briefcase .subtable th{padding:6px 13px}#sq_briefcase .subtable th{background-color:#8684a4;color:#fff}#sq_briefcase .subtable td .btn{padding:1px 12px}#sq_analytics .sq_rank_sprite{float:left;display:block;margin:1px 0 0;background:url(../img/sprite.png) no-repeat 20px 0;width:20px;height:20px}#sq_analytics .sq_rank_flag_big{display:block;float:none;margin:0 auto 6px;background-position:-7px -279px;width:72px;height:70px}#sq_analytics .sq_rank_flag_facebook{background-position:-10px -253px}#sq_analytics .sq_rank_flag_facebook_big{background-position:-7px -279px}#sq_analytics .sq_rank_flag_facebook_like{background-position:-212px -253px}#sq_analytics .sq_rank_flag_twitter{background-position:-53px -253px}#sq_analytics .sq_rank_flag_twitter_big{background-position:-372px -279px}#sq_analytics .sq_rank_flag_googleplus{background-position:-31px -253px}#sq_analytics .sq_rank_flag_googleplus_big{background-position:-153px -279px}#sq_analytics .sq_rank_flag_stumbleupon{background-position:-190px -253px}#sq_analytics .sq_rank_flag_stumbleupon_big{background-position:-299px -279px}#sq_analytics .sq_rank_flag_linkedin{background-position:-231px -253px}#sq_analytics .sq_rank_flag_linkedin_big{background-position:-80px -279px}#sq_analytics .sq_rank_flag_reddit{background-position:-250px -253px}#sq_analytics .sq_rank_flag_reddit_big{background-position:-226px -279px}#sq_analytics .sq_rank_seomoz_inbound{background-position:-97px -253px}#sq_analytics .sq_rank_seomoz_authority{background-position:-119px -253px}#sq_analytics .sq_rank_google_pagerank,#sq_analytics .sq_rank_seomoz_rank{background-position:-273px -253px}#sq_analytics .sq_rank_squirrly_rank{background-position:-314px -253px}#sq_analytics .sq_rank_ahrefs_rank{background-position:-333px -253px}.sq_rank_custom_meta{display:block;font-size:13px;width:16px;height:16px;margin:0;padding:0;cursor:pointer;float:right}.sq_rank_customtitle{background-position:-308px -75px}.sq_rank_customdescription{background-position:-326px -75px}.sq_kr_countries{display:none}ul.sq_research_complexity,ul.sq_research_lang{position:absolute;background-color:#fcfcfc;border:0;font-size:14px;display:block;width:50%;height:27px;margin:0;padding:0;overflow:hidden;max-height:249px;z-index:9999}ul.sq_research_complexity{right:242px;width:140px}ul.sq_research_complexity:hover,ul.sq_research_lang:hover{box-shadow:0 0 10px 0 #333;height:auto;overflow-y:auto;z-index:9999}ul.sq_research_lang>li:before{display:inline-block;content:" ";background:url(../img/flags.png) no-repeat 0 -2541px;border:1px solid #fff;width:16px;height:12px;cursor:pointer;margin:0 5px -2px 0;padding:0}ul.sq_research_complexity>li,ul.sq_research_lang>li{margin:0 0 5px;padding:0 2px;line-height:24px;cursor:pointer}ul.sq_research_complexity li.sq_complexity_first,ul.sq_research_lang li.sq_research_first{border:1px solid #589ee4;color:#589ee4}ul.sq_research_complexity li.selected,ul.sq_research_lang li.selected{background-color:#d3d3d3}@media screen and (max-width:782px){#src_settings .wp-list-table td.column-author,#src_settings .wp-list-table td.column-recheck,#src_settings .wp-list-table td.column-type,#src_settings .wp-list-table th#author,#src_settings .wp-list-table th#recheck,#src_settings .wp-list-table th#type{display:none}}@media only screen and (max-width:1050px){#src_settings .wp-list-table td.column-recheck,#src_settings .wp-list-table td.column-type,#src_settings .wp-list-table th#recheck,#src_settings .wp-list-table th#type{display:none}}
view/assets/css/global.css CHANGED
@@ -30,6 +30,11 @@ div.fs-notice.updated, div.fs-notice.success, div.fs-notice.promotion, div.error
30
  background: white !important;
31
  }
32
 
 
 
 
 
 
33
  body {
34
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
35
  font-size: 14px;
@@ -441,7 +446,6 @@ a.btn-success:active {
441
  .sq_kr_icon {
442
  background: transparent url('../img/logos/kr_92.png') no-repeat;
443
  background-size: 100%;
444
-
445
  }
446
 
447
  .sq_krfound_icon {
@@ -542,6 +546,45 @@ a.btn-success:active {
542
  background-size: 100%;
543
  }
544
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
545
  /*************************** Paging **************************************/
546
 
547
  #sq_wrap .page-item.active .page-link {
30
  background: white !important;
31
  }
32
 
33
+ #sq_wrap.sq_overview .sq_offer{
34
+ width: auto;
35
+ margin: 15px 20px!important;
36
+ }
37
+
38
  body {
39
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
40
  font-size: 14px;
446
  .sq_kr_icon {
447
  background: transparent url('../img/logos/kr_92.png') no-repeat;
448
  background-size: 100%;
 
449
  }
450
 
451
  .sq_krfound_icon {
546
  background-size: 100%;
547
  }
548
 
549
+ .sq_favicon_icon {
550
+ background: transparent url('../img/logos/favicon_92.png') no-repeat;
551
+ background-size: 100%;
552
+ }
553
+
554
+ .sq_jsonld_icon {
555
+ background: transparent url('../img/logos/jsonld_92.png') no-repeat;
556
+ background-size: 100%;
557
+ }
558
+
559
+ .sq_metas_icon {
560
+ background: transparent url('../img/logos/metas_92.png') no-repeat;
561
+ background-size: 100%;
562
+ }
563
+
564
+ .sq_robots_icon {
565
+ background: transparent url('../img/logos/robots_92.png') no-repeat;
566
+ background-size: 100%;
567
+ }
568
+
569
+ .sq_social_icon {
570
+ background: transparent url('../img/logos/social_92.png') no-repeat;
571
+ background-size: 100%;
572
+ }
573
+
574
+ .sq_sitemap_icon {
575
+ background: transparent url('../img/logos/sitemap_92.png') no-repeat;
576
+ background-size: 100%;
577
+ }
578
+
579
+ .sq_traffic_icon {
580
+ background: transparent url('../img/logos/traffic_92.png') no-repeat;
581
+ background-size: 100%;
582
+ }
583
+
584
+ .sq_websites_icon {
585
+ background: transparent url('../img/logos/websites_92.png') no-repeat;
586
+ background-size: 100%;
587
+ }
588
  /*************************** Paging **************************************/
589
 
590
  #sq_wrap .page-item.active .page-link {
view/assets/css/global.min.css CHANGED
@@ -1 +1 @@
1
- @import 'logo.css';@-webkit-keyframes play{0%{background-position:0}to{background-position:-400px}}@-moz-keyframes play{0%{background-position:0}to{background-position:-400px}}@-ms-keyframes play{0%{background-position:0}to{background-position:-400px}}@-o-keyframes play{0%{background-position:0}to{background-position:-400px}}@keyframes play{0%{background-position:0}to{background-position:-400px}}@font-face{font-family:'FontAwesome';src:url(../fonts/fontawesome-webfont.eot?v=4.3.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.3.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.3.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.3.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}svg>g>g:last-child{pointer-events:none}#update-nag,.et-core-modal,.notice-error,.notice-warning,.notice:not(.sq_notice),.poopy_affiliates,.screen-meta-toggle,.show-settings,.toolbar-header,.update-nag,.updated,div.error,div.fs-notice.promotion,div.fs-notice.success,div.fs-notice.updated{display:none!important}#wpbody-content{float:none!important}#wpfooter{display:none}#wpwrap{background:#fff!important}body{font-family:'Open Sans',Arial,Helvetica,sans-serif;font-size:14px;background-color:#fff}.sq_separator{display:block;clear:both;border-bottom:1px dashed #ddd!important;width:90%;height:3px;margin:2px auto}#wpcontent{padding:0}#wpcontent .bg-light{background-color:#fdfdfd!important}#wpcontent .bg-briefcase{background-color:#e1f5e3!important}#wpcontent .content{min-width:600px;max-width:1020px;margin:auto}#wpcontent h3{font-weight:400;line-height:50px}#wpcontent .card .card-title{margin:0;color:#4f1440;font-weight:400}#wpcontent .sq_deactivated{position:relative}#wpcontent .sq_deactivated:before{content:" ";position:absolute;height:calc(100% + 20px);width:100%;background:#f1f1f1;opacity:.7;top:-10px;z-index:1000;cursor:pointer;border-radius:6px}#wpcontent .sq_deactivated_label{position:absolute!important;z-index:1001;right:0}.sq_fixed{position:fixed;z-index:100;top:32px;left:0;margin:0;border-top:2px solid #fff;border-bottom:2px solid #fff}.sq_alert{top:32px;font-size:16px;z-index:999999}.sq_notice{top:28px;text-align:center;width:100%}.sq_notice.sq_notice>div{display:block;margin:0!important;width:100%!important;line-height:40px;background-color:#fafad2}.sq_notice.sq_notice>div.sq_success{background-color:#20bc49}.sq_notices{font-size:13px;color:#555}.sq_error,.sq_success{text-align:center;font-weight:700}.sq_error{background-color:#bf4733!important;color:#fff!important;font-size:15px}.sq_success{background-color:#20bc49!important;line-height:30px;font-size:16px;color:#fff}.sq_success a{color:#4f47be;text-decoration:none}.sq_deactivated{opacity:.3}button.hide_advanced,button.show_advanced{color:#2183d6!important}#wpcontent .sq_flex{min-width:740px}#sq_wrap .small{font-size:12px;line-height:20px}#sq_wrap .sq_nav{flex:0 0 225px}#sq_wrap .row>div.input-group{display:flex!important}#sq_wrap .row{float:none!important;width:auto!important}#sq_wrap .btn-primary{background-color:#2680b4!important;border-color:transparent}#sq_wrap .btn-primary:hover,#sq_wrap .btn-social{background-color:#2674a7!important;border-color:transparent}#sq_wrap .btn-social{background-color:#e4eef3!important}#sq_wrap .btn{border-radius:0}#sq_wrap .input-group>button.btn,#sq_wrap .input-group>input{max-height:47px}#sq_wrap .bg-title{margin:2px;background-color:#f8f9fa!important;color:#505663!important}#sq_wrap .bg-light{background-color:#fdfdfd!important}#sq_wrap .bg-google{background-color:#e37400!important;color:#fff!important}#sq_wrap .bg-googlesc{background-color:#455a64!important;color:#fff!important}#sq_wrap .bg-primary{background-color:#2680b4!important;color:#fff!important}#sq_wrap .bg-warning{background-color:#f7681a!important;color:#fff!important}#sq_wrap .sq_imageselect{font-size:14px}a.btn-green,button.btn-green{color:#fff;background-color:#28a745!important;border-color:#28a745!important}a.btn-green:hover,button.btn-green:hover{color:#fff;background-color:#259343!important;border-color:#259343!important}a.btn-success,button.btn-success{color:#fff;background-color:#589ee4!important;border-color:transparent}a.btn-success:hover,button.btn-success:hover{color:#fff;background-color:#598dd3!important;border-color:transparent}a.btn-success:active,button.btn-success:active{color:#fff;background-color:#5a80c7!important;border-color:transparent}#sq_wrap table.dataTable{border-collapse:collapse!important}#sq_wrap .table thead th{white-space:nowrap!important}#sq_wrap .table thead{background-color:#e5edf3!important;text-shadow:1px 1px #fbfbfb}#sq_wrap .table-hover tbody tr:hover{background-color:#f1f1f1!important}#sq_wrap .table thead tr:hover{background-color:transparent!important}#sq_wrap .table-striped tbody tr:nth-of-type(odd){background-color:rgba(151,147,147,.05)}#sq_wrap .table-striped tbody tr.even{background-color:#fff}#sq_wrap .text-link{color:#2680b4!important}#sq_wrap .sq_row{position:relative;flex:1 1 auto}#sq_wrap .sq_col_side{flex:0 0 300px}#sq_wrap button.btn-success{color:#fff;background-color:#589ee4;border-color:transparent}#sq_wrap button.btn-success:hover{background-color:#4c81bd}#sq_wrap .btn-primary:not(:disabled):not(.disabled).active,#sq_wrap .btn-primary:not(:disabled):not(.disabled):active,#sq_wrap .show>.btn-primary.dropdown-toggle{background-color:#2777aa!important}#sq_wrap .btn-warning{background-color:#f2ca4c!important;border-color:transparent}#sq_wrap .btn-warning:hover{background-color:#e6be4b!important;border-color:transparent}#sq_wrap .bg-cta{background-color:#694861!important}#sq_wrap a:not(.btn):not(.sq-btn):not(.sq-nav-link){color:#f16112;text-decoration:none}#sq_wrap a:not(.btn):not(.sq-btn):not(.sq-nav-link):hover{color:#f14644}#sq_wrap h4 .fa:before{margin-right:3px}.wp-admin #sq_wrap select{padding:.375em .75em;line-height:1.5;height:calc(2.25em + 2px);vertical-align:middle;background-color:#e5f5dd;max-width:100%;max-height:100%;min-width:120px}.wp-admin #sq_seosettings_bulkseo select{height:calc(2.55em + 2px)}.wp-admin #sq_wrap select.bg-input{height:calc(2.875em + 2px);padding:.5em 1em;font-size:1.25em;line-height:1.5;border-radius:.3em;background-color:#e5f5dd}.wp-admin #sq_wrap input[type=text]:not(.wp-color-picker),.wp-admin #sq_wrap textarea{background-color:#e5f5dd;padding:.88em .75em}.sq_icons_content{float:left;background-color:#fffcfc;background-image:linear-gradient(90deg,#e6ecf1,#f8f9fa);margin:-7px;height:100%;min-height:121px;min-width:100px}.sq_icons{float:left;width:40px;height:40px}.sq_icons_small{display:block;float:left;margin:0 10px 0 0;height:30px;width:30px}.sq_kr_icon{background:url(../img/logos/kr_92.png) no-repeat;background-size:100%}.sq_krfound_icon{background:url(../img/logos/briefcase_92.png) no-repeat;background-size:100%}.sq_audits_icon{background:url(../img/logos/audit_92.png) no-repeat;background-size:100%}.sq_automation_icon{background:url(../img/logos/automation_92.png) no-repeat;background-size:100%}.sq_briefcase_icon{background:url(../img/logos/briefcase_92.png) no-repeat;background-size:100%}.sq_labels_icon{background:url(../img/logos/labels_92.png) no-repeat;background-size:100%}.sq_suggested_icon{background:url(../img/logos/suggested_92.png) no-repeat;background-size:100%}.sq_history_icon{background:url(../img/logos/history_92.png) no-repeat;background-size:100%}.sq_audit_icon{background:url(../img/logos/audit_92.png) no-repeat;background-size:100%}.sq_rankings_icon,.sq_ranks_icon{background:url(../img/logos/ranking_92.png) no-repeat;background-size:100%}.sq_sla_icon{background:url(../img/logos/sla_92.png) no-repeat;background-size:100%}.sq_focuspages_icon{background:url(../img/logos/focuspages_92.png) no-repeat;background-size:100%}.sq_bulkseo_icon{background:url(../img/logos/bulkseo_92.png) no-repeat;background-size:100%}.sq_boostpages_icon{background:url(../img/logos/boostpages_92.png) no-repeat;background-size:100%}.sq_addpage_icon{background:url(../img/logos/addpage_92.png) no-repeat;background-size:100%}.sq_settings_icon{background:url(../img/logos/settings_92.png) no-repeat;background-size:100%}.sq_squirrly_icon{background:url(../img/logos/squirrly.png) no-repeat;background-size:100%;height:48px;filter:none;-webkit-filter:none}.sq_book_icon{background:url(../img/logos/book_92.png) no-repeat;background-size:100%}.sq_stats_icon{background:url(../img/logos/stats_92.png) no-repeat;background-size:100%}#sq_wrap .page-item.active .page-link{background-color:#bde2f1;border-color:transparent}#sq_preloader{position:absolute;height:100%;width:100%;z-index:1000;background-color:#fff!important;opacity:.5}.sq_loading{height:60px;background:url(../img/loading.gif) no-repeat center!important}.sq_minloading{position:relative;opacity:.5}.sq_minloading:after{position:absolute!important;right:calc(50% - 10px)!important;top:calc(50% - 8px)!important;display:block!important;float:right!important;line-height:30px!important;content:""!important;padding:0!important;margin:0 0 0 5px!important;height:16px!important;width:20px!important;background:url(../img/minloading.png) no-repeat!important;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}#sq_wrap .sq_sm_menu{width:24px;position:relative}#sq_wrap .sq_sm_menu .fa-ellipsis-v{font-size:18px!important;color:#2680b4}#sq_wrap .sq_sm_menu .sm_icon_button{display:inline-block;position:relative;width:24px;height:24px;box-sizing:border-box;font-size:18px;color:#545454;text-align:center;cursor:pointer}#sq_wrap table tr div.sq_sm_menu:hover .sq_sm_dropdown,#sq_wrap table tr:hover .sq_sm_menu{display:block}#sq_wrap .sq_sm_menu .sq_sm_dropdown{display:none;background:#fff;position:absolute;right:20px;top:0;z-index:100;min-width:200px;box-shadow:0 0 10px 1px #999}#sq_wrap .sq_sm_menu .sq_icons_small{display:inline-block;margin:0 5px;height:17px;width:17px;vertical-align:middle;float:none}#sq_wrap .sq_sm_menu .sq_sm_dropdown li,#sq_wrap .sq_sm_menu .sq_sm_dropdown li a,#sq_wrap .sq_sm_menu .sq_sm_dropdown li button{font-size:13px;cursor:pointer}#sq_wrap .sq_help_toolbar{position:absolute;right:15px}#sq_wrap .sq_help_toolbar>i{font-size:27px!important;color:#f3dc68;cursor:pointer}#sq_wrap .sq_help_question i{font-size:24px!important;margin:10px}.fa-book-open:before{content:"\f518"}.flexcroll{scrollbar-face-color:#367cd2;scrollbar-shadow-color:#fff;scrollbar-highlight-color:#fff;scrollbar-3dlight-color:#fff;scrollbar-darkshadow-color:#fff;scrollbar-track-color:#fff;scrollbar-arrow-color:#fff}.flexcroll::-webkit-scrollbar{width:12px}.flexcroll::-webkit-scrollbar-track{-webkit-border-radius:2px;border-radius:2px}.flexcroll::-webkit-scrollbar-thumb{-webkit-border-radius:2px;border-radius:2px;background:rgba(171,171,171,.8)}.form-group input.form-control,.form-group select.form-control,.form-group textarea.form-control{width:100%}.tooltip .arrow{left:auto!important;margin-left:inherit!important;bottom:inherit!important;z-index:inherit!important}.tooltip .arrow:after{content:""}.fade.in{opacity:1}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-backdrop .fade .in,.modal-backdrop.fade{opacity:.5!important}@media only screen and (max-width:960px){#sq_wrap{margin:0 0 0 35px}}
1
+ @import 'logo.css';@-webkit-keyframes play{0%{background-position:0}to{background-position:-400px}}@-moz-keyframes play{0%{background-position:0}to{background-position:-400px}}@-ms-keyframes play{0%{background-position:0}to{background-position:-400px}}@-o-keyframes play{0%{background-position:0}to{background-position:-400px}}@keyframes play{0%{background-position:0}to{background-position:-400px}}@font-face{font-family:'FontAwesome';src:url(../fonts/fontawesome-webfont.eot?v=4.3.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.3.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.3.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.3.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}svg>g>g:last-child{pointer-events:none}#update-nag,.et-core-modal,.notice-error,.notice-warning,.notice:not(.sq_notice),.poopy_affiliates,.screen-meta-toggle,.show-settings,.toolbar-header,.update-nag,.updated,div.error,div.fs-notice.promotion,div.fs-notice.success,div.fs-notice.updated{display:none!important}#wpbody-content{float:none!important}#wpfooter{display:none}#wpwrap{background:#fff!important}#sq_wrap.sq_overview .sq_offer{width:auto;margin:15px 20px!important}body{font-family:'Open Sans',Arial,Helvetica,sans-serif;font-size:14px;background-color:#fff}.sq_separator{display:block;clear:both;border-bottom:1px dashed #ddd!important;width:90%;height:3px;margin:2px auto}#wpcontent{padding:0}#wpcontent .bg-light{background-color:#fdfdfd!important}#wpcontent .bg-briefcase{background-color:#e1f5e3!important}#wpcontent .content{min-width:600px;max-width:1020px;margin:auto}#wpcontent h3{font-weight:400;line-height:50px}#wpcontent .card .card-title{margin:0;color:#4f1440;font-weight:400}#wpcontent .sq_deactivated{position:relative}#wpcontent .sq_deactivated:before{content:" ";position:absolute;height:calc(100% + 20px);width:100%;background:#f1f1f1;opacity:.7;top:-10px;z-index:1000;cursor:pointer;border-radius:6px}#wpcontent .sq_deactivated_label{position:absolute!important;z-index:1001;right:0}.sq_fixed{position:fixed;z-index:100;top:32px;left:0;margin:0;border-top:2px solid #fff;border-bottom:2px solid #fff}.sq_alert{top:32px;font-size:16px;z-index:999999}.sq_notice{top:28px;text-align:center;width:100%}.sq_notice.sq_notice>div{display:block;margin:0!important;width:100%!important;line-height:40px;background-color:#fafad2}.sq_notice.sq_notice>div.sq_success{background-color:#20bc49}.sq_notices{font-size:13px;color:#555}.sq_error,.sq_success{text-align:center;font-weight:700}.sq_error{background-color:#bf4733!important;color:#fff!important;font-size:15px}.sq_success{background-color:#20bc49!important;line-height:30px;font-size:16px;color:#fff}.sq_success a{color:#4f47be;text-decoration:none}.sq_deactivated{opacity:.3}button.hide_advanced,button.show_advanced{color:#2183d6!important}#wpcontent .sq_flex{min-width:740px}#sq_wrap .small{font-size:12px;line-height:20px}#sq_wrap .sq_nav{flex:0 0 225px}#sq_wrap .row>div.input-group{display:flex!important}#sq_wrap .row{float:none!important;width:auto!important}#sq_wrap .btn-primary{background-color:#2680b4!important;border-color:transparent}#sq_wrap .btn-primary:hover,#sq_wrap .btn-social{background-color:#2674a7!important;border-color:transparent}#sq_wrap .btn-social{background-color:#e4eef3!important}#sq_wrap .btn{border-radius:0}#sq_wrap .input-group>button.btn,#sq_wrap .input-group>input{max-height:47px}#sq_wrap .bg-title{margin:2px;background-color:#f8f9fa!important;color:#505663!important}#sq_wrap .bg-light{background-color:#fdfdfd!important}#sq_wrap .bg-google{background-color:#e37400!important;color:#fff!important}#sq_wrap .bg-googlesc{background-color:#455a64!important;color:#fff!important}#sq_wrap .bg-primary{background-color:#2680b4!important;color:#fff!important}#sq_wrap .bg-warning{background-color:#f7681a!important;color:#fff!important}#sq_wrap .sq_imageselect{font-size:14px}a.btn-green,button.btn-green{color:#fff;background-color:#28a745!important;border-color:#28a745!important}a.btn-green:hover,button.btn-green:hover{color:#fff;background-color:#259343!important;border-color:#259343!important}a.btn-success,button.btn-success{color:#fff;background-color:#589ee4!important;border-color:transparent}a.btn-success:hover,button.btn-success:hover{color:#fff;background-color:#598dd3!important;border-color:transparent}a.btn-success:active,button.btn-success:active{color:#fff;background-color:#5a80c7!important;border-color:transparent}#sq_wrap table.dataTable{border-collapse:collapse!important}#sq_wrap .table thead th{white-space:nowrap!important}#sq_wrap .table thead{background-color:#e5edf3!important;text-shadow:1px 1px #fbfbfb}#sq_wrap .table-hover tbody tr:hover{background-color:#f1f1f1!important}#sq_wrap .table thead tr:hover{background-color:transparent!important}#sq_wrap .table-striped tbody tr:nth-of-type(odd){background-color:rgba(151,147,147,.05)}#sq_wrap .table-striped tbody tr.even{background-color:#fff}#sq_wrap .text-link{color:#2680b4!important}#sq_wrap .sq_row{position:relative;flex:1 1 auto}#sq_wrap .sq_col_side{flex:0 0 300px}#sq_wrap button.btn-success{color:#fff;background-color:#589ee4;border-color:transparent}#sq_wrap button.btn-success:hover{background-color:#4c81bd}#sq_wrap .btn-primary:not(:disabled):not(.disabled).active,#sq_wrap .btn-primary:not(:disabled):not(.disabled):active,#sq_wrap .show>.btn-primary.dropdown-toggle{background-color:#2777aa!important}#sq_wrap .btn-warning{background-color:#f2ca4c!important;border-color:transparent}#sq_wrap .btn-warning:hover{background-color:#e6be4b!important;border-color:transparent}#sq_wrap .bg-cta{background-color:#694861!important}#sq_wrap a:not(.btn):not(.sq-btn):not(.sq-nav-link){color:#f16112;text-decoration:none}#sq_wrap a:not(.btn):not(.sq-btn):not(.sq-nav-link):hover{color:#f14644}#sq_wrap h4 .fa:before{margin-right:3px}.wp-admin #sq_wrap select{padding:.375em .75em;line-height:1.5;height:calc(2.25em + 2px);vertical-align:middle;background-color:#e5f5dd;max-width:100%;max-height:100%;min-width:120px}.wp-admin #sq_seosettings_bulkseo select{height:calc(2.55em + 2px)}.wp-admin #sq_wrap select.bg-input{height:calc(2.875em + 2px);padding:.5em 1em;font-size:1.25em;line-height:1.5;border-radius:.3em;background-color:#e5f5dd}.wp-admin #sq_wrap input[type=text]:not(.wp-color-picker),.wp-admin #sq_wrap textarea{background-color:#e5f5dd;padding:.88em .75em}.sq_icons_content{float:left;background-color:#fffcfc;background-image:linear-gradient(90deg,#e6ecf1,#f8f9fa);margin:-7px;height:100%;min-height:121px;min-width:100px}.sq_icons{float:left;width:40px;height:40px}.sq_icons_small{display:block;float:left;margin:0 10px 0 0;height:30px;width:30px}.sq_kr_icon{background:url(../img/logos/kr_92.png) no-repeat;background-size:100%}.sq_krfound_icon{background:url(../img/logos/briefcase_92.png) no-repeat;background-size:100%}.sq_audits_icon{background:url(../img/logos/audit_92.png) no-repeat;background-size:100%}.sq_automation_icon{background:url(../img/logos/automation_92.png) no-repeat;background-size:100%}.sq_briefcase_icon{background:url(../img/logos/briefcase_92.png) no-repeat;background-size:100%}.sq_labels_icon{background:url(../img/logos/labels_92.png) no-repeat;background-size:100%}.sq_suggested_icon{background:url(../img/logos/suggested_92.png) no-repeat;background-size:100%}.sq_history_icon{background:url(../img/logos/history_92.png) no-repeat;background-size:100%}.sq_audit_icon{background:url(../img/logos/audit_92.png) no-repeat;background-size:100%}.sq_rankings_icon,.sq_ranks_icon{background:url(../img/logos/ranking_92.png) no-repeat;background-size:100%}.sq_sla_icon{background:url(../img/logos/sla_92.png) no-repeat;background-size:100%}.sq_focuspages_icon{background:url(../img/logos/focuspages_92.png) no-repeat;background-size:100%}.sq_bulkseo_icon{background:url(../img/logos/bulkseo_92.png) no-repeat;background-size:100%}.sq_boostpages_icon{background:url(../img/logos/boostpages_92.png) no-repeat;background-size:100%}.sq_addpage_icon{background:url(../img/logos/addpage_92.png) no-repeat;background-size:100%}.sq_settings_icon{background:url(../img/logos/settings_92.png) no-repeat;background-size:100%}.sq_squirrly_icon{background:url(../img/logos/squirrly.png) no-repeat;background-size:100%;height:48px;filter:none;-webkit-filter:none}.sq_book_icon{background:url(../img/logos/book_92.png) no-repeat;background-size:100%}.sq_stats_icon{background:url(../img/logos/stats_92.png) no-repeat;background-size:100%}.sq_favicon_icon{background:url(../img/logos/favicon_92.png) no-repeat;background-size:100%}.sq_jsonld_icon{background:url(../img/logos/jsonld_92.png) no-repeat;background-size:100%}.sq_metas_icon{background:url(../img/logos/metas_92.png) no-repeat;background-size:100%}.sq_robots_icon{background:url(../img/logos/robots_92.png) no-repeat;background-size:100%}.sq_social_icon{background:url(../img/logos/social_92.png) no-repeat;background-size:100%}.sq_sitemap_icon{background:url(../img/logos/sitemap_92.png) no-repeat;background-size:100%}.sq_traffic_icon{background:url(../img/logos/traffic_92.png) no-repeat;background-size:100%}.sq_websites_icon{background:url(../img/logos/websites_92.png) no-repeat;background-size:100%}#sq_wrap .page-item.active .page-link{background-color:#bde2f1;border-color:transparent}#sq_preloader{position:absolute;height:100%;width:100%;z-index:1000;background-color:#fff!important;opacity:.5}.sq_loading{height:60px;background:url(../img/loading.gif) no-repeat center!important}.sq_minloading{position:relative;opacity:.5}.sq_minloading:after{position:absolute!important;right:calc(50% - 10px)!important;top:calc(50% - 8px)!important;display:block!important;float:right!important;line-height:30px!important;content:""!important;padding:0!important;margin:0 0 0 5px!important;height:16px!important;width:20px!important;background:url(../img/minloading.png) no-repeat!important;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}#sq_wrap .sq_sm_menu{width:24px;position:relative}#sq_wrap .sq_sm_menu .fa-ellipsis-v{font-size:18px!important;color:#2680b4}#sq_wrap .sq_sm_menu .sm_icon_button{display:inline-block;position:relative;width:24px;height:24px;box-sizing:border-box;font-size:18px;color:#545454;text-align:center;cursor:pointer}#sq_wrap table tr div.sq_sm_menu:hover .sq_sm_dropdown,#sq_wrap table tr:hover .sq_sm_menu{display:block}#sq_wrap .sq_sm_menu .sq_sm_dropdown{display:none;background:#fff;position:absolute;right:20px;top:0;z-index:100;min-width:200px;box-shadow:0 0 10px 1px #999}#sq_wrap .sq_sm_menu .sq_icons_small{display:inline-block;margin:0 5px;height:17px;width:17px;vertical-align:middle;float:none}#sq_wrap .sq_sm_menu .sq_sm_dropdown li,#sq_wrap .sq_sm_menu .sq_sm_dropdown li a,#sq_wrap .sq_sm_menu .sq_sm_dropdown li button{font-size:13px;cursor:pointer}#sq_wrap .sq_help_toolbar{position:absolute;right:15px}#sq_wrap .sq_help_toolbar>i{font-size:27px!important;color:#f3dc68;cursor:pointer}#sq_wrap .sq_help_question i{font-size:24px!important;margin:10px}.fa-book-open:before{content:"\f518"}.flexcroll{scrollbar-face-color:#367cd2;scrollbar-shadow-color:#fff;scrollbar-highlight-color:#fff;scrollbar-3dlight-color:#fff;scrollbar-darkshadow-color:#fff;scrollbar-track-color:#fff;scrollbar-arrow-color:#fff}.flexcroll::-webkit-scrollbar{width:12px}.flexcroll::-webkit-scrollbar-track{-webkit-border-radius:2px;border-radius:2px}.flexcroll::-webkit-scrollbar-thumb{-webkit-border-radius:2px;border-radius:2px;background:rgba(171,171,171,.8)}.form-group input.form-control,.form-group select.form-control,.form-group textarea.form-control{width:100%}.tooltip .arrow{left:auto!important;margin-left:inherit!important;bottom:inherit!important;z-index:inherit!important}.tooltip .arrow:after{content:""}.fade.in{opacity:1}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-backdrop .fade .in,.modal-backdrop.fade{opacity:.5!important}@media only screen and (max-width:960px){#sq_wrap{margin:0 0 0 35px}}
view/assets/css/stats.css CHANGED
@@ -1,11 +1,18 @@
1
 
2
- #sq_stats .card-title{
3
  font-size: 24px;
4
  font-weight: 600;
5
  line-height: 50px;
6
  }
7
 
8
- #sq_stats h5{
9
  font-size: 16px;
10
  font-weight: 600;
 
 
 
 
 
 
 
11
  }
1
 
2
+ #sq_stats .card-title {
3
  font-size: 24px;
4
  font-weight: 600;
5
  line-height: 50px;
6
  }
7
 
8
+ #sq_stats h5 {
9
  font-size: 16px;
10
  font-weight: 600;
11
+ }
12
+
13
+ .sq_features.closed {
14
+ height: 80px;
15
+ overflow: hidden;
16
+ box-shadow: 0 0 10px -3px #994525;
17
+ background-color: white;
18
  }
view/assets/css/stats.min.css CHANGED
@@ -1 +1 @@
1
- #sq_stats .card-title{font-size:24px;font-weight:600;line-height:50px}#sq_stats h5{font-size:16px;font-weight:600}
1
+ #sq_stats .card-title{font-size:24px;font-weight:600;line-height:50px}#sq_stats h5{font-size:16px;font-weight:600}.sq_features.closed{height:80px;overflow:hidden;box-shadow:0 0 10px -3px #994525;background-color:#fff}
view/assets/img/logos/favicon_92.png ADDED
Binary file
view/assets/img/logos/goals_92.png ADDED
Binary file
view/assets/img/logos/journey_92.png ADDED
Binary file
view/assets/img/logos/jsonld_92.png ADDED
Binary file
view/assets/img/logos/metas_92.png ADDED
Binary file
view/assets/img/logos/redirect_92.png ADDED
Binary file
view/assets/img/logos/robots_92.png ADDED
Binary file
view/assets/img/logos/sitemap_92.png ADDED
Binary file
view/assets/img/logos/social_92.png ADDED
Binary file
view/assets/img/squirrly_features.png ADDED
Binary file
view/assets/js/audits.js CHANGED
@@ -96,8 +96,6 @@ if (typeof SQ_DEBUG === 'undefined') var SQ_DEBUG = false;
96
  }, "json");
97
  };
98
 
99
-
100
-
101
  $.fn.sq_auditsPage = function () {
102
  var $this = this;
103
 
@@ -200,6 +198,47 @@ if (typeof SQ_DEBUG === 'undefined') var SQ_DEBUG = false;
200
 
201
  };
202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  $(document).ready(function () {
204
  var $auditsdiv = $('#sq_audits');
205
  var $auditdiv = $('#sq_audit');
96
  }, "json");
97
  };
98
 
 
 
99
  $.fn.sq_auditsPage = function () {
100
  var $this = this;
101
 
198
 
199
  };
200
 
201
+ /**
202
+ * Inspect the URLs that are not loaded correctly
203
+ * @param post_id
204
+ */
205
+ $.fn.sq_inspectURL = function () {
206
+ var $this = this;
207
+ $this.find('.modal-body').addClass('sq_loading');
208
+ $this.find('.modal-body').html('');
209
+ var post_id = $this.data('post_id');
210
+ // Display Modal
211
+ $this.modal('show');
212
+
213
+ $.post(
214
+ sqQuery.ajaxurl,
215
+ {
216
+ action: 'sq_focuspages_inspecturl',
217
+ post_id: post_id,
218
+ sq_nonce: sqQuery.nonce
219
+ }
220
+ ).done(function (response) {
221
+ if (typeof response !== 'undefined') {
222
+ if (typeof response.html !== 'undefined' && response.html) {
223
+ /// Add response in Modal body
224
+ $this.find('.modal-body').html(response.html);
225
+ } else {
226
+ $this.find('.modal-body').html('Page could not load');
227
+ }
228
+
229
+ if (typeof response.error !== 'undefined') {
230
+ $.sq_showMessage(response.error, 5000).addClass('sq_error');
231
+ }
232
+ }
233
+
234
+ $this.find('.modal-body').removeClass('sq_loading');
235
+ }).fail(function (error) {
236
+ $this.trigger('error.refresh', error);
237
+
238
+ $this.find('.modal-body').removeClass('sq_loading');
239
+ }, "json");
240
+ };
241
+
242
  $(document).ready(function () {
243
  var $auditsdiv = $('#sq_audits');
244
  var $auditdiv = $('#sq_audit');
view/assets/js/audits.min.js CHANGED
@@ -1 +1 @@
1
- if(typeof SQ_DEBUG==="undefined")var SQ_DEBUG=false;(function($){var clonedHeaderRow;$.fn.sq_auditsPages=function(){var $this=this;$(".sq_auditpages_refresh").on("click",function(){var $refresh=$(this);$refresh.addClass("fa-spin");$this.sq_getAuditPages();$this.on("sq_auditpages_loaded",function(){$refresh.removeClass("fa-spin")})});$(".sq_bulk_submit").on("click",function(){if($(".sq_bulk_input:checked").length>0){$(".sq_form_bulk_submit").submit()}else{alert("Select an audit first")}});$this.on("sq_auditpages_loaded",function(){$(".sq_save_ajax").find("input").on("change",function(){$(this).sq_ajaxCallListen()})})};$.fn.sq_getAuditPages=function(){var $this=this;var $sid=$.sq_getParam("sid");$this.addClass("sq_minloading");return $.post(sqQuery.ajaxurl,{action:"sq_auditpages_getaudit",sid:$sid?$sid:null,sq_nonce:sqQuery.nonce}).done(function(response){if(typeof response!=="undefined"){if(typeof response.html!=="undefined"){$("div.tooltip").hide();if(typeof response.stats!=="undefined"){$this.find(".sq_auditstatus_content").html(response.stats)}$this.find(".sq_auditpages_content").html(response.html);$(".sq_bulk_submit").on("click",function(){if($(".sq_bulk_input:checked").length>0){$(".sq_form_bulk_submit").submit()}else{alert("Select an audit first")}});$this.trigger("sq_auditpages_loaded");SQ_DEBUG&&console.log("sq_auditpages_loaded")}else{$("#sq_audits").trigger("error.refresh",response)}if(typeof response.error!=="undefined"){$.sq_showMessage(response.error,5e3).addClass("sq_error")}}else{$("#sq_audits").trigger("error.refresh");SQ_DEBUG&&console.log("no data received",response)}$this.removeClass("sq_minloading")}).fail(function(error){SQ_DEBUG&&console.log("no data received");$("#sq_audits").trigger("error.refresh",error);$this.removeClass("sq_minloading")},"json")};$.fn.sq_auditsPage=function(){var $this=this;$this.updateTableHeaders=function(){if($(".persist-area").length){if($(window).scrollTop()<$(".persist-area").first().offset().top-200){$("#sqd_toolbar").slideDown("fast");$("nav.navbar.fixed").slideDown("fast")}$(".persist-area").each(function(){var el=$(this),offset=el.offset(),scrollTop=$(window).scrollTop(),floatingHeader=$(".floatingHeader",this);if(scrollTop>=offset.top-80&&scrollTop<offset.top+el.height()){floatingHeader.css({visibility:"visible"});$(".sq_nav_item").removeClass("active");$(".sq_nav_item."+$(".floatingHeader:visible:last").data("id")).addClass("active");floatingHeader.slideDown("fast");floatingHeader.off("click").on("click",function(){$("html,body").animate({scrollTop:offset.top},1e3)});$("nav.navbar.fixed").slideUp("fast")}else if(scrollTop<offset.top-80){floatingHeader.slideUp("fast",function(){floatingHeader.css({visibility:"hidden",display:"none"})})}})}};$this.sticktothebottom=function(){var h=window.innerHeight;var window_top=$(window).scrollTop();$(".stickThis").each(function(){var $this=$(this);var top=$this.offset().top;var panelh=$this.outerHeight();var panelw=$this.outerWidth();if(window_top>=45){$this.addClass("stick");$this.css("max-width",panelw)}if(window_top<45){$(".stickThis").removeClass("stick")}})};$(window).scroll($this.updateTableHeaders).trigger("scroll");$(window).scroll($this.sticktothebottom);$this.sticktothebottom();$(".persist-area").each(function(){clonedHeaderRow=$(".persist-header",this);clonedHeaderRow.before(clonedHeaderRow.clone()).css("width",clonedHeaderRow.width()).addClass("floatingHeader")});$(".sq_nav_item").on("click",function(){$(".sq_nav_item").removeClass("active");$(this).addClass("active");$("html,body").animate({scrollTop:$("#sq_audit_tasks_header_"+$(this).data("id")).offset().top-80},1e3)});$(".sq_back_to_top").on("click",function(){var scrolltop=$(window).scrollTop();if(scrolltop>0)$("html,body").animate({scrollTop:0},1e3)})};$(document).ready(function(){var $auditsdiv=$("#sq_audits");var $auditdiv=$("#sq_audit");if($auditsdiv.length>0){$auditsdiv.sq_auditsPages()}if($auditdiv.length>0){$auditdiv.sq_auditsPage()}$auditsdiv.on("error.refresh",function(){$.sq_showMessage("Couldn't load the data. <span class='sq_refresh' style='color: #f1d432; cursor:pointer;'>Please refresh</span>.",1e4).addClass("sq_error");$(".sq_refresh").on("click",function(){location.reload()})});$auditdiv.find(".sq_audit_completed_tasks").on("click",function(){$auditdiv.find("li.sq_audit_task_complete_1").show();$auditdiv.find("li.sq_audit_task_complete_0").hide()});$auditdiv.find(".sq_audit_incompleted_tasks").on("click",function(){$auditdiv.find(".sq_audit_task_complete_1").hide();$auditdiv.find(".sq_audit_task_complete_0").show()})})})(jQuery);
1
+ if(typeof SQ_DEBUG==="undefined")var SQ_DEBUG=false;(function($){var clonedHeaderRow;$.fn.sq_auditsPages=function(){var $this=this;$(".sq_auditpages_refresh").on("click",function(){var $refresh=$(this);$refresh.addClass("fa-spin");$this.sq_getAuditPages();$this.on("sq_auditpages_loaded",function(){$refresh.removeClass("fa-spin")})});$(".sq_bulk_submit").on("click",function(){if($(".sq_bulk_input:checked").length>0){$(".sq_form_bulk_submit").submit()}else{alert("Select an audit first")}});$this.on("sq_auditpages_loaded",function(){$(".sq_save_ajax").find("input").on("change",function(){$(this).sq_ajaxCallListen()})})};$.fn.sq_getAuditPages=function(){var $this=this;var $sid=$.sq_getParam("sid");$this.addClass("sq_minloading");return $.post(sqQuery.ajaxurl,{action:"sq_auditpages_getaudit",sid:$sid?$sid:null,sq_nonce:sqQuery.nonce}).done(function(response){if(typeof response!=="undefined"){if(typeof response.html!=="undefined"){$("div.tooltip").hide();if(typeof response.stats!=="undefined"){$this.find(".sq_auditstatus_content").html(response.stats)}$this.find(".sq_auditpages_content").html(response.html);$(".sq_bulk_submit").on("click",function(){if($(".sq_bulk_input:checked").length>0){$(".sq_form_bulk_submit").submit()}else{alert("Select an audit first")}});$this.trigger("sq_auditpages_loaded");SQ_DEBUG&&console.log("sq_auditpages_loaded")}else{$("#sq_audits").trigger("error.refresh",response)}if(typeof response.error!=="undefined"){$.sq_showMessage(response.error,5e3).addClass("sq_error")}}else{$("#sq_audits").trigger("error.refresh");SQ_DEBUG&&console.log("no data received",response)}$this.removeClass("sq_minloading")}).fail(function(error){SQ_DEBUG&&console.log("no data received");$("#sq_audits").trigger("error.refresh",error);$this.removeClass("sq_minloading")},"json")};$.fn.sq_auditsPage=function(){var $this=this;$this.updateTableHeaders=function(){if($(".persist-area").length){if($(window).scrollTop()<$(".persist-area").first().offset().top-200){$("#sqd_toolbar").slideDown("fast");$("nav.navbar.fixed").slideDown("fast")}$(".persist-area").each(function(){var el=$(this),offset=el.offset(),scrollTop=$(window).scrollTop(),floatingHeader=$(".floatingHeader",this);if(scrollTop>=offset.top-80&&scrollTop<offset.top+el.height()){floatingHeader.css({visibility:"visible"});$(".sq_nav_item").removeClass("active");$(".sq_nav_item."+$(".floatingHeader:visible:last").data("id")).addClass("active");floatingHeader.slideDown("fast");floatingHeader.off("click").on("click",function(){$("html,body").animate({scrollTop:offset.top},1e3)});$("nav.navbar.fixed").slideUp("fast")}else if(scrollTop<offset.top-80){floatingHeader.slideUp("fast",function(){floatingHeader.css({visibility:"hidden",display:"none"})})}})}};$this.sticktothebottom=function(){var h=window.innerHeight;var window_top=$(window).scrollTop();$(".stickThis").each(function(){var $this=$(this);var top=$this.offset().top;var panelh=$this.outerHeight();var panelw=$this.outerWidth();if(window_top>=45){$this.addClass("stick");$this.css("max-width",panelw)}if(window_top<45){$(".stickThis").removeClass("stick")}})};$(window).scroll($this.updateTableHeaders).trigger("scroll");$(window).scroll($this.sticktothebottom);$this.sticktothebottom();$(".persist-area").each(function(){clonedHeaderRow=$(".persist-header",this);clonedHeaderRow.before(clonedHeaderRow.clone()).css("width",clonedHeaderRow.width()).addClass("floatingHeader")});$(".sq_nav_item").on("click",function(){$(".sq_nav_item").removeClass("active");$(this).addClass("active");$("html,body").animate({scrollTop:$("#sq_audit_tasks_header_"+$(this).data("id")).offset().top-80},1e3)});$(".sq_back_to_top").on("click",function(){var scrolltop=$(window).scrollTop();if(scrolltop>0)$("html,body").animate({scrollTop:0},1e3)})};$.fn.sq_inspectURL=function(){var $this=this;$this.find(".modal-body").addClass("sq_loading");$this.find(".modal-body").html("");var post_id=$this.data("post_id");$this.modal("show");$.post(sqQuery.ajaxurl,{action:"sq_focuspages_inspecturl",post_id:post_id,sq_nonce:sqQuery.nonce}).done(function(response){if(typeof response!=="undefined"){if(typeof response.html!=="undefined"&&response.html){$this.find(".modal-body").html(response.html)}else{$this.find(".modal-body").html("Page could not load")}if(typeof response.error!=="undefined"){$.sq_showMessage(response.error,5e3).addClass("sq_error")}}$this.find(".modal-body").removeClass("sq_loading")}).fail(function(error){$this.trigger("error.refresh",error);$this.find(".modal-body").removeClass("sq_loading")},"json")};$(document).ready(function(){var $auditsdiv=$("#sq_audits");var $auditdiv=$("#sq_audit");if($auditsdiv.length>0){$auditsdiv.sq_auditsPages()}if($auditdiv.length>0){$auditdiv.sq_auditsPage()}$auditsdiv.on("error.refresh",function(){$.sq_showMessage("Couldn't load the data. <span class='sq_refresh' style='color: #f1d432; cursor:pointer;'>Please refresh</span>.",1e4).addClass("sq_error");$(".sq_refresh").on("click",function(){location.reload()})});$auditdiv.find(".sq_audit_completed_tasks").on("click",function(){$auditdiv.find("li.sq_audit_task_complete_1").show();$auditdiv.find("li.sq_audit_task_complete_0").hide()});$auditdiv.find(".sq_audit_incompleted_tasks").on("click",function(){$auditdiv.find(".sq_audit_task_complete_1").hide();$auditdiv.find(".sq_audit_task_complete_0").show()})})})(jQuery);
view/assets/js/focuspages.js CHANGED
@@ -195,6 +195,45 @@ if (typeof SQ_DEBUG === 'undefined') var SQ_DEBUG = false;
195
  }, "json");
196
  };
197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
 
199
  $(document).ready(function () {
200
  $('#sq_focuspages').sq_focusPages();
195
  }, "json");
196
  };
197
 
198
+ /**
199
+ * Inspect the URLs that are not loaded correctly
200
+ */
201
+ $.fn.sq_inspectURL = function () {
202
+ var $this = this;
203
+ var post_id = $this.data('post_id');
204
+ $this.find('.modal-body').addClass('sq_loading');
205
+ $this.find('.modal-body').html('');
206
+ // Display Modal
207
+ $this.modal('show');
208
+
209
+ $.post(
210
+ sqQuery.ajaxurl,
211
+ {
212
+ action: 'sq_focuspages_inspecturl',
213
+ post_id: post_id,
214
+ sq_nonce: sqQuery.nonce
215
+ }
216
+ ).done(function (response) {
217
+ if (typeof response !== 'undefined') {
218
+ if (typeof response.html !== 'undefined' && response.html) {
219
+ /// Add response in Modal body
220
+ $this.find('.modal-body').html(response.html);
221
+ } else {
222
+ $this.find('.modal-body').html('Page could not load');
223
+ }
224
+
225
+ if (typeof response.error !== 'undefined') {
226
+ $.sq_showMessage(response.error, 5000).addClass('sq_error');
227
+ }
228
+ }
229
+
230
+ $this.find('.modal-body').removeClass('sq_loading');
231
+ }).fail(function (error) {
232
+ $this.trigger('error.refresh', error);
233
+
234
+ $this.find('.modal-body').removeClass('sq_loading');
235
+ }, "json");
236
+ };
237
 
238
  $(document).ready(function () {
239
  $('#sq_focuspages').sq_focusPages();
view/assets/js/focuspages.min.js CHANGED
@@ -1 +1 @@
1
- if(typeof SQ_DEBUG==="undefined")var SQ_DEBUG=false;(function($){$.fn.sq_focusPages=function(){var $this=this;var lastScrollLeft=0;var scrollLeft=0;var maxScrollLeft=0;$this.listenScrollbar=function(){$this.find(".sq_overflow").css("max-width",$this.width()-10).show();$(window).resize(function(){$this.find(".sq_overflow").hide().css("max-width",$this.width()-10).show();maxScrollLeft=$this.find(".sq_overflow").prop("scrollWidth")-$this.find(".sq_overflow").width()});$this.find(".sq_overflow_arrow_right").show();$this.find(".sq_overflow_arrow_right").on("click",function(){$this.find(".sq_overflow").scrollLeft(scrollLeft+$this.find(".sq_overflow").width());$(".sq_overflow_arrow_left").show()});$this.find(".sq_overflow_arrow_left").on("click",function(){$this.find(".sq_overflow").scrollLeft(scrollLeft-$this.find(".sq_overflow").width());$(".sq_overflow_arrow_right").show()});$this.find(".sq_overflow").scroll(function(){$(".sq_overflow_arrow_right").show();$(".sq_overflow_arrow_left").show();scrollLeft=parseInt($this.find(".sq_overflow").scrollLeft());maxScrollLeft=$this.find(".sq_overflow").prop("scrollWidth")-$this.find(".sq_overflow").width();if(lastScrollLeft!==scrollLeft){if(scrollLeft===0){$(".sq_overflow_arrow_right").show();$(".sq_overflow_arrow_left").hide()}else if(scrollLeft>=maxScrollLeft-20){$(".sq_overflow_arrow_right").hide();$(".sq_overflow_arrow_left").show()}lastScrollLeft=scrollLeft}})};var sq_Assistant=$.fn.sq_Assistant;$.fn.sq_Assistant=function(options){var $this=this;var $modal=$("#sq_assistant_modal");var settings=$.extend({category:"metas"},options);if($(".sq_focuspages_content").find(".sq_assistant").length>0){$(".sq_focuspages_assistant").html($(".sq_focuspages_content").find(".sq_assistant"))}$this.listenTableBullets=function(){$this.find(".sq_show_assistant").off("click").on("click",function(){$this.find("div.sq_assistant").find("ul").hide();$this.find("ul#sq_assistant_tasks_"+$(this).data("category")+"_"+$(this).data("id")).show(0,function(){$(this).fadeTo(0,.1).fadeTo("fast",1)})});$this.find(".sq_show_assistant").tooltip({placement:"left",trigger:"hover"})};$this.listenTableBullets();$this.find(".sq_show_snippet").tooltip({placement:"left",trigger:"hover"});var args=Array.prototype.slice.call(arguments,0);return sq_Assistant.apply($this,args)};$(".sq_focuspages_refresh").on("click",function(){var $refresh=$(this);$refresh.addClass("fa-spin");$this.sq_getFocusPages();$this.on("sq_focuspages_loaded",function(){$this.listen();$refresh.removeClass("fa-spin")})});$this.listen=function(){$this.listenScrollbar();$("#sq_wrap").sq_Assistant();$(".sq_circle_label_input").on("change",function(){$this.sq_getFocusPages()});$(".sq_assistant_help ul").show()};$this.on("sq_focuspages_loaded",function(){$(".sq_save_ajax").find("input").on("change",function(){$(this).sq_ajaxCallListen()});$(".sq_save_ajax").find("button").on("click",function(){$(this).sq_ajaxCallListen()})});$this.listen()};$.fn.sq_getFocusPages=function(){var $this=this;var $sid=$.sq_getParam("sid");$sq_slabels=[];$this.find(".sq_circle_label_input:checked").each(function(){$sq_slabels.push($(this).val())});$this.addClass("sq_minloading");return $.post(sqQuery.ajaxurl,{action:"sq_focuspages_getpage",sid:$sid?$sid:null,slabel:$sq_slabels,sq_nonce:sqQuery.nonce}).done(function(response){if(typeof response!=="undefined"){if(typeof response.html!=="undefined"){$("div.tooltip").hide();$this.find(".sq_focuspages_content").html(response.html);$this.trigger("sq_focuspages_loaded");SQ_DEBUG&&console.log("sq_focuspages_loaded");$(".sq_research_selectit").on("click",function(){$(this).addClass("sq_minloading");var $keyword=$(this).data("keyword");$.sq_setCookie("sq_keyword",$keyword);location.href=$(this).data("post")})}else{$("#sq_focuspages").trigger("error.refresh",response)}if(typeof response.error!=="undefined"){$.sq_showMessage(response.error,5e3).addClass("sq_error")}}else{$("#sq_focuspages").trigger("error.refresh",response);SQ_DEBUG&&console.log("no data received")}$this.removeClass("sq_minloading")}).fail(function(error){SQ_DEBUG&&console.log("no data received");$("#sq_focuspages").trigger("error.refresh",error);$this.removeClass("sq_minloading")},"json")};$(document).ready(function(){$("#sq_focuspages").sq_focusPages();$("#sq_focuspages").on("error.refresh",function(){$.sq_showMessage("Couldn't load the data. <span class='sq_refresh' style='color:#f1d432; cursor:pointer;'>Please refresh</span>.",1e4).addClass("sq_error");$(".sq_refresh").on("click",function(){location.reload()})})})})(jQuery);
1
+ if(typeof SQ_DEBUG==="undefined")var SQ_DEBUG=false;(function($){$.fn.sq_focusPages=function(){var $this=this;var lastScrollLeft=0;var scrollLeft=0;var maxScrollLeft=0;$this.listenScrollbar=function(){$this.find(".sq_overflow").css("max-width",$this.width()-10).show();$(window).resize(function(){$this.find(".sq_overflow").hide().css("max-width",$this.width()-10).show();maxScrollLeft=$this.find(".sq_overflow").prop("scrollWidth")-$this.find(".sq_overflow").width()});$this.find(".sq_overflow_arrow_right").show();$this.find(".sq_overflow_arrow_right").on("click",function(){$this.find(".sq_overflow").scrollLeft(scrollLeft+$this.find(".sq_overflow").width());$(".sq_overflow_arrow_left").show()});$this.find(".sq_overflow_arrow_left").on("click",function(){$this.find(".sq_overflow").scrollLeft(scrollLeft-$this.find(".sq_overflow").width());$(".sq_overflow_arrow_right").show()});$this.find(".sq_overflow").scroll(function(){$(".sq_overflow_arrow_right").show();$(".sq_overflow_arrow_left").show();scrollLeft=parseInt($this.find(".sq_overflow").scrollLeft());maxScrollLeft=$this.find(".sq_overflow").prop("scrollWidth")-$this.find(".sq_overflow").width();if(lastScrollLeft!==scrollLeft){if(scrollLeft===0){$(".sq_overflow_arrow_right").show();$(".sq_overflow_arrow_left").hide()}else if(scrollLeft>=maxScrollLeft-20){$(".sq_overflow_arrow_right").hide();$(".sq_overflow_arrow_left").show()}lastScrollLeft=scrollLeft}})};var sq_Assistant=$.fn.sq_Assistant;$.fn.sq_Assistant=function(options){var $this=this;var $modal=$("#sq_assistant_modal");var settings=$.extend({category:"metas"},options);if($(".sq_focuspages_content").find(".sq_assistant").length>0){$(".sq_focuspages_assistant").html($(".sq_focuspages_content").find(".sq_assistant"))}$this.listenTableBullets=function(){$this.find(".sq_show_assistant").off("click").on("click",function(){$this.find("div.sq_assistant").find("ul").hide();$this.find("ul#sq_assistant_tasks_"+$(this).data("category")+"_"+$(this).data("id")).show(0,function(){$(this).fadeTo(0,.1).fadeTo("fast",1)})});$this.find(".sq_show_assistant").tooltip({placement:"left",trigger:"hover"})};$this.listenTableBullets();$this.find(".sq_show_snippet").tooltip({placement:"left",trigger:"hover"});var args=Array.prototype.slice.call(arguments,0);return sq_Assistant.apply($this,args)};$(".sq_focuspages_refresh").on("click",function(){var $refresh=$(this);$refresh.addClass("fa-spin");$this.sq_getFocusPages();$this.on("sq_focuspages_loaded",function(){$this.listen();$refresh.removeClass("fa-spin")})});$this.listen=function(){$this.listenScrollbar();$("#sq_wrap").sq_Assistant();$(".sq_circle_label_input").on("change",function(){$this.sq_getFocusPages()});$(".sq_assistant_help ul").show()};$this.on("sq_focuspages_loaded",function(){$(".sq_save_ajax").find("input").on("change",function(){$(this).sq_ajaxCallListen()});$(".sq_save_ajax").find("button").on("click",function(){$(this).sq_ajaxCallListen()})});$this.listen()};$.fn.sq_getFocusPages=function(){var $this=this;var $sid=$.sq_getParam("sid");$sq_slabels=[];$this.find(".sq_circle_label_input:checked").each(function(){$sq_slabels.push($(this).val())});$this.addClass("sq_minloading");return $.post(sqQuery.ajaxurl,{action:"sq_focuspages_getpage",sid:$sid?$sid:null,slabel:$sq_slabels,sq_nonce:sqQuery.nonce}).done(function(response){if(typeof response!=="undefined"){if(typeof response.html!=="undefined"){$("div.tooltip").hide();$this.find(".sq_focuspages_content").html(response.html);$this.trigger("sq_focuspages_loaded");SQ_DEBUG&&console.log("sq_focuspages_loaded");$(".sq_research_selectit").on("click",function(){$(this).addClass("sq_minloading");var $keyword=$(this).data("keyword");$.sq_setCookie("sq_keyword",$keyword);location.href=$(this).data("post")})}else{$("#sq_focuspages").trigger("error.refresh",response)}if(typeof response.error!=="undefined"){$.sq_showMessage(response.error,5e3).addClass("sq_error")}}else{$("#sq_focuspages").trigger("error.refresh",response);SQ_DEBUG&&console.log("no data received")}$this.removeClass("sq_minloading")}).fail(function(error){SQ_DEBUG&&console.log("no data received");$("#sq_focuspages").trigger("error.refresh",error);$this.removeClass("sq_minloading")},"json")};$.fn.sq_inspectURL=function(){var $this=this;var post_id=$this.data("post_id");$this.find(".modal-body").addClass("sq_loading");$this.find(".modal-body").html("");$this.modal("show");$.post(sqQuery.ajaxurl,{action:"sq_focuspages_inspecturl",post_id:post_id,sq_nonce:sqQuery.nonce}).done(function(response){if(typeof response!=="undefined"){if(typeof response.html!=="undefined"&&response.html){$this.find(".modal-body").html(response.html)}else{$this.find(".modal-body").html("Page could not load")}if(typeof response.error!=="undefined"){$.sq_showMessage(response.error,5e3).addClass("sq_error")}}$this.find(".modal-body").removeClass("sq_loading")}).fail(function(error){$this.trigger("error.refresh",error);$this.find(".modal-body").removeClass("sq_loading")},"json")};$(document).ready(function(){$("#sq_focuspages").sq_focusPages();$("#sq_focuspages").on("error.refresh",function(){$.sq_showMessage("Couldn't load the data. <span class='sq_refresh' style='color:#f1d432; cursor:pointer;'>Please refresh</span>.",1e4).addClass("sq_error");$(".sq_refresh").on("click",function(){location.reload()})})})})(jQuery);