SEO SQUIRRLY™ - Version 11.0.04

Version Description

  • 03/08/2021 = Update - Add Json-LD types for Automation and Snippet Update - Add new data in Json-LD Organizaztion like: Geo Location, Address, Country Update - Option in Json-LD to force the Json-LD author/person in all pages Update - Add Device Option (desktop, tablet, mobile) for Google Ranking check for each keyword Update - Add Google Language option on Ranking check for each keyword Fixed - Keyword Research javascript issue on Firefox browser Fixed - Decode URL for Json-LD to prevent invalid URLs Fixed - Deprecated functions and number of parameters Fixed - Small bugs
Download this release

Release Info

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

Code changes from version 11.0.03 to 11.0.04

Files changed (48) hide show
  1. classes/ActionController.php +3 -16
  2. classes/BlockController.php +5 -7
  3. classes/DisplayController.php +1 -0
  4. classes/Error.php +1 -2
  5. classes/FrontController.php +5 -7
  6. classes/HookController.php +1 -0
  7. classes/ObjController.php +1 -0
  8. classes/RemoteController.php +114 -91
  9. classes/helpers/DevKit.php +148 -8
  10. classes/helpers/Sanitize.php +51 -0
  11. classes/helpers/Tools.php +264 -118
  12. config.json +8 -1
  13. config/config.php +2 -1
  14. config/paths.php +1 -0
  15. controllers/Api.php +3 -0
  16. controllers/Assistant.php +2 -0
  17. controllers/Audits.php +29 -4
  18. controllers/BulkSeo.php +0 -2
  19. controllers/Dashboard.php +1 -0
  20. controllers/Features.php +32 -0
  21. controllers/FocusPages.php +39 -37
  22. controllers/Frontend.php +69 -46
  23. controllers/Menu.php +175 -233
  24. controllers/Onboarding.php +20 -5
  25. controllers/Overview.php +6 -1
  26. controllers/Patterns.php +1 -1
  27. controllers/Post.php +48 -18
  28. controllers/PostsList.php +17 -3
  29. controllers/Ranking.php +18 -10
  30. controllers/Research.php +30 -4
  31. controllers/SeoSettings.php +54 -9
  32. controllers/Sitemaps.php +22 -2
  33. controllers/Snippet.php +1 -1
  34. core/BlockAssistant.php +1 -1
  35. core/BlockConnect.php +1 -3
  36. core/BlockFeatures.php +602 -3
  37. core/BlockJorney.php +1 -1
  38. core/BlockKnowledgeBase.php +1 -1
  39. core/BlockSearch.php +1 -1
  40. core/BlockStats.php +3 -7
  41. core/BlockToolbar.php +0 -2
  42. core/Blocklogin.php +9 -0
  43. languages/squirrly-seo-cs_CZ.mo +0 -0
  44. languages/squirrly-seo-cs_CZ.po +1263 -12022
  45. languages/squirrly-seo-de_DE.mo +0 -0
  46. languages/squirrly-seo-de_DE.po +3957 -3450
  47. languages/squirrly-seo-ro_RO.mo +0 -0
  48. languages/squirrly-seo-ro_RO.po +541 -319
classes/ActionController.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
 
3
  /**
4
  * Set the ajax action and call for wordpress
@@ -42,26 +43,12 @@ class SQ_Classes_ActionController extends SQ_Classes_FrontController {
42
  * @return void
43
  */
44
  public function hookHead() {
45
- echo '<script>
46
- var sqQuery = {
47
- "adminurl": "' . admin_url() . '",
48
- "ajaxurl": "' . admin_url('admin-ajax.php') . '",
49
- "adminposturl": "' . admin_url('post.php') . '",
50
- "adminlisturl": "' . admin_url('edit.php') . '",
51
- "nonce": "' . wp_create_nonce(_SQ_NONCE_ID_) . '"
52
- }
53
- </script>';
54
  }
55
 
56
  public function hookFronthead() {
57
  if (SQ_Classes_Helpers_Tools::isFrontAdmin()) {
58
- echo '<script>
59
- var sqQuery = {
60
- "adminurl": "' . admin_url() . '",
61
- "ajaxurl": "' . admin_url('admin-ajax.php') . '",
62
- "nonce": "' . wp_create_nonce(_SQ_NONCE_ID_) . '"
63
- }
64
- </script>';
65
  }
66
  }
67
 
1
  <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  /**
5
  * Set the ajax action and call for wordpress
43
  * @return void
44
  */
45
  public function hookHead() {
46
+ echo '<script>var sqQuery = {"adminurl": "' . admin_url() . '","ajaxurl": "' . admin_url('admin-ajax.php') . '","adminposturl": "' . admin_url('post.php') . '","adminlisturl": "' . admin_url('edit.php') . '","nonce": "' . wp_create_nonce(_SQ_NONCE_ID_) . '"}</script>';
 
 
 
 
 
 
 
 
47
  }
48
 
49
  public function hookFronthead() {
50
  if (SQ_Classes_Helpers_Tools::isFrontAdmin()) {
51
+ echo '<script>var sqQuery = {"adminurl": "' . admin_url() . '","ajaxurl": "' . admin_url('admin-ajax.php') . '","nonce": "' . wp_create_nonce(_SQ_NONCE_ID_) . '"}</script>';
 
 
 
 
 
 
52
  }
53
  }
54
 
classes/BlockController.php CHANGED
@@ -42,15 +42,13 @@ class SQ_Classes_BlockController {
42
  //get the class path
43
  $class = SQ_Classes_ObjController::getClassPath($this->name);
44
 
45
- if ($this->flush) {
46
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia($class['name']);
47
-
48
- echo (string)$this->getView($class['name']);
49
- } else {
50
- return (string)$this->getView($class['name']);
51
  }
52
 
53
- return '';
 
 
54
  }
55
 
56
  /**
42
  //get the class path
43
  $class = SQ_Classes_ObjController::getClassPath($this->name);
44
 
45
+ if (!$this->flush) {
46
+ return $this->getView($class['name']);
 
 
 
 
47
  }
48
 
49
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia($class['name']);
50
+ echo (string)$this->getView($class['name']);
51
+
52
  }
53
 
54
  /**
classes/DisplayController.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
 
3
  /**
4
  * The class handles the theme part in WP
1
  <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  /**
5
  * The class handles the theme part in WP
classes/Error.php CHANGED
@@ -1,6 +1,5 @@
1
  <?php
2
-
3
- defined('ABSPATH') || exit;
4
 
5
  class SQ_Classes_Error extends SQ_Classes_FrontController {
6
 
1
  <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
 
3
 
4
  class SQ_Classes_Error extends SQ_Classes_FrontController {
5
 
classes/FrontController.php CHANGED
@@ -57,15 +57,13 @@ class SQ_Classes_FrontController {
57
  public function init() {
58
  $class = SQ_Classes_ObjController::getClassPath($this->name);
59
 
60
- if ($this->flush) {
61
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia($class['name']);
62
-
63
- echo (string)$this->getView($class['name']);
64
- } else {
65
- return (string)$this->getView($class['name']);
66
  }
67
 
68
- return '';
 
 
69
  }
70
 
71
  /**
57
  public function init() {
58
  $class = SQ_Classes_ObjController::getClassPath($this->name);
59
 
60
+ if (!$this->flush) {
61
+ return $this->getView($class['name']);
 
 
 
 
62
  }
63
 
64
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia($class['name']);
65
+ echo $this->getView($class['name']);
66
+
67
  }
68
 
69
  /**
classes/HookController.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
 
3
  /**
4
  * The class handles the actions in WP
1
  <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  /**
5
  * The class handles the actions in WP
classes/ObjController.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
 
3
  /**
4
  * The class creates object for plugin classes
1
  <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  /**
5
  * The class creates object for plugin classes
classes/RemoteController.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
 
3
  class SQ_Classes_RemoteController {
4
 
@@ -15,12 +16,19 @@ class SQ_Classes_RemoteController {
15
  public static function apiCall($module, $args = array(), $options = array()) {
16
  $parameters = "";
17
 
 
 
 
 
 
 
 
18
  //predefined options
19
  $options = array_merge(
20
  array(
21
  'method' => self::$apimethod,
22
  'sslverify' => SQ_CHECK_SSL,
23
- 'timeout' => 15,
24
  'headers' => array(
25
  'USER-TOKEN' => SQ_Classes_Helpers_Tools::getOption('sq_api'),
26
  'USER-URL' => apply_filters('sq_homeurl', get_bloginfo('url')),
@@ -86,11 +94,7 @@ class SQ_Classes_RemoteController {
86
  * @return string
87
  */
88
  public static function getMySquirrlyLink($path) {
89
- if (SQ_Classes_Helpers_Tools::getMenuVisible('show_panel') && current_user_can('sq_manage_settings')) {
90
- return _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Helpers_Tools::getOption('sq_api') . '&user_url=' . apply_filters('sq_homeurl', get_bloginfo('url')) . '&redirect_to=' . _SQ_DASH_URL_ . 'user/' . $path;
91
- } else {
92
- return _SQ_DASH_URL_;
93
- }
94
  }
95
 
96
  /**
@@ -175,6 +179,9 @@ class SQ_Classes_RemoteController {
175
  return (new WP_Error('api_error', $json->error));
176
  }
177
 
 
 
 
178
  return $json;
179
  }
180
 
@@ -195,6 +202,9 @@ class SQ_Classes_RemoteController {
195
  return (new WP_Error('api_error', 'no_data'));
196
  }
197
 
 
 
 
198
  if (!empty($json->data)) {
199
  return $json->data;
200
  }
@@ -219,6 +229,9 @@ class SQ_Classes_RemoteController {
219
  return (new WP_Error('api_error', 'no_data'));
220
  }
221
 
 
 
 
222
  if (!empty($json->data)) {
223
  return $json->data;
224
  }
@@ -253,6 +266,10 @@ class SQ_Classes_RemoteController {
253
  public static function checkin($args = array()) {
254
  self::$apimethod = 'get'; //call method
255
 
 
 
 
 
256
  $json = json_decode(self::apiCall('api/user/checkin', $args));
257
 
258
  if (isset($json->error) && $json->error <> '') {
@@ -289,6 +306,7 @@ class SQ_Classes_RemoteController {
289
  SQ_Classes_Helpers_Tools::saveOptions('connect', $connect);
290
  }
291
 
 
292
  return $json->data;
293
  }
294
 
@@ -318,76 +336,32 @@ class SQ_Classes_RemoteController {
318
 
319
  /**
320
  * Get the API stats for this blog
321
- * @return array
 
322
  */
323
  public static function getStats() {
324
  self::$apimethod = 'get'; //call method
325
 
326
- $args = $stats = array();
327
- if ($json = json_decode(self::apiCall('api/user/stats', $args))) {
328
-
329
- if (isset($json->error) && $json->error <> '') {
330
- self::connect(); //connect the website
331
 
332
- return (new WP_Error('api_error', $json->error));
333
- } elseif (!isset($json->data)) {
334
- return (new WP_Error('api_error', 'no_data'));
335
- }
336
 
337
- if (!isset($json->data)) {
338
- return (new WP_Error('api_error', 'no_data'));
339
- }
 
 
340
 
341
- $data = $json->data;
342
- if (isset($data->optimized_articles) && isset($data->average_optimization) && isset($data->kr_research) && isset($data->kr_in_briefcase)
343
- && isset($data->ranked_top) && isset($data->audits_made)) {
344
-
345
-
346
- //Get last month articles
347
- $stats['all_articles'] = array();
348
- $stats['all_articles']['value'] = ((int)$data->optimized_articles);
349
- $stats['all_articles']['text'] = esc_html__("Articles optimized so far", _SQ_PLUGIN_NAME_);
350
- $stats['all_articles']['link'] = SQ_Classes_Helpers_Tools::getAdminUrl('sq_assistant', 'assistant');
351
- $stats['all_articles']['linktext'] = esc_html__("add post", _SQ_PLUGIN_NAME_);
352
-
353
- //Get last month articles
354
- $stats['avg_articles'] = array();
355
- $stats['avg_articles']['value'] = ((int)$data->average_optimization);
356
- $stats['avg_articles']['text'] = esc_html__("Average optimization", _SQ_PLUGIN_NAME_);
357
- $stats['avg_articles']['link'] = SQ_Classes_Helpers_Tools::getAdminUrl('sq_assistant');
358
- $stats['avg_articles']['linktext'] = esc_html__("add post", _SQ_PLUGIN_NAME_);
359
-
360
- //Get all keyword researched
361
- $stats['all_researches'] = array();
362
- $stats['all_researches']['value'] = (int)$data->kr_research;
363
- $stats['all_researches']['text'] = esc_html__("Keyword Researches", _SQ_PLUGIN_NAME_);
364
- $stats['all_researches']['link'] = SQ_Classes_Helpers_Tools::getAdminUrl('sq_research');
365
- $stats['all_researches']['linktext'] = esc_html__("do research", _SQ_PLUGIN_NAME_);
366
-
367
- //Get all keywords from briefcase
368
- $stats['all_briefcase'] = array();
369
- $stats['all_briefcase']['value'] = (int)$data->kr_in_briefcase;
370
- $stats['all_briefcase']['text'] = esc_html__("Keywords stored in Squirrly Briefcase", _SQ_PLUGIN_NAME_);
371
- $stats['all_briefcase']['link'] = SQ_Classes_Helpers_Tools::getAdminUrl('sq_research', 'briefcase');
372
- $stats['all_briefcase']['linktext'] = esc_html__("add keyword", _SQ_PLUGIN_NAME_);
373
-
374
- //Get the top 100 ranking
375
- $stats['top_ranking'] = array();
376
- $stats['top_ranking']['value'] = (int)$data->ranked_top;
377
- $stats['top_ranking']['text'] = esc_html__("Pages ranking in top 100 Google", _SQ_PLUGIN_NAME_);
378
- $stats['top_ranking']['link'] = SQ_Classes_Helpers_Tools::getAdminUrl('sq_rankings');
379
- $stats['top_ranking']['linktext'] = esc_html__("see rankings", _SQ_PLUGIN_NAME_);
380
-
381
- //Get last month audits
382
- $stats['lm_audit'] = array();
383
- $stats['lm_audit']['value'] = (int)$data->audits_made;
384
- $stats['lm_audit']['text'] = esc_html__("SEO Audits", _SQ_PLUGIN_NAME_);
385
- $stats['lm_audit']['link'] = SQ_Classes_Helpers_Tools::getAdminUrl('sq_audits');
386
- $stats['lm_audit']['linktext'] = esc_html__("see audits", _SQ_PLUGIN_NAME_);
387
- }
388
  }
389
 
390
- return $stats;
 
391
  }
392
 
393
  /**
@@ -434,6 +408,29 @@ class SQ_Classes_RemoteController {
434
 
435
 
436
  /******************************** BRIEFCASE *********************/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
437
  public static function getBriefcase($args = array()) {
438
  self::$apimethod = 'get'; //call method
439
 
@@ -455,6 +452,9 @@ class SQ_Classes_RemoteController {
455
  public static function addBriefcaseKeyword($args = array()) {
456
  self::$apimethod = 'post'; //call method
457
 
 
 
 
458
  $json = json_decode(self::apiCall('api/briefcase/add', $args));
459
 
460
  if (isset($json->error) && $json->error <> '') {
@@ -480,14 +480,15 @@ class SQ_Classes_RemoteController {
480
  return false;
481
  }
482
 
483
- public static function getBriefcaseStats($args = array()) {
484
- self::$apimethod = 'get'; //call method
485
 
486
- $json = json_decode(self::apiCall('api/briefcase/stats', $args));
 
487
 
488
- if (isset($json->error) && $json->error <> '') {
489
- self::connect(); //connect the website
490
 
 
491
  return (new WP_Error('api_error', $json->error));
492
  } elseif (!isset($json->data)) {
493
  return (new WP_Error('api_error', 'no_data'));
@@ -500,10 +501,13 @@ class SQ_Classes_RemoteController {
500
  return false;
501
  }
502
 
503
- public static function saveBriefcaseKeywordLabel($args = array()) {
504
  self::$apimethod = 'post'; //call method
505
 
506
- $json = json_decode(self::apiCall('api/briefcase/label/keyword', $args));
 
 
 
507
 
508
  if (isset($json->error) && $json->error <> '') {
509
  return (new WP_Error('api_error', $json->error));
@@ -518,11 +522,13 @@ class SQ_Classes_RemoteController {
518
  return false;
519
  }
520
 
521
-
522
- public static function addBriefcaseLabel($args = array()) {
523
  self::$apimethod = 'post'; //call method
524
 
525
- $json = json_decode(self::apiCall('api/briefcase/label/add', $args));
 
 
 
526
 
527
  if (isset($json->error) && $json->error <> '') {
528
  return (new WP_Error('api_error', $json->error));
@@ -537,10 +543,10 @@ class SQ_Classes_RemoteController {
537
  return false;
538
  }
539
 
540
- public static function saveBriefcaseLabel($args = array()) {
541
  self::$apimethod = 'post'; //call method
542
 
543
- $json = json_decode(self::apiCall('api/briefcase/label/save', $args));
544
 
545
  if (isset($json->error) && $json->error <> '') {
546
  return (new WP_Error('api_error', $json->error));
@@ -555,10 +561,10 @@ class SQ_Classes_RemoteController {
555
  return false;
556
  }
557
 
558
- public static function removeBriefcaseLabel($args = array()) {
559
  self::$apimethod = 'post'; //call method
560
 
561
- $json = json_decode(self::apiCall('api/briefcase/label/delete', $args));
562
 
563
  if (isset($json->error) && $json->error <> '') {
564
  return (new WP_Error('api_error', $json->error));
@@ -573,6 +579,7 @@ class SQ_Classes_RemoteController {
573
  return false;
574
  }
575
 
 
576
  /******************************** KEYWORD RESEARCH ****************/
577
 
578
  /**
@@ -625,6 +632,10 @@ class SQ_Classes_RemoteController {
625
  public static function setKRSuggestion($args = array()) {
626
  self::$apimethod = 'post'; //call method
627
 
 
 
 
 
628
  $json = json_decode(self::apiCall('api/kr/suggestion', $args));
629
 
630
  if (isset($json->error) && $json->error <> '') {
@@ -737,6 +748,9 @@ class SQ_Classes_RemoteController {
737
  public static function savePost($args = array()) {
738
  self::$apimethod = 'post'; //call method
739
 
 
 
 
740
  $json = json_decode(self::apiCall('api/posts/update', $args, ['timeout' => 5]));
741
 
742
  if (isset($json->error) && $json->error <> '') {
@@ -1050,6 +1064,9 @@ class SQ_Classes_RemoteController {
1050
  return (new WP_Error('api_error', 'no_data'));
1051
  }
1052
 
 
 
 
1053
  if (!empty($json->data)) {
1054
  return $json->data;
1055
  }
@@ -1092,6 +1109,9 @@ class SQ_Classes_RemoteController {
1092
  return (new WP_Error('api_error', 'no_data'));
1093
  }
1094
 
 
 
 
1095
  if (!empty($json->data)) {
1096
  return $json->data;
1097
  }
@@ -1267,14 +1287,15 @@ class SQ_Classes_RemoteController {
1267
  public static function getFacebookApi($args) {
1268
  self::$apimethod = 'get'; //call method
1269
 
1270
- if ($json = json_decode(self::apiCall('api/tools/facebook', $args))) {
1271
 
1272
- if (isset($json->error) && $json->error <> '') {
1273
- return (new WP_Error('api_error', $json->error));
1274
- } elseif (!isset($json->data)) {
1275
- return (new WP_Error('api_error', 'no_data'));
1276
- }
1277
 
 
1278
  return $json->data;
1279
  }
1280
 
@@ -1292,6 +1313,7 @@ class SQ_Classes_RemoteController {
1292
  $metas = json_decode(wp_json_encode(SQ_Classes_Helpers_Tools::getOption('sq_metas')));
1293
  $sq_postID = (isset($post->ID) ? $post->ID : 0);
1294
 
 
1295
  if (SQ_Classes_Helpers_Tools::isPluginInstalled('elementor/elementor.php')) {
1296
  if (SQ_Classes_Helpers_Tools::getOption('sq_sla_frontend')) {
1297
  $referer = get_post_meta($sq_postID, '_sq_sla', true);
@@ -1319,6 +1341,7 @@ class SQ_Classes_RemoteController {
1319
  prevNonce: "' . wp_create_nonce('post_preview_' . $sq_postID) . '",
1320
  __keyword: "' . esc_html__('Keyword:', _SQ_PLUGIN_NAME_) . '",
1321
  __date: "' . esc_html__('date', _SQ_PLUGIN_NAME_) . '",
 
1322
  __saved: "' . esc_html__('Saved!', _SQ_PLUGIN_NAME_) . '",
1323
  __readit: "' . esc_html__('Read it!', _SQ_PLUGIN_NAME_) . '",
1324
  __insertit: "' . esc_html__('Insert it!', _SQ_PLUGIN_NAME_) . '",
@@ -1345,8 +1368,8 @@ class SQ_Classes_RemoteController {
1345
  __orusesynonyms: "' . esc_html__('or use synonyms', _SQ_PLUGIN_NAME_) . '",
1346
  __addmorewords: "' . esc_html__('add %s more word(s)', _SQ_PLUGIN_NAME_) . '",
1347
  __removewords: "' . esc_html__('or remove %s word(s)', _SQ_PLUGIN_NAME_) . '",
1348
- __addmorekeywords: "' . esc_html__('add %s more keyword(s)', _SQ_PLUGIN_NAME_) . '",
1349
- __addminimumwords: "' . esc_html__('write %s more words to start calculating', _SQ_PLUGIN_NAME_) . '",
1350
  __add_to_briefcase: "' . esc_html__('Add to Briefcase', _SQ_PLUGIN_NAME_) . '",
1351
  __add_keyword_briefcase: "' . esc_html__('Add Keyword to Briefcase', _SQ_PLUGIN_NAME_) . '",
1352
  __usekeyword: "' . esc_html__('Select', _SQ_PLUGIN_NAME_) . '",
@@ -1354,8 +1377,8 @@ class SQ_Classes_RemoteController {
1354
  __frontend_optimized: "' . esc_html__('You’ve already used the Live Assistant to optimize this post when creating it in your Page Builder. Please go back and resume your optimization work there.', _SQ_PLUGIN_NAME_) . '",
1355
  };
1356
  $.sq_params = {
1357
- max_length_title: '.(int)$metas->title_maxlength.',
1358
- max_length_description: '.(int)$metas->description_maxlength.',
1359
  };
1360
  })(jQuery);
1361
  </script>';
1
  <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  class SQ_Classes_RemoteController {
5
 
16
  public static function apiCall($module, $args = array(), $options = array()) {
17
  $parameters = "";
18
 
19
+ //Don't make API calls without the token unless it's login or register
20
+ if (!SQ_Classes_Helpers_Tools::getOption('sq_api')) {
21
+ if (!in_array($module, array('api/user/login', 'api/user/register'))) {
22
+ return '';
23
+ }
24
+ }
25
+
26
  //predefined options
27
  $options = array_merge(
28
  array(
29
  'method' => self::$apimethod,
30
  'sslverify' => SQ_CHECK_SSL,
31
+ 'timeout' => 20,
32
  'headers' => array(
33
  'USER-TOKEN' => SQ_Classes_Helpers_Tools::getOption('sq_api'),
34
  'USER-URL' => apply_filters('sq_homeurl', get_bloginfo('url')),
94
  * @return string
95
  */
96
  public static function getMySquirrlyLink($path) {
97
+ return apply_filters('sq_cloudmenu', _SQ_DASH_URL_, $path);
 
 
 
 
98
  }
99
 
100
  /**
179
  return (new WP_Error('api_error', $json->error));
180
  }
181
 
182
+ //Refresh the checkin on login
183
+ delete_transient('sq_checkin');
184
+
185
  return $json;
186
  }
187
 
202
  return (new WP_Error('api_error', 'no_data'));
203
  }
204
 
205
+ //Refresh the checkin on login
206
+ delete_transient('sq_checkin');
207
+
208
  if (!empty($json->data)) {
209
  return $json->data;
210
  }
229
  return (new WP_Error('api_error', 'no_data'));
230
  }
231
 
232
+ //Refresh the checkin on login
233
+ delete_transient('sq_checkin');
234
+
235
  if (!empty($json->data)) {
236
  return $json->data;
237
  }
266
  public static function checkin($args = array()) {
267
  self::$apimethod = 'get'; //call method
268
 
269
+ if (get_transient('sq_checkin')) {
270
+ return get_transient('sq_checkin');
271
+ }
272
+
273
  $json = json_decode(self::apiCall('api/user/checkin', $args));
274
 
275
  if (isset($json->error) && $json->error <> '') {
306
  SQ_Classes_Helpers_Tools::saveOptions('connect', $connect);
307
  }
308
 
309
+ set_transient('sq_checkin', $json->data, 60);
310
  return $json->data;
311
  }
312
 
336
 
337
  /**
338
  * Get the API stats for this blog
339
+ *
340
+ * @return array|WP_Error|false
341
  */
342
  public static function getStats() {
343
  self::$apimethod = 'get'; //call method
344
 
345
+ if (get_transient('sq_stats')) {
346
+ return get_transient('sq_stats');
347
+ }
 
 
348
 
349
+ $args = array();
350
+ $json = json_decode(self::apiCall('api/user/stats', $args));
 
 
351
 
352
+ if (isset($json->error) && $json->error <> '') {
353
+ return (new WP_Error('api_error', $json->error));
354
+ } elseif (!isset($json->data)) {
355
+ return (new WP_Error('api_error', 'no_data'));
356
+ }
357
 
358
+ if (!empty($json->data)) {
359
+ set_transient('sq_stats', $json->data, 60);
360
+ return $json->data;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
  }
362
 
363
+ return false;
364
+
365
  }
366
 
367
  /**
408
 
409
 
410
  /******************************** BRIEFCASE *********************/
411
+ public static function getBriefcaseStats($args = array()) {
412
+ self::$apimethod = 'get'; //call method
413
+
414
+ if (get_transient('sq_briefcase_stats')) {
415
+ return get_transient('sq_briefcase_stats');
416
+ }
417
+
418
+ $json = json_decode(self::apiCall('api/briefcase/stats', $args));
419
+
420
+ if (isset($json->error) && $json->error <> '') {
421
+ return (new WP_Error('api_error', $json->error));
422
+ } elseif (!isset($json->data)) {
423
+ return (new WP_Error('api_error', 'no_data'));
424
+ }
425
+
426
+ if (!empty($json->data)) {
427
+ set_transient('sq_briefcase_stats', $json->data, 60);
428
+ return $json->data;
429
+ }
430
+
431
+ return false;
432
+ }
433
+
434
  public static function getBriefcase($args = array()) {
435
  self::$apimethod = 'get'; //call method
436
 
452
  public static function addBriefcaseKeyword($args = array()) {
453
  self::$apimethod = 'post'; //call method
454
 
455
+ //clear the briefcase stats
456
+ delete_transient('sq_briefcase_stats');
457
+
458
  $json = json_decode(self::apiCall('api/briefcase/add', $args));
459
 
460
  if (isset($json->error) && $json->error <> '') {
480
  return false;
481
  }
482
 
483
+ public static function saveBriefcaseKeywordLabel($args = array()) {
484
+ self::$apimethod = 'post'; //call method
485
 
486
+ //clear the briefcase stats
487
+ delete_transient('sq_briefcase_stats');
488
 
489
+ $json = json_decode(self::apiCall('api/briefcase/label/keyword', $args));
 
490
 
491
+ if (isset($json->error) && $json->error <> '') {
492
  return (new WP_Error('api_error', $json->error));
493
  } elseif (!isset($json->data)) {
494
  return (new WP_Error('api_error', 'no_data'));
501
  return false;
502
  }
503
 
504
+ public static function addBriefcaseLabel($args = array()) {
505
  self::$apimethod = 'post'; //call method
506
 
507
+ //clear the briefcase stats
508
+ delete_transient('sq_briefcase_stats');
509
+
510
+ $json = json_decode(self::apiCall('api/briefcase/label/add', $args));
511
 
512
  if (isset($json->error) && $json->error <> '') {
513
  return (new WP_Error('api_error', $json->error));
522
  return false;
523
  }
524
 
525
+ public static function saveBriefcaseLabel($args = array()) {
 
526
  self::$apimethod = 'post'; //call method
527
 
528
+ //clear the briefcase stats
529
+ delete_transient('sq_briefcase_stats');
530
+
531
+ $json = json_decode(self::apiCall('api/briefcase/label/save', $args));
532
 
533
  if (isset($json->error) && $json->error <> '') {
534
  return (new WP_Error('api_error', $json->error));
543
  return false;
544
  }
545
 
546
+ public static function removeBriefcaseLabel($args = array()) {
547
  self::$apimethod = 'post'; //call method
548
 
549
+ $json = json_decode(self::apiCall('api/briefcase/label/delete', $args));
550
 
551
  if (isset($json->error) && $json->error <> '') {
552
  return (new WP_Error('api_error', $json->error));
561
  return false;
562
  }
563
 
564
+ public static function saveBriefcaseMainKeyword($args = array()) {
565
  self::$apimethod = 'post'; //call method
566
 
567
+ $json = json_decode(self::apiCall('api/briefcase/main', $args));
568
 
569
  if (isset($json->error) && $json->error <> '') {
570
  return (new WP_Error('api_error', $json->error));
579
  return false;
580
  }
581
 
582
+
583
  /******************************** KEYWORD RESEARCH ****************/
584
 
585
  /**
632
  public static function setKRSuggestion($args = array()) {
633
  self::$apimethod = 'post'; //call method
634
 
635
+ //clear the briefcase stats
636
+ delete_transient('sq_stats');
637
+ delete_transient('sq_briefcase_stats');
638
+
639
  $json = json_decode(self::apiCall('api/kr/suggestion', $args));
640
 
641
  if (isset($json->error) && $json->error <> '') {
748
  public static function savePost($args = array()) {
749
  self::$apimethod = 'post'; //call method
750
 
751
+ //clear the briefcase stats
752
+ delete_transient('sq_stats');
753
+
754
  $json = json_decode(self::apiCall('api/posts/update', $args, ['timeout' => 5]));
755
 
756
  if (isset($json->error) && $json->error <> '') {
1064
  return (new WP_Error('api_error', 'no_data'));
1065
  }
1066
 
1067
+ //Refresh the checkin on login
1068
+ delete_transient('sq_checkin');
1069
+
1070
  if (!empty($json->data)) {
1071
  return $json->data;
1072
  }
1109
  return (new WP_Error('api_error', 'no_data'));
1110
  }
1111
 
1112
+ //Refresh the checkin on login
1113
+ delete_transient('sq_checkin');
1114
+
1115
  if (!empty($json->data)) {
1116
  return $json->data;
1117
  }
1287
  public static function getFacebookApi($args) {
1288
  self::$apimethod = 'get'; //call method
1289
 
1290
+ $json = json_decode(self::apiCall('api/tools/facebook', $args));
1291
 
1292
+ if (isset($json->error) && $json->error <> '') {
1293
+ return (new WP_Error('api_error', $json->error));
1294
+ } elseif (!isset($json->data)) {
1295
+ return (new WP_Error('api_error', 'no_data'));
1296
+ }
1297
 
1298
+ if (!empty($json->data)) {
1299
  return $json->data;
1300
  }
1301
 
1313
  $metas = json_decode(wp_json_encode(SQ_Classes_Helpers_Tools::getOption('sq_metas')));
1314
  $sq_postID = (isset($post->ID) ? $post->ID : 0);
1315
 
1316
+ //Load Squirrly Live Assistant for Elementor builder
1317
  if (SQ_Classes_Helpers_Tools::isPluginInstalled('elementor/elementor.php')) {
1318
  if (SQ_Classes_Helpers_Tools::getOption('sq_sla_frontend')) {
1319
  $referer = get_post_meta($sq_postID, '_sq_sla', true);
1341
  prevNonce: "' . wp_create_nonce('post_preview_' . $sq_postID) . '",
1342
  __keyword: "' . esc_html__('Keyword:', _SQ_PLUGIN_NAME_) . '",
1343
  __date: "' . esc_html__('date', _SQ_PLUGIN_NAME_) . '",
1344
+ __noconnection: "' . esc_html__("To load Squirrly Live Assistant and optimize this page, click to connect to Squirrly Data Cloud.", _SQ_PLUGIN_NAME_) . '",
1345
  __saved: "' . esc_html__('Saved!', _SQ_PLUGIN_NAME_) . '",
1346
  __readit: "' . esc_html__('Read it!', _SQ_PLUGIN_NAME_) . '",
1347
  __insertit: "' . esc_html__('Insert it!', _SQ_PLUGIN_NAME_) . '",
1368
  __orusesynonyms: "' . esc_html__('or use synonyms', _SQ_PLUGIN_NAME_) . '",
1369
  __addmorewords: "' . esc_html__('add %s more word(s)', _SQ_PLUGIN_NAME_) . '",
1370
  __removewords: "' . esc_html__('or remove %s word(s)', _SQ_PLUGIN_NAME_) . '",
1371
+ __addmorekeywords: "' . esc_html__('add the selected keyword %s more time(s) ', _SQ_PLUGIN_NAME_) . '",
1372
+ __addminimumwords: "' . esc_html__('write %s more words to start calculating', _SQ_PLUGIN_NAME_) . '",
1373
  __add_to_briefcase: "' . esc_html__('Add to Briefcase', _SQ_PLUGIN_NAME_) . '",
1374
  __add_keyword_briefcase: "' . esc_html__('Add Keyword to Briefcase', _SQ_PLUGIN_NAME_) . '",
1375
  __usekeyword: "' . esc_html__('Select', _SQ_PLUGIN_NAME_) . '",
1377
  __frontend_optimized: "' . esc_html__('You’ve already used the Live Assistant to optimize this post when creating it in your Page Builder. Please go back and resume your optimization work there.', _SQ_PLUGIN_NAME_) . '",
1378
  };
1379
  $.sq_params = {
1380
+ max_length_title: ' . (int)$metas->title_maxlength . ',
1381
+ max_length_description: ' . (int)$metas->description_maxlength . ',
1382
  };
1383
  })(jQuery);
1384
  </script>';
classes/helpers/DevKit.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
 
3
  class SQ_Classes_Helpers_DevKit {
4
 
@@ -17,6 +18,151 @@ class SQ_Classes_Helpers_DevKit {
17
  }
18
  }
19
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  }
21
 
22
  /**
@@ -41,10 +187,6 @@ class SQ_Classes_Helpers_DevKit {
41
  if (isset(self::$package['settings']) && !empty(SQ_Classes_Helpers_Tools::$options) && function_exists('array_replace_recursive')) {
42
  SQ_Classes_Helpers_Tools::$options = array_replace_recursive((array)SQ_Classes_Helpers_Tools::$options, (array)self::$package['settings']);
43
 
44
- if (isset(self::$package['name']) && self::$package['name'] <> '') {
45
- SQ_Classes_Helpers_Tools::$options['sq_devkit_name'] = self::$package['name'];
46
- }
47
-
48
  SQ_Classes_Helpers_Tools::saveOptions();
49
  unlink($package_file);
50
 
@@ -60,20 +202,18 @@ class SQ_Classes_Helpers_DevKit {
60
  return true;
61
  }
62
 
63
-
64
  /**
65
  * Change the plugin name
66
  * @param $string
67
  * @return mixed
68
  */
69
  public function changeString($string) {
70
- if (isset(self::$plugin['name']) && SQ_Classes_Helpers_Tools::getOption('sq_devkit_name') <> '') {
71
- return str_replace(self::$plugin['name'], SQ_Classes_Helpers_Tools::getOption('sq_devkit_name'), $string);
72
  }
73
  return $string;
74
  }
75
 
76
-
77
  //Get the package info in case of custom details
78
  public function getPackageInfo($key) {
79
  if (isset(self::$package[$key])) {
1
  <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  class SQ_Classes_Helpers_DevKit {
5
 
18
  }
19
  }
20
  }
21
+
22
+ //Hook DevKit options
23
+ add_filter('admin_head', array($this, 'hookHead'));
24
+ add_filter('sq_menu', array($this, 'manageMenu'));
25
+ add_filter('sq_features', array($this, 'manageFeatures'));
26
+ add_filter('sq_logo', array($this, 'getCustomLogo'));
27
+ add_filter('sq_name', array($this, 'getCustomName'));
28
+ add_filter('sq_menu_name', array($this, 'getCustomMenuName'));
29
+ add_filter('sq_audit_success_task', array($this, 'getCustomAuditSuccessTask'));
30
+ add_filter('sq_audit_fail_task', array($this, 'getCustomAuditFailTask'));
31
+
32
+ }
33
+
34
+ /**
35
+ * Customize the Audit task
36
+ * @param $task
37
+ * @return mixed
38
+ */
39
+ public function getCustomAuditSuccessTask($task){
40
+
41
+ if(SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_success')) {
42
+ if ($customTask = SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_success')) {
43
+ foreach ($customTask as $key => $value) {
44
+ if ($value <> ''|| $value === false) {
45
+ $task->$key = stripslashes($value);
46
+ }
47
+ }
48
+ }
49
+ }
50
+
51
+ return $task;
52
+ }
53
+
54
+ /**
55
+ * Customize the Audit task
56
+ * @param $task
57
+ * @return mixed
58
+ */
59
+ public function getCustomAuditFailTask($task){
60
+
61
+ if(SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_fail')) {
62
+ if ($customTask = SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_fail')) {
63
+ foreach ($customTask as $key => $value) {
64
+ if ($value <> ''|| $value === false) {
65
+ $task->$key = stripslashes($value);
66
+ }
67
+ }
68
+ }
69
+ }
70
+
71
+ return $task;
72
+ }
73
+
74
+ /**
75
+ * Hook the head
76
+ */
77
+ public function hookHead() {
78
+ //Hide the ads
79
+ if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_ads')) {
80
+ echo '<style>.sq_offer {display: none !important;}</style>';
81
+ }
82
+
83
+ //Dev Kit images
84
+ if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
85
+ 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>';
86
+ }
87
+ }
88
+
89
+ /**
90
+ * Change the Squirrly SEO logo in DevKit
91
+ * @param $logo
92
+ * @return mixed
93
+ */
94
+ public function getCustomLogo($logo) {
95
+
96
+ if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
97
+ $logo = SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo');
98
+ }
99
+
100
+ return $logo;
101
+ }
102
+
103
+ /**
104
+ * Get Plugin Custom Name
105
+ * @param $name
106
+ * @return string
107
+ */
108
+ public function getCustomName($name) {
109
+
110
+ if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_name')) {
111
+ $name = SQ_Classes_Helpers_Tools::getOption('sq_devkit_name');
112
+ }
113
+
114
+ return $name;
115
+ }
116
+
117
+ /**
118
+ * Get Plugin Custom Menu Name
119
+ * @param $name
120
+ * @return string
121
+ */
122
+ public function getCustomMenuName($name) {
123
+
124
+ if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_menu_name')) {
125
+ $name = SQ_Classes_Helpers_Tools::getOption('sq_devkit_menu_name');
126
+ }
127
+
128
+ return $name;
129
+ }
130
+
131
+ //Change the features
132
+ public function manageFeatures($features){
133
+ if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_panel')) {
134
+ unset($features[0]); //remove the Cloud App features
135
+ }
136
+
137
+ return $features;
138
+ }
139
+
140
+ /**
141
+ * Manage the menu visibility
142
+ */
143
+ public function manageMenu($menu) {
144
+ if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_tutorial')) {
145
+ $menu['sq_onboarding']['leftmenu'] = false;
146
+ $menu['sq_onboarding']['topmenu'] = false;
147
+ }
148
+ if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_audit')) {
149
+ $menu['sq_audits']['leftmenu'] = false;
150
+ $menu['sq_audits']['topmenu'] = false;
151
+ }
152
+ if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_rankings')) {
153
+ $menu['sq_rankings']['leftmenu'] = false;
154
+ $menu['sq_rankings']['topmenu'] = false;
155
+ }
156
+ if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_focuspages')) {
157
+ $menu['sq_focuspages']['leftmenu'] = false;
158
+ $menu['sq_focuspages']['topmenu'] = false;
159
+ }
160
+ if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_account_info')) {
161
+ $menu['sq_account']['leftmenu'] = false;
162
+ $menu['sq_account']['topmenu'] = false;
163
+ }
164
+
165
+ return $menu;
166
  }
167
 
168
  /**
187
  if (isset(self::$package['settings']) && !empty(SQ_Classes_Helpers_Tools::$options) && function_exists('array_replace_recursive')) {
188
  SQ_Classes_Helpers_Tools::$options = array_replace_recursive((array)SQ_Classes_Helpers_Tools::$options, (array)self::$package['settings']);
189
 
 
 
 
 
190
  SQ_Classes_Helpers_Tools::saveOptions();
191
  unlink($package_file);
192
 
202
  return true;
203
  }
204
 
 
205
  /**
206
  * Change the plugin name
207
  * @param $string
208
  * @return mixed
209
  */
210
  public function changeString($string) {
211
+ if (isset(self::$plugin['name'])) {
212
+ return str_replace(self::$plugin['name'], apply_filters('sq_name', self::$plugin['name']), $string);
213
  }
214
  return $string;
215
  }
216
 
 
217
  //Get the package info in case of custom details
218
  public function getPackageInfo($key) {
219
  if (isset(self::$package[$key])) {
classes/helpers/Sanitize.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
 
3
  class SQ_Classes_Helpers_Sanitize {
4
  /**
@@ -312,6 +313,56 @@ class SQ_Classes_Helpers_Sanitize {
312
  return $code;
313
  }
314
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  /**
316
  * Check the Alexa code saved at settings
317
  *
1
  <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  class SQ_Classes_Helpers_Sanitize {
5
  /**
313
  return $code;
314
  }
315
 
316
+ /**
317
+ * Check the Baidu code saved at settings
318
+ *
319
+ * @return string
320
+ */
321
+ public static function checkBaiduWTCode($code) {
322
+ if ($code <> '') {
323
+ $code = stripslashes($code);
324
+
325
+
326
+ if (strpos($code, 'content') !== false) {
327
+ preg_match('/content\\s*=\\s*[\"]([^\"]+)[\"]/i', $code, $result);
328
+ if (isset($result[1]) && !empty($result[1])) $code = $result[1];
329
+ }
330
+
331
+ if (strpos($code, '"') !== false) {
332
+ preg_match('/[\"]([^\"]+)[\"]/i', $code, $result);
333
+ if (isset($result[1]) && !empty($result[1])) $code = $result[1];
334
+ }
335
+
336
+ if ($code == '') SQ_Classes_Error::setError(esc_html__("The code for Baidu is incorrect.", _SQ_PLUGIN_NAME_));
337
+ }
338
+ return $code;
339
+ }
340
+
341
+ /**
342
+ * Check the Yandex code saved at settings
343
+ *
344
+ * @return string
345
+ */
346
+ public static function checkYandexWTCode($code) {
347
+ if ($code <> '') {
348
+ $code = stripslashes($code);
349
+
350
+
351
+ if (strpos($code, 'content') !== false) {
352
+ preg_match('/content\\s*=\\s*[\"]([^\"]+)[\"]/i', $code, $result);
353
+ if (isset($result[1]) && !empty($result[1])) $code = $result[1];
354
+ }
355
+
356
+ if (strpos($code, '"') !== false) {
357
+ preg_match('/[\"]([^\"]+)[\"]/i', $code, $result);
358
+ if (isset($result[1]) && !empty($result[1])) $code = $result[1];
359
+ }
360
+
361
+ if ($code == '') SQ_Classes_Error::setError(esc_html__("The code for Yandex is incorrect.", _SQ_PLUGIN_NAME_));
362
+ }
363
+ return $code;
364
+ }
365
+
366
  /**
367
  * Check the Alexa code saved at settings
368
  *
classes/helpers/Tools.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
 
3
  /**
4
  * Handles the parameters and url
@@ -8,7 +9,7 @@
8
  class SQ_Classes_Helpers_Tools {
9
 
10
  /** @var array Options, User Metas, Package and Plugin details */
11
- public static $options, $usermeta = array();
12
 
13
  public function __construct() {
14
  self::$options = $this->getOptions();
@@ -62,8 +63,7 @@ class SQ_Classes_Helpers_Tools {
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
@@ -127,26 +127,29 @@ class SQ_Classes_Helpers_Tools {
127
  'sq_offer' => false,
128
  'sq_alert_overview' => true,
129
  'sq_alert_journey' => true,
130
- // dev kit
131
- 'sq_devkit_logo' => false,
132
- 'sq_devkit_name' => false,
133
  //Advanced settings
134
  'sq_seoexpert' => 0,
135
  //later buffer load
136
  'sq_laterload' => 0,
137
  'sq_audit_email' => '',
 
138
  //SEO Journey
139
  'sq_seojourney' => 0,
140
  'sq_seojourney_congrats' => 1,
141
- 'sq_onboarding' => 0,
142
  'sq_menu_visited' => array(),
 
143
  //minify Squirrly Metas
144
  'sq_load_css' => 1,
145
  'sq_minify' => 0,
 
146
  //Settings Assistant
147
  'sq_assistant' => 1,
148
  'sq_complete_uninstall' => 0,
149
 
 
 
 
 
150
  //Live Assistant
151
  'sq_sla' => 1,
152
  'sq_sla_frontend' => 1,
@@ -155,25 +158,104 @@ class SQ_Classes_Helpers_Tools {
155
  'sq_keyword_help' => 1,
156
  'sq_local_images' => 1,
157
  'sq_img_licence' => 1,
 
158
 
159
  //JsonLD
160
  'sq_auto_jsonld' => 1,
161
  'sq_jsonld_type' => 'Organization',
 
162
  'sq_jsonld_breadcrumbs' => 1,
163
  'sq_jsonld_woocommerce' => 1,
164
  'sq_jsonld_clearcode' => 0,
165
  'sq_jsonld_product_defaults' => 1,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  'sq_jsonld' => array(
167
  'Organization' => array(
168
  'name' => '',
169
- 'logo' => '',
170
- 'telephone' => '',
171
- 'contactType' => '',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  'description' => ''
173
  ),
174
  'Person' => array(
175
  'name' => '',
176
- 'logo' => '',
 
 
 
177
  'telephone' => '',
178
  'jobTitle' => '',
179
  'description' => ''
@@ -188,7 +270,6 @@ class SQ_Classes_Helpers_Tools {
188
  ),
189
  'sq_sitemap_perpage' => 200,
190
  'sq_sitemap_frequency' => 'weekly',
191
- 'sq_url_fix' => 1,
192
  'sq_sitemap_combinelangs' => 0,
193
  'sq_sitemap' => array(
194
  'sitemap' => array('sitemap.xml', 1),
@@ -220,26 +301,30 @@ class SQ_Classes_Helpers_Tools {
220
  //Metas
221
  'sq_use' => 1,
222
  'sq_auto_metas' => 1,
 
223
  'sq_auto_title' => 1,
224
  'sq_auto_description' => 1,
225
  'sq_auto_keywords' => 1,
226
  'sq_keywordtag' => 0,
227
  'sq_auto_canonical' => 1,
228
- 'sq_auto_dublincore' => 1,
229
  'sq_auto_feed' => 0,
230
  'sq_auto_noindex' => 1,
231
  'sq_use_frontend' => 1,
232
  'sq_attachment_redirect' => 0,
233
  'sq_permalink_redirect' => 1,
 
 
 
234
  'sq_metas' => array(
235
  'title_maxlength' => 75,
236
  'description_maxlength' => 320,
237
  'og_title_maxlength' => 75,
238
- 'og_description_maxlength' => 110,
239
  'tw_title_maxlength' => 75,
240
  'tw_description_maxlength' => 280,
241
  'jsonld_title_maxlength' => 75,
242
- 'jsonld_description_maxlength' => 110,
243
  ),
244
 
245
  //favicon
@@ -250,16 +335,19 @@ class SQ_Classes_Helpers_Tools {
250
  //Ranking Option
251
  'sq_google_country' => 'com',
252
  'sq_google_language' => 'en',
 
253
  'sq_google_serpsperhour' => 500,
254
  'connect' => array(
255
  'google_analytics' => 0,
256
  'google_search_console' => 0,
257
  ),
258
 
259
- //pages visited
260
- 'sq_dashboard' => 0,
261
- 'sq_analytics' => 0,
262
-
 
 
263
  //menu restrictions
264
  'menu' => array(
265
  'show_account_info' => 1,
@@ -268,6 +356,7 @@ class SQ_Classes_Helpers_Tools {
268
  'show_audit' => 1,
269
  'show_rankings' => 1,
270
  'show_focuspages' => 1,
 
271
  'show_ads' => 1,
272
  ),
273
 
@@ -295,8 +384,9 @@ class SQ_Classes_Helpers_Tools {
295
  ),
296
 
297
  //Webmasters and Tracking
298
- 'sq_auto_amp' => 0,
299
  'sq_auto_tracking' => 1,
 
300
  'sq_tracking_logged_users' => 1,
301
  'sq_auto_webmasters' => 1,
302
  'sq_analytics_google_js' => 'analytics',
@@ -306,8 +396,11 @@ class SQ_Classes_Helpers_Tools {
306
  'facebook_pixel' => "",
307
 
308
  'bing_wt' => "",
 
 
309
  'pinterest_verify' => "",
310
  'alexa_verify' => "",
 
311
  ),
312
 
313
  //Patterns
@@ -321,6 +414,7 @@ class SQ_Classes_Helpers_Tools {
321
  'noindex' => 0,
322
  'nofollow' => 0,
323
  'og_type' => 'website',
 
324
  'do_metas' => 1,
325
  'do_sitemap' => 1,
326
  'do_jsonld' => 1,
@@ -338,7 +432,8 @@ class SQ_Classes_Helpers_Tools {
338
  'description' => '{{excerpt}}',
339
  'noindex' => 0,
340
  'nofollow' => 0,
341
- 'og_type' => 'newsarticle',
 
342
  'do_metas' => 1,
343
  'do_sitemap' => 1,
344
  'do_jsonld' => 1,
@@ -357,6 +452,7 @@ class SQ_Classes_Helpers_Tools {
357
  'noindex' => 0,
358
  'nofollow' => 0,
359
  'og_type' => 'website',
 
360
  'do_metas' => 1,
361
  'do_sitemap' => 1,
362
  'do_jsonld' => 1,
@@ -367,32 +463,34 @@ class SQ_Classes_Helpers_Tools {
367
  'do_fpixel' => 1,
368
  'do_redirects' => 1,
369
  ),
370
- 'category' => array(
371
  'protected' => 1,
372
  'sep' => '|',
373
- 'title' => '{{category}} {{page}} {{sep}} {{sitename}}',
374
- 'description' => '{{category_description}}',
375
  'noindex' => 0,
376
  'nofollow' => 0,
377
- 'og_type' => 'website',
 
378
  'do_metas' => 1,
379
  'do_sitemap' => 1,
380
- 'do_jsonld' => 0,
381
  'do_pattern' => 1,
382
  'do_og' => 1,
383
  'do_twc' => 1,
384
  'do_analytics' => 1,
385
  'do_fpixel' => 1,
386
- 'do_redirects' => 0,
387
  ),
388
- 'tag' => array(
389
  'protected' => 1,
390
  'sep' => '|',
391
- 'title' => '{{tag}} {{page}} {{sep}} {{sitename}}',
392
- 'description' => '{{excerpt}}',
393
  'noindex' => 0,
394
  'nofollow' => 0,
395
  'og_type' => 'website',
 
396
  'do_metas' => 1,
397
  'do_sitemap' => 1,
398
  'do_jsonld' => 0,
@@ -403,17 +501,18 @@ class SQ_Classes_Helpers_Tools {
403
  'do_fpixel' => 1,
404
  'do_redirects' => 0,
405
  ),
406
- 'tax-post_format' => array(
407
  'protected' => 1,
408
  'sep' => '|',
409
- 'title' => '{{term_title}} ' . esc_html__("Format", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
410
  'description' => '{{excerpt}}',
411
  'noindex' => 0,
412
  'nofollow' => 0,
413
  'og_type' => 'website',
 
414
  'do_metas' => 1,
415
  'do_sitemap' => 1,
416
- 'do_jsonld' => 1,
417
  'do_pattern' => 1,
418
  'do_og' => 1,
419
  'do_twc' => 1,
@@ -421,7 +520,7 @@ class SQ_Classes_Helpers_Tools {
421
  'do_fpixel' => 1,
422
  'do_redirects' => 0,
423
  ),
424
- 'tax-category' => array(
425
  'protected' => 1,
426
  'sep' => '|',
427
  'title' => '{{term_title}} ' . esc_html__("Category", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
@@ -429,6 +528,7 @@ class SQ_Classes_Helpers_Tools {
429
  'noindex' => 0,
430
  'nofollow' => 0,
431
  'og_type' => 'website',
 
432
  'do_metas' => 1,
433
  'do_sitemap' => 1,
434
  'do_jsonld' => 1,
@@ -439,7 +539,7 @@ class SQ_Classes_Helpers_Tools {
439
  'do_fpixel' => 1,
440
  'do_redirects' => 0,
441
  ),
442
- 'tax-post_tag' => array(
443
  'protected' => 1,
444
  'sep' => '|',
445
  'title' => '{{term_title}} ' . esc_html__("Tag", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
@@ -447,6 +547,7 @@ class SQ_Classes_Helpers_Tools {
447
  'noindex' => 0,
448
  'nofollow' => 0,
449
  'og_type' => 'website',
 
450
  'do_metas' => 1,
451
  'do_sitemap' => 1,
452
  'do_jsonld' => 1,
@@ -457,14 +558,15 @@ class SQ_Classes_Helpers_Tools {
457
  'do_fpixel' => 1,
458
  'do_redirects' => 0,
459
  ),
460
- 'tax-product_cat' => array(
461
  'protected' => 1,
462
  'sep' => '|',
463
- 'title' => '{{term_title}} ' . esc_html__("Category", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
464
  'description' => '{{excerpt}}',
465
  'noindex' => 0,
466
  'nofollow' => 0,
467
  'og_type' => 'website',
 
468
  'do_metas' => 1,
469
  'do_sitemap' => 1,
470
  'do_jsonld' => 1,
@@ -475,14 +577,15 @@ class SQ_Classes_Helpers_Tools {
475
  'do_fpixel' => 1,
476
  'do_redirects' => 0,
477
  ),
478
- 'tax-product_tag' => array(
479
  'protected' => 1,
480
  'sep' => '|',
481
- 'title' => '{{term_title}} ' . esc_html__("Tag", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
482
  'description' => '{{excerpt}}',
483
  'noindex' => 0,
484
  'nofollow' => 0,
485
  'og_type' => 'website',
 
486
  'do_metas' => 1,
487
  'do_sitemap' => 1,
488
  'do_jsonld' => 1,
@@ -493,14 +596,15 @@ class SQ_Classes_Helpers_Tools {
493
  'do_fpixel' => 1,
494
  'do_redirects' => 0,
495
  ),
496
- 'tax-product_shipping_class' => array(
497
  'protected' => 1,
498
  'sep' => '|',
499
- 'title' => '{{term_title}} ' . esc_html__("Shipping Option", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
500
  'description' => '{{excerpt}}',
501
  'noindex' => 0,
502
  'nofollow' => 0,
503
  'og_type' => 'website',
 
504
  'do_metas' => 1,
505
  'do_sitemap' => 1,
506
  'do_jsonld' => 1,
@@ -511,14 +615,15 @@ class SQ_Classes_Helpers_Tools {
511
  'do_fpixel' => 1,
512
  'do_redirects' => 0,
513
  ),
514
- 'profile' => array(
515
  'protected' => 1,
516
  'sep' => '|',
517
- 'title' => '{{name}}, ' . esc_html__("Author at", _SQ_PLUGIN_NAME_) . ' {{sitename}} {{page}}',
518
  'description' => '{{excerpt}}',
519
  'noindex' => 0,
520
  'nofollow' => 0,
521
- 'og_type' => 'profile',
 
522
  'do_metas' => 1,
523
  'do_sitemap' => 1,
524
  'do_jsonld' => 1,
@@ -537,6 +642,7 @@ class SQ_Classes_Helpers_Tools {
537
  'noindex' => 0,
538
  'nofollow' => 0,
539
  'og_type' => 'website',
 
540
  'do_metas' => 1,
541
  'do_sitemap' => 1,
542
  'do_jsonld' => 1,
@@ -547,14 +653,15 @@ class SQ_Classes_Helpers_Tools {
547
  'do_fpixel' => 1,
548
  'do_redirects' => 0,
549
  ),
550
- 'product' => array(
551
  'protected' => 1,
552
  'sep' => '|',
553
- 'title' => '{{title}} {{page}} {{sep}} {{sitename}}',
554
  'description' => '{{excerpt}}',
555
  'noindex' => 0,
556
  'nofollow' => 0,
557
- 'og_type' => 'product',
 
558
  'do_metas' => 1,
559
  'do_sitemap' => 1,
560
  'do_jsonld' => 1,
@@ -563,7 +670,7 @@ class SQ_Classes_Helpers_Tools {
563
  'do_twc' => 1,
564
  'do_analytics' => 1,
565
  'do_fpixel' => 1,
566
- 'do_redirects' => 1,
567
  ),
568
  'archive' => array(
569
  'protected' => 1,
@@ -573,6 +680,7 @@ class SQ_Classes_Helpers_Tools {
573
  'noindex' => 0,
574
  'nofollow' => 0,
575
  'og_type' => 'website',
 
576
  'do_metas' => 1,
577
  'do_sitemap' => 1,
578
  'do_jsonld' => 1,
@@ -591,6 +699,7 @@ class SQ_Classes_Helpers_Tools {
591
  'noindex' => 1,
592
  'nofollow' => 0,
593
  'og_type' => 'website',
 
594
  'do_metas' => 1,
595
  'do_sitemap' => 0,
596
  'do_jsonld' => 1,
@@ -608,6 +717,7 @@ class SQ_Classes_Helpers_Tools {
608
  'noindex' => 0,
609
  'nofollow' => 0,
610
  'og_type' => 'website',
 
611
  'do_metas' => 1,
612
  'do_sitemap' => 1,
613
  'do_jsonld' => 1,
@@ -626,6 +736,7 @@ class SQ_Classes_Helpers_Tools {
626
  'noindex' => 1,
627
  'nofollow' => 1,
628
  'og_type' => 'website',
 
629
  'do_metas' => 1,
630
  'do_sitemap' => 0,
631
  'do_jsonld' => 0,
@@ -644,6 +755,7 @@ class SQ_Classes_Helpers_Tools {
644
  'noindex' => 0,
645
  'nofollow' => 0,
646
  'og_type' => 'website',
 
647
  'do_metas' => 1,
648
  'do_sitemap' => 1,
649
  'do_jsonld' => 1,
@@ -659,6 +771,35 @@ class SQ_Classes_Helpers_Tools {
659
  );
660
  $options = json_decode(get_option(SQ_OPTION), true);
661
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
662
  if ($action == 'reset') {
663
  $init['sq_api'] = $options['sq_api'];
664
  return $init;
@@ -789,7 +930,7 @@ class SQ_Classes_Helpers_Tools {
789
  }
790
  }
791
 
792
- return apply_filters('sq_menu_visible', self::$options['menu'][$key]);
793
 
794
  }
795
 
@@ -936,13 +1077,11 @@ class SQ_Classes_Helpers_Tools {
936
  load_plugin_textdomain(_SQ_PLUGIN_NAME_, false, _SQ_PLUGIN_NAME_ . '/languages/');
937
  }
938
 
939
-
940
  /**
941
  * Hook the activate process
942
  */
943
  public function sq_activate() {
944
  set_transient('sq_activate', true);
945
- set_transient('sq_rewrite', true);
946
  set_transient('sq_import', true);
947
  SQ_Classes_ObjController::getClass('SQ_Models_RoleManager')->addSQRoles();
948
  }
@@ -955,48 +1094,32 @@ class SQ_Classes_Helpers_Tools {
955
  SQ_Classes_ObjController::getClass('SQ_Models_RoleManager')->removeSQRoles();
956
  }
957
 
958
- /**
959
- * Triggered when a plugin update is made
960
- */
961
- public static function checkUpgrade($upgrader_object, $options) {
962
- // If an update has taken place and the updated type is plugins and the plugins element exists
963
- if ($options['action'] == 'update' && $options['type'] == 'plugin' && isset($options['plugins'])) {
964
- // Iterate through the plugins being updated and check if ours is there
965
- foreach ($options['plugins'] as $plugin) {
966
- if ($plugin == _SQ_PLUGIN_NAME_ . '/squirrly.php') {
967
- //Create Qss table if not exists
968
- SQ_Classes_ObjController::getClass('SQ_Models_Qss')->checkTableExists();
969
- }
970
- }
971
- }
972
- }
973
-
974
  /**
975
  * Empty the cache from other plugins
976
  */
977
  public static function emptyCache() {
978
  try {
979
  //////////////////////////////////////////////////////////////////////////////
980
- if ( function_exists( 'w3tc_pgcache_flush' ) ) {
981
  w3tc_pgcache_flush();
982
  }
983
 
984
- if ( function_exists( 'w3tc_minify_flush' ) ) {
985
  w3tc_minify_flush();
986
  }
987
- if ( function_exists( 'w3tc_dbcache_flush' ) ) {
988
  w3tc_dbcache_flush();
989
  }
990
- if ( function_exists( 'w3tc_objectcache_flush' ) ) {
991
  w3tc_objectcache_flush();
992
  }
993
  //////////////////////////////////////////////////////////////////////////////
994
 
995
- if ( function_exists( 'wp_cache_clear_cache' ) ) {
996
  wp_cache_clear_cache();
997
  }
998
 
999
- if ( function_exists( 'rocket_clean_domain' ) && function_exists( 'rocket_clean_minify' ) && function_exists( 'rocket_clean_cache_busting' ) ) {
1000
  // Remove all cache files
1001
  rocket_clean_domain();
1002
  rocket_clean_minify();
@@ -1004,43 +1127,43 @@ class SQ_Classes_Helpers_Tools {
1004
  }
1005
  //////////////////////////////////////////////////////////////////////////////
1006
 
1007
- if ( function_exists( 'apc_clear_cache' ) ) {
1008
  // Remove all apc if enabled
1009
  apc_clear_cache();
1010
  }
1011
  //////////////////////////////////////////////////////////////////////////////
1012
 
1013
- if ( class_exists( 'Cache_Enabler_Disk' ) && method_exists( 'Cache_Enabler_Disk', 'clear_cache' ) ) {
1014
  // clear disk cache
1015
  Cache_Enabler_Disk::clear_cache();
1016
  }
1017
  //////////////////////////////////////////////////////////////////////////////
1018
 
1019
- if ( class_exists( 'LiteSpeed_Cache' ) ) {
1020
  LiteSpeed_Cache::get_instance()->purge_all();
1021
  }
1022
  //////////////////////////////////////////////////////////////////////////////
1023
 
1024
- if ( self::isPluginInstalled( 'hummingbird-performance/wp-hummingbird.php' ) ) {
1025
- do_action( 'wphb_clear_page_cache' );
1026
  }
1027
  //////////////////////////////////////////////////////////////////////////////
1028
 
1029
- if ( class_exists( 'WpeCommon' ) ) {
1030
- if ( method_exists( 'WpeCommon', 'purge_memcached' ) ) {
1031
  WpeCommon::purge_memcached();
1032
  }
1033
- if ( method_exists( 'WpeCommon', 'clear_maxcdn_cache' ) ) {
1034
  WpeCommon::clear_maxcdn_cache();
1035
  }
1036
- if ( method_exists( 'WpeCommon', 'purge_varnish_cache' ) ) {
1037
  WpeCommon::purge_varnish_cache();
1038
  }
1039
  }
1040
  //////////////////////////////////////////////////////////////////////////////
1041
 
1042
- if ( self::isPluginInstalled( 'sg-cachepress/sg-cachepress.php' ) && class_exists( 'Supercacher' ) ) {
1043
- if ( method_exists( 'Supercacher', 'purge_cache' ) && method_exists( 'Supercacher', 'delete_assets' ) ) {
1044
  Supercacher::purge_cache();
1045
  Supercacher::delete_assets();
1046
  }
@@ -1048,39 +1171,34 @@ class SQ_Classes_Helpers_Tools {
1048
 
1049
  //Clear the fastest cache
1050
  global $wp_fastest_cache;
1051
- if ( isset( $wp_fastest_cache ) && method_exists( $wp_fastest_cache, 'deleteCache' ) ) {
1052
  $wp_fastest_cache->deleteCache();
1053
  }
1054
  //////////////////////////////////////////////////////////////////////////////
1055
- }catch (Exception $e){
1056
 
1057
  }
1058
  }
1059
 
1060
-
1061
  /**
1062
  * Check if a plugin is installed
1063
  * @param $name
1064
  * @return bool
1065
  */
1066
  public static function isPluginInstalled($name) {
1067
- switch ($name) {
1068
- case 'instapage':
1069
- return defined('INSTAPAGE_PLUGIN_PATH');
1070
- case 'quick-seo':
1071
- return defined('QSS_VERSION') && defined('_QSS_ROOT_DIR_');
1072
- case 'premium-seo-pack':
1073
- return defined('PSP_VERSION') && defined('_PSP_ROOT_DIR_');
1074
- default:
1075
- $plugins = (array)get_option('active_plugins', array());
1076
-
1077
- if (is_multisite()) {
1078
- $plugins = array_merge(array_values($plugins), array_keys(get_site_option('active_sitewide_plugins')));
1079
- }
1080
 
1081
- return in_array($name, $plugins, true);
 
 
 
1082
 
 
1083
  }
 
 
1084
  }
1085
 
1086
  /**
@@ -1116,6 +1234,34 @@ class SQ_Classes_Helpers_Tools {
1116
  return false;
1117
  }
1118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1119
  /**
1120
  * Get the admin url for the specific age
1121
  *
@@ -1158,35 +1304,35 @@ class SQ_Classes_Helpers_Tools {
1158
  // The WordPress filesystem.
1159
  global $wp_filesystem;
1160
 
1161
- if ( !$wp_filesystem || empty( $wp_filesystem ) ) {
1162
  $credentials = array();
1163
 
1164
- if ( !defined( 'FS_METHOD' ) ) {
1165
- define( 'FS_METHOD', 'direct' );
1166
  }
1167
 
1168
- $method = defined( 'FS_METHOD' ) ? FS_METHOD : false;
1169
 
1170
- if ( 'ftpext' === $method ) {
1171
  // If defined, set it to that, Else, set to NULL.
1172
- $credentials['hostname'] = defined( 'FTP_HOST' ) ? preg_replace( '|\w+://|', '', FTP_HOST ) : null;
1173
- $credentials['username'] = defined( 'FTP_USER' ) ? FTP_USER : null;
1174
- $credentials['password'] = defined( 'FTP_PASS' ) ? FTP_PASS : null;
1175
 
1176
  // Set FTP port.
1177
- if ( strpos( $credentials['hostname'], ':' ) && null !== $credentials['hostname'] ) {
1178
- list( $credentials['hostname'], $credentials['port'] ) = explode( ':', $credentials['hostname'], 2 );
1179
- if ( !is_numeric( $credentials['port'] ) ) {
1180
- unset( $credentials['port'] );
1181
  }
1182
  } else {
1183
- unset( $credentials['port'] );
1184
  }
1185
 
1186
  // Set connection type.
1187
- if ( (defined( 'FTP_SSL' ) && FTP_SSL) && 'ftpext' === $method ) {
1188
  $credentials['connection_type'] = 'ftps';
1189
- } elseif ( !array_filter( $credentials ) ) {
1190
  $credentials['connection_type'] = null;
1191
  } else {
1192
  $credentials['connection_type'] = 'ftp';
@@ -1194,8 +1340,8 @@ class SQ_Classes_Helpers_Tools {
1194
  }
1195
 
1196
 
1197
- require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' );
1198
- WP_Filesystem( $credentials );
1199
  }
1200
 
1201
  return $wp_filesystem;
1
  <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  /**
5
  * Handles the parameters and url
9
  class SQ_Classes_Helpers_Tools {
10
 
11
  /** @var array Options, User Metas, Package and Plugin details */
12
+ public static $options, $usermeta, $allplugins = array();
13
 
14
  public function __construct() {
15
  self::$options = $this->getOptions();
63
  function hookInit() {
64
  //Load the languages pack
65
  $this->loadMultilanguage();
66
+
 
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
127
  'sq_offer' => false,
128
  'sq_alert_overview' => true,
129
  'sq_alert_journey' => true,
 
 
 
130
  //Advanced settings
131
  'sq_seoexpert' => 0,
132
  //later buffer load
133
  'sq_laterload' => 0,
134
  'sq_audit_email' => '',
135
+
136
  //SEO Journey
137
  'sq_seojourney' => 0,
138
  'sq_seojourney_congrats' => 1,
 
139
  'sq_menu_visited' => array(),
140
+
141
  //minify Squirrly Metas
142
  'sq_load_css' => 1,
143
  'sq_minify' => 0,
144
+
145
  //Settings Assistant
146
  'sq_assistant' => 1,
147
  'sq_complete_uninstall' => 0,
148
 
149
+ //Onboarding
150
+ 'sq_onboarding' => 0,
151
+ 'sq_onboarding_data' => array(),
152
+
153
  //Live Assistant
154
  'sq_sla' => 1,
155
  'sq_sla_frontend' => 1,
158
  'sq_keyword_help' => 1,
159
  'sq_local_images' => 1,
160
  'sq_img_licence' => 1,
161
+ 'sq_sla_social_fetch' => 1,
162
 
163
  //JsonLD
164
  'sq_auto_jsonld' => 1,
165
  'sq_jsonld_type' => 'Organization',
166
+ 'sq_jsonld_global_person' => 0,
167
  'sq_jsonld_breadcrumbs' => 1,
168
  'sq_jsonld_woocommerce' => 1,
169
  'sq_jsonld_clearcode' => 0,
170
  'sq_jsonld_product_defaults' => 1,
171
+ 'sq_jsonld_local' => array(
172
+ 'priceRange' => '',
173
+ 'servesCuisine' => '',
174
+ 'menu' => '',
175
+ 'acceptsReservations' => '',
176
+ 'openingHoursSpecification' => array(
177
+ array(
178
+ '@type' => 'OpeningHoursSpecification',
179
+ 'dayOfWeek' => 'Monday',
180
+ 'opens' => '',
181
+ 'closes' => '',
182
+ ),
183
+ array(
184
+ '@type' => 'OpeningHoursSpecification',
185
+ 'dayOfWeek' => 'Tuesday',
186
+ 'opens' => '',
187
+ 'closes' => '',
188
+ ),
189
+ array(
190
+ '@type' => 'OpeningHoursSpecification',
191
+ 'dayOfWeek' => 'Wednesday',
192
+ 'opens' => '',
193
+ 'closes' => '',
194
+ ),
195
+ array(
196
+ '@type' => 'OpeningHoursSpecification',
197
+ 'dayOfWeek' => 'Thursday',
198
+ 'opens' => '',
199
+ 'closes' => '',
200
+ ),
201
+ array(
202
+ '@type' => 'OpeningHoursSpecification',
203
+ 'dayOfWeek' => 'Friday',
204
+ 'opens' => '',
205
+ 'closes' => '',
206
+ ),
207
+ array(
208
+ '@type' => 'OpeningHoursSpecification',
209
+ 'dayOfWeek' => 'Saturday',
210
+ 'opens' => '',
211
+ 'closes' => '',
212
+ ),
213
+ array(
214
+ '@type' => 'OpeningHoursSpecification',
215
+ 'dayOfWeek' => 'Sunday',
216
+ 'opens' => '',
217
+ 'closes' => '',
218
+ ),
219
+
220
+ ),
221
+ ),
222
  'sq_jsonld' => array(
223
  'Organization' => array(
224
  'name' => '',
225
+ 'logo' => array(
226
+ '@type' => 'ImageObject',
227
+ 'url' => '',
228
+ ),
229
+ 'contactPoint' => array(
230
+ '@type' => 'ContactPoint',
231
+ 'telephone' => '',
232
+ 'contactType' => '',
233
+ ),
234
+ 'address' => array(
235
+ '@type' => 'PostalAddress',
236
+ 'streetAddress' => '',
237
+ 'addressLocality' => '',
238
+ 'postalCode' => '',
239
+ 'addressCountry' => '',
240
+ ),
241
+ 'place' => array(
242
+ '@type' => 'Place',
243
+ 'geo' => array(
244
+ '@type' => 'GeoCoordinates',
245
+ 'latitude' => '',
246
+ 'longitude' => '',
247
+ ),
248
+
249
+ ),
250
+
251
  'description' => ''
252
  ),
253
  'Person' => array(
254
  'name' => '',
255
+ 'image' => array(
256
+ '@type' => 'ImageObject',
257
+ 'url' => '',
258
+ ),
259
  'telephone' => '',
260
  'jobTitle' => '',
261
  'description' => ''
270
  ),
271
  'sq_sitemap_perpage' => 200,
272
  'sq_sitemap_frequency' => 'weekly',
 
273
  'sq_sitemap_combinelangs' => 0,
274
  'sq_sitemap' => array(
275
  'sitemap' => array('sitemap.xml', 1),
301
  //Metas
302
  'sq_use' => 1,
303
  'sq_auto_metas' => 1,
304
+ 'sq_auto_links' => 0,
305
  'sq_auto_title' => 1,
306
  'sq_auto_description' => 1,
307
  'sq_auto_keywords' => 1,
308
  'sq_keywordtag' => 0,
309
  'sq_auto_canonical' => 1,
310
+ 'sq_auto_dublincore' => 0,
311
  'sq_auto_feed' => 0,
312
  'sq_auto_noindex' => 1,
313
  'sq_use_frontend' => 1,
314
  'sq_attachment_redirect' => 0,
315
  'sq_permalink_redirect' => 1,
316
+ 'sq_external_nofollow' => 1,
317
+ 'sq_external_exception' => array(),
318
+ 'sq_external_blank' => 1,
319
  'sq_metas' => array(
320
  'title_maxlength' => 75,
321
  'description_maxlength' => 320,
322
  'og_title_maxlength' => 75,
323
+ 'og_description_maxlength' => 200,
324
  'tw_title_maxlength' => 75,
325
  'tw_description_maxlength' => 280,
326
  'jsonld_title_maxlength' => 75,
327
+ 'jsonld_description_maxlength' => 320,
328
  ),
329
 
330
  //favicon
335
  //Ranking Option
336
  'sq_google_country' => 'com',
337
  'sq_google_language' => 'en',
338
+ 'sq_google_device' => 'desktop',
339
  'sq_google_serpsperhour' => 500,
340
  'connect' => array(
341
  'google_analytics' => 0,
342
  'google_search_console' => 0,
343
  ),
344
 
345
+ // dev kit
346
+ 'sq_devkit_logo' => false,
347
+ 'sq_devkit_name' => false,
348
+ 'sq_devkit_menu_name' => false,
349
+ 'sq_devkit_audit_success' => false,
350
+ 'sq_devkit_audit_fail' => false,
351
  //menu restrictions
352
  'menu' => array(
353
  'show_account_info' => 1,
356
  'show_audit' => 1,
357
  'show_rankings' => 1,
358
  'show_focuspages' => 1,
359
+ 'show_seogoals' => 1,
360
  'show_ads' => 1,
361
  ),
362
 
384
  ),
385
 
386
  //Webmasters and Tracking
387
+ 'sq_auto_amp' => 1,
388
  'sq_auto_tracking' => 1,
389
+ 'sq_auto_pixels' => 1,
390
  'sq_tracking_logged_users' => 1,
391
  'sq_auto_webmasters' => 1,
392
  'sq_analytics_google_js' => 'analytics',
396
  'facebook_pixel' => "",
397
 
398
  'bing_wt' => "",
399
+ 'baidu_wt' => "",
400
+ 'yandex_wt' => "",
401
  'pinterest_verify' => "",
402
  'alexa_verify' => "",
403
+ 'norton_verify' => "",
404
  ),
405
 
406
  //Patterns
414
  'noindex' => 0,
415
  'nofollow' => 0,
416
  'og_type' => 'website',
417
+ 'jsonld_types' => array('website'),
418
  'do_metas' => 1,
419
  'do_sitemap' => 1,
420
  'do_jsonld' => 1,
432
  'description' => '{{excerpt}}',
433
  'noindex' => 0,
434
  'nofollow' => 0,
435
+ 'og_type' => 'article',
436
+ 'jsonld_types' => array('newsarticle'),
437
  'do_metas' => 1,
438
  'do_sitemap' => 1,
439
  'do_jsonld' => 1,
452
  'noindex' => 0,
453
  'nofollow' => 0,
454
  'og_type' => 'website',
455
+ 'jsonld_types' => array('website'),
456
  'do_metas' => 1,
457
  'do_sitemap' => 1,
458
  'do_jsonld' => 1,
463
  'do_fpixel' => 1,
464
  'do_redirects' => 1,
465
  ),
466
+ 'product' => array(
467
  'protected' => 1,
468
  'sep' => '|',
469
+ 'title' => '{{title}} {{page}} {{sep}} {{sitename}}',
470
+ 'description' => '{{excerpt}}',
471
  'noindex' => 0,
472
  'nofollow' => 0,
473
+ 'og_type' => 'product',
474
+ 'jsonld_types' => array('product'),
475
  'do_metas' => 1,
476
  'do_sitemap' => 1,
477
+ 'do_jsonld' => 1,
478
  'do_pattern' => 1,
479
  'do_og' => 1,
480
  'do_twc' => 1,
481
  'do_analytics' => 1,
482
  'do_fpixel' => 1,
483
+ 'do_redirects' => 1,
484
  ),
485
+ 'category' => array(
486
  'protected' => 1,
487
  'sep' => '|',
488
+ 'title' => '{{category}} {{page}} {{sep}} {{sitename}}',
489
+ 'description' => '{{category_description}}',
490
  'noindex' => 0,
491
  'nofollow' => 0,
492
  'og_type' => 'website',
493
+ 'jsonld_types' => array('website'),
494
  'do_metas' => 1,
495
  'do_sitemap' => 1,
496
  'do_jsonld' => 0,
501
  'do_fpixel' => 1,
502
  'do_redirects' => 0,
503
  ),
504
+ 'tag' => array(
505
  'protected' => 1,
506
  'sep' => '|',
507
+ 'title' => '{{tag}} {{page}} {{sep}} {{sitename}}',
508
  'description' => '{{excerpt}}',
509
  'noindex' => 0,
510
  'nofollow' => 0,
511
  'og_type' => 'website',
512
+ 'jsonld_types' => array('website'),
513
  'do_metas' => 1,
514
  'do_sitemap' => 1,
515
+ 'do_jsonld' => 0,
516
  'do_pattern' => 1,
517
  'do_og' => 1,
518
  'do_twc' => 1,
520
  'do_fpixel' => 1,
521
  'do_redirects' => 0,
522
  ),
523
+ 'tax-product_cat' => array(
524
  'protected' => 1,
525
  'sep' => '|',
526
  'title' => '{{term_title}} ' . esc_html__("Category", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
528
  'noindex' => 0,
529
  'nofollow' => 0,
530
  'og_type' => 'website',
531
+ 'jsonld_types' => array('website'),
532
  'do_metas' => 1,
533
  'do_sitemap' => 1,
534
  'do_jsonld' => 1,
539
  'do_fpixel' => 1,
540
  'do_redirects' => 0,
541
  ),
542
+ 'tax-product_tag' => array(
543
  'protected' => 1,
544
  'sep' => '|',
545
  'title' => '{{term_title}} ' . esc_html__("Tag", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
547
  'noindex' => 0,
548
  'nofollow' => 0,
549
  'og_type' => 'website',
550
+ 'jsonld_types' => array('website'),
551
  'do_metas' => 1,
552
  'do_sitemap' => 1,
553
  'do_jsonld' => 1,
558
  'do_fpixel' => 1,
559
  'do_redirects' => 0,
560
  ),
561
+ 'tax-post_format' => array(
562
  'protected' => 1,
563
  'sep' => '|',
564
+ 'title' => '{{term_title}} ' . esc_html__("Format", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
565
  'description' => '{{excerpt}}',
566
  'noindex' => 0,
567
  'nofollow' => 0,
568
  'og_type' => 'website',
569
+ 'jsonld_types' => array('website'),
570
  'do_metas' => 1,
571
  'do_sitemap' => 1,
572
  'do_jsonld' => 1,
577
  'do_fpixel' => 1,
578
  'do_redirects' => 0,
579
  ),
580
+ 'tax-category' => array(
581
  'protected' => 1,
582
  'sep' => '|',
583
+ 'title' => '{{term_title}} ' . esc_html__("Category", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
584
  'description' => '{{excerpt}}',
585
  'noindex' => 0,
586
  'nofollow' => 0,
587
  'og_type' => 'website',
588
+ 'jsonld_types' => array('website'),
589
  'do_metas' => 1,
590
  'do_sitemap' => 1,
591
  'do_jsonld' => 1,
596
  'do_fpixel' => 1,
597
  'do_redirects' => 0,
598
  ),
599
+ 'tax-post_tag' => array(
600
  'protected' => 1,
601
  'sep' => '|',
602
+ 'title' => '{{term_title}} ' . esc_html__("Tag", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
603
  'description' => '{{excerpt}}',
604
  'noindex' => 0,
605
  'nofollow' => 0,
606
  'og_type' => 'website',
607
+ 'jsonld_types' => array('website'),
608
  'do_metas' => 1,
609
  'do_sitemap' => 1,
610
  'do_jsonld' => 1,
615
  'do_fpixel' => 1,
616
  'do_redirects' => 0,
617
  ),
618
+ 'tax-product_shipping_class' => array(
619
  'protected' => 1,
620
  'sep' => '|',
621
+ 'title' => '{{term_title}} ' . esc_html__("Shipping Option", _SQ_PLUGIN_NAME_) . ' {{page}} {{sep}} {{sitename}}',
622
  'description' => '{{excerpt}}',
623
  'noindex' => 0,
624
  'nofollow' => 0,
625
+ 'og_type' => 'website',
626
+ 'jsonld_types' => array('website'),
627
  'do_metas' => 1,
628
  'do_sitemap' => 1,
629
  'do_jsonld' => 1,
642
  'noindex' => 0,
643
  'nofollow' => 0,
644
  'og_type' => 'website',
645
+ 'jsonld_types' => array('website'),
646
  'do_metas' => 1,
647
  'do_sitemap' => 1,
648
  'do_jsonld' => 1,
653
  'do_fpixel' => 1,
654
  'do_redirects' => 0,
655
  ),
656
+ 'profile' => array(
657
  'protected' => 1,
658
  'sep' => '|',
659
+ 'title' => '{{name}}, ' . esc_html__("Author at", _SQ_PLUGIN_NAME_) . ' {{sitename}} {{page}}',
660
  'description' => '{{excerpt}}',
661
  'noindex' => 0,
662
  'nofollow' => 0,
663
+ 'og_type' => 'profile',
664
+ 'jsonld_types' => array('profile'),
665
  'do_metas' => 1,
666
  'do_sitemap' => 1,
667
  'do_jsonld' => 1,
670
  'do_twc' => 1,
671
  'do_analytics' => 1,
672
  'do_fpixel' => 1,
673
+ 'do_redirects' => 0,
674
  ),
675
  'archive' => array(
676
  'protected' => 1,
680
  'noindex' => 0,
681
  'nofollow' => 0,
682
  'og_type' => 'website',
683
+ 'jsonld_types' => array('website'),
684
  'do_metas' => 1,
685
  'do_sitemap' => 1,
686
  'do_jsonld' => 1,
699
  'noindex' => 1,
700
  'nofollow' => 0,
701
  'og_type' => 'website',
702
+ 'jsonld_types' => array('website'),
703
  'do_metas' => 1,
704
  'do_sitemap' => 0,
705
  'do_jsonld' => 1,
717
  'noindex' => 0,
718
  'nofollow' => 0,
719
  'og_type' => 'website',
720
+ 'jsonld_types' => array('website'),
721
  'do_metas' => 1,
722
  'do_sitemap' => 1,
723
  'do_jsonld' => 1,
736
  'noindex' => 1,
737
  'nofollow' => 1,
738
  'og_type' => 'website',
739
+ 'jsonld_types' => array('website'),
740
  'do_metas' => 1,
741
  'do_sitemap' => 0,
742
  'do_jsonld' => 0,
755
  'noindex' => 0,
756
  'nofollow' => 0,
757
  'og_type' => 'website',
758
+ 'jsonld_types' => array('website'),
759
  'do_metas' => 1,
760
  'do_sitemap' => 1,
761
  'do_jsonld' => 1,
771
  );
772
  $options = json_decode(get_option(SQ_OPTION), true);
773
 
774
+ //Update the Json-LD for Organization Logo
775
+ if (isset($options['sq_jsonld']['Organization']['logo']) && !is_array($options['sq_jsonld']['Organization']['logo'])) {
776
+ $options['sq_jsonld']['Organization']['logo'] = array(
777
+ '@type' => 'ImageObject',
778
+ 'url' => $options['sq_jsonld']['Organization']['logo'],
779
+ );
780
+ }
781
+
782
+ if (isset($options['sq_jsonld']['Organization']['telephone']) && isset($options['sq_jsonld']['Organization']['contactType'])) {
783
+ $options['sq_jsonld']['Organization']['contactPoint'] = array(
784
+ '@type' => 'ContactPoint',
785
+ 'telephone' => $options['sq_jsonld']['Organization']['telephone'],
786
+ 'contactType' => $options['sq_jsonld']['Organization']['contactType']
787
+ );
788
+
789
+ unset($options['sq_jsonld']['Organization']['telephone']);
790
+ unset($options['sq_jsonld']['Organization']['contactType']);
791
+ }
792
+
793
+ //Update the Json-LD for Person Image
794
+ if (isset($options['sq_jsonld']['Person']['logo'])) {
795
+ $options['sq_jsonld']['Person']['image'] = array(
796
+ '@type' => 'ImageObject',
797
+ 'url' => $options['sq_jsonld']['Person']['logo'],
798
+ );
799
+
800
+ unset($options['sq_jsonld']['Person']['logo']);
801
+ }
802
+
803
  if ($action == 'reset') {
804
  $init['sq_api'] = $options['sq_api'];
805
  return $init;
930
  }
931
  }
932
 
933
+ return apply_filters('sq_menu_visible', self::$options['menu'][$key], $key);
934
 
935
  }
936
 
1077
  load_plugin_textdomain(_SQ_PLUGIN_NAME_, false, _SQ_PLUGIN_NAME_ . '/languages/');
1078
  }
1079
 
 
1080
  /**
1081
  * Hook the activate process
1082
  */
1083
  public function sq_activate() {
1084
  set_transient('sq_activate', true);
 
1085
  set_transient('sq_import', true);
1086
  SQ_Classes_ObjController::getClass('SQ_Models_RoleManager')->addSQRoles();
1087
  }
1094
  SQ_Classes_ObjController::getClass('SQ_Models_RoleManager')->removeSQRoles();
1095
  }
1096
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1097
  /**
1098
  * Empty the cache from other plugins
1099
  */
1100
  public static function emptyCache() {
1101
  try {
1102
  //////////////////////////////////////////////////////////////////////////////
1103
+ if (function_exists('w3tc_pgcache_flush')) {
1104
  w3tc_pgcache_flush();
1105
  }
1106
 
1107
+ if (function_exists('w3tc_minify_flush')) {
1108
  w3tc_minify_flush();
1109
  }
1110
+ if (function_exists('w3tc_dbcache_flush')) {
1111
  w3tc_dbcache_flush();
1112
  }
1113
+ if (function_exists('w3tc_objectcache_flush')) {
1114
  w3tc_objectcache_flush();
1115
  }
1116
  //////////////////////////////////////////////////////////////////////////////
1117
 
1118
+ if (function_exists('wp_cache_clear_cache')) {
1119
  wp_cache_clear_cache();
1120
  }
1121
 
1122
+ if (function_exists('rocket_clean_domain') && function_exists('rocket_clean_minify') && function_exists('rocket_clean_cache_busting')) {
1123
  // Remove all cache files
1124
  rocket_clean_domain();
1125
  rocket_clean_minify();
1127
  }
1128
  //////////////////////////////////////////////////////////////////////////////
1129
 
1130
+ if (function_exists('apc_clear_cache')) {
1131
  // Remove all apc if enabled
1132
  apc_clear_cache();
1133
  }
1134
  //////////////////////////////////////////////////////////////////////////////
1135
 
1136
+ if (class_exists('Cache_Enabler_Disk') && method_exists('Cache_Enabler_Disk', 'clear_cache')) {
1137
  // clear disk cache
1138
  Cache_Enabler_Disk::clear_cache();
1139
  }
1140
  //////////////////////////////////////////////////////////////////////////////
1141
 
1142
+ if (class_exists('LiteSpeed_Cache')) {
1143
  LiteSpeed_Cache::get_instance()->purge_all();
1144
  }
1145
  //////////////////////////////////////////////////////////////////////////////
1146
 
1147
+ if (self::isPluginInstalled('hummingbird-performance/wp-hummingbird.php')) {
1148
+ do_action('wphb_clear_page_cache');
1149
  }
1150
  //////////////////////////////////////////////////////////////////////////////
1151
 
1152
+ if (class_exists('WpeCommon')) {
1153
+ if (method_exists('WpeCommon', 'purge_memcached')) {
1154
  WpeCommon::purge_memcached();
1155
  }
1156
+ if (method_exists('WpeCommon', 'clear_maxcdn_cache')) {
1157
  WpeCommon::clear_maxcdn_cache();
1158
  }
1159
+ if (method_exists('WpeCommon', 'purge_varnish_cache')) {
1160
  WpeCommon::purge_varnish_cache();
1161
  }
1162
  }
1163
  //////////////////////////////////////////////////////////////////////////////
1164
 
1165
+ if (self::isPluginInstalled('sg-cachepress/sg-cachepress.php') && class_exists('Supercacher')) {
1166
+ if (method_exists('Supercacher', 'purge_cache') && method_exists('Supercacher', 'delete_assets')) {
1167
  Supercacher::purge_cache();
1168
  Supercacher::delete_assets();
1169
  }
1171
 
1172
  //Clear the fastest cache
1173
  global $wp_fastest_cache;
1174
+ if (isset($wp_fastest_cache) && method_exists($wp_fastest_cache, 'deleteCache')) {
1175
  $wp_fastest_cache->deleteCache();
1176
  }
1177
  //////////////////////////////////////////////////////////////////////////////
1178
+ } catch (Exception $e) {
1179
 
1180
  }
1181
  }
1182
 
 
1183
  /**
1184
  * Check if a plugin is installed
1185
  * @param $name
1186
  * @return bool
1187
  */
1188
  public static function isPluginInstalled($name) {
1189
+ if (empty(self::$allplugins)) {
1190
+ self::$allplugins = (array)get_option('active_plugins', array());
1191
+ }
 
 
 
 
 
 
 
 
 
 
1192
 
1193
+ if (!empty(self::$allplugins)) {
1194
+ if (is_multisite()) {
1195
+ self::$allplugins = array_merge(array_values(self::$allplugins), array_keys(get_site_option('active_sitewide_plugins')));
1196
+ }
1197
 
1198
+ return in_array($name, self::$allplugins, true);
1199
  }
1200
+
1201
+ return false;
1202
  }
1203
 
1204
  /**
1234
  return false;
1235
  }
1236
 
1237
+ /**
1238
+ * Check if it's an AMP Endpoint
1239
+ * @return bool|void
1240
+ */
1241
+ public static function isAMPEndpoint() {
1242
+ if (defined('AMPFORWP_AMP_QUERY_VAR')) {
1243
+ $url_path = trim(parse_url(add_query_arg(array()), PHP_URL_PATH), '/');
1244
+ $explode_path = explode('/', $url_path);
1245
+ if (AMPFORWP_AMP_QUERY_VAR === end($explode_path)) {
1246
+ return true;
1247
+ }
1248
+ }
1249
+
1250
+ if (function_exists('is_amp_endpoint')) {
1251
+ return is_amp_endpoint();
1252
+ }
1253
+
1254
+ if (function_exists('is_amp') && is_amp()) {
1255
+ return is_amp();
1256
+ }
1257
+
1258
+ if (function_exists('ampforwp_is_amp_endpoint')) {
1259
+ return ampforwp_is_amp_endpoint();
1260
+ }
1261
+
1262
+ return false;
1263
+ }
1264
+
1265
  /**
1266
  * Get the admin url for the specific age
1267
  *
1304
  // The WordPress filesystem.
1305
  global $wp_filesystem;
1306
 
1307
+ if (!$wp_filesystem || empty($wp_filesystem)) {
1308
  $credentials = array();
1309
 
1310
+ if (!defined('FS_METHOD')) {
1311
+ define('FS_METHOD', 'direct');
1312
  }
1313
 
1314
+ $method = defined('FS_METHOD') ? FS_METHOD : false;
1315
 
1316
+ if ('ftpext' === $method) {
1317
  // If defined, set it to that, Else, set to NULL.
1318
+ $credentials['hostname'] = defined('FTP_HOST') ? preg_replace('|\w+://|', '', FTP_HOST) : null;
1319
+ $credentials['username'] = defined('FTP_USER') ? FTP_USER : null;
1320
+ $credentials['password'] = defined('FTP_PASS') ? FTP_PASS : null;
1321
 
1322
  // Set FTP port.
1323
+ if (strpos($credentials['hostname'], ':') && null !== $credentials['hostname']) {
1324
+ list($credentials['hostname'], $credentials['port']) = explode(':', $credentials['hostname'], 2);
1325
+ if (!is_numeric($credentials['port'])) {
1326
+ unset($credentials['port']);
1327
  }
1328
  } else {
1329
+ unset($credentials['port']);
1330
  }
1331
 
1332
  // Set connection type.
1333
+ if ((defined('FTP_SSL') && FTP_SSL) && 'ftpext' === $method) {
1334
  $credentials['connection_type'] = 'ftps';
1335
+ } elseif (!array_filter($credentials)) {
1336
  $credentials['connection_type'] = null;
1337
  } else {
1338
  $credentials['connection_type'] = 'ftp';
1340
  }
1341
 
1342
 
1343
+ require_once wp_normalize_path(ABSPATH . '/wp-admin/includes/file.php');
1344
+ WP_Filesystem($credentials);
1345
  }
1346
 
1347
  return $wp_filesystem;
config.json CHANGED
@@ -121,6 +121,7 @@
121
  "sq_seosettings_bulkseo",
122
  "sq_seosettings_jsonld",
123
  "sq_seosettings_metas",
 
124
  "sq_seosettings_social",
125
  "sq_seosettings_tracking",
126
  "sq_seosettings_webmaster",
@@ -136,6 +137,8 @@
136
  "sq_seosettings_importall",
137
  "sq_seosettings_ga_revoke",
138
  "sq_seosettings_gsc_revoke",
 
 
139
  "sq_reinstall",
140
  "sq_rollback",
141
  "sq_alerts_close",
@@ -165,6 +168,7 @@
165
  "sq_briefcase_deletekeyword",
166
  "sq_briefcase_deletelabel",
167
  "sq_briefcase_deletefound",
 
168
  "sq_briefcase_backup",
169
  "sq_briefcase_restore",
170
  "sq_ajax_briefcase_doserp",
@@ -188,6 +192,7 @@
188
  "sq_auditpages_getaudit",
189
  "sq_audits_getpage",
190
  "sq_audits_addnew",
 
191
  "sq_audits_update",
192
  "sq_audits_delete"
193
  ]
@@ -240,7 +245,9 @@
240
  "name": "SQ_Controllers_Onboarding",
241
  "actions": {
242
  "action": [
243
- "sq_onboarding_commitment"
 
 
244
  ]
245
  },
246
  "admin": "1",
121
  "sq_seosettings_bulkseo",
122
  "sq_seosettings_jsonld",
123
  "sq_seosettings_metas",
124
+ "sq_seosettings_links",
125
  "sq_seosettings_social",
126
  "sq_seosettings_tracking",
127
  "sq_seosettings_webmaster",
137
  "sq_seosettings_importall",
138
  "sq_seosettings_ga_revoke",
139
  "sq_seosettings_gsc_revoke",
140
+ "sq_seosettings_gsc_check",
141
+ "sq_seosettings_ga_check",
142
  "sq_reinstall",
143
  "sq_rollback",
144
  "sq_alerts_close",
168
  "sq_briefcase_deletekeyword",
169
  "sq_briefcase_deletelabel",
170
  "sq_briefcase_deletefound",
171
+ "sq_briefcase_savemain",
172
  "sq_briefcase_backup",
173
  "sq_briefcase_restore",
174
  "sq_ajax_briefcase_doserp",
192
  "sq_auditpages_getaudit",
193
  "sq_audits_getpage",
194
  "sq_audits_addnew",
195
+ "sq_audits_page_update",
196
  "sq_audits_update",
197
  "sq_audits_delete"
198
  ]
245
  "name": "SQ_Controllers_Onboarding",
246
  "actions": {
247
  "action": [
248
+ "sq_onboarding_commitment",
249
+ "sq_onboading_checksite",
250
+ "sq_onboarding_settings"
251
  ]
252
  },
253
  "admin": "1",
config/config.php CHANGED
@@ -58,7 +58,8 @@ define('SQ_ALL_PATTERNS', wp_json_encode(array(
58
  '{{product_currency}}' => esc_html__("Adds the product price currency from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
59
  )));
60
 
61
- define('SQ_ALL_JSONLD_TYPES', wp_json_encode(array('website','profile','article','newsarticle','book','music','product','video')));
 
62
 
63
  define('SQ_ALL_SEP', wp_json_encode(array(
64
  'sc-dash' => '-',
58
  '{{product_currency}}' => esc_html__("Adds the product price currency from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
59
  )));
60
 
61
+ define('SQ_ALL_OG_TYPES', wp_json_encode(array('website','article','profile','book','music','video')));
62
+ define('SQ_ALL_JSONLD_TYPES', wp_json_encode(array('website','article','newsarticle','FAQ page','question','recipe','review','movie','video','local store','local restaurant','profile')));
63
 
64
  define('SQ_ALL_SEP', wp_json_encode(array(
65
  'sc-dash' => '-',
config/paths.php CHANGED
@@ -4,6 +4,7 @@ defined('ABSPATH') || die('Cheatin\' uh?');
4
  $currentDir = dirname(__FILE__);
5
 
6
  define('_SQ_NAME_', 'squirrly');
 
7
  define('_SQ_NAMESPACE_', 'SQ');
8
  define('_SQ_PLUGIN_NAME_', 'squirrly-seo'); //THIS LINE WILL BE CHANGED WITH THE USER SETTINGS
9
 
4
  $currentDir = dirname(__FILE__);
5
 
6
  define('_SQ_NAME_', 'squirrly');
7
+ define('_SQ_MENU_NAME_', 'Squirrly SEO');
8
  define('_SQ_NAMESPACE_', 'SQ');
9
  define('_SQ_PLUGIN_NAME_', 'squirrly-seo'); //THIS LINE WILL BE CHANGED WITH THE USER SETTINGS
10
 
controllers/Api.php CHANGED
@@ -35,16 +35,19 @@ class SQ_Controllers_Api extends SQ_Classes_FrontController {
35
  register_rest_route('save', '/squirrly/', array(
36
  'methods' => WP_REST_Server::EDITABLE,
37
  'callback' => array($this, 'savePost'),
 
38
  ));
39
 
40
  register_rest_route('test', '/squirrly/', array(
41
  'methods' => WP_REST_Server::EDITABLE,
42
  'callback' => array($this, 'testConnection'),
 
43
  ));
44
 
45
  register_rest_route('get', '/squirrly/', array(
46
  'methods' => WP_REST_Server::READABLE,
47
  'callback' => array($this, 'getData'),
 
48
  ));
49
  }
50
  }
35
  register_rest_route('save', '/squirrly/', array(
36
  'methods' => WP_REST_Server::EDITABLE,
37
  'callback' => array($this, 'savePost'),
38
+ 'permission_callback' => '__return_true'
39
  ));
40
 
41
  register_rest_route('test', '/squirrly/', array(
42
  'methods' => WP_REST_Server::EDITABLE,
43
  'callback' => array($this, 'testConnection'),
44
+ 'permission_callback' => '__return_true'
45
  ));
46
 
47
  register_rest_route('get', '/squirrly/', array(
48
  'methods' => WP_REST_Server::READABLE,
49
  'callback' => array($this, 'getData'),
50
+ 'permission_callback' => '__return_true'
51
  ));
52
  }
53
  }
controllers/Assistant.php CHANGED
@@ -7,6 +7,7 @@ class SQ_Controllers_Assistant extends SQ_Classes_FrontController {
7
  public $checkin;
8
 
9
  function init() {
 
10
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'assistant');
11
 
12
  if (method_exists($this, $tab)) {
@@ -21,6 +22,7 @@ class SQ_Controllers_Assistant extends SQ_Classes_FrontController {
21
  }else{
22
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
23
  }
 
24
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
25
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('datatables');
26
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('fontawesome');
7
  public $checkin;
8
 
9
  function init() {
10
+
11
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'assistant');
12
 
13
  if (method_exists($this, $tab)) {
22
  }else{
23
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
24
  }
25
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-select');
26
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
27
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('datatables');
28
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('fontawesome');
controllers/Audits.php CHANGED
@@ -16,8 +16,11 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController {
16
  public $limit = 10;
17
 
18
  function init() {
19
- //Clear the Scripts and Styles from other plugins
20
- SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->clearStyles();
 
 
 
21
 
22
  //Checkin to API V2
23
  $this->checkin = SQ_Classes_RemoteController::checkin();
@@ -291,6 +294,28 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController {
291
  SQ_Classes_Error::setError(esc_html__("Error! Could not find the audit page in your website.", _SQ_PLUGIN_NAME_) . " <br /> ");
292
  }
293
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294
  case 'sq_audits_update':
295
  if (!current_user_can('sq_manage_focuspages')) {
296
  return;
@@ -312,8 +337,8 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController {
312
  return;
313
  }
314
 
315
- if ($user_post_id = SQ_Classes_Helpers_Tools::getValue('id', false)) {
316
- SQ_Classes_RemoteController::deleteAuditPage(array('user_post_id' => $user_post_id));
317
  SQ_Classes_Error::setError(esc_html__("The audit page is deleted.", _SQ_PLUGIN_NAME_) . " <br /> ", 'success');
318
  } else {
319
  SQ_Classes_Error::setError(esc_html__("Invalid params!", _SQ_PLUGIN_NAME_) . " <br /> ");
16
  public $limit = 10;
17
 
18
  function init() {
19
+
20
+ if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
21
+ echo $this->getView('Errors/Connect');
22
+ return;
23
+ }
24
 
25
  //Checkin to API V2
26
  $this->checkin = SQ_Classes_RemoteController::checkin();
294
  SQ_Classes_Error::setError(esc_html__("Error! Could not find the audit page in your website.", _SQ_PLUGIN_NAME_) . " <br /> ");
295
  }
296
  break;
297
+ case 'sq_audits_page_update':
298
+ if (!current_user_can('sq_manage_focuspages')) {
299
+ return;
300
+ }
301
+
302
+ $post_id = (int)SQ_Classes_Helpers_Tools::getValue('post_id', 0);
303
+
304
+ if($post_id) {
305
+ $args = array();
306
+ $args['post_id'] = $post_id;
307
+
308
+ if ($auditpage = SQ_Classes_RemoteController::updateAudit($args)) {
309
+ if (!is_wp_error($auditpage)) {
310
+ SQ_Classes_Error::setMessage(esc_html__("Audit page sent for recheck. It may take a while so please be patient.", _SQ_PLUGIN_NAME_) . " <br /> ");
311
+ } else{
312
+ SQ_Classes_Error::setError(esc_html__("The page could not be sent for reaudit.", _SQ_PLUGIN_NAME_) . " <br /> ");
313
+ }
314
+ } else {
315
+ SQ_Classes_Error::setError(esc_html__("The page could not be sent for reaudit.", _SQ_PLUGIN_NAME_) . " <br /> ");
316
+ }
317
+ }
318
+ break;
319
  case 'sq_audits_update':
320
  if (!current_user_can('sq_manage_focuspages')) {
321
  return;
337
  return;
338
  }
339
 
340
+ if ($post_id = SQ_Classes_Helpers_Tools::getValue('id', false)) {
341
+ SQ_Classes_RemoteController::deleteAuditPage(array('user_post_id' => $post_id));
342
  SQ_Classes_Error::setError(esc_html__("The audit page is deleted.", _SQ_PLUGIN_NAME_) . " <br /> ", 'success');
343
  } else {
344
  SQ_Classes_Error::setError(esc_html__("Invalid params!", _SQ_PLUGIN_NAME_) . " <br /> ");
controllers/BulkSeo.php CHANGED
@@ -6,8 +6,6 @@ class SQ_Controllers_BulkSeo extends SQ_Classes_FrontController {
6
  public $pages = array();
7
 
8
  function init() {
9
- //Clear the Scripts and Styles from other plugins
10
- SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->clearStyles();
11
 
12
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'bulkseo');
13
 
6
  public $pages = array();
7
 
8
  function init() {
 
 
9
 
10
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'bulkseo');
11
 
controllers/Dashboard.php CHANGED
@@ -9,6 +9,7 @@ class SQ_Controllers_Dashboard extends SQ_Classes_FrontController {
9
 
10
 
11
  public function dashboard() {
 
12
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('dashboard');
13
  if (is_rtl()) {
14
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
9
 
10
 
11
  public function dashboard() {
12
+
13
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('dashboard');
14
  if (is_rtl()) {
15
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
controllers/Features.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
+
4
+ /**
5
+ * Features
6
+ */
7
+ class SQ_Controllers_Features extends SQ_Classes_FrontController {
8
+
9
+ public function init() {
10
+
11
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
12
+ if (is_rtl()) {
13
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('popper');
14
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap.rtl');
15
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
16
+ } else {
17
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
18
+ }
19
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('fontawesome');
20
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
21
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('global');
22
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('research');
23
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('navbar');
24
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('dashboard');
25
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('account');
26
+
27
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant');
28
+
29
+ parent::init();
30
+ }
31
+
32
+ }
controllers/FocusPages.php CHANGED
@@ -17,8 +17,11 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
17
  * @return mixed|void
18
  */
19
  function init() {
20
- //Clear the Scripts and Styles from other plugins
21
- SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->clearStyles();
 
 
 
22
 
23
  //Checkin to API V2
24
  $this->checkin = SQ_Classes_RemoteController::checkin();
@@ -36,11 +39,11 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
36
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'pagelist');
37
 
38
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
39
- if(is_rtl()){
40
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('popper');
41
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap.rtl');
42
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
43
- }else{
44
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
45
  }
46
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
@@ -299,7 +302,6 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
299
 
300
  echo wp_json_encode($json);
301
  exit();
302
-
303
  case 'sq_focuspages_getpage':
304
  $json = array();
305
  SQ_Classes_Helpers_Tools::setHeader('json');
@@ -325,41 +327,42 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
325
  return;
326
  }
327
 
328
- $post_id = (int)SQ_Classes_Helpers_Tools::getValue('post_id', 0);
329
  $term_id = (int)SQ_Classes_Helpers_Tools::getValue('term_id', 0);
330
  $taxonomy = SQ_Classes_Helpers_Tools::getValue('taxonomy', '');
331
  $post_type = SQ_Classes_Helpers_Tools::getValue('type', '');
332
 
333
- if ($post = SQ_Classes_ObjController::getClass('SQ_Models_Snippet')->getCurrentSnippet($post_id, $term_id, $taxonomy, $post_type)) {
334
- //Save the post data in DB with the hash
335
- SQ_Classes_ObjController::getClass('SQ_Models_Snippet')->savePost($post);
336
-
337
- if ($post->post_status == 'publish' && $post->ID == $post_id) {
338
- //send the post to API
339
- $args = array();
340
- $args['post_id'] = $post->ID;
341
- $args['hash'] = $post->hash;
342
- $args['permalink'] = $post->url;
343
- if ($focuspage = SQ_Classes_RemoteController::addFocusPage($args)) {
344
- if (!is_wp_error($focuspage)) {
345
- SQ_Classes_Error::setError(esc_html__("Focus page is added. The audit may take a while so please be patient.", _SQ_PLUGIN_NAME_) . " <br /> ", 'success');
346
- if (isset($focuspage->user_post_id)) {
347
- set_transient('sq_auditpage_' . $focuspage->user_post_id, time());
348
 
349
- SQ_Classes_Helpers_Tools::saveOptions('seoreport_time', false);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  }
351
- } elseif ($focuspage->get_error_message() == 'limit_exceed') {
352
- SQ_Classes_Error::setError(esc_html__("You reached the maximum number of focus pages for all your websites.", _SQ_PLUGIN_NAME_) . " <br /> ");
353
  }
354
  } else {
355
- SQ_Classes_Error::setError(esc_html__("Error! Could not add the focus page.", _SQ_PLUGIN_NAME_) . " <br /> ");
356
  }
 
357
  } else {
358
- SQ_Classes_Error::setError(esc_html__("Error! This focus page is not public.", _SQ_PLUGIN_NAME_) . " <br /> ");
359
  }
360
-
361
- } else {
362
- SQ_Classes_Error::setError(esc_html__("Error! Could not find the focus page in your website.", _SQ_PLUGIN_NAME_) . " <br /> ");
363
  }
364
  break;
365
  case 'sq_focuspages_update':
@@ -371,8 +374,7 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
371
  $term_id = (int)SQ_Classes_Helpers_Tools::getValue('term_id', 0);
372
  $taxonomy = SQ_Classes_Helpers_Tools::getValue('taxonomy', '');
373
  $post_type = SQ_Classes_Helpers_Tools::getValue('type', '');
374
-
375
- if ($user_post_id = SQ_Classes_Helpers_Tools::getValue('id', false)) {
376
  if ($post = SQ_Classes_ObjController::getClass('SQ_Models_Snippet')->getCurrentSnippet($post_id, $term_id, $taxonomy, $post_type)) {
377
 
378
  //Save the post data in DB with the hash
@@ -380,25 +382,25 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
380
 
381
  //send the post to API
382
  $args = array();
383
- $args['post_id'] = $user_post_id;
384
  $args['hash'] = $post->hash;
385
  $args['permalink'] = $post->url;
386
  if ($focuspage = SQ_Classes_RemoteController::updateFocusPage($args)) {
387
 
388
  if (!is_wp_error($focuspage)) {
389
  SQ_Classes_Error::setError(esc_html__("Focus page sent for recheck. It may take a while so please be patient.", _SQ_PLUGIN_NAME_) . " <br /> ", 'success');
390
- set_transient('sq_auditpage_' . $user_post_id, time());
391
  } elseif ($focuspage->get_error_message() == 'too_many_attempts') {
392
  SQ_Classes_Error::setError(esc_html__("You've made too many requests, please wait a few minutes.", _SQ_PLUGIN_NAME_) . " <br /> ");
393
  }
394
 
395
  } else {
396
  SQ_Classes_Error::setError(esc_html__("You've made too many requests, please wait a few minutes.", _SQ_PLUGIN_NAME_) . " <br /> ");
397
- set_transient('sq_auditpage_' . $user_post_id, time());
398
  }
399
 
400
  } else {
401
- SQ_Classes_Error::setError(esc_html__("Error! Could not find the focus page in your website.", _SQ_PLUGIN_NAME_) . " <br /> ");
402
  }
403
  }
404
  break;
@@ -407,8 +409,8 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
407
  return;
408
  }
409
 
410
- if ($user_post_id = SQ_Classes_Helpers_Tools::getValue('id', false)) {
411
- SQ_Classes_RemoteController::deleteFocusPage(array('user_post_id' => $user_post_id));
412
  SQ_Classes_Error::setError(esc_html__("The focus page is deleted", _SQ_PLUGIN_NAME_) . " <br /> ", 'success');
413
  } else {
414
  SQ_Classes_Error::setError(esc_html__("Invalid params!", _SQ_PLUGIN_NAME_) . " <br /> ");
17
  * @return mixed|void
18
  */
19
  function init() {
20
+
21
+ if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
22
+ echo $this->getView('Errors/Connect');
23
+ return;
24
+ }
25
 
26
  //Checkin to API V2
27
  $this->checkin = SQ_Classes_RemoteController::checkin();
39
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'pagelist');
40
 
41
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
42
+ if (is_rtl()) {
43
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('popper');
44
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap.rtl');
45
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
46
+ } else {
47
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
48
  }
49
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
302
 
303
  echo wp_json_encode($json);
304
  exit();
 
305
  case 'sq_focuspages_getpage':
306
  $json = array();
307
  SQ_Classes_Helpers_Tools::setHeader('json');
327
  return;
328
  }
329
 
 
330
  $term_id = (int)SQ_Classes_Helpers_Tools::getValue('term_id', 0);
331
  $taxonomy = SQ_Classes_Helpers_Tools::getValue('taxonomy', '');
332
  $post_type = SQ_Classes_Helpers_Tools::getValue('type', '');
333
 
334
+ if ($post_id = (int)SQ_Classes_Helpers_Tools::getValue('post_id', 0)) {
335
+ if ($post = SQ_Classes_ObjController::getClass('SQ_Models_Snippet')->getCurrentSnippet($post_id, $term_id, $taxonomy, $post_type)) {
336
+ //Save the post data in DB with the hash
337
+ SQ_Classes_ObjController::getClass('SQ_Models_Snippet')->savePost($post);
 
 
 
 
 
 
 
 
 
 
 
338
 
339
+ if ($post->post_status == 'publish' && $post->ID == $post_id) {
340
+ //send the post to API
341
+ $args = array();
342
+ $args['post_id'] = $post->ID;
343
+ $args['hash'] = $post->hash;
344
+ $args['permalink'] = $post->url;
345
+ if ($focuspage = SQ_Classes_RemoteController::addFocusPage($args)) {
346
+ if (!is_wp_error($focuspage)) {
347
+ SQ_Classes_Error::setError(esc_html__("Focus page is added. The audit may take a while so please be patient.", _SQ_PLUGIN_NAME_) . " <br /> ", 'success');
348
+ if (isset($focuspage->user_post_id)) {
349
+ set_transient('sq_auditpage_' . $focuspage->user_post_id, time());
350
+
351
+ SQ_Classes_Helpers_Tools::saveOptions('seoreport_time', false);
352
+ }
353
+ } elseif ($focuspage->get_error_message() == 'limit_exceed') {
354
+ SQ_Classes_Error::setError(esc_html__("You reached the maximum number of focus pages for all your websites.", _SQ_PLUGIN_NAME_) . " <br /> ");
355
  }
356
+ } else {
357
+ SQ_Classes_Error::setError(esc_html__("Error! Could not add the focus page.", _SQ_PLUGIN_NAME_) . " <br /> ");
358
  }
359
  } else {
360
+ SQ_Classes_Error::setError(esc_html__("Error! This focus page is not public.", _SQ_PLUGIN_NAME_) . " <br /> ");
361
  }
362
+
363
  } else {
364
+ SQ_Classes_Error::setError(sprintf(esc_html__("Error! Could not find the focus page %d in your website.", _SQ_PLUGIN_NAME_), $post_id) . " <br /> ");
365
  }
 
 
 
366
  }
367
  break;
368
  case 'sq_focuspages_update':
374
  $term_id = (int)SQ_Classes_Helpers_Tools::getValue('term_id', 0);
375
  $taxonomy = SQ_Classes_Helpers_Tools::getValue('taxonomy', '');
376
  $post_type = SQ_Classes_Helpers_Tools::getValue('type', '');
377
+ if ($id = (int)SQ_Classes_Helpers_Tools::getValue('id', 0)) {
 
378
  if ($post = SQ_Classes_ObjController::getClass('SQ_Models_Snippet')->getCurrentSnippet($post_id, $term_id, $taxonomy, $post_type)) {
379
 
380
  //Save the post data in DB with the hash
382
 
383
  //send the post to API
384
  $args = array();
385
+ $args['post_id'] = $id;
386
  $args['hash'] = $post->hash;
387
  $args['permalink'] = $post->url;
388
  if ($focuspage = SQ_Classes_RemoteController::updateFocusPage($args)) {
389
 
390
  if (!is_wp_error($focuspage)) {
391
  SQ_Classes_Error::setError(esc_html__("Focus page sent for recheck. It may take a while so please be patient.", _SQ_PLUGIN_NAME_) . " <br /> ", 'success');
392
+ set_transient('sq_auditpage_' . $id, time());
393
  } elseif ($focuspage->get_error_message() == 'too_many_attempts') {
394
  SQ_Classes_Error::setError(esc_html__("You've made too many requests, please wait a few minutes.", _SQ_PLUGIN_NAME_) . " <br /> ");
395
  }
396
 
397
  } else {
398
  SQ_Classes_Error::setError(esc_html__("You've made too many requests, please wait a few minutes.", _SQ_PLUGIN_NAME_) . " <br /> ");
399
+ set_transient('sq_auditpage_' . $id, time());
400
  }
401
 
402
  } else {
403
+ SQ_Classes_Error::setError(sprintf(esc_html__("Error! Could not find the focus page %d in your website.", _SQ_PLUGIN_NAME_), $post_id) . " <br /> ");
404
  }
405
  }
406
  break;
409
  return;
410
  }
411
 
412
+ if ($post_id = SQ_Classes_Helpers_Tools::getValue('id', false)) {
413
+ SQ_Classes_RemoteController::deleteFocusPage(array('user_post_id' => $post_id));
414
  SQ_Classes_Error::setError(esc_html__("The focus page is deleted", _SQ_PLUGIN_NAME_) . " <br /> ", 'success');
415
  } else {
416
  SQ_Classes_Error::setError(esc_html__("Invalid params!", _SQ_PLUGIN_NAME_) . " <br /> ");
controllers/Frontend.php CHANGED
@@ -32,11 +32,6 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
32
  //Set the post so that Squirrly will know which one to process
33
  add_action('template_redirect', array($this->model, 'setPost'), 9);
34
 
35
- //Check if attachment to image redirect is needed
36
- if (SQ_Classes_Helpers_Tools::getOption('sq_attachment_redirect')) {
37
- add_action('template_redirect', array($this->model, 'redirectAttachments'), 10);
38
- }
39
-
40
  //Check the old permalink and redirect to the new permalink
41
  if (SQ_Classes_Helpers_Tools::getOption('sq_permalink_redirect')) {
42
  add_action('template_redirect', array($this->model, 'redirectPermalinks'), 10);
@@ -44,13 +39,22 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
44
 
45
  /* Check if sitemap is on and Load the Sitemap */
46
  if (SQ_Classes_Helpers_Tools::getOption('sq_auto_sitemap')) {
47
- add_filter( 'wp_sitemaps_enabled', '__return_false' );
48
  SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps');
49
  }
50
 
51
- /* Fix the Links for feed*/
52
- if (SQ_Classes_Helpers_Tools::getOption('sq_url_fix')) {
53
- add_action('the_content', array($this, 'fixFeedLinks'), 11);
 
 
 
 
 
 
 
 
 
54
  }
55
  }
56
 
@@ -126,51 +130,70 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
126
  *
127
  * @return string
128
  */
129
- public function fixFeedLinks($content) {
130
- if (is_feed()) {
131
- $find = $replace = $urls = array();
132
-
133
- preg_match_all('/<img[^>]*src=[\'"]([^\'"]+)[\'"][^>]*>/i', $content, $out);
134
- if (is_array($out)) {
135
- if (!is_array($out[1]) || empty($out[1]))
136
- return $content;
137
-
138
- foreach ($out[1] as $row) {
139
- if (strpos($row, '//') === false) {
140
- if (!in_array($row, $urls)) {
141
- $urls[] = $row;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  }
143
  }
144
  }
145
- }
146
 
147
- preg_match_all('/<a[^>]*href=[\'"]([^\'"]+)[\'"][^>]*>/i', $content, $out);
148
- if (is_array($out)) {
149
- if (!is_array($out[1]) || empty($out[1]))
150
- return $content;
151
-
152
- foreach ($out[1] as $row) {
153
- if (strpos($row, '//') === false) {
154
- if (!in_array($row, $urls)) {
155
- $urls[] = $row;
156
- }
157
  }
 
158
  }
159
- }
160
- if (!is_array($urls) || (is_array($urls) && empty($urls))) {
161
- return $content;
162
- }
163
 
164
- $urls = array_unique($urls);
165
- foreach ($urls as $url) {
166
- $find[] = "'" . $url . "'";
167
- $replace[] = "'" . esc_url(home_url() . $url) . "'";
168
- $find[] = '"' . $url . '"';
169
- $replace[] = '"' . esc_url(home_url() . $url) . '"';
170
- }
171
- if (!empty($find) && !empty($replace)) {
172
- $content = str_replace($find, $replace, $content);
 
 
 
 
 
 
173
  }
 
174
  }
175
  return $content;
176
  }
32
  //Set the post so that Squirrly will know which one to process
33
  add_action('template_redirect', array($this->model, 'setPost'), 9);
34
 
 
 
 
 
 
35
  //Check the old permalink and redirect to the new permalink
36
  if (SQ_Classes_Helpers_Tools::getOption('sq_permalink_redirect')) {
37
  add_action('template_redirect', array($this->model, 'redirectPermalinks'), 10);
39
 
40
  /* Check if sitemap is on and Load the Sitemap */
41
  if (SQ_Classes_Helpers_Tools::getOption('sq_auto_sitemap')) {
42
+ add_filter('wp_sitemaps_enabled', '__return_false');
43
  SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps');
44
  }
45
 
46
+ if(SQ_Classes_Helpers_Tools::getOption('sq_auto_links')) {
47
+
48
+ //Check if attachment to image redirect is needed
49
+ if (SQ_Classes_Helpers_Tools::getOption('sq_attachment_redirect')) {
50
+ add_action('template_redirect', array($this->model, 'redirectAttachments'), 10);
51
+ }
52
+
53
+ /* Fix the Links in content */
54
+ if (SQ_Classes_Helpers_Tools::getOption('sq_external_nofollow') || SQ_Classes_Helpers_Tools::getOption('sq_external_blank')) {
55
+ add_action('the_content', array($this, 'fixNofollowLinks'), 11);
56
+ }
57
+
58
  }
59
  }
60
 
130
  *
131
  * @return string
132
  */
133
+ public function fixNofollowLinks($content) {
134
+
135
+ if (!is_feed() && !is_404()) {
136
+ preg_match_all('/<a[^>]*href=[\'"]([^\'"]+)[\'"][^>]*>/i', $content, $out);
137
+ if (empty($out) || empty($out[0])) {
138
+ return $content;
139
+ }
140
+
141
+ $domain = parse_url(home_url(), PHP_URL_HOST);
142
+
143
+ foreach ($out[0] as $index => $link) {
144
+ $newlink = $link;
145
+
146
+ //only for external links
147
+ if (isset($out[1][$index])) {
148
+ //If it's not a valid link
149
+ if(!$linkdomain = parse_url($out[1][$index], PHP_URL_HOST)){
150
+ continue;
151
+ }
152
+
153
+ //If it's not an external link
154
+ if (strpos($linkdomain, $domain) !== false) {
155
+ continue;
156
+ }
157
+
158
+ //If it's not an exception link
159
+ $exceptions = SQ_Classes_Helpers_Tools::getOption('sq_external_exception');
160
+ if(!empty($exceptions)){
161
+ foreach ($exceptions as $exception){
162
+ if (strpos($exception, $linkdomain) !== false) {
163
+ continue 2;
164
+ }
165
  }
166
  }
167
  }
 
168
 
169
+ //If nofollow rel is set
170
+ if (SQ_Classes_Helpers_Tools::getOption('sq_external_nofollow')) {
171
+
172
+ if (strpos($newlink, 'rel=') === false) {
173
+ $newlink = str_replace('<a', '<a rel="nofollow" ', $newlink);
174
+ } elseif (strpos($newlink, 'nofollow') === false) {
175
+ $newlink = preg_replace('/(rel=[\'"])([^\'"]+)([\'"])/i', '$1nofollow $2$3', $newlink);
 
 
 
176
  }
177
+
178
  }
 
 
 
 
179
 
180
+ //if force external open
181
+ if (SQ_Classes_Helpers_Tools::getOption('sq_external_blank')) {
182
+
183
+ if (strpos($newlink, 'target=') === false) {
184
+ $newlink = str_replace('<a', '<a target="_blank" ', $newlink);
185
+ } elseif (strpos($link, '_blank') === false) {
186
+ $newlink = preg_replace('/(target=[\'"])([^\'"]+)([\'"])/i', '$1_blank$3', $newlink);
187
+ }
188
+
189
+ }
190
+
191
+ //Check the link and replace it
192
+ if ($newlink <> $link) {
193
+ $content = str_replace($link, $newlink, $content);
194
+ }
195
  }
196
+
197
  }
198
  return $content;
199
  }
controllers/Menu.php CHANGED
@@ -11,18 +11,37 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
11
  public function __construct() {
12
  parent::__construct();
13
 
 
 
 
14
  if (!is_network_admin()) {
 
 
15
  add_action('admin_bar_menu', array($this, 'hookTopmenuDashboard'), 10);
16
  add_action('admin_bar_menu', array($this, 'hookTopmenuSquirrly'), 91);
 
17
  add_action('do_meta_boxes', array($this, 'addMetabox'));
 
 
18
  //run compatibility check on Squirrly settings
19
  if (SQ_Classes_Helpers_Tools::getIsset('page')) {
 
 
20
  $menus = $this->model->getMainMenu();
21
- $page = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('page', ''));
 
22
 
23
  if (in_array($page, array_keys($menus))) {
 
 
 
 
 
 
 
 
24
  add_action('admin_enqueue_scripts', array(SQ_Classes_ObjController::getClass('SQ_Models_Compatibility'), 'fixEnqueueErrors'), PHP_INT_MAX);
25
- add_action( 'admin_head', array($this, 'setViewport'), PHP_INT_MAX);
26
  }
27
  }
28
 
@@ -30,74 +49,17 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
30
  $this->hookBuilders();
31
  }
32
 
33
- add_action( 'current_screen', function () {
34
- if (in_array( get_current_screen()->id, array('plugins', 'plugins-network') )) {
35
  SQ_Classes_ObjController::getClass('SQ_Controllers_Uninstall');
36
  }
37
- } );
38
  }
39
 
40
  /**
41
  * Hook the Admin load
42
  */
43
  public function hookInit() {
44
- //in case the token is not set
45
- $menus = $this->model->getMainMenu();
46
- if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
47
- if (SQ_Classes_Helpers_Tools::getIsset('page')) {
48
- $page = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('page', ''));
49
-
50
- if ($page <> 'sq_dashboard' && in_array($page, array_keys($menus))) {
51
- //redirect to dashboard to login
52
- wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
53
- exit();
54
- }
55
- }
56
- } elseif (SQ_Classes_Helpers_Tools::getIsset('page')) {
57
- $page = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('page', ''));
58
-
59
- //check if onboarding should load
60
- if (SQ_Classes_Helpers_Tools::getMenuVisible('show_tutorial')) {
61
- if (in_array($page, array_keys($menus))) {
62
- //redirect users to onboarding if necessary
63
- if (!$onboarding = SQ_Classes_Helpers_Tools::getOption('sq_onboarding')) {
64
- if ($page !== 'sq_onboarding') {
65
- wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_onboarding'));
66
- die();
67
- }
68
- }
69
- }
70
- }
71
- }
72
-
73
- //Check if help page is selected
74
- if (SQ_Classes_Helpers_Tools::getIsset('page')) {
75
- if (SQ_Classes_Helpers_Tools::getValue('page') == 'sq_help') {
76
- wp_redirect(_SQ_HOWTO_URL_);
77
- die();
78
- }
79
- }
80
-
81
- //Check if account page is selected
82
- if (SQ_Classes_Helpers_Tools::getIsset('page')) {
83
- if (current_user_can('sq_manage_settings')) {
84
- if (SQ_Classes_Helpers_Tools::getValue('page') == 'sq_account') {
85
- wp_redirect(SQ_Classes_RemoteController::getMySquirrlyLink('account'));
86
- die();
87
- }
88
- }
89
- }
90
-
91
- //Check if account page is selected
92
- if (SQ_Classes_Helpers_Tools::getIsset('page')) {
93
- if (current_user_can('sq_manage_settings')) {
94
- if (SQ_Classes_Helpers_Tools::getValue('page') == 'sq_import') {
95
- wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'backup'));
96
- die();
97
- }
98
- }
99
- }
100
-
101
 
102
  /* add the plugin menu in admin */
103
  if (current_user_can('manage_options')) {
@@ -120,21 +82,10 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
120
  }
121
  }
122
 
123
- if (get_transient('sq_rewrite') == 1) {
124
- // Delete the redirect transient
125
- delete_transient('sq_rewrite');
126
- flush_rewrite_rules();
127
- }
128
  } catch (Exception $e) {
129
  SQ_Classes_Error::setMessage(sprintf(esc_html__("An error occurred during activation. If this error persists, please contact us at: %s", _SQ_PLUGIN_NAME_), _SQ_SUPPORT_URL_));
130
  }
131
 
132
-
133
- }
134
-
135
- //activate the cron job if not exists
136
- if (!wp_next_scheduled('sq_cron_process')) {
137
- wp_schedule_event(time(), 'hourly', 'sq_cron_process');
138
  }
139
 
140
  //Add Squirrly SEO in Posts list
@@ -143,8 +94,12 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
143
  //Hook the post save action
144
  SQ_Classes_ObjController::getClass('SQ_Controllers_Post')->hookPost();
145
 
146
- //Show Admin Toolbar
147
- add_action('wp_dashboard_setup', array($this, 'hookDashboardSetup'));
 
 
 
 
148
  add_filter('admin_body_class', array($this, 'addSquirrlySettingsClass'));
149
 
150
  }
@@ -198,22 +153,18 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
198
  $mainmenu = $this->model->getMainMenu();
199
  if (!empty($mainmenu)) {
200
  foreach ($mainmenu as $menuid => $item) {
201
- if ($menuid == 'sq_audits' && !SQ_Classes_Helpers_Tools::getMenuVisible('show_audit')) {
202
- continue;
203
- } elseif ($menuid == 'sq_rankings' && !SQ_Classes_Helpers_Tools::getMenuVisible('show_rankings')) {
204
- continue;
205
- } elseif ($menuid == 'sq_focuspages' && !SQ_Classes_Helpers_Tools::getMenuVisible('show_focuspages')) {
206
- continue;
207
- } elseif ($menuid == 'sq_dashboard') {
208
- if(is_rtl()){
209
- $item['title'] = (($errors) ? '<span class="sq_errorcount" style="margin: 6px 0 0 0 !important; float: left !important;">' . $errors . '</span>' : '') . $item['title'];
210
 
211
- }else{
212
- $item['title'] = $item['title'] . (($errors) ? '<span class="sq_errorcount" style="margin: 6px 54px 0 0 !important;">' . $errors . '</span>' : '');
 
 
213
 
 
 
 
 
 
214
  }
215
- } elseif (!isset($item['parent'])) {
216
- continue;
217
  }
218
 
219
  //make sure the user has the capabilities
@@ -244,56 +195,54 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
244
 
245
  }
246
 
247
- if (is_admin()) {
248
- $current_screen = get_current_screen();
249
- $post = get_post();
250
- if ('post' == $current_screen->base
251
- && ($post_type_object = get_post_type_object($post->post_type))
252
- && (current_user_can('edit_post', $post->ID) || current_user_can('sq_manage_snippets'))
253
- && ($post_type_object->public)) {
254
- } elseif ('edit' == $current_screen->base
255
- && ($post_type_object = get_post_type_object($current_screen->post_type))
256
- && ($post_type_object->show_in_admin_bar)
257
- && !('edit-' . $current_screen->post_type === $current_screen->id)) {
258
- } elseif ('term' == $current_screen->base
259
- && isset($tag) && is_object($tag) && !is_wp_error($tag)
260
- && ($tax = get_taxonomy($tag->taxonomy))
261
- && $tax->public) {
262
- } else {
263
- return false;
264
- }
265
 
266
- $this->model->addMeta(array('sq_blocksnippet',
267
- ucfirst(_SQ_NAME_) . ' ' . esc_html__("SEO Snippet", _SQ_PLUGIN_NAME_),
268
- array(SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet'), 'init'),
269
- null,
270
- 'normal',
271
- 'high'
272
- ));
273
 
274
- //Dev Kit images
275
- $style = '';
276
- if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
277
- $style = '<style>.sq_logo{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;background-size: 100%;}</style>';
278
- }
279
 
280
- $wp_admin_bar->add_node(array(
281
- 'id' => 'sq_bar_menu',
282
- 'title' => $style . '<span class="sq_logo"></span> ' . esc_html__("Custom SEO", _SQ_PLUGIN_NAME_),
283
- 'parent' => 'top-secondary',
284
- ));
285
 
286
 
287
- //Add snippet body
288
- $wp_admin_bar->add_menu(array(
289
- 'id' => 'sq_bar_submenu',
290
- 'parent' => 'sq_bar_menu',
291
- 'meta' => array(
292
- 'html' => SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet')->init(),
293
- 'tabindex' => PHP_INT_MAX,
294
- ),
295
- ));
296
- }
297
 
298
  return $wp_admin_bar;
299
  }
@@ -320,91 +269,62 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
320
  //Hook the SEO Errors from Squirrly SEO Check
321
  add_action('sq_seo_errors', array($this, 'getSEOErrors'));
322
 
 
 
 
323
  //Get all the post types
324
  $this->post_type = SQ_Classes_Helpers_Tools::getOption('sq_post_types');
325
 
326
- //Push the Analytics Check
327
- if (strpos($_SERVER['REQUEST_URI'], '?page=sq_dashboard') !== false) {
328
- SQ_Classes_Helpers_Tools::saveOptions('sq_dashboard', 1);
329
- }
330
- if (strpos($_SERVER['REQUEST_URI'], '?page=sq_rankings') !== false) {
331
- SQ_Classes_Helpers_Tools::saveOptions('sq_analytics', 1);
332
- }
333
-
334
  //Get count local SEO errors
335
  $errors = apply_filters('sq_seo_errors', 0);
336
 
337
  ///////////////
338
- $this->model->addMenu(array(ucfirst(_SQ_NAME_),
339
- esc_html__("Squirrly SEO", _SQ_PLUGIN_NAME_) . (($errors) ? '<span class="sq_errorcount">' . $errors . '</span>' : ''),
340
  'edit_posts',
341
  'sq_dashboard',
342
  null,
343
- (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')
344
  ));
345
 
346
- if (SQ_Classes_Helpers_Tools::getValue('page', '') == 'sq_onboarding' || !SQ_Classes_Helpers_Tools::getOption('sq_onboarding')) {
347
- $this->model->addSubmenu(array('sq_dashboard',
348
- esc_html__("Squirrly Onboarding", _SQ_PLUGIN_NAME_),
349
- esc_html__("Onboarding", _SQ_PLUGIN_NAME_),
350
- 'read',
351
- 'sq_onboarding',
352
- array(SQ_Classes_ObjController::getClass('SQ_Controllers_Onboarding'), 'init')
353
- ));
354
- }
355
-
356
  $mainmenu = $this->model->getMainMenu();
357
- foreach ($mainmenu as $name => $item) {
358
- if ($name == 'sq_audits' && !SQ_Classes_Helpers_Tools::getMenuVisible('show_audit')) {
359
- continue;
360
- } elseif ($name == 'sq_rankings' && !SQ_Classes_Helpers_Tools::getMenuVisible('show_rankings')) {
361
- continue;
362
- } elseif ($name == 'sq_focuspages' && !SQ_Classes_Helpers_Tools::getMenuVisible('show_focuspages')) {
363
- continue;
364
- } elseif (!isset($item['parent'])) {
365
- continue;
366
- }
367
-
368
- $this->model->addSubmenu(array($item['parent'],
369
- $item['description'],
370
- $item['title'],
371
- $item['capability'],
372
- $name,
373
- $item['function'],
374
- ));
375
 
376
- }
 
 
 
 
 
 
 
377
 
378
- $this->model->addSubmenu(array('sq_dashboard',
379
- esc_html__("Import & Export SEO", _SQ_PLUGIN_NAME_),
380
- esc_html__("Import SEO", _SQ_PLUGIN_NAME_),
381
- 'sq_manage_settings',
382
- 'sq_import',
383
- array(SQ_Classes_ObjController::getClass('SQ_Controllers_SeoSettings'), 'init')
384
- ));
385
 
386
- //show account only for Admins
387
- if (current_user_can('sq_manage_settings')) {
388
- if (SQ_Classes_Helpers_Tools::getMenuVisible('show_account_info')) {
389
- $this->model->addSubmenu(array('sq_dashboard',
390
- esc_html__("Squirrly Account Info", _SQ_PLUGIN_NAME_),
391
- esc_html__("Account Info", _SQ_PLUGIN_NAME_),
392
- 'manage_options',
393
- 'sq_account',
394
- array(SQ_Classes_ObjController::getClass('SQ_Controllers_Account'), 'init')
395
- ));
396
  }
397
  }
398
-
399
- $this->model->addSubmenu(array('sq_dashboard',
400
- esc_html__("Squirrly How To & Support", _SQ_PLUGIN_NAME_),
401
- esc_html__("Help & Support", _SQ_PLUGIN_NAME_),
402
- 'edit_posts',
403
- 'sq_help',
404
- array(SQ_Classes_ObjController::getClass('SQ_Controllers_Help'), 'init')
405
- ));
406
-
407
-
408
  }
409
 
410
  /**
@@ -418,8 +338,10 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
418
  $excludes = SQ_Classes_Helpers_Tools::getOption('sq_sla_exclude_post_types');
419
  if (!empty($types) && !empty($excludes)) {
420
  foreach ($excludes as $exclude) {
421
- if (in_array($exclude, $types)) {
422
- unset($types[$exclude]);
 
 
423
  }
424
  }
425
  }
@@ -466,64 +388,84 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
466
  }
467
  }
468
 
469
- public function addSquirrlySettingsClass( $classes ){
470
- if (SQ_Classes_Helpers_Tools::getIsset('page')) {
471
- $menus = $this->model->getMainMenu();
472
- $page = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('page', ''));
473
-
474
- if (in_array($page, array_keys($menus))) {
475
- $classes = "$classes squirrly-seo-settings";
476
- }
 
477
 
 
 
478
  }
479
 
480
  return $classes;
481
  }
482
 
 
 
 
483
  public function hookHead() {
484
- global $sq_fullscreen;
485
- if (SQ_Classes_Helpers_Tools::getIsset('page')) {
486
- $menus = $this->model->getMainMenu();
487
- $page = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('page', ''));
488
-
489
- if (in_array($page, array_keys($menus))) {
490
- echo '<script type="text/javascript" src="//www.google.com/jsapi"></script>';
491
- echo '<script>google.load("visualization", "1.0", {packages: ["corechart"]});</script>';
492
- echo '<div id="sq_preloader" class="sq_loading"></div>';
493
- if ($page <> 'sq_dashboard') {
494
- $sq_fullscreen = true;
495
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('fullwidth', array('trigger' => true, 'media' => 'all'));
496
- }
497
  }
498
-
499
  }
500
 
 
501
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('logo');
502
 
503
- //Dev Kit images
504
- if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
505
- 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>';
506
- }
507
-
508
- if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_audit')) {
509
- echo '<style>.sq_offer {display: none !important;}</style>';
510
- }
511
  }
512
 
 
 
 
513
  function setViewport() {
514
  $page = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('page', ''));
515
  if ($page == 'sq_dashboard') {
516
  echo '<meta name="viewport" content="width=900">';
517
- }else{
518
  echo '<meta name="viewport" content="width=1200">';
519
  }
520
  }
521
 
 
 
 
522
  public function hookBuilders() {
523
  add_action('elementor/editor/footer', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Post'), 'loadLiveAssistant'), 99);
524
  }
525
 
 
 
 
 
526
  public function getSEOErrors() {
527
  return SQ_Classes_ObjController::getClass('SQ_Controllers_CheckSeo')->setCategory('sq_dashboard')->getErrorsCount();
528
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
529
  }
11
  public function __construct() {
12
  parent::__construct();
13
 
14
+ global $sq_fullscreen, $sq_setting_page;
15
+
16
+ //Only on subsites
17
  if (!is_network_admin()) {
18
+ $sq_fullscreen = $sq_setting_page = false;
19
+
20
  add_action('admin_bar_menu', array($this, 'hookTopmenuDashboard'), 10);
21
  add_action('admin_bar_menu', array($this, 'hookTopmenuSquirrly'), 91);
22
+
23
  add_action('do_meta_boxes', array($this, 'addMetabox'));
24
+ add_filter('sq_cloudmenu', array($this, 'getCloudMenu'), 10, 2);
25
+
26
  //run compatibility check on Squirrly settings
27
  if (SQ_Classes_Helpers_Tools::getIsset('page')) {
28
+
29
+ //Get all the Squirrly SEO menus
30
  $menus = $this->model->getMainMenu();
31
+ //Get current accessed page
32
+ $page = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('page'));
33
 
34
  if (in_array($page, array_keys($menus))) {
35
+ //Set if it's a Squirrly SEO Page
36
+ $sq_setting_page = true;
37
+
38
+ //Check if the menu requires full screen window
39
+ if (isset($menus[$page]['fullscreen']) && $menus[$page]['fullscreen']) {
40
+ $sq_fullscreen = true;
41
+ }
42
+
43
  add_action('admin_enqueue_scripts', array(SQ_Classes_ObjController::getClass('SQ_Models_Compatibility'), 'fixEnqueueErrors'), PHP_INT_MAX);
44
+ add_action('admin_head', array($this, 'setViewport'), PHP_INT_MAX);
45
  }
46
  }
47
 
49
  $this->hookBuilders();
50
  }
51
 
52
+ add_action('current_screen', function () {
53
+ if (in_array(get_current_screen()->id, array('plugins', 'plugins-network'))) {
54
  SQ_Classes_ObjController::getClass('SQ_Controllers_Uninstall');
55
  }
56
+ });
57
  }
58
 
59
  /**
60
  * Hook the Admin load
61
  */
62
  public function hookInit() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
 
64
  /* add the plugin menu in admin */
65
  if (current_user_can('manage_options')) {
82
  }
83
  }
84
 
 
 
 
 
 
85
  } catch (Exception $e) {
86
  SQ_Classes_Error::setMessage(sprintf(esc_html__("An error occurred during activation. If this error persists, please contact us at: %s", _SQ_PLUGIN_NAME_), _SQ_SUPPORT_URL_));
87
  }
88
 
 
 
 
 
 
 
89
  }
90
 
91
  //Add Squirrly SEO in Posts list
94
  //Hook the post save action
95
  SQ_Classes_ObjController::getClass('SQ_Controllers_Post')->hookPost();
96
 
97
+ //Show Squirrly SEO in Dashboard if connected to Squirrly Cloud
98
+ if (SQ_Classes_Helpers_Tools::getOption('sq_api') <> '') {
99
+ add_action('wp_dashboard_setup', array($this, 'hookDashboardSetup'));
100
+ }
101
+
102
+ //Add the Squirrly Class in all Squirrly SEO Pages
103
  add_filter('admin_body_class', array($this, 'addSquirrlySettingsClass'));
104
 
105
  }
153
  $mainmenu = $this->model->getMainMenu();
154
  if (!empty($mainmenu)) {
155
  foreach ($mainmenu as $menuid => $item) {
 
 
 
 
 
 
 
 
 
156
 
157
+ //Check if the menu item is visible on the top
158
+ if (isset($item['topmenu']) && !$item['topmenu']) {
159
+ continue;
160
+ }
161
 
162
+ if ($menuid == 'sq_dashboard' && $errors) {
163
+ if (is_rtl()) {
164
+ $item['title'] = '<span class="sq_errorcount" style="margin: 6px 0 0 0 !important; float: left !important;">' . $errors . '</span>' . $item['title'];
165
+ } else {
166
+ $item['title'] = $item['title'] . '<span class="sq_errorcount" style="margin: 6px 35px 0 0 !important;">' . $errors . '</span>';
167
  }
 
 
168
  }
169
 
170
  //make sure the user has the capabilities
195
 
196
  }
197
 
198
+ $current_screen = get_current_screen();
199
+ $post = get_post();
200
+ if ('post' == $current_screen->base
201
+ && ($post_type_object = get_post_type_object($post->post_type))
202
+ && (current_user_can('edit_post', $post->ID) || current_user_can('sq_manage_snippets'))
203
+ && ($post_type_object->public)) {
204
+ } elseif ('edit' == $current_screen->base
205
+ && ($post_type_object = get_post_type_object($current_screen->post_type))
206
+ && ($post_type_object->show_in_admin_bar)
207
+ && !('edit-' . $current_screen->post_type === $current_screen->id)) {
208
+ } elseif ('term' == $current_screen->base
209
+ && isset($tag) && is_object($tag) && !is_wp_error($tag)
210
+ && ($tax = get_taxonomy($tag->taxonomy))
211
+ && $tax->public) {
212
+ } else {
213
+ return false;
214
+ }
 
215
 
216
+ $this->model->addMeta(array('sq_blocksnippet',
217
+ ucfirst(_SQ_NAME_) . ' ' . esc_html__("SEO Snippet", _SQ_PLUGIN_NAME_),
218
+ array(SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet'), 'init'),
219
+ null,
220
+ 'normal',
221
+ 'high'
222
+ ));
223
 
224
+ //Dev Kit images
225
+ $style = '';
226
+ if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
227
+ $style = '<style>.sq_logo{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;background-size: 100%;}</style>';
228
+ }
229
 
230
+ $wp_admin_bar->add_node(array(
231
+ 'id' => 'sq_bar_menu',
232
+ 'title' => $style . '<span class="sq_logo"></span> ' . esc_html__("Custom SEO", _SQ_PLUGIN_NAME_),
233
+ 'parent' => 'top-secondary',
234
+ ));
235
 
236
 
237
+ //Add snippet body
238
+ $wp_admin_bar->add_menu(array(
239
+ 'id' => 'sq_bar_submenu',
240
+ 'parent' => 'sq_bar_menu',
241
+ 'meta' => array(
242
+ 'html' => SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet')->init(),
243
+ 'tabindex' => PHP_INT_MAX,
244
+ ),
245
+ ));
 
246
 
247
  return $wp_admin_bar;
248
  }
269
  //Hook the SEO Errors from Squirrly SEO Check
270
  add_action('sq_seo_errors', array($this, 'getSEOErrors'));
271
 
272
+ //Check the Dev Kit settings
273
+ SQ_Classes_ObjController::getClass('SQ_Classes_Helpers_DevKit');
274
+
275
  //Get all the post types
276
  $this->post_type = SQ_Classes_Helpers_Tools::getOption('sq_post_types');
277
 
 
 
 
 
 
 
 
 
278
  //Get count local SEO errors
279
  $errors = apply_filters('sq_seo_errors', 0);
280
 
281
  ///////////////
282
+ $this->model->addMenu(array(apply_filters('sq_menu_name', _SQ_MENU_NAME_),
283
+ apply_filters('sq_menu_name', _SQ_MENU_NAME_) . (($errors) ? '<span class="sq_errorcount">' . $errors . '</span>' : ''),
284
  'edit_posts',
285
  'sq_dashboard',
286
  null,
287
+ apply_filters('sq_logo', _SQ_ASSETS_URL_ . 'img/logos/menu_icon_16.png')
288
  ));
289
 
290
+ //Load the Squirrly Menu
 
 
 
 
 
 
 
 
 
291
  $mainmenu = $this->model->getMainMenu();
292
+ if (!empty($mainmenu)) {
293
+ foreach ($mainmenu as $name => $item) {
294
+
295
+ //Check if the menu is set to show in the left side
296
+ if (isset($item['leftmenu'])) {
297
+ if (is_bool($item['leftmenu'])) {
298
+ if (!$item['leftmenu'] && SQ_Classes_Helpers_Tools::getValue('page', '') <> $name) {
299
+ continue;
300
+ }
301
+ } else {
302
+ $item['title'] = $item['leftmenu'];
303
+ }
304
+ }
 
 
 
 
 
305
 
306
+ //Add the page
307
+ $this->model->addSubmenu(array($item['parent'],
308
+ $item['description'],
309
+ $item['title'],
310
+ $item['capability'],
311
+ $name,
312
+ $item['function'],
313
+ ));
314
 
315
+ }
 
 
 
 
 
 
316
 
317
+ //Update the external links in the menu
318
+ global $submenu;
319
+ foreach ($submenu['sq_dashboard'] as &$item) {
320
+ if (isset($mainmenu[$item[2]]['href']) && $mainmenu[$item[2]]['href']) {
321
+ if (parse_url($mainmenu[$item[2]]['href'], PHP_URL_HOST) !== parse_url(home_url(), PHP_URL_HOST)) {
322
+ $item[0] .= '<i class="dashicons dashicons-external" style="font-size:12px;vertical-align:-2px;height:10px;"></i>';
323
+ }
324
+ $item[2] = $mainmenu[$item[2]]['href'];
325
+ }
 
326
  }
327
  }
 
 
 
 
 
 
 
 
 
 
328
  }
329
 
330
  /**
338
  $excludes = SQ_Classes_Helpers_Tools::getOption('sq_sla_exclude_post_types');
339
  if (!empty($types) && !empty($excludes)) {
340
  foreach ($excludes as $exclude) {
341
+ if ($exclude) {
342
+ if (in_array($exclude, $types)) {
343
+ unset($types[$exclude]);
344
+ }
345
  }
346
  }
347
  }
388
  }
389
  }
390
 
391
+ /**
392
+ * Add the Squirrly Setttings Class in all Squirrly SEO Pages
393
+ * Used for personal layout
394
+ *
395
+ * @param $classes
396
+ * @return string
397
+ */
398
+ public function addSquirrlySettingsClass($classes) {
399
+ global $sq_setting_page;
400
 
401
+ if (isset($sq_setting_page) && $sq_setting_page) {
402
+ $classes = "$classes squirrly-seo-settings";
403
  }
404
 
405
  return $classes;
406
  }
407
 
408
+ /**
409
+ * Hook the Head
410
+ */
411
  public function hookHead() {
412
+ global $sq_fullscreen, $sq_setting_page;
413
+
414
+ //Load settings only in the Squirrly Menu
415
+ if (isset($sq_setting_page) && $sq_setting_page) {
416
+ echo '<script type="text/javascript" src="//www.google.com/jsapi"></script>';
417
+ echo '<script>google.load("visualization", "1.0", {packages: ["corechart"]});</script>';
418
+ if (isset($sq_fullscreen) && $sq_fullscreen) {
419
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('fullwidth', array('trigger' => true, 'media' => 'all'));
 
 
 
 
 
420
  }
 
421
  }
422
 
423
+ //Load the Squirrly Logo on all Dashboard
424
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('logo');
425
 
 
 
 
 
 
 
 
 
426
  }
427
 
428
+ /**
429
+ * Set the viewport for a google Squirrly Settings layout
430
+ */
431
  function setViewport() {
432
  $page = apply_filters('sq_page', SQ_Classes_Helpers_Tools::getValue('page', ''));
433
  if ($page == 'sq_dashboard') {
434
  echo '<meta name="viewport" content="width=900">';
435
+ } else {
436
  echo '<meta name="viewport" content="width=1200">';
437
  }
438
  }
439
 
440
+ /**
441
+ * Hook the Elementor Builder
442
+ */
443
  public function hookBuilders() {
444
  add_action('elementor/editor/footer', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Post'), 'loadLiveAssistant'), 99);
445
  }
446
 
447
+ /**
448
+ * Count the SEO Errors from SEO Goals
449
+ * @return mixed
450
+ */
451
  public function getSEOErrors() {
452
  return SQ_Classes_ObjController::getClass('SQ_Controllers_CheckSeo')->setCategory('sq_dashboard')->getErrorsCount();
453
  }
454
+
455
+
456
+ /**
457
+ * Set the cloud.squirrly.co menu based on the client rights
458
+ * @param $url
459
+ * @param $path
460
+ * @return string
461
+ */
462
+ public function getCloudMenu($url, $path) {
463
+ if (function_exists('wp_get_current_user') && SQ_Classes_Helpers_Tools::getOption('sq_api')) {
464
+ if (SQ_Classes_Helpers_Tools::getMenuVisible('show_panel') && current_user_can('sq_manage_settings')) {
465
+ $url .= 'login/?token=' . SQ_Classes_Helpers_Tools::getOption('sq_api') . '&user_url=' . apply_filters('sq_homeurl', get_bloginfo('url')) . '&redirect_to=' . _SQ_DASH_URL_ . 'user/' . $path;
466
+ }
467
+ }
468
+
469
+ return $url;
470
+ }
471
  }
controllers/Onboarding.php CHANGED
@@ -4,6 +4,7 @@ defined('ABSPATH') || die('Cheatin\' uh?');
4
  class SQ_Controllers_Onboarding extends SQ_Classes_FrontController {
5
 
6
  public $metas;
 
7
  public $active_plugins;
8
 
9
  /**
@@ -11,17 +12,15 @@ class SQ_Controllers_Onboarding extends SQ_Classes_FrontController {
11
  * @return mixed|void
12
  */
13
  public function init() {
14
- //Clear the Scripts and Styles from other plugins
15
- SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->clearStyles();
16
 
17
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'step1');
18
 
19
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
20
- if(is_rtl()){
21
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('popper');
22
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap.rtl');
23
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
24
- }else{
25
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
26
  }
27
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
@@ -36,6 +35,11 @@ class SQ_Controllers_Onboarding extends SQ_Classes_FrontController {
36
  call_user_func(array($this, preg_replace("/[^a-zA-Z0-9]/", "", $tab)));
37
  }
38
 
 
 
 
 
 
39
  //@ob_flush();
40
  echo $this->getView('Onboarding/' . ucfirst($tab));
41
  }
@@ -58,9 +62,20 @@ class SQ_Controllers_Onboarding extends SQ_Classes_FrontController {
58
  $seoCheck->getSourceCode();
59
  $this->metas = $seoCheck->checkMetas();
60
 
61
-
62
  break;
63
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  case 'sq_onboarding_commitment':
65
  SQ_Classes_Helpers_Tools::saveOptions('sq_seojourney', date('Y-m-d'));
66
 
4
  class SQ_Controllers_Onboarding extends SQ_Classes_FrontController {
5
 
6
  public $metas;
7
+ public $platforms;
8
  public $active_plugins;
9
 
10
  /**
12
  * @return mixed|void
13
  */
14
  public function init() {
 
 
15
 
16
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'step1');
17
 
18
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
19
+ if (is_rtl()) {
20
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('popper');
21
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap.rtl');
22
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
23
+ } else {
24
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
25
  }
26
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
35
  call_user_func(array($this, preg_replace("/[^a-zA-Z0-9]/", "", $tab)));
36
  }
37
 
38
+ //Load the Themes and Plugins
39
+ add_filter('sq_themes', array(SQ_Classes_ObjController::getClass('SQ_Models_ImportExport'), 'getAvailableThemes'));
40
+ add_filter('sq_plugins', array(SQ_Classes_ObjController::getClass('SQ_Models_ImportExport'), 'getAvailablePlugins'));
41
+ $this->platforms = apply_filters('sq_importList', false);
42
+
43
  //@ob_flush();
44
  echo $this->getView('Onboarding/' . ucfirst($tab));
45
  }
62
  $seoCheck->getSourceCode();
63
  $this->metas = $seoCheck->checkMetas();
64
 
 
65
  break;
66
 
67
+ case 'sq_onboarding_settings':
68
+ $sq_onboarding_data = SQ_Classes_Helpers_Tools::getValue('sq_onboarding_data');
69
+ SQ_Classes_Helpers_Tools::saveOptions('sq_onboarding_data', $sq_onboarding_data);
70
+
71
+ if (isset($sq_onboarding_data['seo_level'])) {
72
+ SQ_Classes_Helpers_Tools::saveOptions('sq_seoexpert', ($sq_onboarding_data['seo_level'] == 'expert'));
73
+ }
74
+ if (isset($sq_onboarding_data['website_type'])) {
75
+ SQ_Classes_Helpers_Tools::saveOptions('sq_jsonld_type', ($sq_onboarding_data['website_type'] == 'personal' ? 'Person' : 'Organization'));
76
+ }
77
+
78
+ break;
79
  case 'sq_onboarding_commitment':
80
  SQ_Classes_Helpers_Tools::saveOptions('sq_seojourney', date('Y-m-d'));
81
 
controllers/Overview.php CHANGED
@@ -12,6 +12,11 @@ class SQ_Controllers_Overview extends SQ_Classes_FrontController {
12
  //Checkin to API V2
13
  $this->checkin = SQ_Classes_RemoteController::checkin();
14
 
 
 
 
 
 
15
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
16
  if (is_rtl()) {
17
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('popper');
@@ -61,7 +66,7 @@ class SQ_Controllers_Overview extends SQ_Classes_FrontController {
61
  <input type="hidden" name="alert" value="sq_alert_journey"/>
62
  <button type="submit" class="btn float-right bg-transparent p-0 m-0">x</button>
63
  </form>
64
- <?php echo sprintf(esc_html__("%s, why don't you start a two weeks journey for better rankings? %sStart driving your most valuable pages to Better Rankings today with your current plan.%s", _SQ_PLUGIN_NAME_), '<strong>' . $username . '</strong>', '<br /><a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_onboarding', 'step2.1') . '" style="font-weight: bold;" >', '</a>'); ?>
65
  </div>
66
  <?php
67
  }
12
  //Checkin to API V2
13
  $this->checkin = SQ_Classes_RemoteController::checkin();
14
 
15
+ if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
16
+ echo $this->getView('Errors/Connect');
17
+ return;
18
+ }
19
+
20
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
21
  if (is_rtl()) {
22
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('popper');
66
  <input type="hidden" name="alert" value="sq_alert_journey"/>
67
  <button type="submit" class="btn float-right bg-transparent p-0 m-0">x</button>
68
  </form>
69
+ <?php echo sprintf(esc_html__("%s, why don't you start a two weeks journey for better rankings? %sStart driving your most valuable pages to Better Rankings today with your current plan.%s", _SQ_PLUGIN_NAME_), '<strong>' . $username . '</strong>', '<br /><a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_onboarding', 'journey1') . '" style="font-weight: bold;" >', '</a>'); ?>
70
  </div>
71
  <?php
72
  }
controllers/Patterns.php CHANGED
@@ -130,7 +130,7 @@ class SQ_Controllers_Patterns extends SQ_Classes_FrontController {
130
 
131
  foreach ($all_patterns as $pattern => $title) {
132
  $name = preg_replace('/{{([^\}]+)}}/s', '$1', $pattern);
133
- $all_patterns[$pattern] = $patterns->$name;
134
  }
135
  }
136
 
130
 
131
  foreach ($all_patterns as $pattern => $title) {
132
  $name = preg_replace('/{{([^\}]+)}}/s', '$1', $pattern);
133
+ $all_patterns[$pattern] = array('value' => $patterns->$name, 'details' => $all_patterns[$pattern]);
134
  }
135
  }
136
 
controllers/Post.php CHANGED
@@ -8,8 +8,6 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
8
  public function init() {
9
  parent::init();
10
 
11
- //Load post style in post edit
12
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('post');
13
  if (is_rtl()) {
14
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
15
  }
@@ -37,7 +35,7 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
37
  add_action('wp_trash_post', array(SQ_Classes_ObjController::getClass('SQ_Models_PostsList'), 'hookUpdateStatus'));
38
 
39
  if (SQ_Classes_Helpers_Tools::getOption('sq_auto_sitemap')) {
40
- add_action('transition_post_status', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps'), 'refreshSitemap'), 9999, 3);
41
  }
42
 
43
  //Make sure the URL is local and not changed by other plugins
@@ -97,8 +95,9 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
97
  @preg_match_all('/<img[^>]*src=[\'"]([^\'"]+)[\'"][^>]*>/i', stripslashes($post_data['post_content']), $out);
98
 
99
  if (!empty($out)) {
100
- if (!is_array($out[1]) || count((array)$out[1]) == 0)
101
  return $post_data;
 
102
 
103
  if (get_bloginfo('wpurl') <> '') {
104
  $domain = parse_url(home_url(), PHP_URL_HOST);
@@ -123,31 +122,62 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
123
  }
124
 
125
  $time = microtime(true);
 
 
 
 
126
  foreach ($urls as $url) {
127
- if ($file = $this->model->upload_image($url)) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
  if (!file_is_valid_image($file['file']))
129
  continue;
130
 
131
  $local_file = $file['url'];
132
  if ($local_file !== false) {
 
 
 
 
 
133
  $post_data['post_content'] = str_replace($url, $local_file, $post_data['post_content']);
134
 
135
- if (!$this->model->findAttachmentByUrl(basename($url))) {
136
- $attach_id = wp_insert_attachment(array(
137
- 'post_mime_type' => $file['type'],
138
- 'post_title' => SQ_Classes_Helpers_Tools::getValue('sq_keyword', preg_replace('/\.[^.]+$/', '', $file['filename'])),
139
- 'post_content' => '',
140
- 'post_status' => 'inherit',
141
- 'guid' => $local_file
142
- ), $file['file'], $postarr['ID']);
143
-
144
- $attach_data = wp_generate_attachment_metadata($attach_id, $file['file']);
145
- wp_update_attachment_metadata($attach_id, $attach_data);
146
- }
147
  }
148
  }
149
 
150
- if (microtime(true) - $time >= 20) {
151
  break;
152
  }
153
 
8
  public function init() {
9
  parent::init();
10
 
 
 
11
  if (is_rtl()) {
12
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
13
  }
35
  add_action('wp_trash_post', array(SQ_Classes_ObjController::getClass('SQ_Models_PostsList'), 'hookUpdateStatus'));
36
 
37
  if (SQ_Classes_Helpers_Tools::getOption('sq_auto_sitemap')) {
38
+ add_action('transition_post_status', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps'), 'refreshSitemap'), PHP_INT_MAX, 3);
39
  }
40
 
41
  //Make sure the URL is local and not changed by other plugins
95
  @preg_match_all('/<img[^>]*src=[\'"]([^\'"]+)[\'"][^>]*>/i', stripslashes($post_data['post_content']), $out);
96
 
97
  if (!empty($out)) {
98
+ if (!is_array($out[1]) || count((array)$out[1]) == 0) {
99
  return $post_data;
100
+ }
101
 
102
  if (get_bloginfo('wpurl') <> '') {
103
  $domain = parse_url(home_url(), PHP_URL_HOST);
122
  }
123
 
124
  $time = microtime(true);
125
+
126
+ //get the already downloaded images
127
+ $images = get_post_meta((int)$postarr['ID'], '_sq_image_downloaded');
128
+
129
  foreach ($urls as $url) {
130
+
131
+ //Set the title and filename
132
+ $basename = md5(basename($url));
133
+ $keyword = SQ_Classes_Helpers_Tools::getValue('sq_keyword', false);
134
+ if ($keyword) {
135
+ $title = preg_replace('|[^a-z0-9-~+_.?#=!&;,/:%@$\|*\'()\[\]\\x80-\\xff ]|i', '', $keyword);
136
+ $basename = preg_replace('|[^a-z0-9-_]|i', '', str_replace(' ', '-', strtolower($keyword)));
137
+ }
138
+
139
+ //check the images
140
+ foreach ($images as $key => $local) {
141
+ $local = json_decode($local, true);
142
+ if ($local['url'] == md5($url)) {
143
+
144
+ //replace the image in the content
145
+ $post_data['post_content'] = str_replace($url, $local['file'], $post_data['post_content']);
146
+
147
+ continue 2;
148
+ }
149
+ }
150
+
151
+ //Upload the image on server
152
+ if ($file = $this->model->upload_image($url, $basename)) {
153
  if (!file_is_valid_image($file['file']))
154
  continue;
155
 
156
  $local_file = $file['url'];
157
  if ($local_file !== false) {
158
+
159
+ //save as downloaded image to avoid duplicates
160
+ add_post_meta((int)$postarr['ID'], '_sq_image_downloaded', wp_json_encode(array('url' => md5($url), 'file' => $local_file)));
161
+
162
+ //replace the image in the content
163
  $post_data['post_content'] = str_replace($url, $local_file, $post_data['post_content']);
164
 
165
+ //add the attachment image
166
+ $attach_id = wp_insert_attachment(array(
167
+ 'post_mime_type' => $file['type'],
168
+ 'post_title' => $title,
169
+ 'post_content' => '',
170
+ 'post_status' => 'inherit',
171
+ 'guid' => $local_file
172
+ ), $file['file'], $postarr['ID']);
173
+
174
+ $attach_data = wp_generate_attachment_metadata($attach_id, $file['file']);
175
+ wp_update_attachment_metadata($attach_id, $attach_data);
176
+
177
  }
178
  }
179
 
180
+ if (microtime(true) - $time >= 10) {
181
  break;
182
  }
183
 
controllers/PostsList.php CHANGED
@@ -3,7 +3,7 @@ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  class SQ_Controllers_PostsList extends SQ_Classes_FrontController {
5
 
6
- /** @var array Posts types in */
7
  private $_types = array();
8
  private $_taxonomies = array();
9
 
@@ -30,9 +30,23 @@ class SQ_Controllers_PostsList extends SQ_Classes_FrontController {
30
  array_push($this->_types, 'pages');
31
  array_push($this->_types, 'media');
32
 
33
- $this->_taxonomies = get_taxonomies(array('public' => true));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
- //SQ_Debug::dump($this->_types,$this->_taxonomies);
36
 
37
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
38
  return;
3
 
4
  class SQ_Controllers_PostsList extends SQ_Classes_FrontController {
5
 
6
+ /** @var array Post Type in */
7
  private $_types = array();
8
  private $_taxonomies = array();
9
 
30
  array_push($this->_types, 'pages');
31
  array_push($this->_types, 'media');
32
 
33
+ //Exclude types for SLA
34
+ $excludes = SQ_Classes_Helpers_Tools::getOption('sq_sla_exclude_post_types');
35
+
36
+ if (!empty($this->_types) && !empty($excludes)) {
37
+ foreach ($excludes as $exclude) {
38
+ if($exclude) {
39
+ if (false !== $key = array_search($exclude, $this->_types)) {
40
+ unset($this->_types[$key]);
41
+ }
42
+ if (false !== $key = array_search($exclude . 's', $this->_types)) {
43
+ unset($this->_types[$key]);
44
+ }
45
+ }
46
+ }
47
+ }
48
 
49
+ $this->_taxonomies = get_taxonomies(array('public' => true));
50
 
51
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
52
  return;
controllers/Ranking.php CHANGED
@@ -11,8 +11,11 @@ class SQ_Controllers_Ranking extends SQ_Classes_FrontController {
11
  public $checkin;
12
 
13
  function init() {
14
- //Clear the Scripts and Styles from other plugins
15
- SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->clearStyles();
 
 
 
16
 
17
  //Checkin to API V2
18
  $this->checkin = SQ_Classes_RemoteController::checkin();
@@ -88,14 +91,18 @@ class SQ_Controllers_Ranking extends SQ_Classes_FrontController {
88
  }
89
 
90
  public function gscsync() {
91
- $args = array();
92
- $args['max_results'] = '100';
93
- $args['max_position'] = '30';
94
 
95
- if ($this->suggested = SQ_Classes_RemoteController::syncGSC($args)) {
96
- if (is_wp_error($this->suggested)) {
97
- SQ_Classes_Error::setError(esc_html__("Could not load data.", _SQ_PLUGIN_NAME_));
98
- $this->suggested = array();
 
 
 
 
 
 
 
99
  }
100
  }
101
 
@@ -132,7 +139,8 @@ class SQ_Controllers_Ranking extends SQ_Classes_FrontController {
132
  //Save the settings on API too
133
  $args = array();
134
  $args['sq_google_country'] = SQ_Classes_Helpers_Tools::getValue('sq_google_country');
135
- $args['sq_google_language'] = 'en';
 
136
  SQ_Classes_RemoteController::saveSettings($args);
137
  ///////////////////////////////
138
 
11
  public $checkin;
12
 
13
  function init() {
14
+
15
+ if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
16
+ echo $this->getView('Errors/Connect');
17
+ return;
18
+ }
19
 
20
  //Checkin to API V2
21
  $this->checkin = SQ_Classes_RemoteController::checkin();
91
  }
92
 
93
  public function gscsync() {
 
 
 
94
 
95
+ $this->suggested = array();
96
+
97
+ if($this->checkin->connection_gsc) {
98
+ $args = array();
99
+ $args['max_results'] = '100';
100
+ $args['max_position'] = '100';
101
+ if ($this->suggested = SQ_Classes_RemoteController::syncGSC($args)) {
102
+ if (is_wp_error($this->suggested)) {
103
+ SQ_Classes_Error::setError(esc_html__("Could not load data.", _SQ_PLUGIN_NAME_));
104
+
105
+ }
106
  }
107
  }
108
 
139
  //Save the settings on API too
140
  $args = array();
141
  $args['sq_google_country'] = SQ_Classes_Helpers_Tools::getValue('sq_google_country');
142
+ $args['sq_google_language'] = SQ_Classes_Helpers_Tools::getValue('sq_google_language');
143
+ $args['sq_google_device'] = SQ_Classes_Helpers_Tools::getValue('sq_google_device');
144
  SQ_Classes_RemoteController::saveSettings($args);
145
  ///////////////////////////////
146
 
controllers/Research.php CHANGED
@@ -21,9 +21,10 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
21
  public $checkin;
22
 
23
  function init() {
24
-
25
- //Clear the Scripts and Styles from other plugins
26
- SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->clearStyles();
 
27
 
28
  //Checkin to API V2
29
  $this->checkin = SQ_Classes_RemoteController::checkin();
@@ -310,7 +311,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
310
 
311
  SQ_Classes_Helpers_Tools::setHeader('json');
312
 
313
- $id = (string)SQ_Classes_Helpers_Tools::getValue('id', 0);
314
  $name = (string)SQ_Classes_Helpers_Tools::getValue('name', 0);
315
  $color = (string)SQ_Classes_Helpers_Tools::getValue('color', '#ffffff');
316
 
@@ -482,6 +483,31 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
482
  SQ_Classes_Error::setError(esc_html__("Error! You have to enter a previously saved backup file.", _SQ_PLUGIN_NAME_) . " <br /> ");
483
  }
484
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
485
  /************************************************* AJAX */
486
  case 'sq_ajax_briefcase_doserp':
487
  if (!current_user_can('sq_manage_settings')) {
21
  public $checkin;
22
 
23
  function init() {
24
+ if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
25
+ echo $this->getView('Errors/Connect');
26
+ return;
27
+ }
28
 
29
  //Checkin to API V2
30
  $this->checkin = SQ_Classes_RemoteController::checkin();
311
 
312
  SQ_Classes_Helpers_Tools::setHeader('json');
313
 
314
+ $id = (int)SQ_Classes_Helpers_Tools::getValue('id', 0);
315
  $name = (string)SQ_Classes_Helpers_Tools::getValue('name', 0);
316
  $color = (string)SQ_Classes_Helpers_Tools::getValue('color', '#ffffff');
317
 
483
  SQ_Classes_Error::setError(esc_html__("Error! You have to enter a previously saved backup file.", _SQ_PLUGIN_NAME_) . " <br /> ");
484
  }
485
  break;
486
+ case 'sq_briefcase_savemain':
487
+ if (!current_user_can('sq_manage_snippet')) {
488
+ $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
489
+ SQ_Classes_Helpers_Tools::setHeader('json');
490
+ echo wp_json_encode($response);
491
+ exit();
492
+ }
493
+
494
+ SQ_Classes_Helpers_Tools::setHeader('json');
495
+
496
+ $post_id = (int)SQ_Classes_Helpers_Tools::getValue('post_id', 0);
497
+ $keyword = (string)SQ_Classes_Helpers_Tools::getValue('keyword', '');
498
+
499
+ if ((int)$post_id > 0 && $keyword <> '') {
500
+ $args = array();
501
+
502
+ $args['post_id'] = $post_id;
503
+ $args['keyword'] = $keyword;
504
+ SQ_Classes_RemoteController::saveBriefcaseMainKeyword($args);
505
+
506
+ echo wp_json_encode(array('saved' => esc_html__("Saved!", _SQ_PLUGIN_NAME_)));
507
+ } else {
508
+ echo wp_json_encode(array('error' => esc_html__("Invalid params!", _SQ_PLUGIN_NAME_)));
509
+ }
510
+ exit();
511
  /************************************************* AJAX */
512
  case 'sq_ajax_briefcase_doserp':
513
  if (!current_user_can('sq_manage_settings')) {
controllers/SeoSettings.php CHANGED
@@ -6,9 +6,6 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
6
  public $pages = array();
7
 
8
  function init() {
9
- //Clear the Scripts and Styles from other plugins
10
- SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->clearStyles();
11
-
12
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'automation');
13
 
14
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
@@ -19,6 +16,8 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
19
  } else {
20
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
21
  }
 
 
22
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
23
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('fontawesome');
24
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('global');
@@ -62,6 +61,13 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
62
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('snippet');
63
  }
64
 
 
 
 
 
 
 
 
65
  public function jsonld() {
66
  add_action('sq_form_notices', array($this, 'getNotificationBar'));
67
  }
@@ -114,6 +120,33 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
114
 
115
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  ///////////////////////////////////////////SEO SETTINGS METAS
118
  case 'sq_seosettings_metas':
119
  if (!current_user_can('sq_manage_settings')) {
@@ -254,8 +287,8 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
254
  if (SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Person']['telephone'] <> '') {
255
  SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Person']['telephone'] = '+' . ltrim(SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Person']['telephone'], '+');
256
  }
257
- if (SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Organization']['telephone'] <> '') {
258
- SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Organization']['telephone'] = '+' . ltrim(SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Organization']['telephone'], '+');
259
  }
260
 
261
  //save the options in database
@@ -357,6 +390,16 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
357
  SQ_Classes_Error::setError(esc_html__("Error! Could not disconnect the account.", _SQ_PLUGIN_NAME_) . " <br /> ");
358
  }
359
  break;
 
 
 
 
 
 
 
 
 
 
360
  case 'sq_seosettings_backupsettings':
361
  if (!current_user_can('sq_manage_settings')) {
362
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
@@ -448,10 +491,10 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
448
  $sql_file = @base64_decode($sql_file);
449
  }
450
 
451
- if ($sql_file <> '' && strpos($sql_file, 'CREATE TABLE IF NOT EXISTS') !== false) {
452
  try {
453
- $queries = explode(";" . PHP_EOL, $sql_file);
454
- $queries = str_replace(PHP_EOL, "", $queries);
455
  SQ_Classes_ObjController::getClass('SQ_Models_ImportExport')->executeSql($queries);
456
  SQ_Classes_Error::setError(esc_html__("Great! The SEO backup is restored.", _SQ_PLUGIN_NAME_) . " <br /> ", 'success');
457
 
@@ -680,7 +723,9 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
680
  exit();
681
  }
682
 
683
- //remove connection with Google Analytics
 
 
684
  SQ_Classes_RemoteController::checkin();
685
 
686
  echo wp_json_encode(array());
6
  public $pages = array();
7
 
8
  function init() {
 
 
 
9
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'automation');
10
 
11
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
16
  } else {
17
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
18
  }
19
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-select');
20
+
21
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
22
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('fontawesome');
23
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('global');
61
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('snippet');
62
  }
63
 
64
+ public function links() {
65
+ add_action('sq_form_notices', array($this, 'getNotificationBar'));
66
+
67
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('highlight');
68
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('snippet');
69
+ }
70
+
71
  public function jsonld() {
72
  add_action('sq_form_notices', array($this, 'getNotificationBar'));
73
  }
120
 
121
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
122
 
123
+ case 'sq_seosettings_links':
124
+ if (!current_user_can('sq_manage_settings')) {
125
+ return;
126
+ }
127
+
128
+ //Save the settings
129
+ if (!empty($_POST)) {
130
+ SQ_Classes_ObjController::getClass('SQ_Models_Settings')->saveValues($_POST);
131
+ }
132
+
133
+ //Save custom robots
134
+ $links = SQ_Classes_Helpers_Tools::getValue('links_permission', '', true);
135
+ $links = explode(PHP_EOL, $links);
136
+ $links = str_replace("\r", "", $links);
137
+
138
+ if (!empty($links)) {
139
+ SQ_Classes_Helpers_Tools::$options['sq_external_exception'] = array_unique($links);
140
+ }
141
+
142
+ //save the options in database
143
+ SQ_Classes_Helpers_Tools::saveOptions();
144
+
145
+ //show the saved message
146
+ if (!SQ_Classes_Error::isError()) SQ_Classes_Error::setMessage(esc_html__("Saved", _SQ_PLUGIN_NAME_));
147
+
148
+ break;
149
+
150
  ///////////////////////////////////////////SEO SETTINGS METAS
151
  case 'sq_seosettings_metas':
152
  if (!current_user_can('sq_manage_settings')) {
287
  if (SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Person']['telephone'] <> '') {
288
  SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Person']['telephone'] = '+' . ltrim(SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Person']['telephone'], '+');
289
  }
290
+ if (SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Organization']['contactPoint']['telephone'] <> '') {
291
+ SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Organization']['contactPoint']['telephone'] = '+' . ltrim(SQ_Classes_Helpers_Tools::$options['sq_jsonld']['Organization']['contactPoint']['telephone'], '+');
292
  }
293
 
294
  //save the options in database
390
  SQ_Classes_Error::setError(esc_html__("Error! Could not disconnect the account.", _SQ_PLUGIN_NAME_) . " <br /> ");
391
  }
392
  break;
393
+ case 'sq_seosettings_ga_check':
394
+ case 'sq_seosettings_gsc_check':
395
+ if (!current_user_can('sq_manage_settings')) {
396
+ return;
397
+ }
398
+ //Refresh the checkin on login
399
+ delete_transient('sq_checkin');
400
+
401
+ break;
402
+
403
  case 'sq_seosettings_backupsettings':
404
  if (!current_user_can('sq_manage_settings')) {
405
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
491
  $sql_file = @base64_decode($sql_file);
492
  }
493
 
494
+ if ($sql_file <> '' && strpos($sql_file, 'INSERT INTO') !== false) {
495
  try {
496
+
497
+ $queries = explode("INSERT INTO", $sql_file);
498
  SQ_Classes_ObjController::getClass('SQ_Models_ImportExport')->executeSql($queries);
499
  SQ_Classes_Error::setError(esc_html__("Great! The SEO backup is restored.", _SQ_PLUGIN_NAME_) . " <br /> ", 'success');
500
 
723
  exit();
724
  }
725
 
726
+ //delete local checking cache
727
+ delete_transient('sq_checkin');
728
+ //check the connection again
729
  SQ_Classes_RemoteController::checkin();
730
 
731
  echo wp_json_encode(array());
controllers/Sitemaps.php CHANGED
@@ -20,6 +20,8 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
20
  add_action('wp', array($this, 'hookPreventRedirect'), 9);
21
 
22
  add_filter('user_trailingslashit', array($this, 'untrailingslashit'));
 
 
23
  add_action('sq_processPing', array($this, 'processCron'));
24
 
25
  }
@@ -71,6 +73,13 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
71
  }
72
  }
73
 
 
 
 
 
 
 
 
74
  public function refreshSitemap($new_status, $old_status, $post) {
75
  if ($old_status <> $new_status && $new_status = 'publish') {
76
  if (SQ_Classes_Helpers_Tools::getOption('sq_sitemap_ping')) {
@@ -277,9 +286,17 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
277
  case 'sitemap':
278
  $this->showSitemapHeader();
279
  $sq_sitemap = SQ_Classes_Helpers_Tools::getOption('sq_sitemap');
 
280
 
281
  if (!empty($sq_sitemap))
282
  foreach ($sq_sitemap as $name => $value) {
 
 
 
 
 
 
 
283
  //force to show products if not preset
284
  if ($name == 'sitemap-product' && !SQ_Classes_Helpers_Tools::isEcommerce()) {
285
  continue;
@@ -459,6 +476,9 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
459
  return esc_url(trailingslashit(home_url())) . $sitemap;
460
  }
461
 
 
 
 
462
  public function processCron() {
463
  SQ_Classes_ObjController::getClass('SQ_Classes_Helpers_Tools');
464
 
@@ -480,8 +500,8 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
480
  protected function SendPing($sitemapUrl) {
481
  $success = true;
482
  $urls = array(
483
- "http://www.google.com/webmasters/sitemaps/ping?sitemap=%s",
484
- "http://www.bing.com/webmaster/ping.aspx?siteMap=%s",
485
  );
486
 
487
  $options = array(
20
  add_action('wp', array($this, 'hookPreventRedirect'), 9);
21
 
22
  add_filter('user_trailingslashit', array($this, 'untrailingslashit'));
23
+
24
+ //Process the cron if created
25
  add_action('sq_processPing', array($this, 'processCron'));
26
 
27
  }
73
  }
74
  }
75
 
76
+ /**
77
+ * Send the sitemap to Search Engines only if a page is freshly posted
78
+ *
79
+ * @param $new_status
80
+ * @param $old_status
81
+ * @param $post
82
+ */
83
  public function refreshSitemap($new_status, $old_status, $post) {
84
  if ($old_status <> $new_status && $new_status = 'publish') {
85
  if (SQ_Classes_Helpers_Tools::getOption('sq_sitemap_ping')) {
286
  case 'sitemap':
287
  $this->showSitemapHeader();
288
  $sq_sitemap = SQ_Classes_Helpers_Tools::getOption('sq_sitemap');
289
+ $patterns = SQ_Classes_Helpers_Tools::getOption('patterns');
290
 
291
  if (!empty($sq_sitemap))
292
  foreach ($sq_sitemap as $name => $value) {
293
+
294
+ //check if available from SEO Automation
295
+ $pname = str_replace(array('sitemap-', 'post_'),'',$name);
296
+ if(isset($patterns[$pname]['do_sitemap']) && !$patterns[$pname]['do_sitemap'] ){
297
+ continue;
298
+ }
299
+
300
  //force to show products if not preset
301
  if ($name == 'sitemap-product' && !SQ_Classes_Helpers_Tools::isEcommerce()) {
302
  continue;
476
  return esc_url(trailingslashit(home_url())) . $sitemap;
477
  }
478
 
479
+ /**
480
+ * Process the on-time cron if called
481
+ */
482
  public function processCron() {
483
  SQ_Classes_ObjController::getClass('SQ_Classes_Helpers_Tools');
484
 
500
  protected function SendPing($sitemapUrl) {
501
  $success = true;
502
  $urls = array(
503
+ "https://www.google.com/ping?sitemap=%s",
504
+ "http://www.bing.com/ping?sitemap=%s",
505
  );
506
 
507
  $options = array(
controllers/Snippet.php CHANGED
@@ -3,7 +3,7 @@ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
5
 
6
- /** @var array Posts types in */
7
  private $_types = array();
8
  public $post;
9
 
3
 
4
  class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
5
 
6
+ /** @var array Post Type in */
7
  private $_types = array();
8
  public $post;
9
 
core/BlockAssistant.php CHANGED
@@ -3,7 +3,7 @@ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  class SQ_Core_BlockAssistant extends SQ_Classes_BlockController {
5
 
6
- public function hookGetContent(){
7
  echo $this->getView('Blocks/Assistant');
8
  }
9
  }
3
 
4
  class SQ_Core_BlockAssistant extends SQ_Classes_BlockController {
5
 
6
+ public function init(){
7
  echo $this->getView('Blocks/Assistant');
8
  }
9
  }
core/BlockConnect.php CHANGED
@@ -5,14 +5,12 @@ class SQ_Core_BlockConnect extends SQ_Classes_BlockController {
5
 
6
  public $message;
7
 
8
- public function hookGetContent() {
9
  /* If logged in, then return */
10
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
11
  return;
12
  }
13
 
14
- //SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('connect');
15
-
16
  echo $this->getView('Blocks/Connect');
17
  }
18
 
5
 
6
  public $message;
7
 
8
+ public function init() {
9
  /* If logged in, then return */
10
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
11
  return;
12
  }
13
 
 
 
14
  echo $this->getView('Blocks/Connect');
15
  }
16
 
core/BlockFeatures.php CHANGED
@@ -3,10 +3,609 @@ 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
  }
3
 
4
  class SQ_Core_BlockFeatures extends SQ_Classes_BlockController {
5
 
6
+ public function init() {
 
 
7
  echo $this->getView('Blocks/Features');
8
  }
9
 
10
+ public function getFeatures() {
11
+ $connect = SQ_Classes_Helpers_Tools::getOption('connect');
12
+ $features = array(
13
+ array(
14
+ 'title' => "Squirrly Cloud App",
15
+ 'description' => "Many Squirrly features work from <bold>cloud.squirrly.co</bold> and helps you optimize the content and manage the keywords, audits and rankings.",
16
+ 'mode' => "Free",
17
+ 'option' => false,
18
+ 'active' => true,
19
+ 'optional' => false,
20
+ 'connection' => true,
21
+ 'logo' => 'squirrly.png',
22
+ 'link' => SQ_Classes_RemoteController::getMySquirrlyLink('dashboard'),
23
+ 'details' => 'https://howto.squirrly.co/kb/squirrly-cloud-app/',
24
+ ), //Squirrly Cloud
25
+ array(
26
+ 'title' => "14 Days Journey Course",
27
+ 'description' => "<strong>Improve your Online Presence</strong> by knowing how your website is performing. All you need now is to start driving One of your most valuable pages to <strong>Better Rankings</strong>.",
28
+ 'mode' => "Free",
29
+ 'option' => false,
30
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_seojourney'),
31
+ 'optional' => false,
32
+ 'connection' => true,
33
+ 'logo' => 'journey_92.png',
34
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_onboarding', 'journey1'),
35
+ 'details' => 'https://howto.squirrly.co/kb/install-squirrly-seo-plugin/#journey',
36
+ ), //14 Days Journey Course
37
+ array(
38
+ 'title' => "Smart SEO Strategy",
39
+ 'description' => "The Non-Human SEO Consultant with <strong>over 100+ signals</strong> that prepares your goals to take you closer to the first page of Google.",
40
+ 'mode' => "Free",
41
+ 'option' => false,
42
+ 'active' => true,
43
+ 'optional' => false,
44
+ 'connection' => true,
45
+ 'logo' => 'goals_92.png',
46
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard', '', array('#tasks')),
47
+ 'details' => 'https://howto.squirrly.co/kb/next-seo-goals/',
48
+ ),//Next SEO Goals
49
+ array(
50
+ 'title' => "Progress & Achievements",
51
+ 'description' => "Displays <strong>Success Messages</strong> and <strong>Progress & Achievements</strong> for SEO Goals, Focus Pages, Audits, and Rankings",
52
+ 'mode' => "Free",
53
+ 'option' => false,
54
+ 'active' => true,
55
+ 'optional' => false,
56
+ 'connection' => true,
57
+ 'logo' => 'progress_92.png',
58
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard', '', array('#tasks')),
59
+ 'details' => 'https://howto.squirrly.co/kb/squirrly-seo-goals/',
60
+ ),//Progress
61
+ array(
62
+ 'title' => "Focus Pages",
63
+ 'description' => "Brings you clear methods to take your pages <strong>from never found to always found on Google</strong>. Rank your pages by influencing the right ranking factors.",
64
+ 'mode' => "Free",
65
+ 'option' => false,
66
+ 'active' => true,
67
+ 'optional' => false,
68
+ 'connection' => true,
69
+ 'logo' => 'focuspages_92.png',
70
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_focuspages', 'pagelist'),
71
+ 'details' => 'https://howto.squirrly.co/kb/focus-pages-page-audits/',
72
+ ), //Focus Pages
73
+ array(
74
+ 'title' => "Chances of Ranking",
75
+ 'description' => "Get information about <strong>Chances of Ranking for each Focus Page</strong> based on our <strong>Machine Learning Algorithms and Ranking Vision A.I.</strong>",
76
+ 'mode' => "Free",
77
+ 'option' => false,
78
+ 'active' => true,
79
+ 'optional' => false,
80
+ 'connection' => true,
81
+ 'logo' => 'focuspages_92.png',
82
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_focuspages', 'pagelist'),
83
+ 'details' => 'https://howto.squirrly.co/kb/focus-pages-page-audits/#chance_to_rank',
84
+ ), //Chances of Ranking
85
+ array(
86
+ 'title' => "Keyword Research",
87
+ 'description' => "Find the <strong>Best Keywords</strong> that your own website can rank for and get <strong>personalized competition data</strong> for each keyword. Provides info on Region that was used for Keyword Research.",
88
+ 'mode' => "Free",
89
+ 'option' => false ,
90
+ 'active' => true,
91
+ 'optional' => false,
92
+ 'connection' => true,
93
+ 'logo' => 'kr_92.png',
94
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_research', 'research'),
95
+ 'details' => 'https://howto.squirrly.co/kb/keyword-research-and-seo-strategy/',
96
+ ), //Keyword Research
97
+ array(
98
+ 'title' => "Google Search & Trends",
99
+ 'description' => "Keyword Research uses tird-party services like <strong>Google Search API and Google Trends API</strong> to get live research data for each keyword. The research algorithm processes <strong>more than 100 processes</strong> for each keyword you selected.",
100
+ 'mode' => "Free",
101
+ 'option' => false,
102
+ 'active' => true,
103
+ 'optional' => false,
104
+ 'connection' => true,
105
+ 'logo' => 'kr_92.png',
106
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_research', 'research'),
107
+ 'details' => 'https://howto.squirrly.co/kb/keyword-research-and-seo-strategy/',
108
+ ), //Keyword Research
109
+ array(
110
+ 'title' => "Briefcase",
111
+ 'description' => "Add keywords in your portfolio based on your current Campaigns, Trends, Performance <strong>for a successful SEO strategy</strong>.",
112
+ 'mode' => "Free",
113
+ 'option' => false,
114
+ 'active' => true,
115
+ 'optional' => false,
116
+ 'connection' => true,
117
+ 'logo' => 'briefcase_92.png',
118
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_research', 'briefcase'),
119
+ 'details' => 'https://howto.squirrly.co/kb/keyword-research-and-seo-strategy/#briefcase',
120
+ ),//SEO Briefcase
121
+ array(
122
+ 'title' => "Live Assistant",
123
+ 'description' => "Publish <strong>content that is fully optimized</strong> for BOTH Search Engines and Humans – every single time!",
124
+ 'mode' => "Free",
125
+ 'option' => false,
126
+ 'active' => true,
127
+ 'optional' => false,
128
+ 'connection' => true,
129
+ 'logo' => 'sla_92.png',
130
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_assistant'),
131
+ 'details' => 'https://howto.squirrly.co/kb/squirrly-live-assistant/',
132
+ ),//Live Assistant
133
+ array(
134
+ 'title' => "Keywords Optimization",
135
+ 'description' => "Optimize for <strong>Multiple Keywords at once in a Single Page</strong>. Automatically Calculates Optimization Scores for all secondary keywords and displays them to you as you’re typing your page.",
136
+ 'mode' => "Free",
137
+ 'option' => false,
138
+ 'active' => true,
139
+ 'optional' => false,
140
+ 'connection' => true,
141
+ 'logo' => 'briefcase_92.png',
142
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_assistant'),
143
+ 'details' => 'https://howto.squirrly.co/kb/squirrly-live-assistant/#add_keyword',
144
+ ),//Keywords Optimization
145
+ array(
146
+ 'title' => "Elementor Website Builder",
147
+ 'description' => "The SEO Live Assistant <strong>works on the front-end of Elementor</strong>, just as you're creating or editing your Elementor page.",
148
+ 'mode' => "Free",
149
+ 'option' => 'sq_sla_frontend',
150
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_sla_frontend'),
151
+ 'optional' => true,
152
+ 'connection' => false,
153
+ 'logo' => 'sla_92.png',
154
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_assistant', 'settings'),
155
+ 'details' => 'https://howto.squirrly.co/kb/squirrly-live-assistant/#elementor',
156
+ ),//Live Assistant Elementor
157
+ array(
158
+ 'title' => "Google Rankings with GSC",
159
+ 'description' => "Get <strong>Google Search Console (GSC)</strong> average <strong>possitions, clicks and impressions</strong> for organic keywords.",
160
+ 'mode' => "Free",
161
+ 'option' => false,
162
+ 'active' => true,
163
+ 'optional' => false,
164
+ 'connection' => true,
165
+ 'logo' => 'ranking_92.png',
166
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_rankings', 'rankings'),
167
+ 'details' => 'https://howto.squirrly.co/kb/ranking-serp-checker/',
168
+ ),//Google SERP with GSC
169
+ array(
170
+ 'title' => "SEO Automation",
171
+ 'description' => "Configure the <strong>SEO in 2 minutes</strong> for the entire website without writing a line of code.",
172
+ 'mode' => "Free",
173
+ 'option' => 'sq_auto_pattern',
174
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_pattern'),
175
+ 'optional' => true,
176
+ 'connection' => false,
177
+ 'logo' => 'automation_92.png',
178
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation'),
179
+ 'details' => 'https://howto.squirrly.co/kb/seo-automation/',
180
+ ),//SEO Automation
181
+ array(
182
+ 'title' => "Bulk SEO & Snippets",
183
+ 'description' => "Simplify the SEO process to <strong>Optimize all the SEO Snippets</strong> in just minutes. Edit Snippets in BULK for all post types directly from All Snippets",
184
+ 'mode' => "Free",
185
+ 'option' => false,
186
+ 'active' => true,
187
+ 'optional' => false,
188
+ 'connection' => false,
189
+ 'logo' => 'bulkseo_92.png',
190
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo'),
191
+ 'details' => 'https://howto.squirrly.co/kb/bulk-seo/',
192
+ ),//Bulk SEO
193
+ array(
194
+ 'title' => "Frontend SEO Snippet",
195
+ 'description' => "Optimize each page by loading the <strong>SEO Snippet directly on the front-end</strong> of your site. You have <strong>Custom SEO</strong> directly in the WP Admin Toolbar.",
196
+ 'mode' => "Free",
197
+ 'option' => 'sq_use_frontend',
198
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_use_frontend'),
199
+ 'optional' => true,
200
+ 'connection' => false,
201
+ 'logo' => 'bulkseo_92.png',
202
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'metas'),
203
+ 'details' => 'https://howto.squirrly.co/kb/seo-metas/#Add-Snippet-in-Frontend',
204
+ ),//Frontend SEO Snippet
205
+ array(
206
+ 'title' => "Open Graph Optimization",
207
+ 'description' => "Add Social Open Graph protocol so that <strong>your Facebook Shares look awesome</strong>.",
208
+ 'mode' => "Free",
209
+ 'option' => 'sq_auto_facebook',
210
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_facebook'),
211
+ 'optional' => true,
212
+ 'connection' => false,
213
+ 'logo' => 'social_92.png',
214
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'social'),
215
+ 'details' => 'https://howto.squirrly.co/kb/social-media-settings/#opengraph',
216
+ ),//Open Graph Optimization
217
+ array(
218
+ 'title' => "Twitter Card Optimization",
219
+ 'description' => "Add Twitter Card in your tweets so that your <strong>Twitter Shares look awesome</strong>.",
220
+ 'mode' => "Free",
221
+ 'option' => 'sq_auto_twitter',
222
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_twitter'),
223
+ 'optional' => true,
224
+ 'connection' => false,
225
+ 'logo' => 'social_92.png',
226
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'social'),
227
+ 'details' => 'https://howto.squirrly.co/kb/social-media-settings/#twittercard',
228
+ ),//Twitter Card Optimization
229
+ array(
230
+ 'title' => "Sitemap XML",
231
+ 'description' => "Use Sitemap Generator to <strong>help your website get crawled</strong> and indexed by Search Engines. Add Sitemap Support for News, Posts, Pages, Products, Tags, Categories, Taxonomies, Images, Videos, etc.",
232
+ 'mode' => "Free",
233
+ 'option' => 'sq_auto_sitemap',
234
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_sitemap'),
235
+ 'optional' => true,
236
+ 'connection' => false,
237
+ 'logo' => 'sitemap_92.png',
238
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'sitemap'),
239
+ 'details' => 'https://howto.squirrly.co/kb/sitemap-xml-settings/',
240
+ ), //XML Sitemap
241
+ array(
242
+ 'title' => "Google News",
243
+ 'description' => "For a news website it's really important to have a Google News Sitemap. This way you will have <strong>all your News Posts instantly on Google News</strong>.",
244
+ 'mode' => "Free",
245
+ 'option' => false,
246
+ 'active' => true,
247
+ 'optional' => false,
248
+ 'connection' => false,
249
+ 'logo' => 'news_92.png',
250
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'sitemap'),
251
+ 'details' => 'https://howto.squirrly.co/kb/sitemap-xml-settings/',
252
+ ), //Sitemap Instant Indexing
253
+ array(
254
+ 'title' => "JSON-LD Structured Data",
255
+ 'description' => "Edit your website's JSON-LD Schema with Squirrly's powerful <strong>semantic SEO Markup Solution</strong>. Use the built-in Structured Data or add your custom Schema code.",
256
+ 'mode' => "Free",
257
+ 'option' => 'sq_auto_jsonld',
258
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_jsonld'),
259
+ 'optional' => true,
260
+ 'connection' => false,
261
+ 'logo' => 'jsonld_92.png',
262
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'jsonld'),
263
+ 'details' => 'https://howto.squirrly.co/kb/json-ld-structured-data/',
264
+ ), //JSON-LD Optimizaition
265
+ array(
266
+ 'title' => "ACF Integration",
267
+ 'description' => "Use <strong>Advanced Custom Fields (ACF)</strong> plugin to add advanced and custom JSON-LD Schema code on your pages.",
268
+ 'mode' => "Free",
269
+ 'option' => false,
270
+ 'active' => true,
271
+ 'optional' => false,
272
+ 'connection' => false,
273
+ 'logo' => 'jsonld_92.png',
274
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'jsonld'),
275
+ 'details' => 'https://howto.squirrly.co/kb/json-ld-structured-data/#ACF',
276
+ ), //Advanced Custom Fields
277
+ array(
278
+ 'title' => "Google Analytics Tracking",
279
+ 'description' => "Add the <strong>Google Analytics</strong> and <strong>Google Tag Manager</strong> tracking on your website.",
280
+ 'mode' => "Free",
281
+ 'option' => 'sq_auto_tracking',
282
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_tracking'),
283
+ 'optional' => true,
284
+ 'connection' => false,
285
+ 'logo' => 'traffic_92.png',
286
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'tracking'),
287
+ 'details' => 'https://howto.squirrly.co/kb/google-analytics-tracking-tool/#google_analytics',
288
+ ), //Google Analytics Tracking
289
+ array(
290
+ 'title' => "AMP Support",
291
+ 'description' => sprintf("Automatically load the <strong>Accelerate Mobile Pages (AMP)</strong> support for plugins like %sAMP for WP%s or %sAMP%s.", '<a href="https://wordpress.org/plugins/accelerated-mobile-pages/" target="_blank">', '</a>', '<a href="https://wordpress.org/plugins/amp/" target="_blank">', '</a>'),
292
+ 'mode' => "Free",
293
+ 'option' => 'sq_auto_amp',
294
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_amp'),
295
+ 'optional' => true,
296
+ 'connection' => false,
297
+ 'logo' => 'amp_92.png',
298
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'tracking'),
299
+ 'details' => 'https://howto.squirrly.co/kb/google-analytics-tracking-tool/#amp_support',
300
+ ), //
301
+ array(
302
+ 'title' => "Facebook Pixel Tracking",
303
+ 'description' => "Track visitors with <strong>website and e-commerce events</strong> for better Retargeting Campaigns. <strong>Integrated with Woocommerce</strong> plugin with events like Add to Cart, Initiate Checkout, Payment, and more.",
304
+ 'mode' => "Free",
305
+ 'option' => 'sq_auto_pixels',
306
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_pixels'),
307
+ 'optional' => true,
308
+ 'connection' => false,
309
+ 'logo' => 'traffic_92.png',
310
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'tracking'),
311
+ 'details' => 'https://howto.squirrly.co/kb/google-analytics-tracking-tool/#facebook_pixel',
312
+ ), //Facebook Pixel Tracking
313
+ array(
314
+ 'title' => "Webmaster Tools",
315
+ 'description' => "Connect your website with the popular webmasters like <strong>Google Search Console (GSC), Bing, Baidu, Yandex, Alexa</strong>.",
316
+ 'mode' => "Free",
317
+ 'option' => 'sq_auto_webmasters',
318
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_webmasters'),
319
+ 'optional' => true,
320
+ 'connection' => false,
321
+ 'logo' => 'websites_92.png',
322
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'webmaster'),
323
+ 'details' => 'https://howto.squirrly.co/kb/webmaster-tools-settings/',
324
+ ), //Webmaster Tools
325
+ array(
326
+ 'title' => "Google Search Console (GSC)",
327
+ 'description' => "Connect your website with <strong>Google Search Console</strong> and get insights based on <strong>organic searched keywords</strong>.",
328
+ 'mode' => "Free",
329
+ 'option' => 'sq_auto_webmasters',
330
+ 'active' => (isset($connect['google_search_console']) ? $connect['google_search_console'] : true),
331
+ 'optional' => false,
332
+ 'connection' => true,
333
+ 'logo' => 'websites_92.png',
334
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_rankings', 'settings'),
335
+ 'details' => 'https://howto.squirrly.co/kb/ranking-serp-checker/#google_search_console',
336
+ ), //Google Search Console
337
+ array(
338
+ 'title' => "Robots.txt File",
339
+ 'description' => "Tell search engine crawlers which pages or files the crawler can or can't request from your site.",
340
+ 'mode' => "Free",
341
+ 'option' => 'sq_auto_robots',
342
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_robots'),
343
+ 'optional' => true,
344
+ 'connection' => false,
345
+ 'logo' => 'robots_92.png',
346
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'robots'),
347
+ 'details' => false,
348
+ ), //Robots.txt File
349
+ array(
350
+ 'title' => "Favicon Site Icon",
351
+ 'description' => "Add your <strong>website icon</strong> in the browser tabs and on other devices like <strong>iPhone, iPad and Android phones</strong>.",
352
+ 'mode' => "Free",
353
+ 'option' => 'sq_auto_favicon',
354
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_favicon'),
355
+ 'optional' => true,
356
+ 'connection' => false,
357
+ 'logo' => 'favicon_92.png',
358
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'favicon'),
359
+ 'details' => 'https://howto.squirrly.co/kb/website-favicon-settings/',
360
+ ), //Favicon Site Icon
361
+ array(
362
+ 'title' => "SEO Links",
363
+ 'description' => "Increase the <strong>website authority</strong> by correctly managing all the external links on your website. Instantly add <strong>nofollow</strong> to all external links.",
364
+ 'mode' => "Free",
365
+ 'option' => 'sq_auto_links',
366
+ 'active' => (bool)SQ_Classes_Helpers_Tools::getOption('sq_auto_links'),
367
+ 'optional' => true,
368
+ 'connection' => false,
369
+ 'logo' => 'links_92.png',
370
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'links'),
371
+ 'details' => 'https://howto.squirrly.co/kb/seo-links/',
372
+ ), //SEO Links
373
+ array(
374
+ 'title' => "On-Page SEO METAs",
375
+ 'description' => "Add all the required Search Engine METAs like <strong>Title Meta, Description, Canonical Link, Dublin Core, Robots Meta</strong> and more.",
376
+ 'mode' => "Free",
377
+ 'option' => 'sq_auto_metas',
378
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_auto_metas'),
379
+ 'optional' => true,
380
+ 'connection' => false,
381
+ 'logo' => 'metas_92.png',
382
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'metas'),
383
+ 'details' => 'https://howto.squirrly.co/kb/seo-metas/',
384
+ ), //On-Page SEO METAs
385
+ array(
386
+ 'title' => "Remove META Duplicate",
387
+ 'description' => "Fix Duplicate Title, Description, Canonical, Dublin Core, Robots and more without writing a line of code.",
388
+ 'mode' => "Free",
389
+ 'option' => false,
390
+ 'active' => true,
391
+ 'optional' => false,
392
+ 'connection' => false,
393
+ 'logo' => 'metas_92.png',
394
+ 'link' => false,
395
+ 'details' => 'https://howto.squirrly.co/kb/seo-metas/#remove_duplicates',
396
+ ), //Remove META Duplicate
397
+ array(
398
+ 'title' => "404 URLs Redirects",
399
+ 'description' => "Automatically <strong>redirect 404 URLs</strong> to the new URLs and keep the post authority. You can manage the <strong>Redirect Broken URLs</strong> for each post type.",
400
+ 'mode' => "Free",
401
+ 'option' => false,
402
+ 'active' => true,
403
+ 'optional' => false,
404
+ 'connection' => false,
405
+ 'logo' => 'redirect_92.png',
406
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'automation', array('#tab=nav-post')),
407
+ 'details' => 'https://howto.squirrly.co/kb/seo-automation/#redirect_broken_urls',
408
+ ), //404 Redirects
409
+ array(
410
+ 'title' => "SEO Audit",
411
+ 'description' => "Improve your Online Presence by knowing how your website is performing online. <strong>Generate and Compare SEO Audits</strong> and follow the Assistant to optimize the website.",
412
+ 'mode' => "Free",
413
+ 'option' => false,
414
+ 'active' => true,
415
+ 'optional' => false,
416
+ 'connection' => true,
417
+ 'logo' => 'audit_92.png',
418
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_audits', 'audits'),
419
+ 'details' => 'https://howto.squirrly.co/kb/seo-audit/',
420
+ ), //SEO Audit
421
+ array(
422
+ 'title' => "Moz",
423
+ 'description' => "Receive information about <strong>Backlinks and Authority from Moz.com</strong> directly in your SEO Audit report.",
424
+ 'mode' => "Free",
425
+ 'option' => false,
426
+ 'active' => true,
427
+ 'optional' => false,
428
+ 'connection' => true,
429
+ 'logo' => 'audit_92.png',
430
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_audits', 'audits'),
431
+ 'details' => 'https://howto.squirrly.co/kb/seo-audit/#moz',
432
+ ), //SEO Audit Moz
433
+ array(
434
+ 'title' => "Majestic",
435
+ 'description' => "Receive information about <strong>Backlinks from Majestic.com</strong> directly in your SEO Audit report.",
436
+ 'mode' => "Free",
437
+ 'option' => false,
438
+ 'active' => true,
439
+ 'optional' => false,
440
+ 'connection' => true,
441
+ 'logo' => 'audit_92.png',
442
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_audits', 'audits'),
443
+ 'details' => 'https://howto.squirrly.co/kb/seo-audit/#majestic',
444
+ ), //SEO Audit Majestic
445
+ array(
446
+ 'title' => "Alexa",
447
+ 'description' => "Receive <strong>Alexa Score and Backlinks</strong> information directly in your SEO Audit report.",
448
+ 'mode' => "Free",
449
+ 'option' => false,
450
+ 'active' => true,
451
+ 'optional' => false,
452
+ 'connection' => true,
453
+ 'logo' => 'audit_92.png',
454
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_audits', 'audits'),
455
+ 'details' => 'https://howto.squirrly.co/kb/seo-audit/#alexa',
456
+ ), //SEO Audit Alexa
457
+ array(
458
+ 'title' => "Google PageSpeed Insights",
459
+ 'description' => "Get precise information about the <strong>Average Loading Time</strong> of your website using Google PageSpeed Insights in your SEO Audit report.",
460
+ 'mode' => "Free",
461
+ 'option' => false,
462
+ 'active' => true,
463
+ 'optional' => false,
464
+ 'connection' => true,
465
+ 'logo' => 'audit_92.png',
466
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_audits', 'audits'),
467
+ 'details' => 'https://howto.squirrly.co/kb/seo-audit/#google_pagespeed',
468
+ ), //SEO Audit Google PageSpeed
469
+ array(
470
+ 'title' => "Blogging Assistant",
471
+ 'description' => "Add relevant <strong>Copyright-Free images, Tweets, Wikis, Blog Excerpts</strong> in your posts.",
472
+ 'mode' => "Pro",
473
+ 'option' => false,
474
+ 'active' => true,
475
+ 'optional' => false,
476
+ 'connection' => true,
477
+ 'logo' => 'sla_92.png',
478
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_assistant'),
479
+ 'details' => 'https://howto.squirrly.co/kb/squirrly-live-assistant/#live_assistant_box',
480
+ ), //Blogging Assistant
481
+ array(
482
+ 'title' => "Google SERP Checker",
483
+ 'description' => "Accurately track your <strong>Google Rankings every day</strong> with Squirrly's user-friendly Google SERP Checker.",
484
+ 'mode' => "Business",
485
+ 'option' => false,
486
+ 'active' => true,
487
+ 'optional' => false,
488
+ 'connection' => true,
489
+ 'logo' => 'ranking_92.png',
490
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_rankings', 'rankings'),
491
+ 'details' => 'https://howto.squirrly.co/kb/ranking-serp-checker/',
492
+ ), //Google SERP Checker
493
+ array(
494
+ 'title' => "Copyright Free Images",
495
+ 'description' => "Search <strong>Copyright Free Images</strong> in Squirrly Live Assistant and import them directly on your content.",
496
+ 'mode' => "free",
497
+ 'option' => false,
498
+ 'active' => true,
499
+ 'optional' => false,
500
+ 'connection' => true,
501
+ 'logo' => 'image_92.png',
502
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_assistant'),
503
+ 'details' => 'https://howto.squirrly.co/kb/squirrly-live-assistant/#copyright_free_images',
504
+ ), //Blogging Assistant
505
+ array(
506
+ 'title' => "WooCommerce SEO",
507
+ 'description' => "<strong>Optimize all WooCommerce Products</strong> with Squirrly Live Assistant for better ranking. Add the required Metas, Google Tracking, Facebook Pixel Events and JSON-LD Schema. Useful for loading Rich Snippets on Google search results.",
508
+ 'mode' => "Free",
509
+ 'option' => false,
510
+ 'active' => true,
511
+ 'optional' => false,
512
+ 'connection' => false,
513
+ 'logo' => 'shop_92.png',
514
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo', array('stype=product')),
515
+ 'details' => 'https://howto.squirrly.co/kb/json-ld-structured-data/#woocommerce',
516
+ ), //
517
+ array(
518
+ 'title' => "Polylang",
519
+ 'description' => "<strong>Multilingual Support</strong> with Polylang plugin for fast multilingual optimization. Load Squirrly Live Assistant, SEO Snippets and Sitemap XML based on Polylang language.",
520
+ 'mode' => "Free",
521
+ 'option' => false,
522
+ 'active' => true,
523
+ 'optional' => false,
524
+ 'connection' => false,
525
+ 'logo' => 'multilingual_92.png',
526
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_bulkseo', 'bulkseo'),
527
+ 'details' => 'https://howto.squirrly.co/wordpress-seo/compatibility-with-polylang-plugin/',
528
+ ), //
529
+ array(
530
+ 'title' => "Local SEO",
531
+ 'description' => "Optimize the website for <strong>local audience</strong> to have a huge advantage in front of your competitors.",
532
+ 'mode' => "Free",
533
+ 'option' => false,
534
+ 'active' => true,
535
+ 'optional' => false,
536
+ 'connection' => false,
537
+ 'logo' => 'local_92.png',
538
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'jsonld'),
539
+ 'details' => 'https://howto.squirrly.co/kb/json-ld-structured-data/#local_seo',
540
+ ), //
541
+ array(
542
+ 'title' => "Settings Assistant",
543
+ 'description' => "With many of the Assistant panels in all Squirrly Setting pages, all a user needs to do is <strong>turn Red dots into Green dots</strong>.",
544
+ 'mode' => "Free",
545
+ 'option' => false,
546
+ 'active' => true,
547
+ 'optional' => false,
548
+ 'connection' => false,
549
+ 'logo' => 'audit_92.png',
550
+ 'link' => false,
551
+ 'details' => 'https://howto.squirrly.co/kb/squirrly-settings-assistant/',
552
+ ),//Live Assistant Elementor
553
+ array(
554
+ 'title' => "Fetch SEO Snippet",
555
+ 'description' => sprintf("Automatically <strong>fetch the Squirrly Snippet</strong> on %sFacebook Sharing Debugger%s every time you update the content on a page.", '<a href="https://developers.facebook.com/tools/debug/" target="_blank">', '</a>'),
556
+ 'mode' => "Free",
557
+ 'option' => 'sq_sla_social_fetch',
558
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_sla_social_fetch'),
559
+ 'optional' => true,
560
+ 'connection' => true,
561
+ 'logo' => 'social_92.png',
562
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_assistant', 'settings'),
563
+ 'details' => 'https://howto.squirrly.co/kb/squirrly-live-assistant/#fetch_social',
564
+ ), //
565
+ array(
566
+ 'title' => "SEO Images",
567
+ 'description' => "Automatically <strong>downloads image and adds image alt tag</strong> for you, if you searched for images using your focus keyword <strong>inside the Blogging Assistant</strong>.",
568
+ 'mode' => "Free",
569
+ 'option' => 'sq_local_images',
570
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_local_images'),
571
+ 'optional' => true,
572
+ 'connection' => false,
573
+ 'logo' => 'image_92.png',
574
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_assistant', 'settings'),
575
+ 'details' => 'https://howto.squirrly.co/kb/squirrly-live-assistant/#seo_image',
576
+ ), //
577
+
578
+ array(
579
+ 'title' => "Plugins Integration",
580
+ 'description' => "Squirrly SEO works with all websites types and popular plugins like <strong>E-commerce plugins, Page Builder plugins, Cache plugins, SEO plugins, Multilingual plugins, and more</strong>.",
581
+ 'mode' => "Free",
582
+ 'option' => false,
583
+ 'active' => true,
584
+ 'optional' => false,
585
+ 'connection' => false,
586
+ 'logo' => 'settings_92.png',
587
+ 'link' => false,
588
+ 'details' => 'https://howto.squirrly.co/',
589
+ ), //
590
+ array(
591
+ 'title' => "Import SEO & Settings",
592
+ 'description' => "Import the settings and SEO from other plugins so you can use only Squirrly SEO for on-page SEO.",
593
+ 'mode' => "Free",
594
+ 'option' => false,
595
+ 'active' => true,
596
+ 'optional' => false,
597
+ 'connection' => false,
598
+ 'logo' => 'settings_92.png',
599
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_seosettings', 'backup'),
600
+ 'details' => 'https://howto.squirrly.co/kb/import-export-seo-settings/',
601
+ ), //Import SEO & Settings
602
+
603
+
604
+ );
605
+
606
+ //for PHP 7.3.1 version
607
+ $features = array_filter($features);
608
+
609
+ return apply_filters('sq_features', $features);
610
+ }
611
  }
core/BlockJorney.php CHANGED
@@ -5,7 +5,7 @@ class SQ_Core_BlockJorney extends SQ_Classes_BlockController {
5
 
6
  public $days = false;
7
 
8
- public function hookGetContent() {
9
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('jorney');
10
 
11
  if (!$seojorney = SQ_Classes_Helpers_Tools::getOption('sq_seojourney')) {
5
 
6
  public $days = false;
7
 
8
+ public function init() {
9
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('jorney');
10
 
11
  if (!$seojorney = SQ_Classes_Helpers_Tools::getOption('sq_seojourney')) {
core/BlockKnowledgeBase.php CHANGED
@@ -3,7 +3,7 @@ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  class SQ_Core_BlockKnowledgeBase extends SQ_Classes_BlockController {
5
 
6
- public function hookGetContent(){
7
  echo $this->getView('Blocks/KnowledgeBase');
8
  }
9
  }
3
 
4
  class SQ_Core_BlockKnowledgeBase extends SQ_Classes_BlockController {
5
 
6
+ public function init(){
7
  echo $this->getView('Blocks/KnowledgeBase');
8
  }
9
  }
core/BlockSearch.php CHANGED
@@ -3,7 +3,7 @@ defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
  class SQ_Core_BlockSearch extends SQ_Classes_BlockController {
5
 
6
- public function hookGetContent() {
7
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('search');
8
 
9
  echo $this->getView('Blocks/Search');
3
 
4
  class SQ_Core_BlockSearch extends SQ_Classes_BlockController {
5
 
6
+ public function init() {
7
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('search');
8
 
9
  echo $this->getView('Blocks/Search');
core/BlockStats.php CHANGED
@@ -5,6 +5,9 @@ class SQ_Core_BlockStats extends SQ_Classes_BlockController {
5
  var $stats = array();
6
 
7
  function init() {
 
 
 
8
  parent::init();
9
 
10
  $dbtasks = json_decode(get_option(SQ_TASKS), true);
@@ -15,11 +18,4 @@ class SQ_Core_BlockStats extends SQ_Classes_BlockController {
15
  }
16
  }
17
 
18
- function hookGetContent() {
19
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('global');
20
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('stats');
21
-
22
- }
23
-
24
-
25
  }
5
  var $stats = array();
6
 
7
  function init() {
8
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('global');
9
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('stats');
10
+
11
  parent::init();
12
 
13
  $dbtasks = json_decode(get_option(SQ_TASKS), true);
18
  }
19
  }
20
 
 
 
 
 
 
 
 
21
  }
core/BlockToolbar.php CHANGED
@@ -7,6 +7,4 @@ class SQ_Core_BlockToolbar extends SQ_Classes_BlockController {
7
  echo $this->getView('Blocks/Toolbar');
8
  }
9
 
10
- function hookGetContent() { }
11
-
12
  }
7
  echo $this->getView('Blocks/Toolbar');
8
  }
9
 
 
 
10
  }
core/Blocklogin.php CHANGED
@@ -70,6 +70,9 @@ class SQ_Core_Blocklogin extends SQ_Classes_BlockController {
70
  if (!$onboarding = SQ_Classes_Helpers_Tools::getOption('sq_onboarding')) {
71
  wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_onboarding'));
72
  die();
 
 
 
73
  }
74
 
75
  } else {
@@ -106,6 +109,9 @@ class SQ_Core_Blocklogin extends SQ_Classes_BlockController {
106
  case 'multisite':
107
  SQ_Classes_Error::setError(esc_html__("You can only use this account for the URL you registered first!", _SQ_PLUGIN_NAME_));
108
  break;
 
 
 
109
  default:
110
  SQ_Classes_Error::setError(esc_html__("An error occured.", _SQ_PLUGIN_NAME_) . ':' . $responce->get_error_message());
111
  break;
@@ -121,6 +127,9 @@ class SQ_Core_Blocklogin extends SQ_Classes_BlockController {
121
  if (!$onboarding = SQ_Classes_Helpers_Tools::getOption('sq_onboarding')) {
122
  wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_onboarding'));
123
  die();
 
 
 
124
  }
125
 
126
  } else {
70
  if (!$onboarding = SQ_Classes_Helpers_Tools::getOption('sq_onboarding')) {
71
  wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_onboarding'));
72
  die();
73
+ }else{
74
+ wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
75
+ die();
76
  }
77
 
78
  } else {
109
  case 'multisite':
110
  SQ_Classes_Error::setError(esc_html__("You can only use this account for the URL you registered first!", _SQ_PLUGIN_NAME_));
111
  break;
112
+ case 'disconnected':
113
+ SQ_Classes_Error::setError(esc_html__("You disconnected your website from", _SQ_PLUGIN_NAME_) . ' ' . _SQ_DASH_URL_);
114
+ break;
115
  default:
116
  SQ_Classes_Error::setError(esc_html__("An error occured.", _SQ_PLUGIN_NAME_) . ':' . $responce->get_error_message());
117
  break;
127
  if (!$onboarding = SQ_Classes_Helpers_Tools::getOption('sq_onboarding')) {
128
  wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_onboarding'));
129
  die();
130
+ }else{
131
+ wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
132
+ die();
133
  }
134
 
135
  } else {
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-10-22 13:28+0300\n"
6
- "PO-Revision-Date: 2020-10-22 13:32+0300\n"
7
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
8
  "Language-Team: \n"
9
  "Language: cs_CZ\n"
@@ -16,12419 +16,1660 @@ 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.4.1\n"
20
  "X-Poedit-SearchPath-0: .\n"
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:350
33
- msgid "Articles optimized so far"
34
- msgstr ""
 
 
35
 
36
- #: classes/RemoteController.php:352 classes/RemoteController.php:359
37
- msgid "add post"
38
- msgstr ""
 
 
39
 
40
- #: classes/RemoteController.php:357
41
- msgid "Average optimization"
42
- msgstr ""
 
 
43
 
44
  # @ squirrly-seo
45
- #: classes/RemoteController.php:364
46
- #, fuzzy
47
- #| msgid "Do the research"
48
- msgid "Keyword Researches"
49
- msgstr "Recherchieren"
50
 
51
  # @ squirrly-seo
52
- #: classes/RemoteController.php:366
53
  #, fuzzy
54
- #| msgid "Do the research"
55
- msgid "do research"
56
- msgstr "Recherchieren"
57
 
58
- #: classes/RemoteController.php:371
59
- msgid "Keywords stored in Squirrly Briefcase"
60
- msgstr ""
 
 
61
 
62
  # @ squirrly-seo
63
- #: classes/RemoteController.php:373
64
  #, fuzzy
65
- #| msgid "Tips: 2-4 keywords"
66
- msgid "add keyword"
67
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
68
 
69
- #: classes/RemoteController.php:378
70
- msgid "Pages ranking in top 100 Google"
71
- msgstr ""
 
 
72
 
73
- #: classes/RemoteController.php:380
74
- msgid "see rankings"
75
- msgstr ""
 
 
76
 
77
- #: classes/RemoteController.php:385
78
- msgid "SEO Audits"
79
- msgstr ""
 
 
80
 
81
- #: classes/RemoteController.php:387
82
- msgid "see audits"
83
- msgstr ""
 
 
84
 
85
  # @ squirrly-seo
86
- #: classes/RemoteController.php:1299
87
  #, fuzzy
88
- #| msgid "Tips: 2-4 keywords"
89
- msgid "Keyword:"
90
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
91
 
92
- #: classes/RemoteController.php:1300
93
- msgid "date"
94
- msgstr ""
 
 
95
 
96
- #: classes/RemoteController.php:1301 controllers/CheckSeo.php:312
97
- #: controllers/Patterns.php:21 controllers/Research.php:265
98
- #: controllers/Research.php:296 controllers/Research.php:350
99
- #: controllers/Research.php:660 view/Blocks/Snippet.php:1152
100
- msgid "Saved!"
101
- msgstr ""
102
 
103
- #: classes/RemoteController.php:1302
104
- msgid "Read it!"
105
- msgstr ""
 
 
106
 
107
- #: classes/RemoteController.php:1303
108
- msgid "Insert it!"
109
- msgstr ""
 
 
110
 
111
- #: classes/RemoteController.php:1304
112
- msgid "Reference"
113
- msgstr ""
 
 
114
 
115
- #: classes/RemoteController.php:1305
116
- msgid "Insert as box"
117
- msgstr ""
 
 
118
 
119
- #: classes/RemoteController.php:1306
120
- msgid "Insert Link"
121
- msgstr ""
 
 
122
 
123
- #: classes/RemoteController.php:1307
124
- msgid "Not relevant?"
125
- msgstr ""
 
 
126
 
127
- #: classes/RemoteController.php:1308
128
- msgid "Insert in your article"
129
- msgstr ""
 
 
130
 
131
- #: classes/RemoteController.php:1309
132
- msgid ":( An error occurred while processing your request. Please try again"
133
- msgstr ""
 
 
134
 
135
- #: classes/RemoteController.php:1310
136
- msgid "No results found!"
137
- msgstr ""
 
 
138
 
139
- #: classes/RemoteController.php:1311
140
- #, php-format
141
- msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
142
- msgstr ""
 
143
 
144
- #: classes/RemoteController.php:1312
145
- msgid "Has creative commons attributes"
146
- msgstr ""
 
 
147
 
148
- #: classes/RemoteController.php:1313
149
- msgid "No known copyright restrictions"
150
- msgstr ""
 
 
151
 
152
- #: classes/RemoteController.php:1314
153
- msgid ""
154
- "You haven`t used Squirrly SEO to optimize your article. Do you want to "
155
- "optimize for a keyword before publishing?"
156
- msgstr ""
157
 
158
- #: classes/RemoteController.php:1315
159
- msgid "Your Subscription has Expired"
160
- msgstr ""
 
 
161
 
162
- #: classes/RemoteController.php:1316
163
- msgid "There are no keywords saved in briefcase yet"
164
- msgstr ""
 
 
165
 
166
- #: classes/RemoteController.php:1317
167
- #, php-format
168
- msgid "Congratulations! Your article is 100% optimized!"
169
- msgstr ""
 
170
 
171
- #: classes/RemoteController.php:1318
172
- #, php-format
173
- msgid "appears too many times. Try to remove %s of them"
174
- msgstr ""
 
175
 
176
- #: classes/RemoteController.php:1319
177
- #, php-format
178
- msgid "write %s more words"
179
- msgstr ""
 
180
 
181
- #: classes/RemoteController.php:1320
182
- #, php-format
183
- msgid "Add the keyword in the %s of your article"
184
- msgstr ""
 
185
 
186
- #: classes/RemoteController.php:1321
187
- msgid "Click to keep the highlight on"
188
- msgstr ""
 
 
189
 
190
- #: classes/RemoteController.php:1322
191
- msgid "introduction"
192
- msgstr ""
 
 
193
 
194
  # @ squirrly-seo
195
- #: classes/RemoteController.php:1323
196
- #, fuzzy, php-format
197
- #| msgid "Use more words in one keyword"
198
- msgid "Write more words after the %s keyword"
199
- msgstr "Verwenden Sie mehrere Wörter in einem Schlüsselwort"
200
 
201
- #: classes/RemoteController.php:1324
202
- msgid "or use synonyms"
203
- msgstr ""
 
 
204
 
205
- #: classes/RemoteController.php:1325
206
- #, php-format
207
- msgid "add %s more word(s)"
208
- msgstr ""
 
209
 
210
- #: classes/RemoteController.php:1326
211
- #, php-format
212
- msgid "or remove %s word(s)"
213
- msgstr ""
 
214
 
215
  # @ squirrly-seo
216
- #: classes/RemoteController.php:1327
217
- #, fuzzy, php-format
218
- #| msgid "Enter even more keywords."
219
- msgid "add %s more keyword(s)"
220
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
221
 
222
- #: classes/RemoteController.php:1328
223
- #, php-format
224
- msgid "write %s more words to start calculating"
225
- msgstr ""
 
226
 
227
- #: classes/RemoteController.php:1329 view/Research/Research.php:48
228
- msgid "Add to Briefcase"
229
- msgstr ""
 
 
230
 
231
- #: classes/RemoteController.php:1330
232
- msgid "Add Keyword to Briefcase"
233
- msgstr ""
 
 
234
 
235
- #: classes/RemoteController.php:1331
236
- msgid "Select"
237
- msgstr ""
 
 
238
 
239
  # @ squirrly-seo
240
- #: classes/RemoteController.php:1332 view/Blocks/Snippet.php:137
241
- #: view/Blocks/Snippet.php:516 view/Blocks/Snippet.php:775
242
  #, fuzzy
243
- #| msgid "automatically"
244
- msgid "Auto Draft"
245
- msgstr "automatisch"
246
 
247
- #: classes/RemoteController.php:1333
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 "
251
- "there."
252
- msgstr ""
253
 
254
  # @ squirrly-seo
255
- #: classes/helpers/Sanitize.php:217
256
  #, fuzzy
257
- #| msgid "Bing META code (for %sWebmaster Tool%s )`:"
258
- msgid "The code for Google Webmaster Tool is incorrect."
259
- msgstr "Bing META Code (für %sWebmaster Tool%s )`:"
260
 
261
  # @ squirrly-seo
262
- #: classes/helpers/Sanitize.php:244
263
  #, fuzzy
264
- #| msgid "Google %sAnalytics ID%s`:"
265
- msgid "The code for Google Analytics is incorrect."
266
- msgstr "Google %sAnalytics ID%s`:"
267
 
268
- #: classes/helpers/Sanitize.php:281
269
- msgid "The code for Facebook is incorrect."
270
- msgstr ""
 
 
271
 
272
- #: classes/helpers/Sanitize.php:307
273
- msgid "The code for Pinterest is incorrect."
274
- msgstr ""
 
 
275
 
276
- #: classes/helpers/Sanitize.php:332
277
- msgid "The code for Bing is incorrect."
278
- msgstr ""
 
 
279
 
280
- #: classes/helpers/Sanitize.php:357
281
- msgid "The code for Alexa is incorrect."
282
- msgstr ""
 
 
283
 
284
- #: classes/helpers/Sanitize.php:483
285
- msgid "The code for Facebook Pixel must only contain numbers."
286
- msgstr ""
 
 
287
 
288
- #: classes/helpers/Sanitize.php:498
289
- msgid "The code for Facebook App must only contain numbers."
290
- msgstr ""
 
 
291
 
292
- #: classes/helpers/Tools.php:82
293
- msgid "Getting started"
294
- msgstr ""
 
 
295
 
296
  # @ squirrly-seo
297
- #: classes/helpers/Tools.php:107
298
  #, fuzzy
299
- #| msgid "automatically"
300
- msgid "Documentation"
301
- msgstr "automatisch"
302
 
303
- #: classes/helpers/Tools.php:108
304
- msgid "Leave a review"
305
- msgstr ""
 
 
306
 
307
- #: classes/helpers/Tools.php:408
308
- msgid "Format"
309
- msgstr ""
 
 
310
 
311
- #: classes/helpers/Tools.php:426 classes/helpers/Tools.php:462
312
- msgid "Category"
313
- msgstr ""
 
 
314
 
315
- #: classes/helpers/Tools.php:444 classes/helpers/Tools.php:480
316
- msgid "Tag"
317
- msgstr ""
 
 
318
 
319
- #: classes/helpers/Tools.php:498
320
- msgid "Shipping Option"
321
- msgstr ""
 
 
322
 
323
- #: classes/helpers/Tools.php:516
324
- msgid "Author at"
325
- msgstr ""
 
 
326
 
327
- #: classes/helpers/Tools.php:588
328
- msgid "Are you looking for"
329
- msgstr ""
 
 
330
 
331
- #: classes/helpers/Tools.php:589
332
- msgid "These are the results for"
333
- msgstr ""
 
 
334
 
335
- #: classes/helpers/Tools.php:589
336
- msgid "that you can find on our website."
337
- msgstr ""
 
 
338
 
339
- #: classes/helpers/Tools.php:623
340
- msgid "Page not found"
341
- msgstr ""
 
 
342
 
343
- #: classes/helpers/Tools.php:624
344
- msgid "This page could not be found on our website."
345
- msgstr ""
346
-
347
- #: classes/helpers/Tools.php:925
348
- msgid "For better text comparison you need to install PHP mbstring extension."
349
- msgstr ""
350
-
351
- #: config/config.php:30
352
- msgid "Places a separator between the elements of the post description"
353
- msgstr ""
354
-
355
- #: config/config.php:31
356
- msgid "Adds the title of the post/page/term once it’s published"
357
- msgstr ""
358
-
359
- #: config/config.php:32
360
- msgid ""
361
- "Will display an excerpt from the post/page/term (if not customized, the "
362
- "excerpt will be auto-generated)"
363
- msgstr ""
364
-
365
- #: config/config.php:33
366
- msgid "Will display an excerpt from the post/page (no auto-generation)"
367
- msgstr ""
368
-
369
- #: config/config.php:34
370
- msgid "Adds the post's keyword to the post description"
371
- msgstr ""
372
-
373
- #: config/config.php:35
374
- msgid "Displays the number of the current page (i.e. 1 of 6)"
375
- msgstr ""
376
-
377
- #: config/config.php:36
378
- msgid "Adds the site's name to the post description"
379
- msgstr ""
380
-
381
- #: config/config.php:37
382
- msgid "Adds the tagline/description of your site"
383
- msgstr ""
384
-
385
- #: config/config.php:38
386
- msgid "Adds the post category (several categories will be comma-separated)"
387
- msgstr ""
388
-
389
- #: config/config.php:39
390
- msgid "Adds the primary category of the post/page"
391
- msgstr ""
392
-
393
- #: config/config.php:40
394
- msgid "Adds the category description to the post description"
395
- msgstr ""
396
-
397
- #: config/config.php:41
398
- msgid "Adds the current tag(s) (several tags will be comma-separated)"
399
- msgstr ""
400
-
401
- #: config/config.php:42
402
- msgid "Adds the tag description"
403
- msgstr ""
404
-
405
- #: config/config.php:43
406
- msgid "Adds the term name"
407
- msgstr ""
408
-
409
- #: config/config.php:44
410
- msgid "Adds the term description"
411
- msgstr ""
412
-
413
- #: config/config.php:45
414
- msgid "Displays the search phrase (if it appears in the post)"
415
- msgstr ""
416
-
417
- #: config/config.php:46
418
- msgid "Replaces the publication date of a post/page with the modified one"
419
- msgstr ""
420
-
421
- #: config/config.php:47
422
- msgid "Displays the author's nicename"
423
- msgstr ""
424
-
425
- #: config/config.php:48
426
- msgid "Adds the author's biographical info to the post description"
427
- msgstr ""
428
-
429
- #: config/config.php:49
430
- msgid "Displays the current date"
431
- msgstr ""
432
-
433
- #: config/config.php:50
434
- msgid "Displays the date of the post/page once it's published"
435
- msgstr ""
436
-
437
- #: config/config.php:51
438
- msgid "Adds the current day"
439
- msgstr ""
440
-
441
- #: config/config.php:52
442
- msgid "Adds the current month"
443
- msgstr ""
444
-
445
- #: config/config.php:53
446
- msgid "Adds the current year"
447
- msgstr ""
448
-
449
- #: config/config.php:54
450
- msgid "Adds the title of a page's parent page"
451
- msgstr ""
452
-
453
- #: config/config.php:55
454
- msgid "Adds the product name from Woocommerce for the current product"
455
- msgstr ""
456
-
457
- #: config/config.php:56
458
- msgid "Adds the product price from Woocommerce for the current product"
459
- msgstr ""
460
-
461
- #: config/config.php:57
462
- msgid "Adds the product sale price from Woocommerce for the current product"
463
- msgstr ""
464
-
465
- #: config/config.php:58
466
- msgid ""
467
- "Adds the product price currency from Woocommerce for the current product"
468
- msgstr ""
469
-
470
- #: controllers/Api.php:66
471
- msgid "Invalid Token. Please try again"
472
- msgstr ""
473
-
474
- #: controllers/Api.php:87
475
- msgid "Connection expired. Please try again"
476
- msgstr ""
477
-
478
- #: controllers/Api.php:100 controllers/Api.php:103 controllers/Api.php:106
479
- msgid "Author not found"
480
- msgstr ""
481
-
482
- #: controllers/Api.php:139
483
- msgid "Connection expired. Please try again."
484
- msgstr ""
485
-
486
- #: controllers/Api.php:149 controllers/Api.php:171
487
- msgid "Wrong Params"
488
- msgstr ""
489
 
490
  # @ squirrly-seo
491
- #: controllers/Assistant.php:69 controllers/Research.php:104
492
  #, fuzzy
493
- #| msgid "Tips: 2-4 keywords"
494
- msgid "No keyword found."
495
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
496
-
497
- #: controllers/Assistant.php:108 controllers/Assistant.php:135
498
- #: controllers/Audits.php:342 controllers/Ranking.php:140
499
- #: controllers/SeoSettings.php:159 controllers/SeoSettings.php:176
500
- #: controllers/SeoSettings.php:200 controllers/SeoSettings.php:239
501
- #: controllers/SeoSettings.php:268 controllers/SeoSettings.php:299
502
- #: controllers/SeoSettings.php:589 controllers/SeoSettings.php:693
503
- #: controllers/SeoSettings.php:728
504
- msgid "Saved"
505
- msgstr ""
506
-
507
- #: controllers/Assistant.php:114 controllers/BulkSeo.php:75
508
- #: controllers/Patterns.php:107 controllers/Post.php:256
509
- #: controllers/Post.php:311 controllers/Post.php:343 controllers/Post.php:378
510
- #: controllers/PostsList.php:182 controllers/Research.php:178
511
- #: controllers/Research.php:185 controllers/Research.php:223
512
- #: controllers/Research.php:246 controllers/Research.php:276
513
- #: controllers/Research.php:303 controllers/Research.php:327
514
- #: controllers/Research.php:357 controllers/Research.php:378
515
- #: controllers/Research.php:459 controllers/Research.php:610
516
- #: controllers/Research.php:634 controllers/Research.php:668
517
- #: controllers/Research.php:694 controllers/SeoSettings.php:362
518
- #: controllers/SeoSettings.php:578 controllers/SeoSettings.php:602
519
- #: controllers/SeoSettings.php:615 controllers/SeoSettings.php:636
520
- #: controllers/SeoSettings.php:656 controllers/SeoSettings.php:672
521
- #: controllers/SeoSettings.php:708 controllers/Snippet.php:171
522
- msgid "You do not have permission to perform this action"
523
- msgstr ""
524
 
525
  # @ squirrly-seo
526
- #: controllers/Assistant.php:140
527
  #, fuzzy
528
- #| msgid "Could not send the email..."
529
- msgid "Error: Could not save the data."
530
- msgstr "Konnte E-Mail nicht senden ..."
531
-
532
- #: controllers/Audits.php:136
533
- msgid "The audit was not found. Please load another audit."
534
- msgstr ""
535
 
536
  # @ squirrly-seo
537
- #: controllers/Audits.php:169
538
  #, fuzzy
539
- #| msgid "Could not send the email..."
540
- msgid "Could not load the Audit Page."
541
- msgstr "Konnte E-Mail nicht senden ..."
542
-
543
- #: controllers/Audits.php:283
544
- msgid "Audit page is added. The audit may take a while so please be patient."
545
- msgstr ""
546
-
547
- #: controllers/Audits.php:286
548
- msgid "You reached the maximum number of audit pages for your account."
549
- msgstr ""
550
 
551
  # @ squirrly-seo
552
- #: controllers/Audits.php:289
553
  #, fuzzy
554
- #| msgid "Could not send the email..."
555
- msgid "Error! Could not add the audit page."
556
- msgstr "Konnte E-Mail nicht senden ..."
557
 
558
  # @ squirrly-seo
559
- #: controllers/Audits.php:293
560
  #, fuzzy
561
- #| msgid "Could not send the email..."
562
- msgid "Error! Could not find the audit page in your website."
563
- msgstr "Konnte E-Mail nicht senden ..."
564
-
565
- #: controllers/Audits.php:303
566
- msgid "Audit page sent for recheck. It may take a while so please be patient."
567
- msgstr ""
568
-
569
- #: controllers/Audits.php:306 controllers/Audits.php:309
570
- msgid "The audit for all pages can be made once an hour."
571
- msgstr ""
572
-
573
- #: controllers/Audits.php:319
574
- msgid "The audit page is deleted."
575
- msgstr ""
576
-
577
- #: controllers/Audits.php:321 controllers/FocusPages.php:414
578
- #: controllers/Ranking.php:167 controllers/Ranking.php:185
579
- #: controllers/Ranking.php:203 controllers/Research.php:214
580
- #: controllers/Research.php:217 controllers/Research.php:240
581
- #: controllers/Research.php:298 controllers/Research.php:322
582
- #: controllers/Research.php:506 controllers/Research.php:577
583
- #: controllers/Research.php:604 controllers/Research.php:629
584
- #: controllers/Research.php:714
585
- msgid "Invalid params!"
586
- msgstr ""
587
-
588
- #: controllers/Audits.php:344
589
- msgid "Not a valid email address."
590
- msgstr ""
591
-
592
- #: controllers/CheckSeo.php:267 controllers/CheckSeo.php:277
593
- msgid "Done!"
594
- msgstr ""
595
-
596
- #: controllers/CheckSeo.php:294
597
- msgid "Fixed!"
598
- msgstr ""
599
-
600
- #: controllers/CheckSeo.php:299
601
- msgid "Could not fix it. You need to change it manually."
602
- msgstr ""
603
-
604
- #: controllers/CheckSeo.php:306
605
- msgid "Saved! Task marked as done."
606
- msgstr ""
607
-
608
- #: controllers/FocusPages.php:153
609
- msgid "Focus Page does not exist or was deleted from your website."
610
- msgstr ""
611
-
612
- #: controllers/FocusPages.php:345
613
- msgid "Focus page is added. The audit may take a while so please be patient."
614
- msgstr ""
615
-
616
- #: controllers/FocusPages.php:352
617
- msgid "You reached the maximum number of focus pages for all your websites."
618
- msgstr ""
619
 
620
  # @ squirrly-seo
621
- #: controllers/FocusPages.php:355
622
  #, fuzzy
623
- #| msgid "Could not send the email..."
624
- msgid "Error! Could not add the focus page."
625
- msgstr "Konnte E-Mail nicht senden ..."
626
 
627
- #: controllers/FocusPages.php:358
628
- msgid "Error! This focus page is not public."
629
- msgstr ""
 
 
630
 
631
  # @ squirrly-seo
632
- #: controllers/FocusPages.php:362 controllers/FocusPages.php:401
633
  #, fuzzy
634
- #| msgid "Could not send the email..."
635
- msgid "Error! Could not find the focus page in your website."
636
- msgstr "Konnte E-Mail nicht senden ..."
637
 
638
- #: controllers/FocusPages.php:389
639
- msgid "Focus page sent for recheck. It may take a while so please be patient."
640
- msgstr ""
 
 
641
 
642
- #: controllers/FocusPages.php:392 controllers/FocusPages.php:396
643
- msgid "You've made too many requests, please wait a few minutes."
644
- msgstr ""
 
 
645
 
646
- #: controllers/FocusPages.php:412
647
- msgid "The focus page is deleted"
648
- msgstr ""
 
 
649
 
650
- #: controllers/Menu.php:129
651
- #, php-format
652
- msgid ""
653
- "An error occurred during activation. If this error persists, please contact "
654
- "us at: %s"
655
- msgstr ""
656
 
657
- #: controllers/Menu.php:168
658
- msgid "Dashboard"
659
- msgstr ""
 
 
660
 
661
  # @ squirrly-seo
662
- #. Author of the plugin/theme
663
- #: controllers/Menu.php:193 controllers/Menu.php:304 controllers/Menu.php:339
664
- #: view/Blocks/SLASearch.php:7
665
  #, fuzzy
666
- #| msgid "Squirrly settings"
667
- msgid "Squirrly SEO"
668
- msgstr "Squirrly Einstellungen"
669
 
670
  # @ squirrly-seo
671
- #: controllers/Menu.php:267
672
  #, fuzzy
673
- #| msgid "Squirrly LIVE SEO assistant"
674
- msgid "SEO Snippet"
675
- msgstr "Squirrly LIVE SEO-Assistent"
676
 
677
- #: controllers/Menu.php:282 controllers/Snippet.php:142
678
- msgid "Custom SEO"
679
- msgstr ""
 
 
680
 
681
  # @ squirrly-seo
682
- #: controllers/Menu.php:347
683
  #, fuzzy
684
- #| msgid "Squirrly settings"
685
- msgid "Squirrly Onboarding"
686
- msgstr "Squirrly Einstellungen"
687
 
688
  # @ squirrly-seo
689
- #: controllers/Menu.php:348
690
  #, fuzzy
691
- #| msgid "Squirrly settings"
692
- msgid "Onboarding"
693
- msgstr "Squirrly Einstellungen"
694
 
695
- #: controllers/Menu.php:377
696
- msgid "Import & Export SEO"
697
- msgstr ""
 
 
698
 
699
- #: controllers/Menu.php:378 view/SeoSettings/Backup.php:90
700
- msgid "Import SEO"
701
- msgstr ""
 
 
702
 
703
- #: controllers/Menu.php:388
704
- msgid "Squirrly Account Info"
705
- msgstr ""
 
 
706
 
707
- #: controllers/Menu.php:389
708
- msgid "Account Info"
709
- msgstr ""
 
 
710
 
711
  # @ squirrly-seo
712
- #: controllers/Menu.php:398
713
  #, fuzzy
714
- #| msgid "Squirrly LIVE SEO assistant"
715
- msgid "Squirrly How To & Support"
716
- msgstr "Squirrly LIVE SEO-Assistent"
717
 
718
- #: controllers/Menu.php:399
719
- msgid "Help & Support"
720
- msgstr ""
 
 
721
 
722
- #: controllers/Overview.php:56
723
- #, php-format
724
- msgid ""
725
- "Detected %s: We encourage you to %sImport the Settings and SEO%s from %s and "
726
- "deactivate %s to increase the page loading speed for better Google ranking."
727
- msgstr ""
728
 
729
- #: controllers/Patterns.php:22
730
- msgid "Saved! This is how the preview looks like"
731
- msgstr ""
 
 
732
 
733
  # @ squirrly-seo
734
- #: controllers/Post.php:305
735
  #, fuzzy
736
- #| msgid "Could not send the email..."
737
- msgid "Could not add the demo post."
738
- msgstr "Konnte E-Mail nicht senden ..."
739
-
740
- #: controllers/Post.php:367 controllers/Post.php:392
741
- msgid "Can't get the post URL"
742
- msgstr ""
743
 
744
- #: controllers/Post.php:397
745
- msgid "Invalid request"
746
- msgstr ""
 
 
747
 
748
  # @ squirrly-seo
749
- #: controllers/PostsList.php:74 controllers/PostsList.php:117
750
  #, fuzzy
751
- #| msgid "Squirrly LIVE SEO assistant"
752
- msgid "SQ Snippet"
753
- msgstr "Squirrly LIVE SEO-Assistent"
754
 
755
- #: controllers/PostsList.php:75 models/PostsList.php:21
756
- msgid "Optimized"
757
- msgstr ""
 
 
758
 
759
- #: controllers/PostsList.php:200
760
- msgid "Network Error. Please Refresh."
761
- msgstr ""
 
 
762
 
763
- #: controllers/PostsList.php:204
764
- #, php-format
765
- msgid "Maintenance. %sWe'll be back in a minute."
766
- msgstr ""
 
767
 
768
- #: controllers/PostsList.php:235
769
- msgid "Not Public"
770
- msgstr ""
 
 
771
 
772
  # @ squirrly-seo
773
- #: controllers/PostsList.php:236
774
  #, fuzzy
775
- #| msgid "Could not send the email..."
776
- msgid "Could not process"
777
- msgstr "Konnte E-Mail nicht senden ..."
778
 
779
- #: controllers/PostsList.php:237
780
- msgid "The Squirrly subscription has expired!"
781
- msgstr ""
 
 
782
 
783
  # @ squirrly-seo
784
- #: controllers/Ranking.php:84
785
  #, fuzzy
786
- #| msgid "Could not send the email..."
787
- msgid "Could not load the Rankings."
788
- msgstr "Konnte E-Mail nicht senden ..."
789
 
790
  # @ squirrly-seo
791
- #: controllers/Ranking.php:97
792
  #, fuzzy
793
- #| msgid "Could not send the email..."
794
- msgid "Could not load data."
795
- msgstr "Konnte E-Mail nicht senden ..."
796
 
797
- #: controllers/Ranking.php:149
798
- #, php-format
799
- msgid "Could not refresh the rank. Please check your SERP credits %shere%s"
800
- msgstr ""
 
801
 
802
- #: controllers/Ranking.php:151
803
- #, php-format
804
- msgid "%s is queued and the rank will be checked soon."
805
- msgstr ""
 
806
 
807
- #: controllers/Ranking.php:162
808
- msgid "The keyword is deleted."
809
- msgstr ""
 
 
810
 
811
  # @ squirrly-seo
812
- #: controllers/Ranking.php:164
813
  #, fuzzy
814
- #| msgid "Could not send the email..."
815
- msgid "Could not delete the keyword!"
816
- msgstr "Konnte E-Mail nicht senden ..."
817
 
818
- #: controllers/Ranking.php:183 controllers/Research.php:238
819
- #: controllers/Research.php:320 controllers/Research.php:627
820
- #: controllers/Research.php:712
821
- msgid "Deleted!"
822
- msgstr ""
823
 
824
- #: controllers/Ranking.php:200
825
- msgid "Sent!"
826
- msgstr ""
 
 
827
 
828
- #: controllers/Research.php:204
829
- msgid "Keyword Saved. The rank check will be ready in a minute."
830
- msgstr ""
 
 
831
 
832
  # @ squirrly-seo
833
- #: controllers/Research.php:206 controllers/Research.php:210
834
  #, fuzzy
835
- #| msgid "Do the research"
836
- msgid "Keyword Saved!"
837
- msgstr "Recherchieren"
838
 
839
- #: controllers/Research.php:271
840
- msgid "Invalid Label or Color!"
841
- msgstr ""
 
 
842
 
843
  # @ squirrly-seo
844
- #: controllers/Research.php:352 controllers/Research.php:662
845
- #: controllers/Research.php:688
846
  #, fuzzy
847
- #| msgid "Tips: 2-4 keywords"
848
- msgid "Invalid Keyword!"
849
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
850
-
851
- #: controllers/Research.php:411 controllers/Research.php:425
852
- #: controllers/Research.php:447 controllers/Research.php:450
853
- #: controllers/SeoSettings.php:411 controllers/SeoSettings.php:414
854
- #: controllers/SeoSettings.php:458 controllers/SeoSettings.php:461
855
- msgid "Error! The backup is not valid."
856
- msgstr ""
857
 
858
- #: controllers/Research.php:445 controllers/SeoSettings.php:409
859
- msgid "Great! The backup is restored."
860
- msgstr ""
 
 
861
 
862
- #: controllers/Research.php:453 controllers/SeoSettings.php:417
863
- #: controllers/SeoSettings.php:464
864
- msgid "Error! You have to enter a previously saved backup file."
865
- msgstr ""
 
866
 
867
- #: controllers/Research.php:474
868
- msgid "Could not add the keyword to SERP Check. Please try again."
869
- msgstr ""
 
 
870
 
871
- #: controllers/Research.php:476
872
- msgid "The keyword is added to SERP Check."
873
- msgstr ""
 
 
874
 
875
- #: controllers/Research.php:479
876
- msgid "Invalid parameters."
877
- msgstr ""
 
 
878
 
879
  # @ squirrly-seo
880
- #: controllers/Research.php:571
881
  #, fuzzy
882
- #| msgid "Do the research"
883
- msgid "Keyword Research limit exceeded"
884
- msgstr "Recherchieren"
885
 
886
- #: controllers/Research.php:686
887
- msgid "The keywords are added to SERP Check!"
888
- msgstr ""
 
 
889
 
890
  # @ squirrly-seo
891
- #: controllers/SeoSettings.php:342
892
  #, fuzzy
893
- #| msgid "Google %sAnalytics ID%s`:"
894
- msgid "Google Analytics account is disconnected."
895
- msgstr "Google %sAnalytics ID%s`:"
896
 
897
  # @ squirrly-seo
898
- #: controllers/SeoSettings.php:344 controllers/SeoSettings.php:357
899
  #, fuzzy
900
- #| msgid "Could not send the email..."
901
- msgid "Error! Could not disconnect the account."
902
- msgstr "Konnte E-Mail nicht senden ..."
903
 
904
  # @ squirrly-seo
905
- #: controllers/SeoSettings.php:355
906
  #, fuzzy
907
- #| msgid "Google %sAnalytics ID%s`:"
908
- msgid "Google Search Console account is disconnected."
909
- msgstr "Google %sAnalytics ID%s`:"
910
 
911
- #: controllers/SeoSettings.php:455
912
- msgid "Great! The SEO backup is restored."
913
- msgstr ""
914
-
915
- #: controllers/SeoSettings.php:492 controllers/SeoSettings.php:540
916
- #, php-format
917
- msgid ""
918
- "Success! The import from %s was completed successfully and your SEO is safe!"
919
- msgstr ""
920
 
921
- #: controllers/SeoSettings.php:494
922
- msgid "Error! An error occured while import. Please try again."
923
- msgstr ""
 
 
924
 
925
- #: controllers/SeoSettings.php:506
926
- msgid "All the Plugin settings were imported successfuly!"
927
- msgstr ""
 
 
928
 
929
- #: controllers/SeoSettings.php:508
930
- msgid "No settings found for this plugin/theme."
931
- msgstr ""
 
 
932
 
933
- #: controllers/SeoSettings.php:560 models/Rollback.php:98
934
- msgid "Rollback to Previous Version"
935
- msgstr ""
 
 
936
 
937
  # @ squirrly-seo
938
- #: controllers/SeoSettings.php:591
939
  #, fuzzy
940
- #| msgid "Could not send the email..."
941
- msgid "Could not save the changes"
942
- msgstr "Konnte E-Mail nicht senden ..."
943
 
944
- #: controllers/SeoSettings.php:626
945
- msgid ""
946
- "Error! Could not get the code. Connect to Google Search Console and validate "
947
- "the connection."
948
- msgstr ""
949
 
950
- #: controllers/SeoSettings.php:646
951
- msgid ""
952
- "Error! Could not get the tracking code. Connect to Google Analytics and get "
953
- "the website tracking code from Admin area."
954
- msgstr ""
955
 
956
  # @ squirrly-seo
957
- #: controllers/SeoSettings.php:701 controllers/SeoSettings.php:736
958
  #, fuzzy
959
- #| msgid "Could not send the email..."
960
- msgid "Could not add the post type."
961
- msgstr "Konnte E-Mail nicht senden ..."
962
 
963
  # @ squirrly-seo
964
- #: controllers/Snippet.php:87
965
  #, fuzzy
966
- #| msgid "Squirrly LIVE SEO assistant"
967
- msgid "Squirrly SEO Snippet"
968
- msgstr "Squirrly LIVE SEO-Assistent"
969
 
970
- #: controllers/Snippet.php:190
971
- #, php-format
972
- msgid ""
973
- "Could not save the snippet. Please check the database table %s integrity."
974
- msgstr ""
975
 
976
- #: core/BlockSupport.php:31
977
- msgid "Thank you for your feedback."
978
- msgstr ""
 
 
979
 
980
- #: core/BlockSupport.php:35
981
- msgid "No message."
982
- msgstr ""
 
 
983
 
984
- #: core/Blocklogin.php:53
985
- #, php-format
986
- msgid ""
987
- "We found your email, so it means you already have a Squirrly.co account. "
988
- "%sClick %sI already have an account%s and login. If you forgot your "
989
- "password, click %shere%s"
990
- msgstr ""
991
 
992
- #: core/Blocklogin.php:56
993
- msgid "Your email is not valid. Please enter a valid email."
994
- msgstr ""
 
 
995
 
996
- #: core/Blocklogin.php:59
997
- msgid "We could not create your account. Please enter a valid email."
998
- msgstr ""
 
 
999
 
1000
- #: core/Blocklogin.php:78
1001
- #, php-format
1002
- msgid ""
1003
- "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
1004
- "webmaster) and request them to add %s to their IP whitelist."
1005
- msgstr ""
1006
 
1007
- #: core/Blocklogin.php:82
1008
- msgid "Could not send your information to Squirrly. Please try again."
1009
- msgstr ""
 
 
1010
 
1011
- #: core/Blocklogin.php:104
1012
- msgid "Wrong email or password!"
1013
- msgstr ""
 
 
1014
 
1015
- #: core/Blocklogin.php:107
1016
- msgid "You can only use this account for the URL you registered first!"
1017
- msgstr ""
 
 
1018
 
1019
- #: core/Blocklogin.php:110
1020
- msgid "An error occured."
1021
- msgstr ""
 
 
1022
 
1023
- #: core/Blocklogin.php:130
1024
- #, php-format
1025
- msgid ""
1026
- "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
1027
- "webmaster) and request them to add %s to their IP whitelist."
1028
- msgstr ""
1029
 
1030
- #: core/Blocklogin.php:135
1031
- msgid "Both fields are required."
1032
- msgstr ""
 
 
1033
 
1034
  # @ squirrly-seo
1035
- #: models/Assistant.php:50
1036
  #, fuzzy
1037
- #| msgid "Your E-mail:"
1038
- msgid "Task Details"
1039
- msgstr "Ihre E-Mail Adresse:"
1040
 
1041
- #: models/Assistant.php:57
1042
- msgid "active task"
1043
- msgstr ""
 
 
1044
 
1045
  # @ squirrly-seo
1046
- #: models/Assistant.php:80 view/Blocks/Jorney.php:69
1047
  #, fuzzy
1048
- #| msgid "Do the research"
1049
- msgid "Do Keyword Research"
1050
- msgstr "Recherchieren"
1051
 
1052
- #: models/Assistant.php:81
1053
- #, php-format
1054
- msgid ""
1055
- "Use Research - Find Keywords to perform your very first keyword research for "
1056
- "this website using Squirrly SEO. %s It will guide through the 3 important "
1057
- "steps of performing a research. %s Just follow the steps."
1058
- msgstr ""
1059
 
1060
- #: models/Assistant.php:85
1061
- msgid "Add Keywords in Briefcase"
1062
- msgstr ""
 
 
1063
 
1064
- #: models/Assistant.php:86
1065
- #, php-format
1066
- msgid ""
1067
- "Use the Briefcase feature to organize and manage your portfolio of keywords. "
1068
- "%s You'll need to know and document the keywords that you'll be using "
1069
- "throughout your WordPress site. %s This will help you keep a clear SEO "
1070
- "Strategy or it can help you form a SEO Strategy. It will also help you focus "
1071
- "and you'll get to see when you're spreading yourself too thin. %s Add your "
1072
- "first keywords (that you've researched using the Keyword Research tool) to "
1073
- "Briefcase. Only add keywords that you will want to work on at some point in "
1074
- "the future and which are on-point with your strategy."
1075
- msgstr ""
1076
 
1077
- #: models/Assistant.php:90
1078
- msgid "Create Labels for Keywords"
1079
- msgstr ""
 
 
1080
 
1081
- #: models/Assistant.php:91
1082
- #, php-format
1083
- msgid ""
1084
- "Organize your keywords by using Labels for the keywords you've stored in "
1085
- "Briefcase. %s There are many ways to use this: from Customer Journey labels, "
1086
- "to direct or indirect labels, to core keywords or secondary keywords ... and "
1087
- "so on. You can get super creative with this. %s We have a very important "
1088
- "blog post you can read for this http://fourhourseo.com/pro-course-6-how-to-"
1089
- "organize-and-manage-your-keyword-portfolio/ %s Just add your first label to "
1090
- "complete this task."
1091
- msgstr ""
1092
 
1093
- #: models/Assistant.php:95
1094
- msgid "Add Keywords to Labels"
1095
- msgstr ""
 
 
1096
 
1097
- #: models/Assistant.php:96
1098
- #, php-format
1099
- msgid ""
1100
- "Now that you've created your first label, you should label one of your "
1101
- "stored keywords using that label. %s Go to Briefcase. Move your mouse over "
1102
- "the row containing your desired keyword. The 3 vertical dots button appears. "
1103
- "%s Move your mouse over it and a menu will show. Click on Assign Label. %s "
1104
- "Then, assign a label to your keyword in order to complete this task."
1105
- msgstr ""
1106
 
1107
- #: models/Assistant.php:100
1108
- msgid "Send Keywords to Rank Checker"
1109
- msgstr ""
 
 
1110
 
1111
- #: models/Assistant.php:101
1112
- #, php-format
1113
- msgid ""
1114
- "Now that you (hopefully) have keywords added to your Briefcase, go look at "
1115
- "one of your keywords. Move the mouse over the row with your desired keyword. "
1116
- "%s You will see a button with 3 vertical dots appear to the right of the "
1117
- "row. %s Get your mouse cursor over that button. A menu shows. Click on Send "
1118
- "to Rank Checker. %s That's it. Now Squirrly SEO's rank checker feature will "
1119
- "start tracking your position in Google for that keyword that is part of your "
1120
- "SEO strategy."
1121
- msgstr ""
1122
 
1123
- #: models/Assistant.php:107
1124
- msgid "Optimize Using Live Assistant"
1125
- msgstr ""
 
 
1126
 
1127
- #: models/Assistant.php:108
1128
- #, php-format
1129
- msgid ""
1130
- "Optimize your first Page or Article using the SEO Live Assistant (SLA) "
1131
- "feature from Squirrly SEO. %s You can either Edit an existing post or create "
1132
- "a new post. (You have your Live Assistant where you have your WP "
1133
- "Editor)%sThe SEO Live Assistant is like having a SEO Consultant near you, "
1134
- "whispering in your ear exactly what you have to do to get a 100% optimized "
1135
- "article or page.%sYou can try the DEMO first, by clicking on the Demo Post "
1136
- "button. It's safe to break anything in the SEO of that page, because it "
1137
- "never gets indexed by Google, since it's a DEMO. It's an easy way to learn "
1138
- "your way around it."
1139
- msgstr ""
1140
 
1141
  # @ squirrly-seo
1142
- #: models/Assistant.php:114
1143
  #, fuzzy
1144
- #| msgid "Google %sAnalytics ID%s`:"
1145
- msgid "Activate Meta Automation"
1146
- msgstr "Google %sAnalytics ID%s`:"
1147
 
1148
- #: models/Assistant.php:115
1149
- #, php-format
1150
- msgid ""
1151
- "The %sAutomation Features%s of Squirrly SEO are extremely powerful. %s They "
1152
- "help Non-SEO experts avoid many mistakes they would normally make. %s They "
1153
- "help experts control any WordPress site at a level that has never been "
1154
- "possible before. (just make sure you click to see the Advanced settings). %s "
1155
- "You'll be able to configure automations according to any post type. %s Turn "
1156
- "the toggle to ON for: %sActivate Patterns%s to complete this task."
1157
- msgstr ""
1158
 
1159
- #: models/Assistant.php:119
1160
- msgid "Activate METAs"
1161
- msgstr ""
 
 
1162
 
1163
- #: models/Assistant.php:120
1164
- #, php-format
1165
- msgid ""
1166
- "Activate the %sMETA settings%s from the Squirrly SEO Plugin. %s You can "
1167
- "import ALL meta settings you've made with other plugins in WordPress into "
1168
- "your Squirrly SEO Plugin. That way everything will be kept 100%% intact, "
1169
- "without any head-aches. %s To complete this task you need to activate: %s - "
1170
- "Optimize the Titles%s - Optimize Descriptions %s - Add Canonical META Link "
1171
- "%s Make sure you click on %sSave settings%s after you switch anything on or "
1172
- "off."
1173
- msgstr ""
1174
 
1175
- #: models/Assistant.php:124 view/Blocks/Snippet.php:377
1176
- #: view/SeoSettings/Jsonld.php:35
1177
- msgid "Activate JSON-LD"
1178
- msgstr ""
 
1179
 
1180
- #: models/Assistant.php:125
1181
- #, php-format
1182
- msgid ""
1183
- "%sJSON-LD Structured Data%s needs to be activated. %s The Duplicate Removal "
1184
- "feature of Squirrly SEO will make sure that if you have more than one JSON-"
1185
- "LD definition inside the source code of any URL, the definition created by "
1186
- "Squirrly SEO will be the only one that remains. %s Make sure you setup all "
1187
- "the information about your Organization or your Personal Brand here. %s To "
1188
- "finish all the JSON-LD related setup, also visit the %sSocial Media%s "
1189
- "section of our Settings page and write in your social media profiles for "
1190
- "this site. %s Then, at URL-level you will be able to add custom JSON-LD if "
1191
- "you're an advanced user."
1192
- msgstr ""
1193
 
1194
- #: models/Assistant.php:129 view/Blocks/Snippet.php:483
1195
- #: view/SeoSettings/Automation.php:377 view/SeoSettings/Social.php:47
1196
- msgid "Activate Open Graph"
1197
- msgstr ""
 
1198
 
1199
- #: models/Assistant.php:130
1200
- #, php-format
1201
- msgid ""
1202
- "Go to the %sSocial Media section%s.%sActivate Open Graph. (switch the toggle "
1203
- "to ON) %s The Open Graph will help you control the way your posts look when "
1204
- "people share your URLs to social media sites like Facebook and LinkedIN. %s "
1205
- "It will also make your social media posts look great and gain you clicks to "
1206
- "your site."
1207
- msgstr ""
1208
 
1209
- #: models/Assistant.php:134 view/Blocks/Snippet.php:740
1210
- #: view/SeoSettings/Automation.php:404 view/SeoSettings/Social.php:270
1211
- msgid "Activate Twitter Card"
1212
- msgstr ""
 
1213
 
1214
- #: models/Assistant.php:135
1215
- #, php-format
1216
- msgid ""
1217
- "Go to the %sSocial Media section%s. %s - Activate Twitter Card. (switch the "
1218
- "toggle to ON) %s - Add your Twitter profile URL %s The Twitter Card will "
1219
- "help you control the way your posts look when people share your URLs on "
1220
- "Twitter. %s It will also make your social media posts look great and gain "
1221
- "you clicks to your site."
1222
- msgstr ""
1223
 
1224
- #: models/Assistant.php:139
1225
- msgid "Activate Sitemap XML"
1226
- msgstr ""
 
 
1227
 
1228
- #: models/Assistant.php:140
1229
- #, php-format
1230
- msgid ""
1231
- "Activate your %sSitemap XML%s setting. Squirrly SEO will then generate your "
1232
- "sitemap, according to different items you can set up. %s Use this to tell "
1233
- "Google how often you bring new content to your site. %s Also, choose for "
1234
- "which types of URLs you'll want to have sitemaps. It depends on your "
1235
- "strategy. Leave the defaults if you're uncertain. Squirrly SEO chooses the "
1236
- "best defaults for you. %s Make sure you include Images and Videos in the "
1237
- "sitemap. It has been identified as a ranking factor, so it's good to have "
1238
- "that."
1239
- msgstr ""
1240
 
1241
  # @ squirrly-seo
1242
- #: models/Assistant.php:144
1243
  #, fuzzy
1244
- #| msgid "Google %sAnalytics ID%s`:"
1245
- msgid "Activate Google Analytics"
1246
- msgstr "Google %sAnalytics ID%s`:"
1247
 
1248
- #: models/Assistant.php:145
1249
- #, php-format
1250
- msgid ""
1251
- "Go to the %sTracking Tools section%s. %s Add your Google Analytics ID to "
1252
- "complete this setting. (find it in the tracking code that Google Analytics "
1253
- "tells you to place on your site) %s Squirrly SEO will then add "
1254
- "(automatically) your Google Analytics tracking code (in the format you "
1255
- "desire) to every page of your site (according to rules you can modify in the "
1256
- "Automation section)."
1257
- msgstr ""
1258
 
1259
- #: models/Assistant.php:149
1260
- msgid "Activate Facebook Pixel"
1261
- msgstr ""
 
 
1262
 
1263
- #: models/Assistant.php:150
1264
- #, php-format
1265
- msgid ""
1266
- "Go to the %sTracking Tools section%s of the settings and add your Facebook "
1267
- "Pixel ID. %s Make sure you click %sSave Settings%s after you do that. %s Do "
1268
- "this, and Facebook will start tracking user actions on your site, so you can "
1269
- "later retarget them with ads."
1270
- msgstr ""
1271
 
1272
- #: models/Assistant.php:154
1273
- msgid "Connect the Webmasters"
1274
- msgstr ""
 
 
1275
 
1276
- #: models/Assistant.php:155
1277
- #, php-format
1278
- msgid ""
1279
- "Go to the %sConnection section%s. %s This section makes it super easy to "
1280
- "integrate different (important) 3rd party services with your WordPress. %s "
1281
- "Alexa META Code is 100%% optional, but the rest are very important to add. "
1282
- "%s Enter your Pinterest code, especially if you plan to expand your presence "
1283
- "on Pinterest. It will %sactivate Rich Pins%s, which will completely boost "
1284
- "your sales and visibility for any product or post that has great images."
1285
- msgstr ""
1286
 
1287
  # @ squirrly-seo
1288
- #: models/Assistant.php:163 models/focuspages/Accuracy.php:45
1289
- #: models/focuspages/Length.php:69 models/focuspages/Traffic.php:106
1290
  #, fuzzy
1291
- #| msgid "Google %sAnalytics ID%s`:"
1292
- msgid "Connect Google Analytics"
1293
- msgstr "Google %sAnalytics ID%s`:"
1294
 
1295
- #: models/Assistant.php:164
1296
- #, php-format
1297
- msgid ""
1298
- "Integrate %sGoogle Analytics%s with Squirrly SEO from %sAudits > Settings%s."
1299
- "%sFeatures like %sFocus Pages%s and the %sAudit%s need this integration, in "
1300
- "order to work at full potential.%sGoogle Analytics is free and everyone uses "
1301
- "it. The %sFocus Pages%s and the %sAudit%s will interpret the right data from "
1302
- "Google Analytics for you.%sYou'll feel like an Analytics expert, without "
1303
- "having to know a single thing about Google Analytics."
1304
- msgstr ""
1305
 
1306
  # @ squirrly-seo
1307
- #: models/Assistant.php:168 models/Assistant.php:190
1308
  #, fuzzy
1309
- #| msgid "Google %sAnalytics ID%s`:"
1310
- msgid "Connect Google Search Console"
1311
- msgstr "Google %sAnalytics ID%s`:"
1312
 
1313
- #: models/Assistant.php:169
1314
- #, php-format
1315
- msgid ""
1316
- "Integrate your WordPress with %sGoogle Search Console%s with Squirrly SEO "
1317
- "from %sAudits > Settings%s.%sThis integration is more than just setting the "
1318
- "meta code for it. It will connect your WP to the API of Google's service and "
1319
- "enable info such as Impressions, Clicks, Average Ranking Position to be "
1320
- "collected.%sMore importantly, you'll be able to update all the info that "
1321
- "Google has about your site, directly from your Squirrly SEO Plugin."
1322
- msgstr ""
1323
 
1324
  # @ squirrly-seo
1325
- #: models/Assistant.php:173
1326
  #, fuzzy
1327
- #| msgid "Your E-mail:"
1328
- msgid "Set the Audit Email"
1329
- msgstr "Ihre E-Mail Adresse:"
1330
 
1331
- #: models/Assistant.php:174
1332
- #, php-format
1333
- msgid ""
1334
- "You can customize the email to which we send the Audit reports.%sIt can be "
1335
- "your personal email, your work email or the email of one of your "
1336
- "collaborators.%sIt's a best practice to have the Audit sent to the person "
1337
- "that will take charge and start correcting the problems of the site, in "
1338
- "order to increase the score."
1339
- msgstr ""
1340
 
1341
- #: models/Assistant.php:178
1342
- msgid "Get your score over 60"
1343
- msgstr ""
 
 
1344
 
1345
- #: models/Assistant.php:179
1346
- #, php-format
1347
- msgid ""
1348
- "True website marketing performance happens after your Audit score gets to "
1349
- "over 84.%sHowever, you need to start with smaller steps. For now, focus on "
1350
- "getting a score of over 60.%sLook at the progress charts weekly and make "
1351
- "sure you check out the Tasks section, which tells you exactly what you need "
1352
- "to do in order to increase the score.%sWe've been testing these scores since "
1353
- "2013 on hundreds of thousands of websites and it's always the same: %strue "
1354
- "performance happens at over 84%s. That's why you need to start working on "
1355
- "this."
1356
- msgstr ""
1357
 
1358
- #: models/Assistant.php:185
1359
- msgid "Track your first 3 Keywords"
1360
- msgstr ""
 
 
1361
 
1362
- #: models/Assistant.php:186
1363
- #, php-format
1364
- msgid ""
1365
- "%sSERP Checker = Search Engine Result Pages Checker.%s %s It checks your "
1366
- "position on the Google Search Engine for your keywords. Also (on the "
1367
- "Business Plan) it shows you the evolution in time for your sites' URLs for "
1368
- "these keywords. %s Tell Squirrly SEO the first three keywords you want it to "
1369
- "check for you, to see if you're ranking for them. %s Because you should work "
1370
- "according to a solid SEO Strategy, you'll only be able to add keywords or "
1371
- "remove keywords in the Ranking section from your Briefcase. %s Briefcase is "
1372
- "your keyword organizer / manager. Find it in the Research section. Go with "
1373
- "the mouse cursor over a keyword from %sBriefcase -> see the 3 vertical dots -"
1374
- "> select Send to Rank Checker%s"
1375
- msgstr ""
1376
 
1377
- #: models/Assistant.php:191
1378
- #, php-format
1379
- msgid ""
1380
- "Connect Google Search Console. %s You can do that from %sSEO Audit > Settings"
1381
- "%s. %s It will bring information regarding Impressions and Clicks. %s Note: "
1382
- "if you're on the free plan or the PRO plan then the Ranking Position will be "
1383
- "displayed according to data from Google Search Console, which does not "
1384
- "present the actual position you are on. It shows an average position that "
1385
- "your site was lately found on. It can give you values such as 4.3 because of "
1386
- "this. Even though your page today could be on position 7. %s The Business "
1387
- "Plan is the only one that can give you the exact position because it uses "
1388
- "Squirrly's private cloud servers that are working around the clock to gather "
1389
- "the accurate, on-time and objective information about your rankings."
1390
- msgstr ""
1391
 
1392
- #: models/Assistant.php:195
1393
- msgid "Get 1 Keyword to the first page of Google"
1394
- msgstr ""
 
 
1395
 
1396
- #: models/Assistant.php:196
1397
- #, php-format
1398
- msgid ""
1399
- "Start with a small task. %sGet 1 keyword to the first page of Google%s. %s "
1400
- "Select a good keyword (using our %sKeyword Research Tool%s). %s Create an "
1401
- "amazing page for it (if you don't already have one). %s %sAdd the page to "
1402
- "Focus Pages%s in Squirrly SEO. %s Turn the RED lights to Green in Focus "
1403
- "Pages and see your rankings increase over time. %s If you continue working "
1404
- "on those tasks and turning elements to green you'll complete this task."
1405
- msgstr ""
1406
 
1407
- #: models/Assistant.php:253 models/abstract/Assistant.php:197
1408
- msgid "You chose to ignore this task. Click to activate it."
1409
- msgstr ""
 
 
1410
 
1411
- #: models/Audits.php:17
1412
- msgid "Average Content Optimization"
1413
- msgstr ""
 
 
1414
 
1415
- #: models/Audits.php:18 models/Audits.php:97 models/Audits.php:107
1416
- #: models/Audits.php:117 models/Audits.php:127 models/Audits.php:714
1417
- msgid "Great!"
1418
- msgstr ""
 
1419
 
1420
- #: models/Audits.php:19
1421
- msgid "hmm..."
1422
- msgstr ""
 
 
1423
 
1424
- #: models/Audits.php:20
1425
- #, php-format
1426
- msgid ""
1427
- "How can we fix the SEO optimization of a page on our website? %s Find an "
1428
- "amazing keyword set to use for your page. %s If you have a page about a Jazz "
1429
- "Concert that John Dane (fictional name used for this example) will do on 9th "
1430
- "of August 2025 in Phoenix, AZ, then you can try and find the best keywords "
1431
- "you can use, that are related to: 'jazz concert', 'john dane', 'jazz 2025' "
1432
- "and 'jazz in phoenix'. Find out what others search for. If you'll optimize "
1433
- "the page for those keywords, you'll be certain that jazz fans will find it. "
1434
- "The keyword research tool available in Squirrly SEO helps you figure out "
1435
- "exactly what keywords to use. %s Start optimizing your content. Use the "
1436
- "Live Assistant from Squirrly SEO to do this, as it guides you towards the "
1437
- "best practices of optimizing a page for SEO and helps you avoid keyword "
1438
- "stuffing.%s"
1439
- msgstr ""
1440
 
1441
- #: models/Audits.php:21
1442
- msgid ""
1443
- "Optimization is NOT about stuffing in keywords. It's about writing the page "
1444
- "in such a way that Search Engine bots and Humans alike will easily "
1445
- "understand that the page is exactly about the topic they were searching for. "
1446
- "Use the Live Assistant from Squirrly SEO to get the job done with ease."
1447
- msgstr ""
1448
 
1449
- #: models/Audits.php:22
1450
- msgid ""
1451
- "Use tools like Squirrly Keyword Research and Squirrly Live Assistant to "
1452
- "optimize your content"
1453
- msgstr ""
1454
 
1455
- #: models/Audits.php:27
1456
- msgid "DcPublisher Meta"
1457
- msgstr ""
 
 
1458
 
1459
- #: models/Audits.php:28 models/Audits.php:58 models/Audits.php:68
1460
- #: models/Audits.php:78 models/Audits.php:137 models/Audits.php:147
1461
- #: models/Audits.php:157 models/Audits.php:167 models/Audits.php:177
1462
- #: models/Audits.php:187 models/Audits.php:197 models/Audits.php:207
1463
- #: models/Audits.php:217 models/Audits.php:227 models/Audits.php:296
1464
- #: models/Audits.php:306 models/Audits.php:316 models/Audits.php:326
1465
- #: models/Audits.php:421
1466
- msgid "Yes"
1467
- msgstr ""
1468
 
1469
- #: models/Audits.php:29 models/Audits.php:59 models/Audits.php:69
1470
- #: models/Audits.php:79 models/Audits.php:138 models/Audits.php:148
1471
- #: models/Audits.php:168 models/Audits.php:178 models/Audits.php:188
1472
- #: models/Audits.php:198 models/Audits.php:208 models/Audits.php:218
1473
- #: models/Audits.php:228 models/Audits.php:297 models/Audits.php:307
1474
- #: models/Audits.php:317 models/Audits.php:327 models/Audits.php:368
1475
- #: models/Audits.php:412 models/Audits.php:422
1476
- msgid "No"
1477
- msgstr ""
1478
 
1479
- #: models/Audits.php:29
1480
- msgid "The pages without DcPublisher meta"
1481
- msgstr ""
 
 
1482
 
1483
- #: models/Audits.php:30
1484
- msgid ""
1485
- "Dublin Core is a set of standard metadata elements used to describe the "
1486
- "contents of a website. It can help with some internal search engines and it "
1487
- "does not bloat your code."
1488
- msgstr ""
1489
 
1490
  # @ squirrly-seo
1491
- #: models/Audits.php:31
1492
  #, fuzzy
1493
- #| msgid "adds the correct <strong>title</strong> in the home page"
1494
- msgid "Add the meta DcPublisher tag in the page's header"
1495
- msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
1496
 
1497
- #: models/Audits.php:38
1498
- msgid "Top Ten Pages This Week"
1499
- msgstr ""
 
 
1500
 
1501
- #: models/Audits.php:41
1502
- #, php-format
1503
- msgid ""
1504
- "If there is enough data in Google Analytics, you should see the list of "
1505
- "pages with the most visitors in the last week. %s Having at least 100 "
1506
- "visitors per page every week is crucial. %s Search Engines like Google and "
1507
- "Bing will push down a page which doesn't attract visitors."
1508
- msgstr ""
1509
 
1510
- #: models/Audits.php:45 view/FocusPages/FocusPageStats.php:196
1511
- msgid "Page Traffic"
1512
- msgstr ""
 
 
1513
 
1514
- #: models/Audits.php:46
1515
- msgid " total visits / mo."
1516
- msgstr ""
 
 
1517
 
1518
- #: models/Audits.php:47
1519
- msgid "The pages with low traffic"
1520
- msgstr ""
 
 
1521
 
1522
- #: models/Audits.php:48
1523
- #, php-format
1524
- msgid ""
1525
- "How can we fix the Overall Traffic of the website? %s Make sure you have "
1526
- "active listings which can be easily found on various marketplaces / "
1527
- "platforms. eg: you have a Shopify app, a Chrome Extension, a Chrome App, a "
1528
- "Udemy Course, Slides on SlideShare.com, videos on Youtube, an infographic on "
1529
- "Pinterest, etc. These will always bring you constant traffic to the website "
1530
- "and once you set it (and make it visible) you can forget it. It will keep "
1531
- "bringing you traffic. Of course, the key is to first make these items "
1532
- "visible in the places where you publish them. %s You need an email list. "
1533
- "Make sure that people who come to your store, do business with you, visit "
1534
- "your website, or read your blog give you their email address so you can "
1535
- "communicate with them further on. An alternative to this is to make a "
1536
- "Chatbot for Facebook Messenger and get them hooked to the bot. By doing any "
1537
- "of these, you'll be able to bring those people back to your website. %sUse "
1538
- "the Keyword Research tool included in Squirrly SEO, to spot keywords that "
1539
- "are easy to rank for: [link]https://plugin.squirrly.co/best-keyword-research-"
1540
- "tool-for-seo/[link] %sRank for more keywords with low competition. This will "
1541
- "start building up traffic for your site. %sTo Easily rank new pages, use "
1542
- "Daily SEO Goals: [link]https://plugin.squirrly.co/best-seo-goals/[/link] "
1543
- "%sStudy website rankings to learn how to bring more traffic, by using our "
1544
- "Special Cloud Services for Rank Checking, available only on: Business Plans "
1545
- "[link]https://plugin.squirrly.co/squirrly-seo-pricing/[/link]"
1546
- msgstr ""
1547
 
1548
- #: models/Audits.php:49
1549
- msgid ""
1550
- "Get each person who arrives on your site once to leave something that you "
1551
- "can use later on to bring them to your site again. You can use Facebook "
1552
- "Pixel and then retarget them, you can make them subscribe to Desktop "
1553
- "Notifications to receive push notifications, you can have them download an "
1554
- "app, subscribe to a newsletter, etc. Sometimes it's best if you can create "
1555
- "clever funnels that will ensure that any person may start following you on "
1556
- "multiple such channels."
1557
- msgstr ""
1558
 
1559
- #: models/Audits.php:50
1560
- msgid "Try to gain organic traffic to your site's pages"
1561
- msgstr ""
 
 
1562
 
1563
  # @ squirrly-seo
1564
- #: models/Audits.php:57
1565
  #, fuzzy
1566
- #| msgid "Tool for Search Engines"
1567
- msgid "Visible for search engines?"
1568
- msgstr "Tool für Suchmaschinen"
1569
 
1570
- #: models/Audits.php:59
1571
- msgid "The pages with noindex"
1572
- msgstr ""
 
 
1573
 
1574
- #: models/Audits.php:60
1575
- msgid ""
1576
- "How can we fix the noindex for our pages? %s You're currently telling Google "
1577
- "not to index some of your pages through a robots tag inside your code. %s On "
1578
- "WordPress, it's super easy to control on which pages to place no-index and "
1579
- "which pages should never get tagged with no-index if you use the Squirrly "
1580
- "SEO Plugin. %s If you decided you 100% want these pages to be No-Index (you "
1581
- "don’t want Google to index them) - then remove these pages from the SEO "
1582
- "Audit. Use the SEO Audit for the pages you want to be seen on search engines."
1583
- "%s"
1584
- msgstr ""
1585
 
1586
- #: models/Audits.php:61
1587
- msgid ""
1588
- "Some pages are better off if they have an associated no-index tag. Every "
1589
- "website has a couple of pages that would be completely pointless to appear "
1590
- "in search results, because they wouldn't ever make any sense for potential "
1591
- "searchers."
1592
- msgstr ""
1593
 
1594
  # @ squirrly-seo
1595
- #: models/Audits.php:62 models/Audits.php:72
1596
  #, fuzzy
1597
- #| msgid "adds the correct <strong>title</strong> in the home page"
1598
- msgid "Add the correct meta robots tag in the pages"
1599
- msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
1600
 
1601
  # @ squirrly-seo
1602
- #: models/Audits.php:67
1603
  #, fuzzy
1604
- #| msgid "Tool for Search Engines"
1605
- msgid "Followed by search engines?"
1606
- msgstr "Tool für Suchmaschinen"
1607
 
1608
- #: models/Audits.php:69
1609
- msgid "The pages with nofollow"
1610
- msgstr ""
 
 
1611
 
1612
- #: models/Audits.php:70
1613
- #, php-format
1614
- msgid ""
1615
- "How can we fix the nofollow for our pages? %s You're currently telling "
1616
- "Google not to follow some of your pages through a robots tag inside your "
1617
- "code. %s On WordPress, it's super easy to control on which pages to place "
1618
- "nofollow and which pages should never get tagged with nofollow if you use "
1619
- "the Squirrly SEO Plugin. %s If you're using something else, make sure you "
1620
- "remove <META NAME=“ROBOTS” CONTENT=“NOFOLLOW”> from the <head> of your HTML."
1621
- "%s"
1622
- msgstr ""
1623
 
1624
- #: models/Audits.php:71
1625
- msgid ""
1626
- "Some pages are better off if they have an associated nofollow tag. Every "
1627
- "website has a couple of pages that would be completely pointless to be "
1628
- "followed by search results like: Contact Us, Terms and Policy."
1629
- msgstr ""
1630
 
1631
- #: models/Audits.php:77
1632
- msgid "Is your site Safe Browsing?"
1633
- msgstr ""
 
 
1634
 
1635
- #: models/Audits.php:80
1636
- #, php-format
1637
- msgid ""
1638
- "How can we get our website to be Safe Browsing compliant? %s Make sure you "
1639
- "find and delete all malware from your website. %s Watch this video to learn "
1640
- "more. [link]https://www.youtube.com/embed/7GStGcTeo20[/link] %s Once you "
1641
- "feel like you've fixed your problems you can check using this tool from "
1642
- "Google: [link]https://transparencyreport.google.com/safe-browsing/search[/"
1643
- "link]%s"
1644
- msgstr ""
1645
 
1646
- #: models/Audits.php:81
1647
- msgid ""
1648
- "This is a TOP priority if you're having a Safe Browsing problem at the "
1649
- "moment. Browsers will NOT allow web visitors to actually access your pages. "
1650
- "It will also cause you other problems like lower search rankings."
1651
- msgstr ""
1652
 
1653
- #: models/Audits.php:86
1654
- msgid "Page load time"
1655
- msgstr ""
 
 
1656
 
1657
- #: models/Audits.php:87
1658
- msgid "s average is a good time"
1659
- msgstr ""
 
 
1660
 
1661
- #: models/Audits.php:88
1662
- msgid "s average is slow"
1663
- msgstr ""
 
 
1664
 
1665
- #: models/Audits.php:88
1666
- msgid "The slow pages are"
1667
- msgstr ""
 
 
1668
 
1669
- #: models/Audits.php:89
1670
- #, php-format
1671
- msgid ""
1672
- "How can we fix the loading speed of the website? %s Use smaller images, or "
1673
- "compress them with tools like ShortPixel.com %s Minify Javascripts, use "
1674
- "CDNs, use gZip. %s Use a professional service if your site is based on "
1675
- "WordPress. Our parent company, Squirrly Limited, offers such a service for "
1676
- "WordPress.org based websites [link]https://www.squirrly.co/agency/[/link] %s"
1677
- msgstr ""
1678
 
1679
- #: models/Audits.php:90
1680
- msgid ""
1681
- "Increasing loading speed will bring you more engagement, lower bounce rates "
1682
- "AND more search engine results."
1683
- msgstr ""
1684
 
1685
- #: models/Audits.php:91
1686
- msgid "Optimize your site's speed"
1687
- msgstr ""
 
 
1688
 
1689
- #: models/Audits.php:96
1690
- msgid "Duplicate Titles"
1691
- msgstr ""
 
 
1692
 
1693
- #: models/Audits.php:97
1694
- msgid "No duplicate titles."
1695
- msgstr ""
 
 
1696
 
1697
- #: models/Audits.php:97
1698
- msgid "The pages on your site have unique title tags."
1699
- msgstr ""
 
 
1700
 
1701
- #: models/Audits.php:98 models/Audits.php:108
1702
- msgid "We found duplicates."
1703
- msgstr ""
 
 
1704
 
1705
- #: models/Audits.php:98
1706
- msgid "The Pages with Duplicate Titles are"
1707
- msgstr ""
 
 
1708
 
1709
- #: models/Audits.php:99
1710
- #, php-format
1711
- msgid ""
1712
- "How can we fix the Duplicate Titles on our pages? %s Features like SEO "
1713
- "Automation or SEO Snippet from Squirrly SEO will generate your META title "
1714
- "automatically from the content of your page (in case you didn't already "
1715
- "place a custom title). Make every single META Title of every page unique "
1716
- "(you never repeat it on any other URL from the website). You will write what "
1717
- "you want Google to display in the search results as a title for your "
1718
- "listing. Make this text awesome and you'll get people clicking on it. %s See "
1719
- "if you can assign rules to WordPress to have it change the Title of each URL "
1720
- "according to different patterns. Normally the platform will take the Title "
1721
- "of the latest product inside the category and add it to the Title of that "
1722
- "particular category. In this case you can end up with something like: "
1723
- "example.com/shooter-games will have title: 'Counter Strike GO. Buy it Now' "
1724
- "and also: example.com/shooter-games/cs-go will also have title: 'Counter "
1725
- "Strike GO. Buy it Now'. %s All these problematic cases can be forgotten once "
1726
- "you start using Squirrly SEO . With its Patterns feature, it will create "
1727
- "rules for WordPress that ensure each title for each page on your site is "
1728
- "unique. This feature is available in the Free version of Squirry.%s"
1729
- msgstr ""
1730
 
1731
- #: models/Audits.php:100
1732
- msgid ""
1733
- "On WordPress you can use Squirrly SEO to control everything about your page "
1734
- "Titles and make them stand out on search engines."
1735
- msgstr ""
1736
 
1737
- #: models/Audits.php:101
1738
- msgid ""
1739
- "Add different titles to each page. You can do it manually or use SEO tools "
1740
- "(like Squirrly) for that."
1741
- msgstr ""
1742
 
1743
- #: models/Audits.php:106
1744
- msgid "Duplicate Descriptions"
1745
- msgstr ""
 
 
1746
 
1747
- #: models/Audits.php:107
1748
- msgid "No duplicate descriptions."
1749
- msgstr ""
 
 
1750
 
1751
- #: models/Audits.php:107
1752
- msgid "The pages on your site have unique meta descriptions."
1753
- msgstr ""
 
 
1754
 
1755
- #: models/Audits.php:108
1756
- msgid "The Pages on which we found duplicates are"
1757
- msgstr ""
 
 
1758
 
1759
- #: models/Audits.php:109
1760
- #, php-format
1761
- msgid ""
1762
- "How can we fix the Duplicate Descriptions on our website? %s Use the SEO "
1763
- "Automation feature from Squirrly SEO, because it will generate your META "
1764
- "description automatically from the content of your page (in case you didn't "
1765
- "already place a custom description). Make every single META description of "
1766
- "every page unique (you never repeat it on any other URL from the website). "
1767
- "Make this text awesome and you'll get people clicking on it. %s Use the "
1768
- "Patterns feature from Squirrly SEO. It will help you create rules for "
1769
- "WordPress that ensure each description for each page on your site is unique. "
1770
- "This feature is available on all plans. %s"
1771
- msgstr ""
1772
 
1773
- #: models/Audits.php:110
1774
- msgid ""
1775
- "Use Squirrly SEO’s BULK SEO section to control everything about your META "
1776
- "descriptions and make them stand out on search engines."
1777
- msgstr ""
1778
 
1779
- #: models/Audits.php:111
1780
- msgid ""
1781
- "Add different description to each page. You can do it manually or use SEO "
1782
- "tools (like Squirrly) for that."
1783
- msgstr ""
1784
 
1785
- #: models/Audits.php:116
1786
- msgid "Empty Titles"
1787
- msgstr ""
 
 
1788
 
1789
- #: models/Audits.php:117
1790
- msgid "All pages have titles."
1791
- msgstr ""
1792
-
1793
- #: models/Audits.php:117
1794
- msgid "all the pages on your site have the title tag defined :-)"
1795
- msgstr ""
1796
-
1797
- #: models/Audits.php:118
1798
- msgid "There are some pages without title."
1799
- msgstr ""
1800
-
1801
- #: models/Audits.php:118
1802
- msgid "The pages with empty Title tags are"
1803
- msgstr ""
1804
-
1805
- #: models/Audits.php:119
1806
- #, php-format
1807
- msgid ""
1808
- "How can we fix the Empty Titles on our pages? %s Use Squirrly’s SEO "
1809
- "Automation features or the SEO Snippet to generate your META title "
1810
- "automatically from the content of your page. Write what you want Google to "
1811
- "display in the search results as a title for your listing. Make this text "
1812
- "awesome and you'll get people clicking on it. %s Use the Patterns feature "
1813
- "from Squirrly. It will create rules for WordPress that ensure each title for "
1814
- "each page on your site is unique. This feature is available on all plans.%s"
1815
- msgstr ""
1816
-
1817
- #: models/Audits.php:120
1818
- msgid ""
1819
- "Use Squirrly SEO to create and control everything about your META titles and "
1820
- "make them stand out on search engines."
1821
- msgstr ""
1822
-
1823
- #: models/Audits.php:121
1824
- msgid "Add a Title tag to each page in your site."
1825
- msgstr ""
1826
-
1827
- #: models/Audits.php:126
1828
- msgid "Empty Descriptions"
1829
- msgstr ""
1830
-
1831
- #: models/Audits.php:127
1832
- msgid "All articles have description."
1833
- msgstr ""
1834
-
1835
- #: models/Audits.php:127
1836
- msgid "all the pages on your site have meta description"
1837
- msgstr ""
1838
-
1839
- #: models/Audits.php:128
1840
- msgid "There are some pages without description."
1841
- msgstr ""
1842
-
1843
- #: models/Audits.php:128
1844
- msgid "The pages with empty description are"
1845
- msgstr ""
1846
-
1847
- #: models/Audits.php:129
1848
- #, php-format
1849
- msgid ""
1850
- "How can we fix the Empty Descriptions on our website? %s Use Squirrly’s SEO "
1851
- "Automation features or the SEO Snippet which will generate your META "
1852
- "description automatically from the content of your page. Make this text "
1853
- "awesome and you'll get people clicking on it. %s See if you can assign rules "
1854
- "to WordPress to have it create META descriptions for each URL according to "
1855
- "different patterns. By having clear rules for all URLs you'll ensure that "
1856
- "Empty Descriptions will no longer be a problem in the future. %s All these "
1857
- "problematic cases can be forgotten once you start using Squirrly SEO . With "
1858
- "its Patterns feature, it will create rules for WordPress that ensure each "
1859
- "description for each page on your site is unique. This feature is available "
1860
- "on all plans.%s"
1861
- msgstr ""
1862
-
1863
- #: models/Audits.php:130
1864
- msgid ""
1865
- "Use Squirrly SEO to create and control everything about your META "
1866
- "descriptions and make them stand out on search engines."
1867
- msgstr ""
1868
-
1869
- #: models/Audits.php:131
1870
- msgid "Add meta description to each page in your site."
1871
- msgstr ""
1872
-
1873
- #: models/Audits.php:136
1874
- msgid "Do you have a title tag?"
1875
- msgstr ""
1876
-
1877
- #: models/Audits.php:138
1878
- msgid "The pages without title tag are"
1879
- msgstr ""
1880
-
1881
- #: models/Audits.php:139
1882
- #, php-format
1883
- msgid ""
1884
- "How can we fix the title tags of our pages %s On WordPress, using Squirrly "
1885
- "SEO will ensure your pages have title tags. It will create titles for every "
1886
- "page. It will help you customize titles for every page, all while making you "
1887
- "write ZERO code. No coding required when you use Squirrly SEO.%s"
1888
- msgstr ""
1889
-
1890
- #: models/Audits.php:140
1891
- msgid "Platforms like Shopify handle this aspect with their default engine."
1892
- msgstr ""
1893
-
1894
- #: models/Audits.php:141
1895
- msgid "Add a Title tag to this page of your site"
1896
- msgstr ""
1897
-
1898
- #: models/Audits.php:146
1899
- msgid "Do you have a meta description?"
1900
- msgstr ""
1901
-
1902
- #: models/Audits.php:148
1903
- msgid "The pages without description meta are"
1904
- msgstr ""
1905
-
1906
- #: models/Audits.php:149
1907
- #, php-format
1908
- msgid ""
1909
- "How can we fix the META Descriptions of our pages %s First of all, make sure "
1910
- "that you understand the following: a poorly written META description will "
1911
- "make for a horrible listing inside the Google search page. If people find "
1912
- "your listing, they will not click on your listing in case your META "
1913
- "Description is horrible to look at, is poorly written, or it doesn't seem to "
1914
- "make sense. %s On WordPress, you can use Squirrly SEO for this. It will "
1915
- "automatically create META Descriptions for every page. It will help you "
1916
- "customize these descriptions for every page, all while making you write "
1917
- "ZERO, nada, rien, code. No coding required when you use Squirrly SEO. You "
1918
- "can even customize the way it automates your descriptions.%s"
1919
- msgstr ""
1920
-
1921
- #: models/Audits.php:150
1922
- msgid "Platforms like Shopify handle this with their default engines."
1923
- msgstr ""
1924
-
1925
- #: models/Audits.php:151
1926
- msgid "Add meta description to this page of your site"
1927
- msgstr ""
1928
-
1929
- # @ squirrly-seo
1930
- #: models/Audits.php:156 models/bulkseo/Metas.php:94
1931
- #, fuzzy
1932
- #| msgid "Enter even more keywords."
1933
- msgid "Meta Keyword"
1934
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
1935
-
1936
- # @ squirrly-seo
1937
- #: models/Audits.php:157
1938
- #, fuzzy
1939
- #| msgid "Tips: 2-4 keywords"
1940
- msgid "Your keywords are"
1941
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
1942
-
1943
- # @ squirrly-seo
1944
- #: models/Audits.php:158
1945
- #, fuzzy
1946
- #| msgid "Tips: 2-4 keywords"
1947
- msgid "No keywords."
1948
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
1949
-
1950
- #: models/Audits.php:159
1951
- msgid ""
1952
- "It is important for search engines to know which keywords you are trying to "
1953
- "rank for with your website. This also helps bring targeted visitors to your "
1954
- "site."
1955
- msgstr ""
1956
-
1957
- #: models/Audits.php:160
1958
- msgid "Make sure that the search for your keywords is on a rising trend"
1959
- msgstr ""
1960
-
1961
- #: models/Audits.php:166 models/bulkseo/Metas.php:99
1962
- msgid "Canonical Link"
1963
- msgstr ""
1964
-
1965
- #: models/Audits.php:168
1966
- msgid "The pages without canonical meta"
1967
- msgstr ""
1968
-
1969
- #: models/Audits.php:169
1970
- #, php-format
1971
- msgid ""
1972
- "How can we fix the Canonical Links problems of our pages? %s Add this code "
1973
- "to the <head> section of your HTML page: <link rel=\"canonical\" href=\"your "
1974
- "site URL\" /> %s Think of a canonical link as the \"preferred version\" of "
1975
- "the page. %s Make sure you have this definition on your URL especially if "
1976
- "you've copied the content from another LINK on the web. Example: You "
1977
- "published a blog post on Medium and then also added it to your own blog on "
1978
- "your own domain. If you add the canonical link definition, then you won't be "
1979
- "penalized for duplicate content. Medium also allows you to re-publish "
1980
- "content from your own site to Medium and helps you get the rel=\"canonical\" "
1981
- "inside the medium post to show that the original is hosted on your own site."
1982
- "%s Use Squirrly SEO's Bulk SEO to define canonical links and indexing "
1983
- "options for your pages. %s"
1984
- msgstr ""
1985
-
1986
- #: models/Audits.php:170
1987
- msgid ""
1988
- "Platforms like Shopify handle this with their default engine. On WordPress "
1989
- "you can use Squirrly SEO to control canonical links and make sure you avoid "
1990
- "having duplicate content."
1991
- msgstr ""
1992
-
1993
- # @ squirrly-seo
1994
- #: models/Audits.php:171
1995
- #, fuzzy
1996
- #| msgid "adds <strong>canonical</strong> link in home page"
1997
- msgid "Add canonical meta link in the page header"
1998
- msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
1999
-
2000
- #: models/Audits.php:176
2001
- msgid "Meta Json-LD?"
2002
- msgstr ""
2003
-
2004
- #: models/Audits.php:178
2005
- msgid "The pages without Json-LD meta"
2006
- msgstr ""
2007
-
2008
- #: models/Audits.php:179
2009
- #, php-format
2010
- msgid ""
2011
- "How can we fix the meta Json_LD of the website? %s You need to make sure you "
2012
- "have this tag inside your page's code: <script type=\"application/ld+json"
2013
- "\"> . Or something similar. %s JSON-LD annotates elements on a page, "
2014
- "structuring the data, which can then be used by search engines to "
2015
- "disambiguate elements and establish facts surrounding entities, which is "
2016
- "then associated with creating a more organized, better web overall.%s"
2017
- msgstr ""
2018
-
2019
- #: models/Audits.php:180
2020
- msgid ""
2021
- "On WordPress you can use Squirrly SEO to add the Json-LD Structured data. "
2022
- "Squirrly will automatically structure the information from all your products "
2023
- "if you use Woocommerce plugin for eCommerce."
2024
- msgstr ""
2025
-
2026
- #: models/Audits.php:181
2027
- msgid ""
2028
- "Make sure you activated Json-LD in Squirrly > SEO Settings > Json-LD Meta"
2029
- msgstr ""
2030
-
2031
- #: models/Audits.php:186
2032
- msgid "Page Encoding"
2033
- msgstr ""
2034
-
2035
- #: models/Audits.php:188
2036
- msgid "The pages without encoding meta"
2037
- msgstr ""
2038
-
2039
- #: models/Audits.php:189
2040
- #, php-format
2041
- msgid ""
2042
- "How can we fix the character encoding specifications of the website? %s "
2043
- "You'll have to specify this according to the encoding you use for your "
2044
- "website. %s Adding your encoding tag to the <head> of the site will fix it. "
2045
- "Below, you'll find what you can place, in case your encoding is UTF-8 (the "
2046
- "majority of web pages use this) %s <meta http-equiv=“Content-Type” "
2047
- "content=“text/html;charset=utf-8” />%s"
2048
- msgstr ""
2049
-
2050
- #: models/Audits.php:190
2051
- msgid ""
2052
- "Platforms like Shopify handle this with their default engine. On WordPress "
2053
- "you can use Squirrly SEO to get encoding specified for all your pages. "
2054
- "Without specifying the encoding, search engines such as Google will be more "
2055
- "likely to suggest other pages and rank other pages that DO have the "
2056
- "specification made."
2057
- msgstr ""
2058
-
2059
- # @ squirrly-seo
2060
- #: models/Audits.php:191
2061
- #, fuzzy
2062
- #| msgid "adds <strong>canonical</strong> link in home page"
2063
- msgid "Add the meta encoding tag in the page's header"
2064
- msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
2065
-
2066
- #: models/Audits.php:196
2067
- msgid "Does your site have a feed or sitemap?"
2068
- msgstr ""
2069
-
2070
- #: models/Audits.php:199
2071
- #, php-format
2072
- msgid ""
2073
- "How can we fix the Feed and Sitemap of the website? %s Make sure that you "
2074
- "feed and Sitemap exists and that it is accessible. Your visitors should be "
2075
- "able to access it using /feed, or /sitemap.xml %s Make sure your visitors "
2076
- "can access it using domainname.com/feed (where the text \"domainname\" is "
2077
- "actually your domain. eg. bloggingwithjane.com ) %s On WordPress, you can "
2078
- "use Squirrly SEO to generate your FEED and the Sitemap for your whole site. "
2079
- "It has some pretty advanced options, so that you feeds will be perfect. This "
2080
- "feature is free to use.%s"
2081
- msgstr ""
2082
-
2083
- #: models/Audits.php:200
2084
- msgid ""
2085
- "Your feeds and sitemaps should contain the date when your content was "
2086
- "published and last updated. This is super important for Google to know, as "
2087
- "it's always looking to surface fresh content to people who search on search "
2088
- "engines. PLUS, having this gives you the opportunity to show up when users "
2089
- "of Google say they want to see only results from the last week. If you had "
2090
- "anything published during the last week, these people will see it and you "
2091
- "will gain traffic."
2092
- msgstr ""
2093
-
2094
- #: models/Audits.php:201
2095
- msgid "Add a RSS feed and Sitemap to your site"
2096
- msgstr ""
2097
-
2098
- #: models/Audits.php:206
2099
- msgid "Does your site have a robots.txt file?"
2100
- msgstr ""
2101
-
2102
- #: models/Audits.php:209
2103
- #, php-format
2104
- msgid ""
2105
- "How can we fix the robots.txt of the website? %s You'll need to have a "
2106
- "http://domain.com/robots.txt link on your site that crawlers can access to "
2107
- "know which pages they are allowed to crawl. (gather info from) %s Create or "
2108
- "Edit a robots.txt file using Squirrly SEO %s Once you have the file, upload "
2109
- "it to your ftp (if you don’t want to let Squirrly operate it for you) and "
2110
- "make sure it can be accessed. %s"
2111
- msgstr ""
2112
-
2113
- #: models/Audits.php:210
2114
- msgid ""
2115
- "Platforms like Shopify handle this with their default engine. On WordPress "
2116
- "you can use Squirrly SEO to create and customize your robots.txt"
2117
- msgstr ""
2118
-
2119
- #: models/Audits.php:211
2120
- msgid "Add robots.txt file in your site"
2121
- msgstr ""
2122
-
2123
- #: models/Audits.php:216
2124
- msgid "Meta Viewport"
2125
- msgstr ""
2126
-
2127
- #: models/Audits.php:218
2128
- msgid "The pages without viewport meta"
2129
- msgstr ""
2130
-
2131
- #: models/Audits.php:219
2132
- #, php-format
2133
- msgid ""
2134
- "How can we fix the meta viewport of the website? %s You need to make sure "
2135
- "you have this tag inside your page's code: <meta name=“viewport” "
2136
- "content=“width=device-width, initial-scale=1”> . Or something similar. %s In "
2137
- "case you know that the minimum resolution required to deliver a good user "
2138
- "experience to your viewers is 500 px, then write the following: %s <meta "
2139
- "name=“viewport” content=“width=500, initial-scale=1”>%s"
2140
- msgstr ""
2141
-
2142
- #: models/Audits.php:220
2143
- msgid ""
2144
- "Platforms like Shopify handle this with their default engine. On WordPress, "
2145
- "you need to make sure the WordPress theme you buy is responsive and has this "
2146
- "definition."
2147
- msgstr ""
2148
-
2149
- # @ squirrly-seo
2150
- #: models/Audits.php:221
2151
- #, fuzzy
2152
- #| msgid "adds the correct <strong>title</strong> in the home page"
2153
- msgid "Add the meta viewport tag in the page's header"
2154
- msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
2155
-
2156
- #: models/Audits.php:226
2157
- msgid "Site optimized for speed?"
2158
- msgstr ""
2159
-
2160
- #: models/Audits.php:228
2161
- msgid "The pages without gzip"
2162
- msgstr ""
2163
-
2164
- #: models/Audits.php:229
2165
- #, php-format
2166
- msgid ""
2167
- "How can we fix the gzip compression for our website? %s GZIP compression "
2168
- "must be installed on the web server, such as in Apache, IIS and nginx. When "
2169
- "retrieving the website the web browser will prompt the visitor he/she can "
2170
- "receive the GZIP. %s Squirrly’s teams of experts can help you get this done. "
2171
- "[link]https://www.squirrly.co/agency/[/link] - Premium Paid Services, "
2172
- "separate from any software license you may have from the Squirrly Company. "
2173
- "%s Ask your webmaster / developer / host to help you with this. Or try to "
2174
- "find plugins to help you with this.%s"
2175
- msgstr ""
2176
-
2177
- #: models/Audits.php:230
2178
- msgid ""
2179
- "Setting this up saves 50% to 80% bandwidth, which will make all your pages "
2180
- "load a lot faster."
2181
- msgstr ""
2182
-
2183
- #: models/Audits.php:231
2184
- msgid "Use gzip to increase your site's speed"
2185
- msgstr ""
2186
-
2187
- #: models/Audits.php:236
2188
- msgid "Duplicate Open Graph Tags?"
2189
- msgstr ""
2190
-
2191
- #: models/Audits.php:237 models/Audits.php:247 models/Audits.php:257
2192
- #: models/Audits.php:267
2193
- msgid "No duplicates"
2194
- msgstr ""
2195
-
2196
- #: models/Audits.php:238 models/Audits.php:248 models/Audits.php:258
2197
- #: models/Audits.php:268
2198
- msgid "We found some ..."
2199
- msgstr ""
2200
-
2201
- #: models/Audits.php:238
2202
- msgid "The pages with duplicate Open Graph metas"
2203
- msgstr ""
2204
-
2205
- #: models/Audits.php:239 models/Audits.php:249 models/Audits.php:259
2206
- #: models/Audits.php:269
2207
- #, php-format
2208
- msgid ""
2209
- "How can we fix the duplicate meta codes of our pages? %s Make a list of the "
2210
- "pages which have this problem. %s Start fixing them one by one. %s Remove "
2211
- "duplicate definitions of code from the <head> section of each page. (eg. you "
2212
- "have two instances of og:title << remove one of them!)%s"
2213
- msgstr ""
2214
-
2215
- #: models/Audits.php:240 models/Audits.php:250 models/Audits.php:260
2216
- #: models/Audits.php:270
2217
- msgid ""
2218
- "On WordPress you can use Squirrly SEO to Remove Duplicate Meta codes from "
2219
- "all your pages. It removes them automatically. No work on your behalf."
2220
- msgstr ""
2221
-
2222
- #: models/Audits.php:241 models/Audits.php:251 models/Audits.php:261
2223
- #: models/Audits.php:271
2224
- msgid "Make sure you don't have duplicate meta tags in your site's header"
2225
- msgstr ""
2226
-
2227
- #: models/Audits.php:246
2228
- msgid "Duplicate Twitter Card Tags?"
2229
- msgstr ""
2230
-
2231
- #: models/Audits.php:248
2232
- msgid "The pages with duplicate Twitter Card metas"
2233
- msgstr ""
2234
-
2235
- #: models/Audits.php:256
2236
- msgid "Duplicate Title Tags?"
2237
- msgstr ""
2238
-
2239
- #: models/Audits.php:258
2240
- msgid "The pages with duplicate Title metas"
2241
- msgstr ""
2242
-
2243
- #: models/Audits.php:266
2244
- msgid "Duplicate Description Tags?"
2245
- msgstr ""
2246
-
2247
- #: models/Audits.php:268
2248
- msgid "The pages with duplicate Description metas"
2249
- msgstr ""
2250
-
2251
- #: models/Audits.php:279
2252
- msgid "Top Shared Pages"
2253
- msgstr ""
2254
-
2255
- #: models/Audits.php:285
2256
- msgid "Shares"
2257
- msgstr ""
2258
-
2259
- #: models/Audits.php:288
2260
- #, php-format
2261
- msgid ""
2262
- "How can we raise the Social Media Shares (or signals) for our pages on "
2263
- "Social Media? %s Use a tool like SalesFlare or FullContact (both paid) to "
2264
- "extract the social media profiles of your customers, users, email "
2265
- "subscribers and even LinkedIN Connections. Then make sure they follow you on "
2266
- "Social Media. An easy way to do this is to follow them yourself. They "
2267
- "already care about you and your company. They will gladly interact with your "
2268
- "profiles. Using tools like these will also give you a clear picture of what "
2269
- "Social Media platforms your desired audience uses most, so that you can "
2270
- "create profiles only for those social media platforms. %s You should create "
2271
- "social media Giveaways, or even viral communities like: [link]https://www."
2272
- "squirrly.co/dmsuperstars/[/link] %s Use a service like [link]https://"
2273
- "techfork.xyz/about/[/link] (warning: other social media providers will most "
2274
- "likely cause problems, because they use bots. - TechFork has been verified "
2275
- "by our community and it has been a partner for over 4 years) %s Learn from "
2276
- "our Episode on the Marketing Education Cloud Podcast how to share your pages "
2277
- "so that you get better social signals and also 10,000 visits from social "
2278
- "media: [link]https://www.squirrly.co/podcast/[/link] %s"
2279
- msgstr ""
2280
-
2281
- #: models/Audits.php:289
2282
- msgid ""
2283
- "All the shares and likes that your fans will give your pages will contribute "
2284
- "to the total number of shares from social media (social signals). When "
2285
- "Google’s algorithm starts “seeing” that people share your pages on social "
2286
- "media, it will consider that your site is becoming popular and will increase "
2287
- "its rankings."
2288
- msgstr ""
2289
-
2290
- #: models/Audits.php:290
2291
- msgid "You have to share your articles with your fans"
2292
- msgstr ""
2293
-
2294
- #: models/Audits.php:295
2295
- msgid "Share Buttons in your articles?"
2296
- msgstr ""
2297
-
2298
- #: models/Audits.php:297
2299
- msgid "The pages without share buttons"
2300
- msgstr ""
2301
-
2302
- #: models/Audits.php:298
2303
- #, php-format
2304
- msgid ""
2305
- "How can we get social media share buttons on our website? %s There are many "
2306
- "options to help you get social sharing buttons inside your website. However, "
2307
- "you should be careful not to let them ruin your loading times. Most plugins "
2308
- "and apps will do that. %s Sumo.com is an Okay option. I'm not really happy "
2309
- "with them, because I find it slows my pages. %s My current favorites are "
2310
- "[link]http://info.zotabox.com/[/link] . I'm using them on Shopify and "
2311
- "WordPress. It works with any CMS platform. The loading speed is great and "
2312
- "their social media counters work perfectly.%s"
2313
- msgstr ""
2314
-
2315
- #: models/Audits.php:299
2316
- msgid ""
2317
- "All there is to it is: make the buttons obvious, so people can easily find "
2318
- "them. Make sure they don't slow your site down. Make sure they look great on "
2319
- "mobile."
2320
- msgstr ""
2321
-
2322
- #: models/Audits.php:300
2323
- msgid "Add Social Share buttons in your articles"
2324
- msgstr ""
2325
-
2326
- #: models/Audits.php:305
2327
- msgid "Social 'Follow me' Buttons?"
2328
- msgstr ""
2329
-
2330
- #: models/Audits.php:307
2331
- msgid "The pages without social buttons"
2332
- msgstr ""
2333
-
2334
- #: models/Audits.php:308
2335
- #, php-format
2336
- msgid ""
2337
- "How can we fix the Social Follow Me buttons of the website? %s Add buttons "
2338
- "to your website, that allow your visitors to check your social media "
2339
- "profiles and follow you on social media. %s This is one of the most "
2340
- "important aspects nowadays, if you want to build trust with your website. %s "
2341
- "Learn more with Expectation Marketing. Expectation Marketing is all about "
2342
- "teaching you how to implement such buttons and other trust elements for your "
2343
- "digital brand. [link]http://expectationmarketing.com/[/link] %s"
2344
- msgstr ""
2345
-
2346
- #: models/Audits.php:309
2347
- msgid ""
2348
- "Place the buttons in your site's footer, to make sure they're always "
2349
- "accessible. Web users are used to finding them there when they wish to "
2350
- "connect to brands on social media."
2351
- msgstr ""
2352
-
2353
- #: models/Audits.php:310
2354
- msgid ""
2355
- "Add links to your Social Media profiles to strengthen social signals and "
2356
- "keep readers engaged."
2357
- msgstr ""
2358
-
2359
- #: models/Audits.php:315
2360
- msgid "Open Graph protocol?"
2361
- msgstr ""
2362
-
2363
- #: models/Audits.php:317
2364
- msgid "The pages without Open Graph metas"
2365
- msgstr ""
2366
-
2367
- #: models/Audits.php:318
2368
- #, php-format
2369
- msgid ""
2370
- "How can we fix the Open Graph of the website? %s You need to make sure "
2371
- "you're going to fix the Open Graph image AS WELL AS all the other open graph "
2372
- "elements. %s If you're on WordPress, you're easily getting all the settings "
2373
- "you need from Squirrly SEO . Make sure you use it. %s Below, you can see "
2374
- "the examples of open graph elements you need to implement in the <head> "
2375
- "section of your page's code. Make sure you replace the elements inside "
2376
- "content=\" \" with your own data: your own titles, own image URLs, etc. %s "
2377
- "<meta property=“og:url” content=“{site}/product/expectation-marketing-"
2378
- "ebook/“ /> %s <meta property=“og:title” content=“Expectation Marketing "
2379
- "[Book]” /> %s <meta property=“og:description” content=“If you`re wondering "
2380
- "why your marketing strategy isn`t bringing the results you expected this is "
2381
- "the right ebook for you. Expectation Marketing is about giving you an acti” /"
2382
- "> %s <meta property=“og:type” content=“product” /> %s <meta property=“og:"
2383
- "image” content=“{site}/image.jpg” /> %s <meta property=“og:image:width” "
2384
- "content=“700” /> %s <meta property=“og:image:height” content=“536” /> %s "
2385
- "<meta property=“og:image:type” content=“image/jpeg” /> %s <meta property=“og:"
2386
- "site_name” content=“Expectation Marketing” /> %s <meta property=“og:locale” "
2387
- "content=“en” />%s"
2388
- msgstr ""
2389
-
2390
- #: models/Audits.php:319
2391
- msgid ""
2392
- "Fixing this will improve Click Through Rates on Facebook, LinkedIN. "
2393
- "Guaranteed. Make sure you use this to control how your pages look on social "
2394
- "media when people share them."
2395
- msgstr ""
2396
-
2397
- #: models/Audits.php:320
2398
- msgid "Add the meta Open Graph tag in your page's header."
2399
- msgstr ""
2400
-
2401
- #: models/Audits.php:325
2402
- msgid "Twitter Card?"
2403
- msgstr ""
2404
-
2405
- #: models/Audits.php:327
2406
- msgid "The pages without Twitter Card metas"
2407
- msgstr ""
2408
-
2409
- #: models/Audits.php:328
2410
- #, php-format
2411
- msgid ""
2412
- "How can we fix the Twitter Cards of the website? %s You need to make sure "
2413
- "you're going to fix the Twitter Card image AS WELL AS all the other twitter "
2414
- "card elements. %s If you're on WordPress, you're easily getting all the "
2415
- "settings you need from Squirrly SEO. Make sure you use it. %s Below, you can "
2416
- "see examples of twitter card elements you need to implement in the <head> "
2417
- "section of your page's code. Make sure you replace the elements inside "
2418
- "content=\" \" with your own data: your own titles, own image URLs, etc. %s "
2419
- "<meta property=“twitter:url” content=“{site}/product/expectation-marketing-"
2420
- "ebook/“ /> %s <meta property=“twitter:title” content=“Expectation Marketing "
2421
- "[Book]” /> %s <meta property=“twitter:description” content=“If you`re "
2422
- "wondering why your marketing strategy isn`t bringing the results you "
2423
- "expected this is the right ebook for you. Expectation Marketing is about "
2424
- "giving you an acti” /> %s <meta property=“twitter:image” content=“{site}/"
2425
- "image.jpg” /> %s <meta property=“twitter:domain” content=“Expectation "
2426
- "Marketing” /> %s <meta property=“twitter:card” content=“summary” />%s"
2427
- msgstr ""
2428
-
2429
- #: models/Audits.php:329
2430
- msgid ""
2431
- "Fixing this will improve Click Through Rates on Twitter. Guaranteed. Make "
2432
- "sure you use this to control how your pages look on social media when people "
2433
- "share them."
2434
- msgstr ""
2435
-
2436
- #: models/Audits.php:330
2437
- msgid "Add Twitter Card to make your articles look better on Twitter."
2438
- msgstr ""
2439
-
2440
- #: models/Audits.php:338
2441
- msgid "Majestic Backlinks"
2442
- msgstr ""
2443
-
2444
- #: models/Audits.php:339 models/Audits.php:340 models/Audits.php:357
2445
- #: models/Audits.php:358
2446
- msgid "link(s)"
2447
- msgstr ""
2448
-
2449
- #: models/Audits.php:339 models/Audits.php:340
2450
- msgid "Backlinks Count"
2451
- msgstr ""
2452
-
2453
- #: models/Audits.php:341 models/Audits.php:350
2454
- #, php-format
2455
- msgid ""
2456
- "How can we fix the Inbound Links Number to the latest 10 Pages? %s Many are "
2457
- "tempted to go to [link]fiverr.com[/link] for something like this. Avoid "
2458
- "shady SEO. What you can try, and ONLY if it makes sense, is to get bloggers "
2459
- "who sell on fiverr to place your article (with links to your own site) on "
2460
- "their site. %s You can easily get backlinks from multiple domains by showing "
2461
- "that your business: - is an alternative to some other existing business "
2462
- "(there are many websites on which people look for alternatives and they'll "
2463
- "be happy to include your site as well, because it supports their purpose) - "
2464
- "has discounts and coupons (there are many websites for coupon and discounts. "
2465
- "Just search on Google and you'll find many. They'll happily include your "
2466
- "coupon codes and links to your site) - hosts giveaways and contests (many "
2467
- "websites that will happily link to the contest page on your website) %s "
2468
- "Broken Link Building, using tools like Screaming Frog to help you find "
2469
- "broken links.%s Use Squirrly SPY to check the sites which send links to your "
2470
- "competitors or to other websites in your niche (or audience, or market): "
2471
- "[link]https://www.squirrly.co/seo/spy/[/link] %s Many Squirrly users decided "
2472
- "to purchase SPY reports and found out that they easily identified people "
2473
- "from their industry who were easy to reach. This helped them secure new "
2474
- "links from trust-worthy sites. %s"
2475
- msgstr ""
2476
-
2477
- #: models/Audits.php:342 models/Audits.php:351
2478
- msgid ""
2479
- "Use the BackLinks Assistant [link]https://www.producthunt.com/upcoming/"
2480
- "backlinks-assistant-by-squirrly[/link]. There are many other ways to "
2481
- "increase the number of backlinks. Find more ideas in this resource: https://"
2482
- "www.squirrly.co/how-to-improve-the-site-audit-score-given-by-squirrly-seo-"
2483
- "plugin/. Send it to your team. Brainstorm items from our list which your "
2484
- "team can start working on."
2485
- msgstr ""
2486
-
2487
- #: models/Audits.php:347
2488
- msgid "Majestic Unique Domains"
2489
- msgstr ""
2490
-
2491
- #: models/Audits.php:348 models/Audits.php:349
2492
- msgid "Links from {total} domains"
2493
- msgstr ""
2494
-
2495
- #: models/Audits.php:348 models/Audits.php:349
2496
- msgid "Unique Domains Count"
2497
- msgstr ""
2498
-
2499
- #: models/Audits.php:356
2500
- msgid "Moz Backlinks"
2501
- msgstr ""
2502
-
2503
- #: models/Audits.php:357 models/Audits.php:358
2504
- msgid "Moz Backlinks Count"
2505
- msgstr ""
2506
-
2507
- #: models/Audits.php:359
2508
- #, php-format
2509
- msgid ""
2510
- "How can we fix the Inbound Links Number to the latest 10 Pages? %s Many are "
2511
- "tempted to go to fiverr.com for something like this. Avoid shady SEO. What "
2512
- "you can try, and ONLY if it makes sense, is to get bloggers who sell on "
2513
- "fiverr to place your article (with links to your own site) on their site. %s "
2514
- "You can easily get backlinks from multiple domains by showing that your "
2515
- "business: - is an alternative to some other existing business (there are "
2516
- "many websites on which people look for alternatives and they'll be happy to "
2517
- "include your site as well, because it supports their purpose) - has "
2518
- "discounts and coupons (there are many websites for coupon and discounts. "
2519
- "Just search on Google and you'll find many. They'll happily include your "
2520
- "coupon codes and links to your site) - hosts giveaways and contests (many "
2521
- "websites that will happily link to the contest page on your website) %s "
2522
- "Broken Link Building, using tools like Screaming Frog to help you find "
2523
- "broken links.%s"
2524
- msgstr ""
2525
-
2526
- #: models/Audits.php:360
2527
- msgid ""
2528
- "Use the BackLinks Assistant [link]https://www.producthunt.com/upcoming/"
2529
- "backlinks-assistant-by-squirrly[/link] . There are many other ways to "
2530
- "increase the number of backlinks. Just check out the full documentation "
2531
- "below. Send it to your team. Brainstorm items from our list which your team "
2532
- "can start working on."
2533
- msgstr ""
2534
-
2535
- #: models/Audits.php:361
2536
- msgid ""
2537
- "Find more blogs, forums, directories to add links there. Contribute to the "
2538
- "respective community and they will appreciate it."
2539
- msgstr ""
2540
-
2541
- #: models/Audits.php:366
2542
- msgid "Links with noFollow?"
2543
- msgstr ""
2544
-
2545
- #: models/Audits.php:367
2546
- msgid "Nofollow Links Count"
2547
- msgstr ""
2548
-
2549
- #: models/Audits.php:369
2550
- #, php-format
2551
- msgid ""
2552
- "How can we fix the No-Follow links of the website? %s You can find an "
2553
- "extremely easy way to do this in the SEO Kit of Squirrly: [link]https://www."
2554
- "squirrly.co/seo/kit/[/link] %s You can start doing this even if you don't "
2555
- "have an advanced or complex SEO strategy for all your site's inner links. If "
2556
- "you have pages in your SEO strategy that are super important (you NEED those "
2557
- "pages to be found via search) make sure you add: <meta name=\"robots\" "
2558
- "content=\"index, nofollow\" /> This ensures that Google considers this a "
2559
- "final page. If many other pages link on to this page and this is the final "
2560
- "one, it means that it is the most valuable resource. %s Identify links on "
2561
- "your pages that are not important for you or for the purpose of the site "
2562
- "itself. Maybe you're sending a link to chef Jamie Oliver's recipe for hot "
2563
- "sauce. You should make sure that you add the No Follow tag to that link "
2564
- "going out of your site, because you don't want Google to pass on link juice "
2565
- "to Jaime Oliver. You'd give him a part of your SEO Authority and you don't "
2566
- "want that. You should also add No-Follow tags to internal links from your "
2567
- "very own site. Add no-follow to pages like \"/login\", \"/register\" \"/"
2568
- "terms-of-use\", which are not important to be found via search engines. %s "
2569
- "Add rel=\"nofollow\" to links inside your pages to fix this task. If you'd "
2570
- "want to NoFollow your Sign In page you could do it like this: <a href="
2571
- "\"signin.php\" rel=\"nofollow\">sign in</a>%s"
2572
- msgstr ""
2573
-
2574
- #: models/Audits.php:370
2575
- msgid ""
2576
- "You could add no-follow to most of the links from your site that go towards "
2577
- "external, third-party websites. The only external sites you should leave "
2578
- "without No-Follow are sites that you'd like to be associated with by Google. "
2579
- "This is to say that in some cases you may want to send do-follow links to "
2580
- "other people's sites if they are super high authority and would help Google "
2581
- "better understand what your site's content is all about."
2582
- msgstr ""
2583
-
2584
- #: models/Audits.php:371
2585
- msgid "Add nofollow links to pages like Terms and Conditions."
2586
- msgstr ""
2587
-
2588
- #: models/Audits.php:380 models/FocusPages.php:30
2589
- msgid "Page Authority"
2590
- msgstr ""
2591
-
2592
- #: models/Audits.php:381 models/Audits.php:382
2593
- msgid "average authority"
2594
- msgstr ""
2595
-
2596
- #: models/Audits.php:383
2597
- #, php-format
2598
- msgid ""
2599
- "How can we fix the Authority of the website? %s You must start by "
2600
- "understanding this: Authority is Squirrly's calculated metric for how well a "
2601
- "given webpage is likely to rank in Google's search results. It collects data "
2602
- "from social media, google analytics and inbound links (backlinks to your own "
2603
- "site) %s You can follow the PRO Tips sections from Audit. %s Get more Buzz "
2604
- "on Social Media. Get More Traffic. Get More Sites to link back to your own "
2605
- "site. That's how you increase your Authority.%s Read the Traffic section of "
2606
- "the Audit for more fixes and ideas. Bringing more Traffic increases "
2607
- "Authority. %s Read the Social Media ideas for getting your pages shared on "
2608
- "social networks. In the SEO Audit from Squirrly. Get more shares and traffic "
2609
- "from social media. That will help boost your overall Web Authority %s Use "
2610
- "Focus Pages from Squirrly: everything we tell you there helps boost your "
2611
- "authority: [link]https://plugin.squirrly.co/focus-pages/[/link] %s"
2612
- msgstr ""
2613
-
2614
- #: models/Audits.php:384
2615
- msgid ""
2616
- "You can build up a solid Content Strategy using the Daily SEO Goals and our "
2617
- "brand new Private SEO Consultant. In a Plugin. Powered by Machine Learning "
2618
- "and Cloud Services: [link]https://plugin.squirrly.co/best-seo-goals/[/link] "
2619
- "or you can start getting more BackLinks using the BackLinks Assistant "
2620
- "[link]https://www.producthunt.com/upcoming/backlinks-assistant-by-squirrly[/"
2621
- "link]."
2622
- msgstr ""
2623
-
2624
- #: models/Audits.php:385
2625
- msgid "Get links to your page from domains with authority."
2626
- msgstr ""
2627
-
2628
- #: models/Audits.php:390
2629
- msgid "Alexa Rank"
2630
- msgstr ""
2631
-
2632
- #: models/Audits.php:393
2633
- #, php-format
2634
- msgid ""
2635
- "How can we fix the Alexa Rank of the website? %s Get more traffic to your "
2636
- "website. (the visitors should have the Alexa toolbar installed for Alexa to "
2637
- "be able to measure the traffic). %s You could encourage your visitors to "
2638
- "install the Alexa toolbar (if it makes sense for your business or audience, "
2639
- "of course). %s Increase your SEO rankings, get more shares on social media. "
2640
- "You can use tools like Social Squirrly to make sure you constantly promote "
2641
- "your pages, without doing any manual work. And without forgetting to keep "
2642
- "posting them. [link]https://www.squirrly.co/social-media/tools-for-digital-"
2643
- "marketing/[/link]%s"
2644
- msgstr ""
2645
-
2646
- #: models/Audits.php:394
2647
- msgid ""
2648
- "A certain and tested way of increasing Alexa rank is creating and promoting "
2649
- "many pieces of fresh content. An agency like Squirrly's Content Agency can "
2650
- "help you with this. [link]http://www.squirrly.co/agency[/link]"
2651
- msgstr ""
2652
-
2653
- #: models/Audits.php:395
2654
- msgid "Try to gain organic traffic to your site."
2655
- msgstr ""
2656
-
2657
- #: models/Audits.php:400
2658
- msgid "Domain Age"
2659
- msgstr ""
2660
-
2661
- #: models/Audits.php:403
2662
- #, php-format
2663
- msgid ""
2664
- "How can we fix the Domain Age of the website? %s While you certainly can't "
2665
- "go back and forth in time like the Flash, there are things you can do, like: "
2666
- "make sure your domain can be crawled by search engines. %s Ping your domain "
2667
- "name as soon as possible using Google Search Console. Ask GSC asap to index "
2668
- "your pages. Both by manual URL index and by placing the sitemaps generated "
2669
- "by Squirrly. %s Get your website on Way Back Machine. [link]https://archive."
2670
- "org/web/[/link] Archive.org even has a tool called Save Page Now which will "
2671
- "guarantee your entry into Way Back Machine.%s"
2672
- msgstr ""
2673
-
2674
- #: models/Audits.php:404
2675
- msgid ""
2676
- "If Squirrly could crawl your website and find your pages + show you the "
2677
- "Audit, it means your domain and pages can be crawled. Just make sure you're "
2678
- "not stopping the Google crawlers in your code via \"no-index\" or via robots."
2679
- "txt"
2680
- msgstr ""
2681
-
2682
- #: models/Audits.php:405
2683
- msgid ""
2684
- "Your domain is new. I know it will get older, but still, it's good to know "
2685
- "what to expect if it's new :)"
2686
- msgstr ""
2687
-
2688
- #: models/Audits.php:410
2689
- msgid "Site Icon"
2690
- msgstr ""
2691
-
2692
- #: models/Audits.php:413
2693
- #, php-format
2694
- msgid ""
2695
- "How can we fix the favicon of the website? %s If you don't already have a "
2696
- "favicon, you'll need to create one. The dimensions are 16 x 16 pixels %s You "
2697
- "can easily create one using this [link]http://www.favicon.cc/[/link] . "
2698
- "Upload it to your own server after creating it. %s Once you have the "
2699
- "favicon, use this in the code of your pages: <link rel=“shortcut icon” "
2700
- "href=“/images/specialicon.ico” type=“image/x-icon” />%s"
2701
- msgstr ""
2702
-
2703
- #: models/Audits.php:414
2704
- msgid ""
2705
- "Platforms like Shopify handle this with their default engine. On WordPress "
2706
- "you can use Squirrly SEO to upload and control the favicon displayed on your "
2707
- "pages."
2708
- msgstr ""
2709
-
2710
- #: models/Audits.php:415 models/Audits.php:425
2711
- msgid "Add an icon for your site"
2712
- msgstr ""
2713
-
2714
- #: models/Audits.php:420
2715
- msgid "IPad and IPhone Icons"
2716
- msgstr ""
2717
-
2718
- #: models/Audits.php:423
2719
- #, php-format
2720
- msgid ""
2721
- "How can we fix the Apple Icon of the website? %s If you don't already have "
2722
- "an Apple Icon, you'll need to create one. The dimensions are 129 x 129 "
2723
- "pixels. It will need to be a .png file %s You can easily create one using "
2724
- "this [link]https://www.canva.com/[/link] . Upload it to your own server "
2725
- "after creating it. %s Once you have the Apple Icon, use this in the code (in "
2726
- "the <head> section) of your pages: %s <link rel=“apple-touch-icon” href=“/"
2727
- "apple-touch-icon.png” />%s"
2728
- msgstr ""
2729
-
2730
- #: models/Audits.php:424
2731
- msgid ""
2732
- "Platforms like Shopify handle this with their default engine. On WordPress "
2733
- "you can use Squirrly SEO to upload and control the Apple Icon displayed on "
2734
- "user's home screens when they bookmark your pages."
2735
- msgstr ""
2736
-
2737
- #: models/Audits.php:464 models/Audits.php:497 models/Audits.php:516
2738
- #: models/Audits.php:618 models/focuspages/Audit.php:188
2739
- #: models/focuspages/Audit.php:209 models/focuspages/Audit.php:230
2740
- #: models/focuspages/Audit.php:251
2741
- msgid "URL"
2742
- msgstr ""
2743
-
2744
- #: models/Audits.php:465
2745
- msgid "Visitors"
2746
- msgstr ""
2747
-
2748
- #: models/Audits.php:466
2749
- msgid "Bounce"
2750
- msgstr ""
2751
-
2752
- #: models/Audits.php:482
2753
- msgid "No traffic data found"
2754
- msgstr ""
2755
-
2756
- #: models/Audits.php:498 models/Audits.php:517
2757
- msgid "Total"
2758
- msgstr ""
2759
-
2760
- #: models/Audits.php:544
2761
- msgid "Facebook reactions"
2762
- msgstr ""
2763
-
2764
- #: models/Audits.php:548
2765
- msgid "Facebook shares"
2766
- msgstr ""
2767
-
2768
- #: models/Audits.php:552
2769
- msgid "Reddit shares"
2770
- msgstr ""
2771
-
2772
- #: models/Audits.php:556
2773
- msgid "Pinterest shares"
2774
- msgstr ""
2775
-
2776
- #: models/Audits.php:619
2777
- msgid "Value"
2778
- msgstr ""
2779
-
2780
- #: models/Audits.php:686 view/Audits/Audit.php:142 view/Audits/Compare.php:162
2781
- msgid "PRO TIP"
2782
- msgstr ""
2783
-
2784
- #: models/Audits.php:706
2785
- msgid "Requires Attention!"
2786
- msgstr ""
2787
-
2788
- #: models/Audits.php:710
2789
- msgid "Can be improved."
2790
- msgstr ""
2791
-
2792
- #: models/Audits.php:772
2793
- msgid "not yet"
2794
- msgstr ""
2795
-
2796
- #: models/BulkSeo.php:17
2797
- msgid "METAs"
2798
- msgstr ""
2799
-
2800
- #: models/BulkSeo.php:18 view/Blocks/Snippet.php:93
2801
- msgid "Open Graph"
2802
- msgstr ""
2803
-
2804
- #: models/BulkSeo.php:19 view/Blocks/Snippet.php:97
2805
- msgid "Twitter Card"
2806
- msgstr ""
2807
-
2808
- #: models/BulkSeo.php:20 models/FocusPages.php:20 view/Blocks/Snippet.php:101
2809
- msgid "Visibility"
2810
- msgstr ""
2811
-
2812
- #: models/CheckSeo.php:38
2813
- msgid "Make your site Visible asap"
2814
- msgstr ""
2815
-
2816
- #: models/CheckSeo.php:39
2817
- #, php-format
2818
- msgid ""
2819
- "If you want Google (or any other search engine) to Display your pages and "
2820
- "then Rank them higher in search results, your website needs to be Public and "
2821
- "the pages indexable. Currently, a setting in your WordPress makes this "
2822
- "impossible. You selected '%s' in %sSettings > Reading%s. You need to UNCHECK "
2823
- "that option."
2824
- msgstr ""
2825
-
2826
- #: models/CheckSeo.php:39 models/CheckSeo.php:40
2827
- #: models/bulkseo/Visibility.php:104 view/Blocks/Snippet.php:970
2828
- msgid "Discourage search engines from indexing this site"
2829
- msgstr ""
2830
-
2831
- #: models/CheckSeo.php:40
2832
- #, php-format
2833
- msgid "Uncheck the option: %s in %sSettings > Reading%s."
2834
- msgstr ""
2835
-
2836
- #: models/CheckSeo.php:41
2837
- msgid ""
2838
- "Google can't show your site to anybody, because you haven't made your site "
2839
- "public and indexable. You must fix this today."
2840
- msgstr ""
2841
-
2842
- #: models/CheckSeo.php:52
2843
- msgid "Get the meta title tag in the front-end"
2844
- msgstr ""
2845
-
2846
- #: models/CheckSeo.php:53
2847
- msgid ""
2848
- "Without the title tag in the front-end, search engines will 'think' that "
2849
- "your website is broken. Currently the title tag is missing in front-end."
2850
- msgstr ""
2851
-
2852
- #: models/CheckSeo.php:54
2853
- #, php-format
2854
- msgid ""
2855
- "Go to %sSquirrly > SEO Settings > Metas%s and switch on 'Optimize the "
2856
- "Titles'. If it's already switched on, check if another plugin is stopping "
2857
- "Squirrly from showing the Title."
2858
- msgstr ""
2859
-
2860
- #: models/CheckSeo.php:55
2861
- msgid ""
2862
- "You have to make the Title tag of the page visible in the front-end of the "
2863
- "website. As soon as possible. Otherwise, you will have difficulty ranking."
2864
- msgstr ""
2865
-
2866
- #: models/CheckSeo.php:66
2867
- msgid "Turn Squirrly's AMP functions to ON"
2868
- msgstr ""
2869
-
2870
- #: models/CheckSeo.php:67
2871
- msgid ""
2872
- "AMP site detected and Squirrly's amp is OFF - If this website is an AMP "
2873
- "website you need to make sure that you activate Squirrly AMP Tracking for "
2874
- "it. Squirrly will load Google Analytics and Facebook Pixel for AMP and avoid "
2875
- "AMP script errors."
2876
- msgstr ""
2877
-
2878
- #: models/CheckSeo.php:68
2879
- #, php-format
2880
- msgid "Activate AMP tracking in %s Squirrly > SEO Settings > Tracking Tools%s "
2881
- msgstr ""
2882
-
2883
- #: models/CheckSeo.php:69
2884
- msgid ""
2885
- "You must activate the AMP settings for Squirrly SEO, right now. Otherwise, "
2886
- "the AMP version of the site will have missing pieces."
2887
- msgstr ""
2888
-
2889
- #: models/CheckSeo.php:80
2890
- msgid "Turn OFF Squirrly's AMP functions now"
2891
- msgstr ""
2892
-
2893
- #: models/CheckSeo.php:81
2894
- msgid ""
2895
- "AMP site is NOT detected and Squirrly AMP is ON. - If this website is not an "
2896
- "AMP website you need to make sure that you switch off Squirrly AMP Tracking. "
2897
- "This way, Google will be able to track your website's visitors"
2898
- msgstr ""
2899
-
2900
- #: models/CheckSeo.php:82
2901
- #, php-format
2902
- msgid ""
2903
- "Switch OFF AMP tracking in %sSquirrly > SEO Settings > Tracking Tools%s "
2904
- msgstr ""
2905
-
2906
- #: models/CheckSeo.php:83
2907
- msgid ""
2908
- "You must switch off AMP Settings right now. Otherwise, the website's "
2909
- "tracking tools won't work properly."
2910
- msgstr ""
2911
-
2912
- # @ squirrly-seo
2913
- #: models/CheckSeo.php:94
2914
- #, fuzzy
2915
- #| msgid "Squirrly LIVE SEO assistant"
2916
- msgid "Activate Squirrly SEO Title now"
2917
- msgstr "Squirrly LIVE SEO-Assistent"
2918
-
2919
- #: models/CheckSeo.php:95
2920
- msgid ""
2921
- "Squirrly SEO title is NOT active for your website.If you DON'T use other SEO "
2922
- "plugins, you should activate this option, and Squirrly SEO will add the "
2923
- "Title tag on each page of your website and remove any duplicates. Your title "
2924
- "tag determines your display title in SERPs, and it’s meant to help Google "
2925
- "and human readers understand what your pages are all about"
2926
- msgstr ""
2927
-
2928
- #: models/CheckSeo.php:96
2929
- #, php-format
2930
- msgid ""
2931
- "Go to %sSquirrly > SEO Settings > Metas%s and switch on: 'Optimize the "
2932
- "Titles'"
2933
- msgstr ""
2934
-
2935
- #: models/CheckSeo.php:97
2936
- msgid ""
2937
- "You should activate the Squirrly SEO title to help Search Engines understand "
2938
- "what your pages are about and ensure all of your pages have titles."
2939
- msgstr ""
2940
-
2941
- #: models/CheckSeo.php:108
2942
- msgid "Make your LINKS SEO-Friendly"
2943
- msgstr ""
2944
-
2945
- #: models/CheckSeo.php:109
2946
- msgid ""
2947
- "Google considers the URLs you use on your website to be a ranking factor. "
2948
- "The permalinks you use and the structure you decide on adopting is "
2949
- "ultimately an SEO signal. Having a good permalink structure also helps make "
2950
- "your site Human-friendly. "
2951
- msgstr ""
2952
-
2953
- #: models/CheckSeo.php:110
2954
- #, php-format
2955
- msgid ""
2956
- "Your URLs should be super easy to read. Go to your %s WordPress dashboard > "
2957
- "Settings > Permalinks %s .There, you can create a custom URL structure for "
2958
- "your permalinks."
2959
- msgstr ""
2960
-
2961
- #: models/CheckSeo.php:111
2962
- msgid ""
2963
- "Make your LINKS SEO-Friendly. You're losing potential rankings at the moment."
2964
- msgstr ""
2965
-
2966
- #: models/CheckSeo.php:121
2967
- msgid "Activate the Sitemap from Squirrly"
2968
- msgstr ""
2969
-
2970
- #: models/CheckSeo.php:122
2971
- msgid ""
2972
- "XML sitemaps help search engines and spiders discover new pages on your "
2973
- "website. It also helps them better understand the structure of your website. "
2974
- "Activate your Sitemap XML setting. Squirrly SEO will then generate your "
2975
- "sitemap, according to different items you can set up."
2976
- msgstr ""
2977
-
2978
- #: models/CheckSeo.php:123
2979
- #, php-format
2980
- msgid ""
2981
- "Go to %sSquirrly > SEO Settings > Sitemap XML%s to setup the sitemap. Choose "
2982
- "for which types of URLs you'll want to have sitemaps. It depends on your "
2983
- "strategy. Leave the defaults if you're uncertain."
2984
- msgstr ""
2985
-
2986
- #: models/CheckSeo.php:124
2987
- msgid ""
2988
- "Lead Search Engines to your most important pages using XML sitemaps. Do this "
2989
- "and you can rank better. "
2990
- msgstr ""
2991
-
2992
- #: models/CheckSeo.php:135
2993
- msgid "Get a robots txt file"
2994
- msgstr ""
2995
-
2996
- #: models/CheckSeo.php:136
2997
- msgid ""
2998
- "Robots.txt is a text file webmasters create to instruct how to crawl & index "
2999
- "pages on their website. You can use this file to tell search engine robots "
3000
- "what to crawl and what not to crawl on your site. Search bots usually look "
3001
- "for this file in a website as soon as they enter one. Therefore, it's very "
3002
- "important to have a robots.txt file in the first place."
3003
- msgstr ""
3004
-
3005
- #: models/CheckSeo.php:137
3006
- #, php-format
3007
- msgid ""
3008
- "Go to %sSquirrly > SEO Settings > Robots%s and switch on Activate Robots. If "
3009
- "it's already switched on, check if another plugin is stopping Squirrly from "
3010
- "adding the Robots.txt URL."
3011
- msgstr ""
3012
-
3013
- #: models/CheckSeo.php:138
3014
- msgid ""
3015
- "You should help Search Engine bots find what they need. Create a Robots.txt "
3016
- "file as soon as possible if you want your site to be seen in Search Results."
3017
- msgstr ""
3018
-
3019
- #: models/CheckSeo.php:150
3020
- msgid "Error detected for your Focus Page"
3021
- msgstr ""
3022
-
3023
- #: models/CheckSeo.php:151
3024
- #, php-format
3025
- msgid ""
3026
- "An error is preventing Squirrly from accessing and retrieving critical data "
3027
- "about your Focus Page. You should fix this so that Squirrly can generate a "
3028
- "complete audit of your page and show you what you need to do to improve its "
3029
- "chances of ranking. %sThe error can also prevent human visitors from "
3030
- "accessing your page, which is a critical issue. "
3031
- msgstr ""
3032
-
3033
- #: models/CheckSeo.php:152
3034
- msgid ""
3035
- "Use a different browser to make sure your Focus Page is visible. Whitelist "
3036
- "our crawler IP address (176.9.112.210) to allow our server to verify your "
3037
- "page so that you’ll receive a full audit."
3038
- msgstr ""
3039
-
3040
- #: models/CheckSeo.php:153
3041
- msgid ""
3042
- "Make sure that your Focus Page is published and can be accessed by all users "
3043
- "and crawlers."
3044
- msgstr ""
3045
-
3046
- #: models/CheckSeo.php:164
3047
- msgid "Add Focus Page. Use it to Reach First Positions"
3048
- msgstr ""
3049
-
3050
- #: models/CheckSeo.php:165
3051
- msgid ""
3052
- "Adding a Focus Page, and then using the Daily SEO Goals related to it, is a "
3053
- "sure way for all aspiring SEO Stars to begin reaching top positions in "
3054
- "Google. SEO is very complicated, and Focus Pages is the only method that "
3055
- "helps you un-complicate it. By following this method you will build a "
3056
- "repeatable, smart strategy, powered by Machine Learning."
3057
- msgstr ""
3058
-
3059
- #: models/CheckSeo.php:166
3060
- #, php-format
3061
- msgid ""
3062
- "Go to %sSquirrly SEO > Focus Pages > Add New Page%s to add a page in Focus "
3063
- "Pages."
3064
- msgstr ""
3065
-
3066
- #: models/CheckSeo.php:167
3067
- msgid ""
3068
- "You don't currently have a clearly defined strategy. If you're a Non-SEO "
3069
- "Expert you won't be able to reach TOP 10 rankings without Focus Pages."
3070
- msgstr ""
3071
-
3072
- #: models/CheckSeo.php:178
3073
- msgid "Change WordPress' default tagline"
3074
- msgstr ""
3075
-
3076
- #: models/CheckSeo.php:179
3077
- msgid ""
3078
- "The default WordPress tagline is “Just another WordPress site” - which is "
3079
- "like saying your site is nothing special. It's important to customize it so "
3080
- "that you clearly communicate what your site is about to first-time visitors. "
3081
- "Search Engines also pay close attention to taglines."
3082
- msgstr ""
3083
-
3084
- #: models/CheckSeo.php:180
3085
- msgid ""
3086
- "How you optimize your tagline can depend on the theme you are using (some "
3087
- "themes don't display the tagline automatically). Your best bet is to go to "
3088
- "Appearance > Customize from your WP dashboard to access the Customizer. "
3089
- "There, you can customize your tagline. Best Practices: Make sure your "
3090
- "tagline is catchy and reflects your site as a whole (its niche, purpose, the "
3091
- "content that can be found on your site. Include strong keywords in your "
3092
- "tagline, and ensure the tagline fits with your overall branding strategy."
3093
- msgstr ""
3094
-
3095
- #: models/CheckSeo.php:181
3096
- msgid ""
3097
- "Optimize your tagline so that your site is NOT 'Just another WordPress "
3098
- "site' (or: Optimize your tagline to put your site’s best foot forward and "
3099
- "encourage visitors to stick around.)"
3100
- msgstr ""
3101
-
3102
- #: models/CheckSeo.php:191
3103
- msgid "Remove all no-index tags from all Focus Pages"
3104
- msgstr ""
3105
-
3106
- #: models/CheckSeo.php:192
3107
- msgid ""
3108
- "No-index tags suggest to search engines (most notably Google) NOT to index a "
3109
- "specific webpage. By using these tags for your Focus Pages, you're "
3110
- "preventing them from appearing in Google Search. This is bad, because it "
3111
- "means Search Engines won't show your most important pages (which should be "
3112
- "your Focus Pages). Removing all no-index tags for your Focus Pages will fix "
3113
- "it."
3114
- msgstr ""
3115
-
3116
- #: models/CheckSeo.php:193
3117
- #, php-format
3118
- msgid ""
3119
- "Look at all the places where you could have added instructions for Google "
3120
- "not to index this page from your site. Make sure that there is no such "
3121
- "instruction added to %sWordPress > Settings%s, or in a theme, or in a "
3122
- "plugin, or in %sSquirrly SEO's Snippet%s for this page. Also, make sure you "
3123
- "don't block this page in your %sRobots.txt%s file."
3124
- msgstr ""
3125
-
3126
- #: models/CheckSeo.php:194
3127
- msgid ""
3128
- "You must remove all no-index tags for your Focus Pages so that they will "
3129
- "appear in Google Search."
3130
- msgstr ""
3131
-
3132
- #: models/CheckSeo.php:205
3133
- msgid "Fix all Visibility issues for your Focus Pages"
3134
- msgstr ""
3135
-
3136
- #: models/CheckSeo.php:206
3137
- msgid ""
3138
- "Having visibility issues for your Focus Pages means that your Focus Pages "
3139
- "may not appear in search results. This is bad, because you'll want as many "
3140
- "people to see your most important pages (your Focus Pages)"
3141
- msgstr ""
3142
-
3143
- #: models/CheckSeo.php:207
3144
- #, php-format
3145
- msgid ""
3146
- "Go to %sSquirrly > Focus Pages%s and make sure all elements you see when you "
3147
- "click on the Visibility category are turned Green. If you see a red element, "
3148
- "follow the indications to turn it Green. That's how you make sure your Focus "
3149
- "Pages are protected against Visibility Issues."
3150
- msgstr ""
3151
-
3152
- #: models/CheckSeo.php:208
3153
- msgid ""
3154
- "Fix ALL Visibility issues for your Focus Pages so that they will appear on "
3155
- "Google Search."
3156
- msgstr ""
3157
-
3158
- #: models/CheckSeo.php:219 models/CheckSeo.php:222
3159
- msgid "Make Your Site Safe for Browsing Again"
3160
- msgstr ""
3161
-
3162
- #: models/CheckSeo.php:220
3163
- msgid ""
3164
- "Safe Browsing notifies webmasters when their websites are compromised by "
3165
- "malicious actors and helps them diagnose and resolve the problem so that "
3166
- "their visitors stay safe."
3167
- msgstr ""
3168
-
3169
- #: models/CheckSeo.php:221
3170
- #, php-format
3171
- msgid ""
3172
- "Go to %shttps://safebrowsing.google.com/%s and follow the instructions to "
3173
- "clean your website."
3174
- msgstr ""
3175
-
3176
- #: models/CheckSeo.php:232
3177
- msgid "Remove Duplicate Open Graph meta tags"
3178
- msgstr ""
3179
-
3180
- #: models/CheckSeo.php:233
3181
- msgid ""
3182
- "Some WordPress themes and plugins add Open Graph meta tags which lead to "
3183
- "duplicate Open Graph meta tags issues. It's important to check for this to "
3184
- "determine which plugin or if your theme is generating the duplicate open "
3185
- "graph meta tag. In this case, the plugin or theme causing this manages to "
3186
- "bypass Squirrly's Duplicate Remover features."
3187
- msgstr ""
3188
-
3189
- #: models/CheckSeo.php:234
3190
- msgid ""
3191
- "Start deactivating plugins (other than Squirrly SEO) from your WordPress "
3192
- "site. Run New Scans for Daily SEO Goals to see if you managed to get this "
3193
- "done! Then reactivate everything."
3194
- msgstr ""
3195
-
3196
- #: models/CheckSeo.php:235
3197
- msgid ""
3198
- "You need to remove Duplicate Open Graph meta tags as soon as possible. "
3199
- "Otherwise, you will miss good chances of ranking higher with your pages."
3200
- msgstr ""
3201
-
3202
- #: models/CheckSeo.php:246
3203
- msgid "Remove Duplicate Twitter cards tags"
3204
- msgstr ""
3205
-
3206
- #: models/CheckSeo.php:247
3207
- msgid ""
3208
- "Some WordPress themes and plugins add Twitter Card meta tags which lead to "
3209
- "duplicate Twitter card meta tags issues. It's important to check for tp "
3210
- "determine which plugin or if your theme is generating the duplicate open "
3211
- "graph meta tag. In this case, the plugin or theme causing this, manages to "
3212
- "bypass Squirrly's Duplicate Remover features."
3213
- msgstr ""
3214
-
3215
- #: models/CheckSeo.php:248
3216
- msgid ""
3217
- "Start deactivating plugins (other than Squirrly SEO) from your WordPress "
3218
- "site. Run New Scans for Daily SEO Goals to see if you manage to get this "
3219
- "done! Then reactivate everything."
3220
- msgstr ""
3221
-
3222
- #: models/CheckSeo.php:249
3223
- msgid ""
3224
- "You need to remove Duplicate Twitter Card meta tags as soon as possible; "
3225
- "Otherwise you will miss good chances of ranking higher with your pages."
3226
- msgstr ""
3227
-
3228
- #: models/CheckSeo.php:260
3229
- msgid "Use Squirrly's Expert-Grade Research Tool and Add Keywords to Briefcase"
3230
- msgstr ""
3231
-
3232
- #: models/CheckSeo.php:261
3233
- msgid ""
3234
- "With a few clicks, you'll do the work that SEO experts charge thousands of "
3235
- "dollars for (because they do this manually and it takes too much time that "
3236
- "way)."
3237
- msgstr ""
3238
-
3239
- #: models/CheckSeo.php:262
3240
- #, php-format
3241
- msgid ""
3242
- "Go to %sSquirrly > Keyword Research%s. Complete all steps until you get to "
3243
- "the final table with all of the data for each keyword. Add at least one "
3244
- "keyword to Briefcase from that interface."
3245
- msgstr ""
3246
-
3247
- #: models/CheckSeo.php:263
3248
- msgid ""
3249
- "You should perform a keyword research using Squirrly's Expert-Grade tool and "
3250
- "store at least one of the results in Briefcase."
3251
- msgstr ""
3252
-
3253
- #: models/CheckSeo.php:274
3254
- msgid ""
3255
- "Optimize your Focus Page with the great keyword you found during Keyword "
3256
- "research"
3257
- msgstr ""
3258
-
3259
- #: models/CheckSeo.php:275
3260
- msgid ""
3261
- "So far, only experts knew how to improve search relevance, which is one of "
3262
- "the biggest reasons why Google will choose your page to show up first. "
3263
- "You're well on your way to becoming a SEO Star. Now you can do all this on "
3264
- "your own by using the SEO Live Assistant and the keywords you stored to "
3265
- "briefcase."
3266
- msgstr ""
3267
-
3268
- #: models/CheckSeo.php:276
3269
- #, php-format
3270
- msgid ""
3271
- "Optimize up to 30% for a keyword you already stored to briefcase. Using the "
3272
- "SEO Live Assistant which you find in Edit Post interfaces in WP. Reindex "
3273
- "page with Google Search Console when you are done."
3274
- msgstr ""
3275
-
3276
- #: models/CheckSeo.php:277
3277
- msgid ""
3278
- "You must optimize all Focus Pages using a main keyword. This will improve "
3279
- "search relevance and you'll improve your site with something that only "
3280
- "experts were able to do before Squirrly."
3281
- msgstr ""
3282
-
3283
- #: models/CheckSeo.php:288
3284
- msgid "Optimize your text to get a good Search Relevancy score"
3285
- msgstr ""
3286
-
3287
- #: models/CheckSeo.php:289
3288
- msgid ""
3289
- "There is no point in ranking your content for a query that doesn’t match "
3290
- "what the user is looking for. Keywords help visitors find what they want, "
3291
- "which is why you should optimize your Focus Page using keywords. This way, "
3292
- "your page will be displayed to search users who are actually interested in "
3293
- "seeing the content provided in it. Choose different keywords for each of "
3294
- "your Focus pages. That way, instead of competing with each other, your pages "
3295
- "can compete with other sites within your industry."
3296
- msgstr ""
3297
-
3298
- #: models/CheckSeo.php:290
3299
- #, php-format
3300
- msgid ""
3301
- "To get this done, the text itself (the written words of the page) needs to "
3302
- "be optimized using Squirrly's SEO Live Assistant. Go to Edit Post and start "
3303
- "using the %sSEO Live Assistant%s"
3304
- msgstr ""
3305
-
3306
- #: models/CheckSeo.php:291
3307
- msgid ""
3308
- "Ensure your Focus Page has Search relevancy by optimizing it using a "
3309
- "keyword. Otherwise, that Focus Page will not be displayed in Search Results."
3310
- msgstr ""
3311
-
3312
- #: models/CheckSeo.php:302
3313
- msgid "Research your Focus Page's keyword"
3314
- msgstr ""
3315
-
3316
- #: models/CheckSeo.php:303
3317
- msgid ""
3318
- "For at least one of your Focus Pages, I see that you optimized for search "
3319
- "relevance using the SEO Live Assistant. However, you need to be able to read "
3320
- "the Search Volume, Competition, Recent Discussions and Trend for the "
3321
- "keyword. Otherwise, you might be going with a keyword that can't be ranked, "
3322
- "or can't bring traffic. Your SEO Star skills depend on this goal."
3323
- msgstr ""
3324
-
3325
- #: models/CheckSeo.php:304
3326
- msgid ""
3327
- "See the keyword. Place it in the research feature and perform a full keyword "
3328
- "research on it. Then add it to briefcase."
3329
- msgstr ""
3330
-
3331
- #: models/CheckSeo.php:305
3332
- msgid ""
3333
- "You must obtain keyword data for all main keywords used for your Focus "
3334
- "Pages. This will improve your skills and your understanding."
3335
- msgstr ""
3336
-
3337
- # @ squirrly-seo
3338
- #: models/CheckSeo.php:316
3339
- #, fuzzy
3340
- #| msgid "Enter even more keywords."
3341
- msgid "Choose less competitive keywords"
3342
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
3343
-
3344
- #: models/CheckSeo.php:317
3345
- msgid ""
3346
- "As a future SEO Star you need to understand that you will never be able to "
3347
- "rank for any keyword you think about. Not even huge sites who have spent a "
3348
- "thousand times more money on their SEO can do that. Just switch to a "
3349
- "different keyword and you will get to the desired results (ranking and "
3350
- "traffic). This is real SEO you are doing right now. You're acting like an "
3351
- "expert."
3352
- msgstr ""
3353
-
3354
- #: models/CheckSeo.php:318
3355
- msgid ""
3356
- "Go and edit the page using the SEO Live Assistant. Select a different "
3357
- "keyword as the main keyword. Make sure it has a Green light at 'competition'."
3358
- msgstr ""
3359
-
3360
- #: models/CheckSeo.php:319
3361
- msgid ""
3362
- "Replace the main keyword you chose for your Focus Page to get top rankings. "
3363
- "Your page can't compete and reach the top 10 positions in Google for the "
3364
- "current keyword. "
3365
- msgstr ""
3366
-
3367
- #: models/CheckSeo.php:329
3368
- #, php-format
3369
- msgid ""
3370
- "Try to boost traffic by over +285% by optimizing with SEO Live Assistant"
3371
- msgstr ""
3372
-
3373
- #: models/CheckSeo.php:330
3374
- msgid ""
3375
- "Our data shows that users who optimize their content over 60% using the Live "
3376
- "Assistant get up to +285% increase in traffic compared to those who optimize "
3377
- "below this percentage. As a future SEO Star, you need to practice optimizing "
3378
- "your content as much as you can."
3379
- msgstr ""
3380
-
3381
- #: models/CheckSeo.php:331
3382
- #, php-format
3383
- msgid ""
3384
- "Your text needs to be optimized to over 60% using the SEO Live Assistant. Re-"
3385
- "index your pages with Google Search Console after you finish optimizing."
3386
- msgstr ""
3387
-
3388
- #: models/CheckSeo.php:332
3389
- msgid ""
3390
- "Optimize Your Focus Pages over 60% to get up to 285% increase in traffic."
3391
- msgstr ""
3392
-
3393
- # @ squirrly-seo
3394
- #: models/CheckSeo.php:344
3395
- #, fuzzy
3396
- #| msgid "Google %sAnalytics ID%s`:"
3397
- msgid "Prepare Full Google Search Console Connection"
3398
- msgstr "Google %sAnalytics ID%s`:"
3399
-
3400
- #: models/CheckSeo.php:345
3401
- msgid ""
3402
- "Get access to data about impressions, clicks and CTR without leaving "
3403
- "WordPress by connecting Google Search Console to Squirrly. This is an API-"
3404
- "level connection and goes beyond just allowing GSC to track your site. "
3405
- "Enhance your Squirrly SEO with powerful data that comes directly from Google."
3406
- msgstr ""
3407
-
3408
- #: models/CheckSeo.php:347
3409
- msgid ""
3410
- "You must connect Google Search Console to your Squirrly SEO. As soon as "
3411
- "possible. It's quick to do and helps you see impressions, clicks, and CTR, "
3412
- "so you can become an SEO Star."
3413
- msgstr ""
3414
-
3415
- #: models/CheckSeo.php:357
3416
- msgid "Make a Manual Index Request for your Focus Pages With GSC"
3417
- msgstr ""
3418
-
3419
- #: models/CheckSeo.php:358
3420
- msgid ""
3421
- "Whenever you've added or made changes to a page on your site, you should ask "
3422
- "for Google to re-index your page. This will help getting the new content in "
3423
- "Google's index. Don't expect Google to index the latest version of your page "
3424
- "if you skip doing this. As a SEO Star you need to start building a strong "
3425
- "muscle for doing this. Requesting re-index will need to become a habit to "
3426
- "you."
3427
- msgstr ""
3428
-
3429
- #: models/CheckSeo.php:359
3430
- #, php-format
3431
- msgid ""
3432
- "Go to %sSquirrly > Focus Pages%s - identify the page that hasn't had a new "
3433
- "index request and use the button to go to GSC and request re-index."
3434
- msgstr ""
3435
-
3436
- #: models/CheckSeo.php:360
3437
- msgid ""
3438
- "Let Google know you've made changes to your Focus Pages. Otherwise, nothing "
3439
- "will change in search results. This is mandatory."
3440
- msgstr ""
3441
-
3442
- #: models/CheckSeo.php:371
3443
- msgid "Add your keywords to the Rankings section of Squirrly SEO"
3444
- msgstr ""
3445
-
3446
- #: models/CheckSeo.php:372
3447
- msgid ""
3448
- "SEO pros are always diligent about monitoring their rankings. If you want to "
3449
- "be an SEO star, you need to track your success and make data-driven "
3450
- "decisions. By adding your Focus Page's keyword to the Rankings section, "
3451
- "you'll know the true position of your website in Google for that keyword. "
3452
- "Checking the keyword yourself, manually, will give you fake information. You "
3453
- "can ask us why on our Facebook Group."
3454
- msgstr ""
3455
-
3456
- #: models/CheckSeo.php:373
3457
- #, php-format
3458
- msgid ""
3459
- "Go to %sSquirrly > Research > Briefcase%s. Find your Focus Page's keyword "
3460
- "from the list, and click on the three dots you see on the far right. Then "
3461
- "click on Send to Rank Checker."
3462
- msgstr ""
3463
-
3464
- #: models/CheckSeo.php:374
3465
- msgid ""
3466
- "See how your SEO efforts translate into results by adding your Focus Page's "
3467
- "keyword to the Rankings section."
3468
- msgstr ""
3469
-
3470
- #: models/CheckSeo.php:386
3471
- msgid ""
3472
- "Change the main keyword for a Focus Page that didn't reach TOP 20 rankings "
3473
- "during the last 2 months"
3474
- msgstr ""
3475
-
3476
- #: models/CheckSeo.php:387
3477
- msgid ""
3478
- "As a future SEO star, you need to be able to adapt and pivot. If you see "
3479
- "something is not working, change it. Adapt. The current keyword you have for "
3480
- "this page isn't bringing you top results. In the past 2 months, this keyword "
3481
- "did NOT rank higher than the 21st position in Google. You can achieve better "
3482
- "results by switching to a new keyword."
3483
- msgstr ""
3484
-
3485
- #: models/CheckSeo.php:388
3486
- #, php-format
3487
- msgid ""
3488
- "Go to %sSquirrly > Research%s and research new keyword ideas. Then get back "
3489
- "to this page and use SEO Live Assistant to optimize it for a different main "
3490
- "keyword."
3491
- msgstr ""
3492
-
3493
- #: models/CheckSeo.php:389
3494
- msgid ""
3495
- "Switch your target keyword to reach better results. Don't settle for the "
3496
- "second page of Google."
3497
- msgstr ""
3498
-
3499
- #: models/CheckSeo.php:400
3500
- msgid ""
3501
- "Get to 90% Optimization Levels for all Focus Pages (using SEO Live Assistant)"
3502
- msgstr ""
3503
-
3504
- #: models/CheckSeo.php:401
3505
- msgid ""
3506
- "Our data shows that users who achieve 90% Optimization Levels using the Live "
3507
- "Assistant have a much better chance of achieving top Google Rankings for "
3508
- "their pages. If you want to be an SEO star, you need to push yourself and "
3509
- "get it all the way up to 90 (try 100). The more you practice, the easier it "
3510
- "will be."
3511
- msgstr ""
3512
-
3513
- #: models/CheckSeo.php:402
3514
- #, php-format
3515
- msgid ""
3516
- "Go and edit your Focus Pages using the SEO live Assistant. Follow the "
3517
- "guidance it provides to 100% optimize your page. Re-index your page with "
3518
- "Google Search Console when you are done."
3519
- msgstr ""
3520
-
3521
- #: models/CheckSeo.php:403
3522
- msgid ""
3523
- "You must Optimize to 90% to give your Focus Pages the best chances of "
3524
- "achieving top Google Rankings."
3525
- msgstr ""
3526
-
3527
- #: models/CheckSeo.php:414
3528
- msgid "Stop losing SEO Authority"
3529
- msgstr ""
3530
-
3531
- #: models/CheckSeo.php:415
3532
- msgid ""
3533
- "You need to place rel='nofollow' to all Outbound links. Outbound links are "
3534
- "URLs from 3rd party sites to which you are linking to. If you send links to "
3535
- "Wikipedia, Facebook, Jamie Oliver, etc. without mentioning 'nofollow', then "
3536
- "you are also sending them the authority you are trying to build up for your "
3537
- "own site. That's really bad, and makes your pages unable to rank high "
3538
- "enough. Because some links are hard for Non-SEO Experts to turn to "
3539
- "'nofollow' we recommend a plugin that does this for you. You can find it on "
3540
- "[link]https://squirrly.co/seo/kit[/link]"
3541
- msgstr ""
3542
-
3543
- #: models/CheckSeo.php:416
3544
- msgid ""
3545
- "Place rel='nofollow' on outbound links yourself, or use the plugin "
3546
- "recommended by Squirrly that does this for you."
3547
- msgstr ""
3548
-
3549
- #: models/CheckSeo.php:417
3550
- msgid "Fix your outbound links. Otherwise, you will lose SEO authority."
3551
- msgstr ""
3552
-
3553
- # @ squirrly-seo
3554
- #: models/CheckSeo.php:428
3555
- #, fuzzy
3556
- #| msgid "Google %sAnalytics ID%s`:"
3557
- msgid "Connect Google Analytics Data to Squirrly"
3558
- msgstr "Google %sAnalytics ID%s`:"
3559
-
3560
- #: models/CheckSeo.php:429
3561
- msgid ""
3562
- "As a future SEO star, you need to be able to make decisions based on what "
3563
- "the data tells you. By connecting Google Analytics to Squirrly, you can "
3564
- "monitor the traffic that your Focus Pages are getting, and figure your next "
3565
- "steps based on that. Also, much of SEO these days is based on how much time "
3566
- "people spend on your site, so to give you accurate Chances of Ranking, "
3567
- "Squirrly's SML needs to see this data. To ensure Google gets 100% accuracy "
3568
- "on how people spend time on your site, use the plugin we recommend in "
3569
- "[link]https://squirrly.co/seo/kit[/link]"
3570
- msgstr ""
3571
-
3572
- #: models/CheckSeo.php:431
3573
- msgid ""
3574
- "Connect Google Analytics to Squirrly so that you see how much traffic your "
3575
- "Focus Pages are getting."
3576
- msgstr ""
3577
-
3578
- #: models/CheckSeo.php:441
3579
- msgid "Reach Platform SEO green lights for all Focus Pages"
3580
- msgstr ""
3581
-
3582
- #: models/CheckSeo.php:442
3583
- msgid ""
3584
- "You will be missing out on many ranking opportunities if you do not go and "
3585
- "fix Platform SEO right now. If you do fix it, make sure you start requesting "
3586
- "re-indexes for your pages, using Google Search Console. Your theme might be "
3587
- "generating many types of pages, which are different from ordinary pages in "
3588
- "WP. Reaching 'Platform SEO' Green lights is a very important objective."
3589
- msgstr ""
3590
-
3591
- #: models/CheckSeo.php:443
3592
- #, php-format
3593
- msgid ""
3594
- "Go to %sSquirrly > Focus Pages%s and look at the COLUMN with Platform SEO. "
3595
- "Click on a dot to see all sub-tasks in the right sidebar of the plugin. "
3596
- "Click on each Red or Green item. Read the pop-up instructions and turn all "
3597
- "red elements to green. Then re-index in Google Search Console. After that, "
3598
- "request a new Focus Pages audit for the page you fixed."
3599
- msgstr ""
3600
-
3601
- #: models/CheckSeo.php:444
3602
- msgid ""
3603
- "Reach Platform SEO green lights for all Focus Pages. Otherwise, you will "
3604
- "keep giving Google faulty data, which can result in low rankings."
3605
- msgstr ""
3606
-
3607
- #: models/CheckSeo.php:455
3608
- msgid "Add SEO Context Keywords to your Focus Pages"
3609
- msgstr ""
3610
-
3611
- #: models/CheckSeo.php:456
3612
- msgid ""
3613
- "Squirrly SEO's Live Assistant lets you optimize your pages for multiple "
3614
- "keywords that you've placed in Briefcase. By optimizing your Focus Page for "
3615
- "a secondary keyword that is related to your primary keywords, you're sending "
3616
- "additional signals to search engines to help them understand and rank the "
3617
- "page. Example: if you have page about 'dog food', you should optimize the "
3618
- "page for one or two dog breeds as well, so that you make it clear to Google "
3619
- "that it is about the animal 'dog', and NOT about a friend 'like in Yo, "
3620
- "dog!'. On [link]https://squirrly.co/seo/kit/[/link] you can see a video that "
3621
- "shows how to add SEO context to a page."
3622
- msgstr ""
3623
-
3624
- #: models/CheckSeo.php:457
3625
- msgid ""
3626
- "Optimize your Focus Page for a secondary keyword using the Live Assistant. "
3627
- "Optimize it to at least 30% and re-index the page with Google Search Console "
3628
- "when you're done."
3629
- msgstr ""
3630
-
3631
- #: models/CheckSeo.php:458
3632
- msgid ""
3633
- "Help Google understand the exact topic and context of your page so that it "
3634
- "will rank it higher."
3635
- msgstr ""
3636
-
3637
- #: models/CheckSeo.php:469
3638
- msgid ""
3639
- "Add all secondary Keywords you've used to the Rankings Section of Squirrly"
3640
- msgstr ""
3641
-
3642
- #: models/CheckSeo.php:470
3643
- msgid ""
3644
- "Most people expect only the main keyword to be ranked in TOP 10 in Google. "
3645
- "However, according to the secondary keywords you've used to build up SEO "
3646
- "Context for your Focus Page, you may find out that your secondary keywords "
3647
- "also got great rankings on Google."
3648
- msgstr ""
3649
-
3650
- #: models/CheckSeo.php:471
3651
- msgid ""
3652
- "Add your secondary keywords (the secondary keywords you used for your Focus "
3653
- "Pages) inside the Rankings Section."
3654
- msgstr ""
3655
-
3656
- #: models/CheckSeo.php:472
3657
- msgid ""
3658
- "As an SEO Star who worked hard on the pages and managed to optimize for "
3659
- "secondary keywords, you need to check if you get more results than you "
3660
- "expected."
3661
- msgstr ""
3662
-
3663
- #: models/CheckSeo.php:483
3664
- msgid "Fix SEO Images for your Focus Pages"
3665
- msgstr ""
3666
-
3667
- #: models/CheckSeo.php:484
3668
- msgid ""
3669
- "When it comes to image SEO, it's important to use relevant keywords to help "
3670
- "your page rank on search engines. So, make sure that your filename for one "
3671
- "of the images in your Focus Pages is: keyword.jpg. Takes less than 5 minutes "
3672
- "to fix, and you'll get to practice an optimization tip worthy of an SEO star."
3673
- msgstr ""
3674
-
3675
- #: models/CheckSeo.php:485
3676
- msgid ""
3677
- "Download a relevant image from your page. Change the filename. Then re-"
3678
- "upload with the SEO filename and add it your page's content again."
3679
- msgstr ""
3680
-
3681
- #: models/CheckSeo.php:486
3682
- msgid ""
3683
- "Improve your Focus Page's chances of ranking with this quick trick that SEO "
3684
- "professionals use."
3685
- msgstr ""
3686
-
3687
- #: models/CheckSeo.php:497
3688
- msgid "Add Labels to Keywords in Briefcase"
3689
- msgstr ""
3690
-
3691
- #: models/CheckSeo.php:498
3692
- msgid ""
3693
- "Users who use the Labels system in Briefcase have 60% more keywords ranked "
3694
- "in top 10 on Google than those who don't work with keywords in an organized "
3695
- "way. As a future SEO star, it's important to understand the significance of "
3696
- "keyword organization and how big a role it plays in achieving a high-"
3697
- "performing search campaign. On [link]https://squirrly.co/seo/kit/[/link] you "
3698
- "can see the Direct 1, Direct 2, Direct 3, Direct 4 and Indirect keywords "
3699
- "approach. It will help you with this."
3700
- msgstr ""
3701
-
3702
- #: models/CheckSeo.php:499
3703
- #, php-format
3704
- msgid ""
3705
- "Go to %sSquirrly SEO > Research > Briefcase%s, and add Labels to your "
3706
- "keywords to organize them into tighter, more relevant groups based on your "
3707
- "current campaigns and strategy. "
3708
- msgstr ""
3709
-
3710
- #: models/CheckSeo.php:500
3711
- msgid ""
3712
- "Improve your chances of getting more keywords ranked in top 10 of Google."
3713
- msgstr ""
3714
-
3715
- #: models/CheckSeo.php:511
3716
- msgid "Add more Ranking Power to your Focus Pages"
3717
- msgstr ""
3718
-
3719
- #: models/CheckSeo.php:512
3720
- msgid ""
3721
- "Links on the web are like votes, and the pages that receive more votes rank "
3722
- "higher. Since Focus Pages are the most important pages in your site, you "
3723
- "should give them more votes (link to them from many pages in your site; "
3724
- "these are called inner-links). Even if you need to create new pages to link "
3725
- "from, it will still be worth it. Some of our users wrote just one article to "
3726
- "get an inner link for their Focus Page, and the next day they were on the "
3727
- "1st page of Google with 4 keywords. [link]https://chiefcontent.com/s1-e4-"
3728
- "focus-pages-by-squirrly-success-with-focus-pages/[/link]"
3729
- msgstr ""
3730
-
3731
- #: models/CheckSeo.php:513
3732
- msgid ""
3733
- "Link to your Focus Page from another page in your site. If you don't have a "
3734
- "page where you can link from, spend some time creating one. Re-index with "
3735
- "Google Search Console. "
3736
- msgstr ""
3737
-
3738
- #: models/CheckSeo.php:514
3739
- msgid "Create 1 Inner Link to one of your Focus Pages"
3740
- msgstr ""
3741
-
3742
- #: models/CheckSeo.php:525
3743
- msgid "Start tracking rankings for 3 keywords"
3744
- msgstr ""
3745
-
3746
- #: models/CheckSeo.php:526
3747
- msgid ""
3748
- "Professional SEOs recognize the importance of tracking rankings as a way to "
3749
- "measure SEO success. As a future SEO star, it's important to measure the "
3750
- "impact of your work and pivot your priorities when you see that a current "
3751
- "strategy is not working."
3752
- msgstr ""
3753
-
3754
- #: models/CheckSeo.php:527
3755
- #, php-format
3756
- msgid ""
3757
- "Get in the habit of tracking your rankings by adding three keywords to "
3758
- "Squirrly's Rankings section. Go to %sResearch > Briefcase%s, choose a "
3759
- "keyword you want to track and click on Send to Rank Checker. Squirrly will "
3760
- "start showing you the true position of your site for that kewyord. Repeat "
3761
- "the process for two more keywords."
3762
- msgstr ""
3763
-
3764
- #: models/CheckSeo.php:528
3765
- msgid "Start tracking rankings for 3 keywords."
3766
- msgstr ""
3767
-
3768
- #: models/CheckSeo.php:539
3769
- msgid "Increase your SEO skill set by building your keyword portfolio"
3770
- msgstr ""
3771
-
3772
- #: models/CheckSeo.php:540
3773
- msgid ""
3774
- "Keyword research, both as a skill and as a practice, are critical to your "
3775
- "SEO success. You can't be an SEO master without it. Plus, according to new "
3776
- "research, the more a blogger researches keywords, the more likely they are "
3777
- "to report success. Bloggers who are also SEOs report “strong results” at "
3778
- "much higher than average rates. Get at least 10 keywords inside the "
3779
- "Briefcase section to get started. With powerful keyword research and the SEO "
3780
- "Live Assistant, we managed to outrank Amazon, Stack Overflow, Moz and a few "
3781
- "others. Read more on [link]https://squirrly.co/seo/kit/[/link] in the "
3782
- "section about Google and how much they care about keywords."
3783
- msgstr ""
3784
-
3785
- #: models/CheckSeo.php:541
3786
- #, php-format
3787
- msgid ""
3788
- "Go to %sSquirrly SEO > Research%s, and begin doing research based on the "
3789
- "topics you want to rank on Search Engines, and that are important for your "
3790
- "research. If you need help coming up with ideas, %syou can use these keyword "
3791
- "research formulas%s. When you find a good keyword opportunity, save it to "
3792
- "Briefcase. Do this until you have at least 10 keywords inside Briefcase."
3793
- msgstr ""
3794
-
3795
- #: models/CheckSeo.php:542
3796
- msgid ""
3797
- "Create your keyword portfolio. Get at least 10 keywords inside the Briefcase "
3798
- "Section."
3799
- msgstr ""
3800
-
3801
- #: models/CheckSeo.php:553
3802
- msgid "Avoid losing positions in search results"
3803
- msgstr ""
3804
-
3805
- #: models/CheckSeo.php:554
3806
- msgid ""
3807
- "Make sure your Rankings won't drop because of duplicate content, duplicate "
3808
- "titles, empty titles, empty descriptions and more. SEO Experts and Non-SEO "
3809
- "Experts love this feature, because it simply handles everything important. "
3810
- "(especially if you already turned Platform SEO to Green inside Focus Pages "
3811
- "section)"
3812
- msgstr ""
3813
-
3814
- #: models/CheckSeo.php:555
3815
- #, php-format
3816
- msgid ""
3817
- "Go to %sSquirrly > SEO Settings > Automation%s and make sure that SEO "
3818
- "Patterns are activated."
3819
- msgstr ""
3820
-
3821
- #: models/CheckSeo.php:556
3822
- msgid "Activate SEO Patterns, with Squirrly's site-wide SEO Automation."
3823
- msgstr ""
3824
-
3825
- #: models/CheckSeo.php:567
3826
- msgid "Update Your Focus Pages Content Regularly"
3827
- msgstr ""
3828
-
3829
- #: models/CheckSeo.php:568
3830
- msgid ""
3831
- "Google prefers to rank pages that have relevant, fresh content that is up-to-"
3832
- "date. Updating your content can also improve your click-through-rate, "
3833
- "because people are more likely to click on articles that were published "
3834
- "recently. And your CTR improving tells Google that your page is the better "
3835
- "resource, which will result in your page getting higher rankings."
3836
- msgstr ""
3837
-
3838
- #: models/CheckSeo.php:569
3839
- msgid ""
3840
- "The most recent update date for your Focus Page Content needs to be in the "
3841
- "last 3 months. If it's not, then go and edit your page. Re-index with Google "
3842
- "Search Console when you are done."
3843
- msgstr ""
3844
-
3845
- #: models/CheckSeo.php:570
3846
- msgid "Make Google love your Focus Pages by regularly updating content."
3847
- msgstr ""
3848
-
3849
- #: models/CheckSeo.php:581
3850
- msgid "Define Title and Description for your Focus Pages"
3851
- msgstr ""
3852
-
3853
- #: models/CheckSeo.php:582
3854
- #, php-format
3855
- msgid ""
3856
- "Titles and descriptions provide necessary information about the content of "
3857
- "the page, and help indicate the value a Google user will get by clicking on "
3858
- "that page. Not having these elements defined for your pages will make you "
3859
- "lose precious points with both Search Engines and Humans. 36% of SEO experts "
3860
- "think the headline/title tag is the most important SEO element. Each one of "
3861
- "your Focus Pages should have a defined title and meta description."
3862
- msgstr ""
3863
-
3864
- #: models/CheckSeo.php:583
3865
- msgid ""
3866
- "Easily define titles and meta descriptions using the Snippet editor from "
3867
- "Squirrly SEO."
3868
- msgstr ""
3869
-
3870
- #: models/CheckSeo.php:584
3871
- msgid ""
3872
- "Customize Title and Description for your Focus Pages to get more people to "
3873
- "click on your pages in SERPs."
3874
- msgstr ""
3875
-
3876
- #: models/CheckSeo.php:595
3877
- msgid "Optimize Twitter Cards for your Focus Pages"
3878
- msgstr ""
3879
-
3880
- #: models/CheckSeo.php:596
3881
- msgid ""
3882
- "Twitter Cards are a great partner to your SEO strategy, as it helps you "
3883
- "stand out to Twitter users and thus increase engagement and CTR. Grab that "
3884
- "opportunity by making sure that all the Twitter tags are in place for your "
3885
- "Focus Pages."
3886
- msgstr ""
3887
-
3888
- #: models/CheckSeo.php:597
3889
- msgid ""
3890
- "Use the Snippet editor from Squirrly SEO to get all the Twitter Card "
3891
- "definition elements in place."
3892
- msgstr ""
3893
-
3894
- #: models/CheckSeo.php:598
3895
- msgid ""
3896
- "Optimize Twitter Cards for your Focus Pages to boost engagement and traffic."
3897
- msgstr ""
3898
-
3899
- #: models/CheckSeo.php:609
3900
- msgid "Optimize Open Graph for your Focus Pages"
3901
- msgstr ""
3902
-
3903
- #: models/CheckSeo.php:610
3904
- msgid ""
3905
- "Open Graph lets you control what content is displayed when your pages are "
3906
- "linked on social media, thus influencing your link's performance. If you "
3907
- "lack these tags, then you're risking that an unrelated image or inaccurate "
3908
- "description will be shown. On the flip side, having these tags helps you "
3909
- "harness the power of social media and boost your social media CTR. Using "
3910
- "your keywords inside the OG definitions has been proven to also boost SEO."
3911
- msgstr ""
3912
-
3913
- #: models/CheckSeo.php:611
3914
- msgid ""
3915
- "Use the Snippet editor from Squirrly SEO to get all the Open Graph "
3916
- "definition elements in place for your Focus Pages."
3917
- msgstr ""
3918
-
3919
- #: models/CheckSeo.php:612
3920
- msgid ""
3921
- "Optimize Open Graph. Unless you do so, you're leaving how your Focus Pages "
3922
- "are shown on Facebook up to chance. (it's also bad for SEO)"
3923
- msgstr ""
3924
-
3925
- #: models/CheckSeo.php:623
3926
- msgid "Optimize Rich Snippets for your Focus Pages"
3927
- msgstr ""
3928
-
3929
- #: models/CheckSeo.php:624
3930
- msgid ""
3931
- "JSON-LD, Rich Snippets, Schema implementation: this thing goes by many "
3932
- "different names, because nothing has been standardized. However, as an SEO "
3933
- "Star, you need to make sure your site has this JSON-LD properly defined. You "
3934
- "can let Squirrly SEO Automatically handle JSON-LD definitions, or you can "
3935
- "switch to Custom and use the tool that we link to in order to create your "
3936
- "very own definition. Once you're done there, you can come back and paste the "
3937
- "code into the custom section of your page's snippet for JSON-LD. For most "
3938
- "pages, you should let this setting to Auto, though. Also, make sure you've "
3939
- "completed everything about your organization or personal brand in Squirrly > "
3940
- "SEO Settings > JSON-LD."
3941
- msgstr ""
3942
-
3943
- #: models/CheckSeo.php:625
3944
- msgid "Use the Snippet Editor from Squirrly SEO to get this done."
3945
- msgstr ""
3946
-
3947
- #: models/CheckSeo.php:626
3948
- msgid "You need to have good definitions for JSON-LD."
3949
- msgstr ""
3950
-
3951
- #: models/CheckSeo.php:637
3952
- msgid "Make your Focus Pages at least 1,500 words long"
3953
- msgstr ""
3954
-
3955
- #: models/CheckSeo.php:638
3956
- msgid ""
3957
- "Research shows that the average Google first page result contains 1,890 "
3958
- "words. Plus, long-form content gets an average of 77.2% more links than "
3959
- "short articles, making it ideal for backlink acquisition. The Journey to "
3960
- "Better Ranking from Squirrly SEO gives you many ideas on how to easily make "
3961
- "your pages longer. It might seem daunting at first, but after making a few "
3962
- "pages it will become easy to do. Plus, Squirrly SML showed that in ALL "
3963
- "industries where there is a bit of competition (meaning, other site owners "
3964
- "who have decent sites), the 1,500 words is a powerful differentiator which "
3965
- "can score you easy wins."
3966
- msgstr ""
3967
-
3968
- #: models/CheckSeo.php:639
3969
- msgid ""
3970
- "Edit the content on your Focus Pages to make it over 1,500 words long. Some "
3971
- "tips you can use here: [link]https://howto.squirrly.co/wordpress-seo/journey-"
3972
- "to-better-ranking-day-12/[/link] . Re-index with Google Search Console when "
3973
- "you're done."
3974
- msgstr ""
3975
-
3976
- #: models/CheckSeo.php:640
3977
- msgid ""
3978
- "Make Google want to rank your Focus Pages on the 1st Page by making them at "
3979
- "least 1,500 words long."
3980
- msgstr ""
3981
-
3982
- #: models/CheckSeo.php:651
3983
- msgid "Reach Perfect SEO Content optimizations for all Focus Pages"
3984
- msgstr ""
3985
-
3986
- #: models/CheckSeo.php:652
3987
- msgid ""
3988
- "Expert SEOs don't settle for reaching 30%, 50% or 60% optimization level "
3989
- "when trying to get a page on the 1st page of Google. As a future SEO star, "
3990
- "reaching perfect SEO optimization is a skill you must master as well, as it "
3991
- "gives you the best chances of rankings."
3992
- msgstr ""
3993
-
3994
- #: models/CheckSeo.php:653
3995
- #, php-format
3996
- msgid ""
3997
- "Go to %sSquirrly > Focus Pages%s and look at the SEO Content column. Click "
3998
- "on a red or green light, then look at the right sidebar. There you will see "
3999
- "all elements that compose the final SEO Content scoring to achieve RED or "
4000
- "Green. Click on each RED element and read how to make it green (the ones "
4001
- "from the sidebar)."
4002
- msgstr ""
4003
-
4004
- #: models/CheckSeo.php:654
4005
- msgid ""
4006
- "Reach Perfect SEO optimization level for your Focus Pages to master content "
4007
- "optimization."
4008
- msgstr ""
4009
-
4010
- #: models/CheckSeo.php:665
4011
- msgid "Turn all marketing settings to GREEN"
4012
- msgstr ""
4013
-
4014
- #: models/CheckSeo.php:666
4015
- msgid ""
4016
- "If you want to unleash the full marketing power of your WordPress site, then "
4017
- "you need to activate all the important marketing settings there are. This is "
4018
- "vital to marketing mastery and to maximizing your site's marketing "
4019
- "opportunities."
4020
- msgstr ""
4021
-
4022
- #: models/CheckSeo.php:667
4023
- msgid ""
4024
- "Go to the SEO Settings section of Squirrly SEO. Click on the METAs section. "
4025
- "You'll see tasks appearing at the right of the screen. Look to the right of "
4026
- "the screen and turn those RED lights from Red to Green. Click on each "
4027
- "element and you'll find out what you need to do to complete the task and "
4028
- "turn it Green."
4029
- msgstr ""
4030
-
4031
- #: models/CheckSeo.php:668
4032
- msgid ""
4033
- "Turn all sidebar (right sidebar) lights to GREEN for all SEO Settings "
4034
- "Sections."
4035
- msgstr ""
4036
-
4037
- #: models/CheckSeo.php:679
4038
- msgid "Raise Audit Score to Over 30%"
4039
- msgstr ""
4040
-
4041
- #: models/CheckSeo.php:680
4042
- msgid ""
4043
- "Sites with Audit scores under 30% will have a very hard time ranking for "
4044
- "anything. Scores under 30 means the site doesn't have enough quality to be "
4045
- "deemed worthy of being found on the first page of Google."
4046
- msgstr ""
4047
-
4048
- #: models/CheckSeo.php:681
4049
- #, php-format
4050
- msgid ""
4051
- "Go to %sSquirrly > Audits%s section and read all the Audit tasks where you "
4052
- "currently have problems. It tells you how to fix those problems."
4053
- msgstr ""
4054
-
4055
- #: models/CheckSeo.php:682
4056
- msgid ""
4057
- "You need to get an Audit Score of over 30% as soon as possible, if you want "
4058
- "to avoid Google penalties."
4059
- msgstr ""
4060
-
4061
- #: models/CheckSeo.php:692
4062
- msgid "Reach 3 Inner Links for all your Focus Pages"
4063
- msgstr ""
4064
-
4065
- #: models/CheckSeo.php:693 models/CheckSeo.php:881
4066
- msgid ""
4067
- "Studies show that a strong internal linking structure yields higher rankings "
4068
- "and is an extremely effective SEO tactic. Wikipedia and StackOverflow are "
4069
- "some of the best sites in the world when it comes to SEO. Most of their SEO "
4070
- "power comes from strong internal linking. Since Focus Pages are the most "
4071
- "important pages in your site, you should give them more votes (link to them "
4072
- "from many pages in your site). Even if you need to create new pages to link "
4073
- "from, it will stil be worth it. Make sure that you place the links inside "
4074
- "the content of the page, not in menus, footers, etc. (those don't bring the "
4075
- "same power when it comes to SEO signals). On https://squirrly.co/seo/kit/ "
4076
- "you can see an advanced content marketing strategy related to Long-Form "
4077
- "content and Complementary Content. That will help you think more creatively "
4078
- "about inner links. Also, in the Rank Show series you can see how one website "
4079
- "managed to get its most important ranking increases from great inner links."
4080
- msgstr ""
4081
-
4082
- #: models/CheckSeo.php:694
4083
- msgid ""
4084
- "Get at least three inner links to your Focus Pages from other pages in your "
4085
- "site. If you don't have enough pages where you can link from, spend some "
4086
- "time creating new content. Then, re-index with Google Search Console (each "
4087
- "page from which you sent the links)"
4088
- msgstr ""
4089
-
4090
- #: models/CheckSeo.php:695 models/CheckSeo.php:883
4091
- msgid "Add more ranking power to your Focus Pages."
4092
- msgstr ""
4093
-
4094
- #: models/CheckSeo.php:706
4095
- msgid "Get Minimum 10 Visitors / Day to Your Focus Pages"
4096
- msgstr ""
4097
-
4098
- #: models/CheckSeo.php:707 models/CheckSeo.php:959 models/CheckSeo.php:1011
4099
- msgid ""
4100
- "You need to make sure that your Focus Pages become more popular and take "
4101
- "action so that more people start seeing it. Google measures many aspects. If "
4102
- "you don't give it enough traffic, it will not have enough data to figure out "
4103
- "if your page is actually any good."
4104
- msgstr ""
4105
-
4106
- #: models/CheckSeo.php:708 models/CheckSeo.php:960 models/CheckSeo.php:1012
4107
- msgid ""
4108
- "Start promoting your Focus Pages on your social media channels, send it to "
4109
- "your email subscribers, answer relevant questions on Quora and include a "
4110
- "link to your Page. Get detailed information and more ideas on how you can "
4111
- "start bringing some traffic to your Focus pages on [link]https://squirrly.co/"
4112
- "seo/kit[/link]"
4113
- msgstr ""
4114
-
4115
- #: models/CheckSeo.php:709 models/CheckSeo.php:961 models/CheckSeo.php:1013
4116
- msgid ""
4117
- "Improve visibility for your Focus Pages. Bring in more traffic. Otherwise, "
4118
- "it will be hard to keep ranking higher."
4119
- msgstr ""
4120
-
4121
- #: models/CheckSeo.php:719
4122
- msgid "No Duplicate Titles"
4123
- msgstr ""
4124
-
4125
- #: models/CheckSeo.php:720
4126
- msgid ""
4127
- "Currently, the theme or a 3rd party plugin inside your WordPress site "
4128
- "manages to bypass Squirrly's duplicate remover feature. It keeps duplicating "
4129
- "the title tag inside the source code. You need to start deactivating all "
4130
- "plugins, except Squirrly SEO, until you find the one causing this problem. "
4131
- "You can use the run new scan button here in Daily SEO Goals to see if the "
4132
- "problem persists."
4133
- msgstr ""
4134
-
4135
- #: models/CheckSeo.php:721
4136
- msgid ""
4137
- "Track down the plugin or theme setting which causes the duplication. Make it "
4138
- "unable to place title tags."
4139
- msgstr ""
4140
-
4141
- #: models/CheckSeo.php:722
4142
- msgid "Make sure you don't have any more duplicate titles in your pages."
4143
- msgstr ""
4144
-
4145
- #: models/CheckSeo.php:733
4146
- msgid "No Duplicate Descriptions"
4147
- msgstr ""
4148
-
4149
- #: models/CheckSeo.php:734
4150
- msgid ""
4151
- "Currently, the theme or a 3rd party plugin inside your WordPress site "
4152
- "manages to bypass Squirrly's duplicate remover feature. It keeps duplicating "
4153
- "the meta description tag inside the source code. You need to start "
4154
- "deactivating all plugins, except Squirrly SEO, until you find the one "
4155
- "causing this problem. You can use the run new scan button here in Daily SEO "
4156
- "Goals to see if the problem persists."
4157
- msgstr ""
4158
-
4159
- #: models/CheckSeo.php:735
4160
- msgid ""
4161
- "Track down the plugin or theme setting which causes the duplication. Make it "
4162
- "unable to place meta description tags."
4163
- msgstr ""
4164
-
4165
- #: models/CheckSeo.php:736
4166
- msgid "Make sure you don't have any more duplicate descriptions in your pages."
4167
- msgstr ""
4168
-
4169
- #: models/CheckSeo.php:747
4170
- msgid "No Empty Titles"
4171
- msgstr ""
4172
-
4173
- #: models/CheckSeo.php:748
4174
- msgid ""
4175
- "Google doesn't want to place sites with coding problems up in the first "
4176
- "positions. Sure, the search engine is smart enough to generate the title on "
4177
- "its own, based on the content inside the URL, but it's still a bad practice."
4178
- msgstr ""
4179
-
4180
- #: models/CheckSeo.php:749 models/CheckSeo.php:763
4181
- #, php-format
4182
- msgid ""
4183
- "Fix this using Squirrly SEO. Find more help in the %sSquirrly > SEO Settings"
4184
- "%s section."
4185
- msgstr ""
4186
-
4187
- #: models/CheckSeo.php:750 models/CheckSeo.php:764
4188
- msgid ""
4189
- "Make sure you avoid having pages with Empty Titles and Empty Descriptions. "
4190
- "Otherwise, your rankings will suffer."
4191
- msgstr ""
4192
-
4193
- #: models/CheckSeo.php:761
4194
- msgid "No Empty Descriptions"
4195
- msgstr ""
4196
-
4197
- #: models/CheckSeo.php:762
4198
- msgid ""
4199
- "Google doesn't want to place sites with coding problems up in the first "
4200
- "positions. Sure, the search engine is smart enough to generate the "
4201
- "description on its own, based on the content inside the URL, but it's still "
4202
- "a bad practice."
4203
- msgstr ""
4204
-
4205
- #: models/CheckSeo.php:775
4206
- msgid "Fix Duplicate Content Issues on your site (across multiple pages)"
4207
- msgstr ""
4208
-
4209
- #: models/CheckSeo.php:776
4210
- msgid ""
4211
- "Having duplicate content in your site will negatively impact your Search "
4212
- "Engine Rankings and traffic. Therefore, you need to make sure you don't have "
4213
- "duplicate titles and descriptions (and even duplicate written text inside "
4214
- "pages) If you copy the same thing over and over again, search engines will "
4215
- "penalize you. Go to [link]https://squirrly.co/seo/kit/[/link] to see the 4 "
4216
- "types of duplicate content."
4217
- msgstr ""
4218
-
4219
- #: models/CheckSeo.php:777
4220
- msgid ""
4221
- "Check your most recent Squirrly Audit to see which of your pages have "
4222
- "duplicate content."
4223
- msgstr ""
4224
-
4225
- #: models/CheckSeo.php:778
4226
- msgid ""
4227
- "Fix Duplicate Content. You're at risk of suffering rankings and traffic "
4228
- "losses due to duplicate content on your site."
4229
- msgstr ""
4230
-
4231
- #: models/CheckSeo.php:789
4232
- msgid "Improve SEO Speed"
4233
- msgstr ""
4234
-
4235
- #: models/CheckSeo.php:790
4236
- msgid ""
4237
- "Pages that rank at the top of Google’s first page tend to load significantly "
4238
- "faster compared to pages that rank on the bottom of page 1. If you want to "
4239
- "rank high on Google, your pages need to load fast. On [link]https://squirrly."
4240
- "co/seo/kit/[/link] you can find an Upgraded Version of ShortPixel, which "
4241
- "they offer for free to Squirrly users."
4242
- msgstr ""
4243
-
4244
- #: models/CheckSeo.php:791
4245
- msgid ""
4246
- "Using a tool like ShortPixel to reduce your image sizes will help improve "
4247
- "SEO speed."
4248
- msgstr ""
4249
-
4250
- #: models/CheckSeo.php:792
4251
- msgid "Make sure your Focus Pages load fast to improve your rankings."
4252
- msgstr ""
4253
-
4254
- #: models/CheckSeo.php:802
4255
- msgid "Reduce Bounce Rate for your Focus Pages"
4256
- msgstr ""
4257
-
4258
- #: models/CheckSeo.php:803
4259
- msgid ""
4260
- "A high bounce rate generally indicates that your pages aren't relevant to "
4261
- "your visitors. And since Google is all about serving its users results that "
4262
- "are most relevant for them, Google doesn't want to show pages that have a "
4263
- "high bounce rate. A high bounce rate is common for landing pages, but if you "
4264
- "have a page that has long-form content that aims to educate or inform "
4265
- "visitors, then a high bounce rate is a symptom that something is wrong in "
4266
- "your strategy. Either you’re not attracting the right site visitor or the "
4267
- "visitors coming don’t have a good user experience."
4268
- msgstr ""
4269
-
4270
- #: models/CheckSeo.php:804
4271
- msgid ""
4272
- "Try reducing your bounce rate by: formatting your content better to improve "
4273
- "readability, including a video, removing pop-ups that disrupt visitors' "
4274
- "experience on your site, and making sure your page loads fast. More "
4275
- "strategies (and a quick-fix plugin) here: [link]https://squirrly.co/seo/kit/"
4276
- "[/link]"
4277
- msgstr ""
4278
-
4279
- #: models/CheckSeo.php:805
4280
- msgid "Reduce bounce rate for your Focus Pages to improve search performance."
4281
- msgstr ""
4282
-
4283
- #: models/CheckSeo.php:815
4284
- msgid "Time on Page for All Focus Pages: 1 minute average"
4285
- msgstr ""
4286
-
4287
- #: models/CheckSeo.php:816
4288
- msgid ""
4289
- "If your pages consistently keep people on them for longer than average, the "
4290
- "Google algorithm will adjust the search results to favor your site, because "
4291
- "this interaction tells Google that content on your page is interesting and "
4292
- "relevant. The longer people stay on your Focus Pages, the higher they will "
4293
- "appear in the search engine rankings. Right now, the average time on page "
4294
- "for your Focus Pages is under 1 minute, which is not good. Sometimes Google "
4295
- "takes you down from the first Page of Google if it 'sees' people don't spend "
4296
- "enough time on the page."
4297
- msgstr ""
4298
-
4299
- #: models/CheckSeo.php:817
4300
- msgid ""
4301
- "Try these tactics to keep visitors on your page for longer: Embed a video or "
4302
- "two, add more visuals to make your page more attractive, format your content "
4303
- "better to make your page easy to scan, ensure your page is laser-focused on "
4304
- "what visitors expect to get from it, experiment with interactive content "
4305
- "such as polls or quizzes."
4306
- msgstr ""
4307
-
4308
- #: models/CheckSeo.php:818
4309
- msgid "Keep visitors on your Focus Pages for longer to boost rankings"
4310
- msgstr ""
4311
-
4312
- #: models/CheckSeo.php:828
4313
- msgid "Reach 20 Social Media Shares for Each of Your Focus Pages"
4314
- msgstr ""
4315
-
4316
- #: models/CheckSeo.php:829
4317
- msgid ""
4318
- "Studies have shown there is a high correlation between social signals and "
4319
- "ranking position. In one case study, a company achieved over 130,000 "
4320
- "Facebook shares to a web page and shot up the rankings for keyword phrases "
4321
- "that were competitive. Our own SML (Squirrly Machine Learning) discovered "
4322
- "ranking increases on tens of thousands of pages after they started getting "
4323
- "shared to social media platforms. The biggest SEO experts agree that social "
4324
- "media helps your SEO efforts. Strive to get as many social media shares as "
4325
- "you can for your Focus Pages from trackable sources."
4326
- msgstr ""
4327
-
4328
- #: models/CheckSeo.php:830
4329
- msgid ""
4330
- "Try these tactics to reach at least 20 social media shares for each one of "
4331
- "your Focus Pages: Share your content multiple times using different captions "
4332
- "and images, make social media share buttons super easy to find, include "
4333
- "calls-to-action that encourage site visitors to share. More proven methods "
4334
- "you can use here: [link]https://howto.squirrly.co/wordpress-seo/journey-to-"
4335
- "better-ranking-day-6/[/link]. For a complete framework, get access to our "
4336
- "10,000 Visits from Social Media course on Education Cloud."
4337
- msgstr ""
4338
-
4339
- #: models/CheckSeo.php:831
4340
- msgid ""
4341
- "Get at least 20 social media shares for each one of your Focus Pages. It's "
4342
- "hard to rank a page that doesn't get shared to social media sites."
4343
- msgstr ""
4344
-
4345
- #: models/CheckSeo.php:841
4346
- msgid "Raise Authority Level Over 12 for all Focus Pages"
4347
- msgstr ""
4348
-
4349
- #: models/CheckSeo.php:842 models/CheckSeo.php:933
4350
- msgid ""
4351
- "Page authority is a metric that Squirrly's servers calculates according to "
4352
- "data from different API, our own crawling and also SML (Squirrly Machine "
4353
- "Learning fine tunes the data, according to the data sets we've been "
4354
- "studying). Google has such a system as well, and we are basically "
4355
- "replicating what they're doing. To improve this you need: traffic to the "
4356
- "page, good traffic metrics (time on page, low bounce rate), inner links, "
4357
- "outbound links set to 'nofollow', backlinks (links from 3rd party sites to "
4358
- "your own site) and social media information."
4359
- msgstr ""
4360
-
4361
- #: models/CheckSeo.php:844
4362
- msgid ""
4363
- "Raise your Page Authority to over 12 for all Focus Pages. Otherwise, it will "
4364
- "be nearly impossible for those pages to reach top positions on Google."
4365
- msgstr ""
4366
-
4367
- #: models/CheckSeo.php:854
4368
- msgid "Try a different Title and Description for the Focus Pages with low CTR"
4369
- msgstr ""
4370
-
4371
- #: models/CheckSeo.php:855
4372
- msgid ""
4373
- "Google keeps track of which links get clicked the most in their search "
4374
- "results. Links that get clicked more often are moved up higher in the search "
4375
- "results, because this shows Google that a certain link is the result that "
4376
- "best matches the user’s search intent. Right now, NOT enough people click on "
4377
- "your listing, but writing a more enticing title and description can help "
4378
- "change that; and get more people clicking."
4379
- msgstr ""
4380
-
4381
- #: models/CheckSeo.php:856
4382
- msgid ""
4383
- "Tips to improve your CTR: include your keyword in your description, use How-"
4384
- "To and numbers in your titles as many people are drawn to them, make sure "
4385
- "the description clearly states what your page is about, and add a CTA that "
4386
- "gives people an extra incentive to click on your link."
4387
- msgstr ""
4388
-
4389
- #: models/CheckSeo.php:857
4390
- msgid ""
4391
- "Change the title and description to get more SERP clicks for your Focus "
4392
- "Pages (the ones where you see low CTR)"
4393
- msgstr ""
4394
-
4395
- # @ squirrly-seo
4396
- #: models/CheckSeo.php:867
4397
- #, fuzzy
4398
- #| msgid "Squirrly settings"
4399
- msgid "Audit Score is Over 50%"
4400
- msgstr "Squirrly Einstellungen"
4401
-
4402
- #: models/CheckSeo.php:868
4403
- msgid ""
4404
- "The Squirrly Audit covers the main aspects that influence a site's "
4405
- "performance. Plus, your SEO and digital marketing expertise will increase as "
4406
- "you keep working on solving issues unveiled by the weekly Audit. You need a "
4407
- "score over 50 to have good chances of ranking high on Google."
4408
- msgstr ""
4409
-
4410
- #: models/CheckSeo.php:869
4411
- #, php-format
4412
- msgid ""
4413
- "Open up your Audit from %sSquirrly > Audits%s. Open one of the audits, or "
4414
- "use the Compare Audit button to compare multiple audits and see how far "
4415
- "you've come along. Read about the aspects you can work on to improve your "
4416
- "score (find them on the right sidebar)."
4417
- msgstr ""
4418
-
4419
- #: models/CheckSeo.php:870 models/CheckSeo.php:948
4420
- msgid ""
4421
- "Improve the score of your Audit to have a good chance of ranking high on "
4422
- "Google."
4423
- msgstr ""
4424
-
4425
- #: models/CheckSeo.php:880
4426
- msgid "Reach 5 Inner Links for all your Focus Pages"
4427
- msgstr ""
4428
-
4429
- #: models/CheckSeo.php:882
4430
- msgid ""
4431
- "Get at least five inner links to your Focus Pages from other pages in your "
4432
- "site. If you don't have enough pages where you can link from, spend some "
4433
- "time creating new content. Then, re-index with Google Search Console (each "
4434
- "page from which you sent the links)"
4435
- msgstr ""
4436
-
4437
- #: models/CheckSeo.php:893
4438
- msgid "Time on Page for All Focus Pages: 1.5 minute average"
4439
- msgstr ""
4440
-
4441
- #: models/CheckSeo.php:894
4442
- msgid ""
4443
- "If your pages consistently keep people on them for longer than average, the "
4444
- "Google algorithm will adjust the search results to favor your site, because "
4445
- "this interaction tells Google that content on your page is interesting and "
4446
- "relevant. The longer people stay on your Focus Pages, the higher they will "
4447
- "appear in the search engine rankings. Right now, the average time on page "
4448
- "for your Focus Pages is under 1.5 minutes, which is not ideal. One thing you "
4449
- "can do is check if all traffic sources send you people who spend very little "
4450
- "time on your pages. If that's the case, make sure those sources stop sending "
4451
- "you traffic. Yes, there is such a thing as 'bad traffic' and it can hurt "
4452
- "your positions in Google. Also, you need to use [link]https://squirrly.co/"
4453
- "seo/kit/[/link] and make sure Google reads the correct time on page. Most of "
4454
- "the time, it doesn't, because its tracker gets a 'timeout'. In the kit, "
4455
- "you'll find a plugin that doesn't allow google to time out. And it will "
4456
- "improve the accuracy of the Time on Page readings."
4457
- msgstr ""
4458
-
4459
- #: models/CheckSeo.php:895
4460
- msgid ""
4461
- "Try these tactics to keep visitors on your page for longer: Embed a video or "
4462
- "two, add more visuals to make your page more attractive, format your content "
4463
- "better to make your page easy to scan, ensure your page is laser-focused on "
4464
- "what visitors expect to get from it."
4465
- msgstr ""
4466
-
4467
- #: models/CheckSeo.php:896
4468
- msgid "Keep visitors on your Focus Pages for longer to boost rankings."
4469
- msgstr ""
4470
-
4471
- #: models/CheckSeo.php:906
4472
- msgid "Get At Least 10 referring domains"
4473
- msgstr ""
4474
-
4475
- #: models/CheckSeo.php:907 models/CheckSeo.php:998
4476
- msgid ""
4477
- "If you want more organic traffic, backlinks and referring domains are "
4478
- "critical. Research has shown that the vast majority of pages (of analyzed ~ "
4479
- "1 billion pages) without any referring domains get NO traffic from Google. "
4480
- "There is also a positive correlation between the number of unique referring "
4481
- "domains and the amount of search traffic the target web page receives."
4482
- msgstr ""
4483
-
4484
- #: models/CheckSeo.php:908
4485
- msgid ""
4486
- "Find more websites that can send links to your own site. You need to get "
4487
- "links to our site from at least 10 other domains from the web. You can run "
4488
- "Squirrly SPY reports on your competitors to find websites which link to your "
4489
- "kind of website."
4490
- msgstr ""
4491
-
4492
- #: models/CheckSeo.php:909
4493
- msgid "Get at least 10 referring domains to get more traffic."
4494
- msgstr ""
4495
-
4496
- #: models/CheckSeo.php:919
4497
- msgid "Reach 40 Social Media Shares for Each of Your Focus Pages"
4498
- msgstr ""
4499
-
4500
- #: models/CheckSeo.php:920
4501
- msgid ""
4502
- "Try these tactics to reach at least 40 social media shares for each one of "
4503
- "your Focus Pages: Share your content multiple times using different captions "
4504
- "and images, make social media share buttons super easy to find, include "
4505
- "calls-to-action that encourage site visitors to share. More proven methods "
4506
- "you can use here: https://howto.squirrly.co/wordpress-seo/journey-to-better-"
4507
- "ranking-day-6/. For a complete framework, get access to our 10,000 Visits "
4508
- "from Social Media course on Education Cloud."
4509
- msgstr ""
4510
-
4511
- #: models/CheckSeo.php:921
4512
- msgid ""
4513
- "Studies have shown there is a high correlation between social signals and "
4514
- "ranking position. In one case study, a company achieved over 130,000 "
4515
- "Facebook shares to a web page and shot up the rankings for keyword phrases "
4516
- "that were very competitive. Our own SML (Squirrly Machine Learning) "
4517
- "discovered ranking increases on tens of thousands of pages after they "
4518
- "started getting shared to social media platforms. The biggest SEO experts "
4519
- "agree that social media helps your SEO efforts. Strive to get as many social "
4520
- "media shares as you can for your Focus Pages from trackable sources."
4521
- msgstr ""
4522
-
4523
- #: models/CheckSeo.php:922
4524
- msgid ""
4525
- "Get at least 40 social media shares for each one of your Focus Pages. It's "
4526
- "hard to rank a page that doesn't get shared to social media sites."
4527
- msgstr ""
4528
-
4529
- #: models/CheckSeo.php:932
4530
- msgid "Raise Authority Level to Over 20 for all Focus Pages"
4531
- msgstr ""
4532
-
4533
- #: models/CheckSeo.php:935
4534
- msgid ""
4535
- "Raise your Page Authority to over 20 for all Focus Pages. Otherwise, it will "
4536
- "be nearly impossible for those pages to reach top positions on Google."
4537
- msgstr ""
4538
-
4539
- # @ squirrly-seo
4540
- #: models/CheckSeo.php:945
4541
- #, fuzzy
4542
- #| msgid "Squirrly settings"
4543
- msgid "Audit Score is Over 70%"
4544
- msgstr "Squirrly Einstellungen"
4545
-
4546
- #: models/CheckSeo.php:946
4547
- msgid ""
4548
- "The Squirrly Audit covers the main aspects that influence a site's "
4549
- "performance. Plus, your SEO and digital marketing expertise will increase as "
4550
- "you keep working on solving issues unveiled by the weekly Audit. You need a "
4551
- "score over 70 to have good chances of ranking high on Google."
4552
- msgstr ""
4553
-
4554
- #: models/CheckSeo.php:947
4555
- #, php-format
4556
- msgid ""
4557
- "Open up your Audit from %sSquirrly > SEO Audit%s. Open one of the audits, or "
4558
- "use the Compare Audit button to compare multiple audits and see how far "
4559
- "you've come along. Read about the aspects you can work on to improve your "
4560
- "score (find them on the right sidebar)."
4561
- msgstr ""
4562
-
4563
- #: models/CheckSeo.php:958
4564
- msgid "Get Minimum 30 Visitors / Day to Your Focus Pages"
4565
- msgstr ""
4566
-
4567
- #: models/CheckSeo.php:971
4568
- msgid "Reach Time on Page for All Focus Pages: 2 minute average"
4569
- msgstr ""
4570
-
4571
- #: models/CheckSeo.php:972
4572
- msgid ""
4573
- "If your pages consistently keep people on them for longer than average, the "
4574
- "Google algorithm will adjust the search results to favor your site, because "
4575
- "this interaction tells Google that content on your page is interesting and "
4576
- "relevant. The longer people stay on your Focus Pages, the higher they will "
4577
- "appear in the search engine rankings. Right now, the average time on page "
4578
- "for your Focus Pages is under 2 minutes. You can make changes to improve "
4579
- "that. Average time on page is one of the most important signals for Google."
4580
- msgstr ""
4581
-
4582
- #: models/CheckSeo.php:973
4583
- msgid ""
4584
- "Experiment with interactive content such as polls or quizzes to keep "
4585
- "visitors on your site for longer, or make your content longer, if the topic "
4586
- "is right. It's also worth checking what are your traffic sources, as some "
4587
- "traffic sources can contribute to low time on page. "
4588
- msgstr ""
4589
-
4590
- #: models/CheckSeo.php:974
4591
- msgid ""
4592
- "Keep visitors on your Focus Pages for at least 2 minutes (on average) to "
4593
- "boost rankings. Keeping people over 2 minutes sends clear signals to Google "
4594
- "that people love your pages."
4595
- msgstr ""
4596
-
4597
- #: models/CheckSeo.php:984
4598
- msgid "Get at least 20 referring domains"
4599
- msgstr ""
4600
-
4601
- #: models/CheckSeo.php:985
4602
- msgid ""
4603
- "If you want more organic traffic, backlinks and referring domains are "
4604
- "critical. Research has shown that the vast majority of pages (of analyzed ~ "
4605
- "1 billion pages) without any referring domains get NO traffic from Google. "
4606
- "There is also a positive correlation between the number of unique referring "
4607
- "domains and the amount of search traffic the target web page receives. "
4608
- msgstr ""
4609
-
4610
- #: models/CheckSeo.php:986
4611
- msgid ""
4612
- "Find more websites that can send links to your own site. You need to get "
4613
- "links to our site from at least 20 other domains from the web. You can run "
4614
- "Squirrly SPY reports on your competitors to find websites which link to your "
4615
- "kind of website."
4616
- msgstr ""
4617
-
4618
- #: models/CheckSeo.php:987
4619
- msgid "Get at least 20 referring domains to get more traffic."
4620
- msgstr ""
4621
-
4622
- #: models/CheckSeo.php:997
4623
- msgid "Get at least 30 referring domains"
4624
- msgstr ""
4625
-
4626
- #: models/CheckSeo.php:999
4627
- msgid ""
4628
- "Find more websites that can send links to your own site. You need to get "
4629
- "links to our site from at least 30 other domains from the web. You can run "
4630
- "Squirrly SPY reports on your competitors to find websites which link to your "
4631
- "kind of website."
4632
- msgstr ""
4633
-
4634
- #: models/CheckSeo.php:1000
4635
- msgid "Get at least 30 reffering domains to get more traffic"
4636
- msgstr ""
4637
-
4638
- #: models/CheckSeo.php:1010
4639
- msgid "Get Minimum 70 Visitors / Day to Your Focus Pages"
4640
- msgstr ""
4641
-
4642
- #: models/CheckSeo.php:1023
4643
- msgid "Raise Authority Level to Over 35 for all Focus Pages"
4644
- msgstr ""
4645
-
4646
- #: models/CheckSeo.php:1024
4647
- msgid ""
4648
- "Page authority is a metric that Squirrly's servers calculate according to "
4649
- "data from different API, our own crawling and also SML (Squirrly Machine "
4650
- "Learning fine tunes the data, according to the data sets we've been "
4651
- "studying). Google has such a system as well, and we are basically "
4652
- "replicating what they're doing. To improve this, you need: traffic to the "
4653
- "page, good traffic metrics (time on page, low bounce rate), inner links, "
4654
- "outbound links set to \"nofollow\", backlinks (links from 3rd party sites to "
4655
- "your own site) and social media information."
4656
- msgstr ""
4657
-
4658
- #: models/CheckSeo.php:1026
4659
- msgid ""
4660
- "Raise your Page Authority to over 35 for all Focus Pages. Do this and Google "
4661
- "will start rewarding you with much better visibility on the search engine."
4662
- msgstr ""
4663
-
4664
- #: models/CheckSeo.php:1036
4665
- msgid "Get at least 1 Backlink for every Focus Page"
4666
- msgstr ""
4667
-
4668
- #: models/CheckSeo.php:1037 models/CheckSeo.php:1050
4669
- msgid ""
4670
- "A very easy way to reach this goal is to get a Squirrly SPY report "
4671
- "[link]https://squirrly.co/seo/spy/[/link] or something similar for your "
4672
- "competitors (just see who is currently listed top 10 in Google for your main "
4673
- "keyword for each Focus Page). You will see which sites link to them. Then "
4674
- "you can talk to those site owners and ask them how they can include you as "
4675
- "well, and also link to YOUR site."
4676
- msgstr ""
4677
-
4678
- #: models/CheckSeo.php:1038
4679
- msgid ""
4680
- "Get 1 Backlink for each Focus Page. The 'PRO Ranking Tournament' course "
4681
- "inside Education Cloud by Squirrly has many ideas in lesson 8. These ideas "
4682
- "will help you get backlinks."
4683
- msgstr ""
4684
-
4685
- #: models/CheckSeo.php:1039
4686
- msgid ""
4687
- "Get 1 Backlink (minimum) for each of your Focus Pages. Otherwise, it's "
4688
- "pretty improbable that you will manage to reach top positions."
4689
- msgstr ""
4690
-
4691
- #: models/CheckSeo.php:1049
4692
- msgid "Get 10 Backlinks to your Focus Pages"
4693
- msgstr ""
4694
-
4695
- #: models/CheckSeo.php:1051
4696
- msgid ""
4697
- "Get 10 Backlinks for each Focus Page. The 'PRO Ranking Tournament' course "
4698
- "inside Education Cloud by Squirrly has many ideas in lesson 8. These ideas "
4699
- "will help you get backlinks."
4700
- msgstr ""
4701
-
4702
- #: models/CheckSeo.php:1052
4703
- msgid ""
4704
- "Reach over 10 Backlinks for each of your Focus Pages. Otherwise, it's pretty "
4705
- "improbable that you will manage to reach top positions."
4706
- msgstr ""
4707
-
4708
- #: models/CheckSeo.php:1062
4709
- msgid "Help us with a positive review on WordPress."
4710
- msgstr ""
4711
-
4712
- #: models/CheckSeo.php:1063
4713
- msgid "Help us keep the Squirrly SEO plugin free with so many free features."
4714
- msgstr ""
4715
-
4716
- #: models/CheckSeo.php:1064
4717
- #, php-format
4718
- msgid ""
4719
- "Go to %sWordPress Directory%s and write a short positive review for us if "
4720
- "you like the plugin."
4721
- msgstr ""
4722
-
4723
- #: models/CheckSeo.php:1077 models/CheckSeo.php:1113
4724
- msgid "You got better Traffic to your Focus Pages"
4725
- msgstr ""
4726
-
4727
- #: models/CheckSeo.php:1086 models/CheckSeo.php:1095
4728
- msgid "You got better Ranking to your Focus Pages"
4729
- msgstr ""
4730
-
4731
- #: models/CheckSeo.php:1104
4732
- msgid "You got better Time On Page to your Focus Pages"
4733
- msgstr ""
4734
-
4735
- #: models/CheckSeo.php:1122
4736
- msgid "You got better Authority to your Focus Pages"
4737
- msgstr ""
4738
-
4739
- #: models/CheckSeo.php:1131
4740
- msgid "You got better Social Signals to your Focus Pages"
4741
- msgstr ""
4742
-
4743
- #: models/CheckSeo.php:1140
4744
- msgid "You got better Loading Speed to your Focus Pages"
4745
- msgstr ""
4746
-
4747
- #: models/CheckSeo.php:1149 models/CheckSeo.php:1158 models/CheckSeo.php:1167
4748
- msgid "You got better Ranking for your Keywords"
4749
- msgstr ""
4750
-
4751
- #: models/CheckSeo.php:1175
4752
- msgid "You got better Score for your Audit"
4753
- msgstr ""
4754
-
4755
- # @ squirrly-seo
4756
- #: models/CheckSeo.php:1482
4757
- #, fuzzy
4758
- #| msgid "Could not send the email..."
4759
- msgid "Could not verify the frontend."
4760
- msgstr "Konnte E-Mail nicht senden ..."
4761
-
4762
- #: models/CheckSeo.php:1848
4763
- msgid "'Just another WordPress site'"
4764
- msgstr ""
4765
-
4766
- #: models/CheckSeo.php:1849
4767
- msgid "Just another WordPress site"
4768
- msgstr ""
4769
-
4770
- #: models/CheckSeo.php:2021
4771
- #, php-format
4772
- msgid "Focus Page was not found (error %s)"
4773
- msgstr ""
4774
-
4775
- #: models/CheckSeo.php:2022 models/CheckSeo.php:2066
4776
- msgid ""
4777
- "The way your WordPress site is currently hosted can affect the way Squirrly "
4778
- "SEO operates in order to retrieve and process data about your Focus Pages. "
4779
- "It’s important to do everything on your end to ensure that the Focus Pages "
4780
- "audits can be generated by our system."
4781
- msgstr ""
4782
-
4783
- #: models/CheckSeo.php:2023 models/CheckSeo.php:2042
4784
- msgid ""
4785
- "Use a different browser to check if your Focus Page is visible. Whitelist "
4786
- "our crawler IP address (176.9.112.210) to allow our server to verify your "
4787
- "page so that you’ll receive a full audit."
4788
- msgstr ""
4789
-
4790
- #: models/CheckSeo.php:2024 models/CheckSeo.php:2068
4791
- msgid "An error is preventing Squirrly from processing your Focus Page audits."
4792
- msgstr ""
4793
-
4794
- #: models/CheckSeo.php:2031
4795
- #, php-format
4796
- msgid "Your Focus Page is redirected to another page (error %s)"
4797
- msgstr ""
4798
-
4799
- #: models/CheckSeo.php:2032
4800
- #, php-format
4801
- msgid ""
4802
- "Right now, your Focus Page sends users and search engines to a different URL "
4803
- "from the one they originally requested. That’s because you set up a 301 or a "
4804
- "302 redirect for this page. %s A redirect indicates that your Focus Page has "
4805
- "moved to a different location. If the wrong type of redirect has been set "
4806
- "up, search engines can be become confused as to which page they should rank. "
4807
- "%s A redirect also interferes with how Squirrly’s Focus Pages system "
4808
- "operates."
4809
- msgstr ""
4810
-
4811
- #: models/CheckSeo.php:2033
4812
- msgid ""
4813
- "Choose a page that does NOT redirect to a different page as your Focus Page. "
4814
- "Your Focus Page should have a single URL associated to it so that Squirrly "
4815
- "can serve you the best data."
4816
- msgstr ""
4817
-
4818
- #: models/CheckSeo.php:2034
4819
- msgid "Make sure that your Focus Page is NOT redirected to a different page."
4820
- msgstr ""
4821
-
4822
- #: models/CheckSeo.php:2040
4823
- #, php-format
4824
- msgid "Ensure your Focus Pages can be accessed (error %s)"
4825
- msgstr ""
4826
-
4827
- #: models/CheckSeo.php:2041
4828
- #, php-format
4829
- msgid ""
4830
- "A server-side error is preventing Squirrly from being able to access and "
4831
- "audit your Focus Page. You need to fix this so that Squirrly SEO can analyze "
4832
- "your page and serve you complete data on how to improve its chances of "
4833
- "ranking. %sThe error can also prevent human visitors from accessing your "
4834
- "page, which is a critical issue."
4835
- msgstr ""
4836
-
4837
- #: models/CheckSeo.php:2043
4838
- msgid "A server-side error is preventing your Focus Pages from being accessed."
4839
- msgstr ""
4840
-
4841
- #: models/CheckSeo.php:2048
4842
- #, php-format
4843
- msgid "Make sure your Focus Pages can be audited (error %s)"
4844
- msgstr ""
4845
-
4846
- #: models/CheckSeo.php:2049
4847
- msgid ""
4848
- "Squirrly is unable to generate the audit for your Focus Page because it "
4849
- "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
4850
- "server may be down, or maybe your server is inadvertently blocking "
4851
- "Squirrly’s IP address."
4852
- msgstr ""
4853
-
4854
- #: models/CheckSeo.php:2050
4855
- msgid ""
4856
- "Check to see if your WordPress site’s server is offline. Whitelist our "
4857
- "crawler IP address (176.9.112.210) to allow our server to verify your page "
4858
- "so that you’ll receive a full audit."
4859
- msgstr ""
4860
-
4861
- #: models/CheckSeo.php:2051 models/CheckSeo.php:2059
4862
- msgid ""
4863
- "An error prevents Squirrly from gathering critical data about your Focus "
4864
- "Page."
4865
- msgstr ""
4866
-
4867
- #: models/CheckSeo.php:2056
4868
- msgid "Make sure your Focus Pages can be audited (firewall protection)"
4869
- msgstr ""
4870
-
4871
- #: models/CheckSeo.php:2057
4872
- msgid ""
4873
- "Squirrly is unable to generate the audit for your Focus Page because it "
4874
- "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
4875
- "server has a firewall protection and is blocking Squirrly’s IP address."
4876
- msgstr ""
4877
-
4878
- #: models/CheckSeo.php:2058 models/CheckSeo.php:2067
4879
- msgid ""
4880
- "Whitelist our crawler IP address (176.9.112.210) to allow our server to "
4881
- "verify your page so that you’ll receive a full audit."
4882
- msgstr ""
4883
-
4884
- #: models/CheckSeo.php:2065
4885
- #, php-format
4886
- msgid "Focus Page could not be verified (error: %s)"
4887
- msgstr ""
4888
-
4889
- # @ squirrly-seo
4890
- #: models/FocusPages.php:21 models/bulkseo/Metas.php:139
4891
- #: models/focuspages/Clicks.php:64 models/focuspages/Content.php:88
4892
- #: models/focuspages/Ctr.php:64 models/focuspages/Image.php:80
4893
- #: models/focuspages/Impressions.php:64 models/focuspages/Keyword.php:97
4894
- #: models/focuspages/Keyword.php:100 models/focuspages/Snippet.php:151
4895
- #: models/focuspages/Strategy.php:103 view/Ranking/Gscsync.php:31
4896
- #: view/Ranking/Rankings.php:216 view/Ranking/Rankings.php:353
4897
- #: view/Research/Briefcase.php:107 view/Research/Briefcase.php:290
4898
- #: view/Research/History.php:29 view/Research/HistoryDetails.php:7
4899
- #: view/Research/Research.php:198 view/Research/Suggested.php:28
4900
- #, fuzzy
4901
- #| msgid "Tips: 2-4 keywords"
4902
- msgid "Keyword"
4903
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
4904
-
4905
- #: models/FocusPages.php:22
4906
- msgid "Strategy"
4907
- msgstr ""
4908
-
4909
- # @ squirrly-seo
4910
- #: models/FocusPages.php:23
4911
- #, fuzzy
4912
- #| msgid "SEO Software"
4913
- msgid "SEO Content"
4914
- msgstr "SEO Software"
4915
-
4916
- #: models/FocusPages.php:24
4917
- msgid "Words / Page"
4918
- msgstr ""
4919
-
4920
- #: models/FocusPages.php:25
4921
- msgid "Platform SEO"
4922
- msgstr ""
4923
-
4924
- #: models/FocusPages.php:26
4925
- msgid "Snippet"
4926
- msgstr ""
4927
-
4928
- #: models/FocusPages.php:27
4929
- msgid "SEO Image"
4930
- msgstr ""
4931
-
4932
- #: models/FocusPages.php:28
4933
- msgid "Traffic Health"
4934
- msgstr ""
4935
-
4936
- #: models/FocusPages.php:29
4937
- msgid "Platform Health"
4938
- msgstr ""
4939
-
4940
- #: models/FocusPages.php:31
4941
- msgid "Social Signals"
4942
- msgstr ""
4943
-
4944
- #: models/FocusPages.php:32
4945
- msgid "Backlinks"
4946
- msgstr ""
4947
-
4948
- #: models/FocusPages.php:33
4949
- msgid "Inner Links"
4950
- msgstr ""
4951
-
4952
- #: models/FocusPages.php:34
4953
- msgid "Outbound Links"
4954
- msgstr ""
4955
-
4956
- #: models/FocusPages.php:35
4957
- msgid "Accuracy"
4958
- msgstr ""
4959
-
4960
- #: models/FocusPages.php:36 view/Ranking/Gscsync.php:34
4961
- msgid "CTR"
4962
- msgstr ""
4963
-
4964
- #: models/FocusPages.php:37 view/Ranking/Gscsync.php:33
4965
- #: view/Ranking/Rankings.php:367
4966
- msgid "Impressions"
4967
- msgstr ""
4968
-
4969
- #: models/FocusPages.php:38 view/Ranking/Gscsync.php:32
4970
- #: view/Ranking/Rankings.php:373
4971
- msgid "Clicks"
4972
- msgstr ""
4973
-
4974
- # @ squirrly-seo
4975
- #: models/Ico.php:43
4976
- #, fuzzy
4977
- #| msgid "File type error: Only JPEG, JPG, GIF or PNG files are allowed."
4978
- msgid "File type error: Only ICO, JPEG, JPG, GIF or PNG files are allowed."
4979
- msgstr "Dateityp Fehler: Nur JPEG, JPG, GIF oder PNG-Dateien sind erlaubt."
4980
-
4981
- # @ squirrly-seo
4982
- #: models/Ico.php:52
4983
- #, fuzzy
4984
- #| msgid "Could not send the email..."
4985
- msgid "Delete error: Could not delete the old favicon."
4986
- msgstr "Konnte E-Mail nicht senden ..."
4987
-
4988
- # @ squirrly-seo
4989
- #: models/Ico.php:59
4990
- #, fuzzy
4991
- #| msgid "Could not send the email..."
4992
- msgid "Upload error: Could not upload the favicon."
4993
- msgstr "Konnte E-Mail nicht senden ..."
4994
-
4995
- #: models/Ico.php:65
4996
- msgid "Permission error: Could not change the favicon permissions."
4997
- msgstr ""
4998
-
4999
- #: models/Ico.php:86
5000
- msgid ""
5001
- "ICO Error: Could not create the ICO from file. Try with another file type."
5002
- msgstr ""
5003
-
5004
- #: models/Ico.php:103
5005
- msgid "The favicon has been updated."
5006
- msgstr ""
5007
-
5008
- #: models/Menu.php:110 models/Menu.php:381
5009
- msgid "First Step"
5010
- msgstr ""
5011
-
5012
- #: models/Menu.php:110 models/Menu.php:111 models/Menu.php:257
5013
- #: view/Blocks/Toolbar.php:44
5014
- msgid "Overview"
5015
- msgstr ""
5016
-
5017
- # @ squirrly-seo
5018
- #: models/Menu.php:118 models/Menu.php:119 view/Research/Briefcase.php:119
5019
- #, fuzzy
5020
- #| msgid "Do the research"
5021
- msgid "Research"
5022
- msgstr "Recherchieren"
5023
-
5024
- #: models/Menu.php:126 models/Menu.php:127 view/Blocks/Features.php:34
5025
- msgid "Live Assistant"
5026
- msgstr ""
5027
-
5028
- # @ squirrly-seo
5029
- #: models/Menu.php:134
5030
- #, fuzzy
5031
- #| msgid "Squirrly LIVE SEO assistant"
5032
- msgid "All Snippets"
5033
- msgstr "Squirrly LIVE SEO-Assistent"
5034
-
5035
- #: models/Menu.php:135
5036
- msgid "Bulk Seo"
5037
- msgstr ""
5038
-
5039
- # @ squirrly-seo
5040
- #: models/Menu.php:142 models/Menu.php:143
5041
- #, fuzzy
5042
- #| msgid "Squirrly settings"
5043
- msgid "SEO Settings"
5044
- msgstr "Squirrly Einstellungen"
5045
-
5046
- # @ squirrly-seo
5047
- #: models/Menu.php:150 models/Menu.php:151 models/Menu.php:237
5048
- #: view/Blocks/Features.php:7 view/FocusPages/Pagelist.php:23
5049
- #, fuzzy
5050
- #| msgid "Squirrly settings"
5051
- msgid "Focus Pages"
5052
- msgstr "Squirrly Einstellungen"
5053
-
5054
- # @ squirrly-seo
5055
- #: models/Menu.php:158 models/Menu.php:159 view/Blocks/Features.php:187
5056
- #, fuzzy
5057
- #| msgid "automatically"
5058
- msgid "SEO Audit"
5059
- msgstr "automatisch"
5060
-
5061
- # @ squirrly-seo
5062
- #: models/Menu.php:166 models/Menu.php:167 models/Menu.php:277
5063
- #, fuzzy
5064
- #| msgid "Squirrly settings"
5065
- msgid "Rankings"
5066
- msgstr "Squirrly Einstellungen"
5067
-
5068
- # @ squirrly-seo
5069
- #: models/Menu.php:191
5070
- #, fuzzy
5071
- #| msgid "Tips: 2-4 keywords"
5072
- msgid "Find Keywords"
5073
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
5074
-
5075
- # @ squirrly-seo
5076
- #: models/Menu.php:192
5077
- #, fuzzy
5078
- #| msgid "Do the research"
5079
- msgid "do a keyword research"
5080
- msgstr "Recherchieren"
5081
-
5082
- #: models/Menu.php:197 view/Research/Briefcase.php:18
5083
- msgid "Briefcase"
5084
- msgstr ""
5085
-
5086
- # @ squirrly-seo
5087
- #: models/Menu.php:198
5088
- #, fuzzy
5089
- #| msgid "Enter even more keywords."
5090
- msgid "save the best Keywords"
5091
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5092
-
5093
- #: models/Menu.php:203 view/Research/Briefcase.php:30
5094
- msgid "Labels"
5095
- msgstr ""
5096
-
5097
- # @ squirrly-seo
5098
- #: models/Menu.php:204
5099
- #, fuzzy
5100
- #| msgid "Tips: 2-4 keywords"
5101
- msgid "group keywords"
5102
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
5103
-
5104
- #: models/Menu.php:209 view/Research/Suggested.php:15
5105
- msgid "Suggested"
5106
- msgstr ""
5107
-
5108
- # @ squirrly-seo
5109
- #: models/Menu.php:210
5110
- #, fuzzy
5111
- #| msgid "Enter even more keywords."
5112
- msgid "better keywords found"
5113
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5114
-
5115
- #: models/Menu.php:215 view/Research/History.php:16
5116
- msgid "History"
5117
- msgstr ""
5118
-
5119
- # @ squirrly-seo
5120
- #: models/Menu.php:216
5121
- #, fuzzy
5122
- #| msgid "Do the research"
5123
- msgid "keyword research history"
5124
- msgstr "Recherchieren"
5125
-
5126
- #: models/Menu.php:223
5127
- msgid "Optimize Posts"
5128
- msgstr ""
5129
-
5130
- #: models/Menu.php:224
5131
- msgid "use the Live Assistant"
5132
- msgstr ""
5133
-
5134
- # @ squirrly-seo
5135
- #: models/Menu.php:229 models/Menu.php:269 models/Menu.php:289
5136
- #, fuzzy
5137
- #| msgid "Squirrly settings"
5138
- msgid "Settings"
5139
- msgstr "Squirrly Einstellungen"
5140
-
5141
- #: models/Menu.php:230
5142
- msgid "live assistant setup"
5143
- msgstr ""
5144
-
5145
- #: models/Menu.php:238
5146
- msgid "all my focus pages"
5147
- msgstr ""
5148
-
5149
- # @ squirrly-seo
5150
- #: models/Menu.php:249 models/Menu.php:263
5151
- #, fuzzy
5152
- #| msgid "Squirrly settings"
5153
- msgid "Add New Page"
5154
- msgstr "Squirrly Einstellungen"
5155
-
5156
- #: models/Menu.php:250
5157
- msgid "add page in focus pages"
5158
- msgstr ""
5159
-
5160
- #: models/Menu.php:258
5161
- msgid "See all the SEO audits"
5162
- msgstr ""
5163
-
5164
- #: models/Menu.php:264
5165
- msgid "add page in audit"
5166
- msgstr ""
5167
-
5168
- # @ squirrly-seo
5169
- #: models/Menu.php:270
5170
- #, fuzzy
5171
- #| msgid "Squirrly settings"
5172
- msgid "Audit settings"
5173
- msgstr "Squirrly Einstellungen"
5174
-
5175
- # @ squirrly-seo
5176
- #: models/Menu.php:278
5177
- #, fuzzy
5178
- #| msgid "Google %sAnalytics ID%s`:"
5179
- msgid "See Google ranking"
5180
- msgstr "Google %sAnalytics ID%s`:"
5181
-
5182
- # @ squirrly-seo
5183
- #: models/Menu.php:283
5184
- #, fuzzy
5185
- #| msgid "Tips: 2-4 keywords"
5186
- msgid "Add Keywords"
5187
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
5188
-
5189
- # @ squirrly-seo
5190
- #: models/Menu.php:284
5191
- #, fuzzy
5192
- #| msgid "Enter even more keywords."
5193
- msgid "Add briefcase keywords"
5194
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5195
-
5196
- # @ squirrly-seo
5197
- #: models/Menu.php:290
5198
- #, fuzzy
5199
- #| msgid "Squirrly settings"
5200
- msgid "Ranking settings"
5201
- msgstr "Squirrly Einstellungen"
5202
-
5203
- # @ squirrly-seo
5204
- #: models/Menu.php:299 view/BulkSeo/Bulkseo.php:29
5205
- #, fuzzy
5206
- #| msgid "Squirrly settings"
5207
- msgid "Bulk SEO"
5208
- msgstr "Squirrly Einstellungen"
5209
-
5210
- #: models/Menu.php:300
5211
- msgid "optimize all pages"
5212
- msgstr ""
5213
-
5214
- # @ squirrly-seo
5215
- #: models/Menu.php:308
5216
- #, fuzzy
5217
- #| msgid "automatically"
5218
- msgid "Automation"
5219
- msgstr "automatisch"
5220
-
5221
- #: models/Menu.php:309
5222
- msgid "patterns & automation"
5223
- msgstr ""
5224
-
5225
- # @ squirrly-seo
5226
- #: models/Menu.php:314 view/SeoSettings/Metas.php:31
5227
- #, fuzzy
5228
- #| msgid "SEO Software"
5229
- msgid "SEO Metas"
5230
- msgstr "SEO Software"
5231
-
5232
- #: models/Menu.php:315
5233
- msgid "required on-page metas"
5234
- msgstr ""
5235
-
5236
- #: models/Menu.php:320
5237
- msgid "JSON LD"
5238
- msgstr ""
5239
-
5240
- #: models/Menu.php:321
5241
- msgid "google structured data"
5242
- msgstr ""
5243
-
5244
- #: models/Menu.php:326 view/SeoSettings/Social.php:27
5245
- msgid "Social Media"
5246
- msgstr ""
5247
-
5248
- #: models/Menu.php:327
5249
- msgid "social share options"
5250
- msgstr ""
5251
-
5252
- #: models/Menu.php:332 view/SeoSettings/Tracking.php:27
5253
- msgid "Tracking Tools"
5254
- msgstr ""
5255
-
5256
- # @ squirrly-seo
5257
- #: models/Menu.php:333
5258
- #, fuzzy
5259
- #| msgid "Google %sAnalytics ID%s`:"
5260
- msgid "google analytics, pixel, etc."
5261
- msgstr "Google %sAnalytics ID%s`:"
5262
-
5263
- #: models/Menu.php:338
5264
- msgid "Connection"
5265
- msgstr ""
5266
-
5267
- #: models/Menu.php:339
5268
- msgid "webmaster tools"
5269
- msgstr ""
5270
-
5271
- #: models/Menu.php:344 view/SeoSettings/Sitemap.php:28
5272
- msgid "Sitemap XML"
5273
- msgstr ""
5274
-
5275
- #: models/Menu.php:345
5276
- msgid "setup the sitemap"
5277
- msgstr ""
5278
-
5279
- #: models/Menu.php:350
5280
- msgid "Robots.txt"
5281
- msgstr ""
5282
-
5283
- #: models/Menu.php:351
5284
- msgid "search engine filters"
5285
- msgstr ""
5286
-
5287
- #: models/Menu.php:356
5288
- msgid "Favicon"
5289
- msgstr ""
5290
-
5291
- #: models/Menu.php:357
5292
- msgid "add website icon"
5293
- msgstr ""
5294
-
5295
- #: models/Menu.php:362
5296
- msgid "Import/Export"
5297
- msgstr ""
5298
-
5299
- #: models/Menu.php:363
5300
- msgid "import & export SEO"
5301
- msgstr ""
5302
-
5303
- # @ squirrly-seo
5304
- #: models/Menu.php:372
5305
- #, fuzzy
5306
- #| msgid "Squirrly settings"
5307
- msgid "Advanced"
5308
- msgstr "Squirrly Einstellungen"
5309
-
5310
- # @ squirrly-seo
5311
- #: models/Menu.php:373
5312
- #, fuzzy
5313
- #| msgid "Squirrly settings"
5314
- msgid "Advanced SEO Settings"
5315
- msgstr "Squirrly Einstellungen"
5316
-
5317
- #: models/Menu.php:382
5318
- msgid "all the SEO features"
5319
- msgstr ""
5320
-
5321
- #: models/Menu.php:387 view/Onboarding/Step3.php:52
5322
- msgid "Import"
5323
- msgstr ""
5324
-
5325
- #: models/Menu.php:388
5326
- msgid "import settings and SEO"
5327
- msgstr ""
5328
-
5329
- #: models/Menu.php:393 view/Onboarding/Step4.php:11
5330
- msgid "Final Step"
5331
- msgstr ""
5332
-
5333
- # @ squirrly-seo
5334
- #: models/Menu.php:394
5335
- #, fuzzy
5336
- #| msgid "Squirrly settings"
5337
- msgid "start using Squirrly SEO"
5338
- msgstr "Squirrly Einstellungen"
5339
-
5340
- #: models/Menu.php:402
5341
- msgid "Blogging"
5342
- msgstr ""
5343
-
5344
- #: models/Menu.php:403
5345
- msgid "Blogging overwiew"
5346
- msgstr ""
5347
-
5348
- #: models/Menu.php:408
5349
- msgid "Traffic"
5350
- msgstr ""
5351
-
5352
- #: models/Menu.php:409
5353
- msgid "Weekly website traffic"
5354
- msgstr ""
5355
-
5356
- #: models/Menu.php:414
5357
- msgid "SEO"
5358
- msgstr ""
5359
-
5360
- #: models/Menu.php:415
5361
- msgid "On-Page optimization"
5362
- msgstr ""
5363
-
5364
- #: models/Menu.php:420
5365
- msgid "Social"
5366
- msgstr ""
5367
-
5368
- #: models/Menu.php:421
5369
- msgid "Social signals and shares"
5370
- msgstr ""
5371
-
5372
- #: models/Menu.php:426
5373
- msgid "Links"
5374
- msgstr ""
5375
-
5376
- #: models/Menu.php:427
5377
- msgid "Backlinks and Innerlinks"
5378
- msgstr ""
5379
-
5380
- #: models/Menu.php:432 models/focuspages/Authority.php:59
5381
- msgid "Authority"
5382
- msgstr ""
5383
-
5384
- #: models/Menu.php:433
5385
- msgid "Website Off-Page score"
5386
- msgstr ""
5387
-
5388
- #: models/Post.php:73
5389
- msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
5390
- msgstr ""
5391
-
5392
- #: models/Post.php:74
5393
- msgid ""
5394
- "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
5395
- "the HTML form."
5396
- msgstr ""
5397
-
5398
- #: models/Post.php:75
5399
- msgid "The uploaded file was only partially uploaded."
5400
- msgstr ""
5401
-
5402
- #: models/Post.php:76
5403
- msgid "No file was uploaded."
5404
- msgstr ""
5405
-
5406
- #: models/Post.php:78
5407
- msgid "Missing a temporary folder."
5408
- msgstr ""
5409
-
5410
- #: models/Post.php:79
5411
- msgid "Failed to write file to disk."
5412
- msgstr ""
5413
-
5414
- #: models/Post.php:80
5415
- msgid "File upload stopped by extension."
5416
- msgstr ""
5417
-
5418
- #: models/Post.php:97
5419
- msgid "Invalid form submission."
5420
- msgstr ""
5421
-
5422
- #: models/Post.php:107
5423
- msgid "File is empty. Please upload something more substantial."
5424
- msgstr ""
5425
-
5426
- #: models/Post.php:109
5427
- msgid ""
5428
- "File is empty. Please upload something more substantial. This error could "
5429
- "also be caused by uploads being disabled in your php.ini or by post_max_size "
5430
- "being defined as smaller than upload_max_filesize in php.ini."
5431
- msgstr ""
5432
-
5433
- #: models/Post.php:115
5434
- msgid "Specified file failed upload test."
5435
- msgstr ""
5436
-
5437
- #: models/Post.php:128
5438
- msgid "Sorry, this file type is not permitted for security reasons."
5439
- msgstr ""
5440
-
5441
- #: models/Post.php:153
5442
- #, php-format
5443
- msgid "The uploaded file could not be moved to %s."
5444
- msgstr ""
5445
-
5446
- #: models/Post.php:234
5447
- msgid "Keyword with 2 or more words"
5448
- msgstr ""
5449
-
5450
- #: models/Post.php:235
5451
- msgid ""
5452
- "Even if a long tail keyword won't bring as many visitors as one keyword "
5453
- "would, the traffic those keywords will bring will be better, and more "
5454
- "focused towards what you're selling."
5455
- msgstr ""
5456
-
5457
- #: models/Post.php:238
5458
- msgid "Domain"
5459
- msgstr ""
5460
-
5461
- #: models/Post.php:240
5462
- msgid "Keyword is present in the URL"
5463
- msgstr ""
5464
-
5465
- #: models/Post.php:241
5466
- msgid ""
5467
- "The keywords must be present in the URL for a better ranking. You should "
5468
- "consider not to add a keyword more than once."
5469
- msgstr ""
5470
-
5471
- #: models/Post.php:244
5472
- msgid "Clean & Friendly"
5473
- msgstr ""
5474
-
5475
- #: models/Post.php:246
5476
- #, php-format
5477
- msgid "Title is Google Friendly %s: more keywords %s: over-optimized! %s"
5478
- msgstr ""
5479
-
5480
- #: models/Post.php:247
5481
- msgid ""
5482
- "It calculates the right number of times your keyword should appear mentioned "
5483
- "in the text and makes sure you do not over-optimize."
5484
- msgstr ""
5485
-
5486
- #: models/Post.php:250
5487
- #, php-format
5488
- msgid "Content is Google Friendly %s: more keywords %s: over-optimized! %s"
5489
- msgstr ""
5490
-
5491
- #: models/Post.php:251
5492
- msgid ""
5493
- "It calculates the right number of times your keyword should appear mentioned "
5494
- "in the text and makes sure you do not over-optimize"
5495
- msgstr ""
5496
-
5497
- #: models/Post.php:254
5498
- #, php-format
5499
- msgid "Over Optimization %s"
5500
- msgstr ""
5501
-
5502
- #: models/Post.php:255
5503
- msgid ""
5504
- "Checks if there are words in the whole text that appear way too many times"
5505
- msgstr ""
5506
-
5507
- #: models/Post.php:258
5508
- #, php-format
5509
- msgid "Human Friendly %s"
5510
- msgstr ""
5511
-
5512
- #: models/Post.php:259
5513
- msgid ""
5514
- "Your readers (who are not search engine bots) should find a clear text, with "
5515
- "a rich vocabulary, that takes into account some basic rules of writing: such "
5516
- "as having an introduction, a conclusion (in which you state the topic you're "
5517
- "writing about). Also, you can improve their reading experience by avoiding "
5518
- "repetitions."
5519
- msgstr ""
5520
-
5521
- #: models/Post.php:262 models/focuspages/Snippet.php:89
5522
- #: models/focuspages/Snippet.php:219 models/focuspages/Snippet.php:241
5523
- #: view/Audits/Addpage.php:132 view/Blocks/Snippet.php:172
5524
- #: view/Blocks/Snippet.php:577 view/Blocks/Snippet.php:835
5525
- #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:132
5526
- #: view/SeoSettings/Automation.php:125 view/SeoSettings/Metas.php:167
5527
- msgid "Title"
5528
- msgstr ""
5529
-
5530
- #: models/Post.php:264
5531
- msgid "Keywords are used in Title"
5532
- msgstr ""
5533
-
5534
- #: models/Post.php:265
5535
- msgid "The keywords need to appear in the title of the article"
5536
- msgstr ""
5537
-
5538
- # @ squirrly-seo
5539
- #: models/Post.php:268
5540
- #, fuzzy
5541
- #| msgid "Tips: Length 70-255 chars"
5542
- msgid "Title length is between 10-75 chars"
5543
- msgstr "Tipp: Länge 70-255 Charaktere"
5544
-
5545
- #: models/Post.php:269
5546
- msgid ""
5547
- "The optimum length for Title is between 10-75 chars on major search engines."
5548
- msgstr ""
5549
-
5550
- #: models/Post.php:272
5551
- msgid "Title is different from domain name"
5552
- msgstr ""
5553
-
5554
- #: models/Post.php:273
5555
- msgid ""
5556
- "Since the Google Penguin Update, the title must be different from the domain "
5557
- "name, or you might get banned soon."
5558
- msgstr ""
5559
-
5560
- # @ squirrly-seo
5561
- #: models/Post.php:276
5562
- #, fuzzy
5563
- #| msgid "SEO Software"
5564
- msgid "Content"
5565
- msgstr "SEO Software"
5566
-
5567
- #: models/Post.php:278
5568
- msgid "Keywords are used in Content"
5569
- msgstr ""
5570
-
5571
- #: models/Post.php:279
5572
- msgid "The keyword must appear in the body of the article, at least once"
5573
- msgstr ""
5574
-
5575
- # @ squirrly-seo
5576
- #: models/Post.php:282
5577
- #, fuzzy, php-format
5578
- #| msgid "Could not send the email..."
5579
- msgid "Bold one of the keywords %s"
5580
- msgstr "Konnte E-Mail nicht senden ..."
5581
-
5582
- #: models/Post.php:283
5583
- msgid ""
5584
- "Bolding your keywords will help search engines figure out what your content "
5585
- "is about and what topic you cover. It's also useful for your Human readers "
5586
- "to bold some of the most important ideas."
5587
- msgstr ""
5588
-
5589
- #: models/Post.php:286
5590
- msgid "Keywords used in headline"
5591
- msgstr ""
5592
-
5593
- #: models/Post.php:287
5594
- msgid ""
5595
- "The keywords should be used in headings like H2, H3, H4. Try NOT to use them "
5596
- "all, for it will seem to be a SEO abuse. You can use your H2 button from the "
5597
- "editor to do this. It works like the Bold, Italic or Underline buttons."
5598
- msgstr ""
5599
-
5600
- #: models/Post.php:290
5601
- msgid "Use image(s) in content or featured image"
5602
- msgstr ""
5603
-
5604
- #: models/Post.php:291
5605
- msgid ""
5606
- "Articles need to be optimized for human beings as well, so you should place "
5607
- "an image at the begining of your article."
5608
- msgstr ""
5609
-
5610
- #: models/Post.php:294
5611
- msgid "Use keywords in the Alternative Text field of the image"
5612
- msgstr ""
5613
-
5614
- #: models/Post.php:295
5615
- msgid ""
5616
- "Add at least one image in your article. Now use your keyword in the "
5617
- "description of the image. The Alternative Text field of the image."
5618
- msgstr ""
5619
-
5620
- #: models/PostsList.php:24
5621
- msgid "Optimize it with Squirrly Live Assistant"
5622
- msgstr ""
5623
-
5624
- #: models/PostsList.php:48 models/PostsList.php:74
5625
- msgid "Snippet optimized"
5626
- msgstr ""
5627
-
5628
- #: models/PostsList.php:48 models/PostsList.php:74
5629
- msgid "task(s) remained."
5630
- msgstr ""
5631
-
5632
- #: models/PostsList.php:52 models/PostsList.php:78
5633
- msgid "Can't get snippet data"
5634
- msgstr ""
5635
-
5636
- #: models/PostsList.php:55 models/PostsList.php:80 view/Blocks/Snippet.php:134
5637
- msgid "Edit Snippet"
5638
- msgstr ""
5639
-
5640
- # @ squirrly-seo
5641
- #: models/RoleManager.php:96
5642
- #, fuzzy
5643
- #| msgid "Squirrly LIVE SEO assistant"
5644
- msgid "Squirrly SEO Editor"
5645
- msgstr "Squirrly LIVE SEO-Assistent"
5646
-
5647
- # @ squirrly-seo
5648
- #: models/RoleManager.php:97
5649
- #, fuzzy
5650
- #| msgid "Squirrly LIVE SEO assistant"
5651
- msgid "Squirrly SEO Admin"
5652
- msgstr "Squirrly LIVE SEO-Assistent"
5653
-
5654
- #: models/Snippet.php:250
5655
- msgid "You don't have enough pemission to edit this article"
5656
- msgstr ""
5657
-
5658
- # @ squirrly-seo
5659
- #: models/Snippet.php:343
5660
- #, fuzzy
5661
- #| msgid "Could not send the email..."
5662
- msgid "Error! Could not save the data."
5663
- msgstr "Konnte E-Mail nicht senden ..."
5664
-
5665
- #: models/Snippet.php:348
5666
- msgid "Error! Invalid request."
5667
- msgstr ""
5668
-
5669
- # @ squirrly-seo
5670
- #: models/Snippet.php:380
5671
- #, fuzzy
5672
- #| msgid "Could not send the email..."
5673
- msgid "Couldn't find the page"
5674
- msgstr "Konnte E-Mail nicht senden ..."
5675
-
5676
- #: models/Snippet.php:396 models/Snippet.php:408
5677
- msgid "No Polylang translation for this post."
5678
- msgstr ""
5679
-
5680
- #: models/abstract/Assistant.php:133
5681
- msgid "We are gathering data for this category"
5682
- msgstr ""
5683
-
5684
- #: models/abstract/Assistant.php:136
5685
- msgid ""
5686
- "Congratulations for ranking with this keyword, but it will require special "
5687
- "attention from you to keep it within TOP 10 positions"
5688
- msgstr ""
5689
-
5690
- #: models/abstract/Assistant.php:179
5691
- msgid "Not enough data to process this task"
5692
- msgstr ""
5693
-
5694
- #: models/abstract/Assistant.php:183 view/Blocks/Snippet.php:309
5695
- msgid "Current"
5696
- msgstr ""
5697
-
5698
- #: models/bulkseo/Metas.php:57
5699
- msgid "Title not empty"
5700
- msgstr ""
5701
-
5702
- #: models/bulkseo/Metas.php:58 view/Blocks/Snippet.php:188
5703
- #: view/Blocks/Snippet.php:593 view/Blocks/Snippet.php:851
5704
- msgid "Current Title"
5705
- msgstr ""
5706
-
5707
- #: models/bulkseo/Metas.php:60
5708
- #, php-format
5709
- msgid ""
5710
- "The title for this URL must not be empty. %s Write a title for this page. "
5711
- "The title is very important because it shows up in the browser tab and in "
5712
- "the Google listing for your page. %s The better you write the title, the "
5713
- "more clicks you can get when people find your page on search engines."
5714
- msgstr ""
5715
-
5716
- # @ squirrly-seo
5717
- #: models/bulkseo/Metas.php:63
5718
- #, fuzzy, php-format
5719
- #| msgid "Tips: Length 10-70 chars"
5720
- msgid "Title up to %s chars"
5721
- msgstr "Tipp: Länge 10-70 Charaktere"
5722
-
5723
- #: models/bulkseo/Metas.php:64
5724
- msgid "Current Title Length"
5725
- msgstr ""
5726
-
5727
- #: models/bulkseo/Metas.php:65 models/bulkseo/Metas.php:83
5728
- #: models/bulkseo/Opengraph.php:84 models/bulkseo/Opengraph.php:94
5729
- #: models/bulkseo/Twittercard.php:80 models/bulkseo/Twittercard.php:90
5730
- msgid "chars"
5731
- msgstr ""
5732
-
5733
- #: models/bulkseo/Metas.php:66 models/bulkseo/Opengraph.php:85
5734
- #: models/bulkseo/Twittercard.php:81
5735
- #, php-format
5736
- msgid ""
5737
- "Title has to be longer than %s chars and up to %s chars. %s You can change "
5738
- "the title max length from %sSEO Settings > Automation%s."
5739
- msgstr ""
5740
-
5741
- # @ squirrly-seo
5742
- #: models/bulkseo/Metas.php:69 models/focuspages/Snippet.php:100
5743
- #, fuzzy
5744
- #| msgid "Do the research"
5745
- msgid "Keyword in title"
5746
- msgstr "Recherchieren"
5747
-
5748
- # @ squirrly-seo
5749
- #: models/bulkseo/Metas.php:70 models/bulkseo/Metas.php:88
5750
- #, fuzzy
5751
- #| msgid "Tips: 2-4 keywords"
5752
- msgid "Snippet Keyword"
5753
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
5754
-
5755
- # @ squirrly-seo
5756
- #: models/bulkseo/Metas.php:71 models/bulkseo/Metas.php:89
5757
- #, fuzzy
5758
- #| msgid "Tips: 2-4 keywords"
5759
- msgid "no keywords"
5760
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
5761
-
5762
- #: models/bulkseo/Metas.php:72 models/focuspages/Snippet.php:103
5763
- #, php-format
5764
- msgid ""
5765
- "Your keyword must be present in the title of the page. %s It's a very "
5766
- "important element through which you make sure that you connect the "
5767
- "searcher's intent to the content on your page. %s If I'm looking for \"buy "
5768
- "cheap smartwatch\" and you give me a page called \"Luna Presentation\", I "
5769
- "will never click your page. Why? Because I might not know that Luna is a "
5770
- "smartwatch designed by VectorWatch. %s \"Buy Cheap Smartwatch - Luna by "
5771
- "VectorWatch\" would be a much better choice for a title."
5772
- msgstr ""
5773
-
5774
- #: models/bulkseo/Metas.php:75
5775
- msgid "Description not empty"
5776
- msgstr ""
5777
-
5778
- #: models/bulkseo/Metas.php:76 view/Blocks/Snippet.php:240
5779
- #: view/Blocks/Snippet.php:637 view/Blocks/Snippet.php:895
5780
- msgid "Current Description"
5781
- msgstr ""
5782
-
5783
- #: models/bulkseo/Metas.php:78
5784
- #, php-format
5785
- msgid ""
5786
- "Meta descriptions are important for SEO on multiple search engines. %s You "
5787
- "need to have a meta description for this URL. %s The better you write it, "
5788
- "the higher the chances of people clicking on your listing when they find it "
5789
- "on search engines."
5790
- msgstr ""
5791
-
5792
- #: models/bulkseo/Metas.php:81
5793
- #, php-format
5794
- msgid "Description up to %s chars"
5795
- msgstr ""
5796
-
5797
- #: models/bulkseo/Metas.php:82
5798
- msgid "Current Description Length"
5799
- msgstr ""
5800
-
5801
- #: models/bulkseo/Metas.php:84 models/bulkseo/Opengraph.php:95
5802
- #: models/bulkseo/Twittercard.php:91
5803
- #, php-format
5804
- msgid ""
5805
- "Description has to be longer than %s chars and up to %s chars. %s You can "
5806
- "change the description max length from %sSEO Settings > Automation%s."
5807
- msgstr ""
5808
-
5809
- #: models/bulkseo/Metas.php:87 models/focuspages/Snippet.php:106
5810
- msgid "Keyword in description"
5811
- msgstr ""
5812
-
5813
- #: models/bulkseo/Metas.php:90
5814
- #, php-format
5815
- msgid ""
5816
- "Same as with the title task. %s If a user reads the description of your page "
5817
- "on Google, but cannot find the keyword they searched for in that text, then "
5818
- "they'd have very low chances of actually clicking and visiting your page. %s "
5819
- "They'd go to the next page ranked on Google for that keyword. %s Think about "
5820
- "this: Google itself is trying more and more to display keywords in the "
5821
- "description of the pages it brings to TOP 10. It's pretty clear they care a "
5822
- "lot about this, because that's what people want to find on the search engine."
5823
- msgstr ""
5824
-
5825
- # @ squirrly-seo
5826
- #: models/bulkseo/Metas.php:93
5827
- #, fuzzy
5828
- #| msgid "Enter even more keywords."
5829
- msgid "Meta Keywords (2-4 Words)"
5830
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5831
-
5832
- # @ squirrly-seo
5833
- #: models/bulkseo/Metas.php:95
5834
- #, fuzzy
5835
- #| msgid "Enter even more keywords."
5836
- msgid "no meta keywords"
5837
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5838
-
5839
- #: models/bulkseo/Metas.php:96
5840
- msgid ""
5841
- "Even if Meta keywords are not mandatory for Google, it's important for other "
5842
- "search engines to find this meta and to index your post for these keywords."
5843
- msgstr ""
5844
-
5845
- #: models/bulkseo/Metas.php:100
5846
- msgid "Current Link"
5847
- msgstr ""
5848
-
5849
- #: models/bulkseo/Metas.php:102
5850
- #, php-format
5851
- msgid ""
5852
- "You don't have to set any canonical link if your post is not copied from "
5853
- "another source. %s Squirrly will alert you if your canonical link is not the "
5854
- "same with the current post's URL. %s The canonical link is used to tell "
5855
- "search engines which URL is the original one. The original is the one that "
5856
- "gets indexed and ranked."
5857
- msgstr ""
5858
-
5859
- #: models/bulkseo/Metas.php:111
5860
- msgid "Some Squirrly Metas are deactivated."
5861
- msgstr ""
5862
-
5863
- #: models/bulkseo/Metas.php:116
5864
- msgid ""
5865
- "Some Squirrly Metas are not set correctly. Click to open the Assistant in "
5866
- "the right sidebar and follow the instructions."
5867
- msgstr ""
5868
-
5869
- # @ squirrly-seo
5870
- #: models/bulkseo/Metas.php:121
5871
- #, fuzzy
5872
- #| msgid "<< Leave it automatically"
5873
- msgid "Some Squirrly Metas are generated automatically."
5874
- msgstr "<< Lass es automatisch"
5875
-
5876
- #: models/bulkseo/Metas.php:124
5877
- msgid "All Squirrly Metas are customized and set correctly."
5878
- msgstr ""
5879
-
5880
- #: models/bulkseo/Metas.php:135 models/bulkseo/Opengraph.php:137
5881
- #: models/bulkseo/Twittercard.php:133 models/bulkseo/Visibility.php:69
5882
- #: models/focuspages/Accuracy.php:34 models/focuspages/Audit.php:143
5883
- #: models/focuspages/Authority.php:33 models/focuspages/Backlinks.php:46
5884
- #: models/focuspages/Clicks.php:56 models/focuspages/Content.php:75
5885
- #: models/focuspages/Ctr.php:56 models/focuspages/Image.php:74
5886
- #: models/focuspages/Impressions.php:56 models/focuspages/Indexability.php:89
5887
- #: models/focuspages/Innerlinks.php:64 models/focuspages/Keyword.php:73
5888
- #: models/focuspages/Length.php:53 models/focuspages/Nofollow.php:65
5889
- #: models/focuspages/Onpage.php:80 models/focuspages/Ranking.php:35
5890
- #: models/focuspages/Snippet.php:145 models/focuspages/Social.php:56
5891
- #: models/focuspages/Strategy.php:97 models/focuspages/Traffic.php:95
5892
- msgid "Current URL"
5893
- msgstr ""
5894
-
5895
- # @ squirrly-seo
5896
- #: models/bulkseo/Metas.php:141
5897
- #, fuzzy
5898
- #| msgid "Enter even more keywords."
5899
- msgid "No Meta Keyword Found"
5900
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5901
-
5902
- #: models/bulkseo/Metas.php:157 models/bulkseo/Metas.php:193
5903
- #: models/bulkseo/Metas.php:226 models/bulkseo/Metas.php:270
5904
- #: models/bulkseo/Metas.php:306 models/bulkseo/Metas.php:339
5905
- #: models/bulkseo/Metas.php:387 models/bulkseo/Metas.php:426
5906
- #: models/bulkseo/Opengraph.php:151 models/bulkseo/Opengraph.php:187
5907
- #: models/bulkseo/Opengraph.php:219 models/bulkseo/Opengraph.php:255
5908
- #: models/bulkseo/Opengraph.php:291 models/bulkseo/Twittercard.php:147
5909
- #: models/bulkseo/Twittercard.php:183 models/bulkseo/Twittercard.php:215
5910
- #: models/bulkseo/Twittercard.php:251 models/bulkseo/Twittercard.php:287
5911
- #: models/bulkseo/Visibility.php:83 models/bulkseo/Visibility.php:122
5912
- #: models/bulkseo/Visibility.php:155
5913
- msgid "Squirrly Snippet is deactivated from this post."
5914
- msgstr ""
5915
-
5916
- #: models/bulkseo/Metas.php:161 models/bulkseo/Metas.php:197
5917
- #: models/bulkseo/Metas.php:230 models/bulkseo/Metas.php:274
5918
- #: models/bulkseo/Metas.php:310 models/bulkseo/Metas.php:343
5919
- #: models/bulkseo/Metas.php:391 models/bulkseo/Metas.php:430
5920
- #, php-format
5921
- msgid ""
5922
- "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
5923
- "%s."
5924
- msgstr ""
5925
-
5926
- #: models/bulkseo/Metas.php:165 models/bulkseo/Metas.php:201
5927
- #: models/bulkseo/Metas.php:234
5928
- #, php-format
5929
- msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
5930
- msgstr ""
5931
-
5932
- #: models/bulkseo/Metas.php:169 models/bulkseo/Metas.php:205
5933
- #: models/bulkseo/Metas.php:238 models/bulkseo/Metas.php:282
5934
- #: models/bulkseo/Metas.php:318 models/bulkseo/Metas.php:351
5935
- #: models/bulkseo/Metas.php:395 models/bulkseo/Metas.php:438
5936
- #, php-format
5937
- msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
5938
- msgstr ""
5939
-
5940
- # @ squirrly-seo
5941
- #: models/bulkseo/Metas.php:178 models/bulkseo/Metas.php:214
5942
- #: models/bulkseo/Opengraph.php:172 models/bulkseo/Opengraph.php:208
5943
- #: models/bulkseo/Twittercard.php:168 models/bulkseo/Twittercard.php:204
5944
- #, fuzzy
5945
- #| msgid "<< Leave it automatically"
5946
- msgid "Title is generated automatically."
5947
- msgstr "<< Lass es automatisch"
5948
-
5949
- #: models/bulkseo/Metas.php:242 models/bulkseo/Metas.php:355
5950
- #: models/bulkseo/Metas.php:399
5951
- #, php-format
5952
- msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
5953
- msgstr ""
5954
-
5955
- #: models/bulkseo/Metas.php:278 models/bulkseo/Metas.php:314
5956
- #: models/bulkseo/Metas.php:347
5957
- #, php-format
5958
- msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
5959
- msgstr ""
5960
-
5961
- # @ squirrly-seo
5962
- #: models/bulkseo/Metas.php:291 models/bulkseo/Metas.php:328
5963
- #: models/bulkseo/Opengraph.php:240 models/bulkseo/Opengraph.php:276
5964
- #: models/bulkseo/Twittercard.php:236 models/bulkseo/Twittercard.php:272
5965
- #, fuzzy
5966
- #| msgid "<< Leave it automatically"
5967
- msgid "Description is generated automatically."
5968
- msgstr "<< Lass es automatisch"
5969
-
5970
- #: models/bulkseo/Metas.php:434
5971
- #, php-format
5972
- msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
5973
- msgstr ""
5974
-
5975
- #: models/bulkseo/Opengraph.php:78
5976
- msgid "OG title not empty"
5977
- msgstr ""
5978
-
5979
- #: models/bulkseo/Opengraph.php:80
5980
- #, php-format
5981
- msgid ""
5982
- "You need to have an Open Graph title for this post. %s It will help you "
5983
- "control the way your post looks when people share this URL to Facebook, "
5984
- "LinkedIN and other social networks. %s It's also important for SEO purposes."
5985
- msgstr ""
5986
-
5987
- #: models/bulkseo/Opengraph.php:83
5988
- #, php-format
5989
- msgid "OG title up to %s chars"
5990
- msgstr ""
5991
-
5992
- #: models/bulkseo/Opengraph.php:88
5993
- msgid "OG description not empty"
5994
- msgstr ""
5995
-
5996
- #: models/bulkseo/Opengraph.php:90
5997
- #, php-format
5998
- msgid ""
5999
- "You need to have an Open Graph description for this post. %s It will help "
6000
- "you control the way your post looks when people share this URL to Facebook, "
6001
- "LinkedIN and other social networks. %s It's also important for SEO purposes."
6002
- msgstr ""
6003
-
6004
- #: models/bulkseo/Opengraph.php:93
6005
- #, php-format
6006
- msgid "OG description up to %s chars"
6007
- msgstr ""
6008
-
6009
- #: models/bulkseo/Opengraph.php:98 view/SeoSettings/Metas.php:194
6010
- msgid "OG Image"
6011
- msgstr ""
6012
-
6013
- #: models/bulkseo/Opengraph.php:99 models/bulkseo/Twittercard.php:95
6014
- msgid "(featured image)"
6015
- msgstr ""
6016
-
6017
- #: models/bulkseo/Opengraph.php:100
6018
- #, php-format
6019
- msgid ""
6020
- "Set a good looking image for your URL. It needs to look good in Facebook and "
6021
- "LinkedIN feeds when people will share this URL. %s A great image will "
6022
- "attract more clicks to your site."
6023
- msgstr ""
6024
-
6025
- # @ squirrly-seo
6026
- #: models/bulkseo/Opengraph.php:114
6027
- #, fuzzy
6028
- #| msgid "<< Leave it automatically"
6029
- msgid "Open Graph is deactivated."
6030
- msgstr "<< Lass es automatisch"
6031
-
6032
- #: models/bulkseo/Opengraph.php:119
6033
- msgid ""
6034
- "Open Graph is not set correctly. Click to open the Assistant in the right "
6035
- "sidebar and follow the instructions."
6036
- msgstr ""
6037
-
6038
- # @ squirrly-seo
6039
- #: models/bulkseo/Opengraph.php:124
6040
- #, fuzzy
6041
- #| msgid "<< Leave it automatically"
6042
- msgid "Open Graph is generated automatically."
6043
- msgstr "<< Lass es automatisch"
6044
-
6045
- # @ squirrly-seo
6046
- #: models/bulkseo/Opengraph.php:127
6047
- #, fuzzy
6048
- #| msgid "<< Leave it automatically"
6049
- msgid "Open Graph is customized and set correctly."
6050
- msgstr "<< Lass es automatisch"
6051
-
6052
- #: models/bulkseo/Opengraph.php:155 models/bulkseo/Opengraph.php:191
6053
- #: models/bulkseo/Opengraph.php:223 models/bulkseo/Opengraph.php:259
6054
- #: models/bulkseo/Opengraph.php:295
6055
- #, php-format
6056
- msgid ""
6057
- "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
6058
- "%s."
6059
- msgstr ""
6060
-
6061
- #: models/bulkseo/Opengraph.php:159 models/bulkseo/Opengraph.php:195
6062
- #: models/bulkseo/Opengraph.php:227 models/bulkseo/Opengraph.php:263
6063
- #: models/bulkseo/Opengraph.php:299
6064
- #, php-format
6065
- msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
6066
- msgstr ""
6067
-
6068
- #: models/bulkseo/Opengraph.php:163 models/bulkseo/Opengraph.php:199
6069
- #: models/bulkseo/Opengraph.php:231 models/bulkseo/Opengraph.php:267
6070
- #: models/bulkseo/Opengraph.php:303 models/bulkseo/Twittercard.php:159
6071
- #: models/bulkseo/Twittercard.php:195 models/bulkseo/Twittercard.php:227
6072
- #: models/bulkseo/Twittercard.php:263 models/bulkseo/Twittercard.php:299
6073
- #, php-format
6074
- msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
6075
- msgstr ""
6076
-
6077
- #: models/bulkseo/Twittercard.php:74
6078
- msgid "TC title not empty"
6079
- msgstr ""
6080
-
6081
- #: models/bulkseo/Twittercard.php:76
6082
- #, php-format
6083
- msgid ""
6084
- "You need to have a title for the Twitter Card of this post. %s It will help "
6085
- "you control the way your post looks when it's shared on Twitter. %s It's "
6086
- "also important for SEO purposes."
6087
- msgstr ""
6088
-
6089
- #: models/bulkseo/Twittercard.php:79
6090
- #, php-format
6091
- msgid "TC title up to %s chars"
6092
- msgstr ""
6093
-
6094
- #: models/bulkseo/Twittercard.php:84
6095
- msgid "TC Description not empty"
6096
- msgstr ""
6097
-
6098
- #: models/bulkseo/Twittercard.php:86
6099
- #, php-format
6100
- msgid ""
6101
- "You need to have a Twitter Card description for this post. %s It will help "
6102
- "you control the way your post looks when people share this URL on Twitter. "
6103
- "Good copywriting on your Twitter Card description will attract more clicks "
6104
- "to your site. %s It's also important for SEO purposes."
6105
- msgstr ""
6106
-
6107
- #: models/bulkseo/Twittercard.php:89
6108
- #, php-format
6109
- msgid "TC description up to %s chars"
6110
- msgstr ""
6111
-
6112
- #: models/bulkseo/Twittercard.php:94
6113
- msgid "TC Image"
6114
- msgstr ""
6115
-
6116
- #: models/bulkseo/Twittercard.php:96
6117
- #, php-format
6118
- msgid ""
6119
- "Set a good looking image for your URL. It needs to look good in Twitter "
6120
- "feeds when people will share this URL. %s A great image will attract more "
6121
- "clicks to your site."
6122
- msgstr ""
6123
-
6124
- #: models/bulkseo/Twittercard.php:110
6125
- msgid "Twitter Card is deactivated."
6126
- msgstr ""
6127
-
6128
- #: models/bulkseo/Twittercard.php:115
6129
- msgid ""
6130
- "Twitter Card is not set correctly. Click to open the Assistant in the right "
6131
- "sidebar and follow the instructions."
6132
- msgstr ""
6133
-
6134
- # @ squirrly-seo
6135
- #: models/bulkseo/Twittercard.php:120
6136
- #, fuzzy
6137
- #| msgid "<< Leave it automatically"
6138
- msgid "Twitter Card is generated automatically."
6139
- msgstr "<< Lass es automatisch"
6140
-
6141
- #: models/bulkseo/Twittercard.php:123
6142
- msgid "Twitter Card is customized and set correctly."
6143
- msgstr ""
6144
-
6145
- #: models/bulkseo/Twittercard.php:151 models/bulkseo/Twittercard.php:187
6146
- #: models/bulkseo/Twittercard.php:219 models/bulkseo/Twittercard.php:255
6147
- #: models/bulkseo/Twittercard.php:291
6148
- #, php-format
6149
- msgid ""
6150
- "Twitter Card for this post type is deactivated from %sSEO Settings > "
6151
- "Automation%s."
6152
- msgstr ""
6153
-
6154
- #: models/bulkseo/Twittercard.php:155 models/bulkseo/Twittercard.php:191
6155
- #: models/bulkseo/Twittercard.php:223 models/bulkseo/Twittercard.php:259
6156
- #: models/bulkseo/Twittercard.php:295
6157
- #, php-format
6158
- msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
6159
- msgstr ""
6160
-
6161
- #: models/bulkseo/Visibility.php:27
6162
- msgid "Visible on Google"
6163
- msgstr ""
6164
-
6165
- #: models/bulkseo/Visibility.php:28
6166
- #, php-format
6167
- msgid ""
6168
- "Let Google Index this page. %s You need to make sure your settings are "
6169
- "turned to green for the 'let Google index this page' section of this URL's "
6170
- "visibility settings."
6171
- msgstr ""
6172
-
6173
- #: models/bulkseo/Visibility.php:31 view/Blocks/Snippet.php:1039
6174
- msgid "Send Authority to this page"
6175
- msgstr ""
6176
-
6177
- #: models/bulkseo/Visibility.php:32
6178
- #, php-format
6179
- msgid ""
6180
- "Pass SEO authority to this page. %s If you want this page to really be "
6181
- "visible, then you must allow the flow of authority from the previous pages "
6182
- "to this one. %s The previous page means any page that leads to the current "
6183
- "one. Passing authority from the previous page to this one will improve the "
6184
- "current page's visibility. %s You need to make sure your settings are turned "
6185
- "to green for the 'Pass Link Juice' section of this URL's visibility settings."
6186
- msgstr ""
6187
-
6188
- #: models/bulkseo/Visibility.php:35
6189
- msgid "Add page in sitemap"
6190
- msgstr ""
6191
-
6192
- #: models/bulkseo/Visibility.php:36
6193
- #, php-format
6194
- msgid ""
6195
- "Turn the 'Show it in Sitemap.xml' toggle to green (ON). %s That setting "
6196
- "helps you control if the current URL should be found within the sitemap. "
6197
- "There are pages you will want in the sitemap, and pages that you will want "
6198
- "out of the sitemap. %s If your purpose is to maximize visibility for the "
6199
- "current URL, then you need to add it to Sitemap."
6200
- msgstr ""
6201
-
6202
- #: models/bulkseo/Visibility.php:50
6203
- msgid "Some visibility options are inactive."
6204
- msgstr ""
6205
-
6206
- #: models/bulkseo/Visibility.php:55
6207
- msgid ""
6208
- "Visibility is not set correctly. Click to open the Assistant in the right "
6209
- "sidebar and follow the instructions."
6210
- msgstr ""
6211
-
6212
- #: models/bulkseo/Visibility.php:59
6213
- msgid "Visibility is set correctly."
6214
- msgstr ""
6215
-
6216
- #: models/bulkseo/Visibility.php:87
6217
- #, php-format
6218
- msgid ""
6219
- "Noindex for this post type is deactivated from %sSEO Settings > Automation%s."
6220
- msgstr ""
6221
-
6222
- #: models/bulkseo/Visibility.php:91 models/bulkseo/Visibility.php:130
6223
- #, php-format
6224
- msgid "Robots Meta is deactivated from %sSEO Settings > SEO Metas%s."
6225
- msgstr ""
6226
-
6227
- #: models/bulkseo/Visibility.php:95 models/bulkseo/Visibility.php:134
6228
- #, php-format
6229
- msgid "SEO Metas is deactivated from %sSEO Settings > SEO Metas%s."
6230
- msgstr ""
6231
-
6232
- #: models/bulkseo/Visibility.php:104
6233
- #, php-format
6234
- msgid ""
6235
- "You selected '%s' in Settings > Reading. It's important to uncheck that "
6236
- "option."
6237
- msgstr ""
6238
-
6239
- #: models/bulkseo/Visibility.php:126
6240
- #, php-format
6241
- msgid ""
6242
- "Nofollow for this post type is deactivated from %sSEO Settings > Automation"
6243
- "%s."
6244
- msgstr ""
6245
-
6246
- #: models/bulkseo/Visibility.php:159
6247
- #, php-format
6248
- msgid ""
6249
- "This post type is excluded from sitemap. See %sSEO Settings > Automation%s."
6250
- msgstr ""
6251
-
6252
- #: models/bulkseo/Visibility.php:163
6253
- #, php-format
6254
- msgid "Sitemap XML is deactivated from %sSEO Settings > Sitemap XML%s."
6255
- msgstr ""
6256
-
6257
- #: models/domain/Patterns.php:373
6258
- msgid "Page"
6259
- msgstr ""
6260
-
6261
- #: models/domain/Patterns.php:374
6262
- msgid "of"
6263
- msgstr ""
6264
-
6265
- #: models/focuspages/Accuracy.php:21
6266
- msgid "Rank accuracy"
6267
- msgstr ""
6268
-
6269
- #: models/focuspages/Accuracy.php:22
6270
- #, php-format
6271
- msgid ""
6272
- "Do you need better accuracy for your ranking results? %s Look at the "
6273
- "%sBusiness Plan%s pricing for Squirrly SEO. %s The SERP Checker Available on "
6274
- "FREE and PRO Plans is made via Search Console integration, which means that "
6275
- "the information is not as accurate as possible and will not clearly depict "
6276
- "the exact position in Google. %s Why? %s Google uses an average when it "
6277
- "comes to the position. And it's not the true position. The average is made "
6278
- "according to the positions that the page was found on when users did click "
6279
- "on it. %s Also, the data inside Search Console is a bit old, so if you're "
6280
- "actively trying to increase your rankings day in and day out, you need the "
6281
- "Business Plan. %s If you just want casually to know your rankings and not "
6282
- "care about FULL accuracy, then you can stick with your current plan."
6283
- msgstr ""
6284
-
6285
- # @ squirrly-seo
6286
- #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
6287
- #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
6288
- #: models/focuspages/Indexability.php:95 models/focuspages/Traffic.php:101
6289
- #, fuzzy
6290
- #| msgid "Google %sAnalytics ID%s`:"
6291
- msgid "Connect Google Search"
6292
- msgstr "Google %sAnalytics ID%s`:"
6293
-
6294
- # @ squirrly-seo
6295
- #: models/focuspages/Audit.php:101
6296
- #, fuzzy, php-format
6297
- #| msgid "Squirrly settings"
6298
- msgid "Audit score is over %s"
6299
- msgstr "Squirrly Einstellungen"
6300
-
6301
- #: models/focuspages/Audit.php:104
6302
- #, php-format
6303
- msgid ""
6304
- "Even though we recommend getting an Audit score of 84 or above, a score of "
6305
- "%s will do. %s The %sAudit%s made by Squirrly takes a lot of things into "
6306
- "account: blogging, SEO, social media, links, authority, traffic. All these "
6307
- "aspects contribute directly or indirectly to the overall SEO of your site. "
6308
- "%s Therefore, without a good score on your Audit it's quite probable for "
6309
- "Google not to position your pages high enough, because overall your website "
6310
- "is not doing good enough for it to be considered a priority. %s A page will "
6311
- "not rank high if most of the website has low quality SEO and low marketing "
6312
- "metrics."
6313
- msgstr ""
6314
-
6315
- #: models/focuspages/Audit.php:107
6316
- msgid "No duplicate titles"
6317
- msgstr ""
6318
-
6319
- #: models/focuspages/Audit.php:108
6320
- #, php-format
6321
- msgid ""
6322
- "Make sure that you don't have duplicate titles across pages from your site. "
6323
- "%s If you do, then use canonical links to point the duplicate pages towards "
6324
- "the original. %s Otherwise, if it's too hard to customize too many titles at "
6325
- "once, simply use the Patterns feature from Squirrly. You'll be able to "
6326
- "define patterns, so that your titles will seem to be unique. %s Go to "
6327
- "%sSquirrly > SEO Settings > Automation%s. There you will find the Patterns "
6328
- "tab."
6329
- msgstr ""
6330
-
6331
- #: models/focuspages/Audit.php:111
6332
- msgid "No duplicate description"
6333
- msgstr ""
6334
-
6335
- #: models/focuspages/Audit.php:112
6336
- #, php-format
6337
- msgid ""
6338
- "Make sure that your pages do not have duplicate descriptions. %s This is "
6339
- "super easy to fix if you're using the SEO Automation feature from Squirrly "
6340
- "SEO, because it will generate your META description automatically from the "
6341
- "content of your page (in case you didn't already place a custom "
6342
- "description). %s If you want to fix this problem by giving the problematic "
6343
- "pages their own custom descriptions: go to the %sSquirrly SEO > Bulk SEO%s "
6344
- "and see which pages have this problem."
6345
- msgstr ""
6346
-
6347
- #: models/focuspages/Audit.php:115
6348
- msgid "No empty titles"
6349
- msgstr ""
6350
-
6351
- #: models/focuspages/Audit.php:116
6352
- #, php-format
6353
- msgid ""
6354
- "Make sure that you do not have pages with empty titles. %s This means: pages "
6355
- "where you haven't placed a meta title in your Snippet. %s Features like SEO "
6356
- "Automation or SEO Snippet from Squirrly SEO will help you easily fix this "
6357
- "problem by either automating or customizing descriptions for your pages."
6358
- msgstr ""
6359
-
6360
- #: models/focuspages/Audit.php:119
6361
- msgid "No empty descriptions"
6362
- msgstr ""
6363
-
6364
- #: models/focuspages/Audit.php:120
6365
- #, php-format
6366
- msgid ""
6367
- "Make sure that you do not have pages with empty descriptions. %s This means: "
6368
- "pages where you haven't placed a meta description. %s Features like SEO "
6369
- "Automation or SEO Snippet from Squirrly SEO will help you easily fix this "
6370
- "problem by either automating or customizing descriptions for your pages."
6371
- msgstr ""
6372
-
6373
- #: models/focuspages/Audit.php:123
6374
- msgid "SEO speed"
6375
- msgstr ""
6376
-
6377
- #: models/focuspages/Audit.php:124
6378
- msgid "sec"
6379
- msgstr ""
6380
-
6381
- #: models/focuspages/Audit.php:125
6382
- #, php-format
6383
- msgid ""
6384
- "You need to get good loading times for your pages. %s Good loading times "
6385
- "will help you rank higher in Google, while pages that load very slowly will "
6386
- "drag you down in search results."
6387
- msgstr ""
6388
-
6389
- #: models/focuspages/Audit.php:128
6390
- msgid "Mobile-friendly"
6391
- msgstr ""
6392
-
6393
- #: models/focuspages/Audit.php:129
6394
- #, php-format
6395
- msgid ""
6396
- "Your website must be mobile friendly. %s It used to be an optional thing for "
6397
- "Google until now, but it made it quite mandatory. %s Google prefers to "
6398
- "display sites which are mobile friendly higher in search results, because "
6399
- "most people search using mobile devices these days."
6400
- msgstr ""
6401
-
6402
- #: models/focuspages/Audit.php:149
6403
- msgid "Go to Audit"
6404
- msgstr ""
6405
-
6406
- #: models/focuspages/Audit.php:153
6407
- msgid "Note! The audit is not ready yet"
6408
- msgstr ""
6409
-
6410
- #: models/focuspages/Audit.php:154
6411
- msgid "Request a new audit"
6412
- msgstr ""
6413
-
6414
- #: models/focuspages/Authority.php:58
6415
- #, php-format
6416
- msgid "Authority over %s"
6417
- msgstr ""
6418
-
6419
- #: models/focuspages/Authority.php:60
6420
- #, php-format
6421
- msgid ""
6422
- "Your Page Authority Needs to be over %s to complete this task. %s To do that "
6423
- "you'll need good metrics for all the tasks in the Traffic Health section of "
6424
- "Focus Pages. %s You'll also need inner links, social media signals and "
6425
- "backlinks from 3rd party sites."
6426
- msgstr ""
6427
-
6428
- #: models/focuspages/Authority.php:77 models/focuspages/Backlinks.php:81
6429
- #: models/focuspages/Clicks.php:114 models/focuspages/Content.php:117
6430
- #: models/focuspages/Ctr.php:114 models/focuspages/Image.php:109
6431
- #: models/focuspages/Impressions.php:114 models/focuspages/Indexability.php:125
6432
- #: models/focuspages/Innerlinks.php:86 models/focuspages/Keyword.php:133
6433
- #: models/focuspages/Length.php:90 models/focuspages/Nofollow.php:77
6434
- #: models/focuspages/Onpage.php:96 models/focuspages/Ranking.php:48
6435
- #: models/focuspages/Snippet.php:168 models/focuspages/Social.php:85
6436
- #: models/focuspages/Strategy.php:136 models/focuspages/Traffic.php:127
6437
- msgid ""
6438
- "Click to open the Assistant in the right sidebar and follow the instructions."
6439
- msgstr ""
6440
-
6441
- #: models/focuspages/Backlinks.php:58
6442
- #, php-format
6443
- msgid "At Least %s MOZ BackLinks"
6444
- msgstr ""
6445
-
6446
- #: models/focuspages/Backlinks.php:59 models/focuspages/Backlinks.php:70
6447
- msgid "backlinks"
6448
- msgstr ""
6449
-
6450
- #: models/focuspages/Backlinks.php:64
6451
- #, php-format
6452
- msgid "At Least %s Referring Domains"
6453
- msgstr ""
6454
-
6455
- #: models/focuspages/Backlinks.php:65
6456
- msgid "unique domains"
6457
- msgstr ""
6458
-
6459
- #: models/focuspages/Backlinks.php:69
6460
- #, php-format
6461
- msgid "At Least %s Majestic SEO Links"
6462
- msgstr ""
6463
-
6464
- # @ squirrly-seo
6465
- #: models/focuspages/Clicks.php:42
6466
- #, fuzzy
6467
- #| msgid "Tool for Search Engines"
6468
- msgid "Clicks from Search Engine in the last 3 months"
6469
- msgstr "Tool für Suchmaschinen"
6470
-
6471
- # @ squirrly-seo
6472
- #: models/focuspages/Clicks.php:65 models/focuspages/Clicks.php:76
6473
- #: models/focuspages/Content.php:94 models/focuspages/Ctr.php:65
6474
- #: models/focuspages/Ctr.php:76 models/focuspages/Image.php:89
6475
- #: models/focuspages/Impressions.php:65 models/focuspages/Impressions.php:76
6476
- #: models/focuspages/Keyword.php:101 models/focuspages/Keyword.php:110
6477
- #: models/focuspages/Strategy.php:114 view/Research/Briefcase.php:233
6478
- #, fuzzy
6479
- #| msgid "Do the research"
6480
- msgid "Do a research"
6481
- msgstr "Recherchieren"
6482
-
6483
- # @ squirrly-seo
6484
- #: models/focuspages/Clicks.php:75 models/focuspages/Content.php:93
6485
- #: models/focuspages/Ctr.php:75 models/focuspages/Image.php:88
6486
- #: models/focuspages/Impressions.php:75 models/focuspages/Keyword.php:108
6487
- #: models/focuspages/Keyword.php:158 models/focuspages/Keyword.php:176
6488
- #: models/focuspages/Keyword.php:199 models/focuspages/Snippet.php:153
6489
- #: models/focuspages/Strategy.php:113
6490
- #, fuzzy
6491
- #| msgid "Enter even more keywords."
6492
- msgid "No Keyword Found"
6493
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
6494
-
6495
- #: models/focuspages/Clicks.php:78 models/focuspages/Content.php:97
6496
- #: models/focuspages/Ctr.php:78 models/focuspages/Image.php:95
6497
- #: models/focuspages/Impressions.php:78 models/focuspages/Keyword.php:111
6498
- #: models/focuspages/Strategy.php:116
6499
- msgid "Optimize for a keyword"
6500
- msgstr ""
6501
-
6502
- #: models/focuspages/Clicks.php:108 models/focuspages/Content.php:113
6503
- #: models/focuspages/Ctr.php:108 models/focuspages/Impressions.php:108
6504
- #: models/focuspages/Keyword.php:129 models/focuspages/Strategy.php:132
6505
- msgid ""
6506
- "Optimize the page for a keyword. Click to open the Assistant in the right "
6507
- "sidebar and follow the instructions."
6508
- msgstr ""
6509
-
6510
- # @ squirrly-seo
6511
- #: models/focuspages/Clicks.php:110 models/focuspages/Ctr.php:110
6512
- #: models/focuspages/Impressions.php:110
6513
- #, fuzzy
6514
- #| msgid "Google %sAnalytics ID%s`:"
6515
- msgid "Connect to Google Search Console."
6516
- msgstr "Google %sAnalytics ID%s`:"
6517
-
6518
- #: models/focuspages/Content.php:46
6519
- #, php-format
6520
- msgid "Optimize to %s"
6521
- msgstr ""
6522
-
6523
- #: models/focuspages/Content.php:48
6524
- #, php-format
6525
- msgid ""
6526
- "Make sure this Focus Page is optimized to 100%% using the %sSquirrly SEO "
6527
- "Live Assistant%s. %s As you can see clearly on Google search result pages, "
6528
- "Googles tries to find the closest match (inside web content) to what the "
6529
- "user searched for. %s That is why using this method of optimizing a page as "
6530
- "outlined by the Live Assistant feature is mandatory. %s Don't worry about "
6531
- "over-optimizing anything, as the Live Assistant checks for many over-"
6532
- "optimization traps you may fall into."
6533
- msgstr ""
6534
-
6535
- #: models/focuspages/Content.php:51
6536
- msgid "Snippet is green"
6537
- msgstr ""
6538
-
6539
- #: models/focuspages/Content.php:52
6540
- #, php-format
6541
- msgid ""
6542
- "The tasks inside the %sSnippet section%s of the Focus Pages feature must all "
6543
- "be turned green. %s Why? %s If the Snippet elements are Not green, then your "
6544
- "Focus Page is not 100%% optimized. %s We've built this SEO Content section "
6545
- "especially because we wanted to help you understand that there's a lot more "
6546
- "to On-Page SEO than just a content analysis, or a snippet. You need all "
6547
- "these elements working together in order to achieve high rankings."
6548
- msgstr ""
6549
-
6550
- #: models/focuspages/Content.php:55
6551
- msgid "Platform SEO is green"
6552
- msgstr ""
6553
-
6554
- #: models/focuspages/Content.php:56
6555
- #, php-format
6556
- msgid ""
6557
- "Make sure that the Platform SEO section is green for this Focus Page. %s "
6558
- "Because WordPress is such a vast CMS with many customization possibilities, "
6559
- "it happens to many website owners, business owners and developers, that "
6560
- "custom post types from their site remain completely without SEO codes and "
6561
- "other important settings. %s This task makes sure that everything is "
6562
- "properly set up."
6563
- msgstr ""
6564
-
6565
- #: models/focuspages/Content.php:59
6566
- msgid "Fresh content update"
6567
- msgstr ""
6568
-
6569
- #: models/focuspages/Content.php:61
6570
- #, php-format
6571
- msgid ""
6572
- "Last Update Date for your Content: needs to be in the last 3 months. %s If "
6573
- "it's not, then go and edit your page. %s Google prefers pages where the "
6574
- "website owners keep updating the content. %s Why? %s Because it's one of the "
6575
- "easiest ways to ensure that the content on the page keeps being relevant."
6576
- msgstr ""
6577
-
6578
- #: models/focuspages/Content.php:90 models/focuspages/Keyword.php:104
6579
- #: view/Research/Briefcase.php:219 view/Research/HistoryDetails.php:77
6580
- #: view/Research/ResearchDetails.php:50
6581
- msgid "Optimize for this"
6582
- msgstr ""
6583
-
6584
- #: models/focuspages/Ctr.php:41
6585
- msgid "Clickthrough rate"
6586
- msgstr ""
6587
-
6588
- #: models/focuspages/Ctr.php:42
6589
- #, php-format
6590
- msgid ""
6591
- "CTR is the number of clicks that your page receives divided by the number of "
6592
- "times your page appeared in search results: clicks ÷ impressions = CTR. %s "
6593
- "For example, if you had 5 clicks and 100 impressions, then your CTR would be "
6594
- "5%%. %s Keep the CTR above %s with enhanced headlines."
6595
- msgstr ""
6596
-
6597
- # @ squirrly-seo
6598
- #: models/focuspages/Image.php:57
6599
- #, fuzzy
6600
- #| msgid "Do the research"
6601
- msgid "Keyword in filename"
6602
- msgstr "Recherchieren"
6603
-
6604
- #: models/focuspages/Image.php:60
6605
- #, php-format
6606
- msgid ""
6607
- "Your filename for one of the images in this Focus Page should be: %s keyword."
6608
- "jpg %s Download a relevant image from your page. Change the filename. Then "
6609
- "re-upload with the SEO filename and add it your page's content again. %s "
6610
- "It's best to keep this at only one filename which contains the main keyword "
6611
- "of the page. %s Why? %s Because Google could consider over-optimization if "
6612
- "you used it more than once."
6613
- msgstr ""
6614
-
6615
- #: models/focuspages/Image.php:85 models/focuspages/Snippet.php:156
6616
- msgid "Edit your snippet"
6617
- msgstr ""
6618
-
6619
- #: models/focuspages/Image.php:126
6620
- msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
6621
- msgstr ""
6622
-
6623
- #: models/focuspages/Image.php:127
6624
- msgid "No image found"
6625
- msgstr ""
6626
-
6627
- # @ squirrly-seo
6628
- #: models/focuspages/Impressions.php:42
6629
- #, fuzzy
6630
- #| msgid "Tool for Search Engines"
6631
- msgid "Search Results Impressions in the last 3 months"
6632
- msgstr "Tool für Suchmaschinen"
6633
-
6634
- #: models/focuspages/Indexability.php:52
6635
- msgid "Yes, do index"
6636
- msgstr ""
6637
-
6638
- #: models/focuspages/Indexability.php:54 models/focuspages/Indexability.php:60
6639
- msgid "no restrictions"
6640
- msgstr ""
6641
-
6642
- #: models/focuspages/Indexability.php:55
6643
- #, php-format
6644
- msgid ""
6645
- "To turn this task to green, go and look at all the places where you could "
6646
- "have added instructions for Google not to index this page from your site. %s "
6647
- "Make sure that there is no such instruction added to %sWordPress > Settings"
6648
- "%s, or in a theme, or in a plugin, or in Squirrly SEO's Snippet for this "
6649
- "page. Also, make sure you don't block this page in your %srobots.txt%s file. "
6650
- "%s Sometimes, you will want certain pages from your site not to be indexed. "
6651
- "Now is not the case, however. %s If this task turns green, then it means "
6652
- "that you did not specify to Google that it should NOT index the page. %s "
6653
- "Therefore, you allow Google to index the page. %s Since this is a Focus "
6654
- "Page, you must allow Google to index it, in order for it to appear in search "
6655
- "result pages."
6656
- msgstr ""
6657
-
6658
- #: models/focuspages/Indexability.php:58
6659
- msgid "Yes, do follow"
6660
- msgstr ""
6661
-
6662
- #: models/focuspages/Indexability.php:61
6663
- #, php-format
6664
- msgid ""
6665
- "To turn this task to green, make sure that you do NOT have a no-follow "
6666
- "attribute for this Focus Page. %s This task gets verified from multiple "
6667
- "sources. %s However, if you want to be 100%% certain in the future that "
6668
- "everything is perfect, use just Squirrly SEO, because it will ease both your "
6669
- "setup and the system check. %s With Squirrly SEO, you could easily check "
6670
- "this setting in the %sSnippet section%s. %s Many themes and plugins could "
6671
- "interfere with settings."
6672
- msgstr ""
6673
-
6674
- #: models/focuspages/Indexability.php:64
6675
- msgid "Present in sitemap"
6676
- msgstr ""
6677
-
6678
- #: models/focuspages/Indexability.php:65
6679
- #, php-format
6680
- msgid ""
6681
- "Checks whether or not your page is available in your %sXML Sitemap%s. %s Use "
6682
- "the Sitemap from %sSquirrly > SEO Settings%s. %s Make sure this Focus Page "
6683
- "is included in the sitemap generated by Squirrly SEO. %s In the best "
6684
- "practices section you can find ideas for why it can make sense to remove "
6685
- "pages from your sitemap."
6686
- msgstr ""
6687
-
6688
- #: models/focuspages/Indexability.php:68
6689
- msgid "Manual index request"
6690
- msgstr ""
6691
-
6692
- #: models/focuspages/Indexability.php:69
6693
- #, php-format
6694
- msgid ""
6695
- "Click the button to ask Google to re-index this page. %s Disclaimer: This "
6696
- "task will automatically turn to green once you click on the button and it "
6697
- "takes you to Google Search Console. It's up to you to make 100%% sure that "
6698
- "you do tell Google to either index or re-index this page. %s Perform a "
6699
- "manual request for Google to re-index this page. %s This is super important "
6700
- "to do whenever you make important changes to your pages. Otherwise, Google "
6701
- "will still have the old version of your page. %s If Google keeps having the "
6702
- "older version, then it doesn't matter if you've improved the page. %s When "
6703
- "you click the Ask Google to Re-Index button, Squirrly will use the Google "
6704
- "Search Console API to send Google the request on your behalf."
6705
- msgstr ""
6706
-
6707
- #: models/focuspages/Indexability.php:72 view/Blocks/Snippet.php:299
6708
- msgid "Canonical link"
6709
- msgstr ""
6710
-
6711
- #: models/focuspages/Indexability.php:73
6712
- msgid "Canonical"
6713
- msgstr ""
6714
-
6715
- #: models/focuspages/Indexability.php:73
6716
- msgid "No Canonical"
6717
- msgstr ""
6718
-
6719
- #: models/focuspages/Indexability.php:73
6720
- msgid "Post URL"
6721
- msgstr ""
6722
-
6723
- #: models/focuspages/Indexability.php:73
6724
- msgid "No URL"
6725
- msgstr ""
6726
-
6727
- #: models/focuspages/Indexability.php:75
6728
- #, php-format
6729
- msgid ""
6730
- "This page should have a canonical link to itself, indicating that it is "
6731
- "indeed the original content. %s You can not have pages with canonical links "
6732
- "to other sites and pages, because you could not rank for them. Why? Because "
6733
- "a canonical link to another URL would mean that the other URL is the one "
6734
- "worth indexing. (the original one) %s To turn this task to green, go and "
6735
- "make sure that this page does not have a canonical link attribute pointing "
6736
- "to another page. %s You can easily control this in the future by using the "
6737
- "%sSnippet feature%s of Squirrly SEO."
6738
- msgstr ""
6739
-
6740
- #: models/focuspages/Indexability.php:78
6741
- msgid "Permalink structure is good"
6742
- msgstr ""
6743
-
6744
- #: models/focuspages/Indexability.php:80
6745
- #, php-format
6746
- msgid ""
6747
- "Make your LINKS SEO-Friendly in %sWordPress > Settings > Permalinks%s %s "
6748
- "That is where WordPress allows you to change the permalink structure. %s "
6749
- "Your URLs (the links from your site) should be super easy to read. This "
6750
- "makes your site Human-friendly as well."
6751
- msgstr ""
6752
-
6753
- #: models/focuspages/Indexability.php:100
6754
- msgid "Ask Google to Re-Index"
6755
- msgstr ""
6756
-
6757
- #: models/focuspages/Innerlinks.php:53
6758
- #, php-format
6759
- msgid "Get %s inner links"
6760
- msgstr ""
6761
-
6762
- #: models/focuspages/Innerlinks.php:54
6763
- msgid "inner links to"
6764
- msgstr ""
6765
-
6766
- #: models/focuspages/Innerlinks.php:56
6767
- #, php-format
6768
- msgid ""
6769
- "Get %s Inner Links %s Recommended is: %s %s Inner Links are links that you "
6770
- "send from one URL of your site to another URL of your site. %s Since your "
6771
- "Focus Pages are the most important pages in your site, you should make sure "
6772
- "that you link to them from many pages of your website. %s Note! We check the "
6773
- "links present in the content of each post of your website."
6774
- msgstr ""
6775
-
6776
- #: models/focuspages/Innerlinks.php:75
6777
- msgid "Build with Blogging Assistant"
6778
- msgstr ""
6779
-
6780
- #: models/focuspages/Keyword.php:48
6781
- msgid "Keyword Competition"
6782
- msgstr ""
6783
-
6784
- #: models/focuspages/Keyword.php:51
6785
- #, php-format
6786
- msgid ""
6787
- "To complete this task you must make sure that the main keyword you're "
6788
- "optimizing this Focus Page for has low competition. %s The Squirrly SEO "
6789
- "software suite uses our proprietary Market Intelligence feature to determine "
6790
- "the chance that your site has of outranking the current TOP 10 of Google for "
6791
- "the desired keyword you're targeting. %s If you really want to have a clear "
6792
- "shot at ranking, make sure the competition is low for the keyword you choose."
6793
- msgstr ""
6794
-
6795
- #: models/focuspages/Keyword.php:54
6796
- msgid "Search volume"
6797
- msgstr ""
6798
-
6799
- #: models/focuspages/Keyword.php:56
6800
- #, php-format
6801
- msgid ""
6802
- "To turn this task to green, go and find a keyword that has a good search "
6803
- "volume. (meaning that many people search on Google for this keyword every "
6804
- "single month). %s The Research features from Squirrly SEO will indicate if "
6805
- "the volume is big enough. %s Since these are the most important pages on "
6806
- "your website, you need to make sure that you get the maximum number of "
6807
- "people possible to find this page. %s If you target keyword searches with "
6808
- "low volumes, then you'll end up having just 2 or 3 people every month "
6809
- "visiting this page. And then all the effort will have been for nothing."
6810
- msgstr ""
6811
-
6812
- #: models/focuspages/Keyword.php:59
6813
- msgid "Google Trend"
6814
- msgstr ""
6815
-
6816
- #: models/focuspages/Keyword.php:61
6817
- #, php-format
6818
- msgid ""
6819
- "Trend levels required to get the Green Check on this task: %s - Steady %s - "
6820
- "Going Up %s - Sky-rocketing %s we take the trend from the previous 3 months. "
6821
- "%s If you target a search query with a bad trend you'll end up seeing little "
6822
- "traffic to this page in the long run. %s Why ? A declining trend shows that "
6823
- "Google Users are losing interest in that topic or keyword and will continue "
6824
- "to do so in the future. %s Therefore, even though you could get much traffic "
6825
- "right now after you rank this page, in the near future you'll get very "
6826
- "little traffic even if you'd end up on Position 1 in Google Search."
6827
- msgstr ""
6828
-
6829
- # @ squirrly-seo
6830
- #: models/focuspages/Keyword.php:98
6831
- #, fuzzy
6832
- #| msgid "Tips: 2-4 keywords"
6833
- msgid "Find Better Keywords"
6834
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
6835
-
6836
- #: models/focuspages/Keyword.php:158 models/focuspages/Keyword.php:176
6837
- #: models/focuspages/Keyword.php:199
6838
- msgid "Please add a keyword first."
6839
- msgstr ""
6840
-
6841
- #: models/focuspages/Length.php:36
6842
- #, php-format
6843
- msgid "Write %s words"
6844
- msgstr ""
6845
-
6846
- # @ squirrly-seo
6847
- #: models/focuspages/Length.php:37
6848
- #, fuzzy
6849
- #| msgid "Tips: 2-4 keywords"
6850
- msgid "words"
6851
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
6852
-
6853
- #: models/focuspages/Length.php:39
6854
- #, php-format
6855
- msgid ""
6856
- "For Focus Pages it's mandatory, in our opinion, to have at least 1,500 "
6857
- "words. %s Go and edit the page. %s I know: for some of you it might sound "
6858
- "tough, but Google places longer, more valuable pages higher in search "
6859
- "positions. %s You don't necessarily have to get 1,500 words on this page for "
6860
- "it to rank in TOP 10 on Google. However, getting this task completed ensures "
6861
- "that your chances of ranking will be very high."
6862
- msgstr ""
6863
-
6864
- #: models/focuspages/Length.php:42
6865
- msgid "Reader's Experience"
6866
- msgstr ""
6867
-
6868
- #: models/focuspages/Length.php:43
6869
- msgid "minutes average"
6870
- msgstr ""
6871
-
6872
- #: models/focuspages/Length.php:44
6873
- #, php-format
6874
- msgid ""
6875
- "Get an average time on page of minimum 2 minutes for this focus page. You "
6876
- "can do this by editing the content and making it more appealing to visitors. "
6877
- "%s We're looking at the Average Time On Page for this page. %s Why? %s "
6878
- "Because, sometimes website owners can be tempted to make the pages longer in "
6879
- "order to get many words on a page. They make them longer by increasing "
6880
- "wordiness. %s Over 1,500 words / page can give you much better SEO results. "
6881
- "However, making it longer does not mean you should make it boring. %s In "
6882
- "order to check that the length of the page was increased properly, we also "
6883
- "take into account if website visitors love this page."
6884
- msgstr ""
6885
-
6886
- # @ squirrly-seo
6887
- #: models/focuspages/Length.php:66
6888
- #, fuzzy
6889
- #| msgid "Squirrly settings"
6890
- msgid "Edit Page"
6891
- msgstr "Squirrly Einstellungen"
6892
-
6893
- # @ squirrly-seo
6894
- #: models/focuspages/Length.php:86
6895
- #, fuzzy
6896
- #| msgid "Google %sAnalytics ID%s`:"
6897
- msgid "Connect to Google Analytics first."
6898
- msgstr "Google %sAnalytics ID%s`:"
6899
-
6900
- # @ squirrly-seo
6901
- #: models/focuspages/Length.php:122 models/focuspages/Traffic.php:144
6902
- #: models/focuspages/Traffic.php:160 models/focuspages/Traffic.php:176
6903
- #, fuzzy
6904
- #| msgid "Google %sAnalytics ID%s`:"
6905
- msgid "Connect Google Analytics first."
6906
- msgstr "Google %sAnalytics ID%s`:"
6907
-
6908
- #: models/focuspages/Nofollow.php:50
6909
- msgid "Maintain authority"
6910
- msgstr ""
6911
-
6912
- #: models/focuspages/Nofollow.php:51
6913
- msgid "External Dofollow Links"
6914
- msgstr ""
6915
-
6916
- #: models/focuspages/Nofollow.php:51
6917
- msgid "No dofollow external links"
6918
- msgstr ""
6919
-
6920
- #: models/focuspages/Nofollow.php:53 models/focuspages/Ranking.php:24
6921
- #, php-format
6922
- msgid ""
6923
- "TLDR: All outbound links need to have no-follow attribute. %s You've worked "
6924
- "hard on your Focus Page. %s Now make sure that you're not letting that hard "
6925
- "work go to waste, by sending out all your authority and Link Juice over to "
6926
- "other pages from the web. %s The Focus Page needs to be the final page that "
6927
- "Google Follows. It's an \"All Roads Lead to Rome\" kind of scenario. %s If "
6928
- "you want your focus pages to get ranked better and have authority make sure "
6929
- "that ALL outbound links have a no-follow attribute attached to them."
6930
- msgstr ""
6931
-
6932
- #: models/focuspages/Onpage.php:53
6933
- msgid "Enhance your sitemap"
6934
- msgstr ""
6935
-
6936
- #: models/focuspages/Onpage.php:54
6937
- #, php-format
6938
- msgid ""
6939
- "Add images / videos to your sitemap. It's important to have images / videos "
6940
- "enabled. %s Squirrly SEO makes it super easy for you to enhance your XML "
6941
- "sitemap. %s Just use the settings from %sSquirrly > SEO Settings > Sitemap "
6942
- "XML%s. Find the XML sitemap section and use the settings from that panel. "
6943
- msgstr ""
6944
-
6945
- #: models/focuspages/Onpage.php:57
6946
- msgid "Post Type settings activated"
6947
- msgstr ""
6948
-
6949
- #: models/focuspages/Onpage.php:58
6950
- #, php-format
6951
- msgid ""
6952
- "Are the SEO Settings from Squirrly SEO activated for the post type of this "
6953
- "particular Focus Page? %s This is what we're checking with this task. %s "
6954
- "Why? %s Some of the times, we're seeing that people don't get good enough "
6955
- "results with Google rankings simply because they do not have the SEO "
6956
- "settings activated for their current post type. %s Many WordPress sites "
6957
- "employ the use of custom post types. Your \"Events\" page or \"Real Estate\" "
6958
- "page could be a different post type from general \"Pages\" or \"Posts\" in "
6959
- "WordPress. %s To turn this task to green, go and add this post type (%s) in "
6960
- "%sSquirrly SEO Automation%s."
6961
- msgstr ""
6962
-
6963
- #: models/focuspages/Onpage.php:61
6964
- msgid "Patterns activated"
6965
- msgstr ""
6966
-
6967
- #: models/focuspages/Onpage.php:62
6968
- #, php-format
6969
- msgid ""
6970
- "To turn this task to green, go and activate the %sPatterns%s from Squirrly "
6971
- "SEO for the post type of this Focus Page. %s With this task, we're looking "
6972
- "to see if the SEO Patterns from Squirrly are activated for the post type of "
6973
- "this Focus Page. %s Similar to the previous task with \"Post Type Settings "
6974
- "Activated\". There are some cases in which this double check is necessary. "
6975
- "%s It's for your ranking safety."
6976
- msgstr ""
6977
-
6978
- #: models/focuspages/Onpage.php:65 view/SeoSettings/Robots.php:27
6979
- msgid "Robots File"
6980
- msgstr ""
6981
-
6982
- #: models/focuspages/Onpage.php:67
6983
- #, php-format
6984
- msgid ""
6985
- "You have a certain definition for your Robots.txt file made in Squirrly SEO "
6986
- "or in another plugin. %s Make sure that the final version of robots.txt that "
6987
- "gets rendered when the file is loaded is the one you had intended. %s "
6988
- "Sometimes, other plugins or themes can interfere and ruin the output of the "
6989
- "robots file. Sometimes it can even be that you have a robots.txt file placed "
6990
- "on your root directory (in such case: remove that file. hard-coding things "
6991
- "like that is bad practice!). %s To do this: look at the definition you've "
6992
- "made inside your plugin. Then, look at the robots.txt from your site. See if "
6993
- "the text inside these two places is identical. If it is identical, "
6994
- "everything is Perfect!"
6995
- msgstr ""
6996
-
6997
- # @ squirrly-seo
6998
- #: models/focuspages/Onpage.php:85
6999
- #, fuzzy
7000
- #| msgid "Squirrly settings"
7001
- msgid "Go to SEO Settings"
7002
- msgstr "Squirrly Einstellungen"
7003
-
7004
- #: models/focuspages/Ranking.php:23
7005
- msgid "Nofollow on external links"
7006
- msgstr ""
7007
-
7008
- #: models/focuspages/Snippet.php:92
7009
- #, php-format
7010
- msgid ""
7011
- "To turn this task to green, go and define a title for this page. You can "
7012
- "easily do this by using the %sSnippet%s from Squirrly SEO. %s Make sure that "
7013
- "you have a Title defined for your Focus Page. %s Not having a title defined "
7014
- "is bad for both search engines and Humans. %s Why? %s It's weird for someone "
7015
- "to try to figure out if they landed on your Pricing page, and not get a "
7016
- "clear answer. If you have multiple pricing pages (in case your site displays "
7017
- "multiple products) then your title should only contain the brand name of "
7018
- "that product."
7019
- msgstr ""
7020
-
7021
- #: models/focuspages/Snippet.php:95 models/focuspages/Snippet.php:220
7022
- #: models/focuspages/Snippet.php:242 view/Blocks/Snippet.php:620
7023
- #: view/Blocks/Snippet.php:878 view/SeoSettings/Automation.php:134
7024
- #: view/SeoSettings/Metas.php:176
7025
- msgid "Description"
7026
- msgstr ""
7027
-
7028
- #: models/focuspages/Snippet.php:97
7029
- #, php-format
7030
- msgid ""
7031
- "To turn this task to green, go and define a %sMeta description%s for this "
7032
- "page. You can easily do this by using the Snippet from Squirrly SEO. %s Make "
7033
- "sure that you have a META description set up for this Focus Page. %s The "
7034
- "meta description is very important for showing others the value they can "
7035
- "find by clicking to go to your page. %s Think of it as an awesome ad that "
7036
- "gets people excited enough that they visit your page after reading it. %s "
7037
- "Sometimes, Google displays the exact META description that you create inside "
7038
- "the search result pages. Use great descriptions for pages on your site to "
7039
- "boost CTR (click-through rates)."
7040
- msgstr ""
7041
-
7042
- #: models/focuspages/Snippet.php:102
7043
- #, php-format
7044
- msgid "Keyword %s must be present in Title"
7045
- msgstr ""
7046
-
7047
- #: models/focuspages/Snippet.php:107
7048
- #, php-format
7049
- msgid "Keyword %s must be present in Description"
7050
- msgstr ""
7051
-
7052
- #: models/focuspages/Snippet.php:108
7053
- #, php-format
7054
- msgid ""
7055
- "Same as with the title task. %s If a user reads the description of your page "
7056
- "on Google, but cannot find the keyword they searched for in that text, then "
7057
- "they'd have very low chances of actually clicking and visiting your page. %s "
7058
- "They'd go to the next page ranked on Google for that keyword. %s Think about "
7059
- "this: Google itself is trying more and more to display keywords in the "
7060
- "description of the pages it bring to TOP 10. It's pretty clear they care a "
7061
- "lot about this, because that's what people want to find on the search engine."
7062
- msgstr ""
7063
-
7064
- #: models/focuspages/Snippet.php:111
7065
- msgid "Open Graph - full definition"
7066
- msgstr ""
7067
-
7068
- #: models/focuspages/Snippet.php:113
7069
- #, php-format
7070
- msgid ""
7071
- "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
7072
- "SEO to get all the definitions in place. %s With this task, we make sure "
7073
- "that you have the full Open Graph definitions created for this Focus Page. "
7074
- "%s There are many things which could interfere with the code, there are "
7075
- "times when you could forget setting some of the elements up, so Squirrly SEO "
7076
- "helps you make sure that ALL the og tags are present. %s And yes, this is "
7077
- "relevant for your search engine position placements."
7078
- msgstr ""
7079
-
7080
- #: models/focuspages/Snippet.php:116
7081
- msgid "Twitter Cards - full definition"
7082
- msgstr ""
7083
-
7084
- #: models/focuspages/Snippet.php:118
7085
- #, php-format
7086
- msgid ""
7087
- "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
7088
- "SEO to get all the definitions in place. %s Checking to make sure that your "
7089
- "Twitter Cards definitions are made properly. %s Same as with the Open Graph "
7090
- "task, Squirrly SEO makes sure to check for all the required definitions, so "
7091
- "that you won't miss a beat."
7092
- msgstr ""
7093
-
7094
- #: models/focuspages/Snippet.php:121
7095
- msgid "JSON-LD definition"
7096
- msgstr ""
7097
-
7098
- #: models/focuspages/Snippet.php:122
7099
- #, php-format
7100
- msgid ""
7101
- "To turn this task to green, you can easily use the JSON-LD section inside "
7102
- "%sSquirrly > SEO Settings > JSON-LD%s. %s Make sure that you complete all "
7103
- "fields with the proper information. %s This gives important Semantic context "
7104
- "to Google and it plays a role in determining how high your page should be "
7105
- "placed in search rankings. %s You can validate your existing JSON-LD with: "
7106
- "%shttps://search.google.com/structured-data/testing-tool%s"
7107
- msgstr ""
7108
-
7109
- #: models/focuspages/Snippet.php:125
7110
- msgid "Customized"
7111
- msgstr ""
7112
-
7113
- #: models/focuspages/Snippet.php:126
7114
- #, php-format
7115
- msgid ""
7116
- "The Snippets of your most important pages should be customized. %s Use the "
7117
- "%sSnippet%s from Squirrly SEO to customize the meta settings, the open "
7118
- "graph, etc. for this page. %s Since Focus Pages are the most important pages "
7119
- "on your site, you'll want people to love the search engine listings that you "
7120
- "build for this page. %s Therefore, you should define a custom SEO listing to "
7121
- "improve the number of clicks you get when people DO find your page on search "
7122
- "engines. %s NOTE: sometimes Google tries to create automated snippets and "
7123
- "display those, but it's just an experiment they run. Most of the times, your "
7124
- "own custom snippet will be the one that gets displayed."
7125
- msgstr ""
7126
-
7127
- #: models/focuspages/Snippet.php:221 models/focuspages/Snippet.php:243
7128
- msgid "Image"
7129
- msgstr ""
7130
-
7131
- #: models/focuspages/Social.php:44
7132
- #, php-format
7133
- msgid "%s Shares"
7134
- msgstr ""
7135
-
7136
- #: models/focuspages/Social.php:45
7137
- msgid "social share"
7138
- msgstr ""
7139
-
7140
- #: models/focuspages/Social.php:47
7141
- #, php-format
7142
- msgid ""
7143
- "This task only tracks shares from trackable sources. %s Twitter and LinkedIN "
7144
- "share counts are no longer available. %s Of course, for Twitter you can "
7145
- "always pay Twitter directly for API access, in which case we could give you "
7146
- "a guide on how to integrate your Twitter API with our Focus Pages audit "
7147
- "services. %s %shttps://developer.twitter.com/en/pricing/search-fullarchive%s"
7148
- msgstr ""
7149
-
7150
- # @ squirrly-seo
7151
- #: models/focuspages/Social.php:61
7152
- #, fuzzy
7153
- #| msgid "Squirrly settings"
7154
- msgid "Go to Social Media Settings"
7155
- msgstr "Squirrly Einstellungen"
7156
-
7157
- # @ squirrly-seo
7158
- #: models/focuspages/Strategy.php:70
7159
- #, fuzzy
7160
- #| msgid "Do the research"
7161
- msgid "Add keyword to Briefcase"
7162
- msgstr "Recherchieren"
7163
-
7164
- #: models/focuspages/Strategy.php:71
7165
- msgid "Great! The keyword exists in Briefcase"
7166
- msgstr ""
7167
-
7168
- #: models/focuspages/Strategy.php:71
7169
- msgid "The keyword does not exist in Briefcase"
7170
- msgstr ""
7171
-
7172
- #: models/focuspages/Strategy.php:72
7173
- #, php-format
7174
- msgid ""
7175
- "Go add a keyword to your %sBriefcase%s. %s The Briefcase is the command "
7176
- "center for your SEO operations. Manage your keywords in Briefcase, so that "
7177
- "you'll always have quick access to them. You'll always know what your SEO "
7178
- "Strategy is all about. %s Plus, adding keywords to Briefcase will make it "
7179
- "very easy for you to collaborate with other people from your team, "
7180
- "freelancers, agencies or partners. %s Never lose the amazing keywords you "
7181
- "find through the %sSquirrly SEO Keyword Research tool%s."
7182
- msgstr ""
7183
-
7184
- # @ squirrly-seo
7185
- #: models/focuspages/Strategy.php:75
7186
- #, fuzzy
7187
- #| msgid "SEO Software"
7188
- msgid "Add SEO Context"
7189
- msgstr "SEO Software"
7190
-
7191
- #: models/focuspages/Strategy.php:78
7192
- #, php-format
7193
- msgid ""
7194
- "Optimize to %s for a secondary keyword. %s Squirrly SEO's Live Assistant "
7195
- "allows you to optimize for multiple keywords that you have placed in your "
7196
- "Briefcase. %s Use a couple of additional keywords for your Focus Page which "
7197
- "help Google understand the exact topic and context of your page. %s If you "
7198
- "added the keywords 'political party' to 'black panther', you'd make a clear "
7199
- "hint to Google that your page is about the Black Panther political party, "
7200
- "not Black Panther, the Marvel Movie. %s Or add 'places to eat' to a page "
7201
- "about your Local Restaurant in San Diego. That will give clearer context to "
7202
- "Google that your page really is about a restaurant where people can dine."
7203
- msgstr ""
7204
-
7205
- #: models/focuspages/Strategy.php:82
7206
- msgid "Labels Exist"
7207
- msgstr ""
7208
-
7209
- #: models/focuspages/Strategy.php:83
7210
- msgid "Great! The keyword has Label attached to it"
7211
- msgstr ""
7212
-
7213
- #: models/focuspages/Strategy.php:83
7214
- msgid "The keyword does not have a label attached to it"
7215
- msgstr ""
7216
-
7217
- #: models/focuspages/Strategy.php:84
7218
- #, php-format
7219
- msgid ""
7220
- "To turn this task to green, go to %sLabels section%s and add a label to the "
7221
- "keyword that you've used as main keyword for this Focus Page. %s Make sure "
7222
- "that you keep creating new labels as you're finding more keywords to target "
7223
- "with your website. %s If you're unsure regarding keyword research, read "
7224
- "%sHow to Find Amazing Keywords and get more search traffic?%s . %s Organize "
7225
- "all the Keywords that you plan to use for your website with Briefcase "
7226
- "Labels. %s This task helps you make sure that the main keyword for this "
7227
- "Focus Page has been organized clearly inside your SEO Strategy. That's what "
7228
- "Briefcase Labels are all about."
7229
- msgstr ""
7230
-
7231
- #: models/focuspages/Strategy.php:104
7232
- msgid "Manage Strategy"
7233
- msgstr ""
7234
-
7235
- #: models/focuspages/Strategy.php:168 models/focuspages/Strategy.php:175
7236
- msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
7237
- msgstr ""
7238
-
7239
- #: models/focuspages/Traffic.php:66
7240
- #, php-format
7241
- msgid "Below %s Bounce Rate"
7242
- msgstr ""
7243
-
7244
- #: models/focuspages/Traffic.php:67
7245
- msgid "bounce rate"
7246
- msgstr ""
7247
-
7248
- #: models/focuspages/Traffic.php:68
7249
- #, php-format
7250
- msgid ""
7251
- "Make sure this number is below %s %s Why? %s A high bounce rate means that "
7252
- "your users just click on your search listing, visit the page and then decide "
7253
- "they've seen enough and bounce off to another page on the web. %s This is, "
7254
- "for Google, an indicator of the quality of the search result it displayed. "
7255
- "And if many of your users bounce off your pages, it means (to Google) that "
7256
- "your page is not worth displaying in search results, because it has low "
7257
- "performance with the user groups it sends your way. %s Easy way to complete "
7258
- "this task: give users pages to click and send them to other pages from your "
7259
- "site."
7260
- msgstr ""
7261
-
7262
- #: models/focuspages/Traffic.php:71
7263
- #, php-format
7264
- msgid "Time on page is %s minutes"
7265
- msgstr ""
7266
-
7267
- #: models/focuspages/Traffic.php:72
7268
- msgid "minutes avg."
7269
- msgstr ""
7270
-
7271
- #: models/focuspages/Traffic.php:74
7272
- #, php-format
7273
- msgid ""
7274
- "Make sure that visitors spend on average at least %s minutes on your site. "
7275
- "%s Get an average time on page of minimum %s minutes for this focus page. "
7276
- "You can do this by editing the content and making it more appealing to "
7277
- "visitors. %s If your visitors don't spend at least 2 minutes on your Focus "
7278
- "Page, it can mean that the page is not important enough for them, or that "
7279
- "the content from the page is boring, or hard to read, or the page just loads "
7280
- "too slow."
7281
- msgstr ""
7282
-
7283
- #: models/focuspages/Traffic.php:77
7284
- #, php-format
7285
- msgid "%s visitors / day / page"
7286
- msgstr ""
7287
-
7288
- #: models/focuspages/Traffic.php:78
7289
- msgid "unique views avg."
7290
- msgstr ""
7291
-
7292
- #: models/focuspages/Traffic.php:79
7293
- #, php-format
7294
- msgid ""
7295
- "For this task, we're looking at unique page views from your %sGoogle "
7296
- "Analytics%s. %s If you don't get an average of %s visitors / day / page, "
7297
- "then this Focus Page is not yet popular enough on your site. %s You should "
7298
- "make sure that more people end up visiting it."
7299
- msgstr ""
7300
-
7301
- # @ squirrly-seo
7302
- #: models/focuspages/Traffic.php:82
7303
- #, fuzzy
7304
- #| msgid "Google %sAnalytics ID%s`:"
7305
- msgid "Just one Google Analytics tracking code"
7306
- msgstr "Google %sAnalytics ID%s`:"
7307
-
7308
- #: models/focuspages/Traffic.php:83
7309
- #, php-format
7310
- msgid ""
7311
- "We've seen many sites where there were multiple google analytics codes "
7312
- "placed by different employees, themes or plugins. %s With this check, we're "
7313
- "helping you make sure that your tracker is setup properly and that there "
7314
- "will be no errors with your Google Analytics account. %s To turn this green, "
7315
- "you'll have to investigate your theme, custom code that you may have placed "
7316
- "in your theme, other plugins, header settings. Once you have a clear view of "
7317
- "all the tracking codes, make sure that only one remains and that the one "
7318
- "code is the one linked to your Google Analytics account. %s These problems "
7319
- "happen more often than you would think."
7320
- msgstr ""
7321
-
7322
- # @ squirrly-seo
7323
- #: models/focuspages/Traffic.php:121
7324
- #, fuzzy
7325
- #| msgid "Google %sAnalytics ID%s`:"
7326
- msgid "Connect Google Analytics first"
7327
- msgstr "Google %sAnalytics ID%s`:"
7328
-
7329
- #: models/focuspages/Traffic.php:123
7330
- msgid "Not enough traffic to show relevant stats"
7331
- msgstr ""
7332
-
7333
- # @ squirrly-seo
7334
- #: models/services/Robots.php:13
7335
- #, fuzzy
7336
- #| msgid "Squirrly settings"
7337
- msgid "Squirrly SEO Robots"
7338
- msgstr "Squirrly Einstellungen"
7339
-
7340
- #: models/services/Robots.php:16
7341
- msgid ""
7342
- "Your blog is not public. Please see Site Visibility on Settings > Reading."
7343
- msgstr ""
7344
-
7345
- # @ squirrly-seo
7346
- #: models/services/Robots.php:32
7347
- #, fuzzy
7348
- #| msgid "Squirrly LIVE SEO assistant"
7349
- msgid "No Squirrly SEO Robots found."
7350
- msgstr "Squirrly LIVE SEO-Assistent"
7351
-
7352
- #: view/Assistant/Assistant.php:16
7353
- msgid "Optimize with Squirrly Live Assistant"
7354
- msgstr ""
7355
-
7356
- #: view/Assistant/Assistant.php:17
7357
- msgid ""
7358
- "Use Squirrly to optimize the content for your posts, pages, products, etc."
7359
- msgstr ""
7360
-
7361
- #: view/Assistant/Assistant.php:31
7362
- msgid "Practice/Test Round"
7363
- msgstr ""
7364
-
7365
- #: view/Assistant/Assistant.php:40
7366
- msgid "Add New"
7367
- msgstr ""
7368
-
7369
- #: view/Assistant/Settings.php:7 view/Audits/Addpage.php:8
7370
- #: view/Audits/Audit.php:8 view/Audits/Audits.php:8 view/Audits/Compare.php:11
7371
- #: view/Audits/Settings.php:7 view/BulkSeo/Bulkseo.php:12
7372
- #: view/FocusPages/Addpage.php:8 view/FocusPages/Pagelist.php:8
7373
- #: view/FocusPages/Settings.php:7 view/Ranking/Rankings.php:17
7374
- #: view/Ranking/Settings.php:7 view/SeoSettings/Advanced.php:7
7375
- #: view/SeoSettings/Automation.php:7 view/SeoSettings/Favicon.php:7
7376
- #: view/SeoSettings/Metas.php:7 view/SeoSettings/Robots.php:7
7377
- #: view/SeoSettings/Sitemap.php:7 view/SeoSettings/Social.php:7
7378
- #: view/SeoSettings/Tracking.php:7 view/SeoSettings/Webmaster.php:7
7379
- msgid ""
7380
- "You do not have permission to access this page. You need Squirrly SEO Admin "
7381
- "role."
7382
- msgstr ""
7383
-
7384
- # @ squirrly-seo
7385
- #: view/Assistant/Settings.php:25
7386
- #, fuzzy
7387
- #| msgid "Squirrly settings"
7388
- msgid "Live Assistant Settings"
7389
- msgstr "Squirrly Einstellungen"
7390
-
7391
- # @ squirrly-seo
7392
- #: view/Assistant/Settings.php:40
7393
- #, fuzzy
7394
- #| msgid "Squirrly settings"
7395
- msgid "Squirrly Tooltips"
7396
- msgstr "Squirrly Einstellungen"
7397
-
7398
- #: view/Assistant/Settings.php:41
7399
- #, php-format
7400
- msgid ""
7401
- "Show %sSquirrly Tooltips%s when posting a new article (e.g. 'Enter a "
7402
- "keyword')."
7403
- msgstr ""
7404
-
7405
- # @ squirrly-seo
7406
- #: view/Assistant/Settings.php:51
7407
- #, fuzzy
7408
- #| msgid "Tips: 2-4 keywords"
7409
- msgid "Download Remote Images"
7410
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
7411
-
7412
- #: view/Assistant/Settings.php:52
7413
- #, php-format
7414
- msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
7415
- msgstr ""
7416
-
7417
- #: view/Assistant/Settings.php:53
7418
- msgid ""
7419
- "Prevent from losing the images you use in your articles in case the remote "
7420
- "images are deleted."
7421
- msgstr ""
7422
-
7423
- #: view/Assistant/Settings.php:64
7424
- msgid "Copyright Free Images"
7425
- msgstr ""
7426
-
7427
- #: view/Assistant/Settings.php:65
7428
- #, php-format
7429
- msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7430
- msgstr ""
7431
-
7432
- #: view/Assistant/Settings.php:75
7433
- msgid "Live Assistant Type"
7434
- msgstr ""
7435
-
7436
- #: view/Assistant/Settings.php:76
7437
- msgid "Select how you want Squirrly Live Assistant to load in editor."
7438
- msgstr ""
7439
-
7440
- #: view/Assistant/Settings.php:80
7441
- msgid "Auto"
7442
- msgstr ""
7443
-
7444
- #: view/Assistant/Settings.php:81
7445
- msgid "Integrated Box"
7446
- msgstr ""
7447
-
7448
- #: view/Assistant/Settings.php:82
7449
- msgid "Floating Box"
7450
- msgstr ""
7451
-
7452
- #: view/Assistant/Settings.php:95
7453
- msgid "Activate Live Assistant in Frontend"
7454
- msgstr ""
7455
-
7456
- #: view/Assistant/Settings.php:96
7457
- msgid ""
7458
- "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7459
- "with Builders."
7460
- msgstr ""
7461
-
7462
- #: view/Assistant/Settings.php:97
7463
- msgid "Currently supports the Elementor Builder plugin."
7464
- msgstr ""
7465
-
7466
- #: view/Assistant/Settings.php:104
7467
- msgid "Places where you do NOT want Squirrly Live Assistant to load"
7468
- msgstr ""
7469
-
7470
- #: view/Assistant/Settings.php:106
7471
- msgid ""
7472
- "Don't select anything if you wish Squirrly Live Assistant to load for all "
7473
- "post types."
7474
- msgstr ""
7475
-
7476
- #: view/Assistant/Settings.php:112
7477
- msgid "Exclusions"
7478
- msgstr ""
7479
-
7480
- #: view/Assistant/Settings.php:113
7481
- msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7482
- msgstr ""
7483
-
7484
- #: view/Assistant/Settings.php:114
7485
- msgid "Hold Control key to select multiple places"
7486
- msgstr ""
7487
-
7488
- # @ squirrly-seo
7489
- #: view/Assistant/Settings.php:141 view/SeoSettings/Automation.php:474
7490
- #: view/SeoSettings/Automation.php:595 view/SeoSettings/Jsonld.php:243
7491
- #: view/SeoSettings/Metas.php:241 view/SeoSettings/Sitemap.php:305
7492
- #: view/SeoSettings/Social.php:372
7493
- #, fuzzy
7494
- #| msgid "Squirrly settings"
7495
- msgid "Show Advanced Options"
7496
- msgstr "Squirrly Einstellungen"
7497
-
7498
- # @ squirrly-seo
7499
- #: view/Assistant/Settings.php:142 view/SeoSettings/Automation.php:475
7500
- #: view/SeoSettings/Automation.php:596 view/SeoSettings/Jsonld.php:244
7501
- #: view/SeoSettings/Metas.php:242 view/SeoSettings/Sitemap.php:306
7502
- #: view/SeoSettings/Social.php:373
7503
- #, fuzzy
7504
- #| msgid "Squirrly settings"
7505
- msgid "Hide Advanced Options"
7506
- msgstr "Squirrly Einstellungen"
7507
-
7508
- # @ squirrly-seo
7509
- #: view/Assistant/Settings.php:145 view/Audits/Settings.php:60
7510
- #: view/Ranking/Settings.php:174 view/SeoSettings/Advanced.php:90
7511
- #: view/SeoSettings/Automation.php:478 view/SeoSettings/Automation.php:599
7512
- #: view/SeoSettings/Backup.php:208 view/SeoSettings/Favicon.php:107
7513
- #: view/SeoSettings/Jsonld.php:247 view/SeoSettings/Metas.php:245
7514
- #: view/SeoSettings/Robots.php:80 view/SeoSettings/Sitemap.php:309
7515
- #: view/SeoSettings/Social.php:376 view/SeoSettings/Tracking.php:142
7516
- #: view/SeoSettings/Webmaster.php:122
7517
- #, fuzzy
7518
- #| msgid "Squirrly settings"
7519
- msgid "Save Settings"
7520
- msgstr "Squirrly Einstellungen"
7521
-
7522
- #: view/Audits/Addpage.php:22
7523
- msgid "Add a page in Audit"
7524
- msgstr ""
7525
-
7526
- #: view/Audits/Addpage.php:23 view/Audits/Audit.php:26
7527
- #: view/Audits/Audits.php:26 view/Audits/Compare.php:29
7528
- msgid ""
7529
- "Verifies the online presence of your website by knowing how your website is "
7530
- "performing in terms of Blogging, SEO, Social, Authority, Links, and Traffic"
7531
- msgstr ""
7532
-
7533
- #: view/Audits/Addpage.php:93 view/BulkSeo/Bulkseo.php:101
7534
- #: view/FocusPages/Addpage.php:92
7535
- msgid "Any status"
7536
- msgstr ""
7537
-
7538
- # @ squirrly-seo
7539
- #: view/Audits/Addpage.php:113 view/BulkSeo/Bulkseo.php:121
7540
- #: view/FocusPages/Addpage.php:112 view/Research/Research.php:206
7541
- #, fuzzy
7542
- #| msgid "Do the research"
7543
- msgid "Search"
7544
- msgstr "Recherchieren"
7545
-
7546
- # @ squirrly-seo
7547
- #: view/Audits/Addpage.php:115 view/Audits/Audit.php:38
7548
- #: view/Audits/Compare.php:44 view/BulkSeo/Bulkseo.php:123
7549
- #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:6
7550
- #: view/Ranking/Rankings.php:58 view/Research/Briefcase.php:37
7551
- #, fuzzy
7552
- #| msgid "Tips: 2-4 keywords"
7553
- msgid "Show All"
7554
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
7555
-
7556
- #: view/Audits/Addpage.php:133 view/FocusPages/Addpage.php:133
7557
- msgid "Option"
7558
- msgstr ""
7559
-
7560
- #: view/Audits/Addpage.php:175
7561
- msgid "Add Page to Audit"
7562
- msgstr ""
7563
-
7564
- #: view/Audits/Addpage.php:179
7565
- msgid "See Audits"
7566
- msgstr ""
7567
-
7568
- #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
7569
- #: view/FocusPages/Addpage.php:196
7570
- msgid "Prev Page"
7571
- msgstr ""
7572
-
7573
- # @ squirrly-seo
7574
- #: view/Audits/Addpage.php:194 view/BulkSeo/Bulkseo.php:199
7575
- #: view/FocusPages/Addpage.php:197
7576
- #, fuzzy
7577
- #| msgid "Squirrly settings"
7578
- msgid "Next Page"
7579
- msgstr "Squirrly Einstellungen"
7580
-
7581
- #: view/Audits/Addpage.php:202 view/FocusPages/Addpage.php:205
7582
- msgid "No page found. Select a different Post Type."
7583
- msgstr ""
7584
-
7585
- # @ squirrly-seo
7586
- #: view/Audits/Audit.php:25 view/Audits/Compare.php:28
7587
- #, fuzzy
7588
- #| msgid "Your E-mail:"
7589
- msgid "Audit Details"
7590
- msgstr "Ihre E-Mail Adresse:"
7591
-
7592
- # @ squirrly-seo
7593
- #: view/Audits/Audit.php:64
7594
- #, fuzzy
7595
- #| msgid "Squirrly settings"
7596
- msgid "Audit Pages"
7597
- msgstr "Squirrly Einstellungen"
7598
-
7599
- #: view/Audits/Audit.php:87
7600
- msgid "Show Only Completed Tasks"
7601
- msgstr ""
7602
-
7603
- #: view/Audits/Audit.php:92
7604
- msgid "Show Only Incompleted Tasks"
7605
- msgstr ""
7606
-
7607
- #: view/Audits/AuditPageRow.php:40
7608
- msgid "Last checked"
7609
- msgstr ""
7610
-
7611
- # @ squirrly-seo
7612
- #: view/Audits/AuditPageRow.php:46
7613
- #, fuzzy
7614
- #| msgid "Could not send the email..."
7615
- msgid "Could not create the audit for this URL"
7616
- msgstr "Konnte E-Mail nicht senden ..."
7617
-
7618
- #: view/Audits/AuditPageRow.php:46
7619
- msgid "error code"
7620
- msgstr ""
7621
-
7622
- #: view/Audits/AuditPageRow.php:48
7623
- #, php-format
7624
- msgid ""
7625
- "The way your WordPress site is currently hosted can affect the way Squirrly "
7626
- "SEO operates in order to retrieve and process data about this page. %sIt’s "
7627
- "important to do everything on your end to ensure that the audits can be "
7628
- "generated by our system. %s Whitelist our crawler IP address (176.9.112.210) "
7629
- "to allow our server to verify your page so that you’ll receive a full audit."
7630
- msgstr ""
7631
-
7632
- # @ squirrly-seo
7633
- #: view/Audits/AuditPageRow.php:49 view/Audits/AuditPageRow.php:77
7634
- #: view/FocusPages/FocusPageRow.php:110 view/FocusPages/FocusPageRow.php:187
7635
- #, fuzzy
7636
- #| msgid "Squirrly LIVE SEO assistant"
7637
- msgid "Inspect URL"
7638
- msgstr "Squirrly LIVE SEO-Assistent"
7639
-
7640
- # @ squirrly-seo
7641
- #: view/Audits/AuditPageRow.php:65
7642
- #, fuzzy
7643
- #| msgid "Could not send the email..."
7644
- msgid "Do you want to delete the Audit Page?"
7645
- msgstr "Konnte E-Mail nicht senden ..."
7646
-
7647
- #: view/Audits/AuditPageRow.php:71
7648
- msgid "Delete Page from Audit"
7649
- msgstr ""
7650
-
7651
- # @ squirrly-seo
7652
- #: view/Audits/AuditPages.php:6
7653
- #, fuzzy
7654
- #| msgid "Squirrly settings"
7655
- msgid "Audited pages"
7656
- msgstr "Squirrly Einstellungen"
7657
-
7658
- #: view/Audits/AuditPages.php:13 view/FocusPages/FocusPages.php:53
7659
- msgid "Permalink"
7660
- msgstr ""
7661
-
7662
- #: view/Audits/AuditPages.php:47
7663
- #, php-format
7664
- msgid "No data for this filter. %sShow All%s Audit Pages."
7665
- msgstr ""
7666
-
7667
- # @ squirrly-seo
7668
- #: view/Audits/AuditPages.php:53
7669
- #, fuzzy
7670
- #| msgid "Squirrly LIVE SEO assistant"
7671
- msgid "Welcome to Squirrly SEO Audits"
7672
- msgstr "Squirrly LIVE SEO-Assistent"
7673
-
7674
- #: view/Audits/AuditPages.php:55
7675
- msgid "Add a new page for Audit to get started"
7676
- msgstr ""
7677
-
7678
- #: view/Audits/AuditPages.php:68 view/Errors/Error.php:20
7679
- #: view/FocusPages/FocusPages.php:123 view/Ranking/Rankings.php:456
7680
- #, php-format
7681
- msgid ""
7682
- "There is a connection error with Squirrly Cloud. Please check the connection "
7683
- "and %srefresh the page%s."
7684
- msgstr ""
7685
-
7686
- #: view/Audits/AuditStats.php:29
7687
- msgid ""
7688
- "Your score is low. A medium score is over 50, and a good score is over 80."
7689
- msgstr ""
7690
-
7691
- #: view/Audits/AuditStats.php:31
7692
- msgid "Your score is medium. A good score is over 80."
7693
- msgstr ""
7694
-
7695
- #: view/Audits/AuditStats.php:33
7696
- msgid "Your score is good. Keep it as high as posible for good results."
7697
- msgstr ""
7698
-
7699
- # @ squirrly-seo
7700
- #: view/Audits/AuditStats.php:40 view/Audits/AuditStats.php:234
7701
- #: view/Audits/Compare.php:73
7702
- #, fuzzy
7703
- #| msgid "Squirrly settings"
7704
- msgid "Audit Score"
7705
- msgstr "Squirrly Einstellungen"
7706
-
7707
- # @ squirrly-seo
7708
- #: view/Audits/AuditStats.php:53
7709
- #, fuzzy
7710
- #| msgid "Squirrly settings"
7711
- msgid "Your audit score is"
7712
- msgstr "Squirrly Einstellungen"
7713
-
7714
- #: view/Audits/AuditStats.php:62
7715
- msgid "Add a new page for Audit"
7716
- msgstr ""
7717
-
7718
- # @ squirrly-seo
7719
- #: view/Audits/AuditStats.php:70
7720
- #, fuzzy
7721
- #| msgid "Your E-mail:"
7722
- msgid "Audit Date"
7723
- msgstr "Ihre E-Mail Adresse:"
7724
-
7725
- #: view/Audits/AuditStats.php:77 view/Audits/AuditStats.php:101
7726
- msgid "You can refresh the audit once every hour"
7727
- msgstr ""
7728
-
7729
- #: view/Audits/AuditStats.php:79 view/Audits/AuditStats.php:103
7730
- msgid "Request Website Audit"
7731
- msgstr ""
7732
-
7733
- # @ squirrly-seo
7734
- #: view/Audits/AuditStats.php:89
7735
- #, fuzzy
7736
- #| msgid "Squirrly settings"
7737
- msgid "Audit in progress"
7738
- msgstr "Squirrly Einstellungen"
7739
-
7740
- # @ squirrly-seo
7741
- #: view/Audits/AuditStats.php:95
7742
- #, fuzzy
7743
- #| msgid "Squirrly settings"
7744
- msgid "Audit not ready yet"
7745
- msgstr "Squirrly Einstellungen"
7746
-
7747
- #: view/Audits/AuditStats.php:122 view/Audits/AuditStats.php:236
7748
- #: view/Ranking/Rankings.php:408 view/Research/History.php:31
7749
- msgid "Date"
7750
- msgstr ""
7751
-
7752
- #: view/Audits/AuditStats.php:122
7753
- msgid "On-Page"
7754
- msgstr ""
7755
-
7756
- #: view/Audits/AuditStats.php:122
7757
- msgid "Off-Page"
7758
- msgstr ""
7759
-
7760
- #: view/Audits/AuditStats.php:145
7761
- #, php-format
7762
- msgid "You've completed %s tasks from %s"
7763
- msgstr ""
7764
-
7765
- #: view/Audits/AuditStats.php:169 view/Audits/Compare.php:54
7766
- msgid "Scores"
7767
- msgstr ""
7768
-
7769
- #: view/Audits/AuditStats.php:170
7770
- #, php-format
7771
- msgid "the latest %s days evolution for Audit"
7772
- msgstr ""
7773
-
7774
- #: view/Audits/AuditStats.php:195 view/FocusPages/FocusPageStats.php:140
7775
- #: view/Goals/CheckSeo.php:20 view/Ranking/Rankings.php:155
7776
- msgid "Progress & Achievements"
7777
- msgstr ""
7778
-
7779
- #: view/Audits/AuditStats.php:196
7780
- #, php-format
7781
- msgid "the latest %s days progress for Audit Pages"
7782
- msgstr ""
7783
-
7784
- #: view/Audits/AuditStats.php:206 view/FocusPages/FocusPageStats.php:151
7785
- #: view/Ranking/Rankings.php:184
7786
- msgid "No progress found yet"
7787
- msgstr ""
7788
-
7789
- # @ squirrly-seo
7790
- #: view/Audits/AuditStats.php:219
7791
- #, fuzzy
7792
- #| msgid "Squirrly settings"
7793
- msgid "Audit History"
7794
- msgstr "Squirrly Einstellungen"
7795
-
7796
- #: view/Audits/AuditStats.php:226
7797
- msgid "Compare Audits"
7798
- msgstr ""
7799
-
7800
- #: view/Audits/AuditStats.php:235
7801
- msgid "Page(s)"
7802
- msgstr ""
7803
-
7804
- #: view/Audits/AuditStats.php:252
7805
- msgid "pages"
7806
- msgstr ""
7807
-
7808
- #: view/Audits/AuditStats.php:256
7809
- msgid "Show Audit"
7810
- msgstr ""
7811
-
7812
- # @ squirrly-seo
7813
- #: view/Audits/Audits.php:25
7814
- #, fuzzy
7815
- #| msgid "Squirrly settings"
7816
- msgid "Audits"
7817
- msgstr "Squirrly Einstellungen"
7818
-
7819
- #: view/Audits/Audits.php:66
7820
- #, php-format
7821
- msgid ""
7822
- "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
7823
- "to generate the new audit for each page. There is a lot of processing "
7824
- "involved."
7825
- msgstr ""
7826
-
7827
- #: view/Audits/Audits.php:73
7828
- #, php-format
7829
- msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
7830
- msgstr ""
7831
-
7832
- # @ squirrly-seo
7833
- #: view/Audits/Audits.php:94 view/FocusPages/Pagelist.php:91
7834
- #, fuzzy
7835
- #| msgid "Squirrly LIVE SEO assistant"
7836
- msgid "Squirrly Inspect URL"
7837
- msgstr "Squirrly LIVE SEO-Assistent"
7838
-
7839
- # @ squirrly-seo
7840
- #: view/Audits/Settings.php:30
7841
- #, fuzzy
7842
- #| msgid "Squirrly settings"
7843
- msgid "Audit Settings"
7844
- msgstr "Squirrly Einstellungen"
7845
-
7846
- # @ squirrly-seo
7847
- #: view/Audits/Settings.php:43
7848
- #, fuzzy
7849
- #| msgid "Your E-mail:"
7850
- msgid "Audit Email"
7851
- msgstr "Ihre E-Mail Adresse:"
7852
-
7853
- #: view/Audits/Settings.php:44
7854
- msgid "Enter the email address on which you want to receive the weekly audits."
7855
- msgstr ""
7856
-
7857
- #: view/Blocks/Account.php:10
7858
- msgid "Account Info Unavailable"
7859
- msgstr ""
7860
-
7861
- #: view/Blocks/Account.php:43
7862
- msgid "Your Plan"
7863
- msgstr ""
7864
-
7865
- #: view/Blocks/Account.php:44
7866
- msgid "Check Account Info"
7867
- msgstr ""
7868
-
7869
- # @ squirrly-seo
7870
- #: view/Blocks/Account.php:49 view/Blocks/Login.php:11 view/Blocks/Login.php:29
7871
- #, fuzzy
7872
- #| msgid "Your E-mail:"
7873
- msgid "Email"
7874
- msgstr "Ihre E-Mail Adresse:"
7875
-
7876
- #: view/Blocks/Account.php:55
7877
- #, php-format
7878
- msgid "Due Date: %s"
7879
- msgstr ""
7880
-
7881
- #: view/Blocks/Connect.php:14 view/Blocks/Connect.php:28
7882
- msgid ""
7883
- "This option is used to track innerlinks and insights for your Focus Pages "
7884
- "and give detailed informations about them."
7885
- msgstr ""
7886
-
7887
- #: view/Blocks/Connect.php:16
7888
- msgid "Let Squirrly Cloud get data for Focus Pages"
7889
- msgstr ""
7890
-
7891
- #: view/Blocks/Connect.php:17
7892
- msgid "Connect"
7893
- msgstr ""
7894
-
7895
- #: view/Blocks/Connect.php:30
7896
- msgid "Let Squirrly API get data for Focus Pages"
7897
- msgstr ""
7898
-
7899
- #: view/Blocks/Connect.php:31
7900
- msgid "disconnect"
7901
- msgstr ""
7902
-
7903
- #: view/Blocks/Dashboard.php:21
7904
- msgid "Upgrade your SEO with Squirrly and improve your rankings on Google"
7905
- msgstr ""
7906
-
7907
- #: view/Blocks/Dashboard.php:31
7908
- msgid "Congratulations! you have success messages"
7909
- msgstr ""
7910
-
7911
- #: view/Blocks/Dashboard.php:50 view/Blocks/Dashboard.php:88
7912
- msgid "others"
7913
- msgstr ""
7914
-
7915
- #: view/Blocks/Dashboard.php:59
7916
- #, php-format
7917
- msgid "See %s other achievements"
7918
- msgstr ""
7919
-
7920
- #: view/Blocks/Dashboard.php:61
7921
- msgid "See today's achievements"
7922
- msgstr ""
7923
-
7924
- #: view/Blocks/Dashboard.php:70
7925
- msgid "You got new goals for today"
7926
- msgstr ""
7927
-
7928
- #: view/Blocks/Dashboard.php:97
7929
- #, php-format
7930
- msgid "See %s other goals"
7931
- msgstr ""
7932
-
7933
- #: view/Blocks/Dashboard.php:99
7934
- msgid "See today's goals"
7935
- msgstr ""
7936
-
7937
- #: view/Blocks/Dashboard.php:105 view/Goals/Goals.php:213
7938
- #, php-format
7939
- msgid "No other goals for today. %sGood job!"
7940
- msgstr ""
7941
-
7942
- #: view/Blocks/Dashboard.php:107 view/Goals/Goals.php:224
7943
- msgid "Rank your best pages with Focus Pages"
7944
- msgstr ""
7945
-
7946
- #: view/Blocks/Dashboard.php:110 view/Goals/Goals.php:221
7947
- msgid "Boost your SEO with Bulk SEO"
7948
- msgstr ""
7949
-
7950
- #: view/Blocks/Dashboard.php:135 view/Goals/CheckSeo.php:118
7951
- msgid "Checking the website ..."
7952
- msgstr ""
7953
-
7954
- #: view/Blocks/Features.php:8
7955
- msgid ""
7956
- "The Assistant who maps the road to Better Rankings. For every single page. "
7957
- "Always with different specifics."
7958
- msgstr ""
7959
-
7960
- #: view/Blocks/Features.php:9 view/Blocks/Features.php:18
7961
- #: view/Blocks/Features.php:36 view/Blocks/Features.php:189
7962
- msgid "Freemium"
7963
- msgstr ""
7964
-
7965
- # @ squirrly-seo
7966
- #: view/Blocks/Features.php:16 view/Research/Research.php:18
7967
- #, fuzzy
7968
- #| msgid "Do the research"
7969
- msgid "Keyword Research"
7970
- msgstr "Recherchieren"
7971
-
7972
- #: view/Blocks/Features.php:17
7973
- msgid ""
7974
- "Find the Best Keywords that your own website can rank for and get "
7975
- "personalized competition data for each keyword."
7976
- msgstr ""
7977
-
7978
- #: view/Blocks/Features.php:25
7979
- msgid "SEO Briefcase"
7980
- msgstr ""
7981
-
7982
- #: view/Blocks/Features.php:26
7983
- msgid ""
7984
- "Add keywords in your portfolio based on your current Campaigns, Trends, "
7985
- "Performance for a successful SEO strategy."
7986
- msgstr ""
7987
-
7988
- #: view/Blocks/Features.php:27 view/Blocks/Features.php:45
7989
- #: view/Blocks/Features.php:54 view/Blocks/Features.php:63
7990
- #: view/Blocks/Features.php:72 view/Blocks/Features.php:81
7991
- #: view/Blocks/Features.php:90 view/Blocks/Features.php:99
7992
- #: view/Blocks/Features.php:108 view/Blocks/Features.php:117
7993
- #: view/Blocks/Features.php:126 view/Blocks/Features.php:135
7994
- #: view/Blocks/Features.php:144 view/Blocks/Features.php:153
7995
- #: view/Blocks/Features.php:162 view/Blocks/Features.php:171
7996
- #: view/Blocks/Features.php:180 view/Blocks/Features.php:198
7997
- msgid "Free"
7998
- msgstr ""
7999
-
8000
- #: view/Blocks/Features.php:35
8001
- msgid ""
8002
- "Publish content that is fully optimized for BOTH Search Engines and Humans – "
8003
- "every single time!"
8004
- msgstr ""
8005
-
8006
- #: view/Blocks/Features.php:43
8007
- msgid "Google SERP with GSC"
8008
- msgstr ""
8009
-
8010
- #: view/Blocks/Features.php:44
8011
- msgid ""
8012
- "Get Google Search Console average possitions, clicks and impressions for "
8013
- "organic keywords."
8014
- msgstr ""
8015
-
8016
- # @ squirrly-seo
8017
- #: view/Blocks/Features.php:52
8018
- #, fuzzy
8019
- #| msgid "automatically"
8020
- msgid "SEO Automation"
8021
- msgstr "automatisch"
8022
-
8023
- #: view/Blocks/Features.php:53
8024
- msgid ""
8025
- "Configure the SEO in 2 minutes for the entire website without writing a line "
8026
- "of code."
8027
- msgstr ""
8028
-
8029
- # @ squirrly-seo
8030
- #: view/Blocks/Features.php:61
8031
- #, fuzzy
8032
- #| msgid "Squirrly LIVE SEO assistant"
8033
- msgid "Bulk SEO & Snippets"
8034
- msgstr "Squirrly LIVE SEO-Assistent"
8035
-
8036
- #: view/Blocks/Features.php:62 view/BulkSeo/Bulkseo.php:30
8037
- msgid ""
8038
- "Simplify the SEO process for all your posts types and optimize them in just "
8039
- "minutes."
8040
- msgstr ""
8041
-
8042
- #: view/Blocks/Features.php:70 view/Goals/Goals.php:34
8043
- msgid "Daily SEO Goals"
8044
- msgstr ""
8045
-
8046
- #: view/Blocks/Features.php:71
8047
- msgid ""
8048
- "The Non-Human SEO Consultant that prepares you goals that take you closer to "
8049
- "the first page of Google."
8050
- msgstr ""
8051
-
8052
- #: view/Blocks/Features.php:79
8053
- msgid "Open Graph Optimization"
8054
- msgstr ""
8055
-
8056
- #: view/Blocks/Features.php:80
8057
- msgid "Add Social Open Graph protocol so that your Facebook shares look good."
8058
- msgstr ""
8059
-
8060
- #: view/Blocks/Features.php:88
8061
- msgid "Twitter Card Optimization"
8062
- msgstr ""
8063
-
8064
- #: view/Blocks/Features.php:89
8065
- msgid "Add Twitter Card in your tweets so that your Twitter shares look good."
8066
- msgstr ""
8067
-
8068
- #: view/Blocks/Features.php:97
8069
- msgid "XML Sitemap"
8070
- msgstr ""
8071
-
8072
- #: view/Blocks/Features.php:98
8073
- msgid ""
8074
- "Use Squirrly’s Sitemap Generator and Settings to help your website get "
8075
- "crawled and indexed by Google."
8076
- msgstr ""
8077
-
8078
- #: view/Blocks/Features.php:106
8079
- msgid "JSON-LD Optimizaition"
8080
- msgstr ""
8081
-
8082
- #: view/Blocks/Features.php:107
8083
- msgid ""
8084
- "Edit your website’s JSON-LD Schema with Squirrly’s powerful semantic SEO "
8085
- "Markup Solution."
8086
- msgstr ""
8087
-
8088
- # @ squirrly-seo
8089
- #: view/Blocks/Features.php:115
8090
- #, fuzzy
8091
- #| msgid "Google %sAnalytics ID%s`:"
8092
- msgid "Google Analytics Tracking"
8093
- msgstr "Google %sAnalytics ID%s`:"
8094
-
8095
- #: view/Blocks/Features.php:116
8096
- msgid ""
8097
- "Add the Google Analytics and Google Tag Manager tracking on your website."
8098
- msgstr ""
8099
-
8100
- #: view/Blocks/Features.php:124
8101
- msgid "Facebook Pixel Tracking"
8102
- msgstr ""
8103
-
8104
- #: view/Blocks/Features.php:125
8105
- msgid ""
8106
- "Track visitors with website and e-commerce events for better Retargeting "
8107
- "Campaigns."
8108
- msgstr ""
8109
-
8110
- # @ squirrly-seo
8111
- #: view/Blocks/Features.php:133 view/Connect/GoogleSearchConsole.php:7
8112
- #, fuzzy
8113
- #| msgid "Google %sAnalytics ID%s`:"
8114
- msgid "Google Search Console"
8115
- msgstr "Google %sAnalytics ID%s`:"
8116
-
8117
- #: view/Blocks/Features.php:134
8118
- msgid ""
8119
- "Connect your website with Google Search Console and get insights based on "
8120
- "organic searched keywords."
8121
- msgstr ""
8122
-
8123
- #: view/Blocks/Features.php:142
8124
- msgid "Robots.txt File"
8125
- msgstr ""
8126
-
8127
- #: view/Blocks/Features.php:143
8128
- msgid ""
8129
- "Tell search engine crawlers which pages or files the crawler can or can't "
8130
- "request from your site."
8131
- msgstr ""
8132
-
8133
- #: view/Blocks/Features.php:151
8134
- msgid "Favicon Site Icon"
8135
- msgstr ""
8136
-
8137
- #: view/Blocks/Features.php:152 view/SeoSettings/Favicon.php:29
8138
- msgid ""
8139
- "Add your website icon in the browser tabs and on other devices like iPhone, "
8140
- "iPad and Android phones."
8141
- msgstr ""
8142
-
8143
- #: view/Blocks/Features.php:160
8144
- msgid "On-Page SEO METAs"
8145
- msgstr ""
8146
-
8147
- #: view/Blocks/Features.php:161
8148
- msgid ""
8149
- "Add all Search Engine METAs like Title, Description, Canonical, Dublin Core, "
8150
- "Robots and more."
8151
- msgstr ""
8152
-
8153
- #: view/Blocks/Features.php:169
8154
- msgid "Remove META Duplicate"
8155
- msgstr ""
8156
-
8157
- #: view/Blocks/Features.php:170
8158
- msgid "Fix Duplicate Titles and Descriptions without writing a line of code."
8159
- msgstr ""
8160
-
8161
- #: view/Blocks/Features.php:178
8162
- msgid "404 Redirects"
8163
- msgstr ""
8164
-
8165
- #: view/Blocks/Features.php:179
8166
- msgid ""
8167
- "Automatically redirect the old posts and pages URLs to the new URLs to keep "
8168
- "the post authority."
8169
- msgstr ""
8170
-
8171
- #: view/Blocks/Features.php:188 view/Blocks/Features.php:197
8172
- msgid "Improve your Online Presence by knowing how your website is performing."
8173
- msgstr ""
8174
-
8175
- #: view/Blocks/Features.php:196 view/Blocks/Jorney.php:12
8176
- #: view/Blocks/Jorney.php:95
8177
- msgid "14 Days Journey Course"
8178
- msgstr ""
8179
-
8180
- #: view/Blocks/Features.php:205
8181
- msgid "Blogging Assistant"
8182
- msgstr ""
8183
-
8184
- #: view/Blocks/Features.php:206
8185
- msgid ""
8186
- "Add relevant Copyright-free images, Tweets, Wikis, Blog Excerpts in your "
8187
- "posts."
8188
- msgstr ""
8189
-
8190
- #: view/Blocks/Features.php:207
8191
- msgid "Pro"
8192
- msgstr ""
8193
-
8194
- #: view/Blocks/Features.php:214
8195
- msgid "Google SERP Checker"
8196
- msgstr ""
8197
-
8198
- #: view/Blocks/Features.php:215
8199
- msgid ""
8200
- "Accurately track your rankings with Squirrly’s user-friendly Google SERP "
8201
- "Checker."
8202
- msgstr ""
8203
-
8204
- #: view/Blocks/Features.php:216
8205
- msgid "Business"
8206
- msgstr ""
8207
-
8208
- # @ squirrly-seo
8209
- #: view/Blocks/Features.php:233 view/Overview.php:65
8210
- #, fuzzy
8211
- #| msgid "Squirrly LIVE SEO assistant"
8212
- msgid "Squirrly SEO Feature Categories"
8213
- msgstr "Squirrly LIVE SEO-Assistent"
8214
-
8215
- #: view/Blocks/Features.php:237
8216
- #, php-format
8217
- msgid ""
8218
- "With a total of over %s200%s free in-depth features that only Squirrly can "
8219
- "offer."
8220
- msgstr ""
8221
-
8222
- #: view/Blocks/Features.php:292
8223
- msgid "Go to feature"
8224
- msgstr ""
8225
-
8226
- #: view/Blocks/Features.php:294
8227
- msgid "Active"
8228
- msgstr ""
8229
-
8230
- #: view/Blocks/Features.php:296
8231
- msgid "Inactive"
8232
- msgstr ""
8233
-
8234
- #: view/Blocks/Features.php:304
8235
- msgid "more details"
8236
- msgstr ""
8237
-
8238
- #: view/Blocks/Jorney.php:17
8239
- #, php-format
8240
- msgid "Follow the %sdaily recipe%s from below."
8241
- msgstr ""
8242
-
8243
- #: view/Blocks/Jorney.php:18 view/Onboarding/Step2.2.php:32
8244
- #, php-format
8245
- msgid ""
8246
- "%sJoin%s the rest of the %sJourneyTeam on the Facebook Group%s and if you "
8247
- "want you can share with the members that you have started your Journey."
8248
- msgstr ""
8249
-
8250
- #: view/Blocks/Jorney.php:32
8251
- msgid "Congratulations! You've completed the 14 Days Journey To Better Ranking"
8252
- msgstr ""
8253
-
8254
- #: view/Blocks/Jorney.php:34
8255
- msgid "Your 14 Days Journey To Better Ranking"
8256
- msgstr ""
8257
-
8258
- #: view/Blocks/Jorney.php:42 view/Blocks/Jorney.php:60
8259
- msgid "Day"
8260
- msgstr ""
8261
-
8262
- #: view/Blocks/Jorney.php:49
8263
- msgid "If you missed a day, click on it and read the SEO recipe for it."
8264
- msgstr ""
8265
-
8266
- #: view/Blocks/Jorney.php:55
8267
- msgid "I'm all done. Hide this block."
8268
- msgstr ""
8269
-
8270
- #: view/Blocks/Jorney.php:60
8271
- msgid "Open the SEO recipe for today"
8272
- msgstr ""
8273
-
8274
- #: view/Blocks/Jorney.php:65 view/FocusPages/Addpage.php:22
8275
- msgid "Add a page in Focus Pages"
8276
- msgstr ""
8277
-
8278
- #: view/Blocks/Jorney.php:100 view/Onboarding/Step2.1.php:25
8279
- msgid ""
8280
- "All you need now is to start driving One of your most valuable pages to "
8281
- "Better Rankings."
8282
- msgstr ""
8283
-
8284
- #: view/Blocks/Jorney.php:103
8285
- msgid "I'm ready to start the Journey To Better Ranking"
8286
- msgstr ""
8287
-
8288
- #: view/Blocks/KnowledgeBase.php:6
8289
- msgid "Knowledge Base"
8290
- msgstr ""
8291
-
8292
- #: view/Blocks/Login.php:15
8293
- msgid "Password"
8294
- msgstr ""
8295
-
8296
- #: view/Blocks/Login.php:19
8297
- msgid "Register to Squirrly.co"
8298
- msgstr ""
8299
-
8300
- #: view/Blocks/Login.php:20
8301
- msgid "Lost password?"
8302
- msgstr ""
8303
-
8304
- #: view/Blocks/Login.php:20
8305
- msgid "Lost password"
8306
- msgstr ""
8307
-
8308
- #: view/Blocks/Login.php:22
8309
- msgid "Login"
8310
- msgstr ""
8311
-
8312
- #: view/Blocks/Login.php:36
8313
- msgid "I already have an account"
8314
- msgstr ""
8315
-
8316
- #: view/Blocks/Login.php:39
8317
- #, php-format
8318
- msgid "I Agree with the Squirrly %sTerms of Use%s and %sPrivacy Policy%s"
8319
- msgstr ""
8320
-
8321
- #: view/Blocks/Login.php:41
8322
- msgid "Sign Up"
8323
- msgstr ""
8324
-
8325
- #: view/Blocks/SLASearch.php:2
8326
- msgid "Waiting for your editor to load .."
8327
- msgstr ""
8328
-
8329
- #: view/Blocks/SLASearch.php:3 view/Blocks/Toolbar.php:62
8330
- msgid ""
8331
- "Javascript is disabled on your browser! You need to activate the javascript "
8332
- "in order to use Squirrly SEO."
8333
- msgstr ""
8334
-
8335
- #: view/Blocks/SLASearch.php:8
8336
- msgid "Click to Close Squirrly Live Assistant"
8337
- msgstr ""
8338
-
8339
- #: view/Blocks/SLASearch.php:9
8340
- msgid "Click to Minimize Box"
8341
- msgstr ""
8342
-
8343
- #: view/Blocks/SLASearch.php:10
8344
- msgid "Click to Maximize Box"
8345
- msgstr ""
8346
-
8347
- # @ squirrly-seo
8348
- #: view/Blocks/SLASearch.php:11 view/Blocks/SLASearch.php:17
8349
- #, fuzzy
8350
- #| msgid "Squirrly settings"
8351
- msgid "Squirrly Briefcase"
8352
- msgstr "Squirrly Einstellungen"
8353
-
8354
- #: view/Blocks/SLASearch.php:18
8355
- msgid "Refresh the briefcase"
8356
- msgstr ""
8357
-
8358
- #: view/Blocks/SLASearch.php:19
8359
- msgid "Close Briefcase"
8360
- msgstr ""
8361
-
8362
- #: view/Blocks/SLASearch.php:21
8363
- msgid "Search in Briefcase ..."
8364
- msgstr ""
8365
-
8366
- #: view/Blocks/SLASearch.php:23
8367
- msgid "Go to Briefcase"
8368
- msgstr ""
8369
-
8370
- # @ squirrly-seo
8371
- #: view/Blocks/SLASearch.php:31
8372
- #, fuzzy
8373
- #| msgid "Enter even more keywords."
8374
- msgid "Enter a keyword"
8375
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
8376
-
8377
- # @ squirrly-seo
8378
- #: view/Blocks/SLASearch.php:32
8379
- #, fuzzy
8380
- #| msgid "Squirrly LIVE SEO assistant"
8381
- msgid "for Squirrly Live SEO optimization"
8382
- msgstr "Squirrly LIVE SEO-Assistent"
8383
-
8384
- # @ squirrly-seo
8385
- #: view/Blocks/SLASearch.php:37
8386
- #, fuzzy
8387
- #| msgid "Enter even more keywords."
8388
- msgid "Type in your keyword..."
8389
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
8390
-
8391
- # @ squirrly-seo
8392
- #: view/Blocks/SLASearch.php:39
8393
- #, fuzzy
8394
- #| msgid "Enter even more keywords."
8395
- msgid "Use this keyword"
8396
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
8397
-
8398
- # @ squirrly-seo
8399
- #: view/Blocks/SLASearch.php:42
8400
- #, fuzzy
8401
- #| msgid "Do the research"
8402
- msgid "Do keyword research!"
8403
- msgstr "Recherchieren"
8404
-
8405
- #: view/Blocks/SLASearch.php:46
8406
- msgid "Images"
8407
- msgstr ""
8408
-
8409
- #: view/Blocks/SLASearch.php:47
8410
- msgid "Twitter"
8411
- msgstr ""
8412
-
8413
- #: view/Blocks/SLASearch.php:48
8414
- msgid "Wiki"
8415
- msgstr ""
8416
-
8417
- #: view/Blocks/SLASearch.php:49
8418
- msgid "Blogs"
8419
- msgstr ""
8420
-
8421
- #: view/Blocks/SLASearch.php:50
8422
- msgid "My articles"
8423
- msgstr ""
8424
-
8425
- #: view/Blocks/SLASearch.php:58
8426
- msgid "Show only Copyright Free images"
8427
- msgstr ""
8428
-
8429
- # @ squirrly-seo
8430
- #: view/Blocks/SLASeo.php:3
8431
- #, fuzzy
8432
- #| msgid "Squirrly settings"
8433
- msgid "Squirrly Live Assistant"
8434
- msgstr "Squirrly Einstellungen"
8435
-
8436
- #: view/Blocks/SLASeo.php:6
8437
- msgid "Update"
8438
- msgstr ""
8439
-
8440
- #: view/Blocks/SLASeo.php:9
8441
- msgid "Split Window"
8442
- msgstr ""
8443
-
8444
- #: view/Blocks/Snippet.php:83
8445
- msgid "Meta Tags"
8446
- msgstr ""
8447
-
8448
- #: view/Blocks/Snippet.php:88
8449
- msgid "JSON-LD"
8450
- msgstr ""
8451
-
8452
- #: view/Blocks/Snippet.php:112
8453
- #, php-format
8454
- msgid ""
8455
- "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
8456
- "will not load for this post type on the frontend"
8457
- msgstr ""
8458
-
8459
- # @ squirrly-seo
8460
- #: view/Blocks/Snippet.php:120 view/SeoSettings/Automation.php:170
8461
- #: view/SeoSettings/Automation.php:197 view/SeoSettings/Automation.php:275
8462
- #, fuzzy
8463
- #| msgid "Google %sAnalytics ID%s`:"
8464
- msgid "Activate Metas"
8465
- msgstr "Google %sAnalytics ID%s`:"
8466
-
8467
- #: view/Blocks/Snippet.php:129
8468
- msgid "How this page will appear on Search Engines"
8469
- msgstr ""
8470
-
8471
- #: view/Blocks/Snippet.php:133 view/Blocks/Snippet.php:365
8472
- #: view/Blocks/Snippet.php:497 view/Blocks/Snippet.php:754
8473
- #: view/Blocks/Snippet.php:978
8474
- msgid "Refresh"
8475
- msgstr ""
8476
-
8477
- #: view/Blocks/Snippet.php:137 view/Blocks/Snippet.php:516
8478
- #: view/Blocks/Snippet.php:775
8479
- msgid "AUTO-DRAFT"
8480
- msgstr ""
8481
-
8482
- #: view/Blocks/Snippet.php:148 view/Blocks/Snippet.php:795
8483
- msgid "Please save the post first to be able to edit the Squirrly SEO Snippet"
8484
- msgstr ""
8485
-
8486
- #: view/Blocks/Snippet.php:155 view/Blocks/Snippet.php:544
8487
- #: view/Blocks/Snippet.php:802
8488
- msgid "Cancel"
8489
- msgstr ""
8490
-
8491
- #: view/Blocks/Snippet.php:156 view/Blocks/Snippet.php:366
8492
- #: view/Blocks/Snippet.php:545 view/Blocks/Snippet.php:803
8493
- #: view/Blocks/Snippet.php:979
8494
- msgid "Save"
8495
- msgstr ""
8496
-
8497
- # @ squirrly-seo
8498
- #: view/Blocks/Snippet.php:166
8499
- #, fuzzy
8500
- #| msgid "Squirrly LIVE SEO assistant"
8501
- msgid "Activate Title"
8502
- msgstr "Squirrly LIVE SEO-Assistent"
8503
-
8504
- # @ squirrly-seo
8505
- #: view/Blocks/Snippet.php:173 view/Blocks/Snippet.php:224
8506
- #: view/Blocks/Snippet.php:578 view/Blocks/Snippet.php:621
8507
- #: view/Blocks/Snippet.php:836 view/Blocks/Snippet.php:879
8508
- #, fuzzy, php-format
8509
- #| msgid "Tips: Length 10-70 chars"
8510
- msgid "Tips: Length %s-%s chars"
8511
- msgstr "Tipp: Länge 10-70 Charaktere"
8512
-
8513
- #: view/Blocks/Snippet.php:176 view/Blocks/Snippet.php:200
8514
- #: view/Blocks/Snippet.php:227 view/Blocks/Snippet.php:254
8515
- #: view/Blocks/Snippet.php:581 view/Blocks/Snippet.php:605
8516
- #: view/Blocks/Snippet.php:624 view/Blocks/Snippet.php:651
8517
- #: view/Blocks/Snippet.php:839 view/Blocks/Snippet.php:863
8518
- #: view/Blocks/Snippet.php:882 view/Blocks/Snippet.php:909
8519
- msgid "Pattern"
8520
- msgstr ""
8521
-
8522
- #: view/Blocks/Snippet.php:193 view/Blocks/Snippet.php:598
8523
- #: view/Blocks/Snippet.php:856
8524
- msgid "Default Title"
8525
- msgstr ""
8526
-
8527
- #: view/Blocks/Snippet.php:217
8528
- msgid "Activate Description"
8529
- msgstr ""
8530
-
8531
- #: view/Blocks/Snippet.php:223
8532
- msgid "Meta Description"
8533
- msgstr ""
8534
-
8535
- #: view/Blocks/Snippet.php:247 view/Blocks/Snippet.php:644
8536
- #: view/Blocks/Snippet.php:902
8537
- msgid "Default Description"
8538
- msgstr ""
8539
-
8540
- # @ squirrly-seo
8541
- #: view/Blocks/Snippet.php:271
8542
- #, fuzzy
8543
- #| msgid "Tips: 2-4 keywords"
8544
- msgid "Activate Keywords"
8545
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
8546
-
8547
- # @ squirrly-seo
8548
- #: view/Blocks/Snippet.php:277
8549
- #, fuzzy
8550
- #| msgid "Enter even more keywords."
8551
- msgid "Meta Keywords"
8552
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
8553
-
8554
- # @ squirrly-seo
8555
- #: view/Blocks/Snippet.php:281
8556
- #, fuzzy
8557
- #| msgid "Tips: 2-4 keywords"
8558
- msgid "+ Add keyword"
8559
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
8560
-
8561
- # @ squirrly-seo
8562
- #: view/Blocks/Snippet.php:293
8563
- #, fuzzy
8564
- #| msgid "Google %sAnalytics ID%s`:"
8565
- msgid "Activate Canonical"
8566
- msgstr "Google %sAnalytics ID%s`:"
8567
-
8568
- #: view/Blocks/Snippet.php:300
8569
- msgid "Leave it blank if you don't have an external canonical"
8570
- msgstr ""
8571
-
8572
- #: view/Blocks/Snippet.php:303
8573
- msgid "Found"
8574
- msgstr ""
8575
-
8576
- #: view/Blocks/Snippet.php:315
8577
- msgid "Default Link"
8578
- msgstr ""
8579
-
8580
- #: view/Blocks/Snippet.php:337 view/Blocks/Snippet.php:463
8581
- #: view/Blocks/Snippet.php:712 view/Blocks/Snippet.php:950
8582
- #: view/Blocks/Snippet.php:1083
8583
- msgid ""
8584
- "To edit the snippet, you have to activate Squirrly SEO for this page first"
8585
- msgstr ""
8586
-
8587
- # @ squirrly-seo
8588
- #: view/Blocks/Snippet.php:346
8589
- #, fuzzy
8590
- #| msgid "Squirrly LIVE SEO assistant"
8591
- msgid "Activate Squirrly Snippet for this page"
8592
- msgstr "Squirrly LIVE SEO-Assistent"
8593
-
8594
- #: view/Blocks/Snippet.php:351 view/Blocks/Snippet.php:717
8595
- #: view/Blocks/Snippet.php:955
8596
- msgid "Post Type"
8597
- msgstr ""
8598
-
8599
- #: view/Blocks/Snippet.php:353 view/Blocks/Snippet.php:681
8600
- #: view/Blocks/Snippet.php:719
8601
- msgid "OG Type"
8602
- msgstr ""
8603
-
8604
- #: view/Blocks/Snippet.php:383
8605
- #, php-format
8606
- msgid ""
8607
- "JSON-LD is disable for this Post Type (%s). See %sSquirrly > SEO Settings > "
8608
- "Automation%s."
8609
- msgstr ""
8610
-
8611
- #: view/Blocks/Snippet.php:410
8612
- msgid "JSON-LD Code"
8613
- msgstr ""
8614
-
8615
- #: view/Blocks/Snippet.php:415 view/Blocks/Snippet.php:689
8616
- #: view/Blocks/Snippet.php:930
8617
- msgid "(Auto)"
8618
- msgstr ""
8619
-
8620
- #: view/Blocks/Snippet.php:416
8621
- msgid "Custom Code"
8622
- msgstr ""
8623
-
8624
- #: view/Blocks/Snippet.php:426
8625
- msgid "Custom JSON-LD Code"
8626
- msgstr ""
8627
-
8628
- #: view/Blocks/Snippet.php:427
8629
- #, php-format
8630
- msgid "Add JSON-LD code from %sSchema Generator Online%s."
8631
- msgstr ""
8632
-
8633
- #: view/Blocks/Snippet.php:436
8634
- msgid "Current JSON-LD Code"
8635
- msgstr ""
8636
-
8637
- #: view/Blocks/Snippet.php:444
8638
- msgid "Validate"
8639
- msgstr ""
8640
-
8641
- #: view/Blocks/Snippet.php:475 view/Blocks/Snippet.php:732
8642
- #, php-format
8643
- msgid ""
8644
- "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
8645
- "will not load for this post type on the frontend."
8646
- msgstr ""
8647
-
8648
- #: view/Blocks/Snippet.php:492
8649
- msgid "How this page appears on Facebook"
8650
- msgstr ""
8651
-
8652
- #: view/Blocks/Snippet.php:498
8653
- msgid "Edit Open Graph"
8654
- msgstr ""
8655
-
8656
- #: view/Blocks/Snippet.php:507 view/Blocks/Snippet.php:765
8657
- msgid "The image size must be at least 500 pixels wide"
8658
- msgstr ""
8659
-
8660
- #: view/Blocks/Snippet.php:525 view/Blocks/Snippet.php:784
8661
- msgid ""
8662
- "This is the Featured Image. You can change it if you edit the snippet and "
8663
- "upload another image."
8664
- msgstr ""
8665
-
8666
- #: view/Blocks/Snippet.php:537
8667
- msgid "Please save the post first to be able to edit the Squirrly SEO Snippet."
8668
- msgstr ""
8669
-
8670
- #: view/Blocks/Snippet.php:554 view/Blocks/Snippet.php:812
8671
- msgid "Media Image"
8672
- msgstr ""
8673
-
8674
- #: view/Blocks/Snippet.php:558 view/Blocks/Snippet.php:816
8675
- #: view/Research/Briefcase.php:459 view/SeoSettings/Favicon.php:77
8676
- msgid "Upload"
8677
- msgstr ""
8678
-
8679
- #: view/Blocks/Snippet.php:559 view/Blocks/Snippet.php:817
8680
- msgid "Image size must be at least 500 pixels wide"
8681
- msgstr ""
8682
-
8683
- #: view/Blocks/Snippet.php:666
8684
- msgid "Author Link"
8685
- msgstr ""
8686
-
8687
- #: view/Blocks/Snippet.php:667
8688
- msgid "For multiple authors, separate their Facebook links with commas"
8689
- msgstr ""
8690
-
8691
- #: view/Blocks/Snippet.php:749
8692
- msgid "How this page appears on Twitter"
8693
- msgstr ""
8694
-
8695
- #: view/Blocks/Snippet.php:755
8696
- msgid "Edit Twitter Card"
8697
- msgstr ""
8698
-
8699
- #: view/Blocks/Snippet.php:925
8700
- msgid "Card Type"
8701
- msgstr ""
8702
-
8703
- #: view/Blocks/Snippet.php:926 view/SeoSettings/Social.php:285
8704
- #, php-format
8705
- msgid "Every change needs %sTwitter Card Validator%s"
8706
- msgstr ""
8707
-
8708
- #: view/Blocks/Snippet.php:931
8709
- msgid "summary"
8710
- msgstr ""
8711
-
8712
- #: view/Blocks/Snippet.php:932
8713
- msgid "summary_large_image"
8714
- msgstr ""
8715
-
8716
- #: view/Blocks/Snippet.php:957
8717
- msgid "Twitter Type"
8718
- msgstr ""
8719
-
8720
- #: view/Blocks/Snippet.php:970
8721
- #, php-format
8722
- msgid ""
8723
- "You selected '%s' in %sSettings > Reading%s. It's important to uncheck that "
8724
- "option."
8725
- msgstr ""
8726
-
8727
- #: view/Blocks/Snippet.php:990 view/Blocks/Snippet.php:1021
8728
- #, php-format
8729
- msgid ""
8730
- "This Post Type (%s) has Nofollow set in Automation. See %sSquirrly > SEO "
8731
- "Settings > Automation%s."
8732
- msgstr ""
8733
-
8734
- #: view/Blocks/Snippet.php:997 view/Blocks/Snippet.php:1028
8735
- #: view/SeoSettings/Automation.php:177 view/SeoSettings/Automation.php:204
8736
- msgid "Activate Robots Meta"
8737
- msgstr ""
8738
-
8739
- #: view/Blocks/Snippet.php:1008
8740
- msgid "Let Google Index This Page"
8741
- msgstr ""
8742
-
8743
- #: view/Blocks/Snippet.php:1051
8744
- #, php-format
8745
- msgid ""
8746
- "Show in sitemap for this Post Type (%s) was excluded from %sSquirrly > SEO "
8747
- "Settings > Automation%s."
8748
- msgstr ""
8749
-
8750
- #: view/Blocks/Snippet.php:1058 view/SeoSettings/Automation.php:223
8751
- #: view/SeoSettings/Sitemap.php:33
8752
- msgid "Activate Sitemap"
8753
- msgstr ""
8754
-
8755
- #: view/Blocks/Snippet.php:1068
8756
- msgid "Show it in Sitemap.xml"
8757
- msgstr ""
8758
-
8759
- # @ squirrly-seo
8760
- #: view/Blocks/Snippet.php:1106
8761
- #, fuzzy
8762
- #| msgid "Squirrly LIVE SEO assistant"
8763
- msgid "Loading Squirrly Snippet ..."
8764
- msgstr "Squirrly LIVE SEO-Assistent"
8765
-
8766
- # @ squirrly-seo
8767
- #: view/Blocks/Snippet.php:1132
8768
- #, fuzzy
8769
- #| msgid "Squirrly LIVE SEO assistant"
8770
- msgid "Enable Squirrly SEO to load Squirrly Snippet"
8771
- msgstr "Squirrly LIVE SEO-Assistent"
8772
-
8773
- # @ squirrly-seo
8774
- #: view/Blocks/Snippet.php:1144
8775
- #, fuzzy, php-format
8776
- #| msgid "Google %sAnalytics ID%s`:"
8777
- msgid "%sPlease connect to SquirrlyCloud first%s"
8778
- msgstr "Google %sAnalytics ID%s`:"
8779
-
8780
- #: view/Blocks/Snippet.php:1153
8781
- msgid ""
8782
- "Couldn't save your changes. Immunify360 or some other service on your web "
8783
- "hosting account interferes with your WordPress. Please contact the hosting "
8784
- "provider`s support team"
8785
- msgstr ""
8786
-
8787
- #: view/Blocks/Stats.php:45
8788
- msgid "Hello"
8789
- msgstr ""
8790
-
8791
- #: view/Blocks/Stats.php:51
8792
- #, php-format
8793
- msgid "%s SEO Protection"
8794
- msgstr ""
8795
-
8796
- #: view/Blocks/Stats.php:54
8797
- msgid "All protection layers are activated."
8798
- msgstr ""
8799
-
8800
- #: view/Blocks/Stats.php:56
8801
- #, php-format
8802
- msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
8803
- msgstr ""
8804
-
8805
- #: view/Blocks/Stats.php:60
8806
- msgid "How does this work?"
8807
- msgstr ""
8808
-
8809
- #: view/Blocks/Stats.php:68
8810
- msgid "Pages SEO'ed"
8811
- msgstr ""
8812
-
8813
- #: view/Blocks/Stats.php:74
8814
- msgid "Post Types Covered"
8815
- msgstr ""
8816
-
8817
- #: view/Blocks/Stats.php:79 view/Goals/CheckSeo.php:111
8818
- #, php-format
8819
- msgid "%s Aspects"
8820
- msgstr ""
8821
-
8822
- # @ squirrly-seo
8823
- #: view/Blocks/Stats.php:80 view/Goals/CheckSeo.php:112
8824
- #, fuzzy
8825
- #| msgid "Squirrly settings"
8826
- msgid "Handled by Squirrly Genius."
8827
- msgstr "Squirrly Einstellungen"
8828
-
8829
- #: view/Blocks/Stats.php:82
8830
- msgid "Can I see them?"
8831
- msgstr ""
8832
-
8833
- #: view/Blocks/Stats.php:86 view/Goals/Goals.php:43
8834
- msgid "Run SEO Test"
8835
- msgstr ""
8836
-
8837
- #: view/Blocks/Support.php:7
8838
- msgid "Go to Profile"
8839
- msgstr ""
8840
-
8841
- #: view/Blocks/Support.php:7 view/Blocks/Support.php:8
8842
- msgid "Profile"
8843
- msgstr ""
8844
-
8845
- # @ squirrly-seo
8846
- #: view/Blocks/Support.php:18
8847
- #, fuzzy
8848
- #| msgid "support page"
8849
- msgid "Support"
8850
- msgstr "Support Page"
8851
-
8852
- # @ squirrly-seo
8853
- #: view/Blocks/Support.php:21
8854
- #, fuzzy
8855
- #| msgid "Write a new post with Squirrly"
8856
- msgid "Need Help with Squirrly SEO?"
8857
- msgstr "Schreiben Sie einen neuen Beitrag mit Squirrly"
8858
-
8859
- #: view/Blocks/Support.php:23 view/Blocks/Support.php:90
8860
- #, php-format
8861
- msgid "10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s."
8862
- msgstr ""
8863
-
8864
- #: view/Blocks/Support.php:24 view/Blocks/Support.php:91
8865
- #, php-format
8866
- msgid "How To Squirrly %swebsite%s."
8867
- msgstr ""
8868
-
8869
- #: view/Blocks/Support.php:25 view/Blocks/Support.php:92
8870
- #, php-format
8871
- msgid "Facebook %sSupport Community%s."
8872
- msgstr ""
8873
-
8874
- #: view/Blocks/Support.php:26 view/Blocks/Support.php:93
8875
- #, php-format
8876
- msgid "Facebook %sMessenger%s."
8877
- msgstr ""
8878
-
8879
- #: view/Blocks/Support.php:27
8880
- #, php-format
8881
- msgid "Twitter %sSupport%s."
8882
- msgstr ""
8883
-
8884
- #: view/Blocks/Support.php:35
8885
- msgid "How was your Squirrly experience today?"
8886
- msgstr ""
8887
-
8888
- #: view/Blocks/Support.php:42
8889
- msgid "Annoying"
8890
- msgstr ""
8891
-
8892
- #: view/Blocks/Support.php:46
8893
- msgid "Bad"
8894
- msgstr ""
8895
-
8896
- #: view/Blocks/Support.php:50
8897
- msgid "Nice"
8898
- msgstr ""
8899
-
8900
- #: view/Blocks/Support.php:54
8901
- msgid "Great"
8902
- msgstr ""
8903
-
8904
- #: view/Blocks/Support.php:58
8905
- msgid "Love it"
8906
- msgstr ""
8907
-
8908
- #: view/Blocks/Support.php:70
8909
- msgid "How was Squirrly today?"
8910
- msgstr ""
8911
-
8912
- #: view/Blocks/Support.php:85
8913
- msgid "Send feedback"
8914
- msgstr ""
8915
-
8916
- #: view/Blocks/Support.php:89
8917
- msgid "For more support:"
8918
- msgstr ""
8919
-
8920
- #: view/Blocks/Support.php:94
8921
- #, php-format
8922
- msgid "New Lessons Mon. and Tue. on %sTwitter%s."
8923
- msgstr ""
8924
-
8925
- #: view/Blocks/Support.php:99
8926
- msgid "Thank you! You can send us a happy face tomorrow too."
8927
- msgstr ""
8928
-
8929
- #: view/Blocks/Uninstall.php:4
8930
- msgid "I no longer need the plugin"
8931
- msgstr ""
8932
-
8933
- #: view/Blocks/Uninstall.php:8
8934
- msgid "I found a better plugin"
8935
- msgstr ""
8936
-
8937
- #: view/Blocks/Uninstall.php:9
8938
- msgid "Please share which plugin"
8939
- msgstr ""
8940
-
8941
- #: view/Blocks/Uninstall.php:12
8942
- msgid "I couldn't get the plugin to work"
8943
- msgstr ""
8944
-
8945
- #: view/Blocks/Uninstall.php:16
8946
- msgid "It's a temporary deactivation"
8947
- msgstr ""
8948
-
8949
- #: view/Blocks/Uninstall.php:20
8950
- msgid "Other"
8951
- msgstr ""
8952
-
8953
- #: view/Blocks/Uninstall.php:21
8954
- msgid "Please share the reason"
8955
- msgstr ""
8956
-
8957
- # @ squirrly-seo
8958
- #: view/Blocks/Uninstall.php:29
8959
- #, fuzzy
8960
- #| msgid "Squirrly LIVE SEO assistant"
8961
- msgid "Deactivate Squirrly SEO"
8962
- msgstr "Squirrly LIVE SEO-Assistent"
8963
-
8964
- #: view/Blocks/Uninstall.php:35
8965
- msgid "Please share why you are deactivating Squirrly:"
8966
- msgstr ""
8967
-
8968
- #: view/Blocks/Uninstall.php:52
8969
- msgid "Submit &amp; Deactivate"
8970
- msgstr ""
8971
-
8972
- #: view/Blocks/Uninstall.php:53
8973
- msgid "Skip &amp; Deactivate"
8974
- msgstr ""
8975
-
8976
- # @ squirrly-seo
8977
- #: view/Blocks/Uninstall.php:59
8978
- #, fuzzy
8979
- #| msgid "Google %sAnalytics ID%s`:"
8980
- msgid "Disconnect from Squirrly Cloud"
8981
- msgstr "Google %sAnalytics ID%s`:"
8982
-
8983
- #: view/Blocks/VersionBar.php:14
8984
- #, php-format
8985
- msgid ""
8986
- "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
8987
- "accurate and objective."
8988
- msgstr ""
8989
-
8990
- #: view/Blocks/VersionBar.php:17
8991
- #, php-format
8992
- msgid ""
8993
- "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
8994
- msgstr ""
8995
-
8996
- #: view/Blocks/VersionBar.php:23
8997
- #, php-format
8998
- msgid ""
8999
- "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
9000
- "Google Search Console. %sPositions shown by GSC are averages, not exact "
9001
- "positions in SERPs. %sTo have your rankings checked daily please upgrade "
9002
- "your plan to %sBusiness Plan%s"
9003
- msgstr ""
9004
-
9005
- #: view/Blocks/VersionBar.php:30
9006
- #, php-format
9007
- msgid ""
9008
- "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
9009
- "hour."
9010
- msgstr ""
9011
-
9012
- #: view/Blocks/VersionBar.php:34
9013
- #, php-format
9014
- msgid ""
9015
- "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
9016
- "once a week. %sTo add more pages in Audit and refresh the audit every hour "
9017
- "please upgrade your plan to %sPRO Plan%s"
9018
- msgstr ""
9019
-
9020
- #: view/Blocks/VersionBar.php:41
9021
- #, php-format
9022
- msgid ""
9023
- "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
9024
- "audit for each page every 5 mins."
9025
- msgstr ""
9026
-
9027
- #: view/Blocks/VersionBar.php:45
9028
- #, php-format
9029
- msgid ""
9030
- "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
9031
- "audit for each page every 5 mins. %sTo add more pages in Focus Pages please "
9032
- "upgrade your plan to %sPRO Plan%s"
9033
- msgstr ""
9034
-
9035
- #: view/Blocks/VersionBar.php:49
9036
- #, php-format
9037
- msgid ""
9038
- "Your current plan is OLD Squirrly plan: Please read the official notes about "
9039
- "it %shttps://www.squirrly.co/you-received-access-to-all-updates-from-"
9040
- "squirrly-seo/%s"
9041
- msgstr ""
9042
-
9043
- #: view/Blocks/VersionBar.php:57
9044
- #, php-format
9045
- msgid ""
9046
- "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
9047
- "tasks to get 100%% optimized posts and pages."
9048
- msgstr ""
9049
-
9050
- #: view/Blocks/VersionBar.php:61
9051
- #, php-format
9052
- msgid ""
9053
- "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
9054
- "pages. %sTo optimize your posts to 100%% please upgrade your plan to %sPRO "
9055
- "Plan%s"
9056
- msgstr ""
9057
-
9058
- #: view/Blocks/VersionBar.php:69
9059
- #, php-format
9060
- msgid ""
9061
- "%sResearch %s:%s You have %s researches left for your account. The research "
9062
- "will return up to 20 results for each keyword. %sFor more Researches and up "
9063
- "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
9064
- msgstr ""
9065
-
9066
- #: view/Blocks/VersionBar.php:73
9067
- #, php-format
9068
- msgid ""
9069
- "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
9070
- "Deep Keyword Research and get up to 50 results on each research."
9071
- msgstr ""
9072
-
9073
- #: view/Blocks/VersionBar.php:77
9074
- #, php-format
9075
- msgid ""
9076
- "%sResearch %s:%s You have %s researches left for your account. The research "
9077
- "will return up to 10 results for each keyword. %sFor more Researches and up "
9078
- "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
9079
- msgstr ""
9080
-
9081
- #: view/Blocks/VersionBar.php:84
9082
- #, php-format
9083
- msgid ""
9084
- "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
9085
- "optimize your posts and pages."
9086
- msgstr ""
9087
-
9088
- #: view/Blocks/VersionBar.php:89
9089
- #, php-format
9090
- msgid ""
9091
- "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
9092
- "keywords to organize the keywords by your SEO strategy."
9093
- msgstr ""
9094
-
9095
- #: view/Blocks/VersionBar.php:95
9096
- #, php-format
9097
- msgid ""
9098
- "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
9099
- "find better matching keywords based on your research history."
9100
- msgstr ""
9101
-
9102
- #: view/Blocks/VersionBar.php:99
9103
- #, php-format
9104
- msgid ""
9105
- "This feature is only available for PRO and Business accounts. %sTo get "
9106
- "Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s"
9107
- msgstr ""
9108
-
9109
- #: view/Blocks/VersionBar.php:108
9110
- #, php-format
9111
- msgid ""
9112
- "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
9113
- "SEO for free."
9114
- msgstr ""
9115
-
9116
- #: view/Blocks/VersionBar.php:114
9117
- #, php-format
9118
- msgid ""
9119
- "%sOn-Page SEO Settings:%s This feature is included in all versions of "
9120
- "Squirrly SEO for free."
9121
- msgstr ""
9122
-
9123
- #: view/BulkSeo/Bulkseo.php:183
9124
- #, php-format
9125
- msgid "No data for this filter. %sShow All%s records for this post type."
9126
- msgstr ""
9127
-
9128
- #: view/BulkSeo/Bulkseo.php:185
9129
- msgid "No data found for this post type. Try other post types."
9130
- msgstr ""
9131
-
9132
- #: view/BulkSeo/BulkseoRow.php:26
9133
- #, php-format
9134
- msgid "View &#8220;%s&#8221;"
9135
- msgstr ""
9136
-
9137
- # @ squirrly-seo
9138
- #: view/Connect/GoogleAnalytics.php:9
9139
- #, fuzzy
9140
- #| msgid "Google %sAnalytics ID%s`:"
9141
- msgid "Google Analytics"
9142
- msgstr "Google %sAnalytics ID%s`:"
9143
-
9144
- # @ squirrly-seo
9145
- #: view/Connect/GoogleAnalytics.php:14
9146
- #, fuzzy
9147
- #| msgid "Google %sAnalytics ID%s`:"
9148
- msgid "You are connected to Google Analytics"
9149
- msgstr "Google %sAnalytics ID%s`:"
9150
-
9151
- #: view/Connect/GoogleAnalytics.php:20 view/Connect/GoogleSearchConsole.php:18
9152
- msgid "Disconnect"
9153
- msgstr ""
9154
-
9155
- # @ squirrly-seo
9156
- #: view/Connect/GoogleAnalytics.php:30
9157
- #, fuzzy
9158
- #| msgid "Google %sAnalytics ID%s`:"
9159
- msgid "Connect this site to Google Analytics"
9160
- msgstr "Google %sAnalytics ID%s`:"
9161
-
9162
- #: view/Connect/GoogleAnalytics.php:31
9163
- msgid ""
9164
- "Connect Google Analytics and get traffic insights for your website on each "
9165
- "Audit"
9166
- msgstr ""
9167
-
9168
- #: view/Connect/GoogleAnalytics.php:35 view/Connect/GoogleSearchConsole.php:34
9169
- #: view/SeoSettings/Tracking.php:64 view/SeoSettings/Webmaster.php:64
9170
- msgid "Sign in"
9171
- msgstr ""
9172
-
9173
- #: view/Connect/GoogleAnalytics.php:40 view/Connect/GoogleSearchConsole.php:39
9174
- #: view/SeoSettings/Tracking.php:69 view/SeoSettings/Webmaster.php:69
9175
- msgid "Check connection"
9176
- msgstr ""
9177
-
9178
- # @ squirrly-seo
9179
- #: view/Connect/GoogleSearchConsole.php:12
9180
- #, fuzzy
9181
- #| msgid "Google %sAnalytics ID%s`:"
9182
- msgid "You are connected to Google Search Console"
9183
- msgstr "Google %sAnalytics ID%s`:"
9184
-
9185
- # @ squirrly-seo
9186
- #: view/Connect/GoogleSearchConsole.php:29
9187
- #, fuzzy
9188
- #| msgid "Google %sAnalytics ID%s`:"
9189
- msgid "Connect this site to Google Search Console"
9190
- msgstr "Google %sAnalytics ID%s`:"
9191
-
9192
- #: view/Connect/GoogleSearchConsole.php:30
9193
- msgid ""
9194
- "Connect Google Search Console and get traffic insights for your website on "
9195
- "each Audit"
9196
- msgstr ""
9197
-
9198
- #: view/Errors/Maintenance.php:20
9199
- #, php-format
9200
- msgid ""
9201
- "Unfortunately Squirrly Cloud is down for a bit of maintenance right now. But "
9202
- "we'll be back in a minute. %srefresh the page%s."
9203
- msgstr ""
9204
-
9205
- #: view/FocusPages/Addpage.php:23 view/FocusPages/Pagelist.php:24
9206
- msgid ""
9207
- "Focus Pages bring you clear methods to take your pages from never found to "
9208
- "always found on Google. Rank your pages by influencing the right ranking "
9209
- "factors. Turn everything that you see here to Green and you will win."
9210
- msgstr ""
9211
-
9212
- #: view/FocusPages/Addpage.php:175
9213
- msgid "Set Focus Page"
9214
- msgstr ""
9215
-
9216
- #: view/FocusPages/Addpage.php:179
9217
- msgid "Only pages with IDs can be added as Focus Page"
9218
- msgstr ""
9219
-
9220
- #: view/FocusPages/Addpage.php:179
9221
- msgid "Can't be added"
9222
- msgstr ""
9223
-
9224
- #: view/FocusPages/Addpage.php:182
9225
- msgid "See Tasks"
9226
- msgstr ""
9227
-
9228
- #: view/FocusPages/Bestpractice.php:15
9229
- msgid "Best Practices"
9230
- msgstr ""
9231
-
9232
- #: view/FocusPages/FocusPageRow.php:58 view/FocusPages/FocusPageRow.php:122
9233
- #, php-format
9234
- msgid "Congratulations! You ranked on %s on Google with the keyword: %s"
9235
- msgstr ""
9236
-
9237
- # @ squirrly-seo
9238
- #: view/FocusPages/FocusPageRow.php:75
9239
- #, fuzzy
9240
- #| msgid "Your E-mail:"
9241
- msgid "Audited"
9242
- msgstr "Ihre E-Mail Adresse:"
9243
-
9244
- #: view/FocusPages/FocusPageRow.php:90
9245
- msgid "You can refresh the audit once every 5 minutes"
9246
- msgstr ""
9247
-
9248
- #: view/FocusPages/FocusPageRow.php:92
9249
- msgid "Request new audit"
9250
- msgstr ""
9251
-
9252
- # @ squirrly-seo
9253
- #: view/FocusPages/FocusPageRow.php:96 view/Ranking/Rankings.php:224
9254
- #: view/Research/History.php:32
9255
- #, fuzzy
9256
- #| msgid "Your E-mail:"
9257
- msgid "Details"
9258
- msgstr "Ihre E-Mail Adresse:"
9259
-
9260
- #: view/FocusPages/FocusPageRow.php:114
9261
- msgid "Currently processing data. Please refresh in a few minutes."
9262
- msgstr ""
9263
-
9264
- # @ squirrly-seo
9265
- #: view/FocusPages/FocusPageRow.php:120 view/FocusPages/FocusPageRow.php:140
9266
- #: view/FocusPages/FocusPages.php:54
9267
- #, fuzzy
9268
- #| msgid "Change it >>"
9269
- msgid "Chance to Rank"
9270
- msgstr "Ändern >>"
9271
-
9272
- #: view/FocusPages/FocusPageRow.php:124 view/FocusPages/FocusPageRow.php:141
9273
- #, php-format
9274
- msgid ""
9275
- "The Chances of Ranking is dynamically calculated by the Squirrly Machine "
9276
- "Learning based on the main keyword you selected for this Focus Page. %sThe "
9277
- "algorithm behind the Chances of Ranking is complex but the fastest way to "
9278
- "increase your chances is to complete the main tasks like Visibility, Keyword "
9279
- "Competition, Content Optimization, Content Length, Social Signals, Daily "
9280
- "Traffic, Inner Links, and External Nofollow Links. %sIn time you need to "
9281
- "complete all the Focus Pages tasks to rank higher and higher and to maintain "
9282
- "your rank especially if your keyword is a competitive one. "
9283
- msgstr ""
9284
-
9285
- # @ squirrly-seo
9286
- #: view/FocusPages/FocusPageRow.php:175
9287
- #, fuzzy
9288
- #| msgid "Could not send the email..."
9289
- msgid "Do you want to delete the Focus Page?"
9290
- msgstr "Konnte E-Mail nicht senden ..."
9291
-
9292
- #: view/FocusPages/FocusPageRow.php:181
9293
- msgid "Delete Focus Page"
9294
- msgstr ""
9295
-
9296
- #: view/FocusPages/FocusPageStats.php:39
9297
- #, php-format
9298
- msgid "Week %s of %s"
9299
- msgstr ""
9300
-
9301
- #: view/FocusPages/FocusPageStats.php:53
9302
- #, php-format
9303
- msgid "Rank increased %s positions for the keyword: %s"
9304
- msgstr ""
9305
-
9306
- #: view/FocusPages/FocusPageStats.php:59
9307
- #, php-format
9308
- msgid "Time on Page increased with %s minutes"
9309
- msgstr ""
9310
-
9311
- #: view/FocusPages/FocusPageStats.php:64
9312
- #, php-format
9313
- msgid "Page Traffic increased with %s visits"
9314
- msgstr ""
9315
-
9316
- #: view/FocusPages/FocusPageStats.php:70
9317
- #, php-format
9318
- msgid "Organic Clicks increased with %s for the keyword: %s"
9319
- msgstr ""
9320
-
9321
- #: view/FocusPages/FocusPageStats.php:76
9322
- #, php-format
9323
- msgid "Page Authority increased with %s"
9324
- msgstr ""
9325
-
9326
- #: view/FocusPages/FocusPageStats.php:81
9327
- #, php-format
9328
- msgid "You got %s Social Shares"
9329
- msgstr ""
9330
-
9331
- #: view/FocusPages/FocusPageStats.php:88
9332
- #, php-format
9333
- msgid "Page loads with %ss faster"
9334
- msgstr ""
9335
-
9336
- # @ squirrly-seo
9337
- #: view/FocusPages/FocusPageStats.php:114
9338
- #, fuzzy
9339
- #| msgid "Change it >>"
9340
- msgid "Chances of Ranking"
9341
- msgstr "Ändern >>"
9342
-
9343
- #: view/FocusPages/FocusPageStats.php:115
9344
- #: view/FocusPages/FocusPageStats.php:141
9345
- #, php-format
9346
- msgid "the latest %s days evolution for this Focus Page"
9347
- msgstr ""
9348
-
9349
- # @ squirrly-seo
9350
- #: view/FocusPages/FocusPageStats.php:170
9351
- #, fuzzy
9352
- #| msgid "Do the research"
9353
- msgid "Keyword Ranking"
9354
- msgstr "Recherchieren"
9355
-
9356
- #: view/FocusPages/FocusPageStats.php:171
9357
- #, php-format
9358
- msgid "the latest %s days ranking for %s"
9359
- msgstr ""
9360
-
9361
- #: view/FocusPages/FocusPageStats.php:197
9362
- #, php-format
9363
- msgid "the latest %s days page views"
9364
- msgstr ""
9365
-
9366
- #: view/FocusPages/FocusPages.php:19
9367
- msgid "Current Ranking Drawbacks"
9368
- msgstr ""
9369
-
9370
- #: view/FocusPages/FocusPages.php:99
9371
- #, php-format
9372
- msgid "No data for this filter. %sShow All%s Focus Pages."
9373
- msgstr ""
9374
-
9375
- #: view/FocusPages/FocusPages.php:103
9376
- msgid "Welcome to Focus Pages"
9377
- msgstr ""
9378
-
9379
- #: view/FocusPages/FocusPages.php:105
9380
- msgid "Add a new page as Focus Page to get started"
9381
- msgstr ""
9382
-
9383
- #: view/FocusPages/FocusPages.php:109
9384
- msgid "Tips: Which Page Should I Choose?"
9385
- msgstr ""
9386
-
9387
- #: view/FocusPages/FocusPages.php:111
9388
- msgid ""
9389
- "One of the most important pages in your website, you money-makers, the pages "
9390
- "that bring you conversions."
9391
- msgstr ""
9392
-
9393
- #: view/FocusPages/FocusPages.php:112
9394
- msgid "Don't choose your Home Page, Contact Page or About Use page."
9395
- msgstr ""
9396
-
9397
- #: view/FocusPages/Pagelist.php:59
9398
- #, php-format
9399
- msgid ""
9400
- "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
9401
- "to generate the new audit for a focus page. There is a lot of processing "
9402
- "involved."
9403
- msgstr ""
9404
-
9405
- # @ squirrly-seo
9406
- #: view/FocusPages/Settings.php:21
9407
- #, fuzzy
9408
- #| msgid "Squirrly settings"
9409
- msgid "Focus Pages Settings"
9410
- msgstr "Squirrly Einstellungen"
9411
-
9412
- #: view/Frontend/Assistant.php:34 view/Post.php:8
9413
- msgid ""
9414
- "To load Squirrly Live Assistant and optimize this page, click to connect to "
9415
- "Squirrly Data Cloud."
9416
- msgstr ""
9417
-
9418
- #: view/Goals/CheckSeo.php:25
9419
- msgid ""
9420
- "See all the improvements from all Squirrly SEO features in a single panel."
9421
- msgstr ""
9422
-
9423
- #: view/Goals/CheckSeo.php:52
9424
- msgid "See results"
9425
- msgstr ""
9426
-
9427
- #: view/Goals/CheckSeo.php:99
9428
- msgid "Website SEO Check"
9429
- msgstr ""
9430
-
9431
- #: view/Goals/CheckSeo.php:113
9432
- msgid ""
9433
- "Remember that it may take up to 1 minute for a complete SEO check. There is "
9434
- "a lot of processing involved."
9435
- msgstr ""
9436
-
9437
- #: view/Goals/CheckSeo.php:140
9438
- msgid "Congratulations!"
9439
- msgstr ""
9440
-
9441
- #: view/Goals/Goals.php:36
9442
- #, php-format
9443
- msgid "%s goals for today"
9444
- msgstr ""
9445
-
9446
- #: view/Goals/Goals.php:51
9447
- msgid "Reach New Goals"
9448
- msgstr ""
9449
-
9450
- #: view/Goals/Goals.php:52
9451
- msgid "Squirrly Smart Strategy sets new goals."
9452
- msgstr ""
9453
-
9454
- #: view/Goals/Goals.php:54
9455
- msgid "How unique are these goals?"
9456
- msgstr ""
9457
-
9458
- #: view/Goals/Goals.php:66
9459
- msgid "Daily Progress"
9460
- msgstr ""
9461
-
9462
- #: view/Goals/Goals.php:76
9463
- msgid "Today's Progress"
9464
- msgstr ""
9465
-
9466
- #: view/Goals/Goals.php:87
9467
- #, php-format
9468
- msgid ""
9469
- "Hint: remember to click: %sShow me how - Mark as Done%s, when you complete a "
9470
- "goal."
9471
- msgstr ""
9472
-
9473
- #: view/Goals/Goals.php:103
9474
- msgid "Goal completed. Good Job!"
9475
- msgstr ""
9476
-
9477
- #: view/Goals/Goals.php:115
9478
- msgid "use"
9479
- msgstr ""
9480
-
9481
- #: view/Goals/Goals.php:122
9482
- msgid "Time to complete this goal."
9483
- msgstr ""
9484
-
9485
- #: view/Goals/Goals.php:122
9486
- msgid "up to"
9487
- msgstr ""
9488
-
9489
- #: view/Goals/Goals.php:137
9490
- msgid "Show me how"
9491
- msgstr ""
9492
-
9493
- #: view/Goals/Goals.php:141
9494
- msgid "Goal is not done!"
9495
- msgstr ""
9496
-
9497
- #: view/Goals/Goals.php:155
9498
- msgid "SOLUTION"
9499
- msgstr ""
9500
-
9501
- #: view/Goals/Goals.php:167
9502
- msgid "Let's do this"
9503
- msgstr ""
9504
-
9505
- #: view/Goals/Goals.php:177
9506
- msgid "Mark As Done"
9507
- msgstr ""
9508
-
9509
- #: view/Goals/Goals.php:194
9510
- msgid "Do you want to ignore this goal?"
9511
- msgstr ""
9512
-
9513
- #: view/Goals/Goals.php:216
9514
- msgid "Want to keep boosting your SEO?"
9515
- msgstr ""
9516
-
9517
- #: view/Goals/Goals.php:218
9518
- msgid "Optimize your Posts and Pages"
9519
- msgstr ""
9520
-
9521
- #: view/Goals/Goals.php:243
9522
- msgid "Show hidden goals"
9523
- msgstr ""
9524
-
9525
- #: view/Goals/Goals.php:253
9526
- msgid "Next goals on"
9527
- msgstr ""
9528
-
9529
- #: view/Goals/Goals.php:262
9530
- msgid "Load more goals if exist"
9531
- msgstr ""
9532
-
9533
- #: view/Onboarding/Step1.php:21
9534
- msgid "Welcome to Squirrly SEO 2020 (Smart Strategy)"
9535
- msgstr ""
9536
-
9537
- # @ squirrly-seo
9538
- #: view/Onboarding/Step1.php:24 view/Onboarding/Step2.1.php:14
9539
- #: view/Onboarding/Step2.1.php:49 view/Onboarding/Step3.php:14
9540
- #, fuzzy
9541
- #| msgid "SEO Software"
9542
- msgid "Continue"
9543
- msgstr "SEO Software"
9544
-
9545
- #: view/Onboarding/Step1.php:32
9546
- msgid "Your Private SEO Consultant Sets Up the SEO for Your WordPress"
9547
- msgstr ""
9548
-
9549
- #: view/Onboarding/Step1.php:40
9550
- msgid "Getting SEO Automation ready on your WP"
9551
- msgstr ""
9552
-
9553
- #: view/Onboarding/Step1.php:48
9554
- msgid "Activating METAs"
9555
- msgstr ""
9556
-
9557
- #: view/Onboarding/Step1.php:56
9558
- msgid "Activating JSON-LD schema.org"
9559
- msgstr ""
9560
-
9561
- #: view/Onboarding/Step1.php:64
9562
- msgid "Activating Open Graph"
9563
- msgstr ""
9564
-
9565
- #: view/Onboarding/Step1.php:72
9566
- msgid "Activating Twitter Cards"
9567
- msgstr ""
9568
-
9569
- #: view/Onboarding/Step1.php:80
9570
- msgid "Creating your Sitemap"
9571
- msgstr ""
9572
-
9573
- #: view/Onboarding/Step1.php:88
9574
- msgid "Creating robots.txt"
9575
- msgstr ""
9576
-
9577
- #: view/Onboarding/Step1.php:93
9578
- msgid "Success! You are all setup"
9579
- msgstr ""
9580
-
9581
- #: view/Onboarding/Step2.1.php:11
9582
- msgid "14 Days Journey"
9583
- msgstr ""
9584
-
9585
- #: view/Onboarding/Step2.1.php:31
9586
- msgid ""
9587
- "To drive it in the right direction, you have the chance to join (for Free) "
9588
- "the 14 Days Journey to Better Rankings."
9589
- msgstr ""
9590
-
9591
- #: view/Onboarding/Step2.1.php:36
9592
- msgid "You'll get"
9593
- msgstr ""
9594
-
9595
- #: view/Onboarding/Step2.1.php:38
9596
- #, php-format
9597
- msgid ""
9598
- "the %schance to fix in 14 days%s mistakes from years of ineffective SEO."
9599
- msgstr ""
9600
-
9601
- #: view/Onboarding/Step2.1.php:39
9602
- #, php-format
9603
- msgid "the skills you need to %ssucceed in 14 days%s."
9604
- msgstr ""
9605
-
9606
- #: view/Onboarding/Step2.1.php:40
9607
- #, php-format
9608
- msgid ""
9609
- "access to the private %sJourneyTeam community%s where you can share your "
9610
- "experience and talk about it (good and bad, all is accepted)."
9611
- msgstr ""
9612
-
9613
- #: view/Onboarding/Step2.1.php:41
9614
- #, php-format
9615
- msgid ""
9616
- "receive%s help from the JourneyTeam%s and Private Feedback on your journey "
9617
- "from Squirrly."
9618
- msgstr ""
9619
-
9620
- #: view/Onboarding/Step2.1.php:42
9621
- #, php-format
9622
- msgid ""
9623
- "an %sexact recipe to follow for 14 Days%s to bring one of your pages up in "
9624
- "rankings, for a hands-on experience."
9625
- msgstr ""
9626
-
9627
- #: view/Onboarding/Step2.1.php:43
9628
- #, php-format
9629
- msgid ""
9630
- "%sall the costs%s (to third parties) involved with APIs, technology, cloud "
9631
- "computing, etc. %sare fully sponsored by Squirrly%s. We sponsor every new "
9632
- "member who wishes to become part of the winning JourneyTeam."
9633
- msgstr ""
9634
-
9635
- #: view/Onboarding/Step2.2.php:10
9636
- msgid "Start the 14 Days Journey"
9637
- msgstr ""
9638
-
9639
- #: view/Onboarding/Step2.2.php:24
9640
- msgid "Awesome! You are on your way to better results."
9641
- msgstr ""
9642
-
9643
- #: view/Onboarding/Step2.2.php:26
9644
- #, php-format
9645
- msgid "You will receive the %sdaily recipe%s in your %sDashboard%s."
9646
- msgstr ""
9647
-
9648
- #: view/Onboarding/Step2.2.php:33
9649
- #, php-format
9650
- msgid ""
9651
- "%sIn 14 Days you can tell us how it went%s (via messages on our %sFacebook "
9652
- "Page%s) and we'll tell you what you can do to further improve the results "
9653
- "you got during the 14 Days."
9654
- msgstr ""
9655
-
9656
- #: view/Onboarding/Step2.2.php:37
9657
- msgid "Close"
9658
- msgstr ""
9659
-
9660
- #: view/Onboarding/Step2.2.php:41
9661
- msgid "Choose how to continue"
9662
- msgstr ""
9663
-
9664
- #: view/Onboarding/Step2.2.php:51
9665
- msgid "Let's Start My 14 Days Journey"
9666
- msgstr ""
9667
-
9668
- #: view/Onboarding/Step2.2.php:59
9669
- msgid "Nah, there is little interest in this"
9670
- msgstr ""
9671
-
9672
- #: view/Onboarding/Step2.2.php:68
9673
- msgid "Close Window"
9674
- msgstr ""
9675
-
9676
- # @ squirrly-seo
9677
- #: view/Onboarding/Step3.php:11
9678
- #, fuzzy
9679
- #| msgid "Squirrly settings"
9680
- msgid "Import SEO & Settings"
9681
- msgstr "Squirrly Einstellungen"
9682
-
9683
- #: view/Onboarding/Step3.php:29
9684
- msgid "We've detected another SEO Plugin on your site."
9685
- msgstr ""
9686
-
9687
- #: view/Onboarding/Step3.php:33
9688
- #, php-format
9689
- msgid ""
9690
- "%sImport your settings and SEO%s from the following plugin into your new "
9691
- "Squirrly SEO"
9692
- msgstr ""
9693
-
9694
- #: view/Onboarding/Step3.php:54 view/SeoSettings/Backup.php:63
9695
- #: view/SeoSettings/Backup.php:92
9696
- msgid "We couldn't find any SEO plugin or theme to import from."
9697
- msgstr ""
9698
-
9699
- #: view/Onboarding/Step3.php:63
9700
- msgid "What you gain"
9701
- msgstr ""
9702
-
9703
- #: view/Onboarding/Step3.php:65
9704
- msgid ""
9705
- "Everything will be the same in your site, and Google will keep all your "
9706
- "rankings safe."
9707
- msgstr ""
9708
-
9709
- #: view/Onboarding/Step3.php:66
9710
- msgid ""
9711
- "Squirrly SEO covers everything that Google used to see from the old plugin, "
9712
- "and brings new stuff in. That's why Google will do more than keep your "
9713
- "rankings safe. It might award you with brand new page 1 positions if you use "
9714
- "Squirrly."
9715
- msgstr ""
9716
-
9717
- #: view/Onboarding/Step3.php:70
9718
- msgid "If you decide to switch back"
9719
- msgstr ""
9720
-
9721
- #: view/Onboarding/Step3.php:72
9722
- msgid ""
9723
- "you can always switch back, without any issues. Your old plugin will remain "
9724
- "the same. We don't delete it."
9725
- msgstr ""
9726
-
9727
- #: view/Onboarding/Step3.php:79
9728
- msgid "Skip this step"
9729
- msgstr ""
9730
-
9731
- #: view/Onboarding/Step3.php:84
9732
- msgid "We haven't detected other SEO Plugins on your site."
9733
- msgstr ""
9734
-
9735
- #: view/Onboarding/Step3.php:87
9736
- msgid "Click Continue to go to the next step."
9737
- msgstr ""
9738
-
9739
- #: view/Onboarding/Step4.php:19
9740
- msgid ""
9741
- "Your private SEO consultant is now accessing our cloud services to start "
9742
- "analyzing your site."
9743
- msgstr ""
9744
-
9745
- #: view/Onboarding/Step4.php:20
9746
- msgid ""
9747
- "Our machine learning is now trying to match some of the data with what we "
9748
- "have in our system."
9749
- msgstr ""
9750
-
9751
- #: view/Onboarding/Step4.php:21
9752
- msgid "Getting your SEO Protection to 100%."
9753
- msgstr ""
9754
-
9755
- #: view/Onboarding/Step4.php:22
9756
- msgid "Covering all the post types from your WP with Excellent on-page SEO."
9757
- msgstr ""
9758
-
9759
- #: view/Onboarding/Step4.php:23
9760
- msgid "Analysis by consultant reaching 100%."
9761
- msgstr ""
9762
-
9763
- #: view/Onboarding/Step4.php:32
9764
- msgid ""
9765
- "You can now check today's SEO Goals to see what your new Consultant says you "
9766
- "should focus on."
9767
- msgstr ""
9768
-
9769
- #: view/Onboarding/Step4.php:36
9770
- msgid "Check Today's SEO Goals"
9771
- msgstr ""
9772
-
9773
- # @ squirrly-seo
9774
- #: view/Overview.php:18
9775
- #, fuzzy
9776
- #| msgid "Google %sAnalytics ID%s`:"
9777
- msgid "Connect Your Site to Squirrly Cloud"
9778
- msgstr "Google %sAnalytics ID%s`:"
9779
-
9780
- #: view/Overview.php:19
9781
- #, php-format
9782
- msgid ""
9783
- "Get Access to the Non-Human SEO Consultant, Focus Pages, SEO Audits and all "
9784
- "our features %s by creating a free account"
9785
- msgstr ""
9786
-
9787
- #: view/Overview.php:43
9788
- msgid ""
9789
- "You do not have permission to access Daily Goals. You need Squirrly SEO "
9790
- "Editor role."
9791
- msgstr ""
9792
-
9793
- # @ squirrly-seo
9794
- #: view/Overview.php:80
9795
- #, fuzzy
9796
- #| msgid "Squirrly settings"
9797
- msgid "Show Advanced SEO"
9798
- msgstr "Squirrly Einstellungen"
9799
-
9800
- #: view/Overview.php:81
9801
- msgid ""
9802
- "Switch off to have the simplified version of the settings, intended for Non-"
9803
- "SEO Experts."
9804
- msgstr ""
9805
-
9806
- #: view/Overview.php:82
9807
- msgid ""
9808
- "It will offer the same level of SEO performance, but it will be less "
9809
- "customizable."
9810
- msgstr ""
9811
-
9812
- #: view/Overview.php:94
9813
- msgid "We Need Your Support"
9814
- msgstr ""
9815
-
9816
- # @ squirrly-seo
9817
- #: view/Overview.php:103
9818
- #, fuzzy
9819
- #| msgid "Squirrly settings"
9820
- msgid "Rate us if you like Squirrly SEO"
9821
- msgstr "Squirrly Einstellungen"
9822
-
9823
- # @ squirrly-seo
9824
- #: view/Ranking/Gscsync.php:15
9825
- #, fuzzy
9826
- #| msgid "Google %sAnalytics ID%s`:"
9827
- msgid "Google Search Console Keywords Sync"
9828
- msgstr "Google %sAnalytics ID%s`:"
9829
-
9830
- #: view/Ranking/Gscsync.php:16 view/Research/Suggested.php:16
9831
- msgid ""
9832
- "See the trending keywords suitable for your website's future topics. We "
9833
- "check for new keywords weekly based on your latest researches."
9834
- msgstr ""
9835
-
9836
- #: view/Ranking/Gscsync.php:20
9837
- msgid ""
9838
- "This is the list of keywords you have in Google Search Console. Information "
9839
- "for the last 90 days. You can add keywords that you find relevant to your "
9840
- "Briefcase and to the Rankings section."
9841
- msgstr ""
9842
-
9843
- #: view/Ranking/Gscsync.php:34
9844
- msgid "Click-Through Rate"
9845
- msgstr ""
9846
-
9847
- #: view/Ranking/Gscsync.php:35
9848
- msgid "Average Position"
9849
- msgstr ""
9850
-
9851
- #: view/Ranking/Gscsync.php:35
9852
- msgid "AVG Position"
9853
- msgstr ""
9854
-
9855
- #: view/Ranking/Gscsync.php:78 view/Research/HistoryDetails.php:83
9856
- #: view/Research/ResearchDetails.php:56 view/Research/Suggested.php:131
9857
- msgid "Already in briefcase"
9858
- msgstr ""
9859
-
9860
- #: view/Ranking/Gscsync.php:83
9861
- msgid "Add to Rank Checker"
9862
- msgstr ""
9863
-
9864
- # @ squirrly-seo
9865
- #: view/Ranking/Gscsync.php:99
9866
- #, fuzzy
9867
- #| msgid "Google %sAnalytics ID%s`:"
9868
- msgid "Welcome to Google Search Console Keywords Sync"
9869
- msgstr "Google %sAnalytics ID%s`:"
9870
-
9871
- #: view/Ranking/Gscsync.php:102
9872
- #, php-format
9873
- msgid ""
9874
- "If you're new to SEO, you probably don't know yet how slow Google actually "
9875
- "is with regard to crawling and gathering data about sites which are not as "
9876
- "big as The New York Times, Amazon.com, etc. %s Here are some resources. %s "
9877
- "We could not find any keywords from your GSC account, because Google doesn't "
9878
- "have enough data about your site yet. %s Give Google more time to learn "
9879
- "about your site. Until then, keep working on your Daily SEO Goals from "
9880
- "Squirrly SEO."
9881
- msgstr ""
9882
-
9883
- #: view/Ranking/Gscsync.php:105
9884
- msgid "Tips: Which Keyword Should I Choose?"
9885
- msgstr ""
9886
-
9887
- #: view/Ranking/Gscsync.php:107 view/Ranking/Rankings.php:443
9888
- #, php-format
9889
- msgid ""
9890
- "From %sSquirrly Briefcase%s you can send keywords to Rank Checker to track "
9891
- "the SERP evolution."
9892
- msgstr ""
9893
-
9894
- # @ squirrly-seo
9895
- #: view/Ranking/Rankings.php:31
9896
- #, fuzzy
9897
- #| msgid "Google %sAnalytics ID%s`:"
9898
- msgid "Google Rankings"
9899
- msgstr "Google %sAnalytics ID%s`:"
9900
-
9901
- #: view/Ranking/Rankings.php:33
9902
- msgid ""
9903
- "It's a fully functional SEO Ranking Tool that helps you find the true "
9904
- "position of your website in Google for any keyword and any country you want"
9905
- msgstr ""
9906
-
9907
- #: view/Ranking/Rankings.php:35
9908
- msgid ""
9909
- "Get the Google Search Console average possitions, clicks and impressions for "
9910
- "all organic keywords of your website."
9911
- msgstr ""
9912
-
9913
- #: view/Ranking/Rankings.php:97
9914
- msgid "Only show ranked articles"
9915
- msgstr ""
9916
-
9917
- # @ squirrly-seo
9918
- #: view/Ranking/Rankings.php:101
9919
- #, fuzzy
9920
- #| msgid "Do the research"
9921
- msgid "Today Avg. Ranking"
9922
- msgstr "Recherchieren"
9923
-
9924
- #: view/Ranking/Rankings.php:105
9925
- msgid "Only show SERP changes"
9926
- msgstr ""
9927
-
9928
- #: view/Ranking/Rankings.php:127
9929
- msgid "Today SERP Changes"
9930
- msgstr ""
9931
-
9932
- #: view/Ranking/Rankings.php:156
9933
- #, php-format
9934
- msgid "the latest %s days Google Rankings evolution"
9935
- msgstr ""
9936
-
9937
- #: view/Ranking/Rankings.php:162
9938
- #, php-format
9939
- msgid "%s keyword ranked in TOP 10"
9940
- msgstr ""
9941
-
9942
- #: view/Ranking/Rankings.php:167
9943
- #, php-format
9944
- msgid "%s keyword ranked better today"
9945
- msgstr ""
9946
-
9947
- #: view/Ranking/Rankings.php:179
9948
- #, php-format
9949
- msgid "Ranks improved with an average of %s in the last 7 days."
9950
- msgstr ""
9951
-
9952
- #: view/Ranking/Rankings.php:203 view/Research/Briefcase.php:64
9953
- #: view/Research/Labels.php:80
9954
- msgid "Bulk Actions"
9955
- msgstr ""
9956
-
9957
- # @ squirrly-seo
9958
- #: view/Ranking/Rankings.php:204
9959
- #, fuzzy
9960
- #| msgid "Could not send the email..."
9961
- msgid "Ar you sure you want to delete the keyword?"
9962
- msgstr "Konnte E-Mail nicht senden ..."
9963
-
9964
- #: view/Ranking/Rankings.php:204 view/Research/Briefcase.php:67
9965
- #: view/Research/Labels.php:81
9966
- msgid "Delete"
9967
- msgstr ""
9968
-
9969
- #: view/Ranking/Rankings.php:206
9970
- msgid "Refresh Serp"
9971
- msgstr ""
9972
-
9973
- #: view/Ranking/Rankings.php:209 view/Research/Briefcase.php:69
9974
- #: view/Research/Labels.php:83
9975
- msgid "Apply"
9976
- msgstr ""
9977
-
9978
- #: view/Ranking/Rankings.php:217
9979
- msgid "Path"
9980
- msgstr ""
9981
-
9982
- #: view/Ranking/Rankings.php:219 view/Research/Briefcase.php:112
9983
- msgid "Rank"
9984
- msgstr ""
9985
-
9986
- #: view/Ranking/Rankings.php:220
9987
- msgid "Best"
9988
- msgstr ""
9989
-
9990
- #: view/Ranking/Rankings.php:222 view/Research/Briefcase.php:114
9991
- msgid "Avg Rank"
9992
- msgstr ""
9993
-
9994
- #: view/Ranking/Rankings.php:255 view/Ranking/Rankings.php:285
9995
- msgid "Google Search Console has no data for this keyword"
9996
- msgstr ""
9997
-
9998
- # @ squirrly-seo
9999
- #: view/Ranking/Rankings.php:261
10000
- #, fuzzy
10001
- #| msgid "Tips: 2-4 keywords"
10002
- msgid "Sync Keywords"
10003
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
10004
-
10005
- #: view/Ranking/Rankings.php:275
10006
- msgid "Not indexed"
10007
- msgstr ""
10008
-
10009
- #: view/Ranking/Rankings.php:286
10010
- msgid "GSC"
10011
- msgstr ""
10012
-
10013
- #: view/Ranking/Rankings.php:290
10014
- msgid "rank details"
10015
- msgstr ""
10016
-
10017
- #: view/Ranking/Rankings.php:309
10018
- msgid "Check Ranking again"
10019
- msgstr ""
10020
-
10021
- # @ squirrly-seo
10022
- #: view/Ranking/Rankings.php:322
10023
- #, fuzzy
10024
- #| msgid "Tips: 2-4 keywords"
10025
- msgid "Remove Keyword"
10026
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
10027
-
10028
- #: view/Ranking/Rankings.php:380
10029
- msgid "Optimized with SLA"
10030
- msgstr ""
10031
-
10032
- #: view/Ranking/Rankings.php:388
10033
- msgid "Social Shares"
10034
- msgstr ""
10035
-
10036
- #: view/Ranking/Rankings.php:391
10037
- msgid "Facebook Shares"
10038
- msgstr ""
10039
-
10040
- #: view/Ranking/Rankings.php:392
10041
- msgid "Reddit Shares"
10042
- msgstr ""
10043
-
10044
- #: view/Ranking/Rankings.php:393
10045
- msgid "Pinterest Pins"
10046
- msgstr ""
10047
-
10048
- #: view/Ranking/Rankings.php:400 view/Research/Briefcase.php:300
10049
- #: view/Research/History.php:30 view/Research/Research.php:199
10050
- #: view/Research/Suggested.php:29
10051
- msgid "Country"
10052
- msgstr ""
10053
-
10054
- #: view/Ranking/Rankings.php:415
10055
- msgid ""
10056
- "Note! The clicks and impressions data is taken from Google Search Console "
10057
- "for the last 90 days for the current URL."
10058
- msgstr ""
10059
-
10060
- #: view/Ranking/Rankings.php:430
10061
- msgid "No ranking found."
10062
- msgstr ""
10063
-
10064
- #: view/Ranking/Rankings.php:434
10065
- msgid "Welcome to Squirrly Rankings"
10066
- msgstr ""
10067
-
10068
- # @ squirrly-seo
10069
- #: view/Ranking/Rankings.php:437
10070
- #, fuzzy
10071
- #| msgid "Do the research"
10072
- msgid "Add keywords in Briefcase"
10073
- msgstr "Recherchieren"
10074
-
10075
- #: view/Ranking/Rankings.php:441
10076
- msgid "Tips: How to add Keywords in Rankings?"
10077
- msgstr ""
10078
-
10079
- #: view/Ranking/Rankings.php:444
10080
- #, php-format
10081
- msgid ""
10082
- "Connect with %sGoogle Search Console%s to synchronize the keywords for which "
10083
- "your website is ranking."
10084
- msgstr ""
10085
-
10086
- # @ squirrly-seo
10087
- #: view/Ranking/Rankings.php:466
10088
- #, fuzzy
10089
- #| msgid "Google %sAnalytics ID%s`:"
10090
- msgid "Synchronize Keywords with Google Search Console"
10091
- msgstr "Google %sAnalytics ID%s`:"
10092
-
10093
- # @ squirrly-seo
10094
- #: view/Ranking/Settings.php:29
10095
- #, fuzzy
10096
- #| msgid "Squirrly settings"
10097
- msgid "Rankings Settings"
10098
- msgstr "Squirrly Einstellungen"
10099
-
10100
- # @ squirrly-seo
10101
- #: view/Ranking/Settings.php:43
10102
- #, fuzzy
10103
- #| msgid "Google %sAnalytics ID%s`:"
10104
- msgid "Google Country"
10105
- msgstr "Google %sAnalytics ID%s`:"
10106
-
10107
- #: view/Ranking/Settings.php:44
10108
- msgid ""
10109
- "Select the Google country for which Squirrly will check the Google rank."
10110
- msgstr ""
10111
-
10112
- #: view/Ranking/Settings.php:48
10113
- msgid "Default"
10114
- msgstr ""
10115
-
10116
- #: view/Ranking/Settings.php:49
10117
- msgid "American Samoa"
10118
- msgstr ""
10119
-
10120
- #: view/Ranking/Settings.php:50
10121
- msgid "Anguilla"
10122
- msgstr ""
10123
-
10124
- #: view/Ranking/Settings.php:51
10125
- msgid "Antigua and Barbuda"
10126
- msgstr ""
10127
-
10128
- #: view/Ranking/Settings.php:52
10129
- msgid "Argentina"
10130
- msgstr ""
10131
-
10132
- #: view/Ranking/Settings.php:53
10133
- msgid "Australia"
10134
- msgstr ""
10135
-
10136
- #: view/Ranking/Settings.php:54
10137
- msgid "Austria"
10138
- msgstr ""
10139
-
10140
- #: view/Ranking/Settings.php:55
10141
- msgid "Azerbaijan"
10142
- msgstr ""
10143
-
10144
- #: view/Ranking/Settings.php:56
10145
- msgid "Belgium"
10146
- msgstr ""
10147
-
10148
- #: view/Ranking/Settings.php:57
10149
- msgid "Brazil"
10150
- msgstr ""
10151
-
10152
- #: view/Ranking/Settings.php:58
10153
- msgid "British Virgin Islands"
10154
- msgstr ""
10155
-
10156
- #: view/Ranking/Settings.php:59
10157
- msgid "Burundi"
10158
- msgstr ""
10159
-
10160
- #: view/Ranking/Settings.php:60
10161
- msgid "Bulgaria"
10162
- msgstr ""
10163
-
10164
- #: view/Ranking/Settings.php:61
10165
- msgid "Canada"
10166
- msgstr ""
10167
-
10168
- #: view/Ranking/Settings.php:62
10169
- msgid "Chad"
10170
- msgstr ""
10171
-
10172
- #: view/Ranking/Settings.php:63
10173
- msgid "Chile"
10174
- msgstr ""
10175
-
10176
- #: view/Ranking/Settings.php:64
10177
- msgid "Colombia"
10178
- msgstr ""
10179
-
10180
- #: view/Ranking/Settings.php:65
10181
- msgid "Costa Rica"
10182
- msgstr ""
10183
-
10184
- #: view/Ranking/Settings.php:66
10185
- msgid "Côte d\\'Ivoire"
10186
- msgstr ""
10187
-
10188
- #: view/Ranking/Settings.php:67
10189
- msgid "Cuba"
10190
- msgstr ""
10191
-
10192
- #: view/Ranking/Settings.php:68
10193
- msgid "Czech Republic"
10194
- msgstr ""
10195
-
10196
- #: view/Ranking/Settings.php:69
10197
- msgid "Dem. Rep. of the Congo"
10198
- msgstr ""
10199
-
10200
- #: view/Ranking/Settings.php:70
10201
- msgid "Denmark"
10202
- msgstr ""
10203
-
10204
- #: view/Ranking/Settings.php:71
10205
- msgid "Djibouti"
10206
- msgstr ""
10207
-
10208
- #: view/Ranking/Settings.php:72
10209
- msgid "Dominican Republic"
10210
- msgstr ""
10211
-
10212
- #: view/Ranking/Settings.php:73
10213
- msgid "Ecuador"
10214
- msgstr ""
10215
-
10216
- #: view/Ranking/Settings.php:74
10217
- msgid "Egypt"
10218
- msgstr ""
10219
-
10220
- #: view/Ranking/Settings.php:75
10221
- msgid "El Salvador"
10222
- msgstr ""
10223
-
10224
- #: view/Ranking/Settings.php:76
10225
- msgid "Estonia"
10226
- msgstr ""
10227
-
10228
- #: view/Ranking/Settings.php:77
10229
- msgid "Federated States of Micronesia"
10230
- msgstr ""
10231
-
10232
- #: view/Ranking/Settings.php:78
10233
- msgid "Fiji"
10234
- msgstr ""
10235
-
10236
- #: view/Ranking/Settings.php:79
10237
- msgid "Finland"
10238
- msgstr ""
10239
-
10240
- #: view/Ranking/Settings.php:80
10241
- msgid "France"
10242
- msgstr ""
10243
-
10244
- #: view/Ranking/Settings.php:81
10245
- msgid "The Gambia"
10246
- msgstr ""
10247
-
10248
- #: view/Ranking/Settings.php:82
10249
- msgid "Georgia"
10250
- msgstr ""
10251
-
10252
- #: view/Ranking/Settings.php:83
10253
- msgid "Germany"
10254
- msgstr ""
10255
-
10256
- #: view/Ranking/Settings.php:84
10257
- msgid "Ghana "
10258
- msgstr ""
10259
-
10260
- #: view/Ranking/Settings.php:85
10261
- msgid "Gibraltar"
10262
- msgstr ""
10263
-
10264
- #: view/Ranking/Settings.php:86
10265
- msgid "Greece"
10266
- msgstr ""
10267
-
10268
- #: view/Ranking/Settings.php:87
10269
- msgid "Greenland"
10270
- msgstr ""
10271
-
10272
- #: view/Ranking/Settings.php:88
10273
- msgid "Guernsey"
10274
- msgstr ""
10275
-
10276
- #: view/Ranking/Settings.php:89
10277
- msgid "Honduras"
10278
- msgstr ""
10279
-
10280
- #: view/Ranking/Settings.php:90
10281
- msgid "Hong Kong"
10282
- msgstr ""
10283
-
10284
- #: view/Ranking/Settings.php:91
10285
- msgid "Hungary"
10286
- msgstr ""
10287
-
10288
- #: view/Ranking/Settings.php:92
10289
- msgid "India"
10290
- msgstr ""
10291
-
10292
- #: view/Ranking/Settings.php:93
10293
- msgid "Indonesia"
10294
- msgstr ""
10295
-
10296
- #: view/Ranking/Settings.php:94
10297
- msgid "Ireland"
10298
- msgstr ""
10299
-
10300
- #: view/Ranking/Settings.php:95
10301
- msgid "Isle of Man"
10302
- msgstr ""
10303
-
10304
- #: view/Ranking/Settings.php:96
10305
- msgid "Israel"
10306
- msgstr ""
10307
-
10308
- #: view/Ranking/Settings.php:97
10309
- msgid "Italy"
10310
- msgstr ""
10311
-
10312
- #: view/Ranking/Settings.php:98
10313
- msgid "Jamaica"
10314
- msgstr ""
10315
-
10316
- #: view/Ranking/Settings.php:99
10317
- msgid "Japan"
10318
- msgstr ""
10319
-
10320
- #: view/Ranking/Settings.php:100
10321
- msgid "Jersey"
10322
- msgstr ""
10323
-
10324
- #: view/Ranking/Settings.php:101
10325
- msgid "Kazakhstan"
10326
- msgstr ""
10327
-
10328
- #: view/Ranking/Settings.php:102
10329
- msgid "Korea"
10330
- msgstr ""
10331
-
10332
- #: view/Ranking/Settings.php:103
10333
- msgid "Latvia"
10334
- msgstr ""
10335
-
10336
- #: view/Ranking/Settings.php:104
10337
- msgid "Lesotho"
10338
- msgstr ""
10339
-
10340
- #: view/Ranking/Settings.php:105
10341
- msgid "Liechtenstein"
10342
- msgstr ""
10343
-
10344
- #: view/Ranking/Settings.php:106
10345
- msgid "Lithuania"
10346
- msgstr ""
10347
-
10348
- #: view/Ranking/Settings.php:107
10349
- msgid "Luxembourg"
10350
- msgstr ""
10351
-
10352
- #: view/Ranking/Settings.php:108
10353
- msgid "Malawi"
10354
- msgstr ""
10355
-
10356
- #: view/Ranking/Settings.php:109
10357
- msgid "Malaysia"
10358
- msgstr ""
10359
-
10360
- #: view/Ranking/Settings.php:110
10361
- msgid "Malta"
10362
- msgstr ""
10363
-
10364
- #: view/Ranking/Settings.php:111
10365
- msgid "Mauritius"
10366
- msgstr ""
10367
-
10368
- #: view/Ranking/Settings.php:112
10369
- msgid "México"
10370
- msgstr ""
10371
-
10372
- #: view/Ranking/Settings.php:113
10373
- msgid "Montserrat"
10374
- msgstr ""
10375
-
10376
- #: view/Ranking/Settings.php:114
10377
- msgid "Namibia"
10378
- msgstr ""
10379
-
10380
- #: view/Ranking/Settings.php:115
10381
- msgid "Nepal"
10382
- msgstr ""
10383
-
10384
- #: view/Ranking/Settings.php:116
10385
- msgid "Netherlands"
10386
- msgstr ""
10387
-
10388
- #: view/Ranking/Settings.php:117
10389
- msgid "New Zealand"
10390
- msgstr ""
10391
-
10392
- #: view/Ranking/Settings.php:118
10393
- msgid "Nicaragua"
10394
- msgstr ""
10395
-
10396
- #: view/Ranking/Settings.php:119
10397
- msgid "Nigeria"
10398
- msgstr ""
10399
-
10400
- #: view/Ranking/Settings.php:120
10401
- msgid "Norfolk Island"
10402
- msgstr ""
10403
-
10404
- #: view/Ranking/Settings.php:121
10405
- msgid "Norway"
10406
- msgstr ""
10407
-
10408
- #: view/Ranking/Settings.php:122
10409
- msgid "Pakistan"
10410
- msgstr ""
10411
-
10412
- #: view/Ranking/Settings.php:123
10413
- msgid "Panamá"
10414
- msgstr ""
10415
-
10416
- #: view/Ranking/Settings.php:124
10417
- msgid "Paraguay"
10418
- msgstr ""
10419
-
10420
- #: view/Ranking/Settings.php:125
10421
- msgid "Perú"
10422
- msgstr ""
10423
-
10424
- #: view/Ranking/Settings.php:126
10425
- msgid "Philippines"
10426
- msgstr ""
10427
-
10428
- #: view/Ranking/Settings.php:127
10429
- msgid "Pitcairn Islands"
10430
- msgstr ""
10431
-
10432
- #: view/Ranking/Settings.php:128
10433
- msgid "Poland"
10434
- msgstr ""
10435
-
10436
- #: view/Ranking/Settings.php:129
10437
- msgid "Portugal"
10438
- msgstr ""
10439
-
10440
- #: view/Ranking/Settings.php:130
10441
- msgid "Puerto Rico"
10442
- msgstr ""
10443
-
10444
- #: view/Ranking/Settings.php:131
10445
- msgid "Rep. of the Congo"
10446
- msgstr ""
10447
-
10448
- #: view/Ranking/Settings.php:132
10449
- msgid "Romania"
10450
- msgstr ""
10451
-
10452
- #: view/Ranking/Settings.php:133
10453
- msgid "Russia"
10454
- msgstr ""
10455
-
10456
- #: view/Ranking/Settings.php:134
10457
- msgid "Rwanda"
10458
- msgstr ""
10459
-
10460
- #: view/Ranking/Settings.php:135
10461
- msgid "Saint Helena"
10462
- msgstr ""
10463
-
10464
- #: view/Ranking/Settings.php:136
10465
- msgid "San Marino"
10466
- msgstr ""
10467
-
10468
- #: view/Ranking/Settings.php:137
10469
- msgid "Saudi Arabia"
10470
- msgstr ""
10471
-
10472
- #: view/Ranking/Settings.php:138
10473
- msgid "Singapore"
10474
- msgstr ""
10475
-
10476
- #: view/Ranking/Settings.php:139
10477
- msgid "Slovakia"
10478
- msgstr ""
10479
-
10480
- #: view/Ranking/Settings.php:140
10481
- msgid "South Africa"
10482
- msgstr ""
10483
-
10484
- #: view/Ranking/Settings.php:141
10485
- msgid "Spain"
10486
- msgstr ""
10487
-
10488
- #: view/Ranking/Settings.php:142
10489
- msgid "Sri Lanka"
10490
- msgstr ""
10491
-
10492
- #: view/Ranking/Settings.php:143
10493
- msgid "Sweden"
10494
- msgstr ""
10495
-
10496
- #: view/Ranking/Settings.php:144
10497
- msgid "Switzerland"
10498
- msgstr ""
10499
-
10500
- #: view/Ranking/Settings.php:145
10501
- msgid "Taiwan"
10502
- msgstr ""
10503
-
10504
- #: view/Ranking/Settings.php:146
10505
- msgid "Thailand"
10506
- msgstr ""
10507
-
10508
- #: view/Ranking/Settings.php:147
10509
- msgid "Trinidad and Tobago"
10510
- msgstr ""
10511
-
10512
- #: view/Ranking/Settings.php:148
10513
- msgid "Turkey"
10514
- msgstr ""
10515
-
10516
- #: view/Ranking/Settings.php:149
10517
- msgid "Ukraine"
10518
- msgstr ""
10519
-
10520
- #: view/Ranking/Settings.php:150
10521
- msgid "United Arab Emirates"
10522
- msgstr ""
10523
-
10524
- #: view/Ranking/Settings.php:151
10525
- msgid "United Kingdom"
10526
- msgstr ""
10527
-
10528
- #: view/Ranking/Settings.php:152
10529
- msgid "United States"
10530
- msgstr ""
10531
-
10532
- #: view/Ranking/Settings.php:153
10533
- msgid "Uruguay"
10534
- msgstr ""
10535
-
10536
- #: view/Ranking/Settings.php:154
10537
- msgid "Uzbekistan"
10538
- msgstr ""
10539
-
10540
- #: view/Ranking/Settings.php:155
10541
- msgid "Vanuatu"
10542
- msgstr ""
10543
-
10544
- #: view/Ranking/Settings.php:156
10545
- msgid "Venezuela"
10546
- msgstr ""
10547
-
10548
- #: view/Ranking/Settings.php:157
10549
- msgid "Vietnam"
10550
- msgstr ""
10551
-
10552
- #: view/Research/Briefcase.php:19
10553
- msgid ""
10554
- "Briefcase is essential to managing your SEO Strategy. With Briefcase you'll "
10555
- "find the best opportunities for keywords you're using in the Awareness "
10556
- "Stage, Decision Stage and other stages you may plan for your Customer's "
10557
- "Journey."
10558
- msgstr ""
10559
-
10560
- # @ squirrly-seo
10561
- #: view/Research/Briefcase.php:35
10562
- #, fuzzy
10563
- #| msgid "Tips: 2-4 keywords"
10564
- msgid "Search Keyword"
10565
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
10566
-
10567
- #: view/Research/Briefcase.php:65 view/Research/Briefcase.php:226
10568
- msgid "Send to Rank Checker"
10569
- msgstr ""
10570
-
10571
- #: view/Research/Briefcase.php:66 view/Research/Briefcase.php:240
10572
- msgid "Assign Label"
10573
- msgstr ""
10574
-
10575
- # @ squirrly-seo
10576
- #: view/Research/Briefcase.php:67
10577
- #, fuzzy
10578
- #| msgid "Could not send the email..."
10579
- msgid "Ar you sure you want to delete the keywords?"
10580
- msgstr "Konnte E-Mail nicht senden ..."
10581
-
10582
- #: view/Research/Briefcase.php:75 view/Research/Briefcase.php:359
10583
- #, php-format
10584
- msgid "Select Labels for: %s"
10585
- msgstr ""
10586
-
10587
- # @ squirrly-seo
10588
- #: view/Research/Briefcase.php:75
10589
- #, fuzzy
10590
- #| msgid "Enter even more keywords."
10591
- msgid "selected keywords"
10592
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
10593
-
10594
- #: view/Research/Briefcase.php:79
10595
- msgid ""
10596
- "By assigning these labels, you will reset the other labels you assigned for "
10597
- "each keyword individually."
10598
- msgstr ""
10599
-
10600
- #: view/Research/Briefcase.php:88 view/Research/Briefcase.php:381
10601
- #: view/Research/Labels.php:22
10602
- msgid "Add new Label"
10603
- msgstr ""
10604
-
10605
- #: view/Research/Briefcase.php:93 view/Research/Briefcase.php:387
10606
- msgid "Save Labels"
10607
- msgstr ""
10608
-
10609
- #: view/Research/Briefcase.php:108
10610
- msgid "Usage"
10611
- msgstr ""
10612
-
10613
- #: view/Research/Briefcase.php:118 view/Research/Briefcase.php:311
10614
- msgid "Search Volume"
10615
- msgstr ""
10616
-
10617
- #: view/Research/Briefcase.php:161 view/Research/Briefcase.php:163
10618
- #, php-format
10619
- msgid "in %s posts"
10620
- msgstr ""
10621
-
10622
- # @ squirrly-seo
10623
- #: view/Research/Briefcase.php:182
10624
- #, fuzzy
10625
- #| msgid "Tips: 2-4 keywords"
10626
- msgid "keyword info"
10627
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
10628
-
10629
- # @ squirrly-seo
10630
- #: view/Research/Briefcase.php:204
10631
- #, fuzzy
10632
- #| msgid "Do the research"
10633
- msgid "No research data"
10634
- msgstr "Recherchieren"
10635
-
10636
- # @ squirrly-seo
10637
- #: view/Research/Briefcase.php:235
10638
- #, fuzzy
10639
- #| msgid "Do the research"
10640
- msgid "Refresh Research"
10641
- msgstr "Recherchieren"
10642
-
10643
- # @ squirrly-seo
10644
- #: view/Research/Briefcase.php:245
10645
- #, fuzzy
10646
- #| msgid "Enter even more keywords."
10647
- msgid "Delete Keyword"
10648
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
10649
-
10650
- #: view/Research/Briefcase.php:266
10651
- msgid "Optimized with"
10652
- msgstr ""
10653
-
10654
- #: view/Research/Briefcase.php:305 view/Research/HistoryDetails.php:16
10655
- #: view/Research/HistoryDetails.php:18 view/Research/Research.php:201
10656
- #: view/Research/Research.php:202 view/Research/Suggested.php:31
10657
- #: view/Research/Suggested.php:32 view/Research/Suggested.php:81
10658
- msgid "Competition"
10659
- msgstr ""
10660
-
10661
- #: view/Research/Briefcase.php:317 view/Research/HistoryDetails.php:8
10662
- #: view/Research/Research.php:209 view/Research/Suggested.php:39
10663
- #: view/Research/Suggested.php:91
10664
- msgid "Recent discussions"
10665
- msgstr ""
10666
-
10667
- #: view/Research/Briefcase.php:323 view/Research/HistoryDetails.php:20
10668
- #: view/Research/Research.php:213 view/Research/Suggested.php:43
10669
- msgid "Trending"
10670
- msgstr ""
10671
-
10672
- #: view/Research/Briefcase.php:403
10673
- msgid "Welcome to Squirrly Briefcase"
10674
- msgstr ""
10675
-
10676
- # @ squirrly-seo
10677
- #: view/Research/Briefcase.php:406 view/Research/History.php:58
10678
- #: view/Research/Suggested.php:158
10679
- #, fuzzy
10680
- #| msgid "Tips: 2-4 keywords"
10681
- msgid "Go Find New Keywords"
10682
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
10683
-
10684
- #: view/Research/Briefcase.php:410
10685
- msgid "Tips: How to add Keywords in Briefcase?"
10686
- msgstr ""
10687
-
10688
- #: view/Research/Briefcase.php:412
10689
- #, php-format
10690
- msgid "From %sKeyword Research%s send keywords to Briefcase."
10691
- msgstr ""
10692
-
10693
- #: view/Research/Briefcase.php:413
10694
- #, php-format
10695
- msgid ""
10696
- "From Briefcase you can use the keywords in %sSquirrly Live Assistant%s to "
10697
- "optimize your pages."
10698
- msgstr ""
10699
-
10700
- #: view/Research/Briefcase.php:414
10701
- msgid ""
10702
- "If you already have a list of keywords, Import the keywords usign the below "
10703
- "button."
10704
- msgstr ""
10705
-
10706
- #: view/Research/Briefcase.php:424
10707
- msgid "Backup/Restore Briefcase Keywords"
10708
- msgstr ""
10709
-
10710
- #: view/Research/Briefcase.php:425
10711
- msgid ""
10712
- "Keep your briefcase keywords safe in case you change your domain or "
10713
- "reinstall the plugin"
10714
- msgstr ""
10715
-
10716
- #: view/Research/Briefcase.php:426
10717
- #, php-format
10718
- msgid "%sLearn how to import keywords into briefcase%s"
10719
- msgstr ""
10720
-
10721
- # @ squirrly-seo
10722
- #: view/Research/Briefcase.php:432
10723
- #, fuzzy
10724
- #| msgid "Tips: 2-4 keywords"
10725
- msgid "Download Keywords"
10726
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
10727
-
10728
- # @ squirrly-seo
10729
- #: view/Research/Briefcase.php:435
10730
- #, fuzzy
10731
- #| msgid "Tips: 2-4 keywords"
10732
- msgid "Import Keywords"
10733
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
10734
-
10735
- # @ squirrly-seo
10736
- #: view/Research/Briefcase.php:441
10737
- #, fuzzy
10738
- #| msgid "Enter even more keywords."
10739
- msgid "Restore Briefcase Keywords"
10740
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
10741
-
10742
- # @ squirrly-seo
10743
- #: view/Research/Briefcase.php:449
10744
- #, fuzzy
10745
- #| msgid "Tips: 2-4 keywords"
10746
- msgid "Restore Keywords"
10747
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
10748
-
10749
- #: view/Research/Briefcase.php:450
10750
- msgid "Upload the file with the saved Squirrly Briefcase Keywords."
10751
- msgstr ""
10752
-
10753
- #: view/Research/History.php:17
10754
- msgid "See the Keyword Researches you made in the last 30 days"
10755
- msgstr ""
10756
-
10757
- #: view/Research/History.php:30 view/Research/Research.php:199
10758
- #: view/Research/Suggested.php:29
10759
- msgid "Co"
10760
- msgstr ""
10761
-
10762
- # @ squirrly-seo
10763
- #: view/Research/History.php:46
10764
- #, fuzzy
10765
- #| msgid "Tips: 2-4 keywords"
10766
- msgid "Show All Keywords"
10767
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
10768
-
10769
- # @ squirrly-seo
10770
- #: view/Research/History.php:54
10771
- #, fuzzy
10772
- #| msgid "Do the research"
10773
- msgid "Welcome to Keyword Research History"
10774
- msgstr "Recherchieren"
10775
-
10776
- #: view/Research/History.php:55
10777
- msgid "See your research results and compare them over time"
10778
- msgstr ""
10779
-
10780
- #: view/Research/HistoryDetails.php:10 view/Research/Research.php:210
10781
- #: view/Research/Suggested.php:40
10782
- msgid "Discussion"
10783
- msgstr ""
10784
-
10785
- #: view/Research/HistoryDetails.php:12 view/Research/Research.php:205
10786
- #: view/Research/Suggested.php:35 view/Research/Suggested.php:86
10787
- msgid "SEO Search Volume"
10788
- msgstr ""
10789
-
10790
- #: view/Research/HistoryDetails.php:14 view/Research/Suggested.php:36
10791
- msgid "SV"
10792
- msgstr ""
10793
-
10794
- #: view/Research/HistoryDetails.php:22 view/Research/Research.php:214
10795
- #: view/Research/Suggested.php:44
10796
- msgid "Trend"
10797
- msgstr ""
10798
-
10799
- #: view/Research/HistoryDetails.php:88 view/Research/ResearchDetails.php:61
10800
- #: view/Research/Suggested.php:136
10801
- msgid "Add to briefcase"
10802
- msgstr ""
10803
-
10804
- #: view/Research/Labels.php:16
10805
- msgid "Briefcase Labels"
10806
- msgstr ""
10807
-
10808
- #: view/Research/Labels.php:17
10809
- msgid ""
10810
- "Briefcase Labels will help you sort your keywords based on your SEO "
10811
- "strategy. Labels are like categories and you can quickly filter your "
10812
- "keywords by one or more labels."
10813
- msgstr ""
10814
-
10815
- #: view/Research/Labels.php:27
10816
- msgid "Add New Label"
10817
- msgstr ""
10818
-
10819
- #: view/Research/Labels.php:32 view/Research/Labels.php:58
10820
- msgid "Label Name"
10821
- msgstr ""
10822
-
10823
- #: view/Research/Labels.php:36 view/Research/Labels.php:62
10824
- msgid "Label Color"
10825
- msgstr ""
10826
-
10827
- #: view/Research/Labels.php:43
10828
- msgid "Add Label"
10829
- msgstr ""
10830
-
10831
- # @ squirrly-seo
10832
- #: view/Research/Labels.php:53 view/Research/Labels.php:121
10833
- #, fuzzy
10834
- #| msgid "Your E-mail:"
10835
- msgid "Edit Label"
10836
- msgstr "Ihre E-Mail Adresse:"
10837
-
10838
- #: view/Research/Labels.php:68
10839
- msgid "Save Label"
10840
- msgstr ""
10841
-
10842
- # @ squirrly-seo
10843
- #: view/Research/Labels.php:81
10844
- #, fuzzy
10845
- #| msgid "Could not send the email..."
10846
- msgid "Ar you sure you want to delete the labels?"
10847
- msgstr "Konnte E-Mail nicht senden ..."
10848
-
10849
- #: view/Research/Labels.php:90
10850
- msgid "Name"
10851
- msgstr ""
10852
-
10853
- #: view/Research/Labels.php:91
10854
- msgid "Color"
10855
- msgstr ""
10856
-
10857
- #: view/Research/Labels.php:126
10858
- msgid "Delete Label"
10859
- msgstr ""
10860
-
10861
- #: view/Research/Labels.php:142
10862
- msgid "Welcome to Briefcase Labels"
10863
- msgstr ""
10864
-
10865
- #: view/Research/Labels.php:144
10866
- msgid "TIPS: How Should I Create My Labels?"
10867
- msgstr ""
10868
-
10869
- #: view/Research/Labels.php:146
10870
- #, php-format
10871
- msgid ""
10872
- "Click on %sAdd New Label%s button, add a label name and choose a color for "
10873
- "it."
10874
- msgstr ""
10875
-
10876
- #: view/Research/Labels.php:147
10877
- msgid "Read more details about Briefcase Labels"
10878
- msgstr ""
10879
-
10880
- #: view/Research/Research.php:20
10881
- msgid ""
10882
- "You can now find long-tail keywords that are easy to rank for. Get "
10883
- "personalized competition data for each keyword you research, thanks to "
10884
- "Squirrly's Market Intelligence Features."
10885
- msgstr ""
10886
-
10887
- #: view/Research/Research.php:34 view/Research/Research.php:147
10888
- msgid "You've reached your Keyword Research Limit"
10889
- msgstr ""
10890
-
10891
- #: view/Research/Research.php:35 view/Research/Research.php:148
10892
- msgid "Check Your Account"
10893
- msgstr ""
10894
-
10895
- # @ squirrly-seo
10896
- #: view/Research/Research.php:38
10897
- #, fuzzy
10898
- #| msgid "Do the research"
10899
- msgid "Add a keyword to Briefcase"
10900
- msgstr "Recherchieren"
10901
-
10902
- #: view/Research/Research.php:42
10903
- msgid "It's best if you focus on finding Long-Tail Keywords."
10904
- msgstr ""
10905
-
10906
- #: view/Research/Research.php:56
10907
- msgid "Step 1/4: Enter a starting 2-3 words keyword"
10908
- msgstr ""
10909
-
10910
- #: view/Research/Research.php:60
10911
- msgid "Enter a keyword that matches your business"
10912
- msgstr ""
10913
-
10914
- #: view/Research/Research.php:64
10915
- msgid "Focus on finding Long Tail Keywords."
10916
- msgstr ""
10917
-
10918
- # @ squirrly-seo
10919
- #: view/Research/Research.php:65
10920
- #, fuzzy
10921
- #| msgid "Could not send the email..."
10922
- msgid "You need to enter a keyword first"
10923
- msgstr "Konnte E-Mail nicht senden ..."
10924
-
10925
- #: view/Research/Research.php:71 view/Research/Research.php:103
10926
- msgid "Next"
10927
- msgstr ""
10928
-
10929
- #: view/Research/Research.php:77
10930
- msgid "Step 2/4: Choose a country for your keyword research"
10931
- msgstr ""
10932
-
10933
- #: view/Research/Research.php:81
10934
- msgid "Select country"
10935
- msgstr ""
10936
-
10937
- #: view/Research/Research.php:86
10938
- msgid "Global Search"
10939
- msgstr ""
10940
-
10941
- #: view/Research/Research.php:95
10942
- msgid ""
10943
- "For local SEO you need to select the Country where you run your business"
10944
- msgstr ""
10945
-
10946
- #: view/Research/Research.php:100 view/Research/Research.php:154
10947
- #: view/Research/Research.php:226
10948
- msgid "Start Over"
10949
- msgstr ""
10950
-
10951
- #: view/Research/Research.php:108
10952
- msgid "Step 3/4: Select similar keywords from below"
10953
- msgstr ""
10954
-
10955
- #: view/Research/Research.php:109
10956
- msgid ""
10957
- "Each selected keyword will consume 1 credit from your keyword research "
10958
- "credits."
10959
- msgstr ""
10960
-
10961
- #: view/Research/Research.php:150
10962
- #, php-format
10963
- msgid "We could not find similar keywords. %sClick on 'Do research'"
10964
- msgstr ""
10965
-
10966
- # @ squirrly-seo
10967
- #: view/Research/Research.php:160
10968
- #, fuzzy
10969
- #| msgid "Do the research"
10970
- msgid "Do a deep research"
10971
- msgstr "Recherchieren"
10972
-
10973
- # @ squirrly-seo
10974
- #: view/Research/Research.php:164 view/Research/Research.php:170
10975
- #, fuzzy
10976
- #| msgid "Do the research"
10977
- msgid "Do research"
10978
- msgstr "Recherchieren"
10979
-
10980
- #: view/Research/Research.php:178
10981
- msgid ""
10982
- "Keyword Research in progress. We're doing all of this in real-time. Data is "
10983
- "fresh."
10984
- msgstr ""
10985
-
10986
- #: view/Research/Research.php:179
10987
- msgid "We're now finding 10 alternatives for each keyword you selected."
10988
- msgstr ""
10989
-
10990
- #: view/Research/Research.php:180
10991
- msgid ""
10992
- "For each alternative, we are looking at the top 10 pages ranked on Google "
10993
- "for that keyword."
10994
- msgstr ""
10995
-
10996
- #: view/Research/Research.php:181
10997
- msgid ""
10998
- "We are now measuring the web authority of each competing page and comparing "
10999
- "it to yours."
11000
- msgstr ""
11001
-
11002
- #: view/Research/Research.php:182
11003
- msgid "Looking at the monthly search volume for each keyword."
11004
- msgstr ""
11005
-
11006
- #: view/Research/Research.php:183
11007
- msgid "Analyzing the last 30 days of Google trends for each keyword."
11008
- msgstr ""
11009
-
11010
- #: view/Research/Research.php:184
11011
- msgid ""
11012
- "Seeing how many discussions there are on forums and Twitter for each keyword."
11013
- msgstr ""
11014
-
11015
- #: view/Research/Research.php:185
11016
- msgid ""
11017
- "Piecing all the keywords together now after analyzing each individual "
11018
- "keyword."
11019
- msgstr ""
11020
-
11021
- #: view/Research/Research.php:186
11022
- msgid "Preparing the results."
11023
- msgstr ""
11024
-
11025
- #: view/Research/Research.php:192
11026
- msgid "Step 4/4: We found some relevant keywords for you"
11027
- msgstr ""
11028
-
11029
- #: view/Research/Research.php:193
11030
- #, php-format
11031
- msgid ""
11032
- "Still processing. give it a bit more time, then go to %sResearch History%s. "
11033
- "Results will appear there."
11034
- msgstr ""
11035
-
11036
- #: view/Research/Research.php:194
11037
- msgid "Step 4/4: We could not find relevant keywords for you"
11038
- msgstr ""
11039
-
11040
- #: view/Research/Research.php:241
11041
- msgid "How to Find Amazing Keywords and get more search traffic?"
11042
- msgstr ""
11043
-
11044
- # @ squirrly-seo
11045
- #: view/Research/Research.php:255
11046
- #, fuzzy
11047
- #| msgid "Tips: 2-4 keywords"
11048
- msgid "Already Have Keywords?"
11049
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
11050
-
11051
- # @ squirrly-seo
11052
- #: view/Research/Research.php:258
11053
- #, fuzzy
11054
- #| msgid "Tips: 2-4 keywords"
11055
- msgid "Import Keywords From CSV"
11056
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
11057
-
11058
- # @ squirrly-seo
11059
- #: view/Research/Suggested.php:152
11060
- #, fuzzy
11061
- #| msgid "Enter even more keywords."
11062
- msgid "Welcome to Suggested Keywords"
11063
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
11064
-
11065
- #: view/Research/Suggested.php:153
11066
- msgid "Once a week, Squirrly checks all the keywords from your briefcase."
11067
- msgstr ""
11068
-
11069
- #: view/Research/Suggested.php:154
11070
- msgid "If it finds better keywords, they will be listed here"
11071
- msgstr ""
11072
-
11073
- #: view/Research/Suggested.php:155
11074
- msgid "Until then, add keywords in Briefcase"
11075
- msgstr ""
11076
-
11077
- # @ squirrly-seo
11078
- #: view/SeoSettings/Advanced.php:25
11079
- #, fuzzy
11080
- #| msgid "Squirrly settings"
11081
- msgid "Advanced Settings"
11082
- msgstr "Squirrly Einstellungen"
11083
-
11084
- # @ squirrly-seo
11085
- #: view/SeoSettings/Advanced.php:39
11086
- #, fuzzy
11087
- #| msgid "Squirrly settings"
11088
- msgid "Load Squirrly Frontend CSS"
11089
- msgstr "Squirrly Einstellungen"
11090
-
11091
- #: view/SeoSettings/Advanced.php:40
11092
- msgid ""
11093
- "Load Squirrly SEO CSS for Twitter and Article inserted from Squirrly "
11094
- "Blogging Assistant."
11095
- msgstr ""
11096
-
11097
- # @ squirrly-seo
11098
- #: view/SeoSettings/Advanced.php:50
11099
- #, fuzzy
11100
- #| msgid "Squirrly LIVE SEO assistant"
11101
- msgid "Minify Squirrly SEO Metas"
11102
- msgstr "Squirrly LIVE SEO-Assistent"
11103
-
11104
- #: view/SeoSettings/Advanced.php:51
11105
- msgid "Minify the metas in source code to optimize the page loading."
11106
- msgstr ""
11107
-
11108
- #: view/SeoSettings/Advanced.php:52
11109
- msgid "Remove comments and newlines from Squirrly SEO Metas."
11110
- msgstr ""
11111
-
11112
- # @ squirrly-seo
11113
- #: view/SeoSettings/Advanced.php:62
11114
- #, fuzzy
11115
- #| msgid "Squirrly LIVE SEO assistant"
11116
- msgid "Squirrly SEO Late Buffer"
11117
- msgstr "Squirrly LIVE SEO-Assistent"
11118
-
11119
- #: view/SeoSettings/Advanced.php:63
11120
- msgid "Wait all plugins to load before loading Squirrly SEO frontend buffer."
11121
- msgstr ""
11122
-
11123
- #: view/SeoSettings/Advanced.php:64
11124
- msgid "For compatibility with some Cache and CDN plugins."
11125
- msgstr ""
11126
-
11127
- #: view/SeoSettings/Advanced.php:76
11128
- msgid "Delete Squirrly Table on Uninstall"
11129
- msgstr ""
11130
-
11131
- #: view/SeoSettings/Advanced.php:77
11132
- msgid "Delete Squirrly SEO table and options on uninstall."
11133
- msgstr ""
11134
-
11135
- # @ squirrly-seo
11136
- #: view/SeoSettings/Automation.php:26
11137
- #, fuzzy
11138
- #| msgid "automatically"
11139
- msgid "Meta Automation"
11140
- msgstr "automatisch"
11141
-
11142
- #: view/SeoSettings/Automation.php:28
11143
- msgid ""
11144
- "Control how post types are displayed on your site, within search engine "
11145
- "results, and social media feeds."
11146
- msgstr ""
11147
-
11148
- #: view/SeoSettings/Automation.php:35 view/SeoSettings/Automation.php:294
11149
- msgid "Activate Patterns"
11150
- msgstr ""
11151
-
11152
- # @ squirrly-seo
11153
- #: view/SeoSettings/Automation.php:66
11154
- #, fuzzy
11155
- #| msgid "automatically"
11156
- msgid "Add Post Type for SEO Automation"
11157
- msgstr "automatisch"
11158
-
11159
- #: view/SeoSettings/Automation.php:72 view/SeoSettings/Automation.php:84
11160
- msgid "Add Post Type"
11161
- msgstr ""
11162
-
11163
- #: view/SeoSettings/Automation.php:73
11164
- msgid "Add new post types in the list and customize the automation for it."
11165
- msgstr ""
11166
-
11167
- #: view/SeoSettings/Automation.php:94
11168
- msgid "Customize the automation for each post type"
11169
- msgstr ""
11170
-
11171
- # @ squirrly-seo
11172
- #: view/SeoSettings/Automation.php:126 view/SeoSettings/Metas.php:168
11173
- #, fuzzy
11174
- #| msgid "Tips: Length 10-70 chars"
11175
- msgid "Tips: Length 10-75 chars"
11176
- msgstr "Tipp: Länge 10-70 Charaktere"
11177
-
11178
- # @ squirrly-seo
11179
- #: view/SeoSettings/Automation.php:135 view/SeoSettings/Metas.php:177
11180
- #, fuzzy
11181
- #| msgid "Tips: Length 10-70 chars"
11182
- msgid "Tips: Length 70-320 chars"
11183
- msgstr "Tipp: Länge 10-70 Charaktere"
11184
-
11185
- #: view/SeoSettings/Automation.php:144
11186
- msgid "Separator"
11187
- msgstr ""
11188
-
11189
- #: view/SeoSettings/Automation.php:145
11190
- msgid ""
11191
- "Use separator to help user read the most relevant part of your title and "
11192
- "increase Conversion Rate"
11193
- msgstr ""
11194
-
11195
- #: view/SeoSettings/Automation.php:184
11196
- msgid "Let Google Index it"
11197
- msgstr ""
11198
-
11199
- #: view/SeoSettings/Automation.php:185
11200
- msgid ""
11201
- "If you switch off this option, Squirrly will add noindex meta for this post "
11202
- "type."
11203
- msgstr ""
11204
-
11205
- #: view/SeoSettings/Automation.php:211
11206
- msgid "Send Authority to it"
11207
- msgstr ""
11208
-
11209
- #: view/SeoSettings/Automation.php:212
11210
- msgid ""
11211
- "If you sq-switch off this option, Squirrly will add nofollow meta for this "
11212
- "post type."
11213
- msgstr ""
11214
-
11215
- #: view/SeoSettings/Automation.php:230
11216
- msgid "Include In Sitemap"
11217
- msgstr ""
11218
-
11219
- #: view/SeoSettings/Automation.php:231
11220
- msgid "Let Squirrly SEO include this post type in Squirrly Sitemap XML."
11221
- msgstr ""
11222
-
11223
- #: view/SeoSettings/Automation.php:246
11224
- msgid "Redirect Broken URLs"
11225
- msgstr ""
11226
-
11227
- #: view/SeoSettings/Automation.php:247
11228
- msgid ""
11229
- "Redirect the broken URL in case it is changed with a new one in Post Editor."
11230
- msgstr ""
11231
-
11232
- #: view/SeoSettings/Automation.php:258
11233
- msgid "Redirect Attachments Page"
11234
- msgstr ""
11235
-
11236
- #: view/SeoSettings/Automation.php:259
11237
- msgid "Redirect the attachment page to its image URL."
11238
- msgstr ""
11239
-
11240
- #: view/SeoSettings/Automation.php:260
11241
- msgid "Recommended if your website is not a photography website."
11242
- msgstr ""
11243
-
11244
- # @ squirrly-seo
11245
- #: view/SeoSettings/Automation.php:282
11246
- #, fuzzy
11247
- #| msgid "Squirrly settings"
11248
- msgid "Load Squirrly SEO METAs"
11249
- msgstr "Squirrly Einstellungen"
11250
-
11251
- #: view/SeoSettings/Automation.php:283
11252
- msgid ""
11253
- "Let Squirrly SEO load the Title, Description, Keyword METAs for this post "
11254
- "type."
11255
- msgstr ""
11256
-
11257
- # @ squirrly-seo
11258
- #: view/SeoSettings/Automation.php:301
11259
- #, fuzzy
11260
- #| msgid "Squirrly settings"
11261
- msgid "Load Squirrly Patterns"
11262
- msgstr "Squirrly Einstellungen"
11263
-
11264
- #: view/SeoSettings/Automation.php:302
11265
- msgid "Let Squirrly SEO load the Patterns for this post type."
11266
- msgstr ""
11267
-
11268
- #: view/SeoSettings/Automation.php:313
11269
- msgid "Activate Json-Ld"
11270
- msgstr ""
11271
-
11272
- #: view/SeoSettings/Automation.php:320
11273
- msgid "Load JSON-LD Structured Data"
11274
- msgstr ""
11275
-
11276
- #: view/SeoSettings/Automation.php:321
11277
- msgid "Let Squirrly SEO load the JSON-LD META for this post type."
11278
- msgstr ""
11279
-
11280
- #: view/SeoSettings/Automation.php:337 view/SeoSettings/Automation.php:370
11281
- #: view/SeoSettings/Automation.php:397
11282
- msgid "Activate Social Media"
11283
- msgstr ""
11284
-
11285
- #: view/SeoSettings/Automation.php:343
11286
- msgid "Open Graph & JSON-LD Type"
11287
- msgstr ""
11288
-
11289
- #: view/SeoSettings/Automation.php:344
11290
- msgid "Select which Open Graph type to load for this post type."
11291
- msgstr ""
11292
-
11293
- #: view/SeoSettings/Automation.php:345
11294
- msgid "JSON-LD will try to load the relevant data for this type."
11295
- msgstr ""
11296
-
11297
- # @ squirrly-seo
11298
- #: view/SeoSettings/Automation.php:384
11299
- #, fuzzy
11300
- #| msgid "Squirrly settings"
11301
- msgid "Load Squirrly Open Graph"
11302
- msgstr "Squirrly Einstellungen"
11303
-
11304
- #: view/SeoSettings/Automation.php:385
11305
- msgid "Let Squirrly SEO load the Open Graph for this post type."
11306
- msgstr ""
11307
-
11308
- # @ squirrly-seo
11309
- #: view/SeoSettings/Automation.php:411
11310
- #, fuzzy
11311
- #| msgid "Squirrly settings"
11312
- msgid "Load Squirrly Twitter Card"
11313
- msgstr "Squirrly Einstellungen"
11314
-
11315
- #: view/SeoSettings/Automation.php:412
11316
- msgid "Let Squirrly SEO load the Twitter Card for this post type."
11317
- msgstr ""
11318
-
11319
- #: view/SeoSettings/Automation.php:427 view/SeoSettings/Automation.php:446
11320
- #: view/SeoSettings/Tracking.php:32
11321
- msgid "Activate Trackers"
11322
- msgstr ""
11323
-
11324
- # @ squirrly-seo
11325
- #: view/SeoSettings/Automation.php:434
11326
- #, fuzzy
11327
- #| msgid "Google %sAnalytics ID%s`:"
11328
- msgid "Load Google Analytics Tracking Script"
11329
- msgstr "Google %sAnalytics ID%s`:"
11330
-
11331
- # @ squirrly-seo
11332
- #: view/SeoSettings/Automation.php:435
11333
- #, fuzzy
11334
- #| msgid "Google %sAnalytics ID%s`:"
11335
- msgid "Let Google Analytics Tracking to load for this post type."
11336
- msgstr "Google %sAnalytics ID%s`:"
11337
-
11338
- #: view/SeoSettings/Automation.php:453
11339
- msgid "Load Facebook Pixel Tracking Script"
11340
- msgstr ""
11341
-
11342
- #: view/SeoSettings/Automation.php:454
11343
- msgid "Let Facebook Pixel Tracking to load for this post type."
11344
- msgstr ""
11345
-
11346
- # @ squirrly-seo
11347
- #: view/SeoSettings/Automation.php:464
11348
- #, fuzzy, php-format
11349
- #| msgid "Could not send the email..."
11350
- msgid "Do you want to delete the automation for %s?"
11351
- msgstr "Konnte E-Mail nicht senden ..."
11352
-
11353
- #: view/SeoSettings/Automation.php:464
11354
- #, php-format
11355
- msgid "Remove automation for %s"
11356
- msgstr ""
11357
-
11358
- # @ squirrly-seo
11359
- #: view/SeoSettings/Automation.php:493
11360
- #, fuzzy
11361
- #| msgid "Squirrly settings"
11362
- msgid "Squirrly Patterns"
11363
- msgstr "Squirrly Einstellungen"
11364
-
11365
- #: view/SeoSettings/Automation.php:495
11366
- msgid ""
11367
- "Use the Pattern system to prevent Title and Description duplicates between "
11368
- "posts"
11369
- msgstr ""
11370
-
11371
- #: view/SeoSettings/Automation.php:501
11372
- msgid ""
11373
- "Patterns change the codes like {{title}} with the actual value of the post "
11374
- "Title."
11375
- msgstr ""
11376
-
11377
- #: view/SeoSettings/Automation.php:502
11378
- msgid ""
11379
- "In Squirrly, each post type in your site comes with a predefined posting "
11380
- "pattern when displayed onto your website. However, based on your site's "
11381
- "purpose and needs, you can also decide what information these patterns will "
11382
- "include."
11383
- msgstr ""
11384
-
11385
- #: view/SeoSettings/Automation.php:503
11386
- msgid ""
11387
- "Once you set up a pattern for a particular post type, only the content "
11388
- "required by your custom sequence will be displayed."
11389
- msgstr ""
11390
-
11391
- #: view/SeoSettings/Automation.php:504
11392
- #, php-format
11393
- msgid ""
11394
- "Squirrly lets you see how the customized patterns will apply when posts/"
11395
- "pages are shared across social media or search engine feeds. You just need "
11396
- "to go to the %sBulk SEO%s and see the meta information for each post type."
11397
- msgstr ""
11398
-
11399
- #: view/SeoSettings/Automation.php:512
11400
- msgid "META Lengths"
11401
- msgstr ""
11402
-
11403
- #: view/SeoSettings/Automation.php:514
11404
- msgid "Change the lengths for each META on automation"
11405
- msgstr ""
11406
-
11407
- #: view/SeoSettings/Automation.php:520
11408
- msgid "Title Length"
11409
- msgstr ""
11410
-
11411
- #: view/SeoSettings/Automation.php:528
11412
- msgid "Description Length"
11413
- msgstr ""
11414
-
11415
- #: view/SeoSettings/Automation.php:536
11416
- msgid "Open Graph Title Length"
11417
- msgstr ""
11418
-
11419
- #: view/SeoSettings/Automation.php:544
11420
- msgid "Open Graph Description Length"
11421
- msgstr ""
11422
-
11423
- #: view/SeoSettings/Automation.php:552
11424
- msgid "Twitter Card Title Length"
11425
- msgstr ""
11426
-
11427
- #: view/SeoSettings/Automation.php:560
11428
- msgid "Twitter Card Description Length"
11429
- msgstr ""
11430
-
11431
- #: view/SeoSettings/Automation.php:568
11432
- msgid "JSON-LD Title Length"
11433
- msgstr ""
11434
-
11435
- #: view/SeoSettings/Automation.php:576
11436
- msgid "JSON-LD Description Length"
11437
- msgstr ""
11438
-
11439
- #: view/SeoSettings/Backup.php:7 view/SeoSettings/Jsonld.php:7
11440
- msgid ""
11441
- "You do not have permission to access this page. You need Squirrly SEO Admin "
11442
- "role"
11443
- msgstr ""
11444
-
11445
- #: view/SeoSettings/Backup.php:23
11446
- msgid "Import Settings & SEO"
11447
- msgstr ""
11448
-
11449
- #: view/SeoSettings/Backup.php:25
11450
- msgid ""
11451
- "Import the settings and SEO from other plugins so you can use only Squirrly "
11452
- "SEO for on-page SEO."
11453
- msgstr ""
11454
-
11455
- #: view/SeoSettings/Backup.php:26
11456
- msgid ""
11457
- "Note! If you import the SEO settings from other plugins or themes, you will "
11458
- "lose all the settings that you had in Squirrly SEO. Make sure you backup "
11459
- "your settings from the panel below before you do this."
11460
- msgstr ""
11461
-
11462
- #: view/SeoSettings/Backup.php:43
11463
- msgid "Import Settings From"
11464
- msgstr ""
11465
-
11466
- #: view/SeoSettings/Backup.php:44
11467
- msgid "Select the plugin or theme you want to import the Settings from."
11468
- msgstr ""
11469
-
11470
- #: view/SeoSettings/Backup.php:45
11471
- msgid "Note! It will overwrite the settings you set in Squirrly SEO."
11472
- msgstr ""
11473
-
11474
- # @ squirrly-seo
11475
- #: view/SeoSettings/Backup.php:61
11476
- #, fuzzy
11477
- #| msgid "Squirrly settings"
11478
- msgid "Import Settings"
11479
- msgstr "Squirrly Einstellungen"
11480
-
11481
- #: view/SeoSettings/Backup.php:72
11482
- msgid "Import SEO From"
11483
- msgstr ""
11484
-
11485
- #: view/SeoSettings/Backup.php:73
11486
- msgid "Select the plugin or theme you want to import the SEO settings from."
11487
- msgstr ""
11488
-
11489
- #: view/SeoSettings/Backup.php:74
11490
- msgid ""
11491
- "Note! It will import only the SEO for the pages that were not yet optimized "
11492
- "with Squirrly SEO."
11493
- msgstr ""
11494
-
11495
- #: view/SeoSettings/Backup.php:101
11496
- msgid "Backup Settings & SEO"
11497
- msgstr ""
11498
-
11499
- #: view/SeoSettings/Backup.php:103
11500
- msgid ""
11501
- "You can now download your Squirrly settings in an sql file before you go "
11502
- "ahead and import the SEO settings from another plugin. That way, you can "
11503
- "always go back to your Squirrly settings."
11504
- msgstr ""
11505
-
11506
- # @ squirrly-seo
11507
- #: view/SeoSettings/Backup.php:110
11508
- #, fuzzy
11509
- #| msgid "Squirrly settings"
11510
- msgid "Backup Settings"
11511
- msgstr "Squirrly Einstellungen"
11512
-
11513
- #: view/SeoSettings/Backup.php:111
11514
- msgid "Download all the settings from Squirrly SEO."
11515
- msgstr ""
11516
-
11517
- #: view/SeoSettings/Backup.php:116
11518
- msgid "Download Backup"
11519
- msgstr ""
11520
-
11521
- #: view/SeoSettings/Backup.php:124
11522
- msgid "Backup SEO"
11523
- msgstr ""
11524
-
11525
- #: view/SeoSettings/Backup.php:125
11526
- msgid "Download all the Squirrly SEO Snippet optimizations."
11527
- msgstr ""
11528
-
11529
- #: view/SeoSettings/Backup.php:130
11530
- msgid "Download Backup"
11531
- msgstr ""
11532
-
11533
- #: view/SeoSettings/Backup.php:138
11534
- msgid "Restore Settings & SEO"
11535
- msgstr ""
11536
-
11537
- #: view/SeoSettings/Backup.php:140
11538
- msgid "Restore the settings and all the pages optimized with Squirrly SEO."
11539
- msgstr ""
11540
-
11541
- # @ squirrly-seo
11542
- #: view/SeoSettings/Backup.php:147 view/SeoSettings/Backup.php:156
11543
- #, fuzzy
11544
- #| msgid "Squirrly settings"
11545
- msgid "Restore Settings"
11546
- msgstr "Squirrly Einstellungen"
11547
-
11548
- #: view/SeoSettings/Backup.php:148
11549
- msgid "Upload the file with the saved Squirrly Settings."
11550
- msgstr ""
11551
-
11552
- #: view/SeoSettings/Backup.php:164 view/SeoSettings/Backup.php:173
11553
- msgid "Restore SEO"
11554
- msgstr ""
11555
-
11556
- #: view/SeoSettings/Backup.php:165
11557
- msgid "Upload the file with the saved Squirrly SEO SQL file."
11558
- msgstr ""
11559
-
11560
- #: view/SeoSettings/Backup.php:180
11561
- msgid "Rollback Plugin"
11562
- msgstr ""
11563
-
11564
- #: view/SeoSettings/Backup.php:182
11565
- msgid "You can rollback Squirrly SEO plugin to the last stable version."
11566
- msgstr ""
11567
-
11568
- #: view/SeoSettings/Backup.php:189
11569
- msgid "Rollback to"
11570
- msgstr ""
11571
-
11572
- #: view/SeoSettings/Backup.php:190
11573
- msgid "Install the last stable version of the plugin."
11574
- msgstr ""
11575
-
11576
- # @ squirrly-seo
11577
- #: view/SeoSettings/Backup.php:195
11578
- #, fuzzy
11579
- #| msgid "Squirrly settings"
11580
- msgid "Install Squirrly SEO"
11581
- msgstr "Squirrly Einstellungen"
11582
-
11583
- #: view/SeoSettings/Favicon.php:27
11584
- msgid "Website Icon"
11585
- msgstr ""
11586
-
11587
- #: view/SeoSettings/Favicon.php:35
11588
- msgid "Activate Favicon"
11589
- msgstr ""
11590
-
11591
- #: view/SeoSettings/Favicon.php:55
11592
- msgid "Upload file"
11593
- msgstr ""
11594
-
11595
- #: view/SeoSettings/Favicon.php:56
11596
- msgid "Upload a jpg, jpeg, png or ico file."
11597
- msgstr ""
11598
-
11599
- #: view/SeoSettings/Favicon.php:86
11600
- msgid "Add Apple Touch Icons"
11601
- msgstr ""
11602
-
11603
- #: view/SeoSettings/Favicon.php:87
11604
- msgid "Also load the favicon for Apple devices."
11605
- msgstr ""
11606
-
11607
- #: view/SeoSettings/Favicon.php:93
11608
- msgid ""
11609
- "If you don't see the new icon in your browser, empty the browser cache and "
11610
- "refresh the page."
11611
- msgstr ""
11612
-
11613
- #: view/SeoSettings/Favicon.php:94
11614
- msgid "Accepted file types: JPG, JPEG, GIF and PNG."
11615
- msgstr ""
11616
-
11617
- #: view/SeoSettings/Favicon.php:95
11618
- msgid ""
11619
- "Does not physically create the favicon.ico file. The best option for "
11620
- "Multisites."
11621
- msgstr ""
11622
-
11623
- #: view/SeoSettings/Jsonld.php:27
11624
- msgid "JSON-LD Structured Data"
11625
- msgstr ""
11626
-
11627
- #: view/SeoSettings/Jsonld.php:57
11628
- msgid "Your Site Type"
11629
- msgstr ""
11630
-
11631
- #: view/SeoSettings/Jsonld.php:58
11632
- msgid ""
11633
- "The Organization details will be added in JSON-LD publisher section for "
11634
- "every page and post"
11635
- msgstr ""
11636
-
11637
- #: view/SeoSettings/Jsonld.php:63
11638
- msgid "Organization"
11639
- msgstr ""
11640
-
11641
- #: view/SeoSettings/Jsonld.php:64
11642
- msgid "Personal"
11643
- msgstr ""
11644
-
11645
- #: view/SeoSettings/Jsonld.php:73
11646
- msgid "Your Organization Name"
11647
- msgstr ""
11648
-
11649
- #: view/SeoSettings/Jsonld.php:75
11650
- msgid "eg. COMPANY LTD"
11651
- msgstr ""
11652
-
11653
- #: view/SeoSettings/Jsonld.php:83 view/SeoSettings/Jsonld.php:154
11654
- msgid "Logo URL"
11655
- msgstr ""
11656
-
11657
- #: view/SeoSettings/Jsonld.php:88 view/SeoSettings/Jsonld.php:159
11658
- #: view/SeoSettings/Metas.php:199
11659
- msgid "Select Image"
11660
- msgstr ""
11661
-
11662
- #: view/SeoSettings/Jsonld.php:93 view/SeoSettings/Jsonld.php:164
11663
- msgid "Contact Phone"
11664
- msgstr ""
11665
-
11666
- #: view/SeoSettings/Jsonld.php:94 view/SeoSettings/Jsonld.php:165
11667
- msgid "eg. +1-541-754-3010"
11668
- msgstr ""
11669
-
11670
- #: view/SeoSettings/Jsonld.php:102
11671
- msgid "Contact Type"
11672
- msgstr ""
11673
-
11674
- #: view/SeoSettings/Jsonld.php:107
11675
- msgid "Customer Service"
11676
- msgstr ""
11677
-
11678
- #: view/SeoSettings/Jsonld.php:108
11679
- msgid "Technical Support"
11680
- msgstr ""
11681
-
11682
- #: view/SeoSettings/Jsonld.php:109
11683
- msgid "Billing Support"
11684
- msgstr ""
11685
-
11686
- #: view/SeoSettings/Jsonld.php:110
11687
- msgid "Bill Payment"
11688
- msgstr ""
11689
-
11690
- #: view/SeoSettings/Jsonld.php:111
11691
- msgid "Sales"
11692
- msgstr ""
11693
-
11694
- #: view/SeoSettings/Jsonld.php:112
11695
- msgid "Reservations"
11696
- msgstr ""
11697
-
11698
- #: view/SeoSettings/Jsonld.php:113
11699
- msgid "Credit Card Support"
11700
- msgstr ""
11701
-
11702
- #: view/SeoSettings/Jsonld.php:114
11703
- msgid "Emergency"
11704
- msgstr ""
11705
-
11706
- #: view/SeoSettings/Jsonld.php:115
11707
- msgid "Baggage Tracking"
11708
- msgstr ""
11709
-
11710
- #: view/SeoSettings/Jsonld.php:116
11711
- msgid "Roadside Assistance"
11712
- msgstr ""
11713
-
11714
- #: view/SeoSettings/Jsonld.php:117
11715
- msgid "Package Tracking"
11716
- msgstr ""
11717
-
11718
- #: view/SeoSettings/Jsonld.php:123 view/SeoSettings/Jsonld.php:173
11719
- msgid "Short Description"
11720
- msgstr ""
11721
-
11722
- #: view/SeoSettings/Jsonld.php:124
11723
- msgid "A short description about the company. 20-50 words."
11724
- msgstr ""
11725
-
11726
- #: view/SeoSettings/Jsonld.php:135
11727
- msgid "Your Name"
11728
- msgstr ""
11729
-
11730
- #: view/SeoSettings/Jsonld.php:137
11731
- msgid "eg. John Smith"
11732
- msgstr ""
11733
-
11734
- #: view/SeoSettings/Jsonld.php:145
11735
- msgid "Job Title"
11736
- msgstr ""
11737
-
11738
- #: view/SeoSettings/Jsonld.php:146
11739
- msgid "eg. Sales Manager"
11740
- msgstr ""
11741
-
11742
- #: view/SeoSettings/Jsonld.php:174
11743
- msgid "A short description about your job title."
11744
- msgstr ""
11745
-
11746
- #: view/SeoSettings/Jsonld.php:185
11747
- msgid "More Json-LD Settings"
11748
- msgstr ""
11749
-
11750
- #: view/SeoSettings/Jsonld.php:194
11751
- msgid "Add Support For Woocommerce"
11752
- msgstr ""
11753
-
11754
- #: view/SeoSettings/Jsonld.php:195
11755
- msgid ""
11756
- "Improve the Woocommerce Product and Orders Schema with the required data."
11757
- msgstr ""
11758
-
11759
- #: view/SeoSettings/Jsonld.php:205
11760
- msgid "Add default data for Woocommerce Products"
11761
- msgstr ""
11762
-
11763
- #: view/SeoSettings/Jsonld.php:206
11764
- msgid ""
11765
- "Add default data for JSON-LD aggregateRating, review, offers, sku, mpn to "
11766
- "avoid GSC errors."
11767
- msgstr ""
11768
-
11769
- #: view/SeoSettings/Jsonld.php:216
11770
- msgid "Add Breadcrumbs in Json-LD"
11771
- msgstr ""
11772
-
11773
- #: view/SeoSettings/Jsonld.php:217
11774
- msgid ""
11775
- "Add the BreadcrumbsList Schema into Json-LD including all parent categories."
11776
- msgstr ""
11777
-
11778
- #: view/SeoSettings/Jsonld.php:227
11779
- msgid "Remove other Json-LD from page"
11780
- msgstr ""
11781
-
11782
- #: view/SeoSettings/Jsonld.php:228
11783
- msgid ""
11784
- "Clear the Json-LD from other plugins and theme to avoid duplicate schemas."
11785
- msgstr ""
11786
-
11787
- #: view/SeoSettings/Metas.php:48
11788
- msgid "Optimize the Titles"
11789
- msgstr ""
11790
-
11791
- #: view/SeoSettings/Metas.php:50
11792
- msgid ""
11793
- "Add the Title Tag in the page header. You can customize it using the Bulk "
11794
- "SEO and Squirrly SEO Snippet."
11795
- msgstr ""
11796
-
11797
- #: view/SeoSettings/Metas.php:60
11798
- msgid "Optimize Descriptions"
11799
- msgstr ""
11800
-
11801
- #: view/SeoSettings/Metas.php:62
11802
- msgid ""
11803
- "Add the Description meta in the page header. You can customize it using the "
11804
- "Bulk SEO and Squirrly SEO Snippet."
11805
- msgstr ""
11806
-
11807
- # @ squirrly-seo
11808
- #: view/SeoSettings/Metas.php:72
11809
- #, fuzzy
11810
- #| msgid "Tips: 2-4 keywords"
11811
- msgid "Optimize Keywords"
11812
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
11813
-
11814
- #: view/SeoSettings/Metas.php:74
11815
- msgid ""
11816
- "Add the Keyword meta in the page header. You can customize it using the Bulk "
11817
- "SEO and Squirrly SEO Snippet."
11818
- msgstr ""
11819
-
11820
- #: view/SeoSettings/Metas.php:75
11821
- msgid ""
11822
- "This meta is not mandatory for Google but other search engines still use it "
11823
- "for ranking"
11824
- msgstr ""
11825
-
11826
- # @ squirrly-seo
11827
- #: view/SeoSettings/Metas.php:86
11828
- #, fuzzy
11829
- #| msgid "adds <strong>canonical</strong> link in home page"
11830
- msgid "Add Canonical Meta Link"
11831
- msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
11832
-
11833
- #: view/SeoSettings/Metas.php:88
11834
- msgid ""
11835
- "Add canonical link meta in the page header. You can customize the canonical "
11836
- "link on each page."
11837
- msgstr ""
11838
-
11839
- #: view/SeoSettings/Metas.php:89
11840
- msgid ""
11841
- "Also add prev & next links metas in the page header when navigate between "
11842
- "blog pages."
11843
- msgstr ""
11844
-
11845
- #: view/SeoSettings/Metas.php:99
11846
- msgid "Add Dublin Core Meta"
11847
- msgstr ""
11848
 
11849
  # @ squirrly-seo
11850
- #: view/SeoSettings/Metas.php:101
11851
  #, fuzzy
11852
- #| msgid "adds <strong>canonical</strong> link in home page"
11853
- msgid "Add the Dublin Core meta in the page header."
11854
- msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
11855
-
11856
- #: view/SeoSettings/Metas.php:111
11857
- msgid "Add Robots Meta"
11858
- msgstr ""
11859
-
11860
- #: view/SeoSettings/Metas.php:113
11861
- msgid ""
11862
- "Add the Index/Noindex and Follow/Nofollow options in Squirrly SEO Snippet."
11863
- msgstr ""
11864
-
11865
- #: view/SeoSettings/Metas.php:114
11866
- msgid "Add googlebot and bingbot METAs for better performance."
11867
- msgstr ""
11868
 
11869
  # @ squirrly-seo
11870
- #: view/SeoSettings/Metas.php:121
11871
  #, fuzzy
11872
- #| msgid "Squirrly settings"
11873
- msgid "More SEO Settings"
11874
- msgstr "Squirrly Einstellungen"
11875
-
11876
- #: view/SeoSettings/Metas.php:129
11877
- msgid "Add the Post tags in Keyword META"
11878
- msgstr ""
11879
-
11880
- #: view/SeoSettings/Metas.php:131
11881
- msgid ""
11882
- "Add all the tags from your posts as keywords. Not recommended when you use "
11883
- "Keywords in Squirrly SEO Snippet."
11884
- msgstr ""
11885
-
11886
- #: view/SeoSettings/Metas.php:141
11887
- msgid "Activate Snippet in Frontend"
11888
- msgstr ""
11889
-
11890
- #: view/SeoSettings/Metas.php:143
11891
- msgid ""
11892
- "Load Squirrly SEO Snippet in Frontend to customize the SEO directly from "
11893
- "page preview."
11894
- msgstr ""
11895
-
11896
- #: view/SeoSettings/Metas.php:155
11897
- msgid "First Page Optimization"
11898
- msgstr ""
11899
-
11900
- #: view/SeoSettings/Metas.php:157
11901
- msgid ""
11902
- "Needed when you didn't set a specific page as Homepage in Settings > Reading "
11903
- "page"
11904
- msgstr ""
11905
 
11906
  # @ squirrly-seo
11907
- #: view/SeoSettings/Metas.php:185
11908
  #, fuzzy
11909
- #| msgid "Tips: 2-4 keywords"
11910
- msgid "Keywords"
11911
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
11912
-
11913
- #: view/SeoSettings/Metas.php:186
11914
- msgid "Tips: use 2-4 keywords"
11915
- msgstr ""
11916
-
11917
- #: view/SeoSettings/Metas.php:207
11918
- msgid "First Page Preview"
11919
- msgstr ""
11920
-
11921
- #: view/SeoSettings/Metas.php:209
11922
- msgid "See how the social snippet will look like for the front page"
11923
- msgstr ""
11924
 
11925
  # @ squirrly-seo
11926
- #: view/SeoSettings/Metas.php:214
11927
  #, fuzzy
11928
- #| msgid "Squirrly LIVE SEO assistant"
11929
- msgid "Squirrly Snippet"
11930
- msgstr "Squirrly LIVE SEO-Assistent"
11931
-
11932
- #: view/SeoSettings/Metas.php:225
11933
- msgid ""
11934
- "If you don't see any changes in your Google snippet, check if other SEO "
11935
- "themes or plugins affect Squirrly."
11936
- msgstr ""
11937
 
11938
- #: view/SeoSettings/Robots.php:29
11939
- msgid ""
11940
- "A robots.txt file tells search engine crawlers which pages or files the "
11941
- "crawler can or can't request from your site."
11942
- msgstr ""
11943
 
11944
  # @ squirrly-seo
11945
- #: view/SeoSettings/Robots.php:35
11946
  #, fuzzy
11947
- #| msgid "Google %sAnalytics ID%s`:"
11948
- msgid "Activate Robots"
11949
- msgstr "Google %sAnalytics ID%s`:"
11950
-
11951
- #: view/SeoSettings/Robots.php:56
11952
- msgid "Edit the Robots.txt data"
11953
- msgstr ""
11954
-
11955
- #: view/SeoSettings/Robots.php:57
11956
- msgid ""
11957
- "Does not physically create the robots.txt file. The best option for "
11958
- "Multisites."
11959
- msgstr ""
11960
-
11961
- #: view/SeoSettings/Sitemap.php:55
11962
- msgid "Blogging Frequency"
11963
- msgstr ""
11964
-
11965
- #: view/SeoSettings/Sitemap.php:56
11966
- msgid "How often do you write new posts?"
11967
- msgstr ""
11968
-
11969
- #: view/SeoSettings/Sitemap.php:60
11970
- msgid "every hour"
11971
- msgstr ""
11972
-
11973
- #: view/SeoSettings/Sitemap.php:61
11974
- msgid "every day"
11975
- msgstr ""
11976
-
11977
- #: view/SeoSettings/Sitemap.php:62
11978
- msgid "1-3 times per week"
11979
- msgstr ""
11980
-
11981
- #: view/SeoSettings/Sitemap.php:63
11982
- msgid "1-3 times per month"
11983
- msgstr ""
11984
-
11985
- #: view/SeoSettings/Sitemap.php:64
11986
- msgid "1-3 times per year"
11987
- msgstr ""
11988
-
11989
- #: view/SeoSettings/Sitemap.php:74
11990
- msgid "Ping New Posts to Google"
11991
- msgstr ""
11992
-
11993
- #: view/SeoSettings/Sitemap.php:75
11994
- msgid "Ping your sitemap to Google and Bing when a new post is published."
11995
- msgstr ""
11996
 
11997
  # @ squirrly-seo
11998
- #: view/SeoSettings/Sitemap.php:76
11999
  #, fuzzy
12000
- #| msgid "Google %sAnalytics ID%s`:"
12001
- msgid "Not recommended if you added your sitemap in Google Search Console."
12002
- msgstr "Google %sAnalytics ID%s`:"
12003
-
12004
- #: view/SeoSettings/Sitemap.php:87
12005
- msgid "Combine Languages in Sitemap"
12006
- msgstr ""
12007
-
12008
- #: view/SeoSettings/Sitemap.php:88
12009
- msgid "Add all languages in the same sitemap.xml file"
12010
- msgstr ""
12011
-
12012
- #: view/SeoSettings/Sitemap.php:89
12013
- msgid ""
12014
- "If not selected, you have to add the language slug for each snippet. e.g. /"
12015
- "en/sitemap.xml"
12016
- msgstr ""
12017
-
12018
- #: view/SeoSettings/Sitemap.php:98
12019
- msgid "Build Sitemaps for"
12020
- msgstr ""
12021
-
12022
- #: view/SeoSettings/Sitemap.php:100
12023
- #, php-format
12024
- msgid ""
12025
- "Check the sitemap you want Squirrly to build for your website. Your sitemap "
12026
- "will be %s"
12027
- msgstr ""
12028
-
12029
- #: view/SeoSettings/Sitemap.php:101
12030
- msgid ""
12031
- "Verify your sitemaps after you activate them to have data. Uncheck them if "
12032
- "they don't have URLs to avoid Google errors."
12033
- msgstr ""
12034
-
12035
- #: view/SeoSettings/Sitemap.php:110
12036
- msgid "Home Page"
12037
- msgstr ""
12038
-
12039
- #: view/SeoSettings/Sitemap.php:111
12040
- msgid "Build the sitemap for the home page."
12041
- msgstr ""
12042
-
12043
- #: view/SeoSettings/Sitemap.php:120
12044
- msgid "Google News"
12045
- msgstr ""
12046
-
12047
- #: view/SeoSettings/Sitemap.php:121
12048
- #, php-format
12049
- msgid ""
12050
- "Only if you have a news website. Make sure you submit your website to "
12051
- "%sGoogle News%s first."
12052
- msgstr ""
12053
-
12054
- #: view/SeoSettings/Sitemap.php:133
12055
- msgid "Posts"
12056
- msgstr ""
12057
-
12058
- #: view/SeoSettings/Sitemap.php:134
12059
- msgid "Build the sitemap for your posts."
12060
- msgstr ""
12061
-
12062
- #: view/SeoSettings/Sitemap.php:143
12063
- msgid "Attachments"
12064
- msgstr ""
12065
-
12066
- #: view/SeoSettings/Sitemap.php:144
12067
- msgid "Only recommended if you have a photography website."
12068
- msgstr ""
12069
-
12070
- #: view/SeoSettings/Sitemap.php:155
12071
- msgid "Categories"
12072
- msgstr ""
12073
-
12074
- #: view/SeoSettings/Sitemap.php:156
12075
- msgid "Build the sitemap for your post categories."
12076
- msgstr ""
12077
-
12078
- #: view/SeoSettings/Sitemap.php:166
12079
- msgid "Tags"
12080
- msgstr ""
12081
-
12082
- #: view/SeoSettings/Sitemap.php:167
12083
- msgid "Build the sitemap for your post tags."
12084
- msgstr ""
12085
 
12086
  # @ squirrly-seo
12087
- #: view/SeoSettings/Sitemap.php:178
12088
  #, fuzzy
12089
- #| msgid "Squirrly settings"
12090
- msgid "Pages"
12091
- msgstr "Squirrly Einstellungen"
12092
-
12093
- #: view/SeoSettings/Sitemap.php:179
12094
- msgid "Build the sitemap for your pages."
12095
- msgstr ""
12096
-
12097
- #: view/SeoSettings/Sitemap.php:188
12098
- msgid "Archive"
12099
- msgstr ""
12100
-
12101
- #: view/SeoSettings/Sitemap.php:189
12102
- msgid "Build the sitemap for your archive links."
12103
- msgstr ""
12104
-
12105
- #: view/SeoSettings/Sitemap.php:200
12106
- msgid "Custom Taxonomies"
12107
- msgstr ""
12108
-
12109
- #: view/SeoSettings/Sitemap.php:201
12110
- msgid "Build the sitemap for your custom post type categories and tags."
12111
- msgstr ""
12112
-
12113
- #: view/SeoSettings/Sitemap.php:210
12114
- msgid "Custom Posts"
12115
- msgstr ""
12116
-
12117
- #: view/SeoSettings/Sitemap.php:211
12118
- msgid ""
12119
- "Build the sitemap for your custom post types (other than WP posts and pages)."
12120
- msgstr ""
12121
-
12122
- #: view/SeoSettings/Sitemap.php:223
12123
- msgid "Products"
12124
- msgstr ""
12125
-
12126
- #: view/SeoSettings/Sitemap.php:224
12127
- msgid "Build the sitemap for your e-commerce products."
12128
- msgstr ""
12129
-
12130
- #: view/SeoSettings/Sitemap.php:244
12131
- msgid "Include Images in Sitemap"
12132
- msgstr ""
12133
-
12134
- #: view/SeoSettings/Sitemap.php:245
12135
- msgid ""
12136
- "Add the image tag for each post with feature image to index your images in "
12137
- "Google Image Search."
12138
- msgstr ""
12139
-
12140
- #: view/SeoSettings/Sitemap.php:255
12141
- msgid "Include Videos in Sitemap"
12142
- msgstr ""
12143
-
12144
- #: view/SeoSettings/Sitemap.php:256
12145
- msgid "Add the video tag for each post with embed video in it."
12146
- msgstr ""
12147
-
12148
- #: view/SeoSettings/Sitemap.php:268
12149
- msgid "Sitemap Pagination"
12150
- msgstr ""
12151
-
12152
- #: view/SeoSettings/Sitemap.php:269
12153
- msgid "How many Posts per page to show in sitemap?"
12154
- msgstr ""
12155
-
12156
- #: view/SeoSettings/Sitemap.php:287
12157
- msgid "Fix Relative URLs"
12158
- msgstr ""
12159
-
12160
- #: view/SeoSettings/Sitemap.php:288
12161
- #, php-format
12162
- msgid ""
12163
- "Make sure that all URLs have the absolute path in each Sitemap. It's "
12164
- "important to prevent broken links especially when you export your Sitemap to "
12165
- "%sFeedburner%s"
12166
- msgstr ""
12167
-
12168
- #: view/SeoSettings/Social.php:48
12169
- msgid ""
12170
- "Add the Social Open Graph protocol so that your Facebook shares look good."
12171
- msgstr ""
12172
-
12173
- #: view/SeoSettings/Social.php:49
12174
- #, php-format
12175
- msgid ""
12176
- "You can always update an URL on Facebook if you change its Social Media "
12177
- "Image. Visit %sOpen Graph Debugger%s"
12178
- msgstr ""
12179
-
12180
- #: view/SeoSettings/Social.php:58
12181
- msgid "Facebook Share Language"
12182
- msgstr ""
12183
-
12184
- #: view/SeoSettings/Social.php:59
12185
- msgid ""
12186
- "Use this so that Facebook can automatically translate the text into the "
12187
- "reader's language"
12188
- msgstr ""
12189
-
12190
- #: view/SeoSettings/Social.php:208
12191
- msgid "Facebook App ID"
12192
- msgstr ""
12193
-
12194
- #: view/SeoSettings/Social.php:209
12195
- #, php-format
12196
- msgid ""
12197
- "Add the %sFacebook App ID%s to create a connection between your Facebook "
12198
- "Page and your Website."
12199
- msgstr ""
12200
-
12201
- #: view/SeoSettings/Social.php:228 view/SeoSettings/Social.php:240
12202
- #: view/SeoSettings/Social.php:253
12203
- msgid "Facebook Admin ID"
12204
- msgstr ""
12205
-
12206
- #: view/SeoSettings/Social.php:229 view/SeoSettings/Social.php:241
12207
- msgid ""
12208
- "Similar to Facebook App ID, Facebook Admin ID connects your Facebook Page to "
12209
- "your Website."
12210
- msgstr ""
12211
-
12212
- #: view/SeoSettings/Social.php:260
12213
- msgid "Add multiple Facebook Admin IDs"
12214
- msgstr ""
12215
-
12216
- #: view/SeoSettings/Social.php:271
12217
- msgid ""
12218
- "Add the Twitter Card in your tweets so that your Twitter shares look good."
12219
- msgstr ""
12220
-
12221
- #: view/SeoSettings/Social.php:272
12222
- #, php-format
12223
- msgid ""
12224
- "Make sure you validate the twitter card with your Twitter account. Visit "
12225
- "%sTwitter Card Validator%s"
12226
- msgstr ""
12227
-
12228
- #: view/SeoSettings/Social.php:282
12229
- msgid "Share Large Images"
12230
- msgstr ""
12231
-
12232
- #: view/SeoSettings/Social.php:283
12233
- msgid ""
12234
- "Activate this option only if you upload images with sizes between 500px and "
12235
- "4096px width in Twitter Card."
12236
- msgstr ""
12237
-
12238
- #: view/SeoSettings/Social.php:284
12239
- #, php-format
12240
- msgid ""
12241
- "This option will show the twitter card image as a shared image and not as a "
12242
- "summary. Visit %sSummary Card with Large Image%s"
12243
- msgstr ""
12244
-
12245
- #: view/SeoSettings/Social.php:292
12246
- msgid "Social Media Accounts"
12247
- msgstr ""
12248
-
12249
- #: view/SeoSettings/Social.php:294
12250
- msgid ""
12251
- "Add your Social Media account for JSON-LD Structured data, Open Graph, and "
12252
- "Twitter Card."
12253
- msgstr ""
12254
-
12255
- #: view/SeoSettings/Social.php:300
12256
- msgid "Twitter Profile URL"
12257
- msgstr ""
12258
-
12259
- #: view/SeoSettings/Social.php:302
12260
- msgid "Required for Twitter Card Validator"
12261
- msgstr ""
12262
-
12263
- #: view/SeoSettings/Social.php:311
12264
- msgid "Facebook Profile or Page URL"
12265
- msgstr ""
12266
-
12267
- #: view/SeoSettings/Social.php:322
12268
- msgid "Linkedin Profile URL"
12269
- msgstr ""
12270
-
12271
- #: view/SeoSettings/Social.php:332
12272
- msgid "Pinterest Profile URL"
12273
- msgstr ""
12274
-
12275
- #: view/SeoSettings/Social.php:342
12276
- msgid "Instagram Profile URL"
12277
- msgstr ""
12278
-
12279
- #: view/SeoSettings/Social.php:352
12280
- msgid "Youtube Channel URL"
12281
- msgstr ""
12282
 
12283
  # @ squirrly-seo
12284
- #: view/SeoSettings/Tracking.php:56
12285
  #, fuzzy
12286
- #| msgid "Google %sAnalytics ID%s`:"
12287
- msgid "Google Analytics ID"
12288
- msgstr "Google %sAnalytics ID%s`:"
12289
-
12290
- #: view/SeoSettings/Tracking.php:57
12291
- #, php-format
12292
- msgid ""
12293
- "Squirrly adds the Google Tracking script for your Analytics ID. %sGet the "
12294
- "Analytics ID%s"
12295
- msgstr ""
12296
-
12297
- #: view/SeoSettings/Tracking.php:75
12298
- msgid "Get GA Code"
12299
- msgstr ""
12300
 
12301
  # @ squirrly-seo
12302
- #: view/SeoSettings/Tracking.php:84
12303
  #, fuzzy
12304
- #| msgid "Google %sAnalytics ID%s`:"
12305
- msgid "Google Tracking Mode"
12306
- msgstr "Google %sAnalytics ID%s`:"
12307
-
12308
- #: view/SeoSettings/Tracking.php:85
12309
- #, php-format
12310
- msgid ""
12311
- "Choose gtag.js if you use %sGoogle Tag Manager%s or the %sGoogle Analytics "
12312
- "4%s. Otherwise select analytics.js to track the website traffic."
12313
- msgstr ""
12314
 
12315
- #: view/SeoSettings/Tracking.php:89
12316
- msgid "analytics.js"
12317
- msgstr ""
 
 
12318
 
12319
- #: view/SeoSettings/Tracking.php:90
12320
- msgid "gtag.js"
12321
- msgstr ""
 
 
12322
 
12323
- #: view/SeoSettings/Tracking.php:100
12324
- msgid "Facebook Pixel"
12325
- msgstr ""
 
 
12326
 
12327
- #: view/SeoSettings/Tracking.php:101
12328
- #, php-format
12329
- msgid ""
12330
- "Use FB Pixel to track the visitors events and to use Facebook Ads more "
12331
- "efficient. %sLearn More%s"
12332
- msgstr ""
12333
 
12334
- #: view/SeoSettings/Tracking.php:117
12335
- msgid "Load Trackings as AMP"
12336
- msgstr ""
 
 
12337
 
12338
- #: view/SeoSettings/Tracking.php:118
12339
- msgid ""
12340
- "Only if your website is AMP optimize, activate this option to load the "
12341
- "scripts for AMP version."
12342
- msgstr ""
12343
 
12344
- #: view/SeoSettings/Tracking.php:128
12345
- msgid "Load Tracking for Logged Users"
12346
- msgstr ""
 
 
12347
 
12348
- #: view/SeoSettings/Tracking.php:129
12349
- msgid "Load the tracking codes for logged users too."
12350
- msgstr ""
 
 
12351
 
12352
- #: view/SeoSettings/Webmaster.php:27
12353
- msgid "Webmaster Tools"
12354
- msgstr ""
 
 
12355
 
12356
- #: view/SeoSettings/Webmaster.php:32
12357
- msgid "Activate Webmasters"
12358
- msgstr ""
 
 
12359
 
12360
- #: view/SeoSettings/Webmaster.php:56
12361
- msgid "Google Verification Code"
12362
- msgstr ""
 
 
12363
 
12364
  # @ squirrly-seo
12365
- #: view/SeoSettings/Webmaster.php:57
12366
  #, fuzzy, php-format
12367
- #| msgid "Google META verification code for %sWebmaster Tool%s`:"
12368
- msgid ""
12369
- "Add the Google META verification code to connect to %sGoogle Search Console"
12370
- "%s and %sWebmaster Tool%s"
12371
- msgstr "Google META Bestätigungs-Code für %sWebmaster Tool%s`:"
12372
-
12373
- #: view/SeoSettings/Webmaster.php:75
12374
- msgid "Get GSC Code"
12375
- msgstr ""
12376
-
12377
- #: view/SeoSettings/Webmaster.php:84
12378
- msgid "Bing Verification Code"
12379
- msgstr ""
12380
 
12381
  # @ squirrly-seo
12382
- #: view/SeoSettings/Webmaster.php:85
12383
  #, fuzzy, php-format
12384
- #| msgid "Google META verification code for %sWebmaster Tool%s`:"
12385
- msgid "Add the Bing META verification code to connect to %sWebmaster Tool%s"
12386
- msgstr "Google META Bestätigungs-Code für %sWebmaster Tool%s`:"
12387
-
12388
- #: view/SeoSettings/Webmaster.php:94
12389
- msgid "Alexa META Code"
12390
- msgstr ""
12391
-
12392
- #: view/SeoSettings/Webmaster.php:95
12393
- #, php-format
12394
- msgid ""
12395
- "Add the Alexa META code to analyze your entire website. Visit the %sAlexa "
12396
- "Marketing Tool%s"
12397
- msgstr ""
12398
-
12399
- #: view/SeoSettings/Webmaster.php:104
12400
- msgid "Pinterest Website Validator Code"
12401
- msgstr ""
12402
-
12403
- #: view/SeoSettings/Webmaster.php:105
12404
- #, php-format
12405
- msgid ""
12406
- "Add the Pinterest verification code to connect your website to your "
12407
- "Pinterest account. Visit the %sRich Pins Validator%s"
12408
- msgstr ""
12409
 
12410
  # @ squirrly-seo
12411
- #. Plugin Name of the plugin/theme
12412
  #, fuzzy
12413
- #| msgid "Squirrly LIVE SEO assistant"
12414
- msgid "Squirrly SEO 2020 (Smart Strategy)"
12415
- msgstr "Squirrly LIVE SEO-Assistent"
12416
-
12417
- #. Plugin URI of the plugin/theme
12418
- msgid "https://wordpress.org/plugins/squirrly-seo/"
12419
- msgstr ""
12420
-
12421
- #. Description of the plugin/theme
12422
- msgid ""
12423
- "A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning "
12424
- "and Cloud Services. Over 300 functionalities for SEO available when you need "
12425
- "them.<BR> <a href=\"http://cloud.squirrly.co/user\" target=\"_blank"
12426
- "\"><strong>Account Info</strong></a>"
12427
- msgstr ""
12428
-
12429
- #. Author URI of the plugin/theme
12430
- msgid "https://plugin.squirrly.co"
12431
- msgstr ""
12432
 
12433
  # @ squirrly-seo
12434
  #, fuzzy
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-03-22 08:03+0200\n"
6
+ "PO-Revision-Date: 2021-03-22 08:03+0200\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.4.2\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ # @ squirrly-seo
23
+ #, fuzzy
24
+ #~| msgid "Do the research"
25
+ #~ msgid "Keyword Researches"
26
+ #~ msgstr "Recherchieren"
27
 
28
+ # @ squirrly-seo
29
+ #, fuzzy
30
+ #~| msgid "Do the research"
31
+ #~ msgid "do research"
32
+ #~ msgstr "Recherchieren"
33
 
34
+ # @ squirrly-seo
35
+ #, fuzzy
36
+ #~| msgid "Tips: 2-4 keywords"
37
+ #~ msgid "add keyword"
38
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
39
 
40
+ # @ squirrly-seo
41
+ #, fuzzy
42
+ #~| msgid "Tips: 2-4 keywords"
43
+ #~ msgid "Keyword:"
44
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
45
 
46
+ # @ squirrly-seo
47
+ #, fuzzy, php-format
48
+ #~| msgid "Use more words in one keyword"
49
+ #~ msgid "Write more words after the %s keyword"
50
+ #~ msgstr "Verwenden Sie mehrere Wörter in einem Schlüsselwort"
51
 
52
  # @ squirrly-seo
53
+ #, fuzzy, php-format
54
+ #~| msgid "Enter even more keywords."
55
+ #~ msgid "add %s more keyword(s)"
56
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
 
57
 
58
  # @ squirrly-seo
 
59
  #, fuzzy
60
+ #~| msgid "automatically"
61
+ #~ msgid "Auto Draft"
62
+ #~ msgstr "automatisch"
63
 
64
+ # @ squirrly-seo
65
+ #, fuzzy
66
+ #~| msgid "Bing META code (for %sWebmaster Tool%s )`:"
67
+ #~ msgid "The code for Google Webmaster Tool is incorrect."
68
+ #~ msgstr "Bing META Code (für %sWebmaster Tool%s )`:"
69
 
70
  # @ squirrly-seo
 
71
  #, fuzzy
72
+ #~| msgid "Google %sAnalytics ID%s`:"
73
+ #~ msgid "The code for Google Analytics is incorrect."
74
+ #~ msgstr "Google %sAnalytics ID%s`:"
75
 
76
+ # @ squirrly-seo
77
+ #, fuzzy
78
+ #~| msgid "automatically"
79
+ #~ msgid "Documentation"
80
+ #~ msgstr "automatisch"
81
 
82
+ # @ squirrly-seo
83
+ #, fuzzy
84
+ #~| msgid "Tips: 2-4 keywords"
85
+ #~ msgid "No keyword found."
86
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
87
 
88
+ # @ squirrly-seo
89
+ #, fuzzy
90
+ #~| msgid "Could not send the email..."
91
+ #~ msgid "Error: Could not save the data."
92
+ #~ msgstr "Konnte E-Mail nicht senden ..."
93
 
94
+ # @ squirrly-seo
95
+ #, fuzzy
96
+ #~| msgid "Could not send the email..."
97
+ #~ msgid "Could not load the Audit Page."
98
+ #~ msgstr "Konnte E-Mail nicht senden ..."
99
 
100
  # @ squirrly-seo
 
101
  #, fuzzy
102
+ #~| msgid "Could not send the email..."
103
+ #~ msgid "Error! Could not add the audit page."
104
+ #~ msgstr "Konnte E-Mail nicht senden ..."
105
 
106
+ # @ squirrly-seo
107
+ #, fuzzy
108
+ #~| msgid "Could not send the email..."
109
+ #~ msgid "Error! Could not find the audit page in your website."
110
+ #~ msgstr "Konnte E-Mail nicht senden ..."
111
 
112
+ # @ squirrly-seo
113
+ #, fuzzy
114
+ #~| msgid "Could not send the email..."
115
+ #~ msgid "Error! Could not add the focus page."
116
+ #~ msgstr "Konnte E-Mail nicht senden ..."
 
117
 
118
+ # @ squirrly-seo
119
+ #, fuzzy
120
+ #~| msgid "Could not send the email..."
121
+ #~ msgid "Error! Could not find the focus page in your website."
122
+ #~ msgstr "Konnte E-Mail nicht senden ..."
123
 
124
+ # @ squirrly-seo
125
+ #, fuzzy
126
+ #~| msgid "Squirrly settings"
127
+ #~ msgid "Squirrly SEO"
128
+ #~ msgstr "Squirrly Einstellungen"
129
 
130
+ # @ squirrly-seo
131
+ #, fuzzy
132
+ #~| msgid "Squirrly LIVE SEO assistant"
133
+ #~ msgid "SEO Snippet"
134
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
135
 
136
+ # @ squirrly-seo
137
+ #, fuzzy
138
+ #~| msgid "Squirrly settings"
139
+ #~ msgid "Squirrly Onboarding"
140
+ #~ msgstr "Squirrly Einstellungen"
141
 
142
+ # @ squirrly-seo
143
+ #, fuzzy
144
+ #~| msgid "Squirrly settings"
145
+ #~ msgid "Onboarding"
146
+ #~ msgstr "Squirrly Einstellungen"
147
 
148
+ # @ squirrly-seo
149
+ #, fuzzy
150
+ #~| msgid "Squirrly LIVE SEO assistant"
151
+ #~ msgid "Squirrly How To & Support"
152
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
153
 
154
+ # @ squirrly-seo
155
+ #, fuzzy
156
+ #~| msgid "Could not send the email..."
157
+ #~ msgid "Could not add the demo post."
158
+ #~ msgstr "Konnte E-Mail nicht senden ..."
159
 
160
+ # @ squirrly-seo
161
+ #, fuzzy
162
+ #~| msgid "Squirrly LIVE SEO assistant"
163
+ #~ msgid "SQ Snippet"
164
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
165
 
166
+ # @ squirrly-seo
167
+ #, fuzzy
168
+ #~| msgid "Could not send the email..."
169
+ #~ msgid "Could not process"
170
+ #~ msgstr "Konnte E-Mail nicht senden ..."
171
 
172
+ # @ squirrly-seo
173
+ #, fuzzy
174
+ #~| msgid "Could not send the email..."
175
+ #~ msgid "Could not load the Rankings."
176
+ #~ msgstr "Konnte E-Mail nicht senden ..."
177
 
178
+ # @ squirrly-seo
179
+ #, fuzzy
180
+ #~| msgid "Could not send the email..."
181
+ #~ msgid "Could not load data."
182
+ #~ msgstr "Konnte E-Mail nicht senden ..."
183
 
184
+ # @ squirrly-seo
185
+ #, fuzzy
186
+ #~| msgid "Could not send the email..."
187
+ #~ msgid "Could not delete the keyword!"
188
+ #~ msgstr "Konnte E-Mail nicht senden ..."
189
 
190
+ # @ squirrly-seo
191
+ #, fuzzy
192
+ #~| msgid "Do the research"
193
+ #~ msgid "Keyword Saved!"
194
+ #~ msgstr "Recherchieren"
195
 
196
+ # @ squirrly-seo
197
+ #, fuzzy
198
+ #~| msgid "Tips: 2-4 keywords"
199
+ #~ msgid "Invalid Keyword!"
200
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
201
 
202
+ # @ squirrly-seo
203
+ #, fuzzy
204
+ #~| msgid "Do the research"
205
+ #~ msgid "Keyword Research limit exceeded"
206
+ #~ msgstr "Recherchieren"
207
 
208
+ # @ squirrly-seo
209
+ #, fuzzy
210
+ #~| msgid "Google %sAnalytics ID%s`:"
211
+ #~ msgid "Google Analytics account is disconnected."
212
+ #~ msgstr "Google %sAnalytics ID%s`:"
213
 
214
+ # @ squirrly-seo
215
+ #, fuzzy
216
+ #~| msgid "Could not send the email..."
217
+ #~ msgid "Error! Could not disconnect the account."
218
+ #~ msgstr "Konnte E-Mail nicht senden ..."
219
 
220
+ # @ squirrly-seo
221
+ #, fuzzy
222
+ #~| msgid "Google %sAnalytics ID%s`:"
223
+ #~ msgid "Google Search Console account is disconnected."
224
+ #~ msgstr "Google %sAnalytics ID%s`:"
225
 
226
+ # @ squirrly-seo
227
+ #, fuzzy
228
+ #~| msgid "Could not send the email..."
229
+ #~ msgid "Could not save the changes"
230
+ #~ msgstr "Konnte E-Mail nicht senden ..."
231
 
232
+ # @ squirrly-seo
233
+ #, fuzzy
234
+ #~| msgid "Could not send the email..."
235
+ #~ msgid "Could not add the post type."
236
+ #~ msgstr "Konnte E-Mail nicht senden ..."
237
 
238
+ # @ squirrly-seo
239
+ #, fuzzy
240
+ #~| msgid "Squirrly LIVE SEO assistant"
241
+ #~ msgid "Squirrly SEO Snippet"
242
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
243
 
244
  # @ squirrly-seo
245
+ #, fuzzy
246
+ #~| msgid "Your E-mail:"
247
+ #~ msgid "Task Details"
248
+ #~ msgstr "Ihre E-Mail Adresse:"
 
249
 
250
+ # @ squirrly-seo
251
+ #, fuzzy
252
+ #~| msgid "Do the research"
253
+ #~ msgid "Do Keyword Research"
254
+ #~ msgstr "Recherchieren"
255
 
256
+ # @ squirrly-seo
257
+ #, fuzzy
258
+ #~| msgid "Google %sAnalytics ID%s`:"
259
+ #~ msgid "Activate Meta Automation"
260
+ #~ msgstr "Google %sAnalytics ID%s`:"
261
 
262
+ # @ squirrly-seo
263
+ #, fuzzy
264
+ #~| msgid "Google %sAnalytics ID%s`:"
265
+ #~ msgid "Activate Google Analytics"
266
+ #~ msgstr "Google %sAnalytics ID%s`:"
267
 
268
  # @ squirrly-seo
269
+ #, fuzzy
270
+ #~| msgid "Google %sAnalytics ID%s`:"
271
+ #~ msgid "Connect Google Analytics"
272
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
273
 
274
+ # @ squirrly-seo
275
+ #, fuzzy
276
+ #~| msgid "Google %sAnalytics ID%s`:"
277
+ #~ msgid "Connect Google Search Console"
278
+ #~ msgstr "Google %sAnalytics ID%s`:"
279
 
280
+ # @ squirrly-seo
281
+ #, fuzzy
282
+ #~| msgid "Your E-mail:"
283
+ #~ msgid "Set the Audit Email"
284
+ #~ msgstr "Ihre E-Mail Adresse:"
285
 
286
+ # @ squirrly-seo
287
+ #, fuzzy
288
+ #~| msgid "adds the correct <strong>title</strong> in the home page"
289
+ #~ msgid "Add the meta DcPublisher tag in the page's header"
290
+ #~ msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
291
 
292
+ # @ squirrly-seo
293
+ #, fuzzy
294
+ #~| msgid "Tool for Search Engines"
295
+ #~ msgid "Visible for search engines?"
296
+ #~ msgstr "Tool für Suchmaschinen"
297
 
298
  # @ squirrly-seo
 
 
299
  #, fuzzy
300
+ #~| msgid "adds the correct <strong>title</strong> in the home page"
301
+ #~ msgid "Add the correct meta robots tag in the pages"
302
+ #~ msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
303
 
304
+ # @ squirrly-seo
305
+ #, fuzzy
306
+ #~| msgid "Tool for Search Engines"
307
+ #~ msgid "Followed by search engines?"
308
+ #~ msgstr "Tool für Suchmaschinen"
 
309
 
310
  # @ squirrly-seo
 
311
  #, fuzzy
312
+ #~| msgid "Enter even more keywords."
313
+ #~ msgid "Meta Keyword"
314
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
315
 
316
  # @ squirrly-seo
 
317
  #, fuzzy
318
+ #~| msgid "Tips: 2-4 keywords"
319
+ #~ msgid "Your keywords are"
320
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
321
 
322
+ # @ squirrly-seo
323
+ #, fuzzy
324
+ #~| msgid "Tips: 2-4 keywords"
325
+ #~ msgid "No keywords."
326
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
327
 
328
+ # @ squirrly-seo
329
+ #, fuzzy
330
+ #~| msgid "adds <strong>canonical</strong> link in home page"
331
+ #~ msgid "Add canonical meta link in the page header"
332
+ #~ msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
333
 
334
+ # @ squirrly-seo
335
+ #, fuzzy
336
+ #~| msgid "adds <strong>canonical</strong> link in home page"
337
+ #~ msgid "Add the meta encoding tag in the page's header"
338
+ #~ msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
339
 
340
+ # @ squirrly-seo
341
+ #, fuzzy
342
+ #~| msgid "adds the correct <strong>title</strong> in the home page"
343
+ #~ msgid "Add the meta viewport tag in the page's header"
344
+ #~ msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
345
 
346
+ # @ squirrly-seo
347
+ #, fuzzy
348
+ #~| msgid "Squirrly LIVE SEO assistant"
349
+ #~ msgid "Activate Squirrly SEO Title now"
350
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
351
 
352
+ # @ squirrly-seo
353
+ #, fuzzy
354
+ #~| msgid "Enter even more keywords."
355
+ #~ msgid "Choose less competitive keywords"
356
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
357
 
358
+ # @ squirrly-seo
359
+ #, fuzzy
360
+ #~| msgid "Google %sAnalytics ID%s`:"
361
+ #~ msgid "Prepare Full Google Search Console Connection"
362
+ #~ msgstr "Google %sAnalytics ID%s`:"
363
 
364
  # @ squirrly-seo
 
365
  #, fuzzy
366
+ #~| msgid "Google %sAnalytics ID%s`:"
367
+ #~ msgid "Connect Google Analytics Data to Squirrly"
368
+ #~ msgstr "Google %sAnalytics ID%s`:"
369
 
370
+ # @ squirrly-seo
371
+ #, fuzzy
372
+ #~| msgid "Squirrly settings"
373
+ #~ msgid "Audit Score is Over 50%"
374
+ #~ msgstr "Squirrly Einstellungen"
375
 
376
+ # @ squirrly-seo
377
+ #, fuzzy
378
+ #~| msgid "Squirrly settings"
379
+ #~ msgid "Audit Score is Over 70%"
380
+ #~ msgstr "Squirrly Einstellungen"
381
 
382
+ # @ squirrly-seo
383
+ #, fuzzy
384
+ #~| msgid "Could not send the email..."
385
+ #~ msgid "Could not verify the frontend."
386
+ #~ msgstr "Konnte E-Mail nicht senden ..."
387
 
388
+ # @ squirrly-seo
389
+ #, fuzzy
390
+ #~| msgid "Tips: 2-4 keywords"
391
+ #~ msgid "Keyword"
392
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
393
 
394
+ # @ squirrly-seo
395
+ #, fuzzy
396
+ #~| msgid "SEO Software"
397
+ #~ msgid "SEO Content"
398
+ #~ msgstr "SEO Software"
399
 
400
+ # @ squirrly-seo
401
+ #, fuzzy
402
+ #~| msgid "File type error: Only JPEG, JPG, GIF or PNG files are allowed."
403
+ #~ msgid "File type error: Only ICO, JPEG, JPG, GIF or PNG files are allowed."
404
+ #~ msgstr "Dateityp Fehler: Nur JPEG, JPG, GIF oder PNG-Dateien sind erlaubt."
405
 
406
+ # @ squirrly-seo
407
+ #, fuzzy
408
+ #~| msgid "Could not send the email..."
409
+ #~ msgid "Delete error: Could not delete the old favicon."
410
+ #~ msgstr "Konnte E-Mail nicht senden ..."
411
 
412
+ # @ squirrly-seo
413
+ #, fuzzy
414
+ #~| msgid "Could not send the email..."
415
+ #~ msgid "Upload error: Could not upload the favicon."
416
+ #~ msgstr "Konnte E-Mail nicht senden ..."
417
 
418
+ # @ squirrly-seo
419
+ #, fuzzy
420
+ #~| msgid "Do the research"
421
+ #~ msgid "Research"
422
+ #~ msgstr "Recherchieren"
423
 
424
+ # @ squirrly-seo
425
+ #, fuzzy
426
+ #~| msgid "Squirrly LIVE SEO assistant"
427
+ #~ msgid "All Snippets"
428
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
429
 
430
+ # @ squirrly-seo
431
+ #, fuzzy
432
+ #~| msgid "Squirrly settings"
433
+ #~ msgid "SEO Settings"
434
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
435
 
436
  # @ squirrly-seo
 
437
  #, fuzzy
438
+ #~| msgid "Squirrly settings"
439
+ #~ msgid "Focus Pages"
440
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
441
 
442
  # @ squirrly-seo
 
443
  #, fuzzy
444
+ #~| msgid "automatically"
445
+ #~ msgid "SEO Audit"
446
+ #~ msgstr "automatisch"
 
 
 
 
447
 
448
  # @ squirrly-seo
 
449
  #, fuzzy
450
+ #~| msgid "Squirrly settings"
451
+ #~ msgid "Rankings"
452
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
 
453
 
454
  # @ squirrly-seo
 
455
  #, fuzzy
456
+ #~| msgid "Tips: 2-4 keywords"
457
+ #~ msgid "Find Keywords"
458
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
459
 
460
  # @ squirrly-seo
 
461
  #, fuzzy
462
+ #~| msgid "Do the research"
463
+ #~ msgid "do a keyword research"
464
+ #~ msgstr "Recherchieren"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
465
 
466
  # @ squirrly-seo
 
467
  #, fuzzy
468
+ #~| msgid "Enter even more keywords."
469
+ #~ msgid "save the best Keywords"
470
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
471
 
472
+ # @ squirrly-seo
473
+ #, fuzzy
474
+ #~| msgid "Tips: 2-4 keywords"
475
+ #~ msgid "group keywords"
476
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
477
 
478
  # @ squirrly-seo
 
479
  #, fuzzy
480
+ #~| msgid "Enter even more keywords."
481
+ #~ msgid "better keywords found"
482
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
483
 
484
+ # @ squirrly-seo
485
+ #, fuzzy
486
+ #~| msgid "Do the research"
487
+ #~ msgid "keyword research history"
488
+ #~ msgstr "Recherchieren"
489
 
490
+ # @ squirrly-seo
491
+ #, fuzzy
492
+ #~| msgid "Squirrly settings"
493
+ #~ msgid "Settings"
494
+ #~ msgstr "Squirrly Einstellungen"
495
 
496
+ # @ squirrly-seo
497
+ #, fuzzy
498
+ #~| msgid "Squirrly settings"
499
+ #~ msgid "Add New Page"
500
+ #~ msgstr "Squirrly Einstellungen"
501
 
502
+ # @ squirrly-seo
503
+ #, fuzzy
504
+ #~| msgid "Squirrly settings"
505
+ #~ msgid "Audit settings"
506
+ #~ msgstr "Squirrly Einstellungen"
 
507
 
508
+ # @ squirrly-seo
509
+ #, fuzzy
510
+ #~| msgid "Google %sAnalytics ID%s`:"
511
+ #~ msgid "See Google ranking"
512
+ #~ msgstr "Google %sAnalytics ID%s`:"
513
 
514
  # @ squirrly-seo
 
 
 
515
  #, fuzzy
516
+ #~| msgid "Tips: 2-4 keywords"
517
+ #~ msgid "Add Keywords"
518
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
519
 
520
  # @ squirrly-seo
 
521
  #, fuzzy
522
+ #~| msgid "Enter even more keywords."
523
+ #~ msgid "Add briefcase keywords"
524
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
525
 
526
+ # @ squirrly-seo
527
+ #, fuzzy
528
+ #~| msgid "Squirrly settings"
529
+ #~ msgid "Ranking settings"
530
+ #~ msgstr "Squirrly Einstellungen"
531
 
532
  # @ squirrly-seo
 
533
  #, fuzzy
534
+ #~| msgid "Squirrly settings"
535
+ #~ msgid "Bulk SEO"
536
+ #~ msgstr "Squirrly Einstellungen"
537
 
538
  # @ squirrly-seo
 
539
  #, fuzzy
540
+ #~| msgid "automatically"
541
+ #~ msgid "Automation"
542
+ #~ msgstr "automatisch"
543
 
544
+ # @ squirrly-seo
545
+ #, fuzzy
546
+ #~| msgid "SEO Software"
547
+ #~ msgid "SEO Metas"
548
+ #~ msgstr "SEO Software"
549
 
550
+ # @ squirrly-seo
551
+ #, fuzzy
552
+ #~| msgid "Google %sAnalytics ID%s`:"
553
+ #~ msgid "google analytics, pixel, etc."
554
+ #~ msgstr "Google %sAnalytics ID%s`:"
555
 
556
+ # @ squirrly-seo
557
+ #, fuzzy
558
+ #~| msgid "Squirrly settings"
559
+ #~ msgid "Advanced"
560
+ #~ msgstr "Squirrly Einstellungen"
561
 
562
+ # @ squirrly-seo
563
+ #, fuzzy
564
+ #~| msgid "Squirrly settings"
565
+ #~ msgid "Advanced SEO Settings"
566
+ #~ msgstr "Squirrly Einstellungen"
567
 
568
  # @ squirrly-seo
 
569
  #, fuzzy
570
+ #~| msgid "Squirrly settings"
571
+ #~ msgid "start using Squirrly SEO"
572
+ #~ msgstr "Squirrly Einstellungen"
573
 
574
+ # @ squirrly-seo
575
+ #, fuzzy
576
+ #~| msgid "Tips: Length 70-255 chars"
577
+ #~ msgid "Title length is between 10-75 chars"
578
+ #~ msgstr "Tipp: Länge 70-255 Charaktere"
579
 
580
+ # @ squirrly-seo
581
+ #, fuzzy
582
+ #~| msgid "SEO Software"
583
+ #~ msgid "Content"
584
+ #~ msgstr "SEO Software"
 
585
 
586
+ # @ squirrly-seo
587
+ #, fuzzy, php-format
588
+ #~| msgid "Could not send the email..."
589
+ #~ msgid "Bold one of the keywords %s"
590
+ #~ msgstr "Konnte E-Mail nicht senden ..."
591
 
592
  # @ squirrly-seo
 
593
  #, fuzzy
594
+ #~| msgid "Squirrly LIVE SEO assistant"
595
+ #~ msgid "Squirrly SEO Editor"
596
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
 
 
 
 
597
 
598
+ # @ squirrly-seo
599
+ #, fuzzy
600
+ #~| msgid "Squirrly LIVE SEO assistant"
601
+ #~ msgid "Squirrly SEO Admin"
602
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
603
 
604
  # @ squirrly-seo
 
605
  #, fuzzy
606
+ #~| msgid "Could not send the email..."
607
+ #~ msgid "Error! Could not save the data."
608
+ #~ msgstr "Konnte E-Mail nicht senden ..."
609
 
610
+ # @ squirrly-seo
611
+ #, fuzzy
612
+ #~| msgid "Could not send the email..."
613
+ #~ msgid "Couldn't find the page"
614
+ #~ msgstr "Konnte E-Mail nicht senden ..."
615
 
616
+ # @ squirrly-seo
617
+ #, fuzzy, php-format
618
+ #~| msgid "Tips: Length 10-70 chars"
619
+ #~ msgid "Title up to %s chars"
620
+ #~ msgstr "Tipp: Länge 10-70 Charaktere"
621
 
622
+ # @ squirrly-seo
623
+ #, fuzzy
624
+ #~| msgid "Do the research"
625
+ #~ msgid "Keyword in title"
626
+ #~ msgstr "Recherchieren"
627
 
628
+ # @ squirrly-seo
629
+ #, fuzzy
630
+ #~| msgid "Tips: 2-4 keywords"
631
+ #~ msgid "Snippet Keyword"
632
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
633
 
634
  # @ squirrly-seo
 
635
  #, fuzzy
636
+ #~| msgid "Tips: 2-4 keywords"
637
+ #~ msgid "no keywords"
638
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
639
 
640
+ # @ squirrly-seo
641
+ #, fuzzy
642
+ #~| msgid "Enter even more keywords."
643
+ #~ msgid "Meta Keywords (2-4 Words)"
644
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
645
 
646
  # @ squirrly-seo
 
647
  #, fuzzy
648
+ #~| msgid "Enter even more keywords."
649
+ #~ msgid "no meta keywords"
650
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
651
 
652
  # @ squirrly-seo
 
653
  #, fuzzy
654
+ #~| msgid "<< Leave it automatically"
655
+ #~ msgid "Some Squirrly Metas are generated automatically."
656
+ #~ msgstr "<< Lass es automatisch"
657
 
658
+ # @ squirrly-seo
659
+ #, fuzzy
660
+ #~| msgid "Enter even more keywords."
661
+ #~ msgid "No Meta Keyword Found"
662
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
663
 
664
+ # @ squirrly-seo
665
+ #, fuzzy
666
+ #~| msgid "<< Leave it automatically"
667
+ #~ msgid "Title is generated automatically."
668
+ #~ msgstr "<< Lass es automatisch"
669
 
670
+ # @ squirrly-seo
671
+ #, fuzzy
672
+ #~| msgid "<< Leave it automatically"
673
+ #~ msgid "Description is generated automatically."
674
+ #~ msgstr "<< Lass es automatisch"
675
 
676
  # @ squirrly-seo
 
677
  #, fuzzy
678
+ #~| msgid "<< Leave it automatically"
679
+ #~ msgid "Open Graph is deactivated."
680
+ #~ msgstr "<< Lass es automatisch"
681
 
682
+ # @ squirrly-seo
683
+ #, fuzzy
684
+ #~| msgid "<< Leave it automatically"
685
+ #~ msgid "Open Graph is generated automatically."
686
+ #~ msgstr "<< Lass es automatisch"
687
 
688
+ # @ squirrly-seo
689
+ #, fuzzy
690
+ #~| msgid "<< Leave it automatically"
691
+ #~ msgid "Open Graph is customized and set correctly."
692
+ #~ msgstr "<< Lass es automatisch"
693
 
694
+ # @ squirrly-seo
695
+ #, fuzzy
696
+ #~| msgid "<< Leave it automatically"
697
+ #~ msgid "Twitter Card is generated automatically."
698
+ #~ msgstr "<< Lass es automatisch"
699
 
700
  # @ squirrly-seo
 
701
  #, fuzzy
702
+ #~| msgid "Google %sAnalytics ID%s`:"
703
+ #~ msgid "Connect Google Search"
704
+ #~ msgstr "Google %sAnalytics ID%s`:"
705
 
706
+ # @ squirrly-seo
707
+ #, fuzzy, php-format
708
+ #~| msgid "Squirrly settings"
709
+ #~ msgid "Audit score is over %s"
710
+ #~ msgstr "Squirrly Einstellungen"
711
 
712
  # @ squirrly-seo
 
 
713
  #, fuzzy
714
+ #~| msgid "Tool for Search Engines"
715
+ #~ msgid "Clicks from Search Engine in the last 3 months"
716
+ #~ msgstr "Tool für Suchmaschinen"
 
 
 
 
 
 
 
717
 
718
+ # @ squirrly-seo
719
+ #, fuzzy
720
+ #~| msgid "Do the research"
721
+ #~ msgid "Do a research"
722
+ #~ msgstr "Recherchieren"
723
 
724
+ # @ squirrly-seo
725
+ #, fuzzy
726
+ #~| msgid "Enter even more keywords."
727
+ #~ msgid "No Keyword Found"
728
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
729
 
730
+ # @ squirrly-seo
731
+ #, fuzzy
732
+ #~| msgid "Google %sAnalytics ID%s`:"
733
+ #~ msgid "Connect to Google Search Console."
734
+ #~ msgstr "Google %sAnalytics ID%s`:"
735
 
736
+ # @ squirrly-seo
737
+ #, fuzzy
738
+ #~| msgid "Do the research"
739
+ #~ msgid "Keyword in filename"
740
+ #~ msgstr "Recherchieren"
741
 
742
+ # @ squirrly-seo
743
+ #, fuzzy
744
+ #~| msgid "Tool for Search Engines"
745
+ #~ msgid "Search Results Impressions in the last 3 months"
746
+ #~ msgstr "Tool für Suchmaschinen"
747
 
748
  # @ squirrly-seo
 
749
  #, fuzzy
750
+ #~| msgid "Tips: 2-4 keywords"
751
+ #~ msgid "Find Better Keywords"
752
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
753
 
754
+ # @ squirrly-seo
755
+ #, fuzzy
756
+ #~| msgid "Tips: 2-4 keywords"
757
+ #~ msgid "words"
758
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
759
 
760
  # @ squirrly-seo
 
761
  #, fuzzy
762
+ #~| msgid "Squirrly settings"
763
+ #~ msgid "Edit Page"
764
+ #~ msgstr "Squirrly Einstellungen"
765
 
766
  # @ squirrly-seo
 
767
  #, fuzzy
768
+ #~| msgid "Google %sAnalytics ID%s`:"
769
+ #~ msgid "Connect to Google Analytics first."
770
+ #~ msgstr "Google %sAnalytics ID%s`:"
771
 
772
  # @ squirrly-seo
 
773
  #, fuzzy
774
+ #~| msgid "Google %sAnalytics ID%s`:"
775
+ #~ msgid "Connect Google Analytics first."
776
+ #~ msgstr "Google %sAnalytics ID%s`:"
777
 
778
+ # @ squirrly-seo
779
+ #, fuzzy
780
+ #~| msgid "Squirrly settings"
781
+ #~ msgid "Go to SEO Settings"
782
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
783
 
784
+ # @ squirrly-seo
785
+ #, fuzzy
786
+ #~| msgid "Squirrly settings"
787
+ #~ msgid "Go to Social Media Settings"
788
+ #~ msgstr "Squirrly Einstellungen"
789
 
790
+ # @ squirrly-seo
791
+ #, fuzzy
792
+ #~| msgid "Do the research"
793
+ #~ msgid "Add keyword to Briefcase"
794
+ #~ msgstr "Recherchieren"
795
 
796
+ # @ squirrly-seo
797
+ #, fuzzy
798
+ #~| msgid "SEO Software"
799
+ #~ msgid "Add SEO Context"
800
+ #~ msgstr "SEO Software"
801
 
802
+ # @ squirrly-seo
803
+ #, fuzzy
804
+ #~| msgid "Google %sAnalytics ID%s`:"
805
+ #~ msgid "Just one Google Analytics tracking code"
806
+ #~ msgstr "Google %sAnalytics ID%s`:"
807
 
808
  # @ squirrly-seo
 
809
  #, fuzzy
810
+ #~| msgid "Google %sAnalytics ID%s`:"
811
+ #~ msgid "Connect Google Analytics first"
812
+ #~ msgstr "Google %sAnalytics ID%s`:"
813
 
814
+ # @ squirrly-seo
815
+ #, fuzzy
816
+ #~| msgid "Squirrly settings"
817
+ #~ msgid "Squirrly SEO Robots"
818
+ #~ msgstr "Squirrly Einstellungen"
819
 
820
+ # @ squirrly-seo
821
+ #, fuzzy
822
+ #~| msgid "Squirrly LIVE SEO assistant"
823
+ #~ msgid "No Squirrly SEO Robots found."
824
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
825
 
826
  # @ squirrly-seo
 
827
  #, fuzzy
828
+ #~| msgid "Squirrly settings"
829
+ #~ msgid "Live Assistant Settings"
830
+ #~ msgstr "Squirrly Einstellungen"
831
 
832
  # @ squirrly-seo
 
833
  #, fuzzy
834
+ #~| msgid "Squirrly settings"
835
+ #~ msgid "Squirrly Tooltips"
836
+ #~ msgstr "Squirrly Einstellungen"
837
 
838
+ # @ squirrly-seo
839
+ #, fuzzy
840
+ #~| msgid "Tips: 2-4 keywords"
841
+ #~ msgid "Download Remote Images"
842
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
843
 
844
+ # @ squirrly-seo
845
+ #, fuzzy
846
+ #~| msgid "Squirrly settings"
847
+ #~ msgid "Show Advanced Options"
848
+ #~ msgstr "Squirrly Einstellungen"
849
 
850
+ # @ squirrly-seo
851
+ #, fuzzy
852
+ #~| msgid "Squirrly settings"
853
+ #~ msgid "Hide Advanced Options"
854
+ #~ msgstr "Squirrly Einstellungen"
855
 
856
+ # @ squirrly-seo
857
+ #, fuzzy
858
+ #~| msgid "Squirrly settings"
859
+ #~ msgid "Save Settings"
860
+ #~ msgstr "Squirrly Einstellungen"
 
 
861
 
862
+ # @ squirrly-seo
863
+ #, fuzzy
864
+ #~| msgid "Do the research"
865
+ #~ msgid "Search"
866
+ #~ msgstr "Recherchieren"
867
 
868
+ # @ squirrly-seo
869
+ #, fuzzy
870
+ #~| msgid "Tips: 2-4 keywords"
871
+ #~ msgid "Show All"
872
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
873
 
874
+ # @ squirrly-seo
875
+ #, fuzzy
876
+ #~| msgid "Squirrly settings"
877
+ #~ msgid "Next Page"
878
+ #~ msgstr "Squirrly Einstellungen"
 
879
 
880
+ # @ squirrly-seo
881
+ #, fuzzy
882
+ #~| msgid "Your E-mail:"
883
+ #~ msgid "Audit Details"
884
+ #~ msgstr "Ihre E-Mail Adresse:"
885
 
886
+ # @ squirrly-seo
887
+ #, fuzzy
888
+ #~| msgid "Squirrly settings"
889
+ #~ msgid "Audit Pages"
890
+ #~ msgstr "Squirrly Einstellungen"
891
 
892
+ # @ squirrly-seo
893
+ #, fuzzy
894
+ #~| msgid "Could not send the email..."
895
+ #~ msgid "Could not create the audit for this URL"
896
+ #~ msgstr "Konnte E-Mail nicht senden ..."
897
 
898
+ # @ squirrly-seo
899
+ #, fuzzy
900
+ #~| msgid "Squirrly LIVE SEO assistant"
901
+ #~ msgid "Inspect URL"
902
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
903
 
904
+ # @ squirrly-seo
905
+ #, fuzzy
906
+ #~| msgid "Could not send the email..."
907
+ #~ msgid "Do you want to delete the Audit Page?"
908
+ #~ msgstr "Konnte E-Mail nicht senden ..."
 
909
 
910
+ # @ squirrly-seo
911
+ #, fuzzy
912
+ #~| msgid "Squirrly settings"
913
+ #~ msgid "Audited pages"
914
+ #~ msgstr "Squirrly Einstellungen"
915
 
916
  # @ squirrly-seo
 
917
  #, fuzzy
918
+ #~| msgid "Squirrly LIVE SEO assistant"
919
+ #~ msgid "Welcome to Squirrly SEO Audits"
920
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
921
 
922
+ # @ squirrly-seo
923
+ #, fuzzy
924
+ #~| msgid "Squirrly settings"
925
+ #~ msgid "Audit Score"
926
+ #~ msgstr "Squirrly Einstellungen"
927
 
928
  # @ squirrly-seo
 
929
  #, fuzzy
930
+ #~| msgid "Squirrly settings"
931
+ #~ msgid "Your audit score is"
932
+ #~ msgstr "Squirrly Einstellungen"
933
 
934
+ # @ squirrly-seo
935
+ #, fuzzy
936
+ #~| msgid "Your E-mail:"
937
+ #~ msgid "Audit Date"
938
+ #~ msgstr "Ihre E-Mail Adresse:"
 
 
939
 
940
+ # @ squirrly-seo
941
+ #, fuzzy
942
+ #~| msgid "Squirrly settings"
943
+ #~ msgid "Audit in progress"
944
+ #~ msgstr "Squirrly Einstellungen"
945
 
946
+ # @ squirrly-seo
947
+ #, fuzzy
948
+ #~| msgid "Squirrly settings"
949
+ #~ msgid "Audit not ready yet"
950
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
951
 
952
+ # @ squirrly-seo
953
+ #, fuzzy
954
+ #~| msgid "Squirrly settings"
955
+ #~ msgid "Audit History"
956
+ #~ msgstr "Squirrly Einstellungen"
957
 
958
+ # @ squirrly-seo
959
+ #, fuzzy
960
+ #~| msgid "Squirrly settings"
961
+ #~ msgid "Audits"
962
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
963
 
964
+ # @ squirrly-seo
965
+ #, fuzzy
966
+ #~| msgid "Squirrly LIVE SEO assistant"
967
+ #~ msgid "Squirrly Inspect URL"
968
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
969
 
970
+ # @ squirrly-seo
971
+ #, fuzzy
972
+ #~| msgid "Squirrly settings"
973
+ #~ msgid "Audit Settings"
974
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
975
 
976
+ # @ squirrly-seo
977
+ #, fuzzy
978
+ #~| msgid "Your E-mail:"
979
+ #~ msgid "Audit Email"
980
+ #~ msgstr "Ihre E-Mail Adresse:"
981
 
982
+ # @ squirrly-seo
983
+ #, fuzzy
984
+ #~| msgid "Your E-mail:"
985
+ #~ msgid "Email"
986
+ #~ msgstr "Ihre E-Mail Adresse:"
 
 
 
 
 
 
987
 
988
+ # @ squirrly-seo
989
+ #, fuzzy
990
+ #~| msgid "Do the research"
991
+ #~ msgid "Keyword Research"
992
+ #~ msgstr "Recherchieren"
993
 
994
+ # @ squirrly-seo
995
+ #, fuzzy
996
+ #~| msgid "automatically"
997
+ #~ msgid "SEO Automation"
998
+ #~ msgstr "automatisch"
 
 
 
 
 
 
 
 
999
 
1000
  # @ squirrly-seo
 
1001
  #, fuzzy
1002
+ #~| msgid "Squirrly LIVE SEO assistant"
1003
+ #~ msgid "Bulk SEO & Snippets"
1004
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
1005
 
1006
+ # @ squirrly-seo
1007
+ #, fuzzy
1008
+ #~| msgid "Google %sAnalytics ID%s`:"
1009
+ #~ msgid "Google Analytics Tracking"
1010
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
 
 
 
 
1011
 
1012
+ # @ squirrly-seo
1013
+ #, fuzzy
1014
+ #~| msgid "Google %sAnalytics ID%s`:"
1015
+ #~ msgid "Google Search Console"
1016
+ #~ msgstr "Google %sAnalytics ID%s`:"
1017
 
1018
+ # @ squirrly-seo
1019
+ #, fuzzy
1020
+ #~| msgid "Squirrly LIVE SEO assistant"
1021
+ #~ msgid "Squirrly SEO Feature Categories"
1022
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
 
 
 
 
 
 
1023
 
1024
+ # @ squirrly-seo
1025
+ #, fuzzy
1026
+ #~| msgid "Squirrly settings"
1027
+ #~ msgid "Squirrly Briefcase"
1028
+ #~ msgstr "Squirrly Einstellungen"
1029
 
1030
+ # @ squirrly-seo
1031
+ #, fuzzy
1032
+ #~| msgid "Enter even more keywords."
1033
+ #~ msgid "Enter a keyword"
1034
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
 
 
 
 
 
 
 
 
1035
 
1036
+ # @ squirrly-seo
1037
+ #, fuzzy
1038
+ #~| msgid "Squirrly LIVE SEO assistant"
1039
+ #~ msgid "for Squirrly Live SEO optimization"
1040
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
1041
 
1042
+ # @ squirrly-seo
1043
+ #, fuzzy
1044
+ #~| msgid "Enter even more keywords."
1045
+ #~ msgid "Type in your keyword..."
1046
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
 
 
 
 
1047
 
1048
+ # @ squirrly-seo
1049
+ #, fuzzy
1050
+ #~| msgid "Enter even more keywords."
1051
+ #~ msgid "Use this keyword"
1052
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
1053
 
1054
+ # @ squirrly-seo
1055
+ #, fuzzy
1056
+ #~| msgid "Do the research"
1057
+ #~ msgid "Do keyword research!"
1058
+ #~ msgstr "Recherchieren"
 
 
 
 
1059
 
1060
+ # @ squirrly-seo
1061
+ #, fuzzy
1062
+ #~| msgid "Squirrly settings"
1063
+ #~ msgid "Squirrly Live Assistant"
1064
+ #~ msgstr "Squirrly Einstellungen"
1065
 
1066
+ # @ squirrly-seo
1067
+ #, fuzzy
1068
+ #~| msgid "Google %sAnalytics ID%s`:"
1069
+ #~ msgid "Activate Metas"
1070
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
 
 
 
 
 
 
1071
 
1072
  # @ squirrly-seo
 
1073
  #, fuzzy
1074
+ #~| msgid "Squirrly LIVE SEO assistant"
1075
+ #~ msgid "Activate Title"
1076
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
1077
 
1078
+ # @ squirrly-seo
1079
+ #, fuzzy, php-format
1080
+ #~| msgid "Tips: Length 10-70 chars"
1081
+ #~ msgid "Tips: Length %s-%s chars"
1082
+ #~ msgstr "Tipp: Länge 10-70 Charaktere"
 
 
 
 
 
1083
 
1084
+ # @ squirrly-seo
1085
+ #, fuzzy
1086
+ #~| msgid "Tips: 2-4 keywords"
1087
+ #~ msgid "Activate Keywords"
1088
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
1089
 
1090
+ # @ squirrly-seo
1091
+ #, fuzzy
1092
+ #~| msgid "Enter even more keywords."
1093
+ #~ msgid "Meta Keywords"
1094
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
 
 
 
1095
 
1096
+ # @ squirrly-seo
1097
+ #, fuzzy
1098
+ #~| msgid "Tips: 2-4 keywords"
1099
+ #~ msgid "+ Add keyword"
1100
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
1101
 
1102
+ # @ squirrly-seo
1103
+ #, fuzzy
1104
+ #~| msgid "Google %sAnalytics ID%s`:"
1105
+ #~ msgid "Activate Canonical"
1106
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
 
 
 
 
1107
 
1108
  # @ squirrly-seo
 
 
1109
  #, fuzzy
1110
+ #~| msgid "Squirrly LIVE SEO assistant"
1111
+ #~ msgid "Activate Squirrly Snippet for this page"
1112
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
1113
 
1114
+ # @ squirrly-seo
1115
+ #, fuzzy
1116
+ #~| msgid "Squirrly LIVE SEO assistant"
1117
+ #~ msgid "Loading Squirrly Snippet ..."
1118
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
 
 
 
 
 
1119
 
1120
  # @ squirrly-seo
 
1121
  #, fuzzy
1122
+ #~| msgid "Squirrly LIVE SEO assistant"
1123
+ #~ msgid "Enable Squirrly SEO to load Squirrly Snippet"
1124
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
1125
 
1126
+ # @ squirrly-seo
1127
+ #, fuzzy, php-format
1128
+ #~| msgid "Google %sAnalytics ID%s`:"
1129
+ #~ msgid "%sPlease connect to SquirrlyCloud first%s"
1130
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
 
 
 
 
1131
 
1132
  # @ squirrly-seo
 
1133
  #, fuzzy
1134
+ #~| msgid "Squirrly settings"
1135
+ #~ msgid "Handled by Squirrly Genius."
1136
+ #~ msgstr "Squirrly Einstellungen"
1137
 
1138
+ # @ squirrly-seo
1139
+ #, fuzzy
1140
+ #~| msgid "support page"
1141
+ #~ msgid "Support"
1142
+ #~ msgstr "Support Page"
 
 
 
 
1143
 
1144
+ # @ squirrly-seo
1145
+ #, fuzzy
1146
+ #~| msgid "Write a new post with Squirrly"
1147
+ #~ msgid "Need Help with Squirrly SEO?"
1148
+ #~ msgstr "Schreiben Sie einen neuen Beitrag mit Squirrly"
1149
 
1150
+ # @ squirrly-seo
1151
+ #, fuzzy
1152
+ #~| msgid "Squirrly LIVE SEO assistant"
1153
+ #~ msgid "Deactivate Squirrly SEO"
1154
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
 
 
 
 
 
 
 
1155
 
1156
+ # @ squirrly-seo
1157
+ #, fuzzy
1158
+ #~| msgid "Google %sAnalytics ID%s`:"
1159
+ #~ msgid "Disconnect from Squirrly Cloud"
1160
+ #~ msgstr "Google %sAnalytics ID%s`:"
1161
 
1162
+ # @ squirrly-seo
1163
+ #, fuzzy
1164
+ #~| msgid "Google %sAnalytics ID%s`:"
1165
+ #~ msgid "Google Analytics"
1166
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
 
 
 
 
 
 
 
 
1167
 
1168
+ # @ squirrly-seo
1169
+ #, fuzzy
1170
+ #~| msgid "Google %sAnalytics ID%s`:"
1171
+ #~ msgid "You are connected to Google Analytics"
1172
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
 
 
 
 
 
 
 
 
1173
 
1174
+ # @ squirrly-seo
1175
+ #, fuzzy
1176
+ #~| msgid "Google %sAnalytics ID%s`:"
1177
+ #~ msgid "Connect this site to Google Analytics"
1178
+ #~ msgstr "Google %sAnalytics ID%s`:"
1179
 
1180
+ # @ squirrly-seo
1181
+ #, fuzzy
1182
+ #~| msgid "Google %sAnalytics ID%s`:"
1183
+ #~ msgid "You are connected to Google Search Console"
1184
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
 
 
 
 
1185
 
1186
+ # @ squirrly-seo
1187
+ #, fuzzy
1188
+ #~| msgid "Google %sAnalytics ID%s`:"
1189
+ #~ msgid "Connect this site to Google Search Console"
1190
+ #~ msgstr "Google %sAnalytics ID%s`:"
1191
 
1192
+ # @ squirrly-seo
1193
+ #, fuzzy
1194
+ #~| msgid "Your E-mail:"
1195
+ #~ msgid "Audited"
1196
+ #~ msgstr "Ihre E-Mail Adresse:"
1197
 
1198
+ # @ squirrly-seo
1199
+ #, fuzzy
1200
+ #~| msgid "Your E-mail:"
1201
+ #~ msgid "Details"
1202
+ #~ msgstr "Ihre E-Mail Adresse:"
1203
 
1204
+ # @ squirrly-seo
1205
+ #, fuzzy
1206
+ #~| msgid "Change it >>"
1207
+ #~ msgid "Chance to Rank"
1208
+ #~ msgstr "Ändern >>"
1209
 
1210
+ # @ squirrly-seo
1211
+ #, fuzzy
1212
+ #~| msgid "Could not send the email..."
1213
+ #~ msgid "Do you want to delete the Focus Page?"
1214
+ #~ msgstr "Konnte E-Mail nicht senden ..."
 
 
 
 
 
 
 
 
 
 
 
1215
 
1216
+ # @ squirrly-seo
1217
+ #, fuzzy
1218
+ #~| msgid "Change it >>"
1219
+ #~ msgid "Chances of Ranking"
1220
+ #~ msgstr "Ändern >>"
 
 
1221
 
1222
+ # @ squirrly-seo
1223
+ #, fuzzy
1224
+ #~| msgid "Do the research"
1225
+ #~ msgid "Keyword Ranking"
1226
+ #~ msgstr "Recherchieren"
1227
 
1228
+ # @ squirrly-seo
1229
+ #, fuzzy
1230
+ #~| msgid "Squirrly settings"
1231
+ #~ msgid "Focus Pages Settings"
1232
+ #~ msgstr "Squirrly Einstellungen"
1233
 
1234
+ # @ squirrly-seo
1235
+ #, fuzzy
1236
+ #~| msgid "SEO Software"
1237
+ #~ msgid "Continue"
1238
+ #~ msgstr "SEO Software"
 
 
 
 
1239
 
1240
+ # @ squirrly-seo
1241
+ #, fuzzy
1242
+ #~| msgid "Squirrly settings"
1243
+ #~ msgid "Import SEO & Settings"
1244
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
1245
 
1246
+ # @ squirrly-seo
1247
+ #, fuzzy
1248
+ #~| msgid "Google %sAnalytics ID%s`:"
1249
+ #~ msgid "Connect Your Site to Squirrly Cloud"
1250
+ #~ msgstr "Google %sAnalytics ID%s`:"
1251
 
1252
+ # @ squirrly-seo
1253
+ #, fuzzy
1254
+ #~| msgid "Squirrly settings"
1255
+ #~ msgid "Show Advanced SEO"
1256
+ #~ msgstr "Squirrly Einstellungen"
 
1257
 
1258
  # @ squirrly-seo
 
1259
  #, fuzzy
1260
+ #~| msgid "Squirrly settings"
1261
+ #~ msgid "Rate us if you like Squirrly SEO"
1262
+ #~ msgstr "Squirrly Einstellungen"
1263
 
1264
+ # @ squirrly-seo
1265
+ #, fuzzy
1266
+ #~| msgid "Google %sAnalytics ID%s`:"
1267
+ #~ msgid "Google Search Console Keywords Sync"
1268
+ #~ msgstr "Google %sAnalytics ID%s`:"
1269
 
1270
+ # @ squirrly-seo
1271
+ #, fuzzy
1272
+ #~| msgid "Google %sAnalytics ID%s`:"
1273
+ #~ msgid "Welcome to Google Search Console Keywords Sync"
1274
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
 
 
1275
 
1276
+ # @ squirrly-seo
1277
+ #, fuzzy
1278
+ #~| msgid "Google %sAnalytics ID%s`:"
1279
+ #~ msgid "Google Rankings"
1280
+ #~ msgstr "Google %sAnalytics ID%s`:"
1281
 
1282
+ # @ squirrly-seo
1283
+ #, fuzzy
1284
+ #~| msgid "Do the research"
1285
+ #~ msgid "Today Avg. Ranking"
1286
+ #~ msgstr "Recherchieren"
1287
 
1288
+ # @ squirrly-seo
1289
+ #, fuzzy
1290
+ #~| msgid "Could not send the email..."
1291
+ #~ msgid "Ar you sure you want to delete the keyword?"
1292
+ #~ msgstr "Konnte E-Mail nicht senden ..."
1293
 
1294
+ # @ squirrly-seo
1295
+ #, fuzzy
1296
+ #~| msgid "Tips: 2-4 keywords"
1297
+ #~ msgid "Sync Keywords"
1298
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1299
 
1300
+ # @ squirrly-seo
1301
+ #, fuzzy
1302
+ #~| msgid "Tips: 2-4 keywords"
1303
+ #~ msgid "Remove Keyword"
1304
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
 
 
 
 
 
1305
 
1306
+ # @ squirrly-seo
1307
+ #, fuzzy
1308
+ #~| msgid "Do the research"
1309
+ #~ msgid "Add keywords in Briefcase"
1310
+ #~ msgstr "Recherchieren"
1311
 
1312
  # @ squirrly-seo
 
1313
  #, fuzzy
1314
+ #~| msgid "Google %sAnalytics ID%s`:"
1315
+ #~ msgid "Synchronize Keywords with Google Search Console"
1316
+ #~ msgstr "Google %sAnalytics ID%s`:"
1317
 
1318
+ # @ squirrly-seo
1319
+ #, fuzzy
1320
+ #~| msgid "Squirrly settings"
1321
+ #~ msgid "Rankings Settings"
1322
+ #~ msgstr "Squirrly Einstellungen"
1323
 
1324
+ # @ squirrly-seo
1325
+ #, fuzzy
1326
+ #~| msgid "Google %sAnalytics ID%s`:"
1327
+ #~ msgid "Google Country"
1328
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
 
 
 
 
 
1329
 
1330
+ # @ squirrly-seo
1331
+ #, fuzzy
1332
+ #~| msgid "Tips: 2-4 keywords"
1333
+ #~ msgid "Search Keyword"
1334
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
 
 
1335
 
1336
  # @ squirrly-seo
 
1337
  #, fuzzy
1338
+ #~| msgid "Could not send the email..."
1339
+ #~ msgid "Ar you sure you want to delete the keywords?"
1340
+ #~ msgstr "Konnte E-Mail nicht senden ..."
1341
 
1342
  # @ squirrly-seo
 
1343
  #, fuzzy
1344
+ #~| msgid "Enter even more keywords."
1345
+ #~ msgid "selected keywords"
1346
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
1347
 
1348
+ # @ squirrly-seo
1349
+ #, fuzzy
1350
+ #~| msgid "Tips: 2-4 keywords"
1351
+ #~ msgid "keyword info"
1352
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
1353
 
1354
+ # @ squirrly-seo
1355
+ #, fuzzy
1356
+ #~| msgid "Do the research"
1357
+ #~ msgid "No research data"
1358
+ #~ msgstr "Recherchieren"
 
 
 
 
 
 
1359
 
1360
+ # @ squirrly-seo
1361
+ #, fuzzy
1362
+ #~| msgid "Do the research"
1363
+ #~ msgid "Refresh Research"
1364
+ #~ msgstr "Recherchieren"
 
1365
 
1366
+ # @ squirrly-seo
1367
+ #, fuzzy
1368
+ #~| msgid "Enter even more keywords."
1369
+ #~ msgid "Delete Keyword"
1370
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
1371
 
1372
+ # @ squirrly-seo
1373
+ #, fuzzy
1374
+ #~| msgid "Tips: 2-4 keywords"
1375
+ #~ msgid "Go Find New Keywords"
1376
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
 
 
 
 
 
1377
 
1378
+ # @ squirrly-seo
1379
+ #, fuzzy
1380
+ #~| msgid "Tips: 2-4 keywords"
1381
+ #~ msgid "Download Keywords"
1382
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
 
1383
 
1384
+ # @ squirrly-seo
1385
+ #, fuzzy
1386
+ #~| msgid "Tips: 2-4 keywords"
1387
+ #~ msgid "Import Keywords"
1388
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
1389
 
1390
+ # @ squirrly-seo
1391
+ #, fuzzy
1392
+ #~| msgid "Enter even more keywords."
1393
+ #~ msgid "Restore Briefcase Keywords"
1394
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
1395
 
1396
+ # @ squirrly-seo
1397
+ #, fuzzy
1398
+ #~| msgid "Tips: 2-4 keywords"
1399
+ #~ msgid "Restore Keywords"
1400
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
1401
 
1402
+ # @ squirrly-seo
1403
+ #, fuzzy
1404
+ #~| msgid "Tips: 2-4 keywords"
1405
+ #~ msgid "Show All Keywords"
1406
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
1407
 
1408
+ # @ squirrly-seo
1409
+ #, fuzzy
1410
+ #~| msgid "Do the research"
1411
+ #~ msgid "Welcome to Keyword Research History"
1412
+ #~ msgstr "Recherchieren"
 
 
 
 
1413
 
1414
+ # @ squirrly-seo
1415
+ #, fuzzy
1416
+ #~| msgid "Your E-mail:"
1417
+ #~ msgid "Edit Label"
1418
+ #~ msgstr "Ihre E-Mail Adresse:"
1419
 
1420
+ # @ squirrly-seo
1421
+ #, fuzzy
1422
+ #~| msgid "Could not send the email..."
1423
+ #~ msgid "Ar you sure you want to delete the labels?"
1424
+ #~ msgstr "Konnte E-Mail nicht senden ..."
1425
 
1426
+ # @ squirrly-seo
1427
+ #, fuzzy
1428
+ #~| msgid "Do the research"
1429
+ #~ msgid "Add a keyword to Briefcase"
1430
+ #~ msgstr "Recherchieren"
1431
 
1432
+ # @ squirrly-seo
1433
+ #, fuzzy
1434
+ #~| msgid "Could not send the email..."
1435
+ #~ msgid "You need to enter a keyword first"
1436
+ #~ msgstr "Konnte E-Mail nicht senden ..."
1437
 
1438
+ # @ squirrly-seo
1439
+ #, fuzzy
1440
+ #~| msgid "Do the research"
1441
+ #~ msgid "Do a deep research"
1442
+ #~ msgstr "Recherchieren"
1443
 
1444
+ # @ squirrly-seo
1445
+ #, fuzzy
1446
+ #~| msgid "Do the research"
1447
+ #~ msgid "Do research"
1448
+ #~ msgstr "Recherchieren"
1449
 
1450
+ # @ squirrly-seo
1451
+ #, fuzzy
1452
+ #~| msgid "Tips: 2-4 keywords"
1453
+ #~ msgid "Already Have Keywords?"
1454
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
1455
 
1456
+ # @ squirrly-seo
1457
+ #, fuzzy
1458
+ #~| msgid "Tips: 2-4 keywords"
1459
+ #~ msgid "Import Keywords From CSV"
1460
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1461
 
1462
+ # @ squirrly-seo
1463
+ #, fuzzy
1464
+ #~| msgid "Enter even more keywords."
1465
+ #~ msgid "Welcome to Suggested Keywords"
1466
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
1467
 
1468
+ # @ squirrly-seo
1469
+ #, fuzzy
1470
+ #~| msgid "Squirrly settings"
1471
+ #~ msgid "Advanced Settings"
1472
+ #~ msgstr "Squirrly Einstellungen"
1473
 
1474
+ # @ squirrly-seo
1475
+ #, fuzzy
1476
+ #~| msgid "Squirrly settings"
1477
+ #~ msgid "Load Squirrly Frontend CSS"
1478
+ #~ msgstr "Squirrly Einstellungen"
1479
 
1480
+ # @ squirrly-seo
1481
+ #, fuzzy
1482
+ #~| msgid "Squirrly LIVE SEO assistant"
1483
+ #~ msgid "Minify Squirrly SEO Metas"
1484
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
1485
 
1486
+ # @ squirrly-seo
1487
+ #, fuzzy
1488
+ #~| msgid "Squirrly LIVE SEO assistant"
1489
+ #~ msgid "Squirrly SEO Late Buffer"
1490
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
1491
 
1492
+ # @ squirrly-seo
1493
+ #, fuzzy
1494
+ #~| msgid "automatically"
1495
+ #~ msgid "Meta Automation"
1496
+ #~ msgstr "automatisch"
1497
 
1498
+ # @ squirrly-seo
1499
+ #, fuzzy
1500
+ #~| msgid "automatically"
1501
+ #~ msgid "Add Post Type for SEO Automation"
1502
+ #~ msgstr "automatisch"
 
 
 
 
 
 
 
 
1503
 
1504
+ # @ squirrly-seo
1505
+ #, fuzzy
1506
+ #~| msgid "Tips: Length 10-70 chars"
1507
+ #~ msgid "Tips: Length 10-75 chars"
1508
+ #~ msgstr "Tipp: Länge 10-70 Charaktere"
1509
 
1510
+ # @ squirrly-seo
1511
+ #, fuzzy
1512
+ #~| msgid "Tips: Length 10-70 chars"
1513
+ #~ msgid "Tips: Length 70-320 chars"
1514
+ #~ msgstr "Tipp: Länge 10-70 Charaktere"
1515
 
1516
+ # @ squirrly-seo
1517
+ #, fuzzy
1518
+ #~| msgid "Squirrly settings"
1519
+ #~ msgid "Load Squirrly SEO METAs"
1520
+ #~ msgstr "Squirrly Einstellungen"
1521
 
1522
+ # @ squirrly-seo
1523
+ #, fuzzy
1524
+ #~| msgid "Squirrly settings"
1525
+ #~ msgid "Load Squirrly Patterns"
1526
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1527
 
1528
  # @ squirrly-seo
 
1529
  #, fuzzy
1530
+ #~| msgid "Squirrly settings"
1531
+ #~ msgid "Load Squirrly Open Graph"
1532
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
1533
 
1534
  # @ squirrly-seo
 
1535
  #, fuzzy
1536
+ #~| msgid "Squirrly settings"
1537
+ #~ msgid "Load Squirrly Twitter Card"
1538
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1539
 
1540
  # @ squirrly-seo
 
1541
  #, fuzzy
1542
+ #~| msgid "Google %sAnalytics ID%s`:"
1543
+ #~ msgid "Load Google Analytics Tracking Script"
1544
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
 
 
 
 
 
 
 
 
 
 
 
1545
 
1546
  # @ squirrly-seo
 
1547
  #, fuzzy
1548
+ #~| msgid "Google %sAnalytics ID%s`:"
1549
+ #~ msgid "Let Google Analytics Tracking to load for this post type."
1550
+ #~ msgstr "Google %sAnalytics ID%s`:"
 
 
 
 
 
 
1551
 
1552
+ # @ squirrly-seo
1553
+ #, fuzzy, php-format
1554
+ #~| msgid "Could not send the email..."
1555
+ #~ msgid "Do you want to delete the automation for %s?"
1556
+ #~ msgstr "Konnte E-Mail nicht senden ..."
1557
 
1558
  # @ squirrly-seo
 
1559
  #, fuzzy
1560
+ #~| msgid "Squirrly settings"
1561
+ #~ msgid "Squirrly Patterns"
1562
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1563
 
1564
  # @ squirrly-seo
 
1565
  #, fuzzy
1566
+ #~| msgid "Squirrly settings"
1567
+ #~ msgid "Import Settings"
1568
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1569
 
1570
  # @ squirrly-seo
 
1571
  #, fuzzy
1572
+ #~| msgid "Squirrly settings"
1573
+ #~ msgid "Backup Settings"
1574
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1575
 
1576
  # @ squirrly-seo
 
1577
  #, fuzzy
1578
+ #~| msgid "Squirrly settings"
1579
+ #~ msgid "Restore Settings"
1580
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
1581
 
1582
  # @ squirrly-seo
 
1583
  #, fuzzy
1584
+ #~| msgid "Squirrly settings"
1585
+ #~ msgid "Install Squirrly SEO"
1586
+ #~ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
1587
 
1588
+ # @ squirrly-seo
1589
+ #, fuzzy
1590
+ #~| msgid "Tips: 2-4 keywords"
1591
+ #~ msgid "Optimize Keywords"
1592
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
1593
 
1594
+ # @ squirrly-seo
1595
+ #, fuzzy
1596
+ #~| msgid "adds <strong>canonical</strong> link in home page"
1597
+ #~ msgid "Add Canonical Meta Link"
1598
+ #~ msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
1599
 
1600
+ # @ squirrly-seo
1601
+ #, fuzzy
1602
+ #~| msgid "adds <strong>canonical</strong> link in home page"
1603
+ #~ msgid "Add the Dublin Core meta in the page header."
1604
+ #~ msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
1605
 
1606
+ # @ squirrly-seo
1607
+ #, fuzzy
1608
+ #~| msgid "Squirrly settings"
1609
+ #~ msgid "More SEO Settings"
1610
+ #~ msgstr "Squirrly Einstellungen"
 
1611
 
1612
+ # @ squirrly-seo
1613
+ #, fuzzy
1614
+ #~| msgid "Tips: 2-4 keywords"
1615
+ #~ msgid "Keywords"
1616
+ #~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
1617
 
1618
+ # @ squirrly-seo
1619
+ #, fuzzy
1620
+ #~| msgid "Squirrly LIVE SEO assistant"
1621
+ #~ msgid "Squirrly Snippet"
1622
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
1623
 
1624
+ # @ squirrly-seo
1625
+ #, fuzzy
1626
+ #~| msgid "Google %sAnalytics ID%s`:"
1627
+ #~ msgid "Activate Robots"
1628
+ #~ msgstr "Google %sAnalytics ID%s`:"
1629
 
1630
+ # @ squirrly-seo
1631
+ #, fuzzy
1632
+ #~| msgid "Google %sAnalytics ID%s`:"
1633
+ #~ msgid "Not recommended if you added your sitemap in Google Search Console."
1634
+ #~ msgstr "Google %sAnalytics ID%s`:"
1635
 
1636
+ # @ squirrly-seo
1637
+ #, fuzzy
1638
+ #~| msgid "Squirrly settings"
1639
+ #~ msgid "Pages"
1640
+ #~ msgstr "Squirrly Einstellungen"
1641
 
1642
+ # @ squirrly-seo
1643
+ #, fuzzy
1644
+ #~| msgid "Google %sAnalytics ID%s`:"
1645
+ #~ msgid "Google Analytics ID"
1646
+ #~ msgstr "Google %sAnalytics ID%s`:"
1647
 
1648
+ # @ squirrly-seo
1649
+ #, fuzzy
1650
+ #~| msgid "Google %sAnalytics ID%s`:"
1651
+ #~ msgid "Google Tracking Mode"
1652
+ #~ msgstr "Google %sAnalytics ID%s`:"
1653
 
1654
  # @ squirrly-seo
 
1655
  #, fuzzy, php-format
1656
+ #~| msgid "Google META verification code for %sWebmaster Tool%s`:"
1657
+ #~ msgid ""
1658
+ #~ "Add the Google META verification code to connect to %sGoogle Search "
1659
+ #~ "Console%s and %sWebmaster Tool%s"
1660
+ #~ msgstr "Google META Bestätigungs-Code für %sWebmaster Tool%s`:"
 
 
 
 
 
 
 
 
1661
 
1662
  # @ squirrly-seo
 
1663
  #, fuzzy, php-format
1664
+ #~| msgid "Google META verification code for %sWebmaster Tool%s`:"
1665
+ #~ msgid "Add the Bing META verification code to connect to %sWebmaster Tool%s"
1666
+ #~ msgstr "Google META Bestätigungs-Code für %sWebmaster Tool%s`:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1667
 
1668
  # @ squirrly-seo
 
1669
  #, fuzzy
1670
+ #~| msgid "Squirrly LIVE SEO assistant"
1671
+ #~ msgid "Squirrly SEO 2020 (Smart Strategy)"
1672
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1673
 
1674
  # @ squirrly-seo
1675
  #, fuzzy
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-10-22 13:28+0300\n"
6
- "PO-Revision-Date: 2020-10-22 13:31+0300\n"
7
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
@@ -16,165 +16,111 @@ 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.4.1\n"
20
  "X-Poedit-SearchPath-0: .\n"
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:350
33
- #, fuzzy
34
- #| msgid "Optimize for Keyword"
35
- msgid "Articles optimized so far"
36
- msgstr "Schlüsselwort optimieren"
37
-
38
- #: classes/RemoteController.php:352 classes/RemoteController.php:359
39
- msgid "add post"
40
- msgstr ""
41
-
42
- #: classes/RemoteController.php:357
43
- #, fuzzy
44
- #| msgid "Optimize for Keyword"
45
- msgid "Average optimization"
46
- msgstr "Schlüsselwort optimieren"
47
-
48
- # @ squirrly-seo
49
- #: classes/RemoteController.php:364
50
- #, fuzzy
51
- #| msgid "Squirrly Keyword Research"
52
- msgid "Keyword Researches"
53
- msgstr "Squirrly Erweiterte Suche!"
54
-
55
- # @ squirrly-seo
56
- #: classes/RemoteController.php:366
57
- #, fuzzy
58
- #| msgid "Do a research"
59
- msgid "do research"
60
- msgstr "Recherchieren"
61
-
62
- #: classes/RemoteController.php:371
63
- msgid "Keywords stored in Squirrly Briefcase"
64
- msgstr ""
65
-
66
- # @ squirrly-seo
67
- #: classes/RemoteController.php:373
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:378
74
- msgid "Pages ranking in top 100 Google"
75
- msgstr ""
76
-
77
- #: classes/RemoteController.php:380
78
- msgid "see rankings"
79
- msgstr ""
80
-
81
- # @ squirrly-seo
82
- #: classes/RemoteController.php:385
83
- #, fuzzy
84
- #| msgid "Images"
85
- msgid "SEO Audits"
86
- msgstr "Bilder"
87
-
88
- #: classes/RemoteController.php:387
89
- msgid "see audits"
90
- msgstr ""
91
-
92
  # @ squirrly-seo
93
- #: classes/RemoteController.php:1299
94
  msgid "Keyword:"
95
  msgstr "Schlüsselwort:"
96
 
97
  # @ squirrly-seo
98
- #: classes/RemoteController.php:1300
99
  msgid "date"
100
  msgstr "Datum"
101
 
 
 
 
 
 
 
102
  # @ squirrly-seo
103
- #: classes/RemoteController.php:1301 controllers/CheckSeo.php:312
104
- #: controllers/Patterns.php:21 controllers/Research.php:265
105
- #: controllers/Research.php:296 controllers/Research.php:350
106
- #: controllers/Research.php:660 view/Blocks/Snippet.php:1152
107
  #, fuzzy
108
  #| msgid "Keyword:"
109
  msgid "Saved!"
110
  msgstr "Schlüsselwort:"
111
 
112
  # @ squirrly-seo
113
- #: classes/RemoteController.php:1302
114
  msgid "Read it!"
115
  msgstr "Lesen!"
116
 
117
  # @ squirrly-seo
118
- #: classes/RemoteController.php:1303
119
  msgid "Insert it!"
120
  msgstr "Einfügen!"
121
 
122
  # @ squirrly-seo
123
- #: classes/RemoteController.php:1304
124
  msgid "Reference"
125
  msgstr "Referenz"
126
 
127
  # @ squirrly-seo
128
- #: classes/RemoteController.php:1305
129
  msgid "Insert as box"
130
  msgstr "Als Box einfügen"
131
 
132
  # @ squirrly-seo
133
- #: classes/RemoteController.php:1306
134
  #, fuzzy
135
  #| msgid "Insert it!"
136
  msgid "Insert Link"
137
  msgstr "Einfügen!"
138
 
139
  # @ squirrly-seo
140
- #: classes/RemoteController.php:1307
141
  msgid "Not relevant?"
142
  msgstr "Nicht relevant?"
143
 
144
  # @ squirrly-seo
145
- #: classes/RemoteController.php:1308
146
  msgid "Insert in your article"
147
  msgstr "In Artikel einfügen"
148
 
149
  # @ squirrly-seo
150
- #: classes/RemoteController.php:1309
151
  #, fuzzy
152
  #| msgid "An error occured while logging in!"
153
  msgid ":( An error occurred while processing your request. Please try again"
154
  msgstr "Bei der Anmeldung ist ein Fehler aufgetreten!"
155
 
156
  # @ squirrly-seo
157
- #: classes/RemoteController.php:1310
158
  msgid "No results found!"
159
  msgstr "Keine Ergebnisse gefunden!"
160
 
161
- #: classes/RemoteController.php:1311
162
  #, php-format
163
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
164
  msgstr ""
165
 
166
- #: classes/RemoteController.php:1312
167
  msgid "Has creative commons attributes"
168
  msgstr ""
169
 
170
  # @ squirrly-seo
171
- #: classes/RemoteController.php:1313
172
  #, fuzzy
173
  #| msgid "Description:"
174
  msgid "No known copyright restrictions"
175
  msgstr "Beschreibung:"
176
 
177
- #: classes/RemoteController.php:1314
178
  msgid ""
179
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
180
  "optimize for a keyword before publishing?"
@@ -182,106 +128,116 @@ msgstr ""
182
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
183
  "optimize for a keyword before publishing?"
184
 
185
- #: classes/RemoteController.php:1315
186
  msgid "Your Subscription has Expired"
187
  msgstr ""
188
 
189
- #: classes/RemoteController.php:1316
 
 
 
190
  msgid "There are no keywords saved in briefcase yet"
191
- msgstr ""
192
 
193
- #: classes/RemoteController.php:1317
194
  #, php-format
195
  msgid "Congratulations! Your article is 100% optimized!"
196
  msgstr ""
197
 
198
- #: classes/RemoteController.php:1318
199
  #, php-format
200
  msgid "appears too many times. Try to remove %s of them"
201
  msgstr ""
202
 
203
  # @ squirrly-seo
204
- #: classes/RemoteController.php:1319
205
  #, fuzzy, php-format
206
  #| msgid "Squirrly Keyword Research"
207
  msgid "write %s more words"
208
  msgstr "Squirrly Erweiterte Suche!"
209
 
210
- #: classes/RemoteController.php:1320
211
- #, php-format
 
 
212
  msgid "Add the keyword in the %s of your article"
213
- msgstr ""
214
 
215
- #: classes/RemoteController.php:1321
216
  msgid "Click to keep the highlight on"
217
  msgstr ""
218
 
219
- #: classes/RemoteController.php:1322
220
  msgid "introduction"
221
  msgstr ""
222
 
223
  # @ squirrly-seo
224
- #: classes/RemoteController.php:1323
225
  #, fuzzy, php-format
226
  #| msgid "Use more words in one keyword"
227
  msgid "Write more words after the %s keyword"
228
  msgstr "Verwenden Sie mehrere Wörter in einem Schlüsselwort"
229
 
230
- #: classes/RemoteController.php:1324
231
  msgid "or use synonyms"
232
  msgstr ""
233
 
234
  # @ squirrly-seo
235
- #: classes/RemoteController.php:1325
236
  #, fuzzy, php-format
237
  #| msgid "+ Add keyword"
238
  msgid "add %s more word(s)"
239
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
240
 
241
- #: classes/RemoteController.php:1326
242
- #, php-format
243
- msgid "or remove %s word(s)"
244
- msgstr ""
245
-
246
  # @ squirrly-seo
247
- #: classes/RemoteController.php:1327
248
  #, fuzzy, php-format
249
  #| msgid "+ Add keyword"
250
- msgid "add %s more keyword(s)"
251
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
252
 
253
- #: classes/RemoteController.php:1328
254
  #, php-format
255
- msgid "write %s more words to start calculating"
256
  msgstr ""
257
 
258
  # @ squirrly-seo
259
- #: classes/RemoteController.php:1329 view/Research/Research.php:48
 
 
 
 
 
 
 
260
  #, fuzzy
261
  #| msgid "+ Add keyword"
262
  msgid "Add to Briefcase"
263
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
264
 
265
  # @ squirrly-seo
266
- #: classes/RemoteController.php:1330
267
  #, fuzzy
268
  #| msgid "+ Add keyword"
269
  msgid "Add Keyword to Briefcase"
270
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
271
 
272
- #: classes/RemoteController.php:1331
 
 
 
273
  msgid "Select"
274
- msgstr ""
275
 
276
  # @ squirrly-seo
277
- #: classes/RemoteController.php:1332 view/Blocks/Snippet.php:137
278
- #: view/Blocks/Snippet.php:516 view/Blocks/Snippet.php:775
279
  #, fuzzy
280
  #| msgid "automatically"
281
  msgid "Auto Draft"
282
  msgstr "automatisch"
283
 
284
- #: classes/RemoteController.php:1333
285
  msgid ""
286
  "You’ve already used the Live Assistant to optimize this post when creating "
287
  "it in your Page Builder. Please go back and resume your optimization work "
@@ -289,112 +245,138 @@ msgid ""
289
  msgstr ""
290
 
291
  # @ squirrly-seo
292
- #: classes/helpers/Sanitize.php:217
293
  msgid "The code for Google Webmaster Tool is incorrect."
294
  msgstr "Der Code für Google Webmaster Tool ist falsch."
295
 
296
  # @ squirrly-seo
297
- #: classes/helpers/Sanitize.php:244
298
  msgid "The code for Google Analytics is incorrect."
299
  msgstr "Der Code für Google Analytics ist falsch."
300
 
301
  # @ squirrly-seo
302
- #: classes/helpers/Sanitize.php:281
303
  msgid "The code for Facebook is incorrect."
304
  msgstr "Der Code für Facebook ist falsch."
305
 
306
  # @ squirrly-seo
307
- #: classes/helpers/Sanitize.php:307
308
  #, fuzzy
309
  #| msgid "The code for Bing is incorrect."
310
  msgid "The code for Pinterest is incorrect."
311
  msgstr "Der Code für Bing ist falsch."
312
 
313
  # @ squirrly-seo
314
- #: classes/helpers/Sanitize.php:332
315
  msgid "The code for Bing is incorrect."
316
  msgstr "Der Code für Bing ist falsch."
317
 
318
  # @ squirrly-seo
319
- #: classes/helpers/Sanitize.php:357
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  #, fuzzy
321
  #| msgid "The code for Bing is incorrect."
322
  msgid "The code for Alexa is incorrect."
323
  msgstr "Der Code für Bing ist falsch."
324
 
325
  # @ squirrly-seo
326
- #: classes/helpers/Sanitize.php:483
327
  #, fuzzy
328
  #| msgid "The code for Facebook is incorrect."
329
  msgid "The code for Facebook Pixel must only contain numbers."
330
  msgstr "Der Code für Facebook ist falsch."
331
 
332
  # @ squirrly-seo
333
- #: classes/helpers/Sanitize.php:498
334
  #, fuzzy
335
  #| msgid "The code for Facebook is incorrect."
336
  msgid "The code for Facebook App must only contain numbers."
337
  msgstr "Der Code für Facebook ist falsch."
338
 
339
- #: classes/helpers/Tools.php:82
 
 
 
340
  msgid "Getting started"
341
- msgstr ""
342
 
343
  # @ squirrly-seo
344
- #: classes/helpers/Tools.php:107
345
  #, fuzzy
346
  #| msgid "Competition:"
347
  msgid "Documentation"
348
  msgstr "Wettbewerb:"
349
 
350
- #: classes/helpers/Tools.php:108
351
  msgid "Leave a review"
352
  msgstr ""
353
 
354
- #: classes/helpers/Tools.php:408
355
  msgid "Format"
356
  msgstr ""
357
 
358
- #: classes/helpers/Tools.php:426 classes/helpers/Tools.php:462
359
  msgid "Category"
360
  msgstr ""
361
 
362
- #: classes/helpers/Tools.php:444 classes/helpers/Tools.php:480
363
  msgid "Tag"
364
  msgstr ""
365
 
366
- #: classes/helpers/Tools.php:498
367
  msgid "Shipping Option"
368
  msgstr ""
369
 
370
- #: classes/helpers/Tools.php:516
371
  msgid "Author at"
372
  msgstr ""
373
 
374
- #: classes/helpers/Tools.php:588
375
  msgid "Are you looking for"
376
  msgstr ""
377
 
378
- #: classes/helpers/Tools.php:589
 
 
 
379
  msgid "These are the results for"
380
- msgstr ""
381
 
382
- #: classes/helpers/Tools.php:589
 
 
 
383
  msgid "that you can find on our website."
384
- msgstr ""
385
 
386
  # @ squirrly-seo
387
- #: classes/helpers/Tools.php:623
388
  #, fuzzy
389
  #| msgid "No results found!"
390
  msgid "Page not found"
391
  msgstr "Keine Ergebnisse gefunden!"
392
 
393
- #: classes/helpers/Tools.php:624
 
 
 
394
  msgid "This page could not be found on our website."
395
- msgstr ""
396
 
397
- #: classes/helpers/Tools.php:925
398
  msgid "For better text comparison you need to install PHP mbstring extension."
399
  msgstr ""
400
 
@@ -416,21 +398,30 @@ msgstr ""
416
  msgid "Will display an excerpt from the post/page (no auto-generation)"
417
  msgstr ""
418
 
 
419
  #: config/config.php:34
 
 
420
  msgid "Adds the post's keyword to the post description"
421
- msgstr ""
422
 
423
  #: config/config.php:35
424
  msgid "Displays the number of the current page (i.e. 1 of 6)"
425
  msgstr ""
426
 
 
427
  #: config/config.php:36
 
 
428
  msgid "Adds the site's name to the post description"
429
- msgstr ""
430
 
 
431
  #: config/config.php:37
 
 
432
  msgid "Adds the tagline/description of your site"
433
- msgstr ""
434
 
435
  #: config/config.php:38
436
  msgid "Adds the post category (several categories will be comma-separated)"
@@ -440,9 +431,12 @@ msgstr ""
440
  msgid "Adds the primary category of the post/page"
441
  msgstr ""
442
 
 
443
  #: config/config.php:40
 
 
444
  msgid "Adds the category description to the post description"
445
- msgstr ""
446
 
447
  #: config/config.php:41
448
  msgid "Adds the current tag(s) (several tags will be comma-separated)"
@@ -455,9 +449,12 @@ msgstr ""
455
  msgid "Adds the tag description"
456
  msgstr "Beschreibung:"
457
 
 
458
  #: config/config.php:43
 
 
459
  msgid "Adds the term name"
460
- msgstr ""
461
 
462
  # @ squirrly-seo
463
  #: config/config.php:44
@@ -494,9 +491,12 @@ msgstr ""
494
  msgid "Adds the current day"
495
  msgstr ""
496
 
 
497
  #: config/config.php:52
 
 
498
  msgid "Adds the current month"
499
- msgstr ""
500
 
501
  #: config/config.php:53
502
  msgid "Adds the current year"
@@ -523,20 +523,37 @@ msgid ""
523
  "Adds the product price currency from Woocommerce for the current product"
524
  msgstr ""
525
 
526
- #: controllers/Api.php:66
 
 
 
 
 
527
  msgid "Invalid Token. Please try again"
528
  msgstr ""
 
 
529
 
530
- #: controllers/Api.php:87
 
 
 
 
 
531
  msgid "Connection expired. Please try again"
532
  msgstr ""
 
 
533
 
534
- #: controllers/Api.php:100 controllers/Api.php:103 controllers/Api.php:106
 
 
 
535
  msgid "Author not found"
536
- msgstr ""
537
 
538
  # @ squirrly-seo
539
- #: controllers/Api.php:139
540
  #, fuzzy
541
  #| msgid ""
542
  #| "Could not send your informations to squirrly. Please register %smanually"
@@ -546,255 +563,220 @@ msgstr ""
546
  "Konnte Ihre Informationen nicht zu Squirrly senden. Bitte registrieren "
547
  "%smanually%s."
548
 
549
- #: controllers/Api.php:149 controllers/Api.php:171
550
  msgid "Wrong Params"
551
  msgstr ""
552
 
553
  # @ squirrly-seo
554
- #: controllers/Assistant.php:69 controllers/Research.php:104
555
  #, fuzzy
556
  #| msgid "Keywords:"
557
  msgid "No keyword found."
558
  msgstr "Schlüsselwörter:"
559
 
560
- #: controllers/Assistant.php:108 controllers/Assistant.php:135
561
- #: controllers/Audits.php:342 controllers/Ranking.php:140
562
- #: controllers/SeoSettings.php:159 controllers/SeoSettings.php:176
563
- #: controllers/SeoSettings.php:200 controllers/SeoSettings.php:239
564
- #: controllers/SeoSettings.php:268 controllers/SeoSettings.php:299
565
- #: controllers/SeoSettings.php:589 controllers/SeoSettings.php:693
566
- #: controllers/SeoSettings.php:728
 
 
 
567
  msgid "Saved"
568
- msgstr ""
569
 
570
- #: controllers/Assistant.php:114 controllers/BulkSeo.php:75
571
- #: controllers/Patterns.php:107 controllers/Post.php:256
572
- #: controllers/Post.php:311 controllers/Post.php:343 controllers/Post.php:378
573
- #: controllers/PostsList.php:182 controllers/Research.php:178
574
- #: controllers/Research.php:185 controllers/Research.php:223
575
- #: controllers/Research.php:246 controllers/Research.php:276
576
- #: controllers/Research.php:303 controllers/Research.php:327
577
- #: controllers/Research.php:357 controllers/Research.php:378
578
- #: controllers/Research.php:459 controllers/Research.php:610
579
- #: controllers/Research.php:634 controllers/Research.php:668
580
- #: controllers/Research.php:694 controllers/SeoSettings.php:362
581
- #: controllers/SeoSettings.php:578 controllers/SeoSettings.php:602
582
- #: controllers/SeoSettings.php:615 controllers/SeoSettings.php:636
583
- #: controllers/SeoSettings.php:656 controllers/SeoSettings.php:672
584
- #: controllers/SeoSettings.php:708 controllers/Snippet.php:171
 
585
  msgid "You do not have permission to perform this action"
586
  msgstr ""
587
 
588
  # @ squirrly-seo
589
- #: controllers/Assistant.php:140
590
  #, fuzzy
591
  #| msgid "Could not send the email..."
592
  msgid "Error: Could not save the data."
593
  msgstr "Konnte E-Mail nicht senden ..."
594
 
595
- #: controllers/Audits.php:136
596
  msgid "The audit was not found. Please load another audit."
597
  msgstr ""
598
 
599
  # @ squirrly-seo
600
- #: controllers/Audits.php:169
601
  #, fuzzy
602
  #| msgid "Could not send the email..."
603
  msgid "Could not load the Audit Page."
604
  msgstr "Konnte E-Mail nicht senden ..."
605
 
606
- #: controllers/Audits.php:283
607
  msgid "Audit page is added. The audit may take a while so please be patient."
608
  msgstr ""
609
 
610
- #: controllers/Audits.php:286
611
  msgid "You reached the maximum number of audit pages for your account."
612
  msgstr ""
613
 
614
  # @ squirrly-seo
615
- #: controllers/Audits.php:289
616
  #, fuzzy
617
  #| msgid "Upload error: Could not upload the favicon."
618
  msgid "Error! Could not add the audit page."
619
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
620
 
621
  # @ squirrly-seo
622
- #: controllers/Audits.php:293
623
  #, fuzzy
624
  #| msgid "Upload error: Could not upload the favicon."
625
  msgid "Error! Could not find the audit page in your website."
626
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
627
 
628
- #: controllers/Audits.php:303
629
  msgid "Audit page sent for recheck. It may take a while so please be patient."
630
  msgstr ""
631
 
632
- #: controllers/Audits.php:306 controllers/Audits.php:309
633
  msgid "The audit for all pages can be made once an hour."
634
  msgstr ""
635
 
636
- #: controllers/Audits.php:319
637
  msgid "The audit page is deleted."
638
  msgstr ""
639
 
640
- #: controllers/Audits.php:321 controllers/FocusPages.php:414
641
- #: controllers/Ranking.php:167 controllers/Ranking.php:185
642
- #: controllers/Ranking.php:203 controllers/Research.php:214
643
- #: controllers/Research.php:217 controllers/Research.php:240
644
- #: controllers/Research.php:298 controllers/Research.php:322
645
- #: controllers/Research.php:506 controllers/Research.php:577
646
- #: controllers/Research.php:604 controllers/Research.php:629
647
- #: controllers/Research.php:714
 
 
 
648
  msgid "Invalid params!"
649
- msgstr ""
650
 
651
- #: controllers/Audits.php:344
652
  msgid "Not a valid email address."
653
  msgstr ""
654
 
655
- #: controllers/CheckSeo.php:267 controllers/CheckSeo.php:277
656
  msgid "Done!"
657
  msgstr ""
658
 
659
- #: controllers/CheckSeo.php:294
660
  msgid "Fixed!"
661
  msgstr ""
662
 
663
- #: controllers/CheckSeo.php:299
664
  msgid "Could not fix it. You need to change it manually."
665
  msgstr ""
666
 
667
- #: controllers/CheckSeo.php:306
668
  msgid "Saved! Task marked as done."
669
  msgstr ""
670
 
671
- #: controllers/FocusPages.php:153
672
  msgid "Focus Page does not exist or was deleted from your website."
673
  msgstr ""
674
 
675
- #: controllers/FocusPages.php:345
676
  msgid "Focus page is added. The audit may take a while so please be patient."
677
  msgstr ""
678
 
679
- #: controllers/FocusPages.php:352
680
  msgid "You reached the maximum number of focus pages for all your websites."
681
  msgstr ""
682
 
683
  # @ squirrly-seo
684
- #: controllers/FocusPages.php:355
685
  #, fuzzy
686
  #| msgid "Upload error: Could not upload the favicon."
687
  msgid "Error! Could not add the focus page."
688
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
689
 
690
- #: controllers/FocusPages.php:358
 
 
 
691
  msgid "Error! This focus page is not public."
692
- msgstr ""
693
 
694
  # @ squirrly-seo
695
- #: controllers/FocusPages.php:362 controllers/FocusPages.php:401
696
  #, fuzzy
697
  #| msgid "Upload error: Could not upload the favicon."
698
  msgid "Error! Could not find the focus page in your website."
699
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
700
 
701
- #: controllers/FocusPages.php:389
702
  msgid "Focus page sent for recheck. It may take a while so please be patient."
703
  msgstr ""
704
 
705
- #: controllers/FocusPages.php:392 controllers/FocusPages.php:396
706
  msgid "You've made too many requests, please wait a few minutes."
707
  msgstr ""
708
 
709
- #: controllers/FocusPages.php:412
710
  msgid "The focus page is deleted"
711
  msgstr ""
712
 
713
- #: controllers/Menu.php:129
714
  #, php-format
715
  msgid ""
716
  "An error occurred during activation. If this error persists, please contact "
717
  "us at: %s"
718
  msgstr ""
719
 
720
- #: controllers/Menu.php:168
721
  msgid "Dashboard"
722
  msgstr ""
723
 
724
  # @ squirrly-seo
725
  #. Author of the plugin/theme
726
- #: controllers/Menu.php:193 controllers/Menu.php:304 controllers/Menu.php:339
727
- #: view/Blocks/SLASearch.php:7
728
  #, fuzzy
729
  #| msgid "Squirrly settings"
730
  msgid "Squirrly SEO"
731
  msgstr "Squirrly Einstellungen"
732
 
733
  # @ squirrly-seo
734
- #: controllers/Menu.php:267
735
  #, fuzzy
736
  #| msgid "Squirrly LIVE SEO assistant"
737
  msgid "SEO Snippet"
738
  msgstr "Squirrly LIVE SEO-Assistent"
739
 
740
- #: controllers/Menu.php:282 controllers/Snippet.php:142
741
  msgid "Custom SEO"
742
  msgstr ""
743
 
744
- # @ squirrly-seo
745
- #: controllers/Menu.php:347
746
- #, fuzzy
747
- #| msgid "Squirrly settings"
748
- msgid "Squirrly Onboarding"
749
- msgstr "Squirrly Einstellungen"
750
-
751
- # @ squirrly-seo
752
- #: controllers/Menu.php:348
753
- #, fuzzy
754
- #| msgid "Squirrly settings"
755
- msgid "Onboarding"
756
- msgstr "Squirrly Einstellungen"
757
-
758
- #: controllers/Menu.php:377
759
- msgid "Import & Export SEO"
760
  msgstr ""
761
 
762
- # @ squirrly-seo
763
- #: controllers/Menu.php:378 view/SeoSettings/Backup.php:90
764
- #, fuzzy
765
- #| msgid "Save settings"
766
- msgid "Import SEO"
767
- msgstr "Einstellungen speichern"
768
-
769
- # @ squirrly-seo
770
- #: controllers/Menu.php:388
771
- #, fuzzy
772
- #| msgid "Squirrly.co Login"
773
- msgid "Squirrly Account Info"
774
- msgstr "Squirrly.co Login"
775
-
776
- # @ squirrly-seo
777
- #: controllers/Menu.php:389
778
- #, fuzzy
779
- #| msgid "Squirrly.co Login"
780
- msgid "Account Info"
781
- msgstr "Squirrly.co Login"
782
-
783
- # @ squirrly-seo
784
- #: controllers/Menu.php:398
785
- #, fuzzy
786
- #| msgid "Squirrly LIVE SEO assistant"
787
- msgid "Squirrly How To & Support"
788
- msgstr "Squirrly LIVE SEO-Assistent"
789
-
790
- # @ squirrly-seo
791
- #: controllers/Menu.php:399
792
- #, fuzzy
793
- #| msgid "Support"
794
- msgid "Help & Support"
795
- msgstr "Support"
796
-
797
- #: controllers/Overview.php:56
798
  #, php-format
799
  msgid ""
800
  "Detected %s: We encourage you to %sImport the Settings and SEO%s from %s and "
@@ -806,146 +788,149 @@ msgid "Saved! This is how the preview looks like"
806
  msgstr ""
807
 
808
  # @ squirrly-seo
809
- #: controllers/Post.php:305
810
  #, fuzzy
811
  #| msgid "Could not send the email..."
812
  msgid "Could not add the demo post."
813
  msgstr "Konnte E-Mail nicht senden ..."
814
 
815
- #: controllers/Post.php:367 controllers/Post.php:392
816
  msgid "Can't get the post URL"
817
  msgstr ""
818
 
819
- #: controllers/Post.php:397
820
  msgid "Invalid request"
821
  msgstr ""
822
 
823
  # @ squirrly-seo
824
- #: controllers/PostsList.php:74 controllers/PostsList.php:117
825
  #, fuzzy
826
  #| msgid "Squirrly LIVE SEO assistant"
827
  msgid "SQ Snippet"
828
  msgstr "Squirrly LIVE SEO-Assistent"
829
 
830
- #: controllers/PostsList.php:75 models/PostsList.php:21
831
  #, fuzzy
832
  #| msgid "Optimize for Keyword"
833
  msgid "Optimized"
834
  msgstr "Schlüsselwort optimieren"
835
 
836
- #: controllers/PostsList.php:200
837
  msgid "Network Error. Please Refresh."
838
  msgstr ""
839
 
840
- #: controllers/PostsList.php:204
841
  #, php-format
842
  msgid "Maintenance. %sWe'll be back in a minute."
843
  msgstr ""
844
 
845
- #: controllers/PostsList.php:235
846
  msgid "Not Public"
847
  msgstr ""
848
 
849
  # @ squirrly-seo
850
- #: controllers/PostsList.php:236
851
  #, fuzzy
852
  #| msgid "Could not send the email..."
853
  msgid "Could not process"
854
  msgstr "Konnte E-Mail nicht senden ..."
855
 
856
- #: controllers/PostsList.php:237
857
  msgid "The Squirrly subscription has expired!"
858
  msgstr ""
859
 
860
  # @ squirrly-seo
861
- #: controllers/Ranking.php:84
862
  #, fuzzy
863
  #| msgid "Could not send the email..."
864
  msgid "Could not load the Rankings."
865
  msgstr "Konnte E-Mail nicht senden ..."
866
 
867
  # @ squirrly-seo
868
- #: controllers/Ranking.php:97
869
  #, fuzzy
870
  #| msgid "Could not send the email..."
871
  msgid "Could not load data."
872
  msgstr "Konnte E-Mail nicht senden ..."
873
 
874
- #: controllers/Ranking.php:149
875
  #, php-format
876
  msgid "Could not refresh the rank. Please check your SERP credits %shere%s"
877
  msgstr ""
878
 
879
- #: controllers/Ranking.php:151
880
  #, php-format
881
  msgid "%s is queued and the rank will be checked soon."
882
  msgstr ""
883
 
884
- #: controllers/Ranking.php:162
885
  msgid "The keyword is deleted."
886
  msgstr ""
887
 
888
  # @ squirrly-seo
889
- #: controllers/Ranking.php:164
890
  #, fuzzy
891
  #| msgid "Could not send the email..."
892
  msgid "Could not delete the keyword!"
893
  msgstr "Konnte E-Mail nicht senden ..."
894
 
895
  # @ squirrly-seo
896
- #: controllers/Ranking.php:183 controllers/Research.php:238
897
- #: controllers/Research.php:320 controllers/Research.php:627
898
- #: controllers/Research.php:712
899
  #, fuzzy
900
  #| msgid "Keyword:"
901
  msgid "Deleted!"
902
  msgstr "Schlüsselwort:"
903
 
904
- #: controllers/Ranking.php:200
905
  msgid "Sent!"
906
  msgstr ""
907
 
908
- #: controllers/Research.php:204
909
  msgid "Keyword Saved. The rank check will be ready in a minute."
910
  msgstr ""
911
 
912
  # @ squirrly-seo
913
- #: controllers/Research.php:206 controllers/Research.php:210
914
  #, fuzzy
915
  #| msgid "Keyword:"
916
  msgid "Keyword Saved!"
917
  msgstr "Schlüsselwort:"
918
 
919
- #: controllers/Research.php:271
 
 
 
920
  msgid "Invalid Label or Color!"
921
- msgstr ""
922
 
923
  # @ squirrly-seo
924
- #: controllers/Research.php:352 controllers/Research.php:662
925
- #: controllers/Research.php:688
926
  #, fuzzy
927
  #| msgid "Keywords:"
928
  msgid "Invalid Keyword!"
929
  msgstr "Schlüsselwörter:"
930
 
931
- #: controllers/Research.php:411 controllers/Research.php:425
932
- #: controllers/Research.php:447 controllers/Research.php:450
933
- #: controllers/SeoSettings.php:411 controllers/SeoSettings.php:414
934
- #: controllers/SeoSettings.php:458 controllers/SeoSettings.php:461
935
  msgid "Error! The backup is not valid."
936
  msgstr ""
937
 
938
- #: controllers/Research.php:445 controllers/SeoSettings.php:409
939
  msgid "Great! The backup is restored."
940
  msgstr ""
941
 
942
- #: controllers/Research.php:453 controllers/SeoSettings.php:417
943
- #: controllers/SeoSettings.php:464
944
  msgid "Error! You have to enter a previously saved backup file."
945
  msgstr ""
946
 
947
  # @ squirrly-seo
948
- #: controllers/Research.php:474
949
  #, fuzzy
950
  #| msgid ""
951
  #| "Could not send your informations to squirrly. Please register %smanually"
@@ -955,96 +940,100 @@ msgstr ""
955
  "Konnte Ihre Informationen nicht zu Squirrly senden. Bitte registrieren "
956
  "%smanually%s."
957
 
958
- #: controllers/Research.php:476
959
  msgid "The keyword is added to SERP Check."
960
  msgstr ""
961
 
962
- #: controllers/Research.php:479
963
  msgid "Invalid parameters."
964
  msgstr ""
965
 
966
  # @ squirrly-seo
967
- #: controllers/Research.php:571
968
  #, fuzzy
969
  #| msgid "Squirrly Keyword Research"
970
  msgid "Keyword Research limit exceeded"
971
  msgstr "Squirrly Erweiterte Suche!"
972
 
973
- #: controllers/Research.php:686
974
  msgid "The keywords are added to SERP Check!"
975
  msgstr ""
976
 
977
  # @ squirrly-seo
978
- #: controllers/SeoSettings.php:342
979
  #, fuzzy
980
  #| msgid "The code for Google Analytics is incorrect."
981
  msgid "Google Analytics account is disconnected."
982
  msgstr "Der Code für Google Analytics ist falsch."
983
 
984
  # @ squirrly-seo
985
- #: controllers/SeoSettings.php:344 controllers/SeoSettings.php:357
986
  #, fuzzy
987
  #| msgid "Delete error: Could not delete the old favicon."
988
  msgid "Error! Could not disconnect the account."
989
  msgstr "Lösch Fehler: Konnte das alte Favicon nicht löschen."
990
 
991
  # @ squirrly-seo
992
- #: controllers/SeoSettings.php:355
993
  #, fuzzy
994
  #| msgid "The code for Google Analytics is incorrect."
995
  msgid "Google Search Console account is disconnected."
996
  msgstr "Der Code für Google Analytics ist falsch."
997
 
998
- #: controllers/SeoSettings.php:455
999
  msgid "Great! The SEO backup is restored."
1000
  msgstr ""
1001
 
1002
- #: controllers/SeoSettings.php:492 controllers/SeoSettings.php:540
1003
  #, php-format
1004
  msgid ""
1005
  "Success! The import from %s was completed successfully and your SEO is safe!"
1006
  msgstr ""
1007
 
1008
  # @ squirrly-seo
1009
- #: controllers/SeoSettings.php:494
1010
  #, fuzzy
1011
  #| msgid "An error occured while logging in!"
1012
  msgid "Error! An error occured while import. Please try again."
1013
  msgstr "Bei der Anmeldung ist ein Fehler aufgetreten!"
1014
 
1015
- #: controllers/SeoSettings.php:506
1016
  msgid "All the Plugin settings were imported successfuly!"
1017
  msgstr ""
1018
 
1019
- #: controllers/SeoSettings.php:508
1020
  msgid "No settings found for this plugin/theme."
1021
  msgstr ""
1022
 
1023
- #: controllers/SeoSettings.php:560 models/Rollback.php:98
1024
  msgid "Rollback to Previous Version"
1025
  msgstr ""
1026
 
 
 
 
 
1027
  # @ squirrly-seo
1028
- #: controllers/SeoSettings.php:591
1029
  #, fuzzy
1030
  #| msgid "Could not send the email..."
1031
  msgid "Could not save the changes"
1032
  msgstr "Konnte E-Mail nicht senden ..."
1033
 
1034
- #: controllers/SeoSettings.php:626
1035
  msgid ""
1036
  "Error! Could not get the code. Connect to Google Search Console and validate "
1037
  "the connection."
1038
  msgstr ""
1039
 
1040
- #: controllers/SeoSettings.php:646
1041
  msgid ""
1042
  "Error! Could not get the tracking code. Connect to Google Analytics and get "
1043
  "the website tracking code from Admin area."
1044
  msgstr ""
1045
 
1046
  # @ squirrly-seo
1047
- #: controllers/SeoSettings.php:701 controllers/SeoSettings.php:736
1048
  #, fuzzy
1049
  #| msgid "Could not send the email..."
1050
  msgid "Could not add the post type."
@@ -1099,7 +1088,7 @@ msgstr ""
1099
  msgid "We could not create your account. Please enter a valid email."
1100
  msgstr ""
1101
 
1102
- #: core/Blocklogin.php:78
1103
  #, php-format
1104
  msgid ""
1105
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
@@ -1107,7 +1096,7 @@ msgid ""
1107
  msgstr ""
1108
 
1109
  # @ squirrly-seo
1110
- #: core/Blocklogin.php:82
1111
  #, fuzzy
1112
  #| msgid ""
1113
  #| "Could not send your informations to squirrly. Please register %smanually"
@@ -1118,12 +1107,12 @@ msgstr ""
1118
  "%smanually%s."
1119
 
1120
  # @ squirrly-seo
1121
- #: core/Blocklogin.php:104
1122
  msgid "Wrong email or password!"
1123
  msgstr "Benutzername oder Passwort falsch!"
1124
 
1125
  # @ squirrly-seo
1126
- #: core/Blocklogin.php:107
1127
  #, fuzzy
1128
  #| msgid "You can use this account only for the URL you registered first!"
1129
  msgid "You can only use this account for the URL you registered first!"
@@ -1131,14 +1120,18 @@ msgstr ""
1131
  "Dieses Konto können Sie nur für die URL benutzen, die Sie zuerst registriert "
1132
  "haben!"
1133
 
 
 
 
 
1134
  # @ squirrly-seo
1135
- #: core/Blocklogin.php:110
1136
  #, fuzzy
1137
  #| msgid "An error occured."
1138
  msgid "An error occured."
1139
  msgstr "Ein Fehler ist aufgetreten."
1140
 
1141
- #: core/Blocklogin.php:130
1142
  #, php-format
1143
  msgid ""
1144
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
@@ -1146,29 +1139,32 @@ msgid ""
1146
  msgstr ""
1147
 
1148
  # @ squirrly-seo
1149
- #: core/Blocklogin.php:135
1150
  msgid "Both fields are required."
1151
  msgstr "Beide Felder sind Pflichtfelder."
1152
 
1153
  # @ squirrly-seo
1154
- #: models/Assistant.php:50
1155
  #, fuzzy
1156
  #| msgid "Your E-mail:"
1157
  msgid "Task Details"
1158
  msgstr "Ihre E-Mail Adresse:"
1159
 
1160
- #: models/Assistant.php:57
 
 
 
1161
  msgid "active task"
1162
- msgstr ""
1163
 
1164
  # @ squirrly-seo
1165
- #: models/Assistant.php:80 view/Blocks/Jorney.php:69
1166
  #, fuzzy
1167
  #| msgid "Squirrly Keyword Research"
1168
  msgid "Do Keyword Research"
1169
  msgstr "Squirrly Erweiterte Suche!"
1170
 
1171
- #: models/Assistant.php:81
1172
  #, php-format
1173
  msgid ""
1174
  "Use Research - Find Keywords to perform your very first keyword research for "
@@ -1177,13 +1173,13 @@ msgid ""
1177
  msgstr ""
1178
 
1179
  # @ squirrly-seo
1180
- #: models/Assistant.php:85
1181
  #, fuzzy
1182
  #| msgid "+ Add keyword"
1183
  msgid "Add Keywords in Briefcase"
1184
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
1185
 
1186
- #: models/Assistant.php:86
1187
  #, php-format
1188
  msgid ""
1189
  "Use the Briefcase feature to organize and manage your portfolio of keywords. "
@@ -1196,13 +1192,13 @@ msgid ""
1196
  "the future and which are on-point with your strategy."
1197
  msgstr ""
1198
 
1199
- #: models/Assistant.php:90
1200
  #, fuzzy
1201
  #| msgid "Optimize for Keyword"
1202
  msgid "Create Labels for Keywords"
1203
  msgstr "Schlüsselwort optimieren"
1204
 
1205
- #: models/Assistant.php:91
1206
  #, php-format
1207
  msgid ""
1208
  "Organize your keywords by using Labels for the keywords you've stored in "
@@ -1215,13 +1211,13 @@ msgid ""
1215
  msgstr ""
1216
 
1217
  # @ squirrly-seo
1218
- #: models/Assistant.php:95
1219
  #, fuzzy
1220
  #| msgid "+ Add keyword"
1221
  msgid "Add Keywords to Labels"
1222
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
1223
 
1224
- #: models/Assistant.php:96
1225
  #, php-format
1226
  msgid ""
1227
  "Now that you've created your first label, you should label one of your "
@@ -1231,11 +1227,14 @@ msgid ""
1231
  "Then, assign a label to your keyword in order to complete this task."
1232
  msgstr ""
1233
 
1234
- #: models/Assistant.php:100
1235
- msgid "Send Keywords to Rank Checker"
1236
- msgstr ""
 
 
 
1237
 
1238
- #: models/Assistant.php:101
1239
  #, php-format
1240
  msgid ""
1241
  "Now that you (hopefully) have keywords added to your Briefcase, go look at "
@@ -1247,11 +1246,14 @@ msgid ""
1247
  "SEO strategy."
1248
  msgstr ""
1249
 
1250
- #: models/Assistant.php:107
 
 
 
1251
  msgid "Optimize Using Live Assistant"
1252
- msgstr ""
1253
 
1254
- #: models/Assistant.php:108
1255
  #, php-format
1256
  msgid ""
1257
  "Optimize your first Page or Article using the SEO Live Assistant (SLA) "
@@ -1266,31 +1268,31 @@ msgid ""
1266
  msgstr ""
1267
 
1268
  # @ squirrly-seo
1269
- #: models/Assistant.php:114
1270
  #, fuzzy
1271
  #| msgid "Description:"
1272
- msgid "Activate Meta Automation"
1273
  msgstr "Beschreibung:"
1274
 
1275
- #: models/Assistant.php:115
1276
  #, php-format
1277
  msgid ""
1278
- "The %sAutomation Features%s of Squirrly SEO are extremely powerful. %s They "
1279
- "help Non-SEO experts avoid many mistakes they would normally make. %s They "
1280
- "help experts control any WordPress site at a level that has never been "
1281
  "possible before. (just make sure you click to see the Advanced settings). %s "
1282
  "You'll be able to configure automations according to any post type. %s Turn "
1283
  "the toggle to ON for: %sActivate Patterns%s to complete this task."
1284
  msgstr ""
1285
 
1286
  # @ squirrly-seo
1287
- #: models/Assistant.php:119
1288
  #, fuzzy
1289
  #| msgid "Keywords:"
1290
  msgid "Activate METAs"
1291
  msgstr "Schlüsselwörter:"
1292
 
1293
- #: models/Assistant.php:120
1294
  #, php-format
1295
  msgid ""
1296
  "Activate the %sMETA settings%s from the Squirrly SEO Plugin. %s You can "
@@ -1302,12 +1304,15 @@ msgid ""
1302
  "off."
1303
  msgstr ""
1304
 
1305
- #: models/Assistant.php:124 view/Blocks/Snippet.php:377
1306
- #: view/SeoSettings/Jsonld.php:35
 
 
 
1307
  msgid "Activate JSON-LD"
1308
- msgstr ""
1309
 
1310
- #: models/Assistant.php:125
1311
  #, php-format
1312
  msgid ""
1313
  "%sJSON-LD Structured Data%s needs to be activated. %s The Duplicate Removal "
@@ -1322,14 +1327,14 @@ msgid ""
1322
  msgstr ""
1323
 
1324
  # @ squirrly-seo
1325
- #: models/Assistant.php:129 view/Blocks/Snippet.php:483
1326
- #: view/SeoSettings/Automation.php:377 view/SeoSettings/Social.php:47
1327
  #, fuzzy
1328
  #| msgid "Description:"
1329
  msgid "Activate Open Graph"
1330
  msgstr "Beschreibung:"
1331
 
1332
- #: models/Assistant.php:130
1333
  #, php-format
1334
  msgid ""
1335
  "Go to the %sSocial Media section%s.%sActivate Open Graph. (switch the toggle "
@@ -1340,14 +1345,14 @@ msgid ""
1340
  msgstr ""
1341
 
1342
  # @ squirrly-seo
1343
- #: models/Assistant.php:134 view/Blocks/Snippet.php:740
1344
- #: view/SeoSettings/Automation.php:404 view/SeoSettings/Social.php:270
1345
  #, fuzzy
1346
  #| msgid "Twitter"
1347
  msgid "Activate Twitter Card"
1348
  msgstr "Twitter"
1349
 
1350
- #: models/Assistant.php:135
1351
  #, php-format
1352
  msgid ""
1353
  "Go to the %sSocial Media section%s. %s - Activate Twitter Card. (switch the "
@@ -1357,11 +1362,14 @@ msgid ""
1357
  "you clicks to your site."
1358
  msgstr ""
1359
 
1360
- #: models/Assistant.php:139
 
 
 
1361
  msgid "Activate Sitemap XML"
1362
- msgstr ""
1363
 
1364
- #: models/Assistant.php:140
1365
  #, php-format
1366
  msgid ""
1367
  "Activate your %sSitemap XML%s setting. Squirrly SEO will then generate your "
@@ -1375,13 +1383,13 @@ msgid ""
1375
  msgstr ""
1376
 
1377
  # @ squirrly-seo
1378
- #: models/Assistant.php:144
1379
  #, fuzzy
1380
  #| msgid "Google %sAnalytics ID%s`:"
1381
  msgid "Activate Google Analytics"
1382
  msgstr "Google %sAnalytics ID%s`:"
1383
 
1384
- #: models/Assistant.php:145
1385
  #, php-format
1386
  msgid ""
1387
  "Go to the %sTracking Tools section%s. %s Add your Google Analytics ID to "
@@ -1393,29 +1401,13 @@ msgid ""
1393
  msgstr ""
1394
 
1395
  # @ squirrly-seo
1396
- #: models/Assistant.php:149
1397
- #, fuzzy
1398
- #| msgid "Description:"
1399
- msgid "Activate Facebook Pixel"
1400
- msgstr "Beschreibung:"
1401
-
1402
- #: models/Assistant.php:150
1403
- #, php-format
1404
- msgid ""
1405
- "Go to the %sTracking Tools section%s of the settings and add your Facebook "
1406
- "Pixel ID. %s Make sure you click %sSave Settings%s after you do that. %s Do "
1407
- "this, and Facebook will start tracking user actions on your site, so you can "
1408
- "later retarget them with ads."
1409
- msgstr ""
1410
-
1411
- # @ squirrly-seo
1412
- #: models/Assistant.php:154
1413
  #, fuzzy
1414
  #| msgid "Change the Website Icon"
1415
  msgid "Connect the Webmasters"
1416
  msgstr "Ändern Sie das Website-Symbol"
1417
 
1418
- #: models/Assistant.php:155
1419
  #, php-format
1420
  msgid ""
1421
  "Go to the %sConnection section%s. %s This section makes it super easy to "
@@ -1427,14 +1419,14 @@ msgid ""
1427
  msgstr ""
1428
 
1429
  # @ squirrly-seo
1430
- #: models/Assistant.php:163 models/focuspages/Accuracy.php:45
1431
- #: models/focuspages/Length.php:69 models/focuspages/Traffic.php:106
1432
  #, fuzzy
1433
  #| msgid "Google %sAnalytics ID%s`:"
1434
  msgid "Connect Google Analytics"
1435
  msgstr "Google %sAnalytics ID%s`:"
1436
 
1437
- #: models/Assistant.php:164
1438
  #, php-format
1439
  msgid ""
1440
  "Integrate %sGoogle Analytics%s with Squirrly SEO from %sAudits > Settings%s."
@@ -1446,13 +1438,13 @@ msgid ""
1446
  msgstr ""
1447
 
1448
  # @ squirrly-seo
1449
- #: models/Assistant.php:168 models/Assistant.php:190
1450
  #, fuzzy
1451
  #| msgid "Google %sAnalytics ID%s`:"
1452
  msgid "Connect Google Search Console"
1453
  msgstr "Google %sAnalytics ID%s`:"
1454
 
1455
- #: models/Assistant.php:169
1456
  #, php-format
1457
  msgid ""
1458
  "Integrate your WordPress with %sGoogle Search Console%s with Squirrly SEO "
@@ -1464,13 +1456,13 @@ msgid ""
1464
  msgstr ""
1465
 
1466
  # @ squirrly-seo
1467
- #: models/Assistant.php:173
1468
  #, fuzzy
1469
  #| msgid "Your E-mail:"
1470
  msgid "Set the Audit Email"
1471
  msgstr "Ihre E-Mail Adresse:"
1472
 
1473
- #: models/Assistant.php:174
1474
  #, php-format
1475
  msgid ""
1476
  "You can customize the email to which we send the Audit reports.%sIt can be "
@@ -1480,11 +1472,11 @@ msgid ""
1480
  "order to increase the score."
1481
  msgstr ""
1482
 
1483
- #: models/Assistant.php:178
1484
  msgid "Get your score over 60"
1485
  msgstr ""
1486
 
1487
- #: models/Assistant.php:179
1488
  #, php-format
1489
  msgid ""
1490
  "True website marketing performance happens after your Audit score gets to "
@@ -1497,11 +1489,11 @@ msgid ""
1497
  "this."
1498
  msgstr ""
1499
 
1500
- #: models/Assistant.php:185
1501
  msgid "Track your first 3 Keywords"
1502
  msgstr ""
1503
 
1504
- #: models/Assistant.php:186
1505
  #, php-format
1506
  msgid ""
1507
  "%sSERP Checker = Search Engine Result Pages Checker.%s %s It checks your "
@@ -1516,7 +1508,7 @@ msgid ""
1516
  "> select Send to Rank Checker%s"
1517
  msgstr ""
1518
 
1519
- #: models/Assistant.php:191
1520
  #, php-format
1521
  msgid ""
1522
  "Connect Google Search Console. %s You can do that from %sSEO Audit > Settings"
@@ -1531,11 +1523,11 @@ msgid ""
1531
  "the accurate, on-time and objective information about your rankings."
1532
  msgstr ""
1533
 
1534
- #: models/Assistant.php:195
1535
  msgid "Get 1 Keyword to the first page of Google"
1536
  msgstr ""
1537
 
1538
- #: models/Assistant.php:196
1539
  #, php-format
1540
  msgid ""
1541
  "Start with a small task. %sGet 1 keyword to the first page of Google%s. %s "
@@ -1546,26 +1538,26 @@ msgid ""
1546
  "on those tasks and turning elements to green you'll complete this task."
1547
  msgstr ""
1548
 
1549
- #: models/Assistant.php:253 models/abstract/Assistant.php:197
1550
  msgid "You chose to ignore this task. Click to activate it."
1551
  msgstr ""
1552
 
1553
- #: models/Audits.php:17
1554
  #, fuzzy
1555
  #| msgid "Optimize for Keyword"
1556
  msgid "Average Content Optimization"
1557
  msgstr "Schlüsselwort optimieren"
1558
 
1559
- #: models/Audits.php:18 models/Audits.php:97 models/Audits.php:107
1560
- #: models/Audits.php:117 models/Audits.php:127 models/Audits.php:714
1561
  msgid "Great!"
1562
  msgstr ""
1563
 
1564
- #: models/Audits.php:19
1565
  msgid "hmm..."
1566
  msgstr ""
1567
 
1568
- #: models/Audits.php:20
1569
  #, php-format
1570
  msgid ""
1571
  "How can we fix the SEO optimization of a page on our website? %s Find an "
@@ -1582,7 +1574,7 @@ msgid ""
1582
  "stuffing.%s"
1583
  msgstr ""
1584
 
1585
- #: models/Audits.php:21
1586
  msgid ""
1587
  "Optimization is NOT about stuffing in keywords. It's about writing the page "
1588
  "in such a way that Search Engine bots and Humans alike will easily "
@@ -1590,45 +1582,48 @@ msgid ""
1590
  "Use the Live Assistant from Squirrly SEO to get the job done with ease."
1591
  msgstr ""
1592
 
1593
- #: models/Audits.php:22
1594
  msgid ""
1595
  "Use tools like Squirrly Keyword Research and Squirrly Live Assistant to "
1596
  "optimize your content"
1597
  msgstr ""
1598
 
1599
- #: models/Audits.php:27
1600
  msgid "DcPublisher Meta"
1601
  msgstr ""
1602
 
1603
  # @ squirrly-seo
1604
- #: models/Audits.php:28 models/Audits.php:58 models/Audits.php:68
1605
- #: models/Audits.php:78 models/Audits.php:137 models/Audits.php:147
1606
- #: models/Audits.php:157 models/Audits.php:167 models/Audits.php:177
1607
- #: models/Audits.php:187 models/Audits.php:197 models/Audits.php:207
1608
- #: models/Audits.php:217 models/Audits.php:227 models/Audits.php:296
1609
- #: models/Audits.php:306 models/Audits.php:316 models/Audits.php:326
1610
- #: models/Audits.php:421
1611
  msgid "Yes"
1612
  msgstr "Ja"
1613
 
1614
  # @ squirrly-seo
1615
- #: models/Audits.php:29 models/Audits.php:59 models/Audits.php:69
1616
- #: models/Audits.php:79 models/Audits.php:138 models/Audits.php:148
1617
- #: models/Audits.php:168 models/Audits.php:178 models/Audits.php:188
1618
- #: models/Audits.php:198 models/Audits.php:208 models/Audits.php:218
1619
- #: models/Audits.php:228 models/Audits.php:297 models/Audits.php:307
1620
- #: models/Audits.php:317 models/Audits.php:327 models/Audits.php:368
1621
- #: models/Audits.php:412 models/Audits.php:422
1622
  #, fuzzy
1623
  #| msgid "No"
1624
  msgid "No"
1625
  msgstr "Nein"
1626
 
1627
- #: models/Audits.php:29
 
 
 
1628
  msgid "The pages without DcPublisher meta"
1629
- msgstr ""
1630
 
1631
- #: models/Audits.php:30
1632
  msgid ""
1633
  "Dublin Core is a set of standard metadata elements used to describe the "
1634
  "contents of a website. It can help with some internal search engines and it "
@@ -1636,17 +1631,17 @@ msgid ""
1636
  msgstr ""
1637
 
1638
  # @ squirrly-seo
1639
- #: models/Audits.php:31
1640
  #, fuzzy
1641
  #| msgid "adds the correct <strong>title</strong> in the home page"
1642
  msgid "Add the meta DcPublisher tag in the page's header"
1643
  msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
1644
 
1645
- #: models/Audits.php:38
1646
  msgid "Top Ten Pages This Week"
1647
  msgstr ""
1648
 
1649
- #: models/Audits.php:41
1650
  #, php-format
1651
  msgid ""
1652
  "If there is enough data in Google Analytics, you should see the list of "
@@ -1655,19 +1650,25 @@ msgid ""
1655
  "Bing will push down a page which doesn't attract visitors."
1656
  msgstr ""
1657
 
1658
- #: models/Audits.php:45 view/FocusPages/FocusPageStats.php:196
 
 
 
1659
  msgid "Page Traffic"
1660
- msgstr ""
1661
 
1662
- #: models/Audits.php:46
1663
  msgid " total visits / mo."
1664
  msgstr ""
1665
 
1666
- #: models/Audits.php:47
 
 
 
1667
  msgid "The pages with low traffic"
1668
- msgstr ""
1669
 
1670
- #: models/Audits.php:48
1671
  #, php-format
1672
  msgid ""
1673
  "How can we fix the Overall Traffic of the website? %s Make sure you have "
@@ -1686,14 +1687,14 @@ msgid ""
1686
  "the Keyword Research tool included in Squirrly SEO, to spot keywords that "
1687
  "are easy to rank for: [link]https://plugin.squirrly.co/best-keyword-research-"
1688
  "tool-for-seo/[link] %sRank for more keywords with low competition. This will "
1689
- "start building up traffic for your site. %sTo Easily rank new pages, use "
1690
- "Daily SEO Goals: [link]https://plugin.squirrly.co/best-seo-goals/[/link] "
1691
- "%sStudy website rankings to learn how to bring more traffic, by using our "
1692
- "Special Cloud Services for Rank Checking, available only on: Business Plans "
1693
  "[link]https://plugin.squirrly.co/squirrly-seo-pricing/[/link]"
1694
  msgstr ""
1695
 
1696
- #: models/Audits.php:49
1697
  msgid ""
1698
  "Get each person who arrives on your site once to leave something that you "
1699
  "can use later on to bring them to your site again. You can use Facebook "
@@ -1704,37 +1705,38 @@ msgid ""
1704
  "multiple such channels."
1705
  msgstr ""
1706
 
1707
- #: models/Audits.php:50
1708
  msgid "Try to gain organic traffic to your site's pages"
1709
  msgstr ""
1710
 
1711
  # @ squirrly-seo
1712
- #: models/Audits.php:57
1713
  #, fuzzy
1714
  #| msgid "Tool for Search Engines"
1715
  msgid "Visible for search engines?"
1716
  msgstr "Tool für Suchmaschinen"
1717
 
1718
  # @ squirrly-seo
1719
- #: models/Audits.php:59
1720
  #, fuzzy
1721
  #| msgid "Description:"
1722
  msgid "The pages with noindex"
1723
  msgstr "Beschreibung:"
1724
 
1725
- #: models/Audits.php:60
 
1726
  msgid ""
1727
  "How can we fix the noindex for our pages? %s You're currently telling Google "
1728
  "not to index some of your pages through a robots tag inside your code. %s On "
1729
  "WordPress, it's super easy to control on which pages to place no-index and "
1730
  "which pages should never get tagged with no-index if you use the Squirrly "
1731
- "SEO Plugin. %s If you decided you 100% want these pages to be No-Index (you "
1732
  "don’t want Google to index them) - then remove these pages from the SEO "
1733
  "Audit. Use the SEO Audit for the pages you want to be seen on search engines."
1734
  "%s"
1735
  msgstr ""
1736
 
1737
- #: models/Audits.php:61
1738
  msgid ""
1739
  "Some pages are better off if they have an associated no-index tag. Every "
1740
  "website has a couple of pages that would be completely pointless to appear "
@@ -1743,24 +1745,27 @@ msgid ""
1743
  msgstr ""
1744
 
1745
  # @ squirrly-seo
1746
- #: models/Audits.php:62 models/Audits.php:72
1747
  #, fuzzy
1748
  #| msgid "adds the correct <strong>title</strong> in the home page"
1749
  msgid "Add the correct meta robots tag in the pages"
1750
  msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
1751
 
1752
  # @ squirrly-seo
1753
- #: models/Audits.php:67
1754
  #, fuzzy
1755
  #| msgid "Tool for Search Engines"
1756
  msgid "Followed by search engines?"
1757
  msgstr "Tool für Suchmaschinen"
1758
 
1759
- #: models/Audits.php:69
 
 
 
1760
  msgid "The pages with nofollow"
1761
- msgstr ""
1762
 
1763
- #: models/Audits.php:70
1764
  #, php-format
1765
  msgid ""
1766
  "How can we fix the nofollow for our pages? %s You're currently telling "
@@ -1772,18 +1777,18 @@ msgid ""
1772
  "%s"
1773
  msgstr ""
1774
 
1775
- #: models/Audits.php:71
1776
  msgid ""
1777
  "Some pages are better off if they have an associated nofollow tag. Every "
1778
  "website has a couple of pages that would be completely pointless to be "
1779
  "followed by search results like: Contact Us, Terms and Policy."
1780
  msgstr ""
1781
 
1782
- #: models/Audits.php:77
1783
  msgid "Is your site Safe Browsing?"
1784
  msgstr ""
1785
 
1786
- #: models/Audits.php:80
1787
  #, php-format
1788
  msgid ""
1789
  "How can we get our website to be Safe Browsing compliant? %s Make sure you "
@@ -1794,81 +1799,90 @@ msgid ""
1794
  "link]%s"
1795
  msgstr ""
1796
 
1797
- #: models/Audits.php:81
1798
  msgid ""
1799
  "This is a TOP priority if you're having a Safe Browsing problem at the "
1800
  "moment. Browsers will NOT allow web visitors to actually access your pages. "
1801
  "It will also cause you other problems like lower search rankings."
1802
  msgstr ""
1803
 
1804
- #: models/Audits.php:86
1805
  msgid "Page load time"
1806
  msgstr ""
1807
 
1808
- #: models/Audits.php:87
1809
  msgid "s average is a good time"
1810
  msgstr ""
1811
 
1812
- #: models/Audits.php:88
1813
  msgid "s average is slow"
1814
  msgstr ""
1815
 
1816
- #: models/Audits.php:88
1817
  msgid "The slow pages are"
1818
  msgstr ""
1819
 
1820
- #: models/Audits.php:89
1821
  #, php-format
1822
  msgid ""
1823
  "How can we fix the loading speed of the website? %s Use smaller images, or "
1824
  "compress them with tools like ShortPixel.com %s Minify Javascripts, use "
1825
  "CDNs, use gZip. %s Use a professional service if your site is based on "
1826
  "WordPress. Our parent company, Squirrly Limited, offers such a service for "
1827
- "WordPress.org based websites [link]https://www.squirrly.co/agency/[/link] %s"
 
 
 
1828
  msgstr ""
1829
 
1830
- #: models/Audits.php:90
1831
  msgid ""
1832
  "Increasing loading speed will bring you more engagement, lower bounce rates "
1833
  "AND more search engine results."
1834
  msgstr ""
1835
 
1836
- #: models/Audits.php:91
1837
  #, fuzzy
1838
  #| msgid "Optimize for Keyword"
1839
  msgid "Optimize your site's speed"
1840
  msgstr "Schlüsselwort optimieren"
1841
 
1842
  # @ squirrly-seo
1843
- #: models/Audits.php:96
1844
  #, fuzzy
1845
  #| msgid "Description:"
1846
  msgid "Duplicate Titles"
1847
  msgstr "Beschreibung:"
1848
 
1849
  # @ squirrly-seo
1850
- #: models/Audits.php:97
1851
  #, fuzzy
1852
  #| msgid "Description:"
1853
  msgid "No duplicate titles."
1854
  msgstr "Beschreibung:"
1855
 
1856
- #: models/Audits.php:97
 
 
 
1857
  msgid "The pages on your site have unique title tags."
1858
- msgstr ""
1859
 
1860
- #: models/Audits.php:98 models/Audits.php:108
 
 
 
1861
  msgid "We found duplicates."
1862
- msgstr ""
1863
 
1864
  # @ squirrly-seo
1865
- #: models/Audits.php:98
1866
  #, fuzzy
1867
  #| msgid "Description:"
1868
  msgid "The Pages with Duplicate Titles are"
1869
  msgstr "Beschreibung:"
1870
 
1871
- #: models/Audits.php:99
1872
  #, php-format
1873
  msgid ""
1874
  "How can we fix the Duplicate Titles on our pages? %s Features like SEO "
@@ -1890,44 +1904,47 @@ msgid ""
1890
  "unique. This feature is available in the Free version of Squirry.%s"
1891
  msgstr ""
1892
 
1893
- #: models/Audits.php:100
1894
  msgid ""
1895
  "On WordPress you can use Squirrly SEO to control everything about your page "
1896
  "Titles and make them stand out on search engines."
1897
  msgstr ""
1898
 
1899
- #: models/Audits.php:101
1900
  msgid ""
1901
  "Add different titles to each page. You can do it manually or use SEO tools "
1902
  "(like Squirrly) for that."
1903
  msgstr ""
1904
 
1905
  # @ squirrly-seo
1906
- #: models/Audits.php:106
1907
  #, fuzzy
1908
  #| msgid "Description:"
1909
  msgid "Duplicate Descriptions"
1910
  msgstr "Beschreibung:"
1911
 
1912
  # @ squirrly-seo
1913
- #: models/Audits.php:107
1914
  #, fuzzy
1915
  #| msgid "Description:"
1916
  msgid "No duplicate descriptions."
1917
  msgstr "Beschreibung:"
1918
 
1919
  # @ squirrly-seo
1920
- #: models/Audits.php:107
1921
  #, fuzzy
1922
  #| msgid "Description:"
1923
  msgid "The pages on your site have unique meta descriptions."
1924
  msgstr "Beschreibung:"
1925
 
1926
- #: models/Audits.php:108
 
 
 
1927
  msgid "The Pages on which we found duplicates are"
1928
- msgstr ""
1929
 
1930
- #: models/Audits.php:109
1931
  #, php-format
1932
  msgid ""
1933
  "How can we fix the Duplicate Descriptions on our website? %s Use the SEO "
@@ -1941,48 +1958,54 @@ msgid ""
1941
  "This feature is available on all plans. %s"
1942
  msgstr ""
1943
 
1944
- #: models/Audits.php:110
1945
  msgid ""
1946
  "Use Squirrly SEO’s BULK SEO section to control everything about your META "
1947
  "descriptions and make them stand out on search engines."
1948
  msgstr ""
1949
 
1950
- #: models/Audits.php:111
1951
  msgid ""
1952
  "Add different description to each page. You can do it manually or use SEO "
1953
  "tools (like Squirrly) for that."
1954
  msgstr ""
1955
 
1956
  # @ squirrly-seo
1957
- #: models/Audits.php:116
1958
  #, fuzzy
1959
  #| msgid "Description:"
1960
  msgid "Empty Titles"
1961
  msgstr "Beschreibung:"
1962
 
1963
  # @ squirrly-seo
1964
- #: models/Audits.php:117
1965
  #, fuzzy
1966
  #| msgid "Description:"
1967
  msgid "All pages have titles."
1968
  msgstr "Beschreibung:"
1969
 
1970
- #: models/Audits.php:117
 
 
 
1971
  msgid "all the pages on your site have the title tag defined :-)"
1972
- msgstr ""
1973
 
1974
- #: models/Audits.php:118
 
 
 
1975
  msgid "There are some pages without title."
1976
- msgstr ""
1977
 
1978
  # @ squirrly-seo
1979
- #: models/Audits.php:118
1980
  #, fuzzy
1981
  #| msgid "Description:"
1982
  msgid "The pages with empty Title tags are"
1983
  msgstr "Beschreibung:"
1984
 
1985
- #: models/Audits.php:119
1986
  #, php-format
1987
  msgid ""
1988
  "How can we fix the Empty Titles on our pages? %s Use Squirrly’s SEO "
@@ -1994,52 +2017,52 @@ msgid ""
1994
  "each page on your site is unique. This feature is available on all plans.%s"
1995
  msgstr ""
1996
 
1997
- #: models/Audits.php:120
1998
  msgid ""
1999
  "Use Squirrly SEO to create and control everything about your META titles and "
2000
  "make them stand out on search engines."
2001
  msgstr ""
2002
 
2003
- #: models/Audits.php:121
2004
  msgid "Add a Title tag to each page in your site."
2005
  msgstr ""
2006
 
2007
  # @ squirrly-seo
2008
- #: models/Audits.php:126
2009
  #, fuzzy
2010
  #| msgid "Description:"
2011
  msgid "Empty Descriptions"
2012
  msgstr "Beschreibung:"
2013
 
2014
  # @ squirrly-seo
2015
- #: models/Audits.php:127
2016
  #, fuzzy
2017
  #| msgid "Description:"
2018
  msgid "All articles have description."
2019
  msgstr "Beschreibung:"
2020
 
2021
  # @ squirrly-seo
2022
- #: models/Audits.php:127
2023
  #, fuzzy
2024
  #| msgid "Description:"
2025
  msgid "all the pages on your site have meta description"
2026
  msgstr "Beschreibung:"
2027
 
2028
  # @ squirrly-seo
2029
- #: models/Audits.php:128
2030
  #, fuzzy
2031
  #| msgid "Description:"
2032
  msgid "There are some pages without description."
2033
  msgstr "Beschreibung:"
2034
 
2035
  # @ squirrly-seo
2036
- #: models/Audits.php:128
2037
  #, fuzzy
2038
  #| msgid "Description:"
2039
  msgid "The pages with empty description are"
2040
  msgstr "Beschreibung:"
2041
 
2042
- #: models/Audits.php:129
2043
  #, php-format
2044
  msgid ""
2045
  "How can we fix the Empty Descriptions on our website? %s Use Squirrly’s SEO "
@@ -2055,31 +2078,31 @@ msgid ""
2055
  "on all plans.%s"
2056
  msgstr ""
2057
 
2058
- #: models/Audits.php:130
2059
  msgid ""
2060
  "Use Squirrly SEO to create and control everything about your META "
2061
  "descriptions and make them stand out on search engines."
2062
  msgstr ""
2063
 
2064
- #: models/Audits.php:131
2065
  msgid "Add meta description to each page in your site."
2066
  msgstr ""
2067
 
2068
  # @ squirrly-seo
2069
- #: models/Audits.php:136
2070
  #, fuzzy
2071
  #| msgid "Description:"
2072
  msgid "Do you have a title tag?"
2073
  msgstr "Beschreibung:"
2074
 
2075
  # @ squirrly-seo
2076
- #: models/Audits.php:138
2077
  #, fuzzy
2078
  #| msgid "Description:"
2079
  msgid "The pages without title tag are"
2080
  msgstr "Beschreibung:"
2081
 
2082
- #: models/Audits.php:139
2083
  #, php-format
2084
  msgid ""
2085
  "How can we fix the title tags of our pages %s On WordPress, using Squirrly "
@@ -2088,29 +2111,29 @@ msgid ""
2088
  "write ZERO code. No coding required when you use Squirrly SEO.%s"
2089
  msgstr ""
2090
 
2091
- #: models/Audits.php:140
2092
  msgid "Platforms like Shopify handle this aspect with their default engine."
2093
  msgstr ""
2094
 
2095
- #: models/Audits.php:141
2096
  msgid "Add a Title tag to this page of your site"
2097
  msgstr ""
2098
 
2099
  # @ squirrly-seo
2100
- #: models/Audits.php:146
2101
  #, fuzzy
2102
  #| msgid "Description:"
2103
  msgid "Do you have a meta description?"
2104
  msgstr "Beschreibung:"
2105
 
2106
  # @ squirrly-seo
2107
- #: models/Audits.php:148
2108
  #, fuzzy
2109
  #| msgid "Description:"
2110
  msgid "The pages without description meta are"
2111
  msgstr "Beschreibung:"
2112
 
2113
- #: models/Audits.php:149
2114
  #, php-format
2115
  msgid ""
2116
  "How can we fix the META Descriptions of our pages %s First of all, make sure "
@@ -2125,58 +2148,61 @@ msgid ""
2125
  "can even customize the way it automates your descriptions.%s"
2126
  msgstr ""
2127
 
2128
- #: models/Audits.php:150
2129
  msgid "Platforms like Shopify handle this with their default engines."
2130
  msgstr ""
2131
 
2132
- #: models/Audits.php:151
2133
  msgid "Add meta description to this page of your site"
2134
  msgstr ""
2135
 
2136
  # @ squirrly-seo
2137
- #: models/Audits.php:156 models/bulkseo/Metas.php:94
2138
  #, fuzzy
2139
  #| msgid "Keyword:"
2140
  msgid "Meta Keyword"
2141
  msgstr "Schlüsselwort:"
2142
 
2143
  # @ squirrly-seo
2144
- #: models/Audits.php:157
2145
  #, fuzzy
2146
  #| msgid "Keywords:"
2147
  msgid "Your keywords are"
2148
  msgstr "Schlüsselwörter:"
2149
 
2150
  # @ squirrly-seo
2151
- #: models/Audits.php:158
2152
  #, fuzzy
2153
  #| msgid "Keywords:"
2154
  msgid "No keywords."
2155
  msgstr "Schlüsselwörter:"
2156
 
2157
- #: models/Audits.php:159
2158
  msgid ""
2159
  "It is important for search engines to know which keywords you are trying to "
2160
  "rank for with your website. This also helps bring targeted visitors to your "
2161
  "site."
2162
  msgstr ""
2163
 
2164
- #: models/Audits.php:160
2165
  msgid "Make sure that the search for your keywords is on a rising trend"
2166
  msgstr ""
2167
 
2168
- #: models/Audits.php:166 models/bulkseo/Metas.php:99
 
 
 
2169
  msgid "Canonical Link"
2170
- msgstr ""
2171
 
2172
  # @ squirrly-seo
2173
- #: models/Audits.php:168
2174
  #, fuzzy
2175
  #| msgid "Description:"
2176
  msgid "The pages without canonical meta"
2177
  msgstr "Beschreibung:"
2178
 
2179
- #: models/Audits.php:169
2180
  #, php-format
2181
  msgid ""
2182
  "How can we fix the Canonical Links problems of our pages? %s Add this code "
@@ -2193,7 +2219,7 @@ msgid ""
2193
  "options for your pages. %s"
2194
  msgstr ""
2195
 
2196
- #: models/Audits.php:170
2197
  msgid ""
2198
  "Platforms like Shopify handle this with their default engine. On WordPress "
2199
  "you can use Squirrly SEO to control canonical links and make sure you avoid "
@@ -2201,24 +2227,27 @@ msgid ""
2201
  msgstr ""
2202
 
2203
  # @ squirrly-seo
2204
- #: models/Audits.php:171
2205
  #, fuzzy
2206
  #| msgid "adds <strong>canonical</strong> link in home page"
2207
  msgid "Add canonical meta link in the page header"
2208
  msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
2209
 
2210
- #: models/Audits.php:176
 
 
 
2211
  msgid "Meta Json-LD?"
2212
- msgstr ""
2213
 
2214
  # @ squirrly-seo
2215
- #: models/Audits.php:178
2216
  #, fuzzy
2217
  #| msgid "Description:"
2218
  msgid "The pages without Json-LD meta"
2219
  msgstr "Beschreibung:"
2220
 
2221
- #: models/Audits.php:179
2222
  #, php-format
2223
  msgid ""
2224
  "How can we fix the meta Json_LD of the website? %s You need to make sure you "
@@ -2229,30 +2258,33 @@ msgid ""
2229
  "then associated with creating a more organized, better web overall.%s"
2230
  msgstr ""
2231
 
2232
- #: models/Audits.php:180
2233
  msgid ""
2234
  "On WordPress you can use Squirrly SEO to add the Json-LD Structured data. "
2235
  "Squirrly will automatically structure the information from all your products "
2236
  "if you use Woocommerce plugin for eCommerce."
2237
  msgstr ""
2238
 
2239
- #: models/Audits.php:181
2240
  msgid ""
2241
  "Make sure you activated Json-LD in Squirrly > SEO Settings > Json-LD Meta"
2242
  msgstr ""
2243
 
2244
- #: models/Audits.php:186
 
 
 
2245
  msgid "Page Encoding"
2246
- msgstr ""
2247
 
2248
  # @ squirrly-seo
2249
- #: models/Audits.php:188
2250
  #, fuzzy
2251
  #| msgid "Description:"
2252
  msgid "The pages without encoding meta"
2253
  msgstr "Beschreibung:"
2254
 
2255
- #: models/Audits.php:189
2256
  #, php-format
2257
  msgid ""
2258
  "How can we fix the character encoding specifications of the website? %s "
@@ -2263,7 +2295,7 @@ msgid ""
2263
  "content=“text/html;charset=utf-8” />%s"
2264
  msgstr ""
2265
 
2266
- #: models/Audits.php:190
2267
  msgid ""
2268
  "Platforms like Shopify handle this with their default engine. On WordPress "
2269
  "you can use Squirrly SEO to get encoding specified for all your pages. "
@@ -2273,17 +2305,20 @@ msgid ""
2273
  msgstr ""
2274
 
2275
  # @ squirrly-seo
2276
- #: models/Audits.php:191
2277
  #, fuzzy
2278
  #| msgid "adds <strong>canonical</strong> link in home page"
2279
  msgid "Add the meta encoding tag in the page's header"
2280
  msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
2281
 
2282
- #: models/Audits.php:196
 
 
 
2283
  msgid "Does your site have a feed or sitemap?"
2284
- msgstr ""
2285
 
2286
- #: models/Audits.php:199
2287
  #, php-format
2288
  msgid ""
2289
  "How can we fix the Feed and Sitemap of the website? %s Make sure that you "
@@ -2296,7 +2331,7 @@ msgid ""
2296
  "feature is free to use.%s"
2297
  msgstr ""
2298
 
2299
- #: models/Audits.php:200
2300
  msgid ""
2301
  "Your feeds and sitemaps should contain the date when your content was "
2302
  "published and last updated. This is super important for Google to know, as "
@@ -2307,15 +2342,18 @@ msgid ""
2307
  "will gain traffic."
2308
  msgstr ""
2309
 
2310
- #: models/Audits.php:201
2311
  msgid "Add a RSS feed and Sitemap to your site"
2312
  msgstr ""
2313
 
2314
- #: models/Audits.php:206
 
 
 
2315
  msgid "Does your site have a robots.txt file?"
2316
- msgstr ""
2317
 
2318
- #: models/Audits.php:209
2319
  #, php-format
2320
  msgid ""
2321
  "How can we fix the robots.txt of the website? %s You'll need to have a "
@@ -2326,31 +2364,31 @@ msgid ""
2326
  "make sure it can be accessed. %s"
2327
  msgstr ""
2328
 
2329
- #: models/Audits.php:210
2330
  msgid ""
2331
  "Platforms like Shopify handle this with their default engine. On WordPress "
2332
  "you can use Squirrly SEO to create and customize your robots.txt"
2333
  msgstr ""
2334
 
2335
- #: models/Audits.php:211
2336
  msgid "Add robots.txt file in your site"
2337
  msgstr ""
2338
 
2339
  # @ squirrly-seo
2340
- #: models/Audits.php:216
2341
  #, fuzzy
2342
  #| msgid "Keyword:"
2343
  msgid "Meta Viewport"
2344
  msgstr "Schlüsselwort:"
2345
 
2346
  # @ squirrly-seo
2347
- #: models/Audits.php:218
2348
  #, fuzzy
2349
  #| msgid "Description:"
2350
  msgid "The pages without viewport meta"
2351
  msgstr "Beschreibung:"
2352
 
2353
- #: models/Audits.php:219
2354
  #, php-format
2355
  msgid ""
2356
  "How can we fix the meta viewport of the website? %s You need to make sure "
@@ -2361,7 +2399,7 @@ msgid ""
2361
  "name=“viewport” content=“width=500, initial-scale=1”>%s"
2362
  msgstr ""
2363
 
2364
- #: models/Audits.php:220
2365
  msgid ""
2366
  "Platforms like Shopify handle this with their default engine. On WordPress, "
2367
  "you need to make sure the WordPress theme you buy is responsive and has this "
@@ -2369,26 +2407,26 @@ msgid ""
2369
  msgstr ""
2370
 
2371
  # @ squirrly-seo
2372
- #: models/Audits.php:221
2373
  #, fuzzy
2374
  #| msgid "adds the correct <strong>title</strong> in the home page"
2375
  msgid "Add the meta viewport tag in the page's header"
2376
  msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
2377
 
2378
- #: models/Audits.php:226
2379
  #, fuzzy
2380
  #| msgid "Optimize for Keyword"
2381
  msgid "Site optimized for speed?"
2382
  msgstr "Schlüsselwort optimieren"
2383
 
2384
  # @ squirrly-seo
2385
- #: models/Audits.php:228
2386
  #, fuzzy
2387
  #| msgid "Description:"
2388
  msgid "The pages without gzip"
2389
  msgstr "Beschreibung:"
2390
 
2391
- #: models/Audits.php:229
2392
  #, php-format
2393
  msgid ""
2394
  "How can we fix the gzip compression for our website? %s GZIP compression "
@@ -2401,47 +2439,50 @@ msgid ""
2401
  "find plugins to help you with this.%s"
2402
  msgstr ""
2403
 
2404
- #: models/Audits.php:230
2405
  msgid ""
2406
  "Setting this up saves 50% to 80% bandwidth, which will make all your pages "
2407
  "load a lot faster."
2408
  msgstr ""
2409
 
2410
- #: models/Audits.php:231
2411
  #, fuzzy
2412
  #| msgid "Optimize for Keyword"
2413
  msgid "Use gzip to increase your site's speed"
2414
  msgstr "Schlüsselwort optimieren"
2415
 
2416
  # @ squirrly-seo
2417
- #: models/Audits.php:236
2418
  #, fuzzy
2419
  #| msgid "Description:"
2420
  msgid "Duplicate Open Graph Tags?"
2421
  msgstr "Beschreibung:"
2422
 
2423
  # @ squirrly-seo
2424
- #: models/Audits.php:237 models/Audits.php:247 models/Audits.php:257
2425
- #: models/Audits.php:267
2426
  #, fuzzy
2427
  #| msgid "Description:"
2428
  msgid "No duplicates"
2429
  msgstr "Beschreibung:"
2430
 
2431
  # @ squirrly-seo
2432
- #: models/Audits.php:238 models/Audits.php:248 models/Audits.php:258
2433
- #: models/Audits.php:268
2434
  #, fuzzy
2435
  #| msgid "No results found!"
2436
  msgid "We found some ..."
2437
  msgstr "Keine Ergebnisse gefunden!"
2438
 
2439
- #: models/Audits.php:238
 
 
 
2440
  msgid "The pages with duplicate Open Graph metas"
2441
- msgstr ""
2442
 
2443
- #: models/Audits.php:239 models/Audits.php:249 models/Audits.php:259
2444
- #: models/Audits.php:269
2445
  #, php-format
2446
  msgid ""
2447
  "How can we fix the duplicate meta codes of our pages? %s Make a list of the "
@@ -2450,69 +2491,69 @@ msgid ""
2450
  "have two instances of og:title << remove one of them!)%s"
2451
  msgstr ""
2452
 
2453
- #: models/Audits.php:240 models/Audits.php:250 models/Audits.php:260
2454
- #: models/Audits.php:270
2455
  msgid ""
2456
  "On WordPress you can use Squirrly SEO to Remove Duplicate Meta codes from "
2457
  "all your pages. It removes them automatically. No work on your behalf."
2458
  msgstr ""
2459
 
2460
- #: models/Audits.php:241 models/Audits.php:251 models/Audits.php:261
2461
- #: models/Audits.php:271
2462
  msgid "Make sure you don't have duplicate meta tags in your site's header"
2463
  msgstr ""
2464
 
2465
  # @ squirrly-seo
2466
- #: models/Audits.php:246
2467
  #, fuzzy
2468
  #| msgid "Twitter"
2469
  msgid "Duplicate Twitter Card Tags?"
2470
  msgstr "Twitter"
2471
 
2472
  # @ squirrly-seo
2473
- #: models/Audits.php:248
2474
  #, fuzzy
2475
  #| msgid "Twitter"
2476
  msgid "The pages with duplicate Twitter Card metas"
2477
  msgstr "Twitter"
2478
 
2479
  # @ squirrly-seo
2480
- #: models/Audits.php:256
2481
  #, fuzzy
2482
  #| msgid "Twitter"
2483
  msgid "Duplicate Title Tags?"
2484
  msgstr "Twitter"
2485
 
2486
  # @ squirrly-seo
2487
- #: models/Audits.php:258
2488
  #, fuzzy
2489
  #| msgid "Description:"
2490
  msgid "The pages with duplicate Title metas"
2491
  msgstr "Beschreibung:"
2492
 
2493
  # @ squirrly-seo
2494
- #: models/Audits.php:266
2495
  #, fuzzy
2496
  #| msgid "Description:"
2497
  msgid "Duplicate Description Tags?"
2498
  msgstr "Beschreibung:"
2499
 
2500
  # @ squirrly-seo
2501
- #: models/Audits.php:268
2502
  #, fuzzy
2503
  #| msgid "Description:"
2504
  msgid "The pages with duplicate Description metas"
2505
  msgstr "Beschreibung:"
2506
 
2507
- #: models/Audits.php:279
2508
  msgid "Top Shared Pages"
2509
  msgstr ""
2510
 
2511
- #: models/Audits.php:285
2512
  msgid "Shares"
2513
  msgstr ""
2514
 
2515
- #: models/Audits.php:288
2516
  #, php-format
2517
  msgid ""
2518
  "How can we raise the Social Media Shares (or signals) for our pages on "
@@ -2534,7 +2575,7 @@ msgid ""
2534
  "media: [link]https://www.squirrly.co/podcast/[/link] %s"
2535
  msgstr ""
2536
 
2537
- #: models/Audits.php:289
2538
  msgid ""
2539
  "All the shares and likes that your fans will give your pages will contribute "
2540
  "to the total number of shares from social media (social signals). When "
@@ -2543,25 +2584,25 @@ msgid ""
2543
  "its rankings."
2544
  msgstr ""
2545
 
2546
- #: models/Audits.php:290
2547
  msgid "You have to share your articles with your fans"
2548
  msgstr ""
2549
 
2550
  # @ squirrly-seo
2551
- #: models/Audits.php:295
2552
  #, fuzzy
2553
  #| msgid "Insert in your article"
2554
  msgid "Share Buttons in your articles?"
2555
  msgstr "In Artikel einfügen"
2556
 
2557
  # @ squirrly-seo
2558
- #: models/Audits.php:297
2559
  #, fuzzy
2560
  #| msgid "Description:"
2561
  msgid "The pages without share buttons"
2562
  msgstr "Beschreibung:"
2563
 
2564
- #: models/Audits.php:298
2565
  #, php-format
2566
  msgid ""
2567
  "How can we get social media share buttons on our website? %s There are many "
@@ -2574,7 +2615,7 @@ msgid ""
2574
  "their social media counters work perfectly.%s"
2575
  msgstr ""
2576
 
2577
- #: models/Audits.php:299
2578
  msgid ""
2579
  "All there is to it is: make the buttons obvious, so people can easily find "
2580
  "them. Make sure they don't slow your site down. Make sure they look great on "
@@ -2582,24 +2623,24 @@ msgid ""
2582
  msgstr ""
2583
 
2584
  # @ squirrly-seo
2585
- #: models/Audits.php:300
2586
  #, fuzzy
2587
  #| msgid "Insert in your article"
2588
  msgid "Add Social Share buttons in your articles"
2589
  msgstr "In Artikel einfügen"
2590
 
2591
- #: models/Audits.php:305
2592
  msgid "Social 'Follow me' Buttons?"
2593
  msgstr ""
2594
 
2595
  # @ squirrly-seo
2596
- #: models/Audits.php:307
2597
  #, fuzzy
2598
  #| msgid "Description:"
2599
  msgid "The pages without social buttons"
2600
  msgstr "Beschreibung:"
2601
 
2602
- #: models/Audits.php:308
2603
  #, php-format
2604
  msgid ""
2605
  "How can we fix the Social Follow Me buttons of the website? %s Add buttons "
@@ -2611,33 +2652,33 @@ msgid ""
2611
  "digital brand. [link]http://expectationmarketing.com/[/link] %s"
2612
  msgstr ""
2613
 
2614
- #: models/Audits.php:309
2615
  msgid ""
2616
  "Place the buttons in your site's footer, to make sure they're always "
2617
  "accessible. Web users are used to finding them there when they wish to "
2618
  "connect to brands on social media."
2619
  msgstr ""
2620
 
2621
- #: models/Audits.php:310
2622
  msgid ""
2623
  "Add links to your Social Media profiles to strengthen social signals and "
2624
  "keep readers engaged."
2625
  msgstr ""
2626
 
2627
- #: models/Audits.php:315
2628
  #, fuzzy
2629
  #| msgid "Optimize for Keyword"
2630
  msgid "Open Graph protocol?"
2631
  msgstr "Schlüsselwort optimieren"
2632
 
2633
  # @ squirrly-seo
2634
- #: models/Audits.php:317
2635
  #, fuzzy
2636
  #| msgid "Description:"
2637
  msgid "The pages without Open Graph metas"
2638
  msgstr "Beschreibung:"
2639
 
2640
- #: models/Audits.php:318
2641
  #, php-format
2642
  msgid ""
2643
  "How can we fix the Open Graph of the website? %s You need to make sure "
@@ -2660,32 +2701,35 @@ msgid ""
2660
  "content=“en” />%s"
2661
  msgstr ""
2662
 
2663
- #: models/Audits.php:319
2664
  msgid ""
2665
  "Fixing this will improve Click Through Rates on Facebook, LinkedIN. "
2666
  "Guaranteed. Make sure you use this to control how your pages look on social "
2667
  "media when people share them."
2668
  msgstr ""
2669
 
2670
- #: models/Audits.php:320
 
 
 
2671
  msgid "Add the meta Open Graph tag in your page's header."
2672
- msgstr ""
2673
 
2674
  # @ squirrly-seo
2675
- #: models/Audits.php:325
2676
  #, fuzzy
2677
  #| msgid "Twitter"
2678
  msgid "Twitter Card?"
2679
  msgstr "Twitter"
2680
 
2681
  # @ squirrly-seo
2682
- #: models/Audits.php:327
2683
  #, fuzzy
2684
  #| msgid "Description:"
2685
  msgid "The pages without Twitter Card metas"
2686
  msgstr "Beschreibung:"
2687
 
2688
- #: models/Audits.php:328
2689
  #, php-format
2690
  msgid ""
2691
  "How can we fix the Twitter Cards of the website? %s You need to make sure "
@@ -2705,31 +2749,31 @@ msgid ""
2705
  "Marketing” /> %s <meta property=“twitter:card” content=“summary” />%s"
2706
  msgstr ""
2707
 
2708
- #: models/Audits.php:329
2709
  msgid ""
2710
  "Fixing this will improve Click Through Rates on Twitter. Guaranteed. Make "
2711
  "sure you use this to control how your pages look on social media when people "
2712
  "share them."
2713
  msgstr ""
2714
 
2715
- #: models/Audits.php:330
2716
  msgid "Add Twitter Card to make your articles look better on Twitter."
2717
  msgstr ""
2718
 
2719
- #: models/Audits.php:338
2720
  msgid "Majestic Backlinks"
2721
  msgstr ""
2722
 
2723
- #: models/Audits.php:339 models/Audits.php:340 models/Audits.php:357
2724
- #: models/Audits.php:358
2725
  msgid "link(s)"
2726
  msgstr ""
2727
 
2728
- #: models/Audits.php:339 models/Audits.php:340
2729
  msgid "Backlinks Count"
2730
  msgstr ""
2731
 
2732
- #: models/Audits.php:341 models/Audits.php:350
2733
  #, php-format
2734
  msgid ""
2735
  "How can we fix the Inbound Links Number to the latest 10 Pages? %s Many are "
@@ -2753,7 +2797,7 @@ msgid ""
2753
  "links from trust-worthy sites. %s"
2754
  msgstr ""
2755
 
2756
- #: models/Audits.php:342 models/Audits.php:351
2757
  msgid ""
2758
  "Use the BackLinks Assistant [link]https://www.producthunt.com/upcoming/"
2759
  "backlinks-assistant-by-squirrly[/link]. There are many other ways to "
@@ -2763,27 +2807,27 @@ msgid ""
2763
  "team can start working on."
2764
  msgstr ""
2765
 
2766
- #: models/Audits.php:347
2767
  msgid "Majestic Unique Domains"
2768
  msgstr ""
2769
 
2770
- #: models/Audits.php:348 models/Audits.php:349
2771
  msgid "Links from {total} domains"
2772
  msgstr ""
2773
 
2774
- #: models/Audits.php:348 models/Audits.php:349
2775
  msgid "Unique Domains Count"
2776
  msgstr ""
2777
 
2778
- #: models/Audits.php:356
2779
  msgid "Moz Backlinks"
2780
  msgstr ""
2781
 
2782
- #: models/Audits.php:357 models/Audits.php:358
2783
  msgid "Moz Backlinks Count"
2784
  msgstr ""
2785
 
2786
- #: models/Audits.php:359
2787
  #, php-format
2788
  msgid ""
2789
  "How can we fix the Inbound Links Number to the latest 10 Pages? %s Many are "
@@ -2802,7 +2846,7 @@ msgid ""
2802
  "broken links.%s"
2803
  msgstr ""
2804
 
2805
- #: models/Audits.php:360
2806
  msgid ""
2807
  "Use the BackLinks Assistant [link]https://www.producthunt.com/upcoming/"
2808
  "backlinks-assistant-by-squirrly[/link] . There are many other ways to "
@@ -2811,21 +2855,21 @@ msgid ""
2811
  "can start working on."
2812
  msgstr ""
2813
 
2814
- #: models/Audits.php:361
2815
  msgid ""
2816
  "Find more blogs, forums, directories to add links there. Contribute to the "
2817
  "respective community and they will appreciate it."
2818
  msgstr ""
2819
 
2820
- #: models/Audits.php:366
2821
  msgid "Links with noFollow?"
2822
  msgstr ""
2823
 
2824
- #: models/Audits.php:367
2825
  msgid "Nofollow Links Count"
2826
  msgstr ""
2827
 
2828
- #: models/Audits.php:369
2829
  #, php-format
2830
  msgid ""
2831
  "How can we fix the No-Follow links of the website? %s You can find an "
@@ -2850,7 +2894,7 @@ msgid ""
2850
  "\"signin.php\" rel=\"nofollow\">sign in</a>%s"
2851
  msgstr ""
2852
 
2853
- #: models/Audits.php:370
2854
  msgid ""
2855
  "You could add no-follow to most of the links from your site that go towards "
2856
  "external, third-party websites. The only external sites you should leave "
@@ -2860,19 +2904,22 @@ msgid ""
2860
  "better understand what your site's content is all about."
2861
  msgstr ""
2862
 
2863
- #: models/Audits.php:371
2864
  msgid "Add nofollow links to pages like Terms and Conditions."
2865
  msgstr ""
2866
 
2867
- #: models/Audits.php:380 models/FocusPages.php:30
2868
  msgid "Page Authority"
2869
  msgstr ""
2870
 
2871
- #: models/Audits.php:381 models/Audits.php:382
 
 
 
2872
  msgid "average authority"
2873
- msgstr ""
2874
 
2875
- #: models/Audits.php:383
2876
  #, php-format
2877
  msgid ""
2878
  "How can we fix the Authority of the website? %s You must start by "
@@ -2890,25 +2937,25 @@ msgid ""
2890
  "authority: [link]https://plugin.squirrly.co/focus-pages/[/link] %s"
2891
  msgstr ""
2892
 
2893
- #: models/Audits.php:384
2894
  msgid ""
2895
- "You can build up a solid Content Strategy using the Daily SEO Goals and our "
2896
- "brand new Private SEO Consultant. In a Plugin. Powered by Machine Learning "
2897
- "and Cloud Services: [link]https://plugin.squirrly.co/best-seo-goals/[/link] "
2898
- "or you can start getting more BackLinks using the BackLinks Assistant "
2899
  "[link]https://www.producthunt.com/upcoming/backlinks-assistant-by-squirrly[/"
2900
  "link]."
2901
  msgstr ""
2902
 
2903
- #: models/Audits.php:385
2904
  msgid "Get links to your page from domains with authority."
2905
  msgstr ""
2906
 
2907
- #: models/Audits.php:390
2908
  msgid "Alexa Rank"
2909
  msgstr ""
2910
 
2911
- #: models/Audits.php:393
2912
  #, php-format
2913
  msgid ""
2914
  "How can we fix the Alexa Rank of the website? %s Get more traffic to your "
@@ -2922,22 +2969,22 @@ msgid ""
2922
  "marketing/[/link]%s"
2923
  msgstr ""
2924
 
2925
- #: models/Audits.php:394
2926
  msgid ""
2927
  "A certain and tested way of increasing Alexa rank is creating and promoting "
2928
  "many pieces of fresh content. An agency like Squirrly's Content Agency can "
2929
  "help you with this. [link]http://www.squirrly.co/agency[/link]"
2930
  msgstr ""
2931
 
2932
- #: models/Audits.php:395
2933
  msgid "Try to gain organic traffic to your site."
2934
  msgstr ""
2935
 
2936
- #: models/Audits.php:400
2937
  msgid "Domain Age"
2938
  msgstr ""
2939
 
2940
- #: models/Audits.php:403
2941
  #, php-format
2942
  msgid ""
2943
  "How can we fix the Domain Age of the website? %s While you certainly can't "
@@ -2950,7 +2997,7 @@ msgid ""
2950
  "guarantee your entry into Way Back Machine.%s"
2951
  msgstr ""
2952
 
2953
- #: models/Audits.php:404
2954
  msgid ""
2955
  "If Squirrly could crawl your website and find your pages + show you the "
2956
  "Audit, it means your domain and pages can be crawled. Just make sure you're "
@@ -2958,20 +3005,20 @@ msgid ""
2958
  "txt"
2959
  msgstr ""
2960
 
2961
- #: models/Audits.php:405
2962
  msgid ""
2963
  "Your domain is new. I know it will get older, but still, it's good to know "
2964
  "what to expect if it's new :)"
2965
  msgstr ""
2966
 
2967
  # @ squirrly-seo
2968
- #: models/Audits.php:410
2969
  #, fuzzy
2970
  #| msgid "Change the Website Icon"
2971
  msgid "Site Icon"
2972
  msgstr "Ändern Sie das Website-Symbol"
2973
 
2974
- #: models/Audits.php:413
2975
  #, php-format
2976
  msgid ""
2977
  "How can we fix the favicon of the website? %s If you don't already have a "
@@ -2982,22 +3029,22 @@ msgid ""
2982
  "href=“/images/specialicon.ico” type=“image/x-icon” />%s"
2983
  msgstr ""
2984
 
2985
- #: models/Audits.php:414
2986
  msgid ""
2987
  "Platforms like Shopify handle this with their default engine. On WordPress "
2988
  "you can use Squirrly SEO to upload and control the favicon displayed on your "
2989
  "pages."
2990
  msgstr ""
2991
 
2992
- #: models/Audits.php:415 models/Audits.php:425
2993
  msgid "Add an icon for your site"
2994
  msgstr ""
2995
 
2996
- #: models/Audits.php:420
2997
  msgid "IPad and IPhone Icons"
2998
  msgstr ""
2999
 
3000
- #: models/Audits.php:423
3001
  #, php-format
3002
  msgid ""
3003
  "How can we fix the Apple Icon of the website? %s If you don't already have "
@@ -3009,99 +3056,99 @@ msgid ""
3009
  "apple-touch-icon.png” />%s"
3010
  msgstr ""
3011
 
3012
- #: models/Audits.php:424
3013
  msgid ""
3014
  "Platforms like Shopify handle this with their default engine. On WordPress "
3015
  "you can use Squirrly SEO to upload and control the Apple Icon displayed on "
3016
  "user's home screens when they bookmark your pages."
3017
  msgstr ""
3018
 
3019
- #: models/Audits.php:464 models/Audits.php:497 models/Audits.php:516
3020
- #: models/Audits.php:618 models/focuspages/Audit.php:188
3021
- #: models/focuspages/Audit.php:209 models/focuspages/Audit.php:230
3022
- #: models/focuspages/Audit.php:251
3023
  msgid "URL"
3024
  msgstr ""
3025
 
3026
- #: models/Audits.php:465
3027
  msgid "Visitors"
3028
  msgstr ""
3029
 
3030
- #: models/Audits.php:466
3031
  msgid "Bounce"
3032
  msgstr ""
3033
 
3034
  # @ squirrly-seo
3035
- #: models/Audits.php:482
3036
  #, fuzzy
3037
  #| msgid "No results found!"
3038
  msgid "No traffic data found"
3039
  msgstr "Keine Ergebnisse gefunden!"
3040
 
3041
- #: models/Audits.php:498 models/Audits.php:517
3042
  msgid "Total"
3043
  msgstr ""
3044
 
3045
  # @ squirrly-seo
3046
- #: models/Audits.php:544
3047
  #, fuzzy
3048
  #| msgid "Description:"
3049
  msgid "Facebook reactions"
3050
  msgstr "Beschreibung:"
3051
 
3052
  # @ squirrly-seo
3053
- #: models/Audits.php:548
3054
  #, fuzzy
3055
  #| msgid "Description:"
3056
  msgid "Facebook shares"
3057
  msgstr "Beschreibung:"
3058
 
3059
- #: models/Audits.php:552
3060
  msgid "Reddit shares"
3061
  msgstr ""
3062
 
3063
- #: models/Audits.php:556
3064
  msgid "Pinterest shares"
3065
  msgstr ""
3066
 
3067
- #: models/Audits.php:619
3068
  msgid "Value"
3069
  msgstr ""
3070
 
3071
- #: models/Audits.php:686 view/Audits/Audit.php:142 view/Audits/Compare.php:162
3072
  msgid "PRO TIP"
3073
  msgstr ""
3074
 
3075
- #: models/Audits.php:706
3076
  msgid "Requires Attention!"
3077
  msgstr ""
3078
 
3079
- #: models/Audits.php:710
3080
  msgid "Can be improved."
3081
  msgstr ""
3082
 
3083
- #: models/Audits.php:772
3084
  msgid "not yet"
3085
  msgstr ""
3086
 
3087
- #: models/BulkSeo.php:17
3088
  msgid "METAs"
3089
  msgstr ""
3090
 
3091
- #: models/BulkSeo.php:18 view/Blocks/Snippet.php:93
3092
  #, fuzzy
3093
  #| msgid "Optimize for Keyword"
3094
  msgid "Open Graph"
3095
  msgstr "Schlüsselwort optimieren"
3096
 
3097
  # @ squirrly-seo
3098
- #: models/BulkSeo.php:19 view/Blocks/Snippet.php:97
3099
  #, fuzzy
3100
  #| msgid "Twitter"
3101
  msgid "Twitter Card"
3102
  msgstr "Twitter"
3103
 
3104
- #: models/BulkSeo.php:20 models/FocusPages.php:20 view/Blocks/Snippet.php:101
3105
  msgid "Visibility"
3106
  msgstr ""
3107
 
@@ -3121,7 +3168,7 @@ msgstr ""
3121
 
3122
  # @ squirrly-seo
3123
  #: models/CheckSeo.php:39 models/CheckSeo.php:40
3124
- #: models/bulkseo/Visibility.php:104 view/Blocks/Snippet.php:970
3125
  #, fuzzy
3126
  #| msgid "You're blocking google from indexing your site!"
3127
  msgid "Discourage search engines from indexing this site"
@@ -3138,9 +3185,12 @@ msgid ""
3138
  "public and indexable. You must fix this today."
3139
  msgstr ""
3140
 
 
3141
  #: models/CheckSeo.php:52
 
 
3142
  msgid "Get the meta title tag in the front-end"
3143
- msgstr ""
3144
 
3145
  #: models/CheckSeo.php:53
3146
  msgid ""
@@ -3163,15 +3213,15 @@ msgid ""
3163
  msgstr ""
3164
 
3165
  #: models/CheckSeo.php:66
3166
- msgid "Turn Squirrly's AMP functions to ON"
3167
  msgstr ""
3168
 
3169
  #: models/CheckSeo.php:67
3170
  msgid ""
3171
- "AMP site detected and Squirrly's amp is OFF - If this website is an AMP "
3172
- "website you need to make sure that you activate Squirrly AMP Tracking for "
3173
- "it. Squirrly will load Google Analytics and Facebook Pixel for AMP and avoid "
3174
- "AMP script errors."
3175
  msgstr ""
3176
 
3177
  #: models/CheckSeo.php:68
@@ -3185,37 +3235,14 @@ msgid ""
3185
  "the AMP version of the site will have missing pieces."
3186
  msgstr ""
3187
 
3188
- #: models/CheckSeo.php:80
3189
- msgid "Turn OFF Squirrly's AMP functions now"
3190
- msgstr ""
3191
-
3192
- #: models/CheckSeo.php:81
3193
- msgid ""
3194
- "AMP site is NOT detected and Squirrly AMP is ON. - If this website is not an "
3195
- "AMP website you need to make sure that you switch off Squirrly AMP Tracking. "
3196
- "This way, Google will be able to track your website's visitors"
3197
- msgstr ""
3198
-
3199
- #: models/CheckSeo.php:82
3200
- #, php-format
3201
- msgid ""
3202
- "Switch OFF AMP tracking in %sSquirrly > SEO Settings > Tracking Tools%s "
3203
- msgstr ""
3204
-
3205
- #: models/CheckSeo.php:83
3206
- msgid ""
3207
- "You must switch off AMP Settings right now. Otherwise, the website's "
3208
- "tracking tools won't work properly."
3209
- msgstr ""
3210
-
3211
  # @ squirrly-seo
3212
- #: models/CheckSeo.php:94
3213
  #, fuzzy
3214
  #| msgid "Squirrly LIVE SEO assistant"
3215
  msgid "Activate Squirrly SEO Title now"
3216
  msgstr "Squirrly LIVE SEO-Assistent"
3217
 
3218
- #: models/CheckSeo.php:95
3219
  msgid ""
3220
  "Squirrly SEO title is NOT active for your website.If you DON'T use other SEO "
3221
  "plugins, you should activate this option, and Squirrly SEO will add the "
@@ -3224,24 +3251,24 @@ msgid ""
3224
  "and human readers understand what your pages are all about"
3225
  msgstr ""
3226
 
3227
- #: models/CheckSeo.php:96
3228
  #, php-format
3229
  msgid ""
3230
  "Go to %sSquirrly > SEO Settings > Metas%s and switch on: 'Optimize the "
3231
  "Titles'"
3232
  msgstr ""
3233
 
3234
- #: models/CheckSeo.php:97
3235
  msgid ""
3236
  "You should activate the Squirrly SEO title to help Search Engines understand "
3237
  "what your pages are about and ensure all of your pages have titles."
3238
  msgstr ""
3239
 
3240
- #: models/CheckSeo.php:108
3241
  msgid "Make your LINKS SEO-Friendly"
3242
  msgstr ""
3243
 
3244
- #: models/CheckSeo.php:109
3245
  msgid ""
3246
  "Google considers the URLs you use on your website to be a ranking factor. "
3247
  "The permalinks you use and the structure you decide on adopting is "
@@ -3249,7 +3276,7 @@ msgid ""
3249
  "your site Human-friendly. "
3250
  msgstr ""
3251
 
3252
- #: models/CheckSeo.php:110
3253
  #, php-format
3254
  msgid ""
3255
  "Your URLs should be super easy to read. Go to your %s WordPress dashboard > "
@@ -3257,16 +3284,19 @@ msgid ""
3257
  "your permalinks."
3258
  msgstr ""
3259
 
3260
- #: models/CheckSeo.php:111
3261
  msgid ""
3262
  "Make your LINKS SEO-Friendly. You're losing potential rankings at the moment."
3263
  msgstr ""
3264
 
3265
- #: models/CheckSeo.php:121
 
 
 
3266
  msgid "Activate the Sitemap from Squirrly"
3267
- msgstr ""
3268
 
3269
- #: models/CheckSeo.php:122
3270
  msgid ""
3271
  "XML sitemaps help search engines and spiders discover new pages on your "
3272
  "website. It also helps them better understand the structure of your website. "
@@ -3274,7 +3304,7 @@ msgid ""
3274
  "sitemap, according to different items you can set up."
3275
  msgstr ""
3276
 
3277
- #: models/CheckSeo.php:123
3278
  #, php-format
3279
  msgid ""
3280
  "Go to %sSquirrly > SEO Settings > Sitemap XML%s to setup the sitemap. Choose "
@@ -3282,17 +3312,17 @@ msgid ""
3282
  "strategy. Leave the defaults if you're uncertain."
3283
  msgstr ""
3284
 
3285
- #: models/CheckSeo.php:124
3286
  msgid ""
3287
  "Lead Search Engines to your most important pages using XML sitemaps. Do this "
3288
  "and you can rank better. "
3289
  msgstr ""
3290
 
3291
- #: models/CheckSeo.php:135
3292
  msgid "Get a robots txt file"
3293
  msgstr ""
3294
 
3295
- #: models/CheckSeo.php:136
3296
  msgid ""
3297
  "Robots.txt is a text file webmasters create to instruct how to crawl & index "
3298
  "pages on their website. You can use this file to tell search engine robots "
@@ -3301,7 +3331,7 @@ msgid ""
3301
  "important to have a robots.txt file in the first place."
3302
  msgstr ""
3303
 
3304
- #: models/CheckSeo.php:137
3305
  #, php-format
3306
  msgid ""
3307
  "Go to %sSquirrly > SEO Settings > Robots%s and switch on Activate Robots. If "
@@ -3309,17 +3339,19 @@ msgid ""
3309
  "adding the Robots.txt URL."
3310
  msgstr ""
3311
 
3312
- #: models/CheckSeo.php:138
3313
  msgid ""
3314
  "You should help Search Engine bots find what they need. Create a Robots.txt "
3315
  "file as soon as possible if you want your site to be seen in Search Results."
3316
  msgstr ""
3317
 
3318
- #: models/CheckSeo.php:150
 
 
3319
  msgid "Error detected for your Focus Page"
3320
- msgstr ""
3321
 
3322
- #: models/CheckSeo.php:151
3323
  #, php-format
3324
  msgid ""
3325
  "An error is preventing Squirrly from accessing and retrieving critical data "
@@ -3329,50 +3361,50 @@ msgid ""
3329
  "accessing your page, which is a critical issue. "
3330
  msgstr ""
3331
 
3332
- #: models/CheckSeo.php:152
3333
  msgid ""
3334
  "Use a different browser to make sure your Focus Page is visible. Whitelist "
3335
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
3336
  "page so that you’ll receive a full audit."
3337
  msgstr ""
3338
 
3339
- #: models/CheckSeo.php:153
3340
  msgid ""
3341
  "Make sure that your Focus Page is published and can be accessed by all users "
3342
  "and crawlers."
3343
  msgstr ""
3344
 
3345
- #: models/CheckSeo.php:164
3346
- msgid "Add Focus Page. Use it to Reach First Positions"
3347
  msgstr ""
3348
 
3349
- #: models/CheckSeo.php:165
3350
  msgid ""
3351
- "Adding a Focus Page, and then using the Daily SEO Goals related to it, is a "
3352
- "sure way for all aspiring SEO Stars to begin reaching top positions in "
3353
- "Google. SEO is very complicated, and Focus Pages is the only method that "
3354
- "helps you un-complicate it. By following this method you will build a "
3355
- "repeatable, smart strategy, powered by Machine Learning."
3356
  msgstr ""
3357
 
3358
- #: models/CheckSeo.php:166
3359
  #, php-format
3360
  msgid ""
3361
  "Go to %sSquirrly SEO > Focus Pages > Add New Page%s to add a page in Focus "
3362
  "Pages."
3363
  msgstr ""
3364
 
3365
- #: models/CheckSeo.php:167
3366
  msgid ""
3367
  "You don't currently have a clearly defined strategy. If you're a Non-SEO "
3368
  "Expert you won't be able to reach TOP 10 rankings without Focus Pages."
3369
  msgstr ""
3370
 
3371
- #: models/CheckSeo.php:178
3372
  msgid "Change WordPress' default tagline"
3373
  msgstr ""
3374
 
3375
- #: models/CheckSeo.php:179
3376
  msgid ""
3377
  "The default WordPress tagline is “Just another WordPress site” - which is "
3378
  "like saying your site is nothing special. It's important to customize it so "
@@ -3380,7 +3412,7 @@ msgid ""
3380
  "Search Engines also pay close attention to taglines."
3381
  msgstr ""
3382
 
3383
- #: models/CheckSeo.php:180
3384
  msgid ""
3385
  "How you optimize your tagline can depend on the theme you are using (some "
3386
  "themes don't display the tagline automatically). Your best bet is to go to "
@@ -3391,18 +3423,18 @@ msgid ""
3391
  "tagline, and ensure the tagline fits with your overall branding strategy."
3392
  msgstr ""
3393
 
3394
- #: models/CheckSeo.php:181
3395
  msgid ""
3396
  "Optimize your tagline so that your site is NOT 'Just another WordPress "
3397
  "site' (or: Optimize your tagline to put your site’s best foot forward and "
3398
  "encourage visitors to stick around.)"
3399
  msgstr ""
3400
 
3401
- #: models/CheckSeo.php:191
3402
  msgid "Remove all no-index tags from all Focus Pages"
3403
  msgstr ""
3404
 
3405
- #: models/CheckSeo.php:192
3406
  msgid ""
3407
  "No-index tags suggest to search engines (most notably Google) NOT to index a "
3408
  "specific webpage. By using these tags for your Focus Pages, you're "
@@ -3412,7 +3444,7 @@ msgid ""
3412
  "it."
3413
  msgstr ""
3414
 
3415
- #: models/CheckSeo.php:193
3416
  #, php-format
3417
  msgid ""
3418
  "Look at all the places where you could have added instructions for Google "
@@ -3422,24 +3454,26 @@ msgid ""
3422
  "don't block this page in your %sRobots.txt%s file."
3423
  msgstr ""
3424
 
3425
- #: models/CheckSeo.php:194
3426
  msgid ""
3427
  "You must remove all no-index tags for your Focus Pages so that they will "
3428
  "appear in Google Search."
3429
  msgstr ""
3430
 
3431
- #: models/CheckSeo.php:205
 
 
3432
  msgid "Fix all Visibility issues for your Focus Pages"
3433
- msgstr ""
3434
 
3435
- #: models/CheckSeo.php:206
3436
  msgid ""
3437
  "Having visibility issues for your Focus Pages means that your Focus Pages "
3438
  "may not appear in search results. This is bad, because you'll want as many "
3439
  "people to see your most important pages (your Focus Pages)"
3440
  msgstr ""
3441
 
3442
- #: models/CheckSeo.php:207
3443
  #, php-format
3444
  msgid ""
3445
  "Go to %sSquirrly > Focus Pages%s and make sure all elements you see when you "
@@ -3448,35 +3482,38 @@ msgid ""
3448
  "Pages are protected against Visibility Issues."
3449
  msgstr ""
3450
 
3451
- #: models/CheckSeo.php:208
3452
  msgid ""
3453
  "Fix ALL Visibility issues for your Focus Pages so that they will appear on "
3454
  "Google Search."
3455
  msgstr ""
3456
 
3457
- #: models/CheckSeo.php:219 models/CheckSeo.php:222
3458
  msgid "Make Your Site Safe for Browsing Again"
3459
  msgstr ""
3460
 
3461
- #: models/CheckSeo.php:220
3462
  msgid ""
3463
  "Safe Browsing notifies webmasters when their websites are compromised by "
3464
  "malicious actors and helps them diagnose and resolve the problem so that "
3465
  "their visitors stay safe."
3466
  msgstr ""
3467
 
3468
- #: models/CheckSeo.php:221
3469
  #, php-format
3470
  msgid ""
3471
  "Go to %shttps://safebrowsing.google.com/%s and follow the instructions to "
3472
  "clean your website."
3473
  msgstr ""
3474
 
3475
- #: models/CheckSeo.php:232
 
 
 
3476
  msgid "Remove Duplicate Open Graph meta tags"
3477
- msgstr ""
3478
 
3479
- #: models/CheckSeo.php:233
3480
  msgid ""
3481
  "Some WordPress themes and plugins add Open Graph meta tags which lead to "
3482
  "duplicate Open Graph meta tags issues. It's important to check for this to "
@@ -3485,27 +3522,27 @@ msgid ""
3485
  "bypass Squirrly's Duplicate Remover features."
3486
  msgstr ""
3487
 
3488
- #: models/CheckSeo.php:234
3489
  msgid ""
3490
  "Start deactivating plugins (other than Squirrly SEO) from your WordPress "
3491
- "site. Run New Scans for Daily SEO Goals to see if you managed to get this "
3492
  "done! Then reactivate everything."
3493
  msgstr ""
3494
 
3495
- #: models/CheckSeo.php:235
3496
  msgid ""
3497
  "You need to remove Duplicate Open Graph meta tags as soon as possible. "
3498
  "Otherwise, you will miss good chances of ranking higher with your pages."
3499
  msgstr ""
3500
 
3501
  # @ squirrly-seo
3502
- #: models/CheckSeo.php:246
3503
  #, fuzzy
3504
  #| msgid "Twitter"
3505
  msgid "Remove Duplicate Twitter cards tags"
3506
  msgstr "Twitter"
3507
 
3508
- #: models/CheckSeo.php:247
3509
  msgid ""
3510
  "Some WordPress themes and plugins add Twitter Card meta tags which lead to "
3511
  "duplicate Twitter card meta tags issues. It's important to check for tp "
@@ -3514,31 +3551,31 @@ msgid ""
3514
  "bypass Squirrly's Duplicate Remover features."
3515
  msgstr ""
3516
 
3517
- #: models/CheckSeo.php:248
3518
  msgid ""
3519
  "Start deactivating plugins (other than Squirrly SEO) from your WordPress "
3520
- "site. Run New Scans for Daily SEO Goals to see if you manage to get this "
3521
  "done! Then reactivate everything."
3522
  msgstr ""
3523
 
3524
- #: models/CheckSeo.php:249
3525
  msgid ""
3526
  "You need to remove Duplicate Twitter Card meta tags as soon as possible; "
3527
  "Otherwise you will miss good chances of ranking higher with your pages."
3528
  msgstr ""
3529
 
3530
- #: models/CheckSeo.php:260
3531
  msgid "Use Squirrly's Expert-Grade Research Tool and Add Keywords to Briefcase"
3532
  msgstr ""
3533
 
3534
- #: models/CheckSeo.php:261
3535
  msgid ""
3536
  "With a few clicks, you'll do the work that SEO experts charge thousands of "
3537
  "dollars for (because they do this manually and it takes too much time that "
3538
  "way)."
3539
  msgstr ""
3540
 
3541
- #: models/CheckSeo.php:262
3542
  #, php-format
3543
  msgid ""
3544
  "Go to %sSquirrly > Keyword Research%s. Complete all steps until you get to "
@@ -3546,19 +3583,19 @@ msgid ""
3546
  "keyword to Briefcase from that interface."
3547
  msgstr ""
3548
 
3549
- #: models/CheckSeo.php:263
3550
  msgid ""
3551
  "You should perform a keyword research using Squirrly's Expert-Grade tool and "
3552
  "store at least one of the results in Briefcase."
3553
  msgstr ""
3554
 
3555
- #: models/CheckSeo.php:274
3556
  msgid ""
3557
  "Optimize your Focus Page with the great keyword you found during Keyword "
3558
  "research"
3559
  msgstr ""
3560
 
3561
- #: models/CheckSeo.php:275
3562
  msgid ""
3563
  "So far, only experts knew how to improve search relevance, which is one of "
3564
  "the biggest reasons why Google will choose your page to show up first. "
@@ -3567,7 +3604,7 @@ msgid ""
3567
  "briefcase."
3568
  msgstr ""
3569
 
3570
- #: models/CheckSeo.php:276
3571
  #, php-format
3572
  msgid ""
3573
  "Optimize up to 30% for a keyword you already stored to briefcase. Using the "
@@ -3575,18 +3612,18 @@ msgid ""
3575
  "page with Google Search Console when you are done."
3576
  msgstr ""
3577
 
3578
- #: models/CheckSeo.php:277
3579
  msgid ""
3580
  "You must optimize all Focus Pages using a main keyword. This will improve "
3581
  "search relevance and you'll improve your site with something that only "
3582
  "experts were able to do before Squirrly."
3583
  msgstr ""
3584
 
3585
- #: models/CheckSeo.php:288
3586
  msgid "Optimize your text to get a good Search Relevancy score"
3587
  msgstr ""
3588
 
3589
- #: models/CheckSeo.php:289
3590
  msgid ""
3591
  "There is no point in ranking your content for a query that doesn’t match "
3592
  "what the user is looking for. Keywords help visitors find what they want, "
@@ -3597,7 +3634,7 @@ msgid ""
3597
  "can compete with other sites within your industry."
3598
  msgstr ""
3599
 
3600
- #: models/CheckSeo.php:290
3601
  #, php-format
3602
  msgid ""
3603
  "To get this done, the text itself (the written words of the page) needs to "
@@ -3605,17 +3642,17 @@ msgid ""
3605
  "using the %sSEO Live Assistant%s"
3606
  msgstr ""
3607
 
3608
- #: models/CheckSeo.php:291
3609
  msgid ""
3610
  "Ensure your Focus Page has Search relevancy by optimizing it using a "
3611
  "keyword. Otherwise, that Focus Page will not be displayed in Search Results."
3612
  msgstr ""
3613
 
3614
- #: models/CheckSeo.php:302
3615
  msgid "Research your Focus Page's keyword"
3616
  msgstr ""
3617
 
3618
- #: models/CheckSeo.php:303
3619
  msgid ""
3620
  "For at least one of your Focus Pages, I see that you optimized for search "
3621
  "relevance using the SEO Live Assistant. However, you need to be able to read "
@@ -3624,26 +3661,26 @@ msgid ""
3624
  "or can't bring traffic. Your SEO Star skills depend on this goal."
3625
  msgstr ""
3626
 
3627
- #: models/CheckSeo.php:304
3628
  msgid ""
3629
  "See the keyword. Place it in the research feature and perform a full keyword "
3630
  "research on it. Then add it to briefcase."
3631
  msgstr ""
3632
 
3633
- #: models/CheckSeo.php:305
3634
  msgid ""
3635
  "You must obtain keyword data for all main keywords used for your Focus "
3636
  "Pages. This will improve your skills and your understanding."
3637
  msgstr ""
3638
 
3639
  # @ squirrly-seo
3640
- #: models/CheckSeo.php:316
3641
  #, fuzzy
3642
  #| msgid "Keyword:"
3643
  msgid "Choose less competitive keywords"
3644
  msgstr "Schlüsselwort:"
3645
 
3646
- #: models/CheckSeo.php:317
3647
  msgid ""
3648
  "As a future SEO Star you need to understand that you will never be able to "
3649
  "rank for any keyword you think about. Not even huge sites who have spent a "
@@ -3653,26 +3690,26 @@ msgid ""
3653
  "expert."
3654
  msgstr ""
3655
 
3656
- #: models/CheckSeo.php:318
3657
  msgid ""
3658
  "Go and edit the page using the SEO Live Assistant. Select a different "
3659
  "keyword as the main keyword. Make sure it has a Green light at 'competition'."
3660
  msgstr ""
3661
 
3662
- #: models/CheckSeo.php:319
3663
  msgid ""
3664
  "Replace the main keyword you chose for your Focus Page to get top rankings. "
3665
  "Your page can't compete and reach the top 10 positions in Google for the "
3666
  "current keyword. "
3667
  msgstr ""
3668
 
3669
- #: models/CheckSeo.php:329
3670
  #, php-format
3671
  msgid ""
3672
  "Try to boost traffic by over +285% by optimizing with SEO Live Assistant"
3673
  msgstr ""
3674
 
3675
- #: models/CheckSeo.php:330
3676
  msgid ""
3677
  "Our data shows that users who optimize their content over 60% using the Live "
3678
  "Assistant get up to +285% increase in traffic compared to those who optimize "
@@ -3680,26 +3717,26 @@ msgid ""
3680
  "your content as much as you can."
3681
  msgstr ""
3682
 
3683
- #: models/CheckSeo.php:331
3684
  #, php-format
3685
  msgid ""
3686
  "Your text needs to be optimized to over 60% using the SEO Live Assistant. Re-"
3687
  "index your pages with Google Search Console after you finish optimizing."
3688
  msgstr ""
3689
 
3690
- #: models/CheckSeo.php:332
3691
  msgid ""
3692
  "Optimize Your Focus Pages over 60% to get up to 285% increase in traffic."
3693
  msgstr ""
3694
 
3695
  # @ squirrly-seo
3696
- #: models/CheckSeo.php:344
3697
  #, fuzzy
3698
  #| msgid "Google %sAnalytics ID%s`:"
3699
  msgid "Prepare Full Google Search Console Connection"
3700
  msgstr "Google %sAnalytics ID%s`:"
3701
 
3702
- #: models/CheckSeo.php:345
3703
  msgid ""
3704
  "Get access to data about impressions, clicks and CTR without leaving "
3705
  "WordPress by connecting Google Search Console to Squirrly. This is an API-"
@@ -3707,18 +3744,26 @@ msgid ""
3707
  "Enhance your Squirrly SEO with powerful data that comes directly from Google."
3708
  msgstr ""
3709
 
3710
- #: models/CheckSeo.php:347
 
 
 
 
 
 
 
 
3711
  msgid ""
3712
  "You must connect Google Search Console to your Squirrly SEO. As soon as "
3713
  "possible. It's quick to do and helps you see impressions, clicks, and CTR, "
3714
  "so you can become an SEO Star."
3715
  msgstr ""
3716
 
3717
- #: models/CheckSeo.php:357
3718
  msgid "Make a Manual Index Request for your Focus Pages With GSC"
3719
  msgstr ""
3720
 
3721
- #: models/CheckSeo.php:358
3722
  msgid ""
3723
  "Whenever you've added or made changes to a page on your site, you should ask "
3724
  "for Google to re-index your page. This will help getting the new content in "
@@ -3728,24 +3773,25 @@ msgid ""
3728
  "you."
3729
  msgstr ""
3730
 
3731
- #: models/CheckSeo.php:359
3732
  #, php-format
3733
  msgid ""
3734
  "Go to %sSquirrly > Focus Pages%s - identify the page that hasn't had a new "
3735
- "index request and use the button to go to GSC and request re-index."
 
3736
  msgstr ""
3737
 
3738
- #: models/CheckSeo.php:360
3739
  msgid ""
3740
  "Let Google know you've made changes to your Focus Pages. Otherwise, nothing "
3741
  "will change in search results. This is mandatory."
3742
  msgstr ""
3743
 
3744
- #: models/CheckSeo.php:371
3745
  msgid "Add your keywords to the Rankings section of Squirrly SEO"
3746
  msgstr ""
3747
 
3748
- #: models/CheckSeo.php:372
3749
  msgid ""
3750
  "SEO pros are always diligent about monitoring their rankings. If you want to "
3751
  "be an SEO star, you need to track your success and make data-driven "
@@ -3755,7 +3801,7 @@ msgid ""
3755
  "can ask us why on our Facebook Group."
3756
  msgstr ""
3757
 
3758
- #: models/CheckSeo.php:373
3759
  #, php-format
3760
  msgid ""
3761
  "Go to %sSquirrly > Research > Briefcase%s. Find your Focus Page's keyword "
@@ -3763,19 +3809,19 @@ msgid ""
3763
  "click on Send to Rank Checker."
3764
  msgstr ""
3765
 
3766
- #: models/CheckSeo.php:374
3767
  msgid ""
3768
  "See how your SEO efforts translate into results by adding your Focus Page's "
3769
  "keyword to the Rankings section."
3770
  msgstr ""
3771
 
3772
- #: models/CheckSeo.php:386
3773
  msgid ""
3774
  "Change the main keyword for a Focus Page that didn't reach TOP 20 rankings "
3775
  "during the last 2 months"
3776
  msgstr ""
3777
 
3778
- #: models/CheckSeo.php:387
3779
  msgid ""
3780
  "As a future SEO star, you need to be able to adapt and pivot. If you see "
3781
  "something is not working, change it. Adapt. The current keyword you have for "
@@ -3784,7 +3830,7 @@ msgid ""
3784
  "results by switching to a new keyword."
3785
  msgstr ""
3786
 
3787
- #: models/CheckSeo.php:388
3788
  #, php-format
3789
  msgid ""
3790
  "Go to %sSquirrly > Research%s and research new keyword ideas. Then get back "
@@ -3792,18 +3838,18 @@ msgid ""
3792
  "keyword."
3793
  msgstr ""
3794
 
3795
- #: models/CheckSeo.php:389
3796
  msgid ""
3797
  "Switch your target keyword to reach better results. Don't settle for the "
3798
  "second page of Google."
3799
  msgstr ""
3800
 
3801
- #: models/CheckSeo.php:400
3802
  msgid ""
3803
  "Get to 90% Optimization Levels for all Focus Pages (using SEO Live Assistant)"
3804
  msgstr ""
3805
 
3806
- #: models/CheckSeo.php:401
3807
  msgid ""
3808
  "Our data shows that users who achieve 90% Optimization Levels using the Live "
3809
  "Assistant have a much better chance of achieving top Google Rankings for "
@@ -3812,7 +3858,7 @@ msgid ""
3812
  "will be."
3813
  msgstr ""
3814
 
3815
- #: models/CheckSeo.php:402
3816
  #, php-format
3817
  msgid ""
3818
  "Go and edit your Focus Pages using the SEO live Assistant. Follow the "
@@ -3820,17 +3866,17 @@ msgid ""
3820
  "Google Search Console when you are done."
3821
  msgstr ""
3822
 
3823
- #: models/CheckSeo.php:403
3824
  msgid ""
3825
  "You must Optimize to 90% to give your Focus Pages the best chances of "
3826
  "achieving top Google Rankings."
3827
  msgstr ""
3828
 
3829
- #: models/CheckSeo.php:414
3830
  msgid "Stop losing SEO Authority"
3831
  msgstr ""
3832
 
3833
- #: models/CheckSeo.php:415
3834
  msgid ""
3835
  "You need to place rel='nofollow' to all Outbound links. Outbound links are "
3836
  "URLs from 3rd party sites to which you are linking to. If you send links to "
@@ -3842,24 +3888,24 @@ msgid ""
3842
  "[link]https://squirrly.co/seo/kit[/link]"
3843
  msgstr ""
3844
 
3845
- #: models/CheckSeo.php:416
3846
  msgid ""
3847
  "Place rel='nofollow' on outbound links yourself, or use the plugin "
3848
  "recommended by Squirrly that does this for you."
3849
  msgstr ""
3850
 
3851
- #: models/CheckSeo.php:417
3852
  msgid "Fix your outbound links. Otherwise, you will lose SEO authority."
3853
  msgstr ""
3854
 
3855
  # @ squirrly-seo
3856
- #: models/CheckSeo.php:428
3857
  #, fuzzy
3858
  #| msgid "Google %sAnalytics ID%s`:"
3859
  msgid "Connect Google Analytics Data to Squirrly"
3860
  msgstr "Google %sAnalytics ID%s`:"
3861
 
3862
- #: models/CheckSeo.php:429
3863
  msgid ""
3864
  "As a future SEO star, you need to be able to make decisions based on what "
3865
  "the data tells you. By connecting Google Analytics to Squirrly, you can "
@@ -3871,17 +3917,25 @@ msgid ""
3871
  "[link]https://squirrly.co/seo/kit[/link]"
3872
  msgstr ""
3873
 
3874
- #: models/CheckSeo.php:431
 
 
 
 
 
 
 
 
3875
  msgid ""
3876
  "Connect Google Analytics to Squirrly so that you see how much traffic your "
3877
  "Focus Pages are getting."
3878
  msgstr ""
3879
 
3880
- #: models/CheckSeo.php:441
3881
  msgid "Reach Platform SEO green lights for all Focus Pages"
3882
  msgstr ""
3883
 
3884
- #: models/CheckSeo.php:442
3885
  msgid ""
3886
  "You will be missing out on many ranking opportunities if you do not go and "
3887
  "fix Platform SEO right now. If you do fix it, make sure you start requesting "
@@ -3890,7 +3944,7 @@ msgid ""
3890
  "WP. Reaching 'Platform SEO' Green lights is a very important objective."
3891
  msgstr ""
3892
 
3893
- #: models/CheckSeo.php:443
3894
  #, php-format
3895
  msgid ""
3896
  "Go to %sSquirrly > Focus Pages%s and look at the COLUMN with Platform SEO. "
@@ -3900,17 +3954,19 @@ msgid ""
3900
  "request a new Focus Pages audit for the page you fixed."
3901
  msgstr ""
3902
 
3903
- #: models/CheckSeo.php:444
3904
  msgid ""
3905
  "Reach Platform SEO green lights for all Focus Pages. Otherwise, you will "
3906
  "keep giving Google faulty data, which can result in low rankings."
3907
  msgstr ""
3908
 
3909
- #: models/CheckSeo.php:455
 
 
3910
  msgid "Add SEO Context Keywords to your Focus Pages"
3911
- msgstr ""
3912
 
3913
- #: models/CheckSeo.php:456
3914
  msgid ""
3915
  "Squirrly SEO's Live Assistant lets you optimize your pages for multiple "
3916
  "keywords that you've placed in Briefcase. By optimizing your Focus Page for "
@@ -3923,25 +3979,25 @@ msgid ""
3923
  "shows how to add SEO context to a page."
3924
  msgstr ""
3925
 
3926
- #: models/CheckSeo.php:457
3927
  msgid ""
3928
  "Optimize your Focus Page for a secondary keyword using the Live Assistant. "
3929
  "Optimize it to at least 30% and re-index the page with Google Search Console "
3930
  "when you're done."
3931
  msgstr ""
3932
 
3933
- #: models/CheckSeo.php:458
3934
  msgid ""
3935
  "Help Google understand the exact topic and context of your page so that it "
3936
  "will rank it higher."
3937
  msgstr ""
3938
 
3939
- #: models/CheckSeo.php:469
3940
  msgid ""
3941
  "Add all secondary Keywords you've used to the Rankings Section of Squirrly"
3942
  msgstr ""
3943
 
3944
- #: models/CheckSeo.php:470
3945
  msgid ""
3946
  "Most people expect only the main keyword to be ranked in TOP 10 in Google. "
3947
  "However, according to the secondary keywords you've used to build up SEO "
@@ -3949,24 +4005,26 @@ msgid ""
3949
  "also got great rankings on Google."
3950
  msgstr ""
3951
 
3952
- #: models/CheckSeo.php:471
3953
  msgid ""
3954
  "Add your secondary keywords (the secondary keywords you used for your Focus "
3955
  "Pages) inside the Rankings Section."
3956
  msgstr ""
3957
 
3958
- #: models/CheckSeo.php:472
3959
  msgid ""
3960
  "As an SEO Star who worked hard on the pages and managed to optimize for "
3961
  "secondary keywords, you need to check if you get more results than you "
3962
  "expected."
3963
  msgstr ""
3964
 
3965
- #: models/CheckSeo.php:483
 
 
3966
  msgid "Fix SEO Images for your Focus Pages"
3967
- msgstr ""
3968
 
3969
- #: models/CheckSeo.php:484
3970
  msgid ""
3971
  "When it comes to image SEO, it's important to use relevant keywords to help "
3972
  "your page rank on search engines. So, make sure that your filename for one "
@@ -3974,23 +4032,26 @@ msgid ""
3974
  "to fix, and you'll get to practice an optimization tip worthy of an SEO star."
3975
  msgstr ""
3976
 
3977
- #: models/CheckSeo.php:485
3978
  msgid ""
3979
  "Download a relevant image from your page. Change the filename. Then re-"
3980
  "upload with the SEO filename and add it your page's content again."
3981
  msgstr ""
3982
 
3983
- #: models/CheckSeo.php:486
3984
  msgid ""
3985
  "Improve your Focus Page's chances of ranking with this quick trick that SEO "
3986
  "professionals use."
3987
  msgstr ""
3988
 
3989
- #: models/CheckSeo.php:497
 
 
 
3990
  msgid "Add Labels to Keywords in Briefcase"
3991
- msgstr ""
3992
 
3993
- #: models/CheckSeo.php:498
3994
  msgid ""
3995
  "Users who use the Labels system in Briefcase have 60% more keywords ranked "
3996
  "in top 10 on Google than those who don't work with keywords in an organized "
@@ -4001,7 +4062,7 @@ msgid ""
4001
  "approach. It will help you with this."
4002
  msgstr ""
4003
 
4004
- #: models/CheckSeo.php:499
4005
  #, php-format
4006
  msgid ""
4007
  "Go to %sSquirrly SEO > Research > Briefcase%s, and add Labels to your "
@@ -4009,16 +4070,18 @@ msgid ""
4009
  "current campaigns and strategy. "
4010
  msgstr ""
4011
 
4012
- #: models/CheckSeo.php:500
4013
  msgid ""
4014
  "Improve your chances of getting more keywords ranked in top 10 of Google."
4015
  msgstr ""
4016
 
4017
- #: models/CheckSeo.php:511
 
 
4018
  msgid "Add more Ranking Power to your Focus Pages"
4019
- msgstr ""
4020
 
4021
- #: models/CheckSeo.php:512
4022
  msgid ""
4023
  "Links on the web are like votes, and the pages that receive more votes rank "
4024
  "higher. Since Focus Pages are the most important pages in your site, you "
@@ -4030,22 +4093,22 @@ msgid ""
4030
  "focus-pages-by-squirrly-success-with-focus-pages/[/link]"
4031
  msgstr ""
4032
 
4033
- #: models/CheckSeo.php:513
4034
  msgid ""
4035
  "Link to your Focus Page from another page in your site. If you don't have a "
4036
  "page where you can link from, spend some time creating one. Re-index with "
4037
  "Google Search Console. "
4038
  msgstr ""
4039
 
4040
- #: models/CheckSeo.php:514
4041
  msgid "Create 1 Inner Link to one of your Focus Pages"
4042
  msgstr ""
4043
 
4044
- #: models/CheckSeo.php:525
4045
  msgid "Start tracking rankings for 3 keywords"
4046
  msgstr ""
4047
 
4048
- #: models/CheckSeo.php:526
4049
  msgid ""
4050
  "Professional SEOs recognize the importance of tracking rankings as a way to "
4051
  "measure SEO success. As a future SEO star, it's important to measure the "
@@ -4053,7 +4116,7 @@ msgid ""
4053
  "strategy is not working."
4054
  msgstr ""
4055
 
4056
- #: models/CheckSeo.php:527
4057
  #, php-format
4058
  msgid ""
4059
  "Get in the habit of tracking your rankings by adding three keywords to "
@@ -4063,15 +4126,15 @@ msgid ""
4063
  "the process for two more keywords."
4064
  msgstr ""
4065
 
4066
- #: models/CheckSeo.php:528
4067
  msgid "Start tracking rankings for 3 keywords."
4068
  msgstr ""
4069
 
4070
- #: models/CheckSeo.php:539
4071
  msgid "Increase your SEO skill set by building your keyword portfolio"
4072
  msgstr ""
4073
 
4074
- #: models/CheckSeo.php:540
4075
  msgid ""
4076
  "Keyword research, both as a skill and as a practice, are critical to your "
4077
  "SEO success. You can't be an SEO master without it. Plus, according to new "
@@ -4084,7 +4147,7 @@ msgid ""
4084
  "section about Google and how much they care about keywords."
4085
  msgstr ""
4086
 
4087
- #: models/CheckSeo.php:541
4088
  #, php-format
4089
  msgid ""
4090
  "Go to %sSquirrly SEO > Research%s, and begin doing research based on the "
@@ -4094,17 +4157,17 @@ msgid ""
4094
  "Briefcase. Do this until you have at least 10 keywords inside Briefcase."
4095
  msgstr ""
4096
 
4097
- #: models/CheckSeo.php:542
4098
  msgid ""
4099
  "Create your keyword portfolio. Get at least 10 keywords inside the Briefcase "
4100
  "Section."
4101
  msgstr ""
4102
 
4103
- #: models/CheckSeo.php:553
4104
  msgid "Avoid losing positions in search results"
4105
  msgstr ""
4106
 
4107
- #: models/CheckSeo.php:554
4108
  msgid ""
4109
  "Make sure your Rankings won't drop because of duplicate content, duplicate "
4110
  "titles, empty titles, empty descriptions and more. SEO Experts and Non-SEO "
@@ -4113,22 +4176,22 @@ msgid ""
4113
  "section)"
4114
  msgstr ""
4115
 
4116
- #: models/CheckSeo.php:555
4117
  #, php-format
4118
  msgid ""
4119
  "Go to %sSquirrly > SEO Settings > Automation%s and make sure that SEO "
4120
  "Patterns are activated."
4121
  msgstr ""
4122
 
4123
- #: models/CheckSeo.php:556
4124
  msgid "Activate SEO Patterns, with Squirrly's site-wide SEO Automation."
4125
  msgstr ""
4126
 
4127
- #: models/CheckSeo.php:567
4128
  msgid "Update Your Focus Pages Content Regularly"
4129
  msgstr ""
4130
 
4131
- #: models/CheckSeo.php:568
4132
  msgid ""
4133
  "Google prefers to rank pages that have relevant, fresh content that is up-to-"
4134
  "date. Updating your content can also improve your click-through-rate, "
@@ -4137,22 +4200,24 @@ msgid ""
4137
  "resource, which will result in your page getting higher rankings."
4138
  msgstr ""
4139
 
4140
- #: models/CheckSeo.php:569
4141
  msgid ""
4142
  "The most recent update date for your Focus Page Content needs to be in the "
4143
  "last 3 months. If it's not, then go and edit your page. Re-index with Google "
4144
  "Search Console when you are done."
4145
  msgstr ""
4146
 
4147
- #: models/CheckSeo.php:570
4148
  msgid "Make Google love your Focus Pages by regularly updating content."
4149
  msgstr ""
4150
 
4151
- #: models/CheckSeo.php:581
 
 
4152
  msgid "Define Title and Description for your Focus Pages"
4153
- msgstr ""
4154
 
4155
- #: models/CheckSeo.php:582
4156
  #, php-format
4157
  msgid ""
4158
  "Titles and descriptions provide necessary information about the content of "
@@ -4163,25 +4228,25 @@ msgid ""
4163
  "your Focus Pages should have a defined title and meta description."
4164
  msgstr ""
4165
 
4166
- #: models/CheckSeo.php:583
4167
  msgid ""
4168
  "Easily define titles and meta descriptions using the Snippet editor from "
4169
  "Squirrly SEO."
4170
  msgstr ""
4171
 
4172
- #: models/CheckSeo.php:584
4173
  msgid ""
4174
  "Customize Title and Description for your Focus Pages to get more people to "
4175
  "click on your pages in SERPs."
4176
  msgstr ""
4177
 
4178
- #: models/CheckSeo.php:595
4179
  #, fuzzy
4180
  #| msgid "Optimize for Keyword"
4181
  msgid "Optimize Twitter Cards for your Focus Pages"
4182
  msgstr "Schlüsselwort optimieren"
4183
 
4184
- #: models/CheckSeo.php:596
4185
  msgid ""
4186
  "Twitter Cards are a great partner to your SEO strategy, as it helps you "
4187
  "stand out to Twitter users and thus increase engagement and CTR. Grab that "
@@ -4189,24 +4254,26 @@ msgid ""
4189
  "Focus Pages."
4190
  msgstr ""
4191
 
4192
- #: models/CheckSeo.php:597
4193
  msgid ""
4194
  "Use the Snippet editor from Squirrly SEO to get all the Twitter Card "
4195
  "definition elements in place."
4196
  msgstr ""
4197
 
4198
- #: models/CheckSeo.php:598
 
 
4199
  msgid ""
4200
  "Optimize Twitter Cards for your Focus Pages to boost engagement and traffic."
4201
- msgstr ""
4202
 
4203
- #: models/CheckSeo.php:609
4204
  #, fuzzy
4205
  #| msgid "Optimize for Keyword"
4206
  msgid "Optimize Open Graph for your Focus Pages"
4207
  msgstr "Schlüsselwort optimieren"
4208
 
4209
- #: models/CheckSeo.php:610
4210
  msgid ""
4211
  "Open Graph lets you control what content is displayed when your pages are "
4212
  "linked on social media, thus influencing your link's performance. If you "
@@ -4216,25 +4283,25 @@ msgid ""
4216
  "your keywords inside the OG definitions has been proven to also boost SEO."
4217
  msgstr ""
4218
 
4219
- #: models/CheckSeo.php:611
4220
  msgid ""
4221
  "Use the Snippet editor from Squirrly SEO to get all the Open Graph "
4222
  "definition elements in place for your Focus Pages."
4223
  msgstr ""
4224
 
4225
- #: models/CheckSeo.php:612
4226
  msgid ""
4227
  "Optimize Open Graph. Unless you do so, you're leaving how your Focus Pages "
4228
  "are shown on Facebook up to chance. (it's also bad for SEO)"
4229
  msgstr ""
4230
 
4231
- #: models/CheckSeo.php:623
4232
  #, fuzzy
4233
  #| msgid "Optimize for Keyword"
4234
  msgid "Optimize Rich Snippets for your Focus Pages"
4235
  msgstr "Schlüsselwort optimieren"
4236
 
4237
- #: models/CheckSeo.php:624
4238
  msgid ""
4239
  "JSON-LD, Rich Snippets, Schema implementation: this thing goes by many "
4240
  "different names, because nothing has been standardized. However, as an SEO "
@@ -4248,19 +4315,19 @@ msgid ""
4248
  "SEO Settings > JSON-LD."
4249
  msgstr ""
4250
 
4251
- #: models/CheckSeo.php:625
4252
  msgid "Use the Snippet Editor from Squirrly SEO to get this done."
4253
  msgstr ""
4254
 
4255
- #: models/CheckSeo.php:626
4256
  msgid "You need to have good definitions for JSON-LD."
4257
  msgstr ""
4258
 
4259
- #: models/CheckSeo.php:637
4260
  msgid "Make your Focus Pages at least 1,500 words long"
4261
  msgstr ""
4262
 
4263
- #: models/CheckSeo.php:638
4264
  msgid ""
4265
  "Research shows that the average Google first page result contains 1,890 "
4266
  "words. Plus, long-form content gets an average of 77.2% more links than "
@@ -4273,7 +4340,7 @@ msgid ""
4273
  "can score you easy wins."
4274
  msgstr ""
4275
 
4276
- #: models/CheckSeo.php:639
4277
  msgid ""
4278
  "Edit the content on your Focus Pages to make it over 1,500 words long. Some "
4279
  "tips you can use here: [link]https://howto.squirrly.co/wordpress-seo/journey-"
@@ -4281,17 +4348,17 @@ msgid ""
4281
  "you're done."
4282
  msgstr ""
4283
 
4284
- #: models/CheckSeo.php:640
4285
  msgid ""
4286
  "Make Google want to rank your Focus Pages on the 1st Page by making them at "
4287
  "least 1,500 words long."
4288
  msgstr ""
4289
 
4290
- #: models/CheckSeo.php:651
4291
  msgid "Reach Perfect SEO Content optimizations for all Focus Pages"
4292
  msgstr ""
4293
 
4294
- #: models/CheckSeo.php:652
4295
  msgid ""
4296
  "Expert SEOs don't settle for reaching 30%, 50% or 60% optimization level "
4297
  "when trying to get a page on the 1st page of Google. As a future SEO star, "
@@ -4299,7 +4366,7 @@ msgid ""
4299
  "gives you the best chances of rankings."
4300
  msgstr ""
4301
 
4302
- #: models/CheckSeo.php:653
4303
  #, php-format
4304
  msgid ""
4305
  "Go to %sSquirrly > Focus Pages%s and look at the SEO Content column. Click "
@@ -4309,17 +4376,17 @@ msgid ""
4309
  "from the sidebar)."
4310
  msgstr ""
4311
 
4312
- #: models/CheckSeo.php:654
4313
  msgid ""
4314
  "Reach Perfect SEO optimization level for your Focus Pages to master content "
4315
  "optimization."
4316
  msgstr ""
4317
 
4318
- #: models/CheckSeo.php:665
4319
  msgid "Turn all marketing settings to GREEN"
4320
  msgstr ""
4321
 
4322
- #: models/CheckSeo.php:666
4323
  msgid ""
4324
  "If you want to unleash the full marketing power of your WordPress site, then "
4325
  "you need to activate all the important marketing settings there are. This is "
@@ -4327,7 +4394,7 @@ msgid ""
4327
  "opportunities."
4328
  msgstr ""
4329
 
4330
- #: models/CheckSeo.php:667
4331
  msgid ""
4332
  "Go to the SEO Settings section of Squirrly SEO. Click on the METAs section. "
4333
  "You'll see tasks appearing at the right of the screen. Look to the right of "
@@ -4336,41 +4403,46 @@ msgid ""
4336
  "turn it Green."
4337
  msgstr ""
4338
 
4339
- #: models/CheckSeo.php:668
4340
  msgid ""
4341
  "Turn all sidebar (right sidebar) lights to GREEN for all SEO Settings "
4342
  "Sections."
4343
  msgstr ""
4344
 
4345
- #: models/CheckSeo.php:679
 
 
 
4346
  msgid "Raise Audit Score to Over 30%"
4347
- msgstr ""
4348
 
4349
- #: models/CheckSeo.php:680
4350
  msgid ""
4351
  "Sites with Audit scores under 30% will have a very hard time ranking for "
4352
  "anything. Scores under 30 means the site doesn't have enough quality to be "
4353
  "deemed worthy of being found on the first page of Google."
4354
  msgstr ""
4355
 
4356
- #: models/CheckSeo.php:681
4357
  #, php-format
4358
  msgid ""
4359
  "Go to %sSquirrly > Audits%s section and read all the Audit tasks where you "
4360
  "currently have problems. It tells you how to fix those problems."
4361
  msgstr ""
4362
 
4363
- #: models/CheckSeo.php:682
4364
  msgid ""
4365
  "You need to get an Audit Score of over 30% as soon as possible, if you want "
4366
  "to avoid Google penalties."
4367
  msgstr ""
4368
 
4369
- #: models/CheckSeo.php:692
 
 
4370
  msgid "Reach 3 Inner Links for all your Focus Pages"
4371
- msgstr ""
4372
 
4373
- #: models/CheckSeo.php:693 models/CheckSeo.php:881
4374
  msgid ""
4375
  "Studies show that a strong internal linking structure yields higher rankings "
4376
  "and is an extremely effective SEO tactic. Wikipedia and StackOverflow are "
@@ -4387,7 +4459,7 @@ msgid ""
4387
  "managed to get its most important ranking increases from great inner links."
4388
  msgstr ""
4389
 
4390
- #: models/CheckSeo.php:694
4391
  msgid ""
4392
  "Get at least three inner links to your Focus Pages from other pages in your "
4393
  "site. If you don't have enough pages where you can link from, spend some "
@@ -4395,15 +4467,17 @@ msgid ""
4395
  "page from which you sent the links)"
4396
  msgstr ""
4397
 
4398
- #: models/CheckSeo.php:695 models/CheckSeo.php:883
 
 
4399
  msgid "Add more ranking power to your Focus Pages."
4400
- msgstr ""
4401
 
4402
- #: models/CheckSeo.php:706
4403
  msgid "Get Minimum 10 Visitors / Day to Your Focus Pages"
4404
  msgstr ""
4405
 
4406
- #: models/CheckSeo.php:707 models/CheckSeo.php:959 models/CheckSeo.php:1011
4407
  msgid ""
4408
  "You need to make sure that your Focus Pages become more popular and take "
4409
  "action so that more people start seeing it. Google measures many aspects. If "
@@ -4411,7 +4485,7 @@ msgid ""
4411
  "if your page is actually any good."
4412
  msgstr ""
4413
 
4414
- #: models/CheckSeo.php:708 models/CheckSeo.php:960 models/CheckSeo.php:1012
4415
  msgid ""
4416
  "Start promoting your Focus Pages on your social media channels, send it to "
4417
  "your email subscribers, answer relevant questions on Quora and include a "
@@ -4420,101 +4494,101 @@ msgid ""
4420
  "seo/kit[/link]"
4421
  msgstr ""
4422
 
4423
- #: models/CheckSeo.php:709 models/CheckSeo.php:961 models/CheckSeo.php:1013
4424
  msgid ""
4425
  "Improve visibility for your Focus Pages. Bring in more traffic. Otherwise, "
4426
  "it will be hard to keep ranking higher."
4427
  msgstr ""
4428
 
4429
  # @ squirrly-seo
4430
- #: models/CheckSeo.php:719
4431
  #, fuzzy
4432
  #| msgid "Description:"
4433
  msgid "No Duplicate Titles"
4434
  msgstr "Beschreibung:"
4435
 
4436
- #: models/CheckSeo.php:720
4437
  msgid ""
4438
  "Currently, the theme or a 3rd party plugin inside your WordPress site "
4439
  "manages to bypass Squirrly's duplicate remover feature. It keeps duplicating "
4440
  "the title tag inside the source code. You need to start deactivating all "
4441
  "plugins, except Squirrly SEO, until you find the one causing this problem. "
4442
- "You can use the run new scan button here in Daily SEO Goals to see if the "
4443
  "problem persists."
4444
  msgstr ""
4445
 
4446
- #: models/CheckSeo.php:721
4447
  msgid ""
4448
  "Track down the plugin or theme setting which causes the duplication. Make it "
4449
  "unable to place title tags."
4450
  msgstr ""
4451
 
4452
- #: models/CheckSeo.php:722
4453
  msgid "Make sure you don't have any more duplicate titles in your pages."
4454
  msgstr ""
4455
 
4456
  # @ squirrly-seo
4457
- #: models/CheckSeo.php:733
4458
  #, fuzzy
4459
  #| msgid "Description:"
4460
  msgid "No Duplicate Descriptions"
4461
  msgstr "Beschreibung:"
4462
 
4463
- #: models/CheckSeo.php:734
4464
  msgid ""
4465
  "Currently, the theme or a 3rd party plugin inside your WordPress site "
4466
  "manages to bypass Squirrly's duplicate remover feature. It keeps duplicating "
4467
  "the meta description tag inside the source code. You need to start "
4468
  "deactivating all plugins, except Squirrly SEO, until you find the one "
4469
- "causing this problem. You can use the run new scan button here in Daily SEO "
4470
  "Goals to see if the problem persists."
4471
  msgstr ""
4472
 
4473
- #: models/CheckSeo.php:735
4474
  msgid ""
4475
  "Track down the plugin or theme setting which causes the duplication. Make it "
4476
  "unable to place meta description tags."
4477
  msgstr ""
4478
 
4479
- #: models/CheckSeo.php:736
4480
  msgid "Make sure you don't have any more duplicate descriptions in your pages."
4481
  msgstr ""
4482
 
4483
  # @ squirrly-seo
4484
- #: models/CheckSeo.php:747
4485
  #, fuzzy
4486
  #| msgid "Description:"
4487
  msgid "No Empty Titles"
4488
  msgstr "Beschreibung:"
4489
 
4490
- #: models/CheckSeo.php:748
4491
  msgid ""
4492
  "Google doesn't want to place sites with coding problems up in the first "
4493
  "positions. Sure, the search engine is smart enough to generate the title on "
4494
  "its own, based on the content inside the URL, but it's still a bad practice."
4495
  msgstr ""
4496
 
4497
- #: models/CheckSeo.php:749 models/CheckSeo.php:763
4498
  #, php-format
4499
  msgid ""
4500
  "Fix this using Squirrly SEO. Find more help in the %sSquirrly > SEO Settings"
4501
  "%s section."
4502
  msgstr ""
4503
 
4504
- #: models/CheckSeo.php:750 models/CheckSeo.php:764
4505
  msgid ""
4506
  "Make sure you avoid having pages with Empty Titles and Empty Descriptions. "
4507
  "Otherwise, your rankings will suffer."
4508
  msgstr ""
4509
 
4510
  # @ squirrly-seo
4511
- #: models/CheckSeo.php:761
4512
  #, fuzzy
4513
  #| msgid "Description:"
4514
  msgid "No Empty Descriptions"
4515
  msgstr "Beschreibung:"
4516
 
4517
- #: models/CheckSeo.php:762
4518
  msgid ""
4519
  "Google doesn't want to place sites with coding problems up in the first "
4520
  "positions. Sure, the search engine is smart enough to generate the "
@@ -4522,11 +4596,11 @@ msgid ""
4522
  "a bad practice."
4523
  msgstr ""
4524
 
4525
- #: models/CheckSeo.php:775
4526
  msgid "Fix Duplicate Content Issues on your site (across multiple pages)"
4527
  msgstr ""
4528
 
4529
- #: models/CheckSeo.php:776
4530
  msgid ""
4531
  "Having duplicate content in your site will negatively impact your Search "
4532
  "Engine Rankings and traffic. Therefore, you need to make sure you don't have "
@@ -4536,23 +4610,26 @@ msgid ""
4536
  "types of duplicate content."
4537
  msgstr ""
4538
 
4539
- #: models/CheckSeo.php:777
4540
  msgid ""
4541
  "Check your most recent Squirrly Audit to see which of your pages have "
4542
  "duplicate content."
4543
  msgstr ""
4544
 
4545
- #: models/CheckSeo.php:778
4546
  msgid ""
4547
  "Fix Duplicate Content. You're at risk of suffering rankings and traffic "
4548
  "losses due to duplicate content on your site."
4549
  msgstr ""
4550
 
4551
- #: models/CheckSeo.php:789
 
 
 
4552
  msgid "Improve SEO Speed"
4553
- msgstr ""
4554
 
4555
- #: models/CheckSeo.php:790
4556
  msgid ""
4557
  "Pages that rank at the top of Google’s first page tend to load significantly "
4558
  "faster compared to pages that rank on the bottom of page 1. If you want to "
@@ -4561,21 +4638,23 @@ msgid ""
4561
  "they offer for free to Squirrly users."
4562
  msgstr ""
4563
 
4564
- #: models/CheckSeo.php:791
4565
  msgid ""
4566
  "Using a tool like ShortPixel to reduce your image sizes will help improve "
4567
  "SEO speed."
4568
  msgstr ""
4569
 
4570
- #: models/CheckSeo.php:792
4571
  msgid "Make sure your Focus Pages load fast to improve your rankings."
4572
  msgstr ""
4573
 
4574
- #: models/CheckSeo.php:802
 
 
4575
  msgid "Reduce Bounce Rate for your Focus Pages"
4576
- msgstr ""
4577
 
4578
- #: models/CheckSeo.php:803
4579
  msgid ""
4580
  "A high bounce rate generally indicates that your pages aren't relevant to "
4581
  "your visitors. And since Google is all about serving its users results that "
@@ -4587,7 +4666,7 @@ msgid ""
4587
  "visitors coming don’t have a good user experience."
4588
  msgstr ""
4589
 
4590
- #: models/CheckSeo.php:804
4591
  msgid ""
4592
  "Try reducing your bounce rate by: formatting your content better to improve "
4593
  "readability, including a video, removing pop-ups that disrupt visitors' "
@@ -4596,15 +4675,15 @@ msgid ""
4596
  "[/link]"
4597
  msgstr ""
4598
 
4599
- #: models/CheckSeo.php:805
4600
  msgid "Reduce bounce rate for your Focus Pages to improve search performance."
4601
  msgstr ""
4602
 
4603
- #: models/CheckSeo.php:815
4604
  msgid "Time on Page for All Focus Pages: 1 minute average"
4605
  msgstr ""
4606
 
4607
- #: models/CheckSeo.php:816
4608
  msgid ""
4609
  "If your pages consistently keep people on them for longer than average, the "
4610
  "Google algorithm will adjust the search results to favor your site, because "
@@ -4616,7 +4695,7 @@ msgid ""
4616
  "enough time on the page."
4617
  msgstr ""
4618
 
4619
- #: models/CheckSeo.php:817
4620
  msgid ""
4621
  "Try these tactics to keep visitors on your page for longer: Embed a video or "
4622
  "two, add more visuals to make your page more attractive, format your content "
@@ -4625,15 +4704,15 @@ msgid ""
4625
  "such as polls or quizzes."
4626
  msgstr ""
4627
 
4628
- #: models/CheckSeo.php:818
4629
  msgid "Keep visitors on your Focus Pages for longer to boost rankings"
4630
  msgstr ""
4631
 
4632
- #: models/CheckSeo.php:828
4633
  msgid "Reach 20 Social Media Shares for Each of Your Focus Pages"
4634
  msgstr ""
4635
 
4636
- #: models/CheckSeo.php:829
4637
  msgid ""
4638
  "Studies have shown there is a high correlation between social signals and "
4639
  "ranking position. In one case study, a company achieved over 130,000 "
@@ -4645,7 +4724,7 @@ msgid ""
4645
  "you can for your Focus Pages from trackable sources."
4646
  msgstr ""
4647
 
4648
- #: models/CheckSeo.php:830
4649
  msgid ""
4650
  "Try these tactics to reach at least 20 social media shares for each one of "
4651
  "your Focus Pages: Share your content multiple times using different captions "
@@ -4656,17 +4735,17 @@ msgid ""
4656
  "10,000 Visits from Social Media course on Education Cloud."
4657
  msgstr ""
4658
 
4659
- #: models/CheckSeo.php:831
4660
  msgid ""
4661
  "Get at least 20 social media shares for each one of your Focus Pages. It's "
4662
  "hard to rank a page that doesn't get shared to social media sites."
4663
  msgstr ""
4664
 
4665
- #: models/CheckSeo.php:841
4666
  msgid "Raise Authority Level Over 12 for all Focus Pages"
4667
  msgstr ""
4668
 
4669
- #: models/CheckSeo.php:842 models/CheckSeo.php:933
4670
  msgid ""
4671
  "Page authority is a metric that Squirrly's servers calculates according to "
4672
  "data from different API, our own crawling and also SML (Squirrly Machine "
@@ -4678,17 +4757,17 @@ msgid ""
4678
  "your own site) and social media information."
4679
  msgstr ""
4680
 
4681
- #: models/CheckSeo.php:844
4682
  msgid ""
4683
  "Raise your Page Authority to over 12 for all Focus Pages. Otherwise, it will "
4684
  "be nearly impossible for those pages to reach top positions on Google."
4685
  msgstr ""
4686
 
4687
- #: models/CheckSeo.php:854
4688
  msgid "Try a different Title and Description for the Focus Pages with low CTR"
4689
  msgstr ""
4690
 
4691
- #: models/CheckSeo.php:855
4692
  msgid ""
4693
  "Google keeps track of which links get clicked the most in their search "
4694
  "results. Links that get clicked more often are moved up higher in the search "
@@ -4698,7 +4777,7 @@ msgid ""
4698
  "change that; and get more people clicking."
4699
  msgstr ""
4700
 
4701
- #: models/CheckSeo.php:856
4702
  msgid ""
4703
  "Tips to improve your CTR: include your keyword in your description, use How-"
4704
  "To and numbers in your titles as many people are drawn to them, make sure "
@@ -4706,20 +4785,20 @@ msgid ""
4706
  "gives people an extra incentive to click on your link."
4707
  msgstr ""
4708
 
4709
- #: models/CheckSeo.php:857
4710
  msgid ""
4711
  "Change the title and description to get more SERP clicks for your Focus "
4712
  "Pages (the ones where you see low CTR)"
4713
  msgstr ""
4714
 
4715
  # @ squirrly-seo
4716
- #: models/CheckSeo.php:867
4717
  #, fuzzy
4718
  #| msgid "Squirrly settings"
4719
  msgid "Audit Score is Over 50%"
4720
  msgstr "Squirrly Einstellungen"
4721
 
4722
- #: models/CheckSeo.php:868
4723
  msgid ""
4724
  "The Squirrly Audit covers the main aspects that influence a site's "
4725
  "performance. Plus, your SEO and digital marketing expertise will increase as "
@@ -4727,7 +4806,7 @@ msgid ""
4727
  "score over 50 to have good chances of ranking high on Google."
4728
  msgstr ""
4729
 
4730
- #: models/CheckSeo.php:869
4731
  #, php-format
4732
  msgid ""
4733
  "Open up your Audit from %sSquirrly > Audits%s. Open one of the audits, or "
@@ -4736,17 +4815,19 @@ msgid ""
4736
  "score (find them on the right sidebar)."
4737
  msgstr ""
4738
 
4739
- #: models/CheckSeo.php:870 models/CheckSeo.php:948
4740
  msgid ""
4741
  "Improve the score of your Audit to have a good chance of ranking high on "
4742
  "Google."
4743
  msgstr ""
4744
 
4745
- #: models/CheckSeo.php:880
 
 
4746
  msgid "Reach 5 Inner Links for all your Focus Pages"
4747
- msgstr ""
4748
 
4749
- #: models/CheckSeo.php:882
4750
  msgid ""
4751
  "Get at least five inner links to your Focus Pages from other pages in your "
4752
  "site. If you don't have enough pages where you can link from, spend some "
@@ -4754,11 +4835,11 @@ msgid ""
4754
  "page from which you sent the links)"
4755
  msgstr ""
4756
 
4757
- #: models/CheckSeo.php:893
4758
  msgid "Time on Page for All Focus Pages: 1.5 minute average"
4759
  msgstr ""
4760
 
4761
- #: models/CheckSeo.php:894
4762
  msgid ""
4763
  "If your pages consistently keep people on them for longer than average, the "
4764
  "Google algorithm will adjust the search results to favor your site, because "
@@ -4776,7 +4857,7 @@ msgid ""
4776
  "improve the accuracy of the Time on Page readings."
4777
  msgstr ""
4778
 
4779
- #: models/CheckSeo.php:895
4780
  msgid ""
4781
  "Try these tactics to keep visitors on your page for longer: Embed a video or "
4782
  "two, add more visuals to make your page more attractive, format your content "
@@ -4784,15 +4865,15 @@ msgid ""
4784
  "what visitors expect to get from it."
4785
  msgstr ""
4786
 
4787
- #: models/CheckSeo.php:896
4788
  msgid "Keep visitors on your Focus Pages for longer to boost rankings."
4789
  msgstr ""
4790
 
4791
- #: models/CheckSeo.php:906
4792
  msgid "Get At Least 10 referring domains"
4793
  msgstr ""
4794
 
4795
- #: models/CheckSeo.php:907 models/CheckSeo.php:998
4796
  msgid ""
4797
  "If you want more organic traffic, backlinks and referring domains are "
4798
  "critical. Research has shown that the vast majority of pages (of analyzed ~ "
@@ -4801,7 +4882,7 @@ msgid ""
4801
  "domains and the amount of search traffic the target web page receives."
4802
  msgstr ""
4803
 
4804
- #: models/CheckSeo.php:908
4805
  msgid ""
4806
  "Find more websites that can send links to your own site. You need to get "
4807
  "links to our site from at least 10 other domains from the web. You can run "
@@ -4809,15 +4890,15 @@ msgid ""
4809
  "kind of website."
4810
  msgstr ""
4811
 
4812
- #: models/CheckSeo.php:909
4813
  msgid "Get at least 10 referring domains to get more traffic."
4814
  msgstr ""
4815
 
4816
- #: models/CheckSeo.php:919
4817
  msgid "Reach 40 Social Media Shares for Each of Your Focus Pages"
4818
  msgstr ""
4819
 
4820
- #: models/CheckSeo.php:920
4821
  msgid ""
4822
  "Try these tactics to reach at least 40 social media shares for each one of "
4823
  "your Focus Pages: Share your content multiple times using different captions "
@@ -4828,7 +4909,7 @@ msgid ""
4828
  "from Social Media course on Education Cloud."
4829
  msgstr ""
4830
 
4831
- #: models/CheckSeo.php:921
4832
  msgid ""
4833
  "Studies have shown there is a high correlation between social signals and "
4834
  "ranking position. In one case study, a company achieved over 130,000 "
@@ -4840,30 +4921,30 @@ msgid ""
4840
  "media shares as you can for your Focus Pages from trackable sources."
4841
  msgstr ""
4842
 
4843
- #: models/CheckSeo.php:922
4844
  msgid ""
4845
  "Get at least 40 social media shares for each one of your Focus Pages. It's "
4846
  "hard to rank a page that doesn't get shared to social media sites."
4847
  msgstr ""
4848
 
4849
- #: models/CheckSeo.php:932
4850
  msgid "Raise Authority Level to Over 20 for all Focus Pages"
4851
  msgstr ""
4852
 
4853
- #: models/CheckSeo.php:935
4854
  msgid ""
4855
  "Raise your Page Authority to over 20 for all Focus Pages. Otherwise, it will "
4856
  "be nearly impossible for those pages to reach top positions on Google."
4857
  msgstr ""
4858
 
4859
  # @ squirrly-seo
4860
- #: models/CheckSeo.php:945
4861
  #, fuzzy
4862
  #| msgid "Squirrly settings"
4863
  msgid "Audit Score is Over 70%"
4864
  msgstr "Squirrly Einstellungen"
4865
 
4866
- #: models/CheckSeo.php:946
4867
  msgid ""
4868
  "The Squirrly Audit covers the main aspects that influence a site's "
4869
  "performance. Plus, your SEO and digital marketing expertise will increase as "
@@ -4871,7 +4952,7 @@ msgid ""
4871
  "score over 70 to have good chances of ranking high on Google."
4872
  msgstr ""
4873
 
4874
- #: models/CheckSeo.php:947
4875
  #, php-format
4876
  msgid ""
4877
  "Open up your Audit from %sSquirrly > SEO Audit%s. Open one of the audits, or "
@@ -4880,15 +4961,15 @@ msgid ""
4880
  "score (find them on the right sidebar)."
4881
  msgstr ""
4882
 
4883
- #: models/CheckSeo.php:958
4884
  msgid "Get Minimum 30 Visitors / Day to Your Focus Pages"
4885
  msgstr ""
4886
 
4887
- #: models/CheckSeo.php:971
4888
  msgid "Reach Time on Page for All Focus Pages: 2 minute average"
4889
  msgstr ""
4890
 
4891
- #: models/CheckSeo.php:972
4892
  msgid ""
4893
  "If your pages consistently keep people on them for longer than average, the "
4894
  "Google algorithm will adjust the search results to favor your site, because "
@@ -4899,7 +4980,7 @@ msgid ""
4899
  "that. Average time on page is one of the most important signals for Google."
4900
  msgstr ""
4901
 
4902
- #: models/CheckSeo.php:973
4903
  msgid ""
4904
  "Experiment with interactive content such as polls or quizzes to keep "
4905
  "visitors on your site for longer, or make your content longer, if the topic "
@@ -4907,18 +4988,18 @@ msgid ""
4907
  "traffic sources can contribute to low time on page. "
4908
  msgstr ""
4909
 
4910
- #: models/CheckSeo.php:974
4911
  msgid ""
4912
  "Keep visitors on your Focus Pages for at least 2 minutes (on average) to "
4913
  "boost rankings. Keeping people over 2 minutes sends clear signals to Google "
4914
  "that people love your pages."
4915
  msgstr ""
4916
 
4917
- #: models/CheckSeo.php:984
4918
  msgid "Get at least 20 referring domains"
4919
  msgstr ""
4920
 
4921
- #: models/CheckSeo.php:985
4922
  msgid ""
4923
  "If you want more organic traffic, backlinks and referring domains are "
4924
  "critical. Research has shown that the vast majority of pages (of analyzed ~ "
@@ -4927,7 +5008,7 @@ msgid ""
4927
  "domains and the amount of search traffic the target web page receives. "
4928
  msgstr ""
4929
 
4930
- #: models/CheckSeo.php:986
4931
  msgid ""
4932
  "Find more websites that can send links to your own site. You need to get "
4933
  "links to our site from at least 20 other domains from the web. You can run "
@@ -4935,15 +5016,15 @@ msgid ""
4935
  "kind of website."
4936
  msgstr ""
4937
 
4938
- #: models/CheckSeo.php:987
4939
  msgid "Get at least 20 referring domains to get more traffic."
4940
  msgstr ""
4941
 
4942
- #: models/CheckSeo.php:997
4943
  msgid "Get at least 30 referring domains"
4944
  msgstr ""
4945
 
4946
- #: models/CheckSeo.php:999
4947
  msgid ""
4948
  "Find more websites that can send links to your own site. You need to get "
4949
  "links to our site from at least 30 other domains from the web. You can run "
@@ -4951,19 +5032,19 @@ msgid ""
4951
  "kind of website."
4952
  msgstr ""
4953
 
4954
- #: models/CheckSeo.php:1000
4955
  msgid "Get at least 30 reffering domains to get more traffic"
4956
  msgstr ""
4957
 
4958
- #: models/CheckSeo.php:1010
4959
  msgid "Get Minimum 70 Visitors / Day to Your Focus Pages"
4960
  msgstr ""
4961
 
4962
- #: models/CheckSeo.php:1023
4963
  msgid "Raise Authority Level to Over 35 for all Focus Pages"
4964
  msgstr ""
4965
 
4966
- #: models/CheckSeo.php:1024
4967
  msgid ""
4968
  "Page authority is a metric that Squirrly's servers calculate according to "
4969
  "data from different API, our own crawling and also SML (Squirrly Machine "
@@ -4975,17 +5056,17 @@ msgid ""
4975
  "your own site) and social media information."
4976
  msgstr ""
4977
 
4978
- #: models/CheckSeo.php:1026
4979
  msgid ""
4980
  "Raise your Page Authority to over 35 for all Focus Pages. Do this and Google "
4981
  "will start rewarding you with much better visibility on the search engine."
4982
  msgstr ""
4983
 
4984
- #: models/CheckSeo.php:1036
4985
  msgid "Get at least 1 Backlink for every Focus Page"
4986
  msgstr ""
4987
 
4988
- #: models/CheckSeo.php:1037 models/CheckSeo.php:1050
4989
  msgid ""
4990
  "A very easy way to reach this goal is to get a Squirrly SPY report "
4991
  "[link]https://squirrly.co/seo/spy/[/link] or something similar for your "
@@ -4995,104 +5076,118 @@ msgid ""
4995
  "well, and also link to YOUR site."
4996
  msgstr ""
4997
 
4998
- #: models/CheckSeo.php:1038
4999
  msgid ""
5000
  "Get 1 Backlink for each Focus Page. The 'PRO Ranking Tournament' course "
5001
  "inside Education Cloud by Squirrly has many ideas in lesson 8. These ideas "
5002
  "will help you get backlinks."
5003
  msgstr ""
5004
 
5005
- #: models/CheckSeo.php:1039
5006
  msgid ""
5007
  "Get 1 Backlink (minimum) for each of your Focus Pages. Otherwise, it's "
5008
  "pretty improbable that you will manage to reach top positions."
5009
  msgstr ""
5010
 
5011
- #: models/CheckSeo.php:1049
 
 
5012
  msgid "Get 10 Backlinks to your Focus Pages"
5013
- msgstr ""
5014
 
5015
- #: models/CheckSeo.php:1051
5016
  msgid ""
5017
  "Get 10 Backlinks for each Focus Page. The 'PRO Ranking Tournament' course "
5018
  "inside Education Cloud by Squirrly has many ideas in lesson 8. These ideas "
5019
  "will help you get backlinks."
5020
  msgstr ""
5021
 
5022
- #: models/CheckSeo.php:1052
5023
  msgid ""
5024
  "Reach over 10 Backlinks for each of your Focus Pages. Otherwise, it's pretty "
5025
  "improbable that you will manage to reach top positions."
5026
  msgstr ""
5027
 
5028
- #: models/CheckSeo.php:1062
5029
  msgid "Help us with a positive review on WordPress."
5030
  msgstr ""
5031
 
5032
- #: models/CheckSeo.php:1063
5033
  msgid "Help us keep the Squirrly SEO plugin free with so many free features."
5034
  msgstr ""
5035
 
5036
- #: models/CheckSeo.php:1064
5037
  #, php-format
5038
  msgid ""
5039
  "Go to %sWordPress Directory%s and write a short positive review for us if "
5040
  "you like the plugin."
5041
  msgstr ""
5042
 
5043
- #: models/CheckSeo.php:1077 models/CheckSeo.php:1113
 
 
5044
  msgid "You got better Traffic to your Focus Pages"
5045
- msgstr ""
5046
 
5047
- #: models/CheckSeo.php:1086 models/CheckSeo.php:1095
 
 
5048
  msgid "You got better Ranking to your Focus Pages"
5049
- msgstr ""
5050
 
5051
- #: models/CheckSeo.php:1104
 
 
5052
  msgid "You got better Time On Page to your Focus Pages"
5053
- msgstr ""
5054
 
5055
- #: models/CheckSeo.php:1122
 
 
5056
  msgid "You got better Authority to your Focus Pages"
5057
- msgstr ""
5058
 
5059
- #: models/CheckSeo.php:1131
 
 
5060
  msgid "You got better Social Signals to your Focus Pages"
5061
- msgstr ""
5062
 
5063
- #: models/CheckSeo.php:1140
 
 
5064
  msgid "You got better Loading Speed to your Focus Pages"
5065
- msgstr ""
5066
 
5067
- #: models/CheckSeo.php:1149 models/CheckSeo.php:1158 models/CheckSeo.php:1167
5068
  msgid "You got better Ranking for your Keywords"
5069
  msgstr ""
5070
 
5071
- #: models/CheckSeo.php:1175
5072
  msgid "You got better Score for your Audit"
5073
  msgstr ""
5074
 
5075
  # @ squirrly-seo
5076
- #: models/CheckSeo.php:1482
5077
  #, fuzzy
5078
  #| msgid "Could not send the email..."
5079
  msgid "Could not verify the frontend."
5080
  msgstr "Konnte E-Mail nicht senden ..."
5081
 
5082
- #: models/CheckSeo.php:1848
5083
  msgid "'Just another WordPress site'"
5084
  msgstr ""
5085
 
5086
- #: models/CheckSeo.php:1849
5087
  msgid "Just another WordPress site"
5088
  msgstr ""
5089
 
5090
- #: models/CheckSeo.php:2021
5091
  #, php-format
5092
  msgid "Focus Page was not found (error %s)"
5093
  msgstr ""
5094
 
5095
- #: models/CheckSeo.php:2022 models/CheckSeo.php:2066
5096
  msgid ""
5097
  "The way your WordPress site is currently hosted can affect the way Squirrly "
5098
  "SEO operates in order to retrieve and process data about your Focus Pages. "
@@ -5100,23 +5195,23 @@ msgid ""
5100
  "audits can be generated by our system."
5101
  msgstr ""
5102
 
5103
- #: models/CheckSeo.php:2023 models/CheckSeo.php:2042
5104
  msgid ""
5105
  "Use a different browser to check if your Focus Page is visible. Whitelist "
5106
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
5107
  "page so that you’ll receive a full audit."
5108
  msgstr ""
5109
 
5110
- #: models/CheckSeo.php:2024 models/CheckSeo.php:2068
5111
  msgid "An error is preventing Squirrly from processing your Focus Page audits."
5112
  msgstr ""
5113
 
5114
- #: models/CheckSeo.php:2031
5115
  #, php-format
5116
  msgid "Your Focus Page is redirected to another page (error %s)"
5117
  msgstr ""
5118
 
5119
- #: models/CheckSeo.php:2032
5120
  #, php-format
5121
  msgid ""
5122
  "Right now, your Focus Page sends users and search engines to a different URL "
@@ -5128,23 +5223,23 @@ msgid ""
5128
  "operates."
5129
  msgstr ""
5130
 
5131
- #: models/CheckSeo.php:2033
5132
  msgid ""
5133
  "Choose a page that does NOT redirect to a different page as your Focus Page. "
5134
  "Your Focus Page should have a single URL associated to it so that Squirrly "
5135
  "can serve you the best data."
5136
  msgstr ""
5137
 
5138
- #: models/CheckSeo.php:2034
5139
  msgid "Make sure that your Focus Page is NOT redirected to a different page."
5140
  msgstr ""
5141
 
5142
- #: models/CheckSeo.php:2040
5143
  #, php-format
5144
  msgid "Ensure your Focus Pages can be accessed (error %s)"
5145
  msgstr ""
5146
 
5147
- #: models/CheckSeo.php:2041
5148
  #, php-format
5149
  msgid ""
5150
  "A server-side error is preventing Squirrly from being able to access and "
@@ -5154,16 +5249,16 @@ msgid ""
5154
  "page, which is a critical issue."
5155
  msgstr ""
5156
 
5157
- #: models/CheckSeo.php:2043
5158
  msgid "A server-side error is preventing your Focus Pages from being accessed."
5159
  msgstr ""
5160
 
5161
- #: models/CheckSeo.php:2048
5162
  #, php-format
5163
  msgid "Make sure your Focus Pages can be audited (error %s)"
5164
  msgstr ""
5165
 
5166
- #: models/CheckSeo.php:2049
5167
  msgid ""
5168
  "Squirrly is unable to generate the audit for your Focus Page because it "
5169
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
@@ -5171,126 +5266,148 @@ msgid ""
5171
  "Squirrly’s IP address."
5172
  msgstr ""
5173
 
5174
- #: models/CheckSeo.php:2050
5175
  msgid ""
5176
  "Check to see if your WordPress site’s server is offline. Whitelist our "
5177
  "crawler IP address (176.9.112.210) to allow our server to verify your page "
5178
  "so that you’ll receive a full audit."
5179
  msgstr ""
5180
 
5181
- #: models/CheckSeo.php:2051 models/CheckSeo.php:2059
5182
  msgid ""
5183
  "An error prevents Squirrly from gathering critical data about your Focus "
5184
  "Page."
5185
  msgstr ""
5186
 
5187
- #: models/CheckSeo.php:2056
5188
  msgid "Make sure your Focus Pages can be audited (firewall protection)"
5189
  msgstr ""
5190
 
5191
- #: models/CheckSeo.php:2057
5192
  msgid ""
5193
  "Squirrly is unable to generate the audit for your Focus Page because it "
5194
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
5195
  "server has a firewall protection and is blocking Squirrly’s IP address."
5196
  msgstr ""
5197
 
5198
- #: models/CheckSeo.php:2058 models/CheckSeo.php:2067
5199
  msgid ""
5200
  "Whitelist our crawler IP address (176.9.112.210) to allow our server to "
5201
  "verify your page so that you’ll receive a full audit."
5202
  msgstr ""
5203
 
5204
- #: models/CheckSeo.php:2065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5205
  #, php-format
5206
  msgid "Focus Page could not be verified (error: %s)"
5207
  msgstr ""
5208
 
5209
  # @ squirrly-seo
5210
- #: models/FocusPages.php:21 models/bulkseo/Metas.php:139
5211
- #: models/focuspages/Clicks.php:64 models/focuspages/Content.php:88
5212
- #: models/focuspages/Ctr.php:64 models/focuspages/Image.php:80
5213
- #: models/focuspages/Impressions.php:64 models/focuspages/Keyword.php:97
5214
- #: models/focuspages/Keyword.php:100 models/focuspages/Snippet.php:151
5215
- #: models/focuspages/Strategy.php:103 view/Ranking/Gscsync.php:31
5216
- #: view/Ranking/Rankings.php:216 view/Ranking/Rankings.php:353
5217
- #: view/Research/Briefcase.php:107 view/Research/Briefcase.php:290
5218
- #: view/Research/History.php:29 view/Research/HistoryDetails.php:7
5219
- #: view/Research/Research.php:198 view/Research/Suggested.php:28
5220
  #, fuzzy
5221
  #| msgid "Keyword:"
5222
  msgid "Keyword"
5223
  msgstr "Schlüsselwort:"
5224
 
5225
- #: models/FocusPages.php:22
5226
  msgid "Strategy"
5227
  msgstr ""
5228
 
5229
  # @ squirrly-seo
5230
- #: models/FocusPages.php:23
5231
  #, fuzzy
5232
  #| msgid "SEO Software"
5233
  msgid "SEO Content"
5234
  msgstr "SEO Software"
5235
 
5236
- #: models/FocusPages.php:24
 
 
 
5237
  msgid "Words / Page"
5238
- msgstr ""
5239
 
5240
- #: models/FocusPages.php:25
5241
  msgid "Platform SEO"
5242
  msgstr ""
5243
 
5244
- #: models/FocusPages.php:26
 
 
 
5245
  msgid "Snippet"
5246
- msgstr ""
5247
 
5248
  # @ squirrly-seo
5249
- #: models/FocusPages.php:27
5250
  #, fuzzy
5251
  #| msgid "Images"
5252
  msgid "SEO Image"
5253
  msgstr "Bilder"
5254
 
5255
- #: models/FocusPages.php:28
5256
  msgid "Traffic Health"
5257
  msgstr ""
5258
 
5259
- #: models/FocusPages.php:29
5260
  msgid "Platform Health"
5261
  msgstr ""
5262
 
5263
- #: models/FocusPages.php:31
5264
  msgid "Social Signals"
5265
  msgstr ""
5266
 
5267
- #: models/FocusPages.php:32
5268
  msgid "Backlinks"
5269
  msgstr ""
5270
 
5271
- #: models/FocusPages.php:33
 
 
 
5272
  msgid "Inner Links"
5273
- msgstr ""
5274
 
5275
- #: models/FocusPages.php:34
5276
  msgid "Outbound Links"
5277
  msgstr ""
5278
 
5279
- #: models/FocusPages.php:35
5280
  msgid "Accuracy"
5281
  msgstr ""
5282
 
5283
- #: models/FocusPages.php:36 view/Ranking/Gscsync.php:34
5284
  msgid "CTR"
5285
  msgstr ""
5286
 
5287
- #: models/FocusPages.php:37 view/Ranking/Gscsync.php:33
5288
- #: view/Ranking/Rankings.php:367
5289
  msgid "Impressions"
5290
  msgstr ""
5291
 
5292
- #: models/FocusPages.php:38 view/Ranking/Gscsync.php:32
5293
- #: view/Ranking/Rankings.php:373
5294
  msgid "Clicks"
5295
  msgstr ""
5296
 
@@ -5329,416 +5446,555 @@ msgstr ""
5329
  msgid "The favicon has been updated."
5330
  msgstr "Das Favicon wurde aktualisiert."
5331
 
5332
- #: models/Menu.php:110 models/Menu.php:381
5333
  msgid "First Step"
5334
  msgstr ""
5335
 
5336
- #: models/Menu.php:110 models/Menu.php:111 models/Menu.php:257
5337
- #: view/Blocks/Toolbar.php:44
5338
  msgid "Overview"
5339
  msgstr ""
5340
 
5341
  # @ squirrly-seo
5342
- #: models/Menu.php:118 models/Menu.php:119 view/Research/Briefcase.php:119
 
 
 
 
 
 
 
5343
  #, fuzzy
5344
  #| msgid "Do a research"
5345
  msgid "Research"
5346
  msgstr "Recherchieren"
5347
 
5348
  # @ squirrly-seo
5349
- #: models/Menu.php:126 models/Menu.php:127 view/Blocks/Features.php:34
 
 
 
 
 
 
 
5350
  #, fuzzy
5351
  #| msgid "Save settings"
5352
  msgid "Live Assistant"
5353
  msgstr "Einstellungen speichern"
5354
 
5355
  # @ squirrly-seo
5356
- #: models/Menu.php:134
5357
  #, fuzzy
5358
  #| msgid "Squirrly LIVE SEO assistant"
5359
  msgid "All Snippets"
5360
  msgstr "Squirrly LIVE SEO-Assistent"
5361
 
5362
- #: models/Menu.php:135
 
 
 
5363
  msgid "Bulk Seo"
5364
- msgstr ""
 
 
 
 
 
 
 
5365
 
5366
  # @ squirrly-seo
5367
- #: models/Menu.php:142 models/Menu.php:143
5368
  #, fuzzy
5369
  #| msgid "Save settings"
5370
  msgid "SEO Settings"
5371
  msgstr "Einstellungen speichern"
5372
 
 
 
 
 
 
 
 
 
 
5373
  # @ squirrly-seo
5374
- #: models/Menu.php:150 models/Menu.php:151 models/Menu.php:237
5375
- #: view/Blocks/Features.php:7 view/FocusPages/Pagelist.php:23
5376
  #, fuzzy
5377
  #| msgid "Save settings"
5378
  msgid "Focus Pages"
5379
  msgstr "Einstellungen speichern"
5380
 
5381
  # @ squirrly-seo
5382
- #: models/Menu.php:158 models/Menu.php:159 view/Blocks/Features.php:187
5383
  #, fuzzy
5384
  #| msgid "automatically"
5385
  msgid "SEO Audit"
5386
  msgstr "automatisch"
5387
 
5388
  # @ squirrly-seo
5389
- #: models/Menu.php:166 models/Menu.php:167 models/Menu.php:277
5390
  #, fuzzy
5391
  #| msgid "Save settings"
5392
  msgid "Rankings"
5393
  msgstr "Einstellungen speichern"
5394
 
5395
  # @ squirrly-seo
5396
- #: models/Menu.php:191
5397
  #, fuzzy
5398
- #| msgid "Keywords:"
5399
- msgid "Find Keywords"
5400
- msgstr "Schlüsselwörter:"
5401
 
5402
  # @ squirrly-seo
5403
- #: models/Menu.php:192
5404
  #, fuzzy
5405
- #| msgid "Do a research"
5406
- msgid "do a keyword research"
5407
- msgstr "Recherchieren"
5408
-
5409
- #: models/Menu.php:197 view/Research/Briefcase.php:18
5410
- msgid "Briefcase"
5411
- msgstr ""
5412
 
5413
  # @ squirrly-seo
5414
- #: models/Menu.php:198
5415
  #, fuzzy
5416
- #| msgid "Use this keyword"
5417
- msgid "save the best Keywords"
5418
- msgstr "Dieses Schlüsselwort verwenden"
5419
-
5420
- #: models/Menu.php:203 view/Research/Briefcase.php:30
5421
- msgid "Labels"
5422
- msgstr ""
5423
 
5424
  # @ squirrly-seo
5425
- #: models/Menu.php:204
5426
  #, fuzzy
5427
- #| msgid "Tips: 2-4 keywords"
5428
- msgid "group keywords"
5429
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
5430
 
5431
- #: models/Menu.php:209 view/Research/Suggested.php:15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5432
  msgid "Suggested"
5433
  msgstr ""
5434
 
5435
  # @ squirrly-seo
5436
- #: models/Menu.php:210
5437
  #, fuzzy
5438
  #| msgid "Enter a keyword"
5439
  msgid "better keywords found"
5440
  msgstr "Ein Schlüsselwort eingeben"
5441
 
5442
- #: models/Menu.php:215 view/Research/History.php:16
 
 
 
5443
  msgid "History"
5444
- msgstr ""
5445
 
5446
  # @ squirrly-seo
5447
- #: models/Menu.php:216
5448
  #, fuzzy
5449
  #| msgid "Do more research!"
5450
  msgid "keyword research history"
5451
  msgstr "Erweiterte Suche!"
5452
 
5453
- #: models/Menu.php:223
5454
  #, fuzzy
5455
  #| msgid "Optimize for Keyword"
5456
  msgid "Optimize Posts"
5457
  msgstr "Schlüsselwort optimieren"
5458
 
5459
  # @ squirrly-seo
5460
- #: models/Menu.php:224
5461
  #, fuzzy
5462
  #| msgid "Save settings"
5463
  msgid "use the Live Assistant"
5464
  msgstr "Einstellungen speichern"
5465
 
5466
  # @ squirrly-seo
5467
- #: models/Menu.php:229 models/Menu.php:269 models/Menu.php:289
5468
  #, fuzzy
5469
  #| msgid "Save settings"
5470
  msgid "Settings"
5471
  msgstr "Einstellungen speichern"
5472
 
5473
  # @ squirrly-seo
5474
- #: models/Menu.php:230
5475
  #, fuzzy
5476
  #| msgid "Save settings"
5477
  msgid "live assistant setup"
5478
  msgstr "Einstellungen speichern"
5479
 
5480
- #: models/Menu.php:238
 
 
 
5481
  msgid "all my focus pages"
5482
- msgstr ""
5483
 
5484
  # @ squirrly-seo
5485
- #: models/Menu.php:249 models/Menu.php:263
5486
  #, fuzzy
5487
  #| msgid "+ Add keyword"
5488
  msgid "Add New Page"
5489
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5490
 
5491
- #: models/Menu.php:250
5492
  msgid "add page in focus pages"
5493
  msgstr ""
5494
 
5495
- #: models/Menu.php:258
 
 
 
5496
  msgid "See all the SEO audits"
5497
- msgstr ""
5498
 
5499
- #: models/Menu.php:264
5500
  msgid "add page in audit"
5501
  msgstr ""
5502
 
5503
  # @ squirrly-seo
5504
- #: models/Menu.php:270
5505
  #, fuzzy
5506
  #| msgid "Squirrly settings"
5507
  msgid "Audit settings"
5508
  msgstr "Squirrly Einstellungen"
5509
 
5510
  # @ squirrly-seo
5511
- #: models/Menu.php:278
5512
  #, fuzzy
5513
  #| msgid "The code for Google Analytics is incorrect."
5514
  msgid "See Google ranking"
5515
  msgstr "Der Code für Google Analytics ist falsch."
5516
 
5517
  # @ squirrly-seo
5518
- #: models/Menu.php:283
5519
  #, fuzzy
5520
  #| msgid "+ Add keyword"
5521
  msgid "Add Keywords"
5522
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5523
 
5524
  # @ squirrly-seo
5525
- #: models/Menu.php:284
5526
  #, fuzzy
5527
  #| msgid "+ Add keyword"
5528
  msgid "Add briefcase keywords"
5529
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5530
 
5531
  # @ squirrly-seo
5532
- #: models/Menu.php:290
5533
  #, fuzzy
5534
- #| msgid "Save settings"
5535
- msgid "Ranking settings"
5536
- msgstr "Einstellungen speichern"
5537
 
5538
  # @ squirrly-seo
5539
- #: models/Menu.php:299 view/BulkSeo/Bulkseo.php:29
5540
  #, fuzzy
5541
- #| msgid "Squirrly settings"
5542
- msgid "Bulk SEO"
5543
- msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
 
5544
 
5545
- #: models/Menu.php:300
5546
  #, fuzzy
5547
  #| msgid "Optimize for Keyword"
5548
  msgid "optimize all pages"
5549
  msgstr "Schlüsselwort optimieren"
5550
 
5551
  # @ squirrly-seo
5552
- #: models/Menu.php:308
5553
  #, fuzzy
5554
  #| msgid "automatically"
5555
  msgid "Automation"
5556
  msgstr "automatisch"
5557
 
5558
- #: models/Menu.php:309
 
 
 
5559
  msgid "patterns & automation"
5560
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5561
 
5562
  # @ squirrly-seo
5563
- #: models/Menu.php:314 view/SeoSettings/Metas.php:31
5564
  #, fuzzy
5565
  #| msgid "Images"
5566
  msgid "SEO Metas"
5567
  msgstr "Bilder"
5568
 
5569
- #: models/Menu.php:315
5570
  msgid "required on-page metas"
5571
  msgstr ""
5572
 
5573
- #: models/Menu.php:320
5574
- msgid "JSON LD"
5575
  msgstr ""
5576
 
5577
- #: models/Menu.php:321
5578
- msgid "google structured data"
5579
  msgstr ""
5580
 
5581
- #: models/Menu.php:326 view/SeoSettings/Social.php:27
 
 
 
5582
  msgid "Social Media"
5583
- msgstr ""
5584
 
5585
- #: models/Menu.php:327
5586
  msgid "social share options"
5587
  msgstr ""
5588
 
5589
- #: models/Menu.php:332 view/SeoSettings/Tracking.php:27
5590
  msgid "Tracking Tools"
5591
  msgstr ""
5592
 
5593
  # @ squirrly-seo
5594
- #: models/Menu.php:333
5595
  #, fuzzy
5596
  #| msgid "Google %sAnalytics ID%s`:"
5597
  msgid "google analytics, pixel, etc."
5598
  msgstr "Google %sAnalytics ID%s`:"
5599
 
5600
- # @ squirrly-seo
5601
- #: models/Menu.php:338
5602
- #, fuzzy
5603
- #| msgid "Connecting ..."
5604
- msgid "Connection"
5605
- msgstr "Verbinden ..."
5606
-
5607
- #: models/Menu.php:339
5608
- msgid "webmaster tools"
5609
  msgstr ""
5610
 
5611
- #: models/Menu.php:344 view/SeoSettings/Sitemap.php:28
5612
- msgid "Sitemap XML"
5613
- msgstr ""
 
 
 
5614
 
5615
- #: models/Menu.php:345
 
 
 
5616
  msgid "setup the sitemap"
5617
- msgstr ""
5618
 
5619
- #: models/Menu.php:350
5620
  msgid "Robots.txt"
5621
  msgstr ""
5622
 
5623
- #: models/Menu.php:351
5624
  msgid "search engine filters"
5625
  msgstr ""
5626
 
5627
- #: models/Menu.php:356
 
 
 
5628
  msgid "Favicon"
5629
- msgstr ""
5630
 
5631
  # @ squirrly-seo
5632
- #: models/Menu.php:357
5633
  #, fuzzy
5634
  #| msgid "Change the Website Icon"
5635
  msgid "add website icon"
5636
  msgstr "Ändern Sie das Website-Symbol"
5637
 
5638
- #: models/Menu.php:362
 
 
 
5639
  msgid "Import/Export"
5640
- msgstr ""
5641
 
5642
- #: models/Menu.php:363
 
 
 
5643
  msgid "import & export SEO"
5644
- msgstr ""
5645
 
5646
  # @ squirrly-seo
5647
- #: models/Menu.php:372
5648
  #, fuzzy
5649
  #| msgid "Save settings"
5650
  msgid "Advanced"
5651
  msgstr "Einstellungen speichern"
5652
 
5653
  # @ squirrly-seo
5654
- #: models/Menu.php:373
5655
  #, fuzzy
5656
  #| msgid "Save settings"
5657
  msgid "Advanced SEO Settings"
5658
  msgstr "Einstellungen speichern"
5659
 
5660
  # @ squirrly-seo
5661
- #: models/Menu.php:382
5662
  #, fuzzy
5663
- #| msgid "Go to Profile"
5664
- msgid "all the SEO features"
5665
- msgstr "Zum Profil"
5666
 
5667
  # @ squirrly-seo
5668
- #: models/Menu.php:387 view/Onboarding/Step3.php:52
5669
  #, fuzzy
5670
- #| msgid "Support"
5671
- msgid "Import"
5672
- msgstr "Support"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5673
 
5674
- #: models/Menu.php:388
 
 
 
5675
  msgid "import settings and SEO"
5676
- msgstr ""
5677
 
5678
- #: models/Menu.php:393 view/Onboarding/Step4.php:11
5679
  msgid "Final Step"
5680
  msgstr ""
5681
 
5682
- # @ squirrly-seo
5683
- #: models/Menu.php:394
5684
- #, fuzzy
5685
- #| msgid "Squirrly settings"
5686
- msgid "start using Squirrly SEO"
5687
- msgstr "Squirrly Einstellungen"
5688
 
5689
  # @ squirrly-seo
5690
- #: models/Menu.php:402
5691
  #, fuzzy
5692
  #| msgid "Blogs"
5693
  msgid "Blogging"
5694
  msgstr "Blogs"
5695
 
5696
  # @ squirrly-seo
5697
- #: models/Menu.php:403
5698
  #, fuzzy
5699
  #| msgid "Blogs"
5700
  msgid "Blogging overwiew"
5701
  msgstr "Blogs"
5702
 
5703
- #: models/Menu.php:408
5704
  msgid "Traffic"
5705
  msgstr ""
5706
 
5707
- #: models/Menu.php:409
5708
  msgid "Weekly website traffic"
5709
  msgstr ""
5710
 
5711
- #: models/Menu.php:414
5712
  msgid "SEO"
5713
  msgstr ""
5714
 
5715
- #: models/Menu.php:415
5716
  #, fuzzy
5717
  #| msgid "Optimize for Keyword"
5718
  msgid "On-Page optimization"
5719
  msgstr "Schlüsselwort optimieren"
5720
 
5721
- #: models/Menu.php:420
5722
  msgid "Social"
5723
  msgstr ""
5724
 
5725
- #: models/Menu.php:421
5726
  msgid "Social signals and shares"
5727
  msgstr ""
5728
 
5729
- #: models/Menu.php:426
5730
  msgid "Links"
5731
  msgstr ""
5732
 
5733
- #: models/Menu.php:427
5734
  msgid "Backlinks and Innerlinks"
5735
  msgstr ""
5736
 
5737
- #: models/Menu.php:432 models/focuspages/Authority.php:59
5738
  msgid "Authority"
5739
  msgstr ""
5740
 
5741
- #: models/Menu.php:433
5742
  msgid "Website Off-Page score"
5743
  msgstr ""
5744
 
@@ -5800,74 +6056,80 @@ msgstr ""
5800
  msgid "The uploaded file could not be moved to %s."
5801
  msgstr ""
5802
 
5803
- #: models/Post.php:234
 
 
 
5804
  msgid "Keyword with 2 or more words"
5805
- msgstr ""
5806
 
5807
- #: models/Post.php:235
5808
  msgid ""
5809
  "Even if a long tail keyword won't bring as many visitors as one keyword "
5810
  "would, the traffic those keywords will bring will be better, and more "
5811
  "focused towards what you're selling."
5812
  msgstr ""
5813
 
5814
- #: models/Post.php:238
5815
  msgid "Domain"
5816
  msgstr ""
5817
 
5818
- #: models/Post.php:240
 
 
 
5819
  msgid "Keyword is present in the URL"
5820
- msgstr ""
5821
 
5822
- #: models/Post.php:241
5823
  msgid ""
5824
  "The keywords must be present in the URL for a better ranking. You should "
5825
  "consider not to add a keyword more than once."
5826
  msgstr ""
5827
 
5828
- #: models/Post.php:244
5829
  msgid "Clean & Friendly"
5830
  msgstr ""
5831
 
5832
- #: models/Post.php:246
5833
  #, php-format
5834
  msgid "Title is Google Friendly %s: more keywords %s: over-optimized! %s"
5835
  msgstr ""
5836
 
5837
- #: models/Post.php:247
5838
  msgid ""
5839
  "It calculates the right number of times your keyword should appear mentioned "
5840
  "in the text and makes sure you do not over-optimize."
5841
  msgstr ""
5842
 
5843
- #: models/Post.php:250
5844
  #, php-format
5845
  msgid "Content is Google Friendly %s: more keywords %s: over-optimized! %s"
5846
  msgstr ""
5847
 
5848
- #: models/Post.php:251
5849
  msgid ""
5850
  "It calculates the right number of times your keyword should appear mentioned "
5851
  "in the text and makes sure you do not over-optimize"
5852
  msgstr ""
5853
 
5854
- #: models/Post.php:254
5855
  #, fuzzy, php-format
5856
  #| msgid "Optimize for Keyword"
5857
  msgid "Over Optimization %s"
5858
  msgstr "Schlüsselwort optimieren"
5859
 
5860
- #: models/Post.php:255
5861
  msgid ""
5862
  "Checks if there are words in the whole text that appear way too many times"
5863
  msgstr ""
5864
 
5865
- #: models/Post.php:258
5866
  #, php-format
5867
  msgid "Human Friendly %s"
5868
  msgstr ""
5869
 
5870
- #: models/Post.php:259
5871
  msgid ""
5872
  "Your readers (who are not search engine bots) should find a clear text, with "
5873
  "a rich vocabulary, that takes into account some basic rules of writing: such "
@@ -5877,110 +6139,119 @@ msgid ""
5877
  msgstr ""
5878
 
5879
  # @ squirrly-seo
5880
- #: models/Post.php:262 models/focuspages/Snippet.php:89
5881
- #: models/focuspages/Snippet.php:219 models/focuspages/Snippet.php:241
5882
- #: view/Audits/Addpage.php:132 view/Blocks/Snippet.php:172
5883
- #: view/Blocks/Snippet.php:577 view/Blocks/Snippet.php:835
5884
- #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:132
5885
- #: view/SeoSettings/Automation.php:125 view/SeoSettings/Metas.php:167
5886
  #, fuzzy
5887
  #| msgid "Title:"
5888
  msgid "Title"
5889
  msgstr "Titel:"
5890
 
5891
- #: models/Post.php:264
 
 
 
5892
  msgid "Keywords are used in Title"
5893
- msgstr ""
5894
 
5895
- #: models/Post.php:265
5896
  msgid "The keywords need to appear in the title of the article"
5897
  msgstr ""
5898
 
5899
  # @ squirrly-seo
5900
- #: models/Post.php:268
5901
  #, fuzzy
5902
  #| msgid "Tips: Length 70-255 chars"
5903
  msgid "Title length is between 10-75 chars"
5904
  msgstr "Tipp: Länge 70-255 Charaktere"
5905
 
5906
- #: models/Post.php:269
5907
  msgid ""
5908
  "The optimum length for Title is between 10-75 chars on major search engines."
5909
  msgstr ""
5910
 
5911
- #: models/Post.php:272
5912
  msgid "Title is different from domain name"
5913
  msgstr ""
5914
 
5915
- #: models/Post.php:273
5916
  msgid ""
5917
  "Since the Google Penguin Update, the title must be different from the domain "
5918
  "name, or you might get banned soon."
5919
  msgstr ""
5920
 
5921
  # @ squirrly-seo
5922
- #: models/Post.php:276
5923
  #, fuzzy
5924
  #| msgid "SEO Software"
5925
  msgid "Content"
5926
  msgstr "SEO Software"
5927
 
5928
- #: models/Post.php:278
5929
  msgid "Keywords are used in Content"
5930
  msgstr ""
5931
 
5932
- #: models/Post.php:279
5933
  msgid "The keyword must appear in the body of the article, at least once"
5934
  msgstr ""
5935
 
5936
  # @ squirrly-seo
5937
- #: models/Post.php:282
5938
  #, fuzzy, php-format
5939
  #| msgid "Could not send the email..."
5940
  msgid "Bold one of the keywords %s"
5941
  msgstr "Konnte E-Mail nicht senden ..."
5942
 
5943
- #: models/Post.php:283
5944
  msgid ""
5945
  "Bolding your keywords will help search engines figure out what your content "
5946
  "is about and what topic you cover. It's also useful for your Human readers "
5947
  "to bold some of the most important ideas."
5948
  msgstr ""
5949
 
5950
- #: models/Post.php:286
 
 
 
5951
  msgid "Keywords used in headline"
5952
- msgstr ""
5953
 
5954
- #: models/Post.php:287
5955
  msgid ""
5956
  "The keywords should be used in headings like H2, H3, H4. Try NOT to use them "
5957
  "all, for it will seem to be a SEO abuse. You can use your H2 button from the "
5958
  "editor to do this. It works like the Bold, Italic or Underline buttons."
5959
  msgstr ""
5960
 
5961
- #: models/Post.php:290
5962
  msgid "Use image(s) in content or featured image"
5963
  msgstr ""
5964
 
5965
- #: models/Post.php:291
5966
  msgid ""
5967
  "Articles need to be optimized for human beings as well, so you should place "
5968
  "an image at the begining of your article."
5969
  msgstr ""
5970
 
5971
- #: models/Post.php:294
5972
  msgid "Use keywords in the Alternative Text field of the image"
5973
  msgstr ""
5974
 
5975
- #: models/Post.php:295
5976
  msgid ""
5977
  "Add at least one image in your article. Now use your keyword in the "
5978
  "description of the image. The Alternative Text field of the image."
5979
  msgstr ""
5980
 
 
5981
  #: models/PostsList.php:24
 
 
5982
  msgid "Optimize it with Squirrly Live Assistant"
5983
- msgstr ""
5984
 
5985
  #: models/PostsList.php:48 models/PostsList.php:74
5986
  #, fuzzy
@@ -5996,9 +6267,12 @@ msgstr ""
5996
  msgid "Can't get snippet data"
5997
  msgstr ""
5998
 
5999
- #: models/PostsList.php:55 models/PostsList.php:80 view/Blocks/Snippet.php:134
 
 
 
6000
  msgid "Edit Snippet"
6001
- msgstr ""
6002
 
6003
  # @ squirrly-seo
6004
  #: models/RoleManager.php:96
@@ -6019,42 +6293,81 @@ msgid "You don't have enough pemission to edit this article"
6019
  msgstr ""
6020
 
6021
  # @ squirrly-seo
6022
- #: models/Snippet.php:343
6023
  #, fuzzy
6024
  #| msgid "Could not send the email..."
6025
  msgid "Error! Could not save the data."
6026
  msgstr "Konnte E-Mail nicht senden ..."
6027
 
6028
- #: models/Snippet.php:348
6029
  msgid "Error! Invalid request."
6030
  msgstr ""
6031
 
6032
  # @ squirrly-seo
6033
- #: models/Snippet.php:380
6034
  #, fuzzy
6035
  #| msgid "Could not send the email..."
6036
  msgid "Couldn't find the page"
6037
  msgstr "Konnte E-Mail nicht senden ..."
6038
 
6039
- #: models/Snippet.php:396 models/Snippet.php:408
6040
  msgid "No Polylang translation for this post."
6041
  msgstr ""
6042
 
6043
- #: models/abstract/Assistant.php:133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6044
  msgid "We are gathering data for this category"
6045
  msgstr ""
6046
 
6047
- #: models/abstract/Assistant.php:136
6048
  msgid ""
6049
  "Congratulations for ranking with this keyword, but it will require special "
6050
  "attention from you to keep it within TOP 10 positions"
6051
  msgstr ""
6052
 
6053
- #: models/abstract/Assistant.php:179
6054
  msgid "Not enough data to process this task"
6055
  msgstr ""
6056
 
6057
- #: models/abstract/Assistant.php:183 view/Blocks/Snippet.php:309
6058
  msgid "Current"
6059
  msgstr ""
6060
 
@@ -6065,10 +6378,13 @@ msgstr ""
6065
  msgid "Title not empty"
6066
  msgstr "Beschreibung:"
6067
 
6068
- #: models/bulkseo/Metas.php:58 view/Blocks/Snippet.php:188
6069
- #: view/Blocks/Snippet.php:593 view/Blocks/Snippet.php:851
 
 
 
6070
  msgid "Current Title"
6071
- msgstr ""
6072
 
6073
  #: models/bulkseo/Metas.php:60
6074
  #, php-format
@@ -6086,9 +6402,12 @@ msgstr ""
6086
  msgid "Title up to %s chars"
6087
  msgstr "Tipp: Länge 10-70 Charaktere"
6088
 
 
6089
  #: models/bulkseo/Metas.php:64
 
 
6090
  msgid "Current Title Length"
6091
- msgstr ""
6092
 
6093
  #: models/bulkseo/Metas.php:65 models/bulkseo/Metas.php:83
6094
  #: models/bulkseo/Opengraph.php:84 models/bulkseo/Opengraph.php:94
@@ -6105,7 +6424,7 @@ msgid ""
6105
  msgstr ""
6106
 
6107
  # @ squirrly-seo
6108
- #: models/bulkseo/Metas.php:69 models/focuspages/Snippet.php:100
6109
  #, fuzzy
6110
  #| msgid "Keyword:"
6111
  msgid "Keyword in title"
@@ -6125,7 +6444,7 @@ msgstr "Schlüsselwort:"
6125
  msgid "no keywords"
6126
  msgstr "Schlüsselwörter:"
6127
 
6128
- #: models/bulkseo/Metas.php:72 models/focuspages/Snippet.php:103
6129
  #, php-format
6130
  msgid ""
6131
  "Your keyword must be present in the title of the page. %s It's a very "
@@ -6145,8 +6464,8 @@ msgid "Description not empty"
6145
  msgstr "Beschreibung:"
6146
 
6147
  # @ squirrly-seo
6148
- #: models/bulkseo/Metas.php:76 view/Blocks/Snippet.php:240
6149
- #: view/Blocks/Snippet.php:637 view/Blocks/Snippet.php:895
6150
  #, fuzzy
6151
  #| msgid "Description:"
6152
  msgid "Current Description"
@@ -6184,7 +6503,7 @@ msgid ""
6184
  msgstr ""
6185
 
6186
  # @ squirrly-seo
6187
- #: models/bulkseo/Metas.php:87 models/focuspages/Snippet.php:106
6188
  #, fuzzy
6189
  #| msgid "Competition:"
6190
  msgid "Keyword in description"
@@ -6222,9 +6541,12 @@ msgid ""
6222
  "search engines to find this meta and to index your post for these keywords."
6223
  msgstr ""
6224
 
 
6225
  #: models/bulkseo/Metas.php:100
 
 
6226
  msgid "Current Link"
6227
- msgstr ""
6228
 
6229
  #: models/bulkseo/Metas.php:102
6230
  #, php-format
@@ -6236,9 +6558,12 @@ msgid ""
6236
  "gets indexed and ranked."
6237
  msgstr ""
6238
 
 
6239
  #: models/bulkseo/Metas.php:111
 
 
6240
  msgid "Some Squirrly Metas are deactivated."
6241
- msgstr ""
6242
 
6243
  #: models/bulkseo/Metas.php:116
6244
  msgid ""
@@ -6253,101 +6578,85 @@ msgstr ""
6253
  msgid "Some Squirrly Metas are generated automatically."
6254
  msgstr "<< Lass es automatisch"
6255
 
 
6256
  #: models/bulkseo/Metas.php:124
 
 
6257
  msgid "All Squirrly Metas are customized and set correctly."
6258
- msgstr ""
6259
-
6260
- #: models/bulkseo/Metas.php:135 models/bulkseo/Opengraph.php:137
6261
- #: models/bulkseo/Twittercard.php:133 models/bulkseo/Visibility.php:69
6262
- #: models/focuspages/Accuracy.php:34 models/focuspages/Audit.php:143
6263
- #: models/focuspages/Authority.php:33 models/focuspages/Backlinks.php:46
6264
- #: models/focuspages/Clicks.php:56 models/focuspages/Content.php:75
6265
- #: models/focuspages/Ctr.php:56 models/focuspages/Image.php:74
6266
- #: models/focuspages/Impressions.php:56 models/focuspages/Indexability.php:89
6267
- #: models/focuspages/Innerlinks.php:64 models/focuspages/Keyword.php:73
6268
- #: models/focuspages/Length.php:53 models/focuspages/Nofollow.php:65
6269
- #: models/focuspages/Onpage.php:80 models/focuspages/Ranking.php:35
6270
- #: models/focuspages/Snippet.php:145 models/focuspages/Social.php:56
6271
- #: models/focuspages/Strategy.php:97 models/focuspages/Traffic.php:95
6272
- msgid "Current URL"
6273
- msgstr ""
6274
 
6275
  # @ squirrly-seo
6276
- #: models/bulkseo/Metas.php:141
 
 
 
 
 
 
 
 
 
 
6277
  #, fuzzy
6278
- #| msgid "Keyword:"
6279
- msgid "No Meta Keyword Found"
6280
- msgstr "Schlüsselwort:"
6281
-
6282
- #: models/bulkseo/Metas.php:157 models/bulkseo/Metas.php:193
6283
- #: models/bulkseo/Metas.php:226 models/bulkseo/Metas.php:270
6284
- #: models/bulkseo/Metas.php:306 models/bulkseo/Metas.php:339
6285
- #: models/bulkseo/Metas.php:387 models/bulkseo/Metas.php:426
6286
- #: models/bulkseo/Opengraph.php:151 models/bulkseo/Opengraph.php:187
6287
- #: models/bulkseo/Opengraph.php:219 models/bulkseo/Opengraph.php:255
6288
- #: models/bulkseo/Opengraph.php:291 models/bulkseo/Twittercard.php:147
6289
- #: models/bulkseo/Twittercard.php:183 models/bulkseo/Twittercard.php:215
6290
- #: models/bulkseo/Twittercard.php:251 models/bulkseo/Twittercard.php:287
6291
- #: models/bulkseo/Visibility.php:83 models/bulkseo/Visibility.php:122
6292
- #: models/bulkseo/Visibility.php:155
6293
  msgid "Squirrly Snippet is deactivated from this post."
6294
- msgstr ""
6295
 
6296
- #: models/bulkseo/Metas.php:161 models/bulkseo/Metas.php:197
6297
- #: models/bulkseo/Metas.php:230 models/bulkseo/Metas.php:274
6298
- #: models/bulkseo/Metas.php:310 models/bulkseo/Metas.php:343
6299
- #: models/bulkseo/Metas.php:391 models/bulkseo/Metas.php:430
6300
  #, php-format
6301
  msgid ""
6302
  "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
6303
  "%s."
6304
  msgstr ""
6305
 
6306
- #: models/bulkseo/Metas.php:165 models/bulkseo/Metas.php:201
6307
- #: models/bulkseo/Metas.php:234
6308
  #, php-format
6309
  msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
6310
  msgstr ""
6311
 
6312
- #: models/bulkseo/Metas.php:169 models/bulkseo/Metas.php:205
6313
- #: models/bulkseo/Metas.php:238 models/bulkseo/Metas.php:282
6314
- #: models/bulkseo/Metas.php:318 models/bulkseo/Metas.php:351
6315
- #: models/bulkseo/Metas.php:395 models/bulkseo/Metas.php:438
6316
  #, php-format
6317
  msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
6318
  msgstr ""
6319
 
6320
  # @ squirrly-seo
6321
- #: models/bulkseo/Metas.php:178 models/bulkseo/Metas.php:214
6322
- #: models/bulkseo/Opengraph.php:172 models/bulkseo/Opengraph.php:208
6323
- #: models/bulkseo/Twittercard.php:168 models/bulkseo/Twittercard.php:204
6324
  #, fuzzy
6325
  #| msgid "<< Leave it automatically"
6326
  msgid "Title is generated automatically."
6327
  msgstr "<< Lass es automatisch"
6328
 
6329
- #: models/bulkseo/Metas.php:242 models/bulkseo/Metas.php:355
6330
- #: models/bulkseo/Metas.php:399
6331
  #, php-format
6332
  msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
6333
  msgstr ""
6334
 
6335
- #: models/bulkseo/Metas.php:278 models/bulkseo/Metas.php:314
6336
- #: models/bulkseo/Metas.php:347
6337
  #, php-format
6338
  msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
6339
  msgstr ""
6340
 
6341
  # @ squirrly-seo
6342
- #: models/bulkseo/Metas.php:291 models/bulkseo/Metas.php:328
6343
- #: models/bulkseo/Opengraph.php:240 models/bulkseo/Opengraph.php:276
6344
- #: models/bulkseo/Twittercard.php:236 models/bulkseo/Twittercard.php:272
6345
  #, fuzzy
6346
  #| msgid "<< Leave it automatically"
6347
  msgid "Description is generated automatically."
6348
  msgstr "<< Lass es automatisch"
6349
 
6350
- #: models/bulkseo/Metas.php:434
6351
  #, php-format
6352
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
6353
  msgstr ""
@@ -6367,10 +6676,12 @@ msgid ""
6367
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
6368
  msgstr ""
6369
 
 
6370
  #: models/bulkseo/Opengraph.php:83
6371
- #, php-format
 
6372
  msgid "OG title up to %s chars"
6373
- msgstr ""
6374
 
6375
  # @ squirrly-seo
6376
  #: models/bulkseo/Opengraph.php:88
@@ -6387,13 +6698,15 @@ msgid ""
6387
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
6388
  msgstr ""
6389
 
 
6390
  #: models/bulkseo/Opengraph.php:93
6391
- #, php-format
 
6392
  msgid "OG description up to %s chars"
6393
- msgstr ""
6394
 
6395
  # @ squirrly-seo
6396
- #: models/bulkseo/Opengraph.php:98 view/SeoSettings/Metas.php:194
6397
  #, fuzzy
6398
  #| msgid "Images"
6399
  msgid "OG Image"
@@ -6438,27 +6751,27 @@ msgstr "<< Lass es automatisch"
6438
  msgid "Open Graph is customized and set correctly."
6439
  msgstr "<< Lass es automatisch"
6440
 
6441
- #: models/bulkseo/Opengraph.php:155 models/bulkseo/Opengraph.php:191
6442
- #: models/bulkseo/Opengraph.php:223 models/bulkseo/Opengraph.php:259
6443
- #: models/bulkseo/Opengraph.php:295
6444
  #, php-format
6445
  msgid ""
6446
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
6447
  "%s."
6448
  msgstr ""
6449
 
6450
- #: models/bulkseo/Opengraph.php:159 models/bulkseo/Opengraph.php:195
6451
- #: models/bulkseo/Opengraph.php:227 models/bulkseo/Opengraph.php:263
6452
- #: models/bulkseo/Opengraph.php:299
6453
  #, php-format
6454
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
6455
  msgstr ""
6456
 
6457
- #: models/bulkseo/Opengraph.php:163 models/bulkseo/Opengraph.php:199
6458
- #: models/bulkseo/Opengraph.php:231 models/bulkseo/Opengraph.php:267
6459
- #: models/bulkseo/Opengraph.php:303 models/bulkseo/Twittercard.php:159
6460
- #: models/bulkseo/Twittercard.php:195 models/bulkseo/Twittercard.php:227
6461
- #: models/bulkseo/Twittercard.php:263 models/bulkseo/Twittercard.php:299
6462
  #, php-format
6463
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
6464
  msgstr ""
@@ -6478,10 +6791,12 @@ msgid ""
6478
  "also important for SEO purposes."
6479
  msgstr ""
6480
 
 
6481
  #: models/bulkseo/Twittercard.php:79
6482
- #, php-format
 
6483
  msgid "TC title up to %s chars"
6484
- msgstr ""
6485
 
6486
  # @ squirrly-seo
6487
  #: models/bulkseo/Twittercard.php:84
@@ -6540,25 +6855,29 @@ msgstr ""
6540
  msgid "Twitter Card is generated automatically."
6541
  msgstr "<< Lass es automatisch"
6542
 
 
6543
  #: models/bulkseo/Twittercard.php:123
 
 
6544
  msgid "Twitter Card is customized and set correctly."
6545
- msgstr ""
6546
 
6547
- #: models/bulkseo/Twittercard.php:151 models/bulkseo/Twittercard.php:187
6548
- #: models/bulkseo/Twittercard.php:219 models/bulkseo/Twittercard.php:255
6549
- #: models/bulkseo/Twittercard.php:291
6550
  #, php-format
6551
  msgid ""
6552
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
6553
  "Automation%s."
6554
  msgstr ""
6555
 
6556
- #: models/bulkseo/Twittercard.php:155 models/bulkseo/Twittercard.php:191
6557
- #: models/bulkseo/Twittercard.php:223 models/bulkseo/Twittercard.php:259
6558
- #: models/bulkseo/Twittercard.php:295
6559
- #, php-format
 
6560
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
6561
- msgstr ""
6562
 
6563
  #: models/bulkseo/Visibility.php:27
6564
  msgid "Visible on Google"
@@ -6572,7 +6891,7 @@ msgid ""
6572
  "visibility settings."
6573
  msgstr ""
6574
 
6575
- #: models/bulkseo/Visibility.php:31 view/Blocks/Snippet.php:1039
6576
  msgid "Send Authority to this page"
6577
  msgstr ""
6578
 
@@ -6587,9 +6906,12 @@ msgid ""
6587
  "to green for the 'Pass Link Juice' section of this URL's visibility settings."
6588
  msgstr ""
6589
 
 
6590
  #: models/bulkseo/Visibility.php:35
 
 
6591
  msgid "Add page in sitemap"
6592
- msgstr ""
6593
 
6594
  #: models/bulkseo/Visibility.php:36
6595
  #, php-format
@@ -6615,52 +6937,55 @@ msgstr ""
6615
  msgid "Visibility is set correctly."
6616
  msgstr ""
6617
 
6618
- #: models/bulkseo/Visibility.php:87
6619
  #, php-format
6620
  msgid ""
6621
  "Noindex for this post type is deactivated from %sSEO Settings > Automation%s."
6622
  msgstr ""
6623
 
6624
- #: models/bulkseo/Visibility.php:91 models/bulkseo/Visibility.php:130
6625
  #, php-format
6626
  msgid "Robots Meta is deactivated from %sSEO Settings > SEO Metas%s."
6627
  msgstr ""
6628
 
6629
- #: models/bulkseo/Visibility.php:95 models/bulkseo/Visibility.php:134
6630
  #, php-format
6631
  msgid "SEO Metas is deactivated from %sSEO Settings > SEO Metas%s."
6632
  msgstr ""
6633
 
6634
- #: models/bulkseo/Visibility.php:104
6635
  #, php-format
6636
  msgid ""
6637
  "You selected '%s' in Settings > Reading. It's important to uncheck that "
6638
  "option."
6639
  msgstr ""
6640
 
6641
- #: models/bulkseo/Visibility.php:126
6642
  #, php-format
6643
  msgid ""
6644
  "Nofollow for this post type is deactivated from %sSEO Settings > Automation"
6645
  "%s."
6646
  msgstr ""
6647
 
6648
- #: models/bulkseo/Visibility.php:159
6649
  #, php-format
6650
  msgid ""
6651
  "This post type is excluded from sitemap. See %sSEO Settings > Automation%s."
6652
  msgstr ""
6653
 
6654
- #: models/bulkseo/Visibility.php:163
6655
  #, php-format
6656
  msgid "Sitemap XML is deactivated from %sSEO Settings > Sitemap XML%s."
6657
  msgstr ""
6658
 
6659
- #: models/domain/Patterns.php:373
 
 
 
6660
  msgid "Page"
6661
- msgstr ""
6662
 
6663
- #: models/domain/Patterns.php:374
6664
  msgid "of"
6665
  msgstr ""
6666
 
@@ -6816,22 +7141,30 @@ msgid ""
6816
  "most people search using mobile devices these days."
6817
  msgstr ""
6818
 
 
6819
  #: models/focuspages/Audit.php:149
 
 
6820
  msgid "Go to Audit"
6821
- msgstr ""
6822
 
6823
- #: models/focuspages/Audit.php:153
 
 
 
6824
  msgid "Note! The audit is not ready yet"
6825
- msgstr ""
6826
 
6827
- #: models/focuspages/Audit.php:154
6828
  msgid "Request a new audit"
6829
  msgstr ""
6830
 
 
6831
  #: models/focuspages/Authority.php:58
6832
- #, php-format
 
6833
  msgid "Authority over %s"
6834
- msgstr ""
6835
 
6836
  #: models/focuspages/Authority.php:60
6837
  #, php-format
@@ -6843,14 +7176,14 @@ msgid ""
6843
  msgstr ""
6844
 
6845
  #: models/focuspages/Authority.php:77 models/focuspages/Backlinks.php:81
6846
- #: models/focuspages/Clicks.php:114 models/focuspages/Content.php:117
6847
- #: models/focuspages/Ctr.php:114 models/focuspages/Image.php:109
6848
- #: models/focuspages/Impressions.php:114 models/focuspages/Indexability.php:125
6849
  #: models/focuspages/Innerlinks.php:86 models/focuspages/Keyword.php:133
6850
- #: models/focuspages/Length.php:90 models/focuspages/Nofollow.php:77
6851
  #: models/focuspages/Onpage.php:96 models/focuspages/Ranking.php:48
6852
- #: models/focuspages/Snippet.php:168 models/focuspages/Social.php:85
6853
- #: models/focuspages/Strategy.php:136 models/focuspages/Traffic.php:127
6854
  msgid ""
6855
  "Click to open the Assistant in the right sidebar and follow the instructions."
6856
  msgstr ""
@@ -6886,47 +7219,45 @@ msgid "Clicks from Search Engine in the last 3 months"
6886
  msgstr "Tool für Suchmaschinen"
6887
 
6888
  # @ squirrly-seo
6889
- #: models/focuspages/Clicks.php:65 models/focuspages/Clicks.php:76
6890
- #: models/focuspages/Content.php:94 models/focuspages/Ctr.php:65
6891
- #: models/focuspages/Ctr.php:76 models/focuspages/Image.php:89
6892
- #: models/focuspages/Impressions.php:65 models/focuspages/Impressions.php:76
6893
  #: models/focuspages/Keyword.php:101 models/focuspages/Keyword.php:110
6894
- #: models/focuspages/Strategy.php:114 view/Research/Briefcase.php:233
6895
  msgid "Do a research"
6896
  msgstr "Recherchieren"
6897
 
6898
  # @ squirrly-seo
6899
- #: models/focuspages/Clicks.php:75 models/focuspages/Content.php:93
6900
- #: models/focuspages/Ctr.php:75 models/focuspages/Image.php:88
6901
- #: models/focuspages/Impressions.php:75 models/focuspages/Keyword.php:108
6902
- #: models/focuspages/Keyword.php:158 models/focuspages/Keyword.php:176
6903
- #: models/focuspages/Keyword.php:199 models/focuspages/Snippet.php:153
6904
- #: models/focuspages/Strategy.php:113
6905
  #, fuzzy
6906
- #| msgid "Keyword:"
6907
- msgid "No Keyword Found"
6908
- msgstr "Schlüsselwort:"
6909
 
6910
- #: models/focuspages/Clicks.php:78 models/focuspages/Content.php:97
6911
- #: models/focuspages/Ctr.php:78 models/focuspages/Image.php:95
6912
- #: models/focuspages/Impressions.php:78 models/focuspages/Keyword.php:111
6913
- #: models/focuspages/Strategy.php:116
6914
  #, fuzzy
6915
  #| msgid "Optimize for Keyword"
6916
  msgid "Optimize for a keyword"
6917
  msgstr "Schlüsselwort optimieren"
6918
 
6919
- #: models/focuspages/Clicks.php:108 models/focuspages/Content.php:113
6920
- #: models/focuspages/Ctr.php:108 models/focuspages/Impressions.php:108
6921
- #: models/focuspages/Keyword.php:129 models/focuspages/Strategy.php:132
6922
  msgid ""
6923
  "Optimize the page for a keyword. Click to open the Assistant in the right "
6924
  "sidebar and follow the instructions."
6925
  msgstr ""
6926
 
6927
  # @ squirrly-seo
6928
- #: models/focuspages/Clicks.php:110 models/focuspages/Ctr.php:110
6929
- #: models/focuspages/Impressions.php:110
6930
  #, fuzzy
6931
  #| msgid "Google %sAnalytics ID%s`:"
6932
  msgid "Connect to Google Search Console."
@@ -6951,13 +7282,15 @@ msgid ""
6951
  msgstr ""
6952
 
6953
  #: models/focuspages/Content.php:51
 
 
6954
  msgid "Snippet is green"
6955
- msgstr ""
6956
 
6957
  #: models/focuspages/Content.php:52
6958
  #, php-format
6959
  msgid ""
6960
- "The tasks inside the %sSnippet section%s of the Focus Pages feature must all "
6961
  "be turned green. %s Why? %s If the Snippet elements are Not green, then your "
6962
  "Focus Page is not 100%% optimized. %s We've built this SEO Content section "
6963
  "especially because we wanted to help you understand that there's a lot more "
@@ -6993,9 +7326,9 @@ msgid ""
6993
  "easiest ways to ensure that the content on the page keeps being relevant."
6994
  msgstr ""
6995
 
6996
- #: models/focuspages/Content.php:90 models/focuspages/Keyword.php:104
6997
- #: view/Research/Briefcase.php:219 view/Research/HistoryDetails.php:77
6998
- #: view/Research/ResearchDetails.php:50
6999
  #, fuzzy
7000
  #| msgid "Optimize for Keyword"
7001
  msgid "Optimize for this"
@@ -7015,13 +7348,13 @@ msgid ""
7015
  msgstr ""
7016
 
7017
  # @ squirrly-seo
7018
- #: models/focuspages/Image.php:57
7019
  #, fuzzy
7020
  #| msgid "Keyword:"
7021
  msgid "Keyword in filename"
7022
  msgstr "Schlüsselwort:"
7023
 
7024
- #: models/focuspages/Image.php:60
7025
  #, php-format
7026
  msgid ""
7027
  "Your filename for one of the images in this Focus Page should be: %s keyword."
@@ -7032,16 +7365,16 @@ msgid ""
7032
  "you used it more than once."
7033
  msgstr ""
7034
 
7035
- #: models/focuspages/Image.php:85 models/focuspages/Snippet.php:156
7036
  msgid "Edit your snippet"
7037
  msgstr ""
7038
 
7039
- #: models/focuspages/Image.php:126
7040
  msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
7041
  msgstr ""
7042
 
7043
  # @ squirrly-seo
7044
- #: models/focuspages/Image.php:127
7045
  #, fuzzy
7046
  #| msgid "No results found!"
7047
  msgid "No image found"
@@ -7133,21 +7466,33 @@ msgid ""
7133
  "Search Console API to send Google the request on your behalf."
7134
  msgstr ""
7135
 
7136
- #: models/focuspages/Indexability.php:72 view/Blocks/Snippet.php:299
 
 
 
7137
  msgid "Canonical link"
7138
- msgstr ""
7139
 
 
7140
  #: models/focuspages/Indexability.php:73
 
 
7141
  msgid "Canonical"
7142
- msgstr ""
7143
 
 
7144
  #: models/focuspages/Indexability.php:73
 
 
7145
  msgid "No Canonical"
7146
- msgstr ""
7147
 
 
7148
  #: models/focuspages/Indexability.php:73
 
 
7149
  msgid "Post URL"
7150
- msgstr ""
7151
 
7152
  #: models/focuspages/Indexability.php:73
7153
  msgid "No URL"
@@ -7227,9 +7572,12 @@ msgid ""
7227
  "shot at ranking, make sure the competition is low for the keyword you choose."
7228
  msgstr ""
7229
 
 
7230
  #: models/focuspages/Keyword.php:54
 
 
7231
  msgid "Search volume"
7232
- msgstr ""
7233
 
7234
  #: models/focuspages/Keyword.php:56
7235
  #, php-format
@@ -7244,9 +7592,12 @@ msgid ""
7244
  "visiting this page. And then all the effort will have been for nothing."
7245
  msgstr ""
7246
 
 
7247
  #: models/focuspages/Keyword.php:59
 
 
7248
  msgid "Google Trend"
7249
- msgstr ""
7250
 
7251
  #: models/focuspages/Keyword.php:61
7252
  #, php-format
@@ -7268,15 +7619,25 @@ msgstr ""
7268
  msgid "Find Better Keywords"
7269
  msgstr "Ein Schlüsselwort eingeben"
7270
 
 
 
 
 
 
 
 
 
7271
  #: models/focuspages/Keyword.php:158 models/focuspages/Keyword.php:176
7272
  #: models/focuspages/Keyword.php:199
7273
- msgid "Please add a keyword first."
7274
  msgstr ""
7275
 
 
7276
  #: models/focuspages/Length.php:36
7277
- #, php-format
 
7278
  msgid "Write %s words"
7279
- msgstr ""
7280
 
7281
  # @ squirrly-seo
7282
  #: models/focuspages/Length.php:37
@@ -7319,21 +7680,21 @@ msgid ""
7319
  msgstr ""
7320
 
7321
  # @ squirrly-seo
7322
- #: models/focuspages/Length.php:66
7323
  #, fuzzy
7324
  #| msgid "Squirrly settings"
7325
  msgid "Edit Page"
7326
  msgstr "Squirrly Einstellungen"
7327
 
7328
  # @ squirrly-seo
7329
- #: models/focuspages/Length.php:86
7330
  #, fuzzy
7331
  #| msgid "Google %sAnalytics ID%s`:"
7332
  msgid "Connect to Google Analytics first."
7333
  msgstr "Google %sAnalytics ID%s`:"
7334
 
7335
  # @ squirrly-seo
7336
- #: models/focuspages/Length.php:122 models/focuspages/Traffic.php:144
7337
  #: models/focuspages/Traffic.php:160 models/focuspages/Traffic.php:176
7338
  #, fuzzy
7339
  #| msgid "Google %sAnalytics ID%s`:"
@@ -7399,8 +7760,10 @@ msgid ""
7399
  msgstr ""
7400
 
7401
  #: models/focuspages/Onpage.php:61
 
 
7402
  msgid "Patterns activated"
7403
- msgstr ""
7404
 
7405
  #: models/focuspages/Onpage.php:62
7406
  #, php-format
@@ -7413,7 +7776,7 @@ msgid ""
7413
  "%s It's for your ranking safety."
7414
  msgstr ""
7415
 
7416
- #: models/focuspages/Onpage.php:65 view/SeoSettings/Robots.php:27
7417
  msgid "Robots File"
7418
  msgstr ""
7419
 
@@ -7443,7 +7806,7 @@ msgstr "Einstellungen speichern"
7443
  msgid "Nofollow on external links"
7444
  msgstr ""
7445
 
7446
- #: models/focuspages/Snippet.php:92
7447
  #, php-format
7448
  msgid ""
7449
  "To turn this task to green, go and define a title for this page. You can "
@@ -7457,16 +7820,15 @@ msgid ""
7457
  msgstr ""
7458
 
7459
  # @ squirrly-seo
7460
- #: models/focuspages/Snippet.php:95 models/focuspages/Snippet.php:220
7461
- #: models/focuspages/Snippet.php:242 view/Blocks/Snippet.php:620
7462
- #: view/Blocks/Snippet.php:878 view/SeoSettings/Automation.php:134
7463
- #: view/SeoSettings/Metas.php:176
7464
  #, fuzzy
7465
  #| msgid "Description:"
7466
  msgid "Description"
7467
  msgstr "Beschreibung:"
7468
 
7469
- #: models/focuspages/Snippet.php:97
7470
  #, php-format
7471
  msgid ""
7472
  "To turn this task to green, go and define a %sMeta description%s for this "
@@ -7480,17 +7842,19 @@ msgid ""
7480
  "boost CTR (click-through rates)."
7481
  msgstr ""
7482
 
7483
- #: models/focuspages/Snippet.php:102
7484
  #, php-format
7485
  msgid "Keyword %s must be present in Title"
7486
  msgstr ""
7487
 
7488
- #: models/focuspages/Snippet.php:107
7489
- #, php-format
 
 
7490
  msgid "Keyword %s must be present in Description"
7491
- msgstr ""
7492
 
7493
- #: models/focuspages/Snippet.php:108
7494
  #, php-format
7495
  msgid ""
7496
  "Same as with the title task. %s If a user reads the description of your page "
@@ -7502,13 +7866,13 @@ msgid ""
7502
  "lot about this, because that's what people want to find on the search engine."
7503
  msgstr ""
7504
 
7505
- #: models/focuspages/Snippet.php:111
7506
  #, fuzzy
7507
  #| msgid "Optimize for Keyword"
7508
  msgid "Open Graph - full definition"
7509
  msgstr "Schlüsselwort optimieren"
7510
 
7511
- #: models/focuspages/Snippet.php:113
7512
  #, php-format
7513
  msgid ""
7514
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -7520,13 +7884,13 @@ msgid ""
7520
  "relevant for your search engine position placements."
7521
  msgstr ""
7522
 
7523
- #: models/focuspages/Snippet.php:116
7524
  #, fuzzy
7525
  #| msgid "Optimize for Keyword"
7526
  msgid "Twitter Cards - full definition"
7527
  msgstr "Schlüsselwort optimieren"
7528
 
7529
- #: models/focuspages/Snippet.php:118
7530
  #, php-format
7531
  msgid ""
7532
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -7536,13 +7900,13 @@ msgid ""
7536
  "that you won't miss a beat."
7537
  msgstr ""
7538
 
7539
- #: models/focuspages/Snippet.php:121
7540
  #, fuzzy
7541
  #| msgid "Optimize for Keyword"
7542
  msgid "JSON-LD definition"
7543
  msgstr "Schlüsselwort optimieren"
7544
 
7545
- #: models/focuspages/Snippet.php:122
7546
  #, php-format
7547
  msgid ""
7548
  "To turn this task to green, you can easily use the JSON-LD section inside "
@@ -7550,14 +7914,16 @@ msgid ""
7550
  "fields with the proper information. %s This gives important Semantic context "
7551
  "to Google and it plays a role in determining how high your page should be "
7552
  "placed in search rankings. %s You can validate your existing JSON-LD with: "
7553
- "%shttps://search.google.com/structured-data/testing-tool%s"
7554
  msgstr ""
7555
 
7556
- #: models/focuspages/Snippet.php:125
 
 
7557
  msgid "Customized"
7558
- msgstr ""
7559
 
7560
- #: models/focuspages/Snippet.php:126
7561
  #, php-format
7562
  msgid ""
7563
  "The Snippets of your most important pages should be customized. %s Use the "
@@ -7572,7 +7938,7 @@ msgid ""
7572
  msgstr ""
7573
 
7574
  # @ squirrly-seo
7575
- #: models/focuspages/Snippet.php:221 models/focuspages/Snippet.php:243
7576
  #, fuzzy
7577
  #| msgid "Images"
7578
  msgid "Image"
@@ -7611,13 +7977,19 @@ msgstr "Einstellungen speichern"
7611
  msgid "Add keyword to Briefcase"
7612
  msgstr "Recherchieren"
7613
 
 
7614
  #: models/focuspages/Strategy.php:71
 
 
7615
  msgid "Great! The keyword exists in Briefcase"
7616
- msgstr ""
7617
 
 
7618
  #: models/focuspages/Strategy.php:71
 
 
7619
  msgid "The keyword does not exist in Briefcase"
7620
- msgstr ""
7621
 
7622
  #: models/focuspages/Strategy.php:72
7623
  #, php-format
@@ -7682,7 +8054,7 @@ msgstr ""
7682
  msgid "Manage Strategy"
7683
  msgstr ""
7684
 
7685
- #: models/focuspages/Strategy.php:168 models/focuspages/Strategy.php:175
7686
  msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
7687
  msgstr ""
7688
 
@@ -7799,258 +8171,299 @@ msgstr ""
7799
  msgid "No Squirrly SEO Robots found."
7800
  msgstr "Squirrly LIVE SEO-Assistent"
7801
 
7802
- #: view/Assistant/Assistant.php:16
 
 
 
7803
  msgid "Optimize with Squirrly Live Assistant"
7804
- msgstr ""
7805
 
7806
- #: view/Assistant/Assistant.php:17
7807
  msgid ""
7808
- "Use Squirrly to optimize the content for your posts, pages, products, etc."
 
7809
  msgstr ""
7810
 
7811
  # @ squirrly-seo
7812
- #: view/Assistant/Assistant.php:31
7813
  #, fuzzy
7814
  #| msgid "No results found!"
7815
  msgid "Practice/Test Round"
7816
  msgstr "Keine Ergebnisse gefunden!"
7817
 
7818
  # @ squirrly-seo
7819
- #: view/Assistant/Assistant.php:40
7820
  #, fuzzy
7821
  #| msgid "+ Add keyword"
7822
  msgid "Add New"
7823
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
7824
 
7825
- #: view/Assistant/Settings.php:7 view/Audits/Addpage.php:8
7826
- #: view/Audits/Audit.php:8 view/Audits/Audits.php:8 view/Audits/Compare.php:11
7827
- #: view/Audits/Settings.php:7 view/BulkSeo/Bulkseo.php:12
7828
- #: view/FocusPages/Addpage.php:8 view/FocusPages/Pagelist.php:8
7829
- #: view/FocusPages/Settings.php:7 view/Ranking/Rankings.php:17
7830
- #: view/Ranking/Settings.php:7 view/SeoSettings/Advanced.php:7
7831
- #: view/SeoSettings/Automation.php:7 view/SeoSettings/Favicon.php:7
7832
- #: view/SeoSettings/Metas.php:7 view/SeoSettings/Robots.php:7
7833
- #: view/SeoSettings/Sitemap.php:7 view/SeoSettings/Social.php:7
7834
- #: view/SeoSettings/Tracking.php:7 view/SeoSettings/Webmaster.php:7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7835
  msgid ""
7836
  "You do not have permission to access this page. You need Squirrly SEO Admin "
7837
  "role."
7838
  msgstr ""
7839
 
7840
  # @ squirrly-seo
7841
- #: view/Assistant/Settings.php:25
7842
  #, fuzzy
7843
  #| msgid "Save settings"
7844
  msgid "Live Assistant Settings"
7845
  msgstr "Einstellungen speichern"
7846
 
7847
  # @ squirrly-seo
7848
- #: view/Assistant/Settings.php:40
7849
  #, fuzzy
7850
  #| msgid "Squirrly Options"
7851
  msgid "Squirrly Tooltips"
7852
  msgstr "Squirrly Optionen"
7853
 
7854
- #: view/Assistant/Settings.php:41
7855
  #, php-format
7856
  msgid ""
7857
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. 'Enter a "
7858
  "keyword')."
7859
  msgstr ""
7860
 
 
 
 
 
 
 
 
 
 
 
 
7861
  # @ squirrly-seo
7862
- #: view/Assistant/Settings.php:51
7863
  #, fuzzy
7864
  #| msgid "Keywords:"
7865
  msgid "Download Remote Images"
7866
  msgstr "Schlüsselwörter:"
7867
 
7868
- #: view/Assistant/Settings.php:52
7869
  #, php-format
7870
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
7871
  msgstr ""
7872
 
7873
- #: view/Assistant/Settings.php:53
7874
  msgid ""
7875
  "Prevent from losing the images you use in your articles in case the remote "
7876
  "images are deleted."
7877
  msgstr ""
7878
 
7879
  # @ squirrly-seo
7880
- #: view/Assistant/Settings.php:64
7881
  #, fuzzy
7882
  #| msgid "Show only Copyright Free images"
7883
- msgid "Copyright Free Images"
7884
  msgstr "Nur urheberrechtfreie Bilder zeigen"
7885
 
7886
- #: view/Assistant/Settings.php:65
7887
  #, php-format
7888
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7889
  msgstr ""
7890
 
7891
  # @ squirrly-seo
7892
- #: view/Assistant/Settings.php:75
7893
  #, fuzzy
7894
  #| msgid "Save settings"
7895
  msgid "Live Assistant Type"
7896
  msgstr "Einstellungen speichern"
7897
 
7898
- #: view/Assistant/Settings.php:76
7899
  msgid "Select how you want Squirrly Live Assistant to load in editor."
7900
  msgstr ""
7901
 
7902
- #: view/Assistant/Settings.php:80
7903
  msgid "Auto"
7904
  msgstr ""
7905
 
7906
- #: view/Assistant/Settings.php:81
7907
  msgid "Integrated Box"
7908
  msgstr ""
7909
 
7910
- #: view/Assistant/Settings.php:82
7911
  msgid "Floating Box"
7912
  msgstr ""
7913
 
7914
- #: view/Assistant/Settings.php:95
 
 
 
7915
  msgid "Activate Live Assistant in Frontend"
7916
- msgstr ""
7917
 
7918
- #: view/Assistant/Settings.php:96
7919
  msgid ""
7920
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7921
  "with Builders."
7922
  msgstr ""
7923
 
7924
- #: view/Assistant/Settings.php:97
7925
  msgid "Currently supports the Elementor Builder plugin."
7926
  msgstr ""
7927
 
7928
- #: view/Assistant/Settings.php:104
7929
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
7930
  msgstr ""
7931
 
7932
- #: view/Assistant/Settings.php:106
7933
  msgid ""
7934
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
7935
  "post types."
7936
  msgstr ""
7937
 
7938
- #: view/Assistant/Settings.php:112
7939
  #, fuzzy
7940
  #| msgid "Recent discussions:"
7941
  msgid "Exclusions"
7942
  msgstr "Bisherige Diskussionen:"
7943
 
7944
- #: view/Assistant/Settings.php:113
7945
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7946
  msgstr ""
7947
 
7948
- #: view/Assistant/Settings.php:114
7949
- msgid "Hold Control key to select multiple places"
7950
- msgstr ""
7951
-
7952
  # @ squirrly-seo
7953
- #: view/Assistant/Settings.php:141 view/SeoSettings/Automation.php:474
7954
- #: view/SeoSettings/Automation.php:595 view/SeoSettings/Jsonld.php:243
7955
- #: view/SeoSettings/Metas.php:241 view/SeoSettings/Sitemap.php:305
7956
- #: view/SeoSettings/Social.php:372
7957
  #, fuzzy
7958
  #| msgid "Save settings"
7959
  msgid "Show Advanced Options"
7960
  msgstr "Einstellungen speichern"
7961
 
7962
  # @ squirrly-seo
7963
- #: view/Assistant/Settings.php:142 view/SeoSettings/Automation.php:475
7964
- #: view/SeoSettings/Automation.php:596 view/SeoSettings/Jsonld.php:244
7965
- #: view/SeoSettings/Metas.php:242 view/SeoSettings/Sitemap.php:306
7966
- #: view/SeoSettings/Social.php:373
7967
  #, fuzzy
7968
  #| msgid "Save settings"
7969
  msgid "Hide Advanced Options"
7970
  msgstr "Einstellungen speichern"
7971
 
7972
  # @ squirrly-seo
7973
- #: view/Assistant/Settings.php:145 view/Audits/Settings.php:60
7974
- #: view/Ranking/Settings.php:174 view/SeoSettings/Advanced.php:90
7975
- #: view/SeoSettings/Automation.php:478 view/SeoSettings/Automation.php:599
7976
- #: view/SeoSettings/Backup.php:208 view/SeoSettings/Favicon.php:107
7977
- #: view/SeoSettings/Jsonld.php:247 view/SeoSettings/Metas.php:245
7978
- #: view/SeoSettings/Robots.php:80 view/SeoSettings/Sitemap.php:309
7979
- #: view/SeoSettings/Social.php:376 view/SeoSettings/Tracking.php:142
7980
- #: view/SeoSettings/Webmaster.php:122
7981
  #, fuzzy
7982
  #| msgid "Save settings"
7983
  msgid "Save Settings"
7984
  msgstr "Einstellungen speichern"
7985
 
7986
- #: view/Audits/Addpage.php:22
7987
  msgid "Add a page in Audit"
7988
  msgstr ""
7989
 
7990
- #: view/Audits/Addpage.php:23 view/Audits/Audit.php:26
7991
- #: view/Audits/Audits.php:26 view/Audits/Compare.php:29
7992
  msgid ""
7993
  "Verifies the online presence of your website by knowing how your website is "
7994
  "performing in terms of Blogging, SEO, Social, Authority, Links, and Traffic"
7995
  msgstr ""
7996
 
7997
- #: view/Audits/Addpage.php:93 view/BulkSeo/Bulkseo.php:101
7998
  #: view/FocusPages/Addpage.php:92
7999
  msgid "Any status"
8000
  msgstr ""
8001
 
8002
  # @ squirrly-seo
8003
- #: view/Audits/Addpage.php:113 view/BulkSeo/Bulkseo.php:121
8004
- #: view/FocusPages/Addpage.php:112 view/Research/Research.php:206
8005
  #, fuzzy
8006
  #| msgid "Do a research"
8007
  msgid "Search"
8008
  msgstr "Recherchieren"
8009
 
8010
  # @ squirrly-seo
8011
- #: view/Audits/Addpage.php:115 view/Audits/Audit.php:38
8012
- #: view/Audits/Compare.php:44 view/BulkSeo/Bulkseo.php:123
8013
- #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:6
8014
- #: view/Ranking/Rankings.php:58 view/Research/Briefcase.php:37
8015
  #, fuzzy
8016
  #| msgid "Keywords:"
8017
  msgid "Show All"
8018
  msgstr "Schlüsselwörter:"
8019
 
8020
- #: view/Audits/Addpage.php:133 view/FocusPages/Addpage.php:133
8021
  msgid "Option"
8022
  msgstr ""
8023
 
8024
- #: view/Audits/Addpage.php:175
8025
  msgid "Add Page to Audit"
8026
  msgstr ""
8027
 
8028
  # @ squirrly-seo
8029
- #: view/Audits/Addpage.php:179
8030
  #, fuzzy
8031
  #| msgid "Send Question"
8032
  msgid "See Audits"
8033
  msgstr "Senden Sie Ihre Frage"
8034
 
8035
- #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
 
8036
  #: view/FocusPages/Addpage.php:196
 
 
8037
  msgid "Prev Page"
8038
- msgstr ""
8039
 
8040
  # @ squirrly-seo
8041
- #: view/Audits/Addpage.php:194 view/BulkSeo/Bulkseo.php:199
8042
  #: view/FocusPages/Addpage.php:197
8043
  #, fuzzy
8044
  #| msgid "Squirrly settings"
8045
  msgid "Next Page"
8046
  msgstr "Squirrly Einstellungen"
8047
 
8048
- #: view/Audits/Addpage.php:202 view/FocusPages/Addpage.php:205
8049
- msgid "No page found. Select a different Post Type."
8050
  msgstr ""
8051
 
8052
  # @ squirrly-seo
8053
- #: view/Audits/Audit.php:25 view/Audits/Compare.php:28
8054
  #, fuzzy
8055
  #| msgid "Your E-mail:"
8056
  msgid "Audit Details"
@@ -8077,25 +8490,25 @@ msgstr "Nur urheberrechtfreie Bilder zeigen"
8077
  msgid "Show Only Incompleted Tasks"
8078
  msgstr "Nur urheberrechtfreie Bilder zeigen"
8079
 
8080
- #: view/Audits/AuditPageRow.php:40
8081
  msgid "Last checked"
8082
  msgstr ""
8083
 
8084
  # @ squirrly-seo
8085
- #: view/Audits/AuditPageRow.php:46
8086
  #, fuzzy
8087
  #| msgid "Could not send the email..."
8088
  msgid "Could not create the audit for this URL"
8089
  msgstr "Konnte E-Mail nicht senden ..."
8090
 
8091
  # @ squirrly-seo
8092
- #: view/Audits/AuditPageRow.php:46
8093
  #, fuzzy
8094
  #| msgid "An error occured."
8095
  msgid "error code"
8096
  msgstr "Ein Fehler ist aufgetreten."
8097
 
8098
- #: view/Audits/AuditPageRow.php:48
8099
  #, php-format
8100
  msgid ""
8101
  "The way your WordPress site is currently hosted can affect the way Squirrly "
@@ -8106,199 +8519,218 @@ msgid ""
8106
  msgstr ""
8107
 
8108
  # @ squirrly-seo
8109
- #: view/Audits/AuditPageRow.php:49 view/Audits/AuditPageRow.php:77
8110
- #: view/FocusPages/FocusPageRow.php:110 view/FocusPages/FocusPageRow.php:187
8111
  #, fuzzy
8112
  #| msgid "Squirrly LIVE SEO assistant"
8113
  msgid "Inspect URL"
8114
  msgstr "Squirrly LIVE SEO-Assistent"
8115
 
8116
  # @ squirrly-seo
8117
- #: view/Audits/AuditPageRow.php:65
8118
  #, fuzzy
8119
  #| msgid "Could not send the email..."
8120
  msgid "Do you want to delete the Audit Page?"
8121
  msgstr "Konnte E-Mail nicht senden ..."
8122
 
8123
- #: view/Audits/AuditPageRow.php:71
8124
- msgid "Delete Page from Audit"
8125
  msgstr ""
8126
 
8127
  # @ squirrly-seo
8128
- #: view/Audits/AuditPages.php:6
8129
  #, fuzzy
8130
  #| msgid "Squirrly settings"
8131
  msgid "Audited pages"
8132
  msgstr "Squirrly Einstellungen"
8133
 
8134
- #: view/Audits/AuditPages.php:13 view/FocusPages/FocusPages.php:53
8135
  msgid "Permalink"
8136
  msgstr ""
8137
 
8138
- #: view/Audits/AuditPages.php:47
8139
  #, php-format
8140
  msgid "No data for this filter. %sShow All%s Audit Pages."
8141
  msgstr ""
8142
 
8143
  # @ squirrly-seo
8144
- #: view/Audits/AuditPages.php:53
8145
  #, fuzzy
8146
  #| msgid "Squirrly LIVE SEO assistant"
8147
  msgid "Welcome to Squirrly SEO Audits"
8148
  msgstr "Squirrly LIVE SEO-Assistent"
8149
 
8150
- #: view/Audits/AuditPages.php:55
8151
  msgid "Add a new page for Audit to get started"
8152
  msgstr ""
8153
 
8154
- #: view/Audits/AuditPages.php:68 view/Errors/Error.php:20
8155
- #: view/FocusPages/FocusPages.php:123 view/Ranking/Rankings.php:456
8156
  #, php-format
8157
  msgid ""
8158
  "There is a connection error with Squirrly Cloud. Please check the connection "
8159
  "and %srefresh the page%s."
8160
  msgstr ""
8161
 
8162
- #: view/Audits/AuditStats.php:29
8163
  msgid ""
8164
  "Your score is low. A medium score is over 50, and a good score is over 80."
8165
  msgstr ""
8166
 
8167
- #: view/Audits/AuditStats.php:31
8168
  msgid "Your score is medium. A good score is over 80."
8169
  msgstr ""
8170
 
8171
- #: view/Audits/AuditStats.php:33
8172
  msgid "Your score is good. Keep it as high as posible for good results."
8173
  msgstr ""
8174
 
8175
  # @ squirrly-seo
8176
- #: view/Audits/AuditStats.php:40 view/Audits/AuditStats.php:234
8177
- #: view/Audits/Compare.php:73
8178
  #, fuzzy
8179
  #| msgid "Squirrly settings"
8180
  msgid "Audit Score"
8181
  msgstr "Squirrly Einstellungen"
8182
 
8183
  # @ squirrly-seo
8184
- #: view/Audits/AuditStats.php:53
8185
  #, fuzzy
8186
  #| msgid "Squirrly settings"
8187
  msgid "Your audit score is"
8188
  msgstr "Squirrly Einstellungen"
8189
 
8190
- #: view/Audits/AuditStats.php:62
8191
  msgid "Add a new page for Audit"
8192
  msgstr ""
8193
 
8194
  # @ squirrly-seo
8195
- #: view/Audits/AuditStats.php:70
8196
  #, fuzzy
8197
  #| msgid "Your E-mail:"
8198
  msgid "Audit Date"
8199
  msgstr "Ihre E-Mail Adresse:"
8200
 
8201
- #: view/Audits/AuditStats.php:77 view/Audits/AuditStats.php:101
8202
  msgid "You can refresh the audit once every hour"
8203
  msgstr ""
8204
 
8205
- #: view/Audits/AuditStats.php:79 view/Audits/AuditStats.php:103
8206
  msgid "Request Website Audit"
8207
  msgstr ""
8208
 
8209
  # @ squirrly-seo
8210
- #: view/Audits/AuditStats.php:89
8211
  #, fuzzy
8212
  #| msgid "Squirrly settings"
8213
  msgid "Audit in progress"
8214
  msgstr "Squirrly Einstellungen"
8215
 
8216
  # @ squirrly-seo
8217
- #: view/Audits/AuditStats.php:95
8218
  #, fuzzy
8219
  #| msgid "Squirrly settings"
8220
  msgid "Audit not ready yet"
8221
  msgstr "Squirrly Einstellungen"
8222
 
8223
- #: view/Audits/AuditStats.php:122 view/Audits/AuditStats.php:236
8224
- #: view/Ranking/Rankings.php:408 view/Research/History.php:31
8225
  msgid "Date"
8226
  msgstr ""
8227
 
8228
- #: view/Audits/AuditStats.php:122
 
 
 
8229
  msgid "On-Page"
8230
- msgstr ""
8231
 
8232
- #: view/Audits/AuditStats.php:122
 
 
 
8233
  msgid "Off-Page"
8234
- msgstr ""
8235
 
8236
- #: view/Audits/AuditStats.php:145
8237
  #, php-format
8238
  msgid "You've completed %s tasks from %s"
8239
  msgstr ""
8240
 
8241
- #: view/Audits/AuditStats.php:169 view/Audits/Compare.php:54
8242
  msgid "Scores"
8243
  msgstr ""
8244
 
8245
- #: view/Audits/AuditStats.php:170
8246
  #, php-format
8247
  msgid "the latest %s days evolution for Audit"
8248
  msgstr ""
8249
 
8250
- #: view/Audits/AuditStats.php:195 view/FocusPages/FocusPageStats.php:140
8251
- #: view/Goals/CheckSeo.php:20 view/Ranking/Rankings.php:155
8252
  msgid "Progress & Achievements"
8253
  msgstr ""
8254
 
8255
- #: view/Audits/AuditStats.php:196
8256
  #, php-format
8257
  msgid "the latest %s days progress for Audit Pages"
8258
  msgstr ""
8259
 
8260
  # @ squirrly-seo
8261
- #: view/Audits/AuditStats.php:206 view/FocusPages/FocusPageStats.php:151
8262
- #: view/Ranking/Rankings.php:184
8263
  #, fuzzy
8264
  #| msgid "No results found!"
8265
  msgid "No progress found yet"
8266
  msgstr "Keine Ergebnisse gefunden!"
8267
 
8268
  # @ squirrly-seo
8269
- #: view/Audits/AuditStats.php:219
8270
  #, fuzzy
8271
  #| msgid "Squirrly settings"
8272
  msgid "Audit History"
8273
  msgstr "Squirrly Einstellungen"
8274
 
8275
- #: view/Audits/AuditStats.php:226
 
 
 
8276
  msgid "Compare Audits"
8277
- msgstr ""
8278
 
8279
- #: view/Audits/AuditStats.php:235
 
 
 
8280
  msgid "Page(s)"
8281
- msgstr ""
8282
 
8283
  # @ squirrly-seo
8284
- #: view/Audits/AuditStats.php:252
8285
  #, fuzzy
8286
  #| msgid "Images"
8287
  msgid "pages"
8288
  msgstr "Bilder"
8289
 
8290
- #: view/Audits/AuditStats.php:256
8291
- msgid "Show Audit"
8292
  msgstr ""
8293
 
8294
  # @ squirrly-seo
8295
- #: view/Audits/Audits.php:25
 
 
 
 
 
 
 
8296
  #, fuzzy
8297
  #| msgid "Squirrly settings"
8298
  msgid "Audits"
8299
  msgstr "Squirrly Einstellungen"
8300
 
8301
- #: view/Audits/Audits.php:66
8302
  #, php-format
8303
  msgid ""
8304
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
@@ -8306,67 +8738,81 @@ msgid ""
8306
  "involved."
8307
  msgstr ""
8308
 
8309
- #: view/Audits/Audits.php:73
8310
  #, php-format
8311
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
8312
  msgstr ""
8313
 
8314
  # @ squirrly-seo
8315
- #: view/Audits/Audits.php:94 view/FocusPages/Pagelist.php:91
8316
  #, fuzzy
8317
  #| msgid "Squirrly LIVE SEO assistant"
8318
  msgid "Squirrly Inspect URL"
8319
  msgstr "Squirrly LIVE SEO-Assistent"
8320
 
8321
  # @ squirrly-seo
8322
- #: view/Audits/Settings.php:30
8323
  #, fuzzy
8324
  #| msgid "Squirrly settings"
8325
  msgid "Audit Settings"
8326
  msgstr "Squirrly Einstellungen"
8327
 
8328
  # @ squirrly-seo
8329
- #: view/Audits/Settings.php:43
8330
  #, fuzzy
8331
  #| msgid "Your E-mail:"
8332
  msgid "Audit Email"
8333
  msgstr "Ihre E-Mail Adresse:"
8334
 
8335
- #: view/Audits/Settings.php:44
8336
  msgid "Enter the email address on which you want to receive the weekly audits."
8337
  msgstr ""
8338
 
8339
- #: view/Blocks/Account.php:10
 
 
 
8340
  msgid "Account Info Unavailable"
8341
- msgstr ""
8342
 
8343
- #: view/Blocks/Account.php:43
8344
  msgid "Your Plan"
8345
  msgstr ""
8346
 
8347
  # @ squirrly-seo
8348
- #: view/Blocks/Account.php:44
8349
  #, fuzzy
8350
  #| msgid "Squirrly.co Login"
8351
  msgid "Check Account Info"
8352
  msgstr "Squirrly.co Login"
8353
 
8354
  # @ squirrly-seo
8355
- #: view/Blocks/Account.php:49 view/Blocks/Login.php:11 view/Blocks/Login.php:29
8356
  #, fuzzy
8357
  #| msgid "Email:"
8358
  msgid "Email"
8359
  msgstr "Ihre E-Mail Adresse:"
8360
 
8361
- #: view/Blocks/Account.php:55
8362
  #, php-format
8363
  msgid "Due Date: %s"
8364
  msgstr ""
8365
 
8366
- #: view/Blocks/Connect.php:14 view/Blocks/Connect.php:28
 
 
 
 
 
 
 
 
 
8367
  msgid ""
8368
  "This option is used to track innerlinks and insights for your Focus Pages "
8369
- "and give detailed informations about them."
 
 
8370
  msgstr ""
8371
 
8372
  #: view/Blocks/Connect.php:16
@@ -8374,613 +8820,339 @@ msgid "Let Squirrly Cloud get data for Focus Pages"
8374
  msgstr ""
8375
 
8376
  # @ squirrly-seo
8377
- #: view/Blocks/Connect.php:17
8378
  #, fuzzy
8379
  #| msgid "Connecting ..."
8380
  msgid "Connect"
8381
  msgstr "Verbinden ..."
8382
 
8383
- #: view/Blocks/Connect.php:30
8384
  msgid "Let Squirrly API get data for Focus Pages"
8385
  msgstr ""
8386
 
8387
  # @ squirrly-seo
8388
- #: view/Blocks/Connect.php:31
8389
  #, fuzzy
8390
  #| msgid "Connecting ..."
8391
  msgid "disconnect"
8392
  msgstr "Verbinden ..."
8393
 
8394
- #: view/Blocks/Dashboard.php:21
8395
  msgid "Upgrade your SEO with Squirrly and improve your rankings on Google"
8396
  msgstr ""
8397
 
8398
- #: view/Blocks/Dashboard.php:31
8399
  msgid "Congratulations! you have success messages"
8400
  msgstr ""
8401
 
8402
- #: view/Blocks/Dashboard.php:50 view/Blocks/Dashboard.php:88
8403
  msgid "others"
8404
  msgstr ""
8405
 
8406
- #: view/Blocks/Dashboard.php:59
8407
  #, php-format
8408
  msgid "See %s other achievements"
8409
  msgstr ""
8410
 
8411
- #: view/Blocks/Dashboard.php:61
8412
  msgid "See today's achievements"
8413
  msgstr ""
8414
 
8415
- #: view/Blocks/Dashboard.php:70
8416
- msgid "You got new goals for today"
8417
  msgstr ""
8418
 
8419
- #: view/Blocks/Dashboard.php:97
8420
  #, php-format
8421
  msgid "See %s other goals"
8422
  msgstr ""
8423
 
8424
- #: view/Blocks/Dashboard.php:99
8425
  msgid "See today's goals"
8426
  msgstr ""
8427
 
8428
- #: view/Blocks/Dashboard.php:105 view/Goals/Goals.php:213
8429
  #, php-format
8430
  msgid "No other goals for today. %sGood job!"
8431
  msgstr ""
8432
 
8433
- #: view/Blocks/Dashboard.php:107 view/Goals/Goals.php:224
8434
  msgid "Rank your best pages with Focus Pages"
8435
  msgstr ""
8436
 
8437
- #: view/Blocks/Dashboard.php:110 view/Goals/Goals.php:221
8438
  msgid "Boost your SEO with Bulk SEO"
8439
  msgstr ""
8440
 
8441
- #: view/Blocks/Dashboard.php:135 view/Goals/CheckSeo.php:118
8442
  msgid "Checking the website ..."
8443
  msgstr ""
8444
 
8445
- #: view/Blocks/Features.php:8
8446
- msgid ""
8447
- "The Assistant who maps the road to Better Rankings. For every single page. "
8448
- "Always with different specifics."
8449
- msgstr ""
 
8450
 
8451
- #: view/Blocks/Features.php:9 view/Blocks/Features.php:18
8452
- #: view/Blocks/Features.php:36 view/Blocks/Features.php:189
8453
- msgid "Freemium"
8454
  msgstr ""
8455
 
8456
  # @ squirrly-seo
8457
- #: view/Blocks/Features.php:16 view/Research/Research.php:18
8458
  #, fuzzy
8459
- #| msgid "Squirrly Keyword Research"
8460
- msgid "Keyword Research"
8461
- msgstr "Squirrly Erweiterte Suche!"
8462
 
8463
- #: view/Blocks/Features.php:17
8464
- msgid ""
8465
- "Find the Best Keywords that your own website can rank for and get "
8466
- "personalized competition data for each keyword."
8467
  msgstr ""
8468
 
8469
- #: view/Blocks/Features.php:25
8470
- msgid "SEO Briefcase"
8471
  msgstr ""
8472
 
8473
- #: view/Blocks/Features.php:26
8474
- msgid ""
8475
- "Add keywords in your portfolio based on your current Campaigns, Trends, "
8476
- "Performance for a successful SEO strategy."
8477
- msgstr ""
8478
-
8479
- #: view/Blocks/Features.php:27 view/Blocks/Features.php:45
8480
- #: view/Blocks/Features.php:54 view/Blocks/Features.php:63
8481
- #: view/Blocks/Features.php:72 view/Blocks/Features.php:81
8482
- #: view/Blocks/Features.php:90 view/Blocks/Features.php:99
8483
- #: view/Blocks/Features.php:108 view/Blocks/Features.php:117
8484
- #: view/Blocks/Features.php:126 view/Blocks/Features.php:135
8485
- #: view/Blocks/Features.php:144 view/Blocks/Features.php:153
8486
- #: view/Blocks/Features.php:162 view/Blocks/Features.php:171
8487
- #: view/Blocks/Features.php:180 view/Blocks/Features.php:198
8488
- msgid "Free"
8489
- msgstr ""
8490
-
8491
- #: view/Blocks/Features.php:35
8492
- msgid ""
8493
- "Publish content that is fully optimized for BOTH Search Engines and Humans – "
8494
- "every single time!"
8495
- msgstr ""
8496
-
8497
- #: view/Blocks/Features.php:43
8498
- msgid "Google SERP with GSC"
8499
- msgstr ""
8500
-
8501
- #: view/Blocks/Features.php:44
8502
- msgid ""
8503
- "Get Google Search Console average possitions, clicks and impressions for "
8504
- "organic keywords."
8505
- msgstr ""
8506
-
8507
- # @ squirrly-seo
8508
- #: view/Blocks/Features.php:52
8509
- #, fuzzy
8510
- #| msgid "automatically"
8511
- msgid "SEO Automation"
8512
- msgstr "automatisch"
8513
-
8514
- #: view/Blocks/Features.php:53
8515
- msgid ""
8516
- "Configure the SEO in 2 minutes for the entire website without writing a line "
8517
- "of code."
8518
- msgstr ""
8519
-
8520
- # @ squirrly-seo
8521
- #: view/Blocks/Features.php:61
8522
- #, fuzzy
8523
- #| msgid "Squirrly LIVE SEO assistant"
8524
- msgid "Bulk SEO & Snippets"
8525
- msgstr "Squirrly LIVE SEO-Assistent"
8526
-
8527
- #: view/Blocks/Features.php:62 view/BulkSeo/Bulkseo.php:30
8528
- msgid ""
8529
- "Simplify the SEO process for all your posts types and optimize them in just "
8530
- "minutes."
8531
- msgstr ""
8532
-
8533
- #: view/Blocks/Features.php:70 view/Goals/Goals.php:34
8534
- msgid "Daily SEO Goals"
8535
- msgstr ""
8536
-
8537
- #: view/Blocks/Features.php:71
8538
- msgid ""
8539
- "The Non-Human SEO Consultant that prepares you goals that take you closer to "
8540
- "the first page of Google."
8541
- msgstr ""
8542
-
8543
- #: view/Blocks/Features.php:79
8544
- #, fuzzy
8545
- #| msgid "Optimize for Keyword"
8546
- msgid "Open Graph Optimization"
8547
- msgstr "Schlüsselwort optimieren"
8548
-
8549
- #: view/Blocks/Features.php:80
8550
- msgid "Add Social Open Graph protocol so that your Facebook shares look good."
8551
- msgstr ""
8552
-
8553
- #: view/Blocks/Features.php:88
8554
- #, fuzzy
8555
- #| msgid "Optimize for Keyword"
8556
- msgid "Twitter Card Optimization"
8557
- msgstr "Schlüsselwort optimieren"
8558
-
8559
- #: view/Blocks/Features.php:89
8560
- msgid "Add Twitter Card in your tweets so that your Twitter shares look good."
8561
- msgstr ""
8562
-
8563
- #: view/Blocks/Features.php:97
8564
- msgid "XML Sitemap"
8565
- msgstr ""
8566
-
8567
- #: view/Blocks/Features.php:98
8568
- msgid ""
8569
- "Use Squirrly’s Sitemap Generator and Settings to help your website get "
8570
- "crawled and indexed by Google."
8571
- msgstr ""
8572
-
8573
- #: view/Blocks/Features.php:106
8574
- #, fuzzy
8575
- #| msgid "Optimize for Keyword"
8576
- msgid "JSON-LD Optimizaition"
8577
- msgstr "Schlüsselwort optimieren"
8578
-
8579
- #: view/Blocks/Features.php:107
8580
- msgid ""
8581
- "Edit your website’s JSON-LD Schema with Squirrly’s powerful semantic SEO "
8582
- "Markup Solution."
8583
- msgstr ""
8584
-
8585
- # @ squirrly-seo
8586
- #: view/Blocks/Features.php:115
8587
- #, fuzzy
8588
- #| msgid "The code for Google Analytics is incorrect."
8589
- msgid "Google Analytics Tracking"
8590
- msgstr "Der Code für Google Analytics ist falsch."
8591
-
8592
- #: view/Blocks/Features.php:116
8593
- msgid ""
8594
- "Add the Google Analytics and Google Tag Manager tracking on your website."
8595
- msgstr ""
8596
-
8597
- # @ squirrly-seo
8598
- #: view/Blocks/Features.php:124
8599
- #, fuzzy
8600
- #| msgid "Description:"
8601
- msgid "Facebook Pixel Tracking"
8602
- msgstr "Beschreibung:"
8603
-
8604
- #: view/Blocks/Features.php:125
8605
- msgid ""
8606
- "Track visitors with website and e-commerce events for better Retargeting "
8607
- "Campaigns."
8608
- msgstr ""
8609
-
8610
- # @ squirrly-seo
8611
- #: view/Blocks/Features.php:133 view/Connect/GoogleSearchConsole.php:7
8612
- #, fuzzy
8613
- #| msgid "Google %sAnalytics ID%s`:"
8614
- msgid "Google Search Console"
8615
- msgstr "Google %sAnalytics ID%s`:"
8616
-
8617
- #: view/Blocks/Features.php:134
8618
- msgid ""
8619
- "Connect your website with Google Search Console and get insights based on "
8620
- "organic searched keywords."
8621
- msgstr ""
8622
-
8623
- #: view/Blocks/Features.php:142
8624
- msgid "Robots.txt File"
8625
- msgstr ""
8626
-
8627
- #: view/Blocks/Features.php:143
8628
- msgid ""
8629
- "Tell search engine crawlers which pages or files the crawler can or can't "
8630
- "request from your site."
8631
- msgstr ""
8632
-
8633
- # @ squirrly-seo
8634
- #: view/Blocks/Features.php:151
8635
- #, fuzzy
8636
- #| msgid "Change the Website Icon"
8637
- msgid "Favicon Site Icon"
8638
- msgstr "Ändern Sie das Website-Symbol"
8639
-
8640
- #: view/Blocks/Features.php:152 view/SeoSettings/Favicon.php:29
8641
- msgid ""
8642
- "Add your website icon in the browser tabs and on other devices like iPhone, "
8643
- "iPad and Android phones."
8644
- msgstr ""
8645
-
8646
- #: view/Blocks/Features.php:160
8647
- msgid "On-Page SEO METAs"
8648
- msgstr ""
8649
-
8650
- #: view/Blocks/Features.php:161
8651
- msgid ""
8652
- "Add all Search Engine METAs like Title, Description, Canonical, Dublin Core, "
8653
- "Robots and more."
8654
- msgstr ""
8655
-
8656
- #: view/Blocks/Features.php:169
8657
- msgid "Remove META Duplicate"
8658
- msgstr ""
8659
-
8660
- #: view/Blocks/Features.php:170
8661
- msgid "Fix Duplicate Titles and Descriptions without writing a line of code."
8662
- msgstr ""
8663
-
8664
- #: view/Blocks/Features.php:178
8665
- msgid "404 Redirects"
8666
- msgstr ""
8667
-
8668
- #: view/Blocks/Features.php:179
8669
- msgid ""
8670
- "Automatically redirect the old posts and pages URLs to the new URLs to keep "
8671
- "the post authority."
8672
- msgstr ""
8673
-
8674
- #: view/Blocks/Features.php:188 view/Blocks/Features.php:197
8675
- msgid "Improve your Online Presence by knowing how your website is performing."
8676
- msgstr ""
8677
-
8678
- #: view/Blocks/Features.php:196 view/Blocks/Jorney.php:12
8679
- #: view/Blocks/Jorney.php:95
8680
- msgid "14 Days Journey Course"
8681
- msgstr ""
8682
-
8683
- # @ squirrly-seo
8684
- #: view/Blocks/Features.php:205
8685
- #, fuzzy
8686
- #| msgid "Blogs"
8687
- msgid "Blogging Assistant"
8688
- msgstr "Blogs"
8689
-
8690
- #: view/Blocks/Features.php:206
8691
- msgid ""
8692
- "Add relevant Copyright-free images, Tweets, Wikis, Blog Excerpts in your "
8693
- "posts."
8694
- msgstr ""
8695
-
8696
- # @ squirrly-seo
8697
- #: view/Blocks/Features.php:207
8698
- #, fuzzy
8699
- #| msgid "Profile"
8700
- msgid "Pro"
8701
- msgstr "Profil"
8702
-
8703
- #: view/Blocks/Features.php:214
8704
- msgid "Google SERP Checker"
8705
- msgstr ""
8706
-
8707
- #: view/Blocks/Features.php:215
8708
- msgid ""
8709
- "Accurately track your rankings with Squirrly’s user-friendly Google SERP "
8710
- "Checker."
8711
- msgstr ""
8712
-
8713
- #: view/Blocks/Features.php:216
8714
- msgid "Business"
8715
- msgstr ""
8716
-
8717
- # @ squirrly-seo
8718
- #: view/Blocks/Features.php:233 view/Overview.php:65
8719
- #, fuzzy
8720
- #| msgid "Squirrly LIVE SEO assistant"
8721
- msgid "Squirrly SEO Feature Categories"
8722
- msgstr "Squirrly LIVE SEO-Assistent"
8723
-
8724
- #: view/Blocks/Features.php:237
8725
- #, php-format
8726
- msgid ""
8727
- "With a total of over %s200%s free in-depth features that only Squirrly can "
8728
- "offer."
8729
- msgstr ""
8730
-
8731
- # @ squirrly-seo
8732
- #: view/Blocks/Features.php:292
8733
- #, fuzzy
8734
- #| msgid "Go to Profile"
8735
- msgid "Go to feature"
8736
- msgstr "Zum Profil"
8737
-
8738
- #: view/Blocks/Features.php:294
8739
- msgid "Active"
8740
- msgstr ""
8741
-
8742
- #: view/Blocks/Features.php:296
8743
- msgid "Inactive"
8744
- msgstr ""
8745
-
8746
- #: view/Blocks/Features.php:304
8747
- msgid "more details"
8748
- msgstr ""
8749
-
8750
- #: view/Blocks/Jorney.php:17
8751
  #, php-format
8752
  msgid "Follow the %sdaily recipe%s from below."
8753
  msgstr ""
8754
 
8755
- #: view/Blocks/Jorney.php:18 view/Onboarding/Step2.2.php:32
8756
  #, php-format
8757
  msgid ""
8758
  "%sJoin%s the rest of the %sJourneyTeam on the Facebook Group%s and if you "
8759
  "want you can share with the members that you have started your Journey."
8760
  msgstr ""
8761
 
8762
- #: view/Blocks/Jorney.php:32
8763
  msgid "Congratulations! You've completed the 14 Days Journey To Better Ranking"
8764
  msgstr ""
8765
 
8766
- #: view/Blocks/Jorney.php:34
8767
  msgid "Your 14 Days Journey To Better Ranking"
8768
  msgstr ""
8769
 
8770
- #: view/Blocks/Jorney.php:42 view/Blocks/Jorney.php:60
8771
  msgid "Day"
8772
  msgstr ""
8773
 
8774
- #: view/Blocks/Jorney.php:49
8775
  msgid "If you missed a day, click on it and read the SEO recipe for it."
8776
  msgstr ""
8777
 
8778
- #: view/Blocks/Jorney.php:55
8779
  msgid "I'm all done. Hide this block."
8780
  msgstr ""
8781
 
8782
- #: view/Blocks/Jorney.php:60
8783
  msgid "Open the SEO recipe for today"
8784
  msgstr ""
8785
 
8786
- #: view/Blocks/Jorney.php:65 view/FocusPages/Addpage.php:22
 
 
 
8787
  msgid "Add a page in Focus Pages"
8788
- msgstr ""
8789
 
8790
- #: view/Blocks/Jorney.php:100 view/Onboarding/Step2.1.php:25
8791
  msgid ""
8792
  "All you need now is to start driving One of your most valuable pages to "
8793
  "Better Rankings."
8794
  msgstr ""
8795
 
8796
- #: view/Blocks/Jorney.php:103
8797
  msgid "I'm ready to start the Journey To Better Ranking"
8798
  msgstr ""
8799
 
8800
- #: view/Blocks/KnowledgeBase.php:6
8801
  msgid "Knowledge Base"
8802
  msgstr ""
8803
 
8804
  # @ squirrly-seo
8805
- #: view/Blocks/Login.php:15
8806
  #, fuzzy
8807
  #| msgid "Password:"
8808
  msgid "Password"
8809
  msgstr "Passwort:"
8810
 
8811
  # @ squirrly-seo
8812
- #: view/Blocks/Login.php:19
8813
  msgid "Register to Squirrly.co"
8814
  msgstr "Bei Squirrly.co registrieren"
8815
 
8816
  # @ squirrly-seo
8817
- #: view/Blocks/Login.php:20
8818
  msgid "Lost password?"
8819
  msgstr "Passwort vergessen?"
8820
 
8821
  # @ squirrly-seo
8822
- #: view/Blocks/Login.php:20
8823
  msgid "Lost password"
8824
  msgstr "Passwort vergessen"
8825
 
8826
  # @ squirrly-seo
8827
- #: view/Blocks/Login.php:22
8828
  msgid "Login"
8829
  msgstr "Login"
8830
 
8831
- #: view/Blocks/Login.php:36
8832
  msgid "I already have an account"
8833
  msgstr ""
8834
 
8835
- #: view/Blocks/Login.php:39
8836
  #, php-format
8837
  msgid "I Agree with the Squirrly %sTerms of Use%s and %sPrivacy Policy%s"
8838
  msgstr ""
8839
 
8840
- #: view/Blocks/Login.php:41
8841
  msgid "Sign Up"
8842
  msgstr "Anmelden"
8843
 
8844
- #: view/Blocks/SLASearch.php:2
8845
  msgid "Waiting for your editor to load .."
8846
  msgstr ""
8847
 
8848
- #: view/Blocks/SLASearch.php:3 view/Blocks/Toolbar.php:62
8849
  msgid ""
8850
  "Javascript is disabled on your browser! You need to activate the javascript "
8851
  "in order to use Squirrly SEO."
8852
  msgstr ""
8853
 
8854
- #: view/Blocks/SLASearch.php:8
 
 
 
8855
  msgid "Click to Close Squirrly Live Assistant"
8856
- msgstr ""
8857
 
8858
- #: view/Blocks/SLASearch.php:9
8859
  msgid "Click to Minimize Box"
8860
  msgstr ""
8861
 
8862
- #: view/Blocks/SLASearch.php:10
8863
  msgid "Click to Maximize Box"
8864
  msgstr ""
8865
 
8866
  # @ squirrly-seo
8867
- #: view/Blocks/SLASearch.php:11 view/Blocks/SLASearch.php:17
8868
  #, fuzzy
8869
  #| msgid "Squirrly settings"
8870
  msgid "Squirrly Briefcase"
8871
  msgstr "Squirrly Einstellungen"
8872
 
8873
  # @ squirrly-seo
8874
- #: view/Blocks/SLASearch.php:18
8875
  #, fuzzy
8876
  #| msgid "Squirrly Keyword Research"
8877
  msgid "Refresh the briefcase"
8878
  msgstr "Squirrly Erweiterte Suche!"
8879
 
8880
  # @ squirrly-seo
8881
- #: view/Blocks/SLASearch.php:19
8882
  #, fuzzy
8883
  #| msgid "Squirrly Keyword Research"
8884
  msgid "Close Briefcase"
8885
  msgstr "Squirrly Erweiterte Suche!"
8886
 
8887
- #: view/Blocks/SLASearch.php:21
 
 
 
8888
  msgid "Search in Briefcase ..."
8889
- msgstr ""
8890
 
8891
  # @ squirrly-seo
8892
- #: view/Blocks/SLASearch.php:23
8893
  #, fuzzy
8894
  #| msgid "Go to Profile"
8895
  msgid "Go to Briefcase"
8896
  msgstr "Zum Profil"
8897
 
8898
  # @ squirrly-seo
8899
- #: view/Blocks/SLASearch.php:31
8900
  msgid "Enter a keyword"
8901
  msgstr "Ein Schlüsselwort eingeben"
8902
 
8903
  # @ squirrly-seo
8904
- #: view/Blocks/SLASearch.php:32
8905
  msgid "for Squirrly Live SEO optimization"
8906
  msgstr "Live-SEO-Optimierung für Squirrly"
8907
 
8908
  # @ squirrly-seo
8909
- #: view/Blocks/SLASearch.php:37
8910
  #, fuzzy
8911
  #| msgid "Enter even more keywords."
8912
  msgid "Type in your keyword..."
8913
  msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
8914
 
8915
  # @ squirrly-seo
8916
- #: view/Blocks/SLASearch.php:39
8917
  msgid "Use this keyword"
8918
  msgstr "Dieses Schlüsselwort verwenden"
8919
 
8920
  # @ squirrly-seo
8921
- #: view/Blocks/SLASearch.php:42
8922
  #, fuzzy
8923
  #| msgid "Do more research!"
8924
  msgid "Do keyword research!"
8925
  msgstr "Erweiterte Suche!"
8926
 
8927
  # @ squirrly-seo
8928
- #: view/Blocks/SLASearch.php:46
8929
  msgid "Images"
8930
  msgstr "Bilder"
8931
 
8932
  # @ squirrly-seo
8933
- #: view/Blocks/SLASearch.php:47
8934
  msgid "Twitter"
8935
  msgstr "Twitter"
8936
 
8937
  # @ squirrly-seo
8938
- #: view/Blocks/SLASearch.php:48
8939
  msgid "Wiki"
8940
  msgstr "Wiki"
8941
 
8942
  # @ squirrly-seo
8943
- #: view/Blocks/SLASearch.php:49
8944
  msgid "Blogs"
8945
  msgstr "Blogs"
8946
 
8947
  # @ squirrly-seo
8948
- #: view/Blocks/SLASearch.php:50
8949
  msgid "My articles"
8950
  msgstr "Meine Artikel"
8951
 
8952
  # @ squirrly-seo
8953
- #: view/Blocks/SLASearch.php:58
8954
  msgid "Show only Copyright Free images"
8955
  msgstr "Nur urheberrechtfreie Bilder zeigen"
8956
 
8957
  # @ squirrly-seo
8958
- #: view/Blocks/SLASeo.php:3
8959
  #, fuzzy
8960
  #| msgid "Save settings"
8961
  msgid "Squirrly Live Assistant"
8962
  msgstr "Einstellungen speichern"
8963
 
8964
  # @ squirrly-seo
8965
- #: view/Blocks/SLASeo.php:6
8966
  #, fuzzy
8967
  #| msgid "date"
8968
  msgid "Update"
8969
  msgstr "Datum"
8970
 
8971
- #: view/Blocks/SLASeo.php:9
8972
  msgid "Split Window"
8973
  msgstr ""
8974
 
8975
- #: view/Blocks/Snippet.php:83
8976
  msgid "Meta Tags"
8977
  msgstr ""
8978
 
8979
- #: view/Blocks/Snippet.php:88
8980
- msgid "JSON-LD"
8981
- msgstr ""
8982
-
8983
- #: view/Blocks/Snippet.php:112
8984
  #, php-format
8985
  msgid ""
8986
  "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
@@ -8988,313 +9160,385 @@ msgid ""
8988
  msgstr ""
8989
 
8990
  # @ squirrly-seo
8991
- #: view/Blocks/Snippet.php:120 view/SeoSettings/Automation.php:170
8992
- #: view/SeoSettings/Automation.php:197 view/SeoSettings/Automation.php:275
8993
  #, fuzzy
8994
  #| msgid "Keywords:"
8995
  msgid "Activate Metas"
8996
  msgstr "Schlüsselwörter:"
8997
 
8998
- #: view/Blocks/Snippet.php:129
8999
  msgid "How this page will appear on Search Engines"
9000
  msgstr ""
9001
 
9002
  # @ squirrly-seo
9003
- #: view/Blocks/Snippet.php:133 view/Blocks/Snippet.php:365
9004
- #: view/Blocks/Snippet.php:497 view/Blocks/Snippet.php:754
9005
- #: view/Blocks/Snippet.php:978
9006
  #, fuzzy
9007
  #| msgid "Squirrly Keyword Research"
9008
  msgid "Refresh"
9009
  msgstr "Squirrly Erweiterte Suche!"
9010
 
9011
- #: view/Blocks/Snippet.php:137 view/Blocks/Snippet.php:516
9012
- #: view/Blocks/Snippet.php:775
9013
  msgid "AUTO-DRAFT"
9014
  msgstr ""
9015
 
9016
- #: view/Blocks/Snippet.php:148 view/Blocks/Snippet.php:795
9017
  msgid "Please save the post first to be able to edit the Squirrly SEO Snippet"
9018
  msgstr ""
9019
 
9020
- #: view/Blocks/Snippet.php:155 view/Blocks/Snippet.php:544
9021
- #: view/Blocks/Snippet.php:802
9022
  msgid "Cancel"
9023
  msgstr ""
9024
 
9025
- #: view/Blocks/Snippet.php:156 view/Blocks/Snippet.php:366
9026
- #: view/Blocks/Snippet.php:545 view/Blocks/Snippet.php:803
9027
- #: view/Blocks/Snippet.php:979
 
 
 
9028
  msgid "Save"
9029
- msgstr ""
9030
 
9031
  # @ squirrly-seo
9032
- #: view/Blocks/Snippet.php:166
9033
  #, fuzzy
9034
  #| msgid "Description:"
9035
  msgid "Activate Title"
9036
  msgstr "Beschreibung:"
9037
 
9038
  # @ squirrly-seo
9039
- #: view/Blocks/Snippet.php:173 view/Blocks/Snippet.php:224
9040
- #: view/Blocks/Snippet.php:578 view/Blocks/Snippet.php:621
9041
- #: view/Blocks/Snippet.php:836 view/Blocks/Snippet.php:879
9042
  #, fuzzy, php-format
9043
  #| msgid "Tips: Length 10-70 chars"
9044
  msgid "Tips: Length %s-%s chars"
9045
  msgstr "Tipp: Länge 10-70 Charaktere"
9046
 
9047
- #: view/Blocks/Snippet.php:176 view/Blocks/Snippet.php:200
9048
- #: view/Blocks/Snippet.php:227 view/Blocks/Snippet.php:254
9049
- #: view/Blocks/Snippet.php:581 view/Blocks/Snippet.php:605
9050
- #: view/Blocks/Snippet.php:624 view/Blocks/Snippet.php:651
9051
- #: view/Blocks/Snippet.php:839 view/Blocks/Snippet.php:863
9052
- #: view/Blocks/Snippet.php:882 view/Blocks/Snippet.php:909
9053
  msgid "Pattern"
9054
  msgstr ""
9055
 
9056
- #: view/Blocks/Snippet.php:193 view/Blocks/Snippet.php:598
9057
- #: view/Blocks/Snippet.php:856
 
 
 
9058
  msgid "Default Title"
9059
- msgstr ""
9060
 
9061
  # @ squirrly-seo
9062
- #: view/Blocks/Snippet.php:217
9063
  #, fuzzy
9064
  #| msgid "Description:"
9065
  msgid "Activate Description"
9066
  msgstr "Beschreibung:"
9067
 
9068
  # @ squirrly-seo
9069
- #: view/Blocks/Snippet.php:223
9070
  #, fuzzy
9071
  #| msgid "Description:"
9072
  msgid "Meta Description"
9073
  msgstr "Beschreibung:"
9074
 
9075
  # @ squirrly-seo
9076
- #: view/Blocks/Snippet.php:247 view/Blocks/Snippet.php:644
9077
- #: view/Blocks/Snippet.php:902
9078
  #, fuzzy
9079
  #| msgid "Description:"
9080
  msgid "Default Description"
9081
  msgstr "Beschreibung:"
9082
 
9083
  # @ squirrly-seo
9084
- #: view/Blocks/Snippet.php:271
9085
  #, fuzzy
9086
  #| msgid "Keywords:"
9087
  msgid "Activate Keywords"
9088
  msgstr "Schlüsselwörter:"
9089
 
9090
  # @ squirrly-seo
9091
- #: view/Blocks/Snippet.php:277
9092
  #, fuzzy
9093
  #| msgid "Keyword:"
9094
  msgid "Meta Keywords"
9095
  msgstr "Schlüsselwort:"
9096
 
9097
  # @ squirrly-seo
9098
- #: view/Blocks/Snippet.php:281
9099
  msgid "+ Add keyword"
9100
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
9101
 
9102
  # @ squirrly-seo
9103
- #: view/Blocks/Snippet.php:293
9104
  #, fuzzy
9105
  #| msgid "Google %sAnalytics ID%s`:"
9106
  msgid "Activate Canonical"
9107
  msgstr "Google %sAnalytics ID%s`:"
9108
 
9109
- #: view/Blocks/Snippet.php:300
9110
  msgid "Leave it blank if you don't have an external canonical"
9111
  msgstr ""
9112
 
9113
- #: view/Blocks/Snippet.php:303
9114
  msgid "Found"
9115
  msgstr ""
9116
 
9117
- #: view/Blocks/Snippet.php:315
 
 
 
9118
  msgid "Default Link"
9119
- msgstr ""
9120
 
9121
- #: view/Blocks/Snippet.php:337 view/Blocks/Snippet.php:463
9122
- #: view/Blocks/Snippet.php:712 view/Blocks/Snippet.php:950
9123
- #: view/Blocks/Snippet.php:1083
9124
  msgid ""
9125
  "To edit the snippet, you have to activate Squirrly SEO for this page first"
9126
  msgstr ""
9127
 
9128
  # @ squirrly-seo
9129
- #: view/Blocks/Snippet.php:346
9130
  #, fuzzy
9131
  #| msgid "Squirrly LIVE SEO assistant"
9132
  msgid "Activate Squirrly Snippet for this page"
9133
  msgstr "Squirrly LIVE SEO-Assistent"
9134
 
9135
- #: view/Blocks/Snippet.php:351 view/Blocks/Snippet.php:717
9136
- #: view/Blocks/Snippet.php:955
 
 
 
9137
  msgid "Post Type"
9138
- msgstr ""
9139
 
9140
- #: view/Blocks/Snippet.php:353 view/Blocks/Snippet.php:681
9141
- #: view/Blocks/Snippet.php:719
9142
  msgid "OG Type"
9143
  msgstr ""
9144
 
9145
- #: view/Blocks/Snippet.php:383
9146
  #, php-format
9147
  msgid ""
9148
  "JSON-LD is disable for this Post Type (%s). See %sSquirrly > SEO Settings > "
9149
  "Automation%s."
9150
  msgstr ""
9151
 
9152
- #: view/Blocks/Snippet.php:410
9153
- msgid "JSON-LD Code"
9154
  msgstr ""
9155
 
9156
- #: view/Blocks/Snippet.php:415 view/Blocks/Snippet.php:689
9157
- #: view/Blocks/Snippet.php:930
9158
- msgid "(Auto)"
9159
  msgstr ""
9160
 
9161
- #: view/Blocks/Snippet.php:416
9162
- msgid "Custom Code"
 
9163
  msgstr ""
9164
 
9165
- #: view/Blocks/Snippet.php:426
9166
- msgid "Custom JSON-LD Code"
9167
  msgstr ""
9168
 
9169
- #: view/Blocks/Snippet.php:427
9170
- #, php-format
9171
- msgid "Add JSON-LD code from %sSchema Generator Online%s."
9172
  msgstr ""
9173
 
9174
- #: view/Blocks/Snippet.php:436
9175
- msgid "Current JSON-LD Code"
 
9176
  msgstr ""
9177
 
9178
  # @ squirrly-seo
9179
- #: view/Blocks/Snippet.php:444
9180
  #, fuzzy
9181
- #| msgid "date"
9182
- msgid "Validate"
9183
- msgstr "Datum"
 
 
 
 
 
 
 
 
9184
 
9185
- #: view/Blocks/Snippet.php:475 view/Blocks/Snippet.php:732
9186
  #, php-format
9187
- msgid ""
9188
- "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
9189
- "will not load for this post type on the frontend."
9190
  msgstr ""
9191
 
9192
- #: view/Blocks/Snippet.php:492
9193
- msgid "How this page appears on Facebook"
 
 
 
 
 
 
9194
  msgstr ""
9195
 
9196
- #: view/Blocks/Snippet.php:498
9197
- msgid "Edit Open Graph"
 
9198
  msgstr ""
9199
 
9200
- #: view/Blocks/Snippet.php:507 view/Blocks/Snippet.php:765
9201
- msgid "The image size must be at least 500 pixels wide"
9202
  msgstr ""
9203
 
9204
- #: view/Blocks/Snippet.php:525 view/Blocks/Snippet.php:784
 
9205
  msgid ""
9206
- "This is the Featured Image. You can change it if you edit the snippet and "
9207
- "upload another image."
9208
  msgstr ""
9209
 
9210
- #: view/Blocks/Snippet.php:537
9211
- msgid "Please save the post first to be able to edit the Squirrly SEO Snippet."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9212
  msgstr ""
9213
 
9214
  # @ squirrly-seo
9215
- #: view/Blocks/Snippet.php:554 view/Blocks/Snippet.php:812
9216
  #, fuzzy
9217
  #| msgid "Images"
9218
  msgid "Media Image"
9219
  msgstr "Bilder"
9220
 
9221
  # @ squirrly-seo
9222
- #: view/Blocks/Snippet.php:558 view/Blocks/Snippet.php:816
9223
- #: view/Research/Briefcase.php:459 view/SeoSettings/Favicon.php:77
9224
  msgid "Upload"
9225
  msgstr "Hochladen"
9226
 
9227
- #: view/Blocks/Snippet.php:559 view/Blocks/Snippet.php:817
9228
  msgid "Image size must be at least 500 pixels wide"
9229
  msgstr ""
9230
 
9231
- #: view/Blocks/Snippet.php:666
9232
  msgid "Author Link"
9233
  msgstr ""
9234
 
9235
- #: view/Blocks/Snippet.php:667
9236
  msgid "For multiple authors, separate their Facebook links with commas"
9237
  msgstr ""
9238
 
9239
- #: view/Blocks/Snippet.php:749
9240
  msgid "How this page appears on Twitter"
9241
  msgstr ""
9242
 
9243
  # @ squirrly-seo
9244
- #: view/Blocks/Snippet.php:755
9245
  #, fuzzy
9246
  #| msgid "Twitter"
9247
  msgid "Edit Twitter Card"
9248
  msgstr "Twitter"
9249
 
9250
- #: view/Blocks/Snippet.php:925
9251
  msgid "Card Type"
9252
  msgstr ""
9253
 
9254
- #: view/Blocks/Snippet.php:926 view/SeoSettings/Social.php:285
9255
  #, php-format
9256
  msgid "Every change needs %sTwitter Card Validator%s"
9257
  msgstr ""
9258
 
9259
- #: view/Blocks/Snippet.php:931
9260
  msgid "summary"
9261
  msgstr ""
9262
 
9263
- #: view/Blocks/Snippet.php:932
9264
  msgid "summary_large_image"
9265
  msgstr ""
9266
 
9267
  # @ squirrly-seo
9268
- #: view/Blocks/Snippet.php:957
9269
  #, fuzzy
9270
  #| msgid "Twitter"
9271
  msgid "Twitter Type"
9272
  msgstr "Twitter"
9273
 
9274
- #: view/Blocks/Snippet.php:970
9275
  #, php-format
9276
  msgid ""
9277
  "You selected '%s' in %sSettings > Reading%s. It's important to uncheck that "
9278
  "option."
9279
  msgstr ""
9280
 
9281
- #: view/Blocks/Snippet.php:990 view/Blocks/Snippet.php:1021
9282
  #, php-format
9283
  msgid ""
9284
  "This Post Type (%s) has Nofollow set in Automation. See %sSquirrly > SEO "
9285
  "Settings > Automation%s."
9286
  msgstr ""
9287
 
9288
- #: view/Blocks/Snippet.php:997 view/Blocks/Snippet.php:1028
9289
- #: view/SeoSettings/Automation.php:177 view/SeoSettings/Automation.php:204
 
 
 
9290
  msgid "Activate Robots Meta"
9291
- msgstr ""
9292
 
9293
- #: view/Blocks/Snippet.php:1008
9294
  msgid "Let Google Index This Page"
9295
  msgstr ""
9296
 
9297
- #: view/Blocks/Snippet.php:1051
9298
  #, php-format
9299
  msgid ""
9300
  "Show in sitemap for this Post Type (%s) was excluded from %sSquirrly > SEO "
@@ -9302,257 +9546,257 @@ msgid ""
9302
  msgstr ""
9303
 
9304
  # @ squirrly-seo
9305
- #: view/Blocks/Snippet.php:1058 view/SeoSettings/Automation.php:223
9306
- #: view/SeoSettings/Sitemap.php:33
9307
  #, fuzzy
9308
  #| msgid "Description:"
9309
  msgid "Activate Sitemap"
9310
  msgstr "Beschreibung:"
9311
 
9312
- #: view/Blocks/Snippet.php:1068
9313
  msgid "Show it in Sitemap.xml"
9314
  msgstr ""
9315
 
9316
  # @ squirrly-seo
9317
- #: view/Blocks/Snippet.php:1106
9318
  #, fuzzy
9319
  #| msgid "Squirrly LIVE SEO assistant"
9320
  msgid "Loading Squirrly Snippet ..."
9321
  msgstr "Squirrly LIVE SEO-Assistent"
9322
 
9323
  # @ squirrly-seo
9324
- #: view/Blocks/Snippet.php:1132
9325
  #, fuzzy
9326
  #| msgid "Squirrly LIVE SEO assistant"
9327
  msgid "Enable Squirrly SEO to load Squirrly Snippet"
9328
  msgstr "Squirrly LIVE SEO-Assistent"
9329
 
9330
- #: view/Blocks/Snippet.php:1144
9331
- #, fuzzy, php-format
9332
- #| msgid "This email connects you to Squirrly.co"
9333
- msgid "%sPlease connect to SquirrlyCloud first%s"
9334
- msgstr "This email connects you to Squirrly.co"
9335
-
9336
- #: view/Blocks/Snippet.php:1153
9337
  msgid ""
9338
  "Couldn't save your changes. Immunify360 or some other service on your web "
9339
  "hosting account interferes with your WordPress. Please contact the hosting "
9340
  "provider`s support team"
9341
  msgstr ""
9342
 
9343
- #: view/Blocks/Stats.php:45
9344
  msgid "Hello"
9345
  msgstr ""
9346
 
9347
- #: view/Blocks/Stats.php:51
9348
  #, php-format
9349
  msgid "%s SEO Protection"
9350
  msgstr ""
9351
 
9352
- #: view/Blocks/Stats.php:54
9353
  msgid "All protection layers are activated."
9354
  msgstr ""
9355
 
9356
- #: view/Blocks/Stats.php:56
9357
  #, php-format
9358
  msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
9359
  msgstr ""
9360
 
9361
- #: view/Blocks/Stats.php:60
9362
  msgid "How does this work?"
9363
  msgstr ""
9364
 
9365
- #: view/Blocks/Stats.php:68
9366
  msgid "Pages SEO'ed"
9367
  msgstr ""
9368
 
9369
- #: view/Blocks/Stats.php:74
9370
  msgid "Post Types Covered"
9371
  msgstr ""
9372
 
9373
- #: view/Blocks/Stats.php:79 view/Goals/CheckSeo.php:111
9374
- #, php-format
9375
- msgid "%s Aspects"
9376
  msgstr ""
9377
 
9378
- # @ squirrly-seo
9379
- #: view/Blocks/Stats.php:80 view/Goals/CheckSeo.php:112
9380
- #, fuzzy
9381
- #| msgid "Squirrly settings"
9382
- msgid "Handled by Squirrly Genius."
9383
- msgstr "Squirrly Einstellungen"
9384
 
9385
- #: view/Blocks/Stats.php:82
9386
- msgid "Can I see them?"
9387
  msgstr ""
9388
 
9389
- #: view/Blocks/Stats.php:86 view/Goals/Goals.php:43
9390
  msgid "Run SEO Test"
9391
  msgstr ""
9392
 
9393
  # @ squirrly-seo
9394
- #: view/Blocks/Support.php:7
9395
  msgid "Go to Profile"
9396
  msgstr "Zum Profil"
9397
 
9398
  # @ squirrly-seo
9399
- #: view/Blocks/Support.php:7 view/Blocks/Support.php:8
9400
  msgid "Profile"
9401
  msgstr "Profil"
9402
 
9403
  # @ squirrly-seo
9404
- #: view/Blocks/Support.php:18
9405
  msgid "Support"
9406
  msgstr "Support"
9407
 
9408
  # @ squirrly-seo
9409
- #: view/Blocks/Support.php:21
9410
  msgid "Need Help with Squirrly SEO?"
9411
  msgstr "Brauchen Sie Hilfe mit Squirrly SEO?"
9412
 
9413
- #: view/Blocks/Support.php:23 view/Blocks/Support.php:90
9414
  #, php-format
9415
  msgid "10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s."
9416
  msgstr ""
9417
 
9418
- #: view/Blocks/Support.php:24 view/Blocks/Support.php:91
9419
  #, php-format
9420
  msgid "How To Squirrly %swebsite%s."
9421
  msgstr ""
9422
 
9423
- #: view/Blocks/Support.php:25 view/Blocks/Support.php:92
9424
  #, php-format
9425
  msgid "Facebook %sSupport Community%s."
9426
  msgstr ""
9427
 
9428
- #: view/Blocks/Support.php:26 view/Blocks/Support.php:93
9429
- #, php-format
 
 
9430
  msgid "Facebook %sMessenger%s."
9431
- msgstr ""
9432
 
9433
- #: view/Blocks/Support.php:27
9434
  #, php-format
9435
  msgid "Twitter %sSupport%s."
9436
  msgstr ""
9437
 
9438
  # @ squirrly-seo
9439
- #: view/Blocks/Support.php:35
9440
  msgid "How was your Squirrly experience today?"
9441
  msgstr "Wie war Ihre Squirrly Erfahrung heute?"
9442
 
9443
- #: view/Blocks/Support.php:42
9444
  msgid "Annoying"
9445
  msgstr ""
9446
 
9447
- #: view/Blocks/Support.php:46
9448
  msgid "Bad"
9449
  msgstr ""
9450
 
9451
- #: view/Blocks/Support.php:50
9452
  msgid "Nice"
9453
  msgstr ""
9454
 
9455
- #: view/Blocks/Support.php:54
9456
  msgid "Great"
9457
  msgstr ""
9458
 
9459
- #: view/Blocks/Support.php:58
9460
  msgid "Love it"
9461
  msgstr ""
9462
 
9463
  # @ squirrly-seo
9464
- #: view/Blocks/Support.php:70
9465
  msgid "How was Squirrly today?"
9466
  msgstr "Wie war Squirrly heute?"
9467
 
9468
  # @ squirrly-seo
9469
- #: view/Blocks/Support.php:85
9470
  msgid "Send feedback"
9471
  msgstr "Feedback senden"
9472
 
9473
- #: view/Blocks/Support.php:89
9474
  msgid "For more support:"
9475
  msgstr ""
9476
 
9477
- #: view/Blocks/Support.php:94
9478
  #, php-format
9479
  msgid "New Lessons Mon. and Tue. on %sTwitter%s."
9480
  msgstr ""
9481
 
9482
  # @ squirrly-seo
9483
- #: view/Blocks/Support.php:99
9484
  #, fuzzy
9485
  #| msgid "Thank you! You can send us a happy face tomorow too."
9486
  msgid "Thank you! You can send us a happy face tomorrow too."
9487
  msgstr "Danke! Sie können uns auch morgen ein fröhliches Gesicht senden."
9488
 
9489
- #: view/Blocks/Uninstall.php:4
9490
  msgid "I no longer need the plugin"
9491
  msgstr ""
9492
 
9493
- #: view/Blocks/Uninstall.php:8
9494
  msgid "I found a better plugin"
9495
  msgstr ""
9496
 
9497
- #: view/Blocks/Uninstall.php:9
9498
  msgid "Please share which plugin"
9499
  msgstr ""
9500
 
9501
- #: view/Blocks/Uninstall.php:12
9502
  msgid "I couldn't get the plugin to work"
9503
  msgstr ""
9504
 
9505
- #: view/Blocks/Uninstall.php:16
9506
  msgid "It's a temporary deactivation"
9507
  msgstr ""
9508
 
9509
- #: view/Blocks/Uninstall.php:20
9510
  msgid "Other"
9511
  msgstr ""
9512
 
9513
- #: view/Blocks/Uninstall.php:21
9514
  msgid "Please share the reason"
9515
  msgstr ""
9516
 
9517
  # @ squirrly-seo
9518
- #: view/Blocks/Uninstall.php:29
9519
  #, fuzzy
9520
  #| msgid "Squirrly LIVE SEO assistant"
9521
  msgid "Deactivate Squirrly SEO"
9522
  msgstr "Squirrly LIVE SEO-Assistent"
9523
 
9524
- #: view/Blocks/Uninstall.php:35
9525
  msgid "Please share why you are deactivating Squirrly:"
9526
  msgstr ""
9527
 
9528
- #: view/Blocks/Uninstall.php:52
9529
  msgid "Submit &amp; Deactivate"
9530
  msgstr ""
9531
 
9532
- #: view/Blocks/Uninstall.php:53
9533
  msgid "Skip &amp; Deactivate"
9534
  msgstr ""
9535
 
9536
- #: view/Blocks/Uninstall.php:59
 
 
 
 
 
 
 
9537
  #, fuzzy
9538
  #| msgid "This email connects you to Squirrly.co"
9539
  msgid "Disconnect from Squirrly Cloud"
9540
  msgstr "This email connects you to Squirrly.co"
9541
 
9542
- #: view/Blocks/VersionBar.php:14
9543
  #, php-format
9544
  msgid ""
9545
  "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
9546
  "accurate and objective."
9547
  msgstr ""
9548
 
9549
- #: view/Blocks/VersionBar.php:17
9550
  #, php-format
9551
  msgid ""
9552
  "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
9553
  msgstr ""
9554
 
9555
- #: view/Blocks/VersionBar.php:23
9556
  #, php-format
9557
  msgid ""
9558
  "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
@@ -9561,14 +9805,14 @@ msgid ""
9561
  "your plan to %sBusiness Plan%s"
9562
  msgstr ""
9563
 
9564
- #: view/Blocks/VersionBar.php:30
9565
  #, php-format
9566
  msgid ""
9567
  "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
9568
  "hour."
9569
  msgstr ""
9570
 
9571
- #: view/Blocks/VersionBar.php:34
9572
  #, php-format
9573
  msgid ""
9574
  "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
@@ -9576,14 +9820,14 @@ msgid ""
9576
  "please upgrade your plan to %sPRO Plan%s"
9577
  msgstr ""
9578
 
9579
- #: view/Blocks/VersionBar.php:41
9580
  #, php-format
9581
  msgid ""
9582
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
9583
  "audit for each page every 5 mins."
9584
  msgstr ""
9585
 
9586
- #: view/Blocks/VersionBar.php:45
9587
  #, php-format
9588
  msgid ""
9589
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
@@ -9591,7 +9835,7 @@ msgid ""
9591
  "upgrade your plan to %sPRO Plan%s"
9592
  msgstr ""
9593
 
9594
- #: view/Blocks/VersionBar.php:49
9595
  #, php-format
9596
  msgid ""
9597
  "Your current plan is OLD Squirrly plan: Please read the official notes about "
@@ -9599,14 +9843,14 @@ msgid ""
9599
  "squirrly-seo/%s"
9600
  msgstr ""
9601
 
9602
- #: view/Blocks/VersionBar.php:57
9603
  #, php-format
9604
  msgid ""
9605
  "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
9606
  "tasks to get 100%% optimized posts and pages."
9607
  msgstr ""
9608
 
9609
- #: view/Blocks/VersionBar.php:61
9610
  #, php-format
9611
  msgid ""
9612
  "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
@@ -9614,7 +9858,7 @@ msgid ""
9614
  "Plan%s"
9615
  msgstr ""
9616
 
9617
- #: view/Blocks/VersionBar.php:69
9618
  #, php-format
9619
  msgid ""
9620
  "%sResearch %s:%s You have %s researches left for your account. The research "
@@ -9622,14 +9866,14 @@ msgid ""
9622
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
9623
  msgstr ""
9624
 
9625
- #: view/Blocks/VersionBar.php:73
9626
  #, php-format
9627
  msgid ""
9628
  "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
9629
  "Deep Keyword Research and get up to 50 results on each research."
9630
  msgstr ""
9631
 
9632
- #: view/Blocks/VersionBar.php:77
9633
  #, php-format
9634
  msgid ""
9635
  "%sResearch %s:%s You have %s researches left for your account. The research "
@@ -9637,148 +9881,210 @@ msgid ""
9637
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
9638
  msgstr ""
9639
 
9640
- #: view/Blocks/VersionBar.php:84
9641
  #, php-format
9642
  msgid ""
9643
  "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
9644
  "optimize your posts and pages."
9645
  msgstr ""
9646
 
9647
- #: view/Blocks/VersionBar.php:89
9648
  #, php-format
9649
  msgid ""
9650
  "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
9651
  "keywords to organize the keywords by your SEO strategy."
9652
  msgstr ""
9653
 
9654
- #: view/Blocks/VersionBar.php:95
9655
  #, php-format
9656
  msgid ""
9657
  "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
9658
  "find better matching keywords based on your research history."
9659
  msgstr ""
9660
 
9661
- #: view/Blocks/VersionBar.php:99
9662
  #, php-format
9663
  msgid ""
9664
  "This feature is only available for PRO and Business accounts. %sTo get "
9665
  "Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s"
9666
  msgstr ""
9667
 
9668
- #: view/Blocks/VersionBar.php:108
9669
  #, php-format
9670
  msgid ""
9671
  "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
9672
  "SEO for free."
9673
  msgstr ""
9674
 
9675
- #: view/Blocks/VersionBar.php:114
9676
  #, php-format
9677
  msgid ""
9678
  "%sOn-Page SEO Settings:%s This feature is included in all versions of "
9679
  "Squirrly SEO for free."
9680
  msgstr ""
9681
 
9682
- #: view/BulkSeo/Bulkseo.php:183
 
 
 
 
 
 
9683
  #, php-format
9684
  msgid "No data for this filter. %sShow All%s records for this post type."
9685
  msgstr ""
9686
 
9687
- #: view/BulkSeo/Bulkseo.php:185
9688
  msgid "No data found for this post type. Try other post types."
9689
  msgstr ""
9690
 
9691
  #: view/BulkSeo/BulkseoRow.php:26
9692
  #, php-format
9693
- msgid "View &#8220;%s&#8221;"
9694
  msgstr ""
9695
 
9696
  # @ squirrly-seo
9697
- #: view/Connect/GoogleAnalytics.php:9
9698
  #, fuzzy
9699
  #| msgid "Google %sAnalytics ID%s`:"
9700
  msgid "Google Analytics"
9701
  msgstr "Google %sAnalytics ID%s`:"
9702
 
9703
  # @ squirrly-seo
9704
- #: view/Connect/GoogleAnalytics.php:14
9705
  #, fuzzy
9706
  #| msgid "The code for Google Analytics is incorrect."
9707
  msgid "You are connected to Google Analytics"
9708
  msgstr "Der Code für Google Analytics ist falsch."
9709
 
9710
  # @ squirrly-seo
9711
- #: view/Connect/GoogleAnalytics.php:20 view/Connect/GoogleSearchConsole.php:18
9712
  #, fuzzy
9713
  #| msgid "Connecting ..."
9714
  msgid "Disconnect"
9715
  msgstr "Verbinden ..."
9716
 
9717
  # @ squirrly-seo
9718
- #: view/Connect/GoogleAnalytics.php:30
9719
  #, fuzzy
9720
  #| msgid "Google %sAnalytics ID%s`:"
9721
  msgid "Connect this site to Google Analytics"
9722
  msgstr "Google %sAnalytics ID%s`:"
9723
 
9724
- #: view/Connect/GoogleAnalytics.php:31
9725
  msgid ""
9726
  "Connect Google Analytics and get traffic insights for your website on each "
9727
- "Audit"
9728
  msgstr ""
9729
 
9730
- #: view/Connect/GoogleAnalytics.php:35 view/Connect/GoogleSearchConsole.php:34
9731
- #: view/SeoSettings/Tracking.php:64 view/SeoSettings/Webmaster.php:64
9732
  #, fuzzy
9733
  #| msgid "Sign Up"
9734
  msgid "Sign in"
9735
  msgstr "Anmelden"
9736
 
9737
  # @ squirrly-seo
9738
- #: view/Connect/GoogleAnalytics.php:40 view/Connect/GoogleSearchConsole.php:39
9739
- #: view/SeoSettings/Tracking.php:69 view/SeoSettings/Webmaster.php:69
9740
  #, fuzzy
9741
  #| msgid "Connecting ..."
9742
  msgid "Check connection"
9743
  msgstr "Verbinden ..."
9744
 
9745
  # @ squirrly-seo
9746
- #: view/Connect/GoogleSearchConsole.php:12
 
 
 
 
 
 
 
9747
  #, fuzzy
9748
  #| msgid "Google %sAnalytics ID%s`:"
9749
  msgid "You are connected to Google Search Console"
9750
  msgstr "Google %sAnalytics ID%s`:"
9751
 
9752
  # @ squirrly-seo
9753
- #: view/Connect/GoogleSearchConsole.php:29
9754
  #, fuzzy
9755
  #| msgid "Google %sAnalytics ID%s`:"
9756
  msgid "Connect this site to Google Search Console"
9757
  msgstr "Google %sAnalytics ID%s`:"
9758
 
9759
- #: view/Connect/GoogleSearchConsole.php:30
9760
  msgid ""
9761
  "Connect Google Search Console and get traffic insights for your website on "
9762
- "each Audit"
 
 
 
 
 
 
 
 
 
 
 
 
 
9763
  msgstr ""
9764
 
9765
- #: view/Errors/Maintenance.php:20
9766
  #, php-format
9767
  msgid ""
9768
  "Unfortunately Squirrly Cloud is down for a bit of maintenance right now. But "
9769
  "we'll be back in a minute. %srefresh the page%s."
9770
  msgstr ""
9771
 
9772
- #: view/FocusPages/Addpage.php:23 view/FocusPages/Pagelist.php:24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9773
  msgid ""
9774
  "Focus Pages bring you clear methods to take your pages from never found to "
9775
  "always found on Google. Rank your pages by influencing the right ranking "
9776
  "factors. Turn everything that you see here to Green and you will win."
9777
  msgstr ""
9778
 
 
9779
  #: view/FocusPages/Addpage.php:175
 
 
9780
  msgid "Set Focus Page"
9781
- msgstr ""
9782
 
9783
  #: view/FocusPages/Addpage.php:179
9784
  msgid "Only pages with IDs can be added as Focus Page"
@@ -9795,51 +10101,68 @@ msgstr ""
9795
  msgid "See Tasks"
9796
  msgstr "Senden Sie Ihre Frage"
9797
 
9798
- #: view/FocusPages/Bestpractice.php:15
9799
  msgid "Best Practices"
9800
  msgstr ""
9801
 
9802
- #: view/FocusPages/FocusPageRow.php:58 view/FocusPages/FocusPageRow.php:122
9803
  #, php-format
9804
  msgid "Congratulations! You ranked on %s on Google with the keyword: %s"
9805
  msgstr ""
9806
 
9807
  # @ squirrly-seo
9808
- #: view/FocusPages/FocusPageRow.php:75
9809
  #, fuzzy
9810
  #| msgid "Your E-mail:"
9811
  msgid "Audited"
9812
  msgstr "Ihre E-Mail Adresse:"
9813
 
9814
- #: view/FocusPages/FocusPageRow.php:90
9815
  msgid "You can refresh the audit once every 5 minutes"
9816
  msgstr ""
9817
 
9818
- #: view/FocusPages/FocusPageRow.php:92
9819
  msgid "Request new audit"
9820
  msgstr ""
9821
 
9822
  # @ squirrly-seo
9823
- #: view/FocusPages/FocusPageRow.php:96 view/Ranking/Rankings.php:224
9824
- #: view/Research/History.php:32
9825
  #, fuzzy
9826
  #| msgid "Your E-mail:"
9827
  msgid "Details"
9828
  msgstr "Ihre E-Mail Adresse:"
9829
 
9830
- #: view/FocusPages/FocusPageRow.php:114
 
 
 
 
9831
  msgid "Currently processing data. Please refresh in a few minutes."
9832
  msgstr ""
9833
 
9834
  # @ squirrly-seo
9835
- #: view/FocusPages/FocusPageRow.php:120 view/FocusPages/FocusPageRow.php:140
9836
- #: view/FocusPages/FocusPages.php:54
9837
  #, fuzzy
9838
  #| msgid "Change it >>"
9839
  msgid "Chance to Rank"
9840
  msgstr "Ändern >>"
9841
 
9842
- #: view/FocusPages/FocusPageRow.php:124 view/FocusPages/FocusPageRow.php:141
 
 
 
 
 
 
 
 
 
 
 
 
 
9843
  #, php-format
9844
  msgid ""
9845
  "The Chances of Ranking is dynamically calculated by the Squirrly Machine "
@@ -9853,118 +10176,124 @@ msgid ""
9853
  msgstr ""
9854
 
9855
  # @ squirrly-seo
9856
- #: view/FocusPages/FocusPageRow.php:175
9857
  #, fuzzy
9858
  #| msgid "Could not send the email..."
9859
  msgid "Do you want to delete the Focus Page?"
9860
  msgstr "Konnte E-Mail nicht senden ..."
9861
 
9862
- #: view/FocusPages/FocusPageRow.php:181
9863
- msgid "Delete Focus Page"
9864
- msgstr ""
 
 
 
9865
 
9866
- #: view/FocusPages/FocusPageStats.php:39
9867
  #, php-format
9868
  msgid "Week %s of %s"
9869
  msgstr ""
9870
 
9871
- #: view/FocusPages/FocusPageStats.php:53
9872
  #, php-format
9873
  msgid "Rank increased %s positions for the keyword: %s"
9874
  msgstr ""
9875
 
9876
- #: view/FocusPages/FocusPageStats.php:59
9877
  #, php-format
9878
  msgid "Time on Page increased with %s minutes"
9879
  msgstr ""
9880
 
9881
- #: view/FocusPages/FocusPageStats.php:64
9882
  #, php-format
9883
  msgid "Page Traffic increased with %s visits"
9884
  msgstr ""
9885
 
9886
- #: view/FocusPages/FocusPageStats.php:70
9887
  #, php-format
9888
  msgid "Organic Clicks increased with %s for the keyword: %s"
9889
  msgstr ""
9890
 
9891
- #: view/FocusPages/FocusPageStats.php:76
9892
  #, php-format
9893
  msgid "Page Authority increased with %s"
9894
  msgstr ""
9895
 
9896
- #: view/FocusPages/FocusPageStats.php:81
9897
  #, php-format
9898
  msgid "You got %s Social Shares"
9899
  msgstr ""
9900
 
9901
- #: view/FocusPages/FocusPageStats.php:88
9902
  #, php-format
9903
  msgid "Page loads with %ss faster"
9904
  msgstr ""
9905
 
9906
  # @ squirrly-seo
9907
- #: view/FocusPages/FocusPageStats.php:114
9908
  #, fuzzy
9909
  #| msgid "Change it >>"
9910
  msgid "Chances of Ranking"
9911
  msgstr "Ändern >>"
9912
 
9913
- #: view/FocusPages/FocusPageStats.php:115
9914
- #: view/FocusPages/FocusPageStats.php:141
9915
  #, php-format
9916
  msgid "the latest %s days evolution for this Focus Page"
9917
  msgstr ""
9918
 
9919
  # @ squirrly-seo
9920
- #: view/FocusPages/FocusPageStats.php:170
9921
  #, fuzzy
9922
  #| msgid "Keyword:"
9923
  msgid "Keyword Ranking"
9924
  msgstr "Schlüsselwort:"
9925
 
9926
- #: view/FocusPages/FocusPageStats.php:171
9927
  #, php-format
9928
  msgid "the latest %s days ranking for %s"
9929
  msgstr ""
9930
 
9931
- #: view/FocusPages/FocusPageStats.php:197
9932
  #, php-format
9933
  msgid "the latest %s days page views"
9934
  msgstr ""
9935
 
9936
- #: view/FocusPages/FocusPages.php:19
9937
  msgid "Current Ranking Drawbacks"
9938
  msgstr ""
9939
 
9940
- #: view/FocusPages/FocusPages.php:99
9941
  #, php-format
9942
  msgid "No data for this filter. %sShow All%s Focus Pages."
9943
  msgstr ""
9944
 
9945
- #: view/FocusPages/FocusPages.php:103
 
 
 
9946
  msgid "Welcome to Focus Pages"
9947
- msgstr ""
9948
 
9949
- #: view/FocusPages/FocusPages.php:105
9950
  msgid "Add a new page as Focus Page to get started"
9951
  msgstr ""
9952
 
9953
- #: view/FocusPages/FocusPages.php:109
9954
  msgid "Tips: Which Page Should I Choose?"
9955
  msgstr ""
9956
 
9957
- #: view/FocusPages/FocusPages.php:111
9958
  msgid ""
9959
  "One of the most important pages in your website, you money-makers, the pages "
9960
  "that bring you conversions."
9961
  msgstr ""
9962
 
9963
- #: view/FocusPages/FocusPages.php:112
9964
  msgid "Don't choose your Home Page, Contact Page or About Use page."
9965
  msgstr ""
9966
 
9967
- #: view/FocusPages/Pagelist.php:59
9968
  #, php-format
9969
  msgid ""
9970
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
@@ -9973,248 +10302,204 @@ msgid ""
9973
  msgstr ""
9974
 
9975
  # @ squirrly-seo
9976
- #: view/FocusPages/Settings.php:21
9977
  #, fuzzy
9978
  #| msgid "Save settings"
9979
  msgid "Focus Pages Settings"
9980
  msgstr "Einstellungen speichern"
9981
 
9982
- #: view/Frontend/Assistant.php:34 view/Post.php:8
9983
- msgid ""
9984
- "To load Squirrly Live Assistant and optimize this page, click to connect to "
9985
- "Squirrly Data Cloud."
9986
- msgstr ""
9987
-
9988
- #: view/Goals/CheckSeo.php:25
9989
  msgid ""
9990
  "See all the improvements from all Squirrly SEO features in a single panel."
9991
  msgstr ""
9992
 
9993
  # @ squirrly-seo
9994
- #: view/Goals/CheckSeo.php:52
9995
  #, fuzzy
9996
  #| msgid "Send Question"
9997
  msgid "See results"
9998
  msgstr "Senden Sie Ihre Frage"
9999
 
10000
  # @ squirrly-seo
10001
- #: view/Goals/CheckSeo.php:99
10002
  #, fuzzy
10003
  #| msgid "Change the Website Icon"
10004
  msgid "Website SEO Check"
10005
  msgstr "Ändern Sie das Website-Symbol"
10006
 
 
 
 
 
 
 
10007
  #: view/Goals/CheckSeo.php:113
 
 
 
 
 
 
10008
  msgid ""
10009
  "Remember that it may take up to 1 minute for a complete SEO check. There is "
10010
  "a lot of processing involved."
10011
  msgstr ""
10012
 
10013
- #: view/Goals/CheckSeo.php:140
10014
  msgid "Congratulations!"
10015
  msgstr ""
10016
 
10017
- #: view/Goals/Goals.php:36
 
 
 
 
10018
  #, php-format
10019
- msgid "%s goals for today"
10020
  msgstr ""
10021
 
10022
- #: view/Goals/Goals.php:51
10023
  msgid "Reach New Goals"
10024
  msgstr ""
10025
 
10026
- #: view/Goals/Goals.php:52
 
 
 
10027
  msgid "Squirrly Smart Strategy sets new goals."
10028
- msgstr ""
10029
 
10030
- #: view/Goals/Goals.php:54
10031
  msgid "How unique are these goals?"
10032
  msgstr ""
10033
 
10034
- #: view/Goals/Goals.php:66
10035
  msgid "Daily Progress"
10036
  msgstr ""
10037
 
10038
- #: view/Goals/Goals.php:76
10039
  msgid "Today's Progress"
10040
  msgstr ""
10041
 
10042
- #: view/Goals/Goals.php:87
10043
  #, php-format
10044
  msgid ""
10045
  "Hint: remember to click: %sShow me how - Mark as Done%s, when you complete a "
10046
  "goal."
10047
  msgstr ""
10048
 
10049
- #: view/Goals/Goals.php:103
10050
  msgid "Goal completed. Good Job!"
10051
  msgstr ""
10052
 
10053
- #: view/Goals/Goals.php:115
10054
  msgid "use"
10055
  msgstr ""
10056
 
10057
- #: view/Goals/Goals.php:122
10058
  msgid "Time to complete this goal."
10059
  msgstr ""
10060
 
10061
- #: view/Goals/Goals.php:122
10062
  msgid "up to"
10063
  msgstr ""
10064
 
10065
- #: view/Goals/Goals.php:137
10066
  msgid "Show me how"
10067
  msgstr ""
10068
 
10069
- #: view/Goals/Goals.php:141
10070
  msgid "Goal is not done!"
10071
  msgstr ""
10072
 
10073
- #: view/Goals/Goals.php:155
10074
  msgid "SOLUTION"
10075
  msgstr ""
10076
 
10077
- #: view/Goals/Goals.php:167
10078
  msgid "Let's do this"
10079
  msgstr ""
10080
 
10081
- #: view/Goals/Goals.php:177
10082
  msgid "Mark As Done"
10083
  msgstr ""
10084
 
10085
- #: view/Goals/Goals.php:194
 
 
 
10086
  msgid "Do you want to ignore this goal?"
10087
- msgstr ""
10088
 
10089
- #: view/Goals/Goals.php:216
10090
  msgid "Want to keep boosting your SEO?"
10091
  msgstr ""
10092
 
10093
- #: view/Goals/Goals.php:218
10094
  #, fuzzy
10095
  #| msgid "Optimize for Keyword"
10096
  msgid "Optimize your Posts and Pages"
10097
  msgstr "Schlüsselwort optimieren"
10098
 
10099
- #: view/Goals/Goals.php:243
10100
  msgid "Show hidden goals"
10101
  msgstr ""
10102
 
10103
- #: view/Goals/Goals.php:253
10104
  msgid "Next goals on"
10105
  msgstr ""
10106
 
10107
- #: view/Goals/Goals.php:262
10108
  msgid "Load more goals if exist"
10109
  msgstr ""
10110
 
10111
- #: view/Onboarding/Step1.php:21
10112
- msgid "Welcome to Squirrly SEO 2020 (Smart Strategy)"
10113
- msgstr ""
10114
-
10115
- # @ squirrly-seo
10116
- #: view/Onboarding/Step1.php:24 view/Onboarding/Step2.1.php:14
10117
- #: view/Onboarding/Step2.1.php:49 view/Onboarding/Step3.php:14
10118
- #, fuzzy
10119
- #| msgid "SEO Software"
10120
- msgid "Continue"
10121
- msgstr "SEO Software"
10122
-
10123
- #: view/Onboarding/Step1.php:32
10124
- msgid "Your Private SEO Consultant Sets Up the SEO for Your WordPress"
10125
- msgstr ""
10126
-
10127
- #: view/Onboarding/Step1.php:40
10128
- msgid "Getting SEO Automation ready on your WP"
10129
- msgstr ""
10130
-
10131
- # @ squirrly-seo
10132
- #: view/Onboarding/Step1.php:48
10133
- #, fuzzy
10134
- #| msgid "Twitter"
10135
- msgid "Activating METAs"
10136
- msgstr "Twitter"
10137
-
10138
- #: view/Onboarding/Step1.php:56
10139
- msgid "Activating JSON-LD schema.org"
10140
- msgstr ""
10141
-
10142
- # @ squirrly-seo
10143
- #: view/Onboarding/Step1.php:64
10144
- #, fuzzy
10145
- #| msgid "Twitter"
10146
- msgid "Activating Open Graph"
10147
- msgstr "Twitter"
10148
-
10149
- # @ squirrly-seo
10150
- #: view/Onboarding/Step1.php:72
10151
- #, fuzzy
10152
- #| msgid "Twitter"
10153
- msgid "Activating Twitter Cards"
10154
- msgstr "Twitter"
10155
-
10156
- # @ squirrly-seo
10157
- #: view/Onboarding/Step1.php:80
10158
- #, fuzzy
10159
- #| msgid "Enter your email"
10160
- msgid "Creating your Sitemap"
10161
- msgstr "In Artikel einfügen"
10162
-
10163
- #: view/Onboarding/Step1.php:88
10164
- msgid "Creating robots.txt"
10165
- msgstr ""
10166
-
10167
- #: view/Onboarding/Step1.php:93
10168
- msgid "Success! You are all setup"
10169
- msgstr ""
10170
-
10171
- #: view/Onboarding/Step2.1.php:11
10172
  msgid "14 Days Journey"
10173
  msgstr ""
10174
 
10175
- #: view/Onboarding/Step2.1.php:31
10176
  msgid ""
10177
  "To drive it in the right direction, you have the chance to join (for Free) "
10178
  "the 14 Days Journey to Better Rankings."
10179
  msgstr ""
10180
 
10181
- #: view/Onboarding/Step2.1.php:36
10182
  msgid "You'll get"
10183
  msgstr ""
10184
 
10185
- #: view/Onboarding/Step2.1.php:38
10186
  #, php-format
10187
  msgid ""
10188
  "the %schance to fix in 14 days%s mistakes from years of ineffective SEO."
10189
  msgstr ""
10190
 
10191
- #: view/Onboarding/Step2.1.php:39
10192
  #, php-format
10193
  msgid "the skills you need to %ssucceed in 14 days%s."
10194
  msgstr ""
10195
 
10196
- #: view/Onboarding/Step2.1.php:40
10197
  #, php-format
10198
  msgid ""
10199
  "access to the private %sJourneyTeam community%s where you can share your "
10200
  "experience and talk about it (good and bad, all is accepted)."
10201
  msgstr ""
10202
 
10203
- #: view/Onboarding/Step2.1.php:41
10204
  #, php-format
10205
  msgid ""
10206
  "receive%s help from the JourneyTeam%s and Private Feedback on your journey "
10207
  "from Squirrly."
10208
  msgstr ""
10209
 
10210
- #: view/Onboarding/Step2.1.php:42
10211
  #, php-format
10212
  msgid ""
10213
  "an %sexact recipe to follow for 14 Days%s to bring one of your pages up in "
10214
  "rankings, for a hands-on experience."
10215
  msgstr ""
10216
 
10217
- #: view/Onboarding/Step2.1.php:43
10218
  #, php-format
10219
  msgid ""
10220
  "%sall the costs%s (to third parties) involved with APIs, technology, cloud "
@@ -10222,20 +10507,34 @@ msgid ""
10222
  "member who wishes to become part of the winning JourneyTeam."
10223
  msgstr ""
10224
 
10225
- #: view/Onboarding/Step2.2.php:10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10226
  msgid "Start the 14 Days Journey"
10227
  msgstr ""
10228
 
10229
- #: view/Onboarding/Step2.2.php:24
10230
  msgid "Awesome! You are on your way to better results."
10231
  msgstr ""
10232
 
10233
- #: view/Onboarding/Step2.2.php:26
10234
  #, php-format
10235
  msgid "You will receive the %sdaily recipe%s in your %sDashboard%s."
10236
  msgstr ""
10237
 
10238
- #: view/Onboarding/Step2.2.php:33
10239
  #, php-format
10240
  msgid ""
10241
  "%sIn 14 Days you can tell us how it went%s (via messages on our %sFacebook "
@@ -10243,60 +10542,203 @@ msgid ""
10243
  "you got during the 14 Days."
10244
  msgstr ""
10245
 
10246
- #: view/Onboarding/Step2.2.php:37
10247
  msgid "Close"
10248
  msgstr ""
10249
 
10250
- #: view/Onboarding/Step2.2.php:41
10251
  msgid "Choose how to continue"
10252
  msgstr ""
10253
 
10254
- #: view/Onboarding/Step2.2.php:51
10255
  msgid "Let's Start My 14 Days Journey"
10256
  msgstr ""
10257
 
10258
- #: view/Onboarding/Step2.2.php:59
10259
  msgid "Nah, there is little interest in this"
10260
  msgstr ""
10261
 
10262
- #: view/Onboarding/Step2.2.php:68
10263
  msgid "Close Window"
10264
  msgstr ""
10265
 
10266
  # @ squirrly-seo
10267
- #: view/Onboarding/Step3.php:11
10268
  #, fuzzy
10269
- #| msgid "Save settings"
10270
- msgid "Import SEO & Settings"
10271
- msgstr "Einstellungen speichern"
10272
 
10273
- #: view/Onboarding/Step3.php:29
10274
- msgid "We've detected another SEO Plugin on your site."
10275
  msgstr ""
10276
 
10277
- #: view/Onboarding/Step3.php:33
10278
- #, php-format
10279
- msgid ""
10280
- "%sImport your settings and SEO%s from the following plugin into your new "
10281
- "Squirrly SEO"
10282
  msgstr ""
10283
 
10284
- #: view/Onboarding/Step3.php:54 view/SeoSettings/Backup.php:63
10285
- #: view/SeoSettings/Backup.php:92
10286
- msgid "We couldn't find any SEO plugin or theme to import from."
10287
- msgstr ""
 
 
10288
 
10289
- #: view/Onboarding/Step3.php:63
10290
- msgid "What you gain"
 
 
10291
  msgstr ""
10292
 
10293
- #: view/Onboarding/Step3.php:65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10294
  msgid ""
10295
  "Everything will be the same in your site, and Google will keep all your "
10296
  "rankings safe."
10297
  msgstr ""
10298
 
10299
- #: view/Onboarding/Step3.php:66
10300
  msgid ""
10301
  "Squirrly SEO covers everything that Google used to see from the old plugin, "
10302
  "and brings new stuff in. That's why Google will do more than keep your "
@@ -10304,11 +10746,11 @@ msgid ""
10304
  "Squirrly."
10305
  msgstr ""
10306
 
10307
- #: view/Onboarding/Step3.php:70
10308
  msgid "If you decide to switch back"
10309
  msgstr ""
10310
 
10311
- #: view/Onboarding/Step3.php:72
10312
  msgid ""
10313
  "you can always switch back, without any issues. Your old plugin will remain "
10314
  "the same. We don't delete it."
@@ -10326,144 +10768,121 @@ msgstr ""
10326
  msgid "Click Continue to go to the next step."
10327
  msgstr ""
10328
 
10329
- #: view/Onboarding/Step4.php:19
10330
  msgid ""
10331
  "Your private SEO consultant is now accessing our cloud services to start "
10332
  "analyzing your site."
10333
  msgstr ""
10334
 
10335
- #: view/Onboarding/Step4.php:20
10336
  msgid ""
10337
  "Our machine learning is now trying to match some of the data with what we "
10338
  "have in our system."
10339
  msgstr ""
10340
 
10341
- #: view/Onboarding/Step4.php:21
10342
  msgid "Getting your SEO Protection to 100%."
10343
  msgstr ""
10344
 
10345
- #: view/Onboarding/Step4.php:22
10346
  msgid "Covering all the post types from your WP with Excellent on-page SEO."
10347
  msgstr ""
10348
 
10349
- #: view/Onboarding/Step4.php:23
10350
  msgid "Analysis by consultant reaching 100%."
10351
  msgstr ""
10352
 
10353
- #: view/Onboarding/Step4.php:32
10354
  msgid ""
10355
  "You can now check today's SEO Goals to see what your new Consultant says you "
10356
  "should focus on."
10357
  msgstr ""
10358
 
10359
- #: view/Onboarding/Step4.php:36
10360
  msgid "Check Today's SEO Goals"
10361
  msgstr ""
10362
 
10363
- #: view/Overview.php:18
10364
- #, fuzzy
10365
- #| msgid "This email connects you to Squirrly.co"
10366
- msgid "Connect Your Site to Squirrly Cloud"
10367
- msgstr "This email connects you to Squirrly.co"
10368
-
10369
- #: view/Overview.php:19
10370
- #, php-format
10371
- msgid ""
10372
- "Get Access to the Non-Human SEO Consultant, Focus Pages, SEO Audits and all "
10373
- "our features %s by creating a free account"
10374
- msgstr ""
10375
-
10376
- #: view/Overview.php:43
10377
  msgid ""
10378
  "You do not have permission to access Daily Goals. You need Squirrly SEO "
10379
  "Editor role."
10380
  msgstr ""
10381
 
10382
  # @ squirrly-seo
10383
- #: view/Overview.php:80
10384
  #, fuzzy
10385
- #| msgid "Save settings"
10386
- msgid "Show Advanced SEO"
10387
- msgstr "Einstellungen speichern"
10388
-
10389
- #: view/Overview.php:81
10390
- msgid ""
10391
- "Switch off to have the simplified version of the settings, intended for Non-"
10392
- "SEO Experts."
10393
- msgstr ""
10394
 
10395
- #: view/Overview.php:82
 
10396
  msgid ""
10397
- "It will offer the same level of SEO performance, but it will be less "
10398
- "customizable."
10399
  msgstr ""
10400
 
10401
- #: view/Overview.php:94
10402
- msgid "We Need Your Support"
10403
  msgstr ""
10404
 
10405
  # @ squirrly-seo
10406
- #: view/Overview.php:103
10407
- #, fuzzy
10408
- #| msgid "Squirrly settings"
10409
- msgid "Rate us if you like Squirrly SEO"
10410
- msgstr "Squirrly Einstellungen"
10411
-
10412
- # @ squirrly-seo
10413
- #: view/Ranking/Gscsync.php:15
10414
  #, fuzzy
10415
  #| msgid "Google %sAnalytics ID%s`:"
10416
  msgid "Google Search Console Keywords Sync"
10417
  msgstr "Google %sAnalytics ID%s`:"
10418
 
10419
- #: view/Ranking/Gscsync.php:16 view/Research/Suggested.php:16
10420
  msgid ""
10421
  "See the trending keywords suitable for your website's future topics. We "
10422
  "check for new keywords weekly based on your latest researches."
10423
  msgstr ""
10424
 
10425
- #: view/Ranking/Gscsync.php:20
10426
  msgid ""
10427
  "This is the list of keywords you have in Google Search Console. Information "
10428
  "for the last 90 days. You can add keywords that you find relevant to your "
10429
  "Briefcase and to the Rankings section."
10430
  msgstr ""
10431
 
10432
- #: view/Ranking/Gscsync.php:34
10433
  msgid "Click-Through Rate"
10434
  msgstr ""
10435
 
10436
  # @ squirrly-seo
10437
- #: view/Ranking/Gscsync.php:35
10438
  #, fuzzy
10439
  #| msgid "Description:"
10440
  msgid "Average Position"
10441
  msgstr "Beschreibung:"
10442
 
10443
- #: view/Ranking/Gscsync.php:35
 
 
 
10444
  msgid "AVG Position"
10445
- msgstr ""
10446
 
10447
  # @ squirrly-seo
10448
- #: view/Ranking/Gscsync.php:78 view/Research/HistoryDetails.php:83
10449
- #: view/Research/ResearchDetails.php:56 view/Research/Suggested.php:131
10450
  #, fuzzy
10451
  #| msgid "Squirrly Keyword Research"
10452
- msgid "Already in briefcase"
10453
  msgstr "Squirrly Erweiterte Suche!"
10454
 
10455
- #: view/Ranking/Gscsync.php:83
10456
  msgid "Add to Rank Checker"
10457
  msgstr ""
10458
 
10459
  # @ squirrly-seo
10460
- #: view/Ranking/Gscsync.php:99
10461
  #, fuzzy
10462
  #| msgid "Google %sAnalytics ID%s`:"
10463
  msgid "Welcome to Google Search Console Keywords Sync"
10464
  msgstr "Google %sAnalytics ID%s`:"
10465
 
10466
- #: view/Ranking/Gscsync.php:102
10467
  #, php-format
10468
  msgid ""
10469
  "If you're new to SEO, you probably don't know yet how slow Google actually "
@@ -10471,694 +10890,280 @@ msgid ""
10471
  "big as The New York Times, Amazon.com, etc. %s Here are some resources. %s "
10472
  "We could not find any keywords from your GSC account, because Google doesn't "
10473
  "have enough data about your site yet. %s Give Google more time to learn "
10474
- "about your site. Until then, keep working on your Daily SEO Goals from "
10475
- "Squirrly SEO."
10476
  msgstr ""
10477
 
10478
- #: view/Ranking/Gscsync.php:105
10479
  msgid "Tips: Which Keyword Should I Choose?"
10480
  msgstr ""
10481
 
10482
- #: view/Ranking/Gscsync.php:107 view/Ranking/Rankings.php:443
10483
  #, php-format
10484
  msgid ""
10485
  "From %sSquirrly Briefcase%s you can send keywords to Rank Checker to track "
10486
  "the SERP evolution."
10487
  msgstr ""
10488
 
10489
- # @ squirrly-seo
10490
- #: view/Ranking/Rankings.php:31
10491
- #, fuzzy
10492
- #| msgid "Google %sAnalytics ID%s`:"
10493
- msgid "Google Rankings"
10494
- msgstr "Google %sAnalytics ID%s`:"
10495
-
10496
- #: view/Ranking/Rankings.php:33
10497
  msgid ""
10498
  "It's a fully functional SEO Ranking Tool that helps you find the true "
10499
  "position of your website in Google for any keyword and any country you want"
10500
  msgstr ""
10501
 
10502
- #: view/Ranking/Rankings.php:35
10503
  msgid ""
10504
  "Get the Google Search Console average possitions, clicks and impressions for "
10505
  "all organic keywords of your website."
10506
  msgstr ""
10507
 
10508
- #: view/Ranking/Rankings.php:97
10509
  msgid "Only show ranked articles"
10510
  msgstr ""
10511
 
10512
  # @ squirrly-seo
10513
- #: view/Ranking/Rankings.php:101
10514
  #, fuzzy
10515
  #| msgid "Keyword:"
10516
  msgid "Today Avg. Ranking"
10517
  msgstr "Schlüsselwort:"
10518
 
10519
- #: view/Ranking/Rankings.php:105
10520
  msgid "Only show SERP changes"
10521
  msgstr ""
10522
 
10523
- #: view/Ranking/Rankings.php:127
10524
  msgid "Today SERP Changes"
10525
  msgstr ""
10526
 
10527
- #: view/Ranking/Rankings.php:156
10528
  #, php-format
10529
  msgid "the latest %s days Google Rankings evolution"
10530
  msgstr ""
10531
 
10532
- #: view/Ranking/Rankings.php:162
10533
  #, php-format
10534
  msgid "%s keyword ranked in TOP 10"
10535
  msgstr ""
10536
 
10537
- #: view/Ranking/Rankings.php:167
10538
  #, php-format
10539
  msgid "%s keyword ranked better today"
10540
  msgstr ""
10541
 
10542
- #: view/Ranking/Rankings.php:179
10543
  #, php-format
10544
  msgid "Ranks improved with an average of %s in the last 7 days."
10545
  msgstr ""
10546
 
10547
- #: view/Ranking/Rankings.php:203 view/Research/Briefcase.php:64
10548
- #: view/Research/Labels.php:80
10549
  msgid "Bulk Actions"
10550
  msgstr ""
10551
 
10552
  # @ squirrly-seo
10553
- #: view/Ranking/Rankings.php:204
10554
  #, fuzzy
10555
  #| msgid "Could not send the email..."
10556
  msgid "Ar you sure you want to delete the keyword?"
10557
  msgstr "Konnte E-Mail nicht senden ..."
10558
 
10559
  # @ squirrly-seo
10560
- #: view/Ranking/Rankings.php:204 view/Research/Briefcase.php:67
10561
- #: view/Research/Labels.php:81
10562
  #, fuzzy
10563
  #| msgid "Keyword:"
10564
  msgid "Delete"
10565
  msgstr "Schlüsselwort:"
10566
 
10567
  # @ squirrly-seo
10568
- #: view/Ranking/Rankings.php:206
10569
  #, fuzzy
10570
  #| msgid "Squirrly Keyword Research"
10571
  msgid "Refresh Serp"
10572
  msgstr "Squirrly Erweiterte Suche!"
10573
 
10574
- #: view/Ranking/Rankings.php:209 view/Research/Briefcase.php:69
10575
- #: view/Research/Labels.php:83
10576
  msgid "Apply"
10577
  msgstr ""
10578
 
10579
- #: view/Ranking/Rankings.php:217
10580
  msgid "Path"
10581
  msgstr ""
10582
 
10583
- #: view/Ranking/Rankings.php:219 view/Research/Briefcase.php:112
10584
- msgid "Rank"
10585
- msgstr ""
10586
-
10587
- #: view/Ranking/Rankings.php:220
10588
- msgid "Best"
10589
- msgstr ""
10590
-
10591
- #: view/Ranking/Rankings.php:222 view/Research/Briefcase.php:114
10592
- msgid "Avg Rank"
10593
- msgstr ""
10594
-
10595
- #: view/Ranking/Rankings.php:255 view/Ranking/Rankings.php:285
10596
- msgid "Google Search Console has no data for this keyword"
10597
- msgstr ""
10598
-
10599
  # @ squirrly-seo
10600
- #: view/Ranking/Rankings.php:261
10601
  #, fuzzy
10602
- #| msgid "Keywords:"
10603
- msgid "Sync Keywords"
10604
- msgstr "Schlüsselwörter:"
10605
-
10606
- #: view/Ranking/Rankings.php:275
10607
- msgid "Not indexed"
10608
- msgstr ""
10609
-
10610
- #: view/Ranking/Rankings.php:286
10611
- msgid "GSC"
10612
- msgstr ""
10613
-
10614
- #: view/Ranking/Rankings.php:290
10615
- msgid "rank details"
10616
- msgstr ""
10617
 
10618
- #: view/Ranking/Rankings.php:309
10619
- msgid "Check Ranking again"
10620
  msgstr ""
10621
 
10622
  # @ squirrly-seo
10623
- #: view/Ranking/Rankings.php:322
10624
  #, fuzzy
10625
  #| msgid "Keyword:"
10626
- msgid "Remove Keyword"
10627
  msgstr "Schlüsselwort:"
10628
 
10629
- #: view/Ranking/Rankings.php:380
10630
- #, fuzzy
10631
- #| msgid "Optimize for Keyword"
10632
- msgid "Optimized with SLA"
10633
- msgstr "Schlüsselwort optimieren"
10634
-
10635
- #: view/Ranking/Rankings.php:388
10636
- msgid "Social Shares"
10637
- msgstr ""
10638
-
10639
- # @ squirrly-seo
10640
- #: view/Ranking/Rankings.php:391
10641
- #, fuzzy
10642
- #| msgid "Description:"
10643
- msgid "Facebook Shares"
10644
- msgstr "Beschreibung:"
10645
-
10646
- #: view/Ranking/Rankings.php:392
10647
- msgid "Reddit Shares"
10648
- msgstr ""
10649
-
10650
- #: view/Ranking/Rankings.php:393
10651
- msgid "Pinterest Pins"
10652
- msgstr ""
10653
-
10654
- #: view/Ranking/Rankings.php:400 view/Research/Briefcase.php:300
10655
- #: view/Research/History.php:30 view/Research/Research.php:199
10656
- #: view/Research/Suggested.php:29
10657
- msgid "Country"
10658
- msgstr ""
10659
-
10660
- #: view/Ranking/Rankings.php:415
10661
- msgid ""
10662
- "Note! The clicks and impressions data is taken from Google Search Console "
10663
- "for the last 90 days for the current URL."
10664
- msgstr ""
10665
-
10666
- # @ squirrly-seo
10667
- #: view/Ranking/Rankings.php:430
10668
- #, fuzzy
10669
- #| msgid "No results found!"
10670
- msgid "No ranking found."
10671
- msgstr "Keine Ergebnisse gefunden!"
10672
-
10673
- #: view/Ranking/Rankings.php:434
10674
- msgid "Welcome to Squirrly Rankings"
10675
- msgstr ""
10676
-
10677
  # @ squirrly-seo
10678
- #: view/Ranking/Rankings.php:437
10679
- #, fuzzy
10680
- #| msgid "Do a research"
10681
- msgid "Add keywords in Briefcase"
10682
- msgstr "Recherchieren"
10683
-
10684
- #: view/Ranking/Rankings.php:441
10685
- msgid "Tips: How to add Keywords in Rankings?"
10686
- msgstr ""
10687
-
10688
- #: view/Ranking/Rankings.php:444
10689
- #, php-format
10690
- msgid ""
10691
- "Connect with %sGoogle Search Console%s to synchronize the keywords for which "
10692
- "your website is ranking."
10693
- msgstr ""
10694
-
10695
- # @ squirrly-seo
10696
- #: view/Ranking/Rankings.php:466
10697
- #, fuzzy
10698
- #| msgid "Google %sAnalytics ID%s`:"
10699
- msgid "Synchronize Keywords with Google Search Console"
10700
- msgstr "Google %sAnalytics ID%s`:"
10701
-
10702
- # @ squirrly-seo
10703
- #: view/Ranking/Settings.php:29
10704
- #, fuzzy
10705
- #| msgid "Save settings"
10706
- msgid "Rankings Settings"
10707
- msgstr "Einstellungen speichern"
10708
-
10709
- # @ squirrly-seo
10710
- #: view/Ranking/Settings.php:43
10711
  #, fuzzy
10712
  #| msgid "Google %sAnalytics ID%s`:"
10713
- msgid "Google Country"
10714
  msgstr "Google %sAnalytics ID%s`:"
10715
 
10716
- #: view/Ranking/Settings.php:44
10717
- msgid ""
10718
- "Select the Google country for which Squirrly will check the Google rank."
10719
- msgstr ""
10720
-
10721
- #: view/Ranking/Settings.php:48
10722
- msgid "Default"
10723
- msgstr ""
10724
-
10725
- #: view/Ranking/Settings.php:49
10726
- msgid "American Samoa"
10727
- msgstr ""
10728
-
10729
- #: view/Ranking/Settings.php:50
10730
- msgid "Anguilla"
10731
- msgstr ""
10732
-
10733
- #: view/Ranking/Settings.php:51
10734
- msgid "Antigua and Barbuda"
10735
- msgstr ""
10736
-
10737
- #: view/Ranking/Settings.php:52
10738
- msgid "Argentina"
10739
- msgstr ""
10740
-
10741
- #: view/Ranking/Settings.php:53
10742
- msgid "Australia"
10743
- msgstr ""
10744
-
10745
- #: view/Ranking/Settings.php:54
10746
- msgid "Austria"
10747
- msgstr ""
10748
-
10749
- #: view/Ranking/Settings.php:55
10750
- msgid "Azerbaijan"
10751
- msgstr ""
10752
-
10753
- #: view/Ranking/Settings.php:56
10754
- msgid "Belgium"
10755
- msgstr ""
10756
-
10757
- #: view/Ranking/Settings.php:57
10758
- msgid "Brazil"
10759
- msgstr ""
10760
-
10761
- #: view/Ranking/Settings.php:58
10762
- msgid "British Virgin Islands"
10763
- msgstr ""
10764
-
10765
- #: view/Ranking/Settings.php:59
10766
- msgid "Burundi"
10767
- msgstr ""
10768
-
10769
- #: view/Ranking/Settings.php:60
10770
- msgid "Bulgaria"
10771
- msgstr ""
10772
-
10773
- #: view/Ranking/Settings.php:61
10774
- msgid "Canada"
10775
- msgstr ""
10776
-
10777
- #: view/Ranking/Settings.php:62
10778
- msgid "Chad"
10779
- msgstr ""
10780
-
10781
- #: view/Ranking/Settings.php:63
10782
- msgid "Chile"
10783
- msgstr ""
10784
-
10785
- #: view/Ranking/Settings.php:64
10786
- msgid "Colombia"
10787
- msgstr ""
10788
-
10789
- #: view/Ranking/Settings.php:65
10790
- msgid "Costa Rica"
10791
- msgstr ""
10792
-
10793
- #: view/Ranking/Settings.php:66
10794
- msgid "Côte d\\'Ivoire"
10795
- msgstr ""
10796
-
10797
- #: view/Ranking/Settings.php:67
10798
- msgid "Cuba"
10799
- msgstr ""
10800
-
10801
- #: view/Ranking/Settings.php:68
10802
- msgid "Czech Republic"
10803
- msgstr ""
10804
-
10805
- #: view/Ranking/Settings.php:69
10806
- msgid "Dem. Rep. of the Congo"
10807
- msgstr ""
10808
-
10809
- #: view/Ranking/Settings.php:70
10810
- msgid "Denmark"
10811
- msgstr ""
10812
-
10813
- #: view/Ranking/Settings.php:71
10814
- msgid "Djibouti"
10815
- msgstr ""
10816
-
10817
- #: view/Ranking/Settings.php:72
10818
- msgid "Dominican Republic"
10819
- msgstr ""
10820
-
10821
- #: view/Ranking/Settings.php:73
10822
- msgid "Ecuador"
10823
- msgstr ""
10824
-
10825
- #: view/Ranking/Settings.php:74
10826
- msgid "Egypt"
10827
- msgstr ""
10828
-
10829
- #: view/Ranking/Settings.php:75
10830
- msgid "El Salvador"
10831
- msgstr ""
10832
-
10833
- #: view/Ranking/Settings.php:76
10834
- msgid "Estonia"
10835
- msgstr ""
10836
-
10837
- #: view/Ranking/Settings.php:77
10838
- msgid "Federated States of Micronesia"
10839
- msgstr ""
10840
-
10841
- #: view/Ranking/Settings.php:78
10842
- msgid "Fiji"
10843
- msgstr ""
10844
-
10845
- #: view/Ranking/Settings.php:79
10846
- msgid "Finland"
10847
- msgstr ""
10848
-
10849
- #: view/Ranking/Settings.php:80
10850
- msgid "France"
10851
- msgstr ""
10852
-
10853
- #: view/Ranking/Settings.php:81
10854
- msgid "The Gambia"
10855
- msgstr ""
10856
-
10857
- #: view/Ranking/Settings.php:82
10858
- msgid "Georgia"
10859
- msgstr ""
10860
-
10861
- #: view/Ranking/Settings.php:83
10862
- msgid "Germany"
10863
- msgstr ""
10864
-
10865
- #: view/Ranking/Settings.php:84
10866
- msgid "Ghana "
10867
- msgstr ""
10868
-
10869
- #: view/Ranking/Settings.php:85
10870
- msgid "Gibraltar"
10871
- msgstr ""
10872
-
10873
- #: view/Ranking/Settings.php:86
10874
- msgid "Greece"
10875
- msgstr ""
10876
-
10877
- #: view/Ranking/Settings.php:87
10878
- msgid "Greenland"
10879
- msgstr ""
10880
-
10881
- #: view/Ranking/Settings.php:88
10882
- msgid "Guernsey"
10883
- msgstr ""
10884
-
10885
- #: view/Ranking/Settings.php:89
10886
- msgid "Honduras"
10887
- msgstr ""
10888
-
10889
- #: view/Ranking/Settings.php:90
10890
- msgid "Hong Kong"
10891
- msgstr ""
10892
-
10893
- #: view/Ranking/Settings.php:91
10894
- msgid "Hungary"
10895
- msgstr ""
10896
-
10897
- #: view/Ranking/Settings.php:92
10898
- msgid "India"
10899
- msgstr ""
10900
-
10901
- #: view/Ranking/Settings.php:93
10902
- msgid "Indonesia"
10903
- msgstr ""
10904
-
10905
- #: view/Ranking/Settings.php:94
10906
- msgid "Ireland"
10907
- msgstr ""
10908
-
10909
- #: view/Ranking/Settings.php:95
10910
- msgid "Isle of Man"
10911
- msgstr ""
10912
-
10913
- #: view/Ranking/Settings.php:96
10914
- msgid "Israel"
10915
- msgstr ""
10916
-
10917
- #: view/Ranking/Settings.php:97
10918
- msgid "Italy"
10919
- msgstr ""
10920
-
10921
- #: view/Ranking/Settings.php:98
10922
- msgid "Jamaica"
10923
- msgstr ""
10924
-
10925
- #: view/Ranking/Settings.php:99
10926
- msgid "Japan"
10927
- msgstr ""
10928
-
10929
- #: view/Ranking/Settings.php:100
10930
- msgid "Jersey"
10931
- msgstr ""
10932
-
10933
- #: view/Ranking/Settings.php:101
10934
- msgid "Kazakhstan"
10935
- msgstr ""
10936
-
10937
- #: view/Ranking/Settings.php:102
10938
- msgid "Korea"
10939
- msgstr ""
10940
-
10941
- #: view/Ranking/Settings.php:103
10942
- msgid "Latvia"
10943
- msgstr ""
10944
-
10945
- #: view/Ranking/Settings.php:104
10946
- msgid "Lesotho"
10947
- msgstr ""
10948
-
10949
- #: view/Ranking/Settings.php:105
10950
- msgid "Liechtenstein"
10951
- msgstr ""
10952
-
10953
- #: view/Ranking/Settings.php:106
10954
- msgid "Lithuania"
10955
- msgstr ""
10956
-
10957
- #: view/Ranking/Settings.php:107
10958
- msgid "Luxembourg"
10959
- msgstr ""
10960
-
10961
- #: view/Ranking/Settings.php:108
10962
- msgid "Malawi"
10963
- msgstr ""
10964
-
10965
- #: view/Ranking/Settings.php:109
10966
- msgid "Malaysia"
10967
- msgstr ""
10968
-
10969
- #: view/Ranking/Settings.php:110
10970
- msgid "Malta"
10971
- msgstr ""
10972
-
10973
- #: view/Ranking/Settings.php:111
10974
- msgid "Mauritius"
10975
- msgstr ""
10976
-
10977
- #: view/Ranking/Settings.php:112
10978
- msgid "México"
10979
- msgstr ""
10980
-
10981
- #: view/Ranking/Settings.php:113
10982
- msgid "Montserrat"
10983
- msgstr ""
10984
-
10985
- #: view/Ranking/Settings.php:114
10986
- msgid "Namibia"
10987
- msgstr ""
10988
-
10989
- #: view/Ranking/Settings.php:115
10990
- msgid "Nepal"
10991
- msgstr ""
10992
-
10993
- #: view/Ranking/Settings.php:116
10994
- msgid "Netherlands"
10995
- msgstr ""
10996
-
10997
- #: view/Ranking/Settings.php:117
10998
- msgid "New Zealand"
10999
- msgstr ""
11000
-
11001
- #: view/Ranking/Settings.php:118
11002
- msgid "Nicaragua"
11003
- msgstr ""
11004
-
11005
- #: view/Ranking/Settings.php:119
11006
- msgid "Nigeria"
11007
- msgstr ""
11008
-
11009
- #: view/Ranking/Settings.php:120
11010
- msgid "Norfolk Island"
11011
- msgstr ""
11012
-
11013
- #: view/Ranking/Settings.php:121
11014
- msgid "Norway"
11015
- msgstr ""
11016
-
11017
- #: view/Ranking/Settings.php:122
11018
- msgid "Pakistan"
11019
- msgstr ""
11020
-
11021
- #: view/Ranking/Settings.php:123
11022
- msgid "Panamá"
11023
- msgstr ""
11024
-
11025
- #: view/Ranking/Settings.php:124
11026
- msgid "Paraguay"
11027
- msgstr ""
11028
-
11029
- #: view/Ranking/Settings.php:125
11030
- msgid "Perú"
11031
- msgstr ""
11032
-
11033
- #: view/Ranking/Settings.php:126
11034
- msgid "Philippines"
11035
- msgstr ""
11036
-
11037
- #: view/Ranking/Settings.php:127
11038
- msgid "Pitcairn Islands"
11039
- msgstr ""
11040
-
11041
- #: view/Ranking/Settings.php:128
11042
- msgid "Poland"
11043
- msgstr ""
11044
-
11045
- #: view/Ranking/Settings.php:129
11046
- msgid "Portugal"
11047
- msgstr ""
11048
-
11049
- #: view/Ranking/Settings.php:130
11050
- msgid "Puerto Rico"
11051
- msgstr ""
11052
-
11053
- #: view/Ranking/Settings.php:131
11054
- msgid "Rep. of the Congo"
11055
- msgstr ""
11056
-
11057
- #: view/Ranking/Settings.php:132
11058
- msgid "Romania"
11059
  msgstr ""
11060
 
11061
- #: view/Ranking/Settings.php:133
11062
- msgid "Russia"
11063
  msgstr ""
11064
 
11065
- #: view/Ranking/Settings.php:134
11066
- msgid "Rwanda"
11067
- msgstr ""
 
 
 
11068
 
11069
- #: view/Ranking/Settings.php:135
11070
- msgid "Saint Helena"
11071
  msgstr ""
11072
 
11073
- #: view/Ranking/Settings.php:136
11074
- msgid "San Marino"
11075
- msgstr ""
 
 
 
11076
 
11077
- #: view/Ranking/Settings.php:137
11078
- msgid "Saudi Arabia"
11079
- msgstr ""
 
 
11080
 
11081
- #: view/Ranking/Settings.php:138
11082
- msgid "Singapore"
11083
  msgstr ""
11084
 
11085
- #: view/Ranking/Settings.php:139
11086
- msgid "Slovakia"
11087
- msgstr ""
 
 
 
11088
 
11089
- #: view/Ranking/Settings.php:140
11090
- msgid "South Africa"
11091
  msgstr ""
11092
 
11093
- #: view/Ranking/Settings.php:141
11094
- msgid "Spain"
11095
  msgstr ""
11096
 
11097
- #: view/Ranking/Settings.php:142
11098
- msgid "Sri Lanka"
11099
- msgstr ""
 
 
 
 
 
11100
 
11101
- #: view/Ranking/Settings.php:143
11102
- msgid "Sweden"
 
 
11103
  msgstr ""
11104
 
11105
- #: view/Ranking/Settings.php:144
11106
- msgid "Switzerland"
11107
- msgstr ""
 
 
 
11108
 
11109
- #: view/Ranking/Settings.php:145
11110
- msgid "Taiwan"
11111
- msgstr ""
 
 
 
11112
 
11113
- #: view/Ranking/Settings.php:146
11114
- msgid "Thailand"
11115
- msgstr ""
 
 
 
11116
 
11117
- #: view/Ranking/Settings.php:147
11118
- msgid "Trinidad and Tobago"
11119
  msgstr ""
11120
 
11121
- #: view/Ranking/Settings.php:148
11122
- msgid "Turkey"
 
 
 
11123
  msgstr ""
11124
 
11125
- #: view/Ranking/Settings.php:149
11126
- msgid "Ukraine"
11127
- msgstr ""
 
 
 
11128
 
11129
- #: view/Ranking/Settings.php:150
11130
- msgid "United Arab Emirates"
11131
- msgstr ""
 
 
 
11132
 
11133
- #: view/Ranking/Settings.php:151
11134
- msgid "United Kingdom"
11135
- msgstr ""
 
 
 
11136
 
11137
- #: view/Ranking/Settings.php:152
11138
- msgid "United States"
11139
  msgstr ""
11140
 
11141
- #: view/Ranking/Settings.php:153
11142
- msgid "Uruguay"
11143
  msgstr ""
11144
 
11145
- #: view/Ranking/Settings.php:154
11146
- msgid "Uzbekistan"
11147
- msgstr ""
 
 
 
11148
 
11149
- #: view/Ranking/Settings.php:155
11150
- msgid "Vanuatu"
11151
  msgstr ""
11152
 
11153
- #: view/Ranking/Settings.php:156
11154
- msgid "Venezuela"
11155
  msgstr ""
11156
 
11157
- #: view/Ranking/Settings.php:157
11158
- msgid "Vietnam"
11159
  msgstr ""
11160
 
11161
- #: view/Research/Briefcase.php:19
11162
  msgid ""
11163
  "Briefcase is essential to managing your SEO Strategy. With Briefcase you'll "
11164
  "find the best opportunities for keywords you're using in the Awareness "
@@ -11167,282 +11172,328 @@ msgid ""
11167
  msgstr ""
11168
 
11169
  # @ squirrly-seo
11170
- #: view/Research/Briefcase.php:35
11171
  #, fuzzy
11172
  #| msgid "Keyword:"
11173
  msgid "Search Keyword"
11174
  msgstr "Schlüsselwort:"
11175
 
11176
- #: view/Research/Briefcase.php:65 view/Research/Briefcase.php:226
11177
- msgid "Send to Rank Checker"
11178
- msgstr ""
 
 
 
11179
 
11180
- #: view/Research/Briefcase.php:66 view/Research/Briefcase.php:240
 
 
 
11181
  msgid "Assign Label"
11182
- msgstr ""
11183
 
11184
  # @ squirrly-seo
11185
- #: view/Research/Briefcase.php:67
11186
  #, fuzzy
11187
  #| msgid "Could not send the email..."
11188
  msgid "Ar you sure you want to delete the keywords?"
11189
  msgstr "Konnte E-Mail nicht senden ..."
11190
 
11191
- #: view/Research/Briefcase.php:75 view/Research/Briefcase.php:359
11192
  #, fuzzy, php-format
11193
  #| msgid "Optimize for Keyword"
11194
  msgid "Select Labels for: %s"
11195
  msgstr "Schlüsselwort optimieren"
11196
 
11197
  # @ squirrly-seo
11198
- #: view/Research/Briefcase.php:75
11199
  #, fuzzy
11200
  #| msgid "Keyword:"
11201
  msgid "selected keywords"
11202
  msgstr "Schlüsselwort:"
11203
 
11204
- #: view/Research/Briefcase.php:79
11205
  msgid ""
11206
  "By assigning these labels, you will reset the other labels you assigned for "
11207
  "each keyword individually."
11208
  msgstr ""
11209
 
11210
  # @ squirrly-seo
11211
- #: view/Research/Briefcase.php:88 view/Research/Briefcase.php:381
11212
- #: view/Research/Labels.php:22
11213
  #, fuzzy
11214
  #| msgid "+ Add keyword"
11215
  msgid "Add new Label"
11216
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11217
 
11218
- #: view/Research/Briefcase.php:93 view/Research/Briefcase.php:387
 
 
 
11219
  msgid "Save Labels"
11220
- msgstr ""
11221
 
11222
- #: view/Research/Briefcase.php:108
11223
  msgid "Usage"
11224
  msgstr ""
11225
 
11226
- #: view/Research/Briefcase.php:118 view/Research/Briefcase.php:311
 
 
 
11227
  msgid "Search Volume"
 
 
 
 
 
11228
  msgstr ""
11229
 
11230
- #: view/Research/Briefcase.php:161 view/Research/Briefcase.php:163
11231
  #, php-format
11232
  msgid "in %s posts"
11233
  msgstr ""
11234
 
11235
  # @ squirrly-seo
11236
- #: view/Research/Briefcase.php:182
 
 
 
 
 
 
 
11237
  #, fuzzy
11238
  #| msgid "Keyword:"
11239
  msgid "keyword info"
11240
  msgstr "Schlüsselwort:"
11241
 
11242
  # @ squirrly-seo
11243
- #: view/Research/Briefcase.php:204
11244
  #, fuzzy
11245
  #| msgid "Do a research"
11246
  msgid "No research data"
11247
  msgstr "Recherchieren"
11248
 
11249
- # @ squirrly-seo
11250
  #: view/Research/Briefcase.php:235
 
 
 
 
 
11251
  #, fuzzy
11252
  #| msgid "Squirrly Keyword Research"
11253
  msgid "Refresh Research"
11254
  msgstr "Squirrly Erweiterte Suche!"
11255
 
11256
  # @ squirrly-seo
11257
- #: view/Research/Briefcase.php:245
11258
  #, fuzzy
11259
  #| msgid "Keyword:"
11260
  msgid "Delete Keyword"
11261
  msgstr "Schlüsselwort:"
11262
 
11263
- #: view/Research/Briefcase.php:266
11264
  #, fuzzy
11265
  #| msgid "Optimize for Keyword"
11266
  msgid "Optimized with"
11267
  msgstr "Schlüsselwort optimieren"
11268
 
11269
  # @ squirrly-seo
11270
- #: view/Research/Briefcase.php:305 view/Research/HistoryDetails.php:16
11271
- #: view/Research/HistoryDetails.php:18 view/Research/Research.php:201
11272
- #: view/Research/Research.php:202 view/Research/Suggested.php:31
11273
- #: view/Research/Suggested.php:32 view/Research/Suggested.php:81
11274
  #, fuzzy
11275
  #| msgid "Competition:"
11276
  msgid "Competition"
11277
  msgstr "Wettbewerb:"
11278
 
11279
- #: view/Research/Briefcase.php:317 view/Research/HistoryDetails.php:8
11280
- #: view/Research/Research.php:209 view/Research/Suggested.php:39
11281
- #: view/Research/Suggested.php:91
11282
  #, fuzzy
11283
  #| msgid "Recent discussions:"
11284
  msgid "Recent discussions"
11285
  msgstr "Bisherige Diskussionen:"
11286
 
11287
  # @ squirrly-seo
11288
- #: view/Research/Briefcase.php:323 view/Research/HistoryDetails.php:20
11289
- #: view/Research/Research.php:213 view/Research/Suggested.php:43
11290
  #, fuzzy
11291
  #| msgid "Trend:"
11292
  msgid "Trending"
11293
  msgstr "Trend:"
11294
 
11295
- #: view/Research/Briefcase.php:403
 
 
 
11296
  msgid "Welcome to Squirrly Briefcase"
11297
- msgstr ""
11298
 
11299
  # @ squirrly-seo
11300
- #: view/Research/Briefcase.php:406 view/Research/History.php:58
11301
- #: view/Research/Suggested.php:158
11302
  #, fuzzy
11303
  #| msgid "Keywords:"
11304
  msgid "Go Find New Keywords"
11305
  msgstr "Schlüsselwörter:"
11306
 
11307
- #: view/Research/Briefcase.php:410
 
 
 
11308
  msgid "Tips: How to add Keywords in Briefcase?"
11309
- msgstr ""
11310
 
11311
- #: view/Research/Briefcase.php:412
11312
- #, php-format
 
 
11313
  msgid "From %sKeyword Research%s send keywords to Briefcase."
11314
- msgstr ""
11315
 
11316
- #: view/Research/Briefcase.php:413
11317
  #, php-format
11318
  msgid ""
11319
  "From Briefcase you can use the keywords in %sSquirrly Live Assistant%s to "
11320
  "optimize your pages."
11321
  msgstr ""
11322
 
11323
- #: view/Research/Briefcase.php:414
11324
  msgid ""
11325
  "If you already have a list of keywords, Import the keywords usign the below "
11326
  "button."
11327
  msgstr ""
11328
 
11329
  # @ squirrly-seo
11330
- #: view/Research/Briefcase.php:424
11331
  #, fuzzy
11332
  #| msgid "Squirrly Keyword Research"
11333
  msgid "Backup/Restore Briefcase Keywords"
11334
  msgstr "Squirrly Erweiterte Suche!"
11335
 
11336
- #: view/Research/Briefcase.php:425
11337
  msgid ""
11338
  "Keep your briefcase keywords safe in case you change your domain or "
11339
  "reinstall the plugin"
11340
  msgstr ""
11341
 
11342
- #: view/Research/Briefcase.php:426
11343
  #, php-format
11344
  msgid "%sLearn how to import keywords into briefcase%s"
11345
  msgstr ""
11346
 
11347
  # @ squirrly-seo
11348
- #: view/Research/Briefcase.php:432
11349
  #, fuzzy
11350
  #| msgid "Keywords:"
11351
  msgid "Download Keywords"
11352
  msgstr "Schlüsselwörter:"
11353
 
11354
  # @ squirrly-seo
11355
- #: view/Research/Briefcase.php:435
11356
  #, fuzzy
11357
  #| msgid "Squirrly Keyword Research"
11358
  msgid "Import Keywords"
11359
  msgstr "Squirrly Erweiterte Suche!"
11360
 
11361
  # @ squirrly-seo
11362
- #: view/Research/Briefcase.php:441
11363
  #, fuzzy
11364
  #| msgid "Squirrly Keyword Research"
11365
  msgid "Restore Briefcase Keywords"
11366
  msgstr "Squirrly Erweiterte Suche!"
11367
 
11368
  # @ squirrly-seo
11369
- #: view/Research/Briefcase.php:449
11370
  #, fuzzy
11371
  #| msgid "Squirrly Keyword Research"
11372
  msgid "Restore Keywords"
11373
  msgstr "Squirrly Erweiterte Suche!"
11374
 
11375
- #: view/Research/Briefcase.php:450
11376
  msgid "Upload the file with the saved Squirrly Briefcase Keywords."
11377
  msgstr ""
11378
 
11379
  # @ squirrly-seo
11380
  #: view/Research/History.php:17
11381
  #, fuzzy
 
 
 
 
 
 
 
11382
  #| msgid "Squirrly Keyword Research"
11383
  msgid "See the Keyword Researches you made in the last 30 days"
11384
  msgstr "Squirrly Erweiterte Suche!"
11385
 
11386
- #: view/Research/History.php:30 view/Research/Research.php:199
11387
- #: view/Research/Suggested.php:29
11388
  msgid "Co"
11389
  msgstr ""
11390
 
11391
  # @ squirrly-seo
11392
- #: view/Research/History.php:46
11393
  #, fuzzy
11394
  #| msgid "Keywords:"
11395
  msgid "Show All Keywords"
11396
  msgstr "Schlüsselwörter:"
11397
 
11398
  # @ squirrly-seo
11399
- #: view/Research/History.php:54
11400
  #, fuzzy
11401
  #| msgid "Squirrly Keyword Research"
11402
  msgid "Welcome to Keyword Research History"
11403
  msgstr "Squirrly Erweiterte Suche!"
11404
 
11405
- #: view/Research/History.php:55
11406
  msgid "See your research results and compare them over time"
11407
  msgstr ""
11408
 
11409
- #: view/Research/HistoryDetails.php:10 view/Research/Research.php:210
11410
- #: view/Research/Suggested.php:40
11411
  #, fuzzy
11412
  #| msgid "Recent discussions:"
11413
  msgid "Discussion"
11414
  msgstr "Bisherige Diskussionen:"
11415
 
11416
- #: view/Research/HistoryDetails.php:12 view/Research/Research.php:205
11417
- #: view/Research/Suggested.php:35 view/Research/Suggested.php:86
11418
  msgid "SEO Search Volume"
11419
  msgstr ""
11420
 
11421
- #: view/Research/HistoryDetails.php:14 view/Research/Suggested.php:36
11422
- msgid "SV"
11423
- msgstr ""
11424
-
11425
  # @ squirrly-seo
11426
- #: view/Research/HistoryDetails.php:22 view/Research/Research.php:214
11427
- #: view/Research/Suggested.php:44
11428
  #, fuzzy
11429
  #| msgid "Trend:"
11430
  msgid "Trend"
11431
  msgstr "Trend:"
11432
 
11433
  # @ squirrly-seo
11434
- #: view/Research/HistoryDetails.php:88 view/Research/ResearchDetails.php:61
11435
- #: view/Research/Suggested.php:136
 
 
 
 
 
 
 
 
11436
  #, fuzzy
11437
  #| msgid "+ Add keyword"
11438
  msgid "Add to briefcase"
11439
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11440
 
11441
- #: view/Research/Labels.php:16
11442
  msgid "Briefcase Labels"
11443
  msgstr ""
11444
 
11445
- #: view/Research/Labels.php:17
11446
  msgid ""
11447
  "Briefcase Labels will help you sort your keywords based on your SEO "
11448
  "strategy. Labels are like categories and you can quickly filter your "
@@ -11450,80 +11501,86 @@ msgid ""
11450
  msgstr ""
11451
 
11452
  # @ squirrly-seo
11453
- #: view/Research/Labels.php:27
11454
  #, fuzzy
11455
  #| msgid "+ Add keyword"
11456
  msgid "Add New Label"
11457
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11458
 
11459
- #: view/Research/Labels.php:32 view/Research/Labels.php:58
11460
  msgid "Label Name"
11461
  msgstr ""
11462
 
11463
- #: view/Research/Labels.php:36 view/Research/Labels.php:62
11464
  msgid "Label Color"
11465
  msgstr ""
11466
 
11467
  # @ squirrly-seo
11468
- #: view/Research/Labels.php:43
11469
  #, fuzzy
11470
  #| msgid "+ Add keyword"
11471
  msgid "Add Label"
11472
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11473
 
11474
  # @ squirrly-seo
11475
- #: view/Research/Labels.php:53 view/Research/Labels.php:121
11476
  #, fuzzy
11477
  #| msgid "Your E-mail:"
11478
  msgid "Edit Label"
11479
  msgstr "Ihre E-Mail Adresse:"
11480
 
11481
- #: view/Research/Labels.php:68
 
 
 
11482
  msgid "Save Label"
11483
- msgstr ""
11484
 
11485
  # @ squirrly-seo
11486
- #: view/Research/Labels.php:81
11487
  #, fuzzy
11488
  #| msgid "Could not send the email..."
11489
  msgid "Ar you sure you want to delete the labels?"
11490
  msgstr "Konnte E-Mail nicht senden ..."
11491
 
11492
- #: view/Research/Labels.php:90
11493
  msgid "Name"
11494
  msgstr ""
11495
 
11496
- #: view/Research/Labels.php:91
11497
  msgid "Color"
11498
  msgstr ""
11499
 
11500
  # @ squirrly-seo
11501
- #: view/Research/Labels.php:126
11502
  #, fuzzy
11503
  #| msgid "Keyword:"
11504
  msgid "Delete Label"
11505
  msgstr "Schlüsselwort:"
11506
 
11507
- #: view/Research/Labels.php:142
 
 
 
11508
  msgid "Welcome to Briefcase Labels"
11509
- msgstr ""
11510
 
11511
- #: view/Research/Labels.php:144
11512
  msgid "TIPS: How Should I Create My Labels?"
11513
  msgstr ""
11514
 
11515
- #: view/Research/Labels.php:146
11516
  #, php-format
11517
  msgid ""
11518
  "Click on %sAdd New Label%s button, add a label name and choose a color for "
11519
  "it."
11520
  msgstr ""
11521
 
11522
- #: view/Research/Labels.php:147
11523
  msgid "Read more details about Briefcase Labels"
11524
  msgstr ""
11525
 
11526
- #: view/Research/Research.php:20
11527
  msgid ""
11528
  "You can now find long-tail keywords that are easy to rank for. Get "
11529
  "personalized competition data for each keyword you research, thanks to "
@@ -11531,90 +11588,97 @@ msgid ""
11531
  msgstr ""
11532
 
11533
  # @ squirrly-seo
11534
- #: view/Research/Research.php:34 view/Research/Research.php:147
11535
  #, fuzzy
11536
  #| msgid "Squirrly Keyword Research"
11537
  msgid "You've reached your Keyword Research Limit"
11538
  msgstr "Squirrly Erweiterte Suche!"
11539
 
11540
  # @ squirrly-seo
11541
- #: view/Research/Research.php:35 view/Research/Research.php:148
11542
  #, fuzzy
11543
  #| msgid "Squirrly.co Login"
11544
  msgid "Check Your Account"
11545
  msgstr "Squirrly.co Login"
11546
 
11547
  # @ squirrly-seo
11548
- #: view/Research/Research.php:38
11549
  #, fuzzy
11550
  #| msgid "Do a research"
11551
  msgid "Add a keyword to Briefcase"
11552
  msgstr "Recherchieren"
11553
 
11554
- #: view/Research/Research.php:42
11555
  msgid "It's best if you focus on finding Long-Tail Keywords."
11556
  msgstr ""
11557
 
11558
- #: view/Research/Research.php:56
11559
  msgid "Step 1/4: Enter a starting 2-3 words keyword"
11560
  msgstr ""
11561
 
11562
- #: view/Research/Research.php:60
11563
  msgid "Enter a keyword that matches your business"
11564
  msgstr ""
11565
 
11566
- #: view/Research/Research.php:64
11567
  msgid "Focus on finding Long Tail Keywords."
11568
  msgstr ""
11569
 
11570
  # @ squirrly-seo
11571
- #: view/Research/Research.php:65
11572
  #, fuzzy
11573
  #| msgid "Could not send the email..."
11574
  msgid "You need to enter a keyword first"
11575
  msgstr "Konnte E-Mail nicht senden ..."
11576
 
11577
- #: view/Research/Research.php:71 view/Research/Research.php:103
 
 
 
11578
  msgid "Next"
11579
- msgstr ""
11580
 
11581
- #: view/Research/Research.php:77
11582
  msgid "Step 2/4: Choose a country for your keyword research"
11583
  msgstr ""
11584
 
11585
- #: view/Research/Research.php:81
 
 
 
11586
  msgid "Select country"
11587
- msgstr ""
11588
 
11589
  # @ squirrly-seo
11590
- #: view/Research/Research.php:86
11591
  #, fuzzy
11592
  #| msgid "Do a research"
11593
  msgid "Global Search"
11594
  msgstr "Recherchieren"
11595
 
11596
- #: view/Research/Research.php:95
11597
  msgid ""
11598
  "For local SEO you need to select the Country where you run your business"
11599
  msgstr ""
11600
 
11601
- #: view/Research/Research.php:100 view/Research/Research.php:154
11602
- #: view/Research/Research.php:226
11603
  msgid "Start Over"
11604
  msgstr ""
11605
 
11606
  # @ default
11607
- #: view/Research/Research.php:108
11608
  #, fuzzy
11609
  #| msgid "Squirrly could not find any results for: "
11610
  msgid "Step 3/4: Select similar keywords from below"
11611
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
11612
 
11613
- #: view/Research/Research.php:109
11614
- msgid ""
11615
- "Each selected keyword will consume 1 credit from your keyword research "
11616
- "credits."
11617
- msgstr ""
 
11618
 
11619
  # @ default
11620
  #: view/Research/Research.php:150
@@ -11624,17 +11688,21 @@ msgid "We could not find similar keywords. %sClick on 'Do research'"
11624
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
11625
 
11626
  # @ squirrly-seo
11627
- #: view/Research/Research.php:160
11628
  #, fuzzy
11629
  #| msgid "Do a research"
11630
- msgid "Do a deep research"
11631
  msgstr "Recherchieren"
11632
 
 
 
 
 
11633
  # @ squirrly-seo
11634
- #: view/Research/Research.php:164 view/Research/Research.php:170
11635
  #, fuzzy
11636
  #| msgid "Do a research"
11637
- msgid "Do research"
11638
  msgstr "Recherchieren"
11639
 
11640
  #: view/Research/Research.php:178
@@ -11706,356 +11774,390 @@ msgstr ""
11706
  msgid "Step 4/4: We could not find relevant keywords for you"
11707
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
11708
 
11709
- #: view/Research/Research.php:241
11710
  msgid "How to Find Amazing Keywords and get more search traffic?"
11711
  msgstr ""
11712
 
11713
  # @ squirrly-seo
11714
- #: view/Research/Research.php:255
11715
  #, fuzzy
11716
  #| msgid "+ Add keyword"
11717
  msgid "Already Have Keywords?"
11718
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11719
 
11720
  # @ squirrly-seo
11721
- #: view/Research/Research.php:258
11722
  #, fuzzy
11723
  #| msgid "Squirrly Keyword Research"
11724
  msgid "Import Keywords From CSV"
11725
  msgstr "Squirrly Erweiterte Suche!"
11726
 
11727
  # @ squirrly-seo
11728
- #: view/Research/Suggested.php:152
 
 
 
 
 
 
 
11729
  #, fuzzy
11730
  #| msgid "Use this keyword"
11731
  msgid "Welcome to Suggested Keywords"
11732
  msgstr "Dieses Schlüsselwort verwenden"
11733
 
11734
- #: view/Research/Suggested.php:153
11735
  msgid "Once a week, Squirrly checks all the keywords from your briefcase."
11736
  msgstr ""
11737
 
11738
- #: view/Research/Suggested.php:154
11739
  msgid "If it finds better keywords, they will be listed here"
11740
  msgstr ""
11741
 
11742
- #: view/Research/Suggested.php:155
 
 
 
11743
  msgid "Until then, add keywords in Briefcase"
11744
- msgstr ""
11745
 
11746
  # @ squirrly-seo
11747
- #: view/SeoSettings/Advanced.php:25
11748
  #, fuzzy
11749
  #| msgid "Save settings"
11750
  msgid "Advanced Settings"
11751
  msgstr "Einstellungen speichern"
11752
 
11753
  # @ squirrly-seo
11754
- #: view/SeoSettings/Advanced.php:39
11755
  #, fuzzy
11756
  #| msgid "Squirrly settings"
11757
  msgid "Load Squirrly Frontend CSS"
11758
  msgstr "Squirrly Einstellungen"
11759
 
11760
- #: view/SeoSettings/Advanced.php:40
11761
  msgid ""
11762
  "Load Squirrly SEO CSS for Twitter and Article inserted from Squirrly "
11763
  "Blogging Assistant."
11764
  msgstr ""
11765
 
11766
  # @ squirrly-seo
11767
- #: view/SeoSettings/Advanced.php:50
11768
  #, fuzzy
11769
  #| msgid "Squirrly LIVE SEO assistant"
11770
  msgid "Minify Squirrly SEO Metas"
11771
  msgstr "Squirrly LIVE SEO-Assistent"
11772
 
11773
- #: view/SeoSettings/Advanced.php:51
11774
  msgid "Minify the metas in source code to optimize the page loading."
11775
  msgstr ""
11776
 
11777
- #: view/SeoSettings/Advanced.php:52
11778
  msgid "Remove comments and newlines from Squirrly SEO Metas."
11779
  msgstr ""
11780
 
11781
  # @ squirrly-seo
11782
- #: view/SeoSettings/Advanced.php:62
11783
  #, fuzzy
11784
  #| msgid "Squirrly LIVE SEO assistant"
11785
  msgid "Squirrly SEO Late Buffer"
11786
  msgstr "Squirrly LIVE SEO-Assistent"
11787
 
11788
- #: view/SeoSettings/Advanced.php:63
11789
  msgid "Wait all plugins to load before loading Squirrly SEO frontend buffer."
11790
  msgstr ""
11791
 
11792
- #: view/SeoSettings/Advanced.php:64
11793
  msgid "For compatibility with some Cache and CDN plugins."
11794
  msgstr ""
11795
 
11796
- #: view/SeoSettings/Advanced.php:76
11797
- msgid "Delete Squirrly Table on Uninstall"
11798
- msgstr ""
 
 
 
11799
 
11800
- #: view/SeoSettings/Advanced.php:77
11801
  msgid "Delete Squirrly SEO table and options on uninstall."
11802
  msgstr ""
11803
 
11804
  # @ squirrly-seo
11805
- #: view/SeoSettings/Automation.php:26
11806
  #, fuzzy
11807
  #| msgid "automatically"
11808
- msgid "Meta Automation"
11809
  msgstr "automatisch"
11810
 
11811
- #: view/SeoSettings/Automation.php:28
11812
  msgid ""
11813
  "Control how post types are displayed on your site, within search engine "
11814
  "results, and social media feeds."
11815
  msgstr ""
11816
 
11817
  # @ squirrly-seo
11818
- #: view/SeoSettings/Automation.php:35 view/SeoSettings/Automation.php:294
11819
  #, fuzzy
11820
  #| msgid "Keywords:"
11821
  msgid "Activate Patterns"
11822
  msgstr "Schlüsselwörter:"
11823
 
11824
  # @ squirrly-seo
11825
- #: view/SeoSettings/Automation.php:66
11826
  #, fuzzy
11827
  #| msgid "automatically"
11828
  msgid "Add Post Type for SEO Automation"
11829
  msgstr "automatisch"
11830
 
11831
- #: view/SeoSettings/Automation.php:72 view/SeoSettings/Automation.php:84
11832
  msgid "Add Post Type"
11833
  msgstr ""
11834
 
11835
- #: view/SeoSettings/Automation.php:73
11836
  msgid "Add new post types in the list and customize the automation for it."
11837
  msgstr ""
11838
 
11839
- #: view/SeoSettings/Automation.php:94
11840
  msgid "Customize the automation for each post type"
11841
  msgstr ""
11842
 
11843
  # @ squirrly-seo
11844
- #: view/SeoSettings/Automation.php:126 view/SeoSettings/Metas.php:168
11845
  #, fuzzy
11846
  #| msgid "Tips: Length 10-70 chars"
11847
  msgid "Tips: Length 10-75 chars"
11848
  msgstr "Tipp: Länge 10-70 Charaktere"
11849
 
11850
  # @ squirrly-seo
11851
- #: view/SeoSettings/Automation.php:135 view/SeoSettings/Metas.php:177
11852
  #, fuzzy
11853
  #| msgid "Tips: Length 10-70 chars"
11854
  msgid "Tips: Length 70-320 chars"
11855
  msgstr "Tipp: Länge 10-70 Charaktere"
11856
 
11857
- #: view/SeoSettings/Automation.php:144
11858
  msgid "Separator"
11859
  msgstr ""
11860
 
11861
- #: view/SeoSettings/Automation.php:145
11862
  msgid ""
11863
  "Use separator to help user read the most relevant part of your title and "
11864
  "increase Conversion Rate"
11865
  msgstr ""
11866
 
11867
- #: view/SeoSettings/Automation.php:184
11868
  msgid "Let Google Index it"
11869
  msgstr ""
11870
 
11871
- #: view/SeoSettings/Automation.php:185
11872
  msgid ""
11873
  "If you switch off this option, Squirrly will add noindex meta for this post "
11874
  "type."
11875
  msgstr ""
11876
 
11877
- #: view/SeoSettings/Automation.php:211
11878
  msgid "Send Authority to it"
11879
  msgstr ""
11880
 
11881
- #: view/SeoSettings/Automation.php:212
11882
  msgid ""
11883
  "If you sq-switch off this option, Squirrly will add nofollow meta for this "
11884
  "post type."
11885
  msgstr ""
11886
 
11887
- #: view/SeoSettings/Automation.php:230
11888
  msgid "Include In Sitemap"
11889
  msgstr ""
11890
 
11891
- #: view/SeoSettings/Automation.php:231
11892
  msgid "Let Squirrly SEO include this post type in Squirrly Sitemap XML."
11893
  msgstr ""
11894
 
11895
  #: view/SeoSettings/Automation.php:246
 
 
 
 
 
 
11896
  msgid "Redirect Broken URLs"
11897
  msgstr ""
11898
 
11899
- #: view/SeoSettings/Automation.php:247
11900
  msgid ""
11901
- "Redirect the broken URL in case it is changed with a new one in Post Editor."
11902
  msgstr ""
11903
 
11904
- #: view/SeoSettings/Automation.php:258
11905
  msgid "Redirect Attachments Page"
11906
  msgstr ""
11907
 
11908
- #: view/SeoSettings/Automation.php:259
11909
  msgid "Redirect the attachment page to its image URL."
11910
  msgstr ""
11911
 
11912
- #: view/SeoSettings/Automation.php:260
11913
  msgid "Recommended if your website is not a photography website."
11914
  msgstr ""
11915
 
11916
  # @ squirrly-seo
11917
- #: view/SeoSettings/Automation.php:282
11918
  #, fuzzy
11919
  #| msgid "Squirrly settings"
11920
  msgid "Load Squirrly SEO METAs"
11921
  msgstr "Squirrly Einstellungen"
11922
 
11923
- #: view/SeoSettings/Automation.php:283
11924
  msgid ""
11925
  "Let Squirrly SEO load the Title, Description, Keyword METAs for this post "
11926
  "type."
11927
  msgstr ""
11928
 
11929
  # @ squirrly-seo
11930
- #: view/SeoSettings/Automation.php:301
11931
  #, fuzzy
11932
  #| msgid "Squirrly settings"
11933
  msgid "Load Squirrly Patterns"
11934
  msgstr "Squirrly Einstellungen"
11935
 
11936
- #: view/SeoSettings/Automation.php:302
11937
  msgid "Let Squirrly SEO load the Patterns for this post type."
11938
  msgstr ""
11939
 
11940
  # @ squirrly-seo
11941
- #: view/SeoSettings/Automation.php:313
11942
  #, fuzzy
11943
  #| msgid "Description:"
11944
  msgid "Activate Json-Ld"
11945
  msgstr "Beschreibung:"
11946
 
11947
- #: view/SeoSettings/Automation.php:320
11948
  msgid "Load JSON-LD Structured Data"
11949
  msgstr ""
11950
 
11951
- #: view/SeoSettings/Automation.php:321
11952
- msgid "Let Squirrly SEO load the JSON-LD META for this post type."
11953
- msgstr ""
11954
-
11955
- #: view/SeoSettings/Automation.php:337 view/SeoSettings/Automation.php:370
11956
- #: view/SeoSettings/Automation.php:397
11957
- msgid "Activate Social Media"
11958
- msgstr ""
11959
-
11960
- #: view/SeoSettings/Automation.php:343
11961
- msgid "Open Graph & JSON-LD Type"
11962
  msgstr ""
11963
 
11964
- #: view/SeoSettings/Automation.php:344
11965
- msgid "Select which Open Graph type to load for this post type."
11966
- msgstr ""
 
 
11967
 
11968
- #: view/SeoSettings/Automation.php:345
11969
- msgid "JSON-LD will try to load the relevant data for this type."
11970
- msgstr ""
 
 
 
11971
 
11972
  # @ squirrly-seo
11973
- #: view/SeoSettings/Automation.php:384
11974
  #, fuzzy
11975
  #| msgid "Squirrly settings"
11976
  msgid "Load Squirrly Open Graph"
11977
  msgstr "Squirrly Einstellungen"
11978
 
11979
- #: view/SeoSettings/Automation.php:385
11980
  msgid "Let Squirrly SEO load the Open Graph for this post type."
11981
  msgstr ""
11982
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11983
  # @ squirrly-seo
11984
- #: view/SeoSettings/Automation.php:411
11985
  #, fuzzy
11986
  #| msgid "Squirrly settings"
11987
  msgid "Load Squirrly Twitter Card"
11988
  msgstr "Squirrly Einstellungen"
11989
 
11990
- #: view/SeoSettings/Automation.php:412
 
 
 
11991
  msgid "Let Squirrly SEO load the Twitter Card for this post type."
11992
- msgstr ""
11993
 
11994
  # @ squirrly-seo
11995
- #: view/SeoSettings/Automation.php:427 view/SeoSettings/Automation.php:446
11996
- #: view/SeoSettings/Tracking.php:32
11997
  #, fuzzy
11998
  #| msgid "Keywords:"
11999
  msgid "Activate Trackers"
12000
  msgstr "Schlüsselwörter:"
12001
 
12002
  # @ squirrly-seo
12003
- #: view/SeoSettings/Automation.php:434
12004
  #, fuzzy
12005
  #| msgid "The code for Google Analytics is incorrect."
12006
  msgid "Load Google Analytics Tracking Script"
12007
  msgstr "Der Code für Google Analytics ist falsch."
12008
 
12009
  # @ squirrly-seo
12010
- #: view/SeoSettings/Automation.php:435
12011
  #, fuzzy
12012
  #| msgid "The code for Google Analytics is incorrect."
12013
  msgid "Let Google Analytics Tracking to load for this post type."
12014
  msgstr "Der Code für Google Analytics ist falsch."
12015
 
12016
  # @ squirrly-seo
12017
- #: view/SeoSettings/Automation.php:453
12018
  #, fuzzy
12019
  #| msgid "Description:"
12020
  msgid "Load Facebook Pixel Tracking Script"
12021
  msgstr "Beschreibung:"
12022
 
12023
- #: view/SeoSettings/Automation.php:454
 
 
 
12024
  msgid "Let Facebook Pixel Tracking to load for this post type."
12025
- msgstr ""
12026
 
12027
  # @ squirrly-seo
12028
- #: view/SeoSettings/Automation.php:464
12029
  #, fuzzy, php-format
12030
  #| msgid "Could not send the email..."
12031
  msgid "Do you want to delete the automation for %s?"
12032
  msgstr "Konnte E-Mail nicht senden ..."
12033
 
12034
- #: view/SeoSettings/Automation.php:464
12035
  #, php-format
12036
  msgid "Remove automation for %s"
12037
  msgstr ""
12038
 
12039
  # @ squirrly-seo
12040
- #: view/SeoSettings/Automation.php:493
12041
  #, fuzzy
12042
  #| msgid "Squirrly settings"
12043
  msgid "Squirrly Patterns"
12044
  msgstr "Squirrly Einstellungen"
12045
 
12046
- #: view/SeoSettings/Automation.php:495
12047
  msgid ""
12048
  "Use the Pattern system to prevent Title and Description duplicates between "
12049
  "posts"
12050
  msgstr ""
12051
 
12052
- #: view/SeoSettings/Automation.php:501
12053
  msgid ""
12054
  "Patterns change the codes like {{title}} with the actual value of the post "
12055
  "Title."
12056
  msgstr ""
12057
 
12058
- #: view/SeoSettings/Automation.php:502
12059
  msgid ""
12060
  "In Squirrly, each post type in your site comes with a predefined posting "
12061
  "pattern when displayed onto your website. However, based on your site's "
@@ -12063,13 +12165,13 @@ msgid ""
12063
  "include."
12064
  msgstr ""
12065
 
12066
- #: view/SeoSettings/Automation.php:503
12067
  msgid ""
12068
  "Once you set up a pattern for a particular post type, only the content "
12069
  "required by your custom sequence will be displayed."
12070
  msgstr ""
12071
 
12072
- #: view/SeoSettings/Automation.php:504
12073
  #, php-format
12074
  msgid ""
12075
  "Squirrly lets you see how the customized patterns will apply when posts/"
@@ -12077,86 +12179,92 @@ msgid ""
12077
  "to go to the %sBulk SEO%s and see the meta information for each post type."
12078
  msgstr ""
12079
 
12080
- #: view/SeoSettings/Automation.php:512
 
 
 
12081
  msgid "META Lengths"
12082
- msgstr ""
12083
 
12084
- #: view/SeoSettings/Automation.php:514
12085
  msgid "Change the lengths for each META on automation"
12086
  msgstr ""
12087
 
12088
  # @ squirrly-seo
12089
- #: view/SeoSettings/Automation.php:520
12090
  #, fuzzy
12091
  #| msgid "Description:"
12092
  msgid "Title Length"
12093
  msgstr "Beschreibung:"
12094
 
12095
  # @ squirrly-seo
12096
- #: view/SeoSettings/Automation.php:528
12097
  #, fuzzy
12098
  #| msgid "Description:"
12099
  msgid "Description Length"
12100
  msgstr "Beschreibung:"
12101
 
12102
- #: view/SeoSettings/Automation.php:536
12103
  #, fuzzy
12104
  #| msgid "Optimize for Keyword"
12105
  msgid "Open Graph Title Length"
12106
  msgstr "Schlüsselwort optimieren"
12107
 
12108
  # @ squirrly-seo
12109
- #: view/SeoSettings/Automation.php:544
12110
  #, fuzzy
12111
  #| msgid "Description:"
12112
  msgid "Open Graph Description Length"
12113
  msgstr "Beschreibung:"
12114
 
12115
  # @ squirrly-seo
12116
- #: view/SeoSettings/Automation.php:552
12117
  #, fuzzy
12118
  #| msgid "Twitter"
12119
  msgid "Twitter Card Title Length"
12120
  msgstr "Twitter"
12121
 
12122
  # @ squirrly-seo
12123
- #: view/SeoSettings/Automation.php:560
12124
  #, fuzzy
12125
  #| msgid "Description:"
12126
  msgid "Twitter Card Description Length"
12127
  msgstr "Beschreibung:"
12128
 
12129
- #: view/SeoSettings/Automation.php:568
 
 
 
12130
  msgid "JSON-LD Title Length"
12131
- msgstr ""
12132
 
12133
  # @ squirrly-seo
12134
- #: view/SeoSettings/Automation.php:576
12135
  #, fuzzy
12136
  #| msgid "Description:"
12137
  msgid "JSON-LD Description Length"
12138
  msgstr "Beschreibung:"
12139
 
12140
- #: view/SeoSettings/Backup.php:7 view/SeoSettings/Jsonld.php:7
12141
  msgid ""
12142
  "You do not have permission to access this page. You need Squirrly SEO Admin "
12143
  "role"
12144
  msgstr ""
12145
 
12146
  # @ squirrly-seo
12147
- #: view/SeoSettings/Backup.php:23
12148
  #, fuzzy
12149
  #| msgid "Save settings"
12150
  msgid "Import Settings & SEO"
12151
  msgstr "Einstellungen speichern"
12152
 
12153
- #: view/SeoSettings/Backup.php:25
12154
  msgid ""
12155
  "Import the settings and SEO from other plugins so you can use only Squirrly "
12156
  "SEO for on-page SEO."
12157
  msgstr ""
12158
 
12159
- #: view/SeoSettings/Backup.php:26
12160
  msgid ""
12161
  "Note! If you import the SEO settings from other plugins or themes, you will "
12162
  "lose all the settings that you had in Squirrly SEO. Make sure you backup "
@@ -12164,49 +12272,55 @@ msgid ""
12164
  msgstr ""
12165
 
12166
  # @ squirrly-seo
12167
- #: view/SeoSettings/Backup.php:43
12168
  #, fuzzy
12169
  #| msgid "Save settings"
12170
  msgid "Import Settings From"
12171
  msgstr "Einstellungen speichern"
12172
 
12173
- #: view/SeoSettings/Backup.php:44
12174
  msgid "Select the plugin or theme you want to import the Settings from."
12175
  msgstr ""
12176
 
12177
- #: view/SeoSettings/Backup.php:45
 
 
 
12178
  msgid "Note! It will overwrite the settings you set in Squirrly SEO."
12179
- msgstr ""
12180
 
12181
  # @ squirrly-seo
12182
- #: view/SeoSettings/Backup.php:61
12183
  #, fuzzy
12184
  #| msgid "Save settings"
12185
  msgid "Import Settings"
12186
  msgstr "Einstellungen speichern"
12187
 
12188
  # @ squirrly-seo
12189
- #: view/SeoSettings/Backup.php:72
12190
  #, fuzzy
12191
  #| msgid "Save settings"
12192
  msgid "Import SEO From"
12193
  msgstr "Einstellungen speichern"
12194
 
12195
- #: view/SeoSettings/Backup.php:73
12196
  msgid "Select the plugin or theme you want to import the SEO settings from."
12197
  msgstr ""
12198
 
12199
- #: view/SeoSettings/Backup.php:74
12200
  msgid ""
12201
  "Note! It will import only the SEO for the pages that were not yet optimized "
12202
  "with Squirrly SEO."
12203
  msgstr ""
12204
 
12205
- #: view/SeoSettings/Backup.php:101
 
 
 
12206
  msgid "Backup Settings & SEO"
12207
- msgstr ""
12208
 
12209
- #: view/SeoSettings/Backup.php:103
12210
  msgid ""
12211
  "You can now download your Squirrly settings in an sql file before you go "
12212
  "ahead and import the SEO settings from another plugin. That way, you can "
@@ -12214,126 +12328,153 @@ msgid ""
12214
  msgstr ""
12215
 
12216
  # @ squirrly-seo
12217
- #: view/SeoSettings/Backup.php:110
12218
  #, fuzzy
12219
  #| msgid "Save settings"
12220
  msgid "Backup Settings"
12221
  msgstr "Einstellungen speichern"
12222
 
12223
  # @ squirrly-seo
12224
- #: view/SeoSettings/Backup.php:111
12225
  #, fuzzy
12226
  #| msgid "for Squirrly Live SEO optimization"
12227
  msgid "Download all the settings from Squirrly SEO."
12228
  msgstr "Live-SEO-Optimierung für Squirrly"
12229
 
12230
- #: view/SeoSettings/Backup.php:116
12231
  msgid "Download Backup"
12232
  msgstr ""
12233
 
12234
- #: view/SeoSettings/Backup.php:124
 
 
 
12235
  msgid "Backup SEO"
12236
- msgstr ""
12237
 
12238
  # @ squirrly-seo
12239
- #: view/SeoSettings/Backup.php:125
12240
  #, fuzzy
12241
  #| msgid "for Squirrly Live SEO optimization"
12242
  msgid "Download all the Squirrly SEO Snippet optimizations."
12243
  msgstr "Live-SEO-Optimierung für Squirrly"
12244
 
12245
- #: view/SeoSettings/Backup.php:130
12246
  msgid "Download Backup"
12247
  msgstr ""
12248
 
12249
  # @ squirrly-seo
12250
- #: view/SeoSettings/Backup.php:138
12251
  #, fuzzy
12252
  #| msgid "Save settings"
12253
  msgid "Restore Settings & SEO"
12254
  msgstr "Einstellungen speichern"
12255
 
12256
- #: view/SeoSettings/Backup.php:140
12257
  msgid "Restore the settings and all the pages optimized with Squirrly SEO."
12258
  msgstr ""
12259
 
12260
  # @ squirrly-seo
12261
- #: view/SeoSettings/Backup.php:147 view/SeoSettings/Backup.php:156
12262
  #, fuzzy
12263
  #| msgid "Save settings"
12264
  msgid "Restore Settings"
12265
  msgstr "Einstellungen speichern"
12266
 
12267
- #: view/SeoSettings/Backup.php:148
12268
  msgid "Upload the file with the saved Squirrly Settings."
12269
  msgstr ""
12270
 
12271
- #: view/SeoSettings/Backup.php:164 view/SeoSettings/Backup.php:173
 
 
 
12272
  msgid "Restore SEO"
12273
- msgstr ""
12274
 
12275
- #: view/SeoSettings/Backup.php:165
12276
  msgid "Upload the file with the saved Squirrly SEO SQL file."
12277
  msgstr ""
12278
 
12279
- #: view/SeoSettings/Backup.php:180
12280
  msgid "Rollback Plugin"
12281
  msgstr ""
12282
 
12283
- #: view/SeoSettings/Backup.php:182
12284
  msgid "You can rollback Squirrly SEO plugin to the last stable version."
12285
  msgstr ""
12286
 
12287
- #: view/SeoSettings/Backup.php:189
12288
  msgid "Rollback to"
12289
  msgstr ""
12290
 
12291
- #: view/SeoSettings/Backup.php:190
12292
  msgid "Install the last stable version of the plugin."
12293
  msgstr ""
12294
 
12295
  # @ squirrly-seo
12296
- #: view/SeoSettings/Backup.php:195
12297
  #, fuzzy
12298
  #| msgid "Squirrly settings"
12299
  msgid "Install Squirrly SEO"
12300
  msgstr "Squirrly Einstellungen"
12301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12302
  # @ squirrly-seo
12303
- #: view/SeoSettings/Favicon.php:27
12304
  #, fuzzy
12305
  #| msgid "Change the Website Icon"
12306
  msgid "Website Icon"
12307
  msgstr "Ändern Sie das Website-Symbol"
12308
 
 
 
 
 
 
 
12309
  # @ squirrly-seo
12310
- #: view/SeoSettings/Favicon.php:35
12311
  #, fuzzy
12312
  #| msgid "Description:"
12313
  msgid "Activate Favicon"
12314
  msgstr "Beschreibung:"
12315
 
12316
  # @ squirrly-seo
12317
- #: view/SeoSettings/Favicon.php:55
12318
  #, fuzzy
12319
  #| msgid "Upload file:"
12320
  msgid "Upload file"
12321
  msgstr "Datei hochladen:"
12322
 
12323
- #: view/SeoSettings/Favicon.php:56
12324
  msgid "Upload a jpg, jpeg, png or ico file."
12325
  msgstr ""
12326
 
12327
- #: view/SeoSettings/Favicon.php:86
12328
  msgid "Add Apple Touch Icons"
12329
  msgstr ""
12330
 
12331
- #: view/SeoSettings/Favicon.php:87
12332
  msgid "Also load the favicon for Apple devices."
12333
  msgstr ""
12334
 
12335
  # @ squirrly-seo
12336
- #: view/SeoSettings/Favicon.php:93
12337
  msgid ""
12338
  "If you don't see the new icon in your browser, empty the browser cache and "
12339
  "refresh the page."
@@ -12342,483 +12483,654 @@ msgstr ""
12342
  "Cache und aktualisieren Sie die Seite."
12343
 
12344
  # @ squirrly-seo
12345
- #: view/SeoSettings/Favicon.php:94
12346
  #, fuzzy
12347
  #| msgid "File types: JPG, JPEG, GIF and PNG."
12348
  msgid "Accepted file types: JPG, JPEG, GIF and PNG."
12349
  msgstr "Dateitypen: JPG, JPEG, GIF und PNG."
12350
 
12351
- #: view/SeoSettings/Favicon.php:95
12352
  msgid ""
12353
  "Does not physically create the favicon.ico file. The best option for "
12354
  "Multisites."
12355
  msgstr ""
12356
 
12357
- #: view/SeoSettings/Jsonld.php:27
12358
  msgid "JSON-LD Structured Data"
12359
  msgstr ""
12360
 
12361
- # @ squirrly-seo
12362
- #: view/SeoSettings/Jsonld.php:57
12363
- #, fuzzy
12364
- #| msgid "Twitter"
12365
- msgid "Your Site Type"
12366
- msgstr "Twitter"
12367
-
12368
- #: view/SeoSettings/Jsonld.php:58
12369
- msgid ""
12370
- "The Organization details will be added in JSON-LD publisher section for "
12371
- "every page and post"
12372
  msgstr ""
12373
 
12374
- #: view/SeoSettings/Jsonld.php:63
12375
  msgid "Organization"
12376
  msgstr ""
12377
 
12378
- #: view/SeoSettings/Jsonld.php:64
12379
- msgid "Personal"
12380
  msgstr ""
12381
 
12382
- #: view/SeoSettings/Jsonld.php:73
12383
  msgid "Your Organization Name"
12384
  msgstr ""
12385
 
12386
- #: view/SeoSettings/Jsonld.php:75
12387
- msgid "eg. COMPANY LTD"
12388
- msgstr ""
12389
-
12390
- #: view/SeoSettings/Jsonld.php:83 view/SeoSettings/Jsonld.php:154
12391
  msgid "Logo URL"
12392
  msgstr ""
12393
 
12394
  # @ squirrly-seo
12395
- #: view/SeoSettings/Jsonld.php:88 view/SeoSettings/Jsonld.php:159
12396
- #: view/SeoSettings/Metas.php:199
12397
  #, fuzzy
12398
  #| msgid "Images"
12399
  msgid "Select Image"
12400
  msgstr "Bilder"
12401
 
12402
- #: view/SeoSettings/Jsonld.php:93 view/SeoSettings/Jsonld.php:164
12403
- msgid "Contact Phone"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12404
  msgstr ""
12405
 
12406
- #: view/SeoSettings/Jsonld.php:94 view/SeoSettings/Jsonld.php:165
12407
- msgid "eg. +1-541-754-3010"
12408
  msgstr ""
12409
 
12410
- #: view/SeoSettings/Jsonld.php:102
12411
  msgid "Contact Type"
12412
  msgstr ""
12413
 
12414
- #: view/SeoSettings/Jsonld.php:107
12415
  msgid "Customer Service"
12416
  msgstr ""
12417
 
12418
  # @ squirrly-seo
12419
- #: view/SeoSettings/Jsonld.php:108
12420
  #, fuzzy
12421
  #| msgid "Support"
12422
  msgid "Technical Support"
12423
  msgstr "Support"
12424
 
12425
  # @ squirrly-seo
12426
- #: view/SeoSettings/Jsonld.php:109
12427
  #, fuzzy
12428
  #| msgid "Plugin Support"
12429
  msgid "Billing Support"
12430
  msgstr "Plugin Support"
12431
 
12432
- #: view/SeoSettings/Jsonld.php:110
12433
  msgid "Bill Payment"
12434
  msgstr ""
12435
 
12436
- #: view/SeoSettings/Jsonld.php:111
12437
  msgid "Sales"
12438
  msgstr ""
12439
 
12440
- #: view/SeoSettings/Jsonld.php:112
 
 
 
12441
  msgid "Reservations"
12442
- msgstr ""
12443
 
12444
  # @ squirrly-seo
12445
- #: view/SeoSettings/Jsonld.php:113
12446
  #, fuzzy
12447
  #| msgid "Support"
12448
  msgid "Credit Card Support"
12449
  msgstr "Support"
12450
 
12451
- #: view/SeoSettings/Jsonld.php:114
12452
  msgid "Emergency"
12453
  msgstr ""
12454
 
12455
- #: view/SeoSettings/Jsonld.php:115
 
 
 
12456
  msgid "Baggage Tracking"
12457
- msgstr ""
12458
 
12459
  # @ squirrly-seo
12460
- #: view/SeoSettings/Jsonld.php:116
12461
  #, fuzzy
12462
  #| msgid "Save settings"
12463
  msgid "Roadside Assistance"
12464
  msgstr "Einstellungen speichern"
12465
 
12466
  # @ squirrly-seo
12467
- #: view/SeoSettings/Jsonld.php:117
12468
  #, fuzzy
12469
  #| msgid "Description:"
12470
  msgid "Package Tracking"
12471
  msgstr "Beschreibung:"
12472
 
 
 
 
 
12473
  # @ squirrly-seo
12474
- #: view/SeoSettings/Jsonld.php:123 view/SeoSettings/Jsonld.php:173
12475
  #, fuzzy
12476
- #| msgid "Description:"
12477
- msgid "Short Description"
12478
- msgstr "Beschreibung:"
12479
 
12480
- #: view/SeoSettings/Jsonld.php:124
12481
- msgid "A short description about the company. 20-50 words."
 
 
 
 
 
 
 
12482
  msgstr ""
12483
 
12484
- #: view/SeoSettings/Jsonld.php:135
12485
- msgid "Your Name"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12486
  msgstr ""
12487
 
12488
- #: view/SeoSettings/Jsonld.php:137
12489
- msgid "eg. John Smith"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12490
  msgstr ""
12491
 
12492
  # @ squirrly-seo
12493
- #: view/SeoSettings/Jsonld.php:145
12494
  #, fuzzy
12495
  #| msgid "Title:"
12496
  msgid "Job Title"
12497
  msgstr "Titel:"
12498
 
12499
- #: view/SeoSettings/Jsonld.php:146
12500
- msgid "eg. Sales Manager"
12501
  msgstr ""
12502
 
12503
- #: view/SeoSettings/Jsonld.php:174
12504
- msgid "A short description about your job title."
 
 
 
 
12505
  msgstr ""
12506
 
12507
  # @ squirrly-seo
12508
- #: view/SeoSettings/Jsonld.php:185
12509
  #, fuzzy
12510
  #| msgid "Save settings"
12511
  msgid "More Json-LD Settings"
12512
  msgstr "Einstellungen speichern"
12513
 
12514
- #: view/SeoSettings/Jsonld.php:194
12515
  msgid "Add Support For Woocommerce"
12516
  msgstr ""
12517
 
12518
- #: view/SeoSettings/Jsonld.php:195
12519
  msgid ""
12520
  "Improve the Woocommerce Product and Orders Schema with the required data."
12521
  msgstr ""
12522
 
12523
- #: view/SeoSettings/Jsonld.php:205
12524
  msgid "Add default data for Woocommerce Products"
12525
  msgstr ""
12526
 
12527
- #: view/SeoSettings/Jsonld.php:206
12528
  msgid ""
12529
  "Add default data for JSON-LD aggregateRating, review, offers, sku, mpn to "
12530
  "avoid GSC errors."
12531
  msgstr ""
12532
 
12533
- #: view/SeoSettings/Jsonld.php:216
12534
  msgid "Add Breadcrumbs in Json-LD"
12535
  msgstr ""
12536
 
12537
- #: view/SeoSettings/Jsonld.php:217
12538
  msgid ""
12539
  "Add the BreadcrumbsList Schema into Json-LD including all parent categories."
12540
  msgstr ""
12541
 
12542
- #: view/SeoSettings/Jsonld.php:227
12543
  msgid "Remove other Json-LD from page"
12544
  msgstr ""
12545
 
12546
- #: view/SeoSettings/Jsonld.php:228
12547
  msgid ""
12548
  "Clear the Json-LD from other plugins and theme to avoid duplicate schemas."
12549
  msgstr ""
12550
 
12551
- #: view/SeoSettings/Metas.php:48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12552
  #, fuzzy
12553
  #| msgid "Optimize for Keyword"
12554
  msgid "Optimize the Titles"
12555
  msgstr "Schlüsselwort optimieren"
12556
 
12557
- #: view/SeoSettings/Metas.php:50
12558
  msgid ""
12559
  "Add the Title Tag in the page header. You can customize it using the Bulk "
12560
  "SEO and Squirrly SEO Snippet."
12561
  msgstr ""
12562
 
12563
  # @ squirrly-seo
12564
- #: view/SeoSettings/Metas.php:60
12565
  #, fuzzy
12566
  #| msgid "Description:"
12567
  msgid "Optimize Descriptions"
12568
  msgstr "Beschreibung:"
12569
 
12570
- #: view/SeoSettings/Metas.php:62
12571
  msgid ""
12572
  "Add the Description meta in the page header. You can customize it using the "
12573
  "Bulk SEO and Squirrly SEO Snippet."
12574
  msgstr ""
12575
 
12576
- #: view/SeoSettings/Metas.php:72
12577
  #, fuzzy
12578
  #| msgid "Optimize for Keyword"
12579
  msgid "Optimize Keywords"
12580
  msgstr "Schlüsselwort optimieren"
12581
 
12582
- #: view/SeoSettings/Metas.php:74
12583
  msgid ""
12584
  "Add the Keyword meta in the page header. You can customize it using the Bulk "
12585
  "SEO and Squirrly SEO Snippet."
12586
  msgstr ""
12587
 
12588
- #: view/SeoSettings/Metas.php:75
12589
  msgid ""
12590
  "This meta is not mandatory for Google but other search engines still use it "
12591
  "for ranking"
12592
  msgstr ""
12593
 
12594
  # @ squirrly-seo
12595
- #: view/SeoSettings/Metas.php:86
12596
  #, fuzzy
12597
  #| msgid "adds <strong>canonical</strong> link in home page"
12598
  msgid "Add Canonical Meta Link"
12599
  msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
12600
 
12601
- #: view/SeoSettings/Metas.php:88
12602
  msgid ""
12603
  "Add canonical link meta in the page header. You can customize the canonical "
12604
  "link on each page."
12605
  msgstr ""
12606
 
12607
- #: view/SeoSettings/Metas.php:89
12608
  msgid ""
12609
  "Also add prev & next links metas in the page header when navigate between "
12610
  "blog pages."
12611
  msgstr ""
12612
 
12613
- #: view/SeoSettings/Metas.php:99
12614
  msgid "Add Dublin Core Meta"
12615
  msgstr ""
12616
 
12617
  # @ squirrly-seo
12618
- #: view/SeoSettings/Metas.php:101
12619
  #, fuzzy
12620
  #| msgid "adds <strong>canonical</strong> link in home page"
12621
  msgid "Add the Dublin Core meta in the page header."
12622
  msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
12623
 
12624
- #: view/SeoSettings/Metas.php:111
12625
  msgid "Add Robots Meta"
12626
  msgstr ""
12627
 
12628
- #: view/SeoSettings/Metas.php:113
12629
  msgid ""
12630
  "Add the Index/Noindex and Follow/Nofollow options in Squirrly SEO Snippet."
12631
  msgstr ""
12632
 
12633
- #: view/SeoSettings/Metas.php:114
12634
  msgid "Add googlebot and bingbot METAs for better performance."
12635
  msgstr ""
12636
 
12637
  # @ squirrly-seo
12638
- #: view/SeoSettings/Metas.php:121
12639
  #, fuzzy
12640
  #| msgid "Save settings"
12641
  msgid "More SEO Settings"
12642
  msgstr "Einstellungen speichern"
12643
 
12644
- #: view/SeoSettings/Metas.php:129
12645
  msgid "Add the Post tags in Keyword META"
12646
  msgstr ""
12647
 
12648
- #: view/SeoSettings/Metas.php:131
12649
  msgid ""
12650
  "Add all the tags from your posts as keywords. Not recommended when you use "
12651
  "Keywords in Squirrly SEO Snippet."
12652
  msgstr ""
12653
 
12654
  # @ squirrly-seo
12655
- #: view/SeoSettings/Metas.php:141
12656
  #, fuzzy
12657
  #| msgid "Description:"
12658
- msgid "Activate Snippet in Frontend"
12659
  msgstr "Beschreibung:"
12660
 
12661
- #: view/SeoSettings/Metas.php:143
12662
  msgid ""
12663
  "Load Squirrly SEO Snippet in Frontend to customize the SEO directly from "
12664
  "page preview."
12665
  msgstr ""
12666
 
12667
- #: view/SeoSettings/Metas.php:155
12668
- #, fuzzy
12669
- #| msgid "Optimize for Keyword"
12670
- msgid "First Page Optimization"
12671
- msgstr "Schlüsselwort optimieren"
12672
-
12673
- #: view/SeoSettings/Metas.php:157
12674
- msgid ""
12675
- "Needed when you didn't set a specific page as Homepage in Settings > Reading "
12676
- "page"
12677
- msgstr ""
12678
-
12679
- # @ squirrly-seo
12680
- #: view/SeoSettings/Metas.php:185
12681
- #, fuzzy
12682
- #| msgid "Keyword:"
12683
- msgid "Keywords"
12684
- msgstr "Schlüsselwort:"
12685
-
12686
- #: view/SeoSettings/Metas.php:186
12687
- msgid "Tips: use 2-4 keywords"
12688
- msgstr ""
12689
-
12690
- #: view/SeoSettings/Metas.php:207
12691
- msgid "First Page Preview"
12692
- msgstr ""
12693
-
12694
- #: view/SeoSettings/Metas.php:209
12695
- msgid "See how the social snippet will look like for the front page"
12696
- msgstr ""
12697
-
12698
- # @ squirrly-seo
12699
- #: view/SeoSettings/Metas.php:214
12700
- #, fuzzy
12701
- #| msgid "Squirrly LIVE SEO assistant"
12702
- msgid "Squirrly Snippet"
12703
- msgstr "Squirrly LIVE SEO-Assistent"
12704
-
12705
- #: view/SeoSettings/Metas.php:225
12706
- msgid ""
12707
- "If you don't see any changes in your Google snippet, check if other SEO "
12708
- "themes or plugins affect Squirrly."
12709
- msgstr ""
12710
-
12711
- #: view/SeoSettings/Robots.php:29
12712
  msgid ""
12713
  "A robots.txt file tells search engine crawlers which pages or files the "
12714
  "crawler can or can't request from your site."
12715
  msgstr ""
12716
 
12717
  # @ squirrly-seo
12718
- #: view/SeoSettings/Robots.php:35
12719
  #, fuzzy
12720
  #| msgid "Keywords:"
12721
  msgid "Activate Robots"
12722
  msgstr "Schlüsselwörter:"
12723
 
12724
- #: view/SeoSettings/Robots.php:56
12725
  msgid "Edit the Robots.txt data"
12726
  msgstr ""
12727
 
12728
- #: view/SeoSettings/Robots.php:57
12729
  msgid ""
12730
  "Does not physically create the robots.txt file. The best option for "
12731
  "Multisites."
12732
  msgstr ""
12733
 
 
 
 
 
 
 
12734
  # @ squirrly-seo
12735
- #: view/SeoSettings/Sitemap.php:55
12736
  #, fuzzy
12737
  #| msgid "Blogs"
12738
  msgid "Blogging Frequency"
12739
  msgstr "Blogs"
12740
 
12741
- #: view/SeoSettings/Sitemap.php:56
12742
  msgid "How often do you write new posts?"
12743
  msgstr ""
12744
 
12745
- #: view/SeoSettings/Sitemap.php:60
12746
  msgid "every hour"
12747
  msgstr ""
12748
 
12749
- #: view/SeoSettings/Sitemap.php:61
12750
  msgid "every day"
12751
  msgstr ""
12752
 
12753
- #: view/SeoSettings/Sitemap.php:62
12754
  msgid "1-3 times per week"
12755
  msgstr ""
12756
 
12757
- #: view/SeoSettings/Sitemap.php:63
12758
  msgid "1-3 times per month"
12759
  msgstr ""
12760
 
12761
- #: view/SeoSettings/Sitemap.php:64
12762
  msgid "1-3 times per year"
12763
  msgstr ""
12764
 
12765
- #: view/SeoSettings/Sitemap.php:74
12766
- msgid "Ping New Posts to Google"
12767
- msgstr ""
12768
-
12769
- #: view/SeoSettings/Sitemap.php:75
12770
- msgid "Ping your sitemap to Google and Bing when a new post is published."
12771
- msgstr ""
12772
-
12773
- # @ squirrly-seo
12774
- #: view/SeoSettings/Sitemap.php:76
12775
- #, fuzzy
12776
- #| msgid "Google %sAnalytics ID%s`:"
12777
- msgid "Not recommended if you added your sitemap in Google Search Console."
12778
- msgstr "Google %sAnalytics ID%s`:"
12779
-
12780
- #: view/SeoSettings/Sitemap.php:87
12781
  msgid "Combine Languages in Sitemap"
12782
  msgstr ""
12783
 
12784
- #: view/SeoSettings/Sitemap.php:88
12785
  msgid "Add all languages in the same sitemap.xml file"
12786
  msgstr ""
12787
 
12788
- #: view/SeoSettings/Sitemap.php:89
12789
  msgid ""
12790
  "If not selected, you have to add the language slug for each snippet. e.g. /"
12791
  "en/sitemap.xml"
12792
  msgstr ""
12793
 
12794
- #: view/SeoSettings/Sitemap.php:98
12795
  msgid "Build Sitemaps for"
12796
  msgstr ""
12797
 
12798
- #: view/SeoSettings/Sitemap.php:100
12799
  #, php-format
12800
  msgid ""
12801
  "Check the sitemap you want Squirrly to build for your website. Your sitemap "
12802
  "will be %s"
12803
  msgstr ""
12804
 
12805
- #: view/SeoSettings/Sitemap.php:101
12806
  msgid ""
12807
  "Verify your sitemaps after you activate them to have data. Uncheck them if "
12808
  "they don't have URLs to avoid Google errors."
12809
  msgstr ""
12810
 
12811
- #: view/SeoSettings/Sitemap.php:110
 
 
 
12812
  msgid "Home Page"
12813
- msgstr ""
12814
 
12815
- #: view/SeoSettings/Sitemap.php:111
12816
  msgid "Build the sitemap for the home page."
12817
  msgstr ""
12818
 
 
 
 
 
 
 
 
 
 
 
 
12819
  #: view/SeoSettings/Sitemap.php:120
 
 
12820
  msgid "Google News"
12821
- msgstr ""
12822
 
12823
  #: view/SeoSettings/Sitemap.php:121
12824
  #, php-format
@@ -12835,118 +13147,116 @@ msgstr ""
12835
  msgid "Build the sitemap for your posts."
12836
  msgstr ""
12837
 
12838
- #: view/SeoSettings/Sitemap.php:143
12839
  msgid "Attachments"
12840
  msgstr ""
12841
 
12842
- #: view/SeoSettings/Sitemap.php:144
12843
  msgid "Only recommended if you have a photography website."
12844
  msgstr ""
12845
 
12846
- #: view/SeoSettings/Sitemap.php:155
12847
  msgid "Categories"
12848
  msgstr ""
12849
 
12850
- #: view/SeoSettings/Sitemap.php:156
12851
  msgid "Build the sitemap for your post categories."
12852
  msgstr ""
12853
 
12854
- #: view/SeoSettings/Sitemap.php:166
12855
  msgid "Tags"
12856
  msgstr ""
12857
 
12858
- #: view/SeoSettings/Sitemap.php:167
12859
  msgid "Build the sitemap for your post tags."
12860
  msgstr ""
12861
 
12862
  # @ squirrly-seo
12863
- #: view/SeoSettings/Sitemap.php:178
12864
  #, fuzzy
12865
  #| msgid "Images"
12866
  msgid "Pages"
12867
  msgstr "Bilder"
12868
 
12869
- #: view/SeoSettings/Sitemap.php:179
12870
  msgid "Build the sitemap for your pages."
12871
  msgstr ""
12872
 
12873
- #: view/SeoSettings/Sitemap.php:188
12874
  msgid "Archive"
12875
  msgstr ""
12876
 
12877
- #: view/SeoSettings/Sitemap.php:189
12878
  msgid "Build the sitemap for your archive links."
12879
  msgstr ""
12880
 
12881
- #: view/SeoSettings/Sitemap.php:200
12882
  msgid "Custom Taxonomies"
12883
  msgstr ""
12884
 
12885
- #: view/SeoSettings/Sitemap.php:201
12886
  msgid "Build the sitemap for your custom post type categories and tags."
12887
  msgstr ""
12888
 
12889
- #: view/SeoSettings/Sitemap.php:210
 
 
12890
  msgid "Custom Posts"
12891
- msgstr ""
12892
 
12893
- #: view/SeoSettings/Sitemap.php:211
12894
  msgid ""
12895
  "Build the sitemap for your custom post types (other than WP posts and pages)."
12896
  msgstr ""
12897
 
12898
- #: view/SeoSettings/Sitemap.php:223
12899
  msgid "Products"
12900
  msgstr ""
12901
 
12902
- #: view/SeoSettings/Sitemap.php:224
12903
  msgid "Build the sitemap for your e-commerce products."
12904
  msgstr ""
12905
 
12906
- #: view/SeoSettings/Sitemap.php:244
12907
  msgid "Include Images in Sitemap"
12908
  msgstr ""
12909
 
12910
- #: view/SeoSettings/Sitemap.php:245
12911
  msgid ""
12912
  "Add the image tag for each post with feature image to index your images in "
12913
  "Google Image Search."
12914
  msgstr ""
12915
 
12916
- #: view/SeoSettings/Sitemap.php:255
12917
  msgid "Include Videos in Sitemap"
12918
  msgstr ""
12919
 
12920
- #: view/SeoSettings/Sitemap.php:256
12921
  msgid "Add the video tag for each post with embed video in it."
12922
  msgstr ""
12923
 
12924
- #: view/SeoSettings/Sitemap.php:268
12925
- msgid "Sitemap Pagination"
12926
  msgstr ""
12927
 
12928
- #: view/SeoSettings/Sitemap.php:269
12929
- msgid "How many Posts per page to show in sitemap?"
12930
  msgstr ""
12931
 
12932
- #: view/SeoSettings/Sitemap.php:287
12933
- msgid "Fix Relative URLs"
12934
  msgstr ""
12935
 
12936
- #: view/SeoSettings/Sitemap.php:288
12937
- #, php-format
12938
- msgid ""
12939
- "Make sure that all URLs have the absolute path in each Sitemap. It's "
12940
- "important to prevent broken links especially when you export your Sitemap to "
12941
- "%sFeedburner%s"
12942
  msgstr ""
12943
 
12944
- #: view/SeoSettings/Social.php:48
12945
  msgid ""
12946
  "Add the Social Open Graph protocol so that your Facebook shares look good."
12947
  msgstr ""
12948
 
12949
- #: view/SeoSettings/Social.php:49
12950
  #, php-format
12951
  msgid ""
12952
  "You can always update an URL on Facebook if you change its Social Media "
@@ -12954,23 +13264,26 @@ msgid ""
12954
  msgstr ""
12955
 
12956
  # @ squirrly-seo
12957
- #: view/SeoSettings/Social.php:58
12958
  #, fuzzy
12959
  #| msgid "Description:"
12960
  msgid "Facebook Share Language"
12961
  msgstr "Beschreibung:"
12962
 
12963
- #: view/SeoSettings/Social.php:59
12964
  msgid ""
12965
  "Use this so that Facebook can automatically translate the text into the "
12966
  "reader's language"
12967
  msgstr ""
12968
 
12969
- #: view/SeoSettings/Social.php:208
 
 
 
12970
  msgid "Facebook App ID"
12971
- msgstr ""
12972
 
12973
- #: view/SeoSettings/Social.php:209
12974
  #, php-format
12975
  msgid ""
12976
  "Add the %sFacebook App ID%s to create a connection between your Facebook "
@@ -12978,231 +13291,280 @@ msgid ""
12978
  msgstr ""
12979
 
12980
  # @ squirrly-seo
12981
- #: view/SeoSettings/Social.php:228 view/SeoSettings/Social.php:240
12982
- #: view/SeoSettings/Social.php:253
12983
  #, fuzzy
12984
  #| msgid "Description:"
12985
  msgid "Facebook Admin ID"
12986
  msgstr "Beschreibung:"
12987
 
12988
- #: view/SeoSettings/Social.php:229 view/SeoSettings/Social.php:241
12989
  msgid ""
12990
  "Similar to Facebook App ID, Facebook Admin ID connects your Facebook Page to "
12991
  "your Website."
12992
  msgstr ""
12993
 
12994
- #: view/SeoSettings/Social.php:260
 
 
 
12995
  msgid "Add multiple Facebook Admin IDs"
12996
- msgstr ""
12997
 
12998
- #: view/SeoSettings/Social.php:271
12999
  msgid ""
13000
  "Add the Twitter Card in your tweets so that your Twitter shares look good."
13001
  msgstr ""
13002
 
13003
- #: view/SeoSettings/Social.php:272
13004
  #, php-format
13005
  msgid ""
13006
  "Make sure you validate the twitter card with your Twitter account. Visit "
13007
  "%sTwitter Card Validator%s"
13008
  msgstr ""
13009
 
13010
- #: view/SeoSettings/Social.php:282
 
 
 
13011
  msgid "Share Large Images"
13012
- msgstr ""
13013
 
13014
- #: view/SeoSettings/Social.php:283
13015
  msgid ""
13016
  "Activate this option only if you upload images with sizes between 500px and "
13017
  "4096px width in Twitter Card."
13018
  msgstr ""
13019
 
13020
- #: view/SeoSettings/Social.php:284
13021
  #, php-format
13022
  msgid ""
13023
  "This option will show the twitter card image as a shared image and not as a "
13024
  "summary. Visit %sSummary Card with Large Image%s"
13025
  msgstr ""
13026
 
13027
- #: view/SeoSettings/Social.php:292
 
 
 
13028
  msgid "Social Media Accounts"
13029
- msgstr ""
13030
 
13031
- #: view/SeoSettings/Social.php:294
13032
  msgid ""
13033
  "Add your Social Media account for JSON-LD Structured data, Open Graph, and "
13034
  "Twitter Card."
13035
  msgstr ""
13036
 
13037
- #: view/SeoSettings/Social.php:300
 
 
 
13038
  msgid "Twitter Profile URL"
13039
- msgstr ""
13040
 
13041
- #: view/SeoSettings/Social.php:302
13042
  msgid "Required for Twitter Card Validator"
13043
  msgstr ""
13044
 
13045
  # @ squirrly-seo
13046
- #: view/SeoSettings/Social.php:311
13047
  #, fuzzy
13048
  #| msgid "Description:"
13049
  msgid "Facebook Profile or Page URL"
13050
  msgstr "Beschreibung:"
13051
 
13052
- #: view/SeoSettings/Social.php:322
13053
  msgid "Linkedin Profile URL"
13054
  msgstr ""
13055
 
13056
- #: view/SeoSettings/Social.php:332
13057
  msgid "Pinterest Profile URL"
13058
  msgstr ""
13059
 
13060
- #: view/SeoSettings/Social.php:342
13061
  msgid "Instagram Profile URL"
13062
  msgstr ""
13063
 
13064
- #: view/SeoSettings/Social.php:352
13065
  msgid "Youtube Channel URL"
13066
  msgstr ""
13067
 
13068
  # @ squirrly-seo
13069
- #: view/SeoSettings/Tracking.php:56
13070
  #, fuzzy
13071
  #| msgid "Google %sAnalytics ID%s`:"
13072
  msgid "Google Analytics ID"
13073
  msgstr "Google %sAnalytics ID%s`:"
13074
 
13075
- #: view/SeoSettings/Tracking.php:57
13076
  #, php-format
13077
  msgid ""
13078
  "Squirrly adds the Google Tracking script for your Analytics ID. %sGet the "
13079
  "Analytics ID%s"
13080
  msgstr ""
13081
 
13082
- #: view/SeoSettings/Tracking.php:75
13083
  msgid "Get GA Code"
13084
  msgstr ""
13085
 
13086
  # @ squirrly-seo
13087
- #: view/SeoSettings/Tracking.php:84
13088
  #, fuzzy
13089
  #| msgid "The code for Google Analytics is incorrect."
13090
  msgid "Google Tracking Mode"
13091
  msgstr "Der Code für Google Analytics ist falsch."
13092
 
13093
- #: view/SeoSettings/Tracking.php:85
13094
  #, php-format
13095
  msgid ""
13096
  "Choose gtag.js if you use %sGoogle Tag Manager%s or the %sGoogle Analytics "
13097
  "4%s. Otherwise select analytics.js to track the website traffic."
13098
  msgstr ""
13099
 
13100
- #: view/SeoSettings/Tracking.php:89
13101
  msgid "analytics.js"
13102
  msgstr ""
13103
 
13104
- #: view/SeoSettings/Tracking.php:90
13105
  msgid "gtag.js"
13106
  msgstr ""
13107
 
13108
  # @ squirrly-seo
13109
- #: view/SeoSettings/Tracking.php:100
13110
  #, fuzzy
13111
  #| msgid "Description:"
13112
  msgid "Facebook Pixel"
13113
  msgstr "Beschreibung:"
13114
 
13115
- #: view/SeoSettings/Tracking.php:101
13116
  #, php-format
13117
  msgid ""
13118
  "Use FB Pixel to track the visitors events and to use Facebook Ads more "
13119
  "efficient. %sLearn More%s"
13120
  msgstr ""
13121
 
13122
- #: view/SeoSettings/Tracking.php:117
13123
- msgid "Load Trackings as AMP"
13124
  msgstr ""
13125
 
13126
- #: view/SeoSettings/Tracking.php:118
 
13127
  msgid ""
13128
- "Only if your website is AMP optimize, activate this option to load the "
13129
- "scripts for AMP version."
13130
  msgstr ""
13131
 
13132
- #: view/SeoSettings/Tracking.php:128
13133
  msgid "Load Tracking for Logged Users"
13134
  msgstr ""
13135
 
13136
- #: view/SeoSettings/Tracking.php:129
13137
  msgid "Load the tracking codes for logged users too."
13138
  msgstr ""
13139
 
13140
- #: view/SeoSettings/Webmaster.php:27
13141
- msgid "Webmaster Tools"
13142
- msgstr ""
13143
-
13144
  # @ squirrly-seo
13145
- #: view/SeoSettings/Webmaster.php:32
13146
  #, fuzzy
13147
  #| msgid "Change the Website Icon"
13148
  msgid "Activate Webmasters"
13149
  msgstr "Ändern Sie das Website-Symbol"
13150
 
13151
- #: view/SeoSettings/Webmaster.php:56
13152
- msgid "Google Verification Code"
13153
- msgstr ""
13154
-
13155
  # @ squirrly-seo
13156
- #: view/SeoSettings/Webmaster.php:57
13157
  #, fuzzy, php-format
13158
  #| msgid "Google META verification code for %sWebmaster Tool%s`:"
13159
  msgid ""
13160
- "Add the Google META verification code to connect to %sGoogle Search Console"
13161
- "%s and %sWebmaster Tool%s"
13162
  msgstr "Google META Bestätigungs-Code für %sWebmaster Tool%s`:"
13163
 
13164
- #: view/SeoSettings/Webmaster.php:75
13165
  msgid "Get GSC Code"
13166
  msgstr ""
13167
 
13168
- #: view/SeoSettings/Webmaster.php:84
13169
- msgid "Bing Verification Code"
13170
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13171
 
13172
  # @ squirrly-seo
13173
- #: view/SeoSettings/Webmaster.php:85
13174
  #, fuzzy, php-format
13175
  #| msgid "Google META verification code for %sWebmaster Tool%s`:"
13176
- msgid "Add the Bing META verification code to connect to %sWebmaster Tool%s"
 
13177
  msgstr "Google META Bestätigungs-Code für %sWebmaster Tool%s`:"
13178
 
13179
- #: view/SeoSettings/Webmaster.php:94
13180
  msgid "Alexa META Code"
13181
  msgstr ""
13182
 
13183
- #: view/SeoSettings/Webmaster.php:95
13184
  #, php-format
13185
  msgid ""
13186
  "Add the Alexa META code to analyze your entire website. Visit the %sAlexa "
13187
  "Marketing Tool%s"
13188
  msgstr ""
13189
 
13190
- #: view/SeoSettings/Webmaster.php:104
13191
  msgid "Pinterest Website Validator Code"
13192
  msgstr ""
13193
 
13194
- #: view/SeoSettings/Webmaster.php:105
13195
  #, php-format
13196
  msgid ""
13197
  "Add the Pinterest verification code to connect your website to your "
13198
  "Pinterest account. Visit the %sRich Pins Validator%s"
13199
  msgstr ""
13200
 
 
 
 
 
 
 
 
 
 
 
 
13201
  # @ squirrly-seo
13202
  #. Plugin Name of the plugin/theme
13203
  #, fuzzy
13204
  #| msgid "Squirrly LIVE SEO assistant"
13205
- msgid "Squirrly SEO 2020 (Smart Strategy)"
13206
  msgstr "Squirrly LIVE SEO-Assistent"
13207
 
13208
  #. Plugin URI of the plugin/theme
@@ -13221,6 +13583,155 @@ msgstr ""
13221
  msgid "https://plugin.squirrly.co"
13222
  msgstr ""
13223
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13224
  # @ squirrly-seo
13225
  #, fuzzy
13226
  #~| msgid "Could not send the email..."
@@ -13582,7 +14093,3 @@ msgstr ""
13582
  # @ squirrly-seo
13583
  #~ msgid "Facebook META code (for %sInsights%s )`:"
13584
  #~ msgstr "Facebook META Code (für %sInsights%s )`:"
13585
-
13586
- # @ squirrly-seo
13587
- #~ msgid "Bing META code (for %sWebmaster Tool%s )`:"
13588
- #~ msgstr "Bing META Code (für %sWebmaster Tool%s )`:"
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-03-22 08:03+0200\n"
6
+ "PO-Revision-Date: 2021-03-22 08:04+0200\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.4.2\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ #: classes/RemoteController.php:279
23
  msgid "Too many API attempts, please slow down the request."
24
  msgstr ""
25
 
26
+ #: classes/RemoteController.php:283
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
  # @ squirrly-seo
33
+ #: classes/RemoteController.php:1323
34
  msgid "Keyword:"
35
  msgstr "Schlüsselwort:"
36
 
37
  # @ squirrly-seo
38
+ #: classes/RemoteController.php:1324
39
  msgid "date"
40
  msgstr "Datum"
41
 
42
+ #: classes/RemoteController.php:1325 view/Frontend/Assistant.php:35
43
+ msgid ""
44
+ "To load Squirrly Live Assistant and optimize this page, click to connect to "
45
+ "Squirrly Data Cloud."
46
+ msgstr ""
47
+
48
  # @ squirrly-seo
49
+ #: classes/RemoteController.php:1326 controllers/CheckSeo.php:329
50
+ #: controllers/Patterns.php:21 controllers/Research.php:295
51
+ #: controllers/Research.php:326 controllers/Research.php:380
52
+ #: controllers/Research.php:690 view/Blocks/Snippet.php:1227
53
  #, fuzzy
54
  #| msgid "Keyword:"
55
  msgid "Saved!"
56
  msgstr "Schlüsselwort:"
57
 
58
  # @ squirrly-seo
59
+ #: classes/RemoteController.php:1327
60
  msgid "Read it!"
61
  msgstr "Lesen!"
62
 
63
  # @ squirrly-seo
64
+ #: classes/RemoteController.php:1328
65
  msgid "Insert it!"
66
  msgstr "Einfügen!"
67
 
68
  # @ squirrly-seo
69
+ #: classes/RemoteController.php:1329
70
  msgid "Reference"
71
  msgstr "Referenz"
72
 
73
  # @ squirrly-seo
74
+ #: classes/RemoteController.php:1330
75
  msgid "Insert as box"
76
  msgstr "Als Box einfügen"
77
 
78
  # @ squirrly-seo
79
+ #: classes/RemoteController.php:1331
80
  #, fuzzy
81
  #| msgid "Insert it!"
82
  msgid "Insert Link"
83
  msgstr "Einfügen!"
84
 
85
  # @ squirrly-seo
86
+ #: classes/RemoteController.php:1332
87
  msgid "Not relevant?"
88
  msgstr "Nicht relevant?"
89
 
90
  # @ squirrly-seo
91
+ #: classes/RemoteController.php:1333
92
  msgid "Insert in your article"
93
  msgstr "In Artikel einfügen"
94
 
95
  # @ squirrly-seo
96
+ #: classes/RemoteController.php:1334
97
  #, fuzzy
98
  #| msgid "An error occured while logging in!"
99
  msgid ":( An error occurred while processing your request. Please try again"
100
  msgstr "Bei der Anmeldung ist ein Fehler aufgetreten!"
101
 
102
  # @ squirrly-seo
103
+ #: classes/RemoteController.php:1335
104
  msgid "No results found!"
105
  msgstr "Keine Ergebnisse gefunden!"
106
 
107
+ #: classes/RemoteController.php:1336
108
  #, php-format
109
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
110
  msgstr ""
111
 
112
+ #: classes/RemoteController.php:1337
113
  msgid "Has creative commons attributes"
114
  msgstr ""
115
 
116
  # @ squirrly-seo
117
+ #: classes/RemoteController.php:1338
118
  #, fuzzy
119
  #| msgid "Description:"
120
  msgid "No known copyright restrictions"
121
  msgstr "Beschreibung:"
122
 
123
+ #: classes/RemoteController.php:1339
124
  msgid ""
125
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
126
  "optimize for a keyword before publishing?"
128
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
129
  "optimize for a keyword before publishing?"
130
 
131
+ #: classes/RemoteController.php:1340
132
  msgid "Your Subscription has Expired"
133
  msgstr ""
134
 
135
+ # @ squirrly-seo
136
+ #: classes/RemoteController.php:1341
137
+ #, fuzzy
138
+ #| msgid "Do a research"
139
  msgid "There are no keywords saved in briefcase yet"
140
+ msgstr "Recherchieren"
141
 
142
+ #: classes/RemoteController.php:1342
143
  #, php-format
144
  msgid "Congratulations! Your article is 100% optimized!"
145
  msgstr ""
146
 
147
+ #: classes/RemoteController.php:1343
148
  #, php-format
149
  msgid "appears too many times. Try to remove %s of them"
150
  msgstr ""
151
 
152
  # @ squirrly-seo
153
+ #: classes/RemoteController.php:1344
154
  #, fuzzy, php-format
155
  #| msgid "Squirrly Keyword Research"
156
  msgid "write %s more words"
157
  msgstr "Squirrly Erweiterte Suche!"
158
 
159
+ # @ squirrly-seo
160
+ #: classes/RemoteController.php:1345
161
+ #, fuzzy, php-format
162
+ #| msgid "Insert in your article"
163
  msgid "Add the keyword in the %s of your article"
164
+ msgstr "In Artikel einfügen"
165
 
166
+ #: classes/RemoteController.php:1346
167
  msgid "Click to keep the highlight on"
168
  msgstr ""
169
 
170
+ #: classes/RemoteController.php:1347
171
  msgid "introduction"
172
  msgstr ""
173
 
174
  # @ squirrly-seo
175
+ #: classes/RemoteController.php:1348
176
  #, fuzzy, php-format
177
  #| msgid "Use more words in one keyword"
178
  msgid "Write more words after the %s keyword"
179
  msgstr "Verwenden Sie mehrere Wörter in einem Schlüsselwort"
180
 
181
+ #: classes/RemoteController.php:1349
182
  msgid "or use synonyms"
183
  msgstr ""
184
 
185
  # @ squirrly-seo
186
+ #: classes/RemoteController.php:1350
187
  #, fuzzy, php-format
188
  #| msgid "+ Add keyword"
189
  msgid "add %s more word(s)"
190
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
191
 
 
 
 
 
 
192
  # @ squirrly-seo
193
+ #: classes/RemoteController.php:1351
194
  #, fuzzy, php-format
195
  #| msgid "+ Add keyword"
196
+ msgid "or remove %s word(s)"
197
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
198
 
199
+ #: classes/RemoteController.php:1352
200
  #, php-format
201
+ msgid "add the selected keyword %s more time(s) "
202
  msgstr ""
203
 
204
  # @ squirrly-seo
205
+ #: classes/RemoteController.php:1353
206
+ #, fuzzy, php-format
207
+ #| msgid "Squirrly Keyword Research"
208
+ msgid "write %s more words to start calculating"
209
+ msgstr "Squirrly Erweiterte Suche!"
210
+
211
+ # @ squirrly-seo
212
+ #: classes/RemoteController.php:1354 view/Research/Research.php:49
213
  #, fuzzy
214
  #| msgid "+ Add keyword"
215
  msgid "Add to Briefcase"
216
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
217
 
218
  # @ squirrly-seo
219
+ #: classes/RemoteController.php:1355
220
  #, fuzzy
221
  #| msgid "+ Add keyword"
222
  msgid "Add Keyword to Briefcase"
223
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
224
 
225
+ # @ squirrly-seo
226
+ #: classes/RemoteController.php:1356
227
+ #, fuzzy
228
+ #| msgid "Images"
229
  msgid "Select"
230
+ msgstr "Bilder"
231
 
232
  # @ squirrly-seo
233
+ #: classes/RemoteController.php:1357 view/Blocks/Snippet.php:133
234
+ #: view/Blocks/Snippet.php:594 view/Blocks/Snippet.php:862
235
  #, fuzzy
236
  #| msgid "automatically"
237
  msgid "Auto Draft"
238
  msgstr "automatisch"
239
 
240
+ #: classes/RemoteController.php:1358
241
  msgid ""
242
  "You’ve already used the Live Assistant to optimize this post when creating "
243
  "it in your Page Builder. Please go back and resume your optimization work "
245
  msgstr ""
246
 
247
  # @ squirrly-seo
248
+ #: classes/helpers/Sanitize.php:196
249
  msgid "The code for Google Webmaster Tool is incorrect."
250
  msgstr "Der Code für Google Webmaster Tool ist falsch."
251
 
252
  # @ squirrly-seo
253
+ #: classes/helpers/Sanitize.php:223
254
  msgid "The code for Google Analytics is incorrect."
255
  msgstr "Der Code für Google Analytics ist falsch."
256
 
257
  # @ squirrly-seo
258
+ #: classes/helpers/Sanitize.php:260
259
  msgid "The code for Facebook is incorrect."
260
  msgstr "Der Code für Facebook ist falsch."
261
 
262
  # @ squirrly-seo
263
+ #: classes/helpers/Sanitize.php:286
264
  #, fuzzy
265
  #| msgid "The code for Bing is incorrect."
266
  msgid "The code for Pinterest is incorrect."
267
  msgstr "Der Code für Bing ist falsch."
268
 
269
  # @ squirrly-seo
270
+ #: classes/helpers/Sanitize.php:311
271
  msgid "The code for Bing is incorrect."
272
  msgstr "Der Code für Bing ist falsch."
273
 
274
  # @ squirrly-seo
275
+ #: classes/helpers/Sanitize.php:336
276
+ #, fuzzy
277
+ #| msgid "The code for Bing is incorrect."
278
+ msgid "The code for Baidu is incorrect."
279
+ msgstr "Der Code für Bing ist falsch."
280
+
281
+ # @ squirrly-seo
282
+ #: classes/helpers/Sanitize.php:361
283
+ #, fuzzy
284
+ #| msgid "The code for Bing is incorrect."
285
+ msgid "The code for Yandex is incorrect."
286
+ msgstr "Der Code für Bing ist falsch."
287
+
288
+ # @ squirrly-seo
289
+ #: classes/helpers/Sanitize.php:386
290
  #, fuzzy
291
  #| msgid "The code for Bing is incorrect."
292
  msgid "The code for Alexa is incorrect."
293
  msgstr "Der Code für Bing ist falsch."
294
 
295
  # @ squirrly-seo
296
+ #: classes/helpers/Sanitize.php:512
297
  #, fuzzy
298
  #| msgid "The code for Facebook is incorrect."
299
  msgid "The code for Facebook Pixel must only contain numbers."
300
  msgstr "Der Code für Facebook ist falsch."
301
 
302
  # @ squirrly-seo
303
+ #: classes/helpers/Sanitize.php:527
304
  #, fuzzy
305
  #| msgid "The code for Facebook is incorrect."
306
  msgid "The code for Facebook App must only contain numbers."
307
  msgstr "Der Code für Facebook ist falsch."
308
 
309
+ # @ squirrly-seo
310
+ #: classes/helpers/Tools.php:83
311
+ #, fuzzy
312
+ #| msgid "Save settings"
313
  msgid "Getting started"
314
+ msgstr "Einstellungen speichern"
315
 
316
  # @ squirrly-seo
317
+ #: classes/helpers/Tools.php:108
318
  #, fuzzy
319
  #| msgid "Competition:"
320
  msgid "Documentation"
321
  msgstr "Wettbewerb:"
322
 
323
+ #: classes/helpers/Tools.php:109
324
  msgid "Leave a review"
325
  msgstr ""
326
 
327
+ #: classes/helpers/Tools.php:523
328
  msgid "Format"
329
  msgstr ""
330
 
331
+ #: classes/helpers/Tools.php:542 classes/helpers/Tools.php:580
332
  msgid "Category"
333
  msgstr ""
334
 
335
+ #: classes/helpers/Tools.php:561 classes/helpers/Tools.php:599
336
  msgid "Tag"
337
  msgstr ""
338
 
339
+ #: classes/helpers/Tools.php:618
340
  msgid "Shipping Option"
341
  msgstr ""
342
 
343
+ #: classes/helpers/Tools.php:637
344
  msgid "Author at"
345
  msgstr ""
346
 
347
+ #: classes/helpers/Tools.php:695
348
  msgid "Are you looking for"
349
  msgstr ""
350
 
351
+ # @ squirrly-seo
352
+ #: classes/helpers/Tools.php:696
353
+ #, fuzzy
354
+ #| msgid "Send Question"
355
  msgid "These are the results for"
356
+ msgstr "Senden Sie Ihre Frage"
357
 
358
+ # @ squirrly-seo
359
+ #: classes/helpers/Tools.php:696
360
+ #, fuzzy
361
+ #| msgid "Upload error: Could not upload the favicon."
362
  msgid "that you can find on our website."
363
+ msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
364
 
365
  # @ squirrly-seo
366
+ #: classes/helpers/Tools.php:732
367
  #, fuzzy
368
  #| msgid "No results found!"
369
  msgid "Page not found"
370
  msgstr "Keine Ergebnisse gefunden!"
371
 
372
+ # @ squirrly-seo
373
+ #: classes/helpers/Tools.php:733
374
+ #, fuzzy
375
+ #| msgid "Upload error: Could not upload the favicon."
376
  msgid "This page could not be found on our website."
377
+ msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
378
 
379
+ #: classes/helpers/Tools.php:1065
380
  msgid "For better text comparison you need to install PHP mbstring extension."
381
  msgstr ""
382
 
398
  msgid "Will display an excerpt from the post/page (no auto-generation)"
399
  msgstr ""
400
 
401
+ # @ squirrly-seo
402
  #: config/config.php:34
403
+ #, fuzzy
404
+ #| msgid "Description:"
405
  msgid "Adds the post's keyword to the post description"
406
+ msgstr "Beschreibung:"
407
 
408
  #: config/config.php:35
409
  msgid "Displays the number of the current page (i.e. 1 of 6)"
410
  msgstr ""
411
 
412
+ # @ squirrly-seo
413
  #: config/config.php:36
414
+ #, fuzzy
415
+ #| msgid "Description:"
416
  msgid "Adds the site's name to the post description"
417
+ msgstr "Beschreibung:"
418
 
419
+ # @ squirrly-seo
420
  #: config/config.php:37
421
+ #, fuzzy
422
+ #| msgid "Description:"
423
  msgid "Adds the tagline/description of your site"
424
+ msgstr "Beschreibung:"
425
 
426
  #: config/config.php:38
427
  msgid "Adds the post category (several categories will be comma-separated)"
431
  msgid "Adds the primary category of the post/page"
432
  msgstr ""
433
 
434
+ # @ squirrly-seo
435
  #: config/config.php:40
436
+ #, fuzzy
437
+ #| msgid "Description:"
438
  msgid "Adds the category description to the post description"
439
+ msgstr "Beschreibung:"
440
 
441
  #: config/config.php:41
442
  msgid "Adds the current tag(s) (several tags will be comma-separated)"
449
  msgid "Adds the tag description"
450
  msgstr "Beschreibung:"
451
 
452
+ # @ squirrly-seo
453
  #: config/config.php:43
454
+ #, fuzzy
455
+ #| msgid "Description:"
456
  msgid "Adds the term name"
457
+ msgstr "Beschreibung:"
458
 
459
  # @ squirrly-seo
460
  #: config/config.php:44
491
  msgid "Adds the current day"
492
  msgstr ""
493
 
494
+ # @ squirrly-seo
495
  #: config/config.php:52
496
+ #, fuzzy
497
+ #| msgid "Description:"
498
  msgid "Adds the current month"
499
+ msgstr "Beschreibung:"
500
 
501
  #: config/config.php:53
502
  msgid "Adds the current year"
523
  "Adds the product price currency from Woocommerce for the current product"
524
  msgstr ""
525
 
526
+ # @ squirrly-seo
527
+ #: controllers/Api.php:69
528
+ #, fuzzy
529
+ #| msgid ""
530
+ #| "Could not send your informations to squirrly. Please register %smanually"
531
+ #| "%s."
532
  msgid "Invalid Token. Please try again"
533
  msgstr ""
534
+ "Konnte Ihre Informationen nicht zu Squirrly senden. Bitte registrieren "
535
+ "%smanually%s."
536
 
537
+ # @ squirrly-seo
538
+ #: controllers/Api.php:90
539
+ #, fuzzy
540
+ #| msgid ""
541
+ #| "Could not send your informations to squirrly. Please register %smanually"
542
+ #| "%s."
543
  msgid "Connection expired. Please try again"
544
  msgstr ""
545
+ "Konnte Ihre Informationen nicht zu Squirrly senden. Bitte registrieren "
546
+ "%smanually%s."
547
 
548
+ # @ squirrly-seo
549
+ #: controllers/Api.php:103 controllers/Api.php:106 controllers/Api.php:109
550
+ #, fuzzy
551
+ #| msgid "No results found!"
552
  msgid "Author not found"
553
+ msgstr "Keine Ergebnisse gefunden!"
554
 
555
  # @ squirrly-seo
556
+ #: controllers/Api.php:142
557
  #, fuzzy
558
  #| msgid ""
559
  #| "Could not send your informations to squirrly. Please register %smanually"
563
  "Konnte Ihre Informationen nicht zu Squirrly senden. Bitte registrieren "
564
  "%smanually%s."
565
 
566
+ #: controllers/Api.php:152 controllers/Api.php:174
567
  msgid "Wrong Params"
568
  msgstr ""
569
 
570
  # @ squirrly-seo
571
+ #: controllers/Assistant.php:71 controllers/Research.php:105
572
  #, fuzzy
573
  #| msgid "Keywords:"
574
  msgid "No keyword found."
575
  msgstr "Schlüsselwörter:"
576
 
577
+ # @ squirrly-seo
578
+ #: controllers/Assistant.php:110 controllers/Assistant.php:137
579
+ #: controllers/Audits.php:343 controllers/Ranking.php:148
580
+ #: controllers/SeoSettings.php:146 controllers/SeoSettings.php:192
581
+ #: controllers/SeoSettings.php:209 controllers/SeoSettings.php:233
582
+ #: controllers/SeoSettings.php:272 controllers/SeoSettings.php:301
583
+ #: controllers/SeoSettings.php:332 controllers/SeoSettings.php:655
584
+ #: controllers/SeoSettings.php:766 controllers/SeoSettings.php:801
585
+ #, fuzzy
586
+ #| msgid "Keyword:"
587
  msgid "Saved"
588
+ msgstr "Schlüsselwort:"
589
 
590
+ #: controllers/Assistant.php:116 controllers/BulkSeo.php:73
591
+ #: controllers/Patterns.php:107 controllers/Post.php:286
592
+ #: controllers/Post.php:339 controllers/Post.php:370 controllers/Post.php:405
593
+ #: controllers/PostsList.php:190 controllers/Research.php:186
594
+ #: controllers/Research.php:193 controllers/Research.php:231
595
+ #: controllers/Research.php:253 controllers/Research.php:276
596
+ #: controllers/Research.php:306 controllers/Research.php:333
597
+ #: controllers/Research.php:357 controllers/Research.php:387
598
+ #: controllers/Research.php:408 controllers/Research.php:489
599
+ #: controllers/Research.php:640 controllers/Research.php:664
600
+ #: controllers/Research.php:698 controllers/Research.php:724
601
+ #: controllers/SeoSettings.php:405 controllers/SeoSettings.php:644
602
+ #: controllers/SeoSettings.php:668 controllers/SeoSettings.php:681
603
+ #: controllers/SeoSettings.php:702 controllers/SeoSettings.php:721
604
+ #: controllers/SeoSettings.php:739 controllers/SeoSettings.php:781
605
+ #: controllers/Snippet.php:171
606
  msgid "You do not have permission to perform this action"
607
  msgstr ""
608
 
609
  # @ squirrly-seo
610
+ #: controllers/Assistant.php:142
611
  #, fuzzy
612
  #| msgid "Could not send the email..."
613
  msgid "Error: Could not save the data."
614
  msgstr "Konnte E-Mail nicht senden ..."
615
 
616
+ #: controllers/Audits.php:141
617
  msgid "The audit was not found. Please load another audit."
618
  msgstr ""
619
 
620
  # @ squirrly-seo
621
+ #: controllers/Audits.php:170
622
  #, fuzzy
623
  #| msgid "Could not send the email..."
624
  msgid "Could not load the Audit Page."
625
  msgstr "Konnte E-Mail nicht senden ..."
626
 
627
+ #: controllers/Audits.php:284
628
  msgid "Audit page is added. The audit may take a while so please be patient."
629
  msgstr ""
630
 
631
+ #: controllers/Audits.php:287
632
  msgid "You reached the maximum number of audit pages for your account."
633
  msgstr ""
634
 
635
  # @ squirrly-seo
636
+ #: controllers/Audits.php:290
637
  #, fuzzy
638
  #| msgid "Upload error: Could not upload the favicon."
639
  msgid "Error! Could not add the audit page."
640
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
641
 
642
  # @ squirrly-seo
643
+ #: controllers/Audits.php:294
644
  #, fuzzy
645
  #| msgid "Upload error: Could not upload the favicon."
646
  msgid "Error! Could not find the audit page in your website."
647
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
648
 
649
+ #: controllers/Audits.php:304
650
  msgid "Audit page sent for recheck. It may take a while so please be patient."
651
  msgstr ""
652
 
653
+ #: controllers/Audits.php:307 controllers/Audits.php:310
654
  msgid "The audit for all pages can be made once an hour."
655
  msgstr ""
656
 
657
+ #: controllers/Audits.php:320
658
  msgid "The audit page is deleted."
659
  msgstr ""
660
 
661
+ # @ squirrly-seo
662
+ #: controllers/Audits.php:322 controllers/FocusPages.php:417
663
+ #: controllers/Ranking.php:175 controllers/Ranking.php:193
664
+ #: controllers/Ranking.php:211 controllers/Research.php:222
665
+ #: controllers/Research.php:225 controllers/Research.php:248
666
+ #: controllers/Research.php:270 controllers/Research.php:328
667
+ #: controllers/Research.php:352 controllers/Research.php:536
668
+ #: controllers/Research.php:607 controllers/Research.php:634
669
+ #: controllers/Research.php:659 controllers/Research.php:744
670
+ #, fuzzy
671
+ #| msgid "Keywords:"
672
  msgid "Invalid params!"
673
+ msgstr "Schlüsselwörter:"
674
 
675
+ #: controllers/Audits.php:345
676
  msgid "Not a valid email address."
677
  msgstr ""
678
 
679
+ #: controllers/CheckSeo.php:284 controllers/CheckSeo.php:294
680
  msgid "Done!"
681
  msgstr ""
682
 
683
+ #: controllers/CheckSeo.php:311
684
  msgid "Fixed!"
685
  msgstr ""
686
 
687
+ #: controllers/CheckSeo.php:316
688
  msgid "Could not fix it. You need to change it manually."
689
  msgstr ""
690
 
691
+ #: controllers/CheckSeo.php:323
692
  msgid "Saved! Task marked as done."
693
  msgstr ""
694
 
695
+ #: controllers/FocusPages.php:156
696
  msgid "Focus Page does not exist or was deleted from your website."
697
  msgstr ""
698
 
699
+ #: controllers/FocusPages.php:348
700
  msgid "Focus page is added. The audit may take a while so please be patient."
701
  msgstr ""
702
 
703
+ #: controllers/FocusPages.php:355
704
  msgid "You reached the maximum number of focus pages for all your websites."
705
  msgstr ""
706
 
707
  # @ squirrly-seo
708
+ #: controllers/FocusPages.php:358
709
  #, fuzzy
710
  #| msgid "Upload error: Could not upload the favicon."
711
  msgid "Error! Could not add the focus page."
712
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
713
 
714
+ # @ squirrly-seo
715
+ #: controllers/FocusPages.php:361
716
+ #, fuzzy
717
+ #| msgid "Upload error: Could not upload the favicon."
718
  msgid "Error! This focus page is not public."
719
+ msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
720
 
721
  # @ squirrly-seo
722
+ #: controllers/FocusPages.php:365 controllers/FocusPages.php:404
723
  #, fuzzy
724
  #| msgid "Upload error: Could not upload the favicon."
725
  msgid "Error! Could not find the focus page in your website."
726
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
727
 
728
+ #: controllers/FocusPages.php:392
729
  msgid "Focus page sent for recheck. It may take a while so please be patient."
730
  msgstr ""
731
 
732
+ #: controllers/FocusPages.php:395 controllers/FocusPages.php:399
733
  msgid "You've made too many requests, please wait a few minutes."
734
  msgstr ""
735
 
736
+ #: controllers/FocusPages.php:415
737
  msgid "The focus page is deleted"
738
  msgstr ""
739
 
740
+ #: controllers/Menu.php:86
741
  #, php-format
742
  msgid ""
743
  "An error occurred during activation. If this error persists, please contact "
744
  "us at: %s"
745
  msgstr ""
746
 
747
+ #: controllers/Menu.php:123
748
  msgid "Dashboard"
749
  msgstr ""
750
 
751
  # @ squirrly-seo
752
  #. Author of the plugin/theme
753
+ #: controllers/Menu.php:148 controllers/Menu.php:253 controllers/Menu.php:280
754
+ #: view/Blocks/SLASearch.php:8
755
  #, fuzzy
756
  #| msgid "Squirrly settings"
757
  msgid "Squirrly SEO"
758
  msgstr "Squirrly Einstellungen"
759
 
760
  # @ squirrly-seo
761
+ #: controllers/Menu.php:217
762
  #, fuzzy
763
  #| msgid "Squirrly LIVE SEO assistant"
764
  msgid "SEO Snippet"
765
  msgstr "Squirrly LIVE SEO-Assistent"
766
 
767
+ #: controllers/Menu.php:232 controllers/Snippet.php:142
768
  msgid "Custom SEO"
769
  msgstr ""
770
 
771
+ #: controllers/Overview.php:69
772
+ #, php-format
773
+ msgid ""
774
+ "%s, why don't you start a two weeks journey for better rankings? %sStart "
775
+ "driving your most valuable pages to Better Rankings today with your current "
776
+ "plan.%s"
 
 
 
 
 
 
 
 
 
 
777
  msgstr ""
778
 
779
+ #: controllers/Overview.php:92
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
780
  #, php-format
781
  msgid ""
782
  "Detected %s: We encourage you to %sImport the Settings and SEO%s from %s and "
788
  msgstr ""
789
 
790
  # @ squirrly-seo
791
+ #: controllers/Post.php:333
792
  #, fuzzy
793
  #| msgid "Could not send the email..."
794
  msgid "Could not add the demo post."
795
  msgstr "Konnte E-Mail nicht senden ..."
796
 
797
+ #: controllers/Post.php:394 controllers/Post.php:419
798
  msgid "Can't get the post URL"
799
  msgstr ""
800
 
801
+ #: controllers/Post.php:424
802
  msgid "Invalid request"
803
  msgstr ""
804
 
805
  # @ squirrly-seo
806
+ #: controllers/PostsList.php:72 controllers/PostsList.php:123
807
  #, fuzzy
808
  #| msgid "Squirrly LIVE SEO assistant"
809
  msgid "SQ Snippet"
810
  msgstr "Squirrly LIVE SEO-Assistent"
811
 
812
+ #: controllers/PostsList.php:73 models/PostsList.php:21
813
  #, fuzzy
814
  #| msgid "Optimize for Keyword"
815
  msgid "Optimized"
816
  msgstr "Schlüsselwort optimieren"
817
 
818
+ #: controllers/PostsList.php:208
819
  msgid "Network Error. Please Refresh."
820
  msgstr ""
821
 
822
+ #: controllers/PostsList.php:212
823
  #, php-format
824
  msgid "Maintenance. %sWe'll be back in a minute."
825
  msgstr ""
826
 
827
+ #: controllers/PostsList.php:243
828
  msgid "Not Public"
829
  msgstr ""
830
 
831
  # @ squirrly-seo
832
+ #: controllers/PostsList.php:244
833
  #, fuzzy
834
  #| msgid "Could not send the email..."
835
  msgid "Could not process"
836
  msgstr "Konnte E-Mail nicht senden ..."
837
 
838
+ #: controllers/PostsList.php:245
839
  msgid "The Squirrly subscription has expired!"
840
  msgstr ""
841
 
842
  # @ squirrly-seo
843
+ #: controllers/Ranking.php:87
844
  #, fuzzy
845
  #| msgid "Could not send the email..."
846
  msgid "Could not load the Rankings."
847
  msgstr "Konnte E-Mail nicht senden ..."
848
 
849
  # @ squirrly-seo
850
+ #: controllers/Ranking.php:103
851
  #, fuzzy
852
  #| msgid "Could not send the email..."
853
  msgid "Could not load data."
854
  msgstr "Konnte E-Mail nicht senden ..."
855
 
856
+ #: controllers/Ranking.php:157
857
  #, php-format
858
  msgid "Could not refresh the rank. Please check your SERP credits %shere%s"
859
  msgstr ""
860
 
861
+ #: controllers/Ranking.php:159
862
  #, php-format
863
  msgid "%s is queued and the rank will be checked soon."
864
  msgstr ""
865
 
866
+ #: controllers/Ranking.php:170
867
  msgid "The keyword is deleted."
868
  msgstr ""
869
 
870
  # @ squirrly-seo
871
+ #: controllers/Ranking.php:172
872
  #, fuzzy
873
  #| msgid "Could not send the email..."
874
  msgid "Could not delete the keyword!"
875
  msgstr "Konnte E-Mail nicht senden ..."
876
 
877
  # @ squirrly-seo
878
+ #: controllers/Ranking.php:191 controllers/Research.php:246
879
+ #: controllers/Research.php:268 controllers/Research.php:350
880
+ #: controllers/Research.php:657 controllers/Research.php:742
881
  #, fuzzy
882
  #| msgid "Keyword:"
883
  msgid "Deleted!"
884
  msgstr "Schlüsselwort:"
885
 
886
+ #: controllers/Ranking.php:208
887
  msgid "Sent!"
888
  msgstr ""
889
 
890
+ #: controllers/Research.php:212
891
  msgid "Keyword Saved. The rank check will be ready in a minute."
892
  msgstr ""
893
 
894
  # @ squirrly-seo
895
+ #: controllers/Research.php:214 controllers/Research.php:218
896
  #, fuzzy
897
  #| msgid "Keyword:"
898
  msgid "Keyword Saved!"
899
  msgstr "Schlüsselwort:"
900
 
901
+ # @ squirrly-seo
902
+ #: controllers/Research.php:301
903
+ #, fuzzy
904
+ #| msgid "Keywords:"
905
  msgid "Invalid Label or Color!"
906
+ msgstr "Schlüsselwörter:"
907
 
908
  # @ squirrly-seo
909
+ #: controllers/Research.php:382 controllers/Research.php:692
910
+ #: controllers/Research.php:718
911
  #, fuzzy
912
  #| msgid "Keywords:"
913
  msgid "Invalid Keyword!"
914
  msgstr "Schlüsselwörter:"
915
 
916
+ #: controllers/Research.php:441 controllers/Research.php:455
917
+ #: controllers/Research.php:477 controllers/Research.php:480
918
+ #: controllers/SeoSettings.php:454 controllers/SeoSettings.php:457
919
+ #: controllers/SeoSettings.php:502 controllers/SeoSettings.php:505
920
  msgid "Error! The backup is not valid."
921
  msgstr ""
922
 
923
+ #: controllers/Research.php:475 controllers/SeoSettings.php:452
924
  msgid "Great! The backup is restored."
925
  msgstr ""
926
 
927
+ #: controllers/Research.php:483 controllers/SeoSettings.php:460
928
+ #: controllers/SeoSettings.php:508
929
  msgid "Error! You have to enter a previously saved backup file."
930
  msgstr ""
931
 
932
  # @ squirrly-seo
933
+ #: controllers/Research.php:504
934
  #, fuzzy
935
  #| msgid ""
936
  #| "Could not send your informations to squirrly. Please register %smanually"
940
  "Konnte Ihre Informationen nicht zu Squirrly senden. Bitte registrieren "
941
  "%smanually%s."
942
 
943
+ #: controllers/Research.php:506
944
  msgid "The keyword is added to SERP Check."
945
  msgstr ""
946
 
947
+ #: controllers/Research.php:509
948
  msgid "Invalid parameters."
949
  msgstr ""
950
 
951
  # @ squirrly-seo
952
+ #: controllers/Research.php:601
953
  #, fuzzy
954
  #| msgid "Squirrly Keyword Research"
955
  msgid "Keyword Research limit exceeded"
956
  msgstr "Squirrly Erweiterte Suche!"
957
 
958
+ #: controllers/Research.php:716
959
  msgid "The keywords are added to SERP Check!"
960
  msgstr ""
961
 
962
  # @ squirrly-seo
963
+ #: controllers/SeoSettings.php:375
964
  #, fuzzy
965
  #| msgid "The code for Google Analytics is incorrect."
966
  msgid "Google Analytics account is disconnected."
967
  msgstr "Der Code für Google Analytics ist falsch."
968
 
969
  # @ squirrly-seo
970
+ #: controllers/SeoSettings.php:377 controllers/SeoSettings.php:390
971
  #, fuzzy
972
  #| msgid "Delete error: Could not delete the old favicon."
973
  msgid "Error! Could not disconnect the account."
974
  msgstr "Lösch Fehler: Konnte das alte Favicon nicht löschen."
975
 
976
  # @ squirrly-seo
977
+ #: controllers/SeoSettings.php:388
978
  #, fuzzy
979
  #| msgid "The code for Google Analytics is incorrect."
980
  msgid "Google Search Console account is disconnected."
981
  msgstr "Der Code für Google Analytics ist falsch."
982
 
983
+ #: controllers/SeoSettings.php:499
984
  msgid "Great! The SEO backup is restored."
985
  msgstr ""
986
 
987
+ #: controllers/SeoSettings.php:536 controllers/SeoSettings.php:584
988
  #, php-format
989
  msgid ""
990
  "Success! The import from %s was completed successfully and your SEO is safe!"
991
  msgstr ""
992
 
993
  # @ squirrly-seo
994
+ #: controllers/SeoSettings.php:538
995
  #, fuzzy
996
  #| msgid "An error occured while logging in!"
997
  msgid "Error! An error occured while import. Please try again."
998
  msgstr "Bei der Anmeldung ist ein Fehler aufgetreten!"
999
 
1000
+ #: controllers/SeoSettings.php:550
1001
  msgid "All the Plugin settings were imported successfuly!"
1002
  msgstr ""
1003
 
1004
+ #: controllers/SeoSettings.php:552
1005
  msgid "No settings found for this plugin/theme."
1006
  msgstr ""
1007
 
1008
+ #: controllers/SeoSettings.php:604 models/Rollback.php:98
1009
  msgid "Rollback to Previous Version"
1010
  msgstr ""
1011
 
1012
+ #: controllers/SeoSettings.php:626
1013
+ msgid "Reinstall Current Version"
1014
+ msgstr ""
1015
+
1016
  # @ squirrly-seo
1017
+ #: controllers/SeoSettings.php:657
1018
  #, fuzzy
1019
  #| msgid "Could not send the email..."
1020
  msgid "Could not save the changes"
1021
  msgstr "Konnte E-Mail nicht senden ..."
1022
 
1023
+ #: controllers/SeoSettings.php:692
1024
  msgid ""
1025
  "Error! Could not get the code. Connect to Google Search Console and validate "
1026
  "the connection."
1027
  msgstr ""
1028
 
1029
+ #: controllers/SeoSettings.php:712
1030
  msgid ""
1031
  "Error! Could not get the tracking code. Connect to Google Analytics and get "
1032
  "the website tracking code from Admin area."
1033
  msgstr ""
1034
 
1035
  # @ squirrly-seo
1036
+ #: controllers/SeoSettings.php:774 controllers/SeoSettings.php:809
1037
  #, fuzzy
1038
  #| msgid "Could not send the email..."
1039
  msgid "Could not add the post type."
1088
  msgid "We could not create your account. Please enter a valid email."
1089
  msgstr ""
1090
 
1091
+ #: core/Blocklogin.php:81
1092
  #, php-format
1093
  msgid ""
1094
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
1096
  msgstr ""
1097
 
1098
  # @ squirrly-seo
1099
+ #: core/Blocklogin.php:85
1100
  #, fuzzy
1101
  #| msgid ""
1102
  #| "Could not send your informations to squirrly. Please register %smanually"
1107
  "%smanually%s."
1108
 
1109
  # @ squirrly-seo
1110
+ #: core/Blocklogin.php:107
1111
  msgid "Wrong email or password!"
1112
  msgstr "Benutzername oder Passwort falsch!"
1113
 
1114
  # @ squirrly-seo
1115
+ #: core/Blocklogin.php:110
1116
  #, fuzzy
1117
  #| msgid "You can use this account only for the URL you registered first!"
1118
  msgid "You can only use this account for the URL you registered first!"
1120
  "Dieses Konto können Sie nur für die URL benutzen, die Sie zuerst registriert "
1121
  "haben!"
1122
 
1123
+ #: core/Blocklogin.php:113
1124
+ msgid "You disconnected your website from"
1125
+ msgstr ""
1126
+
1127
  # @ squirrly-seo
1128
+ #: core/Blocklogin.php:116
1129
  #, fuzzy
1130
  #| msgid "An error occured."
1131
  msgid "An error occured."
1132
  msgstr "Ein Fehler ist aufgetreten."
1133
 
1134
+ #: core/Blocklogin.php:139
1135
  #, php-format
1136
  msgid ""
1137
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
1139
  msgstr ""
1140
 
1141
  # @ squirrly-seo
1142
+ #: core/Blocklogin.php:144
1143
  msgid "Both fields are required."
1144
  msgstr "Beide Felder sind Pflichtfelder."
1145
 
1146
  # @ squirrly-seo
1147
+ #: models/Assistant.php:49
1148
  #, fuzzy
1149
  #| msgid "Your E-mail:"
1150
  msgid "Task Details"
1151
  msgstr "Ihre E-Mail Adresse:"
1152
 
1153
+ # @ squirrly-seo
1154
+ #: models/Assistant.php:56
1155
+ #, fuzzy
1156
+ #| msgid "Keywords:"
1157
  msgid "active task"
1158
+ msgstr "Schlüsselwörter:"
1159
 
1160
  # @ squirrly-seo
1161
+ #: models/Assistant.php:79 view/Blocks/Jorney.php:70
1162
  #, fuzzy
1163
  #| msgid "Squirrly Keyword Research"
1164
  msgid "Do Keyword Research"
1165
  msgstr "Squirrly Erweiterte Suche!"
1166
 
1167
+ #: models/Assistant.php:80
1168
  #, php-format
1169
  msgid ""
1170
  "Use Research - Find Keywords to perform your very first keyword research for "
1173
  msgstr ""
1174
 
1175
  # @ squirrly-seo
1176
+ #: models/Assistant.php:84
1177
  #, fuzzy
1178
  #| msgid "+ Add keyword"
1179
  msgid "Add Keywords in Briefcase"
1180
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
1181
 
1182
+ #: models/Assistant.php:85
1183
  #, php-format
1184
  msgid ""
1185
  "Use the Briefcase feature to organize and manage your portfolio of keywords. "
1192
  "the future and which are on-point with your strategy."
1193
  msgstr ""
1194
 
1195
+ #: models/Assistant.php:89
1196
  #, fuzzy
1197
  #| msgid "Optimize for Keyword"
1198
  msgid "Create Labels for Keywords"
1199
  msgstr "Schlüsselwort optimieren"
1200
 
1201
+ #: models/Assistant.php:90
1202
  #, php-format
1203
  msgid ""
1204
  "Organize your keywords by using Labels for the keywords you've stored in "
1211
  msgstr ""
1212
 
1213
  # @ squirrly-seo
1214
+ #: models/Assistant.php:94
1215
  #, fuzzy
1216
  #| msgid "+ Add keyword"
1217
  msgid "Add Keywords to Labels"
1218
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
1219
 
1220
+ #: models/Assistant.php:95
1221
  #, php-format
1222
  msgid ""
1223
  "Now that you've created your first label, you should label one of your "
1227
  "Then, assign a label to your keyword in order to complete this task."
1228
  msgstr ""
1229
 
1230
+ # @ squirrly-seo
1231
+ #: models/Assistant.php:99
1232
+ #, fuzzy
1233
+ #| msgid "+ Add keyword"
1234
+ msgid "Send Keywords to Rank Checker"
1235
+ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
1236
 
1237
+ #: models/Assistant.php:100
1238
  #, php-format
1239
  msgid ""
1240
  "Now that you (hopefully) have keywords added to your Briefcase, go look at "
1246
  "SEO strategy."
1247
  msgstr ""
1248
 
1249
+ # @ squirrly-seo
1250
+ #: models/Assistant.php:106
1251
+ #, fuzzy
1252
+ #| msgid "Save settings"
1253
  msgid "Optimize Using Live Assistant"
1254
+ msgstr "Einstellungen speichern"
1255
 
1256
+ #: models/Assistant.php:107
1257
  #, php-format
1258
  msgid ""
1259
  "Optimize your first Page or Article using the SEO Live Assistant (SLA) "
1268
  msgstr ""
1269
 
1270
  # @ squirrly-seo
1271
+ #: models/Assistant.php:113
1272
  #, fuzzy
1273
  #| msgid "Description:"
1274
+ msgid "Activate SEO Automation"
1275
  msgstr "Beschreibung:"
1276
 
1277
+ #: models/Assistant.php:114
1278
  #, php-format
1279
  msgid ""
1280
+ "The %sSEO Automation Features%s of Squirrly SEO are extremely powerful. %s "
1281
+ "They help Non-SEO experts avoid many mistakes they would normally make. %s "
1282
+ "They help experts control any WordPress site at a level that has never been "
1283
  "possible before. (just make sure you click to see the Advanced settings). %s "
1284
  "You'll be able to configure automations according to any post type. %s Turn "
1285
  "the toggle to ON for: %sActivate Patterns%s to complete this task."
1286
  msgstr ""
1287
 
1288
  # @ squirrly-seo
1289
+ #: models/Assistant.php:118
1290
  #, fuzzy
1291
  #| msgid "Keywords:"
1292
  msgid "Activate METAs"
1293
  msgstr "Schlüsselwörter:"
1294
 
1295
+ #: models/Assistant.php:119
1296
  #, php-format
1297
  msgid ""
1298
  "Activate the %sMETA settings%s from the Squirrly SEO Plugin. %s You can "
1304
  "off."
1305
  msgstr ""
1306
 
1307
+ # @ squirrly-seo
1308
+ #: models/Assistant.php:123 view/Blocks/Snippet.php:373
1309
+ #: view/SeoSettings/Jsonld.php:36
1310
+ #, fuzzy
1311
+ #| msgid "Description:"
1312
  msgid "Activate JSON-LD"
1313
+ msgstr "Beschreibung:"
1314
 
1315
+ #: models/Assistant.php:124
1316
  #, php-format
1317
  msgid ""
1318
  "%sJSON-LD Structured Data%s needs to be activated. %s The Duplicate Removal "
1327
  msgstr ""
1328
 
1329
  # @ squirrly-seo
1330
+ #: models/Assistant.php:128 view/Blocks/Snippet.php:555
1331
+ #: view/SeoSettings/Automation.php:386 view/SeoSettings/Social.php:48
1332
  #, fuzzy
1333
  #| msgid "Description:"
1334
  msgid "Activate Open Graph"
1335
  msgstr "Beschreibung:"
1336
 
1337
+ #: models/Assistant.php:129
1338
  #, php-format
1339
  msgid ""
1340
  "Go to the %sSocial Media section%s.%sActivate Open Graph. (switch the toggle "
1345
  msgstr ""
1346
 
1347
  # @ squirrly-seo
1348
+ #: models/Assistant.php:133 view/Blocks/Snippet.php:821
1349
+ #: view/SeoSettings/Automation.php:437 view/SeoSettings/Social.php:271
1350
  #, fuzzy
1351
  #| msgid "Twitter"
1352
  msgid "Activate Twitter Card"
1353
  msgstr "Twitter"
1354
 
1355
+ #: models/Assistant.php:134
1356
  #, php-format
1357
  msgid ""
1358
  "Go to the %sSocial Media section%s. %s - Activate Twitter Card. (switch the "
1362
  "you clicks to your site."
1363
  msgstr ""
1364
 
1365
+ # @ squirrly-seo
1366
+ #: models/Assistant.php:138
1367
+ #, fuzzy
1368
+ #| msgid "Description:"
1369
  msgid "Activate Sitemap XML"
1370
+ msgstr "Beschreibung:"
1371
 
1372
+ #: models/Assistant.php:139
1373
  #, php-format
1374
  msgid ""
1375
  "Activate your %sSitemap XML%s setting. Squirrly SEO will then generate your "
1383
  msgstr ""
1384
 
1385
  # @ squirrly-seo
1386
+ #: models/Assistant.php:143
1387
  #, fuzzy
1388
  #| msgid "Google %sAnalytics ID%s`:"
1389
  msgid "Activate Google Analytics"
1390
  msgstr "Google %sAnalytics ID%s`:"
1391
 
1392
+ #: models/Assistant.php:144
1393
  #, php-format
1394
  msgid ""
1395
  "Go to the %sTracking Tools section%s. %s Add your Google Analytics ID to "
1401
  msgstr ""
1402
 
1403
  # @ squirrly-seo
1404
+ #: models/Assistant.php:153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1405
  #, fuzzy
1406
  #| msgid "Change the Website Icon"
1407
  msgid "Connect the Webmasters"
1408
  msgstr "Ändern Sie das Website-Symbol"
1409
 
1410
+ #: models/Assistant.php:154
1411
  #, php-format
1412
  msgid ""
1413
  "Go to the %sConnection section%s. %s This section makes it super easy to "
1419
  msgstr ""
1420
 
1421
  # @ squirrly-seo
1422
+ #: models/Assistant.php:162 models/focuspages/Accuracy.php:45
1423
+ #: models/focuspages/Length.php:68 models/focuspages/Traffic.php:106
1424
  #, fuzzy
1425
  #| msgid "Google %sAnalytics ID%s`:"
1426
  msgid "Connect Google Analytics"
1427
  msgstr "Google %sAnalytics ID%s`:"
1428
 
1429
+ #: models/Assistant.php:163
1430
  #, php-format
1431
  msgid ""
1432
  "Integrate %sGoogle Analytics%s with Squirrly SEO from %sAudits > Settings%s."
1438
  msgstr ""
1439
 
1440
  # @ squirrly-seo
1441
+ #: models/Assistant.php:167 models/Assistant.php:189
1442
  #, fuzzy
1443
  #| msgid "Google %sAnalytics ID%s`:"
1444
  msgid "Connect Google Search Console"
1445
  msgstr "Google %sAnalytics ID%s`:"
1446
 
1447
+ #: models/Assistant.php:168
1448
  #, php-format
1449
  msgid ""
1450
  "Integrate your WordPress with %sGoogle Search Console%s with Squirrly SEO "
1456
  msgstr ""
1457
 
1458
  # @ squirrly-seo
1459
+ #: models/Assistant.php:172
1460
  #, fuzzy
1461
  #| msgid "Your E-mail:"
1462
  msgid "Set the Audit Email"
1463
  msgstr "Ihre E-Mail Adresse:"
1464
 
1465
+ #: models/Assistant.php:173
1466
  #, php-format
1467
  msgid ""
1468
  "You can customize the email to which we send the Audit reports.%sIt can be "
1472
  "order to increase the score."
1473
  msgstr ""
1474
 
1475
+ #: models/Assistant.php:177
1476
  msgid "Get your score over 60"
1477
  msgstr ""
1478
 
1479
+ #: models/Assistant.php:178
1480
  #, php-format
1481
  msgid ""
1482
  "True website marketing performance happens after your Audit score gets to "
1489
  "this."
1490
  msgstr ""
1491
 
1492
+ #: models/Assistant.php:184
1493
  msgid "Track your first 3 Keywords"
1494
  msgstr ""
1495
 
1496
+ #: models/Assistant.php:185
1497
  #, php-format
1498
  msgid ""
1499
  "%sSERP Checker = Search Engine Result Pages Checker.%s %s It checks your "
1508
  "> select Send to Rank Checker%s"
1509
  msgstr ""
1510
 
1511
+ #: models/Assistant.php:190
1512
  #, php-format
1513
  msgid ""
1514
  "Connect Google Search Console. %s You can do that from %sSEO Audit > Settings"
1523
  "the accurate, on-time and objective information about your rankings."
1524
  msgstr ""
1525
 
1526
+ #: models/Assistant.php:194
1527
  msgid "Get 1 Keyword to the first page of Google"
1528
  msgstr ""
1529
 
1530
+ #: models/Assistant.php:195
1531
  #, php-format
1532
  msgid ""
1533
  "Start with a small task. %sGet 1 keyword to the first page of Google%s. %s "
1538
  "on those tasks and turning elements to green you'll complete this task."
1539
  msgstr ""
1540
 
1541
+ #: models/Assistant.php:252 models/abstract/Assistant.php:228
1542
  msgid "You chose to ignore this task. Click to activate it."
1543
  msgstr ""
1544
 
1545
+ #: models/Audits.php:16
1546
  #, fuzzy
1547
  #| msgid "Optimize for Keyword"
1548
  msgid "Average Content Optimization"
1549
  msgstr "Schlüsselwort optimieren"
1550
 
1551
+ #: models/Audits.php:17 models/Audits.php:96 models/Audits.php:106
1552
+ #: models/Audits.php:116 models/Audits.php:126 models/Audits.php:718
1553
  msgid "Great!"
1554
  msgstr ""
1555
 
1556
+ #: models/Audits.php:18
1557
  msgid "hmm..."
1558
  msgstr ""
1559
 
1560
+ #: models/Audits.php:19
1561
  #, php-format
1562
  msgid ""
1563
  "How can we fix the SEO optimization of a page on our website? %s Find an "
1574
  "stuffing.%s"
1575
  msgstr ""
1576
 
1577
+ #: models/Audits.php:20
1578
  msgid ""
1579
  "Optimization is NOT about stuffing in keywords. It's about writing the page "
1580
  "in such a way that Search Engine bots and Humans alike will easily "
1582
  "Use the Live Assistant from Squirrly SEO to get the job done with ease."
1583
  msgstr ""
1584
 
1585
+ #: models/Audits.php:21
1586
  msgid ""
1587
  "Use tools like Squirrly Keyword Research and Squirrly Live Assistant to "
1588
  "optimize your content"
1589
  msgstr ""
1590
 
1591
+ #: models/Audits.php:26
1592
  msgid "DcPublisher Meta"
1593
  msgstr ""
1594
 
1595
  # @ squirrly-seo
1596
+ #: models/Audits.php:27 models/Audits.php:57 models/Audits.php:67
1597
+ #: models/Audits.php:77 models/Audits.php:136 models/Audits.php:146
1598
+ #: models/Audits.php:156 models/Audits.php:166 models/Audits.php:176
1599
+ #: models/Audits.php:186 models/Audits.php:196 models/Audits.php:206
1600
+ #: models/Audits.php:216 models/Audits.php:226 models/Audits.php:295
1601
+ #: models/Audits.php:305 models/Audits.php:315 models/Audits.php:325
1602
+ #: models/Audits.php:420 view/SeoSettings/Jsonld.php:264
1603
  msgid "Yes"
1604
  msgstr "Ja"
1605
 
1606
  # @ squirrly-seo
1607
+ #: models/Audits.php:28 models/Audits.php:58 models/Audits.php:68
1608
+ #: models/Audits.php:78 models/Audits.php:137 models/Audits.php:147
1609
+ #: models/Audits.php:167 models/Audits.php:177 models/Audits.php:187
1610
+ #: models/Audits.php:197 models/Audits.php:207 models/Audits.php:217
1611
+ #: models/Audits.php:227 models/Audits.php:296 models/Audits.php:306
1612
+ #: models/Audits.php:316 models/Audits.php:326 models/Audits.php:367
1613
+ #: models/Audits.php:411 models/Audits.php:421 view/SeoSettings/Jsonld.php:263
1614
  #, fuzzy
1615
  #| msgid "No"
1616
  msgid "No"
1617
  msgstr "Nein"
1618
 
1619
+ # @ squirrly-seo
1620
+ #: models/Audits.php:28
1621
+ #, fuzzy
1622
+ #| msgid "Description:"
1623
  msgid "The pages without DcPublisher meta"
1624
+ msgstr "Beschreibung:"
1625
 
1626
+ #: models/Audits.php:29
1627
  msgid ""
1628
  "Dublin Core is a set of standard metadata elements used to describe the "
1629
  "contents of a website. It can help with some internal search engines and it "
1631
  msgstr ""
1632
 
1633
  # @ squirrly-seo
1634
+ #: models/Audits.php:30
1635
  #, fuzzy
1636
  #| msgid "adds the correct <strong>title</strong> in the home page"
1637
  msgid "Add the meta DcPublisher tag in the page's header"
1638
  msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
1639
 
1640
+ #: models/Audits.php:37
1641
  msgid "Top Ten Pages This Week"
1642
  msgstr ""
1643
 
1644
+ #: models/Audits.php:40
1645
  #, php-format
1646
  msgid ""
1647
  "If there is enough data in Google Analytics, you should see the list of "
1650
  "Bing will push down a page which doesn't attract visitors."
1651
  msgstr ""
1652
 
1653
+ # @ squirrly-seo
1654
+ #: models/Audits.php:44 view/FocusPages/FocusPageStats.php:197
1655
+ #, fuzzy
1656
+ #| msgid "Description:"
1657
  msgid "Page Traffic"
1658
+ msgstr "Beschreibung:"
1659
 
1660
+ #: models/Audits.php:45
1661
  msgid " total visits / mo."
1662
  msgstr ""
1663
 
1664
+ # @ squirrly-seo
1665
+ #: models/Audits.php:46
1666
+ #, fuzzy
1667
+ #| msgid "Description:"
1668
  msgid "The pages with low traffic"
1669
+ msgstr "Beschreibung:"
1670
 
1671
+ #: models/Audits.php:47
1672
  #, php-format
1673
  msgid ""
1674
  "How can we fix the Overall Traffic of the website? %s Make sure you have "
1687
  "the Keyword Research tool included in Squirrly SEO, to spot keywords that "
1688
  "are easy to rank for: [link]https://plugin.squirrly.co/best-keyword-research-"
1689
  "tool-for-seo/[link] %sRank for more keywords with low competition. This will "
1690
+ "start building up traffic for your site. %sTo Easily rank new pages, use the "
1691
+ "SEO Goals: [link]https://plugin.squirrly.co/best-seo-goals/[/link] %sStudy "
1692
+ "website rankings to learn how to bring more traffic, by using our Special "
1693
+ "Cloud Services for Rank Checking, available only on: Business Plans "
1694
  "[link]https://plugin.squirrly.co/squirrly-seo-pricing/[/link]"
1695
  msgstr ""
1696
 
1697
+ #: models/Audits.php:48
1698
  msgid ""
1699
  "Get each person who arrives on your site once to leave something that you "
1700
  "can use later on to bring them to your site again. You can use Facebook "
1705
  "multiple such channels."
1706
  msgstr ""
1707
 
1708
+ #: models/Audits.php:49
1709
  msgid "Try to gain organic traffic to your site's pages"
1710
  msgstr ""
1711
 
1712
  # @ squirrly-seo
1713
+ #: models/Audits.php:56
1714
  #, fuzzy
1715
  #| msgid "Tool for Search Engines"
1716
  msgid "Visible for search engines?"
1717
  msgstr "Tool für Suchmaschinen"
1718
 
1719
  # @ squirrly-seo
1720
+ #: models/Audits.php:58
1721
  #, fuzzy
1722
  #| msgid "Description:"
1723
  msgid "The pages with noindex"
1724
  msgstr "Beschreibung:"
1725
 
1726
+ #: models/Audits.php:59
1727
+ #, php-format
1728
  msgid ""
1729
  "How can we fix the noindex for our pages? %s You're currently telling Google "
1730
  "not to index some of your pages through a robots tag inside your code. %s On "
1731
  "WordPress, it's super easy to control on which pages to place no-index and "
1732
  "which pages should never get tagged with no-index if you use the Squirrly "
1733
+ "SEO Plugin. %s If you decided you 100%% want these pages to be No-Index (you "
1734
  "don’t want Google to index them) - then remove these pages from the SEO "
1735
  "Audit. Use the SEO Audit for the pages you want to be seen on search engines."
1736
  "%s"
1737
  msgstr ""
1738
 
1739
+ #: models/Audits.php:60
1740
  msgid ""
1741
  "Some pages are better off if they have an associated no-index tag. Every "
1742
  "website has a couple of pages that would be completely pointless to appear "
1745
  msgstr ""
1746
 
1747
  # @ squirrly-seo
1748
+ #: models/Audits.php:61 models/Audits.php:71
1749
  #, fuzzy
1750
  #| msgid "adds the correct <strong>title</strong> in the home page"
1751
  msgid "Add the correct meta robots tag in the pages"
1752
  msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
1753
 
1754
  # @ squirrly-seo
1755
+ #: models/Audits.php:66
1756
  #, fuzzy
1757
  #| msgid "Tool for Search Engines"
1758
  msgid "Followed by search engines?"
1759
  msgstr "Tool für Suchmaschinen"
1760
 
1761
+ # @ squirrly-seo
1762
+ #: models/Audits.php:68
1763
+ #, fuzzy
1764
+ #| msgid "Description:"
1765
  msgid "The pages with nofollow"
1766
+ msgstr "Beschreibung:"
1767
 
1768
+ #: models/Audits.php:69
1769
  #, php-format
1770
  msgid ""
1771
  "How can we fix the nofollow for our pages? %s You're currently telling "
1777
  "%s"
1778
  msgstr ""
1779
 
1780
+ #: models/Audits.php:70
1781
  msgid ""
1782
  "Some pages are better off if they have an associated nofollow tag. Every "
1783
  "website has a couple of pages that would be completely pointless to be "
1784
  "followed by search results like: Contact Us, Terms and Policy."
1785
  msgstr ""
1786
 
1787
+ #: models/Audits.php:76
1788
  msgid "Is your site Safe Browsing?"
1789
  msgstr ""
1790
 
1791
+ #: models/Audits.php:79
1792
  #, php-format
1793
  msgid ""
1794
  "How can we get our website to be Safe Browsing compliant? %s Make sure you "
1799
  "link]%s"
1800
  msgstr ""
1801
 
1802
+ #: models/Audits.php:80
1803
  msgid ""
1804
  "This is a TOP priority if you're having a Safe Browsing problem at the "
1805
  "moment. Browsers will NOT allow web visitors to actually access your pages. "
1806
  "It will also cause you other problems like lower search rankings."
1807
  msgstr ""
1808
 
1809
+ #: models/Audits.php:85
1810
  msgid "Page load time"
1811
  msgstr ""
1812
 
1813
+ #: models/Audits.php:86
1814
  msgid "s average is a good time"
1815
  msgstr ""
1816
 
1817
+ #: models/Audits.php:87
1818
  msgid "s average is slow"
1819
  msgstr ""
1820
 
1821
+ #: models/Audits.php:87
1822
  msgid "The slow pages are"
1823
  msgstr ""
1824
 
1825
+ #: models/Audits.php:88
1826
  #, php-format
1827
  msgid ""
1828
  "How can we fix the loading speed of the website? %s Use smaller images, or "
1829
  "compress them with tools like ShortPixel.com %s Minify Javascripts, use "
1830
  "CDNs, use gZip. %s Use a professional service if your site is based on "
1831
  "WordPress. Our parent company, Squirrly Limited, offers such a service for "
1832
+ "WordPress.org based websites [link]https://www.squirrly.co/agency/[/link] %s "
1833
+ "After you optimize the page, test the loading Speed Index with Google Speed "
1834
+ "Test here [link]https://developers.google.com/speed/pagespeed/insights/[/"
1835
+ "link] %s"
1836
  msgstr ""
1837
 
1838
+ #: models/Audits.php:89
1839
  msgid ""
1840
  "Increasing loading speed will bring you more engagement, lower bounce rates "
1841
  "AND more search engine results."
1842
  msgstr ""
1843
 
1844
+ #: models/Audits.php:90
1845
  #, fuzzy
1846
  #| msgid "Optimize for Keyword"
1847
  msgid "Optimize your site's speed"
1848
  msgstr "Schlüsselwort optimieren"
1849
 
1850
  # @ squirrly-seo
1851
+ #: models/Audits.php:95
1852
  #, fuzzy
1853
  #| msgid "Description:"
1854
  msgid "Duplicate Titles"
1855
  msgstr "Beschreibung:"
1856
 
1857
  # @ squirrly-seo
1858
+ #: models/Audits.php:96
1859
  #, fuzzy
1860
  #| msgid "Description:"
1861
  msgid "No duplicate titles."
1862
  msgstr "Beschreibung:"
1863
 
1864
+ # @ squirrly-seo
1865
+ #: models/Audits.php:96
1866
+ #, fuzzy
1867
+ #| msgid "Description:"
1868
  msgid "The pages on your site have unique title tags."
1869
+ msgstr "Beschreibung:"
1870
 
1871
+ # @ squirrly-seo
1872
+ #: models/Audits.php:97 models/Audits.php:107
1873
+ #, fuzzy
1874
+ #| msgid "Description:"
1875
  msgid "We found duplicates."
1876
+ msgstr "Beschreibung:"
1877
 
1878
  # @ squirrly-seo
1879
+ #: models/Audits.php:97
1880
  #, fuzzy
1881
  #| msgid "Description:"
1882
  msgid "The Pages with Duplicate Titles are"
1883
  msgstr "Beschreibung:"
1884
 
1885
+ #: models/Audits.php:98
1886
  #, php-format
1887
  msgid ""
1888
  "How can we fix the Duplicate Titles on our pages? %s Features like SEO "
1904
  "unique. This feature is available in the Free version of Squirry.%s"
1905
  msgstr ""
1906
 
1907
+ #: models/Audits.php:99
1908
  msgid ""
1909
  "On WordPress you can use Squirrly SEO to control everything about your page "
1910
  "Titles and make them stand out on search engines."
1911
  msgstr ""
1912
 
1913
+ #: models/Audits.php:100
1914
  msgid ""
1915
  "Add different titles to each page. You can do it manually or use SEO tools "
1916
  "(like Squirrly) for that."
1917
  msgstr ""
1918
 
1919
  # @ squirrly-seo
1920
+ #: models/Audits.php:105
1921
  #, fuzzy
1922
  #| msgid "Description:"
1923
  msgid "Duplicate Descriptions"
1924
  msgstr "Beschreibung:"
1925
 
1926
  # @ squirrly-seo
1927
+ #: models/Audits.php:106
1928
  #, fuzzy
1929
  #| msgid "Description:"
1930
  msgid "No duplicate descriptions."
1931
  msgstr "Beschreibung:"
1932
 
1933
  # @ squirrly-seo
1934
+ #: models/Audits.php:106
1935
  #, fuzzy
1936
  #| msgid "Description:"
1937
  msgid "The pages on your site have unique meta descriptions."
1938
  msgstr "Beschreibung:"
1939
 
1940
+ # @ squirrly-seo
1941
+ #: models/Audits.php:107
1942
+ #, fuzzy
1943
+ #| msgid "Description:"
1944
  msgid "The Pages on which we found duplicates are"
1945
+ msgstr "Beschreibung:"
1946
 
1947
+ #: models/Audits.php:108
1948
  #, php-format
1949
  msgid ""
1950
  "How can we fix the Duplicate Descriptions on our website? %s Use the SEO "
1958
  "This feature is available on all plans. %s"
1959
  msgstr ""
1960
 
1961
+ #: models/Audits.php:109
1962
  msgid ""
1963
  "Use Squirrly SEO’s BULK SEO section to control everything about your META "
1964
  "descriptions and make them stand out on search engines."
1965
  msgstr ""
1966
 
1967
+ #: models/Audits.php:110
1968
  msgid ""
1969
  "Add different description to each page. You can do it manually or use SEO "
1970
  "tools (like Squirrly) for that."
1971
  msgstr ""
1972
 
1973
  # @ squirrly-seo
1974
+ #: models/Audits.php:115
1975
  #, fuzzy
1976
  #| msgid "Description:"
1977
  msgid "Empty Titles"
1978
  msgstr "Beschreibung:"
1979
 
1980
  # @ squirrly-seo
1981
+ #: models/Audits.php:116
1982
  #, fuzzy
1983
  #| msgid "Description:"
1984
  msgid "All pages have titles."
1985
  msgstr "Beschreibung:"
1986
 
1987
+ # @ squirrly-seo
1988
+ #: models/Audits.php:116
1989
+ #, fuzzy
1990
+ #| msgid "Description:"
1991
  msgid "all the pages on your site have the title tag defined :-)"
1992
+ msgstr "Beschreibung:"
1993
 
1994
+ # @ squirrly-seo
1995
+ #: models/Audits.php:117
1996
+ #, fuzzy
1997
+ #| msgid "Description:"
1998
  msgid "There are some pages without title."
1999
+ msgstr "Beschreibung:"
2000
 
2001
  # @ squirrly-seo
2002
+ #: models/Audits.php:117
2003
  #, fuzzy
2004
  #| msgid "Description:"
2005
  msgid "The pages with empty Title tags are"
2006
  msgstr "Beschreibung:"
2007
 
2008
+ #: models/Audits.php:118
2009
  #, php-format
2010
  msgid ""
2011
  "How can we fix the Empty Titles on our pages? %s Use Squirrly’s SEO "
2017
  "each page on your site is unique. This feature is available on all plans.%s"
2018
  msgstr ""
2019
 
2020
+ #: models/Audits.php:119
2021
  msgid ""
2022
  "Use Squirrly SEO to create and control everything about your META titles and "
2023
  "make them stand out on search engines."
2024
  msgstr ""
2025
 
2026
+ #: models/Audits.php:120
2027
  msgid "Add a Title tag to each page in your site."
2028
  msgstr ""
2029
 
2030
  # @ squirrly-seo
2031
+ #: models/Audits.php:125
2032
  #, fuzzy
2033
  #| msgid "Description:"
2034
  msgid "Empty Descriptions"
2035
  msgstr "Beschreibung:"
2036
 
2037
  # @ squirrly-seo
2038
+ #: models/Audits.php:126
2039
  #, fuzzy
2040
  #| msgid "Description:"
2041
  msgid "All articles have description."
2042
  msgstr "Beschreibung:"
2043
 
2044
  # @ squirrly-seo
2045
+ #: models/Audits.php:126
2046
  #, fuzzy
2047
  #| msgid "Description:"
2048
  msgid "all the pages on your site have meta description"
2049
  msgstr "Beschreibung:"
2050
 
2051
  # @ squirrly-seo
2052
+ #: models/Audits.php:127
2053
  #, fuzzy
2054
  #| msgid "Description:"
2055
  msgid "There are some pages without description."
2056
  msgstr "Beschreibung:"
2057
 
2058
  # @ squirrly-seo
2059
+ #: models/Audits.php:127
2060
  #, fuzzy
2061
  #| msgid "Description:"
2062
  msgid "The pages with empty description are"
2063
  msgstr "Beschreibung:"
2064
 
2065
+ #: models/Audits.php:128
2066
  #, php-format
2067
  msgid ""
2068
  "How can we fix the Empty Descriptions on our website? %s Use Squirrly’s SEO "
2078
  "on all plans.%s"
2079
  msgstr ""
2080
 
2081
+ #: models/Audits.php:129
2082
  msgid ""
2083
  "Use Squirrly SEO to create and control everything about your META "
2084
  "descriptions and make them stand out on search engines."
2085
  msgstr ""
2086
 
2087
+ #: models/Audits.php:130
2088
  msgid "Add meta description to each page in your site."
2089
  msgstr ""
2090
 
2091
  # @ squirrly-seo
2092
+ #: models/Audits.php:135
2093
  #, fuzzy
2094
  #| msgid "Description:"
2095
  msgid "Do you have a title tag?"
2096
  msgstr "Beschreibung:"
2097
 
2098
  # @ squirrly-seo
2099
+ #: models/Audits.php:137
2100
  #, fuzzy
2101
  #| msgid "Description:"
2102
  msgid "The pages without title tag are"
2103
  msgstr "Beschreibung:"
2104
 
2105
+ #: models/Audits.php:138
2106
  #, php-format
2107
  msgid ""
2108
  "How can we fix the title tags of our pages %s On WordPress, using Squirrly "
2111
  "write ZERO code. No coding required when you use Squirrly SEO.%s"
2112
  msgstr ""
2113
 
2114
+ #: models/Audits.php:139
2115
  msgid "Platforms like Shopify handle this aspect with their default engine."
2116
  msgstr ""
2117
 
2118
+ #: models/Audits.php:140
2119
  msgid "Add a Title tag to this page of your site"
2120
  msgstr ""
2121
 
2122
  # @ squirrly-seo
2123
+ #: models/Audits.php:145
2124
  #, fuzzy
2125
  #| msgid "Description:"
2126
  msgid "Do you have a meta description?"
2127
  msgstr "Beschreibung:"
2128
 
2129
  # @ squirrly-seo
2130
+ #: models/Audits.php:147
2131
  #, fuzzy
2132
  #| msgid "Description:"
2133
  msgid "The pages without description meta are"
2134
  msgstr "Beschreibung:"
2135
 
2136
+ #: models/Audits.php:148
2137
  #, php-format
2138
  msgid ""
2139
  "How can we fix the META Descriptions of our pages %s First of all, make sure "
2148
  "can even customize the way it automates your descriptions.%s"
2149
  msgstr ""
2150
 
2151
+ #: models/Audits.php:149
2152
  msgid "Platforms like Shopify handle this with their default engines."
2153
  msgstr ""
2154
 
2155
+ #: models/Audits.php:150
2156
  msgid "Add meta description to this page of your site"
2157
  msgstr ""
2158
 
2159
  # @ squirrly-seo
2160
+ #: models/Audits.php:155 models/bulkseo/Metas.php:94
2161
  #, fuzzy
2162
  #| msgid "Keyword:"
2163
  msgid "Meta Keyword"
2164
  msgstr "Schlüsselwort:"
2165
 
2166
  # @ squirrly-seo
2167
+ #: models/Audits.php:156
2168
  #, fuzzy
2169
  #| msgid "Keywords:"
2170
  msgid "Your keywords are"
2171
  msgstr "Schlüsselwörter:"
2172
 
2173
  # @ squirrly-seo
2174
+ #: models/Audits.php:157
2175
  #, fuzzy
2176
  #| msgid "Keywords:"
2177
  msgid "No keywords."
2178
  msgstr "Schlüsselwörter:"
2179
 
2180
+ #: models/Audits.php:158
2181
  msgid ""
2182
  "It is important for search engines to know which keywords you are trying to "
2183
  "rank for with your website. This also helps bring targeted visitors to your "
2184
  "site."
2185
  msgstr ""
2186
 
2187
+ #: models/Audits.php:159
2188
  msgid "Make sure that the search for your keywords is on a rising trend"
2189
  msgstr ""
2190
 
2191
+ # @ squirrly-seo
2192
+ #: models/Audits.php:165 models/bulkseo/Metas.php:99
2193
+ #, fuzzy
2194
+ #| msgid "adds <strong>canonical</strong> link in home page"
2195
  msgid "Canonical Link"
2196
+ msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
2197
 
2198
  # @ squirrly-seo
2199
+ #: models/Audits.php:167
2200
  #, fuzzy
2201
  #| msgid "Description:"
2202
  msgid "The pages without canonical meta"
2203
  msgstr "Beschreibung:"
2204
 
2205
+ #: models/Audits.php:168
2206
  #, php-format
2207
  msgid ""
2208
  "How can we fix the Canonical Links problems of our pages? %s Add this code "
2219
  "options for your pages. %s"
2220
  msgstr ""
2221
 
2222
+ #: models/Audits.php:169
2223
  msgid ""
2224
  "Platforms like Shopify handle this with their default engine. On WordPress "
2225
  "you can use Squirrly SEO to control canonical links and make sure you avoid "
2227
  msgstr ""
2228
 
2229
  # @ squirrly-seo
2230
+ #: models/Audits.php:170
2231
  #, fuzzy
2232
  #| msgid "adds <strong>canonical</strong> link in home page"
2233
  msgid "Add canonical meta link in the page header"
2234
  msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
2235
 
2236
+ # @ squirrly-seo
2237
+ #: models/Audits.php:175
2238
+ #, fuzzy
2239
+ #| msgid "Description:"
2240
  msgid "Meta Json-LD?"
2241
+ msgstr "Beschreibung:"
2242
 
2243
  # @ squirrly-seo
2244
+ #: models/Audits.php:177
2245
  #, fuzzy
2246
  #| msgid "Description:"
2247
  msgid "The pages without Json-LD meta"
2248
  msgstr "Beschreibung:"
2249
 
2250
+ #: models/Audits.php:178
2251
  #, php-format
2252
  msgid ""
2253
  "How can we fix the meta Json_LD of the website? %s You need to make sure you "
2258
  "then associated with creating a more organized, better web overall.%s"
2259
  msgstr ""
2260
 
2261
+ #: models/Audits.php:179
2262
  msgid ""
2263
  "On WordPress you can use Squirrly SEO to add the Json-LD Structured data. "
2264
  "Squirrly will automatically structure the information from all your products "
2265
  "if you use Woocommerce plugin for eCommerce."
2266
  msgstr ""
2267
 
2268
+ #: models/Audits.php:180
2269
  msgid ""
2270
  "Make sure you activated Json-LD in Squirrly > SEO Settings > Json-LD Meta"
2271
  msgstr ""
2272
 
2273
+ # @ squirrly-seo
2274
+ #: models/Audits.php:185
2275
+ #, fuzzy
2276
+ #| msgid "Description:"
2277
  msgid "Page Encoding"
2278
+ msgstr "Beschreibung:"
2279
 
2280
  # @ squirrly-seo
2281
+ #: models/Audits.php:187
2282
  #, fuzzy
2283
  #| msgid "Description:"
2284
  msgid "The pages without encoding meta"
2285
  msgstr "Beschreibung:"
2286
 
2287
+ #: models/Audits.php:188
2288
  #, php-format
2289
  msgid ""
2290
  "How can we fix the character encoding specifications of the website? %s "
2295
  "content=“text/html;charset=utf-8” />%s"
2296
  msgstr ""
2297
 
2298
+ #: models/Audits.php:189
2299
  msgid ""
2300
  "Platforms like Shopify handle this with their default engine. On WordPress "
2301
  "you can use Squirrly SEO to get encoding specified for all your pages. "
2305
  msgstr ""
2306
 
2307
  # @ squirrly-seo
2308
+ #: models/Audits.php:190
2309
  #, fuzzy
2310
  #| msgid "adds <strong>canonical</strong> link in home page"
2311
  msgid "Add the meta encoding tag in the page's header"
2312
  msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
2313
 
2314
+ # @ squirrly-seo
2315
+ #: models/Audits.php:195
2316
+ #, fuzzy
2317
+ #| msgid "Description:"
2318
  msgid "Does your site have a feed or sitemap?"
2319
+ msgstr "Beschreibung:"
2320
 
2321
+ #: models/Audits.php:198
2322
  #, php-format
2323
  msgid ""
2324
  "How can we fix the Feed and Sitemap of the website? %s Make sure that you "
2331
  "feature is free to use.%s"
2332
  msgstr ""
2333
 
2334
+ #: models/Audits.php:199
2335
  msgid ""
2336
  "Your feeds and sitemaps should contain the date when your content was "
2337
  "published and last updated. This is super important for Google to know, as "
2342
  "will gain traffic."
2343
  msgstr ""
2344
 
2345
+ #: models/Audits.php:200
2346
  msgid "Add a RSS feed and Sitemap to your site"
2347
  msgstr ""
2348
 
2349
+ # @ squirrly-seo
2350
+ #: models/Audits.php:205
2351
+ #, fuzzy
2352
+ #| msgid "Description:"
2353
  msgid "Does your site have a robots.txt file?"
2354
+ msgstr "Beschreibung:"
2355
 
2356
+ #: models/Audits.php:208
2357
  #, php-format
2358
  msgid ""
2359
  "How can we fix the robots.txt of the website? %s You'll need to have a "
2364
  "make sure it can be accessed. %s"
2365
  msgstr ""
2366
 
2367
+ #: models/Audits.php:209
2368
  msgid ""
2369
  "Platforms like Shopify handle this with their default engine. On WordPress "
2370
  "you can use Squirrly SEO to create and customize your robots.txt"
2371
  msgstr ""
2372
 
2373
+ #: models/Audits.php:210
2374
  msgid "Add robots.txt file in your site"
2375
  msgstr ""
2376
 
2377
  # @ squirrly-seo
2378
+ #: models/Audits.php:215
2379
  #, fuzzy
2380
  #| msgid "Keyword:"
2381
  msgid "Meta Viewport"
2382
  msgstr "Schlüsselwort:"
2383
 
2384
  # @ squirrly-seo
2385
+ #: models/Audits.php:217
2386
  #, fuzzy
2387
  #| msgid "Description:"
2388
  msgid "The pages without viewport meta"
2389
  msgstr "Beschreibung:"
2390
 
2391
+ #: models/Audits.php:218
2392
  #, php-format
2393
  msgid ""
2394
  "How can we fix the meta viewport of the website? %s You need to make sure "
2399
  "name=“viewport” content=“width=500, initial-scale=1”>%s"
2400
  msgstr ""
2401
 
2402
+ #: models/Audits.php:219
2403
  msgid ""
2404
  "Platforms like Shopify handle this with their default engine. On WordPress, "
2405
  "you need to make sure the WordPress theme you buy is responsive and has this "
2407
  msgstr ""
2408
 
2409
  # @ squirrly-seo
2410
+ #: models/Audits.php:220
2411
  #, fuzzy
2412
  #| msgid "adds the correct <strong>title</strong> in the home page"
2413
  msgid "Add the meta viewport tag in the page's header"
2414
  msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
2415
 
2416
+ #: models/Audits.php:225
2417
  #, fuzzy
2418
  #| msgid "Optimize for Keyword"
2419
  msgid "Site optimized for speed?"
2420
  msgstr "Schlüsselwort optimieren"
2421
 
2422
  # @ squirrly-seo
2423
+ #: models/Audits.php:227
2424
  #, fuzzy
2425
  #| msgid "Description:"
2426
  msgid "The pages without gzip"
2427
  msgstr "Beschreibung:"
2428
 
2429
+ #: models/Audits.php:228
2430
  #, php-format
2431
  msgid ""
2432
  "How can we fix the gzip compression for our website? %s GZIP compression "
2439
  "find plugins to help you with this.%s"
2440
  msgstr ""
2441
 
2442
+ #: models/Audits.php:229
2443
  msgid ""
2444
  "Setting this up saves 50% to 80% bandwidth, which will make all your pages "
2445
  "load a lot faster."
2446
  msgstr ""
2447
 
2448
+ #: models/Audits.php:230
2449
  #, fuzzy
2450
  #| msgid "Optimize for Keyword"
2451
  msgid "Use gzip to increase your site's speed"
2452
  msgstr "Schlüsselwort optimieren"
2453
 
2454
  # @ squirrly-seo
2455
+ #: models/Audits.php:235
2456
  #, fuzzy
2457
  #| msgid "Description:"
2458
  msgid "Duplicate Open Graph Tags?"
2459
  msgstr "Beschreibung:"
2460
 
2461
  # @ squirrly-seo
2462
+ #: models/Audits.php:236 models/Audits.php:246 models/Audits.php:256
2463
+ #: models/Audits.php:266
2464
  #, fuzzy
2465
  #| msgid "Description:"
2466
  msgid "No duplicates"
2467
  msgstr "Beschreibung:"
2468
 
2469
  # @ squirrly-seo
2470
+ #: models/Audits.php:237 models/Audits.php:247 models/Audits.php:257
2471
+ #: models/Audits.php:267
2472
  #, fuzzy
2473
  #| msgid "No results found!"
2474
  msgid "We found some ..."
2475
  msgstr "Keine Ergebnisse gefunden!"
2476
 
2477
+ # @ squirrly-seo
2478
+ #: models/Audits.php:237
2479
+ #, fuzzy
2480
+ #| msgid "Description:"
2481
  msgid "The pages with duplicate Open Graph metas"
2482
+ msgstr "Beschreibung:"
2483
 
2484
+ #: models/Audits.php:238 models/Audits.php:248 models/Audits.php:258
2485
+ #: models/Audits.php:268
2486
  #, php-format
2487
  msgid ""
2488
  "How can we fix the duplicate meta codes of our pages? %s Make a list of the "
2491
  "have two instances of og:title << remove one of them!)%s"
2492
  msgstr ""
2493
 
2494
+ #: models/Audits.php:239 models/Audits.php:249 models/Audits.php:259
2495
+ #: models/Audits.php:269
2496
  msgid ""
2497
  "On WordPress you can use Squirrly SEO to Remove Duplicate Meta codes from "
2498
  "all your pages. It removes them automatically. No work on your behalf."
2499
  msgstr ""
2500
 
2501
+ #: models/Audits.php:240 models/Audits.php:250 models/Audits.php:260
2502
+ #: models/Audits.php:270
2503
  msgid "Make sure you don't have duplicate meta tags in your site's header"
2504
  msgstr ""
2505
 
2506
  # @ squirrly-seo
2507
+ #: models/Audits.php:245
2508
  #, fuzzy
2509
  #| msgid "Twitter"
2510
  msgid "Duplicate Twitter Card Tags?"
2511
  msgstr "Twitter"
2512
 
2513
  # @ squirrly-seo
2514
+ #: models/Audits.php:247
2515
  #, fuzzy
2516
  #| msgid "Twitter"
2517
  msgid "The pages with duplicate Twitter Card metas"
2518
  msgstr "Twitter"
2519
 
2520
  # @ squirrly-seo
2521
+ #: models/Audits.php:255
2522
  #, fuzzy
2523
  #| msgid "Twitter"
2524
  msgid "Duplicate Title Tags?"
2525
  msgstr "Twitter"
2526
 
2527
  # @ squirrly-seo
2528
+ #: models/Audits.php:257
2529
  #, fuzzy
2530
  #| msgid "Description:"
2531
  msgid "The pages with duplicate Title metas"
2532
  msgstr "Beschreibung:"
2533
 
2534
  # @ squirrly-seo
2535
+ #: models/Audits.php:265
2536
  #, fuzzy
2537
  #| msgid "Description:"
2538
  msgid "Duplicate Description Tags?"
2539
  msgstr "Beschreibung:"
2540
 
2541
  # @ squirrly-seo
2542
+ #: models/Audits.php:267
2543
  #, fuzzy
2544
  #| msgid "Description:"
2545
  msgid "The pages with duplicate Description metas"
2546
  msgstr "Beschreibung:"
2547
 
2548
+ #: models/Audits.php:278
2549
  msgid "Top Shared Pages"
2550
  msgstr ""
2551
 
2552
+ #: models/Audits.php:284
2553
  msgid "Shares"
2554
  msgstr ""
2555
 
2556
+ #: models/Audits.php:287
2557
  #, php-format
2558
  msgid ""
2559
  "How can we raise the Social Media Shares (or signals) for our pages on "
2575
  "media: [link]https://www.squirrly.co/podcast/[/link] %s"
2576
  msgstr ""
2577
 
2578
+ #: models/Audits.php:288
2579
  msgid ""
2580
  "All the shares and likes that your fans will give your pages will contribute "
2581
  "to the total number of shares from social media (social signals). When "
2584
  "its rankings."
2585
  msgstr ""
2586
 
2587
+ #: models/Audits.php:289
2588
  msgid "You have to share your articles with your fans"
2589
  msgstr ""
2590
 
2591
  # @ squirrly-seo
2592
+ #: models/Audits.php:294
2593
  #, fuzzy
2594
  #| msgid "Insert in your article"
2595
  msgid "Share Buttons in your articles?"
2596
  msgstr "In Artikel einfügen"
2597
 
2598
  # @ squirrly-seo
2599
+ #: models/Audits.php:296
2600
  #, fuzzy
2601
  #| msgid "Description:"
2602
  msgid "The pages without share buttons"
2603
  msgstr "Beschreibung:"
2604
 
2605
+ #: models/Audits.php:297
2606
  #, php-format
2607
  msgid ""
2608
  "How can we get social media share buttons on our website? %s There are many "
2615
  "their social media counters work perfectly.%s"
2616
  msgstr ""
2617
 
2618
+ #: models/Audits.php:298
2619
  msgid ""
2620
  "All there is to it is: make the buttons obvious, so people can easily find "
2621
  "them. Make sure they don't slow your site down. Make sure they look great on "
2623
  msgstr ""
2624
 
2625
  # @ squirrly-seo
2626
+ #: models/Audits.php:299
2627
  #, fuzzy
2628
  #| msgid "Insert in your article"
2629
  msgid "Add Social Share buttons in your articles"
2630
  msgstr "In Artikel einfügen"
2631
 
2632
+ #: models/Audits.php:304
2633
  msgid "Social 'Follow me' Buttons?"
2634
  msgstr ""
2635
 
2636
  # @ squirrly-seo
2637
+ #: models/Audits.php:306
2638
  #, fuzzy
2639
  #| msgid "Description:"
2640
  msgid "The pages without social buttons"
2641
  msgstr "Beschreibung:"
2642
 
2643
+ #: models/Audits.php:307
2644
  #, php-format
2645
  msgid ""
2646
  "How can we fix the Social Follow Me buttons of the website? %s Add buttons "
2652
  "digital brand. [link]http://expectationmarketing.com/[/link] %s"
2653
  msgstr ""
2654
 
2655
+ #: models/Audits.php:308
2656
  msgid ""
2657
  "Place the buttons in your site's footer, to make sure they're always "
2658
  "accessible. Web users are used to finding them there when they wish to "
2659
  "connect to brands on social media."
2660
  msgstr ""
2661
 
2662
+ #: models/Audits.php:309
2663
  msgid ""
2664
  "Add links to your Social Media profiles to strengthen social signals and "
2665
  "keep readers engaged."
2666
  msgstr ""
2667
 
2668
+ #: models/Audits.php:314
2669
  #, fuzzy
2670
  #| msgid "Optimize for Keyword"
2671
  msgid "Open Graph protocol?"
2672
  msgstr "Schlüsselwort optimieren"
2673
 
2674
  # @ squirrly-seo
2675
+ #: models/Audits.php:316
2676
  #, fuzzy
2677
  #| msgid "Description:"
2678
  msgid "The pages without Open Graph metas"
2679
  msgstr "Beschreibung:"
2680
 
2681
+ #: models/Audits.php:317
2682
  #, php-format
2683
  msgid ""
2684
  "How can we fix the Open Graph of the website? %s You need to make sure "
2701
  "content=“en” />%s"
2702
  msgstr ""
2703
 
2704
+ #: models/Audits.php:318
2705
  msgid ""
2706
  "Fixing this will improve Click Through Rates on Facebook, LinkedIN. "
2707
  "Guaranteed. Make sure you use this to control how your pages look on social "
2708
  "media when people share them."
2709
  msgstr ""
2710
 
2711
+ # @ squirrly-seo
2712
+ #: models/Audits.php:319
2713
+ #, fuzzy
2714
+ #| msgid "adds <strong>canonical</strong> link in home page"
2715
  msgid "Add the meta Open Graph tag in your page's header."
2716
+ msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
2717
 
2718
  # @ squirrly-seo
2719
+ #: models/Audits.php:324
2720
  #, fuzzy
2721
  #| msgid "Twitter"
2722
  msgid "Twitter Card?"
2723
  msgstr "Twitter"
2724
 
2725
  # @ squirrly-seo
2726
+ #: models/Audits.php:326
2727
  #, fuzzy
2728
  #| msgid "Description:"
2729
  msgid "The pages without Twitter Card metas"
2730
  msgstr "Beschreibung:"
2731
 
2732
+ #: models/Audits.php:327
2733
  #, php-format
2734
  msgid ""
2735
  "How can we fix the Twitter Cards of the website? %s You need to make sure "
2749
  "Marketing” /> %s <meta property=“twitter:card” content=“summary” />%s"
2750
  msgstr ""
2751
 
2752
+ #: models/Audits.php:328
2753
  msgid ""
2754
  "Fixing this will improve Click Through Rates on Twitter. Guaranteed. Make "
2755
  "sure you use this to control how your pages look on social media when people "
2756
  "share them."
2757
  msgstr ""
2758
 
2759
+ #: models/Audits.php:329
2760
  msgid "Add Twitter Card to make your articles look better on Twitter."
2761
  msgstr ""
2762
 
2763
+ #: models/Audits.php:337
2764
  msgid "Majestic Backlinks"
2765
  msgstr ""
2766
 
2767
+ #: models/Audits.php:338 models/Audits.php:339 models/Audits.php:356
2768
+ #: models/Audits.php:357
2769
  msgid "link(s)"
2770
  msgstr ""
2771
 
2772
+ #: models/Audits.php:338 models/Audits.php:339
2773
  msgid "Backlinks Count"
2774
  msgstr ""
2775
 
2776
+ #: models/Audits.php:340 models/Audits.php:349
2777
  #, php-format
2778
  msgid ""
2779
  "How can we fix the Inbound Links Number to the latest 10 Pages? %s Many are "
2797
  "links from trust-worthy sites. %s"
2798
  msgstr ""
2799
 
2800
+ #: models/Audits.php:341 models/Audits.php:350
2801
  msgid ""
2802
  "Use the BackLinks Assistant [link]https://www.producthunt.com/upcoming/"
2803
  "backlinks-assistant-by-squirrly[/link]. There are many other ways to "
2807
  "team can start working on."
2808
  msgstr ""
2809
 
2810
+ #: models/Audits.php:346
2811
  msgid "Majestic Unique Domains"
2812
  msgstr ""
2813
 
2814
+ #: models/Audits.php:347 models/Audits.php:348
2815
  msgid "Links from {total} domains"
2816
  msgstr ""
2817
 
2818
+ #: models/Audits.php:347 models/Audits.php:348
2819
  msgid "Unique Domains Count"
2820
  msgstr ""
2821
 
2822
+ #: models/Audits.php:355
2823
  msgid "Moz Backlinks"
2824
  msgstr ""
2825
 
2826
+ #: models/Audits.php:356 models/Audits.php:357
2827
  msgid "Moz Backlinks Count"
2828
  msgstr ""
2829
 
2830
+ #: models/Audits.php:358
2831
  #, php-format
2832
  msgid ""
2833
  "How can we fix the Inbound Links Number to the latest 10 Pages? %s Many are "
2846
  "broken links.%s"
2847
  msgstr ""
2848
 
2849
+ #: models/Audits.php:359
2850
  msgid ""
2851
  "Use the BackLinks Assistant [link]https://www.producthunt.com/upcoming/"
2852
  "backlinks-assistant-by-squirrly[/link] . There are many other ways to "
2855
  "can start working on."
2856
  msgstr ""
2857
 
2858
+ #: models/Audits.php:360
2859
  msgid ""
2860
  "Find more blogs, forums, directories to add links there. Contribute to the "
2861
  "respective community and they will appreciate it."
2862
  msgstr ""
2863
 
2864
+ #: models/Audits.php:365
2865
  msgid "Links with noFollow?"
2866
  msgstr ""
2867
 
2868
+ #: models/Audits.php:366
2869
  msgid "Nofollow Links Count"
2870
  msgstr ""
2871
 
2872
+ #: models/Audits.php:368
2873
  #, php-format
2874
  msgid ""
2875
  "How can we fix the No-Follow links of the website? %s You can find an "
2894
  "\"signin.php\" rel=\"nofollow\">sign in</a>%s"
2895
  msgstr ""
2896
 
2897
+ #: models/Audits.php:369
2898
  msgid ""
2899
  "You could add no-follow to most of the links from your site that go towards "
2900
  "external, third-party websites. The only external sites you should leave "
2904
  "better understand what your site's content is all about."
2905
  msgstr ""
2906
 
2907
+ #: models/Audits.php:370
2908
  msgid "Add nofollow links to pages like Terms and Conditions."
2909
  msgstr ""
2910
 
2911
+ #: models/Audits.php:379 models/FocusPages.php:29
2912
  msgid "Page Authority"
2913
  msgstr ""
2914
 
2915
+ # @ squirrly-seo
2916
+ #: models/Audits.php:380 models/Audits.php:381
2917
+ #, fuzzy
2918
+ #| msgid "Description:"
2919
  msgid "average authority"
2920
+ msgstr "Beschreibung:"
2921
 
2922
+ #: models/Audits.php:382
2923
  #, php-format
2924
  msgid ""
2925
  "How can we fix the Authority of the website? %s You must start by "
2937
  "authority: [link]https://plugin.squirrly.co/focus-pages/[/link] %s"
2938
  msgstr ""
2939
 
2940
+ #: models/Audits.php:383
2941
  msgid ""
2942
+ "You can build up a solid Content Strategy using the SEO Goals and our brand "
2943
+ "new Private SEO Consultant. In a Plugin. Powered by Machine Learning and "
2944
+ "Cloud Services: [link]https://plugin.squirrly.co/best-seo-goals/[/link] or "
2945
+ "you can start getting more BackLinks using the BackLinks Assistant "
2946
  "[link]https://www.producthunt.com/upcoming/backlinks-assistant-by-squirrly[/"
2947
  "link]."
2948
  msgstr ""
2949
 
2950
+ #: models/Audits.php:384
2951
  msgid "Get links to your page from domains with authority."
2952
  msgstr ""
2953
 
2954
+ #: models/Audits.php:389
2955
  msgid "Alexa Rank"
2956
  msgstr ""
2957
 
2958
+ #: models/Audits.php:392
2959
  #, php-format
2960
  msgid ""
2961
  "How can we fix the Alexa Rank of the website? %s Get more traffic to your "
2969
  "marketing/[/link]%s"
2970
  msgstr ""
2971
 
2972
+ #: models/Audits.php:393
2973
  msgid ""
2974
  "A certain and tested way of increasing Alexa rank is creating and promoting "
2975
  "many pieces of fresh content. An agency like Squirrly's Content Agency can "
2976
  "help you with this. [link]http://www.squirrly.co/agency[/link]"
2977
  msgstr ""
2978
 
2979
+ #: models/Audits.php:394
2980
  msgid "Try to gain organic traffic to your site."
2981
  msgstr ""
2982
 
2983
+ #: models/Audits.php:399
2984
  msgid "Domain Age"
2985
  msgstr ""
2986
 
2987
+ #: models/Audits.php:402
2988
  #, php-format
2989
  msgid ""
2990
  "How can we fix the Domain Age of the website? %s While you certainly can't "
2997
  "guarantee your entry into Way Back Machine.%s"
2998
  msgstr ""
2999
 
3000
+ #: models/Audits.php:403
3001
  msgid ""
3002
  "If Squirrly could crawl your website and find your pages + show you the "
3003
  "Audit, it means your domain and pages can be crawled. Just make sure you're "
3005
  "txt"
3006
  msgstr ""
3007
 
3008
+ #: models/Audits.php:404
3009
  msgid ""
3010
  "Your domain is new. I know it will get older, but still, it's good to know "
3011
  "what to expect if it's new :)"
3012
  msgstr ""
3013
 
3014
  # @ squirrly-seo
3015
+ #: models/Audits.php:409
3016
  #, fuzzy
3017
  #| msgid "Change the Website Icon"
3018
  msgid "Site Icon"
3019
  msgstr "Ändern Sie das Website-Symbol"
3020
 
3021
+ #: models/Audits.php:412
3022
  #, php-format
3023
  msgid ""
3024
  "How can we fix the favicon of the website? %s If you don't already have a "
3029
  "href=“/images/specialicon.ico” type=“image/x-icon” />%s"
3030
  msgstr ""
3031
 
3032
+ #: models/Audits.php:413
3033
  msgid ""
3034
  "Platforms like Shopify handle this with their default engine. On WordPress "
3035
  "you can use Squirrly SEO to upload and control the favicon displayed on your "
3036
  "pages."
3037
  msgstr ""
3038
 
3039
+ #: models/Audits.php:414 models/Audits.php:424
3040
  msgid "Add an icon for your site"
3041
  msgstr ""
3042
 
3043
+ #: models/Audits.php:419
3044
  msgid "IPad and IPhone Icons"
3045
  msgstr ""
3046
 
3047
+ #: models/Audits.php:422
3048
  #, php-format
3049
  msgid ""
3050
  "How can we fix the Apple Icon of the website? %s If you don't already have "
3056
  "apple-touch-icon.png” />%s"
3057
  msgstr ""
3058
 
3059
+ #: models/Audits.php:423
3060
  msgid ""
3061
  "Platforms like Shopify handle this with their default engine. On WordPress "
3062
  "you can use Squirrly SEO to upload and control the Apple Icon displayed on "
3063
  "user's home screens when they bookmark your pages."
3064
  msgstr ""
3065
 
3066
+ #: models/Audits.php:463 models/Audits.php:496 models/Audits.php:515
3067
+ #: models/Audits.php:622 models/focuspages/Audit.php:186
3068
+ #: models/focuspages/Audit.php:207 models/focuspages/Audit.php:228
3069
+ #: models/focuspages/Audit.php:249
3070
  msgid "URL"
3071
  msgstr ""
3072
 
3073
+ #: models/Audits.php:464
3074
  msgid "Visitors"
3075
  msgstr ""
3076
 
3077
+ #: models/Audits.php:465
3078
  msgid "Bounce"
3079
  msgstr ""
3080
 
3081
  # @ squirrly-seo
3082
+ #: models/Audits.php:481
3083
  #, fuzzy
3084
  #| msgid "No results found!"
3085
  msgid "No traffic data found"
3086
  msgstr "Keine Ergebnisse gefunden!"
3087
 
3088
+ #: models/Audits.php:497 models/Audits.php:516
3089
  msgid "Total"
3090
  msgstr ""
3091
 
3092
  # @ squirrly-seo
3093
+ #: models/Audits.php:548
3094
  #, fuzzy
3095
  #| msgid "Description:"
3096
  msgid "Facebook reactions"
3097
  msgstr "Beschreibung:"
3098
 
3099
  # @ squirrly-seo
3100
+ #: models/Audits.php:552
3101
  #, fuzzy
3102
  #| msgid "Description:"
3103
  msgid "Facebook shares"
3104
  msgstr "Beschreibung:"
3105
 
3106
+ #: models/Audits.php:556
3107
  msgid "Reddit shares"
3108
  msgstr ""
3109
 
3110
+ #: models/Audits.php:560
3111
  msgid "Pinterest shares"
3112
  msgstr ""
3113
 
3114
+ #: models/Audits.php:623
3115
  msgid "Value"
3116
  msgstr ""
3117
 
3118
+ #: models/Audits.php:690 view/Audits/Audit.php:142 view/Audits/Compare.php:163
3119
  msgid "PRO TIP"
3120
  msgstr ""
3121
 
3122
+ #: models/Audits.php:710
3123
  msgid "Requires Attention!"
3124
  msgstr ""
3125
 
3126
+ #: models/Audits.php:714
3127
  msgid "Can be improved."
3128
  msgstr ""
3129
 
3130
+ #: models/Audits.php:776
3131
  msgid "not yet"
3132
  msgstr ""
3133
 
3134
+ #: models/BulkSeo.php:16
3135
  msgid "METAs"
3136
  msgstr ""
3137
 
3138
+ #: models/BulkSeo.php:17 view/Blocks/Snippet.php:89
3139
  #, fuzzy
3140
  #| msgid "Optimize for Keyword"
3141
  msgid "Open Graph"
3142
  msgstr "Schlüsselwort optimieren"
3143
 
3144
  # @ squirrly-seo
3145
+ #: models/BulkSeo.php:18 view/Blocks/Snippet.php:93
3146
  #, fuzzy
3147
  #| msgid "Twitter"
3148
  msgid "Twitter Card"
3149
  msgstr "Twitter"
3150
 
3151
+ #: models/BulkSeo.php:19 models/FocusPages.php:19 view/Blocks/Snippet.php:97
3152
  msgid "Visibility"
3153
  msgstr ""
3154
 
3168
 
3169
  # @ squirrly-seo
3170
  #: models/CheckSeo.php:39 models/CheckSeo.php:40
3171
+ #: models/bulkseo/Visibility.php:101 view/Blocks/Snippet.php:1057
3172
  #, fuzzy
3173
  #| msgid "You're blocking google from indexing your site!"
3174
  msgid "Discourage search engines from indexing this site"
3185
  "public and indexable. You must fix this today."
3186
  msgstr ""
3187
 
3188
+ # @ squirrly-seo
3189
  #: models/CheckSeo.php:52
3190
+ #, fuzzy
3191
+ #| msgid "adds the correct <strong>title</strong> in the home page"
3192
  msgid "Get the meta title tag in the front-end"
3193
+ msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
3194
 
3195
  #: models/CheckSeo.php:53
3196
  msgid ""
3213
  msgstr ""
3214
 
3215
  #: models/CheckSeo.php:66
3216
+ msgid "Turn Squirrly's AMP Support to ON"
3217
  msgstr ""
3218
 
3219
  #: models/CheckSeo.php:67
3220
  msgid ""
3221
+ "AMP site detected and Squirrly's AMP Support is OFF - If this website is an "
3222
+ "AMP website you need to make sure that you activate Squirrly AMP Tracking "
3223
+ "for it. Squirrly will load Google Analytics and Facebook Pixel for AMP and "
3224
+ "avoid AMP script errors."
3225
  msgstr ""
3226
 
3227
  #: models/CheckSeo.php:68
3235
  "the AMP version of the site will have missing pieces."
3236
  msgstr ""
3237
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3238
  # @ squirrly-seo
3239
+ #: models/CheckSeo.php:80
3240
  #, fuzzy
3241
  #| msgid "Squirrly LIVE SEO assistant"
3242
  msgid "Activate Squirrly SEO Title now"
3243
  msgstr "Squirrly LIVE SEO-Assistent"
3244
 
3245
+ #: models/CheckSeo.php:81
3246
  msgid ""
3247
  "Squirrly SEO title is NOT active for your website.If you DON'T use other SEO "
3248
  "plugins, you should activate this option, and Squirrly SEO will add the "
3251
  "and human readers understand what your pages are all about"
3252
  msgstr ""
3253
 
3254
+ #: models/CheckSeo.php:82
3255
  #, php-format
3256
  msgid ""
3257
  "Go to %sSquirrly > SEO Settings > Metas%s and switch on: 'Optimize the "
3258
  "Titles'"
3259
  msgstr ""
3260
 
3261
+ #: models/CheckSeo.php:83
3262
  msgid ""
3263
  "You should activate the Squirrly SEO title to help Search Engines understand "
3264
  "what your pages are about and ensure all of your pages have titles."
3265
  msgstr ""
3266
 
3267
+ #: models/CheckSeo.php:94
3268
  msgid "Make your LINKS SEO-Friendly"
3269
  msgstr ""
3270
 
3271
+ #: models/CheckSeo.php:95
3272
  msgid ""
3273
  "Google considers the URLs you use on your website to be a ranking factor. "
3274
  "The permalinks you use and the structure you decide on adopting is "
3276
  "your site Human-friendly. "
3277
  msgstr ""
3278
 
3279
+ #: models/CheckSeo.php:96
3280
  #, php-format
3281
  msgid ""
3282
  "Your URLs should be super easy to read. Go to your %s WordPress dashboard > "
3284
  "your permalinks."
3285
  msgstr ""
3286
 
3287
+ #: models/CheckSeo.php:97
3288
  msgid ""
3289
  "Make your LINKS SEO-Friendly. You're losing potential rankings at the moment."
3290
  msgstr ""
3291
 
3292
+ # @ squirrly-seo
3293
+ #: models/CheckSeo.php:107
3294
+ #, fuzzy
3295
+ #| msgid "Description:"
3296
  msgid "Activate the Sitemap from Squirrly"
3297
+ msgstr "Beschreibung:"
3298
 
3299
+ #: models/CheckSeo.php:108
3300
  msgid ""
3301
  "XML sitemaps help search engines and spiders discover new pages on your "
3302
  "website. It also helps them better understand the structure of your website. "
3304
  "sitemap, according to different items you can set up."
3305
  msgstr ""
3306
 
3307
+ #: models/CheckSeo.php:109
3308
  #, php-format
3309
  msgid ""
3310
  "Go to %sSquirrly > SEO Settings > Sitemap XML%s to setup the sitemap. Choose "
3312
  "strategy. Leave the defaults if you're uncertain."
3313
  msgstr ""
3314
 
3315
+ #: models/CheckSeo.php:110
3316
  msgid ""
3317
  "Lead Search Engines to your most important pages using XML sitemaps. Do this "
3318
  "and you can rank better. "
3319
  msgstr ""
3320
 
3321
+ #: models/CheckSeo.php:121
3322
  msgid "Get a robots txt file"
3323
  msgstr ""
3324
 
3325
+ #: models/CheckSeo.php:122
3326
  msgid ""
3327
  "Robots.txt is a text file webmasters create to instruct how to crawl & index "
3328
  "pages on their website. You can use this file to tell search engine robots "
3331
  "important to have a robots.txt file in the first place."
3332
  msgstr ""
3333
 
3334
+ #: models/CheckSeo.php:123
3335
  #, php-format
3336
  msgid ""
3337
  "Go to %sSquirrly > SEO Settings > Robots%s and switch on Activate Robots. If "
3339
  "adding the Robots.txt URL."
3340
  msgstr ""
3341
 
3342
+ #: models/CheckSeo.php:124
3343
  msgid ""
3344
  "You should help Search Engine bots find what they need. Create a Robots.txt "
3345
  "file as soon as possible if you want your site to be seen in Search Results."
3346
  msgstr ""
3347
 
3348
+ #: models/CheckSeo.php:136
3349
+ #, fuzzy
3350
+ #| msgid "Optimize for Keyword"
3351
  msgid "Error detected for your Focus Page"
3352
+ msgstr "Schlüsselwort optimieren"
3353
 
3354
+ #: models/CheckSeo.php:137
3355
  #, php-format
3356
  msgid ""
3357
  "An error is preventing Squirrly from accessing and retrieving critical data "
3361
  "accessing your page, which is a critical issue. "
3362
  msgstr ""
3363
 
3364
+ #: models/CheckSeo.php:138
3365
  msgid ""
3366
  "Use a different browser to make sure your Focus Page is visible. Whitelist "
3367
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
3368
  "page so that you’ll receive a full audit."
3369
  msgstr ""
3370
 
3371
+ #: models/CheckSeo.php:139
3372
  msgid ""
3373
  "Make sure that your Focus Page is published and can be accessed by all users "
3374
  "and crawlers."
3375
  msgstr ""
3376
 
3377
+ #: models/CheckSeo.php:150
3378
+ msgid "Add Focus Page. It's the first step to reaching TOP positions"
3379
  msgstr ""
3380
 
3381
+ #: models/CheckSeo.php:151
3382
  msgid ""
3383
+ "Adding a Focus Page, and then using the SEO Goals related to it, is a sure "
3384
+ "way for all aspiring SEO Stars to begin reaching top positions in Google. "
3385
+ "SEO is very complicated, and Focus Pages is the only method that helps you "
3386
+ "un-complicate it. By following this method you will build a repeatable, "
3387
+ "smart strategy, powered by Machine Learning."
3388
  msgstr ""
3389
 
3390
+ #: models/CheckSeo.php:152
3391
  #, php-format
3392
  msgid ""
3393
  "Go to %sSquirrly SEO > Focus Pages > Add New Page%s to add a page in Focus "
3394
  "Pages."
3395
  msgstr ""
3396
 
3397
+ #: models/CheckSeo.php:153
3398
  msgid ""
3399
  "You don't currently have a clearly defined strategy. If you're a Non-SEO "
3400
  "Expert you won't be able to reach TOP 10 rankings without Focus Pages."
3401
  msgstr ""
3402
 
3403
+ #: models/CheckSeo.php:164
3404
  msgid "Change WordPress' default tagline"
3405
  msgstr ""
3406
 
3407
+ #: models/CheckSeo.php:165
3408
  msgid ""
3409
  "The default WordPress tagline is “Just another WordPress site” - which is "
3410
  "like saying your site is nothing special. It's important to customize it so "
3412
  "Search Engines also pay close attention to taglines."
3413
  msgstr ""
3414
 
3415
+ #: models/CheckSeo.php:166
3416
  msgid ""
3417
  "How you optimize your tagline can depend on the theme you are using (some "
3418
  "themes don't display the tagline automatically). Your best bet is to go to "
3423
  "tagline, and ensure the tagline fits with your overall branding strategy."
3424
  msgstr ""
3425
 
3426
+ #: models/CheckSeo.php:167
3427
  msgid ""
3428
  "Optimize your tagline so that your site is NOT 'Just another WordPress "
3429
  "site' (or: Optimize your tagline to put your site’s best foot forward and "
3430
  "encourage visitors to stick around.)"
3431
  msgstr ""
3432
 
3433
+ #: models/CheckSeo.php:177
3434
  msgid "Remove all no-index tags from all Focus Pages"
3435
  msgstr ""
3436
 
3437
+ #: models/CheckSeo.php:178
3438
  msgid ""
3439
  "No-index tags suggest to search engines (most notably Google) NOT to index a "
3440
  "specific webpage. By using these tags for your Focus Pages, you're "
3444
  "it."
3445
  msgstr ""
3446
 
3447
+ #: models/CheckSeo.php:179
3448
  #, php-format
3449
  msgid ""
3450
  "Look at all the places where you could have added instructions for Google "
3454
  "don't block this page in your %sRobots.txt%s file."
3455
  msgstr ""
3456
 
3457
+ #: models/CheckSeo.php:180
3458
  msgid ""
3459
  "You must remove all no-index tags for your Focus Pages so that they will "
3460
  "appear in Google Search."
3461
  msgstr ""
3462
 
3463
+ #: models/CheckSeo.php:191
3464
+ #, fuzzy
3465
+ #| msgid "Optimize for Keyword"
3466
  msgid "Fix all Visibility issues for your Focus Pages"
3467
+ msgstr "Schlüsselwort optimieren"
3468
 
3469
+ #: models/CheckSeo.php:192
3470
  msgid ""
3471
  "Having visibility issues for your Focus Pages means that your Focus Pages "
3472
  "may not appear in search results. This is bad, because you'll want as many "
3473
  "people to see your most important pages (your Focus Pages)"
3474
  msgstr ""
3475
 
3476
+ #: models/CheckSeo.php:193
3477
  #, php-format
3478
  msgid ""
3479
  "Go to %sSquirrly > Focus Pages%s and make sure all elements you see when you "
3482
  "Pages are protected against Visibility Issues."
3483
  msgstr ""
3484
 
3485
+ #: models/CheckSeo.php:194
3486
  msgid ""
3487
  "Fix ALL Visibility issues for your Focus Pages so that they will appear on "
3488
  "Google Search."
3489
  msgstr ""
3490
 
3491
+ #: models/CheckSeo.php:205 models/CheckSeo.php:208
3492
  msgid "Make Your Site Safe for Browsing Again"
3493
  msgstr ""
3494
 
3495
+ #: models/CheckSeo.php:206
3496
  msgid ""
3497
  "Safe Browsing notifies webmasters when their websites are compromised by "
3498
  "malicious actors and helps them diagnose and resolve the problem so that "
3499
  "their visitors stay safe."
3500
  msgstr ""
3501
 
3502
+ #: models/CheckSeo.php:207
3503
  #, php-format
3504
  msgid ""
3505
  "Go to %shttps://safebrowsing.google.com/%s and follow the instructions to "
3506
  "clean your website."
3507
  msgstr ""
3508
 
3509
+ # @ squirrly-seo
3510
+ #: models/CheckSeo.php:218
3511
+ #, fuzzy
3512
+ #| msgid "Description:"
3513
  msgid "Remove Duplicate Open Graph meta tags"
3514
+ msgstr "Beschreibung:"
3515
 
3516
+ #: models/CheckSeo.php:219
3517
  msgid ""
3518
  "Some WordPress themes and plugins add Open Graph meta tags which lead to "
3519
  "duplicate Open Graph meta tags issues. It's important to check for this to "
3522
  "bypass Squirrly's Duplicate Remover features."
3523
  msgstr ""
3524
 
3525
+ #: models/CheckSeo.php:220
3526
  msgid ""
3527
  "Start deactivating plugins (other than Squirrly SEO) from your WordPress "
3528
+ "site. Run New Scans for Next SEO Goals to see if you managed to get this "
3529
  "done! Then reactivate everything."
3530
  msgstr ""
3531
 
3532
+ #: models/CheckSeo.php:221
3533
  msgid ""
3534
  "You need to remove Duplicate Open Graph meta tags as soon as possible. "
3535
  "Otherwise, you will miss good chances of ranking higher with your pages."
3536
  msgstr ""
3537
 
3538
  # @ squirrly-seo
3539
+ #: models/CheckSeo.php:232
3540
  #, fuzzy
3541
  #| msgid "Twitter"
3542
  msgid "Remove Duplicate Twitter cards tags"
3543
  msgstr "Twitter"
3544
 
3545
+ #: models/CheckSeo.php:233
3546
  msgid ""
3547
  "Some WordPress themes and plugins add Twitter Card meta tags which lead to "
3548
  "duplicate Twitter card meta tags issues. It's important to check for tp "
3551
  "bypass Squirrly's Duplicate Remover features."
3552
  msgstr ""
3553
 
3554
+ #: models/CheckSeo.php:234
3555
  msgid ""
3556
  "Start deactivating plugins (other than Squirrly SEO) from your WordPress "
3557
+ "site. Run New Scans for Next SEO Goals to see if you manage to get this "
3558
  "done! Then reactivate everything."
3559
  msgstr ""
3560
 
3561
+ #: models/CheckSeo.php:235
3562
  msgid ""
3563
  "You need to remove Duplicate Twitter Card meta tags as soon as possible; "
3564
  "Otherwise you will miss good chances of ranking higher with your pages."
3565
  msgstr ""
3566
 
3567
+ #: models/CheckSeo.php:246
3568
  msgid "Use Squirrly's Expert-Grade Research Tool and Add Keywords to Briefcase"
3569
  msgstr ""
3570
 
3571
+ #: models/CheckSeo.php:247
3572
  msgid ""
3573
  "With a few clicks, you'll do the work that SEO experts charge thousands of "
3574
  "dollars for (because they do this manually and it takes too much time that "
3575
  "way)."
3576
  msgstr ""
3577
 
3578
+ #: models/CheckSeo.php:248
3579
  #, php-format
3580
  msgid ""
3581
  "Go to %sSquirrly > Keyword Research%s. Complete all steps until you get to "
3583
  "keyword to Briefcase from that interface."
3584
  msgstr ""
3585
 
3586
+ #: models/CheckSeo.php:249
3587
  msgid ""
3588
  "You should perform a keyword research using Squirrly's Expert-Grade tool and "
3589
  "store at least one of the results in Briefcase."
3590
  msgstr ""
3591
 
3592
+ #: models/CheckSeo.php:260
3593
  msgid ""
3594
  "Optimize your Focus Page with the great keyword you found during Keyword "
3595
  "research"
3596
  msgstr ""
3597
 
3598
+ #: models/CheckSeo.php:261
3599
  msgid ""
3600
  "So far, only experts knew how to improve search relevance, which is one of "
3601
  "the biggest reasons why Google will choose your page to show up first. "
3604
  "briefcase."
3605
  msgstr ""
3606
 
3607
+ #: models/CheckSeo.php:262
3608
  #, php-format
3609
  msgid ""
3610
  "Optimize up to 30% for a keyword you already stored to briefcase. Using the "
3612
  "page with Google Search Console when you are done."
3613
  msgstr ""
3614
 
3615
+ #: models/CheckSeo.php:263
3616
  msgid ""
3617
  "You must optimize all Focus Pages using a main keyword. This will improve "
3618
  "search relevance and you'll improve your site with something that only "
3619
  "experts were able to do before Squirrly."
3620
  msgstr ""
3621
 
3622
+ #: models/CheckSeo.php:274
3623
  msgid "Optimize your text to get a good Search Relevancy score"
3624
  msgstr ""
3625
 
3626
+ #: models/CheckSeo.php:275
3627
  msgid ""
3628
  "There is no point in ranking your content for a query that doesn’t match "
3629
  "what the user is looking for. Keywords help visitors find what they want, "
3634
  "can compete with other sites within your industry."
3635
  msgstr ""
3636
 
3637
+ #: models/CheckSeo.php:276
3638
  #, php-format
3639
  msgid ""
3640
  "To get this done, the text itself (the written words of the page) needs to "
3642
  "using the %sSEO Live Assistant%s"
3643
  msgstr ""
3644
 
3645
+ #: models/CheckSeo.php:277
3646
  msgid ""
3647
  "Ensure your Focus Page has Search relevancy by optimizing it using a "
3648
  "keyword. Otherwise, that Focus Page will not be displayed in Search Results."
3649
  msgstr ""
3650
 
3651
+ #: models/CheckSeo.php:288
3652
  msgid "Research your Focus Page's keyword"
3653
  msgstr ""
3654
 
3655
+ #: models/CheckSeo.php:289
3656
  msgid ""
3657
  "For at least one of your Focus Pages, I see that you optimized for search "
3658
  "relevance using the SEO Live Assistant. However, you need to be able to read "
3661
  "or can't bring traffic. Your SEO Star skills depend on this goal."
3662
  msgstr ""
3663
 
3664
+ #: models/CheckSeo.php:290
3665
  msgid ""
3666
  "See the keyword. Place it in the research feature and perform a full keyword "
3667
  "research on it. Then add it to briefcase."
3668
  msgstr ""
3669
 
3670
+ #: models/CheckSeo.php:291
3671
  msgid ""
3672
  "You must obtain keyword data for all main keywords used for your Focus "
3673
  "Pages. This will improve your skills and your understanding."
3674
  msgstr ""
3675
 
3676
  # @ squirrly-seo
3677
+ #: models/CheckSeo.php:302
3678
  #, fuzzy
3679
  #| msgid "Keyword:"
3680
  msgid "Choose less competitive keywords"
3681
  msgstr "Schlüsselwort:"
3682
 
3683
+ #: models/CheckSeo.php:303
3684
  msgid ""
3685
  "As a future SEO Star you need to understand that you will never be able to "
3686
  "rank for any keyword you think about. Not even huge sites who have spent a "
3690
  "expert."
3691
  msgstr ""
3692
 
3693
+ #: models/CheckSeo.php:304
3694
  msgid ""
3695
  "Go and edit the page using the SEO Live Assistant. Select a different "
3696
  "keyword as the main keyword. Make sure it has a Green light at 'competition'."
3697
  msgstr ""
3698
 
3699
+ #: models/CheckSeo.php:305
3700
  msgid ""
3701
  "Replace the main keyword you chose for your Focus Page to get top rankings. "
3702
  "Your page can't compete and reach the top 10 positions in Google for the "
3703
  "current keyword. "
3704
  msgstr ""
3705
 
3706
+ #: models/CheckSeo.php:315
3707
  #, php-format
3708
  msgid ""
3709
  "Try to boost traffic by over +285% by optimizing with SEO Live Assistant"
3710
  msgstr ""
3711
 
3712
+ #: models/CheckSeo.php:316
3713
  msgid ""
3714
  "Our data shows that users who optimize their content over 60% using the Live "
3715
  "Assistant get up to +285% increase in traffic compared to those who optimize "
3717
  "your content as much as you can."
3718
  msgstr ""
3719
 
3720
+ #: models/CheckSeo.php:317
3721
  #, php-format
3722
  msgid ""
3723
  "Your text needs to be optimized to over 60% using the SEO Live Assistant. Re-"
3724
  "index your pages with Google Search Console after you finish optimizing."
3725
  msgstr ""
3726
 
3727
+ #: models/CheckSeo.php:318
3728
  msgid ""
3729
  "Optimize Your Focus Pages over 60% to get up to 285% increase in traffic."
3730
  msgstr ""
3731
 
3732
  # @ squirrly-seo
3733
+ #: models/CheckSeo.php:330
3734
  #, fuzzy
3735
  #| msgid "Google %sAnalytics ID%s`:"
3736
  msgid "Prepare Full Google Search Console Connection"
3737
  msgstr "Google %sAnalytics ID%s`:"
3738
 
3739
+ #: models/CheckSeo.php:331
3740
  msgid ""
3741
  "Get access to data about impressions, clicks and CTR without leaving "
3742
  "WordPress by connecting Google Search Console to Squirrly. This is an API-"
3744
  "Enhance your Squirrly SEO with powerful data that comes directly from Google."
3745
  msgstr ""
3746
 
3747
+ # @ squirrly-seo
3748
+ #: models/CheckSeo.php:332 view/Connect/GoogleSearchConsole.php:32
3749
+ #: view/SeoSettings/Webmaster.php:83
3750
+ #, fuzzy, php-format
3751
+ #| msgid "Google %sAnalytics ID%s`:"
3752
+ msgid "Need Help Connecting Google Search Console? %sClick Here%s"
3753
+ msgstr "Google %sAnalytics ID%s`:"
3754
+
3755
+ #: models/CheckSeo.php:333
3756
  msgid ""
3757
  "You must connect Google Search Console to your Squirrly SEO. As soon as "
3758
  "possible. It's quick to do and helps you see impressions, clicks, and CTR, "
3759
  "so you can become an SEO Star."
3760
  msgstr ""
3761
 
3762
+ #: models/CheckSeo.php:343
3763
  msgid "Make a Manual Index Request for your Focus Pages With GSC"
3764
  msgstr ""
3765
 
3766
+ #: models/CheckSeo.php:344
3767
  msgid ""
3768
  "Whenever you've added or made changes to a page on your site, you should ask "
3769
  "for Google to re-index your page. This will help getting the new content in "
3773
  "you."
3774
  msgstr ""
3775
 
3776
+ #: models/CheckSeo.php:345
3777
  #, php-format
3778
  msgid ""
3779
  "Go to %sSquirrly > Focus Pages%s - identify the page that hasn't had a new "
3780
+ "index request and use the button to go to GSC and request re-index. %sLearn "
3781
+ "how to manually index the URL on Google Search Console%s"
3782
  msgstr ""
3783
 
3784
+ #: models/CheckSeo.php:346
3785
  msgid ""
3786
  "Let Google know you've made changes to your Focus Pages. Otherwise, nothing "
3787
  "will change in search results. This is mandatory."
3788
  msgstr ""
3789
 
3790
+ #: models/CheckSeo.php:357
3791
  msgid "Add your keywords to the Rankings section of Squirrly SEO"
3792
  msgstr ""
3793
 
3794
+ #: models/CheckSeo.php:358
3795
  msgid ""
3796
  "SEO pros are always diligent about monitoring their rankings. If you want to "
3797
  "be an SEO star, you need to track your success and make data-driven "
3801
  "can ask us why on our Facebook Group."
3802
  msgstr ""
3803
 
3804
+ #: models/CheckSeo.php:359
3805
  #, php-format
3806
  msgid ""
3807
  "Go to %sSquirrly > Research > Briefcase%s. Find your Focus Page's keyword "
3809
  "click on Send to Rank Checker."
3810
  msgstr ""
3811
 
3812
+ #: models/CheckSeo.php:360
3813
  msgid ""
3814
  "See how your SEO efforts translate into results by adding your Focus Page's "
3815
  "keyword to the Rankings section."
3816
  msgstr ""
3817
 
3818
+ #: models/CheckSeo.php:372
3819
  msgid ""
3820
  "Change the main keyword for a Focus Page that didn't reach TOP 20 rankings "
3821
  "during the last 2 months"
3822
  msgstr ""
3823
 
3824
+ #: models/CheckSeo.php:373
3825
  msgid ""
3826
  "As a future SEO star, you need to be able to adapt and pivot. If you see "
3827
  "something is not working, change it. Adapt. The current keyword you have for "
3830
  "results by switching to a new keyword."
3831
  msgstr ""
3832
 
3833
+ #: models/CheckSeo.php:374
3834
  #, php-format
3835
  msgid ""
3836
  "Go to %sSquirrly > Research%s and research new keyword ideas. Then get back "
3838
  "keyword."
3839
  msgstr ""
3840
 
3841
+ #: models/CheckSeo.php:375
3842
  msgid ""
3843
  "Switch your target keyword to reach better results. Don't settle for the "
3844
  "second page of Google."
3845
  msgstr ""
3846
 
3847
+ #: models/CheckSeo.php:386
3848
  msgid ""
3849
  "Get to 90% Optimization Levels for all Focus Pages (using SEO Live Assistant)"
3850
  msgstr ""
3851
 
3852
+ #: models/CheckSeo.php:387
3853
  msgid ""
3854
  "Our data shows that users who achieve 90% Optimization Levels using the Live "
3855
  "Assistant have a much better chance of achieving top Google Rankings for "
3858
  "will be."
3859
  msgstr ""
3860
 
3861
+ #: models/CheckSeo.php:388
3862
  #, php-format
3863
  msgid ""
3864
  "Go and edit your Focus Pages using the SEO live Assistant. Follow the "
3866
  "Google Search Console when you are done."
3867
  msgstr ""
3868
 
3869
+ #: models/CheckSeo.php:389
3870
  msgid ""
3871
  "You must Optimize to 90% to give your Focus Pages the best chances of "
3872
  "achieving top Google Rankings."
3873
  msgstr ""
3874
 
3875
+ #: models/CheckSeo.php:400
3876
  msgid "Stop losing SEO Authority"
3877
  msgstr ""
3878
 
3879
+ #: models/CheckSeo.php:401
3880
  msgid ""
3881
  "You need to place rel='nofollow' to all Outbound links. Outbound links are "
3882
  "URLs from 3rd party sites to which you are linking to. If you send links to "
3888
  "[link]https://squirrly.co/seo/kit[/link]"
3889
  msgstr ""
3890
 
3891
+ #: models/CheckSeo.php:402
3892
  msgid ""
3893
  "Place rel='nofollow' on outbound links yourself, or use the plugin "
3894
  "recommended by Squirrly that does this for you."
3895
  msgstr ""
3896
 
3897
+ #: models/CheckSeo.php:403
3898
  msgid "Fix your outbound links. Otherwise, you will lose SEO authority."
3899
  msgstr ""
3900
 
3901
  # @ squirrly-seo
3902
+ #: models/CheckSeo.php:414
3903
  #, fuzzy
3904
  #| msgid "Google %sAnalytics ID%s`:"
3905
  msgid "Connect Google Analytics Data to Squirrly"
3906
  msgstr "Google %sAnalytics ID%s`:"
3907
 
3908
+ #: models/CheckSeo.php:415
3909
  msgid ""
3910
  "As a future SEO star, you need to be able to make decisions based on what "
3911
  "the data tells you. By connecting Google Analytics to Squirrly, you can "
3917
  "[link]https://squirrly.co/seo/kit[/link]"
3918
  msgstr ""
3919
 
3920
+ # @ squirrly-seo
3921
+ #: models/CheckSeo.php:416 view/Connect/GoogleAnalytics.php:33
3922
+ #: view/SeoSettings/Tracking.php:96
3923
+ #, fuzzy, php-format
3924
+ #| msgid "Google %sAnalytics ID%s`:"
3925
+ msgid "Need Help Connecting Google Analytics? %sClick Here%s"
3926
+ msgstr "Google %sAnalytics ID%s`:"
3927
+
3928
+ #: models/CheckSeo.php:417
3929
  msgid ""
3930
  "Connect Google Analytics to Squirrly so that you see how much traffic your "
3931
  "Focus Pages are getting."
3932
  msgstr ""
3933
 
3934
+ #: models/CheckSeo.php:427
3935
  msgid "Reach Platform SEO green lights for all Focus Pages"
3936
  msgstr ""
3937
 
3938
+ #: models/CheckSeo.php:428
3939
  msgid ""
3940
  "You will be missing out on many ranking opportunities if you do not go and "
3941
  "fix Platform SEO right now. If you do fix it, make sure you start requesting "
3944
  "WP. Reaching 'Platform SEO' Green lights is a very important objective."
3945
  msgstr ""
3946
 
3947
+ #: models/CheckSeo.php:429
3948
  #, php-format
3949
  msgid ""
3950
  "Go to %sSquirrly > Focus Pages%s and look at the COLUMN with Platform SEO. "
3954
  "request a new Focus Pages audit for the page you fixed."
3955
  msgstr ""
3956
 
3957
+ #: models/CheckSeo.php:430
3958
  msgid ""
3959
  "Reach Platform SEO green lights for all Focus Pages. Otherwise, you will "
3960
  "keep giving Google faulty data, which can result in low rankings."
3961
  msgstr ""
3962
 
3963
+ #: models/CheckSeo.php:441
3964
+ #, fuzzy
3965
+ #| msgid "Optimize for Keyword"
3966
  msgid "Add SEO Context Keywords to your Focus Pages"
3967
+ msgstr "Schlüsselwort optimieren"
3968
 
3969
+ #: models/CheckSeo.php:442
3970
  msgid ""
3971
  "Squirrly SEO's Live Assistant lets you optimize your pages for multiple "
3972
  "keywords that you've placed in Briefcase. By optimizing your Focus Page for "
3979
  "shows how to add SEO context to a page."
3980
  msgstr ""
3981
 
3982
+ #: models/CheckSeo.php:443
3983
  msgid ""
3984
  "Optimize your Focus Page for a secondary keyword using the Live Assistant. "
3985
  "Optimize it to at least 30% and re-index the page with Google Search Console "
3986
  "when you're done."
3987
  msgstr ""
3988
 
3989
+ #: models/CheckSeo.php:444
3990
  msgid ""
3991
  "Help Google understand the exact topic and context of your page so that it "
3992
  "will rank it higher."
3993
  msgstr ""
3994
 
3995
+ #: models/CheckSeo.php:455
3996
  msgid ""
3997
  "Add all secondary Keywords you've used to the Rankings Section of Squirrly"
3998
  msgstr ""
3999
 
4000
+ #: models/CheckSeo.php:456
4001
  msgid ""
4002
  "Most people expect only the main keyword to be ranked in TOP 10 in Google. "
4003
  "However, according to the secondary keywords you've used to build up SEO "
4005
  "also got great rankings on Google."
4006
  msgstr ""
4007
 
4008
+ #: models/CheckSeo.php:457
4009
  msgid ""
4010
  "Add your secondary keywords (the secondary keywords you used for your Focus "
4011
  "Pages) inside the Rankings Section."
4012
  msgstr ""
4013
 
4014
+ #: models/CheckSeo.php:458
4015
  msgid ""
4016
  "As an SEO Star who worked hard on the pages and managed to optimize for "
4017
  "secondary keywords, you need to check if you get more results than you "
4018
  "expected."
4019
  msgstr ""
4020
 
4021
+ #: models/CheckSeo.php:469
4022
+ #, fuzzy
4023
+ #| msgid "Optimize for Keyword"
4024
  msgid "Fix SEO Images for your Focus Pages"
4025
+ msgstr "Schlüsselwort optimieren"
4026
 
4027
+ #: models/CheckSeo.php:470
4028
  msgid ""
4029
  "When it comes to image SEO, it's important to use relevant keywords to help "
4030
  "your page rank on search engines. So, make sure that your filename for one "
4032
  "to fix, and you'll get to practice an optimization tip worthy of an SEO star."
4033
  msgstr ""
4034
 
4035
+ #: models/CheckSeo.php:471
4036
  msgid ""
4037
  "Download a relevant image from your page. Change the filename. Then re-"
4038
  "upload with the SEO filename and add it your page's content again."
4039
  msgstr ""
4040
 
4041
+ #: models/CheckSeo.php:472
4042
  msgid ""
4043
  "Improve your Focus Page's chances of ranking with this quick trick that SEO "
4044
  "professionals use."
4045
  msgstr ""
4046
 
4047
+ # @ squirrly-seo
4048
+ #: models/CheckSeo.php:483
4049
+ #, fuzzy
4050
+ #| msgid "+ Add keyword"
4051
  msgid "Add Labels to Keywords in Briefcase"
4052
+ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
4053
 
4054
+ #: models/CheckSeo.php:484
4055
  msgid ""
4056
  "Users who use the Labels system in Briefcase have 60% more keywords ranked "
4057
  "in top 10 on Google than those who don't work with keywords in an organized "
4062
  "approach. It will help you with this."
4063
  msgstr ""
4064
 
4065
+ #: models/CheckSeo.php:485
4066
  #, php-format
4067
  msgid ""
4068
  "Go to %sSquirrly SEO > Research > Briefcase%s, and add Labels to your "
4070
  "current campaigns and strategy. "
4071
  msgstr ""
4072
 
4073
+ #: models/CheckSeo.php:486
4074
  msgid ""
4075
  "Improve your chances of getting more keywords ranked in top 10 of Google."
4076
  msgstr ""
4077
 
4078
+ #: models/CheckSeo.php:497
4079
+ #, fuzzy
4080
+ #| msgid "Optimize for Keyword"
4081
  msgid "Add more Ranking Power to your Focus Pages"
4082
+ msgstr "Schlüsselwort optimieren"
4083
 
4084
+ #: models/CheckSeo.php:498
4085
  msgid ""
4086
  "Links on the web are like votes, and the pages that receive more votes rank "
4087
  "higher. Since Focus Pages are the most important pages in your site, you "
4093
  "focus-pages-by-squirrly-success-with-focus-pages/[/link]"
4094
  msgstr ""
4095
 
4096
+ #: models/CheckSeo.php:499
4097
  msgid ""
4098
  "Link to your Focus Page from another page in your site. If you don't have a "
4099
  "page where you can link from, spend some time creating one. Re-index with "
4100
  "Google Search Console. "
4101
  msgstr ""
4102
 
4103
+ #: models/CheckSeo.php:500
4104
  msgid "Create 1 Inner Link to one of your Focus Pages"
4105
  msgstr ""
4106
 
4107
+ #: models/CheckSeo.php:511
4108
  msgid "Start tracking rankings for 3 keywords"
4109
  msgstr ""
4110
 
4111
+ #: models/CheckSeo.php:512
4112
  msgid ""
4113
  "Professional SEOs recognize the importance of tracking rankings as a way to "
4114
  "measure SEO success. As a future SEO star, it's important to measure the "
4116
  "strategy is not working."
4117
  msgstr ""
4118
 
4119
+ #: models/CheckSeo.php:513
4120
  #, php-format
4121
  msgid ""
4122
  "Get in the habit of tracking your rankings by adding three keywords to "
4126
  "the process for two more keywords."
4127
  msgstr ""
4128
 
4129
+ #: models/CheckSeo.php:514
4130
  msgid "Start tracking rankings for 3 keywords."
4131
  msgstr ""
4132
 
4133
+ #: models/CheckSeo.php:525
4134
  msgid "Increase your SEO skill set by building your keyword portfolio"
4135
  msgstr ""
4136
 
4137
+ #: models/CheckSeo.php:526
4138
  msgid ""
4139
  "Keyword research, both as a skill and as a practice, are critical to your "
4140
  "SEO success. You can't be an SEO master without it. Plus, according to new "
4147
  "section about Google and how much they care about keywords."
4148
  msgstr ""
4149
 
4150
+ #: models/CheckSeo.php:527
4151
  #, php-format
4152
  msgid ""
4153
  "Go to %sSquirrly SEO > Research%s, and begin doing research based on the "
4157
  "Briefcase. Do this until you have at least 10 keywords inside Briefcase."
4158
  msgstr ""
4159
 
4160
+ #: models/CheckSeo.php:528
4161
  msgid ""
4162
  "Create your keyword portfolio. Get at least 10 keywords inside the Briefcase "
4163
  "Section."
4164
  msgstr ""
4165
 
4166
+ #: models/CheckSeo.php:539
4167
  msgid "Avoid losing positions in search results"
4168
  msgstr ""
4169
 
4170
+ #: models/CheckSeo.php:540
4171
  msgid ""
4172
  "Make sure your Rankings won't drop because of duplicate content, duplicate "
4173
  "titles, empty titles, empty descriptions and more. SEO Experts and Non-SEO "
4176
  "section)"
4177
  msgstr ""
4178
 
4179
+ #: models/CheckSeo.php:541
4180
  #, php-format
4181
  msgid ""
4182
  "Go to %sSquirrly > SEO Settings > Automation%s and make sure that SEO "
4183
  "Patterns are activated."
4184
  msgstr ""
4185
 
4186
+ #: models/CheckSeo.php:542
4187
  msgid "Activate SEO Patterns, with Squirrly's site-wide SEO Automation."
4188
  msgstr ""
4189
 
4190
+ #: models/CheckSeo.php:553
4191
  msgid "Update Your Focus Pages Content Regularly"
4192
  msgstr ""
4193
 
4194
+ #: models/CheckSeo.php:554
4195
  msgid ""
4196
  "Google prefers to rank pages that have relevant, fresh content that is up-to-"
4197
  "date. Updating your content can also improve your click-through-rate, "
4200
  "resource, which will result in your page getting higher rankings."
4201
  msgstr ""
4202
 
4203
+ #: models/CheckSeo.php:555
4204
  msgid ""
4205
  "The most recent update date for your Focus Page Content needs to be in the "
4206
  "last 3 months. If it's not, then go and edit your page. Re-index with Google "
4207
  "Search Console when you are done."
4208
  msgstr ""
4209
 
4210
+ #: models/CheckSeo.php:556
4211
  msgid "Make Google love your Focus Pages by regularly updating content."
4212
  msgstr ""
4213
 
4214
+ #: models/CheckSeo.php:567
4215
+ #, fuzzy
4216
+ #| msgid "Optimize for Keyword"
4217
  msgid "Define Title and Description for your Focus Pages"
4218
+ msgstr "Schlüsselwort optimieren"
4219
 
4220
+ #: models/CheckSeo.php:568
4221
  #, php-format
4222
  msgid ""
4223
  "Titles and descriptions provide necessary information about the content of "
4228
  "your Focus Pages should have a defined title and meta description."
4229
  msgstr ""
4230
 
4231
+ #: models/CheckSeo.php:569
4232
  msgid ""
4233
  "Easily define titles and meta descriptions using the Snippet editor from "
4234
  "Squirrly SEO."
4235
  msgstr ""
4236
 
4237
+ #: models/CheckSeo.php:570
4238
  msgid ""
4239
  "Customize Title and Description for your Focus Pages to get more people to "
4240
  "click on your pages in SERPs."
4241
  msgstr ""
4242
 
4243
+ #: models/CheckSeo.php:581
4244
  #, fuzzy
4245
  #| msgid "Optimize for Keyword"
4246
  msgid "Optimize Twitter Cards for your Focus Pages"
4247
  msgstr "Schlüsselwort optimieren"
4248
 
4249
+ #: models/CheckSeo.php:582
4250
  msgid ""
4251
  "Twitter Cards are a great partner to your SEO strategy, as it helps you "
4252
  "stand out to Twitter users and thus increase engagement and CTR. Grab that "
4254
  "Focus Pages."
4255
  msgstr ""
4256
 
4257
+ #: models/CheckSeo.php:583
4258
  msgid ""
4259
  "Use the Snippet editor from Squirrly SEO to get all the Twitter Card "
4260
  "definition elements in place."
4261
  msgstr ""
4262
 
4263
+ #: models/CheckSeo.php:584
4264
+ #, fuzzy
4265
+ #| msgid "Optimize for Keyword"
4266
  msgid ""
4267
  "Optimize Twitter Cards for your Focus Pages to boost engagement and traffic."
4268
+ msgstr "Schlüsselwort optimieren"
4269
 
4270
+ #: models/CheckSeo.php:595
4271
  #, fuzzy
4272
  #| msgid "Optimize for Keyword"
4273
  msgid "Optimize Open Graph for your Focus Pages"
4274
  msgstr "Schlüsselwort optimieren"
4275
 
4276
+ #: models/CheckSeo.php:596
4277
  msgid ""
4278
  "Open Graph lets you control what content is displayed when your pages are "
4279
  "linked on social media, thus influencing your link's performance. If you "
4283
  "your keywords inside the OG definitions has been proven to also boost SEO."
4284
  msgstr ""
4285
 
4286
+ #: models/CheckSeo.php:597
4287
  msgid ""
4288
  "Use the Snippet editor from Squirrly SEO to get all the Open Graph "
4289
  "definition elements in place for your Focus Pages."
4290
  msgstr ""
4291
 
4292
+ #: models/CheckSeo.php:598
4293
  msgid ""
4294
  "Optimize Open Graph. Unless you do so, you're leaving how your Focus Pages "
4295
  "are shown on Facebook up to chance. (it's also bad for SEO)"
4296
  msgstr ""
4297
 
4298
+ #: models/CheckSeo.php:609
4299
  #, fuzzy
4300
  #| msgid "Optimize for Keyword"
4301
  msgid "Optimize Rich Snippets for your Focus Pages"
4302
  msgstr "Schlüsselwort optimieren"
4303
 
4304
+ #: models/CheckSeo.php:610
4305
  msgid ""
4306
  "JSON-LD, Rich Snippets, Schema implementation: this thing goes by many "
4307
  "different names, because nothing has been standardized. However, as an SEO "
4315
  "SEO Settings > JSON-LD."
4316
  msgstr ""
4317
 
4318
+ #: models/CheckSeo.php:611
4319
  msgid "Use the Snippet Editor from Squirrly SEO to get this done."
4320
  msgstr ""
4321
 
4322
+ #: models/CheckSeo.php:612
4323
  msgid "You need to have good definitions for JSON-LD."
4324
  msgstr ""
4325
 
4326
+ #: models/CheckSeo.php:623
4327
  msgid "Make your Focus Pages at least 1,500 words long"
4328
  msgstr ""
4329
 
4330
+ #: models/CheckSeo.php:624
4331
  msgid ""
4332
  "Research shows that the average Google first page result contains 1,890 "
4333
  "words. Plus, long-form content gets an average of 77.2% more links than "
4340
  "can score you easy wins."
4341
  msgstr ""
4342
 
4343
+ #: models/CheckSeo.php:625
4344
  msgid ""
4345
  "Edit the content on your Focus Pages to make it over 1,500 words long. Some "
4346
  "tips you can use here: [link]https://howto.squirrly.co/wordpress-seo/journey-"
4348
  "you're done."
4349
  msgstr ""
4350
 
4351
+ #: models/CheckSeo.php:626
4352
  msgid ""
4353
  "Make Google want to rank your Focus Pages on the 1st Page by making them at "
4354
  "least 1,500 words long."
4355
  msgstr ""
4356
 
4357
+ #: models/CheckSeo.php:637
4358
  msgid "Reach Perfect SEO Content optimizations for all Focus Pages"
4359
  msgstr ""
4360
 
4361
+ #: models/CheckSeo.php:638
4362
  msgid ""
4363
  "Expert SEOs don't settle for reaching 30%, 50% or 60% optimization level "
4364
  "when trying to get a page on the 1st page of Google. As a future SEO star, "
4366
  "gives you the best chances of rankings."
4367
  msgstr ""
4368
 
4369
+ #: models/CheckSeo.php:639
4370
  #, php-format
4371
  msgid ""
4372
  "Go to %sSquirrly > Focus Pages%s and look at the SEO Content column. Click "
4376
  "from the sidebar)."
4377
  msgstr ""
4378
 
4379
+ #: models/CheckSeo.php:640
4380
  msgid ""
4381
  "Reach Perfect SEO optimization level for your Focus Pages to master content "
4382
  "optimization."
4383
  msgstr ""
4384
 
4385
+ #: models/CheckSeo.php:651
4386
  msgid "Turn all marketing settings to GREEN"
4387
  msgstr ""
4388
 
4389
+ #: models/CheckSeo.php:652
4390
  msgid ""
4391
  "If you want to unleash the full marketing power of your WordPress site, then "
4392
  "you need to activate all the important marketing settings there are. This is "
4394
  "opportunities."
4395
  msgstr ""
4396
 
4397
+ #: models/CheckSeo.php:653
4398
  msgid ""
4399
  "Go to the SEO Settings section of Squirrly SEO. Click on the METAs section. "
4400
  "You'll see tasks appearing at the right of the screen. Look to the right of "
4403
  "turn it Green."
4404
  msgstr ""
4405
 
4406
+ #: models/CheckSeo.php:654
4407
  msgid ""
4408
  "Turn all sidebar (right sidebar) lights to GREEN for all SEO Settings "
4409
  "Sections."
4410
  msgstr ""
4411
 
4412
+ # @ squirrly-seo
4413
+ #: models/CheckSeo.php:665
4414
+ #, fuzzy
4415
+ #| msgid "Squirrly settings"
4416
  msgid "Raise Audit Score to Over 30%"
4417
+ msgstr "Squirrly Einstellungen"
4418
 
4419
+ #: models/CheckSeo.php:666
4420
  msgid ""
4421
  "Sites with Audit scores under 30% will have a very hard time ranking for "
4422
  "anything. Scores under 30 means the site doesn't have enough quality to be "
4423
  "deemed worthy of being found on the first page of Google."
4424
  msgstr ""
4425
 
4426
+ #: models/CheckSeo.php:667
4427
  #, php-format
4428
  msgid ""
4429
  "Go to %sSquirrly > Audits%s section and read all the Audit tasks where you "
4430
  "currently have problems. It tells you how to fix those problems."
4431
  msgstr ""
4432
 
4433
+ #: models/CheckSeo.php:668
4434
  msgid ""
4435
  "You need to get an Audit Score of over 30% as soon as possible, if you want "
4436
  "to avoid Google penalties."
4437
  msgstr ""
4438
 
4439
+ #: models/CheckSeo.php:678
4440
+ #, fuzzy
4441
+ #| msgid "Optimize for Keyword"
4442
  msgid "Reach 3 Inner Links for all your Focus Pages"
4443
+ msgstr "Schlüsselwort optimieren"
4444
 
4445
+ #: models/CheckSeo.php:679 models/CheckSeo.php:867
4446
  msgid ""
4447
  "Studies show that a strong internal linking structure yields higher rankings "
4448
  "and is an extremely effective SEO tactic. Wikipedia and StackOverflow are "
4459
  "managed to get its most important ranking increases from great inner links."
4460
  msgstr ""
4461
 
4462
+ #: models/CheckSeo.php:680
4463
  msgid ""
4464
  "Get at least three inner links to your Focus Pages from other pages in your "
4465
  "site. If you don't have enough pages where you can link from, spend some "
4467
  "page from which you sent the links)"
4468
  msgstr ""
4469
 
4470
+ #: models/CheckSeo.php:681 models/CheckSeo.php:869
4471
+ #, fuzzy
4472
+ #| msgid "Optimize for Keyword"
4473
  msgid "Add more ranking power to your Focus Pages."
4474
+ msgstr "Schlüsselwort optimieren"
4475
 
4476
+ #: models/CheckSeo.php:692
4477
  msgid "Get Minimum 10 Visitors / Day to Your Focus Pages"
4478
  msgstr ""
4479
 
4480
+ #: models/CheckSeo.php:693 models/CheckSeo.php:945 models/CheckSeo.php:997
4481
  msgid ""
4482
  "You need to make sure that your Focus Pages become more popular and take "
4483
  "action so that more people start seeing it. Google measures many aspects. If "
4485
  "if your page is actually any good."
4486
  msgstr ""
4487
 
4488
+ #: models/CheckSeo.php:694 models/CheckSeo.php:946 models/CheckSeo.php:998
4489
  msgid ""
4490
  "Start promoting your Focus Pages on your social media channels, send it to "
4491
  "your email subscribers, answer relevant questions on Quora and include a "
4494
  "seo/kit[/link]"
4495
  msgstr ""
4496
 
4497
+ #: models/CheckSeo.php:695 models/CheckSeo.php:947 models/CheckSeo.php:999
4498
  msgid ""
4499
  "Improve visibility for your Focus Pages. Bring in more traffic. Otherwise, "
4500
  "it will be hard to keep ranking higher."
4501
  msgstr ""
4502
 
4503
  # @ squirrly-seo
4504
+ #: models/CheckSeo.php:705
4505
  #, fuzzy
4506
  #| msgid "Description:"
4507
  msgid "No Duplicate Titles"
4508
  msgstr "Beschreibung:"
4509
 
4510
+ #: models/CheckSeo.php:706
4511
  msgid ""
4512
  "Currently, the theme or a 3rd party plugin inside your WordPress site "
4513
  "manages to bypass Squirrly's duplicate remover feature. It keeps duplicating "
4514
  "the title tag inside the source code. You need to start deactivating all "
4515
  "plugins, except Squirrly SEO, until you find the one causing this problem. "
4516
+ "You can use the run new scan button here in Next SEO Goals to see if the "
4517
  "problem persists."
4518
  msgstr ""
4519
 
4520
+ #: models/CheckSeo.php:707
4521
  msgid ""
4522
  "Track down the plugin or theme setting which causes the duplication. Make it "
4523
  "unable to place title tags."
4524
  msgstr ""
4525
 
4526
+ #: models/CheckSeo.php:708
4527
  msgid "Make sure you don't have any more duplicate titles in your pages."
4528
  msgstr ""
4529
 
4530
  # @ squirrly-seo
4531
+ #: models/CheckSeo.php:719
4532
  #, fuzzy
4533
  #| msgid "Description:"
4534
  msgid "No Duplicate Descriptions"
4535
  msgstr "Beschreibung:"
4536
 
4537
+ #: models/CheckSeo.php:720
4538
  msgid ""
4539
  "Currently, the theme or a 3rd party plugin inside your WordPress site "
4540
  "manages to bypass Squirrly's duplicate remover feature. It keeps duplicating "
4541
  "the meta description tag inside the source code. You need to start "
4542
  "deactivating all plugins, except Squirrly SEO, until you find the one "
4543
+ "causing this problem. You can use the run new scan button here in Next SEO "
4544
  "Goals to see if the problem persists."
4545
  msgstr ""
4546
 
4547
+ #: models/CheckSeo.php:721
4548
  msgid ""
4549
  "Track down the plugin or theme setting which causes the duplication. Make it "
4550
  "unable to place meta description tags."
4551
  msgstr ""
4552
 
4553
+ #: models/CheckSeo.php:722
4554
  msgid "Make sure you don't have any more duplicate descriptions in your pages."
4555
  msgstr ""
4556
 
4557
  # @ squirrly-seo
4558
+ #: models/CheckSeo.php:733
4559
  #, fuzzy
4560
  #| msgid "Description:"
4561
  msgid "No Empty Titles"
4562
  msgstr "Beschreibung:"
4563
 
4564
+ #: models/CheckSeo.php:734
4565
  msgid ""
4566
  "Google doesn't want to place sites with coding problems up in the first "
4567
  "positions. Sure, the search engine is smart enough to generate the title on "
4568
  "its own, based on the content inside the URL, but it's still a bad practice."
4569
  msgstr ""
4570
 
4571
+ #: models/CheckSeo.php:735 models/CheckSeo.php:749
4572
  #, php-format
4573
  msgid ""
4574
  "Fix this using Squirrly SEO. Find more help in the %sSquirrly > SEO Settings"
4575
  "%s section."
4576
  msgstr ""
4577
 
4578
+ #: models/CheckSeo.php:736 models/CheckSeo.php:750
4579
  msgid ""
4580
  "Make sure you avoid having pages with Empty Titles and Empty Descriptions. "
4581
  "Otherwise, your rankings will suffer."
4582
  msgstr ""
4583
 
4584
  # @ squirrly-seo
4585
+ #: models/CheckSeo.php:747
4586
  #, fuzzy
4587
  #| msgid "Description:"
4588
  msgid "No Empty Descriptions"
4589
  msgstr "Beschreibung:"
4590
 
4591
+ #: models/CheckSeo.php:748
4592
  msgid ""
4593
  "Google doesn't want to place sites with coding problems up in the first "
4594
  "positions. Sure, the search engine is smart enough to generate the "
4596
  "a bad practice."
4597
  msgstr ""
4598
 
4599
+ #: models/CheckSeo.php:761
4600
  msgid "Fix Duplicate Content Issues on your site (across multiple pages)"
4601
  msgstr ""
4602
 
4603
+ #: models/CheckSeo.php:762
4604
  msgid ""
4605
  "Having duplicate content in your site will negatively impact your Search "
4606
  "Engine Rankings and traffic. Therefore, you need to make sure you don't have "
4610
  "types of duplicate content."
4611
  msgstr ""
4612
 
4613
+ #: models/CheckSeo.php:763
4614
  msgid ""
4615
  "Check your most recent Squirrly Audit to see which of your pages have "
4616
  "duplicate content."
4617
  msgstr ""
4618
 
4619
+ #: models/CheckSeo.php:764
4620
  msgid ""
4621
  "Fix Duplicate Content. You're at risk of suffering rankings and traffic "
4622
  "losses due to duplicate content on your site."
4623
  msgstr ""
4624
 
4625
+ # @ squirrly-seo
4626
+ #: models/CheckSeo.php:775
4627
+ #, fuzzy
4628
+ #| msgid "Images"
4629
  msgid "Improve SEO Speed"
4630
+ msgstr "Bilder"
4631
 
4632
+ #: models/CheckSeo.php:776
4633
  msgid ""
4634
  "Pages that rank at the top of Google’s first page tend to load significantly "
4635
  "faster compared to pages that rank on the bottom of page 1. If you want to "
4638
  "they offer for free to Squirrly users."
4639
  msgstr ""
4640
 
4641
+ #: models/CheckSeo.php:777
4642
  msgid ""
4643
  "Using a tool like ShortPixel to reduce your image sizes will help improve "
4644
  "SEO speed."
4645
  msgstr ""
4646
 
4647
+ #: models/CheckSeo.php:778
4648
  msgid "Make sure your Focus Pages load fast to improve your rankings."
4649
  msgstr ""
4650
 
4651
+ #: models/CheckSeo.php:788
4652
+ #, fuzzy
4653
+ #| msgid "Optimize for Keyword"
4654
  msgid "Reduce Bounce Rate for your Focus Pages"
4655
+ msgstr "Schlüsselwort optimieren"
4656
 
4657
+ #: models/CheckSeo.php:789
4658
  msgid ""
4659
  "A high bounce rate generally indicates that your pages aren't relevant to "
4660
  "your visitors. And since Google is all about serving its users results that "
4666
  "visitors coming don’t have a good user experience."
4667
  msgstr ""
4668
 
4669
+ #: models/CheckSeo.php:790
4670
  msgid ""
4671
  "Try reducing your bounce rate by: formatting your content better to improve "
4672
  "readability, including a video, removing pop-ups that disrupt visitors' "
4675
  "[/link]"
4676
  msgstr ""
4677
 
4678
+ #: models/CheckSeo.php:791
4679
  msgid "Reduce bounce rate for your Focus Pages to improve search performance."
4680
  msgstr ""
4681
 
4682
+ #: models/CheckSeo.php:801
4683
  msgid "Time on Page for All Focus Pages: 1 minute average"
4684
  msgstr ""
4685
 
4686
+ #: models/CheckSeo.php:802
4687
  msgid ""
4688
  "If your pages consistently keep people on them for longer than average, the "
4689
  "Google algorithm will adjust the search results to favor your site, because "
4695
  "enough time on the page."
4696
  msgstr ""
4697
 
4698
+ #: models/CheckSeo.php:803
4699
  msgid ""
4700
  "Try these tactics to keep visitors on your page for longer: Embed a video or "
4701
  "two, add more visuals to make your page more attractive, format your content "
4704
  "such as polls or quizzes."
4705
  msgstr ""
4706
 
4707
+ #: models/CheckSeo.php:804
4708
  msgid "Keep visitors on your Focus Pages for longer to boost rankings"
4709
  msgstr ""
4710
 
4711
+ #: models/CheckSeo.php:814
4712
  msgid "Reach 20 Social Media Shares for Each of Your Focus Pages"
4713
  msgstr ""
4714
 
4715
+ #: models/CheckSeo.php:815
4716
  msgid ""
4717
  "Studies have shown there is a high correlation between social signals and "
4718
  "ranking position. In one case study, a company achieved over 130,000 "
4724
  "you can for your Focus Pages from trackable sources."
4725
  msgstr ""
4726
 
4727
+ #: models/CheckSeo.php:816
4728
  msgid ""
4729
  "Try these tactics to reach at least 20 social media shares for each one of "
4730
  "your Focus Pages: Share your content multiple times using different captions "
4735
  "10,000 Visits from Social Media course on Education Cloud."
4736
  msgstr ""
4737
 
4738
+ #: models/CheckSeo.php:817
4739
  msgid ""
4740
  "Get at least 20 social media shares for each one of your Focus Pages. It's "
4741
  "hard to rank a page that doesn't get shared to social media sites."
4742
  msgstr ""
4743
 
4744
+ #: models/CheckSeo.php:827
4745
  msgid "Raise Authority Level Over 12 for all Focus Pages"
4746
  msgstr ""
4747
 
4748
+ #: models/CheckSeo.php:828 models/CheckSeo.php:919
4749
  msgid ""
4750
  "Page authority is a metric that Squirrly's servers calculates according to "
4751
  "data from different API, our own crawling and also SML (Squirrly Machine "
4757
  "your own site) and social media information."
4758
  msgstr ""
4759
 
4760
+ #: models/CheckSeo.php:830
4761
  msgid ""
4762
  "Raise your Page Authority to over 12 for all Focus Pages. Otherwise, it will "
4763
  "be nearly impossible for those pages to reach top positions on Google."
4764
  msgstr ""
4765
 
4766
+ #: models/CheckSeo.php:840
4767
  msgid "Try a different Title and Description for the Focus Pages with low CTR"
4768
  msgstr ""
4769
 
4770
+ #: models/CheckSeo.php:841
4771
  msgid ""
4772
  "Google keeps track of which links get clicked the most in their search "
4773
  "results. Links that get clicked more often are moved up higher in the search "
4777
  "change that; and get more people clicking."
4778
  msgstr ""
4779
 
4780
+ #: models/CheckSeo.php:842
4781
  msgid ""
4782
  "Tips to improve your CTR: include your keyword in your description, use How-"
4783
  "To and numbers in your titles as many people are drawn to them, make sure "
4785
  "gives people an extra incentive to click on your link."
4786
  msgstr ""
4787
 
4788
+ #: models/CheckSeo.php:843
4789
  msgid ""
4790
  "Change the title and description to get more SERP clicks for your Focus "
4791
  "Pages (the ones where you see low CTR)"
4792
  msgstr ""
4793
 
4794
  # @ squirrly-seo
4795
+ #: models/CheckSeo.php:853
4796
  #, fuzzy
4797
  #| msgid "Squirrly settings"
4798
  msgid "Audit Score is Over 50%"
4799
  msgstr "Squirrly Einstellungen"
4800
 
4801
+ #: models/CheckSeo.php:854
4802
  msgid ""
4803
  "The Squirrly Audit covers the main aspects that influence a site's "
4804
  "performance. Plus, your SEO and digital marketing expertise will increase as "
4806
  "score over 50 to have good chances of ranking high on Google."
4807
  msgstr ""
4808
 
4809
+ #: models/CheckSeo.php:855
4810
  #, php-format
4811
  msgid ""
4812
  "Open up your Audit from %sSquirrly > Audits%s. Open one of the audits, or "
4815
  "score (find them on the right sidebar)."
4816
  msgstr ""
4817
 
4818
+ #: models/CheckSeo.php:856 models/CheckSeo.php:934
4819
  msgid ""
4820
  "Improve the score of your Audit to have a good chance of ranking high on "
4821
  "Google."
4822
  msgstr ""
4823
 
4824
+ #: models/CheckSeo.php:866
4825
+ #, fuzzy
4826
+ #| msgid "Optimize for Keyword"
4827
  msgid "Reach 5 Inner Links for all your Focus Pages"
4828
+ msgstr "Schlüsselwort optimieren"
4829
 
4830
+ #: models/CheckSeo.php:868
4831
  msgid ""
4832
  "Get at least five inner links to your Focus Pages from other pages in your "
4833
  "site. If you don't have enough pages where you can link from, spend some "
4835
  "page from which you sent the links)"
4836
  msgstr ""
4837
 
4838
+ #: models/CheckSeo.php:879
4839
  msgid "Time on Page for All Focus Pages: 1.5 minute average"
4840
  msgstr ""
4841
 
4842
+ #: models/CheckSeo.php:880
4843
  msgid ""
4844
  "If your pages consistently keep people on them for longer than average, the "
4845
  "Google algorithm will adjust the search results to favor your site, because "
4857
  "improve the accuracy of the Time on Page readings."
4858
  msgstr ""
4859
 
4860
+ #: models/CheckSeo.php:881
4861
  msgid ""
4862
  "Try these tactics to keep visitors on your page for longer: Embed a video or "
4863
  "two, add more visuals to make your page more attractive, format your content "
4865
  "what visitors expect to get from it."
4866
  msgstr ""
4867
 
4868
+ #: models/CheckSeo.php:882
4869
  msgid "Keep visitors on your Focus Pages for longer to boost rankings."
4870
  msgstr ""
4871
 
4872
+ #: models/CheckSeo.php:892
4873
  msgid "Get At Least 10 referring domains"
4874
  msgstr ""
4875
 
4876
+ #: models/CheckSeo.php:893 models/CheckSeo.php:984
4877
  msgid ""
4878
  "If you want more organic traffic, backlinks and referring domains are "
4879
  "critical. Research has shown that the vast majority of pages (of analyzed ~ "
4882
  "domains and the amount of search traffic the target web page receives."
4883
  msgstr ""
4884
 
4885
+ #: models/CheckSeo.php:894
4886
  msgid ""
4887
  "Find more websites that can send links to your own site. You need to get "
4888
  "links to our site from at least 10 other domains from the web. You can run "
4890
  "kind of website."
4891
  msgstr ""
4892
 
4893
+ #: models/CheckSeo.php:895
4894
  msgid "Get at least 10 referring domains to get more traffic."
4895
  msgstr ""
4896
 
4897
+ #: models/CheckSeo.php:905
4898
  msgid "Reach 40 Social Media Shares for Each of Your Focus Pages"
4899
  msgstr ""
4900
 
4901
+ #: models/CheckSeo.php:906
4902
  msgid ""
4903
  "Try these tactics to reach at least 40 social media shares for each one of "
4904
  "your Focus Pages: Share your content multiple times using different captions "
4909
  "from Social Media course on Education Cloud."
4910
  msgstr ""
4911
 
4912
+ #: models/CheckSeo.php:907
4913
  msgid ""
4914
  "Studies have shown there is a high correlation between social signals and "
4915
  "ranking position. In one case study, a company achieved over 130,000 "
4921
  "media shares as you can for your Focus Pages from trackable sources."
4922
  msgstr ""
4923
 
4924
+ #: models/CheckSeo.php:908
4925
  msgid ""
4926
  "Get at least 40 social media shares for each one of your Focus Pages. It's "
4927
  "hard to rank a page that doesn't get shared to social media sites."
4928
  msgstr ""
4929
 
4930
+ #: models/CheckSeo.php:918
4931
  msgid "Raise Authority Level to Over 20 for all Focus Pages"
4932
  msgstr ""
4933
 
4934
+ #: models/CheckSeo.php:921
4935
  msgid ""
4936
  "Raise your Page Authority to over 20 for all Focus Pages. Otherwise, it will "
4937
  "be nearly impossible for those pages to reach top positions on Google."
4938
  msgstr ""
4939
 
4940
  # @ squirrly-seo
4941
+ #: models/CheckSeo.php:931
4942
  #, fuzzy
4943
  #| msgid "Squirrly settings"
4944
  msgid "Audit Score is Over 70%"
4945
  msgstr "Squirrly Einstellungen"
4946
 
4947
+ #: models/CheckSeo.php:932
4948
  msgid ""
4949
  "The Squirrly Audit covers the main aspects that influence a site's "
4950
  "performance. Plus, your SEO and digital marketing expertise will increase as "
4952
  "score over 70 to have good chances of ranking high on Google."
4953
  msgstr ""
4954
 
4955
+ #: models/CheckSeo.php:933
4956
  #, php-format
4957
  msgid ""
4958
  "Open up your Audit from %sSquirrly > SEO Audit%s. Open one of the audits, or "
4961
  "score (find them on the right sidebar)."
4962
  msgstr ""
4963
 
4964
+ #: models/CheckSeo.php:944
4965
  msgid "Get Minimum 30 Visitors / Day to Your Focus Pages"
4966
  msgstr ""
4967
 
4968
+ #: models/CheckSeo.php:957
4969
  msgid "Reach Time on Page for All Focus Pages: 2 minute average"
4970
  msgstr ""
4971
 
4972
+ #: models/CheckSeo.php:958
4973
  msgid ""
4974
  "If your pages consistently keep people on them for longer than average, the "
4975
  "Google algorithm will adjust the search results to favor your site, because "
4980
  "that. Average time on page is one of the most important signals for Google."
4981
  msgstr ""
4982
 
4983
+ #: models/CheckSeo.php:959
4984
  msgid ""
4985
  "Experiment with interactive content such as polls or quizzes to keep "
4986
  "visitors on your site for longer, or make your content longer, if the topic "
4988
  "traffic sources can contribute to low time on page. "
4989
  msgstr ""
4990
 
4991
+ #: models/CheckSeo.php:960
4992
  msgid ""
4993
  "Keep visitors on your Focus Pages for at least 2 minutes (on average) to "
4994
  "boost rankings. Keeping people over 2 minutes sends clear signals to Google "
4995
  "that people love your pages."
4996
  msgstr ""
4997
 
4998
+ #: models/CheckSeo.php:970
4999
  msgid "Get at least 20 referring domains"
5000
  msgstr ""
5001
 
5002
+ #: models/CheckSeo.php:971
5003
  msgid ""
5004
  "If you want more organic traffic, backlinks and referring domains are "
5005
  "critical. Research has shown that the vast majority of pages (of analyzed ~ "
5008
  "domains and the amount of search traffic the target web page receives. "
5009
  msgstr ""
5010
 
5011
+ #: models/CheckSeo.php:972
5012
  msgid ""
5013
  "Find more websites that can send links to your own site. You need to get "
5014
  "links to our site from at least 20 other domains from the web. You can run "
5016
  "kind of website."
5017
  msgstr ""
5018
 
5019
+ #: models/CheckSeo.php:973
5020
  msgid "Get at least 20 referring domains to get more traffic."
5021
  msgstr ""
5022
 
5023
+ #: models/CheckSeo.php:983
5024
  msgid "Get at least 30 referring domains"
5025
  msgstr ""
5026
 
5027
+ #: models/CheckSeo.php:985
5028
  msgid ""
5029
  "Find more websites that can send links to your own site. You need to get "
5030
  "links to our site from at least 30 other domains from the web. You can run "
5032
  "kind of website."
5033
  msgstr ""
5034
 
5035
+ #: models/CheckSeo.php:986
5036
  msgid "Get at least 30 reffering domains to get more traffic"
5037
  msgstr ""
5038
 
5039
+ #: models/CheckSeo.php:996
5040
  msgid "Get Minimum 70 Visitors / Day to Your Focus Pages"
5041
  msgstr ""
5042
 
5043
+ #: models/CheckSeo.php:1009
5044
  msgid "Raise Authority Level to Over 35 for all Focus Pages"
5045
  msgstr ""
5046
 
5047
+ #: models/CheckSeo.php:1010
5048
  msgid ""
5049
  "Page authority is a metric that Squirrly's servers calculate according to "
5050
  "data from different API, our own crawling and also SML (Squirrly Machine "
5056
  "your own site) and social media information."
5057
  msgstr ""
5058
 
5059
+ #: models/CheckSeo.php:1012
5060
  msgid ""
5061
  "Raise your Page Authority to over 35 for all Focus Pages. Do this and Google "
5062
  "will start rewarding you with much better visibility on the search engine."
5063
  msgstr ""
5064
 
5065
+ #: models/CheckSeo.php:1022
5066
  msgid "Get at least 1 Backlink for every Focus Page"
5067
  msgstr ""
5068
 
5069
+ #: models/CheckSeo.php:1023 models/CheckSeo.php:1036
5070
  msgid ""
5071
  "A very easy way to reach this goal is to get a Squirrly SPY report "
5072
  "[link]https://squirrly.co/seo/spy/[/link] or something similar for your "
5076
  "well, and also link to YOUR site."
5077
  msgstr ""
5078
 
5079
+ #: models/CheckSeo.php:1024
5080
  msgid ""
5081
  "Get 1 Backlink for each Focus Page. The 'PRO Ranking Tournament' course "
5082
  "inside Education Cloud by Squirrly has many ideas in lesson 8. These ideas "
5083
  "will help you get backlinks."
5084
  msgstr ""
5085
 
5086
+ #: models/CheckSeo.php:1025
5087
  msgid ""
5088
  "Get 1 Backlink (minimum) for each of your Focus Pages. Otherwise, it's "
5089
  "pretty improbable that you will manage to reach top positions."
5090
  msgstr ""
5091
 
5092
+ #: models/CheckSeo.php:1035
5093
+ #, fuzzy
5094
+ #| msgid "Optimize for Keyword"
5095
  msgid "Get 10 Backlinks to your Focus Pages"
5096
+ msgstr "Schlüsselwort optimieren"
5097
 
5098
+ #: models/CheckSeo.php:1037
5099
  msgid ""
5100
  "Get 10 Backlinks for each Focus Page. The 'PRO Ranking Tournament' course "
5101
  "inside Education Cloud by Squirrly has many ideas in lesson 8. These ideas "
5102
  "will help you get backlinks."
5103
  msgstr ""
5104
 
5105
+ #: models/CheckSeo.php:1038
5106
  msgid ""
5107
  "Reach over 10 Backlinks for each of your Focus Pages. Otherwise, it's pretty "
5108
  "improbable that you will manage to reach top positions."
5109
  msgstr ""
5110
 
5111
+ #: models/CheckSeo.php:1048
5112
  msgid "Help us with a positive review on WordPress."
5113
  msgstr ""
5114
 
5115
+ #: models/CheckSeo.php:1049
5116
  msgid "Help us keep the Squirrly SEO plugin free with so many free features."
5117
  msgstr ""
5118
 
5119
+ #: models/CheckSeo.php:1050
5120
  #, php-format
5121
  msgid ""
5122
  "Go to %sWordPress Directory%s and write a short positive review for us if "
5123
  "you like the plugin."
5124
  msgstr ""
5125
 
5126
+ #: models/CheckSeo.php:1063 models/CheckSeo.php:1095
5127
+ #, fuzzy
5128
+ #| msgid "Optimize for Keyword"
5129
  msgid "You got better Traffic to your Focus Pages"
5130
+ msgstr "Schlüsselwort optimieren"
5131
 
5132
+ #: models/CheckSeo.php:1071 models/CheckSeo.php:1079
5133
+ #, fuzzy
5134
+ #| msgid "Optimize for Keyword"
5135
  msgid "You got better Ranking to your Focus Pages"
5136
+ msgstr "Schlüsselwort optimieren"
5137
 
5138
+ #: models/CheckSeo.php:1087
5139
+ #, fuzzy
5140
+ #| msgid "Optimize for Keyword"
5141
  msgid "You got better Time On Page to your Focus Pages"
5142
+ msgstr "Schlüsselwort optimieren"
5143
 
5144
+ #: models/CheckSeo.php:1103
5145
+ #, fuzzy
5146
+ #| msgid "Optimize for Keyword"
5147
  msgid "You got better Authority to your Focus Pages"
5148
+ msgstr "Schlüsselwort optimieren"
5149
 
5150
+ #: models/CheckSeo.php:1111
5151
+ #, fuzzy
5152
+ #| msgid "Optimize for Keyword"
5153
  msgid "You got better Social Signals to your Focus Pages"
5154
+ msgstr "Schlüsselwort optimieren"
5155
 
5156
+ #: models/CheckSeo.php:1119
5157
+ #, fuzzy
5158
+ #| msgid "Optimize for Keyword"
5159
  msgid "You got better Loading Speed to your Focus Pages"
5160
+ msgstr "Schlüsselwort optimieren"
5161
 
5162
+ #: models/CheckSeo.php:1127 models/CheckSeo.php:1135 models/CheckSeo.php:1143
5163
  msgid "You got better Ranking for your Keywords"
5164
  msgstr ""
5165
 
5166
+ #: models/CheckSeo.php:1151
5167
  msgid "You got better Score for your Audit"
5168
  msgstr ""
5169
 
5170
  # @ squirrly-seo
5171
+ #: models/CheckSeo.php:1458
5172
  #, fuzzy
5173
  #| msgid "Could not send the email..."
5174
  msgid "Could not verify the frontend."
5175
  msgstr "Konnte E-Mail nicht senden ..."
5176
 
5177
+ #: models/CheckSeo.php:1826
5178
  msgid "'Just another WordPress site'"
5179
  msgstr ""
5180
 
5181
+ #: models/CheckSeo.php:1827
5182
  msgid "Just another WordPress site"
5183
  msgstr ""
5184
 
5185
+ #: models/CheckSeo.php:1977
5186
  #, php-format
5187
  msgid "Focus Page was not found (error %s)"
5188
  msgstr ""
5189
 
5190
+ #: models/CheckSeo.php:1978 models/CheckSeo.php:2030
5191
  msgid ""
5192
  "The way your WordPress site is currently hosted can affect the way Squirrly "
5193
  "SEO operates in order to retrieve and process data about your Focus Pages. "
5195
  "audits can be generated by our system."
5196
  msgstr ""
5197
 
5198
+ #: models/CheckSeo.php:1979 models/CheckSeo.php:1998
5199
  msgid ""
5200
  "Use a different browser to check if your Focus Page is visible. Whitelist "
5201
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
5202
  "page so that you’ll receive a full audit."
5203
  msgstr ""
5204
 
5205
+ #: models/CheckSeo.php:1980 models/CheckSeo.php:2032
5206
  msgid "An error is preventing Squirrly from processing your Focus Page audits."
5207
  msgstr ""
5208
 
5209
+ #: models/CheckSeo.php:1987
5210
  #, php-format
5211
  msgid "Your Focus Page is redirected to another page (error %s)"
5212
  msgstr ""
5213
 
5214
+ #: models/CheckSeo.php:1988
5215
  #, php-format
5216
  msgid ""
5217
  "Right now, your Focus Page sends users and search engines to a different URL "
5223
  "operates."
5224
  msgstr ""
5225
 
5226
+ #: models/CheckSeo.php:1989
5227
  msgid ""
5228
  "Choose a page that does NOT redirect to a different page as your Focus Page. "
5229
  "Your Focus Page should have a single URL associated to it so that Squirrly "
5230
  "can serve you the best data."
5231
  msgstr ""
5232
 
5233
+ #: models/CheckSeo.php:1990
5234
  msgid "Make sure that your Focus Page is NOT redirected to a different page."
5235
  msgstr ""
5236
 
5237
+ #: models/CheckSeo.php:1996
5238
  #, php-format
5239
  msgid "Ensure your Focus Pages can be accessed (error %s)"
5240
  msgstr ""
5241
 
5242
+ #: models/CheckSeo.php:1997
5243
  #, php-format
5244
  msgid ""
5245
  "A server-side error is preventing Squirrly from being able to access and "
5249
  "page, which is a critical issue."
5250
  msgstr ""
5251
 
5252
+ #: models/CheckSeo.php:1999
5253
  msgid "A server-side error is preventing your Focus Pages from being accessed."
5254
  msgstr ""
5255
 
5256
+ #: models/CheckSeo.php:2004
5257
  #, php-format
5258
  msgid "Make sure your Focus Pages can be audited (error %s)"
5259
  msgstr ""
5260
 
5261
+ #: models/CheckSeo.php:2005
5262
  msgid ""
5263
  "Squirrly is unable to generate the audit for your Focus Page because it "
5264
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
5266
  "Squirrly’s IP address."
5267
  msgstr ""
5268
 
5269
+ #: models/CheckSeo.php:2006
5270
  msgid ""
5271
  "Check to see if your WordPress site’s server is offline. Whitelist our "
5272
  "crawler IP address (176.9.112.210) to allow our server to verify your page "
5273
  "so that you’ll receive a full audit."
5274
  msgstr ""
5275
 
5276
+ #: models/CheckSeo.php:2007 models/CheckSeo.php:2015
5277
  msgid ""
5278
  "An error prevents Squirrly from gathering critical data about your Focus "
5279
  "Page."
5280
  msgstr ""
5281
 
5282
+ #: models/CheckSeo.php:2012
5283
  msgid "Make sure your Focus Pages can be audited (firewall protection)"
5284
  msgstr ""
5285
 
5286
+ #: models/CheckSeo.php:2013
5287
  msgid ""
5288
  "Squirrly is unable to generate the audit for your Focus Page because it "
5289
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
5290
  "server has a firewall protection and is blocking Squirrly’s IP address."
5291
  msgstr ""
5292
 
5293
+ #: models/CheckSeo.php:2014 models/CheckSeo.php:2031
5294
  msgid ""
5295
  "Whitelist our crawler IP address (176.9.112.210) to allow our server to "
5296
  "verify your page so that you’ll receive a full audit."
5297
  msgstr ""
5298
 
5299
+ #: models/CheckSeo.php:2020
5300
+ msgid "Focus Pages - Limit Exceeded"
5301
+ msgstr ""
5302
+
5303
+ #: models/CheckSeo.php:2021
5304
+ msgid ""
5305
+ "Squirrly is unable to generate the audit for your Focus Page because you "
5306
+ "exceeded the maximum number of Focus Pages for your account."
5307
+ msgstr ""
5308
+
5309
+ # @ squirrly-seo
5310
+ #: models/CheckSeo.php:2022
5311
+ #, fuzzy
5312
+ #| msgid "Could not send the email..."
5313
+ msgid "Upgrade your account to be able to see all the Focus Pages you added."
5314
+ msgstr "Konnte E-Mail nicht senden ..."
5315
+
5316
+ #: models/CheckSeo.php:2029
5317
  #, php-format
5318
  msgid "Focus Page could not be verified (error: %s)"
5319
  msgstr ""
5320
 
5321
  # @ squirrly-seo
5322
+ #: models/FocusPages.php:20 models/abstract/Assistant.php:87
5323
+ #: view/Ranking/Gscsync.php:32 view/Ranking/Rankings.php:218
5324
+ #: view/Ranking/Rankings.php:356 view/Research/Briefcase.php:109
5325
+ #: view/Research/Briefcase.php:299 view/Research/History.php:30
5326
+ #: view/Research/HistoryDetails.php:8 view/Research/Research.php:200
5327
+ #: view/Research/Suggested.php:29
 
 
 
 
5328
  #, fuzzy
5329
  #| msgid "Keyword:"
5330
  msgid "Keyword"
5331
  msgstr "Schlüsselwort:"
5332
 
5333
+ #: models/FocusPages.php:21
5334
  msgid "Strategy"
5335
  msgstr ""
5336
 
5337
  # @ squirrly-seo
5338
+ #: models/FocusPages.php:22
5339
  #, fuzzy
5340
  #| msgid "SEO Software"
5341
  msgid "SEO Content"
5342
  msgstr "SEO Software"
5343
 
5344
+ # @ squirrly-seo
5345
+ #: models/FocusPages.php:23
5346
+ #, fuzzy
5347
+ #| msgid "Save settings"
5348
  msgid "Words / Page"
5349
+ msgstr "Einstellungen speichern"
5350
 
5351
+ #: models/FocusPages.php:24
5352
  msgid "Platform SEO"
5353
  msgstr ""
5354
 
5355
+ # @ squirrly-seo
5356
+ #: models/FocusPages.php:25
5357
+ #, fuzzy
5358
+ #| msgid "Squirrly LIVE SEO assistant"
5359
  msgid "Snippet"
5360
+ msgstr "Squirrly LIVE SEO-Assistent"
5361
 
5362
  # @ squirrly-seo
5363
+ #: models/FocusPages.php:26
5364
  #, fuzzy
5365
  #| msgid "Images"
5366
  msgid "SEO Image"
5367
  msgstr "Bilder"
5368
 
5369
+ #: models/FocusPages.php:27
5370
  msgid "Traffic Health"
5371
  msgstr ""
5372
 
5373
+ #: models/FocusPages.php:28
5374
  msgid "Platform Health"
5375
  msgstr ""
5376
 
5377
+ #: models/FocusPages.php:30
5378
  msgid "Social Signals"
5379
  msgstr ""
5380
 
5381
+ #: models/FocusPages.php:31
5382
  msgid "Backlinks"
5383
  msgstr ""
5384
 
5385
+ # @ squirrly-seo
5386
+ #: models/FocusPages.php:32
5387
+ #, fuzzy
5388
+ #| msgid "Insert it!"
5389
  msgid "Inner Links"
5390
+ msgstr "Einfügen!"
5391
 
5392
+ #: models/FocusPages.php:33
5393
  msgid "Outbound Links"
5394
  msgstr ""
5395
 
5396
+ #: models/FocusPages.php:34
5397
  msgid "Accuracy"
5398
  msgstr ""
5399
 
5400
+ #: models/FocusPages.php:35 view/Ranking/Gscsync.php:35
5401
  msgid "CTR"
5402
  msgstr ""
5403
 
5404
+ #: models/FocusPages.php:36 view/Ranking/Gscsync.php:34
5405
+ #: view/Ranking/Rankings.php:370
5406
  msgid "Impressions"
5407
  msgstr ""
5408
 
5409
+ #: models/FocusPages.php:37 view/Ranking/Gscsync.php:33
5410
+ #: view/Ranking/Rankings.php:376
5411
  msgid "Clicks"
5412
  msgstr ""
5413
 
5446
  msgid "The favicon has been updated."
5447
  msgstr "Das Favicon wurde aktualisiert."
5448
 
5449
+ #: models/Menu.php:110 models/Menu.php:510
5450
  msgid "First Step"
5451
  msgstr ""
5452
 
5453
+ #: models/Menu.php:110 models/Menu.php:111 models/Menu.php:374
5454
+ #: view/Blocks/Toolbar.php:42
5455
  msgid "Overview"
5456
  msgstr ""
5457
 
5458
  # @ squirrly-seo
5459
+ #: models/Menu.php:122 models/Menu.php:123
5460
+ #, fuzzy
5461
+ #| msgid "Go to Profile"
5462
+ msgid "All Features"
5463
+ msgstr "Zum Profil"
5464
+
5465
+ # @ squirrly-seo
5466
+ #: models/Menu.php:134 models/Menu.php:135 view/Research/Briefcase.php:121
5467
  #, fuzzy
5468
  #| msgid "Do a research"
5469
  msgid "Research"
5470
  msgstr "Recherchieren"
5471
 
5472
  # @ squirrly-seo
5473
+ #: models/Menu.php:142 view/Research/Research.php:19
5474
+ #, fuzzy
5475
+ #| msgid "Squirrly Keyword Research"
5476
+ msgid "Keyword Research"
5477
+ msgstr "Squirrly Erweiterte Suche!"
5478
+
5479
+ # @ squirrly-seo
5480
+ #: models/Menu.php:146 models/Menu.php:147
5481
  #, fuzzy
5482
  #| msgid "Save settings"
5483
  msgid "Live Assistant"
5484
  msgstr "Einstellungen speichern"
5485
 
5486
  # @ squirrly-seo
5487
+ #: models/Menu.php:158
5488
  #, fuzzy
5489
  #| msgid "Squirrly LIVE SEO assistant"
5490
  msgid "All Snippets"
5491
  msgstr "Squirrly LIVE SEO-Assistent"
5492
 
5493
+ # @ squirrly-seo
5494
+ #: models/Menu.php:159
5495
+ #, fuzzy
5496
+ #| msgid "Squirrly settings"
5497
  msgid "Bulk Seo"
5498
+ msgstr "Squirrly Einstellungen"
5499
+
5500
+ # @ squirrly-seo
5501
+ #: models/Menu.php:166 models/Menu.php:422 view/BulkSeo/Bulkseo.php:30
5502
+ #, fuzzy
5503
+ #| msgid "Squirrly settings"
5504
+ msgid "Bulk SEO"
5505
+ msgstr "Squirrly Einstellungen"
5506
 
5507
  # @ squirrly-seo
5508
+ #: models/Menu.php:170 models/Menu.php:171
5509
  #, fuzzy
5510
  #| msgid "Save settings"
5511
  msgid "SEO Settings"
5512
  msgstr "Einstellungen speichern"
5513
 
5514
+ #: models/Menu.php:182 models/Menu.php:183 models/Menu.php:473
5515
+ #: view/SeoSettings/Sitemap.php:29
5516
+ msgid "Sitemap XML"
5517
+ msgstr ""
5518
+
5519
+ #: models/Menu.php:194 models/Menu.php:195 view/SeoSettings/Jsonld.php:58
5520
+ msgid "Local SEO"
5521
+ msgstr ""
5522
+
5523
  # @ squirrly-seo
5524
+ #: models/Menu.php:206 models/Menu.php:207 models/Menu.php:354
5525
+ #: view/FocusPages/Pagelist.php:24
5526
  #, fuzzy
5527
  #| msgid "Save settings"
5528
  msgid "Focus Pages"
5529
  msgstr "Einstellungen speichern"
5530
 
5531
  # @ squirrly-seo
5532
+ #: models/Menu.php:218 models/Menu.php:219
5533
  #, fuzzy
5534
  #| msgid "automatically"
5535
  msgid "SEO Audit"
5536
  msgstr "automatisch"
5537
 
5538
  # @ squirrly-seo
5539
+ #: models/Menu.php:230 models/Menu.php:231 models/Menu.php:394
5540
  #, fuzzy
5541
  #| msgid "Save settings"
5542
  msgid "Rankings"
5543
  msgstr "Einstellungen speichern"
5544
 
5545
  # @ squirrly-seo
5546
+ #: models/Menu.php:238 view/Ranking/Rankings.php:32
5547
  #, fuzzy
5548
+ #| msgid "Google %sAnalytics ID%s`:"
5549
+ msgid "Google Rankings"
5550
+ msgstr "Google %sAnalytics ID%s`:"
5551
 
5552
  # @ squirrly-seo
5553
+ #: models/Menu.php:242 models/Menu.php:243
5554
  #, fuzzy
5555
+ #| msgid "Squirrly settings"
5556
+ msgid "Onboarding"
5557
+ msgstr "Squirrly Einstellungen"
 
 
 
 
5558
 
5559
  # @ squirrly-seo
5560
+ #: models/Menu.php:254 models/Menu.php:255
5561
  #, fuzzy
5562
+ #| msgid "Save settings"
5563
+ msgid "Import & Export SEO"
5564
+ msgstr "Einstellungen speichern"
 
 
 
 
5565
 
5566
  # @ squirrly-seo
5567
+ #: models/Menu.php:266 models/Menu.php:267
5568
  #, fuzzy
5569
+ #| msgid "Squirrly.co Login"
5570
+ msgid "Account Info"
5571
+ msgstr "Squirrly.co Login"
5572
 
5573
+ # @ squirrly-seo
5574
+ #: models/Menu.php:278
5575
+ #, fuzzy
5576
+ #| msgid "Squirrly LIVE SEO assistant"
5577
+ msgid "How To & Support"
5578
+ msgstr "Squirrly LIVE SEO-Assistent"
5579
+
5580
+ # @ squirrly-seo
5581
+ #: models/Menu.php:279
5582
+ #, fuzzy
5583
+ #| msgid "Support"
5584
+ msgid "Help & Support"
5585
+ msgstr "Support"
5586
+
5587
+ # @ squirrly-seo
5588
+ #: models/Menu.php:308
5589
+ #, fuzzy
5590
+ #| msgid "Keywords:"
5591
+ msgid "Find Keywords"
5592
+ msgstr "Schlüsselwörter:"
5593
+
5594
+ # @ squirrly-seo
5595
+ #: models/Menu.php:309
5596
+ #, fuzzy
5597
+ #| msgid "Do a research"
5598
+ msgid "do a keyword research"
5599
+ msgstr "Recherchieren"
5600
+
5601
+ # @ squirrly-seo
5602
+ #: models/Menu.php:314 view/Research/Briefcase.php:19
5603
+ #, fuzzy
5604
+ #| msgid "Squirrly Keyword Research"
5605
+ msgid "Briefcase"
5606
+ msgstr "Squirrly Erweiterte Suche!"
5607
+
5608
+ # @ squirrly-seo
5609
+ #: models/Menu.php:315
5610
+ #, fuzzy
5611
+ #| msgid "Use this keyword"
5612
+ msgid "save the best Keywords"
5613
+ msgstr "Dieses Schlüsselwort verwenden"
5614
+
5615
+ # @ squirrly-seo
5616
+ #: models/Menu.php:320 view/Research/Briefcase.php:31
5617
+ #, fuzzy
5618
+ #| msgid "+ Add keyword"
5619
+ msgid "Labels"
5620
+ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5621
+
5622
+ # @ squirrly-seo
5623
+ #: models/Menu.php:321
5624
+ #, fuzzy
5625
+ #| msgid "Tips: 2-4 keywords"
5626
+ msgid "group keywords"
5627
+ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
5628
+
5629
+ #: models/Menu.php:326
5630
  msgid "Suggested"
5631
  msgstr ""
5632
 
5633
  # @ squirrly-seo
5634
+ #: models/Menu.php:327
5635
  #, fuzzy
5636
  #| msgid "Enter a keyword"
5637
  msgid "better keywords found"
5638
  msgstr "Ein Schlüsselwort eingeben"
5639
 
5640
+ # @ squirrly-seo
5641
+ #: models/Menu.php:332
5642
+ #, fuzzy
5643
+ #| msgid "Squirrly settings"
5644
  msgid "History"
5645
+ msgstr "Squirrly Einstellungen"
5646
 
5647
  # @ squirrly-seo
5648
+ #: models/Menu.php:333
5649
  #, fuzzy
5650
  #| msgid "Do more research!"
5651
  msgid "keyword research history"
5652
  msgstr "Erweiterte Suche!"
5653
 
5654
+ #: models/Menu.php:340
5655
  #, fuzzy
5656
  #| msgid "Optimize for Keyword"
5657
  msgid "Optimize Posts"
5658
  msgstr "Schlüsselwort optimieren"
5659
 
5660
  # @ squirrly-seo
5661
+ #: models/Menu.php:341
5662
  #, fuzzy
5663
  #| msgid "Save settings"
5664
  msgid "use the Live Assistant"
5665
  msgstr "Einstellungen speichern"
5666
 
5667
  # @ squirrly-seo
5668
+ #: models/Menu.php:346 models/Menu.php:386 models/Menu.php:412
5669
  #, fuzzy
5670
  #| msgid "Save settings"
5671
  msgid "Settings"
5672
  msgstr "Einstellungen speichern"
5673
 
5674
  # @ squirrly-seo
5675
+ #: models/Menu.php:347
5676
  #, fuzzy
5677
  #| msgid "Save settings"
5678
  msgid "live assistant setup"
5679
  msgstr "Einstellungen speichern"
5680
 
5681
+ # @ squirrly-seo
5682
+ #: models/Menu.php:355
5683
+ #, fuzzy
5684
+ #| msgid "Save settings"
5685
  msgid "all my focus pages"
5686
+ msgstr "Einstellungen speichern"
5687
 
5688
  # @ squirrly-seo
5689
+ #: models/Menu.php:366 models/Menu.php:380
5690
  #, fuzzy
5691
  #| msgid "+ Add keyword"
5692
  msgid "Add New Page"
5693
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5694
 
5695
+ #: models/Menu.php:367
5696
  msgid "add page in focus pages"
5697
  msgstr ""
5698
 
5699
+ # @ squirrly-seo
5700
+ #: models/Menu.php:375
5701
+ #, fuzzy
5702
+ #| msgid "Go to Profile"
5703
  msgid "See all the SEO audits"
5704
+ msgstr "Zum Profil"
5705
 
5706
+ #: models/Menu.php:381
5707
  msgid "add page in audit"
5708
  msgstr ""
5709
 
5710
  # @ squirrly-seo
5711
+ #: models/Menu.php:387
5712
  #, fuzzy
5713
  #| msgid "Squirrly settings"
5714
  msgid "Audit settings"
5715
  msgstr "Squirrly Einstellungen"
5716
 
5717
  # @ squirrly-seo
5718
+ #: models/Menu.php:395
5719
  #, fuzzy
5720
  #| msgid "The code for Google Analytics is incorrect."
5721
  msgid "See Google ranking"
5722
  msgstr "Der Code für Google Analytics ist falsch."
5723
 
5724
  # @ squirrly-seo
5725
+ #: models/Menu.php:400
5726
  #, fuzzy
5727
  #| msgid "+ Add keyword"
5728
  msgid "Add Keywords"
5729
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5730
 
5731
  # @ squirrly-seo
5732
+ #: models/Menu.php:401
5733
  #, fuzzy
5734
  #| msgid "+ Add keyword"
5735
  msgid "Add briefcase keywords"
5736
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5737
 
5738
  # @ squirrly-seo
5739
+ #: models/Menu.php:406 view/Ranking/Rankings.php:263
5740
  #, fuzzy
5741
+ #| msgid "Keywords:"
5742
+ msgid "Sync Keywords"
5743
+ msgstr "Schlüsselwörter:"
5744
 
5745
  # @ squirrly-seo
5746
+ #: models/Menu.php:407
5747
  #, fuzzy
5748
+ #| msgid "Keywords:"
5749
+ msgid "Sync Keywords from GSC"
5750
+ msgstr "Schlüsselwörter:"
5751
+
5752
+ # @ squirrly-seo
5753
+ #: models/Menu.php:413
5754
+ #, fuzzy
5755
+ #| msgid "Save settings"
5756
+ msgid "Ranking settings"
5757
+ msgstr "Einstellungen speichern"
5758
 
5759
+ #: models/Menu.php:423
5760
  #, fuzzy
5761
  #| msgid "Optimize for Keyword"
5762
  msgid "optimize all pages"
5763
  msgstr "Schlüsselwort optimieren"
5764
 
5765
  # @ squirrly-seo
5766
+ #: models/Menu.php:431
5767
  #, fuzzy
5768
  #| msgid "automatically"
5769
  msgid "Automation"
5770
  msgstr "automatisch"
5771
 
5772
+ # @ squirrly-seo
5773
+ #: models/Menu.php:432
5774
+ #, fuzzy
5775
+ #| msgid "Description:"
5776
  msgid "patterns & automation"
5777
+ msgstr "Beschreibung:"
5778
+
5779
+ # @ squirrly-seo
5780
+ #: models/Menu.php:437 view/SeoSettings/Links.php:29
5781
+ #, fuzzy
5782
+ #| msgid "Save settings"
5783
+ msgid "SEO Links"
5784
+ msgstr "Einstellungen speichern"
5785
+
5786
+ # @ squirrly-seo
5787
+ #: models/Menu.php:438
5788
+ #, fuzzy
5789
+ #| msgid "Change the Website Icon"
5790
+ msgid "manage website links"
5791
+ msgstr "Ändern Sie das Website-Symbol"
5792
 
5793
  # @ squirrly-seo
5794
+ #: models/Menu.php:443 view/SeoSettings/Metas.php:29
5795
  #, fuzzy
5796
  #| msgid "Images"
5797
  msgid "SEO Metas"
5798
  msgstr "Bilder"
5799
 
5800
+ #: models/Menu.php:444
5801
  msgid "required on-page metas"
5802
  msgstr ""
5803
 
5804
+ #: models/Menu.php:449 view/Blocks/Snippet.php:85
5805
+ msgid "JSON-LD"
5806
  msgstr ""
5807
 
5808
+ #: models/Menu.php:450
5809
+ msgid "rich snippets & schema"
5810
  msgstr ""
5811
 
5812
+ # @ squirrly-seo
5813
+ #: models/Menu.php:455 view/SeoSettings/Social.php:28
5814
+ #, fuzzy
5815
+ #| msgid "Save settings"
5816
  msgid "Social Media"
5817
+ msgstr "Einstellungen speichern"
5818
 
5819
+ #: models/Menu.php:456
5820
  msgid "social share options"
5821
  msgstr ""
5822
 
5823
+ #: models/Menu.php:461 view/SeoSettings/Tracking.php:28
5824
  msgid "Tracking Tools"
5825
  msgstr ""
5826
 
5827
  # @ squirrly-seo
5828
+ #: models/Menu.php:462
5829
  #, fuzzy
5830
  #| msgid "Google %sAnalytics ID%s`:"
5831
  msgid "google analytics, pixel, etc."
5832
  msgstr "Google %sAnalytics ID%s`:"
5833
 
5834
+ #: models/Menu.php:467 view/SeoSettings/Webmaster.php:28
5835
+ msgid "Webmaster Tools"
 
 
 
 
 
 
 
5836
  msgstr ""
5837
 
5838
+ # @ squirrly-seo
5839
+ #: models/Menu.php:468
5840
+ #, fuzzy
5841
+ #| msgid "Change the Website Icon"
5842
+ msgid "connect to webmasters"
5843
+ msgstr "Ändern Sie das Website-Symbol"
5844
 
5845
+ # @ squirrly-seo
5846
+ #: models/Menu.php:474
5847
+ #, fuzzy
5848
+ #| msgid "Enter your email"
5849
  msgid "setup the sitemap"
5850
+ msgstr "In Artikel einfügen"
5851
 
5852
+ #: models/Menu.php:479
5853
  msgid "Robots.txt"
5854
  msgstr ""
5855
 
5856
+ #: models/Menu.php:480
5857
  msgid "search engine filters"
5858
  msgstr ""
5859
 
5860
+ # @ squirrly-seo
5861
+ #: models/Menu.php:485
5862
+ #, fuzzy
5863
+ #| msgid "Description:"
5864
  msgid "Favicon"
5865
+ msgstr "Beschreibung:"
5866
 
5867
  # @ squirrly-seo
5868
+ #: models/Menu.php:486
5869
  #, fuzzy
5870
  #| msgid "Change the Website Icon"
5871
  msgid "add website icon"
5872
  msgstr "Ändern Sie das Website-Symbol"
5873
 
5874
+ # @ squirrly-seo
5875
+ #: models/Menu.php:491
5876
+ #, fuzzy
5877
+ #| msgid "Support"
5878
  msgid "Import/Export"
5879
+ msgstr "Support"
5880
 
5881
+ # @ squirrly-seo
5882
+ #: models/Menu.php:492
5883
+ #, fuzzy
5884
+ #| msgid "Save settings"
5885
  msgid "import & export SEO"
5886
+ msgstr "Einstellungen speichern"
5887
 
5888
  # @ squirrly-seo
5889
+ #: models/Menu.php:501
5890
  #, fuzzy
5891
  #| msgid "Save settings"
5892
  msgid "Advanced"
5893
  msgstr "Einstellungen speichern"
5894
 
5895
  # @ squirrly-seo
5896
+ #: models/Menu.php:502
5897
  #, fuzzy
5898
  #| msgid "Save settings"
5899
  msgid "Advanced SEO Settings"
5900
  msgstr "Einstellungen speichern"
5901
 
5902
  # @ squirrly-seo
5903
+ #: models/Menu.php:511
5904
  #, fuzzy
5905
+ #| msgid "Your E-mail:"
5906
+ msgid "website details"
5907
+ msgstr "Ihre E-Mail Adresse:"
5908
 
5909
  # @ squirrly-seo
5910
+ #: models/Menu.php:516 view/Blocks/Snippet.php:433
5911
  #, fuzzy
5912
+ #| msgid "automatically"
5913
+ msgid "SEO Automation"
5914
+ msgstr "automatisch"
5915
+
5916
+ # @ squirrly-seo
5917
+ #: models/Menu.php:517
5918
+ #, fuzzy
5919
+ #| msgid "automatically"
5920
+ msgid "build SEO Automation"
5921
+ msgstr "automatisch"
5922
+
5923
+ # @ squirrly-seo
5924
+ #: models/Menu.php:522 view/SeoSettings/Backup.php:91
5925
+ #, fuzzy
5926
+ #| msgid "Save settings"
5927
+ msgid "Import SEO"
5928
+ msgstr "Einstellungen speichern"
5929
 
5930
+ # @ squirrly-seo
5931
+ #: models/Menu.php:523
5932
+ #, fuzzy
5933
+ #| msgid "Save settings"
5934
  msgid "import settings and SEO"
5935
+ msgstr "Einstellungen speichern"
5936
 
5937
+ #: models/Menu.php:528 view/Onboarding/Step4.php:12
5938
  msgid "Final Step"
5939
  msgstr ""
5940
 
5941
+ #: models/Menu.php:529
5942
+ msgid "check today SEO goals"
5943
+ msgstr ""
 
 
 
5944
 
5945
  # @ squirrly-seo
5946
+ #: models/Menu.php:538
5947
  #, fuzzy
5948
  #| msgid "Blogs"
5949
  msgid "Blogging"
5950
  msgstr "Blogs"
5951
 
5952
  # @ squirrly-seo
5953
+ #: models/Menu.php:539
5954
  #, fuzzy
5955
  #| msgid "Blogs"
5956
  msgid "Blogging overwiew"
5957
  msgstr "Blogs"
5958
 
5959
+ #: models/Menu.php:544
5960
  msgid "Traffic"
5961
  msgstr ""
5962
 
5963
+ #: models/Menu.php:545
5964
  msgid "Weekly website traffic"
5965
  msgstr ""
5966
 
5967
+ #: models/Menu.php:550
5968
  msgid "SEO"
5969
  msgstr ""
5970
 
5971
+ #: models/Menu.php:551
5972
  #, fuzzy
5973
  #| msgid "Optimize for Keyword"
5974
  msgid "On-Page optimization"
5975
  msgstr "Schlüsselwort optimieren"
5976
 
5977
+ #: models/Menu.php:556
5978
  msgid "Social"
5979
  msgstr ""
5980
 
5981
+ #: models/Menu.php:557
5982
  msgid "Social signals and shares"
5983
  msgstr ""
5984
 
5985
+ #: models/Menu.php:562
5986
  msgid "Links"
5987
  msgstr ""
5988
 
5989
+ #: models/Menu.php:563
5990
  msgid "Backlinks and Innerlinks"
5991
  msgstr ""
5992
 
5993
+ #: models/Menu.php:568 models/focuspages/Authority.php:59
5994
  msgid "Authority"
5995
  msgstr ""
5996
 
5997
+ #: models/Menu.php:569
5998
  msgid "Website Off-Page score"
5999
  msgstr ""
6000
 
6056
  msgid "The uploaded file could not be moved to %s."
6057
  msgstr ""
6058
 
6059
+ # @ squirrly-seo
6060
+ #: models/Post.php:236
6061
+ #, fuzzy
6062
+ #| msgid "Squirrly Keyword Research"
6063
  msgid "Keyword with 2 or more words"
6064
+ msgstr "Squirrly Erweiterte Suche!"
6065
 
6066
+ #: models/Post.php:237
6067
  msgid ""
6068
  "Even if a long tail keyword won't bring as many visitors as one keyword "
6069
  "would, the traffic those keywords will bring will be better, and more "
6070
  "focused towards what you're selling."
6071
  msgstr ""
6072
 
6073
+ #: models/Post.php:240
6074
  msgid "Domain"
6075
  msgstr ""
6076
 
6077
+ # @ squirrly-seo
6078
+ #: models/Post.php:242
6079
+ #, fuzzy
6080
+ #| msgid "Keyword:"
6081
  msgid "Keyword is present in the URL"
6082
+ msgstr "Schlüsselwort:"
6083
 
6084
+ #: models/Post.php:243
6085
  msgid ""
6086
  "The keywords must be present in the URL for a better ranking. You should "
6087
  "consider not to add a keyword more than once."
6088
  msgstr ""
6089
 
6090
+ #: models/Post.php:246
6091
  msgid "Clean & Friendly"
6092
  msgstr ""
6093
 
6094
+ #: models/Post.php:248
6095
  #, php-format
6096
  msgid "Title is Google Friendly %s: more keywords %s: over-optimized! %s"
6097
  msgstr ""
6098
 
6099
+ #: models/Post.php:249
6100
  msgid ""
6101
  "It calculates the right number of times your keyword should appear mentioned "
6102
  "in the text and makes sure you do not over-optimize."
6103
  msgstr ""
6104
 
6105
+ #: models/Post.php:252
6106
  #, php-format
6107
  msgid "Content is Google Friendly %s: more keywords %s: over-optimized! %s"
6108
  msgstr ""
6109
 
6110
+ #: models/Post.php:253
6111
  msgid ""
6112
  "It calculates the right number of times your keyword should appear mentioned "
6113
  "in the text and makes sure you do not over-optimize"
6114
  msgstr ""
6115
 
6116
+ #: models/Post.php:256
6117
  #, fuzzy, php-format
6118
  #| msgid "Optimize for Keyword"
6119
  msgid "Over Optimization %s"
6120
  msgstr "Schlüsselwort optimieren"
6121
 
6122
+ #: models/Post.php:257
6123
  msgid ""
6124
  "Checks if there are words in the whole text that appear way too many times"
6125
  msgstr ""
6126
 
6127
+ #: models/Post.php:260
6128
  #, php-format
6129
  msgid "Human Friendly %s"
6130
  msgstr ""
6131
 
6132
+ #: models/Post.php:261
6133
  msgid ""
6134
  "Your readers (who are not search engine bots) should find a clear text, with "
6135
  "a rich vocabulary, that takes into account some basic rules of writing: such "
6139
  msgstr ""
6140
 
6141
  # @ squirrly-seo
6142
+ #: models/Post.php:264 models/focuspages/Snippet.php:120
6143
+ #: models/focuspages/Snippet.php:250 models/focuspages/Snippet.php:272
6144
+ #: view/Audits/Addpage.php:131 view/Blocks/Snippet.php:168
6145
+ #: view/Blocks/Snippet.php:655 view/Blocks/Snippet.php:922
6146
+ #: view/BulkSeo/Bulkseo.php:142 view/FocusPages/Addpage.php:132
6147
+ #: view/SeoSettings/Automation.php:139
6148
  #, fuzzy
6149
  #| msgid "Title:"
6150
  msgid "Title"
6151
  msgstr "Titel:"
6152
 
6153
+ # @ squirrly-seo
6154
+ #: models/Post.php:266
6155
+ #, fuzzy
6156
+ #| msgid "Keyword:"
6157
  msgid "Keywords are used in Title"
6158
+ msgstr "Schlüsselwort:"
6159
 
6160
+ #: models/Post.php:267
6161
  msgid "The keywords need to appear in the title of the article"
6162
  msgstr ""
6163
 
6164
  # @ squirrly-seo
6165
+ #: models/Post.php:270
6166
  #, fuzzy
6167
  #| msgid "Tips: Length 70-255 chars"
6168
  msgid "Title length is between 10-75 chars"
6169
  msgstr "Tipp: Länge 70-255 Charaktere"
6170
 
6171
+ #: models/Post.php:271
6172
  msgid ""
6173
  "The optimum length for Title is between 10-75 chars on major search engines."
6174
  msgstr ""
6175
 
6176
+ #: models/Post.php:274
6177
  msgid "Title is different from domain name"
6178
  msgstr ""
6179
 
6180
+ #: models/Post.php:275
6181
  msgid ""
6182
  "Since the Google Penguin Update, the title must be different from the domain "
6183
  "name, or you might get banned soon."
6184
  msgstr ""
6185
 
6186
  # @ squirrly-seo
6187
+ #: models/Post.php:278
6188
  #, fuzzy
6189
  #| msgid "SEO Software"
6190
  msgid "Content"
6191
  msgstr "SEO Software"
6192
 
6193
+ #: models/Post.php:280
6194
  msgid "Keywords are used in Content"
6195
  msgstr ""
6196
 
6197
+ #: models/Post.php:281
6198
  msgid "The keyword must appear in the body of the article, at least once"
6199
  msgstr ""
6200
 
6201
  # @ squirrly-seo
6202
+ #: models/Post.php:284
6203
  #, fuzzy, php-format
6204
  #| msgid "Could not send the email..."
6205
  msgid "Bold one of the keywords %s"
6206
  msgstr "Konnte E-Mail nicht senden ..."
6207
 
6208
+ #: models/Post.php:285
6209
  msgid ""
6210
  "Bolding your keywords will help search engines figure out what your content "
6211
  "is about and what topic you cover. It's also useful for your Human readers "
6212
  "to bold some of the most important ideas."
6213
  msgstr ""
6214
 
6215
+ # @ squirrly-seo
6216
+ #: models/Post.php:288
6217
+ #, fuzzy
6218
+ #| msgid "Keyword:"
6219
  msgid "Keywords used in headline"
6220
+ msgstr "Schlüsselwort:"
6221
 
6222
+ #: models/Post.php:289
6223
  msgid ""
6224
  "The keywords should be used in headings like H2, H3, H4. Try NOT to use them "
6225
  "all, for it will seem to be a SEO abuse. You can use your H2 button from the "
6226
  "editor to do this. It works like the Bold, Italic or Underline buttons."
6227
  msgstr ""
6228
 
6229
+ #: models/Post.php:292
6230
  msgid "Use image(s) in content or featured image"
6231
  msgstr ""
6232
 
6233
+ #: models/Post.php:293
6234
  msgid ""
6235
  "Articles need to be optimized for human beings as well, so you should place "
6236
  "an image at the begining of your article."
6237
  msgstr ""
6238
 
6239
+ #: models/Post.php:296
6240
  msgid "Use keywords in the Alternative Text field of the image"
6241
  msgstr ""
6242
 
6243
+ #: models/Post.php:297
6244
  msgid ""
6245
  "Add at least one image in your article. Now use your keyword in the "
6246
  "description of the image. The Alternative Text field of the image."
6247
  msgstr ""
6248
 
6249
+ # @ squirrly-seo
6250
  #: models/PostsList.php:24
6251
+ #, fuzzy
6252
+ #| msgid "Save settings"
6253
  msgid "Optimize it with Squirrly Live Assistant"
6254
+ msgstr "Einstellungen speichern"
6255
 
6256
  #: models/PostsList.php:48 models/PostsList.php:74
6257
  #, fuzzy
6267
  msgid "Can't get snippet data"
6268
  msgstr ""
6269
 
6270
+ # @ squirrly-seo
6271
+ #: models/PostsList.php:55 models/PostsList.php:80 view/Blocks/Snippet.php:130
6272
+ #, fuzzy
6273
+ #| msgid "Squirrly LIVE SEO assistant"
6274
  msgid "Edit Snippet"
6275
+ msgstr "Squirrly LIVE SEO-Assistent"
6276
 
6277
  # @ squirrly-seo
6278
  #: models/RoleManager.php:96
6293
  msgstr ""
6294
 
6295
  # @ squirrly-seo
6296
+ #: models/Snippet.php:345
6297
  #, fuzzy
6298
  #| msgid "Could not send the email..."
6299
  msgid "Error! Could not save the data."
6300
  msgstr "Konnte E-Mail nicht senden ..."
6301
 
6302
+ #: models/Snippet.php:350
6303
  msgid "Error! Invalid request."
6304
  msgstr ""
6305
 
6306
  # @ squirrly-seo
6307
+ #: models/Snippet.php:382
6308
  #, fuzzy
6309
  #| msgid "Could not send the email..."
6310
  msgid "Couldn't find the page"
6311
  msgstr "Konnte E-Mail nicht senden ..."
6312
 
6313
+ #: models/Snippet.php:398 models/Snippet.php:410
6314
  msgid "No Polylang translation for this post."
6315
  msgstr ""
6316
 
6317
+ #: models/abstract/Assistant.php:65 models/focuspages/Accuracy.php:34
6318
+ #: models/focuspages/Audit.php:143 models/focuspages/Authority.php:33
6319
+ #: models/focuspages/Backlinks.php:46 models/focuspages/Clicks.php:56
6320
+ #: models/focuspages/Content.php:75 models/focuspages/Ctr.php:56
6321
+ #: models/focuspages/Image.php:90 models/focuspages/Impressions.php:56
6322
+ #: models/focuspages/Indexability.php:89 models/focuspages/Innerlinks.php:64
6323
+ #: models/focuspages/Keyword.php:73 models/focuspages/Length.php:53
6324
+ #: models/focuspages/Nofollow.php:65 models/focuspages/Onpage.php:80
6325
+ #: models/focuspages/Ranking.php:35 models/focuspages/Snippet.php:176
6326
+ #: models/focuspages/Social.php:56 models/focuspages/Strategy.php:97
6327
+ #: models/focuspages/Traffic.php:95
6328
+ msgid "Current URL"
6329
+ msgstr ""
6330
+
6331
+ # @ squirrly-seo
6332
+ #: models/abstract/Assistant.php:80
6333
+ #, fuzzy
6334
+ #| msgid "Keyword:"
6335
+ msgid "Keywords"
6336
+ msgstr "Schlüsselwort:"
6337
+
6338
+ # @ squirrly-seo
6339
+ #: models/abstract/Assistant.php:80
6340
+ #, fuzzy
6341
+ #| msgid "Save settings"
6342
+ msgid "Squirrly Live Assistant Optimization"
6343
+ msgstr "Einstellungen speichern"
6344
+
6345
+ #: models/abstract/Assistant.php:80
6346
+ msgid "SLA"
6347
+ msgstr ""
6348
+
6349
+ # @ squirrly-seo
6350
+ #: models/abstract/Assistant.php:89
6351
+ #, fuzzy
6352
+ #| msgid "Keyword:"
6353
+ msgid "No Meta Keyword Found"
6354
+ msgstr "Schlüsselwort:"
6355
+
6356
+ #: models/abstract/Assistant.php:164
6357
  msgid "We are gathering data for this category"
6358
  msgstr ""
6359
 
6360
+ #: models/abstract/Assistant.php:167
6361
  msgid ""
6362
  "Congratulations for ranking with this keyword, but it will require special "
6363
  "attention from you to keep it within TOP 10 positions"
6364
  msgstr ""
6365
 
6366
+ #: models/abstract/Assistant.php:210
6367
  msgid "Not enough data to process this task"
6368
  msgstr ""
6369
 
6370
+ #: models/abstract/Assistant.php:214 view/Blocks/Snippet.php:305
6371
  msgid "Current"
6372
  msgstr ""
6373
 
6378
  msgid "Title not empty"
6379
  msgstr "Beschreibung:"
6380
 
6381
+ # @ squirrly-seo
6382
+ #: models/bulkseo/Metas.php:58 view/Blocks/Snippet.php:184
6383
+ #: view/Blocks/Snippet.php:671 view/Blocks/Snippet.php:938
6384
+ #, fuzzy
6385
+ #| msgid "Description:"
6386
  msgid "Current Title"
6387
+ msgstr "Beschreibung:"
6388
 
6389
  #: models/bulkseo/Metas.php:60
6390
  #, php-format
6402
  msgid "Title up to %s chars"
6403
  msgstr "Tipp: Länge 10-70 Charaktere"
6404
 
6405
+ # @ squirrly-seo
6406
  #: models/bulkseo/Metas.php:64
6407
+ #, fuzzy
6408
+ #| msgid "Description:"
6409
  msgid "Current Title Length"
6410
+ msgstr "Beschreibung:"
6411
 
6412
  #: models/bulkseo/Metas.php:65 models/bulkseo/Metas.php:83
6413
  #: models/bulkseo/Opengraph.php:84 models/bulkseo/Opengraph.php:94
6424
  msgstr ""
6425
 
6426
  # @ squirrly-seo
6427
+ #: models/bulkseo/Metas.php:69 models/focuspages/Snippet.php:131
6428
  #, fuzzy
6429
  #| msgid "Keyword:"
6430
  msgid "Keyword in title"
6444
  msgid "no keywords"
6445
  msgstr "Schlüsselwörter:"
6446
 
6447
+ #: models/bulkseo/Metas.php:72 models/focuspages/Snippet.php:134
6448
  #, php-format
6449
  msgid ""
6450
  "Your keyword must be present in the title of the page. %s It's a very "
6464
  msgstr "Beschreibung:"
6465
 
6466
  # @ squirrly-seo
6467
+ #: models/bulkseo/Metas.php:76 view/Blocks/Snippet.php:236
6468
+ #: view/Blocks/Snippet.php:715 view/Blocks/Snippet.php:982
6469
  #, fuzzy
6470
  #| msgid "Description:"
6471
  msgid "Current Description"
6503
  msgstr ""
6504
 
6505
  # @ squirrly-seo
6506
+ #: models/bulkseo/Metas.php:87 models/focuspages/Snippet.php:137
6507
  #, fuzzy
6508
  #| msgid "Competition:"
6509
  msgid "Keyword in description"
6541
  "search engines to find this meta and to index your post for these keywords."
6542
  msgstr ""
6543
 
6544
+ # @ squirrly-seo
6545
  #: models/bulkseo/Metas.php:100
6546
+ #, fuzzy
6547
+ #| msgid "Description:"
6548
  msgid "Current Link"
6549
+ msgstr "Beschreibung:"
6550
 
6551
  #: models/bulkseo/Metas.php:102
6552
  #, php-format
6558
  "gets indexed and ranked."
6559
  msgstr ""
6560
 
6561
+ # @ squirrly-seo
6562
  #: models/bulkseo/Metas.php:111
6563
+ #, fuzzy
6564
+ #| msgid "<< Leave it automatically"
6565
  msgid "Some Squirrly Metas are deactivated."
6566
+ msgstr "<< Lass es automatisch"
6567
 
6568
  #: models/bulkseo/Metas.php:116
6569
  msgid ""
6578
  msgid "Some Squirrly Metas are generated automatically."
6579
  msgstr "<< Lass es automatisch"
6580
 
6581
+ # @ squirrly-seo
6582
  #: models/bulkseo/Metas.php:124
6583
+ #, fuzzy
6584
+ #| msgid "<< Leave it automatically"
6585
  msgid "All Squirrly Metas are customized and set correctly."
6586
+ msgstr "<< Lass es automatisch"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6587
 
6588
  # @ squirrly-seo
6589
+ #: models/bulkseo/Metas.php:154 models/bulkseo/Metas.php:190
6590
+ #: models/bulkseo/Metas.php:223 models/bulkseo/Metas.php:267
6591
+ #: models/bulkseo/Metas.php:303 models/bulkseo/Metas.php:336
6592
+ #: models/bulkseo/Metas.php:384 models/bulkseo/Metas.php:423
6593
+ #: models/bulkseo/Opengraph.php:148 models/bulkseo/Opengraph.php:184
6594
+ #: models/bulkseo/Opengraph.php:216 models/bulkseo/Opengraph.php:252
6595
+ #: models/bulkseo/Opengraph.php:288 models/bulkseo/Twittercard.php:144
6596
+ #: models/bulkseo/Twittercard.php:180 models/bulkseo/Twittercard.php:212
6597
+ #: models/bulkseo/Twittercard.php:248 models/bulkseo/Twittercard.php:284
6598
+ #: models/bulkseo/Visibility.php:80 models/bulkseo/Visibility.php:119
6599
+ #: models/bulkseo/Visibility.php:152
6600
  #, fuzzy
6601
+ #| msgid "Squirrly LIVE SEO assistant"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6602
  msgid "Squirrly Snippet is deactivated from this post."
6603
+ msgstr "Squirrly LIVE SEO-Assistent"
6604
 
6605
+ #: models/bulkseo/Metas.php:158 models/bulkseo/Metas.php:194
6606
+ #: models/bulkseo/Metas.php:227 models/bulkseo/Metas.php:271
6607
+ #: models/bulkseo/Metas.php:307 models/bulkseo/Metas.php:340
6608
+ #: models/bulkseo/Metas.php:388 models/bulkseo/Metas.php:427
6609
  #, php-format
6610
  msgid ""
6611
  "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
6612
  "%s."
6613
  msgstr ""
6614
 
6615
+ #: models/bulkseo/Metas.php:162 models/bulkseo/Metas.php:198
6616
+ #: models/bulkseo/Metas.php:231
6617
  #, php-format
6618
  msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
6619
  msgstr ""
6620
 
6621
+ #: models/bulkseo/Metas.php:166 models/bulkseo/Metas.php:202
6622
+ #: models/bulkseo/Metas.php:235 models/bulkseo/Metas.php:279
6623
+ #: models/bulkseo/Metas.php:315 models/bulkseo/Metas.php:348
6624
+ #: models/bulkseo/Metas.php:392 models/bulkseo/Metas.php:435
6625
  #, php-format
6626
  msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
6627
  msgstr ""
6628
 
6629
  # @ squirrly-seo
6630
+ #: models/bulkseo/Metas.php:175 models/bulkseo/Metas.php:211
6631
+ #: models/bulkseo/Opengraph.php:169 models/bulkseo/Opengraph.php:205
6632
+ #: models/bulkseo/Twittercard.php:165 models/bulkseo/Twittercard.php:201
6633
  #, fuzzy
6634
  #| msgid "<< Leave it automatically"
6635
  msgid "Title is generated automatically."
6636
  msgstr "<< Lass es automatisch"
6637
 
6638
+ #: models/bulkseo/Metas.php:239 models/bulkseo/Metas.php:352
6639
+ #: models/bulkseo/Metas.php:396
6640
  #, php-format
6641
  msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
6642
  msgstr ""
6643
 
6644
+ #: models/bulkseo/Metas.php:275 models/bulkseo/Metas.php:311
6645
+ #: models/bulkseo/Metas.php:344
6646
  #, php-format
6647
  msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
6648
  msgstr ""
6649
 
6650
  # @ squirrly-seo
6651
+ #: models/bulkseo/Metas.php:288 models/bulkseo/Metas.php:325
6652
+ #: models/bulkseo/Opengraph.php:237 models/bulkseo/Opengraph.php:273
6653
+ #: models/bulkseo/Twittercard.php:233 models/bulkseo/Twittercard.php:269
6654
  #, fuzzy
6655
  #| msgid "<< Leave it automatically"
6656
  msgid "Description is generated automatically."
6657
  msgstr "<< Lass es automatisch"
6658
 
6659
+ #: models/bulkseo/Metas.php:431
6660
  #, php-format
6661
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
6662
  msgstr ""
6676
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
6677
  msgstr ""
6678
 
6679
+ # @ squirrly-seo
6680
  #: models/bulkseo/Opengraph.php:83
6681
+ #, fuzzy, php-format
6682
+ #| msgid "Tips: Length 10-70 chars"
6683
  msgid "OG title up to %s chars"
6684
+ msgstr "Tipp: Länge 10-70 Charaktere"
6685
 
6686
  # @ squirrly-seo
6687
  #: models/bulkseo/Opengraph.php:88
6698
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
6699
  msgstr ""
6700
 
6701
+ # @ squirrly-seo
6702
  #: models/bulkseo/Opengraph.php:93
6703
+ #, fuzzy, php-format
6704
+ #| msgid "Description:"
6705
  msgid "OG description up to %s chars"
6706
+ msgstr "Beschreibung:"
6707
 
6708
  # @ squirrly-seo
6709
+ #: models/bulkseo/Opengraph.php:98
6710
  #, fuzzy
6711
  #| msgid "Images"
6712
  msgid "OG Image"
6751
  msgid "Open Graph is customized and set correctly."
6752
  msgstr "<< Lass es automatisch"
6753
 
6754
+ #: models/bulkseo/Opengraph.php:152 models/bulkseo/Opengraph.php:188
6755
+ #: models/bulkseo/Opengraph.php:220 models/bulkseo/Opengraph.php:256
6756
+ #: models/bulkseo/Opengraph.php:292
6757
  #, php-format
6758
  msgid ""
6759
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
6760
  "%s."
6761
  msgstr ""
6762
 
6763
+ #: models/bulkseo/Opengraph.php:156 models/bulkseo/Opengraph.php:192
6764
+ #: models/bulkseo/Opengraph.php:224 models/bulkseo/Opengraph.php:260
6765
+ #: models/bulkseo/Opengraph.php:296
6766
  #, php-format
6767
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
6768
  msgstr ""
6769
 
6770
+ #: models/bulkseo/Opengraph.php:160 models/bulkseo/Opengraph.php:196
6771
+ #: models/bulkseo/Opengraph.php:228 models/bulkseo/Opengraph.php:264
6772
+ #: models/bulkseo/Opengraph.php:300 models/bulkseo/Twittercard.php:156
6773
+ #: models/bulkseo/Twittercard.php:192 models/bulkseo/Twittercard.php:224
6774
+ #: models/bulkseo/Twittercard.php:260 models/bulkseo/Twittercard.php:296
6775
  #, php-format
6776
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
6777
  msgstr ""
6791
  "also important for SEO purposes."
6792
  msgstr ""
6793
 
6794
+ # @ squirrly-seo
6795
  #: models/bulkseo/Twittercard.php:79
6796
+ #, fuzzy, php-format
6797
+ #| msgid "Tips: Length 10-70 chars"
6798
  msgid "TC title up to %s chars"
6799
+ msgstr "Tipp: Länge 10-70 Charaktere"
6800
 
6801
  # @ squirrly-seo
6802
  #: models/bulkseo/Twittercard.php:84
6855
  msgid "Twitter Card is generated automatically."
6856
  msgstr "<< Lass es automatisch"
6857
 
6858
+ # @ squirrly-seo
6859
  #: models/bulkseo/Twittercard.php:123
6860
+ #, fuzzy
6861
+ #| msgid "<< Leave it automatically"
6862
  msgid "Twitter Card is customized and set correctly."
6863
+ msgstr "<< Lass es automatisch"
6864
 
6865
+ #: models/bulkseo/Twittercard.php:148 models/bulkseo/Twittercard.php:184
6866
+ #: models/bulkseo/Twittercard.php:216 models/bulkseo/Twittercard.php:252
6867
+ #: models/bulkseo/Twittercard.php:288
6868
  #, php-format
6869
  msgid ""
6870
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
6871
  "Automation%s."
6872
  msgstr ""
6873
 
6874
+ #: models/bulkseo/Twittercard.php:152 models/bulkseo/Twittercard.php:188
6875
+ #: models/bulkseo/Twittercard.php:220 models/bulkseo/Twittercard.php:256
6876
+ #: models/bulkseo/Twittercard.php:292
6877
+ #, fuzzy, php-format
6878
+ #| msgid "Optimize for Keyword"
6879
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
6880
+ msgstr "Schlüsselwort optimieren"
6881
 
6882
  #: models/bulkseo/Visibility.php:27
6883
  msgid "Visible on Google"
6891
  "visibility settings."
6892
  msgstr ""
6893
 
6894
+ #: models/bulkseo/Visibility.php:31 view/Blocks/Snippet.php:1126
6895
  msgid "Send Authority to this page"
6896
  msgstr ""
6897
 
6906
  "to green for the 'Pass Link Juice' section of this URL's visibility settings."
6907
  msgstr ""
6908
 
6909
+ # @ squirrly-seo
6910
  #: models/bulkseo/Visibility.php:35
6911
+ #, fuzzy
6912
+ #| msgid "Enter your email"
6913
  msgid "Add page in sitemap"
6914
+ msgstr "In Artikel einfügen"
6915
 
6916
  #: models/bulkseo/Visibility.php:36
6917
  #, php-format
6937
  msgid "Visibility is set correctly."
6938
  msgstr ""
6939
 
6940
+ #: models/bulkseo/Visibility.php:84
6941
  #, php-format
6942
  msgid ""
6943
  "Noindex for this post type is deactivated from %sSEO Settings > Automation%s."
6944
  msgstr ""
6945
 
6946
+ #: models/bulkseo/Visibility.php:88 models/bulkseo/Visibility.php:127
6947
  #, php-format
6948
  msgid "Robots Meta is deactivated from %sSEO Settings > SEO Metas%s."
6949
  msgstr ""
6950
 
6951
+ #: models/bulkseo/Visibility.php:92 models/bulkseo/Visibility.php:131
6952
  #, php-format
6953
  msgid "SEO Metas is deactivated from %sSEO Settings > SEO Metas%s."
6954
  msgstr ""
6955
 
6956
+ #: models/bulkseo/Visibility.php:101
6957
  #, php-format
6958
  msgid ""
6959
  "You selected '%s' in Settings > Reading. It's important to uncheck that "
6960
  "option."
6961
  msgstr ""
6962
 
6963
+ #: models/bulkseo/Visibility.php:123
6964
  #, php-format
6965
  msgid ""
6966
  "Nofollow for this post type is deactivated from %sSEO Settings > Automation"
6967
  "%s."
6968
  msgstr ""
6969
 
6970
+ #: models/bulkseo/Visibility.php:156
6971
  #, php-format
6972
  msgid ""
6973
  "This post type is excluded from sitemap. See %sSEO Settings > Automation%s."
6974
  msgstr ""
6975
 
6976
+ #: models/bulkseo/Visibility.php:160
6977
  #, php-format
6978
  msgid "Sitemap XML is deactivated from %sSEO Settings > Sitemap XML%s."
6979
  msgstr ""
6980
 
6981
+ # @ squirrly-seo
6982
+ #: models/domain/Patterns.php:377
6983
+ #, fuzzy
6984
+ #| msgid "Images"
6985
  msgid "Page"
6986
+ msgstr "Bilder"
6987
 
6988
+ #: models/domain/Patterns.php:378
6989
  msgid "of"
6990
  msgstr ""
6991
 
7141
  "most people search using mobile devices these days."
7142
  msgstr ""
7143
 
7144
+ # @ squirrly-seo
7145
  #: models/focuspages/Audit.php:149
7146
+ #, fuzzy
7147
+ #| msgid "automatically"
7148
  msgid "Go to Audit"
7149
+ msgstr "automatisch"
7150
 
7151
+ # @ squirrly-seo
7152
+ #: models/focuspages/Audit.php:151
7153
+ #, fuzzy
7154
+ #| msgid "Squirrly settings"
7155
  msgid "Note! The audit is not ready yet"
7156
+ msgstr "Squirrly Einstellungen"
7157
 
7158
+ #: models/focuspages/Audit.php:152
7159
  msgid "Request a new audit"
7160
  msgstr ""
7161
 
7162
+ # @ squirrly-seo
7163
  #: models/focuspages/Authority.php:58
7164
+ #, fuzzy, php-format
7165
+ #| msgid "Squirrly settings"
7166
  msgid "Authority over %s"
7167
+ msgstr "Squirrly Einstellungen"
7168
 
7169
  #: models/focuspages/Authority.php:60
7170
  #, php-format
7176
  msgstr ""
7177
 
7178
  #: models/focuspages/Authority.php:77 models/focuspages/Backlinks.php:81
7179
+ #: models/focuspages/Clicks.php:112 models/focuspages/Content.php:127
7180
+ #: models/focuspages/Ctr.php:112 models/focuspages/Image.php:126
7181
+ #: models/focuspages/Impressions.php:112 models/focuspages/Indexability.php:125
7182
  #: models/focuspages/Innerlinks.php:86 models/focuspages/Keyword.php:133
7183
+ #: models/focuspages/Length.php:89 models/focuspages/Nofollow.php:77
7184
  #: models/focuspages/Onpage.php:96 models/focuspages/Ranking.php:48
7185
+ #: models/focuspages/Snippet.php:199 models/focuspages/Social.php:85
7186
+ #: models/focuspages/Strategy.php:134 models/focuspages/Traffic.php:127
7187
  msgid ""
7188
  "Click to open the Assistant in the right sidebar and follow the instructions."
7189
  msgstr ""
7219
  msgstr "Tool für Suchmaschinen"
7220
 
7221
  # @ squirrly-seo
7222
+ #: models/focuspages/Clicks.php:65 models/focuspages/Clicks.php:74
7223
+ #: models/focuspages/Content.php:104 models/focuspages/Ctr.php:65
7224
+ #: models/focuspages/Ctr.php:74 models/focuspages/Image.php:106
7225
+ #: models/focuspages/Impressions.php:65 models/focuspages/Impressions.php:74
7226
  #: models/focuspages/Keyword.php:101 models/focuspages/Keyword.php:110
7227
+ #: models/focuspages/Strategy.php:112 view/Research/Briefcase.php:242
7228
  msgid "Do a research"
7229
  msgstr "Recherchieren"
7230
 
7231
  # @ squirrly-seo
7232
+ #: models/focuspages/Clicks.php:73 models/focuspages/Content.php:103
7233
+ #: models/focuspages/Ctr.php:73 models/focuspages/Image.php:105
7234
+ #: models/focuspages/Impressions.php:73 models/focuspages/Keyword.php:108
7235
+ #: models/focuspages/Snippet.php:184 models/focuspages/Strategy.php:111
 
 
7236
  #, fuzzy
7237
+ #| msgid "Save settings"
7238
+ msgid "No Keyword found in Squirrly Live Assistant"
7239
+ msgstr "Einstellungen speichern"
7240
 
7241
+ #: models/focuspages/Clicks.php:76 models/focuspages/Content.php:107
7242
+ #: models/focuspages/Ctr.php:76 models/focuspages/Image.php:112
7243
+ #: models/focuspages/Impressions.php:76 models/focuspages/Keyword.php:111
7244
+ #: models/focuspages/Strategy.php:114
7245
  #, fuzzy
7246
  #| msgid "Optimize for Keyword"
7247
  msgid "Optimize for a keyword"
7248
  msgstr "Schlüsselwort optimieren"
7249
 
7250
+ #: models/focuspages/Clicks.php:106 models/focuspages/Content.php:123
7251
+ #: models/focuspages/Ctr.php:106 models/focuspages/Impressions.php:106
7252
+ #: models/focuspages/Keyword.php:129 models/focuspages/Strategy.php:130
7253
  msgid ""
7254
  "Optimize the page for a keyword. Click to open the Assistant in the right "
7255
  "sidebar and follow the instructions."
7256
  msgstr ""
7257
 
7258
  # @ squirrly-seo
7259
+ #: models/focuspages/Clicks.php:108 models/focuspages/Ctr.php:108
7260
+ #: models/focuspages/Impressions.php:108
7261
  #, fuzzy
7262
  #| msgid "Google %sAnalytics ID%s`:"
7263
  msgid "Connect to Google Search Console."
7282
  msgstr ""
7283
 
7284
  #: models/focuspages/Content.php:51
7285
+ #, fuzzy
7286
+ #| msgid "Optimize for Keyword"
7287
  msgid "Snippet is green"
7288
+ msgstr "Schlüsselwort optimieren"
7289
 
7290
  #: models/focuspages/Content.php:52
7291
  #, php-format
7292
  msgid ""
7293
+ "The tasks inside the %sSnippet%s section of the Focus Pages feature must all "
7294
  "be turned green. %s Why? %s If the Snippet elements are Not green, then your "
7295
  "Focus Page is not 100%% optimized. %s We've built this SEO Content section "
7296
  "especially because we wanted to help you understand that there's a lot more "
7326
  "easiest ways to ensure that the content on the page keeps being relevant."
7327
  msgstr ""
7328
 
7329
+ #: models/focuspages/Content.php:92 models/focuspages/Keyword.php:104
7330
+ #: view/Research/Briefcase.php:228 view/Research/HistoryDetails.php:78
7331
+ #: view/Research/ResearchDetails.php:51
7332
  #, fuzzy
7333
  #| msgid "Optimize for Keyword"
7334
  msgid "Optimize for this"
7348
  msgstr ""
7349
 
7350
  # @ squirrly-seo
7351
+ #: models/focuspages/Image.php:73
7352
  #, fuzzy
7353
  #| msgid "Keyword:"
7354
  msgid "Keyword in filename"
7355
  msgstr "Schlüsselwort:"
7356
 
7357
+ #: models/focuspages/Image.php:76
7358
  #, php-format
7359
  msgid ""
7360
  "Your filename for one of the images in this Focus Page should be: %s keyword."
7365
  "you used it more than once."
7366
  msgstr ""
7367
 
7368
+ #: models/focuspages/Image.php:102 models/focuspages/Snippet.php:187
7369
  msgid "Edit your snippet"
7370
  msgstr ""
7371
 
7372
+ #: models/focuspages/Image.php:143
7373
  msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
7374
  msgstr ""
7375
 
7376
  # @ squirrly-seo
7377
+ #: models/focuspages/Image.php:144
7378
  #, fuzzy
7379
  #| msgid "No results found!"
7380
  msgid "No image found"
7466
  "Search Console API to send Google the request on your behalf."
7467
  msgstr ""
7468
 
7469
+ # @ squirrly-seo
7470
+ #: models/focuspages/Indexability.php:72 view/Blocks/Snippet.php:295
7471
+ #, fuzzy
7472
+ #| msgid "adds <strong>canonical</strong> link in home page"
7473
  msgid "Canonical link"
7474
+ msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
7475
 
7476
+ # @ squirrly-seo
7477
  #: models/focuspages/Indexability.php:73
7478
+ #, fuzzy
7479
+ #| msgid "Google %sAnalytics ID%s`:"
7480
  msgid "Canonical"
7481
+ msgstr "Google %sAnalytics ID%s`:"
7482
 
7483
+ # @ squirrly-seo
7484
  #: models/focuspages/Indexability.php:73
7485
+ #, fuzzy
7486
+ #| msgid "Google %sAnalytics ID%s`:"
7487
  msgid "No Canonical"
7488
+ msgstr "Google %sAnalytics ID%s`:"
7489
 
7490
+ # @ squirrly-seo
7491
  #: models/focuspages/Indexability.php:73
7492
+ #, fuzzy
7493
+ #| msgid "Squirrly LIVE SEO assistant"
7494
  msgid "Post URL"
7495
+ msgstr "Squirrly LIVE SEO-Assistent"
7496
 
7497
  #: models/focuspages/Indexability.php:73
7498
  msgid "No URL"
7572
  "shot at ranking, make sure the competition is low for the keyword you choose."
7573
  msgstr ""
7574
 
7575
+ # @ squirrly-seo
7576
  #: models/focuspages/Keyword.php:54
7577
+ #, fuzzy
7578
+ #| msgid "Do a research"
7579
  msgid "Search volume"
7580
+ msgstr "Recherchieren"
7581
 
7582
  #: models/focuspages/Keyword.php:56
7583
  #, php-format
7592
  "visiting this page. And then all the effort will have been for nothing."
7593
  msgstr ""
7594
 
7595
+ # @ squirrly-seo
7596
  #: models/focuspages/Keyword.php:59
7597
+ #, fuzzy
7598
+ #| msgid "The code for Google Analytics is incorrect."
7599
  msgid "Google Trend"
7600
+ msgstr "Der Code für Google Analytics ist falsch."
7601
 
7602
  #: models/focuspages/Keyword.php:61
7603
  #, php-format
7619
  msgid "Find Better Keywords"
7620
  msgstr "Ein Schlüsselwort eingeben"
7621
 
7622
+ # @ squirrly-seo
7623
+ #: models/focuspages/Keyword.php:158 models/focuspages/Keyword.php:176
7624
+ #: models/focuspages/Keyword.php:199
7625
+ #, fuzzy
7626
+ #| msgid "Keyword:"
7627
+ msgid "No Keyword Found"
7628
+ msgstr "Schlüsselwort:"
7629
+
7630
  #: models/focuspages/Keyword.php:158 models/focuspages/Keyword.php:176
7631
  #: models/focuspages/Keyword.php:199
7632
+ msgid "Please add a keyword first in Squirrly Live Assistant."
7633
  msgstr ""
7634
 
7635
+ # @ squirrly-seo
7636
  #: models/focuspages/Length.php:36
7637
+ #, fuzzy, php-format
7638
+ #| msgid "Squirrly Keyword Research"
7639
  msgid "Write %s words"
7640
+ msgstr "Squirrly Erweiterte Suche!"
7641
 
7642
  # @ squirrly-seo
7643
  #: models/focuspages/Length.php:37
7680
  msgstr ""
7681
 
7682
  # @ squirrly-seo
7683
+ #: models/focuspages/Length.php:65
7684
  #, fuzzy
7685
  #| msgid "Squirrly settings"
7686
  msgid "Edit Page"
7687
  msgstr "Squirrly Einstellungen"
7688
 
7689
  # @ squirrly-seo
7690
+ #: models/focuspages/Length.php:85
7691
  #, fuzzy
7692
  #| msgid "Google %sAnalytics ID%s`:"
7693
  msgid "Connect to Google Analytics first."
7694
  msgstr "Google %sAnalytics ID%s`:"
7695
 
7696
  # @ squirrly-seo
7697
+ #: models/focuspages/Length.php:121 models/focuspages/Traffic.php:144
7698
  #: models/focuspages/Traffic.php:160 models/focuspages/Traffic.php:176
7699
  #, fuzzy
7700
  #| msgid "Google %sAnalytics ID%s`:"
7760
  msgstr ""
7761
 
7762
  #: models/focuspages/Onpage.php:61
7763
+ #, fuzzy
7764
+ #| msgid "Optimize for Keyword"
7765
  msgid "Patterns activated"
7766
+ msgstr "Schlüsselwort optimieren"
7767
 
7768
  #: models/focuspages/Onpage.php:62
7769
  #, php-format
7776
  "%s It's for your ranking safety."
7777
  msgstr ""
7778
 
7779
+ #: models/focuspages/Onpage.php:65 view/SeoSettings/Robots.php:28
7780
  msgid "Robots File"
7781
  msgstr ""
7782
 
7806
  msgid "Nofollow on external links"
7807
  msgstr ""
7808
 
7809
+ #: models/focuspages/Snippet.php:123
7810
  #, php-format
7811
  msgid ""
7812
  "To turn this task to green, go and define a title for this page. You can "
7820
  msgstr ""
7821
 
7822
  # @ squirrly-seo
7823
+ #: models/focuspages/Snippet.php:126 models/focuspages/Snippet.php:251
7824
+ #: models/focuspages/Snippet.php:273 view/Blocks/Snippet.php:698
7825
+ #: view/Blocks/Snippet.php:965 view/SeoSettings/Automation.php:148
 
7826
  #, fuzzy
7827
  #| msgid "Description:"
7828
  msgid "Description"
7829
  msgstr "Beschreibung:"
7830
 
7831
+ #: models/focuspages/Snippet.php:128
7832
  #, php-format
7833
  msgid ""
7834
  "To turn this task to green, go and define a %sMeta description%s for this "
7842
  "boost CTR (click-through rates)."
7843
  msgstr ""
7844
 
7845
+ #: models/focuspages/Snippet.php:133
7846
  #, php-format
7847
  msgid "Keyword %s must be present in Title"
7848
  msgstr ""
7849
 
7850
+ # @ squirrly-seo
7851
+ #: models/focuspages/Snippet.php:138
7852
+ #, fuzzy, php-format
7853
+ #| msgid "Competition:"
7854
  msgid "Keyword %s must be present in Description"
7855
+ msgstr "Wettbewerb:"
7856
 
7857
+ #: models/focuspages/Snippet.php:139
7858
  #, php-format
7859
  msgid ""
7860
  "Same as with the title task. %s If a user reads the description of your page "
7866
  "lot about this, because that's what people want to find on the search engine."
7867
  msgstr ""
7868
 
7869
+ #: models/focuspages/Snippet.php:142
7870
  #, fuzzy
7871
  #| msgid "Optimize for Keyword"
7872
  msgid "Open Graph - full definition"
7873
  msgstr "Schlüsselwort optimieren"
7874
 
7875
+ #: models/focuspages/Snippet.php:144
7876
  #, php-format
7877
  msgid ""
7878
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
7884
  "relevant for your search engine position placements."
7885
  msgstr ""
7886
 
7887
+ #: models/focuspages/Snippet.php:147
7888
  #, fuzzy
7889
  #| msgid "Optimize for Keyword"
7890
  msgid "Twitter Cards - full definition"
7891
  msgstr "Schlüsselwort optimieren"
7892
 
7893
+ #: models/focuspages/Snippet.php:149
7894
  #, php-format
7895
  msgid ""
7896
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
7900
  "that you won't miss a beat."
7901
  msgstr ""
7902
 
7903
+ #: models/focuspages/Snippet.php:152
7904
  #, fuzzy
7905
  #| msgid "Optimize for Keyword"
7906
  msgid "JSON-LD definition"
7907
  msgstr "Schlüsselwort optimieren"
7908
 
7909
+ #: models/focuspages/Snippet.php:153
7910
  #, php-format
7911
  msgid ""
7912
  "To turn this task to green, you can easily use the JSON-LD section inside "
7914
  "fields with the proper information. %s This gives important Semantic context "
7915
  "to Google and it plays a role in determining how high your page should be "
7916
  "placed in search rankings. %s You can validate your existing JSON-LD with: "
7917
+ "%shttps://search.google.com/test/rich-results%s"
7918
  msgstr ""
7919
 
7920
+ #: models/focuspages/Snippet.php:156
7921
+ #, fuzzy
7922
+ #| msgid "Optimize for Keyword"
7923
  msgid "Customized"
7924
+ msgstr "Schlüsselwort optimieren"
7925
 
7926
+ #: models/focuspages/Snippet.php:157
7927
  #, php-format
7928
  msgid ""
7929
  "The Snippets of your most important pages should be customized. %s Use the "
7938
  msgstr ""
7939
 
7940
  # @ squirrly-seo
7941
+ #: models/focuspages/Snippet.php:252 models/focuspages/Snippet.php:274
7942
  #, fuzzy
7943
  #| msgid "Images"
7944
  msgid "Image"
7977
  msgid "Add keyword to Briefcase"
7978
  msgstr "Recherchieren"
7979
 
7980
+ # @ squirrly-seo
7981
  #: models/focuspages/Strategy.php:71
7982
+ #, fuzzy
7983
+ #| msgid "Do a research"
7984
  msgid "Great! The keyword exists in Briefcase"
7985
+ msgstr "Recherchieren"
7986
 
7987
+ # @ squirrly-seo
7988
  #: models/focuspages/Strategy.php:71
7989
+ #, fuzzy
7990
+ #| msgid "Do a research"
7991
  msgid "The keyword does not exist in Briefcase"
7992
+ msgstr "Recherchieren"
7993
 
7994
  #: models/focuspages/Strategy.php:72
7995
  #, php-format
8054
  msgid "Manage Strategy"
8055
  msgstr ""
8056
 
8057
+ #: models/focuspages/Strategy.php:166 models/focuspages/Strategy.php:173
8058
  msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
8059
  msgstr ""
8060
 
8171
  msgid "No Squirrly SEO Robots found."
8172
  msgstr "Squirrly LIVE SEO-Assistent"
8173
 
8174
+ # @ squirrly-seo
8175
+ #: view/Assistant/Assistant.php:19
8176
+ #, fuzzy
8177
+ #| msgid "Save settings"
8178
  msgid "Optimize with Squirrly Live Assistant"
8179
+ msgstr "Einstellungen speichern"
8180
 
8181
+ #: view/Assistant/Assistant.php:20
8182
  msgid ""
8183
+ "Use Squirrly to optimize the content for your Posts, Pages, Products, Custom "
8184
+ "Posts, etc."
8185
  msgstr ""
8186
 
8187
  # @ squirrly-seo
8188
+ #: view/Assistant/Assistant.php:34
8189
  #, fuzzy
8190
  #| msgid "No results found!"
8191
  msgid "Practice/Test Round"
8192
  msgstr "Keine Ergebnisse gefunden!"
8193
 
8194
  # @ squirrly-seo
8195
+ #: view/Assistant/Assistant.php:43
8196
  #, fuzzy
8197
  #| msgid "+ Add keyword"
8198
  msgid "Add New"
8199
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
8200
 
8201
+ # @ squirrly-seo
8202
+ #: view/Assistant/Assistant.php:63
8203
+ #, fuzzy
8204
+ #| msgid "Save settings"
8205
+ msgid "Tips: How to use Squirrly Live Assistant?"
8206
+ msgstr "Einstellungen speichern"
8207
+
8208
+ #: view/Assistant/Assistant.php:65
8209
+ msgid ""
8210
+ "Create a new Post, Page or Product and the Live Assistant will load so you "
8211
+ "can start optimize the content."
8212
+ msgstr ""
8213
+
8214
+ #: view/Assistant/Assistant.php:66
8215
+ msgid ""
8216
+ "You can also optimize an existing one and update the content for better "
8217
+ "ranking."
8218
+ msgstr ""
8219
+
8220
+ #: view/Assistant/Assistant.php:67
8221
+ msgid ""
8222
+ "Make sure you optimize the lead pages for one or more keywords and monitor "
8223
+ "them with Focus Pages."
8224
+ msgstr ""
8225
+
8226
+ #: view/Assistant/Settings.php:8 view/Audits/Addpage.php:9
8227
+ #: view/Audits/Audit.php:9 view/Audits/Audits.php:9 view/Audits/Compare.php:12
8228
+ #: view/Audits/Settings.php:8 view/BulkSeo/Bulkseo.php:13
8229
+ #: view/FocusPages/Addpage.php:9 view/FocusPages/Pagelist.php:9
8230
+ #: view/FocusPages/Settings.php:8 view/Ranking/Rankings.php:18
8231
+ #: view/Ranking/Settings.php:8 view/SeoSettings/Advanced.php:8
8232
+ #: view/SeoSettings/Automation.php:8 view/SeoSettings/Favicon.php:8
8233
+ #: view/SeoSettings/Links.php:8 view/SeoSettings/Metas.php:8
8234
+ #: view/SeoSettings/Robots.php:8 view/SeoSettings/Sitemap.php:8
8235
+ #: view/SeoSettings/Social.php:8 view/SeoSettings/Tracking.php:8
8236
+ #: view/SeoSettings/Webmaster.php:8
8237
  msgid ""
8238
  "You do not have permission to access this page. You need Squirrly SEO Admin "
8239
  "role."
8240
  msgstr ""
8241
 
8242
  # @ squirrly-seo
8243
+ #: view/Assistant/Settings.php:26
8244
  #, fuzzy
8245
  #| msgid "Save settings"
8246
  msgid "Live Assistant Settings"
8247
  msgstr "Einstellungen speichern"
8248
 
8249
  # @ squirrly-seo
8250
+ #: view/Assistant/Settings.php:41
8251
  #, fuzzy
8252
  #| msgid "Squirrly Options"
8253
  msgid "Squirrly Tooltips"
8254
  msgstr "Squirrly Optionen"
8255
 
8256
+ #: view/Assistant/Settings.php:42
8257
  #, php-format
8258
  msgid ""
8259
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. 'Enter a "
8260
  "keyword')."
8261
  msgstr ""
8262
 
8263
+ #: view/Assistant/Settings.php:52
8264
+ msgid "Fetch Snippet on Social Media"
8265
+ msgstr ""
8266
+
8267
+ #: view/Assistant/Settings.php:53
8268
+ #, php-format
8269
+ msgid ""
8270
+ "Automatically fetch the Squirrly Snippet on %sFacebook Sharing Debugger%s "
8271
+ "every time you update the content on a page."
8272
+ msgstr ""
8273
+
8274
  # @ squirrly-seo
8275
+ #: view/Assistant/Settings.php:63
8276
  #, fuzzy
8277
  #| msgid "Keywords:"
8278
  msgid "Download Remote Images"
8279
  msgstr "Schlüsselwörter:"
8280
 
8281
+ #: view/Assistant/Settings.php:64
8282
  #, php-format
8283
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
8284
  msgstr ""
8285
 
8286
+ #: view/Assistant/Settings.php:65
8287
  msgid ""
8288
  "Prevent from losing the images you use in your articles in case the remote "
8289
  "images are deleted."
8290
  msgstr ""
8291
 
8292
  # @ squirrly-seo
8293
+ #: view/Assistant/Settings.php:76
8294
  #, fuzzy
8295
  #| msgid "Show only Copyright Free images"
8296
+ msgid "Show Copyright Free Images"
8297
  msgstr "Nur urheberrechtfreie Bilder zeigen"
8298
 
8299
+ #: view/Assistant/Settings.php:77
8300
  #, php-format
8301
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
8302
  msgstr ""
8303
 
8304
  # @ squirrly-seo
8305
+ #: view/Assistant/Settings.php:87
8306
  #, fuzzy
8307
  #| msgid "Save settings"
8308
  msgid "Live Assistant Type"
8309
  msgstr "Einstellungen speichern"
8310
 
8311
+ #: view/Assistant/Settings.php:88
8312
  msgid "Select how you want Squirrly Live Assistant to load in editor."
8313
  msgstr ""
8314
 
8315
+ #: view/Assistant/Settings.php:92
8316
  msgid "Auto"
8317
  msgstr ""
8318
 
8319
+ #: view/Assistant/Settings.php:93
8320
  msgid "Integrated Box"
8321
  msgstr ""
8322
 
8323
+ #: view/Assistant/Settings.php:94
8324
  msgid "Floating Box"
8325
  msgstr ""
8326
 
8327
+ # @ squirrly-seo
8328
+ #: view/Assistant/Settings.php:107
8329
+ #, fuzzy
8330
+ #| msgid "Description:"
8331
  msgid "Activate Live Assistant in Frontend"
8332
+ msgstr "Beschreibung:"
8333
 
8334
+ #: view/Assistant/Settings.php:108
8335
  msgid ""
8336
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
8337
  "with Builders."
8338
  msgstr ""
8339
 
8340
+ #: view/Assistant/Settings.php:109
8341
  msgid "Currently supports the Elementor Builder plugin."
8342
  msgstr ""
8343
 
8344
+ #: view/Assistant/Settings.php:116
8345
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
8346
  msgstr ""
8347
 
8348
+ #: view/Assistant/Settings.php:118
8349
  msgid ""
8350
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
8351
  "post types."
8352
  msgstr ""
8353
 
8354
+ #: view/Assistant/Settings.php:124
8355
  #, fuzzy
8356
  #| msgid "Recent discussions:"
8357
  msgid "Exclusions"
8358
  msgstr "Bisherige Diskussionen:"
8359
 
8360
+ #: view/Assistant/Settings.php:125
8361
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
8362
  msgstr ""
8363
 
 
 
 
 
8364
  # @ squirrly-seo
8365
+ #: view/Assistant/Settings.php:152 view/SeoSettings/Automation.php:507
8366
+ #: view/SeoSettings/Jsonld.php:425 view/SeoSettings/Metas.php:227
8367
+ #: view/SeoSettings/Sitemap.php:370 view/SeoSettings/Social.php:415
 
8368
  #, fuzzy
8369
  #| msgid "Save settings"
8370
  msgid "Show Advanced Options"
8371
  msgstr "Einstellungen speichern"
8372
 
8373
  # @ squirrly-seo
8374
+ #: view/Assistant/Settings.php:153 view/SeoSettings/Automation.php:508
8375
+ #: view/SeoSettings/Jsonld.php:426 view/SeoSettings/Metas.php:228
8376
+ #: view/SeoSettings/Sitemap.php:371 view/SeoSettings/Social.php:416
 
8377
  #, fuzzy
8378
  #| msgid "Save settings"
8379
  msgid "Hide Advanced Options"
8380
  msgstr "Einstellungen speichern"
8381
 
8382
  # @ squirrly-seo
8383
+ #: view/Assistant/Settings.php:156 view/Audits/Settings.php:61
8384
+ #: view/Ranking/Settings.php:346 view/SeoSettings/Advanced.php:92
8385
+ #: view/SeoSettings/Automation.php:511 view/SeoSettings/Automation.php:625
8386
+ #: view/SeoSettings/Favicon.php:108 view/SeoSettings/Jsonld.php:429
8387
+ #: view/SeoSettings/Links.php:112 view/SeoSettings/Metas.php:231
8388
+ #: view/SeoSettings/Robots.php:86 view/SeoSettings/Sitemap.php:374
8389
+ #: view/SeoSettings/Social.php:419 view/SeoSettings/Tracking.php:147
8390
+ #: view/SeoSettings/Webmaster.php:157
8391
  #, fuzzy
8392
  #| msgid "Save settings"
8393
  msgid "Save Settings"
8394
  msgstr "Einstellungen speichern"
8395
 
8396
+ #: view/Audits/Addpage.php:23
8397
  msgid "Add a page in Audit"
8398
  msgstr ""
8399
 
8400
+ #: view/Audits/Addpage.php:24 view/Audits/Audit.php:26
8401
+ #: view/Audits/Audits.php:27 view/Audits/Compare.php:30
8402
  msgid ""
8403
  "Verifies the online presence of your website by knowing how your website is "
8404
  "performing in terms of Blogging, SEO, Social, Authority, Links, and Traffic"
8405
  msgstr ""
8406
 
8407
+ #: view/Audits/Addpage.php:92 view/BulkSeo/Bulkseo.php:100
8408
  #: view/FocusPages/Addpage.php:92
8409
  msgid "Any status"
8410
  msgstr ""
8411
 
8412
  # @ squirrly-seo
8413
+ #: view/Audits/Addpage.php:112 view/BulkSeo/Bulkseo.php:120
8414
+ #: view/FocusPages/Addpage.php:112 view/Research/Research.php:208
8415
  #, fuzzy
8416
  #| msgid "Do a research"
8417
  msgid "Search"
8418
  msgstr "Recherchieren"
8419
 
8420
  # @ squirrly-seo
8421
+ #: view/Audits/Addpage.php:114 view/Audits/Audit.php:38
8422
+ #: view/Audits/Compare.php:45 view/BulkSeo/Bulkseo.php:122
8423
+ #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:7
8424
+ #: view/Ranking/Rankings.php:59 view/Research/Briefcase.php:38
8425
  #, fuzzy
8426
  #| msgid "Keywords:"
8427
  msgid "Show All"
8428
  msgstr "Schlüsselwörter:"
8429
 
8430
+ #: view/Audits/Addpage.php:132 view/FocusPages/Addpage.php:133
8431
  msgid "Option"
8432
  msgstr ""
8433
 
8434
+ #: view/Audits/Addpage.php:174
8435
  msgid "Add Page to Audit"
8436
  msgstr ""
8437
 
8438
  # @ squirrly-seo
8439
+ #: view/Audits/Addpage.php:178
8440
  #, fuzzy
8441
  #| msgid "Send Question"
8442
  msgid "See Audits"
8443
  msgstr "Senden Sie Ihre Frage"
8444
 
8445
+ # @ squirrly-seo
8446
+ #: view/Audits/Addpage.php:192 view/BulkSeo/Bulkseo.php:197
8447
  #: view/FocusPages/Addpage.php:196
8448
+ #, fuzzy
8449
+ #| msgid "Squirrly settings"
8450
  msgid "Prev Page"
8451
+ msgstr "Squirrly Einstellungen"
8452
 
8453
  # @ squirrly-seo
8454
+ #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
8455
  #: view/FocusPages/Addpage.php:197
8456
  #, fuzzy
8457
  #| msgid "Squirrly settings"
8458
  msgid "Next Page"
8459
  msgstr "Squirrly Einstellungen"
8460
 
8461
+ #: view/Audits/Addpage.php:201 view/FocusPages/Addpage.php:205
8462
+ msgid "No page found. Try other post types."
8463
  msgstr ""
8464
 
8465
  # @ squirrly-seo
8466
+ #: view/Audits/Audit.php:25 view/Audits/Compare.php:29
8467
  #, fuzzy
8468
  #| msgid "Your E-mail:"
8469
  msgid "Audit Details"
8490
  msgid "Show Only Incompleted Tasks"
8491
  msgstr "Nur urheberrechtfreie Bilder zeigen"
8492
 
8493
+ #: view/Audits/AuditPageRow.php:41
8494
  msgid "Last checked"
8495
  msgstr ""
8496
 
8497
  # @ squirrly-seo
8498
+ #: view/Audits/AuditPageRow.php:47
8499
  #, fuzzy
8500
  #| msgid "Could not send the email..."
8501
  msgid "Could not create the audit for this URL"
8502
  msgstr "Konnte E-Mail nicht senden ..."
8503
 
8504
  # @ squirrly-seo
8505
+ #: view/Audits/AuditPageRow.php:47
8506
  #, fuzzy
8507
  #| msgid "An error occured."
8508
  msgid "error code"
8509
  msgstr "Ein Fehler ist aufgetreten."
8510
 
8511
+ #: view/Audits/AuditPageRow.php:49
8512
  #, php-format
8513
  msgid ""
8514
  "The way your WordPress site is currently hosted can affect the way Squirrly "
8519
  msgstr ""
8520
 
8521
  # @ squirrly-seo
8522
+ #: view/Audits/AuditPageRow.php:50 view/Audits/AuditPageRow.php:78
8523
+ #: view/FocusPages/FocusPageRow.php:114 view/FocusPages/FocusPageRow.php:192
8524
  #, fuzzy
8525
  #| msgid "Squirrly LIVE SEO assistant"
8526
  msgid "Inspect URL"
8527
  msgstr "Squirrly LIVE SEO-Assistent"
8528
 
8529
  # @ squirrly-seo
8530
+ #: view/Audits/AuditPageRow.php:66
8531
  #, fuzzy
8532
  #| msgid "Could not send the email..."
8533
  msgid "Do you want to delete the Audit Page?"
8534
  msgstr "Konnte E-Mail nicht senden ..."
8535
 
8536
+ #: view/Audits/AuditPageRow.php:72
8537
+ msgid "Remove Page from Audit"
8538
  msgstr ""
8539
 
8540
  # @ squirrly-seo
8541
+ #: view/Audits/AuditPages.php:7
8542
  #, fuzzy
8543
  #| msgid "Squirrly settings"
8544
  msgid "Audited pages"
8545
  msgstr "Squirrly Einstellungen"
8546
 
8547
+ #: view/Audits/AuditPages.php:14 view/FocusPages/FocusPages.php:54
8548
  msgid "Permalink"
8549
  msgstr ""
8550
 
8551
+ #: view/Audits/AuditPages.php:48
8552
  #, php-format
8553
  msgid "No data for this filter. %sShow All%s Audit Pages."
8554
  msgstr ""
8555
 
8556
  # @ squirrly-seo
8557
+ #: view/Audits/AuditPages.php:54
8558
  #, fuzzy
8559
  #| msgid "Squirrly LIVE SEO assistant"
8560
  msgid "Welcome to Squirrly SEO Audits"
8561
  msgstr "Squirrly LIVE SEO-Assistent"
8562
 
8563
+ #: view/Audits/AuditPages.php:56
8564
  msgid "Add a new page for Audit to get started"
8565
  msgstr ""
8566
 
8567
+ #: view/Audits/AuditPages.php:69 view/Errors/Error.php:21
8568
+ #: view/FocusPages/FocusPages.php:127 view/Ranking/Rankings.php:459
8569
  #, php-format
8570
  msgid ""
8571
  "There is a connection error with Squirrly Cloud. Please check the connection "
8572
  "and %srefresh the page%s."
8573
  msgstr ""
8574
 
8575
+ #: view/Audits/AuditStats.php:30
8576
  msgid ""
8577
  "Your score is low. A medium score is over 50, and a good score is over 80."
8578
  msgstr ""
8579
 
8580
+ #: view/Audits/AuditStats.php:32
8581
  msgid "Your score is medium. A good score is over 80."
8582
  msgstr ""
8583
 
8584
+ #: view/Audits/AuditStats.php:34
8585
  msgid "Your score is good. Keep it as high as posible for good results."
8586
  msgstr ""
8587
 
8588
  # @ squirrly-seo
8589
+ #: view/Audits/AuditStats.php:41 view/Audits/AuditStats.php:235
8590
+ #: view/Audits/Compare.php:74
8591
  #, fuzzy
8592
  #| msgid "Squirrly settings"
8593
  msgid "Audit Score"
8594
  msgstr "Squirrly Einstellungen"
8595
 
8596
  # @ squirrly-seo
8597
+ #: view/Audits/AuditStats.php:54
8598
  #, fuzzy
8599
  #| msgid "Squirrly settings"
8600
  msgid "Your audit score is"
8601
  msgstr "Squirrly Einstellungen"
8602
 
8603
+ #: view/Audits/AuditStats.php:63
8604
  msgid "Add a new page for Audit"
8605
  msgstr ""
8606
 
8607
  # @ squirrly-seo
8608
+ #: view/Audits/AuditStats.php:71
8609
  #, fuzzy
8610
  #| msgid "Your E-mail:"
8611
  msgid "Audit Date"
8612
  msgstr "Ihre E-Mail Adresse:"
8613
 
8614
+ #: view/Audits/AuditStats.php:78 view/Audits/AuditStats.php:102
8615
  msgid "You can refresh the audit once every hour"
8616
  msgstr ""
8617
 
8618
+ #: view/Audits/AuditStats.php:80 view/Audits/AuditStats.php:104
8619
  msgid "Request Website Audit"
8620
  msgstr ""
8621
 
8622
  # @ squirrly-seo
8623
+ #: view/Audits/AuditStats.php:90
8624
  #, fuzzy
8625
  #| msgid "Squirrly settings"
8626
  msgid "Audit in progress"
8627
  msgstr "Squirrly Einstellungen"
8628
 
8629
  # @ squirrly-seo
8630
+ #: view/Audits/AuditStats.php:96
8631
  #, fuzzy
8632
  #| msgid "Squirrly settings"
8633
  msgid "Audit not ready yet"
8634
  msgstr "Squirrly Einstellungen"
8635
 
8636
+ #: view/Audits/AuditStats.php:123 view/Audits/AuditStats.php:237
8637
+ #: view/Ranking/Rankings.php:411 view/Research/History.php:32
8638
  msgid "Date"
8639
  msgstr ""
8640
 
8641
+ # @ squirrly-seo
8642
+ #: view/Audits/AuditStats.php:123
8643
+ #, fuzzy
8644
+ #| msgid "Images"
8645
  msgid "On-Page"
8646
+ msgstr "Bilder"
8647
 
8648
+ # @ squirrly-seo
8649
+ #: view/Audits/AuditStats.php:123
8650
+ #, fuzzy
8651
+ #| msgid "Images"
8652
  msgid "Off-Page"
8653
+ msgstr "Bilder"
8654
 
8655
+ #: view/Audits/AuditStats.php:146
8656
  #, php-format
8657
  msgid "You've completed %s tasks from %s"
8658
  msgstr ""
8659
 
8660
+ #: view/Audits/AuditStats.php:170 view/Audits/Compare.php:55
8661
  msgid "Scores"
8662
  msgstr ""
8663
 
8664
+ #: view/Audits/AuditStats.php:171
8665
  #, php-format
8666
  msgid "the latest %s days evolution for Audit"
8667
  msgstr ""
8668
 
8669
+ #: view/Audits/AuditStats.php:196 view/FocusPages/FocusPageStats.php:141
8670
+ #: view/Goals/CheckSeo.php:21 view/Ranking/Rankings.php:156
8671
  msgid "Progress & Achievements"
8672
  msgstr ""
8673
 
8674
+ #: view/Audits/AuditStats.php:197
8675
  #, php-format
8676
  msgid "the latest %s days progress for Audit Pages"
8677
  msgstr ""
8678
 
8679
  # @ squirrly-seo
8680
+ #: view/Audits/AuditStats.php:207 view/FocusPages/FocusPageStats.php:152
8681
+ #: view/Ranking/Rankings.php:185
8682
  #, fuzzy
8683
  #| msgid "No results found!"
8684
  msgid "No progress found yet"
8685
  msgstr "Keine Ergebnisse gefunden!"
8686
 
8687
  # @ squirrly-seo
8688
+ #: view/Audits/AuditStats.php:220
8689
  #, fuzzy
8690
  #| msgid "Squirrly settings"
8691
  msgid "Audit History"
8692
  msgstr "Squirrly Einstellungen"
8693
 
8694
+ # @ squirrly-seo
8695
+ #: view/Audits/AuditStats.php:227
8696
+ #, fuzzy
8697
+ #| msgid "Send Question"
8698
  msgid "Compare Audits"
8699
+ msgstr "Senden Sie Ihre Frage"
8700
 
8701
+ # @ squirrly-seo
8702
+ #: view/Audits/AuditStats.php:236
8703
+ #, fuzzy
8704
+ #| msgid "Images"
8705
  msgid "Page(s)"
8706
+ msgstr "Bilder"
8707
 
8708
  # @ squirrly-seo
8709
+ #: view/Audits/AuditStats.php:253
8710
  #, fuzzy
8711
  #| msgid "Images"
8712
  msgid "pages"
8713
  msgstr "Bilder"
8714
 
8715
+ #: view/Audits/AuditStats.php:257
8716
+ msgid "Show Latest Audit"
8717
  msgstr ""
8718
 
8719
  # @ squirrly-seo
8720
+ #: view/Audits/AuditStats.php:257
8721
+ #, fuzzy
8722
+ #| msgid "automatically"
8723
+ msgid "Show Audit"
8724
+ msgstr "automatisch"
8725
+
8726
+ # @ squirrly-seo
8727
+ #: view/Audits/Audits.php:26
8728
  #, fuzzy
8729
  #| msgid "Squirrly settings"
8730
  msgid "Audits"
8731
  msgstr "Squirrly Einstellungen"
8732
 
8733
+ #: view/Audits/Audits.php:67
8734
  #, php-format
8735
  msgid ""
8736
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
8738
  "involved."
8739
  msgstr ""
8740
 
8741
+ #: view/Audits/Audits.php:74
8742
  #, php-format
8743
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
8744
  msgstr ""
8745
 
8746
  # @ squirrly-seo
8747
+ #: view/Audits/Audits.php:93 view/FocusPages/Pagelist.php:92
8748
  #, fuzzy
8749
  #| msgid "Squirrly LIVE SEO assistant"
8750
  msgid "Squirrly Inspect URL"
8751
  msgstr "Squirrly LIVE SEO-Assistent"
8752
 
8753
  # @ squirrly-seo
8754
+ #: view/Audits/Settings.php:31
8755
  #, fuzzy
8756
  #| msgid "Squirrly settings"
8757
  msgid "Audit Settings"
8758
  msgstr "Squirrly Einstellungen"
8759
 
8760
  # @ squirrly-seo
8761
+ #: view/Audits/Settings.php:44
8762
  #, fuzzy
8763
  #| msgid "Your E-mail:"
8764
  msgid "Audit Email"
8765
  msgstr "Ihre E-Mail Adresse:"
8766
 
8767
+ #: view/Audits/Settings.php:45
8768
  msgid "Enter the email address on which you want to receive the weekly audits."
8769
  msgstr ""
8770
 
8771
+ # @ squirrly-seo
8772
+ #: view/Blocks/Account.php:11
8773
+ #, fuzzy
8774
+ #| msgid "Squirrly.co Login"
8775
  msgid "Account Info Unavailable"
8776
+ msgstr "Squirrly.co Login"
8777
 
8778
+ #: view/Blocks/Account.php:44
8779
  msgid "Your Plan"
8780
  msgstr ""
8781
 
8782
  # @ squirrly-seo
8783
+ #: view/Blocks/Account.php:45
8784
  #, fuzzy
8785
  #| msgid "Squirrly.co Login"
8786
  msgid "Check Account Info"
8787
  msgstr "Squirrly.co Login"
8788
 
8789
  # @ squirrly-seo
8790
+ #: view/Blocks/Account.php:50 view/Blocks/Login.php:10 view/Blocks/Login.php:28
8791
  #, fuzzy
8792
  #| msgid "Email:"
8793
  msgid "Email"
8794
  msgstr "Ihre E-Mail Adresse:"
8795
 
8796
+ #: view/Blocks/Account.php:56
8797
  #, php-format
8798
  msgid "Due Date: %s"
8799
  msgstr ""
8800
 
8801
+ #: view/Blocks/Account.php:63
8802
+ msgid "Want to see the rest of the sites under your account?"
8803
+ msgstr ""
8804
+
8805
+ #: view/Blocks/Account.php:64
8806
+ msgid "Click Here"
8807
+ msgstr ""
8808
+
8809
+ #: view/Blocks/Connect.php:15 view/Blocks/Connect.php:29
8810
+ #, php-format
8811
  msgid ""
8812
  "This option is used to track innerlinks and insights for your Focus Pages "
8813
+ "and give detailed information about them. %sIt is also useful for sending "
8814
+ "the optimized posts from %shttps://cloud.squirrly.co%s directly on your "
8815
+ "WordPress site."
8816
  msgstr ""
8817
 
8818
  #: view/Blocks/Connect.php:16
8820
  msgstr ""
8821
 
8822
  # @ squirrly-seo
8823
+ #: view/Blocks/Connect.php:19
8824
  #, fuzzy
8825
  #| msgid "Connecting ..."
8826
  msgid "Connect"
8827
  msgstr "Verbinden ..."
8828
 
8829
+ #: view/Blocks/Connect.php:31
8830
  msgid "Let Squirrly API get data for Focus Pages"
8831
  msgstr ""
8832
 
8833
  # @ squirrly-seo
8834
+ #: view/Blocks/Connect.php:35
8835
  #, fuzzy
8836
  #| msgid "Connecting ..."
8837
  msgid "disconnect"
8838
  msgstr "Verbinden ..."
8839
 
8840
+ #: view/Blocks/Dashboard.php:22
8841
  msgid "Upgrade your SEO with Squirrly and improve your rankings on Google"
8842
  msgstr ""
8843
 
8844
+ #: view/Blocks/Dashboard.php:32
8845
  msgid "Congratulations! you have success messages"
8846
  msgstr ""
8847
 
8848
+ #: view/Blocks/Dashboard.php:51 view/Blocks/Dashboard.php:89
8849
  msgid "others"
8850
  msgstr ""
8851
 
8852
+ #: view/Blocks/Dashboard.php:60
8853
  #, php-format
8854
  msgid "See %s other achievements"
8855
  msgstr ""
8856
 
8857
+ #: view/Blocks/Dashboard.php:62
8858
  msgid "See today's achievements"
8859
  msgstr ""
8860
 
8861
+ #: view/Blocks/Dashboard.php:71
8862
+ msgid "You got new goals"
8863
  msgstr ""
8864
 
8865
+ #: view/Blocks/Dashboard.php:98
8866
  #, php-format
8867
  msgid "See %s other goals"
8868
  msgstr ""
8869
 
8870
+ #: view/Blocks/Dashboard.php:100
8871
  msgid "See today's goals"
8872
  msgstr ""
8873
 
8874
+ #: view/Blocks/Dashboard.php:106 view/Goals/Goals.php:214
8875
  #, php-format
8876
  msgid "No other goals for today. %sGood job!"
8877
  msgstr ""
8878
 
8879
+ #: view/Blocks/Dashboard.php:108 view/Goals/Goals.php:225
8880
  msgid "Rank your best pages with Focus Pages"
8881
  msgstr ""
8882
 
8883
+ #: view/Blocks/Dashboard.php:111 view/Goals/Goals.php:222
8884
  msgid "Boost your SEO with Bulk SEO"
8885
  msgstr ""
8886
 
8887
+ #: view/Blocks/Dashboard.php:136 view/Goals/CheckSeo.php:119
8888
  msgid "Checking the website ..."
8889
  msgstr ""
8890
 
8891
+ # @ squirrly-seo
8892
+ #: view/Blocks/Features.php:11
8893
+ #, fuzzy
8894
+ #| msgid "Squirrly LIVE SEO assistant"
8895
+ msgid "Squirrly SEO Feature Categories"
8896
+ msgstr "Squirrly LIVE SEO-Assistent"
8897
 
8898
+ #: view/Blocks/Features.php:12
8899
+ msgid "Manage the Squirrly SEO Features & access them directly from here."
 
8900
  msgstr ""
8901
 
8902
  # @ squirrly-seo
8903
+ #: view/Blocks/Features.php:23
8904
  #, fuzzy
8905
+ #| msgid "Keyword:"
8906
+ msgid "Search Feature"
8907
+ msgstr "Schlüsselwort:"
8908
 
8909
+ #: view/Blocks/Features.php:59
8910
+ msgid "start feature setup"
 
 
8911
  msgstr ""
8912
 
8913
+ #: view/Blocks/Jorney.php:13 view/Blocks/Jorney.php:96
8914
+ msgid "14 Days Journey Course"
8915
  msgstr ""
8916
 
8917
+ #: view/Blocks/Jorney.php:18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8918
  #, php-format
8919
  msgid "Follow the %sdaily recipe%s from below."
8920
  msgstr ""
8921
 
8922
+ #: view/Blocks/Jorney.php:19 view/Onboarding/Journey2.php:33
8923
  #, php-format
8924
  msgid ""
8925
  "%sJoin%s the rest of the %sJourneyTeam on the Facebook Group%s and if you "
8926
  "want you can share with the members that you have started your Journey."
8927
  msgstr ""
8928
 
8929
+ #: view/Blocks/Jorney.php:33
8930
  msgid "Congratulations! You've completed the 14 Days Journey To Better Ranking"
8931
  msgstr ""
8932
 
8933
+ #: view/Blocks/Jorney.php:35
8934
  msgid "Your 14 Days Journey To Better Ranking"
8935
  msgstr ""
8936
 
8937
+ #: view/Blocks/Jorney.php:43 view/Blocks/Jorney.php:61
8938
  msgid "Day"
8939
  msgstr ""
8940
 
8941
+ #: view/Blocks/Jorney.php:50
8942
  msgid "If you missed a day, click on it and read the SEO recipe for it."
8943
  msgstr ""
8944
 
8945
+ #: view/Blocks/Jorney.php:56
8946
  msgid "I'm all done. Hide this block."
8947
  msgstr ""
8948
 
8949
+ #: view/Blocks/Jorney.php:61
8950
  msgid "Open the SEO recipe for today"
8951
  msgstr ""
8952
 
8953
+ # @ squirrly-seo
8954
+ #: view/Blocks/Jorney.php:66 view/FocusPages/Addpage.php:23
8955
+ #, fuzzy
8956
+ #| msgid "Save settings"
8957
  msgid "Add a page in Focus Pages"
8958
+ msgstr "Einstellungen speichern"
8959
 
8960
+ #: view/Blocks/Jorney.php:101 view/Onboarding/Journey1.php:23
8961
  msgid ""
8962
  "All you need now is to start driving One of your most valuable pages to "
8963
  "Better Rankings."
8964
  msgstr ""
8965
 
8966
+ #: view/Blocks/Jorney.php:104
8967
  msgid "I'm ready to start the Journey To Better Ranking"
8968
  msgstr ""
8969
 
8970
+ #: view/Blocks/KnowledgeBase.php:7
8971
  msgid "Knowledge Base"
8972
  msgstr ""
8973
 
8974
  # @ squirrly-seo
8975
+ #: view/Blocks/Login.php:14
8976
  #, fuzzy
8977
  #| msgid "Password:"
8978
  msgid "Password"
8979
  msgstr "Passwort:"
8980
 
8981
  # @ squirrly-seo
8982
+ #: view/Blocks/Login.php:18
8983
  msgid "Register to Squirrly.co"
8984
  msgstr "Bei Squirrly.co registrieren"
8985
 
8986
  # @ squirrly-seo
8987
+ #: view/Blocks/Login.php:19
8988
  msgid "Lost password?"
8989
  msgstr "Passwort vergessen?"
8990
 
8991
  # @ squirrly-seo
8992
+ #: view/Blocks/Login.php:19
8993
  msgid "Lost password"
8994
  msgstr "Passwort vergessen"
8995
 
8996
  # @ squirrly-seo
8997
+ #: view/Blocks/Login.php:21
8998
  msgid "Login"
8999
  msgstr "Login"
9000
 
9001
+ #: view/Blocks/Login.php:35
9002
  msgid "I already have an account"
9003
  msgstr ""
9004
 
9005
+ #: view/Blocks/Login.php:38
9006
  #, php-format
9007
  msgid "I Agree with the Squirrly %sTerms of Use%s and %sPrivacy Policy%s"
9008
  msgstr ""
9009
 
9010
+ #: view/Blocks/Login.php:40
9011
  msgid "Sign Up"
9012
  msgstr "Anmelden"
9013
 
9014
+ #: view/Blocks/SLASearch.php:3
9015
  msgid "Waiting for your editor to load .."
9016
  msgstr ""
9017
 
9018
+ #: view/Blocks/SLASearch.php:4 view/Blocks/Toolbar.php:62
9019
  msgid ""
9020
  "Javascript is disabled on your browser! You need to activate the javascript "
9021
  "in order to use Squirrly SEO."
9022
  msgstr ""
9023
 
9024
+ # @ squirrly-seo
9025
+ #: view/Blocks/SLASearch.php:9
9026
+ #, fuzzy
9027
+ #| msgid "Save settings"
9028
  msgid "Click to Close Squirrly Live Assistant"
9029
+ msgstr "Einstellungen speichern"
9030
 
9031
+ #: view/Blocks/SLASearch.php:10
9032
  msgid "Click to Minimize Box"
9033
  msgstr ""
9034
 
9035
+ #: view/Blocks/SLASearch.php:11
9036
  msgid "Click to Maximize Box"
9037
  msgstr ""
9038
 
9039
  # @ squirrly-seo
9040
+ #: view/Blocks/SLASearch.php:12 view/Blocks/SLASearch.php:18
9041
  #, fuzzy
9042
  #| msgid "Squirrly settings"
9043
  msgid "Squirrly Briefcase"
9044
  msgstr "Squirrly Einstellungen"
9045
 
9046
  # @ squirrly-seo
9047
+ #: view/Blocks/SLASearch.php:19
9048
  #, fuzzy
9049
  #| msgid "Squirrly Keyword Research"
9050
  msgid "Refresh the briefcase"
9051
  msgstr "Squirrly Erweiterte Suche!"
9052
 
9053
  # @ squirrly-seo
9054
+ #: view/Blocks/SLASearch.php:20
9055
  #, fuzzy
9056
  #| msgid "Squirrly Keyword Research"
9057
  msgid "Close Briefcase"
9058
  msgstr "Squirrly Erweiterte Suche!"
9059
 
9060
+ # @ squirrly-seo
9061
+ #: view/Blocks/SLASearch.php:22
9062
+ #, fuzzy
9063
+ #| msgid "Squirrly Keyword Research"
9064
  msgid "Search in Briefcase ..."
9065
+ msgstr "Squirrly Erweiterte Suche!"
9066
 
9067
  # @ squirrly-seo
9068
+ #: view/Blocks/SLASearch.php:24
9069
  #, fuzzy
9070
  #| msgid "Go to Profile"
9071
  msgid "Go to Briefcase"
9072
  msgstr "Zum Profil"
9073
 
9074
  # @ squirrly-seo
9075
+ #: view/Blocks/SLASearch.php:32
9076
  msgid "Enter a keyword"
9077
  msgstr "Ein Schlüsselwort eingeben"
9078
 
9079
  # @ squirrly-seo
9080
+ #: view/Blocks/SLASearch.php:33
9081
  msgid "for Squirrly Live SEO optimization"
9082
  msgstr "Live-SEO-Optimierung für Squirrly"
9083
 
9084
  # @ squirrly-seo
9085
+ #: view/Blocks/SLASearch.php:38
9086
  #, fuzzy
9087
  #| msgid "Enter even more keywords."
9088
  msgid "Type in your keyword..."
9089
  msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
9090
 
9091
  # @ squirrly-seo
9092
+ #: view/Blocks/SLASearch.php:40
9093
  msgid "Use this keyword"
9094
  msgstr "Dieses Schlüsselwort verwenden"
9095
 
9096
  # @ squirrly-seo
9097
+ #: view/Blocks/SLASearch.php:43
9098
  #, fuzzy
9099
  #| msgid "Do more research!"
9100
  msgid "Do keyword research!"
9101
  msgstr "Erweiterte Suche!"
9102
 
9103
  # @ squirrly-seo
9104
+ #: view/Blocks/SLASearch.php:47
9105
  msgid "Images"
9106
  msgstr "Bilder"
9107
 
9108
  # @ squirrly-seo
9109
+ #: view/Blocks/SLASearch.php:48
9110
  msgid "Twitter"
9111
  msgstr "Twitter"
9112
 
9113
  # @ squirrly-seo
9114
+ #: view/Blocks/SLASearch.php:49
9115
  msgid "Wiki"
9116
  msgstr "Wiki"
9117
 
9118
  # @ squirrly-seo
9119
+ #: view/Blocks/SLASearch.php:50
9120
  msgid "Blogs"
9121
  msgstr "Blogs"
9122
 
9123
  # @ squirrly-seo
9124
+ #: view/Blocks/SLASearch.php:51
9125
  msgid "My articles"
9126
  msgstr "Meine Artikel"
9127
 
9128
  # @ squirrly-seo
9129
+ #: view/Blocks/SLASearch.php:59
9130
  msgid "Show only Copyright Free images"
9131
  msgstr "Nur urheberrechtfreie Bilder zeigen"
9132
 
9133
  # @ squirrly-seo
9134
+ #: view/Blocks/SLASeo.php:4
9135
  #, fuzzy
9136
  #| msgid "Save settings"
9137
  msgid "Squirrly Live Assistant"
9138
  msgstr "Einstellungen speichern"
9139
 
9140
  # @ squirrly-seo
9141
+ #: view/Blocks/SLASeo.php:7
9142
  #, fuzzy
9143
  #| msgid "date"
9144
  msgid "Update"
9145
  msgstr "Datum"
9146
 
9147
+ #: view/Blocks/SLASeo.php:10
9148
  msgid "Split Window"
9149
  msgstr ""
9150
 
9151
+ #: view/Blocks/Snippet.php:81
9152
  msgid "Meta Tags"
9153
  msgstr ""
9154
 
9155
+ #: view/Blocks/Snippet.php:108
 
 
 
 
9156
  #, php-format
9157
  msgid ""
9158
  "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
9160
  msgstr ""
9161
 
9162
  # @ squirrly-seo
9163
+ #: view/Blocks/Snippet.php:116 view/SeoSettings/Automation.php:184
9164
+ #: view/SeoSettings/Automation.php:211 view/SeoSettings/Automation.php:290
9165
  #, fuzzy
9166
  #| msgid "Keywords:"
9167
  msgid "Activate Metas"
9168
  msgstr "Schlüsselwörter:"
9169
 
9170
+ #: view/Blocks/Snippet.php:125
9171
  msgid "How this page will appear on Search Engines"
9172
  msgstr ""
9173
 
9174
  # @ squirrly-seo
9175
+ #: view/Blocks/Snippet.php:129 view/Blocks/Snippet.php:361
9176
+ #: view/Blocks/Snippet.php:569 view/Blocks/Snippet.php:835
9177
+ #: view/Blocks/Snippet.php:1065
9178
  #, fuzzy
9179
  #| msgid "Squirrly Keyword Research"
9180
  msgid "Refresh"
9181
  msgstr "Squirrly Erweiterte Suche!"
9182
 
9183
+ #: view/Blocks/Snippet.php:133 view/Blocks/Snippet.php:594
9184
+ #: view/Blocks/Snippet.php:862
9185
  msgid "AUTO-DRAFT"
9186
  msgstr ""
9187
 
9188
+ #: view/Blocks/Snippet.php:144 view/Blocks/Snippet.php:882
9189
  msgid "Please save the post first to be able to edit the Squirrly SEO Snippet"
9190
  msgstr ""
9191
 
9192
+ #: view/Blocks/Snippet.php:151 view/Blocks/Snippet.php:622
9193
+ #: view/Blocks/Snippet.php:889
9194
  msgid "Cancel"
9195
  msgstr ""
9196
 
9197
+ # @ squirrly-seo
9198
+ #: view/Blocks/Snippet.php:152 view/Blocks/Snippet.php:362
9199
+ #: view/Blocks/Snippet.php:623 view/Blocks/Snippet.php:890
9200
+ #: view/Blocks/Snippet.php:1066
9201
+ #, fuzzy
9202
+ #| msgid "Keyword:"
9203
  msgid "Save"
9204
+ msgstr "Schlüsselwort:"
9205
 
9206
  # @ squirrly-seo
9207
+ #: view/Blocks/Snippet.php:162
9208
  #, fuzzy
9209
  #| msgid "Description:"
9210
  msgid "Activate Title"
9211
  msgstr "Beschreibung:"
9212
 
9213
  # @ squirrly-seo
9214
+ #: view/Blocks/Snippet.php:169 view/Blocks/Snippet.php:220
9215
+ #: view/Blocks/Snippet.php:656 view/Blocks/Snippet.php:699
9216
+ #: view/Blocks/Snippet.php:923 view/Blocks/Snippet.php:966
9217
  #, fuzzy, php-format
9218
  #| msgid "Tips: Length 10-70 chars"
9219
  msgid "Tips: Length %s-%s chars"
9220
  msgstr "Tipp: Länge 10-70 Charaktere"
9221
 
9222
+ #: view/Blocks/Snippet.php:172 view/Blocks/Snippet.php:196
9223
+ #: view/Blocks/Snippet.php:223 view/Blocks/Snippet.php:250
9224
+ #: view/Blocks/Snippet.php:659 view/Blocks/Snippet.php:683
9225
+ #: view/Blocks/Snippet.php:702 view/Blocks/Snippet.php:729
9226
+ #: view/Blocks/Snippet.php:926 view/Blocks/Snippet.php:950
9227
+ #: view/Blocks/Snippet.php:969 view/Blocks/Snippet.php:996
9228
  msgid "Pattern"
9229
  msgstr ""
9230
 
9231
+ # @ squirrly-seo
9232
+ #: view/Blocks/Snippet.php:189 view/Blocks/Snippet.php:676
9233
+ #: view/Blocks/Snippet.php:943
9234
+ #, fuzzy
9235
+ #| msgid "Description:"
9236
  msgid "Default Title"
9237
+ msgstr "Beschreibung:"
9238
 
9239
  # @ squirrly-seo
9240
+ #: view/Blocks/Snippet.php:213
9241
  #, fuzzy
9242
  #| msgid "Description:"
9243
  msgid "Activate Description"
9244
  msgstr "Beschreibung:"
9245
 
9246
  # @ squirrly-seo
9247
+ #: view/Blocks/Snippet.php:219
9248
  #, fuzzy
9249
  #| msgid "Description:"
9250
  msgid "Meta Description"
9251
  msgstr "Beschreibung:"
9252
 
9253
  # @ squirrly-seo
9254
+ #: view/Blocks/Snippet.php:243 view/Blocks/Snippet.php:722
9255
+ #: view/Blocks/Snippet.php:989
9256
  #, fuzzy
9257
  #| msgid "Description:"
9258
  msgid "Default Description"
9259
  msgstr "Beschreibung:"
9260
 
9261
  # @ squirrly-seo
9262
+ #: view/Blocks/Snippet.php:267
9263
  #, fuzzy
9264
  #| msgid "Keywords:"
9265
  msgid "Activate Keywords"
9266
  msgstr "Schlüsselwörter:"
9267
 
9268
  # @ squirrly-seo
9269
+ #: view/Blocks/Snippet.php:273
9270
  #, fuzzy
9271
  #| msgid "Keyword:"
9272
  msgid "Meta Keywords"
9273
  msgstr "Schlüsselwort:"
9274
 
9275
  # @ squirrly-seo
9276
+ #: view/Blocks/Snippet.php:277
9277
  msgid "+ Add keyword"
9278
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
9279
 
9280
  # @ squirrly-seo
9281
+ #: view/Blocks/Snippet.php:289
9282
  #, fuzzy
9283
  #| msgid "Google %sAnalytics ID%s`:"
9284
  msgid "Activate Canonical"
9285
  msgstr "Google %sAnalytics ID%s`:"
9286
 
9287
+ #: view/Blocks/Snippet.php:296
9288
  msgid "Leave it blank if you don't have an external canonical"
9289
  msgstr ""
9290
 
9291
+ #: view/Blocks/Snippet.php:299
9292
  msgid "Found"
9293
  msgstr ""
9294
 
9295
+ # @ squirrly-seo
9296
+ #: view/Blocks/Snippet.php:311
9297
+ #, fuzzy
9298
+ #| msgid "Description:"
9299
  msgid "Default Link"
9300
+ msgstr "Beschreibung:"
9301
 
9302
+ #: view/Blocks/Snippet.php:333 view/Blocks/Snippet.php:535
9303
+ #: view/Blocks/Snippet.php:793 view/Blocks/Snippet.php:1037
9304
+ #: view/Blocks/Snippet.php:1170
9305
  msgid ""
9306
  "To edit the snippet, you have to activate Squirrly SEO for this page first"
9307
  msgstr ""
9308
 
9309
  # @ squirrly-seo
9310
+ #: view/Blocks/Snippet.php:342
9311
  #, fuzzy
9312
  #| msgid "Squirrly LIVE SEO assistant"
9313
  msgid "Activate Squirrly Snippet for this page"
9314
  msgstr "Squirrly LIVE SEO-Assistent"
9315
 
9316
+ # @ squirrly-seo
9317
+ #: view/Blocks/Snippet.php:347 view/Blocks/Snippet.php:798
9318
+ #: view/Blocks/Snippet.php:1042
9319
+ #, fuzzy
9320
+ #| msgid "Twitter"
9321
  msgid "Post Type"
9322
+ msgstr "Twitter"
9323
 
9324
+ #: view/Blocks/Snippet.php:349 view/Blocks/Snippet.php:759
9325
+ #: view/Blocks/Snippet.php:800
9326
  msgid "OG Type"
9327
  msgstr ""
9328
 
9329
+ #: view/Blocks/Snippet.php:379
9330
  #, php-format
9331
  msgid ""
9332
  "JSON-LD is disable for this Post Type (%s). See %sSquirrly > SEO Settings > "
9333
  "Automation%s."
9334
  msgstr ""
9335
 
9336
+ #: view/Blocks/Snippet.php:409
9337
+ msgid "JSON-LD Schema Types"
9338
  msgstr ""
9339
 
9340
+ #: view/Blocks/Snippet.php:410 view/SeoSettings/Automation.php:342
9341
+ msgid "JSON-LD will load the Schema for the selected types."
 
9342
  msgstr ""
9343
 
9344
+ #: view/Blocks/Snippet.php:411
9345
+ #, php-format
9346
+ msgid "Setup JSON-LD for this Post Type by using %s SEO Automation %s"
9347
  msgstr ""
9348
 
9349
+ #: view/Blocks/Snippet.php:440
9350
+ msgid "Hold Control key (or Command on Mac) to select multiple types."
9351
  msgstr ""
9352
 
9353
+ #: view/Blocks/Snippet.php:449
9354
+ msgid "JSON-LD Breadcrumbs Schema"
 
9355
  msgstr ""
9356
 
9357
+ #: view/Blocks/Snippet.php:450
9358
+ #, php-format
9359
+ msgid "Manage BreadcrumbsList Schema from %s JSON-LD Settings %s."
9360
  msgstr ""
9361
 
9362
  # @ squirrly-seo
9363
+ #: view/Blocks/Snippet.php:455 view/Blocks/Snippet.php:473
9364
  #, fuzzy
9365
+ #| msgid "Keywords:"
9366
+ msgid "Active"
9367
+ msgstr "Schlüsselwörter:"
9368
+
9369
+ #: view/Blocks/Snippet.php:457 view/Blocks/Snippet.php:475
9370
+ msgid "Not Active"
9371
+ msgstr ""
9372
+
9373
+ #: view/Blocks/Snippet.php:467
9374
+ msgid "Woocommerce Product Support"
9375
+ msgstr ""
9376
 
9377
+ #: view/Blocks/Snippet.php:468
9378
  #, php-format
9379
+ msgid "Manage Woocommerce Support from %s JSON-LD Settings %s."
 
 
9380
  msgstr ""
9381
 
9382
+ #: view/Blocks/Snippet.php:487
9383
+ #, fuzzy
9384
+ #| msgid "Optimize for Keyword"
9385
+ msgid "JSON-LD Code"
9386
+ msgstr "Schlüsselwort optimieren"
9387
+
9388
+ #: view/Blocks/Snippet.php:488
9389
+ msgid "Let Squirrly load the JSON-LD Schema for the selected types."
9390
  msgstr ""
9391
 
9392
+ #: view/Blocks/Snippet.php:492 view/Blocks/Snippet.php:770
9393
+ #: view/Blocks/Snippet.php:1017
9394
+ msgid "(Auto)"
9395
  msgstr ""
9396
 
9397
+ #: view/Blocks/Snippet.php:493
9398
+ msgid "Custom Code"
9399
  msgstr ""
9400
 
9401
+ #: view/Blocks/Snippet.php:495
9402
+ #, php-format
9403
  msgid ""
9404
+ "Use Advanced Custom Fields (ACF) plugin to add custom JSON-LD. %s Learn More "
9405
+ "%s"
9406
  msgstr ""
9407
 
9408
+ #: view/Blocks/Snippet.php:504
9409
+ msgid "Custom JSON-LD Code"
9410
+ msgstr ""
9411
+
9412
+ #: view/Blocks/Snippet.php:505
9413
+ #, php-format
9414
+ msgid "Add JSON-LD code from %sSchema Generator Online%s."
9415
+ msgstr ""
9416
+
9417
+ # @ squirrly-seo
9418
+ #: view/Blocks/Snippet.php:518
9419
+ #, fuzzy
9420
+ #| msgid "date"
9421
+ msgid "Validate JSON-LD"
9422
+ msgstr "Datum"
9423
+
9424
+ #: view/Blocks/Snippet.php:547 view/Blocks/Snippet.php:813
9425
+ #, php-format
9426
+ msgid ""
9427
+ "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
9428
+ "will not load for this post type on the frontend."
9429
+ msgstr ""
9430
+
9431
+ #: view/Blocks/Snippet.php:564
9432
+ msgid "How this page appears on Facebook"
9433
+ msgstr ""
9434
+
9435
+ #: view/Blocks/Snippet.php:570
9436
+ #, fuzzy
9437
+ #| msgid "Optimize for Keyword"
9438
+ msgid "Edit Open Graph"
9439
+ msgstr "Schlüsselwort optimieren"
9440
+
9441
+ #: view/Blocks/Snippet.php:582 view/Blocks/Snippet.php:849
9442
+ msgid "The image size must be at least 500 pixels wide"
9443
+ msgstr ""
9444
+
9445
+ #: view/Blocks/Snippet.php:603 view/Blocks/Snippet.php:871
9446
+ msgid ""
9447
+ "This is the Featured Image. You can change it if you edit the snippet and "
9448
+ "upload another image."
9449
+ msgstr ""
9450
+
9451
+ #: view/Blocks/Snippet.php:615
9452
+ msgid "Please save the post first to be able to edit the Squirrly SEO Snippet."
9453
  msgstr ""
9454
 
9455
  # @ squirrly-seo
9456
+ #: view/Blocks/Snippet.php:632 view/Blocks/Snippet.php:899
9457
  #, fuzzy
9458
  #| msgid "Images"
9459
  msgid "Media Image"
9460
  msgstr "Bilder"
9461
 
9462
  # @ squirrly-seo
9463
+ #: view/Blocks/Snippet.php:636 view/Blocks/Snippet.php:903
9464
+ #: view/Research/Briefcase.php:468 view/SeoSettings/Favicon.php:78
9465
  msgid "Upload"
9466
  msgstr "Hochladen"
9467
 
9468
+ #: view/Blocks/Snippet.php:637 view/Blocks/Snippet.php:904
9469
  msgid "Image size must be at least 500 pixels wide"
9470
  msgstr ""
9471
 
9472
+ #: view/Blocks/Snippet.php:744
9473
  msgid "Author Link"
9474
  msgstr ""
9475
 
9476
+ #: view/Blocks/Snippet.php:745
9477
  msgid "For multiple authors, separate their Facebook links with commas"
9478
  msgstr ""
9479
 
9480
+ #: view/Blocks/Snippet.php:830
9481
  msgid "How this page appears on Twitter"
9482
  msgstr ""
9483
 
9484
  # @ squirrly-seo
9485
+ #: view/Blocks/Snippet.php:836
9486
  #, fuzzy
9487
  #| msgid "Twitter"
9488
  msgid "Edit Twitter Card"
9489
  msgstr "Twitter"
9490
 
9491
+ #: view/Blocks/Snippet.php:1012
9492
  msgid "Card Type"
9493
  msgstr ""
9494
 
9495
+ #: view/Blocks/Snippet.php:1013 view/SeoSettings/Social.php:286
9496
  #, php-format
9497
  msgid "Every change needs %sTwitter Card Validator%s"
9498
  msgstr ""
9499
 
9500
+ #: view/Blocks/Snippet.php:1018
9501
  msgid "summary"
9502
  msgstr ""
9503
 
9504
+ #: view/Blocks/Snippet.php:1019
9505
  msgid "summary_large_image"
9506
  msgstr ""
9507
 
9508
  # @ squirrly-seo
9509
+ #: view/Blocks/Snippet.php:1044
9510
  #, fuzzy
9511
  #| msgid "Twitter"
9512
  msgid "Twitter Type"
9513
  msgstr "Twitter"
9514
 
9515
+ #: view/Blocks/Snippet.php:1057
9516
  #, php-format
9517
  msgid ""
9518
  "You selected '%s' in %sSettings > Reading%s. It's important to uncheck that "
9519
  "option."
9520
  msgstr ""
9521
 
9522
+ #: view/Blocks/Snippet.php:1077 view/Blocks/Snippet.php:1108
9523
  #, php-format
9524
  msgid ""
9525
  "This Post Type (%s) has Nofollow set in Automation. See %sSquirrly > SEO "
9526
  "Settings > Automation%s."
9527
  msgstr ""
9528
 
9529
+ # @ squirrly-seo
9530
+ #: view/Blocks/Snippet.php:1084 view/Blocks/Snippet.php:1115
9531
+ #: view/SeoSettings/Automation.php:191 view/SeoSettings/Automation.php:218
9532
+ #, fuzzy
9533
+ #| msgid "Keywords:"
9534
  msgid "Activate Robots Meta"
9535
+ msgstr "Schlüsselwörter:"
9536
 
9537
+ #: view/Blocks/Snippet.php:1095
9538
  msgid "Let Google Index This Page"
9539
  msgstr ""
9540
 
9541
+ #: view/Blocks/Snippet.php:1138
9542
  #, php-format
9543
  msgid ""
9544
  "Show in sitemap for this Post Type (%s) was excluded from %sSquirrly > SEO "
9546
  msgstr ""
9547
 
9548
  # @ squirrly-seo
9549
+ #: view/Blocks/Snippet.php:1145 view/SeoSettings/Automation.php:237
9550
+ #: view/SeoSettings/Sitemap.php:34
9551
  #, fuzzy
9552
  #| msgid "Description:"
9553
  msgid "Activate Sitemap"
9554
  msgstr "Beschreibung:"
9555
 
9556
+ #: view/Blocks/Snippet.php:1155
9557
  msgid "Show it in Sitemap.xml"
9558
  msgstr ""
9559
 
9560
  # @ squirrly-seo
9561
+ #: view/Blocks/Snippet.php:1193
9562
  #, fuzzy
9563
  #| msgid "Squirrly LIVE SEO assistant"
9564
  msgid "Loading Squirrly Snippet ..."
9565
  msgstr "Squirrly LIVE SEO-Assistent"
9566
 
9567
  # @ squirrly-seo
9568
+ #: view/Blocks/Snippet.php:1219
9569
  #, fuzzy
9570
  #| msgid "Squirrly LIVE SEO assistant"
9571
  msgid "Enable Squirrly SEO to load Squirrly Snippet"
9572
  msgstr "Squirrly LIVE SEO-Assistent"
9573
 
9574
+ #: view/Blocks/Snippet.php:1228
 
 
 
 
 
 
9575
  msgid ""
9576
  "Couldn't save your changes. Immunify360 or some other service on your web "
9577
  "hosting account interferes with your WordPress. Please contact the hosting "
9578
  "provider`s support team"
9579
  msgstr ""
9580
 
9581
+ #: view/Blocks/Stats.php:43
9582
  msgid "Hello"
9583
  msgstr ""
9584
 
9585
+ #: view/Blocks/Stats.php:49
9586
  #, php-format
9587
  msgid "%s SEO Protection"
9588
  msgstr ""
9589
 
9590
+ #: view/Blocks/Stats.php:52
9591
  msgid "All protection layers are activated."
9592
  msgstr ""
9593
 
9594
+ #: view/Blocks/Stats.php:54
9595
  #, php-format
9596
  msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
9597
  msgstr ""
9598
 
9599
+ #: view/Blocks/Stats.php:58
9600
  msgid "How does this work?"
9601
  msgstr ""
9602
 
9603
+ #: view/Blocks/Stats.php:66
9604
  msgid "Pages SEO'ed"
9605
  msgstr ""
9606
 
9607
+ #: view/Blocks/Stats.php:72
9608
  msgid "Post Types Covered"
9609
  msgstr ""
9610
 
9611
+ #: view/Blocks/Stats.php:77
9612
+ msgid "What's included"
 
9613
  msgstr ""
9614
 
9615
+ #: view/Blocks/Stats.php:78
9616
+ #, php-format
9617
+ msgid "Over %s400%s free in-depth features"
9618
+ msgstr ""
 
 
9619
 
9620
+ #: view/Blocks/Stats.php:80
9621
+ msgid "See All Tools"
9622
  msgstr ""
9623
 
9624
+ #: view/Blocks/Stats.php:84 view/Goals/Goals.php:44
9625
  msgid "Run SEO Test"
9626
  msgstr ""
9627
 
9628
  # @ squirrly-seo
9629
+ #: view/Blocks/Support.php:8
9630
  msgid "Go to Profile"
9631
  msgstr "Zum Profil"
9632
 
9633
  # @ squirrly-seo
9634
+ #: view/Blocks/Support.php:8 view/Blocks/Support.php:9
9635
  msgid "Profile"
9636
  msgstr "Profil"
9637
 
9638
  # @ squirrly-seo
9639
+ #: view/Blocks/Support.php:19
9640
  msgid "Support"
9641
  msgstr "Support"
9642
 
9643
  # @ squirrly-seo
9644
+ #: view/Blocks/Support.php:22
9645
  msgid "Need Help with Squirrly SEO?"
9646
  msgstr "Brauchen Sie Hilfe mit Squirrly SEO?"
9647
 
9648
+ #: view/Blocks/Support.php:24 view/Blocks/Support.php:91
9649
  #, php-format
9650
  msgid "10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s."
9651
  msgstr ""
9652
 
9653
+ #: view/Blocks/Support.php:25 view/Blocks/Support.php:92
9654
  #, php-format
9655
  msgid "How To Squirrly %swebsite%s."
9656
  msgstr ""
9657
 
9658
+ #: view/Blocks/Support.php:26 view/Blocks/Support.php:93
9659
  #, php-format
9660
  msgid "Facebook %sSupport Community%s."
9661
  msgstr ""
9662
 
9663
+ # @ squirrly-seo
9664
+ #: view/Blocks/Support.php:27 view/Blocks/Support.php:94
9665
+ #, fuzzy, php-format
9666
+ #| msgid "Description:"
9667
  msgid "Facebook %sMessenger%s."
9668
+ msgstr "Beschreibung:"
9669
 
9670
+ #: view/Blocks/Support.php:28
9671
  #, php-format
9672
  msgid "Twitter %sSupport%s."
9673
  msgstr ""
9674
 
9675
  # @ squirrly-seo
9676
+ #: view/Blocks/Support.php:36
9677
  msgid "How was your Squirrly experience today?"
9678
  msgstr "Wie war Ihre Squirrly Erfahrung heute?"
9679
 
9680
+ #: view/Blocks/Support.php:43
9681
  msgid "Annoying"
9682
  msgstr ""
9683
 
9684
+ #: view/Blocks/Support.php:47
9685
  msgid "Bad"
9686
  msgstr ""
9687
 
9688
+ #: view/Blocks/Support.php:51
9689
  msgid "Nice"
9690
  msgstr ""
9691
 
9692
+ #: view/Blocks/Support.php:55
9693
  msgid "Great"
9694
  msgstr ""
9695
 
9696
+ #: view/Blocks/Support.php:59
9697
  msgid "Love it"
9698
  msgstr ""
9699
 
9700
  # @ squirrly-seo
9701
+ #: view/Blocks/Support.php:71
9702
  msgid "How was Squirrly today?"
9703
  msgstr "Wie war Squirrly heute?"
9704
 
9705
  # @ squirrly-seo
9706
+ #: view/Blocks/Support.php:86
9707
  msgid "Send feedback"
9708
  msgstr "Feedback senden"
9709
 
9710
+ #: view/Blocks/Support.php:90
9711
  msgid "For more support:"
9712
  msgstr ""
9713
 
9714
+ #: view/Blocks/Support.php:95
9715
  #, php-format
9716
  msgid "New Lessons Mon. and Tue. on %sTwitter%s."
9717
  msgstr ""
9718
 
9719
  # @ squirrly-seo
9720
+ #: view/Blocks/Support.php:100
9721
  #, fuzzy
9722
  #| msgid "Thank you! You can send us a happy face tomorow too."
9723
  msgid "Thank you! You can send us a happy face tomorrow too."
9724
  msgstr "Danke! Sie können uns auch morgen ein fröhliches Gesicht senden."
9725
 
9726
+ #: view/Blocks/Uninstall.php:5
9727
  msgid "I no longer need the plugin"
9728
  msgstr ""
9729
 
9730
+ #: view/Blocks/Uninstall.php:9
9731
  msgid "I found a better plugin"
9732
  msgstr ""
9733
 
9734
+ #: view/Blocks/Uninstall.php:10
9735
  msgid "Please share which plugin"
9736
  msgstr ""
9737
 
9738
+ #: view/Blocks/Uninstall.php:13
9739
  msgid "I couldn't get the plugin to work"
9740
  msgstr ""
9741
 
9742
+ #: view/Blocks/Uninstall.php:17
9743
  msgid "It's a temporary deactivation"
9744
  msgstr ""
9745
 
9746
+ #: view/Blocks/Uninstall.php:21 view/Onboarding/Step1.php:42
9747
  msgid "Other"
9748
  msgstr ""
9749
 
9750
+ #: view/Blocks/Uninstall.php:22
9751
  msgid "Please share the reason"
9752
  msgstr ""
9753
 
9754
  # @ squirrly-seo
9755
+ #: view/Blocks/Uninstall.php:30
9756
  #, fuzzy
9757
  #| msgid "Squirrly LIVE SEO assistant"
9758
  msgid "Deactivate Squirrly SEO"
9759
  msgstr "Squirrly LIVE SEO-Assistent"
9760
 
9761
+ #: view/Blocks/Uninstall.php:36
9762
  msgid "Please share why you are deactivating Squirrly:"
9763
  msgstr ""
9764
 
9765
+ #: view/Blocks/Uninstall.php:53
9766
  msgid "Submit &amp; Deactivate"
9767
  msgstr ""
9768
 
9769
+ #: view/Blocks/Uninstall.php:54
9770
  msgid "Skip &amp; Deactivate"
9771
  msgstr ""
9772
 
9773
+ #: view/Blocks/Uninstall.php:60
9774
+ #, php-format
9775
+ msgid ""
9776
+ "You set to remove all Squirrly SEO data on uninstall. You can change this "
9777
+ "option from %sSEO Settings > Advanced%s"
9778
+ msgstr ""
9779
+
9780
+ #: view/Blocks/Uninstall.php:67
9781
  #, fuzzy
9782
  #| msgid "This email connects you to Squirrly.co"
9783
  msgid "Disconnect from Squirrly Cloud"
9784
  msgstr "This email connects you to Squirrly.co"
9785
 
9786
+ #: view/Blocks/VersionBar.php:15
9787
  #, php-format
9788
  msgid ""
9789
  "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
9790
  "accurate and objective."
9791
  msgstr ""
9792
 
9793
+ #: view/Blocks/VersionBar.php:18
9794
  #, php-format
9795
  msgid ""
9796
  "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
9797
  msgstr ""
9798
 
9799
+ #: view/Blocks/VersionBar.php:24
9800
  #, php-format
9801
  msgid ""
9802
  "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
9805
  "your plan to %sBusiness Plan%s"
9806
  msgstr ""
9807
 
9808
+ #: view/Blocks/VersionBar.php:31
9809
  #, php-format
9810
  msgid ""
9811
  "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
9812
  "hour."
9813
  msgstr ""
9814
 
9815
+ #: view/Blocks/VersionBar.php:35
9816
  #, php-format
9817
  msgid ""
9818
  "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
9820
  "please upgrade your plan to %sPRO Plan%s"
9821
  msgstr ""
9822
 
9823
+ #: view/Blocks/VersionBar.php:42
9824
  #, php-format
9825
  msgid ""
9826
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
9827
  "audit for each page every 5 mins."
9828
  msgstr ""
9829
 
9830
+ #: view/Blocks/VersionBar.php:46
9831
  #, php-format
9832
  msgid ""
9833
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
9835
  "upgrade your plan to %sPRO Plan%s"
9836
  msgstr ""
9837
 
9838
+ #: view/Blocks/VersionBar.php:50
9839
  #, php-format
9840
  msgid ""
9841
  "Your current plan is OLD Squirrly plan: Please read the official notes about "
9843
  "squirrly-seo/%s"
9844
  msgstr ""
9845
 
9846
+ #: view/Blocks/VersionBar.php:58
9847
  #, php-format
9848
  msgid ""
9849
  "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
9850
  "tasks to get 100%% optimized posts and pages."
9851
  msgstr ""
9852
 
9853
+ #: view/Blocks/VersionBar.php:62
9854
  #, php-format
9855
  msgid ""
9856
  "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
9858
  "Plan%s"
9859
  msgstr ""
9860
 
9861
+ #: view/Blocks/VersionBar.php:70
9862
  #, php-format
9863
  msgid ""
9864
  "%sResearch %s:%s You have %s researches left for your account. The research "
9866
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
9867
  msgstr ""
9868
 
9869
+ #: view/Blocks/VersionBar.php:74
9870
  #, php-format
9871
  msgid ""
9872
  "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
9873
  "Deep Keyword Research and get up to 50 results on each research."
9874
  msgstr ""
9875
 
9876
+ #: view/Blocks/VersionBar.php:78
9877
  #, php-format
9878
  msgid ""
9879
  "%sResearch %s:%s You have %s researches left for your account. The research "
9881
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
9882
  msgstr ""
9883
 
9884
+ #: view/Blocks/VersionBar.php:85
9885
  #, php-format
9886
  msgid ""
9887
  "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
9888
  "optimize your posts and pages."
9889
  msgstr ""
9890
 
9891
+ #: view/Blocks/VersionBar.php:90
9892
  #, php-format
9893
  msgid ""
9894
  "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
9895
  "keywords to organize the keywords by your SEO strategy."
9896
  msgstr ""
9897
 
9898
+ #: view/Blocks/VersionBar.php:96
9899
  #, php-format
9900
  msgid ""
9901
  "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
9902
  "find better matching keywords based on your research history."
9903
  msgstr ""
9904
 
9905
+ #: view/Blocks/VersionBar.php:100
9906
  #, php-format
9907
  msgid ""
9908
  "This feature is only available for PRO and Business accounts. %sTo get "
9909
  "Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s"
9910
  msgstr ""
9911
 
9912
+ #: view/Blocks/VersionBar.php:109
9913
  #, php-format
9914
  msgid ""
9915
  "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
9916
  "SEO for free."
9917
  msgstr ""
9918
 
9919
+ #: view/Blocks/VersionBar.php:115
9920
  #, php-format
9921
  msgid ""
9922
  "%sOn-Page SEO Settings:%s This feature is included in all versions of "
9923
  "Squirrly SEO for free."
9924
  msgstr ""
9925
 
9926
+ #: view/BulkSeo/Bulkseo.php:31
9927
+ msgid ""
9928
+ "Simplify the SEO process for all your posts types and optimize them in just "
9929
+ "minutes."
9930
+ msgstr ""
9931
+
9932
+ #: view/BulkSeo/Bulkseo.php:182
9933
  #, php-format
9934
  msgid "No data for this filter. %sShow All%s records for this post type."
9935
  msgstr ""
9936
 
9937
+ #: view/BulkSeo/Bulkseo.php:184
9938
  msgid "No data found for this post type. Try other post types."
9939
  msgstr ""
9940
 
9941
  #: view/BulkSeo/BulkseoRow.php:26
9942
  #, php-format
9943
+ msgid "View: %s"
9944
  msgstr ""
9945
 
9946
  # @ squirrly-seo
9947
+ #: view/Connect/GoogleAnalytics.php:10
9948
  #, fuzzy
9949
  #| msgid "Google %sAnalytics ID%s`:"
9950
  msgid "Google Analytics"
9951
  msgstr "Google %sAnalytics ID%s`:"
9952
 
9953
  # @ squirrly-seo
9954
+ #: view/Connect/GoogleAnalytics.php:15
9955
  #, fuzzy
9956
  #| msgid "The code for Google Analytics is incorrect."
9957
  msgid "You are connected to Google Analytics"
9958
  msgstr "Der Code für Google Analytics ist falsch."
9959
 
9960
  # @ squirrly-seo
9961
+ #: view/Connect/GoogleAnalytics.php:21 view/Connect/GoogleSearchConsole.php:19
9962
  #, fuzzy
9963
  #| msgid "Connecting ..."
9964
  msgid "Disconnect"
9965
  msgstr "Verbinden ..."
9966
 
9967
  # @ squirrly-seo
9968
+ #: view/Connect/GoogleAnalytics.php:31
9969
  #, fuzzy
9970
  #| msgid "Google %sAnalytics ID%s`:"
9971
  msgid "Connect this site to Google Analytics"
9972
  msgstr "Google %sAnalytics ID%s`:"
9973
 
9974
+ #: view/Connect/GoogleAnalytics.php:32
9975
  msgid ""
9976
  "Connect Google Analytics and get traffic insights for your website on each "
9977
+ "Audit."
9978
  msgstr ""
9979
 
9980
+ #: view/Connect/GoogleAnalytics.php:37 view/Connect/GoogleSearchConsole.php:36
9981
+ #: view/SeoSettings/Tracking.php:65 view/SeoSettings/Webmaster.php:65
9982
  #, fuzzy
9983
  #| msgid "Sign Up"
9984
  msgid "Sign in"
9985
  msgstr "Anmelden"
9986
 
9987
  # @ squirrly-seo
9988
+ #: view/Connect/GoogleAnalytics.php:45 view/Connect/GoogleSearchConsole.php:44
9989
+ #: view/SeoSettings/Tracking.php:70 view/SeoSettings/Webmaster.php:70
9990
  #, fuzzy
9991
  #| msgid "Connecting ..."
9992
  msgid "Check connection"
9993
  msgstr "Verbinden ..."
9994
 
9995
  # @ squirrly-seo
9996
+ #: view/Connect/GoogleSearchConsole.php:8 view/SeoSettings/Webmaster.php:57
9997
+ #, fuzzy
9998
+ #| msgid "Google %sAnalytics ID%s`:"
9999
+ msgid "Google Search Console"
10000
+ msgstr "Google %sAnalytics ID%s`:"
10001
+
10002
+ # @ squirrly-seo
10003
+ #: view/Connect/GoogleSearchConsole.php:13
10004
  #, fuzzy
10005
  #| msgid "Google %sAnalytics ID%s`:"
10006
  msgid "You are connected to Google Search Console"
10007
  msgstr "Google %sAnalytics ID%s`:"
10008
 
10009
  # @ squirrly-seo
10010
+ #: view/Connect/GoogleSearchConsole.php:30
10011
  #, fuzzy
10012
  #| msgid "Google %sAnalytics ID%s`:"
10013
  msgid "Connect this site to Google Search Console"
10014
  msgstr "Google %sAnalytics ID%s`:"
10015
 
10016
+ #: view/Connect/GoogleSearchConsole.php:31
10017
  msgid ""
10018
  "Connect Google Search Console and get traffic insights for your website on "
10019
+ "each Audit."
10020
+ msgstr ""
10021
+
10022
+ #: view/Errors/Connect.php:29
10023
+ #, fuzzy
10024
+ #| msgid "This email connects you to Squirrly.co"
10025
+ msgid "Connect Your Site to Squirrly Cloud"
10026
+ msgstr "This email connects you to Squirrly.co"
10027
+
10028
+ #: view/Errors/Connect.php:30
10029
+ #, php-format
10030
+ msgid ""
10031
+ "Get Access to the Non-Human SEO Consultant, Focus Pages, SEO Audits and all "
10032
+ "our features %s by creating a free account"
10033
  msgstr ""
10034
 
10035
+ #: view/Errors/Maintenance.php:21
10036
  #, php-format
10037
  msgid ""
10038
  "Unfortunately Squirrly Cloud is down for a bit of maintenance right now. But "
10039
  "we'll be back in a minute. %srefresh the page%s."
10040
  msgstr ""
10041
 
10042
+ # @ squirrly-seo
10043
+ #: view/Features.php:15 view/Overview.php:57
10044
+ #, fuzzy
10045
+ #| msgid "Support"
10046
+ msgid "We Need Your Support"
10047
+ msgstr "Support"
10048
+
10049
+ # @ squirrly-seo
10050
+ #: view/Features.php:24 view/Overview.php:66
10051
+ #, fuzzy
10052
+ #| msgid "Squirrly settings"
10053
+ msgid "Rate us if you like Squirrly"
10054
+ msgstr "Squirrly Einstellungen"
10055
+
10056
+ # @ squirrly-seo
10057
+ #: view/Features.php:39
10058
+ #, fuzzy
10059
+ #| msgid "Save settings"
10060
+ msgid "Show Advanced SEO"
10061
+ msgstr "Einstellungen speichern"
10062
+
10063
+ #: view/Features.php:40
10064
+ msgid ""
10065
+ "Switch off to have the simplified version of the settings, intended for Non-"
10066
+ "SEO Experts."
10067
+ msgstr ""
10068
+
10069
+ #: view/Features.php:41
10070
+ msgid ""
10071
+ "It will offer the same level of SEO performance, but it will be less "
10072
+ "customizable."
10073
+ msgstr ""
10074
+
10075
+ #: view/FocusPages/Addpage.php:24 view/FocusPages/Pagelist.php:25
10076
  msgid ""
10077
  "Focus Pages bring you clear methods to take your pages from never found to "
10078
  "always found on Google. Rank your pages by influencing the right ranking "
10079
  "factors. Turn everything that you see here to Green and you will win."
10080
  msgstr ""
10081
 
10082
+ # @ squirrly-seo
10083
  #: view/FocusPages/Addpage.php:175
10084
+ #, fuzzy
10085
+ #| msgid "Save settings"
10086
  msgid "Set Focus Page"
10087
+ msgstr "Einstellungen speichern"
10088
 
10089
  #: view/FocusPages/Addpage.php:179
10090
  msgid "Only pages with IDs can be added as Focus Page"
10101
  msgid "See Tasks"
10102
  msgstr "Senden Sie Ihre Frage"
10103
 
10104
+ #: view/FocusPages/Bestpractice.php:16
10105
  msgid "Best Practices"
10106
  msgstr ""
10107
 
10108
+ #: view/FocusPages/FocusPageRow.php:59 view/FocusPages/FocusPageRow.php:127
10109
  #, php-format
10110
  msgid "Congratulations! You ranked on %s on Google with the keyword: %s"
10111
  msgstr ""
10112
 
10113
  # @ squirrly-seo
10114
+ #: view/FocusPages/FocusPageRow.php:76
10115
  #, fuzzy
10116
  #| msgid "Your E-mail:"
10117
  msgid "Audited"
10118
  msgstr "Ihre E-Mail Adresse:"
10119
 
10120
+ #: view/FocusPages/FocusPageRow.php:91
10121
  msgid "You can refresh the audit once every 5 minutes"
10122
  msgstr ""
10123
 
10124
+ #: view/FocusPages/FocusPageRow.php:93
10125
  msgid "Request new audit"
10126
  msgstr ""
10127
 
10128
  # @ squirrly-seo
10129
+ #: view/FocusPages/FocusPageRow.php:97 view/Ranking/Rankings.php:226
10130
+ #: view/Research/History.php:33
10131
  #, fuzzy
10132
  #| msgid "Your E-mail:"
10133
  msgid "Details"
10134
  msgstr "Ihre E-Mail Adresse:"
10135
 
10136
+ #: view/FocusPages/FocusPageRow.php:112
10137
+ msgid "Upgrade Plan"
10138
+ msgstr ""
10139
+
10140
+ #: view/FocusPages/FocusPageRow.php:119
10141
  msgid "Currently processing data. Please refresh in a few minutes."
10142
  msgstr ""
10143
 
10144
  # @ squirrly-seo
10145
+ #: view/FocusPages/FocusPageRow.php:125 view/FocusPages/FocusPageRow.php:145
10146
+ #: view/FocusPages/FocusPages.php:55
10147
  #, fuzzy
10148
  #| msgid "Change it >>"
10149
  msgid "Chance to Rank"
10150
  msgstr "Ändern >>"
10151
 
10152
+ #: view/FocusPages/FocusPageRow.php:129
10153
+ #, php-format
10154
+ msgid ""
10155
+ "The Chances of Ranking is dynamically calculated by the Squirrly Machine "
10156
+ "Learning based on the main keyword you selected for this Focus Page. %sThe "
10157
+ "algorithm behind the Chances of Ranking is complex but the fastest way to "
10158
+ "increase your chances is to complete the main tasks like Visibility, Keyword "
10159
+ "Competition, Content Optimization, Content Length, Social Signals, Daily "
10160
+ "Traffic, Inner Links, and External Nofollow Links. %sIn time you need to "
10161
+ "complete all the Focus Pages tasks to rank higher and higher and to maintain "
10162
+ "your rank especially if your keyword is a competitive one."
10163
+ msgstr ""
10164
+
10165
+ #: view/FocusPages/FocusPageRow.php:146
10166
  #, php-format
10167
  msgid ""
10168
  "The Chances of Ranking is dynamically calculated by the Squirrly Machine "
10176
  msgstr ""
10177
 
10178
  # @ squirrly-seo
10179
+ #: view/FocusPages/FocusPageRow.php:180
10180
  #, fuzzy
10181
  #| msgid "Could not send the email..."
10182
  msgid "Do you want to delete the Focus Page?"
10183
  msgstr "Konnte E-Mail nicht senden ..."
10184
 
10185
+ # @ squirrly-seo
10186
+ #: view/FocusPages/FocusPageRow.php:186
10187
+ #, fuzzy
10188
+ #| msgid "Save settings"
10189
+ msgid "Remove Focus Page"
10190
+ msgstr "Einstellungen speichern"
10191
 
10192
+ #: view/FocusPages/FocusPageStats.php:40
10193
  #, php-format
10194
  msgid "Week %s of %s"
10195
  msgstr ""
10196
 
10197
+ #: view/FocusPages/FocusPageStats.php:54
10198
  #, php-format
10199
  msgid "Rank increased %s positions for the keyword: %s"
10200
  msgstr ""
10201
 
10202
+ #: view/FocusPages/FocusPageStats.php:60
10203
  #, php-format
10204
  msgid "Time on Page increased with %s minutes"
10205
  msgstr ""
10206
 
10207
+ #: view/FocusPages/FocusPageStats.php:65
10208
  #, php-format
10209
  msgid "Page Traffic increased with %s visits"
10210
  msgstr ""
10211
 
10212
+ #: view/FocusPages/FocusPageStats.php:71
10213
  #, php-format
10214
  msgid "Organic Clicks increased with %s for the keyword: %s"
10215
  msgstr ""
10216
 
10217
+ #: view/FocusPages/FocusPageStats.php:77
10218
  #, php-format
10219
  msgid "Page Authority increased with %s"
10220
  msgstr ""
10221
 
10222
+ #: view/FocusPages/FocusPageStats.php:82
10223
  #, php-format
10224
  msgid "You got %s Social Shares"
10225
  msgstr ""
10226
 
10227
+ #: view/FocusPages/FocusPageStats.php:89
10228
  #, php-format
10229
  msgid "Page loads with %ss faster"
10230
  msgstr ""
10231
 
10232
  # @ squirrly-seo
10233
+ #: view/FocusPages/FocusPageStats.php:115
10234
  #, fuzzy
10235
  #| msgid "Change it >>"
10236
  msgid "Chances of Ranking"
10237
  msgstr "Ändern >>"
10238
 
10239
+ #: view/FocusPages/FocusPageStats.php:116
10240
+ #: view/FocusPages/FocusPageStats.php:142
10241
  #, php-format
10242
  msgid "the latest %s days evolution for this Focus Page"
10243
  msgstr ""
10244
 
10245
  # @ squirrly-seo
10246
+ #: view/FocusPages/FocusPageStats.php:171
10247
  #, fuzzy
10248
  #| msgid "Keyword:"
10249
  msgid "Keyword Ranking"
10250
  msgstr "Schlüsselwort:"
10251
 
10252
+ #: view/FocusPages/FocusPageStats.php:172
10253
  #, php-format
10254
  msgid "the latest %s days ranking for %s"
10255
  msgstr ""
10256
 
10257
+ #: view/FocusPages/FocusPageStats.php:198
10258
  #, php-format
10259
  msgid "the latest %s days page views"
10260
  msgstr ""
10261
 
10262
+ #: view/FocusPages/FocusPages.php:20
10263
  msgid "Current Ranking Drawbacks"
10264
  msgstr ""
10265
 
10266
+ #: view/FocusPages/FocusPages.php:103
10267
  #, php-format
10268
  msgid "No data for this filter. %sShow All%s Focus Pages."
10269
  msgstr ""
10270
 
10271
+ # @ squirrly-seo
10272
+ #: view/FocusPages/FocusPages.php:107
10273
+ #, fuzzy
10274
+ #| msgid "Save settings"
10275
  msgid "Welcome to Focus Pages"
10276
+ msgstr "Einstellungen speichern"
10277
 
10278
+ #: view/FocusPages/FocusPages.php:109
10279
  msgid "Add a new page as Focus Page to get started"
10280
  msgstr ""
10281
 
10282
+ #: view/FocusPages/FocusPages.php:113
10283
  msgid "Tips: Which Page Should I Choose?"
10284
  msgstr ""
10285
 
10286
+ #: view/FocusPages/FocusPages.php:115
10287
  msgid ""
10288
  "One of the most important pages in your website, you money-makers, the pages "
10289
  "that bring you conversions."
10290
  msgstr ""
10291
 
10292
+ #: view/FocusPages/FocusPages.php:116
10293
  msgid "Don't choose your Home Page, Contact Page or About Use page."
10294
  msgstr ""
10295
 
10296
+ #: view/FocusPages/Pagelist.php:60
10297
  #, php-format
10298
  msgid ""
10299
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
10302
  msgstr ""
10303
 
10304
  # @ squirrly-seo
10305
+ #: view/FocusPages/Settings.php:22
10306
  #, fuzzy
10307
  #| msgid "Save settings"
10308
  msgid "Focus Pages Settings"
10309
  msgstr "Einstellungen speichern"
10310
 
10311
+ #: view/Goals/CheckSeo.php:26
 
 
 
 
 
 
10312
  msgid ""
10313
  "See all the improvements from all Squirrly SEO features in a single panel."
10314
  msgstr ""
10315
 
10316
  # @ squirrly-seo
10317
+ #: view/Goals/CheckSeo.php:53
10318
  #, fuzzy
10319
  #| msgid "Send Question"
10320
  msgid "See results"
10321
  msgstr "Senden Sie Ihre Frage"
10322
 
10323
  # @ squirrly-seo
10324
+ #: view/Goals/CheckSeo.php:100
10325
  #, fuzzy
10326
  #| msgid "Change the Website Icon"
10327
  msgid "Website SEO Check"
10328
  msgstr "Ändern Sie das Website-Symbol"
10329
 
10330
+ #: view/Goals/CheckSeo.php:112
10331
+ #, php-format
10332
+ msgid "%s Upgrades"
10333
+ msgstr ""
10334
+
10335
+ # @ squirrly-seo
10336
  #: view/Goals/CheckSeo.php:113
10337
+ #, fuzzy
10338
+ #| msgid "Squirrly settings"
10339
+ msgid "Handled by Squirrly Genius."
10340
+ msgstr "Squirrly Einstellungen"
10341
+
10342
+ #: view/Goals/CheckSeo.php:114
10343
  msgid ""
10344
  "Remember that it may take up to 1 minute for a complete SEO check. There is "
10345
  "a lot of processing involved."
10346
  msgstr ""
10347
 
10348
+ #: view/Goals/CheckSeo.php:141
10349
  msgid "Congratulations!"
10350
  msgstr ""
10351
 
10352
+ #: view/Goals/Goals.php:35
10353
+ msgid "Next SEO Goals"
10354
+ msgstr ""
10355
+
10356
+ #: view/Goals/Goals.php:37
10357
  #, php-format
10358
+ msgid "%s goals"
10359
  msgstr ""
10360
 
10361
+ #: view/Goals/Goals.php:52
10362
  msgid "Reach New Goals"
10363
  msgstr ""
10364
 
10365
+ # @ squirrly-seo
10366
+ #: view/Goals/Goals.php:53
10367
+ #, fuzzy
10368
+ #| msgid "Squirrly LIVE SEO assistant"
10369
  msgid "Squirrly Smart Strategy sets new goals."
10370
+ msgstr "Squirrly LIVE SEO-Assistent"
10371
 
10372
+ #: view/Goals/Goals.php:55
10373
  msgid "How unique are these goals?"
10374
  msgstr ""
10375
 
10376
+ #: view/Goals/Goals.php:67
10377
  msgid "Daily Progress"
10378
  msgstr ""
10379
 
10380
+ #: view/Goals/Goals.php:77
10381
  msgid "Today's Progress"
10382
  msgstr ""
10383
 
10384
+ #: view/Goals/Goals.php:88
10385
  #, php-format
10386
  msgid ""
10387
  "Hint: remember to click: %sShow me how - Mark as Done%s, when you complete a "
10388
  "goal."
10389
  msgstr ""
10390
 
10391
+ #: view/Goals/Goals.php:104
10392
  msgid "Goal completed. Good Job!"
10393
  msgstr ""
10394
 
10395
+ #: view/Goals/Goals.php:116
10396
  msgid "use"
10397
  msgstr ""
10398
 
10399
+ #: view/Goals/Goals.php:123
10400
  msgid "Time to complete this goal."
10401
  msgstr ""
10402
 
10403
+ #: view/Goals/Goals.php:123
10404
  msgid "up to"
10405
  msgstr ""
10406
 
10407
+ #: view/Goals/Goals.php:138
10408
  msgid "Show me how"
10409
  msgstr ""
10410
 
10411
+ #: view/Goals/Goals.php:142
10412
  msgid "Goal is not done!"
10413
  msgstr ""
10414
 
10415
+ #: view/Goals/Goals.php:156
10416
  msgid "SOLUTION"
10417
  msgstr ""
10418
 
10419
+ #: view/Goals/Goals.php:168
10420
  msgid "Let's do this"
10421
  msgstr ""
10422
 
10423
+ #: view/Goals/Goals.php:178
10424
  msgid "Mark As Done"
10425
  msgstr ""
10426
 
10427
+ # @ squirrly-seo
10428
+ #: view/Goals/Goals.php:195
10429
+ #, fuzzy
10430
+ #| msgid "Could not send the email..."
10431
  msgid "Do you want to ignore this goal?"
10432
+ msgstr "Konnte E-Mail nicht senden ..."
10433
 
10434
+ #: view/Goals/Goals.php:217
10435
  msgid "Want to keep boosting your SEO?"
10436
  msgstr ""
10437
 
10438
+ #: view/Goals/Goals.php:219
10439
  #, fuzzy
10440
  #| msgid "Optimize for Keyword"
10441
  msgid "Optimize your Posts and Pages"
10442
  msgstr "Schlüsselwort optimieren"
10443
 
10444
+ #: view/Goals/Goals.php:244
10445
  msgid "Show hidden goals"
10446
  msgstr ""
10447
 
10448
+ #: view/Goals/Goals.php:254
10449
  msgid "Next goals on"
10450
  msgstr ""
10451
 
10452
+ #: view/Goals/Goals.php:263
10453
  msgid "Load more goals if exist"
10454
  msgstr ""
10455
 
10456
+ #: view/Onboarding/Journey1.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10457
  msgid "14 Days Journey"
10458
  msgstr ""
10459
 
10460
+ #: view/Onboarding/Journey1.php:29
10461
  msgid ""
10462
  "To drive it in the right direction, you have the chance to join (for Free) "
10463
  "the 14 Days Journey to Better Rankings."
10464
  msgstr ""
10465
 
10466
+ #: view/Onboarding/Journey1.php:34
10467
  msgid "You'll get"
10468
  msgstr ""
10469
 
10470
+ #: view/Onboarding/Journey1.php:36
10471
  #, php-format
10472
  msgid ""
10473
  "the %schance to fix in 14 days%s mistakes from years of ineffective SEO."
10474
  msgstr ""
10475
 
10476
+ #: view/Onboarding/Journey1.php:37
10477
  #, php-format
10478
  msgid "the skills you need to %ssucceed in 14 days%s."
10479
  msgstr ""
10480
 
10481
+ #: view/Onboarding/Journey1.php:38
10482
  #, php-format
10483
  msgid ""
10484
  "access to the private %sJourneyTeam community%s where you can share your "
10485
  "experience and talk about it (good and bad, all is accepted)."
10486
  msgstr ""
10487
 
10488
+ #: view/Onboarding/Journey1.php:39
10489
  #, php-format
10490
  msgid ""
10491
  "receive%s help from the JourneyTeam%s and Private Feedback on your journey "
10492
  "from Squirrly."
10493
  msgstr ""
10494
 
10495
+ #: view/Onboarding/Journey1.php:40
10496
  #, php-format
10497
  msgid ""
10498
  "an %sexact recipe to follow for 14 Days%s to bring one of your pages up in "
10499
  "rankings, for a hands-on experience."
10500
  msgstr ""
10501
 
10502
+ #: view/Onboarding/Journey1.php:41
10503
  #, php-format
10504
  msgid ""
10505
  "%sall the costs%s (to third parties) involved with APIs, technology, cloud "
10507
  "member who wishes to become part of the winning JourneyTeam."
10508
  msgstr ""
10509
 
10510
+ # @ squirrly-seo
10511
+ #: view/Onboarding/Journey1.php:47 view/Onboarding/Step2.php:100
10512
+ #: view/Onboarding/Step3.php:78
10513
+ #, fuzzy
10514
+ #| msgid "SEO Software"
10515
+ msgid "Continue"
10516
+ msgstr "SEO Software"
10517
+
10518
+ #: view/Onboarding/Journey1.php:62 view/Onboarding/Journey2.php:85
10519
+ #: view/Onboarding/Step1.php:77 view/Onboarding/Step2.php:105
10520
+ #: view/Onboarding/Step3.php:102
10521
+ msgid "Return to Dashboard"
10522
+ msgstr ""
10523
+
10524
+ #: view/Onboarding/Journey2.php:11
10525
  msgid "Start the 14 Days Journey"
10526
  msgstr ""
10527
 
10528
+ #: view/Onboarding/Journey2.php:25
10529
  msgid "Awesome! You are on your way to better results."
10530
  msgstr ""
10531
 
10532
+ #: view/Onboarding/Journey2.php:27
10533
  #, php-format
10534
  msgid "You will receive the %sdaily recipe%s in your %sDashboard%s."
10535
  msgstr ""
10536
 
10537
+ #: view/Onboarding/Journey2.php:34
10538
  #, php-format
10539
  msgid ""
10540
  "%sIn 14 Days you can tell us how it went%s (via messages on our %sFacebook "
10542
  "you got during the 14 Days."
10543
  msgstr ""
10544
 
10545
+ #: view/Onboarding/Journey2.php:38
10546
  msgid "Close"
10547
  msgstr ""
10548
 
10549
+ #: view/Onboarding/Journey2.php:42
10550
  msgid "Choose how to continue"
10551
  msgstr ""
10552
 
10553
+ #: view/Onboarding/Journey2.php:52
10554
  msgid "Let's Start My 14 Days Journey"
10555
  msgstr ""
10556
 
10557
+ #: view/Onboarding/Journey2.php:60
10558
  msgid "Nah, there is little interest in this"
10559
  msgstr ""
10560
 
10561
+ #: view/Onboarding/Journey2.php:69
10562
  msgid "Close Window"
10563
  msgstr ""
10564
 
10565
  # @ squirrly-seo
10566
+ #: view/Onboarding/Step1.php:13 view/Onboarding/Step2.php:18
10567
  #, fuzzy
10568
+ #| msgid "Squirrly LIVE SEO assistant"
10569
+ msgid "Welcome to Squirrly SEO 2021 (Smart Strategy)"
10570
+ msgstr "Squirrly LIVE SEO-Assistent"
10571
 
10572
+ #: view/Onboarding/Step1.php:25
10573
+ msgid "Let us know how to setup your website"
10574
  msgstr ""
10575
 
10576
+ #: view/Onboarding/Step1.php:26
10577
+ msgid "You can also modify all the settings later."
 
 
 
10578
  msgstr ""
10579
 
10580
+ # @ squirrly-seo
10581
+ #: view/Onboarding/Step1.php:30
10582
+ #, fuzzy
10583
+ #| msgid "Twitter"
10584
+ msgid "Your Website Type"
10585
+ msgstr "Twitter"
10586
 
10587
+ #: view/Onboarding/Step1.php:31
10588
+ msgid ""
10589
+ "SEO Automation will setup SEO Patterns and Post Types based on your website "
10590
+ "type."
10591
  msgstr ""
10592
 
10593
+ #: view/Onboarding/Step1.php:36
10594
+ msgid "E-commerce"
10595
+ msgstr ""
10596
+
10597
+ #: view/Onboarding/Step1.php:37
10598
+ msgid "Personal"
10599
+ msgstr ""
10600
+
10601
+ # @ squirrly-seo
10602
+ #: view/Onboarding/Step1.php:38
10603
+ #, fuzzy
10604
+ #| msgid "Blogs"
10605
+ msgid "Blog/News"
10606
+ msgstr "Blogs"
10607
+
10608
+ #: view/Onboarding/Step1.php:39
10609
+ msgid "Magazine"
10610
+ msgstr ""
10611
+
10612
+ #: view/Onboarding/Step1.php:40
10613
+ msgid "Portfolio"
10614
+ msgstr ""
10615
+
10616
+ #: view/Onboarding/Step1.php:41
10617
+ msgid "Directory"
10618
+ msgstr ""
10619
+
10620
+ #: view/Onboarding/Step1.php:49
10621
+ msgid "Your SEO Level"
10622
+ msgstr ""
10623
+
10624
+ #: view/Onboarding/Step1.php:50
10625
+ msgid "SEO Settings will load data based on your SEO knowledge."
10626
+ msgstr ""
10627
+
10628
+ #: view/Onboarding/Step1.php:54
10629
+ msgid "Non-SEO Expert"
10630
+ msgstr ""
10631
+
10632
+ # @ squirrly-seo
10633
+ #: view/Onboarding/Step1.php:55
10634
+ #, fuzzy
10635
+ #| msgid "Squirrly LIVE SEO assistant"
10636
+ msgid "SEO Expert"
10637
+ msgstr "Squirrly LIVE SEO-Assistent"
10638
+
10639
+ #: view/Onboarding/Step1.php:63
10640
+ msgid "Skip Step"
10641
+ msgstr ""
10642
+
10643
+ # @ squirrly-seo
10644
+ #: view/Onboarding/Step1.php:66
10645
+ #, fuzzy
10646
+ #| msgid "SEO Software"
10647
+ msgid "Save & Continue"
10648
+ msgstr "SEO Software"
10649
+
10650
+ #: view/Onboarding/Step2.php:26
10651
+ msgid "Your Private SEO Consultant Sets Up the SEO for Your WordPress"
10652
+ msgstr ""
10653
+
10654
+ #: view/Onboarding/Step2.php:34
10655
+ #, php-format
10656
+ msgid "Getting %s SEO Automation %s ready on your WP"
10657
+ msgstr ""
10658
+
10659
+ # @ squirrly-seo
10660
+ #: view/Onboarding/Step2.php:42
10661
+ #, fuzzy, php-format
10662
+ #| msgid "Twitter"
10663
+ msgid "Activating %s SEO METAs %s"
10664
+ msgstr "Twitter"
10665
+
10666
+ #: view/Onboarding/Step2.php:50
10667
+ #, php-format
10668
+ msgid "Activating %s JSON-LD Schema %s"
10669
+ msgstr ""
10670
+
10671
+ # @ squirrly-seo
10672
+ #: view/Onboarding/Step2.php:58
10673
+ #, fuzzy, php-format
10674
+ #| msgid "Twitter"
10675
+ msgid "Activating %s Open Graph %s"
10676
+ msgstr "Twitter"
10677
+
10678
+ # @ squirrly-seo
10679
+ #: view/Onboarding/Step2.php:66
10680
+ #, fuzzy, php-format
10681
+ #| msgid "Twitter"
10682
+ msgid "Activating %s Twitter Cards %s"
10683
+ msgstr "Twitter"
10684
+
10685
+ # @ squirrly-seo
10686
+ #: view/Onboarding/Step2.php:74
10687
+ #, fuzzy, php-format
10688
+ #| msgid "Enter your email"
10689
+ msgid "Creating your %s Sitemap XML %s"
10690
+ msgstr "In Artikel einfügen"
10691
+
10692
+ #: view/Onboarding/Step2.php:82
10693
+ #, php-format
10694
+ msgid "Creating %s Robots.txt %s"
10695
+ msgstr ""
10696
+
10697
+ #: view/Onboarding/Step2.php:87
10698
+ msgid "Success! You are all setup"
10699
+ msgstr ""
10700
+
10701
+ # @ squirrly-seo
10702
+ #: view/Onboarding/Step3.php:12
10703
+ #, fuzzy
10704
+ #| msgid "Save settings"
10705
+ msgid "Import SEO & Settings"
10706
+ msgstr "Einstellungen speichern"
10707
+
10708
+ #: view/Onboarding/Step3.php:28
10709
+ msgid "We've detected another SEO Plugin on your site."
10710
+ msgstr ""
10711
+
10712
+ #: view/Onboarding/Step3.php:32
10713
+ #, php-format
10714
+ msgid ""
10715
+ "%sImport your settings and SEO%s from the following plugin into your new "
10716
+ "Squirrly SEO"
10717
+ msgstr ""
10718
+
10719
+ # @ squirrly-seo
10720
+ #: view/Onboarding/Step3.php:51
10721
+ #, fuzzy
10722
+ #| msgid "Support"
10723
+ msgid "Import"
10724
+ msgstr "Support"
10725
+
10726
+ #: view/Onboarding/Step3.php:53 view/SeoSettings/Backup.php:64
10727
+ #: view/SeoSettings/Backup.php:93
10728
+ msgid "We couldn't find any SEO plugin or theme to import from."
10729
+ msgstr ""
10730
+
10731
+ #: view/Onboarding/Step3.php:62
10732
+ msgid "What you gain"
10733
+ msgstr ""
10734
+
10735
+ #: view/Onboarding/Step3.php:64
10736
  msgid ""
10737
  "Everything will be the same in your site, and Google will keep all your "
10738
  "rankings safe."
10739
  msgstr ""
10740
 
10741
+ #: view/Onboarding/Step3.php:65
10742
  msgid ""
10743
  "Squirrly SEO covers everything that Google used to see from the old plugin, "
10744
  "and brings new stuff in. That's why Google will do more than keep your "
10746
  "Squirrly."
10747
  msgstr ""
10748
 
10749
+ #: view/Onboarding/Step3.php:69
10750
  msgid "If you decide to switch back"
10751
  msgstr ""
10752
 
10753
+ #: view/Onboarding/Step3.php:71
10754
  msgid ""
10755
  "you can always switch back, without any issues. Your old plugin will remain "
10756
  "the same. We don't delete it."
10768
  msgid "Click Continue to go to the next step."
10769
  msgstr ""
10770
 
10771
+ #: view/Onboarding/Step4.php:20
10772
  msgid ""
10773
  "Your private SEO consultant is now accessing our cloud services to start "
10774
  "analyzing your site."
10775
  msgstr ""
10776
 
10777
+ #: view/Onboarding/Step4.php:21
10778
  msgid ""
10779
  "Our machine learning is now trying to match some of the data with what we "
10780
  "have in our system."
10781
  msgstr ""
10782
 
10783
+ #: view/Onboarding/Step4.php:22
10784
  msgid "Getting your SEO Protection to 100%."
10785
  msgstr ""
10786
 
10787
+ #: view/Onboarding/Step4.php:23
10788
  msgid "Covering all the post types from your WP with Excellent on-page SEO."
10789
  msgstr ""
10790
 
10791
+ #: view/Onboarding/Step4.php:24
10792
  msgid "Analysis by consultant reaching 100%."
10793
  msgstr ""
10794
 
10795
+ #: view/Onboarding/Step4.php:33
10796
  msgid ""
10797
  "You can now check today's SEO Goals to see what your new Consultant says you "
10798
  "should focus on."
10799
  msgstr ""
10800
 
10801
+ #: view/Onboarding/Step4.php:37
10802
  msgid "Check Today's SEO Goals"
10803
  msgstr ""
10804
 
10805
+ #: view/Overview.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
10806
  msgid ""
10807
  "You do not have permission to access Daily Goals. You need Squirrly SEO "
10808
  "Editor role."
10809
  msgstr ""
10810
 
10811
  # @ squirrly-seo
10812
+ #: view/Overview.php:24
10813
  #, fuzzy
10814
+ #| msgid "Squirrly settings"
10815
+ msgid "What's Included in Squirrly SEO Plugin"
10816
+ msgstr "Squirrly Einstellungen"
 
 
 
 
 
 
10817
 
10818
+ #: view/Overview.php:29
10819
+ #, php-format
10820
  msgid ""
10821
+ "With a total of over %s400%s free in-depth features that only Squirrly can "
10822
+ "offer."
10823
  msgstr ""
10824
 
10825
+ #: view/Overview.php:32
10826
+ msgid "Start Activating SEO Features Now"
10827
  msgstr ""
10828
 
10829
  # @ squirrly-seo
10830
+ #: view/Ranking/Gscsync.php:16
 
 
 
 
 
 
 
10831
  #, fuzzy
10832
  #| msgid "Google %sAnalytics ID%s`:"
10833
  msgid "Google Search Console Keywords Sync"
10834
  msgstr "Google %sAnalytics ID%s`:"
10835
 
10836
+ #: view/Ranking/Gscsync.php:17 view/Research/Suggested.php:17
10837
  msgid ""
10838
  "See the trending keywords suitable for your website's future topics. We "
10839
  "check for new keywords weekly based on your latest researches."
10840
  msgstr ""
10841
 
10842
+ #: view/Ranking/Gscsync.php:21
10843
  msgid ""
10844
  "This is the list of keywords you have in Google Search Console. Information "
10845
  "for the last 90 days. You can add keywords that you find relevant to your "
10846
  "Briefcase and to the Rankings section."
10847
  msgstr ""
10848
 
10849
+ #: view/Ranking/Gscsync.php:35
10850
  msgid "Click-Through Rate"
10851
  msgstr ""
10852
 
10853
  # @ squirrly-seo
10854
+ #: view/Ranking/Gscsync.php:36
10855
  #, fuzzy
10856
  #| msgid "Description:"
10857
  msgid "Average Position"
10858
  msgstr "Beschreibung:"
10859
 
10860
+ # @ squirrly-seo
10861
+ #: view/Ranking/Gscsync.php:36
10862
+ #, fuzzy
10863
+ #| msgid "Description:"
10864
  msgid "AVG Position"
10865
+ msgstr "Beschreibung:"
10866
 
10867
  # @ squirrly-seo
10868
+ #: view/Ranking/Gscsync.php:81
 
10869
  #, fuzzy
10870
  #| msgid "Squirrly Keyword Research"
10871
+ msgid "Already in Rank Checker"
10872
  msgstr "Squirrly Erweiterte Suche!"
10873
 
10874
+ #: view/Ranking/Gscsync.php:86
10875
  msgid "Add to Rank Checker"
10876
  msgstr ""
10877
 
10878
  # @ squirrly-seo
10879
+ #: view/Ranking/Gscsync.php:102
10880
  #, fuzzy
10881
  #| msgid "Google %sAnalytics ID%s`:"
10882
  msgid "Welcome to Google Search Console Keywords Sync"
10883
  msgstr "Google %sAnalytics ID%s`:"
10884
 
10885
+ #: view/Ranking/Gscsync.php:105
10886
  #, php-format
10887
  msgid ""
10888
  "If you're new to SEO, you probably don't know yet how slow Google actually "
10890
  "big as The New York Times, Amazon.com, etc. %s Here are some resources. %s "
10891
  "We could not find any keywords from your GSC account, because Google doesn't "
10892
  "have enough data about your site yet. %s Give Google more time to learn "
10893
+ "about your site. Until then, keep working on your SEO Goals from Squirrly "
10894
+ "SEO."
10895
  msgstr ""
10896
 
10897
+ #: view/Ranking/Gscsync.php:108
10898
  msgid "Tips: Which Keyword Should I Choose?"
10899
  msgstr ""
10900
 
10901
+ #: view/Ranking/Gscsync.php:110 view/Ranking/Rankings.php:446
10902
  #, php-format
10903
  msgid ""
10904
  "From %sSquirrly Briefcase%s you can send keywords to Rank Checker to track "
10905
  "the SERP evolution."
10906
  msgstr ""
10907
 
10908
+ #: view/Ranking/Rankings.php:34
 
 
 
 
 
 
 
10909
  msgid ""
10910
  "It's a fully functional SEO Ranking Tool that helps you find the true "
10911
  "position of your website in Google for any keyword and any country you want"
10912
  msgstr ""
10913
 
10914
+ #: view/Ranking/Rankings.php:36
10915
  msgid ""
10916
  "Get the Google Search Console average possitions, clicks and impressions for "
10917
  "all organic keywords of your website."
10918
  msgstr ""
10919
 
10920
+ #: view/Ranking/Rankings.php:98
10921
  msgid "Only show ranked articles"
10922
  msgstr ""
10923
 
10924
  # @ squirrly-seo
10925
+ #: view/Ranking/Rankings.php:102
10926
  #, fuzzy
10927
  #| msgid "Keyword:"
10928
  msgid "Today Avg. Ranking"
10929
  msgstr "Schlüsselwort:"
10930
 
10931
+ #: view/Ranking/Rankings.php:106
10932
  msgid "Only show SERP changes"
10933
  msgstr ""
10934
 
10935
+ #: view/Ranking/Rankings.php:128
10936
  msgid "Today SERP Changes"
10937
  msgstr ""
10938
 
10939
+ #: view/Ranking/Rankings.php:157
10940
  #, php-format
10941
  msgid "the latest %s days Google Rankings evolution"
10942
  msgstr ""
10943
 
10944
+ #: view/Ranking/Rankings.php:163
10945
  #, php-format
10946
  msgid "%s keyword ranked in TOP 10"
10947
  msgstr ""
10948
 
10949
+ #: view/Ranking/Rankings.php:168
10950
  #, php-format
10951
  msgid "%s keyword ranked better today"
10952
  msgstr ""
10953
 
10954
+ #: view/Ranking/Rankings.php:180
10955
  #, php-format
10956
  msgid "Ranks improved with an average of %s in the last 7 days."
10957
  msgstr ""
10958
 
10959
+ #: view/Ranking/Rankings.php:204 view/Research/Briefcase.php:65
10960
+ #: view/Research/Labels.php:85
10961
  msgid "Bulk Actions"
10962
  msgstr ""
10963
 
10964
  # @ squirrly-seo
10965
+ #: view/Ranking/Rankings.php:205
10966
  #, fuzzy
10967
  #| msgid "Could not send the email..."
10968
  msgid "Ar you sure you want to delete the keyword?"
10969
  msgstr "Konnte E-Mail nicht senden ..."
10970
 
10971
  # @ squirrly-seo
10972
+ #: view/Ranking/Rankings.php:205 view/Research/Briefcase.php:68
10973
+ #: view/Research/Labels.php:86
10974
  #, fuzzy
10975
  #| msgid "Keyword:"
10976
  msgid "Delete"
10977
  msgstr "Schlüsselwort:"
10978
 
10979
  # @ squirrly-seo
10980
+ #: view/Ranking/Rankings.php:207
10981
  #, fuzzy
10982
  #| msgid "Squirrly Keyword Research"
10983
  msgid "Refresh Serp"
10984
  msgstr "Squirrly Erweiterte Suche!"
10985
 
10986
+ #: view/Ranking/Rankings.php:210 view/Research/Briefcase.php:70
10987
+ #: view/Research/Labels.php:88
10988
  msgid "Apply"
10989
  msgstr ""
10990
 
10991
+ #: view/Ranking/Rankings.php:219
10992
  msgid "Path"
10993
  msgstr ""
10994
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10995
  # @ squirrly-seo
10996
+ #: view/Ranking/Rankings.php:221 view/Research/Briefcase.php:114
10997
  #, fuzzy
10998
+ #| msgid "Save settings"
10999
+ msgid "Rank"
11000
+ msgstr "Einstellungen speichern"
 
 
 
 
 
 
 
 
 
 
 
 
11001
 
11002
+ #: view/Ranking/Rankings.php:222
11003
+ msgid "Best"
11004
  msgstr ""
11005
 
11006
  # @ squirrly-seo
11007
+ #: view/Ranking/Rankings.php:224 view/Research/Briefcase.php:116
11008
  #, fuzzy
11009
  #| msgid "Keyword:"
11010
+ msgid "Avg Rank"
11011
  msgstr "Schlüsselwort:"
11012
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11013
  # @ squirrly-seo
11014
+ #: view/Ranking/Rankings.php:257 view/Ranking/Rankings.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11015
  #, fuzzy
11016
  #| msgid "Google %sAnalytics ID%s`:"
11017
+ msgid "Google Search Console has no data for this keyword"
11018
  msgstr "Google %sAnalytics ID%s`:"
11019
 
11020
+ #: view/Ranking/Rankings.php:277 view/Research/Briefcase.php:175
11021
+ msgid "Not indexed"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11022
  msgstr ""
11023
 
11024
+ #: view/Ranking/Rankings.php:288 view/Research/Briefcase.php:177
11025
+ msgid "GSC"
11026
  msgstr ""
11027
 
11028
+ # @ squirrly-seo
11029
+ #: view/Ranking/Rankings.php:292
11030
+ #, fuzzy
11031
+ #| msgid "Your E-mail:"
11032
+ msgid "rank details"
11033
+ msgstr "Ihre E-Mail Adresse:"
11034
 
11035
+ #: view/Ranking/Rankings.php:311
11036
+ msgid "Check Ranking again"
11037
  msgstr ""
11038
 
11039
+ # @ squirrly-seo
11040
+ #: view/Ranking/Rankings.php:324
11041
+ #, fuzzy
11042
+ #| msgid "Keyword:"
11043
+ msgid "Remove Keyword"
11044
+ msgstr "Schlüsselwort:"
11045
 
11046
+ #: view/Ranking/Rankings.php:383
11047
+ #, fuzzy
11048
+ #| msgid "Optimize for Keyword"
11049
+ msgid "Optimized with SLA"
11050
+ msgstr "Schlüsselwort optimieren"
11051
 
11052
+ #: view/Ranking/Rankings.php:391
11053
+ msgid "Social Shares"
11054
  msgstr ""
11055
 
11056
+ # @ squirrly-seo
11057
+ #: view/Ranking/Rankings.php:394
11058
+ #, fuzzy
11059
+ #| msgid "Description:"
11060
+ msgid "Facebook Shares"
11061
+ msgstr "Beschreibung:"
11062
 
11063
+ #: view/Ranking/Rankings.php:395
11064
+ msgid "Reddit Shares"
11065
  msgstr ""
11066
 
11067
+ #: view/Ranking/Rankings.php:396
11068
+ msgid "Pinterest Pins"
11069
  msgstr ""
11070
 
11071
+ # @ squirrly-seo
11072
+ #: view/Ranking/Rankings.php:403 view/Research/Briefcase.php:309
11073
+ #: view/Research/History.php:31 view/Research/Research.php:201
11074
+ #: view/Research/Suggested.php:30 view/SeoSettings/Jsonld.php:122
11075
+ #, fuzzy
11076
+ #| msgid "Google %sAnalytics ID%s`:"
11077
+ msgid "Country"
11078
+ msgstr "Google %sAnalytics ID%s`:"
11079
 
11080
+ #: view/Ranking/Rankings.php:418
11081
+ msgid ""
11082
+ "Note! The clicks and impressions data is taken from Google Search Console "
11083
+ "for the last 90 days for the current URL."
11084
  msgstr ""
11085
 
11086
+ # @ squirrly-seo
11087
+ #: view/Ranking/Rankings.php:433
11088
+ #, fuzzy
11089
+ #| msgid "No results found!"
11090
+ msgid "No ranking found."
11091
+ msgstr "Keine Ergebnisse gefunden!"
11092
 
11093
+ # @ squirrly-seo
11094
+ #: view/Ranking/Rankings.php:437
11095
+ #, fuzzy
11096
+ #| msgid "Squirrly LIVE SEO assistant"
11097
+ msgid "Welcome to Squirrly Rankings"
11098
+ msgstr "Squirrly LIVE SEO-Assistent"
11099
 
11100
+ # @ squirrly-seo
11101
+ #: view/Ranking/Rankings.php:440
11102
+ #, fuzzy
11103
+ #| msgid "Do a research"
11104
+ msgid "Add keywords in Briefcase"
11105
+ msgstr "Recherchieren"
11106
 
11107
+ #: view/Ranking/Rankings.php:444
11108
+ msgid "Tips: How to add Keywords in Rankings?"
11109
  msgstr ""
11110
 
11111
+ #: view/Ranking/Rankings.php:447
11112
+ #, php-format
11113
+ msgid ""
11114
+ "Connect with %sGoogle Search Console%s to synchronize the keywords for which "
11115
+ "your website is ranking."
11116
  msgstr ""
11117
 
11118
+ # @ squirrly-seo
11119
+ #: view/Ranking/Rankings.php:469
11120
+ #, fuzzy
11121
+ #| msgid "Google %sAnalytics ID%s`:"
11122
+ msgid "Synchronize Keywords with Google Search Console"
11123
+ msgstr "Google %sAnalytics ID%s`:"
11124
 
11125
+ # @ squirrly-seo
11126
+ #: view/Ranking/Settings.php:30
11127
+ #, fuzzy
11128
+ #| msgid "Save settings"
11129
+ msgid "Rankings Settings"
11130
+ msgstr "Einstellungen speichern"
11131
 
11132
+ # @ squirrly-seo
11133
+ #: view/Ranking/Settings.php:44
11134
+ #, fuzzy
11135
+ #| msgid "Google %sAnalytics ID%s`:"
11136
+ msgid "Google Country"
11137
+ msgstr "Google %sAnalytics ID%s`:"
11138
 
11139
+ #: view/Ranking/Settings.php:45
11140
+ msgid "Select the Country for which Squirrly will check the Google rank."
11141
  msgstr ""
11142
 
11143
+ #: view/Ranking/Settings.php:49
11144
+ msgid "Default"
11145
  msgstr ""
11146
 
11147
+ # @ squirrly-seo
11148
+ #: view/Ranking/Settings.php:167
11149
+ #, fuzzy
11150
+ #| msgid "Google %sAnalytics ID%s`:"
11151
+ msgid "Google Language"
11152
+ msgstr "Google %sAnalytics ID%s`:"
11153
 
11154
+ #: view/Ranking/Settings.php:168
11155
+ msgid "Select the Language for which Squirrly will check the Google rank."
11156
  msgstr ""
11157
 
11158
+ #: view/Ranking/Settings.php:322
11159
+ msgid "Device"
11160
  msgstr ""
11161
 
11162
+ #: view/Ranking/Settings.php:323
11163
+ msgid "Select the Device for which Squirrly will check the Google rank."
11164
  msgstr ""
11165
 
11166
+ #: view/Research/Briefcase.php:20
11167
  msgid ""
11168
  "Briefcase is essential to managing your SEO Strategy. With Briefcase you'll "
11169
  "find the best opportunities for keywords you're using in the Awareness "
11172
  msgstr ""
11173
 
11174
  # @ squirrly-seo
11175
+ #: view/Research/Briefcase.php:36
11176
  #, fuzzy
11177
  #| msgid "Keyword:"
11178
  msgid "Search Keyword"
11179
  msgstr "Schlüsselwort:"
11180
 
11181
+ # @ squirrly-seo
11182
+ #: view/Research/Briefcase.php:66 view/Research/Briefcase.php:172
11183
+ #, fuzzy
11184
+ #| msgid "Save settings"
11185
+ msgid "Send to Rankings"
11186
+ msgstr "Einstellungen speichern"
11187
 
11188
+ # @ squirrly-seo
11189
+ #: view/Research/Briefcase.php:67 view/Research/Briefcase.php:249
11190
+ #, fuzzy
11191
+ #| msgid "+ Add keyword"
11192
  msgid "Assign Label"
11193
+ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11194
 
11195
  # @ squirrly-seo
11196
+ #: view/Research/Briefcase.php:68
11197
  #, fuzzy
11198
  #| msgid "Could not send the email..."
11199
  msgid "Ar you sure you want to delete the keywords?"
11200
  msgstr "Konnte E-Mail nicht senden ..."
11201
 
11202
+ #: view/Research/Briefcase.php:76 view/Research/Briefcase.php:368
11203
  #, fuzzy, php-format
11204
  #| msgid "Optimize for Keyword"
11205
  msgid "Select Labels for: %s"
11206
  msgstr "Schlüsselwort optimieren"
11207
 
11208
  # @ squirrly-seo
11209
+ #: view/Research/Briefcase.php:76
11210
  #, fuzzy
11211
  #| msgid "Keyword:"
11212
  msgid "selected keywords"
11213
  msgstr "Schlüsselwort:"
11214
 
11215
+ #: view/Research/Briefcase.php:80
11216
  msgid ""
11217
  "By assigning these labels, you will reset the other labels you assigned for "
11218
  "each keyword individually."
11219
  msgstr ""
11220
 
11221
  # @ squirrly-seo
11222
+ #: view/Research/Briefcase.php:89 view/Research/Briefcase.php:390
11223
+ #: view/Research/Labels.php:26
11224
  #, fuzzy
11225
  #| msgid "+ Add keyword"
11226
  msgid "Add new Label"
11227
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11228
 
11229
+ # @ squirrly-seo
11230
+ #: view/Research/Briefcase.php:94 view/Research/Briefcase.php:396
11231
+ #, fuzzy
11232
+ #| msgid "Keyword:"
11233
  msgid "Save Labels"
11234
+ msgstr "Schlüsselwort:"
11235
 
11236
+ #: view/Research/Briefcase.php:110
11237
  msgid "Usage"
11238
  msgstr ""
11239
 
11240
+ # @ squirrly-seo
11241
+ #: view/Research/Briefcase.php:120 view/Research/Briefcase.php:320
11242
+ #, fuzzy
11243
+ #| msgid "Do a research"
11244
  msgid "Search Volume"
11245
+ msgstr "Recherchieren"
11246
+
11247
+ #: view/Research/Briefcase.php:120 view/Research/HistoryDetails.php:15
11248
+ #: view/Research/Suggested.php:37
11249
+ msgid "SV"
11250
  msgstr ""
11251
 
11252
+ #: view/Research/Briefcase.php:163 view/Research/Briefcase.php:165
11253
  #, php-format
11254
  msgid "in %s posts"
11255
  msgstr ""
11256
 
11257
  # @ squirrly-seo
11258
+ #: view/Research/Briefcase.php:171 view/Research/Briefcase.php:233
11259
+ #, fuzzy
11260
+ #| msgid "Save settings"
11261
+ msgid "Check Rankings"
11262
+ msgstr "Einstellungen speichern"
11263
+
11264
+ # @ squirrly-seo
11265
+ #: view/Research/Briefcase.php:191
11266
  #, fuzzy
11267
  #| msgid "Keyword:"
11268
  msgid "keyword info"
11269
  msgstr "Schlüsselwort:"
11270
 
11271
  # @ squirrly-seo
11272
+ #: view/Research/Briefcase.php:213
11273
  #, fuzzy
11274
  #| msgid "Do a research"
11275
  msgid "No research data"
11276
  msgstr "Recherchieren"
11277
 
 
11278
  #: view/Research/Briefcase.php:235
11279
+ msgid "Send to Rank Checker"
11280
+ msgstr ""
11281
+
11282
+ # @ squirrly-seo
11283
+ #: view/Research/Briefcase.php:244
11284
  #, fuzzy
11285
  #| msgid "Squirrly Keyword Research"
11286
  msgid "Refresh Research"
11287
  msgstr "Squirrly Erweiterte Suche!"
11288
 
11289
  # @ squirrly-seo
11290
+ #: view/Research/Briefcase.php:254 view/Research/Suggested.php:131
11291
  #, fuzzy
11292
  #| msgid "Keyword:"
11293
  msgid "Delete Keyword"
11294
  msgstr "Schlüsselwort:"
11295
 
11296
+ #: view/Research/Briefcase.php:275
11297
  #, fuzzy
11298
  #| msgid "Optimize for Keyword"
11299
  msgid "Optimized with"
11300
  msgstr "Schlüsselwort optimieren"
11301
 
11302
  # @ squirrly-seo
11303
+ #: view/Research/Briefcase.php:314 view/Research/HistoryDetails.php:17
11304
+ #: view/Research/HistoryDetails.php:19 view/Research/Research.php:203
11305
+ #: view/Research/Research.php:204 view/Research/Suggested.php:32
11306
+ #: view/Research/Suggested.php:33
11307
  #, fuzzy
11308
  #| msgid "Competition:"
11309
  msgid "Competition"
11310
  msgstr "Wettbewerb:"
11311
 
11312
+ #: view/Research/Briefcase.php:326 view/Research/HistoryDetails.php:9
11313
+ #: view/Research/Research.php:211 view/Research/Suggested.php:40
 
11314
  #, fuzzy
11315
  #| msgid "Recent discussions:"
11316
  msgid "Recent discussions"
11317
  msgstr "Bisherige Diskussionen:"
11318
 
11319
  # @ squirrly-seo
11320
+ #: view/Research/Briefcase.php:332 view/Research/HistoryDetails.php:21
11321
+ #: view/Research/Research.php:215 view/Research/Suggested.php:44
11322
  #, fuzzy
11323
  #| msgid "Trend:"
11324
  msgid "Trending"
11325
  msgstr "Trend:"
11326
 
11327
+ # @ squirrly-seo
11328
+ #: view/Research/Briefcase.php:412
11329
+ #, fuzzy
11330
+ #| msgid "Squirrly settings"
11331
  msgid "Welcome to Squirrly Briefcase"
11332
+ msgstr "Squirrly Einstellungen"
11333
 
11334
  # @ squirrly-seo
11335
+ #: view/Research/Briefcase.php:415 view/Research/History.php:59
11336
+ #: view/Research/Suggested.php:153
11337
  #, fuzzy
11338
  #| msgid "Keywords:"
11339
  msgid "Go Find New Keywords"
11340
  msgstr "Schlüsselwörter:"
11341
 
11342
+ # @ squirrly-seo
11343
+ #: view/Research/Briefcase.php:419
11344
+ #, fuzzy
11345
+ #| msgid "+ Add keyword"
11346
  msgid "Tips: How to add Keywords in Briefcase?"
11347
+ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11348
 
11349
+ # @ squirrly-seo
11350
+ #: view/Research/Briefcase.php:421
11351
+ #, fuzzy, php-format
11352
+ #| msgid "Do a research"
11353
  msgid "From %sKeyword Research%s send keywords to Briefcase."
11354
+ msgstr "Recherchieren"
11355
 
11356
+ #: view/Research/Briefcase.php:422
11357
  #, php-format
11358
  msgid ""
11359
  "From Briefcase you can use the keywords in %sSquirrly Live Assistant%s to "
11360
  "optimize your pages."
11361
  msgstr ""
11362
 
11363
+ #: view/Research/Briefcase.php:423
11364
  msgid ""
11365
  "If you already have a list of keywords, Import the keywords usign the below "
11366
  "button."
11367
  msgstr ""
11368
 
11369
  # @ squirrly-seo
11370
+ #: view/Research/Briefcase.php:433
11371
  #, fuzzy
11372
  #| msgid "Squirrly Keyword Research"
11373
  msgid "Backup/Restore Briefcase Keywords"
11374
  msgstr "Squirrly Erweiterte Suche!"
11375
 
11376
+ #: view/Research/Briefcase.php:434
11377
  msgid ""
11378
  "Keep your briefcase keywords safe in case you change your domain or "
11379
  "reinstall the plugin"
11380
  msgstr ""
11381
 
11382
+ #: view/Research/Briefcase.php:435
11383
  #, php-format
11384
  msgid "%sLearn how to import keywords into briefcase%s"
11385
  msgstr ""
11386
 
11387
  # @ squirrly-seo
11388
+ #: view/Research/Briefcase.php:441
11389
  #, fuzzy
11390
  #| msgid "Keywords:"
11391
  msgid "Download Keywords"
11392
  msgstr "Schlüsselwörter:"
11393
 
11394
  # @ squirrly-seo
11395
+ #: view/Research/Briefcase.php:444
11396
  #, fuzzy
11397
  #| msgid "Squirrly Keyword Research"
11398
  msgid "Import Keywords"
11399
  msgstr "Squirrly Erweiterte Suche!"
11400
 
11401
  # @ squirrly-seo
11402
+ #: view/Research/Briefcase.php:450
11403
  #, fuzzy
11404
  #| msgid "Squirrly Keyword Research"
11405
  msgid "Restore Briefcase Keywords"
11406
  msgstr "Squirrly Erweiterte Suche!"
11407
 
11408
  # @ squirrly-seo
11409
+ #: view/Research/Briefcase.php:458
11410
  #, fuzzy
11411
  #| msgid "Squirrly Keyword Research"
11412
  msgid "Restore Keywords"
11413
  msgstr "Squirrly Erweiterte Suche!"
11414
 
11415
+ #: view/Research/Briefcase.php:459
11416
  msgid "Upload the file with the saved Squirrly Briefcase Keywords."
11417
  msgstr ""
11418
 
11419
  # @ squirrly-seo
11420
  #: view/Research/History.php:17
11421
  #, fuzzy
11422
+ #| msgid "Do more research!"
11423
+ msgid "Research History"
11424
+ msgstr "Erweiterte Suche!"
11425
+
11426
+ # @ squirrly-seo
11427
+ #: view/Research/History.php:18
11428
+ #, fuzzy
11429
  #| msgid "Squirrly Keyword Research"
11430
  msgid "See the Keyword Researches you made in the last 30 days"
11431
  msgstr "Squirrly Erweiterte Suche!"
11432
 
11433
+ #: view/Research/History.php:31 view/Research/Research.php:201
11434
+ #: view/Research/Suggested.php:30
11435
  msgid "Co"
11436
  msgstr ""
11437
 
11438
  # @ squirrly-seo
11439
+ #: view/Research/History.php:47
11440
  #, fuzzy
11441
  #| msgid "Keywords:"
11442
  msgid "Show All Keywords"
11443
  msgstr "Schlüsselwörter:"
11444
 
11445
  # @ squirrly-seo
11446
+ #: view/Research/History.php:55
11447
  #, fuzzy
11448
  #| msgid "Squirrly Keyword Research"
11449
  msgid "Welcome to Keyword Research History"
11450
  msgstr "Squirrly Erweiterte Suche!"
11451
 
11452
+ #: view/Research/History.php:56
11453
  msgid "See your research results and compare them over time"
11454
  msgstr ""
11455
 
11456
+ #: view/Research/HistoryDetails.php:11 view/Research/Research.php:212
11457
+ #: view/Research/Suggested.php:41
11458
  #, fuzzy
11459
  #| msgid "Recent discussions:"
11460
  msgid "Discussion"
11461
  msgstr "Bisherige Diskussionen:"
11462
 
11463
+ #: view/Research/HistoryDetails.php:13 view/Research/Research.php:207
11464
+ #: view/Research/Suggested.php:36
11465
  msgid "SEO Search Volume"
11466
  msgstr ""
11467
 
 
 
 
 
11468
  # @ squirrly-seo
11469
+ #: view/Research/HistoryDetails.php:23 view/Research/Research.php:216
11470
+ #: view/Research/Suggested.php:45
11471
  #, fuzzy
11472
  #| msgid "Trend:"
11473
  msgid "Trend"
11474
  msgstr "Trend:"
11475
 
11476
  # @ squirrly-seo
11477
+ #: view/Research/HistoryDetails.php:84 view/Research/ResearchDetails.php:57
11478
+ #: view/Research/Suggested.php:120
11479
+ #, fuzzy
11480
+ #| msgid "Squirrly Keyword Research"
11481
+ msgid "Already in briefcase"
11482
+ msgstr "Squirrly Erweiterte Suche!"
11483
+
11484
+ # @ squirrly-seo
11485
+ #: view/Research/HistoryDetails.php:89 view/Research/ResearchDetails.php:62
11486
+ #: view/Research/Suggested.php:125
11487
  #, fuzzy
11488
  #| msgid "+ Add keyword"
11489
  msgid "Add to briefcase"
11490
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11491
 
11492
+ #: view/Research/Labels.php:19
11493
  msgid "Briefcase Labels"
11494
  msgstr ""
11495
 
11496
+ #: view/Research/Labels.php:20
11497
  msgid ""
11498
  "Briefcase Labels will help you sort your keywords based on your SEO "
11499
  "strategy. Labels are like categories and you can quickly filter your "
11501
  msgstr ""
11502
 
11503
  # @ squirrly-seo
11504
+ #: view/Research/Labels.php:34
11505
  #, fuzzy
11506
  #| msgid "+ Add keyword"
11507
  msgid "Add New Label"
11508
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11509
 
11510
+ #: view/Research/Labels.php:39 view/Research/Labels.php:63
11511
  msgid "Label Name"
11512
  msgstr ""
11513
 
11514
+ #: view/Research/Labels.php:43 view/Research/Labels.php:67
11515
  msgid "Label Color"
11516
  msgstr ""
11517
 
11518
  # @ squirrly-seo
11519
+ #: view/Research/Labels.php:48
11520
  #, fuzzy
11521
  #| msgid "+ Add keyword"
11522
  msgid "Add Label"
11523
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11524
 
11525
  # @ squirrly-seo
11526
+ #: view/Research/Labels.php:58 view/Research/Labels.php:127
11527
  #, fuzzy
11528
  #| msgid "Your E-mail:"
11529
  msgid "Edit Label"
11530
  msgstr "Ihre E-Mail Adresse:"
11531
 
11532
+ # @ squirrly-seo
11533
+ #: view/Research/Labels.php:73
11534
+ #, fuzzy
11535
+ #| msgid "Keyword:"
11536
  msgid "Save Label"
11537
+ msgstr "Schlüsselwort:"
11538
 
11539
  # @ squirrly-seo
11540
+ #: view/Research/Labels.php:86
11541
  #, fuzzy
11542
  #| msgid "Could not send the email..."
11543
  msgid "Ar you sure you want to delete the labels?"
11544
  msgstr "Konnte E-Mail nicht senden ..."
11545
 
11546
+ #: view/Research/Labels.php:96
11547
  msgid "Name"
11548
  msgstr ""
11549
 
11550
+ #: view/Research/Labels.php:97
11551
  msgid "Color"
11552
  msgstr ""
11553
 
11554
  # @ squirrly-seo
11555
+ #: view/Research/Labels.php:132
11556
  #, fuzzy
11557
  #| msgid "Keyword:"
11558
  msgid "Delete Label"
11559
  msgstr "Schlüsselwort:"
11560
 
11561
+ # @ squirrly-seo
11562
+ #: view/Research/Labels.php:149
11563
+ #, fuzzy
11564
+ #| msgid "Go to Profile"
11565
  msgid "Welcome to Briefcase Labels"
11566
+ msgstr "Zum Profil"
11567
 
11568
+ #: view/Research/Labels.php:151
11569
  msgid "TIPS: How Should I Create My Labels?"
11570
  msgstr ""
11571
 
11572
+ #: view/Research/Labels.php:153
11573
  #, php-format
11574
  msgid ""
11575
  "Click on %sAdd New Label%s button, add a label name and choose a color for "
11576
  "it."
11577
  msgstr ""
11578
 
11579
+ #: view/Research/Labels.php:155
11580
  msgid "Read more details about Briefcase Labels"
11581
  msgstr ""
11582
 
11583
+ #: view/Research/Research.php:21
11584
  msgid ""
11585
  "You can now find long-tail keywords that are easy to rank for. Get "
11586
  "personalized competition data for each keyword you research, thanks to "
11588
  msgstr ""
11589
 
11590
  # @ squirrly-seo
11591
+ #: view/Research/Research.php:35 view/Research/Research.php:147
11592
  #, fuzzy
11593
  #| msgid "Squirrly Keyword Research"
11594
  msgid "You've reached your Keyword Research Limit"
11595
  msgstr "Squirrly Erweiterte Suche!"
11596
 
11597
  # @ squirrly-seo
11598
+ #: view/Research/Research.php:36 view/Research/Research.php:148
11599
  #, fuzzy
11600
  #| msgid "Squirrly.co Login"
11601
  msgid "Check Your Account"
11602
  msgstr "Squirrly.co Login"
11603
 
11604
  # @ squirrly-seo
11605
+ #: view/Research/Research.php:39
11606
  #, fuzzy
11607
  #| msgid "Do a research"
11608
  msgid "Add a keyword to Briefcase"
11609
  msgstr "Recherchieren"
11610
 
11611
+ #: view/Research/Research.php:43
11612
  msgid "It's best if you focus on finding Long-Tail Keywords."
11613
  msgstr ""
11614
 
11615
+ #: view/Research/Research.php:57
11616
  msgid "Step 1/4: Enter a starting 2-3 words keyword"
11617
  msgstr ""
11618
 
11619
+ #: view/Research/Research.php:61
11620
  msgid "Enter a keyword that matches your business"
11621
  msgstr ""
11622
 
11623
+ #: view/Research/Research.php:65
11624
  msgid "Focus on finding Long Tail Keywords."
11625
  msgstr ""
11626
 
11627
  # @ squirrly-seo
11628
+ #: view/Research/Research.php:66
11629
  #, fuzzy
11630
  #| msgid "Could not send the email..."
11631
  msgid "You need to enter a keyword first"
11632
  msgstr "Konnte E-Mail nicht senden ..."
11633
 
11634
+ # @ squirrly-seo
11635
+ #: view/Research/Research.php:72 view/Research/Research.php:104
11636
+ #, fuzzy
11637
+ #| msgid "Squirrly settings"
11638
  msgid "Next"
11639
+ msgstr "Squirrly Einstellungen"
11640
 
11641
+ #: view/Research/Research.php:78
11642
  msgid "Step 2/4: Choose a country for your keyword research"
11643
  msgstr ""
11644
 
11645
+ # @ squirrly-seo
11646
+ #: view/Research/Research.php:82
11647
+ #, fuzzy
11648
+ #| msgid "Google %sAnalytics ID%s`:"
11649
  msgid "Select country"
11650
+ msgstr "Google %sAnalytics ID%s`:"
11651
 
11652
  # @ squirrly-seo
11653
+ #: view/Research/Research.php:87
11654
  #, fuzzy
11655
  #| msgid "Do a research"
11656
  msgid "Global Search"
11657
  msgstr "Recherchieren"
11658
 
11659
+ #: view/Research/Research.php:96
11660
  msgid ""
11661
  "For local SEO you need to select the Country where you run your business"
11662
  msgstr ""
11663
 
11664
+ #: view/Research/Research.php:101 view/Research/Research.php:154
11665
+ #: view/Research/Research.php:229
11666
  msgid "Start Over"
11667
  msgstr ""
11668
 
11669
  # @ default
11670
+ #: view/Research/Research.php:109
11671
  #, fuzzy
11672
  #| msgid "Squirrly could not find any results for: "
11673
  msgid "Step 3/4: Select similar keywords from below"
11674
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
11675
 
11676
+ # @ default
11677
+ #: view/Research/Research.php:110
11678
+ #, fuzzy
11679
+ #| msgid "Squirrly could not find any results for: "
11680
+ msgid "Select up to 3 similar keywords and start the research"
11681
+ msgstr "Squirly hat keine Suchergebnisse gefunden für:"
11682
 
11683
  # @ default
11684
  #: view/Research/Research.php:150
11688
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
11689
 
11690
  # @ squirrly-seo
11691
+ #: view/Research/Research.php:160 view/Research/Research.php:170
11692
  #, fuzzy
11693
  #| msgid "Do a research"
11694
+ msgid "Do research"
11695
  msgstr "Recherchieren"
11696
 
11697
+ #: view/Research/Research.php:163
11698
+ msgid "Do research (up to 20 results)"
11699
+ msgstr ""
11700
+
11701
  # @ squirrly-seo
11702
+ #: view/Research/Research.php:164
11703
  #, fuzzy
11704
  #| msgid "Do a research"
11705
+ msgid "Do a deep research (up to 50 results)"
11706
  msgstr "Recherchieren"
11707
 
11708
  #: view/Research/Research.php:178
11774
  msgid "Step 4/4: We could not find relevant keywords for you"
11775
  msgstr "Squirly hat keine Suchergebnisse gefunden für:"
11776
 
11777
+ #: view/Research/Research.php:244
11778
  msgid "How to Find Amazing Keywords and get more search traffic?"
11779
  msgstr ""
11780
 
11781
  # @ squirrly-seo
11782
+ #: view/Research/Research.php:258
11783
  #, fuzzy
11784
  #| msgid "+ Add keyword"
11785
  msgid "Already Have Keywords?"
11786
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
11787
 
11788
  # @ squirrly-seo
11789
+ #: view/Research/Research.php:261
11790
  #, fuzzy
11791
  #| msgid "Squirrly Keyword Research"
11792
  msgid "Import Keywords From CSV"
11793
  msgstr "Squirrly Erweiterte Suche!"
11794
 
11795
  # @ squirrly-seo
11796
+ #: view/Research/Suggested.php:16
11797
+ #, fuzzy
11798
+ #| msgid "Use this keyword"
11799
+ msgid "Suggested Keywords"
11800
+ msgstr "Dieses Schlüsselwort verwenden"
11801
+
11802
+ # @ squirrly-seo
11803
+ #: view/Research/Suggested.php:147
11804
  #, fuzzy
11805
  #| msgid "Use this keyword"
11806
  msgid "Welcome to Suggested Keywords"
11807
  msgstr "Dieses Schlüsselwort verwenden"
11808
 
11809
+ #: view/Research/Suggested.php:148
11810
  msgid "Once a week, Squirrly checks all the keywords from your briefcase."
11811
  msgstr ""
11812
 
11813
+ #: view/Research/Suggested.php:149
11814
  msgid "If it finds better keywords, they will be listed here"
11815
  msgstr ""
11816
 
11817
+ # @ squirrly-seo
11818
+ #: view/Research/Suggested.php:150
11819
+ #, fuzzy
11820
+ #| msgid "Do a research"
11821
  msgid "Until then, add keywords in Briefcase"
11822
+ msgstr "Recherchieren"
11823
 
11824
  # @ squirrly-seo
11825
+ #: view/SeoSettings/Advanced.php:26
11826
  #, fuzzy
11827
  #| msgid "Save settings"
11828
  msgid "Advanced Settings"
11829
  msgstr "Einstellungen speichern"
11830
 
11831
  # @ squirrly-seo
11832
+ #: view/SeoSettings/Advanced.php:40
11833
  #, fuzzy
11834
  #| msgid "Squirrly settings"
11835
  msgid "Load Squirrly Frontend CSS"
11836
  msgstr "Squirrly Einstellungen"
11837
 
11838
+ #: view/SeoSettings/Advanced.php:41
11839
  msgid ""
11840
  "Load Squirrly SEO CSS for Twitter and Article inserted from Squirrly "
11841
  "Blogging Assistant."
11842
  msgstr ""
11843
 
11844
  # @ squirrly-seo
11845
+ #: view/SeoSettings/Advanced.php:51
11846
  #, fuzzy
11847
  #| msgid "Squirrly LIVE SEO assistant"
11848
  msgid "Minify Squirrly SEO Metas"
11849
  msgstr "Squirrly LIVE SEO-Assistent"
11850
 
11851
+ #: view/SeoSettings/Advanced.php:52
11852
  msgid "Minify the metas in source code to optimize the page loading."
11853
  msgstr ""
11854
 
11855
+ #: view/SeoSettings/Advanced.php:53
11856
  msgid "Remove comments and newlines from Squirrly SEO Metas."
11857
  msgstr ""
11858
 
11859
  # @ squirrly-seo
11860
+ #: view/SeoSettings/Advanced.php:64
11861
  #, fuzzy
11862
  #| msgid "Squirrly LIVE SEO assistant"
11863
  msgid "Squirrly SEO Late Buffer"
11864
  msgstr "Squirrly LIVE SEO-Assistent"
11865
 
11866
+ #: view/SeoSettings/Advanced.php:65
11867
  msgid "Wait all plugins to load before loading Squirrly SEO frontend buffer."
11868
  msgstr ""
11869
 
11870
+ #: view/SeoSettings/Advanced.php:66
11871
  msgid "For compatibility with some Cache and CDN plugins."
11872
  msgstr ""
11873
 
11874
+ # @ squirrly-seo
11875
+ #: view/SeoSettings/Advanced.php:78
11876
+ #, fuzzy
11877
+ #| msgid "Squirrly LIVE SEO assistant"
11878
+ msgid "Delete Squirrly SEO Table on Uninstall"
11879
+ msgstr "Squirrly LIVE SEO-Assistent"
11880
 
11881
+ #: view/SeoSettings/Advanced.php:79
11882
  msgid "Delete Squirrly SEO table and options on uninstall."
11883
  msgstr ""
11884
 
11885
  # @ squirrly-seo
11886
+ #: view/SeoSettings/Automation.php:27
11887
  #, fuzzy
11888
  #| msgid "automatically"
11889
+ msgid "SEO Automation - Patterns"
11890
  msgstr "automatisch"
11891
 
11892
+ #: view/SeoSettings/Automation.php:29
11893
  msgid ""
11894
  "Control how post types are displayed on your site, within search engine "
11895
  "results, and social media feeds."
11896
  msgstr ""
11897
 
11898
  # @ squirrly-seo
11899
+ #: view/SeoSettings/Automation.php:38 view/SeoSettings/Automation.php:309
11900
  #, fuzzy
11901
  #| msgid "Keywords:"
11902
  msgid "Activate Patterns"
11903
  msgstr "Schlüsselwörter:"
11904
 
11905
  # @ squirrly-seo
11906
+ #: view/SeoSettings/Automation.php:79
11907
  #, fuzzy
11908
  #| msgid "automatically"
11909
  msgid "Add Post Type for SEO Automation"
11910
  msgstr "automatisch"
11911
 
11912
+ #: view/SeoSettings/Automation.php:86 view/SeoSettings/Automation.php:99
11913
  msgid "Add Post Type"
11914
  msgstr ""
11915
 
11916
+ #: view/SeoSettings/Automation.php:88
11917
  msgid "Add new post types in the list and customize the automation for it."
11918
  msgstr ""
11919
 
11920
+ #: view/SeoSettings/Automation.php:108
11921
  msgid "Customize the automation for each post type"
11922
  msgstr ""
11923
 
11924
  # @ squirrly-seo
11925
+ #: view/SeoSettings/Automation.php:140
11926
  #, fuzzy
11927
  #| msgid "Tips: Length 10-70 chars"
11928
  msgid "Tips: Length 10-75 chars"
11929
  msgstr "Tipp: Länge 10-70 Charaktere"
11930
 
11931
  # @ squirrly-seo
11932
+ #: view/SeoSettings/Automation.php:149
11933
  #, fuzzy
11934
  #| msgid "Tips: Length 10-70 chars"
11935
  msgid "Tips: Length 70-320 chars"
11936
  msgstr "Tipp: Länge 10-70 Charaktere"
11937
 
11938
+ #: view/SeoSettings/Automation.php:158
11939
  msgid "Separator"
11940
  msgstr ""
11941
 
11942
+ #: view/SeoSettings/Automation.php:159
11943
  msgid ""
11944
  "Use separator to help user read the most relevant part of your title and "
11945
  "increase Conversion Rate"
11946
  msgstr ""
11947
 
11948
+ #: view/SeoSettings/Automation.php:198
11949
  msgid "Let Google Index it"
11950
  msgstr ""
11951
 
11952
+ #: view/SeoSettings/Automation.php:199
11953
  msgid ""
11954
  "If you switch off this option, Squirrly will add noindex meta for this post "
11955
  "type."
11956
  msgstr ""
11957
 
11958
+ #: view/SeoSettings/Automation.php:225
11959
  msgid "Send Authority to it"
11960
  msgstr ""
11961
 
11962
+ #: view/SeoSettings/Automation.php:226
11963
  msgid ""
11964
  "If you sq-switch off this option, Squirrly will add nofollow meta for this "
11965
  "post type."
11966
  msgstr ""
11967
 
11968
+ #: view/SeoSettings/Automation.php:244
11969
  msgid "Include In Sitemap"
11970
  msgstr ""
11971
 
11972
+ #: view/SeoSettings/Automation.php:245
11973
  msgid "Let Squirrly SEO include this post type in Squirrly Sitemap XML."
11974
  msgstr ""
11975
 
11976
  #: view/SeoSettings/Automation.php:246
11977
+ msgid ""
11978
+ "If you switch off this option, Squirrly will not load the Sitemap for this "
11979
+ "post type."
11980
+ msgstr ""
11981
+
11982
+ #: view/SeoSettings/Automation.php:261 view/SeoSettings/Links.php:121
11983
  msgid "Redirect Broken URLs"
11984
  msgstr ""
11985
 
11986
+ #: view/SeoSettings/Automation.php:262
11987
  msgid ""
11988
+ "Redirect the 404 URL in case it is changed with a new one in Post Editor."
11989
  msgstr ""
11990
 
11991
+ #: view/SeoSettings/Automation.php:273 view/SeoSettings/Links.php:61
11992
  msgid "Redirect Attachments Page"
11993
  msgstr ""
11994
 
11995
+ #: view/SeoSettings/Automation.php:274 view/SeoSettings/Links.php:62
11996
  msgid "Redirect the attachment page to its image URL."
11997
  msgstr ""
11998
 
11999
+ #: view/SeoSettings/Automation.php:275 view/SeoSettings/Links.php:63
12000
  msgid "Recommended if your website is not a photography website."
12001
  msgstr ""
12002
 
12003
  # @ squirrly-seo
12004
+ #: view/SeoSettings/Automation.php:297
12005
  #, fuzzy
12006
  #| msgid "Squirrly settings"
12007
  msgid "Load Squirrly SEO METAs"
12008
  msgstr "Squirrly Einstellungen"
12009
 
12010
+ #: view/SeoSettings/Automation.php:298
12011
  msgid ""
12012
  "Let Squirrly SEO load the Title, Description, Keyword METAs for this post "
12013
  "type."
12014
  msgstr ""
12015
 
12016
  # @ squirrly-seo
12017
+ #: view/SeoSettings/Automation.php:316
12018
  #, fuzzy
12019
  #| msgid "Squirrly settings"
12020
  msgid "Load Squirrly Patterns"
12021
  msgstr "Squirrly Einstellungen"
12022
 
12023
+ #: view/SeoSettings/Automation.php:317
12024
  msgid "Let Squirrly SEO load the Patterns for this post type."
12025
  msgstr ""
12026
 
12027
  # @ squirrly-seo
12028
+ #: view/SeoSettings/Automation.php:328
12029
  #, fuzzy
12030
  #| msgid "Description:"
12031
  msgid "Activate Json-Ld"
12032
  msgstr "Beschreibung:"
12033
 
12034
+ #: view/SeoSettings/Automation.php:335
12035
  msgid "Load JSON-LD Structured Data"
12036
  msgstr ""
12037
 
12038
+ #: view/SeoSettings/Automation.php:336
12039
+ msgid "Let Squirrly SEO load the JSON-LD Schema for this post type."
 
 
 
 
 
 
 
 
 
12040
  msgstr ""
12041
 
12042
+ #: view/SeoSettings/Automation.php:341
12043
+ #, fuzzy
12044
+ #| msgid "Optimize for Keyword"
12045
+ msgid "JSON-LD Type"
12046
+ msgstr "Schlüsselwort optimieren"
12047
 
12048
+ # @ squirrly-seo
12049
+ #: view/SeoSettings/Automation.php:379 view/SeoSettings/Automation.php:430
12050
+ #, fuzzy
12051
+ #| msgid "Description:"
12052
+ msgid "Activate Social Media"
12053
+ msgstr "Beschreibung:"
12054
 
12055
  # @ squirrly-seo
12056
+ #: view/SeoSettings/Automation.php:393
12057
  #, fuzzy
12058
  #| msgid "Squirrly settings"
12059
  msgid "Load Squirrly Open Graph"
12060
  msgstr "Squirrly Einstellungen"
12061
 
12062
+ #: view/SeoSettings/Automation.php:394
12063
  msgid "Let Squirrly SEO load the Open Graph for this post type."
12064
  msgstr ""
12065
 
12066
+ #: view/SeoSettings/Automation.php:399
12067
+ #, fuzzy
12068
+ #| msgid "Optimize for Keyword"
12069
+ msgid "Open Graph Type"
12070
+ msgstr "Schlüsselwort optimieren"
12071
+
12072
+ # @ squirrly-seo
12073
+ #: view/SeoSettings/Automation.php:400
12074
+ #, fuzzy
12075
+ #| msgid "The code for Google Analytics is incorrect."
12076
+ msgid "Select which Open Graph type to load for this post type."
12077
+ msgstr "Der Code für Google Analytics ist falsch."
12078
+
12079
  # @ squirrly-seo
12080
+ #: view/SeoSettings/Automation.php:444
12081
  #, fuzzy
12082
  #| msgid "Squirrly settings"
12083
  msgid "Load Squirrly Twitter Card"
12084
  msgstr "Squirrly Einstellungen"
12085
 
12086
+ # @ squirrly-seo
12087
+ #: view/SeoSettings/Automation.php:445
12088
+ #, fuzzy
12089
+ #| msgid "The code for Google Analytics is incorrect."
12090
  msgid "Let Squirrly SEO load the Twitter Card for this post type."
12091
+ msgstr "Der Code für Google Analytics ist falsch."
12092
 
12093
  # @ squirrly-seo
12094
+ #: view/SeoSettings/Automation.php:460 view/SeoSettings/Automation.php:479
12095
+ #: view/SeoSettings/Tracking.php:33
12096
  #, fuzzy
12097
  #| msgid "Keywords:"
12098
  msgid "Activate Trackers"
12099
  msgstr "Schlüsselwörter:"
12100
 
12101
  # @ squirrly-seo
12102
+ #: view/SeoSettings/Automation.php:467
12103
  #, fuzzy
12104
  #| msgid "The code for Google Analytics is incorrect."
12105
  msgid "Load Google Analytics Tracking Script"
12106
  msgstr "Der Code für Google Analytics ist falsch."
12107
 
12108
  # @ squirrly-seo
12109
+ #: view/SeoSettings/Automation.php:468
12110
  #, fuzzy
12111
  #| msgid "The code for Google Analytics is incorrect."
12112
  msgid "Let Google Analytics Tracking to load for this post type."
12113
  msgstr "Der Code für Google Analytics ist falsch."
12114
 
12115
  # @ squirrly-seo
12116
+ #: view/SeoSettings/Automation.php:486
12117
  #, fuzzy
12118
  #| msgid "Description:"
12119
  msgid "Load Facebook Pixel Tracking Script"
12120
  msgstr "Beschreibung:"
12121
 
12122
+ # @ squirrly-seo
12123
+ #: view/SeoSettings/Automation.php:487
12124
+ #, fuzzy
12125
+ #| msgid "The code for Google Analytics is incorrect."
12126
  msgid "Let Facebook Pixel Tracking to load for this post type."
12127
+ msgstr "Der Code für Google Analytics ist falsch."
12128
 
12129
  # @ squirrly-seo
12130
+ #: view/SeoSettings/Automation.php:497
12131
  #, fuzzy, php-format
12132
  #| msgid "Could not send the email..."
12133
  msgid "Do you want to delete the automation for %s?"
12134
  msgstr "Konnte E-Mail nicht senden ..."
12135
 
12136
+ #: view/SeoSettings/Automation.php:497
12137
  #, php-format
12138
  msgid "Remove automation for %s"
12139
  msgstr ""
12140
 
12141
  # @ squirrly-seo
12142
+ #: view/SeoSettings/Automation.php:525
12143
  #, fuzzy
12144
  #| msgid "Squirrly settings"
12145
  msgid "Squirrly Patterns"
12146
  msgstr "Squirrly Einstellungen"
12147
 
12148
+ #: view/SeoSettings/Automation.php:528
12149
  msgid ""
12150
  "Use the Pattern system to prevent Title and Description duplicates between "
12151
  "posts"
12152
  msgstr ""
12153
 
12154
+ #: view/SeoSettings/Automation.php:534
12155
  msgid ""
12156
  "Patterns change the codes like {{title}} with the actual value of the post "
12157
  "Title."
12158
  msgstr ""
12159
 
12160
+ #: view/SeoSettings/Automation.php:535
12161
  msgid ""
12162
  "In Squirrly, each post type in your site comes with a predefined posting "
12163
  "pattern when displayed onto your website. However, based on your site's "
12165
  "include."
12166
  msgstr ""
12167
 
12168
+ #: view/SeoSettings/Automation.php:536
12169
  msgid ""
12170
  "Once you set up a pattern for a particular post type, only the content "
12171
  "required by your custom sequence will be displayed."
12172
  msgstr ""
12173
 
12174
+ #: view/SeoSettings/Automation.php:537
12175
  #, php-format
12176
  msgid ""
12177
  "Squirrly lets you see how the customized patterns will apply when posts/"
12179
  "to go to the %sBulk SEO%s and see the meta information for each post type."
12180
  msgstr ""
12181
 
12182
+ # @ squirrly-seo
12183
+ #: view/SeoSettings/Automation.php:544
12184
+ #, fuzzy
12185
+ #| msgid "Description:"
12186
  msgid "META Lengths"
12187
+ msgstr "Beschreibung:"
12188
 
12189
+ #: view/SeoSettings/Automation.php:547
12190
  msgid "Change the lengths for each META on automation"
12191
  msgstr ""
12192
 
12193
  # @ squirrly-seo
12194
+ #: view/SeoSettings/Automation.php:553 view/SeoSettings/Metas.php:200
12195
  #, fuzzy
12196
  #| msgid "Description:"
12197
  msgid "Title Length"
12198
  msgstr "Beschreibung:"
12199
 
12200
  # @ squirrly-seo
12201
+ #: view/SeoSettings/Automation.php:561 view/SeoSettings/Metas.php:208
12202
  #, fuzzy
12203
  #| msgid "Description:"
12204
  msgid "Description Length"
12205
  msgstr "Beschreibung:"
12206
 
12207
+ #: view/SeoSettings/Automation.php:569 view/SeoSettings/Social.php:375
12208
  #, fuzzy
12209
  #| msgid "Optimize for Keyword"
12210
  msgid "Open Graph Title Length"
12211
  msgstr "Schlüsselwort optimieren"
12212
 
12213
  # @ squirrly-seo
12214
+ #: view/SeoSettings/Automation.php:577 view/SeoSettings/Social.php:383
12215
  #, fuzzy
12216
  #| msgid "Description:"
12217
  msgid "Open Graph Description Length"
12218
  msgstr "Beschreibung:"
12219
 
12220
  # @ squirrly-seo
12221
+ #: view/SeoSettings/Automation.php:585 view/SeoSettings/Social.php:391
12222
  #, fuzzy
12223
  #| msgid "Twitter"
12224
  msgid "Twitter Card Title Length"
12225
  msgstr "Twitter"
12226
 
12227
  # @ squirrly-seo
12228
+ #: view/SeoSettings/Automation.php:593 view/SeoSettings/Social.php:399
12229
  #, fuzzy
12230
  #| msgid "Description:"
12231
  msgid "Twitter Card Description Length"
12232
  msgstr "Beschreibung:"
12233
 
12234
+ # @ squirrly-seo
12235
+ #: view/SeoSettings/Automation.php:601 view/SeoSettings/Jsonld.php:400
12236
+ #, fuzzy
12237
+ #| msgid "Description:"
12238
  msgid "JSON-LD Title Length"
12239
+ msgstr "Beschreibung:"
12240
 
12241
  # @ squirrly-seo
12242
+ #: view/SeoSettings/Automation.php:609 view/SeoSettings/Jsonld.php:408
12243
  #, fuzzy
12244
  #| msgid "Description:"
12245
  msgid "JSON-LD Description Length"
12246
  msgstr "Beschreibung:"
12247
 
12248
+ #: view/SeoSettings/Backup.php:8 view/SeoSettings/Jsonld.php:8
12249
  msgid ""
12250
  "You do not have permission to access this page. You need Squirrly SEO Admin "
12251
  "role"
12252
  msgstr ""
12253
 
12254
  # @ squirrly-seo
12255
+ #: view/SeoSettings/Backup.php:24
12256
  #, fuzzy
12257
  #| msgid "Save settings"
12258
  msgid "Import Settings & SEO"
12259
  msgstr "Einstellungen speichern"
12260
 
12261
+ #: view/SeoSettings/Backup.php:26
12262
  msgid ""
12263
  "Import the settings and SEO from other plugins so you can use only Squirrly "
12264
  "SEO for on-page SEO."
12265
  msgstr ""
12266
 
12267
+ #: view/SeoSettings/Backup.php:27
12268
  msgid ""
12269
  "Note! If you import the SEO settings from other plugins or themes, you will "
12270
  "lose all the settings that you had in Squirrly SEO. Make sure you backup "
12272
  msgstr ""
12273
 
12274
  # @ squirrly-seo
12275
+ #: view/SeoSettings/Backup.php:44
12276
  #, fuzzy
12277
  #| msgid "Save settings"
12278
  msgid "Import Settings From"
12279
  msgstr "Einstellungen speichern"
12280
 
12281
+ #: view/SeoSettings/Backup.php:45
12282
  msgid "Select the plugin or theme you want to import the Settings from."
12283
  msgstr ""
12284
 
12285
+ # @ squirrly-seo
12286
+ #: view/SeoSettings/Backup.php:46
12287
+ #, fuzzy
12288
+ #| msgid "for Squirrly Live SEO optimization"
12289
  msgid "Note! It will overwrite the settings you set in Squirrly SEO."
12290
+ msgstr "Live-SEO-Optimierung für Squirrly"
12291
 
12292
  # @ squirrly-seo
12293
+ #: view/SeoSettings/Backup.php:62
12294
  #, fuzzy
12295
  #| msgid "Save settings"
12296
  msgid "Import Settings"
12297
  msgstr "Einstellungen speichern"
12298
 
12299
  # @ squirrly-seo
12300
+ #: view/SeoSettings/Backup.php:73
12301
  #, fuzzy
12302
  #| msgid "Save settings"
12303
  msgid "Import SEO From"
12304
  msgstr "Einstellungen speichern"
12305
 
12306
+ #: view/SeoSettings/Backup.php:74
12307
  msgid "Select the plugin or theme you want to import the SEO settings from."
12308
  msgstr ""
12309
 
12310
+ #: view/SeoSettings/Backup.php:75
12311
  msgid ""
12312
  "Note! It will import only the SEO for the pages that were not yet optimized "
12313
  "with Squirrly SEO."
12314
  msgstr ""
12315
 
12316
+ # @ squirrly-seo
12317
+ #: view/SeoSettings/Backup.php:102
12318
+ #, fuzzy
12319
+ #| msgid "Save settings"
12320
  msgid "Backup Settings & SEO"
12321
+ msgstr "Einstellungen speichern"
12322
 
12323
+ #: view/SeoSettings/Backup.php:104
12324
  msgid ""
12325
  "You can now download your Squirrly settings in an sql file before you go "
12326
  "ahead and import the SEO settings from another plugin. That way, you can "
12328
  msgstr ""
12329
 
12330
  # @ squirrly-seo
12331
+ #: view/SeoSettings/Backup.php:111
12332
  #, fuzzy
12333
  #| msgid "Save settings"
12334
  msgid "Backup Settings"
12335
  msgstr "Einstellungen speichern"
12336
 
12337
  # @ squirrly-seo
12338
+ #: view/SeoSettings/Backup.php:112
12339
  #, fuzzy
12340
  #| msgid "for Squirrly Live SEO optimization"
12341
  msgid "Download all the settings from Squirrly SEO."
12342
  msgstr "Live-SEO-Optimierung für Squirrly"
12343
 
12344
+ #: view/SeoSettings/Backup.php:117
12345
  msgid "Download Backup"
12346
  msgstr ""
12347
 
12348
+ # @ squirrly-seo
12349
+ #: view/SeoSettings/Backup.php:125
12350
+ #, fuzzy
12351
+ #| msgid "Squirrly settings"
12352
  msgid "Backup SEO"
12353
+ msgstr "Squirrly Einstellungen"
12354
 
12355
  # @ squirrly-seo
12356
+ #: view/SeoSettings/Backup.php:126
12357
  #, fuzzy
12358
  #| msgid "for Squirrly Live SEO optimization"
12359
  msgid "Download all the Squirrly SEO Snippet optimizations."
12360
  msgstr "Live-SEO-Optimierung für Squirrly"
12361
 
12362
+ #: view/SeoSettings/Backup.php:131
12363
  msgid "Download Backup"
12364
  msgstr ""
12365
 
12366
  # @ squirrly-seo
12367
+ #: view/SeoSettings/Backup.php:139
12368
  #, fuzzy
12369
  #| msgid "Save settings"
12370
  msgid "Restore Settings & SEO"
12371
  msgstr "Einstellungen speichern"
12372
 
12373
+ #: view/SeoSettings/Backup.php:141
12374
  msgid "Restore the settings and all the pages optimized with Squirrly SEO."
12375
  msgstr ""
12376
 
12377
  # @ squirrly-seo
12378
+ #: view/SeoSettings/Backup.php:148 view/SeoSettings/Backup.php:157
12379
  #, fuzzy
12380
  #| msgid "Save settings"
12381
  msgid "Restore Settings"
12382
  msgstr "Einstellungen speichern"
12383
 
12384
+ #: view/SeoSettings/Backup.php:149
12385
  msgid "Upload the file with the saved Squirrly Settings."
12386
  msgstr ""
12387
 
12388
+ # @ squirrly-seo
12389
+ #: view/SeoSettings/Backup.php:165 view/SeoSettings/Backup.php:174
12390
+ #, fuzzy
12391
+ #| msgid "Save settings"
12392
  msgid "Restore SEO"
12393
+ msgstr "Einstellungen speichern"
12394
 
12395
+ #: view/SeoSettings/Backup.php:166
12396
  msgid "Upload the file with the saved Squirrly SEO SQL file."
12397
  msgstr ""
12398
 
12399
+ #: view/SeoSettings/Backup.php:181
12400
  msgid "Rollback Plugin"
12401
  msgstr ""
12402
 
12403
+ #: view/SeoSettings/Backup.php:183
12404
  msgid "You can rollback Squirrly SEO plugin to the last stable version."
12405
  msgstr ""
12406
 
12407
+ #: view/SeoSettings/Backup.php:190
12408
  msgid "Rollback to"
12409
  msgstr ""
12410
 
12411
+ #: view/SeoSettings/Backup.php:191
12412
  msgid "Install the last stable version of the plugin."
12413
  msgstr ""
12414
 
12415
  # @ squirrly-seo
12416
+ #: view/SeoSettings/Backup.php:196
12417
  #, fuzzy
12418
  #| msgid "Squirrly settings"
12419
  msgid "Install Squirrly SEO"
12420
  msgstr "Squirrly Einstellungen"
12421
 
12422
+ #: view/SeoSettings/Backup.php:205
12423
+ msgid "Reinstall"
12424
+ msgstr ""
12425
+
12426
+ #: view/SeoSettings/Backup.php:206
12427
+ msgid "Reinstall the current version of the plugin."
12428
+ msgstr ""
12429
+
12430
+ # @ squirrly-seo
12431
+ #: view/SeoSettings/Backup.php:211
12432
+ #, fuzzy
12433
+ #| msgid "Squirrly settings"
12434
+ msgid "Reinstall Squirrly SEO"
12435
+ msgstr "Squirrly Einstellungen"
12436
+
12437
  # @ squirrly-seo
12438
+ #: view/SeoSettings/Favicon.php:28
12439
  #, fuzzy
12440
  #| msgid "Change the Website Icon"
12441
  msgid "Website Icon"
12442
  msgstr "Ändern Sie das Website-Symbol"
12443
 
12444
+ #: view/SeoSettings/Favicon.php:30
12445
+ msgid ""
12446
+ "Add your website icon in the browser tabs and on other devices like iPhone, "
12447
+ "iPad and Android phones."
12448
+ msgstr ""
12449
+
12450
  # @ squirrly-seo
12451
+ #: view/SeoSettings/Favicon.php:36
12452
  #, fuzzy
12453
  #| msgid "Description:"
12454
  msgid "Activate Favicon"
12455
  msgstr "Beschreibung:"
12456
 
12457
  # @ squirrly-seo
12458
+ #: view/SeoSettings/Favicon.php:56
12459
  #, fuzzy
12460
  #| msgid "Upload file:"
12461
  msgid "Upload file"
12462
  msgstr "Datei hochladen:"
12463
 
12464
+ #: view/SeoSettings/Favicon.php:57
12465
  msgid "Upload a jpg, jpeg, png or ico file."
12466
  msgstr ""
12467
 
12468
+ #: view/SeoSettings/Favicon.php:87
12469
  msgid "Add Apple Touch Icons"
12470
  msgstr ""
12471
 
12472
+ #: view/SeoSettings/Favicon.php:88
12473
  msgid "Also load the favicon for Apple devices."
12474
  msgstr ""
12475
 
12476
  # @ squirrly-seo
12477
+ #: view/SeoSettings/Favicon.php:94
12478
  msgid ""
12479
  "If you don't see the new icon in your browser, empty the browser cache and "
12480
  "refresh the page."
12483
  "Cache und aktualisieren Sie die Seite."
12484
 
12485
  # @ squirrly-seo
12486
+ #: view/SeoSettings/Favicon.php:95
12487
  #, fuzzy
12488
  #| msgid "File types: JPG, JPEG, GIF and PNG."
12489
  msgid "Accepted file types: JPG, JPEG, GIF and PNG."
12490
  msgstr "Dateitypen: JPG, JPEG, GIF und PNG."
12491
 
12492
+ #: view/SeoSettings/Favicon.php:96
12493
  msgid ""
12494
  "Does not physically create the favicon.ico file. The best option for "
12495
  "Multisites."
12496
  msgstr ""
12497
 
12498
+ #: view/SeoSettings/Jsonld.php:28
12499
  msgid "JSON-LD Structured Data"
12500
  msgstr ""
12501
 
12502
+ #: view/SeoSettings/Jsonld.php:59
12503
+ msgid "Select between a Personal or a Business website type."
 
 
 
 
 
 
 
 
 
12504
  msgstr ""
12505
 
12506
+ #: view/SeoSettings/Jsonld.php:64
12507
  msgid "Organization"
12508
  msgstr ""
12509
 
12510
+ #: view/SeoSettings/Jsonld.php:65
12511
+ msgid "Person"
12512
  msgstr ""
12513
 
12514
+ #: view/SeoSettings/Jsonld.php:74
12515
  msgid "Your Organization Name"
12516
  msgstr ""
12517
 
12518
+ #: view/SeoSettings/Jsonld.php:84 view/SeoSettings/Jsonld.php:294
 
 
 
 
12519
  msgid "Logo URL"
12520
  msgstr ""
12521
 
12522
  # @ squirrly-seo
12523
+ #: view/SeoSettings/Jsonld.php:89 view/SeoSettings/Jsonld.php:299
 
12524
  #, fuzzy
12525
  #| msgid "Images"
12526
  msgid "Select Image"
12527
  msgstr "Bilder"
12528
 
12529
+ # @ squirrly-seo
12530
+ #: view/SeoSettings/Jsonld.php:94 view/SeoSettings/Jsonld.php:313
12531
+ #, fuzzy
12532
+ #| msgid "Description:"
12533
+ msgid "Short Description"
12534
+ msgstr "Beschreibung:"
12535
+
12536
+ #: view/SeoSettings/Jsonld.php:95
12537
+ msgid "A short description about the company. 20-50 words."
12538
+ msgstr ""
12539
+
12540
+ #: view/SeoSettings/Jsonld.php:104
12541
+ msgid "Address"
12542
+ msgstr ""
12543
+
12544
+ #: view/SeoSettings/Jsonld.php:113
12545
+ msgid "City"
12546
+ msgstr ""
12547
+
12548
+ #: view/SeoSettings/Jsonld.php:131
12549
+ msgid "Postal Code"
12550
  msgstr ""
12551
 
12552
+ #: view/SeoSettings/Jsonld.php:140 view/SeoSettings/Jsonld.php:304
12553
+ msgid "Contact Phone"
12554
  msgstr ""
12555
 
12556
+ #: view/SeoSettings/Jsonld.php:149
12557
  msgid "Contact Type"
12558
  msgstr ""
12559
 
12560
+ #: view/SeoSettings/Jsonld.php:155
12561
  msgid "Customer Service"
12562
  msgstr ""
12563
 
12564
  # @ squirrly-seo
12565
+ #: view/SeoSettings/Jsonld.php:156
12566
  #, fuzzy
12567
  #| msgid "Support"
12568
  msgid "Technical Support"
12569
  msgstr "Support"
12570
 
12571
  # @ squirrly-seo
12572
+ #: view/SeoSettings/Jsonld.php:157
12573
  #, fuzzy
12574
  #| msgid "Plugin Support"
12575
  msgid "Billing Support"
12576
  msgstr "Plugin Support"
12577
 
12578
+ #: view/SeoSettings/Jsonld.php:158
12579
  msgid "Bill Payment"
12580
  msgstr ""
12581
 
12582
+ #: view/SeoSettings/Jsonld.php:159
12583
  msgid "Sales"
12584
  msgstr ""
12585
 
12586
+ # @ squirrly-seo
12587
+ #: view/SeoSettings/Jsonld.php:160
12588
+ #, fuzzy
12589
+ #| msgid "Description:"
12590
  msgid "Reservations"
12591
+ msgstr "Beschreibung:"
12592
 
12593
  # @ squirrly-seo
12594
+ #: view/SeoSettings/Jsonld.php:161
12595
  #, fuzzy
12596
  #| msgid "Support"
12597
  msgid "Credit Card Support"
12598
  msgstr "Support"
12599
 
12600
+ #: view/SeoSettings/Jsonld.php:162
12601
  msgid "Emergency"
12602
  msgstr ""
12603
 
12604
+ # @ squirrly-seo
12605
+ #: view/SeoSettings/Jsonld.php:163
12606
+ #, fuzzy
12607
+ #| msgid "Description:"
12608
  msgid "Baggage Tracking"
12609
+ msgstr "Beschreibung:"
12610
 
12611
  # @ squirrly-seo
12612
+ #: view/SeoSettings/Jsonld.php:164
12613
  #, fuzzy
12614
  #| msgid "Save settings"
12615
  msgid "Roadside Assistance"
12616
  msgstr "Einstellungen speichern"
12617
 
12618
  # @ squirrly-seo
12619
+ #: view/SeoSettings/Jsonld.php:165
12620
  #, fuzzy
12621
  #| msgid "Description:"
12622
  msgid "Package Tracking"
12623
  msgstr "Beschreibung:"
12624
 
12625
+ #: view/SeoSettings/Jsonld.php:171
12626
+ msgid "Setup JSON-LD Schema for Local SEO"
12627
+ msgstr ""
12628
+
12629
  # @ squirrly-seo
12630
+ #: view/SeoSettings/Jsonld.php:175
12631
  #, fuzzy
12632
+ #| msgid "automatically"
12633
+ msgid "GEO Location"
12634
+ msgstr "automatisch"
12635
 
12636
+ # @ squirrly-seo
12637
+ #: view/SeoSettings/Jsonld.php:179
12638
+ #, fuzzy
12639
+ #| msgid "Save settings"
12640
+ msgid "GEO Settings"
12641
+ msgstr "Einstellungen speichern"
12642
+
12643
+ #: view/SeoSettings/Jsonld.php:181
12644
+ msgid "Latitude & Longitude of your store/business."
12645
  msgstr ""
12646
 
12647
+ #: view/SeoSettings/Jsonld.php:184
12648
+ msgid "latitude"
12649
+ msgstr ""
12650
+
12651
+ #: view/SeoSettings/Jsonld.php:187
12652
+ msgid "longitude"
12653
+ msgstr ""
12654
+
12655
+ #: view/SeoSettings/Jsonld.php:192
12656
+ msgid "Opening Hours"
12657
+ msgstr ""
12658
+
12659
+ #: view/SeoSettings/Jsonld.php:205
12660
+ msgid "Opens"
12661
+ msgstr ""
12662
+
12663
+ #: view/SeoSettings/Jsonld.php:207
12664
+ msgid "08:00"
12665
+ msgstr ""
12666
+
12667
+ #: view/SeoSettings/Jsonld.php:213
12668
+ msgid "Closes"
12669
  msgstr ""
12670
 
12671
+ #: view/SeoSettings/Jsonld.php:215
12672
+ msgid "23:00"
12673
+ msgstr ""
12674
+
12675
+ #: view/SeoSettings/Jsonld.php:223
12676
+ msgid "Local Restaurant"
12677
+ msgstr ""
12678
+
12679
+ #: view/SeoSettings/Jsonld.php:227
12680
+ msgid "Price Range"
12681
+ msgstr ""
12682
+
12683
+ #: view/SeoSettings/Jsonld.php:240
12684
+ msgid "Serves Cuisine"
12685
+ msgstr ""
12686
+
12687
+ # @ squirrly-seo
12688
+ #: view/SeoSettings/Jsonld.php:249
12689
+ #, fuzzy
12690
+ #| msgid "Insert it!"
12691
+ msgid "Menu Link"
12692
+ msgstr "Einfügen!"
12693
+
12694
+ # @ squirrly-seo
12695
+ #: view/SeoSettings/Jsonld.php:258
12696
+ #, fuzzy
12697
+ #| msgid "Description:"
12698
+ msgid "Accept Reservations"
12699
+ msgstr "Beschreibung:"
12700
+
12701
+ #: view/SeoSettings/Jsonld.php:275
12702
+ msgid "Your Name"
12703
  msgstr ""
12704
 
12705
  # @ squirrly-seo
12706
+ #: view/SeoSettings/Jsonld.php:285
12707
  #, fuzzy
12708
  #| msgid "Title:"
12709
  msgid "Job Title"
12710
  msgstr "Titel:"
12711
 
12712
+ #: view/SeoSettings/Jsonld.php:314
12713
+ msgid "A short description about your job title."
12714
  msgstr ""
12715
 
12716
+ #: view/SeoSettings/Jsonld.php:327
12717
+ msgid "Set this person as a global author"
12718
+ msgstr ""
12719
+
12720
+ #: view/SeoSettings/Jsonld.php:328
12721
+ msgid "Overwrite the posts/pages author(s) with this author in Json-LD."
12722
  msgstr ""
12723
 
12724
  # @ squirrly-seo
12725
+ #: view/SeoSettings/Jsonld.php:338
12726
  #, fuzzy
12727
  #| msgid "Save settings"
12728
  msgid "More Json-LD Settings"
12729
  msgstr "Einstellungen speichern"
12730
 
12731
+ #: view/SeoSettings/Jsonld.php:347
12732
  msgid "Add Support For Woocommerce"
12733
  msgstr ""
12734
 
12735
+ #: view/SeoSettings/Jsonld.php:348
12736
  msgid ""
12737
  "Improve the Woocommerce Product and Orders Schema with the required data."
12738
  msgstr ""
12739
 
12740
+ #: view/SeoSettings/Jsonld.php:358
12741
  msgid "Add default data for Woocommerce Products"
12742
  msgstr ""
12743
 
12744
+ #: view/SeoSettings/Jsonld.php:359
12745
  msgid ""
12746
  "Add default data for JSON-LD aggregateRating, review, offers, sku, mpn to "
12747
  "avoid GSC errors."
12748
  msgstr ""
12749
 
12750
+ #: view/SeoSettings/Jsonld.php:369
12751
  msgid "Add Breadcrumbs in Json-LD"
12752
  msgstr ""
12753
 
12754
+ #: view/SeoSettings/Jsonld.php:370
12755
  msgid ""
12756
  "Add the BreadcrumbsList Schema into Json-LD including all parent categories."
12757
  msgstr ""
12758
 
12759
+ #: view/SeoSettings/Jsonld.php:380
12760
  msgid "Remove other Json-LD from page"
12761
  msgstr ""
12762
 
12763
+ #: view/SeoSettings/Jsonld.php:381
12764
  msgid ""
12765
  "Clear the Json-LD from other plugins and theme to avoid duplicate schemas."
12766
  msgstr ""
12767
 
12768
+ # @ squirrly-seo
12769
+ #: view/SeoSettings/Jsonld.php:393 view/SeoSettings/Metas.php:193
12770
+ #: view/SeoSettings/Social.php:368
12771
+ #, fuzzy
12772
+ #| msgid "Description:"
12773
+ msgid "Title & Description Lengths"
12774
+ msgstr "Beschreibung:"
12775
+
12776
+ # @ squirrly-seo
12777
+ #: view/SeoSettings/Jsonld.php:439
12778
+ #, fuzzy
12779
+ #| msgid "Squirrly settings"
12780
+ msgid "Next Step"
12781
+ msgstr "Squirrly Einstellungen"
12782
+
12783
+ #: view/SeoSettings/Jsonld.php:443
12784
+ msgid "Tips: How to optimize Json-LD Schema on all pages?"
12785
+ msgstr ""
12786
+
12787
+ #: view/SeoSettings/Jsonld.php:445
12788
+ #, php-format
12789
+ msgid ""
12790
+ "Use the %s SEO Automation %s to setup the Json-LD type based on Post Types."
12791
+ msgstr ""
12792
+
12793
+ #: view/SeoSettings/Jsonld.php:446
12794
+ #, php-format
12795
+ msgid ""
12796
+ "Use %s Bulk SEO %s to optimize the JSON-LD in the SEO Snippet for each page "
12797
+ "on your website."
12798
+ msgstr ""
12799
+
12800
+ #: view/SeoSettings/Links.php:31
12801
+ msgid ""
12802
+ "Increase the website authority by not sending authority to all external "
12803
+ "links."
12804
+ msgstr ""
12805
+
12806
+ # @ squirrly-seo
12807
+ #: view/SeoSettings/Links.php:40 view/SeoSettings/Metas.php:40
12808
+ #, fuzzy
12809
+ #| msgid "Keywords:"
12810
+ msgid "Activate SEO Metas"
12811
+ msgstr "Schlüsselwörter:"
12812
+
12813
+ #: view/SeoSettings/Links.php:73
12814
+ msgid "Add Nofollow to external links"
12815
+ msgstr ""
12816
+
12817
+ #: view/SeoSettings/Links.php:74
12818
+ msgid ""
12819
+ "Add the 'nofollow' attribute to all external links and stop loosing "
12820
+ "authority."
12821
+ msgstr ""
12822
+
12823
+ #: view/SeoSettings/Links.php:84
12824
+ msgid "Open external links in New Tab"
12825
+ msgstr ""
12826
+
12827
+ #: view/SeoSettings/Links.php:85
12828
+ msgid ""
12829
+ "Add the '_blank' attribute to all external links to open them in a new tab."
12830
+ msgstr ""
12831
+
12832
+ #: view/SeoSettings/Links.php:92
12833
+ msgid "Domain Exception"
12834
+ msgstr ""
12835
+
12836
+ #: view/SeoSettings/Links.php:93
12837
+ msgid "Add external links for who you don't want to apply the nofollow."
12838
+ msgstr ""
12839
+
12840
+ #: view/SeoSettings/Links.php:127
12841
+ msgid "Manage redirects for each Posts Type"
12842
+ msgstr ""
12843
+
12844
+ #: view/SeoSettings/Links.php:132
12845
+ msgid "Tips: How to redirect broken URLs?"
12846
+ msgstr ""
12847
+
12848
+ #: view/SeoSettings/Links.php:134
12849
+ #, php-format
12850
+ msgid ""
12851
+ "Use the %s SEO Automation %s to setup the broken URLs redirect if you change "
12852
+ "a post/page slug."
12853
+ msgstr ""
12854
+
12855
+ #: view/SeoSettings/Links.php:135
12856
+ msgid ""
12857
+ "Squirrly SEO will add a 301 redirect to the new slug without losing any SEO "
12858
+ "authority."
12859
+ msgstr ""
12860
+
12861
+ #: view/SeoSettings/Metas.php:31
12862
+ msgid ""
12863
+ "Add all Search Engine METAs like Title, Description, Canonical Link, Dublin "
12864
+ "Core, Robots and more."
12865
+ msgstr ""
12866
+
12867
+ #: view/SeoSettings/Metas.php:56
12868
+ #, fuzzy
12869
+ #| msgid "Optimize for Keyword"
12870
+ msgid "Optimize with SEO Patterns"
12871
+ msgstr "Schlüsselwort optimieren"
12872
+
12873
+ #: view/SeoSettings/Metas.php:61
12874
+ #, fuzzy
12875
+ #| msgid "Optimize for Keyword"
12876
+ msgid "Optimize all SEO Snippets"
12877
+ msgstr "Schlüsselwort optimieren"
12878
+
12879
+ #: view/SeoSettings/Metas.php:67
12880
+ msgid "Tips: How to optimize all the pages from my website?"
12881
+ msgstr ""
12882
+
12883
+ #: view/SeoSettings/Metas.php:69
12884
+ #, php-format
12885
+ msgid ""
12886
+ "Use the %s SEO Automation %s to setup SEO Patterns based on Post Types for "
12887
+ "global optimization."
12888
+ msgstr ""
12889
+
12890
+ #: view/SeoSettings/Metas.php:70
12891
+ #, php-format
12892
+ msgid ""
12893
+ "Use %s Bulk SEO %s to optimize the SEO Snippet for each page on your website."
12894
+ msgstr ""
12895
+
12896
+ #: view/SeoSettings/Metas.php:79
12897
+ msgid "Manage On-Page SEO Metas"
12898
+ msgstr ""
12899
+
12900
+ #: view/SeoSettings/Metas.php:87
12901
  #, fuzzy
12902
  #| msgid "Optimize for Keyword"
12903
  msgid "Optimize the Titles"
12904
  msgstr "Schlüsselwort optimieren"
12905
 
12906
+ #: view/SeoSettings/Metas.php:89
12907
  msgid ""
12908
  "Add the Title Tag in the page header. You can customize it using the Bulk "
12909
  "SEO and Squirrly SEO Snippet."
12910
  msgstr ""
12911
 
12912
  # @ squirrly-seo
12913
+ #: view/SeoSettings/Metas.php:99
12914
  #, fuzzy
12915
  #| msgid "Description:"
12916
  msgid "Optimize Descriptions"
12917
  msgstr "Beschreibung:"
12918
 
12919
+ #: view/SeoSettings/Metas.php:101
12920
  msgid ""
12921
  "Add the Description meta in the page header. You can customize it using the "
12922
  "Bulk SEO and Squirrly SEO Snippet."
12923
  msgstr ""
12924
 
12925
+ #: view/SeoSettings/Metas.php:111
12926
  #, fuzzy
12927
  #| msgid "Optimize for Keyword"
12928
  msgid "Optimize Keywords"
12929
  msgstr "Schlüsselwort optimieren"
12930
 
12931
+ #: view/SeoSettings/Metas.php:113
12932
  msgid ""
12933
  "Add the Keyword meta in the page header. You can customize it using the Bulk "
12934
  "SEO and Squirrly SEO Snippet."
12935
  msgstr ""
12936
 
12937
+ #: view/SeoSettings/Metas.php:114
12938
  msgid ""
12939
  "This meta is not mandatory for Google but other search engines still use it "
12940
  "for ranking"
12941
  msgstr ""
12942
 
12943
  # @ squirrly-seo
12944
+ #: view/SeoSettings/Metas.php:125
12945
  #, fuzzy
12946
  #| msgid "adds <strong>canonical</strong> link in home page"
12947
  msgid "Add Canonical Meta Link"
12948
  msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
12949
 
12950
+ #: view/SeoSettings/Metas.php:127
12951
  msgid ""
12952
  "Add canonical link meta in the page header. You can customize the canonical "
12953
  "link on each page."
12954
  msgstr ""
12955
 
12956
+ #: view/SeoSettings/Metas.php:128
12957
  msgid ""
12958
  "Also add prev & next links metas in the page header when navigate between "
12959
  "blog pages."
12960
  msgstr ""
12961
 
12962
+ #: view/SeoSettings/Metas.php:138
12963
  msgid "Add Dublin Core Meta"
12964
  msgstr ""
12965
 
12966
  # @ squirrly-seo
12967
+ #: view/SeoSettings/Metas.php:140
12968
  #, fuzzy
12969
  #| msgid "adds <strong>canonical</strong> link in home page"
12970
  msgid "Add the Dublin Core meta in the page header."
12971
  msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
12972
 
12973
+ #: view/SeoSettings/Metas.php:150
12974
  msgid "Add Robots Meta"
12975
  msgstr ""
12976
 
12977
+ #: view/SeoSettings/Metas.php:152
12978
  msgid ""
12979
  "Add the Index/Noindex and Follow/Nofollow options in Squirrly SEO Snippet."
12980
  msgstr ""
12981
 
12982
+ #: view/SeoSettings/Metas.php:153
12983
  msgid "Add googlebot and bingbot METAs for better performance."
12984
  msgstr ""
12985
 
12986
  # @ squirrly-seo
12987
+ #: view/SeoSettings/Metas.php:160
12988
  #, fuzzy
12989
  #| msgid "Save settings"
12990
  msgid "More SEO Settings"
12991
  msgstr "Einstellungen speichern"
12992
 
12993
+ #: view/SeoSettings/Metas.php:168
12994
  msgid "Add the Post tags in Keyword META"
12995
  msgstr ""
12996
 
12997
+ #: view/SeoSettings/Metas.php:170
12998
  msgid ""
12999
  "Add all the tags from your posts as keywords. Not recommended when you use "
13000
  "Keywords in Squirrly SEO Snippet."
13001
  msgstr ""
13002
 
13003
  # @ squirrly-seo
13004
+ #: view/SeoSettings/Metas.php:180
13005
  #, fuzzy
13006
  #| msgid "Description:"
13007
+ msgid "Activate SEO Snippet in Frontend"
13008
  msgstr "Beschreibung:"
13009
 
13010
+ #: view/SeoSettings/Metas.php:182
13011
  msgid ""
13012
  "Load Squirrly SEO Snippet in Frontend to customize the SEO directly from "
13013
  "page preview."
13014
  msgstr ""
13015
 
13016
+ #: view/SeoSettings/Robots.php:30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13017
  msgid ""
13018
  "A robots.txt file tells search engine crawlers which pages or files the "
13019
  "crawler can or can't request from your site."
13020
  msgstr ""
13021
 
13022
  # @ squirrly-seo
13023
+ #: view/SeoSettings/Robots.php:36
13024
  #, fuzzy
13025
  #| msgid "Keywords:"
13026
  msgid "Activate Robots"
13027
  msgstr "Schlüsselwörter:"
13028
 
13029
+ #: view/SeoSettings/Robots.php:57
13030
  msgid "Edit the Robots.txt data"
13031
  msgstr ""
13032
 
13033
+ #: view/SeoSettings/Robots.php:58
13034
  msgid ""
13035
  "Does not physically create the robots.txt file. The best option for "
13036
  "Multisites."
13037
  msgstr ""
13038
 
13039
+ #: view/SeoSettings/Robots.php:71
13040
+ msgid ""
13041
+ "Edit the Robots.txt only if you know what you're doing. Adding wrong rules "
13042
+ "in Robots can lead to SEO ranking errors or block your posts in Google."
13043
+ msgstr ""
13044
+
13045
  # @ squirrly-seo
13046
+ #: view/SeoSettings/Sitemap.php:57
13047
  #, fuzzy
13048
  #| msgid "Blogs"
13049
  msgid "Blogging Frequency"
13050
  msgstr "Blogs"
13051
 
13052
+ #: view/SeoSettings/Sitemap.php:58
13053
  msgid "How often do you write new posts?"
13054
  msgstr ""
13055
 
13056
+ #: view/SeoSettings/Sitemap.php:62
13057
  msgid "every hour"
13058
  msgstr ""
13059
 
13060
+ #: view/SeoSettings/Sitemap.php:63
13061
  msgid "every day"
13062
  msgstr ""
13063
 
13064
+ #: view/SeoSettings/Sitemap.php:64
13065
  msgid "1-3 times per week"
13066
  msgstr ""
13067
 
13068
+ #: view/SeoSettings/Sitemap.php:65
13069
  msgid "1-3 times per month"
13070
  msgstr ""
13071
 
13072
+ #: view/SeoSettings/Sitemap.php:66
13073
  msgid "1-3 times per year"
13074
  msgstr ""
13075
 
13076
+ #: view/SeoSettings/Sitemap.php:78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13077
  msgid "Combine Languages in Sitemap"
13078
  msgstr ""
13079
 
13080
+ #: view/SeoSettings/Sitemap.php:79
13081
  msgid "Add all languages in the same sitemap.xml file"
13082
  msgstr ""
13083
 
13084
+ #: view/SeoSettings/Sitemap.php:80
13085
  msgid ""
13086
  "If not selected, you have to add the language slug for each snippet. e.g. /"
13087
  "en/sitemap.xml"
13088
  msgstr ""
13089
 
13090
+ #: view/SeoSettings/Sitemap.php:89
13091
  msgid "Build Sitemaps for"
13092
  msgstr ""
13093
 
13094
+ #: view/SeoSettings/Sitemap.php:91
13095
  #, php-format
13096
  msgid ""
13097
  "Check the sitemap you want Squirrly to build for your website. Your sitemap "
13098
  "will be %s"
13099
  msgstr ""
13100
 
13101
+ #: view/SeoSettings/Sitemap.php:92
13102
  msgid ""
13103
  "Verify your sitemaps after you activate them to have data. Uncheck them if "
13104
  "they don't have URLs to avoid Google errors."
13105
  msgstr ""
13106
 
13107
+ # @ squirrly-seo
13108
+ #: view/SeoSettings/Sitemap.php:101
13109
+ #, fuzzy
13110
+ #| msgid "Squirrly settings"
13111
  msgid "Home Page"
13112
+ msgstr "Squirrly Einstellungen"
13113
 
13114
+ #: view/SeoSettings/Sitemap.php:102
13115
  msgid "Build the sitemap for the home page."
13116
  msgstr ""
13117
 
13118
+ # @ squirrly-seo
13119
+ #: view/SeoSettings/Sitemap.php:108 view/SeoSettings/Sitemap.php:140
13120
+ #: view/SeoSettings/Sitemap.php:159 view/SeoSettings/Sitemap.php:180
13121
+ #: view/SeoSettings/Sitemap.php:200 view/SeoSettings/Sitemap.php:221
13122
+ #: view/SeoSettings/Sitemap.php:240 view/SeoSettings/Sitemap.php:284
13123
+ #, fuzzy
13124
+ #| msgid "Description:"
13125
+ msgid "Deactivated from SEO Automation."
13126
+ msgstr "Beschreibung:"
13127
+
13128
+ # @ squirrly-seo
13129
  #: view/SeoSettings/Sitemap.php:120
13130
+ #, fuzzy
13131
+ #| msgid "Google %sAnalytics ID%s`:"
13132
  msgid "Google News"
13133
+ msgstr "Google %sAnalytics ID%s`:"
13134
 
13135
  #: view/SeoSettings/Sitemap.php:121
13136
  #, php-format
13147
  msgid "Build the sitemap for your posts."
13148
  msgstr ""
13149
 
13150
+ #: view/SeoSettings/Sitemap.php:152
13151
  msgid "Attachments"
13152
  msgstr ""
13153
 
13154
+ #: view/SeoSettings/Sitemap.php:153
13155
  msgid "Only recommended if you have a photography website."
13156
  msgstr ""
13157
 
13158
+ #: view/SeoSettings/Sitemap.php:173
13159
  msgid "Categories"
13160
  msgstr ""
13161
 
13162
+ #: view/SeoSettings/Sitemap.php:174
13163
  msgid "Build the sitemap for your post categories."
13164
  msgstr ""
13165
 
13166
+ #: view/SeoSettings/Sitemap.php:193
13167
  msgid "Tags"
13168
  msgstr ""
13169
 
13170
+ #: view/SeoSettings/Sitemap.php:194
13171
  msgid "Build the sitemap for your post tags."
13172
  msgstr ""
13173
 
13174
  # @ squirrly-seo
13175
+ #: view/SeoSettings/Sitemap.php:214
13176
  #, fuzzy
13177
  #| msgid "Images"
13178
  msgid "Pages"
13179
  msgstr "Bilder"
13180
 
13181
+ #: view/SeoSettings/Sitemap.php:215
13182
  msgid "Build the sitemap for your pages."
13183
  msgstr ""
13184
 
13185
+ #: view/SeoSettings/Sitemap.php:233
13186
  msgid "Archive"
13187
  msgstr ""
13188
 
13189
+ #: view/SeoSettings/Sitemap.php:234
13190
  msgid "Build the sitemap for your archive links."
13191
  msgstr ""
13192
 
13193
+ #: view/SeoSettings/Sitemap.php:254
13194
  msgid "Custom Taxonomies"
13195
  msgstr ""
13196
 
13197
+ #: view/SeoSettings/Sitemap.php:255
13198
  msgid "Build the sitemap for your custom post type categories and tags."
13199
  msgstr ""
13200
 
13201
+ #: view/SeoSettings/Sitemap.php:264
13202
+ #, fuzzy
13203
+ #| msgid "Optimize for Keyword"
13204
  msgid "Custom Posts"
13205
+ msgstr "Schlüsselwort optimieren"
13206
 
13207
+ #: view/SeoSettings/Sitemap.php:265
13208
  msgid ""
13209
  "Build the sitemap for your custom post types (other than WP posts and pages)."
13210
  msgstr ""
13211
 
13212
+ #: view/SeoSettings/Sitemap.php:277
13213
  msgid "Products"
13214
  msgstr ""
13215
 
13216
+ #: view/SeoSettings/Sitemap.php:278
13217
  msgid "Build the sitemap for your e-commerce products."
13218
  msgstr ""
13219
 
13220
+ #: view/SeoSettings/Sitemap.php:307
13221
  msgid "Include Images in Sitemap"
13222
  msgstr ""
13223
 
13224
+ #: view/SeoSettings/Sitemap.php:308
13225
  msgid ""
13226
  "Add the image tag for each post with feature image to index your images in "
13227
  "Google Image Search."
13228
  msgstr ""
13229
 
13230
+ #: view/SeoSettings/Sitemap.php:318
13231
  msgid "Include Videos in Sitemap"
13232
  msgstr ""
13233
 
13234
+ #: view/SeoSettings/Sitemap.php:319
13235
  msgid "Add the video tag for each post with embed video in it."
13236
  msgstr ""
13237
 
13238
+ #: view/SeoSettings/Sitemap.php:329
13239
+ msgid "Ping New Posts to Search Engines"
13240
  msgstr ""
13241
 
13242
+ #: view/SeoSettings/Sitemap.php:330
13243
+ msgid "Ping your sitemap to Search Engines when a new post is published."
13244
  msgstr ""
13245
 
13246
+ #: view/SeoSettings/Sitemap.php:341
13247
+ msgid "Sitemap Pagination"
13248
  msgstr ""
13249
 
13250
+ #: view/SeoSettings/Sitemap.php:342
13251
+ msgid "Split the sitemap records in pages to prevent slow sitemap loading."
 
 
 
 
13252
  msgstr ""
13253
 
13254
+ #: view/SeoSettings/Social.php:49
13255
  msgid ""
13256
  "Add the Social Open Graph protocol so that your Facebook shares look good."
13257
  msgstr ""
13258
 
13259
+ #: view/SeoSettings/Social.php:50
13260
  #, php-format
13261
  msgid ""
13262
  "You can always update an URL on Facebook if you change its Social Media "
13264
  msgstr ""
13265
 
13266
  # @ squirrly-seo
13267
+ #: view/SeoSettings/Social.php:59
13268
  #, fuzzy
13269
  #| msgid "Description:"
13270
  msgid "Facebook Share Language"
13271
  msgstr "Beschreibung:"
13272
 
13273
+ #: view/SeoSettings/Social.php:60
13274
  msgid ""
13275
  "Use this so that Facebook can automatically translate the text into the "
13276
  "reader's language"
13277
  msgstr ""
13278
 
13279
+ # @ squirrly-seo
13280
+ #: view/SeoSettings/Social.php:209
13281
+ #, fuzzy
13282
+ #| msgid "Description:"
13283
  msgid "Facebook App ID"
13284
+ msgstr "Beschreibung:"
13285
 
13286
+ #: view/SeoSettings/Social.php:210
13287
  #, php-format
13288
  msgid ""
13289
  "Add the %sFacebook App ID%s to create a connection between your Facebook "
13291
  msgstr ""
13292
 
13293
  # @ squirrly-seo
13294
+ #: view/SeoSettings/Social.php:229 view/SeoSettings/Social.php:241
13295
+ #: view/SeoSettings/Social.php:254
13296
  #, fuzzy
13297
  #| msgid "Description:"
13298
  msgid "Facebook Admin ID"
13299
  msgstr "Beschreibung:"
13300
 
13301
+ #: view/SeoSettings/Social.php:230 view/SeoSettings/Social.php:242
13302
  msgid ""
13303
  "Similar to Facebook App ID, Facebook Admin ID connects your Facebook Page to "
13304
  "your Website."
13305
  msgstr ""
13306
 
13307
+ # @ squirrly-seo
13308
+ #: view/SeoSettings/Social.php:261
13309
+ #, fuzzy
13310
+ #| msgid "Description:"
13311
  msgid "Add multiple Facebook Admin IDs"
13312
+ msgstr "Beschreibung:"
13313
 
13314
+ #: view/SeoSettings/Social.php:272
13315
  msgid ""
13316
  "Add the Twitter Card in your tweets so that your Twitter shares look good."
13317
  msgstr ""
13318
 
13319
+ #: view/SeoSettings/Social.php:273
13320
  #, php-format
13321
  msgid ""
13322
  "Make sure you validate the twitter card with your Twitter account. Visit "
13323
  "%sTwitter Card Validator%s"
13324
  msgstr ""
13325
 
13326
+ # @ squirrly-seo
13327
+ #: view/SeoSettings/Social.php:283
13328
+ #, fuzzy
13329
+ #| msgid "Images"
13330
  msgid "Share Large Images"
13331
+ msgstr "Bilder"
13332
 
13333
+ #: view/SeoSettings/Social.php:284
13334
  msgid ""
13335
  "Activate this option only if you upload images with sizes between 500px and "
13336
  "4096px width in Twitter Card."
13337
  msgstr ""
13338
 
13339
+ #: view/SeoSettings/Social.php:285
13340
  #, php-format
13341
  msgid ""
13342
  "This option will show the twitter card image as a shared image and not as a "
13343
  "summary. Visit %sSummary Card with Large Image%s"
13344
  msgstr ""
13345
 
13346
+ # @ squirrly-seo
13347
+ #: view/SeoSettings/Social.php:293
13348
+ #, fuzzy
13349
+ #| msgid "Save settings"
13350
  msgid "Social Media Accounts"
13351
+ msgstr "Einstellungen speichern"
13352
 
13353
+ #: view/SeoSettings/Social.php:295
13354
  msgid ""
13355
  "Add your Social Media account for JSON-LD Structured data, Open Graph, and "
13356
  "Twitter Card."
13357
  msgstr ""
13358
 
13359
+ # @ squirrly-seo
13360
+ #: view/SeoSettings/Social.php:301
13361
+ #, fuzzy
13362
+ #| msgid "Twitter"
13363
  msgid "Twitter Profile URL"
13364
+ msgstr "Twitter"
13365
 
13366
+ #: view/SeoSettings/Social.php:303
13367
  msgid "Required for Twitter Card Validator"
13368
  msgstr ""
13369
 
13370
  # @ squirrly-seo
13371
+ #: view/SeoSettings/Social.php:312
13372
  #, fuzzy
13373
  #| msgid "Description:"
13374
  msgid "Facebook Profile or Page URL"
13375
  msgstr "Beschreibung:"
13376
 
13377
+ #: view/SeoSettings/Social.php:323
13378
  msgid "Linkedin Profile URL"
13379
  msgstr ""
13380
 
13381
+ #: view/SeoSettings/Social.php:333
13382
  msgid "Pinterest Profile URL"
13383
  msgstr ""
13384
 
13385
+ #: view/SeoSettings/Social.php:343
13386
  msgid "Instagram Profile URL"
13387
  msgstr ""
13388
 
13389
+ #: view/SeoSettings/Social.php:353
13390
  msgid "Youtube Channel URL"
13391
  msgstr ""
13392
 
13393
  # @ squirrly-seo
13394
+ #: view/SeoSettings/Tracking.php:57
13395
  #, fuzzy
13396
  #| msgid "Google %sAnalytics ID%s`:"
13397
  msgid "Google Analytics ID"
13398
  msgstr "Google %sAnalytics ID%s`:"
13399
 
13400
+ #: view/SeoSettings/Tracking.php:58
13401
  #, php-format
13402
  msgid ""
13403
  "Squirrly adds the Google Tracking script for your Analytics ID. %sGet the "
13404
  "Analytics ID%s"
13405
  msgstr ""
13406
 
13407
+ #: view/SeoSettings/Tracking.php:76
13408
  msgid "Get GA Code"
13409
  msgstr ""
13410
 
13411
  # @ squirrly-seo
13412
+ #: view/SeoSettings/Tracking.php:85
13413
  #, fuzzy
13414
  #| msgid "The code for Google Analytics is incorrect."
13415
  msgid "Google Tracking Mode"
13416
  msgstr "Der Code für Google Analytics ist falsch."
13417
 
13418
+ #: view/SeoSettings/Tracking.php:86
13419
  #, php-format
13420
  msgid ""
13421
  "Choose gtag.js if you use %sGoogle Tag Manager%s or the %sGoogle Analytics "
13422
  "4%s. Otherwise select analytics.js to track the website traffic."
13423
  msgstr ""
13424
 
13425
+ #: view/SeoSettings/Tracking.php:90
13426
  msgid "analytics.js"
13427
  msgstr ""
13428
 
13429
+ #: view/SeoSettings/Tracking.php:91
13430
  msgid "gtag.js"
13431
  msgstr ""
13432
 
13433
  # @ squirrly-seo
13434
+ #: view/SeoSettings/Tracking.php:105
13435
  #, fuzzy
13436
  #| msgid "Description:"
13437
  msgid "Facebook Pixel"
13438
  msgstr "Beschreibung:"
13439
 
13440
+ #: view/SeoSettings/Tracking.php:106
13441
  #, php-format
13442
  msgid ""
13443
  "Use FB Pixel to track the visitors events and to use Facebook Ads more "
13444
  "efficient. %sLearn More%s"
13445
  msgstr ""
13446
 
13447
+ #: view/SeoSettings/Tracking.php:122
13448
+ msgid "Load the AMP Support on AMP pages"
13449
  msgstr ""
13450
 
13451
+ #: view/SeoSettings/Tracking.php:123
13452
+ #, php-format
13453
  msgid ""
13454
+ "Load the Accelerate Mobile Pages (AMP) support for plugins like %sAMP for WP"
13455
+ "%s or %sAMP%s detected"
13456
  msgstr ""
13457
 
13458
+ #: view/SeoSettings/Tracking.php:133
13459
  msgid "Load Tracking for Logged Users"
13460
  msgstr ""
13461
 
13462
+ #: view/SeoSettings/Tracking.php:134
13463
  msgid "Load the tracking codes for logged users too."
13464
  msgstr ""
13465
 
 
 
 
 
13466
  # @ squirrly-seo
13467
+ #: view/SeoSettings/Webmaster.php:33
13468
  #, fuzzy
13469
  #| msgid "Change the Website Icon"
13470
  msgid "Activate Webmasters"
13471
  msgstr "Ändern Sie das Website-Symbol"
13472
 
 
 
 
 
13473
  # @ squirrly-seo
13474
+ #: view/SeoSettings/Webmaster.php:58
13475
  #, fuzzy, php-format
13476
  #| msgid "Google META verification code for %sWebmaster Tool%s`:"
13477
  msgid ""
13478
+ "Add the Google META verification code to connect to %sGoogle Search Console%s"
 
13479
  msgstr "Google META Bestätigungs-Code für %sWebmaster Tool%s`:"
13480
 
13481
+ #: view/SeoSettings/Webmaster.php:76
13482
  msgid "Get GSC Code"
13483
  msgstr ""
13484
 
13485
+ # @ squirrly-seo
13486
+ #: view/SeoSettings/Webmaster.php:89
13487
+ #, fuzzy
13488
+ #| msgid "Bing META code (for %sWebmaster Tool%s )`:"
13489
+ msgid "Bing Webmaster Tools"
13490
+ msgstr "Bing META Code (für %sWebmaster Tool%s )`:"
13491
+
13492
+ # @ squirrly-seo
13493
+ #: view/SeoSettings/Webmaster.php:90
13494
+ #, fuzzy, php-format
13495
+ #| msgid "Google META verification code for %sWebmaster Tool%s`:"
13496
+ msgid ""
13497
+ "Add the Bing META verification code to connect to %sBing Webmaster Tool%s"
13498
+ msgstr "Google META Bestätigungs-Code für %sWebmaster Tool%s`:"
13499
+
13500
+ # @ squirrly-seo
13501
+ #: view/SeoSettings/Webmaster.php:99
13502
+ #, fuzzy
13503
+ #| msgid "Bing META code (for %sWebmaster Tool%s )`:"
13504
+ msgid "Baidu Webmaster Tools"
13505
+ msgstr "Bing META Code (für %sWebmaster Tool%s )`:"
13506
+
13507
+ # @ squirrly-seo
13508
+ #: view/SeoSettings/Webmaster.php:100
13509
+ #, fuzzy, php-format
13510
+ #| msgid "Google META verification code for %sWebmaster Tool%s`:"
13511
+ msgid ""
13512
+ "Add the Baidu META verification code to connect to %sBaidu Webmaster Tool%s"
13513
+ msgstr "Google META Bestätigungs-Code für %sWebmaster Tool%s`:"
13514
+
13515
+ # @ squirrly-seo
13516
+ #: view/SeoSettings/Webmaster.php:109
13517
+ #, fuzzy
13518
+ #| msgid "Change the Website Icon"
13519
+ msgid "Yandex Webmaster Code"
13520
+ msgstr "Ändern Sie das Website-Symbol"
13521
 
13522
  # @ squirrly-seo
13523
+ #: view/SeoSettings/Webmaster.php:110
13524
  #, fuzzy, php-format
13525
  #| msgid "Google META verification code for %sWebmaster Tool%s`:"
13526
+ msgid ""
13527
+ "Add the Yandex META verification code to connect to %sYandex Webmaster Tool%s"
13528
  msgstr "Google META Bestätigungs-Code für %sWebmaster Tool%s`:"
13529
 
13530
+ #: view/SeoSettings/Webmaster.php:119
13531
  msgid "Alexa META Code"
13532
  msgstr ""
13533
 
13534
+ #: view/SeoSettings/Webmaster.php:120
13535
  #, php-format
13536
  msgid ""
13537
  "Add the Alexa META code to analyze your entire website. Visit the %sAlexa "
13538
  "Marketing Tool%s"
13539
  msgstr ""
13540
 
13541
+ #: view/SeoSettings/Webmaster.php:129
13542
  msgid "Pinterest Website Validator Code"
13543
  msgstr ""
13544
 
13545
+ #: view/SeoSettings/Webmaster.php:130
13546
  #, php-format
13547
  msgid ""
13548
  "Add the Pinterest verification code to connect your website to your "
13549
  "Pinterest account. Visit the %sRich Pins Validator%s"
13550
  msgstr ""
13551
 
13552
+ #: view/SeoSettings/Webmaster.php:139
13553
+ msgid "Norton Safe Web Code"
13554
+ msgstr ""
13555
+
13556
+ #: view/SeoSettings/Webmaster.php:140
13557
+ #, php-format
13558
+ msgid ""
13559
+ "Add the Norton Safe Web verification code or ID to connect your website to "
13560
+ "Norton Safe Web. Visit the %sNorton Ownership Verification Page%s"
13561
+ msgstr ""
13562
+
13563
  # @ squirrly-seo
13564
  #. Plugin Name of the plugin/theme
13565
  #, fuzzy
13566
  #| msgid "Squirrly LIVE SEO assistant"
13567
+ msgid "Squirrly SEO 2021 (Smart Strategy)"
13568
  msgstr "Squirrly LIVE SEO-Assistent"
13569
 
13570
  #. Plugin URI of the plugin/theme
13583
  msgid "https://plugin.squirrly.co"
13584
  msgstr ""
13585
 
13586
+ #, fuzzy
13587
+ #~| msgid "Optimize for Keyword"
13588
+ #~ msgid "Articles optimized so far"
13589
+ #~ msgstr "Schlüsselwort optimieren"
13590
+
13591
+ #, fuzzy
13592
+ #~| msgid "Optimize for Keyword"
13593
+ #~ msgid "Average optimization"
13594
+ #~ msgstr "Schlüsselwort optimieren"
13595
+
13596
+ # @ squirrly-seo
13597
+ #, fuzzy
13598
+ #~| msgid "Squirrly Keyword Research"
13599
+ #~ msgid "Keyword Researches"
13600
+ #~ msgstr "Squirrly Erweiterte Suche!"
13601
+
13602
+ # @ squirrly-seo
13603
+ #, fuzzy
13604
+ #~| msgid "Do a research"
13605
+ #~ msgid "do research"
13606
+ #~ msgstr "Recherchieren"
13607
+
13608
+ # @ squirrly-seo
13609
+ #, fuzzy
13610
+ #~| msgid "+ Add keyword"
13611
+ #~ msgid "add keyword"
13612
+ #~ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
13613
+
13614
+ # @ squirrly-seo
13615
+ #, fuzzy
13616
+ #~| msgid "Images"
13617
+ #~ msgid "SEO Audits"
13618
+ #~ msgstr "Bilder"
13619
+
13620
+ # @ squirrly-seo
13621
+ #, fuzzy, php-format
13622
+ #~| msgid "+ Add keyword"
13623
+ #~ msgid "add %s more keyword(s)"
13624
+ #~ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
13625
+
13626
+ # @ squirrly-seo
13627
+ #, fuzzy
13628
+ #~| msgid "Squirrly settings"
13629
+ #~ msgid "Squirrly Onboarding"
13630
+ #~ msgstr "Squirrly Einstellungen"
13631
+
13632
+ # @ squirrly-seo
13633
+ #, fuzzy
13634
+ #~| msgid "Squirrly.co Login"
13635
+ #~ msgid "Squirrly Account Info"
13636
+ #~ msgstr "Squirrly.co Login"
13637
+
13638
+ # @ squirrly-seo
13639
+ #, fuzzy
13640
+ #~| msgid "Description:"
13641
+ #~ msgid "Activate Facebook Pixel"
13642
+ #~ msgstr "Beschreibung:"
13643
+
13644
+ # @ squirrly-seo
13645
+ #, fuzzy
13646
+ #~| msgid "Connecting ..."
13647
+ #~ msgid "Connection"
13648
+ #~ msgstr "Verbinden ..."
13649
+
13650
+ # @ squirrly-seo
13651
+ #, fuzzy
13652
+ #~| msgid "Squirrly LIVE SEO assistant"
13653
+ #~ msgid "Bulk SEO & Snippets"
13654
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
13655
+
13656
+ #, fuzzy
13657
+ #~| msgid "Optimize for Keyword"
13658
+ #~ msgid "Open Graph Optimization"
13659
+ #~ msgstr "Schlüsselwort optimieren"
13660
+
13661
+ #, fuzzy
13662
+ #~| msgid "Optimize for Keyword"
13663
+ #~ msgid "Twitter Card Optimization"
13664
+ #~ msgstr "Schlüsselwort optimieren"
13665
+
13666
+ #, fuzzy
13667
+ #~| msgid "Optimize for Keyword"
13668
+ #~ msgid "JSON-LD Optimizaition"
13669
+ #~ msgstr "Schlüsselwort optimieren"
13670
+
13671
+ # @ squirrly-seo
13672
+ #, fuzzy
13673
+ #~| msgid "The code for Google Analytics is incorrect."
13674
+ #~ msgid "Google Analytics Tracking"
13675
+ #~ msgstr "Der Code für Google Analytics ist falsch."
13676
+
13677
+ # @ squirrly-seo
13678
+ #, fuzzy
13679
+ #~| msgid "Description:"
13680
+ #~ msgid "Facebook Pixel Tracking"
13681
+ #~ msgstr "Beschreibung:"
13682
+
13683
+ # @ squirrly-seo
13684
+ #, fuzzy
13685
+ #~| msgid "Change the Website Icon"
13686
+ #~ msgid "Favicon Site Icon"
13687
+ #~ msgstr "Ändern Sie das Website-Symbol"
13688
+
13689
+ # @ squirrly-seo
13690
+ #, fuzzy
13691
+ #~| msgid "Blogs"
13692
+ #~ msgid "Blogging Assistant"
13693
+ #~ msgstr "Blogs"
13694
+
13695
+ # @ squirrly-seo
13696
+ #, fuzzy
13697
+ #~| msgid "Profile"
13698
+ #~ msgid "Pro"
13699
+ #~ msgstr "Profil"
13700
+
13701
+ # @ squirrly-seo
13702
+ #, fuzzy
13703
+ #~| msgid "Go to Profile"
13704
+ #~ msgid "Go to feature"
13705
+ #~ msgstr "Zum Profil"
13706
+
13707
+ #, fuzzy, php-format
13708
+ #~| msgid "This email connects you to Squirrly.co"
13709
+ #~ msgid "%sPlease connect to SquirrlyCloud first%s"
13710
+ #~ msgstr "This email connects you to Squirrly.co"
13711
+
13712
+ # @ squirrly-seo
13713
+ #, fuzzy
13714
+ #~| msgid "automatically"
13715
+ #~ msgid "Meta Automation"
13716
+ #~ msgstr "automatisch"
13717
+
13718
+ #, fuzzy
13719
+ #~| msgid "Optimize for Keyword"
13720
+ #~ msgid "First Page Optimization"
13721
+ #~ msgstr "Schlüsselwort optimieren"
13722
+
13723
+ # @ squirrly-seo
13724
+ #, fuzzy
13725
+ #~| msgid "Squirrly LIVE SEO assistant"
13726
+ #~ msgid "Squirrly Snippet"
13727
+ #~ msgstr "Squirrly LIVE SEO-Assistent"
13728
+
13729
+ # @ squirrly-seo
13730
+ #, fuzzy
13731
+ #~| msgid "Google %sAnalytics ID%s`:"
13732
+ #~ msgid "Not recommended if you added your sitemap in Google Search Console."
13733
+ #~ msgstr "Google %sAnalytics ID%s`:"
13734
+
13735
  # @ squirrly-seo
13736
  #, fuzzy
13737
  #~| msgid "Could not send the email..."
14093
  # @ squirrly-seo
14094
  #~ msgid "Facebook META code (for %sInsights%s )`:"
14095
  #~ msgstr "Facebook META Code (für %sInsights%s )`:"
 
 
 
 
languages/squirrly-seo-ro_RO.mo CHANGED
Binary file
languages/squirrly-seo-ro_RO.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO\n"
4
- "POT-Creation-Date: 2020-10-27 16:04+0200\n"
5
- "PO-Revision-Date: 2020-10-27 16:04+0200\n"
6
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
7
  "Language-Team: Squirrly UK <support@squirrly.co>\n"
8
  "Language: ro_RO\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.4.1\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -17,13197 +17,15832 @@ msgstr ""
17
  "%100<=19) ? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #~ msgid "Too many API attempts, please slow down the request."
21
- #~ msgstr "Prea multe încercări de API, rugăm încetiniți solicitarea."
 
22
 
23
- #~ msgid ""
24
- #~ "Squirrly Cloud is down for a bit of maintenance right now. But we'll be "
25
- #~ "back in a minute."
26
- #~ msgstr ""
27
- #~ "Squirrly Cloud este în stare de întreținere în acest moment. Dar vom "
28
- #~ "reveni într-un minut."
29
-
30
- #~ msgid "Articles optimized so far"
31
- #~ msgstr "Articole optimizate până acum"
32
-
33
- #~ msgid "add post"
34
- #~ msgstr "adauga post"
35
-
36
- #~ msgid "Average optimization"
37
- #~ msgstr "Media de optimizare"
38
-
39
- #~ msgid "Keyword Researches"
40
- #~ msgstr "Cuvinte cheie verificate"
41
-
42
- #~ msgid "do research"
43
- #~ msgstr "pornește verificare"
44
-
45
- #~ msgid "Keywords stored in Squirrly Briefcase"
46
- #~ msgstr "Cuvinte cheie salvate în Servieta Squirrly"
47
-
48
- #~ msgid "add keyword"
49
- #~ msgstr "Adaugă cuvânt cheie"
50
-
51
- #~ msgid "Pages ranking in top 100 Google"
52
- #~ msgstr "Pagini care se clasează în top 100 Google"
53
-
54
- #~ msgid "see rankings"
55
- #~ msgstr "Vezi rank-urile"
56
-
57
- #~ msgid "SEO Audits"
58
- #~ msgstr "Audituri SEO"
59
 
60
- #~ msgid "see audits"
61
- #~ msgstr "vezi audituri"
 
62
 
63
- #~ msgid "Keyword:"
64
- #~ msgstr "Cuvant cheie:"
 
65
 
66
- #~ msgid "date"
67
- #~ msgstr "data"
 
 
 
 
 
68
 
69
- #~ msgid "Saved!"
70
- #~ msgstr "Salvat!"
 
 
 
 
71
 
72
- #~ msgid "Read it!"
73
- #~ msgstr "Citeste!"
 
74
 
75
- #~ msgid "Insert it!"
76
- #~ msgstr "Adauga!"
 
77
 
78
- #~ msgid "Reference"
79
- #~ msgstr "Referință"
 
80
 
81
- #~ msgid "Insert as box"
82
- #~ msgstr "Adaugă o casuță"
 
83
 
84
- #~ msgid "Insert Link"
85
- #~ msgstr "Adaugă Link"
 
86
 
87
- #~ msgid "Not relevant?"
88
- #~ msgstr "Nu este relevant?"
 
89
 
90
- #~ msgid "Insert in your article"
91
- #~ msgstr "Adauga paragraf in articol"
 
92
 
93
- #~ msgid ":( An error occurred while processing your request. Please try again"
94
- #~ msgstr ":( A apărut o eroare la procesarea cererii. Încercați din nou"
 
95
 
96
- #~ msgid "No results found!"
97
- #~ msgstr "Nu s-a gasit nimic ..."
 
98
 
 
99
  #, php-format
100
- #~ msgid ""
101
- #~ "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
102
- #~ msgstr ""
103
- #~ "[ ATTRIBUTE: Verificați: %s pentru a vedea condițiile de atribuire a "
104
- #~ "imaginii ]"
105
 
106
- #~ msgid "Has creative commons attributes"
107
- #~ msgstr "Are condiții de atribuire"
 
108
 
109
- #~ msgid "No known copyright restrictions"
110
- #~ msgstr "Nu sunt restricții de copyright cunoscute"
 
111
 
112
- #~ msgid ""
113
- #~ "You haven`t used Squirrly SEO to optimize your article. Do you want to "
114
- #~ "optimize for a keyword before publishing?"
115
- #~ msgstr ""
116
- #~ "Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa îl "
117
- #~ "optimizezi înainte de publicare?"
 
118
 
119
- #~ msgid "Your Subscription has Expired"
120
- #~ msgstr "Abonamentul dvs. a expirat"
 
121
 
122
- #~ msgid "There are no keywords saved in briefcase yet"
123
- #~ msgstr "Încă nu există cuvinte cheie salvate în Servieta Squirrly"
 
124
 
 
125
  #, php-format
126
- #~ msgid "Congratulations! Your article is 100% optimized!"
127
- #~ msgstr "Felicitări! Articolul dumneavoastră este 100% optimizat !"
128
 
 
129
  #, php-format
130
- #~ msgid "appears too many times. Try to remove %s of them"
131
- #~ msgstr "apare de prea multe ori. Șterge %s cuvint(e) cheie"
132
 
 
133
  #, php-format
134
- #~ msgid "write %s more words"
135
- #~ msgstr "mai adaugă %s cuvinte"
136
 
 
137
  #, php-format
138
- #~ msgid "Add the keyword in the %s of your article"
139
- #~ msgstr "Adaugă cuvântul cheie la %s articolului"
140
 
141
- #~ msgid "Click to keep the highlight on"
142
- #~ msgstr "Faceți clic pentru a continua sublinierea"
 
143
 
144
- #~ msgid "introduction"
145
- #~ msgstr "introducere"
 
146
 
 
147
  #, php-format
148
- #~ msgid "Write more words after the %s keyword"
149
- #~ msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
150
 
151
- #~ msgid "or use synonyms"
152
- #~ msgstr "sau foloseste sinonime"
 
153
 
 
154
  #, php-format
155
- #~ msgid "add %s more word(s)"
156
- #~ msgstr "Mai adauga %s cuvinte"
157
 
 
158
  #, php-format
159
- #~ msgid "or remove %s word(s)"
160
- #~ msgstr "sau sterge %s cuvinte"
161
 
 
162
  #, php-format
163
- #~ msgid "add %s more keyword(s)"
164
- #~ msgstr "mai adauga %s cuvint(e) cheie"
165
 
 
166
  #, php-format
167
- #~ msgid "write %s more words to start calculating"
168
- #~ msgstr "Scrie %s cuvinte pentru a se putea verifica"
169
 
170
- #~ msgid "Add to Briefcase"
171
- #~ msgstr "Adăugați în Servieta Squirrly"
 
172
 
173
- #~ msgid "Add Keyword to Briefcase"
174
- #~ msgstr "Adăugați cuvinte cheie în Servieta Squirrly"
 
175
 
176
- #~ msgid "Select"
177
- #~ msgstr "Selectează"
 
178
 
179
- #~ msgid "Auto Draft"
180
- #~ msgstr "Auto Draft"
 
 
181
 
182
- #~ msgid ""
183
- #~ "You’ve already used the Live Assistant to optimize this post when "
184
- #~ "creating it in your Page Builder. Please go back and resume your "
185
- #~ "optimization work there."
186
- #~ msgstr ""
187
- #~ "Ați folosit deja Asistentul Live pentru a optimiza această postare atunci "
188
- #~ "când ați creat-o în Generatorul de pagini. rugăm întoarceți și "
189
- #~ "să vă reluați activitatea de optimizare acolo."
 
190
 
191
- #~ msgid "The code for Google Webmaster Tool is incorrect."
192
- #~ msgstr "Codul google pentru Webmaster Tool este greșit."
 
193
 
194
- #~ msgid "The code for Google Analytics is incorrect."
195
- #~ msgstr "Codul Google Analytics este incorect."
 
196
 
197
- #~ msgid "The code for Facebook is incorrect."
198
- #~ msgstr "Codul Facebook este greșit."
 
199
 
200
- #~ msgid "The code for Pinterest is incorrect."
201
- #~ msgstr "Codul Pinterest este greșit."
 
202
 
203
- #~ msgid "The code for Bing is incorrect."
204
- #~ msgstr "Codul Bing este greșit."
 
205
 
206
- #~ msgid "The code for Alexa is incorrect."
207
- #~ msgstr "Codul Alexa este greșit."
 
208
 
209
- #~ msgid "The code for Facebook Pixel must only contain numbers."
210
- #~ msgstr "Codul Facebook Pixel poate conține doar numere."
 
211
 
212
- #~ msgid "The code for Facebook App must only contain numbers."
213
- #~ msgstr "Codul Facebook App poate conține doar numele."
 
214
 
215
- #~ msgid "Getting started"
216
- #~ msgstr "Setări"
 
217
 
218
- #~ msgid "Documentation"
219
- #~ msgstr "Documentație"
 
220
 
221
- #~ msgid "Leave a review"
222
- #~ msgstr "Lasă o evaluare"
 
223
 
224
- #~ msgid "Format"
225
- #~ msgstr "Format"
 
226
 
227
- #~ msgid "Category"
228
- #~ msgstr "Categorie"
 
229
 
230
- #~ msgid "Tag"
231
- #~ msgstr "Etichetă"
 
232
 
233
- #~ msgid "Shipping Option"
234
- #~ msgstr "Opțiunea de expediere"
 
235
 
236
- #~ msgid "Author at"
237
- #~ msgstr "Autor la"
 
238
 
239
- #~ msgid "Are you looking for"
240
- #~ msgstr "Căutați"
 
241
 
242
- #~ msgid "These are the results for"
243
- #~ msgstr "Nu s-a găsit nimic pentru"
 
244
 
245
- #~ msgid "that you can find on our website."
246
- #~ msgstr "pe care îl puteți găsi pe site-ul nostru."
 
247
 
248
- #~ msgid "Page not found"
249
- #~ msgstr "Pagina nu a fost găsită"
 
250
 
251
- #~ msgid "This page could not be found on our website."
252
- #~ msgstr "Această pagină nu a putut fi găsită pe site-ul nostru."
 
253
 
254
- #~ msgid ""
255
- #~ "For better text comparison you need to install PHP mbstring extension."
256
- #~ msgstr ""
257
- #~ "Pentru o comparație mai bună a textului, trebuie să instalați extensia "
258
- #~ "PHP mbstring."
259
 
260
- #~ msgid "Places a separator between the elements of the post description"
261
- #~ msgstr "Plasează un separator între elementele descrierii postului"
 
262
 
263
- #~ msgid "Adds the title of the post/page/term once it’s published"
264
- #~ msgstr ""
265
- #~ "Adăugă titlul postării / paginii / termenului după ce a fost publicat"
 
 
266
 
267
- #~ msgid ""
268
- #~ "Will display an excerpt from the post/page/term (if not customized, the "
269
- #~ "excerpt will be auto-generated)"
270
- #~ msgstr ""
271
- #~ "Va afișa o descriere scurtă din postare / pagină / termen (dacă nu este "
272
- #~ "personalizat, descrierea scrută va fi generat automat)"
273
 
274
- #~ msgid "Will display an excerpt from the post/page (no auto-generation)"
275
- #~ msgstr ""
276
- #~ "Va afișa o descriere scurtă din postare / pagină (fără generare automată)"
277
 
278
- #~ msgid "Adds the post's keyword to the post description"
279
- #~ msgstr "Adăugă cuvântul cheie al postării la descrierea postării"
 
 
 
 
 
280
 
281
- #~ msgid "Displays the number of the current page (i.e. 1 of 6)"
282
- #~ msgstr "Afișează numărul paginii curente (adică 1 din 6)"
 
 
283
 
284
- #~ msgid "Adds the site's name to the post description"
285
- #~ msgstr "Adăugă numele site-ului la descrierea postării"
 
286
 
287
- #~ msgid "Adds the tagline/description of your site"
288
- #~ msgstr "Adăugă titlul / descrierea site-ului dvs."
 
289
 
290
- #~ msgid "Adds the post category (several categories will be comma-separated)"
291
- #~ msgstr ""
292
- #~ "Adaugă categoria postării (mai multe categorii vor fi separate prin "
293
- #~ "virgulă)"
294
 
295
- #~ msgid "Adds the primary category of the post/page"
296
- #~ msgstr "Adăugă categoria principală a postării / paginii"
 
297
 
298
- #~ msgid "Adds the category description to the post description"
299
- #~ msgstr "Adăuga descrierea categoriei la descrierea postării"
 
 
300
 
301
- #~ msgid "Adds the current tag(s) (several tags will be comma-separated)"
302
- #~ msgstr ""
303
- #~ "Adăugă eticheta actuală (mai multe etichete vor fi separate prin virgulă)"
304
 
305
- #~ msgid "Adds the tag description"
306
- #~ msgstr "Adăuga descrierea etichetei"
 
307
 
308
- #~ msgid "Adds the term name"
309
- #~ msgstr "Adăugă numele termenului"
 
 
310
 
311
- #~ msgid "Adds the term description"
312
- #~ msgstr "Adăuga descrierea termenului"
 
313
 
314
- #~ msgid "Displays the search phrase (if it appears in the post)"
315
- #~ msgstr "Afișează fraza de căutare (dacă apare în postare)"
 
316
 
317
- #~ msgid "Replaces the publication date of a post/page with the modified one"
318
- #~ msgstr "Înlocuiește data publicării unei postări / pagini cu cea modificată"
 
319
 
320
- #~ msgid "Displays the author's nicename"
321
- #~ msgstr "Afișează numele autorului"
 
322
 
323
- #~ msgid "Adds the author's biographical info to the post description"
324
- #~ msgstr "Adăuga informațiile biografice ale autorului la descrierea postării"
 
325
 
326
- #~ msgid "Displays the current date"
327
- #~ msgstr "Afișează data curentă"
 
328
 
329
- #~ msgid "Displays the date of the post/page once it's published"
330
- #~ msgstr "Afișează data postării / paginii odată ce a fost publicată"
 
331
 
332
- #~ msgid "Adds the current day"
333
- #~ msgstr "Adăugă ziua curentă"
 
334
 
335
- #~ msgid "Adds the current month"
336
- #~ msgstr "Adăuga luna curentă"
 
337
 
338
- #~ msgid "Adds the current year"
339
- #~ msgstr "Adăugă anul curent"
 
340
 
341
- #~ msgid "Adds the title of a page's parent page"
342
- #~ msgstr "Adăugă titlul paginii părinte a unei pagini"
 
343
 
344
- #~ msgid "Adds the product name from Woocommerce for the current product"
345
- #~ msgstr "Adăugă numele produsului de la Woocommerce pentru produsul curent"
 
346
 
347
- #~ msgid "Adds the product price from Woocommerce for the current product"
348
- #~ msgstr "Adăuga prețul produsului de la Woocommerce pentru produsul curent"
 
349
 
350
- #~ msgid "Adds the product sale price from Woocommerce for the current product"
351
- #~ msgstr ""
352
- #~ "Adăuga prețul de vânzare al produsului de la Woocommerce pentru produsul "
353
- #~ "curent"
354
 
355
- #~ msgid ""
356
- #~ "Adds the product price currency from Woocommerce for the current product"
357
- #~ msgstr ""
358
- #~ "Adăuga moneda prețului produsului de la Woocommerce pentru produsul curent"
359
 
360
- #~ msgid "Invalid Token. Please try again"
361
- #~ msgstr "Simbol Invalid. rugăm încercați din nou"
 
 
 
362
 
363
- #~ msgid "Connection expired. Please try again"
364
- #~ msgstr "Conexiunea a expirat. Vă rugăm să încercați din nou"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
365
 
366
- #~ msgid "Author not found"
367
- #~ msgstr "Autorul nu a fost găsit"
 
368
 
369
- #~ msgid "Connection expired. Please try again."
370
- #~ msgstr "Conexiunea a expirat. rugăm încercați din nou."
 
371
 
372
- #~ msgid "Wrong Params"
373
- #~ msgstr "Parametrii greșiți"
 
374
 
375
- #~ msgid "No keyword found."
376
- #~ msgstr "Nu a fost găsit niciun cuvânt cheie."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
 
378
- #~ msgid "Saved"
379
- #~ msgstr "Salvat"
 
 
380
 
381
- #~ msgid "You do not have permission to perform this action"
382
- #~ msgstr "Nu aveți permisiunea de a efectua această acțiune"
 
383
 
384
- #~ msgid "Error: Could not save the data."
385
- #~ msgstr "Nu s-a putut salva data."
 
386
 
387
- #~ msgid "The audit was not found. Please load another audit."
388
- #~ msgstr "Auditul nu a fost găsit. rugăm încărcați un alt audit."
 
389
 
390
- #~ msgid "Could not load the Audit Page."
391
- #~ msgstr "Nu s-a putut încărca pagina de audit."
 
 
 
392
 
393
- #~ msgid ""
394
- #~ "Audit page is added. The audit may take a while so please be patient."
395
- #~ msgstr ""
396
- #~ "S-a adăugat pagina de audit. Auditul poate dura câteva minute, vă rugăm "
397
- #~ "să aveți răbdare."
398
 
399
- #~ msgid "You reached the maximum number of audit pages for your account."
400
- #~ msgstr "Ați atins numărul maxim de pagini de audit pentru contul dvs."
 
401
 
402
- #~ msgid "Error! Could not add the audit page."
403
- #~ msgstr "Eroare! Nu se poate adăuga pagina de audit."
 
 
 
 
 
 
404
 
405
- #~ msgid "Error! Could not find the audit page in your website."
406
- #~ msgstr "Eroare! Nu se poate adăuga pagina de audit in website."
 
407
 
408
- #~ msgid ""
409
- #~ "Audit page sent for recheck. It may take a while so please be patient."
410
- #~ msgstr ""
411
- #~ "Pagina de audit a fost trimisă pentru verificare. Poate dura ceva timp, "
412
- #~ " rugăm să aveți răbdare."
413
 
414
- #~ msgid "The audit for all pages can be made once an hour."
415
- #~ msgstr "Auditul pentru toate paginile se poate face o dată pe oră."
 
416
 
417
- #~ msgid "The audit page is deleted."
418
- #~ msgstr "Pagina de audit a fost ștearsă"
 
419
 
420
- #~ msgid "Invalid params!"
421
- #~ msgstr "Parametrii greșiți!"
 
 
 
 
 
 
 
 
422
 
423
- #~ msgid "Not a valid email address."
424
- #~ msgstr "Te rog introdu o adresă email validă."
 
 
 
 
425
 
426
- #~ msgid "Done!"
427
- #~ msgstr "Făcut"
 
428
 
429
- #~ msgid "Fixed!"
430
- #~ msgstr "Rezolvat!"
 
431
 
432
- #~ msgid "Could not fix it. You need to change it manually."
433
- #~ msgstr "Nu s-a putut rezolva. Trebuie să o schimbați manual."
 
434
 
435
- #~ msgid "Saved! Task marked as done."
436
- #~ msgstr "Salvat! Sarcina marcată ca terminată."
 
437
 
438
- #~ msgid "Focus Page does not exist or was deleted from your website."
439
- #~ msgstr "Acest Focus Page nu există sau a fost șters de pe site-ul dvs. web."
 
440
 
441
- #~ msgid ""
442
- #~ "Focus page is added. The audit may take a while so please be patient."
443
- #~ msgstr ""
444
- #~ "Se adaugă Focus Page. Auditul poate dura ceva timp, vă rugăm să aveți "
445
- #~ "răbdare."
446
 
447
- #~ msgid "You reached the maximum number of focus pages for all your websites."
448
- #~ msgstr ""
449
- #~ "Ați atins numărul maxim de Focus Pages pentru toate site-urile dvs. web."
450
 
451
- #~ msgid "Error! Could not add the focus page."
452
- #~ msgstr "Eroare! Nu se poate adăuga acest Focus Page."
 
 
453
 
454
- #~ msgid "Error! This focus page is not public."
455
- #~ msgstr "Eroare! Acest Focus Page nu este publică."
 
456
 
457
- #~ msgid "Error! Could not find the focus page in your website."
458
- #~ msgstr "Eroare! Nu s-a putut găsi acest Focus Page pe site-ul dvs. web."
 
459
 
460
- #~ msgid ""
461
- #~ "Focus page sent for recheck. It may take a while so please be patient."
462
- #~ msgstr ""
463
- #~ "Focus Page a fost trimis pentru verificare. Poate dura ceva timp, vă "
464
- #~ "rugăm să aveți răbdare."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO\n"
4
+ "POT-Creation-Date: 2021-03-22 08:13+0200\n"
5
+ "PO-Revision-Date: 2021-03-22 09:03+0200\n"
6
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
7
  "Language-Team: Squirrly UK <support@squirrly.co>\n"
8
  "Language: ro_RO\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.4.2\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "%100<=19) ? 1 : 2);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: classes/RemoteController.php:279
21
+ msgid "Too many API attempts, please slow down the request."
22
+ msgstr "Prea multe încercări de API, vă rugăm să încetiniți solicitarea."
23
 
24
+ #: classes/RemoteController.php:283
25
+ msgid ""
26
+ "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
27
+ "in a minute."
28
+ msgstr ""
29
+ "Squirrly Cloud este în stare de întreținere în acest moment. Dar vom reveni "
30
+ "într-un minut."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
+ #: classes/RemoteController.php:1323
33
+ msgid "Keyword:"
34
+ msgstr "Cuvant cheie:"
35
 
36
+ #: classes/RemoteController.php:1324
37
+ msgid "date"
38
+ msgstr "data"
39
 
40
+ #: classes/RemoteController.php:1325 view/Frontend/Assistant.php:35
41
+ msgid ""
42
+ "To load Squirrly Live Assistant and optimize this page, click to connect to "
43
+ "Squirrly Data Cloud."
44
+ msgstr ""
45
+ "Pentru a încărca Squirrly Live Assistant și a optimiza această pagină, "
46
+ "faceți clic pentru a vă conecta la Squirrly Data Cloud."
47
 
48
+ #: classes/RemoteController.php:1326 controllers/CheckSeo.php:329
49
+ #: controllers/Patterns.php:21 controllers/Research.php:295
50
+ #: controllers/Research.php:326 controllers/Research.php:380
51
+ #: controllers/Research.php:690 view/Blocks/Snippet.php:1227
52
+ msgid "Saved!"
53
+ msgstr "Salvat!"
54
 
55
+ #: classes/RemoteController.php:1327
56
+ msgid "Read it!"
57
+ msgstr "Citeste!"
58
 
59
+ #: classes/RemoteController.php:1328
60
+ msgid "Insert it!"
61
+ msgstr "Adauga!"
62
 
63
+ #: classes/RemoteController.php:1329
64
+ msgid "Reference"
65
+ msgstr "Referință"
66
 
67
+ #: classes/RemoteController.php:1330
68
+ msgid "Insert as box"
69
+ msgstr "Adaugă o casuță"
70
 
71
+ #: classes/RemoteController.php:1331
72
+ msgid "Insert Link"
73
+ msgstr "Adaugă Link"
74
 
75
+ #: classes/RemoteController.php:1332
76
+ msgid "Not relevant?"
77
+ msgstr "Nu este relevant?"
78
 
79
+ #: classes/RemoteController.php:1333
80
+ msgid "Insert in your article"
81
+ msgstr "Adauga paragraf in articol"
82
 
83
+ #: classes/RemoteController.php:1334
84
+ msgid ":( An error occurred while processing your request. Please try again"
85
+ msgstr ":( A apărut o eroare la procesarea cererii. Încercați din nou"
86
 
87
+ #: classes/RemoteController.php:1335
88
+ msgid "No results found!"
89
+ msgstr "Nu s-a gasit nimic!"
90
 
91
+ #: classes/RemoteController.php:1336
92
  #, php-format
93
+ msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
94
+ msgstr ""
95
+ "[ ATTRIBUTE: Verificați: %s pentru a vedea condițiile de atribuire a "
96
+ "imaginii ]"
 
97
 
98
+ #: classes/RemoteController.php:1337
99
+ msgid "Has creative commons attributes"
100
+ msgstr "Are condiții de atribuire"
101
 
102
+ #: classes/RemoteController.php:1338
103
+ msgid "No known copyright restrictions"
104
+ msgstr "Nu sunt restricții de copyright cunoscute"
105
 
106
+ #: classes/RemoteController.php:1339
107
+ msgid ""
108
+ "You haven`t used Squirrly SEO to optimize your article. Do you want to "
109
+ "optimize for a keyword before publishing?"
110
+ msgstr ""
111
+ "Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa îl "
112
+ "optimizezi înainte de publicare?"
113
 
114
+ #: classes/RemoteController.php:1340
115
+ msgid "Your Subscription has Expired"
116
+ msgstr "Abonamentul dvs. a expirat"
117
 
118
+ #: classes/RemoteController.php:1341
119
+ msgid "There are no keywords saved in briefcase yet"
120
+ msgstr "Încă nu există cuvinte cheie salvate în Servieta Squirrly"
121
 
122
+ #: classes/RemoteController.php:1342
123
  #, php-format
124
+ msgid "Congratulations! Your article is 100% optimized!"
125
+ msgstr "Felicitări! Articolul dumneavoastră este 100% optimizat !"
126
 
127
+ #: classes/RemoteController.php:1343
128
  #, php-format
129
+ msgid "appears too many times. Try to remove %s of them"
130
+ msgstr "apare de prea multe ori. Șterge %s cuvint(e) cheie"
131
 
132
+ #: classes/RemoteController.php:1344
133
  #, php-format
134
+ msgid "write %s more words"
135
+ msgstr "mai adaugă %s cuvinte"
136
 
137
+ #: classes/RemoteController.php:1345
138
  #, php-format
139
+ msgid "Add the keyword in the %s of your article"
140
+ msgstr "Adaugă cuvântul cheie la %s articolului"
141
 
142
+ #: classes/RemoteController.php:1346
143
+ msgid "Click to keep the highlight on"
144
+ msgstr "Faceți clic pentru a continua sublinierea"
145
 
146
+ #: classes/RemoteController.php:1347
147
+ msgid "introduction"
148
+ msgstr "introducere"
149
 
150
+ #: classes/RemoteController.php:1348
151
  #, php-format
152
+ msgid "Write more words after the %s keyword"
153
+ msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
154
 
155
+ #: classes/RemoteController.php:1349
156
+ msgid "or use synonyms"
157
+ msgstr "sau foloseste sinonime"
158
 
159
+ #: classes/RemoteController.php:1350
160
  #, php-format
161
+ msgid "add %s more word(s)"
162
+ msgstr "mai adauga %s cuvinte"
163
 
164
+ #: classes/RemoteController.php:1351
165
  #, php-format
166
+ msgid "or remove %s word(s)"
167
+ msgstr "sau sterge %s cuvinte"
168
 
169
+ #: classes/RemoteController.php:1352
170
  #, php-format
171
+ msgid "add the selected keyword %s more time(s) "
172
+ msgstr "adaugă cuvântul cheie selectat %s mai multe ori(e)"
173
 
174
+ #: classes/RemoteController.php:1353
175
  #, php-format
176
+ msgid "write %s more words to start calculating"
177
+ msgstr "scrie %s cuvinte pentru a se putea verifica"
178
 
179
+ #: classes/RemoteController.php:1354 view/Research/Research.php:49
180
+ msgid "Add to Briefcase"
181
+ msgstr "Adăugați în Servieta Squirrly"
182
 
183
+ #: classes/RemoteController.php:1355
184
+ msgid "Add Keyword to Briefcase"
185
+ msgstr "Adăugați cuvinte cheie în Servieta Squirrly"
186
 
187
+ #: classes/RemoteController.php:1356
188
+ msgid "Select"
189
+ msgstr "Selectează"
190
 
191
+ #: classes/RemoteController.php:1357 view/Blocks/Snippet.php:133
192
+ #: view/Blocks/Snippet.php:594 view/Blocks/Snippet.php:862
193
+ msgid "Auto Draft"
194
+ msgstr "Auto Draft"
195
 
196
+ #: classes/RemoteController.php:1358
197
+ msgid ""
198
+ "You’ve already used the Live Assistant to optimize this post when creating "
199
+ "it in your Page Builder. Please go back and resume your optimization work "
200
+ "there."
201
+ msgstr ""
202
+ "Ați folosit deja Asistentul Live pentru a optimiza această postare atunci "
203
+ "când ați creat-o în Generatorul de pagini. Vă rugăm să vă întoarceți și "
204
+ "vă reluați activitatea de optimizare acolo."
205
 
206
+ #: classes/helpers/Sanitize.php:196
207
+ msgid "The code for Google Webmaster Tool is incorrect."
208
+ msgstr "Codul google pentru Webmaster Tool este greșit."
209
 
210
+ #: classes/helpers/Sanitize.php:223
211
+ msgid "The code for Google Analytics is incorrect."
212
+ msgstr "Codul Google Analytics este incorect."
213
 
214
+ #: classes/helpers/Sanitize.php:260
215
+ msgid "The code for Facebook is incorrect."
216
+ msgstr "Codul Facebook este greșit."
217
 
218
+ #: classes/helpers/Sanitize.php:286
219
+ msgid "The code for Pinterest is incorrect."
220
+ msgstr "Codul Pinterest este greșit."
221
 
222
+ #: classes/helpers/Sanitize.php:311
223
+ msgid "The code for Bing is incorrect."
224
+ msgstr "Codul Bing este greșit."
225
 
226
+ #: classes/helpers/Sanitize.php:336
227
+ msgid "The code for Baidu is incorrect."
228
+ msgstr "Codul Baidu este greșit."
229
 
230
+ #: classes/helpers/Sanitize.php:361
231
+ msgid "The code for Yandex is incorrect."
232
+ msgstr "Codul Yandex este greșit."
233
 
234
+ #: classes/helpers/Sanitize.php:386
235
+ msgid "The code for Alexa is incorrect."
236
+ msgstr "Codul Alexa este greșit."
237
 
238
+ #: classes/helpers/Sanitize.php:512
239
+ msgid "The code for Facebook Pixel must only contain numbers."
240
+ msgstr "Codul Facebook Pixel poate conține doar numere."
241
 
242
+ #: classes/helpers/Sanitize.php:527
243
+ msgid "The code for Facebook App must only contain numbers."
244
+ msgstr "Codul Facebook App poate conține doar numele."
245
 
246
+ #: classes/helpers/Tools.php:83
247
+ msgid "Getting started"
248
+ msgstr "Setări"
249
 
250
+ #: classes/helpers/Tools.php:108
251
+ msgid "Documentation"
252
+ msgstr "Documentație"
253
 
254
+ #: classes/helpers/Tools.php:109
255
+ msgid "Leave a review"
256
+ msgstr "Lasă o evaluare"
257
 
258
+ #: classes/helpers/Tools.php:523
259
+ msgid "Format"
260
+ msgstr "Format"
261
 
262
+ #: classes/helpers/Tools.php:542 classes/helpers/Tools.php:580
263
+ msgid "Category"
264
+ msgstr "Categorie"
265
 
266
+ #: classes/helpers/Tools.php:561 classes/helpers/Tools.php:599
267
+ msgid "Tag"
268
+ msgstr "Etichetă"
269
 
270
+ #: classes/helpers/Tools.php:618
271
+ msgid "Shipping Option"
272
+ msgstr "Opțiunea de expediere"
273
 
274
+ #: classes/helpers/Tools.php:637
275
+ msgid "Author at"
276
+ msgstr "Autor la"
277
 
278
+ #: classes/helpers/Tools.php:695
279
+ msgid "Are you looking for"
280
+ msgstr "Căutați"
281
 
282
+ #: classes/helpers/Tools.php:696
283
+ msgid "These are the results for"
284
+ msgstr "Nu s-a găsit nimic pentru"
285
 
286
+ #: classes/helpers/Tools.php:696
287
+ msgid "that you can find on our website."
288
+ msgstr "pe care îl puteți găsi pe site-ul nostru."
289
 
290
+ #: classes/helpers/Tools.php:732
291
+ msgid "Page not found"
292
+ msgstr "Pagina nu a fost găsită"
 
 
293
 
294
+ #: classes/helpers/Tools.php:733
295
+ msgid "This page could not be found on our website."
296
+ msgstr "Această pagină nu a putut fi găsită pe site-ul nostru."
297
 
298
+ #: classes/helpers/Tools.php:1065
299
+ msgid "For better text comparison you need to install PHP mbstring extension."
300
+ msgstr ""
301
+ "Pentru o comparație mai bună a textului, trebuie să instalați extensia PHP "
302
+ "mbstring."
303
 
304
+ #: config/config.php:30
305
+ msgid "Places a separator between the elements of the post description"
306
+ msgstr "Plasează un separator între elementele descrierii postului"
 
 
 
307
 
308
+ #: config/config.php:31
309
+ msgid "Adds the title of the post/page/term once it’s published"
310
+ msgstr "Adăugă titlul postării / paginii / termenului după ce a fost publicat"
311
 
312
+ #: config/config.php:32
313
+ msgid ""
314
+ "Will display an excerpt from the post/page/term (if not customized, the "
315
+ "excerpt will be auto-generated)"
316
+ msgstr ""
317
+ "Va afișa o descriere scurtă din postare / pagină / termen (dacă nu este "
318
+ "personalizat, descrierea scrută va fi generat automat)"
319
 
320
+ #: config/config.php:33
321
+ msgid "Will display an excerpt from the post/page (no auto-generation)"
322
+ msgstr ""
323
+ "Va afișa o descriere scurtă din postare / pagină (fără generare automată)"
324
 
325
+ #: config/config.php:34
326
+ msgid "Adds the post's keyword to the post description"
327
+ msgstr "Adăugă cuvântul cheie al postării la descrierea postării"
328
 
329
+ #: config/config.php:35
330
+ msgid "Displays the number of the current page (i.e. 1 of 6)"
331
+ msgstr "Afișează numărul paginii curente (adică 1 din 6)"
332
 
333
+ #: config/config.php:36
334
+ msgid "Adds the site's name to the post description"
335
+ msgstr "Adăugă numele site-ului la descrierea postării"
 
336
 
337
+ #: config/config.php:37
338
+ msgid "Adds the tagline/description of your site"
339
+ msgstr "Adăugă titlul / descrierea site-ului dvs."
340
 
341
+ #: config/config.php:38
342
+ msgid "Adds the post category (several categories will be comma-separated)"
343
+ msgstr ""
344
+ "Adaugă categoria postării (mai multe categorii vor fi separate prin virgulă)"
345
 
346
+ #: config/config.php:39
347
+ msgid "Adds the primary category of the post/page"
348
+ msgstr "Adăugă categoria principală a postării / paginii"
349
 
350
+ #: config/config.php:40
351
+ msgid "Adds the category description to the post description"
352
+ msgstr "Adăuga descrierea categoriei la descrierea postării"
353
 
354
+ #: config/config.php:41
355
+ msgid "Adds the current tag(s) (several tags will be comma-separated)"
356
+ msgstr ""
357
+ "Adăugă eticheta actuală (mai multe etichete vor fi separate prin virgulă)"
358
 
359
+ #: config/config.php:42
360
+ msgid "Adds the tag description"
361
+ msgstr "Adăuga descrierea etichetei"
362
 
363
+ #: config/config.php:43
364
+ msgid "Adds the term name"
365
+ msgstr "Adăugă numele termenului"
366
 
367
+ #: config/config.php:44
368
+ msgid "Adds the term description"
369
+ msgstr "Adăuga descrierea termenului"
370
 
371
+ #: config/config.php:45
372
+ msgid "Displays the search phrase (if it appears in the post)"
373
+ msgstr "Afișează fraza de căutare (dacă apare în postare)"
374
 
375
+ #: config/config.php:46
376
+ msgid "Replaces the publication date of a post/page with the modified one"
377
+ msgstr "Înlocuiește data publicării unei postări / pagini cu cea modificată"
378
 
379
+ #: config/config.php:47
380
+ msgid "Displays the author's nicename"
381
+ msgstr "Afișează numele autorului"
382
 
383
+ #: config/config.php:48
384
+ msgid "Adds the author's biographical info to the post description"
385
+ msgstr "Adăuga informațiile biografice ale autorului la descrierea postării"
386
 
387
+ #: config/config.php:49
388
+ msgid "Displays the current date"
389
+ msgstr "Afișează data curentă"
390
 
391
+ #: config/config.php:50
392
+ msgid "Displays the date of the post/page once it's published"
393
+ msgstr "Afișează data postării / paginii odată ce a fost publicată"
394
 
395
+ #: config/config.php:51
396
+ msgid "Adds the current day"
397
+ msgstr "Adăugă ziua curentă"
398
 
399
+ #: config/config.php:52
400
+ msgid "Adds the current month"
401
+ msgstr "Adăuga luna curentă"
402
 
403
+ #: config/config.php:53
404
+ msgid "Adds the current year"
405
+ msgstr "Adăugă anul curent"
406
 
407
+ #: config/config.php:54
408
+ msgid "Adds the title of a page's parent page"
409
+ msgstr "Adăugă titlul paginii părinte a unei pagini"
410
 
411
+ #: config/config.php:55
412
+ msgid "Adds the product name from Woocommerce for the current product"
413
+ msgstr "Adăugă numele produsului de la Woocommerce pentru produsul curent"
 
414
 
415
+ #: config/config.php:56
416
+ msgid "Adds the product price from Woocommerce for the current product"
417
+ msgstr "Adăuga prețul produsului de la Woocommerce pentru produsul curent"
 
418
 
419
+ #: config/config.php:57
420
+ msgid "Adds the product sale price from Woocommerce for the current product"
421
+ msgstr ""
422
+ "Adăuga prețul de vânzare al produsului de la Woocommerce pentru produsul "
423
+ "curent"
424
 
425
+ #: config/config.php:58
426
+ msgid ""
427
+ "Adds the product price currency from Woocommerce for the current product"
428
+ msgstr ""
429
+ "Adăuga moneda prețului produsului de la Woocommerce pentru produsul curent"
430
+
431
+ #: controllers/Api.php:69
432
+ msgid "Invalid Token. Please try again"
433
+ msgstr "Simbol Invalid. Vă rugăm să încercați din nou"
434
+
435
+ #: controllers/Api.php:90
436
+ msgid "Connection expired. Please try again"
437
+ msgstr "Conexiunea a expirat. Vă rugăm să încercați din nou"
438
+
439
+ #: controllers/Api.php:103 controllers/Api.php:106 controllers/Api.php:109
440
+ msgid "Author not found"
441
+ msgstr "Autorul nu a fost găsit"
442
+
443
+ #: controllers/Api.php:142
444
+ msgid "Connection expired. Please try again."
445
+ msgstr "Conexiunea a expirat. Vă rugăm să încercați din nou."
446
+
447
+ #: controllers/Api.php:152 controllers/Api.php:174
448
+ msgid "Wrong Params"
449
+ msgstr "Parametrii greșiți"
450
+
451
+ #: controllers/Assistant.php:71 controllers/Research.php:105
452
+ msgid "No keyword found."
453
+ msgstr "Nu a fost găsit niciun cuvânt cheie."
454
+
455
+ #: controllers/Assistant.php:110 controllers/Assistant.php:137
456
+ #: controllers/Audits.php:343 controllers/Ranking.php:148
457
+ #: controllers/SeoSettings.php:146 controllers/SeoSettings.php:192
458
+ #: controllers/SeoSettings.php:209 controllers/SeoSettings.php:233
459
+ #: controllers/SeoSettings.php:272 controllers/SeoSettings.php:301
460
+ #: controllers/SeoSettings.php:332 controllers/SeoSettings.php:655
461
+ #: controllers/SeoSettings.php:766 controllers/SeoSettings.php:801
462
+ msgid "Saved"
463
+ msgstr "Salvat"
464
+
465
+ #: controllers/Assistant.php:116 controllers/BulkSeo.php:73
466
+ #: controllers/Patterns.php:107 controllers/Post.php:286
467
+ #: controllers/Post.php:339 controllers/Post.php:370 controllers/Post.php:405
468
+ #: controllers/PostsList.php:190 controllers/Research.php:186
469
+ #: controllers/Research.php:193 controllers/Research.php:231
470
+ #: controllers/Research.php:253 controllers/Research.php:276
471
+ #: controllers/Research.php:306 controllers/Research.php:333
472
+ #: controllers/Research.php:357 controllers/Research.php:387
473
+ #: controllers/Research.php:408 controllers/Research.php:489
474
+ #: controllers/Research.php:640 controllers/Research.php:664
475
+ #: controllers/Research.php:698 controllers/Research.php:724
476
+ #: controllers/SeoSettings.php:405 controllers/SeoSettings.php:644
477
+ #: controllers/SeoSettings.php:668 controllers/SeoSettings.php:681
478
+ #: controllers/SeoSettings.php:702 controllers/SeoSettings.php:721
479
+ #: controllers/SeoSettings.php:739 controllers/SeoSettings.php:781
480
+ #: controllers/Snippet.php:171
481
+ msgid "You do not have permission to perform this action"
482
+ msgstr "Nu aveți permisiunea de a efectua această acțiune"
483
+
484
+ #: controllers/Assistant.php:142
485
+ msgid "Error: Could not save the data."
486
+ msgstr "Nu s-a putut salva data."
487
+
488
+ #: controllers/Audits.php:141
489
+ msgid "The audit was not found. Please load another audit."
490
+ msgstr "Auditul nu a fost găsit. Vă rugăm să încărcați un alt audit."
491
+
492
+ #: controllers/Audits.php:170
493
+ msgid "Could not load the Audit Page."
494
+ msgstr "Nu s-a putut încărca pagina de audit."
495
+
496
+ #: controllers/Audits.php:284
497
+ msgid "Audit page is added. The audit may take a while so please be patient."
498
+ msgstr ""
499
+ "S-a adăugat pagina de audit. Auditul poate dura câteva minute, vă rugăm să "
500
+ "aveți răbdare."
501
 
502
+ #: controllers/Audits.php:287
503
+ msgid "You reached the maximum number of audit pages for your account."
504
+ msgstr "Ați atins numărul maxim de pagini de audit pentru contul dvs."
505
 
506
+ #: controllers/Audits.php:290
507
+ msgid "Error! Could not add the audit page."
508
+ msgstr "Eroare! Nu se poate adăuga pagina de audit."
509
 
510
+ #: controllers/Audits.php:294
511
+ msgid "Error! Could not find the audit page in your website."
512
+ msgstr "Eroare! Nu se poate adăuga pagina de audit in website."
513
 
514
+ #: controllers/Audits.php:304
515
+ msgid "Audit page sent for recheck. It may take a while so please be patient."
516
+ msgstr ""
517
+ "Pagina de audit a fost trimisă pentru verificare. Poate dura ceva timp, vă "
518
+ "rugăm să aveți răbdare."
519
+
520
+ #: controllers/Audits.php:307 controllers/Audits.php:310
521
+ msgid "The audit for all pages can be made once an hour."
522
+ msgstr "Auditul pentru toate paginile se poate face o dată pe oră."
523
+
524
+ #: controllers/Audits.php:320
525
+ msgid "The audit page is deleted."
526
+ msgstr "Pagina de audit a fost ștearsă."
527
+
528
+ #: controllers/Audits.php:322 controllers/FocusPages.php:417
529
+ #: controllers/Ranking.php:175 controllers/Ranking.php:193
530
+ #: controllers/Ranking.php:211 controllers/Research.php:222
531
+ #: controllers/Research.php:225 controllers/Research.php:248
532
+ #: controllers/Research.php:270 controllers/Research.php:328
533
+ #: controllers/Research.php:352 controllers/Research.php:536
534
+ #: controllers/Research.php:607 controllers/Research.php:634
535
+ #: controllers/Research.php:659 controllers/Research.php:744
536
+ msgid "Invalid params!"
537
+ msgstr "Parametrii greșiți!"
538
+
539
+ #: controllers/Audits.php:345
540
+ msgid "Not a valid email address."
541
+ msgstr "Te rog introdu o adresă email validă."
542
+
543
+ #: controllers/CheckSeo.php:284 controllers/CheckSeo.php:294
544
+ msgid "Done!"
545
+ msgstr "Făcut!"
546
+
547
+ #: controllers/CheckSeo.php:311
548
+ msgid "Fixed!"
549
+ msgstr "Rezolvat!"
550
+
551
+ #: controllers/CheckSeo.php:316
552
+ msgid "Could not fix it. You need to change it manually."
553
+ msgstr "Nu s-a putut rezolva. Trebuie să o schimbați manual."
554
+
555
+ #: controllers/CheckSeo.php:323
556
+ msgid "Saved! Task marked as done."
557
+ msgstr "Salvat! Sarcina marcată ca terminată."
558
+
559
+ #: controllers/FocusPages.php:156
560
+ msgid "Focus Page does not exist or was deleted from your website."
561
+ msgstr "Acest Focus Page nu există sau a fost șters de pe site-ul dvs. web."
562
+
563
+ #: controllers/FocusPages.php:348
564
+ msgid "Focus page is added. The audit may take a while so please be patient."
565
+ msgstr ""
566
+ "Se adaugă Focus Page. Auditul poate dura ceva timp, vă rugăm să aveți "
567
+ "răbdare."
568
 
569
+ #: controllers/FocusPages.php:355
570
+ msgid "You reached the maximum number of focus pages for all your websites."
571
+ msgstr ""
572
+ "Ați atins numărul maxim de Focus Pages pentru toate site-urile dvs. web."
573
 
574
+ #: controllers/FocusPages.php:358
575
+ msgid "Error! Could not add the focus page."
576
+ msgstr "Eroare! Nu se poate adăuga acest Focus Page."
577
 
578
+ #: controllers/FocusPages.php:361
579
+ msgid "Error! This focus page is not public."
580
+ msgstr "Eroare! Acest Focus Page nu este publică."
581
 
582
+ #: controllers/FocusPages.php:365 controllers/FocusPages.php:404
583
+ msgid "Error! Could not find the focus page in your website."
584
+ msgstr "Eroare! Nu s-a putut găsi acest Focus Page pe site-ul dvs. web."
585
 
586
+ #: controllers/FocusPages.php:392
587
+ msgid "Focus page sent for recheck. It may take a while so please be patient."
588
+ msgstr ""
589
+ "Focus Page a fost trimis pentru verificare. Poate dura ceva timp, vă rugăm "
590
+ "să aveți răbdare."
591
 
592
+ #: controllers/FocusPages.php:395 controllers/FocusPages.php:399
593
+ msgid "You've made too many requests, please wait a few minutes."
594
+ msgstr "Ați făcut prea multe cereri, vă rugăm să așteptați câteva minute."
 
 
595
 
596
+ #: controllers/FocusPages.php:415
597
+ msgid "The focus page is deleted"
598
+ msgstr "Pagina de focalizare este ștearsă"
599
 
600
+ #: controllers/Menu.php:86
601
+ #, php-format
602
+ msgid ""
603
+ "An error occurred during activation. If this error persists, please contact "
604
+ "us at: %s"
605
+ msgstr ""
606
+ "A apărut o eroare în timpul activării. Dacă această eroare persistă, vă "
607
+ "rugăm să ne contactați la adresa: %s"
608
 
609
+ #: controllers/Menu.php:123
610
+ msgid "Dashboard"
611
+ msgstr "Dashboard"
612
 
613
+ #. Author of the plugin/theme
614
+ #: controllers/Menu.php:148 controllers/Menu.php:253 controllers/Menu.php:280
615
+ #: view/Blocks/SLASearch.php:8
616
+ msgid "Squirrly SEO"
617
+ msgstr "Squirrly SEO"
618
 
619
+ #: controllers/Menu.php:217
620
+ msgid "SEO Snippet"
621
+ msgstr "Snippet SEO"
622
 
623
+ #: controllers/Menu.php:232 controllers/Snippet.php:142
624
+ msgid "Custom SEO"
625
+ msgstr "SEO personalizat"
626
 
627
+ #: controllers/Overview.php:69
628
+ #, php-format
629
+ msgid ""
630
+ "%s, why don't you start a two weeks journey for better rankings? %sStart "
631
+ "driving your most valuable pages to Better Rankings today with your current "
632
+ "plan.%s"
633
+ msgstr ""
634
+ "%s, de ce nu începi o călătorie de două săptămâni pentru o clasare mai bună? "
635
+ "%sÎncepeți să conduceți cele mai valoroase pagini ale dvs. către un "
636
+ "clasament mai bun astăzi cu planul dvs. actual.%s"
637
 
638
+ #: controllers/Overview.php:92
639
+ #, php-format
640
+ msgid ""
641
+ "Detected %s: We encourage you to %sImport the Settings and SEO%s from %s and "
642
+ "deactivate %s to increase the page loading speed for better Google ranking."
643
+ msgstr ""
644
 
645
+ #: controllers/Patterns.php:22
646
+ msgid "Saved! This is how the preview looks like"
647
+ msgstr "Salvat! Așa arată previzualizarea"
648
 
649
+ #: controllers/Post.php:333
650
+ msgid "Could not add the demo post."
651
+ msgstr "Nu s-a putut trimite postul de demo."
652
 
653
+ #: controllers/Post.php:394 controllers/Post.php:419
654
+ msgid "Can't get the post URL"
655
+ msgstr "Nu pot primi URL-ul postului"
656
 
657
+ #: controllers/Post.php:424
658
+ msgid "Invalid request"
659
+ msgstr "Solicitare incorectă"
660
 
661
+ #: controllers/PostsList.php:72 controllers/PostsList.php:123
662
+ msgid "SQ Snippet"
663
+ msgstr "Snipet Squirrly"
664
 
665
+ #: controllers/PostsList.php:73 models/PostsList.php:21
666
+ msgid "Optimized"
667
+ msgstr "Optimizat"
 
 
668
 
669
+ #: controllers/PostsList.php:208
670
+ msgid "Network Error. Please Refresh."
671
+ msgstr "Eroare de rețea. rugăm actualizați."
672
 
673
+ #: controllers/PostsList.php:212
674
+ #, php-format
675
+ msgid "Maintenance. %sWe'll be back in a minute."
676
+ msgstr "Întreținere. %s Ne vom întoarce într-un minut."
677
 
678
+ #: controllers/PostsList.php:243
679
+ msgid "Not Public"
680
+ msgstr "Ciorna"
681
 
682
+ #: controllers/PostsList.php:244
683
+ msgid "Could not process"
684
+ msgstr "Nu s-a putut verifica"
685
 
686
+ #: controllers/PostsList.