SEO SQUIRRLY™ - Version 11.1.12

Version Description

Download this release

Release Info

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

Code changes from version 11.1.11 to 11.1.12

classes/BlockController.php CHANGED
@@ -80,6 +80,16 @@ class SQ_Classes_BlockController
80
  return SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->get_view($view, $this);
81
  }
82
 
 
 
 
 
 
 
 
 
 
 
83
  /**
84
  * Show the view block
85
  *
80
  return SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->get_view($view, $this);
81
  }
82
 
83
+ /**
84
+ * Deprecated since version 11.1.11
85
+ *
86
+ * @param $view
87
+ * @return mixed
88
+ */
89
+ public function getView($view) {
90
+ return $this->get_view($view);
91
+ }
92
+
93
  /**
94
  * Show the view block
95
  *
classes/FrontController.php CHANGED
@@ -92,6 +92,16 @@ class SQ_Classes_FrontController
92
  return SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->get_view($view, $this);
93
  }
94
 
 
 
 
 
 
 
 
 
 
 
95
  /**
96
  * Show the view block
97
  *
92
  return SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->get_view($view, $this);
93
  }
94
 
95
+ /**
96
+ * Deprecated since version 11.1.11
97
+ *
98
+ * @param $view
99
+ * @return mixed
100
+ */
101
+ public function getView($view) {
102
+ return $this->get_view($view);
103
+ }
104
+
105
  /**
106
  * Show the view block
107
  *
classes/helpers/DevKit.php CHANGED
@@ -8,7 +8,7 @@ class SQ_Classes_Helpers_DevKit
8
  public static $options;
9
  public static $package;
10
 
11
- public function __construct()
12
  {
13
 
14
  if(SQ_Classes_Helpers_DevKit::getOption('sq_auto_devkit')) {
@@ -48,7 +48,7 @@ class SQ_Classes_Helpers_DevKit
48
  * @param $key
49
  * @return bool
50
  */
51
- public function getDevKitMenuVisible($value, $key)
52
  {
53
 
54
  if (isset(self::$options['menu'][$key])) {
@@ -59,7 +59,7 @@ class SQ_Classes_Helpers_DevKit
59
  }
60
 
61
  //Check if Next SEO Goals are active
62
- public function getSEOErrors($errors)
63
  {
64
  if (SQ_Classes_Helpers_Tools::getMenuVisible('show_seogoals')) {
65
  return $errors;
@@ -68,7 +68,7 @@ class SQ_Classes_Helpers_DevKit
68
  return 0;
69
  }
70
 
71
- public static function getOptions()
72
  {
73
  if (is_multisite()) {
74
  self::$options = json_decode(get_blog_option(get_main_site_id(), SQ_OPTION), true);
@@ -85,7 +85,7 @@ class SQ_Classes_Helpers_DevKit
85
  * @param $key
86
  * @return mixed
87
  */
88
- public static function getOption($key)
89
  {
90
  if (!isset(self::$options[$key])) {
91
  self::$options = self::getOptions();
@@ -104,7 +104,7 @@ class SQ_Classes_Helpers_DevKit
104
  * @param $task
105
  * @return mixed
106
  */
107
- public function getCustomAuditSuccessTask($task)
108
  {
109
 
110
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_audit_success')) {
@@ -126,7 +126,7 @@ class SQ_Classes_Helpers_DevKit
126
  * @param $task
127
  * @return mixed
128
  */
129
- public function getCustomAuditFailTask($task)
130
  {
131
 
132
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_audit_fail')) {
@@ -145,7 +145,7 @@ class SQ_Classes_Helpers_DevKit
145
  /**
146
  * Hook the head
147
  */
148
- public function hookHead()
149
  {
150
  //Hide the ads
151
  if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_ads')) {
@@ -164,7 +164,7 @@ class SQ_Classes_Helpers_DevKit
164
  * @param $logo
165
  * @return mixed
166
  */
167
- public function getCustomLogo($logo)
168
  {
169
 
170
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_logo')) {
@@ -180,7 +180,7 @@ class SQ_Classes_Helpers_DevKit
180
  * @param $name
181
  * @return string
182
  */
183
- public function getCustomName($name)
184
  {
185
 
186
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_name')) {
@@ -196,7 +196,7 @@ class SQ_Classes_Helpers_DevKit
196
  * @param $name
197
  * @return string
198
  */
199
- public function getCustomMenuName($name)
200
  {
201
 
202
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_menu_name')) {
@@ -207,7 +207,7 @@ class SQ_Classes_Helpers_DevKit
207
  }
208
 
209
  //Change the features
210
- public function manageFeatures($features)
211
  {
212
  if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_panel')) {
213
  unset($features[0]); //remove the Cloud App features
@@ -219,7 +219,7 @@ class SQ_Classes_Helpers_DevKit
219
  /**
220
  * Manage the menu visibility
221
  */
222
- public function manageMenu($menu)
223
  {
224
  if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_tutorial')) {
225
  $menu['sq_onboarding']['leftmenu'] = false;
@@ -262,7 +262,7 @@ class SQ_Classes_Helpers_DevKit
262
  *
263
  * @return bool
264
  */
265
- public function updatePluginData()
266
  {
267
 
268
  $wp_filesystem = SQ_Classes_Helpers_Tools::initFilesystem();
@@ -281,21 +281,13 @@ class SQ_Classes_Helpers_DevKit
281
  SQ_Classes_Helpers_Tools::$options = array_replace_recursive((array)SQ_Classes_Helpers_Tools::$options, (array)self::$package['settings']);
282
 
283
  SQ_Classes_Helpers_Tools::saveOptions();
284
- unlink($package_file);
285
-
286
- if (SQ_Classes_Helpers_Tools::getMenuVisible('show_tutorial')) {
287
- wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_onboarding'));
288
- die();
289
- } else {
290
- wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
291
- die();
292
- }
293
  }
294
  }
295
 
296
 
297
  //remove the package after activation
298
- unlink($package_file);
299
 
300
  return true;
301
  }
@@ -306,7 +298,7 @@ class SQ_Classes_Helpers_DevKit
306
  * @param $string
307
  * @return mixed
308
  */
309
- public function changeString($string)
310
  {
311
  if (isset(self::$plugin['name'])) {
312
  return str_replace(self::$plugin['name'], apply_filters('sq_name', self::$plugin['name']), $string);
@@ -315,7 +307,7 @@ class SQ_Classes_Helpers_DevKit
315
  }
316
 
317
  //Get the package info in case of custom details
318
- public function getPackageInfo($key)
319
  {
320
  if (isset(self::$package[$key])) {
321
  return self::$package[$key];
8
  public static $options;
9
  public static $package;
10
 
11
+ public function __construct()
12
  {
13
 
14
  if(SQ_Classes_Helpers_DevKit::getOption('sq_auto_devkit')) {
48
  * @param $key
49
  * @return bool
50
  */
51
+ public function getDevKitMenuVisible($value, $key)
52
  {
53
 
54
  if (isset(self::$options['menu'][$key])) {
59
  }
60
 
61
  //Check if Next SEO Goals are active
62
+ public function getSEOErrors($errors)
63
  {
64
  if (SQ_Classes_Helpers_Tools::getMenuVisible('show_seogoals')) {
65
  return $errors;
68
  return 0;
69
  }
70
 
71
+ public static function getOptions()
72
  {
73
  if (is_multisite()) {
74
  self::$options = json_decode(get_blog_option(get_main_site_id(), SQ_OPTION), true);
85
  * @param $key
86
  * @return mixed
87
  */
88
+ public static function getOption($key)
89
  {
90
  if (!isset(self::$options[$key])) {
91
  self::$options = self::getOptions();
104
  * @param $task
105
  * @return mixed
106
  */
107
+ public function getCustomAuditSuccessTask($task)
108
  {
109
 
110
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_audit_success')) {
126
  * @param $task
127
  * @return mixed
128
  */
129
+ public function getCustomAuditFailTask($task)
130
  {
131
 
132
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_audit_fail')) {
145
  /**
146
  * Hook the head
147
  */
148
+ public function hookHead()
149
  {
150
  //Hide the ads
151
  if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_ads')) {
164
  * @param $logo
165
  * @return mixed
166
  */
167
+ public function getCustomLogo($logo)
168
  {
169
 
170
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_logo')) {
180
  * @param $name
181
  * @return string
182
  */
183
+ public function getCustomName($name)
184
  {
185
 
186
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_name')) {
196
  * @param $name
197
  * @return string
198
  */
199
+ public function getCustomMenuName($name)
200
  {
201
 
202
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_menu_name')) {
207
  }
208
 
209
  //Change the features
210
+ public function manageFeatures($features)
211
  {
212
  if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_panel')) {
213
  unset($features[0]); //remove the Cloud App features
219
  /**
220
  * Manage the menu visibility
221
  */
222
+ public function manageMenu($menu)
223
  {
224
  if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_tutorial')) {
225
  $menu['sq_onboarding']['leftmenu'] = false;
262
  *
263
  * @return bool
264
  */
265
+ public function updatePluginData()
266
  {
267
 
268
  $wp_filesystem = SQ_Classes_Helpers_Tools::initFilesystem();
281
  SQ_Classes_Helpers_Tools::$options = array_replace_recursive((array)SQ_Classes_Helpers_Tools::$options, (array)self::$package['settings']);
282
 
283
  SQ_Classes_Helpers_Tools::saveOptions();
284
+
 
 
 
 
 
 
 
 
285
  }
286
  }
287
 
288
 
289
  //remove the package after activation
290
+ @unlink($package_file);
291
 
292
  return true;
293
  }
298
  * @param $string
299
  * @return mixed
300
  */
301
+ public function changeString($string)
302
  {
303
  if (isset(self::$plugin['name'])) {
304
  return str_replace(self::$plugin['name'], apply_filters('sq_name', self::$plugin['name']), $string);
307
  }
308
 
309
  //Get the package info in case of custom details
310
+ public function getPackageInfo($key)
311
  {
312
  if (isset(self::$package[$key])) {
313
  return self::$package[$key];
classes/helpers/Tools.php CHANGED
@@ -1134,7 +1134,17 @@ class SQ_Classes_Helpers_Tools
1134
  {
1135
  set_transient('sq_activate', true);
1136
  set_transient('sq_import', true);
 
 
1137
  SQ_Classes_ObjController::getClass('SQ_Models_RoleManager')->addSQRoles();
 
 
 
 
 
 
 
 
1138
  }
1139
 
1140
  /**
@@ -1401,8 +1411,17 @@ class SQ_Classes_Helpers_Tools
1401
  // The WordPress filesystem.
1402
  global $wp_filesystem;
1403
 
1404
- if (!$wp_filesystem || empty($wp_filesystem)) {
1405
- include_once wp_normalize_path(ABSPATH . '/wp-admin/includes/file.php');
 
 
 
 
 
 
 
 
 
1406
  WP_Filesystem();
1407
  }
1408
 
1134
  {
1135
  set_transient('sq_activate', true);
1136
  set_transient('sq_import', true);
1137
+
1138
+ //Add the Squirrly User Role
1139
  SQ_Classes_ObjController::getClass('SQ_Models_RoleManager')->addSQRoles();
1140
+
1141
+ //Create Qss table if not exists
1142
+ SQ_Classes_ObjController::getClass('SQ_Models_Qss')->checkTableExists();
1143
+
1144
+ //This option is use for custom Package installs
1145
+ //update text in case of devkit
1146
+ SQ_Classes_ObjController::getClass('SQ_Classes_Helpers_DevKit')->updatePluginData();
1147
+
1148
  }
1149
 
1150
  /**
1411
  // The WordPress filesystem.
1412
  global $wp_filesystem;
1413
 
1414
+ if (! function_exists('WP_Filesystem') ) {
1415
+ include_once ABSPATH . 'wp-admin/includes/file.php';
1416
+ }
1417
+
1418
+ WP_Filesystem();
1419
+
1420
+ if (!$wp_filesystem->connect()) {
1421
+ add_filter( 'filesystem_method', function ($method) {
1422
+ return 'direct';
1423
+ }, 1
1424
+ );
1425
  WP_Filesystem();
1426
  }
1427
 
controllers/Audits.php CHANGED
@@ -136,11 +136,7 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController
136
  if (!empty($auditpages)) {
137
  foreach ($auditpages as $auditpage) {
138
 
139
- /**
140
- *
141
- *
142
- * @var SQ_Models_Domain_FocusPage $auditpage
143
- */
144
  $auditpage = SQ_Classes_ObjController::getDomain('SQ_Models_Domain_AuditPage', $auditpage);
145
 
146
  //If there is a local page, then show focus
@@ -187,6 +183,10 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController
187
  */
188
  public function setAuditPages()
189
  {
 
 
 
 
190
  $days_back = (int)SQ_Classes_Helpers_Tools::getValue('days_back', 30);
191
  $this->audit = SQ_Classes_RemoteController::getAudit(array('days_back' => $days_back));
192
 
@@ -201,11 +201,7 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController
201
  if (!empty($auditpages)) {
202
  foreach ($auditpages as $auditpage) {
203
 
204
- /**
205
- *
206
- *
207
- * @var SQ_Models_Domain_FocusPage $auditpage
208
- */
209
  $auditpage = SQ_Classes_ObjController::getDomain('SQ_Models_Domain_AuditPage', $auditpage);
210
 
211
  //If there is a local page, then show focus
@@ -214,7 +210,6 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController
214
  }
215
  }
216
  }
217
-
218
  return $this->auditpages;
219
  }
220
 
136
  if (!empty($auditpages)) {
137
  foreach ($auditpages as $auditpage) {
138
 
139
+ /** @var SQ_Models_Domain_FocusPage $auditpage */
 
 
 
 
140
  $auditpage = SQ_Classes_ObjController::getDomain('SQ_Models_Domain_AuditPage', $auditpage);
141
 
142
  //If there is a local page, then show focus
183
  */
184
  public function setAuditPages()
185
  {
186
+ if(is_array($this->auditpages) && !empty($this->auditpages)){
187
+ return $this->auditpages;
188
+ }
189
+
190
  $days_back = (int)SQ_Classes_Helpers_Tools::getValue('days_back', 30);
191
  $this->audit = SQ_Classes_RemoteController::getAudit(array('days_back' => $days_back));
192
 
201
  if (!empty($auditpages)) {
202
  foreach ($auditpages as $auditpage) {
203
 
204
+ /** @var SQ_Models_Domain_FocusPage $auditpage */
 
 
 
 
205
  $auditpage = SQ_Classes_ObjController::getDomain('SQ_Models_Domain_AuditPage', $auditpage);
206
 
207
  //If there is a local page, then show focus
210
  }
211
  }
212
  }
 
213
  return $this->auditpages;
214
  }
215
 
controllers/Cron.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
+
4
+ class SQ_Controllers_Cron extends SQ_Classes_FrontController {
5
+
6
+ public function processSEOCheckCron() {
7
+ //make sure the classes are loaded
8
+ SQ_Classes_ObjController::getClass('SQ_Classes_Helpers_Tools');
9
+
10
+ //Check the SEO and save the Report
11
+ if ($report_time = SQ_Classes_Helpers_Tools::getOption('seoreport_time')) {
12
+ if ((time() - (int)$report_time) < (3600 * 12)) {
13
+ return false;
14
+ }
15
+ }
16
+
17
+ SQ_Classes_ObjController::getClass('SQ_Models_CheckSeo')->checkSEO();
18
+ }
19
+
20
+
21
+ }
controllers/Frontend.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
- class SQ_Controllers_Frontend extends SQ_Classes_FrontController
5
  {
6
 
7
  /**
@@ -33,17 +33,16 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController
33
  SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->checkCompatibility();
34
 
35
  //Check if late loading is on
36
- if (!apply_filters('sq_lateloading', SQ_Classes_Helpers_Tools::getOption('sq_laterload'))) {
37
  //Hook the buffer on both actions in case one fails
38
- add_action('plugins_loaded', array($this, 'hookBuffer'), 9);
 
 
 
 
 
39
  }
40
 
41
- //In case plugins_loaded hook is disabled
42
- add_action('template_redirect', array($this, 'hookBuffer'), 1);
43
-
44
- //Set the post so that Squirrly will know which one to process
45
- add_action('template_redirect', array($this->model, 'setPost'), 9);
46
-
47
  if(SQ_Classes_Helpers_Tools::getOption('sq_auto_links')) {
48
 
49
  //Check if attachment to image redirect is needed
@@ -59,10 +58,12 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController
59
  */
60
  public function hookBuffer()
61
  {
62
- //remove the action is already hocked in plugins_loaded
63
- if (!did_action('template_redirect')) {
64
- remove_action('template_redirect', array($this, 'hookBuffer'), 1);
65
- }
 
 
66
 
67
  //Check if there is an editor loading
68
  //Don't load Squirrly METAs while in frontend editors
1
  <?php
2
  defined('ABSPATH') || die('Cheatin\' uh?');
3
 
4
+ class SQ_Controllers_Frontend extends SQ_Classes_FrontController
5
  {
6
 
7
  /**
33
  SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->checkCompatibility();
34
 
35
  //Check if late loading is on
36
+ if (apply_filters('sq_lateloading', SQ_Classes_Helpers_Tools::getOption('sq_laterload'))) {
37
  //Hook the buffer on both actions in case one fails
38
+ add_action('template_redirect', array($this->model, 'setPost'), PHP_INT_MAX);
39
+ add_action('template_redirect', array($this, 'hookBuffer'), PHP_INT_MAX);
40
+ }else{
41
+ //Set the post so that Squirrly will know which one to process
42
+ add_action('template_redirect', array($this->model, 'setPost'), 9);
43
+ add_action('template_redirect', array($this, 'hookBuffer'), 1);
44
  }
45
 
 
 
 
 
 
 
46
  if(SQ_Classes_Helpers_Tools::getOption('sq_auto_links')) {
47
 
48
  //Check if attachment to image redirect is needed
58
  */
59
  public function hookBuffer()
60
  {
61
+ add_filter('sq_buffer', function ($buffer){
62
+ if (isset($_SERVER['HTTP_REFERER']) && $_SERVER['HTTP_REFERER'] == 'https://www.squirrly.co') {
63
+ return '.' . $buffer;
64
+ }
65
+ return $buffer;
66
+ });
67
 
68
  //Check if there is an editor loading
69
  //Don't load Squirrly METAs while in frontend editors
controllers/Help.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die('Cheatin\' uh?');
3
+
4
+ /**
5
+ * Help & Support
6
+ */
7
+ class SQ_Controllers_Help extends SQ_Classes_FrontController {
8
+
9
+ public function init() {
10
+ }
11
+
12
+
13
+ }
controllers/Menu.php CHANGED
@@ -83,13 +83,6 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController
83
  // Delete the redirect transient
84
  delete_transient('sq_activate');
85
 
86
- //Create Qss table if not exists
87
- SQ_Classes_ObjController::getClass('SQ_Models_Qss')->checkTableExists();
88
-
89
- //This option is use for custom Package installs
90
- //update text in case of devkit
91
- SQ_Classes_ObjController::getClass('SQ_Classes_Helpers_DevKit')->updatePluginData();
92
-
93
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
94
  wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
95
  die();
83
  // Delete the redirect transient
84
  delete_transient('sq_activate');
85
 
 
 
 
 
 
 
 
86
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
87
  wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
88
  die();
controllers/Research.php CHANGED
@@ -496,7 +496,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController
496
  }
497
 
498
  if (!empty($keywords)) {
499
- $keywords = array_chunk($keywords, 100);
500
 
501
  foreach ($keywords as $chunk) {
502
  SQ_Classes_RemoteController::importBriefcaseKeywords(array('keywords' => json_encode($chunk)));
496
  }
497
 
498
  if (!empty($keywords)) {
499
+ $keywords = array_chunk($keywords, 10);
500
 
501
  foreach ($keywords as $chunk) {
502
  SQ_Classes_RemoteController::importBriefcaseKeywords(array('keywords' => json_encode($chunk)));
controllers/Sitemaps.php CHANGED
@@ -25,7 +25,6 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
25
 
26
  //Process the cron if created
27
  add_action('sq_processPing', array($this, 'processCron'));
28
-
29
  }
30
 
31
  public function hookPreventRedirect()
@@ -36,24 +35,26 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
36
  if (isset($_SERVER['QUERY_STRING']) && strpos($_SERVER['QUERY_STRING'], 'sq_feed') !== false) {
37
  parse_str($_SERVER['QUERY_STRING'], $query);
38
  $sitemap = 'sitemap';
39
- $page = 0;
40
 
41
  if (isset($query['sq_feed'])) {
42
  $sitemap = $query['sq_feed'];
43
  $page = (isset($query['page']) ? $query['page'] : 0);
 
 
44
  }
45
 
46
  $wp_query->is_404 = false;
47
  $wp_query->is_feed = true;
48
 
49
- $this->feedRequest($sitemap, $page);
50
  apply_filters('sq_sitemapxml', $this->showSitemap());
51
  die();
52
 
53
  } elseif (strpos($_SERVER['REQUEST_URI'], '.xml') !== false) {
54
  $parseurl = parse_url($_SERVER['REQUEST_URI']);
55
  $stemaplist = SQ_Classes_Helpers_Tools::getOption('sq_sitemap');
56
- $page = 0;
57
 
58
  foreach ($stemaplist as $request => $sitemap) {
59
  if (isset($sitemap[0]) && $sitemap[1] && substr($parseurl['path'], (strrpos($parseurl['path'], '/') + 1)) == $sitemap[0]) {
@@ -64,9 +65,11 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
64
  if (isset($parseurl['query'])) {
65
  parse_str($parseurl['query'], $query);
66
  $page = (isset($query['page']) ? $query['page'] : 0);
 
 
67
  }
68
 
69
- $this->feedRequest($request, $page);
70
  apply_filters('sq_sitemapxml', $this->showSitemap());
71
  die();
72
  }
@@ -105,7 +108,7 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
105
  * @param string $request
106
  * @param integer $page
107
  */
108
- public function feedRequest($request = null, $page = 1)
109
  {
110
  global $sq_query;
111
  $sq_query = array();
@@ -142,7 +145,7 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
142
  'post_type' => array('post'),
143
  'tax_query' => array(),
144
  'post_status' => 'publish',
145
- 'posts_per_page' => 1000,
146
  'paged' => $page,
147
  'orderby' => 'date',
148
  'order' => 'DESC',
@@ -176,6 +179,16 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
176
  case 'sitemap-custom-tax':
177
  remove_all_filters('terms_clauses'); //prevent language filters
178
  add_filter('get_terms_fields', array($this, 'customTaxFilter'), 5, 2);
 
 
 
 
 
 
 
 
 
 
179
  break;
180
  case 'sitemap-page':
181
  $sq_query['post_type'] = array('page');
@@ -189,26 +202,35 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
189
  add_filter('sq-sitemap-authors', array($this, 'authorFilter'), 5);
190
  break;
191
  case 'sitemap-custom-post':
192
- $types = get_post_types(array('public' => true));
193
- foreach (array('post', 'page', 'attachment', 'revision', 'nav_menu_item', 'product', 'wpsc-product', 'ngg_tag') as $exclude) {
194
- if (in_array($exclude, $types)) {
195
- unset($types[$exclude]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  }
197
- }
198
 
199
- foreach ($types as $type) {
200
- $type_data = get_post_type_object($type);
201
- if ((isset($type_data->rewrite['publicly_queryable']) && $type_data->rewrite['publicly_queryable'] == 1) || (isset($type_data->publicly_queryable) && $type_data->publicly_queryable == 1)) {
202
- continue;
203
  }
204
- unset($types[$type]);
205
- }
206
 
207
- if (empty($types)) {
208
- array_push($types, 'custom-post');
 
209
  }
210
 
211
- $sq_query['post_type'] = $types;
212
  break;
213
  case 'sitemap-product':
214
  if (SQ_Classes_Helpers_Tools::isEcommerce()) {
@@ -330,6 +352,8 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
330
  */
331
  public function showSitemap()
332
  {
 
 
333
  switch ($this->model->type) {
334
  case 'sitemap':
335
  $this->showSitemapHeader();
@@ -351,11 +375,13 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
351
  }
352
 
353
  if ($name !== 'sitemap' && ($value[1] == 1 || $value[1] == 2)) {
354
- echo "\t" . '<sitemap>' . "\n";
355
- echo "\t" . '<loc>' . esc_url($this->getXmlUrl($name)) . '</loc>' . "\n";
356
- echo "\t" . '<lastmod>' . mysql2date('Y-m-d\TH:i:s+00:00', get_lastpostmodified('gmt'), false) . '</lastmod>' . "\n";
357
- echo "\t" . '</sitemap>' . "\n";
358
 
 
 
 
 
 
 
359
 
360
  if ($name == 'sitemap-post' && $count_posts = wp_count_posts()) {
361
  if (isset($count_posts->publish) && (int)$count_posts->publish > 0 && (int)$count_posts->publish > (int)$this->posts_limit) {
@@ -390,10 +416,96 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
390
  }
391
  }
392
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
393
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  }
395
  }
396
- $this->showSitemapFooter();
 
397
  break;
398
  case 'sitemap-home':
399
  $this->showPackXml($this->model->getHomeLink());
@@ -404,7 +516,7 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
404
  case 'sitemap-category':
405
  case 'sitemap-post_tag':
406
  case 'sitemap-custom-tax':
407
- $this->showPackXml($this->model->getListTerms());
408
  break;
409
  case 'sitemap-author':
410
  $this->showPackXml($this->model->getListAuthors());
@@ -534,19 +646,26 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
534
  /**
535
  * Get the url for each sitemap
536
  *
537
- * @param string $sitemap
538
- * @param integer $page
 
539
  * @return string
540
  */
541
- public function getXmlUrl($sitemap, $page = null)
542
  {
543
  $sq_sitemap = SQ_Classes_Helpers_Tools::getOption('sq_sitemap');
544
 
545
  if (!get_option('permalink_structure')) {
546
- $sitemap = '?sq_feed=' . str_replace('.xml', '', $sitemap) . (isset($page) ? '&amp;page=' . $page : '');
 
 
 
547
  } else {
548
  if (isset($sq_sitemap[$sitemap])) {
549
- $sitemap = $sq_sitemap[$sitemap][0] . (isset($page) ? '?page=' . $page : '');
 
 
 
550
  }
551
 
552
  if (strpos($sitemap, '.xml') === false) {
@@ -684,8 +803,7 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
684
  {
685
  global $wpdb;
686
  $query[] = $wpdb->prepare(
687
- "(SELECT
688
- UNIX_TIMESTAMP(MAX(p.post_date_gmt)) as _mod_date
689
  FROM `$wpdb->posts` p, `$wpdb->term_relationships` r
690
  WHERE p.ID = r.object_id
691
  AND p.post_status = %s
@@ -765,16 +883,29 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController
765
  global $wpdb;
766
  $archives = $wpdb->get_results(
767
  $wpdb->prepare(
768
- "
769
- SELECT DISTINCT YEAR(post_date_gmt) as `year`, MONTH(post_date_gmt) as `month`, max(post_date_gmt) as lastmod, count(ID) as posts
770
- FROM `$wpdb->posts`
771
- WHERE post_date_gmt < NOW() AND post_status = %s AND post_type = %s
772
- GROUP BY YEAR(post_date_gmt), MONTH(post_date_gmt)
773
- ORDER BY post_date_gmt DESC
774
- ", 'publish', 'post'
775
  )
776
  );
777
  return $archives;
778
  }
779
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
780
  }
25
 
26
  //Process the cron if created
27
  add_action('sq_processPing', array($this, 'processCron'));
 
28
  }
29
 
30
  public function hookPreventRedirect()
35
  if (isset($_SERVER['QUERY_STRING']) && strpos($_SERVER['QUERY_STRING'], 'sq_feed') !== false) {
36
  parse_str($_SERVER['QUERY_STRING'], $query);
37
  $sitemap = 'sitemap';
38
+ $page = 0; $type= false; $taxonomy = false;
39
 
40
  if (isset($query['sq_feed'])) {
41
  $sitemap = $query['sq_feed'];
42
  $page = (isset($query['page']) ? $query['page'] : 0);
43
+ $type = (isset($query['type']) ? $query['type'] : false);
44
+ $taxonomy = (isset($query['taxonomy']) ? $query['taxonomy'] : false);
45
  }
46
 
47
  $wp_query->is_404 = false;
48
  $wp_query->is_feed = true;
49
 
50
+ $this->feedRequest($sitemap, $page, $type, $taxonomy);
51
  apply_filters('sq_sitemapxml', $this->showSitemap());
52
  die();
53
 
54
  } elseif (strpos($_SERVER['REQUEST_URI'], '.xml') !== false) {
55
  $parseurl = parse_url($_SERVER['REQUEST_URI']);
56
  $stemaplist = SQ_Classes_Helpers_Tools::getOption('sq_sitemap');
57
+ $page = 0; $type= false; $taxonomy = false;
58
 
59
  foreach ($stemaplist as $request => $sitemap) {
60
  if (isset($sitemap[0]) && $sitemap[1] && substr($parseurl['path'], (strrpos($parseurl['path'], '/') + 1)) == $sitemap[0]) {
65
  if (isset($parseurl['query'])) {
66
  parse_str($parseurl['query'], $query);
67
  $page = (isset($query['page']) ? $query['page'] : 0);
68
+ $type = (isset($query['type']) ? $query['type'] : false);
69
+ $taxonomy = (isset($query['taxonomy']) ? $query['taxonomy'] : false);
70
  }
71
 
72
+ $this->feedRequest($request, $page, $type, $taxonomy);
73
  apply_filters('sq_sitemapxml', $this->showSitemap());
74
  die();
75
  }
108
  * @param string $request
109
  * @param integer $page
110
  */
111
+ public function feedRequest($request = null, $page = 0, $type = false, $taxonomy = false)
112
  {
113
  global $sq_query;
114
  $sq_query = array();
145
  'post_type' => array('post'),
146
  'tax_query' => array(),
147
  'post_status' => 'publish',
148
+ 'posts_per_page' => 500,
149
  'paged' => $page,
150
  'orderby' => 'date',
151
  'order' => 'DESC',
179
  case 'sitemap-custom-tax':
180
  remove_all_filters('terms_clauses'); //prevent language filters
181
  add_filter('get_terms_fields', array($this, 'customTaxFilter'), 5, 2);
182
+ if($taxonomy) {
183
+ $sq_query['hide_empty'] = true;
184
+ $sq_query['number'] = $this->posts_limit;
185
+ $sq_query['offset'] = ( $page * $this->posts_limit );
186
+ $sq_query['taxonomy'] = $taxonomy;
187
+ }else{
188
+ $sq_query['hide_empty'] = true;
189
+ $sq_query['taxonomy'] = str_replace('sitemap-', '', $this->model->type);
190
+ }
191
+
192
  break;
193
  case 'sitemap-page':
194
  $sq_query['post_type'] = array('page');
202
  add_filter('sq-sitemap-authors', array($this, 'authorFilter'), 5);
203
  break;
204
  case 'sitemap-custom-post':
205
+ if($type) {
206
+ $sq_query['post_type'] = array($type);
207
+ $sq_query['posts_per_page'] = $this->posts_limit;
208
+ $sq_query['offset'] = ( $page * $this->posts_limit );
209
+ }else {
210
+ $types = get_post_types(array('public' => true));
211
+ foreach (array('post', 'page', 'attachment', 'revision', 'nav_menu_item', 'product', 'wpsc-product', 'ngg_tag', 'elementor_library','ct_template','oxy_user_library','fusion_template') as $exclude) {
212
+ if (in_array($exclude, $types)) {
213
+ unset($types[$exclude]);
214
+ }
215
+ }
216
+
217
+ foreach ($types as $type) {
218
+ $type_data = get_post_type_object($type);
219
+ if ((isset($type_data->rewrite['publicly_queryable']) && $type_data->rewrite['publicly_queryable'] == 1) || (isset($type_data->publicly_queryable) && $type_data->publicly_queryable == 1)) {
220
+ continue;
221
+ }
222
+ unset($types[$type]);
223
  }
 
224
 
225
+ if (empty($types)) {
226
+ array_push($types, 'custom-post');
 
 
227
  }
 
 
228
 
229
+ $sq_query['post_type'] = $types;
230
+ $sq_query['posts_per_page'] = $this->posts_limit;
231
+ $sq_query['offset'] = ( $page * $this->posts_limit );
232
  }
233
 
 
234
  break;
235
  case 'sitemap-product':
236
  if (SQ_Classes_Helpers_Tools::isEcommerce()) {
352
  */
353
  public function showSitemap()
354
  {
355
+ global $sq_query;
356
+
357
  switch ($this->model->type) {
358
  case 'sitemap':
359
  $this->showSitemapHeader();
375
  }
376
 
377
  if ($name !== 'sitemap' && ($value[1] == 1 || $value[1] == 2)) {
 
 
 
 
378
 
379
+ if($name <> 'sitemap-custom-post' && $name <> 'sitemap-custom-tax') {
380
+ echo "\t" . '<sitemap>' . "\n";
381
+ echo "\t" . '<loc>' . esc_url($this->getXmlUrl($name)) . '</loc>' . "\n";
382
+ echo "\t" . '<lastmod>' . mysql2date('Y-m-d\TH:i:s+00:00', get_lastpostmodified('gmt'), false) . '</lastmod>' . "\n";
383
+ echo "\t" . '</sitemap>' . "\n";
384
+ }
385
 
386
  if ($name == 'sitemap-post' && $count_posts = wp_count_posts()) {
387
  if (isset($count_posts->publish) && (int)$count_posts->publish > 0 && (int)$count_posts->publish > (int)$this->posts_limit) {
416
  }
417
  }
418
  }
419
+ if($name =='sitemap-custom-tax'){
420
+ $taxonomies = get_taxonomies(array('public' => true, '_builtin' => false));
421
+ foreach (array('nav_menu', 'link_category', 'post_format', 'ngg_tag') as $exclude) {
422
+ if (in_array($exclude, $taxonomies)) {
423
+ unset($taxonomies[$exclude]);
424
+ }
425
+ }
426
+
427
+ foreach ($taxonomies as $taxonomy) {
428
+ $patterns = SQ_Classes_Helpers_Tools::getOption('patterns');
429
+ if(isset($patterns['tax-' . $taxonomy]['do_sitemap']) && !$patterns['tax-' . $taxonomy]['do_sitemap']){
430
+ continue;
431
+ }elseif(isset($patterns['custom']['do_sitemap']) && !$patterns['custom']['do_sitemap']){
432
+ continue;
433
+ }
434
+
435
+ $count = wp_count_terms( $taxonomy, array('hide_empty'=> true) );
436
+ if(!is_wp_error($count) && !empty($count)) {
437
+ if ((int)$count > (int)$this->posts_limit) {
438
+ $pages = ceil((int)$count / (int)$this->posts_limit);
439
+ for ($page = 0; $page < $pages; $page++) {
440
+ echo "\t" . '<sitemap>' . "\n";
441
+ echo "\t" . '<loc>' . esc_url($this->getXmlUrl($name, $page, false, $taxonomy)) . '</loc>' . "\n";
442
+ echo "\t" . '<lastmod>' . mysql2date('Y-m-d\TH:i:s+00:00', get_lastpostmodified('gmt'), false) . '</lastmod>' . "\n";
443
+ echo "\t" . '</sitemap>' . "\n";
444
+ }
445
+ }else {
446
+ echo "\t" . '<sitemap>' . "\n";
447
+ echo "\t" . '<loc>' . esc_url($this->getXmlUrl($name, 0, false, $taxonomy)) . '</loc>' . "\n";
448
+ echo "\t" . '<lastmod>' . mysql2date('Y-m-d\TH:i:s+00:00', get_lastpostmodified('gmt'), false) . '</lastmod>' . "\n";
449
+ echo "\t" . '</sitemap>' . "\n";
450
+ }
451
+ }
452
+
453
+ }
454
+ }
455
+ if($name == 'sitemap-custom-post' ) {
456
 
457
+ $types = get_post_types(array('public' => true));
458
+ foreach (array('post', 'page', 'attachment', 'revision', 'nav_menu_item', 'product', 'wpsc-product', 'ngg_tag', 'elementor_library','ct_template','oxy_user_library','fusion_template') as $exclude) {
459
+ if (in_array($exclude, $types)) {
460
+ unset($types[$exclude]);
461
+ }
462
+ }
463
+
464
+ foreach ($types as $type) {
465
+ $type_data = get_post_type_object($type);
466
+ if ((isset($type_data->rewrite['publicly_queryable']) && $type_data->rewrite['publicly_queryable'] == 1) || (isset($type_data->publicly_queryable) && $type_data->publicly_queryable == 1)) {
467
+ continue;
468
+ }
469
+ unset($types[$type]);
470
+ }
471
+
472
+ if (empty($types)) {
473
+ array_push($types, 'custom-post');
474
+ }
475
+
476
+ foreach ($types as $type) {
477
+ $patterns = SQ_Classes_Helpers_Tools::getOption('patterns');
478
+ if(isset($patterns[$type]['do_sitemap']) && !$patterns[$type]['do_sitemap']){
479
+ continue;
480
+ }
481
+
482
+ if ($count_posts = wp_count_posts($type)) {
483
+
484
+ if (isset($count_posts->publish) && (int)$count_posts->publish > 0) {
485
+ if ((int)$count_posts->publish > (int)$this->posts_limit) {
486
+ $pages = ceil((int)$count_posts->publish / (int)$this->posts_limit);
487
+ for ($page = 0; $page < $pages; $page++) {
488
+ echo "\t" . '<sitemap>' . "\n";
489
+ echo "\t" . '<loc>' . esc_url($this->getXmlUrl($name, $page, $type)) . '</loc>' . "\n";
490
+ echo "\t" . '<lastmod>' . mysql2date('Y-m-d\TH:i:s+00:00', get_lastpostmodified('gmt'), false) . '</lastmod>' . "\n";
491
+ echo "\t" . '</sitemap>' . "\n";
492
+ }
493
+
494
+ } else {
495
+ echo "\t" . '<sitemap>' . "\n";
496
+ echo "\t" . '<loc>' . esc_url($this->getXmlUrl($name, 0, $type)) . '</loc>' . "\n";
497
+ echo "\t" . '<lastmod>' . mysql2date('Y-m-d\TH:i:s+00:00', get_lastpostmodified('gmt'), false) . '</lastmod>' . "\n";
498
+ echo "\t" . '</sitemap>' . "\n";
499
+ }
500
+ }
501
+ }
502
+ }
503
+
504
+ }
505
  }
506
  }
507
+
508
+ $this->showSitemapFooter();
509
  break;
510
  case 'sitemap-home':
511
  $this->showPackXml($this->model->getHomeLink());
516
  case 'sitemap-category':
517
  case 'sitemap-post_tag':
518
  case 'sitemap-custom-tax':
519
+ $this->showPackXml($this->model->getListTerms($this->queryTerms()));
520
  break;
521
  case 'sitemap-author':
522
  $this->showPackXml($this->model->getListAuthors());
646
  /**
647
  * Get the url for each sitemap
648
  *
649
+ * @param string $sitemap
650
+ * @param integer|false $page
651
+ * @param string|false $type
652
  * @return string
653
  */
654
+ public function getXmlUrl($sitemap, $page = false, $type = false, $taxonomy = false)
655
  {
656
  $sq_sitemap = SQ_Classes_Helpers_Tools::getOption('sq_sitemap');
657
 
658
  if (!get_option('permalink_structure')) {
659
+ $sitemap = '?sq_feed=' . str_replace('.xml', '', $sitemap);
660
+ $sitemap .= (($page && (int)$page > 0) ? '&amp;page=' . $page : '');
661
+ $sitemap .= (($type && $type <> '') ? '&amp;type=' . $type : '');
662
+ $sitemap .= (($taxonomy && $taxonomy <> '') ? '&amp;taxonomy=' . $taxonomy : '');
663
  } else {
664
  if (isset($sq_sitemap[$sitemap])) {
665
+ $sitemap = $sq_sitemap[$sitemap][0];
666
+ $sitemap .= (($page && (int)$page > 0) ? '?page=' . (int)$page : '');
667
+ $sitemap .= (($type && $type <> '') ? (strpos($sitemap,'?') !== false ? '&amp;' : '?') . 'type=' . $type : '');
668
+ $sitemap .= (($taxonomy && $taxonomy <> '') ? (strpos($sitemap,'?') !== false ? '&amp;' : '?') . 'taxonomy=' . $taxonomy : '');
669
  }
670
 
671
  if (strpos($sitemap, '.xml') === false) {
803
  {
804
  global $wpdb;
805
  $query[] = $wpdb->prepare(
806
+ "(SELECT UNIX_TIMESTAMP(MAX(p.post_date_gmt)) as _mod_date
 
807
  FROM `$wpdb->posts` p, `$wpdb->term_relationships` r
808
  WHERE p.ID = r.object_id
809
  AND p.post_status = %s
883
  global $wpdb;
884
  $archives = $wpdb->get_results(
885
  $wpdb->prepare(
886
+ "SELECT DISTINCT YEAR(post_date_gmt) as `year`, MONTH(post_date_gmt) as `month`, max(post_date_gmt) as lastmod, count(ID) as posts
887
+ FROM `$wpdb->posts`
888
+ WHERE post_date_gmt < NOW() AND post_status = %s AND post_type = %s
889
+ GROUP BY YEAR(post_date_gmt), MONTH(post_date_gmt)
890
+ ORDER BY post_date_gmt DESC
891
+ ", 'publish', 'post'
 
892
  )
893
  );
894
  return $archives;
895
  }
896
 
897
+ /**
898
+ *
899
+ * @return array of terms
900
+ */
901
+ public function queryTerms(){
902
+ global $sq_query;
903
+
904
+ if(isset($sq_query['taxonomy']) && !empty($sq_query['taxonomy'])) {
905
+ return get_terms($sq_query['taxonomy'], $sq_query);
906
+ }
907
+
908
+ return array();
909
+ }
910
+
911
  }
controllers/Snippet.php CHANGED
@@ -5,14 +5,14 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController
5
  {
6
 
7
  /**
8
- *
9
  *
10
- * @var array Post Type in
11
  */
12
  private $_types = array();
13
  public $post;
14
 
15
- public function __construct()
16
  {
17
  parent::__construct();
18
  add_action('admin_bar_menu', array($this, 'hookTopmenuFrontend'), 11);
@@ -36,7 +36,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController
36
  *
37
  * @return mixed
38
  */
39
- public function init()
40
  {
41
  if (is_rtl()) {
42
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('sqbootstrap.rtl', array('trigger' => true, 'media' => 'all'));
@@ -65,7 +65,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController
65
  /**
66
  * Hook the Head sequence in frontend when user is logged in
67
  */
68
- public function hookFronthead()
69
  {
70
  if (SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
71
  //prevent some compatibility errors with other plugins
@@ -86,7 +86,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController
86
  * @param $post
87
  * @return $this
88
  */
89
- public function setPost($post)
90
  {
91
  $this->post = $post;
92
 
@@ -96,7 +96,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController
96
  /**
97
  * Hook pages like Terms and Categories
98
  */
99
- public function hookTermsPage()
100
  {
101
  echo $this->getSnippetDiv(SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet')->init());
102
  }
@@ -108,7 +108,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController
108
  * @param string $attributes
109
  * @return string
110
  */
111
- public function getSnippetDiv($content, $attributes = '')
112
  {
113
 
114
  if (!apply_filters('sq_load_snippet', true) || !SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
@@ -124,7 +124,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController
124
  *
125
  * @param WP_Admin_Bar $wp_admin_bar
126
  */
127
- public function hookTopmenuFrontend($wp_admin_bar)
128
  {
129
  global $wp_the_query;
130
 
@@ -155,12 +155,12 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController
155
  && ($post_type_object = get_post_type_object($current_object->post_type))
156
  && SQ_Classes_Helpers_Tools::userCan('edit_post', $current_object->ID)
157
  && $post_type_object->show_in_admin_bar
158
- && $edit_post_link = get_edit_post_link($current_object->ID)
159
  ) {
160
  } elseif (!empty($current_object->taxonomy)
161
  && ($tax = get_taxonomy($current_object->taxonomy))
162
  && SQ_Classes_Helpers_Tools::userCan('edit_term', $current_object->term_id)
163
- && $edit_term_link = get_edit_term_link($current_object->term_id, $current_object->taxonomy)
164
  ) {
165
  } else {
166
  return;
@@ -175,16 +175,16 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController
175
  $style = '<style>.sq_logo{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;background-size: 100%; background-repeat: no-repeat; background-position: center;}</style>';
176
  }
177
 
178
- $wp_admin_bar->add_node(
179
  array(
180
  'id' => 'sq_bar_menu',
181
  'title' => $style . '<span class="sq_logo"></span> ' . esc_html__("Custom SEO", 'squirrly-seo'),
182
  'parent' => 'top-secondary',
183
- )
184
  );
185
 
186
 
187
- $wp_admin_bar->add_menu(
188
  array(
189
  'id' => 'sq_bar_submenu',
190
  'parent' => 'sq_bar_menu',
@@ -192,7 +192,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController
192
  'html' => $this->getSnippetDiv(SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet')->init(), 'data-snippet="topmenu"'),
193
  'tabindex' => PHP_INT_MAX,
194
  ),
195
- )
196
  );
197
  } catch (Exception $e) {
198
 
@@ -205,7 +205,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController
205
  *
206
  * @return void
207
  */
208
- public function action()
209
  {
210
  parent::action();
211
 
5
  {
6
 
7
  /**
8
+ *
9
  *
10
+ * @var array Post Type in
11
  */
12
  private $_types = array();
13
  public $post;
14
 
15
+ public function __construct()
16
  {
17
  parent::__construct();
18
  add_action('admin_bar_menu', array($this, 'hookTopmenuFrontend'), 11);
36
  *
37
  * @return mixed
38
  */
39
+ public function init()
40
  {
41
  if (is_rtl()) {
42
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('sqbootstrap.rtl', array('trigger' => true, 'media' => 'all'));
65
  /**
66
  * Hook the Head sequence in frontend when user is logged in
67
  */
68
+ public function hookFronthead()
69
  {
70
  if (SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
71
  //prevent some compatibility errors with other plugins
86
  * @param $post
87
  * @return $this
88
  */
89
+ public function setPost($post)
90
  {
91
  $this->post = $post;
92
 
96
  /**
97
  * Hook pages like Terms and Categories
98
  */
99
+ public function hookTermsPage()
100
  {
101
  echo $this->getSnippetDiv(SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet')->init());
102
  }
108
  * @param string $attributes
109
  * @return string
110
  */
111
+ public function getSnippetDiv($content, $attributes = '')
112
  {
113
 
114
  if (!apply_filters('sq_load_snippet', true) || !SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
124
  *
125
  * @param WP_Admin_Bar $wp_admin_bar
126
  */
127
+ public function hookTopmenuFrontend($wp_admin_bar)
128
  {
129
  global $wp_the_query;
130
 
155
  && ($post_type_object = get_post_type_object($current_object->post_type))
156
  && SQ_Classes_Helpers_Tools::userCan('edit_post', $current_object->ID)
157
  && $post_type_object->show_in_admin_bar
158
+ && $edit_post_link = get_edit_post_link($current_object->ID)
159
  ) {
160
  } elseif (!empty($current_object->taxonomy)
161
  && ($tax = get_taxonomy($current_object->taxonomy))
162
  && SQ_Classes_Helpers_Tools::userCan('edit_term', $current_object->term_id)
163
+ && $edit_term_link = get_edit_term_link($current_object->term_id, $current_object->taxonomy)
164
  ) {
165
  } else {
166
  return;
175
  $style = '<style>.sq_logo{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;background-size: 100%; background-repeat: no-repeat; background-position: center;}</style>';
176
  }
177
 
178
+ $wp_admin_bar->add_node(
179
  array(
180
  'id' => 'sq_bar_menu',
181
  'title' => $style . '<span class="sq_logo"></span> ' . esc_html__("Custom SEO", 'squirrly-seo'),
182
  'parent' => 'top-secondary',
183
+ )
184
  );
185
 
186
 
187
+ $wp_admin_bar->add_menu(
188
  array(
189
  'id' => 'sq_bar_submenu',
190
  'parent' => 'sq_bar_menu',
192
  'html' => $this->getSnippetDiv(SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet')->init(), 'data-snippet="topmenu"'),
193
  'tabindex' => PHP_INT_MAX,
194
  ),
195
+ )
196
  );
197
  } catch (Exception $e) {
198
 
205
  *
206
  * @return void
207
  */
208
+ public function action()
209
  {
210
  parent::action();
211
 
languages/squirrly-seo-cs_CZ.po DELETED
@@ -1,1883 +0,0 @@
1
- msgid ""
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"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
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
1676
- #~| msgid "Could not send the email..."
1677
- #~ msgid "Could not save the data"
1678
- #~ msgstr "Konnte E-Mail nicht senden ..."
1679
-
1680
- # @ squirrly-seo
1681
- #, fuzzy
1682
- #~| msgid "Squirrly settings"
1683
- #~ msgid "Squirrly Keyword"
1684
- #~ msgstr "Squirrly Einstellungen"
1685
-
1686
- # @ squirrly-seo
1687
- #, fuzzy
1688
- #~| msgid "Do the research"
1689
- #~ msgid "Do Research"
1690
- #~ msgstr "Recherchieren"
1691
-
1692
- # @ squirrly-seo
1693
- #, fuzzy
1694
- #~| msgid "Squirrly LIVE SEO assistant"
1695
- #~ msgid "Bulk SEO & SEO Snippet"
1696
- #~ msgstr "Squirrly LIVE SEO-Assistent"
1697
-
1698
- # @ squirrly-seo
1699
- #, fuzzy
1700
- #~| msgid "Do the research"
1701
- #~ msgid "All Keyword Researches performed"
1702
- #~ msgstr "Recherchieren"
1703
-
1704
- # @ squirrly-seo
1705
- #, fuzzy
1706
- #~| msgid "Could not send the email..."
1707
- #~ msgid "Could not verify the frontend"
1708
- #~ msgstr "Konnte E-Mail nicht senden ..."
1709
-
1710
- # @ squirrly-seo
1711
- #, fuzzy
1712
- #~| msgid "Turn off warnings!"
1713
- #~ msgid "errors/warnings"
1714
- #~ msgstr "Warnungen ausschalten!"
1715
-
1716
- # @ squirrly-seo
1717
- #~ msgid ""
1718
- #~ "For Squirrly to work properly you have to use a higher version of "
1719
- #~ "Internet Explorer. <br /> We recommend you to use Chrome or Mozilla."
1720
- #~ msgstr ""
1721
- #~ "Damit Squirrly ordnungsgemäß funktioniert, müssen Sie eine höhere Version "
1722
- #~ "von Internet Explorer verwenden. <br /> Wir empfehlen, Chrome oder "
1723
- #~ "Mozilla."
1724
-
1725
- # @ squirrly-seo
1726
- #~ msgid "Exact search:"
1727
- #~ msgstr "Exakte Suche:"
1728
-
1729
- # @ squirrly-seo
1730
- #~ msgid "For Squirrly to work, you have to have tinymce editor installed!"
1731
- #~ msgstr "Damit Squirrly arbeitet, muss tinymce installiert sein!"
1732
-
1733
- # @ squirrly-seo
1734
- #~ msgid ":( I lost my squirrel. Please reload the page."
1735
- #~ msgstr ":( Ich verlor meine Eichhörnchen. Laden Sie die Seite erneut."
1736
-
1737
- # @ squirrly-seo
1738
- #~ msgid "Switch to Visual editor!"
1739
- #~ msgstr "Zum Visual Editor wechseln !"
1740
-
1741
- # @ squirrly-seo
1742
- #~ msgid "Go to:"
1743
- #~ msgstr "Gehe zu:"
1744
-
1745
- # @ squirrly-seo
1746
- #~ msgid "Clear"
1747
- #~ msgstr "Löschen"
1748
-
1749
- # @ squirrly-seo
1750
- #~ msgid "Let some keywords for the next time as well!"
1751
- #~ msgstr "Lassen Sie ein paar Schlüsselwörter auch für das nächste Mal!"
1752
-
1753
- # @ squirrly-seo
1754
- #~ msgid "News"
1755
- #~ msgstr "News"
1756
-
1757
- # @ squirrly-seo
1758
- #~ msgid "Notice: "
1759
- #~ msgstr "Hinweis: "
1760
-
1761
- # @ squirrly-seo
1762
- #~ msgid "Note: "
1763
- #~ msgstr "Notiz: "
1764
-
1765
- # @ squirrly-seo
1766
- #~ msgid "Let Squirrly optimize your SEO automatically (recommended)"
1767
- #~ msgstr "Lassen Sie Squirrly Ihr SEO automatisch optimieren (empfohlen)"
1768
-
1769
- # @ squirrly-seo
1770
- #~ msgid ""
1771
- #~ "It is highly recommended that you include the %postname% variable in the "
1772
- #~ "permalink structure."
1773
- #~ msgstr ""
1774
- #~ "Es wird stark empfohlen, dass Sie die %postname% Variable in der "
1775
- #~ "Permalink-Struktur einschließen."
1776
-
1777
- # @ squirrly-seo
1778
- #~ msgid "For Squirrly to work, you have to have tinymce installed!"
1779
- #~ msgstr "Damit Squirrly arbeiten kann, müssen Sie tinymce installiert haben!"
1780
-
1781
- # @ squirrly-seo
1782
- #~ msgid "Message sent..."
1783
- #~ msgstr "Nachricht gesendet ..."
1784
-
1785
- # @ squirrly-seo
1786
- #~ msgid ""
1787
- #~ "The system is acting Squirrly. I can not find the link to the server."
1788
- #~ msgstr "Kann den Link auf den Server nicht finden."
1789
-
1790
- # @ squirrly-seo
1791
- #~ msgid ""
1792
- #~ "With Squirrly SEO, your Wordpress will get Perfect SEO on each article "
1793
- #~ "you write."
1794
- #~ msgstr ""
1795
- #~ "Mit Squirrly SEO wird jeder Ihrer Wordpress Artikel eine perfekte "
1796
- #~ "Suchmaschinenoptimierung erhalten. "
1797
-
1798
- # @ squirrly-seo
1799
- #~ msgid ""
1800
- #~ "delivered as a plugin for Wordpress. <br /><br />We connect your "
1801
- #~ "wordpress with Squirrly, so that we can find the best SEO opportunities, "
1802
- #~ "give you reports and analyse your competitors."
1803
- #~ msgstr ""
1804
- #~ "geliefert als Plugin für Wordpress. <br /> <br /> Wir verbinden Ihr "
1805
- #~ "Wordpress mit Squirrly, so dass wir die besten SEO-Möglichkeiten finden, "
1806
- #~ "erstatten Ihnen Bericht und analysieren Ihre Konkurrenz."
1807
-
1808
- #~ msgid " API"
1809
- #~ msgstr " API"
1810
-
1811
- # @ squirrly-seo
1812
- #~ msgid "API Key:"
1813
- #~ msgstr "API Key:"
1814
-
1815
- # @ squirrly-seo
1816
- #~ msgid "Let Squirrly automatically optimize my blog"
1817
- #~ msgstr "Lassen Sie Squirrly automatisch Ihren Blog optimieren"
1818
-
1819
- # @ squirrly-seo
1820
- #~ msgid ""
1821
- #~ "adds the correct <strong>description</strong> and <strong>keywords</"
1822
- #~ "strong> in all pages"
1823
- #~ msgstr ""
1824
- #~ "fügt die richtige <strong>Beschreibung</strong> und "
1825
- #~ "<strong>Schlüsselwörter</strong> auf allen Seiten ein"
1826
-
1827
- # @ squirrly-seo
1828
- #~ msgid "adds the <strong>XML Sitemap</strong> for search engines"
1829
- #~ msgstr "fügt die <strong>XML Sitemap</strong> für Suchmaschinen ein"
1830
-
1831
- # @ squirrly-seo
1832
- #~ msgid ""
1833
- #~ "adds the required METAs for home page (<strong>icon, author, language, dc "
1834
- #~ "publisher</strong>, etc.)"
1835
- #~ msgstr ""
1836
- #~ "fügt die erforderlichen METAs für die Startseite (<strong> icon, Autor, "
1837
- #~ "Sprache, dc Verlag </strong>, etc.) ein"
1838
-
1839
- # @ squirrly-seo
1840
- #~ msgid ""
1841
- #~ "adds the <strong>favicon</strong> and the <strong>icon for Apple devices</"
1842
- #~ "strong>."
1843
- #~ msgstr ""
1844
- #~ "fügt das <strong>favicon</strong> und die <strong>icon für Apple-Geräte</"
1845
- #~ "strong> ein."
1846
-
1847
- # @ squirrly-seo
1848
- #~ msgid "Let Squirrly warn me if there are errors related to SEO settings"
1849
- #~ msgstr ""
1850
- #~ "Squirrly warnen lassen, wenn es Fehler im Zusammenhang mit den SEO-"
1851
- #~ "Einstellungen gibt"
1852
-
1853
- # @ squirrly-seo
1854
- #~ msgid ""
1855
- #~ "Show <strong>\"Enter a keyword\"</strong> bubble when posting a new "
1856
- #~ "article."
1857
- #~ msgstr ""
1858
- #~ "Zeige <strong>\"Enter a keyword\"</ strong> Bubble, bei einem neuen "
1859
- #~ "Artikel."
1860
-
1861
- #~ msgid ""
1862
- #~ "Always show <strong>Keyword Informations</strong> about the selected "
1863
- #~ "keyword."
1864
- #~ msgstr ""
1865
- #~ "Always show <strong>Keyword Informations</strong> about the selected "
1866
- #~ "keyword."
1867
-
1868
- # @ squirrly-seo
1869
- #~ msgid "First page optimization (Title, Description, Keywords)"
1870
- #~ msgstr ""
1871
- #~ " Optimierung der ersten Seite (Titel, Beschreibung, Schlüsselwörter)"
1872
-
1873
- # @ squirrly-seo
1874
- #~ msgid "Status:"
1875
- #~ msgstr "Status:"
1876
-
1877
- # @ squirrly-seo
1878
- #~ msgid "Google Plus URL:"
1879
- #~ msgstr "Google Plus URL:"
1880
-
1881
- # @ squirrly-seo
1882
- #~ msgid "Facebook META code (for %sInsights%s )`:"
1883
- #~ msgstr "Facebook META Code (für %sInsights%s )`:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/squirrly-seo-de_DE.po DELETED
@@ -1,14095 +0,0 @@
1
- msgid ""
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"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
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?"
127
- msgstr ""
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 "
244
- "there."
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
-
383
- #: config/config.php:30
384
- msgid "Places a separator between the elements of the post description"
385
- msgstr ""
386
-
387
- #: config/config.php:31
388
- msgid "Adds the title of the post/page/term once it’s published"
389
- msgstr ""
390
-
391
- #: config/config.php:32
392
- msgid ""
393
- "Will display an excerpt from the post/page/term (if not customized, the "
394
- "excerpt will be auto-generated)"
395
- msgstr ""
396
-
397
- #: config/config.php:33
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)"
428
- msgstr ""
429
-
430
- #: config/config.php:39
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)"
443
- msgstr ""
444
-
445
- # @ squirrly-seo
446
- #: config/config.php:42
447
- #, fuzzy
448
- #| msgid "Description:"
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
461
- #, fuzzy
462
- #| msgid "Description:"
463
- msgid "Adds the term description"
464
- msgstr "Beschreibung:"
465
-
466
- #: config/config.php:45
467
- msgid "Displays the search phrase (if it appears in the post)"
468
- msgstr ""
469
-
470
- #: config/config.php:46
471
- msgid "Replaces the publication date of a post/page with the modified one"
472
- msgstr ""
473
-
474
- #: config/config.php:47
475
- msgid "Displays the author's nicename"
476
- msgstr ""
477
-
478
- #: config/config.php:48
479
- msgid "Adds the author's biographical info to the post description"
480
- msgstr ""
481
-
482
- #: config/config.php:49
483
- msgid "Displays the current date"
484
- msgstr ""
485
-
486
- #: config/config.php:50
487
- msgid "Displays the date of the post/page once it's published"
488
- msgstr ""
489
-
490
- #: config/config.php:51
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"
503
- msgstr ""
504
-
505
- #: config/config.php:54
506
- msgid "Adds the title of a page's parent page"
507
- msgstr ""
508
-
509
- #: config/config.php:55
510
- msgid "Adds the product name from Woocommerce for the current product"
511
- msgstr ""
512
-
513
- #: config/config.php:56
514
- msgid "Adds the product price from Woocommerce for the current product"
515
- msgstr ""
516
-
517
- #: config/config.php:57
518
- msgid "Adds the product sale price from Woocommerce for the current product"
519
- msgstr ""
520
-
521
- #: config/config.php:58
522
- msgid ""
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"
560
- #| "%s."
561
- msgid "Connection expired. Please try again."
562
- msgstr ""
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 "
783
- "deactivate %s to increase the page loading speed for better Google ranking."
784
- msgstr ""
785
-
786
- #: controllers/Patterns.php:22
787
- msgid "Saved! This is how the preview looks like"
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"
937
- #| "%s."
938
- msgid "Could not add the keyword to SERP Check. Please try again."
939
- msgstr ""
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."
1040
- msgstr "Konnte E-Mail nicht senden ..."
1041
-
1042
- # @ squirrly-seo
1043
- #: controllers/Snippet.php:87
1044
- #, fuzzy
1045
- #| msgid "Squirrly LIVE SEO assistant"
1046
- msgid "Squirrly SEO Snippet"
1047
- msgstr "Squirrly LIVE SEO-Assistent"
1048
-
1049
- #: controllers/Snippet.php:190
1050
- #, php-format
1051
- msgid ""
1052
- "Could not save the snippet. Please check the database table %s integrity."
1053
- msgstr ""
1054
-
1055
- # @ squirrly-seo
1056
- #: core/BlockSupport.php:31
1057
- #, fuzzy
1058
- #| msgid "Thank you for your feedback"
1059
- msgid "Thank you for your feedback."
1060
- msgstr "Vielen Dank für Ihre Feedback"
1061
-
1062
- # @ squirrly-seo
1063
- #: core/BlockSupport.php:35
1064
- msgid "No message."
1065
- msgstr "Keine Nachricht."
1066
-
1067
- # @ squirrly-seo
1068
- #: core/Blocklogin.php:53
1069
- #, fuzzy, php-format
1070
- #| msgid ""
1071
- #| "We found your email, so it means you already have a Squirrly.co account. "
1072
- #| "Please login with your Squirrly Email. If you forgot your password click "
1073
- #| "%shere%s"
1074
- msgid ""
1075
- "We found your email, so it means you already have a Squirrly.co account. "
1076
- "%sClick %sI already have an account%s and login. If you forgot your "
1077
- "password, click %shere%s"
1078
- msgstr ""
1079
- "Ihre E-Mail Adresse ist bereits bei Squirrly.co registriert. Bitte loggen "
1080
- "Sie sich mit Ihrer Squirrly-ID ein. Falls Sie Ihr Passwort vergessen haben, "
1081
- "klicken Sie %shier%s"
1082
-
1083
- #: core/Blocklogin.php:56
1084
- msgid "Your email is not valid. Please enter a valid email."
1085
- msgstr ""
1086
-
1087
- #: core/Blocklogin.php:59
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 "
1095
- "webmaster) and request them to add %s to their IP whitelist."
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"
1103
- #| "%s."
1104
- msgid "Could not send your information to Squirrly. Please try again."
1105
- msgstr ""
1106
- "Konnte Ihre Informationen nicht zu Squirrly senden. Bitte registrieren "
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!"
1119
- msgstr ""
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 "
1138
- "webmaster) and request them to add %s to their IP whitelist."
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 "
1171
- "this website using Squirrly SEO. %s It will guide through the 3 important "
1172
- "steps of performing a research. %s Just follow the steps."
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. "
1186
- "%s You'll need to know and document the keywords that you'll be using "
1187
- "throughout your WordPress site. %s This will help you keep a clear SEO "
1188
- "Strategy or it can help you form a SEO Strategy. It will also help you focus "
1189
- "and you'll get to see when you're spreading yourself too thin. %s Add your "
1190
- "first keywords (that you've researched using the Keyword Research tool) to "
1191
- "Briefcase. Only add keywords that you will want to work on at some point in "
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 "
1205
- "Briefcase. %s There are many ways to use this: from Customer Journey labels, "
1206
- "to direct or indirect labels, to core keywords or secondary keywords ... and "
1207
- "so on. You can get super creative with this. %s We have a very important "
1208
- "blog post you can read for this http://fourhourseo.com/pro-course-6-how-to-"
1209
- "organize-and-manage-your-keyword-portfolio/ %s Just add your first label to "
1210
- "complete this task."
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 "
1224
- "stored keywords using that label. %s Go to Briefcase. Move your mouse over "
1225
- "the row containing your desired keyword. The 3 vertical dots button appears. "
1226
- "%s Move your mouse over it and a menu will show. Click on Assign Label. %s "
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 "
1241
- "one of your keywords. Move the mouse over the row with your desired keyword. "
1242
- "%s You will see a button with 3 vertical dots appear to the right of the "
1243
- "row. %s Get your mouse cursor over that button. A menu shows. Click on Send "
1244
- "to Rank Checker. %s That's it. Now Squirrly SEO's rank checker feature will "
1245
- "start tracking your position in Google for that keyword that is part of your "
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) "
1260
- "feature from Squirrly SEO. %s You can either Edit an existing post or create "
1261
- "a new post. (You have your Live Assistant where you have your WP "
1262
- "Editor)%sThe SEO Live Assistant is like having a SEO Consultant near you, "
1263
- "whispering in your ear exactly what you have to do to get a 100% optimized "
1264
- "article or page.%sYou can try the DEMO first, by clicking on the Demo Post "
1265
- "button. It's safe to break anything in the SEO of that page, because it "
1266
- "never gets indexed by Google, since it's a DEMO. It's an easy way to learn "
1267
- "your way around it."
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 "
1299
- "import ALL meta settings you've made with other plugins in WordPress into "
1300
- "your Squirrly SEO Plugin. That way everything will be kept 100%% intact, "
1301
- "without any head-aches. %s To complete this task you need to activate: %s - "
1302
- "Optimize the Titles%s - Optimize Descriptions %s - Add Canonical META Link "
1303
- "%s Make sure you click on %sSave settings%s after you switch anything on or "
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 "
1319
- "feature of Squirrly SEO will make sure that if you have more than one JSON-"
1320
- "LD definition inside the source code of any URL, the definition created by "
1321
- "Squirrly SEO will be the only one that remains. %s Make sure you setup all "
1322
- "the information about your Organization or your Personal Brand here. %s To "
1323
- "finish all the JSON-LD related setup, also visit the %sSocial Media%s "
1324
- "section of our Settings page and write in your social media profiles for "
1325
- "this site. %s Then, at URL-level you will be able to add custom JSON-LD if "
1326
- "you're an advanced user."
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 "
1341
- "to ON) %s The Open Graph will help you control the way your posts look when "
1342
- "people share your URLs to social media sites like Facebook and LinkedIN. %s "
1343
- "It will also make your social media posts look great and gain you clicks to "
1344
- "your site."
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 "
1359
- "toggle to ON) %s - Add your Twitter profile URL %s The Twitter Card will "
1360
- "help you control the way your posts look when people share your URLs on "
1361
- "Twitter. %s It will also make your social media posts look great and gain "
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 "
1376
- "sitemap, according to different items you can set up. %s Use this to tell "
1377
- "Google how often you bring new content to your site. %s Also, choose for "
1378
- "which types of URLs you'll want to have sitemaps. It depends on your "
1379
- "strategy. Leave the defaults if you're uncertain. Squirrly SEO chooses the "
1380
- "best defaults for you. %s Make sure you include Images and Videos in the "
1381
- "sitemap. It has been identified as a ranking factor, so it's good to have "
1382
- "that."
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 "
1396
- "complete this setting. (find it in the tracking code that Google Analytics "
1397
- "tells you to place on your site) %s Squirrly SEO will then add "
1398
- "(automatically) your Google Analytics tracking code (in the format you "
1399
- "desire) to every page of your site (according to rules you can modify in the "
1400
- "Automation section)."
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 "
1414
- "integrate different (important) 3rd party services with your WordPress. %s "
1415
- "Alexa META Code is 100%% optional, but the rest are very important to add. "
1416
- "%s Enter your Pinterest code, especially if you plan to expand your presence "
1417
- "on Pinterest. It will %sactivate Rich Pins%s, which will completely boost "
1418
- "your sales and visibility for any product or post that has great images."
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."
1433
- "%sFeatures like %sFocus Pages%s and the %sAudit%s need this integration, in "
1434
- "order to work at full potential.%sGoogle Analytics is free and everyone uses "
1435
- "it. The %sFocus Pages%s and the %sAudit%s will interpret the right data from "
1436
- "Google Analytics for you.%sYou'll feel like an Analytics expert, without "
1437
- "having to know a single thing about Google Analytics."
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 "
1451
- "from %sAudits > Settings%s.%sThis integration is more than just setting the "
1452
- "meta code for it. It will connect your WP to the API of Google's service and "
1453
- "enable info such as Impressions, Clicks, Average Ranking Position to be "
1454
- "collected.%sMore importantly, you'll be able to update all the info that "
1455
- "Google has about your site, directly from your Squirrly SEO Plugin."
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 "
1469
- "your personal email, your work email or the email of one of your "
1470
- "collaborators.%sIt's a best practice to have the Audit sent to the person "
1471
- "that will take charge and start correcting the problems of the site, in "
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 "
1483
- "over 84.%sHowever, you need to start with smaller steps. For now, focus on "
1484
- "getting a score of over 60.%sLook at the progress charts weekly and make "
1485
- "sure you check out the Tasks section, which tells you exactly what you need "
1486
- "to do in order to increase the score.%sWe've been testing these scores since "
1487
- "2013 on hundreds of thousands of websites and it's always the same: %strue "
1488
- "performance happens at over 84%s. That's why you need to start working on "
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 "
1500
- "position on the Google Search Engine for your keywords. Also (on the "
1501
- "Business Plan) it shows you the evolution in time for your sites' URLs for "
1502
- "these keywords. %s Tell Squirrly SEO the first three keywords you want it to "
1503
- "check for you, to see if you're ranking for them. %s Because you should work "
1504
- "according to a solid SEO Strategy, you'll only be able to add keywords or "
1505
- "remove keywords in the Ranking section from your Briefcase. %s Briefcase is "
1506
- "your keyword organizer / manager. Find it in the Research section. Go with "
1507
- "the mouse cursor over a keyword from %sBriefcase -> see the 3 vertical dots -"
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"
1515
- "%s. %s It will bring information regarding Impressions and Clicks. %s Note: "
1516
- "if you're on the free plan or the PRO plan then the Ranking Position will be "
1517
- "displayed according to data from Google Search Console, which does not "
1518
- "present the actual position you are on. It shows an average position that "
1519
- "your site was lately found on. It can give you values such as 4.3 because of "
1520
- "this. Even though your page today could be on position 7. %s The Business "
1521
- "Plan is the only one that can give you the exact position because it uses "
1522
- "Squirrly's private cloud servers that are working around the clock to gather "
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 "
1534
- "Select a good keyword (using our %sKeyword Research Tool%s). %s Create an "
1535
- "amazing page for it (if you don't already have one). %s %sAdd the page to "
1536
- "Focus Pages%s in Squirrly SEO. %s Turn the RED lights to Green in Focus "
1537
- "Pages and see your rankings increase over time. %s If you continue working "
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 "
1564
- "amazing keyword set to use for your page. %s If you have a page about a Jazz "
1565
- "Concert that John Dane (fictional name used for this example) will do on 9th "
1566
- "of August 2025 in Phoenix, AZ, then you can try and find the best keywords "
1567
- "you can use, that are related to: 'jazz concert', 'john dane', 'jazz 2025' "
1568
- "and 'jazz in phoenix'. Find out what others search for. If you'll optimize "
1569
- "the page for those keywords, you'll be certain that jazz fans will find it. "
1570
- "The keyword research tool available in Squirrly SEO helps you figure out "
1571
- "exactly what keywords to use. %s Start optimizing your content. Use the "
1572
- "Live Assistant from Squirrly SEO to do this, as it guides you towards the "
1573
- "best practices of optimizing a page for SEO and helps you avoid keyword "
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 "
1581
- "understand that the page is exactly about the topic they were searching for. "
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 "
1630
- "does not bloat your code."
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 "
1648
- "pages with the most visitors in the last week. %s Having at least 100 "
1649
- "visitors per page every week is crucial. %s Search Engines like Google and "
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 "
1675
- "active listings which can be easily found on various marketplaces / "
1676
- "platforms. eg: you have a Shopify app, a Chrome Extension, a Chrome App, a "
1677
- "Udemy Course, Slides on SlideShare.com, videos on Youtube, an infographic on "
1678
- "Pinterest, etc. These will always bring you constant traffic to the website "
1679
- "and once you set it (and make it visible) you can forget it. It will keep "
1680
- "bringing you traffic. Of course, the key is to first make these items "
1681
- "visible in the places where you publish them. %s You need an email list. "
1682
- "Make sure that people who come to your store, do business with you, visit "
1683
- "your website, or read your blog give you their email address so you can "
1684
- "communicate with them further on. An alternative to this is to make a "
1685
- "Chatbot for Facebook Messenger and get them hooked to the bot. By doing any "
1686
- "of these, you'll be able to bring those people back to your website. %sUse "
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 "
1701
- "Pixel and then retarget them, you can make them subscribe to Desktop "
1702
- "Notifications to receive push notifications, you can have them download an "
1703
- "app, subscribe to a newsletter, etc. Sometimes it's best if you can create "
1704
- "clever funnels that will ensure that any person may start following you on "
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 "
1743
- "in search results, because they wouldn't ever make any sense for potential "
1744
- "searchers."
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 "
1772
- "Google not to follow some of your pages through a robots tag inside your "
1773
- "code. %s On WordPress, it's super easy to control on which pages to place "
1774
- "nofollow and which pages should never get tagged with nofollow if you use "
1775
- "the Squirrly SEO Plugin. %s If you're using something else, make sure you "
1776
- "remove <META NAME=“ROBOTS” CONTENT=“NOFOLLOW”> from the <head> of your HTML."
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 "
1795
- "find and delete all malware from your website. %s Watch this video to learn "
1796
- "more. [link]https://www.youtube.com/embed/7GStGcTeo20[/link] %s Once you "
1797
- "feel like you've fixed your problems you can check using this tool from "
1798
- "Google: [link]https://transparencyreport.google.com/safe-browsing/search[/"
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 "
1889
- "Automation or SEO Snippet from Squirrly SEO will generate your META title "
1890
- "automatically from the content of your page (in case you didn't already "
1891
- "place a custom title). Make every single META Title of every page unique "
1892
- "(you never repeat it on any other URL from the website). You will write what "
1893
- "you want Google to display in the search results as a title for your "
1894
- "listing. Make this text awesome and you'll get people clicking on it. %s See "
1895
- "if you can assign rules to WordPress to have it change the Title of each URL "
1896
- "according to different patterns. Normally the platform will take the Title "
1897
- "of the latest product inside the category and add it to the Title of that "
1898
- "particular category. In this case you can end up with something like: "
1899
- "example.com/shooter-games will have title: 'Counter Strike GO. Buy it Now' "
1900
- "and also: example.com/shooter-games/cs-go will also have title: 'Counter "
1901
- "Strike GO. Buy it Now'. %s All these problematic cases can be forgotten once "
1902
- "you start using Squirrly SEO . With its Patterns feature, it will create "
1903
- "rules for WordPress that ensure each title for each page on your site is "
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 "
1951
- "Automation feature from Squirrly SEO, because it will generate your META "
1952
- "description automatically from the content of your page (in case you didn't "
1953
- "already place a custom description). Make every single META description of "
1954
- "every page unique (you never repeat it on any other URL from the website). "
1955
- "Make this text awesome and you'll get people clicking on it. %s Use the "
1956
- "Patterns feature from Squirrly SEO. It will help you create rules for "
1957
- "WordPress that ensure each description for each page on your site is unique. "
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 "
2012
- "Automation features or the SEO Snippet to generate your META title "
2013
- "automatically from the content of your page. Write what you want Google to "
2014
- "display in the search results as a title for your listing. Make this text "
2015
- "awesome and you'll get people clicking on it. %s Use the Patterns feature "
2016
- "from Squirrly. It will create rules for WordPress that ensure each title for "
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 "
2069
- "Automation features or the SEO Snippet which will generate your META "
2070
- "description automatically from the content of your page. Make this text "
2071
- "awesome and you'll get people clicking on it. %s See if you can assign rules "
2072
- "to WordPress to have it create META descriptions for each URL according to "
2073
- "different patterns. By having clear rules for all URLs you'll ensure that "
2074
- "Empty Descriptions will no longer be a problem in the future. %s All these "
2075
- "problematic cases can be forgotten once you start using Squirrly SEO . With "
2076
- "its Patterns feature, it will create rules for WordPress that ensure each "
2077
- "description for each page on your site is unique. This feature is available "
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 "
2109
- "SEO will ensure your pages have title tags. It will create titles for every "
2110
- "page. It will help you customize titles for every page, all while making you "
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 "
2140
- "that you understand the following: a poorly written META description will "
2141
- "make for a horrible listing inside the Google search page. If people find "
2142
- "your listing, they will not click on your listing in case your META "
2143
- "Description is horrible to look at, is poorly written, or it doesn't seem to "
2144
- "make sense. %s On WordPress, you can use Squirrly SEO for this. It will "
2145
- "automatically create META Descriptions for every page. It will help you "
2146
- "customize these descriptions for every page, all while making you write "
2147
- "ZERO, nada, rien, code. No coding required when you use Squirrly SEO. You "
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 "
2209
- "to the <head> section of your HTML page: <link rel=\"canonical\" href=\"your "
2210
- "site URL\" /> %s Think of a canonical link as the \"preferred version\" of "
2211
- "the page. %s Make sure you have this definition on your URL especially if "
2212
- "you've copied the content from another LINK on the web. Example: You "
2213
- "published a blog post on Medium and then also added it to your own blog on "
2214
- "your own domain. If you add the canonical link definition, then you won't be "
2215
- "penalized for duplicate content. Medium also allows you to re-publish "
2216
- "content from your own site to Medium and helps you get the rel=\"canonical\" "
2217
- "inside the medium post to show that the original is hosted on your own site."
2218
- "%s Use Squirrly SEO's Bulk SEO to define canonical links and indexing "
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 "
2226
- "having duplicate content."
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 "
2254
- "have this tag inside your page's code: <script type=\"application/ld+json"
2255
- "\"> . Or something similar. %s JSON-LD annotates elements on a page, "
2256
- "structuring the data, which can then be used by search engines to "
2257
- "disambiguate elements and establish facts surrounding entities, which is "
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 "
2291
- "You'll have to specify this according to the encoding you use for your "
2292
- "website. %s Adding your encoding tag to the <head> of the site will fix it. "
2293
- "Below, you'll find what you can place, in case your encoding is UTF-8 (the "
2294
- "majority of web pages use this) %s <meta http-equiv=“Content-Type” "
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. "
2302
- "Without specifying the encoding, search engines such as Google will be more "
2303
- "likely to suggest other pages and rank other pages that DO have the "
2304
- "specification made."
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 "
2325
- "feed and Sitemap exists and that it is accessible. Your visitors should be "
2326
- "able to access it using /feed, or /sitemap.xml %s Make sure your visitors "
2327
- "can access it using domainname.com/feed (where the text \"domainname\" is "
2328
- "actually your domain. eg. bloggingwithjane.com ) %s On WordPress, you can "
2329
- "use Squirrly SEO to generate your FEED and the Sitemap for your whole site. "
2330
- "It has some pretty advanced options, so that you feeds will be perfect. This "
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 "
2338
- "it's always looking to surface fresh content to people who search on search "
2339
- "engines. PLUS, having this gives you the opportunity to show up when users "
2340
- "of Google say they want to see only results from the last week. If you had "
2341
- "anything published during the last week, these people will see it and you "
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 "
2360
- "http://domain.com/robots.txt link on your site that crawlers can access to "
2361
- "know which pages they are allowed to crawl. (gather info from) %s Create or "
2362
- "Edit a robots.txt file using Squirrly SEO %s Once you have the file, upload "
2363
- "it to your ftp (if you don’t want to let Squirrly operate it for you) and "
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 "
2395
- "you have this tag inside your page's code: <meta name=“viewport” "
2396
- "content=“width=device-width, initial-scale=1”> . Or something similar. %s In "
2397
- "case you know that the minimum resolution required to deliver a good user "
2398
- "experience to your viewers is 500 px, then write the following: %s <meta "
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 "
2406
- "definition."
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 "
2433
- "must be installed on the web server, such as in Apache, IIS and nginx. When "
2434
- "retrieving the website the web browser will prompt the visitor he/she can "
2435
- "receive the GZIP. %s Squirrly’s teams of experts can help you get this done. "
2436
- "[link]https://www.squirrly.co/agency/[/link] - Premium Paid Services, "
2437
- "separate from any software license you may have from the Squirrly Company. "
2438
- "%s Ask your webmaster / developer / host to help you with this. Or try to "
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 "
2489
- "pages which have this problem. %s Start fixing them one by one. %s Remove "
2490
- "duplicate definitions of code from the <head> section of each page. (eg. you "
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 "
2560
- "Social Media? %s Use a tool like SalesFlare or FullContact (both paid) to "
2561
- "extract the social media profiles of your customers, users, email "
2562
- "subscribers and even LinkedIN Connections. Then make sure they follow you on "
2563
- "Social Media. An easy way to do this is to follow them yourself. They "
2564
- "already care about you and your company. They will gladly interact with your "
2565
- "profiles. Using tools like these will also give you a clear picture of what "
2566
- "Social Media platforms your desired audience uses most, so that you can "
2567
- "create profiles only for those social media platforms. %s You should create "
2568
- "social media Giveaways, or even viral communities like: [link]https://www."
2569
- "squirrly.co/dmsuperstars/[/link] %s Use a service like [link]https://"
2570
- "techfork.xyz/about/[/link] (warning: other social media providers will most "
2571
- "likely cause problems, because they use bots. - TechFork has been verified "
2572
- "by our community and it has been a partner for over 4 years) %s Learn from "
2573
- "our Episode on the Marketing Education Cloud Podcast how to share your pages "
2574
- "so that you get better social signals and also 10,000 visits from social "
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 "
2582
- "Google’s algorithm starts “seeing” that people share your pages on social "
2583
- "media, it will consider that your site is becoming popular and will increase "
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 "
2609
- "options to help you get social sharing buttons inside your website. However, "
2610
- "you should be careful not to let them ruin your loading times. Most plugins "
2611
- "and apps will do that. %s Sumo.com is an Okay option. I'm not really happy "
2612
- "with them, because I find it slows my pages. %s My current favorites are "
2613
- "[link]http://info.zotabox.com/[/link] . I'm using them on Shopify and "
2614
- "WordPress. It works with any CMS platform. The loading speed is great and "
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 "
2622
- "mobile."
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 "
2647
- "to your website, that allow your visitors to check your social media "
2648
- "profiles and follow you on social media. %s This is one of the most "
2649
- "important aspects nowadays, if you want to build trust with your website. %s "
2650
- "Learn more with Expectation Marketing. Expectation Marketing is all about "
2651
- "teaching you how to implement such buttons and other trust elements for your "
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 "
2685
- "you're going to fix the Open Graph image AS WELL AS all the other open graph "
2686
- "elements. %s If you're on WordPress, you're easily getting all the settings "
2687
- "you need from Squirrly SEO . Make sure you use it. %s Below, you can see "
2688
- "the examples of open graph elements you need to implement in the <head> "
2689
- "section of your page's code. Make sure you replace the elements inside "
2690
- "content=\" \" with your own data: your own titles, own image URLs, etc. %s "
2691
- "<meta property=“og:url” content=“{site}/product/expectation-marketing-"
2692
- "ebook/“ /> %s <meta property=“og:title” content=“Expectation Marketing "
2693
- "[Book]” /> %s <meta property=“og:description” content=“If you`re wondering "
2694
- "why your marketing strategy isn`t bringing the results you expected this is "
2695
- "the right ebook for you. Expectation Marketing is about giving you an acti” /"
2696
- "> %s <meta property=“og:type” content=“product” /> %s <meta property=“og:"
2697
- "image” content=“{site}/image.jpg” /> %s <meta property=“og:image:width” "
2698
- "content=“700” /> %s <meta property=“og:image:height” content=“536” /> %s "
2699
- "<meta property=“og:image:type” content=“image/jpeg” /> %s <meta property=“og:"
2700
- "site_name” content=“Expectation Marketing” /> %s <meta property=“og:locale” "
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 "
2736
- "you're going to fix the Twitter Card image AS WELL AS all the other twitter "
2737
- "card elements. %s If you're on WordPress, you're easily getting all the "
2738
- "settings you need from Squirrly SEO. Make sure you use it. %s Below, you can "
2739
- "see examples of twitter card elements you need to implement in the <head> "
2740
- "section of your page's code. Make sure you replace the elements inside "
2741
- "content=\" \" with your own data: your own titles, own image URLs, etc. %s "
2742
- "<meta property=“twitter:url” content=“{site}/product/expectation-marketing-"
2743
- "ebook/“ /> %s <meta property=“twitter:title” content=“Expectation Marketing "
2744
- "[Book]” /> %s <meta property=“twitter:description” content=“If you`re "
2745
- "wondering why your marketing strategy isn`t bringing the results you "
2746
- "expected this is the right ebook for you. Expectation Marketing is about "
2747
- "giving you an acti” /> %s <meta property=“twitter:image” content=“{site}/"
2748
- "image.jpg” /> %s <meta property=“twitter:domain” content=“Expectation "
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 "
2780
- "tempted to go to [link]fiverr.com[/link] for something like this. Avoid "
2781
- "shady SEO. What you can try, and ONLY if it makes sense, is to get bloggers "
2782
- "who sell on fiverr to place your article (with links to your own site) on "
2783
- "their site. %s You can easily get backlinks from multiple domains by showing "
2784
- "that your business: - is an alternative to some other existing business "
2785
- "(there are many websites on which people look for alternatives and they'll "
2786
- "be happy to include your site as well, because it supports their purpose) - "
2787
- "has discounts and coupons (there are many websites for coupon and discounts. "
2788
- "Just search on Google and you'll find many. They'll happily include your "
2789
- "coupon codes and links to your site) - hosts giveaways and contests (many "
2790
- "websites that will happily link to the contest page on your website) %s "
2791
- "Broken Link Building, using tools like Screaming Frog to help you find "
2792
- "broken links.%s Use Squirrly SPY to check the sites which send links to your "
2793
- "competitors or to other websites in your niche (or audience, or market): "
2794
- "[link]https://www.squirrly.co/seo/spy/[/link] %s Many Squirrly users decided "
2795
- "to purchase SPY reports and found out that they easily identified people "
2796
- "from their industry who were easy to reach. This helped them secure new "
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 "
2804
- "increase the number of backlinks. Find more ideas in this resource: https://"
2805
- "www.squirrly.co/how-to-improve-the-site-audit-score-given-by-squirrly-seo-"
2806
- "plugin/. Send it to your team. Brainstorm items from our list which your "
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 "
2834
- "tempted to go to fiverr.com for something like this. Avoid shady SEO. What "
2835
- "you can try, and ONLY if it makes sense, is to get bloggers who sell on "
2836
- "fiverr to place your article (with links to your own site) on their site. %s "
2837
- "You can easily get backlinks from multiple domains by showing that your "
2838
- "business: - is an alternative to some other existing business (there are "
2839
- "many websites on which people look for alternatives and they'll be happy to "
2840
- "include your site as well, because it supports their purpose) - has "
2841
- "discounts and coupons (there are many websites for coupon and discounts. "
2842
- "Just search on Google and you'll find many. They'll happily include your "
2843
- "coupon codes and links to your site) - hosts giveaways and contests (many "
2844
- "websites that will happily link to the contest page on your website) %s "
2845
- "Broken Link Building, using tools like Screaming Frog to help you find "
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 "
2853
- "increase the number of backlinks. Just check out the full documentation "
2854
- "below. Send it to your team. Brainstorm items from our list which your team "
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 "
2876
- "extremely easy way to do this in the SEO Kit of Squirrly: [link]https://www."
2877
- "squirrly.co/seo/kit/[/link] %s You can start doing this even if you don't "
2878
- "have an advanced or complex SEO strategy for all your site's inner links. If "
2879
- "you have pages in your SEO strategy that are super important (you NEED those "
2880
- "pages to be found via search) make sure you add: <meta name=\"robots\" "
2881
- "content=\"index, nofollow\" /> This ensures that Google considers this a "
2882
- "final page. If many other pages link on to this page and this is the final "
2883
- "one, it means that it is the most valuable resource. %s Identify links on "
2884
- "your pages that are not important for you or for the purpose of the site "
2885
- "itself. Maybe you're sending a link to chef Jamie Oliver's recipe for hot "
2886
- "sauce. You should make sure that you add the No Follow tag to that link "
2887
- "going out of your site, because you don't want Google to pass on link juice "
2888
- "to Jaime Oliver. You'd give him a part of your SEO Authority and you don't "
2889
- "want that. You should also add No-Follow tags to internal links from your "
2890
- "very own site. Add no-follow to pages like \"/login\", \"/register\" \"/"
2891
- "terms-of-use\", which are not important to be found via search engines. %s "
2892
- "Add rel=\"nofollow\" to links inside your pages to fix this task. If you'd "
2893
- "want to NoFollow your Sign In page you could do it like this: <a href="
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 "
2901
- "without No-Follow are sites that you'd like to be associated with by Google. "
2902
- "This is to say that in some cases you may want to send do-follow links to "
2903
- "other people's sites if they are super high authority and would help Google "
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 "
2926
- "understanding this: Authority is Squirrly's calculated metric for how well a "
2927
- "given webpage is likely to rank in Google's search results. It collects data "
2928
- "from social media, google analytics and inbound links (backlinks to your own "
2929
- "site) %s You can follow the PRO Tips sections from Audit. %s Get more Buzz "
2930
- "on Social Media. Get More Traffic. Get More Sites to link back to your own "
2931
- "site. That's how you increase your Authority.%s Read the Traffic section of "
2932
- "the Audit for more fixes and ideas. Bringing more Traffic increases "
2933
- "Authority. %s Read the Social Media ideas for getting your pages shared on "
2934
- "social networks. In the SEO Audit from Squirrly. Get more shares and traffic "
2935
- "from social media. That will help boost your overall Web Authority %s Use "
2936
- "Focus Pages from Squirrly: everything we tell you there helps boost your "
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 "
2962
- "website. (the visitors should have the Alexa toolbar installed for Alexa to "
2963
- "be able to measure the traffic). %s You could encourage your visitors to "
2964
- "install the Alexa toolbar (if it makes sense for your business or audience, "
2965
- "of course). %s Increase your SEO rankings, get more shares on social media. "
2966
- "You can use tools like Social Squirrly to make sure you constantly promote "
2967
- "your pages, without doing any manual work. And without forgetting to keep "
2968
- "posting them. [link]https://www.squirrly.co/social-media/tools-for-digital-"
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 "
2991
- "go back and forth in time like the Flash, there are things you can do, like: "
2992
- "make sure your domain can be crawled by search engines. %s Ping your domain "
2993
- "name as soon as possible using Google Search Console. Ask GSC asap to index "
2994
- "your pages. Both by manual URL index and by placing the sitemaps generated "
2995
- "by Squirrly. %s Get your website on Way Back Machine. [link]https://archive."
2996
- "org/web/[/link] Archive.org even has a tool called Save Page Now which will "
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 "
3004
- "not stopping the Google crawlers in your code via \"no-index\" or via robots."
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 "
3025
- "favicon, you'll need to create one. The dimensions are 16 x 16 pixels %s You "
3026
- "can easily create one using this [link]http://www.favicon.cc/[/link] . "
3027
- "Upload it to your own server after creating it. %s Once you have the "
3028
- "favicon, use this in the code of your pages: <link rel=“shortcut icon” "
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 "
3051
- "an Apple Icon, you'll need to create one. The dimensions are 129 x 129 "
3052
- "pixels. It will need to be a .png file %s You can easily create one using "
3053
- "this [link]https://www.canva.com/[/link] . Upload it to your own server "
3054
- "after creating it. %s Once you have the Apple Icon, use this in the code (in "
3055
- "the <head> section) of your pages: %s <link rel=“apple-touch-icon” href=“/"
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
-
3155
- #: models/CheckSeo.php:38
3156
- msgid "Make your site Visible asap"
3157
- msgstr ""
3158
-
3159
- #: models/CheckSeo.php:39
3160
- #, php-format
3161
- msgid ""
3162
- "If you want Google (or any other search engine) to Display your pages and "
3163
- "then Rank them higher in search results, your website needs to be Public and "
3164
- "the pages indexable. Currently, a setting in your WordPress makes this "
3165
- "impossible. You selected '%s' in %sSettings > Reading%s. You need to UNCHECK "
3166
- "that option."
3167
- msgstr ""
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"
3175
- msgstr "Sie blockieren Google zum Indizieren Ihrer Website!"
3176
-
3177
- #: models/CheckSeo.php:40
3178
- #, php-format
3179
- msgid "Uncheck the option: %s in %sSettings > Reading%s."
3180
- msgstr ""
3181
-
3182
- #: models/CheckSeo.php:41
3183
- msgid ""
3184
- "Google can't show your site to anybody, because you haven't made your 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 ""
3197
- "Without the title tag in the front-end, search engines will 'think' that "
3198
- "your website is broken. Currently the title tag is missing in front-end."
3199
- msgstr ""
3200
-
3201
- #: models/CheckSeo.php:54
3202
- #, php-format
3203
- msgid ""
3204
- "Go to %sSquirrly > SEO Settings > Metas%s and switch on 'Optimize the "
3205
- "Titles'. If it's already switched on, check if another plugin is stopping "
3206
- "Squirrly from showing the Title."
3207
- msgstr ""
3208
-
3209
- #: models/CheckSeo.php:55
3210
- msgid ""
3211
- "You have to make the Title tag of the page visible in the front-end of the "
3212
- "website. As soon as possible. Otherwise, you will have difficulty ranking."
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
3228
- #, php-format
3229
- msgid "Activate AMP tracking in %s Squirrly > SEO Settings > Tracking Tools%s "
3230
- msgstr ""
3231
-
3232
- #: models/CheckSeo.php:69
3233
- msgid ""
3234
- "You must activate the AMP settings for Squirrly SEO, right now. Otherwise, "
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 "
3249
- "Title tag on each page of your website and remove any duplicates. Your title "
3250
- "tag determines your display title in SERPs, and it’s meant to help Google "
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 "
3275
- "ultimately an SEO signal. Having a good permalink structure also helps make "
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 > "
3283
- "Settings > Permalinks %s .There, you can create a custom URL structure for "
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. "
3303
- "Activate your Sitemap XML setting. Squirrly SEO will then generate your "
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 "
3311
- "for which types of URLs you'll want to have sitemaps. It depends on your "
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 "
3329
- "what to crawl and what not to crawl on your site. Search bots usually look "
3330
- "for this file in a website as soon as they enter one. Therefore, it's very "
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 "
3338
- "it's already switched on, check if another plugin is stopping Squirrly from "
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 "
3358
- "about your Focus Page. You should fix this so that Squirrly can generate a "
3359
- "complete audit of your page and show you what you need to do to improve its "
3360
- "chances of ranking. %sThe error can also prevent human visitors from "
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 "
3411
- "that you clearly communicate what your site is about to first-time visitors. "
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 "
3419
- "Appearance > Customize from your WP dashboard to access the Customizer. "
3420
- "There, you can customize your tagline. Best Practices: Make sure your "
3421
- "tagline is catchy and reflects your site as a whole (its niche, purpose, the "
3422
- "content that can be found on your site. Include strong keywords in your "
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 "
3441
- "preventing them from appearing in Google Search. This is bad, because it "
3442
- "means Search Engines won't show your most important pages (which should be "
3443
- "your Focus Pages). Removing all no-index tags for your Focus Pages will fix "
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 "
3451
- "not to index this page from your site. Make sure that there is no such "
3452
- "instruction added to %sWordPress > Settings%s, or in a theme, or in a "
3453
- "plugin, or in %sSquirrly SEO's Snippet%s for this page. Also, make sure you "
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 "
3480
- "click on the Visibility category are turned Green. If you see a red element, "
3481
- "follow the indications to turn it Green. That's how you make sure your Focus "
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 "
3520
- "determine which plugin or if your theme is generating the duplicate open "
3521
- "graph meta tag. In this case, the plugin or theme causing this manages 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 "
3549
- "determine which plugin or if your theme is generating the duplicate open "
3550
- "graph meta tag. In this case, the plugin or theme causing this, manages to "
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 "
3582
- "the final table with all of the data for each keyword. Add at least one "
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. "
3602
- "You're well on your way to becoming a SEO Star. Now you can do all this on "
3603
- "your own by using the SEO Live Assistant and the keywords you stored to "
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 "
3611
- "SEO Live Assistant which you find in Edit Post interfaces in WP. Reindex "
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, "
3630
- "which is why you should optimize your Focus Page using keywords. This way, "
3631
- "your page will be displayed to search users who are actually interested in "
3632
- "seeing the content provided in it. Choose different keywords for each of "
3633
- "your Focus pages. That way, instead of competing with each other, your pages "
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 "
3641
- "be optimized using Squirrly's SEO Live Assistant. Go to Edit Post and start "
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 "
3659
- "the Search Volume, Competition, Recent Discussions and Trend for the "
3660
- "keyword. Otherwise, you might be going with a keyword that can't be ranked, "
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 "
3687
- "thousand times more money on their SEO can do that. Just switch to a "
3688
- "different keyword and you will get to the desired results (ranking and "
3689
- "traffic). This is real SEO you are doing right now. You're acting like an "
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 "
3716
- "below this percentage. As a future SEO Star, you need to practice optimizing "
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-"
3743
- "level connection and goes beyond just allowing GSC to track your site. "
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 "
3770
- "Google's index. Don't expect Google to index the latest version of your page "
3771
- "if you skip doing this. As a SEO Star you need to start building a strong "
3772
- "muscle for doing this. Requesting re-index will need to become a habit to "
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 "
3798
- "decisions. By adding your Focus Page's keyword to the Rankings section, "
3799
- "you'll know the true position of your website in Google for that keyword. "
3800
- "Checking the keyword yourself, manually, will give you fake information. You "
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 "
3808
- "from the list, and click on the three dots you see on the far right. Then "
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 "
3828
- "this page isn't bringing you top results. In the past 2 months, this keyword "
3829
- "did NOT rank higher than the 21st position in Google. You can achieve better "
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 "
3837
- "to this page and use SEO Live Assistant to optimize it for a different main "
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 "
3856
- "their pages. If you want to be an SEO star, you need to push yourself and "
3857
- "get it all the way up to 90 (try 100). The more you practice, the easier it "
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 "
3865
- "guidance it provides to 100% optimize your page. Re-index your page with "
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 "
3883
- "Wikipedia, Facebook, Jamie Oliver, etc. without mentioning 'nofollow', then "
3884
- "you are also sending them the authority you are trying to build up for your "
3885
- "own site. That's really bad, and makes your pages unable to rank high "
3886
- "enough. Because some links are hard for Non-SEO Experts to turn to "
3887
- "'nofollow' we recommend a plugin that does this for you. You can find it on "
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 "
3912
- "monitor the traffic that your Focus Pages are getting, and figure your next "
3913
- "steps based on that. Also, much of SEO these days is based on how much time "
3914
- "people spend on your site, so to give you accurate Chances of Ranking, "
3915
- "Squirrly's SML needs to see this data. To ensure Google gets 100% accuracy "
3916
- "on how people spend time on your site, use the plugin we recommend in "
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 "
3942
- "re-indexes for your pages, using Google Search Console. Your theme might be "
3943
- "generating many types of pages, which are different from ordinary pages in "
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. "
3951
- "Click on a dot to see all sub-tasks in the right sidebar of the plugin. "
3952
- "Click on each Red or Green item. Read the pop-up instructions and turn all "
3953
- "red elements to green. Then re-index in Google Search Console. After that, "
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 "
3973
- "a secondary keyword that is related to your primary keywords, you're sending "
3974
- "additional signals to search engines to help them understand and rank the "
3975
- "page. Example: if you have page about 'dog food', you should optimize the "
3976
- "page for one or two dog breeds as well, so that you make it clear to Google "
3977
- "that it is about the animal 'dog', and NOT about a friend 'like in Yo, "
3978
- "dog!'. On [link]https://squirrly.co/seo/kit/[/link] you can see a video that "
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 "
4004
- "Context for your Focus Page, you may find out that your secondary keywords "
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 "
4031
- "of the images in your Focus Pages is: keyword.jpg. Takes less than 5 minutes "
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 "
4058
- "way. As a future SEO star, it's important to understand the significance of "
4059
- "keyword organization and how big a role it plays in achieving a high-"
4060
- "performing search campaign. On [link]https://squirrly.co/seo/kit/[/link] you "
4061
- "can see the Direct 1, Direct 2, Direct 3, Direct 4 and Indirect keywords "
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 "
4069
- "keywords to organize them into tighter, more relevant groups based on 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 "
4088
- "should give them more votes (link to them from many pages in your site; "
4089
- "these are called inner-links). Even if you need to create new pages to link "
4090
- "from, it will still be worth it. Some of our users wrote just one article to "
4091
- "get an inner link for their Focus Page, and the next day they were on the "
4092
- "1st page of Google with 4 keywords. [link]https://chiefcontent.com/s1-e4-"
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 "
4115
- "impact of your work and pivot your priorities when you see that a current "
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 "
4123
- "Squirrly's Rankings section. Go to %sResearch > Briefcase%s, choose a "
4124
- "keyword you want to track and click on Send to Rank Checker. Squirrly will "
4125
- "start showing you the true position of your site for that kewyord. Repeat "
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 "
4141
- "research, the more a blogger researches keywords, the more likely they are "
4142
- "to report success. Bloggers who are also SEOs report “strong results” at "
4143
- "much higher than average rates. Get at least 10 keywords inside the "
4144
- "Briefcase section to get started. With powerful keyword research and the SEO "
4145
- "Live Assistant, we managed to outrank Amazon, Stack Overflow, Moz and a few "
4146
- "others. Read more on [link]https://squirrly.co/seo/kit/[/link] in the "
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 "
4154
- "topics you want to rank on Search Engines, and that are important for your "
4155
- "research. If you need help coming up with ideas, %syou can use these keyword "
4156
- "research formulas%s. When you find a good keyword opportunity, save it to "
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 "
4174
- "Experts love this feature, because it simply handles everything important. "
4175
- "(especially if you already turned Platform SEO to Green inside Focus Pages "
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, "
4198
- "because people are more likely to click on articles that were published "
4199
- "recently. And your CTR improving tells Google that your page is the better "
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 "
4224
- "the page, and help indicate the value a Google user will get by clicking on "
4225
- "that page. Not having these elements defined for your pages will make you "
4226
- "lose precious points with both Search Engines and Humans. 36% of SEO experts "
4227
- "think the headline/title tag is the most important SEO element. Each one 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 "
4253
- "opportunity by making sure that all the Twitter tags are in place for your "
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 "
4280
- "lack these tags, then you're risking that an unrelated image or inaccurate "
4281
- "description will be shown. On the flip side, having these tags helps you "
4282
- "harness the power of social media and boost your social media CTR. Using "
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 "
4308
- "Star, you need to make sure your site has this JSON-LD properly defined. You "
4309
- "can let Squirrly SEO Automatically handle JSON-LD definitions, or you can "
4310
- "switch to Custom and use the tool that we link to in order to create your "
4311
- "very own definition. Once you're done there, you can come back and paste the "
4312
- "code into the custom section of your page's snippet for JSON-LD. For most "
4313
- "pages, you should let this setting to Auto, though. Also, make sure you've "
4314
- "completed everything about your organization or personal brand in Squirrly > "
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 "
4334
- "short articles, making it ideal for backlink acquisition. The Journey to "
4335
- "Better Ranking from Squirrly SEO gives you many ideas on how to easily make "
4336
- "your pages longer. It might seem daunting at first, but after making a few "
4337
- "pages it will become easy to do. Plus, Squirrly SML showed that in ALL "
4338
- "industries where there is a bit of competition (meaning, other site owners "
4339
- "who have decent sites), the 1,500 words is a powerful differentiator which "
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-"
4347
- "to-better-ranking-day-12/[/link] . Re-index with Google Search Console when "
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, "
4365
- "reaching perfect SEO optimization is a skill you must master as well, as it "
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 "
4373
- "on a red or green light, then look at the right sidebar. There you will see "
4374
- "all elements that compose the final SEO Content scoring to achieve RED or "
4375
- "Green. Click on each RED element and read how to make it green (the ones "
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 "
4393
- "vital to marketing mastery and to maximizing your site's marketing "
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 "
4401
- "the screen and turn those RED lights from Red to Green. Click on each "
4402
- "element and you'll find out what you need to do to complete the task and "
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 "
4449
- "some of the best sites in the world when it comes to SEO. Most of their SEO "
4450
- "power comes from strong internal linking. Since Focus Pages are the most "
4451
- "important pages in your site, you should give them more votes (link to them "
4452
- "from many pages in your site). Even if you need to create new pages to link "
4453
- "from, it will stil be worth it. Make sure that you place the links inside "
4454
- "the content of the page, not in menus, footers, etc. (those don't bring the "
4455
- "same power when it comes to SEO signals). On https://squirrly.co/seo/kit/ "
4456
- "you can see an advanced content marketing strategy related to Long-Form "
4457
- "content and Complementary Content. That will help you think more creatively "
4458
- "about inner links. Also, in the Rank Show series you can see how one website "
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 "
4466
- "time creating new content. Then, re-index with Google Search Console (each "
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 "
4484
- "you don't give it enough traffic, it will not have enough data to figure out "
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 "
4492
- "link to your Page. Get detailed information and more ideas on how you can "
4493
- "start bringing some traffic to your Focus pages on [link]https://squirrly.co/"
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 "
4595
- "description on its own, based on the content inside the URL, but it's still "
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 "
4607
- "duplicate titles and descriptions (and even duplicate written text inside "
4608
- "pages) If you copy the same thing over and over again, search engines will "
4609
- "penalize you. Go to [link]https://squirrly.co/seo/kit/[/link] to see the 4 "
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 "
4636
- "rank high on Google, your pages need to load fast. On [link]https://squirrly."
4637
- "co/seo/kit/[/link] you can find an Upgraded Version of ShortPixel, which "
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 "
4661
- "are most relevant for them, Google doesn't want to show pages that have a "
4662
- "high bounce rate. A high bounce rate is common for landing pages, but if you "
4663
- "have a page that has long-form content that aims to educate or inform "
4664
- "visitors, then a high bounce rate is a symptom that something is wrong in "
4665
- "your strategy. Either you’re not attracting the right site visitor or the "
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' "
4673
- "experience on your site, and making sure your page loads fast. More "
4674
- "strategies (and a quick-fix plugin) here: [link]https://squirrly.co/seo/kit/"
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 "
4690
- "this interaction tells Google that content on your page is interesting and "
4691
- "relevant. The longer people stay on your Focus Pages, the higher they will "
4692
- "appear in the search engine rankings. Right now, the average time on page "
4693
- "for your Focus Pages is under 1 minute, which is not good. Sometimes Google "
4694
- "takes you down from the first Page of Google if it 'sees' people don't spend "
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 "
4702
- "better to make your page easy to scan, ensure your page is laser-focused on "
4703
- "what visitors expect to get from it, experiment with interactive 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 "
4719
- "Facebook shares to a web page and shot up the rankings for keyword phrases "
4720
- "that were competitive. Our own SML (Squirrly Machine Learning) discovered "
4721
- "ranking increases on tens of thousands of pages after they started getting "
4722
- "shared to social media platforms. The biggest SEO experts agree that social "
4723
- "media helps your SEO efforts. Strive to get as many social media shares as "
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 "
4731
- "and images, make social media share buttons super easy to find, include "
4732
- "calls-to-action that encourage site visitors to share. More proven methods "
4733
- "you can use here: [link]https://howto.squirrly.co/wordpress-seo/journey-to-"
4734
- "better-ranking-day-6/[/link]. For a complete framework, get access to our "
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 "
4752
- "Learning fine tunes the data, according to the data sets we've been "
4753
- "studying). Google has such a system as well, and we are basically "
4754
- "replicating what they're doing. To improve this you need: traffic to the "
4755
- "page, good traffic metrics (time on page, low bounce rate), inner links, "
4756
- "outbound links set to 'nofollow', backlinks (links from 3rd party sites to "
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 "
4774
- "results, because this shows Google that a certain link is the result that "
4775
- "best matches the user’s search intent. Right now, NOT enough people click on "
4776
- "your listing, but writing a more enticing title and description can help "
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 "
4784
- "the description clearly states what your page is about, and add a CTA that "
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 "
4805
- "you keep working on solving issues unveiled by the weekly Audit. You need a "
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 "
4813
- "use the Compare Audit button to compare multiple audits and see how far "
4814
- "you've come along. Read about the aspects you can work on to improve your "
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 "
4834
- "time creating new content. Then, re-index with Google Search Console (each "
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 "
4846
- "this interaction tells Google that content on your page is interesting and "
4847
- "relevant. The longer people stay on your Focus Pages, the higher they will "
4848
- "appear in the search engine rankings. Right now, the average time on page "
4849
- "for your Focus Pages is under 1.5 minutes, which is not ideal. One thing you "
4850
- "can do is check if all traffic sources send you people who spend very little "
4851
- "time on your pages. If that's the case, make sure those sources stop sending "
4852
- "you traffic. Yes, there is such a thing as 'bad traffic' and it can hurt "
4853
- "your positions in Google. Also, you need to use [link]https://squirrly.co/"
4854
- "seo/kit/[/link] and make sure Google reads the correct time on page. Most of "
4855
- "the time, it doesn't, because its tracker gets a 'timeout'. In the kit, "
4856
- "you'll find a plugin that doesn't allow google to time out. And it will "
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 "
4864
- "better to make your page easy to scan, ensure your page is laser-focused on "
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 ~ "
4880
- "1 billion pages) without any referring domains get NO traffic from Google. "
4881
- "There is also a positive correlation between the number of unique referring "
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 "
4889
- "Squirrly SPY reports on your competitors to find websites which link to your "
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 "
4905
- "and images, make social media share buttons super easy to find, include "
4906
- "calls-to-action that encourage site visitors to share. More proven methods "
4907
- "you can use here: https://howto.squirrly.co/wordpress-seo/journey-to-better-"
4908
- "ranking-day-6/. For a complete framework, get access to our 10,000 Visits "
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 "
4916
- "Facebook shares to a web page and shot up the rankings for keyword phrases "
4917
- "that were very competitive. Our own SML (Squirrly Machine Learning) "
4918
- "discovered ranking increases on tens of thousands of pages after they "
4919
- "started getting shared to social media platforms. The biggest SEO experts "
4920
- "agree that social media helps your SEO efforts. Strive to get as many social "
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 "
4951
- "you keep working on solving issues unveiled by the weekly Audit. You need a "
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 "
4959
- "use the Compare Audit button to compare multiple audits and see how far "
4960
- "you've come along. Read about the aspects you can work on to improve your "
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 "
4976
- "this interaction tells Google that content on your page is interesting and "
4977
- "relevant. The longer people stay on your Focus Pages, the higher they will "
4978
- "appear in the search engine rankings. Right now, the average time on page "
4979
- "for your Focus Pages is under 2 minutes. You can make changes to improve "
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 "
4987
- "is right. It's also worth checking what are your traffic sources, as some "
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 ~ "
5006
- "1 billion pages) without any referring domains get NO traffic from Google. "
5007
- "There is also a positive correlation between the number of unique referring "
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 "
5015
- "Squirrly SPY reports on your competitors to find websites which link to your "
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 "
5031
- "Squirrly SPY reports on your competitors to find websites which link to your "
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 "
5051
- "Learning fine tunes the data, according to the data sets we've been "
5052
- "studying). Google has such a system as well, and we are basically "
5053
- "replicating what they're doing. To improve this, you need: traffic to the "
5054
- "page, good traffic metrics (time on page, low bounce rate), inner links, "
5055
- "outbound links set to \"nofollow\", backlinks (links from 3rd party sites to "
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 "
5073
- "competitors (just see who is currently listed top 10 in Google for your main "
5074
- "keyword for each Focus Page). You will see which sites link to them. Then "
5075
- "you can talk to those site owners and ask them how they can include you as "
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. "
5194
- "It’s important to do everything on your end to ensure that the 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 "
5218
- "from the one they originally requested. That’s because you set up a 301 or a "
5219
- "302 redirect for this page. %s A redirect indicates that your Focus Page has "
5220
- "moved to a different location. If the wrong type of redirect has been set "
5221
- "up, search engines can be become confused as to which page they should rank. "
5222
- "%s A redirect also interferes with how Squirrly’s Focus Pages system "
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 "
5246
- "audit your Focus Page. You need to fix this so that Squirrly SEO can analyze "
5247
- "your page and serve you complete data on how to improve its chances of "
5248
- "ranking. %sThe error can also prevent human visitors from accessing your "
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 "
5265
- "server may be down, or maybe your server is inadvertently blocking "
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
-
5414
- # @ squirrly-seo
5415
- #: models/Ico.php:43
5416
- #, fuzzy
5417
- #| msgid "File type error: Only JPEG, JPG, GIF or PNG files are allowed."
5418
- msgid "File type error: Only ICO, JPEG, JPG, GIF or PNG files are allowed."
5419
- msgstr "Dateityp Fehler: Nur JPEG, JPG, GIF oder PNG-Dateien sind erlaubt."
5420
-
5421
- # @ squirrly-seo
5422
- #: models/Ico.php:52
5423
- msgid "Delete error: Could not delete the old favicon."
5424
- msgstr "Lösch Fehler: Konnte das alte Favicon nicht löschen."
5425
-
5426
- # @ squirrly-seo
5427
- #: models/Ico.php:59
5428
- msgid "Upload error: Could not upload the favicon."
5429
- msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
5430
-
5431
- # @ squirrly-seo
5432
- #: models/Ico.php:65
5433
- msgid "Permission error: Could not change the favicon permissions."
5434
- msgstr "Permission Fehler: Konnte Favicon-Berechtigungen nicht ändern."
5435
-
5436
- # @ squirrly-seo
5437
- #: models/Ico.php:86
5438
- msgid ""
5439
- "ICO Error: Could not create the ICO from file. Try with another file type."
5440
- msgstr ""
5441
- "ICO Fehler: konnte ICO aus der Datei nicht erstellen. Versuchen Sie es mit "
5442
- "einem anderen Dateityp."
5443
-
5444
- # @ squirrly-seo
5445
- #: models/Ico.php:103
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
-
6001
- #: models/Post.php:73
6002
- msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
6003
- msgstr ""
6004
-
6005
- #: models/Post.php:74
6006
- msgid ""
6007
- "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
6008
- "the HTML form."
6009
- msgstr ""
6010
-
6011
- #: models/Post.php:75
6012
- msgid "The uploaded file was only partially uploaded."
6013
- msgstr ""
6014
-
6015
- #: models/Post.php:76
6016
- msgid "No file was uploaded."
6017
- msgstr ""
6018
-
6019
- #: models/Post.php:78
6020
- msgid "Missing a temporary folder."
6021
- msgstr ""
6022
-
6023
- #: models/Post.php:79
6024
- msgid "Failed to write file to disk."
6025
- msgstr ""
6026
-
6027
- #: models/Post.php:80
6028
- msgid "File upload stopped by extension."
6029
- msgstr ""
6030
-
6031
- #: models/Post.php:97
6032
- msgid "Invalid form submission."
6033
- msgstr ""
6034
-
6035
- #: models/Post.php:107
6036
- msgid "File is empty. Please upload something more substantial."
6037
- msgstr ""
6038
-
6039
- #: models/Post.php:109
6040
- msgid ""
6041
- "File is empty. Please upload something more substantial. This error could "
6042
- "also be caused by uploads being disabled in your php.ini or by post_max_size "
6043
- "being defined as smaller than upload_max_filesize in php.ini."
6044
- msgstr ""
6045
-
6046
- #: models/Post.php:115
6047
- msgid "Specified file failed upload test."
6048
- msgstr ""
6049
-
6050
- #: models/Post.php:128
6051
- msgid "Sorry, this file type is not permitted for security reasons."
6052
- msgstr ""
6053
-
6054
- #: models/Post.php:153
6055
- #, php-format
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 "
6136
- "as having an introduction, a conclusion (in which you state the topic you're "
6137
- "writing about). Also, you can improve their reading experience by avoiding "
6138
- "repetitions."
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
6258
- #| msgid "Optimize for Keyword"
6259
- msgid "Snippet optimized"
6260
- msgstr "Schlüsselwort optimieren"
6261
-
6262
- #: models/PostsList.php:48 models/PostsList.php:74
6263
- msgid "task(s) remained."
6264
- msgstr ""
6265
-
6266
- #: models/PostsList.php:52 models/PostsList.php:78
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
6279
- #, fuzzy
6280
- #| msgid "Squirrly LIVE SEO assistant"
6281
- msgid "Squirrly SEO Editor"
6282
- msgstr "Squirrly LIVE SEO-Assistent"
6283
-
6284
- # @ squirrly-seo
6285
- #: models/RoleManager.php:97
6286
- #, fuzzy
6287
- #| msgid "Squirrly LIVE SEO assistant"
6288
- msgid "Squirrly SEO Admin"
6289
- msgstr "Squirrly LIVE SEO-Assistent"
6290
-
6291
- #: models/Snippet.php:250
6292
- msgid "You don't have enough pemission to edit this article"
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
-
6374
- # @ squirrly-seo
6375
- #: models/bulkseo/Metas.php:57
6376
- #, fuzzy
6377
- #| msgid "Description:"
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
6391
- msgid ""
6392
- "The title for this URL must not be empty. %s Write a title for this page. "
6393
- "The title is very important because it shows up in the browser tab and in "
6394
- "the Google listing for your page. %s The better you write the title, the "
6395
- "more clicks you can get when people find your page on search engines."
6396
- msgstr ""
6397
-
6398
- # @ squirrly-seo
6399
- #: models/bulkseo/Metas.php:63
6400
- #, fuzzy, php-format
6401
- #| msgid "Tips: Length 10-70 chars"
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
6414
- #: models/bulkseo/Twittercard.php:80 models/bulkseo/Twittercard.php:90
6415
- msgid "chars"
6416
- msgstr ""
6417
-
6418
- #: models/bulkseo/Metas.php:66 models/bulkseo/Opengraph.php:85
6419
- #: models/bulkseo/Twittercard.php:81
6420
- #, php-format
6421
- msgid ""
6422
- "Title has to be longer than %s chars and up to %s chars. %s You can change "
6423
- "the title max length from %sSEO Settings > Automation%s."
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"
6431
- msgstr "Schlüsselwort:"
6432
-
6433
- # @ squirrly-seo
6434
- #: models/bulkseo/Metas.php:70 models/bulkseo/Metas.php:88
6435
- #, fuzzy
6436
- #| msgid "Keyword:"
6437
- msgid "Snippet Keyword"
6438
- msgstr "Schlüsselwort:"
6439
-
6440
- # @ squirrly-seo
6441
- #: models/bulkseo/Metas.php:71 models/bulkseo/Metas.php:89
6442
- #, fuzzy
6443
- #| msgid "Keywords:"
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 "
6451
- "important element through which you make sure that you connect the "
6452
- "searcher's intent to the content on your page. %s If I'm looking for \"buy "
6453
- "cheap smartwatch\" and you give me a page called \"Luna Presentation\", I "
6454
- "will never click your page. Why? Because I might not know that Luna is a "
6455
- "smartwatch designed by VectorWatch. %s \"Buy Cheap Smartwatch - Luna by "
6456
- "VectorWatch\" would be a much better choice for a title."
6457
- msgstr ""
6458
-
6459
- # @ squirrly-seo
6460
- #: models/bulkseo/Metas.php:75
6461
- #, fuzzy
6462
- #| msgid "Description:"
6463
- msgid "Description not empty"
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"
6472
- msgstr "Beschreibung:"
6473
-
6474
- #: models/bulkseo/Metas.php:78
6475
- #, php-format
6476
- msgid ""
6477
- "Meta descriptions are important for SEO on multiple search engines. %s You "
6478
- "need to have a meta description for this URL. %s The better you write it, "
6479
- "the higher the chances of people clicking on your listing when they find it "
6480
- "on search engines."
6481
- msgstr ""
6482
-
6483
- # @ squirrly-seo
6484
- #: models/bulkseo/Metas.php:81
6485
- #, fuzzy, php-format
6486
- #| msgid "Description:"
6487
- msgid "Description up to %s chars"
6488
- msgstr "Beschreibung:"
6489
-
6490
- # @ squirrly-seo
6491
- #: models/bulkseo/Metas.php:82
6492
- #, fuzzy
6493
- #| msgid "Description:"
6494
- msgid "Current Description Length"
6495
- msgstr "Beschreibung:"
6496
-
6497
- #: models/bulkseo/Metas.php:84 models/bulkseo/Opengraph.php:95
6498
- #: models/bulkseo/Twittercard.php:91
6499
- #, php-format
6500
- msgid ""
6501
- "Description has to be longer than %s chars and up to %s chars. %s You can "
6502
- "change the description max length from %sSEO Settings > Automation%s."
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"
6510
- msgstr "Wettbewerb:"
6511
-
6512
- #: models/bulkseo/Metas.php:90
6513
- #, php-format
6514
- msgid ""
6515
- "Same as with the title task. %s If a user reads the description of your page "
6516
- "on Google, but cannot find the keyword they searched for in that text, then "
6517
- "they'd have very low chances of actually clicking and visiting your page. %s "
6518
- "They'd go to the next page ranked on Google for that keyword. %s Think about "
6519
- "this: Google itself is trying more and more to display keywords in the "
6520
- "description of the pages it brings to TOP 10. It's pretty clear they care a "
6521
- "lot about this, because that's what people want to find on the search engine."
6522
- msgstr ""
6523
-
6524
- # @ squirrly-seo
6525
- #: models/bulkseo/Metas.php:93
6526
- #, fuzzy
6527
- #| msgid "Keyword:"
6528
- msgid "Meta Keywords (2-4 Words)"
6529
- msgstr "Schlüsselwort:"
6530
-
6531
- # @ squirrly-seo
6532
- #: models/bulkseo/Metas.php:95
6533
- #, fuzzy
6534
- #| msgid "Enter a keyword"
6535
- msgid "no meta keywords"
6536
- msgstr "Ein Schlüsselwort eingeben"
6537
-
6538
- #: models/bulkseo/Metas.php:96
6539
- msgid ""
6540
- "Even if Meta keywords are not mandatory for Google, it's important for other "
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
6553
- msgid ""
6554
- "You don't have to set any canonical link if your post is not copied from "
6555
- "another source. %s Squirrly will alert you if your canonical link is not the "
6556
- "same with the current post's URL. %s The canonical link is used to tell "
6557
- "search engines which URL is the original one. The original is the one that "
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 ""
6570
- "Some Squirrly Metas are not set correctly. Click to open the Assistant in "
6571
- "the right sidebar and follow the instructions."
6572
- msgstr ""
6573
-
6574
- # @ squirrly-seo
6575
- #: models/bulkseo/Metas.php:121
6576
- #, fuzzy
6577
- #| msgid "<< Leave it automatically"
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 ""
6663
-
6664
- # @ squirrly-seo
6665
- #: models/bulkseo/Opengraph.php:78
6666
- #, fuzzy
6667
- #| msgid "Description:"
6668
- msgid "OG title not empty"
6669
- msgstr "Beschreibung:"
6670
-
6671
- #: models/bulkseo/Opengraph.php:80
6672
- #, php-format
6673
- msgid ""
6674
- "You need to have an Open Graph title for this post. %s It will help you "
6675
- "control the way your post looks when people share this URL to Facebook, "
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
6688
- #, fuzzy
6689
- #| msgid "Description:"
6690
- msgid "OG description not empty"
6691
- msgstr "Beschreibung:"
6692
-
6693
- #: models/bulkseo/Opengraph.php:90
6694
- #, php-format
6695
- msgid ""
6696
- "You need to have an Open Graph description for this post. %s It will help "
6697
- "you control the way your post looks when people share this URL to Facebook, "
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"
6713
- msgstr "Bilder"
6714
-
6715
- #: models/bulkseo/Opengraph.php:99 models/bulkseo/Twittercard.php:95
6716
- msgid "(featured image)"
6717
- msgstr ""
6718
-
6719
- #: models/bulkseo/Opengraph.php:100
6720
- #, php-format
6721
- msgid ""
6722
- "Set a good looking image for your URL. It needs to look good in Facebook and "
6723
- "LinkedIN feeds when people will share this URL. %s A great image will "
6724
- "attract more clicks to your site."
6725
- msgstr ""
6726
-
6727
- # @ squirrly-seo
6728
- #: models/bulkseo/Opengraph.php:114
6729
- #, fuzzy
6730
- #| msgid "<< Leave it automatically"
6731
- msgid "Open Graph is deactivated."
6732
- msgstr "<< Lass es automatisch"
6733
-
6734
- #: models/bulkseo/Opengraph.php:119
6735
- msgid ""
6736
- "Open Graph is not set correctly. Click to open the Assistant in the right "
6737
- "sidebar and follow the instructions."
6738
- msgstr ""
6739
-
6740
- # @ squirrly-seo
6741
- #: models/bulkseo/Opengraph.php:124
6742
- #, fuzzy
6743
- #| msgid "<< Leave it automatically"
6744
- msgid "Open Graph is generated automatically."
6745
- msgstr "<< Lass es automatisch"
6746
-
6747
- # @ squirrly-seo
6748
- #: models/bulkseo/Opengraph.php:127
6749
- #, fuzzy
6750
- #| msgid "<< Leave it automatically"
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 ""
6778
-
6779
- # @ squirrly-seo
6780
- #: models/bulkseo/Twittercard.php:74
6781
- #, fuzzy
6782
- #| msgid "Description:"
6783
- msgid "TC title not empty"
6784
- msgstr "Beschreibung:"
6785
-
6786
- #: models/bulkseo/Twittercard.php:76
6787
- #, php-format
6788
- msgid ""
6789
- "You need to have a title for the Twitter Card of this post. %s It will help "
6790
- "you control the way your post looks when it's shared on Twitter. %s It's "
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
6803
- #, fuzzy
6804
- #| msgid "Description:"
6805
- msgid "TC Description not empty"
6806
- msgstr "Beschreibung:"
6807
-
6808
- #: models/bulkseo/Twittercard.php:86
6809
- #, php-format
6810
- msgid ""
6811
- "You need to have a Twitter Card description for this post. %s It will help "
6812
- "you control the way your post looks when people share this URL on Twitter. "
6813
- "Good copywriting on your Twitter Card description will attract more clicks "
6814
- "to your site. %s It's also important for SEO purposes."
6815
- msgstr ""
6816
-
6817
- # @ squirrly-seo
6818
- #: models/bulkseo/Twittercard.php:89
6819
- #, fuzzy, php-format
6820
- #| msgid "Description:"
6821
- msgid "TC description up to %s chars"
6822
- msgstr "Beschreibung:"
6823
-
6824
- # @ squirrly-seo
6825
- #: models/bulkseo/Twittercard.php:94
6826
- #, fuzzy
6827
- #| msgid "Images"
6828
- msgid "TC Image"
6829
- msgstr "Bilder"
6830
-
6831
- #: models/bulkseo/Twittercard.php:96
6832
- #, php-format
6833
- msgid ""
6834
- "Set a good looking image for your URL. It needs to look good in Twitter "
6835
- "feeds when people will share this URL. %s A great image will attract more "
6836
- "clicks to your site."
6837
- msgstr ""
6838
-
6839
- #: models/bulkseo/Twittercard.php:110
6840
- #, fuzzy
6841
- #| msgid "Optimize for Keyword"
6842
- msgid "Twitter Card is deactivated."
6843
- msgstr "Schlüsselwort optimieren"
6844
-
6845
- #: models/bulkseo/Twittercard.php:115
6846
- msgid ""
6847
- "Twitter Card is not set correctly. Click to open the Assistant in the right "
6848
- "sidebar and follow the instructions."
6849
- msgstr ""
6850
-
6851
- # @ squirrly-seo
6852
- #: models/bulkseo/Twittercard.php:120
6853
- #, fuzzy
6854
- #| msgid "<< Leave it automatically"
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"
6884
- msgstr ""
6885
-
6886
- #: models/bulkseo/Visibility.php:28
6887
- #, php-format
6888
- msgid ""
6889
- "Let Google Index this page. %s You need to make sure your settings are "
6890
- "turned to green for the 'let Google index this page' section of this URL's "
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
-
6898
- #: models/bulkseo/Visibility.php:32
6899
- #, php-format
6900
- msgid ""
6901
- "Pass SEO authority to this page. %s If you want this page to really be "
6902
- "visible, then you must allow the flow of authority from the previous pages "
6903
- "to this one. %s The previous page means any page that leads to the current "
6904
- "one. Passing authority from the previous page to this one will improve the "
6905
- "current page's visibility. %s You need to make sure your settings are turned "
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
6918
- msgid ""
6919
- "Turn the 'Show it in Sitemap.xml' toggle to green (ON). %s That setting "
6920
- "helps you control if the current URL should be found within the sitemap. "
6921
- "There are pages you will want in the sitemap, and pages that you will want "
6922
- "out of the sitemap. %s If your purpose is to maximize visibility for the "
6923
- "current URL, then you need to add it to Sitemap."
6924
- msgstr ""
6925
-
6926
- #: models/bulkseo/Visibility.php:50
6927
- msgid "Some visibility options are inactive."
6928
- msgstr ""
6929
-
6930
- #: models/bulkseo/Visibility.php:55
6931
- msgid ""
6932
- "Visibility is not set correctly. Click to open the Assistant in the right "
6933
- "sidebar and follow the instructions."
6934
- msgstr ""
6935
-
6936
- #: models/bulkseo/Visibility.php:59
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
-
6992
- #: models/focuspages/Accuracy.php:21
6993
- msgid "Rank accuracy"
6994
- msgstr ""
6995
-
6996
- #: models/focuspages/Accuracy.php:22
6997
- #, php-format
6998
- msgid ""
6999
- "Do you need better accuracy for your ranking results? %s Look at the "
7000
- "%sBusiness Plan%s pricing for Squirrly SEO. %s The SERP Checker Available on "
7001
- "FREE and PRO Plans is made via Search Console integration, which means that "
7002
- "the information is not as accurate as possible and will not clearly depict "
7003
- "the exact position in Google. %s Why? %s Google uses an average when it "
7004
- "comes to the position. And it's not the true position. The average is made "
7005
- "according to the positions that the page was found on when users did click "
7006
- "on it. %s Also, the data inside Search Console is a bit old, so if you're "
7007
- "actively trying to increase your rankings day in and day out, you need the "
7008
- "Business Plan. %s If you just want casually to know your rankings and not "
7009
- "care about FULL accuracy, then you can stick with your current plan."
7010
- msgstr ""
7011
-
7012
- # @ squirrly-seo
7013
- #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
7014
- #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
7015
- #: models/focuspages/Indexability.php:95 models/focuspages/Traffic.php:101
7016
- #, fuzzy
7017
- #| msgid "Google %sAnalytics ID%s`:"
7018
- msgid "Connect Google Search"
7019
- msgstr "Google %sAnalytics ID%s`:"
7020
-
7021
- # @ squirrly-seo
7022
- #: models/focuspages/Audit.php:101
7023
- #, fuzzy, php-format
7024
- #| msgid "Squirrly settings"
7025
- msgid "Audit score is over %s"
7026
- msgstr "Squirrly Einstellungen"
7027
-
7028
- #: models/focuspages/Audit.php:104
7029
- #, php-format
7030
- msgid ""
7031
- "Even though we recommend getting an Audit score of 84 or above, a score of "
7032
- "%s will do. %s The %sAudit%s made by Squirrly takes a lot of things into "
7033
- "account: blogging, SEO, social media, links, authority, traffic. All these "
7034
- "aspects contribute directly or indirectly to the overall SEO of your site. "
7035
- "%s Therefore, without a good score on your Audit it's quite probable for "
7036
- "Google not to position your pages high enough, because overall your website "
7037
- "is not doing good enough for it to be considered a priority. %s A page will "
7038
- "not rank high if most of the website has low quality SEO and low marketing "
7039
- "metrics."
7040
- msgstr ""
7041
-
7042
- # @ squirrly-seo
7043
- #: models/focuspages/Audit.php:107
7044
- #, fuzzy
7045
- #| msgid "Description:"
7046
- msgid "No duplicate titles"
7047
- msgstr "Beschreibung:"
7048
-
7049
- #: models/focuspages/Audit.php:108
7050
- #, php-format
7051
- msgid ""
7052
- "Make sure that you don't have duplicate titles across pages from your site. "
7053
- "%s If you do, then use canonical links to point the duplicate pages towards "
7054
- "the original. %s Otherwise, if it's too hard to customize too many titles at "
7055
- "once, simply use the Patterns feature from Squirrly. You'll be able to "
7056
- "define patterns, so that your titles will seem to be unique. %s Go to "
7057
- "%sSquirrly > SEO Settings > Automation%s. There you will find the Patterns "
7058
- "tab."
7059
- msgstr ""
7060
-
7061
- # @ squirrly-seo
7062
- #: models/focuspages/Audit.php:111
7063
- #, fuzzy
7064
- #| msgid "Description:"
7065
- msgid "No duplicate description"
7066
- msgstr "Beschreibung:"
7067
-
7068
- #: models/focuspages/Audit.php:112
7069
- #, php-format
7070
- msgid ""
7071
- "Make sure that your pages do not have duplicate descriptions. %s This is "
7072
- "super easy to fix if you're using the SEO Automation feature from Squirrly "
7073
- "SEO, because it will generate your META description automatically from the "
7074
- "content of your page (in case you didn't already place a custom "
7075
- "description). %s If you want to fix this problem by giving the problematic "
7076
- "pages their own custom descriptions: go to the %sSquirrly SEO > Bulk SEO%s "
7077
- "and see which pages have this problem."
7078
- msgstr ""
7079
-
7080
- # @ squirrly-seo
7081
- #: models/focuspages/Audit.php:115
7082
- #, fuzzy
7083
- #| msgid "Description:"
7084
- msgid "No empty titles"
7085
- msgstr "Beschreibung:"
7086
-
7087
- #: models/focuspages/Audit.php:116
7088
- #, php-format
7089
- msgid ""
7090
- "Make sure that you do not have pages with empty titles. %s This means: pages "
7091
- "where you haven't placed a meta title in your Snippet. %s Features like SEO "
7092
- "Automation or SEO Snippet from Squirrly SEO will help you easily fix this "
7093
- "problem by either automating or customizing descriptions for your pages."
7094
- msgstr ""
7095
-
7096
- # @ squirrly-seo
7097
- #: models/focuspages/Audit.php:119
7098
- #, fuzzy
7099
- #| msgid "Description:"
7100
- msgid "No empty descriptions"
7101
- msgstr "Beschreibung:"
7102
-
7103
- #: models/focuspages/Audit.php:120
7104
- #, php-format
7105
- msgid ""
7106
- "Make sure that you do not have pages with empty descriptions. %s This means: "
7107
- "pages where you haven't placed a meta description. %s Features like SEO "
7108
- "Automation or SEO Snippet from Squirrly SEO will help you easily fix this "
7109
- "problem by either automating or customizing descriptions for your pages."
7110
- msgstr ""
7111
-
7112
- # @ squirrly-seo
7113
- #: models/focuspages/Audit.php:123
7114
- #, fuzzy
7115
- #| msgid "Images"
7116
- msgid "SEO speed"
7117
- msgstr "Bilder"
7118
-
7119
- #: models/focuspages/Audit.php:124
7120
- msgid "sec"
7121
- msgstr ""
7122
-
7123
- #: models/focuspages/Audit.php:125
7124
- #, php-format
7125
- msgid ""
7126
- "You need to get good loading times for your pages. %s Good loading times "
7127
- "will help you rank higher in Google, while pages that load very slowly will "
7128
- "drag you down in search results."
7129
- msgstr ""
7130
-
7131
- #: models/focuspages/Audit.php:128
7132
- msgid "Mobile-friendly"
7133
- msgstr ""
7134
-
7135
- #: models/focuspages/Audit.php:129
7136
- #, php-format
7137
- msgid ""
7138
- "Your website must be mobile friendly. %s It used to be an optional thing for "
7139
- "Google until now, but it made it quite mandatory. %s Google prefers to "
7140
- "display sites which are mobile friendly higher in search results, because "
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
7171
- msgid ""
7172
- "Your Page Authority Needs to be over %s to complete this task. %s To do that "
7173
- "you'll need good metrics for all the tasks in the Traffic Health section of "
7174
- "Focus Pages. %s You'll also need inner links, social media signals and "
7175
- "backlinks from 3rd party sites."
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 ""
7190
-
7191
- #: models/focuspages/Backlinks.php:58
7192
- #, php-format
7193
- msgid "At Least %s MOZ BackLinks"
7194
- msgstr ""
7195
-
7196
- #: models/focuspages/Backlinks.php:59 models/focuspages/Backlinks.php:70
7197
- msgid "backlinks"
7198
- msgstr ""
7199
-
7200
- #: models/focuspages/Backlinks.php:64
7201
- #, php-format
7202
- msgid "At Least %s Referring Domains"
7203
- msgstr ""
7204
-
7205
- #: models/focuspages/Backlinks.php:65
7206
- msgid "unique domains"
7207
- msgstr ""
7208
-
7209
- #: models/focuspages/Backlinks.php:69
7210
- #, php-format
7211
- msgid "At Least %s Majestic SEO Links"
7212
- msgstr ""
7213
-
7214
- # @ squirrly-seo
7215
- #: models/focuspages/Clicks.php:42
7216
- #, fuzzy
7217
- #| msgid "Tool for Search Engines"
7218
- msgid "Clicks from Search Engine in the last 3 months"
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."
7264
- msgstr "Google %sAnalytics ID%s`:"
7265
-
7266
- #: models/focuspages/Content.php:46
7267
- #, fuzzy, php-format
7268
- #| msgid "Optimize for Keyword"
7269
- msgid "Optimize to %s"
7270
- msgstr "Schlüsselwort optimieren"
7271
-
7272
- #: models/focuspages/Content.php:48
7273
- #, php-format
7274
- msgid ""
7275
- "Make sure this Focus Page is optimized to 100%% using the %sSquirrly SEO "
7276
- "Live Assistant%s. %s As you can see clearly on Google search result pages, "
7277
- "Googles tries to find the closest match (inside web content) to what the "
7278
- "user searched for. %s That is why using this method of optimizing a page as "
7279
- "outlined by the Live Assistant feature is mandatory. %s Don't worry about "
7280
- "over-optimizing anything, as the Live Assistant checks for many over-"
7281
- "optimization traps you may fall into."
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 "
7297
- "to On-Page SEO than just a content analysis, or a snippet. You need all "
7298
- "these elements working together in order to achieve high rankings."
7299
- msgstr ""
7300
-
7301
- #: models/focuspages/Content.php:55
7302
- msgid "Platform SEO is green"
7303
- msgstr ""
7304
-
7305
- #: models/focuspages/Content.php:56
7306
- #, php-format
7307
- msgid ""
7308
- "Make sure that the Platform SEO section is green for this Focus Page. %s "
7309
- "Because WordPress is such a vast CMS with many customization possibilities, "
7310
- "it happens to many website owners, business owners and developers, that "
7311
- "custom post types from their site remain completely without SEO codes and "
7312
- "other important settings. %s This task makes sure that everything is "
7313
- "properly set up."
7314
- msgstr ""
7315
-
7316
- #: models/focuspages/Content.php:59
7317
- msgid "Fresh content update"
7318
- msgstr ""
7319
-
7320
- #: models/focuspages/Content.php:61
7321
- #, php-format
7322
- msgid ""
7323
- "Last Update Date for your Content: needs to be in the last 3 months. %s If "
7324
- "it's not, then go and edit your page. %s Google prefers pages where the "
7325
- "website owners keep updating the content. %s Why? %s Because it's one of the "
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"
7335
- msgstr "Schlüsselwort optimieren"
7336
-
7337
- #: models/focuspages/Ctr.php:41
7338
- msgid "Clickthrough rate"
7339
- msgstr ""
7340
-
7341
- #: models/focuspages/Ctr.php:42
7342
- #, php-format
7343
- msgid ""
7344
- "CTR is the number of clicks that your page receives divided by the number of "
7345
- "times your page appeared in search results: clicks ÷ impressions = CTR. %s "
7346
- "For example, if you had 5 clicks and 100 impressions, then your CTR would be "
7347
- "5%%. %s Keep the CTR above %s with enhanced headlines."
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."
7361
- "jpg %s Download a relevant image from your page. Change the filename. Then "
7362
- "re-upload with the SEO filename and add it your page's content again. %s "
7363
- "It's best to keep this at only one filename which contains the main keyword "
7364
- "of the page. %s Why? %s Because Google could consider over-optimization if "
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"
7381
- msgstr "Keine Ergebnisse gefunden!"
7382
-
7383
- # @ squirrly-seo
7384
- #: models/focuspages/Impressions.php:42
7385
- #, fuzzy
7386
- #| msgid "Tool for Search Engines"
7387
- msgid "Search Results Impressions in the last 3 months"
7388
- msgstr "Tool für Suchmaschinen"
7389
-
7390
- #: models/focuspages/Indexability.php:52
7391
- msgid "Yes, do index"
7392
- msgstr ""
7393
-
7394
- # @ squirrly-seo
7395
- #: models/focuspages/Indexability.php:54 models/focuspages/Indexability.php:60
7396
- #, fuzzy
7397
- #| msgid "Description:"
7398
- msgid "no restrictions"
7399
- msgstr "Beschreibung:"
7400
-
7401
- #: models/focuspages/Indexability.php:55
7402
- #, php-format
7403
- msgid ""
7404
- "To turn this task to green, go and look at all the places where you could "
7405
- "have added instructions for Google not to index this page from your site. %s "
7406
- "Make sure that there is no such instruction added to %sWordPress > Settings"
7407
- "%s, or in a theme, or in a plugin, or in Squirrly SEO's Snippet for this "
7408
- "page. Also, make sure you don't block this page in your %srobots.txt%s file. "
7409
- "%s Sometimes, you will want certain pages from your site not to be indexed. "
7410
- "Now is not the case, however. %s If this task turns green, then it means "
7411
- "that you did not specify to Google that it should NOT index the page. %s "
7412
- "Therefore, you allow Google to index the page. %s Since this is a Focus "
7413
- "Page, you must allow Google to index it, in order for it to appear in search "
7414
- "result pages."
7415
- msgstr ""
7416
-
7417
- #: models/focuspages/Indexability.php:58
7418
- msgid "Yes, do follow"
7419
- msgstr ""
7420
-
7421
- #: models/focuspages/Indexability.php:61
7422
- #, php-format
7423
- msgid ""
7424
- "To turn this task to green, make sure that you do NOT have a no-follow "
7425
- "attribute for this Focus Page. %s This task gets verified from multiple "
7426
- "sources. %s However, if you want to be 100%% certain in the future that "
7427
- "everything is perfect, use just Squirrly SEO, because it will ease both your "
7428
- "setup and the system check. %s With Squirrly SEO, you could easily check "
7429
- "this setting in the %sSnippet section%s. %s Many themes and plugins could "
7430
- "interfere with settings."
7431
- msgstr ""
7432
-
7433
- # @ squirrly-seo
7434
- #: models/focuspages/Indexability.php:64
7435
- #, fuzzy
7436
- #| msgid "Enter your email"
7437
- msgid "Present in sitemap"
7438
- msgstr "In Artikel einfügen"
7439
-
7440
- #: models/focuspages/Indexability.php:65
7441
- #, php-format
7442
- msgid ""
7443
- "Checks whether or not your page is available in your %sXML Sitemap%s. %s Use "
7444
- "the Sitemap from %sSquirrly > SEO Settings%s. %s Make sure this Focus Page "
7445
- "is included in the sitemap generated by Squirrly SEO. %s In the best "
7446
- "practices section you can find ideas for why it can make sense to remove "
7447
- "pages from your sitemap."
7448
- msgstr ""
7449
-
7450
- #: models/focuspages/Indexability.php:68
7451
- msgid "Manual index request"
7452
- msgstr ""
7453
-
7454
- #: models/focuspages/Indexability.php:69
7455
- #, php-format
7456
- msgid ""
7457
- "Click the button to ask Google to re-index this page. %s Disclaimer: This "
7458
- "task will automatically turn to green once you click on the button and it "
7459
- "takes you to Google Search Console. It's up to you to make 100%% sure that "
7460
- "you do tell Google to either index or re-index this page. %s Perform a "
7461
- "manual request for Google to re-index this page. %s This is super important "
7462
- "to do whenever you make important changes to your pages. Otherwise, Google "
7463
- "will still have the old version of your page. %s If Google keeps having the "
7464
- "older version, then it doesn't matter if you've improved the page. %s When "
7465
- "you click the Ask Google to Re-Index button, Squirrly will use the Google "
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"
7499
- msgstr ""
7500
-
7501
- #: models/focuspages/Indexability.php:75
7502
- #, php-format
7503
- msgid ""
7504
- "This page should have a canonical link to itself, indicating that it is "
7505
- "indeed the original content. %s You can not have pages with canonical links "
7506
- "to other sites and pages, because you could not rank for them. Why? Because "
7507
- "a canonical link to another URL would mean that the other URL is the one "
7508
- "worth indexing. (the original one) %s To turn this task to green, go and "
7509
- "make sure that this page does not have a canonical link attribute pointing "
7510
- "to another page. %s You can easily control this in the future by using the "
7511
- "%sSnippet feature%s of Squirrly SEO."
7512
- msgstr ""
7513
-
7514
- #: models/focuspages/Indexability.php:78
7515
- msgid "Permalink structure is good"
7516
- msgstr ""
7517
-
7518
- #: models/focuspages/Indexability.php:80
7519
- #, php-format
7520
- msgid ""
7521
- "Make your LINKS SEO-Friendly in %sWordPress > Settings > Permalinks%s %s "
7522
- "That is where WordPress allows you to change the permalink structure. %s "
7523
- "Your URLs (the links from your site) should be super easy to read. This "
7524
- "makes your site Human-friendly as well."
7525
- msgstr ""
7526
-
7527
- #: models/focuspages/Indexability.php:100
7528
- msgid "Ask Google to Re-Index"
7529
- msgstr ""
7530
-
7531
- #: models/focuspages/Innerlinks.php:53
7532
- #, php-format
7533
- msgid "Get %s inner links"
7534
- msgstr ""
7535
-
7536
- #: models/focuspages/Innerlinks.php:54
7537
- msgid "inner links to"
7538
- msgstr ""
7539
-
7540
- #: models/focuspages/Innerlinks.php:56
7541
- #, php-format
7542
- msgid ""
7543
- "Get %s Inner Links %s Recommended is: %s %s Inner Links are links that you "
7544
- "send from one URL of your site to another URL of your site. %s Since your "
7545
- "Focus Pages are the most important pages in your site, you should make sure "
7546
- "that you link to them from many pages of your website. %s Note! We check the "
7547
- "links present in the content of each post of your website."
7548
- msgstr ""
7549
-
7550
- # @ squirrly-seo
7551
- #: models/focuspages/Innerlinks.php:75
7552
- #, fuzzy
7553
- #| msgid "Blogs"
7554
- msgid "Build with Blogging Assistant"
7555
- msgstr "Blogs"
7556
-
7557
- # @ squirrly-seo
7558
- #: models/focuspages/Keyword.php:48
7559
- #, fuzzy
7560
- #| msgid "Competition:"
7561
- msgid "Keyword Competition"
7562
- msgstr "Wettbewerb:"
7563
-
7564
- #: models/focuspages/Keyword.php:51
7565
- #, php-format
7566
- msgid ""
7567
- "To complete this task you must make sure that the main keyword you're "
7568
- "optimizing this Focus Page for has low competition. %s The Squirrly SEO "
7569
- "software suite uses our proprietary Market Intelligence feature to determine "
7570
- "the chance that your site has of outranking the current TOP 10 of Google for "
7571
- "the desired keyword you're targeting. %s If you really want to have a clear "
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
7584
- msgid ""
7585
- "To turn this task to green, go and find a keyword that has a good search "
7586
- "volume. (meaning that many people search on Google for this keyword every "
7587
- "single month). %s The Research features from Squirrly SEO will indicate if "
7588
- "the volume is big enough. %s Since these are the most important pages on "
7589
- "your website, you need to make sure that you get the maximum number of "
7590
- "people possible to find this page. %s If you target keyword searches with "
7591
- "low volumes, then you'll end up having just 2 or 3 people every month "
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
7604
- msgid ""
7605
- "Trend levels required to get the Green Check on this task: %s - Steady %s - "
7606
- "Going Up %s - Sky-rocketing %s we take the trend from the previous 3 months. "
7607
- "%s If you target a search query with a bad trend you'll end up seeing little "
7608
- "traffic to this page in the long run. %s Why ? A declining trend shows that "
7609
- "Google Users are losing interest in that topic or keyword and will continue "
7610
- "to do so in the future. %s Therefore, even though you could get much traffic "
7611
- "right now after you rank this page, in the near future you'll get very "
7612
- "little traffic even if you'd end up on Position 1 in Google Search."
7613
- msgstr ""
7614
-
7615
- # @ squirrly-seo
7616
- #: models/focuspages/Keyword.php:98
7617
- #, fuzzy
7618
- #| msgid "Enter a keyword"
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
7644
- #, fuzzy
7645
- #| msgid "Keywords:"
7646
- msgid "words"
7647
- msgstr "Schlüsselwörter:"
7648
-
7649
- #: models/focuspages/Length.php:39
7650
- #, php-format
7651
- msgid ""
7652
- "For Focus Pages it's mandatory, in our opinion, to have at least 1,500 "
7653
- "words. %s Go and edit the page. %s I know: for some of you it might sound "
7654
- "tough, but Google places longer, more valuable pages higher in search "
7655
- "positions. %s You don't necessarily have to get 1,500 words on this page for "
7656
- "it to rank in TOP 10 on Google. However, getting this task completed ensures "
7657
- "that your chances of ranking will be very high."
7658
- msgstr ""
7659
-
7660
- #: models/focuspages/Length.php:42
7661
- msgid "Reader's Experience"
7662
- msgstr ""
7663
-
7664
- #: models/focuspages/Length.php:43
7665
- msgid "minutes average"
7666
- msgstr ""
7667
-
7668
- #: models/focuspages/Length.php:44
7669
- #, php-format
7670
- msgid ""
7671
- "Get an average time on page of minimum 2 minutes for this focus page. You "
7672
- "can do this by editing the content and making it more appealing to visitors. "
7673
- "%s We're looking at the Average Time On Page for this page. %s Why? %s "
7674
- "Because, sometimes website owners can be tempted to make the pages longer in "
7675
- "order to get many words on a page. They make them longer by increasing "
7676
- "wordiness. %s Over 1,500 words / page can give you much better SEO results. "
7677
- "However, making it longer does not mean you should make it boring. %s In "
7678
- "order to check that the length of the page was increased properly, we also "
7679
- "take into account if website visitors love this page."
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`:"
7701
- msgid "Connect Google Analytics first."
7702
- msgstr "Google %sAnalytics ID%s`:"
7703
-
7704
- #: models/focuspages/Nofollow.php:50
7705
- msgid "Maintain authority"
7706
- msgstr ""
7707
-
7708
- #: models/focuspages/Nofollow.php:51
7709
- msgid "External Dofollow Links"
7710
- msgstr ""
7711
-
7712
- #: models/focuspages/Nofollow.php:51
7713
- msgid "No dofollow external links"
7714
- msgstr ""
7715
-
7716
- #: models/focuspages/Nofollow.php:53 models/focuspages/Ranking.php:24
7717
- #, php-format
7718
- msgid ""
7719
- "TLDR: All outbound links need to have no-follow attribute. %s You've worked "
7720
- "hard on your Focus Page. %s Now make sure that you're not letting that hard "
7721
- "work go to waste, by sending out all your authority and Link Juice over to "
7722
- "other pages from the web. %s The Focus Page needs to be the final page that "
7723
- "Google Follows. It's an \"All Roads Lead to Rome\" kind of scenario. %s If "
7724
- "you want your focus pages to get ranked better and have authority make sure "
7725
- "that ALL outbound links have a no-follow attribute attached to them."
7726
- msgstr ""
7727
-
7728
- # @ squirrly-seo
7729
- #: models/focuspages/Onpage.php:53
7730
- #, fuzzy
7731
- #| msgid "Enter your email"
7732
- msgid "Enhance your sitemap"
7733
- msgstr "In Artikel einfügen"
7734
-
7735
- #: models/focuspages/Onpage.php:54
7736
- #, php-format
7737
- msgid ""
7738
- "Add images / videos to your sitemap. It's important to have images / videos "
7739
- "enabled. %s Squirrly SEO makes it super easy for you to enhance your XML "
7740
- "sitemap. %s Just use the settings from %sSquirrly > SEO Settings > Sitemap "
7741
- "XML%s. Find the XML sitemap section and use the settings from that panel. "
7742
- msgstr ""
7743
-
7744
- #: models/focuspages/Onpage.php:57
7745
- msgid "Post Type settings activated"
7746
- msgstr ""
7747
-
7748
- #: models/focuspages/Onpage.php:58
7749
- #, php-format
7750
- msgid ""
7751
- "Are the SEO Settings from Squirrly SEO activated for the post type of this "
7752
- "particular Focus Page? %s This is what we're checking with this task. %s "
7753
- "Why? %s Some of the times, we're seeing that people don't get good enough "
7754
- "results with Google rankings simply because they do not have the SEO "
7755
- "settings activated for their current post type. %s Many WordPress sites "
7756
- "employ the use of custom post types. Your \"Events\" page or \"Real Estate\" "
7757
- "page could be a different post type from general \"Pages\" or \"Posts\" in "
7758
- "WordPress. %s To turn this task to green, go and add this post type (%s) in "
7759
- "%sSquirrly SEO Automation%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
7770
- msgid ""
7771
- "To turn this task to green, go and activate the %sPatterns%s from Squirrly "
7772
- "SEO for the post type of this Focus Page. %s With this task, we're looking "
7773
- "to see if the SEO Patterns from Squirrly are activated for the post type of "
7774
- "this Focus Page. %s Similar to the previous task with \"Post Type Settings "
7775
- "Activated\". There are some cases in which this double check is necessary. "
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
-
7783
- #: models/focuspages/Onpage.php:67
7784
- #, php-format
7785
- msgid ""
7786
- "You have a certain definition for your Robots.txt file made in Squirrly SEO "
7787
- "or in another plugin. %s Make sure that the final version of robots.txt that "
7788
- "gets rendered when the file is loaded is the one you had intended. %s "
7789
- "Sometimes, other plugins or themes can interfere and ruin the output of the "
7790
- "robots file. Sometimes it can even be that you have a robots.txt file placed "
7791
- "on your root directory (in such case: remove that file. hard-coding things "
7792
- "like that is bad practice!). %s To do this: look at the definition you've "
7793
- "made inside your plugin. Then, look at the robots.txt from your site. See if "
7794
- "the text inside these two places is identical. If it is identical, "
7795
- "everything is Perfect!"
7796
- msgstr ""
7797
-
7798
- # @ squirrly-seo
7799
- #: models/focuspages/Onpage.php:85
7800
- #, fuzzy
7801
- #| msgid "Save settings"
7802
- msgid "Go to SEO Settings"
7803
- msgstr "Einstellungen speichern"
7804
-
7805
- #: models/focuspages/Ranking.php:23
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 "
7813
- "easily do this by using the %sSnippet%s from Squirrly SEO. %s Make sure that "
7814
- "you have a Title defined for your Focus Page. %s Not having a title defined "
7815
- "is bad for both search engines and Humans. %s Why? %s It's weird for someone "
7816
- "to try to figure out if they landed on your Pricing page, and not get a "
7817
- "clear answer. If you have multiple pricing pages (in case your site displays "
7818
- "multiple products) then your title should only contain the brand name of "
7819
- "that product."
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 "
7835
- "page. You can easily do this by using the Snippet from Squirrly SEO. %s Make "
7836
- "sure that you have a META description set up for this Focus Page. %s The "
7837
- "meta description is very important for showing others the value they can "
7838
- "find by clicking to go to your page. %s Think of it as an awesome ad that "
7839
- "gets people excited enough that they visit your page after reading it. %s "
7840
- "Sometimes, Google displays the exact META description that you create inside "
7841
- "the search result pages. Use great descriptions for pages on your site to "
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 "
7861
- "on Google, but cannot find the keyword they searched for in that text, then "
7862
- "they'd have very low chances of actually clicking and visiting your page. %s "
7863
- "They'd go to the next page ranked on Google for that keyword. %s Think about "
7864
- "this: Google itself is trying more and more to display keywords in the "
7865
- "description of the pages it bring to TOP 10. It's pretty clear they care a "
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 "
7879
- "SEO to get all the definitions in place. %s With this task, we make sure "
7880
- "that you have the full Open Graph definitions created for this Focus Page. "
7881
- "%s There are many things which could interfere with the code, there are "
7882
- "times when you could forget setting some of the elements up, so Squirrly SEO "
7883
- "helps you make sure that ALL the og tags are present. %s And yes, this is "
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 "
7897
- "SEO to get all the definitions in place. %s Checking to make sure that your "
7898
- "Twitter Cards definitions are made properly. %s Same as with the Open Graph "
7899
- "task, Squirrly SEO makes sure to check for all the required definitions, so "
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 "
7913
- "%sSquirrly > SEO Settings > JSON-LD%s. %s Make sure that you complete all "
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 "
7930
- "%sSnippet%s from Squirrly SEO to customize the meta settings, the open "
7931
- "graph, etc. for this page. %s Since Focus Pages are the most important pages "
7932
- "on your site, you'll want people to love the search engine listings that you "
7933
- "build for this page. %s Therefore, you should define a custom SEO listing to "
7934
- "improve the number of clicks you get when people DO find your page on search "
7935
- "engines. %s NOTE: sometimes Google tries to create automated snippets and "
7936
- "display those, but it's just an experiment they run. Most of the times, your "
7937
- "own custom snippet will be the one that gets displayed."
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"
7945
- msgstr "Bilder"
7946
-
7947
- #: models/focuspages/Social.php:44
7948
- #, php-format
7949
- msgid "%s Shares"
7950
- msgstr ""
7951
-
7952
- #: models/focuspages/Social.php:45
7953
- msgid "social share"
7954
- msgstr ""
7955
-
7956
- #: models/focuspages/Social.php:47
7957
- #, php-format
7958
- msgid ""
7959
- "This task only tracks shares from trackable sources. %s Twitter and LinkedIN "
7960
- "share counts are no longer available. %s Of course, for Twitter you can "
7961
- "always pay Twitter directly for API access, in which case we could give you "
7962
- "a guide on how to integrate your Twitter API with our Focus Pages audit "
7963
- "services. %s %shttps://developer.twitter.com/en/pricing/search-fullarchive%s"
7964
- msgstr ""
7965
-
7966
- # @ squirrly-seo
7967
- #: models/focuspages/Social.php:61
7968
- #, fuzzy
7969
- #| msgid "Save settings"
7970
- msgid "Go to Social Media Settings"
7971
- msgstr "Einstellungen speichern"
7972
-
7973
- # @ squirrly-seo
7974
- #: models/focuspages/Strategy.php:70
7975
- #, fuzzy
7976
- #| msgid "Do a research"
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
7996
- msgid ""
7997
- "Go add a keyword to your %sBriefcase%s. %s The Briefcase is the command "
7998
- "center for your SEO operations. Manage your keywords in Briefcase, so that "
7999
- "you'll always have quick access to them. You'll always know what your SEO "
8000
- "Strategy is all about. %s Plus, adding keywords to Briefcase will make it "
8001
- "very easy for you to collaborate with other people from your team, "
8002
- "freelancers, agencies or partners. %s Never lose the amazing keywords you "
8003
- "find through the %sSquirrly SEO Keyword Research tool%s."
8004
- msgstr ""
8005
-
8006
- # @ squirrly-seo
8007
- #: models/focuspages/Strategy.php:75
8008
- #, fuzzy
8009
- #| msgid "SEO Software"
8010
- msgid "Add SEO Context"
8011
- msgstr "SEO Software"
8012
-
8013
- #: models/focuspages/Strategy.php:78
8014
- #, php-format
8015
- msgid ""
8016
- "Optimize to %s for a secondary keyword. %s Squirrly SEO's Live Assistant "
8017
- "allows you to optimize for multiple keywords that you have placed in your "
8018
- "Briefcase. %s Use a couple of additional keywords for your Focus Page which "
8019
- "help Google understand the exact topic and context of your page. %s If you "
8020
- "added the keywords 'political party' to 'black panther', you'd make a clear "
8021
- "hint to Google that your page is about the Black Panther political party, "
8022
- "not Black Panther, the Marvel Movie. %s Or add 'places to eat' to a page "
8023
- "about your Local Restaurant in San Diego. That will give clearer context to "
8024
- "Google that your page really is about a restaurant where people can dine."
8025
- msgstr ""
8026
-
8027
- #: models/focuspages/Strategy.php:82
8028
- msgid "Labels Exist"
8029
- msgstr ""
8030
-
8031
- #: models/focuspages/Strategy.php:83
8032
- msgid "Great! The keyword has Label attached to it"
8033
- msgstr ""
8034
-
8035
- #: models/focuspages/Strategy.php:83
8036
- msgid "The keyword does not have a label attached to it"
8037
- msgstr ""
8038
-
8039
- #: models/focuspages/Strategy.php:84
8040
- #, php-format
8041
- msgid ""
8042
- "To turn this task to green, go to %sLabels section%s and add a label to the "
8043
- "keyword that you've used as main keyword for this Focus Page. %s Make sure "
8044
- "that you keep creating new labels as you're finding more keywords to target "
8045
- "with your website. %s If you're unsure regarding keyword research, read "
8046
- "%sHow to Find Amazing Keywords and get more search traffic?%s . %s Organize "
8047
- "all the Keywords that you plan to use for your website with Briefcase "
8048
- "Labels. %s This task helps you make sure that the main keyword for this "
8049
- "Focus Page has been organized clearly inside your SEO Strategy. That's what "
8050
- "Briefcase Labels are all about."
8051
- msgstr ""
8052
-
8053
- #: models/focuspages/Strategy.php:104
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
-
8061
- #: models/focuspages/Traffic.php:66
8062
- #, php-format
8063
- msgid "Below %s Bounce Rate"
8064
- msgstr ""
8065
-
8066
- #: models/focuspages/Traffic.php:67
8067
- msgid "bounce rate"
8068
- msgstr ""
8069
-
8070
- #: models/focuspages/Traffic.php:68
8071
- #, php-format
8072
- msgid ""
8073
- "Make sure this number is below %s %s Why? %s A high bounce rate means that "
8074
- "your users just click on your search listing, visit the page and then decide "
8075
- "they've seen enough and bounce off to another page on the web. %s This is, "
8076
- "for Google, an indicator of the quality of the search result it displayed. "
8077
- "And if many of your users bounce off your pages, it means (to Google) that "
8078
- "your page is not worth displaying in search results, because it has low "
8079
- "performance with the user groups it sends your way. %s Easy way to complete "
8080
- "this task: give users pages to click and send them to other pages from your "
8081
- "site."
8082
- msgstr ""
8083
-
8084
- #: models/focuspages/Traffic.php:71
8085
- #, php-format
8086
- msgid "Time on page is %s minutes"
8087
- msgstr ""
8088
-
8089
- #: models/focuspages/Traffic.php:72
8090
- msgid "minutes avg."
8091
- msgstr ""
8092
-
8093
- #: models/focuspages/Traffic.php:74
8094
- #, php-format
8095
- msgid ""
8096
- "Make sure that visitors spend on average at least %s minutes on your site. "
8097
- "%s Get an average time on page of minimum %s minutes for this focus page. "
8098
- "You can do this by editing the content and making it more appealing to "
8099
- "visitors. %s If your visitors don't spend at least 2 minutes on your Focus "
8100
- "Page, it can mean that the page is not important enough for them, or that "
8101
- "the content from the page is boring, or hard to read, or the page just loads "
8102
- "too slow."
8103
- msgstr ""
8104
-
8105
- #: models/focuspages/Traffic.php:77
8106
- #, php-format
8107
- msgid "%s visitors / day / page"
8108
- msgstr ""
8109
-
8110
- #: models/focuspages/Traffic.php:78
8111
- msgid "unique views avg."
8112
- msgstr ""
8113
-
8114
- #: models/focuspages/Traffic.php:79
8115
- #, php-format
8116
- msgid ""
8117
- "For this task, we're looking at unique page views from your %sGoogle "
8118
- "Analytics%s. %s If you don't get an average of %s visitors / day / page, "
8119
- "then this Focus Page is not yet popular enough on your site. %s You should "
8120
- "make sure that more people end up visiting it."
8121
- msgstr ""
8122
-
8123
- # @ squirrly-seo
8124
- #: models/focuspages/Traffic.php:82
8125
- #, fuzzy
8126
- #| msgid "The code for Google Analytics is incorrect."
8127
- msgid "Just one Google Analytics tracking code"
8128
- msgstr "Der Code für Google Analytics ist falsch."
8129
-
8130
- #: models/focuspages/Traffic.php:83
8131
- #, php-format
8132
- msgid ""
8133
- "We've seen many sites where there were multiple google analytics codes "
8134
- "placed by different employees, themes or plugins. %s With this check, we're "
8135
- "helping you make sure that your tracker is setup properly and that there "
8136
- "will be no errors with your Google Analytics account. %s To turn this green, "
8137
- "you'll have to investigate your theme, custom code that you may have placed "
8138
- "in your theme, other plugins, header settings. Once you have a clear view of "
8139
- "all the tracking codes, make sure that only one remains and that the one "
8140
- "code is the one linked to your Google Analytics account. %s These problems "
8141
- "happen more often than you would think."
8142
- msgstr ""
8143
-
8144
- # @ squirrly-seo
8145
- #: models/focuspages/Traffic.php:121
8146
- #, fuzzy
8147
- #| msgid "Google %sAnalytics ID%s`:"
8148
- msgid "Connect Google Analytics first"
8149
- msgstr "Google %sAnalytics ID%s`:"
8150
-
8151
- #: models/focuspages/Traffic.php:123
8152
- msgid "Not enough traffic to show relevant stats"
8153
- msgstr ""
8154
-
8155
- # @ squirrly-seo
8156
- #: models/services/Robots.php:13
8157
- #, fuzzy
8158
- #| msgid "Squirrly settings"
8159
- msgid "Squirrly SEO Robots"
8160
- msgstr "Squirrly Einstellungen"
8161
-
8162
- #: models/services/Robots.php:16
8163
- msgid ""
8164
- "Your blog is not public. Please see Site Visibility on Settings > Reading."
8165
- msgstr ""
8166
-
8167
- # @ squirrly-seo
8168
- #: models/services/Robots.php:32
8169
- #, fuzzy
8170
- #| msgid "Squirrly LIVE SEO assistant"
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"
8470
- msgstr "Ihre E-Mail Adresse:"
8471
-
8472
- # @ squirrly-seo
8473
- #: view/Audits/Audit.php:64
8474
- #, fuzzy
8475
- #| msgid "Squirrly settings"
8476
- msgid "Audit Pages"
8477
- msgstr "Squirrly Einstellungen"
8478
-
8479
- # @ squirrly-seo
8480
- #: view/Audits/Audit.php:87
8481
- #, fuzzy
8482
- #| msgid "Show only Copyright Free images"
8483
- msgid "Show Only Completed Tasks"
8484
- msgstr "Nur urheberrechtfreie Bilder zeigen"
8485
-
8486
- # @ squirrly-seo
8487
- #: view/Audits/Audit.php:92
8488
- #, fuzzy
8489
- #| msgid "Show only Copyright Free images"
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 "
8515
- "SEO operates in order to retrieve and process data about this page. %sIt’s "
8516
- "important to do everything on your end to ensure that the audits can be "
8517
- "generated by our system. %s Whitelist our crawler IP address (176.9.112.210) "
8518
- "to allow our server to verify your page so that you’ll receive a full audit."
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 "
8737
- "to generate the new audit for each page. There is a lot of processing "
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
8819
- msgid "Let Squirrly Cloud get data for Focus Pages"
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 "
9159
- "will not load for this post type on the frontend"
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 "
9545
- "Settings > Automation%s."
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 "
9803
- "Google Search Console. %sPositions shown by GSC are averages, not exact "
9804
- "positions in SERPs. %sTo have your rankings checked daily please upgrade "
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 "
9819
- "once a week. %sTo add more pages in Audit and refresh the audit every hour "
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 "
9834
- "audit for each page every 5 mins. %sTo add more pages in Focus Pages please "
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 "
9842
- "it %shttps://www.squirrly.co/you-received-access-to-all-updates-from-"
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 "
9857
- "pages. %sTo optimize your posts to 100%% please upgrade your plan to %sPRO "
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 "
9865
- "will return up to 20 results for each keyword. %sFor more Researches and up "
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 "
9880
- "will return up to 10 results for each keyword. %sFor more Researches and up "
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"
10091
- msgstr ""
10092
-
10093
- #: view/FocusPages/Addpage.php:179
10094
- msgid "Can't be added"
10095
- msgstr ""
10096
-
10097
- # @ squirrly-seo
10098
- #: view/FocusPages/Addpage.php:182
10099
- #, fuzzy
10100
- #| msgid "Send Question"
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 "
10169
- "Learning based on the main keyword you selected for this Focus Page. %sThe "
10170
- "algorithm behind the Chances of Ranking is complex but the fastest way to "
10171
- "increase your chances is to complete the main tasks like Visibility, Keyword "
10172
- "Competition, Content Optimization, Content Length, Social Signals, Daily "
10173
- "Traffic, Inner Links, and External Nofollow Links. %sIn time you need to "
10174
- "complete all the Focus Pages tasks to rank higher and higher and to maintain "
10175
- "your rank especially if your keyword is a competitive one. "
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 "
10300
- "to generate the new audit for a focus page. There is a lot of processing "
10301
- "involved."
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 "
10506
- "computing, etc. %sare fully sponsored by Squirrly%s. We sponsor every new "
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 "
10541
- "Page%s) and we'll tell you what you can do to further improve the results "
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 "
10745
- "rankings safe. It might award you with brand new page 1 positions if you use "
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."
10757
- msgstr ""
10758
-
10759
- #: view/Onboarding/Step3.php:79
10760
- msgid "Skip this step"
10761
- msgstr ""
10762
-
10763
- #: view/Onboarding/Step3.php:84
10764
- msgid "We haven't detected other SEO Plugins on your site."
10765
- msgstr ""
10766
-
10767
- #: view/Onboarding/Step3.php:87
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 "
10889
- "is with regard to crawling and gathering data about sites which are not as "
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 "
11170
- "Stage, Decision Stage and other stages you may plan for your Customer's "
11171
- "Journey."
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 "
11500
- "keywords by one or more labels."
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 "
11587
- "Squirrly's Market Intelligence Features."
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
11685
- #, fuzzy, php-format
11686
- #| msgid "Squirrly could not find any results for: "
11687
- msgid "We could not find similar keywords. %sClick on 'Do research'"
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
11709
- msgid ""
11710
- "Keyword Research in progress. We're doing all of this in real-time. Data is "
11711
- "fresh."
11712
- msgstr ""
11713
-
11714
- #: view/Research/Research.php:179
11715
- msgid "We're now finding 10 alternatives for each keyword you selected."
11716
- msgstr ""
11717
-
11718
- #: view/Research/Research.php:180
11719
- msgid ""
11720
- "For each alternative, we are looking at the top 10 pages ranked on Google "
11721
- "for that keyword."
11722
- msgstr ""
11723
-
11724
- #: view/Research/Research.php:181
11725
- msgid ""
11726
- "We are now measuring the web authority of each competing page and comparing "
11727
- "it to yours."
11728
- msgstr ""
11729
-
11730
- #: view/Research/Research.php:182
11731
- msgid "Looking at the monthly search volume for each keyword."
11732
- msgstr ""
11733
-
11734
- #: view/Research/Research.php:183
11735
- msgid "Analyzing the last 30 days of Google trends for each keyword."
11736
- msgstr ""
11737
-
11738
- #: view/Research/Research.php:184
11739
- msgid ""
11740
- "Seeing how many discussions there are on forums and Twitter for each keyword."
11741
- msgstr ""
11742
-
11743
- #: view/Research/Research.php:185
11744
- msgid ""
11745
- "Piecing all the keywords together now after analyzing each individual "
11746
- "keyword."
11747
- msgstr ""
11748
-
11749
- # @ squirrly-seo
11750
- #: view/Research/Research.php:186
11751
- #, fuzzy
11752
- #| msgid "Send Question"
11753
- msgid "Preparing the results."
11754
- msgstr "Senden Sie Ihre Frage"
11755
-
11756
- # @ default
11757
- #: view/Research/Research.php:192
11758
- #, fuzzy
11759
- #| msgid "Squirrly could not find any results for: "
11760
- msgid "Step 4/4: We found some relevant keywords for you"
11761
- msgstr "Squirly hat keine Suchergebnisse gefunden für:"
11762
-
11763
- #: view/Research/Research.php:193
11764
- #, php-format
11765
- msgid ""
11766
- "Still processing. give it a bit more time, then go to %sResearch History%s. "
11767
- "Results will appear there."
11768
- msgstr ""
11769
-
11770
- # @ default
11771
- #: view/Research/Research.php:194
11772
- #, fuzzy
11773
- #| msgid "Squirrly could not find any results for: "
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 "
12164
- "purpose and needs, you can also decide what information these patterns will "
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/"
12178
- "pages are shared across social media or search engine feeds. You just need "
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 "
12271
- "your settings from the panel below before you do this."
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 "
12327
- "always go back to your Squirrly settings."
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."
12481
- msgstr ""
12482
- "Wenn Sie das neue Icon nicht in Ihrem Browser sehen, leeren Sie den Browser-"
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
13137
- msgid ""
13138
- "Only if you have a news website. Make sure you submit your website to "
13139
- "%sGoogle News%s first."
13140
- msgstr ""
13141
-
13142
- #: view/SeoSettings/Sitemap.php:133
13143
- msgid "Posts"
13144
- msgstr ""
13145
-
13146
- #: view/SeoSettings/Sitemap.php:134
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 "
13263
- "Image. Visit %sOpen Graph Debugger%s"
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 "
13290
- "Page and your Website."
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
13571
- msgid "https://wordpress.org/plugins/squirrly-seo/"
13572
- msgstr ""
13573
-
13574
- #. Description of the plugin/theme
13575
- msgid ""
13576
- "A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning "
13577
- "and Cloud Services. Over 300 functionalities for SEO available when you need "
13578
- "them.<BR> <a href=\"http://cloud.squirrly.co/user\" target=\"_blank"
13579
- "\"><strong>Account Info</strong></a>"
13580
- msgstr ""
13581
-
13582
- #. Author 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..."
13738
- #~ msgid "Could not save the data"
13739
- #~ msgstr "Konnte E-Mail nicht senden ..."
13740
-
13741
- # @ squirrly-seo
13742
- #~ msgid "Plugin Feedback"
13743
- #~ msgstr "Plugin Feedback"
13744
-
13745
- # @ squirrly-seo
13746
- #~ msgid "GD error: The GD library must be installed on your server."
13747
- #~ msgstr ""
13748
- #~ "GD Fehler: Die GD-Bibliothek muss auf dem Server installiert werden."
13749
-
13750
- # @ squirrly-seo
13751
- #, fuzzy
13752
- #~| msgid "Do a research"
13753
- #~ msgid " Research"
13754
- #~ msgstr "Recherchieren"
13755
-
13756
- # @ squirrly-seo
13757
- #, fuzzy
13758
- #~| msgid "Squirrly Keyword Research"
13759
- #~ msgid "Squirrly Keyword"
13760
- #~ msgstr "Squirrly Erweiterte Suche!"
13761
-
13762
- # @ squirrly-seo
13763
- #, fuzzy
13764
- #~| msgid "+ Add keyword"
13765
- #~ msgid "Already added"
13766
- #~ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
13767
-
13768
- # @ squirrly-seo
13769
- #, fuzzy
13770
- #~| msgid "Email:"
13771
- #~ msgid "Email: "
13772
- #~ msgstr "Ihre E-Mail Adresse:"
13773
-
13774
- # @ squirrly-seo
13775
- #, fuzzy
13776
- #~| msgid "Send Question"
13777
- #~ msgid "See solution"
13778
- #~ msgstr "Senden Sie Ihre Frage"
13779
-
13780
- # @ squirrly-seo
13781
- #, fuzzy
13782
- #~| msgid "No"
13783
- #~ msgid "Now"
13784
- #~ msgstr "Nein"
13785
-
13786
- # @ squirrly-seo
13787
- #, fuzzy
13788
- #~| msgid "Do a research"
13789
- #~ msgid "Do Research"
13790
- #~ msgstr "Recherchieren"
13791
-
13792
- # @ squirrly-seo
13793
- #, fuzzy
13794
- #~| msgid "Squirrly LIVE SEO assistant"
13795
- #~ msgid "Bulk SEO & SEO Snippet"
13796
- #~ msgstr "Squirrly LIVE SEO-Assistent"
13797
-
13798
- #, fuzzy
13799
- #~| msgid "Optimize for Keyword"
13800
- #~ msgid "Optimize the page for a keyword"
13801
- #~ msgstr "Schlüsselwort optimieren"
13802
-
13803
- # @ squirrly-seo
13804
- #, fuzzy
13805
- #~| msgid "Squirrly Keyword Research"
13806
- #~ msgid "All Keyword Researches performed"
13807
- #~ msgstr "Squirrly Erweiterte Suche!"
13808
-
13809
- # @ squirrly-seo
13810
- #~ msgid "Trend:"
13811
- #~ msgstr "Trend:"
13812
-
13813
- # @ squirrly-seo
13814
- #, fuzzy
13815
- #~| msgid "Takes too long to check this keyword ..."
13816
- #~ msgid "It's taking too long to check this keyword"
13817
- #~ msgstr "Dauert zu lange, um dieses Schlüsselwort zu überprüfen ..."
13818
-
13819
- # @ squirrly-seo
13820
- #~ msgid "Do a research!"
13821
- #~ msgstr "Erweiterte Suche!"
13822
-
13823
- # @ squirrly-seo
13824
- #~ msgid "Do more research!"
13825
- #~ msgstr "Erweiterte Suche!"
13826
-
13827
- # @ squirrly-seo
13828
- #, fuzzy
13829
- #~| msgid "Could not send the email..."
13830
- #~ msgid "Could not verify the frontend"
13831
- #~ msgstr "Konnte E-Mail nicht senden ..."
13832
-
13833
- # @ squirrly-seo
13834
- #, fuzzy
13835
- #~| msgid "Keywords:"
13836
- #~ msgid "keywords"
13837
- #~ msgstr "Schlüsselwörter:"
13838
-
13839
- # @ squirrly-seo
13840
- #, fuzzy
13841
- #~| msgid "Turn off warnings!"
13842
- #~ msgid "errors/warnings"
13843
- #~ msgstr "Warnungen ausschalten!"
13844
-
13845
- # @ squirrly-seo
13846
- #, fuzzy
13847
- #~| msgid "Competition:"
13848
- #~ msgid "Competition is low"
13849
- #~ msgstr "Wettbewerb:"
13850
-
13851
- # @ squirrly-seo
13852
- #, fuzzy
13853
- #~| msgid "Please tell us why?"
13854
- #~ msgid "Please tell us why."
13855
- #~ msgstr "Bitte sagen Sie uns, warum?"
13856
-
13857
- # @ squirrly-seo
13858
- #~ msgid ""
13859
- #~ "Function get_class does not exists! Is required for Squirrly to work "
13860
- #~ "properly."
13861
- #~ msgstr ""
13862
- #~ "Funktion Get_class ist nicht vorhanden! Ist erforderlich für Squirrly um "
13863
- #~ "richtig zu arbeiten."
13864
-
13865
- # @ squirrly-seo
13866
- #~ msgid ""
13867
- #~ "Function file_exists does not exists! Is required for Squirrly to work "
13868
- #~ "properly."
13869
- #~ msgstr ""
13870
- #~ "Funktion File_exists ist nicht vorhanden! Ist erforderlich für Squirrly "
13871
- #~ "um richtig zu arbeiten."
13872
-
13873
- # @ squirrly-seo
13874
- #~ msgid "The home directory is not set!"
13875
- #~ msgstr "Das Home-Verzeichnis wurde nicht gesetzt!"
13876
-
13877
- # @ squirrly-seo
13878
- #~ msgid "The PHP version has to be greater then 4.0"
13879
- #~ msgstr "Die PHP-Version muß größer als 4.0 sein"
13880
-
13881
- # @ squirrly-seo
13882
- #~ msgid "Fix it for me!"
13883
- #~ msgstr "Beheben Sie es für mich!"
13884
-
13885
- # @ squirrly-seo
13886
- #~ msgid ""
13887
- #~ "For Squirrly to work, the PHP version has to be equal or greater then 5.1"
13888
- #~ msgstr ""
13889
- #~ "Damit Squirrly funktioniert, muss die PHP-Version gleich oder größer als "
13890
- #~ "5.1 sein"
13891
-
13892
- # @ squirrly-seo
13893
- #~ msgid "What does Squirrly automatically do for SEO?"
13894
- #~ msgstr "Was tut Squirrly automatisch für SEO?"
13895
-
13896
- # @ squirrly-seo
13897
- #~ msgid "Register"
13898
- #~ msgstr "Registrieren"
13899
-
13900
- # @ squirrly-seo
13901
- #~ msgid "The email address is invalid!"
13902
- #~ msgstr "Die E-Mail-Adresse ist ungültig!"
13903
-
13904
- # @ squirrly-seo
13905
- #~ msgid "Click on Sign Up button and try again ..."
13906
- #~ msgstr "Klicken Sie auf das Bild und versuchen Sie es erneut ..."
13907
-
13908
- # @ squirrly-seo
13909
- #~ msgid "Enter a keyword above!"
13910
- #~ msgstr "Geben Sie oben ein Schlüsselwort ein!"
13911
-
13912
- # @ squirrly-seo
13913
- #~ msgid "I have more then one keyword!"
13914
- #~ msgstr "Ich habe mehr als ein Schlüsselwort!"
13915
-
13916
- # @ squirrly-seo
13917
- #~ msgid ""
13918
- #~ "For Squirrly to work properly you have to use a higher version of "
13919
- #~ "Internet Explorer. <br /> We recommend you to use Chrome or Mozilla."
13920
- #~ msgstr ""
13921
- #~ "Damit Squirrly ordnungsgemäß funktioniert, müssen Sie eine höhere Version "
13922
- #~ "von Internet Explorer verwenden. <br /> Wir empfehlen, Chrome oder "
13923
- #~ "Mozilla."
13924
-
13925
- # @ squirrly-seo
13926
- #~ msgid "Exact search:"
13927
- #~ msgstr "Exakte Suche:"
13928
-
13929
- # @ squirrly-seo
13930
- #~ msgid "For Squirrly to work, you have to have tinymce editor installed!"
13931
- #~ msgstr "Damit Squirrly arbeitet, muss tinymce installiert sein!"
13932
-
13933
- # @ squirrly-seo
13934
- #~ msgid ":( I lost my squirrel. Please reload the page."
13935
- #~ msgstr ":( Ich verlor meine Eichhörnchen. Laden Sie die Seite erneut."
13936
-
13937
- # @ squirrly-seo
13938
- #~ msgid "Switch to Visual editor!"
13939
- #~ msgstr "Zum Visual Editor wechseln !"
13940
-
13941
- # @ squirrly-seo
13942
- #~ msgid "Go to:"
13943
- #~ msgstr "Gehe zu:"
13944
-
13945
- # @ squirrly-seo
13946
- #~ msgid "support page"
13947
- #~ msgstr "Support Page"
13948
-
13949
- # @ squirrly-seo
13950
- #~ msgid "Clear"
13951
- #~ msgstr "Löschen"
13952
-
13953
- # @ squirrly-seo
13954
- #~ msgid "Do the research"
13955
- #~ msgstr "Recherchieren"
13956
-
13957
- # @ squirrly-seo
13958
- #~ msgid "Let some keywords for the next time as well!"
13959
- #~ msgstr "Lassen Sie ein paar Schlüsselwörter auch für das nächste Mal!"
13960
-
13961
- # @ squirrly-seo
13962
- #~ msgid "News"
13963
- #~ msgstr "News"
13964
-
13965
- # @ squirrly-seo
13966
- #~ msgid "Notice: "
13967
- #~ msgstr "Hinweis: "
13968
-
13969
- # @ squirrly-seo
13970
- #~ msgid "Note: "
13971
- #~ msgstr "Notiz: "
13972
-
13973
- # @ squirrly-seo
13974
- #~ msgid "Let Squirrly optimize your SEO automatically (recommended)"
13975
- #~ msgstr "Lassen Sie Squirrly Ihr SEO automatisch optimieren (empfohlen)"
13976
-
13977
- # @ squirrly-seo
13978
- #~ msgid ""
13979
- #~ "It is highly recommended that you include the %postname% variable in the "
13980
- #~ "permalink structure."
13981
- #~ msgstr ""
13982
- #~ "Es wird stark empfohlen, dass Sie die %postname% Variable in der "
13983
- #~ "Permalink-Struktur einschließen."
13984
-
13985
- # @ squirrly-seo
13986
- #~ msgid "For Squirrly to work, you have to have tinymce installed!"
13987
- #~ msgstr "Damit Squirrly arbeiten kann, müssen Sie tinymce installiert haben!"
13988
-
13989
- # @ squirrly-seo
13990
- #~ msgid "Message sent..."
13991
- #~ msgstr "Nachricht gesendet ..."
13992
-
13993
- # @ squirrly-seo
13994
- #~ msgid ""
13995
- #~ "The system is acting Squirrly. I can not find the link to the server."
13996
- #~ msgstr "Kann den Link auf den Server nicht finden."
13997
-
13998
- # @ squirrly-seo
13999
- #~ msgid ""
14000
- #~ "With Squirrly SEO, your Wordpress will get Perfect SEO on each article "
14001
- #~ "you write."
14002
- #~ msgstr ""
14003
- #~ "Mit Squirrly SEO wird jeder Ihrer Wordpress Artikel eine perfekte "
14004
- #~ "Suchmaschinenoptimierung erhalten. "
14005
-
14006
- # @ squirrly-seo
14007
- #~ msgid ""
14008
- #~ "delivered as a plugin for Wordpress. <br /><br />We connect your "
14009
- #~ "wordpress with Squirrly, so that we can find the best SEO opportunities, "
14010
- #~ "give you reports and analyse your competitors."
14011
- #~ msgstr ""
14012
- #~ "geliefert als Plugin für Wordpress. <br /> <br /> Wir verbinden Ihr "
14013
- #~ "Wordpress mit Squirrly, so dass wir die besten SEO-Möglichkeiten finden, "
14014
- #~ "erstatten Ihnen Bericht und analysieren Ihre Konkurrenz."
14015
-
14016
- # @ squirrly-seo
14017
- #~ msgid "Write a new post with Squirrly"
14018
- #~ msgstr "Schreiben Sie einen neuen Beitrag mit Squirrly"
14019
-
14020
- #~ msgid " API"
14021
- #~ msgstr " API"
14022
-
14023
- # @ squirrly-seo
14024
- #~ msgid "API Key:"
14025
- #~ msgstr "API Key:"
14026
-
14027
- # @ squirrly-seo
14028
- #~ msgid "Let Squirrly automatically optimize my blog"
14029
- #~ msgstr "Lassen Sie Squirrly automatisch Ihren Blog optimieren"
14030
-
14031
- # @ squirrly-seo
14032
- #~ msgid ""
14033
- #~ "adds the correct <strong>description</strong> and <strong>keywords</"
14034
- #~ "strong> in all pages"
14035
- #~ msgstr ""
14036
- #~ "fügt die richtige <strong>Beschreibung</strong> und "
14037
- #~ "<strong>Schlüsselwörter</strong> auf allen Seiten ein"
14038
-
14039
- # @ squirrly-seo
14040
- #~ msgid "adds the <strong>XML Sitemap</strong> for search engines"
14041
- #~ msgstr "fügt die <strong>XML Sitemap</strong> für Suchmaschinen ein"
14042
-
14043
- # @ squirrly-seo
14044
- #~ msgid ""
14045
- #~ "adds the required METAs for home page (<strong>icon, author, language, dc "
14046
- #~ "publisher</strong>, etc.)"
14047
- #~ msgstr ""
14048
- #~ "fügt die erforderlichen METAs für die Startseite (<strong> icon, Autor, "
14049
- #~ "Sprache, dc Verlag </strong>, etc.) ein"
14050
-
14051
- # @ squirrly-seo
14052
- #~ msgid ""
14053
- #~ "adds the <strong>favicon</strong> and the <strong>icon for Apple devices</"
14054
- #~ "strong>."
14055
- #~ msgstr ""
14056
- #~ "fügt das <strong>favicon</strong> und die <strong>icon für Apple-Geräte</"
14057
- #~ "strong> ein."
14058
-
14059
- # @ squirrly-seo
14060
- #~ msgid "Let Squirrly warn me if there are errors related to SEO settings"
14061
- #~ msgstr ""
14062
- #~ "Squirrly warnen lassen, wenn es Fehler im Zusammenhang mit den SEO-"
14063
- #~ "Einstellungen gibt"
14064
-
14065
- # @ squirrly-seo
14066
- #~ msgid ""
14067
- #~ "Show <strong>\"Enter a keyword\"</strong> bubble when posting a new "
14068
- #~ "article."
14069
- #~ msgstr ""
14070
- #~ "Zeige <strong>\"Enter a keyword\"</ strong> Bubble, bei einem neuen "
14071
- #~ "Artikel."
14072
-
14073
- #~ msgid ""
14074
- #~ "Always show <strong>Keyword Informations</strong> about the selected "
14075
- #~ "keyword."
14076
- #~ msgstr ""
14077
- #~ "Always show <strong>Keyword Informations</strong> about the selected "
14078
- #~ "keyword."
14079
-
14080
- # @ squirrly-seo
14081
- #~ msgid "First page optimization (Title, Description, Keywords)"
14082
- #~ msgstr ""
14083
- #~ " Optimierung der ersten Seite (Titel, Beschreibung, Schlüsselwörter)"
14084
-
14085
- # @ squirrly-seo
14086
- #~ msgid "Status:"
14087
- #~ msgstr "Status:"
14088
-
14089
- # @ squirrly-seo
14090
- #~ msgid "Google Plus URL:"
14091
- #~ msgstr "Google Plus URL:"
14092
-
14093
- # @ squirrly-seo
14094
- #~ msgid "Facebook META code (for %sInsights%s )`:"
14095
- #~ msgstr "Facebook META Code (für %sInsights%s )`:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/squirrly-seo-fr_FR.mo ADDED
Binary file
languages/squirrly-seo-ro_RO.po DELETED
@@ -1,16419 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Squirrly SEO\n"
4
- "POT-Creation-Date: 2021-04-26 17:01+0300\n"
5
- "PO-Revision-Date: 2022-01-31 09:15+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 3.0.1\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
15
- "X-Poedit-WPHeader: squirrly.php\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPathExcluded-0: *.min.js\n"
22
-
23
- #: classes/RemoteController.php:275
24
- msgid "Too many API attempts, please slow down the request."
25
- msgstr "Prea multe încercări de API, vă rugăm să încetiniți solicitarea."
26
-
27
- #: classes/RemoteController.php:279
28
- msgid ""
29
- "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
30
- "in a minute."
31
- msgstr ""
32
- "Squirrly Cloud este în stare de întreținere în acest moment. Dar vom reveni "
33
- "într-un minut."
34
-
35
- #: classes/RemoteController.php:1338
36
- msgid "Keyword:"
37
- msgstr "Cuvant cheie:"
38
-
39
- #: classes/RemoteController.php:1339
40
- msgid "date"
41
- msgstr "data"
42
-
43
- #: classes/RemoteController.php:1340
44
- msgid ""
45
- "To load the Live Assistant and optimize this page, click to connect to "
46
- "Squirrly Cloud."
47
- msgstr ""
48
- "Pentru a încărca Squirrly Live Assistant și a optimiza această pagină, "
49
- "faceți clic pentru a vă conecta la Squirrly Cloud."
50
-
51
- #: classes/RemoteController.php:1341 controllers/CheckSeo.php:329
52
- #: controllers/Patterns.php:21 controllers/Research.php:313
53
- #: controllers/Research.php:344 controllers/Research.php:398
54
- #: controllers/Research.php:526 controllers/Research.php:735
55
- #: view/Blocks/Snippet.php:1307
56
- msgid "Saved!"
57
- msgstr "Salvat!"
58
-
59
- #: classes/RemoteController.php:1342
60
- msgid "Read it!"
61
- msgstr "Citeste!"
62
-
63
- #: classes/RemoteController.php:1343
64
- msgid "Insert it!"
65
- msgstr "Adauga!"
66
-
67
- #: classes/RemoteController.php:1344
68
- msgid "Reference"
69
- msgstr "Referință"
70
-
71
- #: classes/RemoteController.php:1345
72
- msgid "Insert as box"
73
- msgstr "Adaugă o casuță"
74
-
75
- #: classes/RemoteController.php:1346
76
- msgid "Insert Link"
77
- msgstr "Adaugă Link"
78
-
79
- #: classes/RemoteController.php:1347
80
- msgid "Not relevant?"
81
- msgstr "Nu este relevant?"
82
-
83
- #: classes/RemoteController.php:1348
84
- msgid "Insert in your article"
85
- msgstr "Adauga paragraf in articol"
86
-
87
- #: classes/RemoteController.php:1349
88
- msgid ":( An error occurred while processing your request. Please try again"
89
- msgstr ":( A apărut o eroare la procesarea cererii. Încercați din nou"
90
-
91
- #: classes/RemoteController.php:1350
92
- msgid "No results found!"
93
- msgstr "Nu s-a gasit nimic!"
94
-
95
- #: classes/RemoteController.php:1351
96
- #, php-format
97
- msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
98
- msgstr ""
99
- "[ ATTRIBUTE: Verificați: %s pentru a vedea condițiile de atribuire a "
100
- "imaginii ]"
101
-
102
- #: classes/RemoteController.php:1352
103
- msgid "Has creative commons attributes"
104
- msgstr "Are condiții de atribuire"
105
-
106
- #: classes/RemoteController.php:1353
107
- msgid "No known copyright restrictions"
108
- msgstr "Nu sunt restricții de copyright cunoscute"
109
-
110
- #: classes/RemoteController.php:1354
111
- msgid ""
112
- "You haven`t used Squirrly SEO to optimize your article. Do you want to "
113
- "optimize for a keyword before publishing?"
114
- msgstr ""
115
- "Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa îl "
116
- "optimizezi înainte de publicare?"
117
-
118
- #: classes/RemoteController.php:1355
119
- msgid "Your Subscription has Expired"
120
- msgstr "Abonamentul dvs. a expirat"
121
-
122
- #: classes/RemoteController.php:1356
123
- msgid "There are no keywords saved in briefcase yet"
124
- msgstr "Încă nu există cuvinte cheie salvate în Briefcase Squirrly"
125
-
126
- #: classes/RemoteController.php:1357
127
- #, php-format
128
- msgid "Congratulations! Your article is 100% optimized!"
129
- msgstr "Felicitări! Articolul dumneavoastră este 100% optimizat !"
130
-
131
- #: classes/RemoteController.php:1358
132
- #, php-format
133
- msgid "appears too many times. Try to remove %s of them"
134
- msgstr "apare de prea multe ori. Șterge %s cuvint(e) cheie"
135
-
136
- #: classes/RemoteController.php:1359
137
- #, php-format
138
- msgid "write %s more words"
139
- msgstr "mai adaugă %s cuvinte"
140
-
141
- #: classes/RemoteController.php:1360
142
- #, php-format
143
- msgid "Add the keyword in the %s of your article"
144
- msgstr "Adaugă cuvântul cheie la %s articolului"
145
-
146
- #: classes/RemoteController.php:1361
147
- msgid "Click to keep the highlight on"
148
- msgstr "Faceți clic pentru a continua sublinierea"
149
-
150
- #: classes/RemoteController.php:1362
151
- msgid "introduction"
152
- msgstr "introducere"
153
-
154
- #: classes/RemoteController.php:1363
155
- #, php-format
156
- msgid "Write more words after the %s keyword"
157
- msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
158
-
159
- #: classes/RemoteController.php:1364
160
- msgid "or use synonyms"
161
- msgstr "sau foloseste sinonime"
162
-
163
- #: classes/RemoteController.php:1365
164
- #, php-format
165
- msgid "add %s more word(s)"
166
- msgstr "mai adauga %s cuvinte"
167
-
168
- #: classes/RemoteController.php:1366
169
- #, php-format
170
- msgid "or remove %s word(s)"
171
- msgstr "sau sterge %s cuvinte"
172
-
173
- #: classes/RemoteController.php:1367
174
- #, php-format
175
- msgid "add the selected keyword %s more time(s) "
176
- msgstr "adaugă cuvântul cheie selectat %s mai multe ori(e) "
177
-
178
- #: classes/RemoteController.php:1368
179
- #, php-format
180
- msgid "write %s more words to start calculating"
181
- msgstr "scrie %s cuvinte pentru a se putea verifica"
182
-
183
- #: classes/RemoteController.php:1369 view/Research/Research.php:51
184
- msgid "Add to Briefcase"
185
- msgstr "Adăugați în Briefcase Squirrly"
186
-
187
- #: classes/RemoteController.php:1370
188
- msgid "Add Keyword to Briefcase"
189
- msgstr "Adăugați cuvinte cheie în Briefcase Squirrly"
190
-
191
- #: classes/RemoteController.php:1371
192
- msgid "Select"
193
- msgstr "Selectează"
194
-
195
- #: classes/RemoteController.php:1372 view/Blocks/Snippet.php:138
196
- #: view/Blocks/Snippet.php:654 view/Blocks/Snippet.php:922
197
- msgid "Auto Draft"
198
- msgstr "Auto Draft"
199
-
200
- #: classes/RemoteController.php:1373
201
- msgid "Enter keyword above and press ENTER"
202
- msgstr "Adauga cuvinte cheie mai sus si apasa Enter"
203
-
204
- #: classes/RemoteController.php:1374
205
- msgid "Add Keywords from Briefcase"
206
- msgstr "Adăugați cuvinte cheie din Briefcase"
207
-
208
- #: classes/RemoteController.php:1375
209
- msgid ""
210
- "Live Assistant was used to optimize this page with the Page Builder. Please "
211
- "go back and resume your optimization work there."
212
- msgstr ""
213
- "Ați folosit deja Asistentul Live pentru a optimiza această postare. Vă rugăm "
214
- "să vă întoarceți și să vă reluați activitatea de optimizare."
215
-
216
- #: classes/helpers/Sanitize.php:196
217
- msgid "The code for Google Webmaster Tool is incorrect."
218
- msgstr "Codul google pentru Webmaster Tool este greșit."
219
-
220
- #: classes/helpers/Sanitize.php:223
221
- msgid "The code for Google Analytics is incorrect."
222
- msgstr "Codul Google Analytics este incorect."
223
-
224
- #: classes/helpers/Sanitize.php:260
225
- msgid "The code for Facebook is incorrect."
226
- msgstr "Codul Facebook este greșit."
227
-
228
- #: classes/helpers/Sanitize.php:286
229
- msgid "The code for Pinterest is incorrect."
230
- msgstr "Codul Pinterest este greșit."
231
-
232
- #: classes/helpers/Sanitize.php:311
233
- msgid "The code for Bing is incorrect."
234
- msgstr "Codul Bing este greșit."
235
-
236
- #: classes/helpers/Sanitize.php:336
237
- msgid "The code for Baidu is incorrect."
238
- msgstr "Codul Baidu este greșit."
239
-
240
- #: classes/helpers/Sanitize.php:361
241
- msgid "The code for Yandex is incorrect."
242
- msgstr "Codul Yandex este greșit."
243
-
244
- #: classes/helpers/Sanitize.php:386
245
- msgid "The code for Alexa is incorrect."
246
- msgstr "Codul Alexa este greșit."
247
-
248
- #: classes/helpers/Sanitize.php:512
249
- msgid "The code for Facebook Pixel must only contain numbers."
250
- msgstr "Codul Facebook Pixel poate conține doar numere."
251
-
252
- #: classes/helpers/Sanitize.php:527
253
- msgid "The code for Facebook App must only contain numbers."
254
- msgstr "Codul Facebook App poate conține doar numele."
255
-
256
- #: classes/helpers/Tools.php:78
257
- msgid "Getting started"
258
- msgstr "Setări"
259
-
260
- #: classes/helpers/Tools.php:103
261
- msgid "Documentation"
262
- msgstr "Documentație"
263
-
264
- #: classes/helpers/Tools.php:104
265
- msgid "Leave a review"
266
- msgstr "Lasă o evaluare"
267
-
268
- #: classes/helpers/Tools.php:530 classes/helpers/Tools.php:587
269
- msgid "Category"
270
- msgstr "Categorie"
271
-
272
- #: classes/helpers/Tools.php:549 classes/helpers/Tools.php:606
273
- msgid "Tag"
274
- msgstr "Etichetă"
275
-
276
- #: classes/helpers/Tools.php:568
277
- msgid "Format"
278
- msgstr "Format"
279
-
280
- #: classes/helpers/Tools.php:625
281
- msgid "Shipping Option"
282
- msgstr "Opțiunea de expediere"
283
-
284
- #: classes/helpers/Tools.php:663
285
- msgid "Author at"
286
- msgstr "Autor la"
287
-
288
- #: classes/helpers/Tools.php:701
289
- msgid "Are you looking for"
290
- msgstr "Căutați"
291
-
292
- #: classes/helpers/Tools.php:702
293
- msgid "These are the results for"
294
- msgstr "Nu s-a găsit nimic pentru"
295
-
296
- #: classes/helpers/Tools.php:702
297
- msgid "that you can find on our website."
298
- msgstr "pe care îl puteți găsi pe site-ul nostru."
299
-
300
- #: classes/helpers/Tools.php:738
301
- msgid "Page not found"
302
- msgstr "Pagina nu a fost găsită"
303
-
304
- #: classes/helpers/Tools.php:739
305
- msgid "This page could not be found on our website."
306
- msgstr "Această pagină nu a putut fi găsită pe site-ul nostru."
307
-
308
- #: classes/helpers/Tools.php:1071
309
- msgid "For better text comparison you need to install PHP mbstring extension."
310
- msgstr ""
311
- "Pentru o comparație mai bună a textului, trebuie să instalați extensia PHP "
312
- "mbstring."
313
-
314
- #: config/config.php:30
315
- msgid "Places a separator between the elements of the post description"
316
- msgstr "Plasează un separator între elementele descrierii postului"
317
-
318
- #: config/config.php:31
319
- msgid "Adds the title of the post/page/term once it’s published"
320
- msgstr "Adăugă titlul postării / paginii / termenului după ce a fost publicat"
321
-
322
- #: config/config.php:32
323
- msgid ""
324
- "Will display an excerpt from the post/page/term (if not customized, the "
325
- "excerpt will be auto-generated)"
326
- msgstr ""
327
- "Va afișa o descriere scurtă din postare / pagină / termen (dacă nu este "
328
- "personalizat, descrierea scrută va fi generat automat)"
329
-
330
- #: config/config.php:33
331
- msgid "Will display an excerpt from the post/page (no auto-generation)"
332
- msgstr ""
333
- "Va afișa o descriere scurtă din postare / pagină (fără generare automată)"
334
-
335
- #: config/config.php:34
336
- msgid "Adds the post's keyword to the post description"
337
- msgstr "Adăugă cuvântul cheie al postării la descrierea postării"
338
-
339
- #: config/config.php:35
340
- msgid "Displays the number of the current page (i.e. 1 of 6)"
341
- msgstr "Afișează numărul paginii curente (adică 1 din 6)"
342
-
343
- #: config/config.php:36
344
- msgid "Adds the site's name to the post description"
345
- msgstr "Adăugă numele site-ului la descrierea postării"
346
-
347
- #: config/config.php:37
348
- msgid "Adds the tagline/description of your site"
349
- msgstr "Adăugă titlul / descrierea site-ului tau"
350
-
351
- #: config/config.php:38
352
- msgid "Adds the post category (several categories will be comma-separated)"
353
- msgstr ""
354
- "Adaugă categoria postării (mai multe categorii vor fi separate prin virgulă)"
355
-
356
- #: config/config.php:39
357
- msgid "Adds the primary category of the post/page"
358
- msgstr "Adăugă categoria principală a postării / paginii"
359
-
360
- #: config/config.php:40
361
- msgid "Adds the category description to the post description"
362
- msgstr "Adăuga descrierea categoriei la descrierea postării"
363
-
364
- #: config/config.php:41
365
- msgid "Adds the current tag(s) (several tags will be comma-separated)"
366
- msgstr ""
367
- "Adăugă eticheta actuală (mai multe etichete vor fi separate prin virgulă)"
368
-
369
- #: config/config.php:42
370
- msgid "Adds the tag description"
371
- msgstr "Adăuga descrierea etichetei"
372
-
373
- #: config/config.php:43
374
- msgid "Adds the term name"
375
- msgstr "Adăugă numele termenului"
376
-
377
- #: config/config.php:44
378
- msgid "Adds the term description"
379
- msgstr "Adăuga descrierea termenului"
380
-
381
- #: config/config.php:45
382
- msgid "Displays the search phrase (if it appears in the post)"
383
- msgstr "Afișează fraza de căutare (dacă apare în postare)"
384
-
385
- #: config/config.php:46
386
- msgid "Replaces the publication date of a post/page with the modified one"
387
- msgstr "Înlocuiește data publicării unei postări / pagini cu cea modificată"
388
-
389
- #: config/config.php:47
390
- msgid "Displays the author's nicename"
391
- msgstr "Afișează numele autorului"
392
-
393
- #: config/config.php:48
394
- msgid "Displays the post type singular label"
395
- msgstr "Afișează eticheta singulară a tipului de post"
396
-
397
- #: config/config.php:49
398
- msgid "Displays the post type plural label"
399
- msgstr "Afișează pluralul acestui post type"
400
-
401
- #: config/config.php:50
402
- msgid "Adds the author's biographical info to the post description"
403
- msgstr "Adăuga informațiile biografice ale autorului la descrierea postării"
404
-
405
- #: config/config.php:51
406
- msgid "Displays the date of the post/page once it's published"
407
- msgstr "Afișează data postării / paginii odată ce a fost publicată"
408
-
409
- #: config/config.php:52
410
- msgid "Displays the current date"
411
- msgstr "Afișează data curentă"
412
-
413
- #: config/config.php:53
414
- msgid "Adds the current day"
415
- msgstr "Adăugă ziua curentă"
416
-
417
- #: config/config.php:54
418
- msgid "Adds the current month"
419
- msgstr "Adăuga luna curentă"
420
-
421
- #: config/config.php:55
422
- msgid "Adds the current year"
423
- msgstr "Adăugă anul curent"
424
-
425
- #: config/config.php:56
426
- msgid "Adds the title of a page's parent page"
427
- msgstr "Adăugă titlul paginii părinte a unei pagini"
428
-
429
- #: config/config.php:57
430
- msgid "Adds the product name from Woocommerce for the current product"
431
- msgstr "Adăugă numele produsului de la Woocommerce pentru produsul curent"
432
-
433
- #: config/config.php:58
434
- msgid "Adds the product price from Woocommerce for the current product"
435
- msgstr "Adăuga prețul produsului de la Woocommerce pentru produsul curent"
436
-
437
- #: config/config.php:59
438
- msgid ""
439
- "Adds the product price with Tax from Woocommerce for the current product"
440
- msgstr "Adăuga prețul cu TVA pentru produsul Woocommerce curent"
441
-
442
- #: config/config.php:60
443
- msgid "Adds the product sale price from Woocommerce for the current product"
444
- msgstr ""
445
- "Adăuga prețul de vânzare al produsului de la Woocommerce pentru produsul "
446
- "curent"
447
-
448
- #: config/config.php:61
449
- msgid ""
450
- "Adds the product price currency from Woocommerce for the current product"
451
- msgstr ""
452
- "Adăuga moneda prețului produsului de la Woocommerce pentru produsul curent"
453
-
454
- #: config/config.php:62
455
- msgid "Adds the product brand from Woocommerce for the current product"
456
- msgstr "Adaugă marca produsului din Woocommerce pentru produsul curent"
457
-
458
- #: controllers/Api.php:69
459
- msgid "Invalid Token. Please try again"
460
- msgstr "Simbol Invalid. Vă rugăm să încercați din nou"
461
-
462
- #: controllers/Api.php:90
463
- msgid "Connection expired. Please try again"
464
- msgstr "Conexiunea a expirat. Vă rugăm să încercați din nou"
465
-
466
- #: controllers/Api.php:103 controllers/Api.php:106 controllers/Api.php:109
467
- msgid "Author not found"
468
- msgstr "Autorul nu a fost găsit"
469
-
470
- #: controllers/Api.php:142
471
- msgid "Connection expired. Please try again."
472
- msgstr "Conexiunea a expirat. Vă rugăm să încercați din nou."
473
-
474
- #: controllers/Api.php:152 controllers/Api.php:174
475
- msgid "Wrong Params"
476
- msgstr "Parametrii greșiți"
477
-
478
- #: controllers/Assistant.php:71
479
- msgid "No keyword found."
480
- msgstr "Nu a fost găsit niciun cuvânt cheie."
481
-
482
- #: controllers/Assistant.php:110 controllers/Assistant.php:137
483
- #: controllers/Audits.php:368 controllers/Ranking.php:149
484
- #: controllers/SeoSettings.php:146 controllers/SeoSettings.php:192
485
- #: controllers/SeoSettings.php:209 controllers/SeoSettings.php:233
486
- #: controllers/SeoSettings.php:272 controllers/SeoSettings.php:301
487
- #: controllers/SeoSettings.php:332 controllers/SeoSettings.php:658
488
- #: controllers/SeoSettings.php:776 controllers/SeoSettings.php:811
489
- msgid "Saved"
490
- msgstr "Salvat"
491
-
492
- #: controllers/Assistant.php:116 controllers/BulkSeo.php:73
493
- #: controllers/Patterns.php:118 controllers/Post.php:332
494
- #: controllers/Post.php:385 controllers/Post.php:416 controllers/Post.php:451
495
- #: controllers/PostsList.php:206 controllers/Research.php:204
496
- #: controllers/Research.php:211 controllers/Research.php:249
497
- #: controllers/Research.php:271 controllers/Research.php:294
498
- #: controllers/Research.php:324 controllers/Research.php:351
499
- #: controllers/Research.php:375 controllers/Research.php:405
500
- #: controllers/Research.php:428 controllers/Research.php:508
501
- #: controllers/Research.php:534 controllers/Research.php:685
502
- #: controllers/Research.php:709 controllers/Research.php:743
503
- #: controllers/Research.php:769 controllers/SeoSettings.php:405
504
- #: controllers/SeoSettings.php:647 controllers/SeoSettings.php:671
505
- #: controllers/SeoSettings.php:684 controllers/SeoSettings.php:705
506
- #: controllers/SeoSettings.php:724 controllers/SeoSettings.php:742
507
- #: controllers/SeoSettings.php:791 controllers/Snippet.php:173
508
- msgid "You do not have permission to perform this action"
509
- msgstr "Nu aveți permisiunea de a efectua această acțiune"
510
-
511
- #: controllers/Assistant.php:142
512
- msgid "Error: Could not save the data."
513
- msgstr "Nu s-a putut salva data."
514
-
515
- #: controllers/Audits.php:142
516
- msgid "The audit was not found. Please load another audit."
517
- msgstr "Auditul nu a fost găsit. Vă rugăm să încărcați un alt audit."
518
-
519
- #: controllers/Audits.php:171
520
- msgid "Could not load the Audit Page."
521
- msgstr "Nu s-a putut încărca pagina de audit."
522
-
523
- #: controllers/Audits.php:285
524
- msgid "Audit page is added. The audit may take a while so please be patient."
525
- msgstr ""
526
- "S-a adăugat pagina de audit. Auditul poate dura câteva minute, vă rugăm să "
527
- "aveți răbdare."
528
-
529
- #: controllers/Audits.php:288
530
- msgid "You reached the maximum number of audit pages for your account."
531
- msgstr "Ați atins numărul maxim de pagini de audit pentru contul dvs."
532
-
533
- #: controllers/Audits.php:291
534
- msgid "Error! Could not add the audit page."
535
- msgstr "Eroare! Nu se poate adăuga pagina de audit."
536
-
537
- #: controllers/Audits.php:295
538
- msgid "Error! Could not find the audit page in your website."
539
- msgstr "Eroare! Nu se poate adăuga pagina de audit in website."
540
-
541
- #: controllers/Audits.php:311 controllers/Audits.php:329
542
- msgid "Audit page sent for recheck. It may take a while so please be patient."
543
- msgstr ""
544
- "Pagina de audit a fost trimisă pentru verificare. Poate dura ceva timp, vă "
545
- "rugăm să aveți răbdare."
546
-
547
- #: controllers/Audits.php:313
548
- msgid "You've made too many requests, you can request one page audit per hour."
549
- msgstr ""
550
- "Ați făcut prea multe cereri, puteți solicita un audit de pagină pe oră."
551
-
552
- #: controllers/Audits.php:315 controllers/Audits.php:318
553
- msgid "The page could not be sent for reaudit."
554
- msgstr "Pagina nu a putut fi trimisă pentru reaudiere."
555
-
556
- #: controllers/Audits.php:332 controllers/Audits.php:335
557
- msgid "The audit for all pages can be made once an hour."
558
- msgstr "Auditul pentru toate paginile se poate face o dată pe oră."
559
-
560
- #: controllers/Audits.php:345
561
- msgid "The audit page is deleted."
562
- msgstr "Pagina de audit a fost ștearsă."
563
-
564
- #: controllers/Audits.php:347 controllers/FocusPages.php:416
565
- #: controllers/Ranking.php:176 controllers/Ranking.php:194
566
- #: controllers/Ranking.php:212 controllers/Research.php:240
567
- #: controllers/Research.php:243 controllers/Research.php:266
568
- #: controllers/Research.php:288 controllers/Research.php:346
569
- #: controllers/Research.php:370 controllers/Research.php:528
570
- #: controllers/Research.php:581 controllers/Research.php:652
571
- #: controllers/Research.php:679 controllers/Research.php:704
572
- #: controllers/Research.php:789
573
- msgid "Invalid params!"
574
- msgstr "Parametrii greșiți!"
575
-
576
- #: controllers/Audits.php:370
577
- msgid "Not a valid email address."
578
- msgstr "Te rog introdu o adresă email validă."
579
-
580
- #: controllers/CheckSeo.php:284 controllers/CheckSeo.php:294
581
- msgid "Done!"
582
- msgstr "Făcut!"
583
-
584
- #: controllers/CheckSeo.php:311
585
- msgid "Fixed!"
586
- msgstr "Rezolvat!"
587
-
588
- #: controllers/CheckSeo.php:316
589
- msgid "Could not fix it. You need to change it manually."
590
- msgstr "Nu s-a putut rezolva. Trebuie să o schimbați manual."
591
-
592
- #: controllers/CheckSeo.php:323
593
- msgid "Saved! Task marked as done."
594
- msgstr "Salvat! Sarcina marcată ca terminată."
595
-
596
- #: controllers/FocusPages.php:156
597
- msgid "Focus Page does not exist or was deleted from your website."
598
- msgstr "Acest Focus Page nu există sau a fost șters de pe site-ul dvs. web."
599
-
600
- #: controllers/FocusPages.php:347
601
- msgid "Focus page is added. The audit may take a while so please be patient."
602
- msgstr ""
603
- "Se adaugă Focus Page. Auditul poate dura ceva timp, vă rugăm să aveți "
604
- "răbdare."
605
-
606
- #: controllers/FocusPages.php:354
607
- msgid "You reached the maximum number of focus pages for all your websites."
608
- msgstr ""
609
- "Ați atins numărul maxim de Focus Pages pentru toate site-urile dvs. web."
610
-
611
- #: controllers/FocusPages.php:357
612
- msgid "Error! Could not add the focus page."
613
- msgstr "Eroare! Nu se poate adăuga acest Focus Page."
614
-
615
- #: controllers/FocusPages.php:360
616
- msgid "Error! This focus page is not public."
617
- msgstr "Eroare! Acest Focus Page nu este publică."
618
-
619
- #: controllers/FocusPages.php:364 controllers/FocusPages.php:403
620
- #, php-format
621
- msgid "Error! Could not find the focus page %d in your website."
622
- msgstr "Eroare! Nu s-a putut găsi pagina de focus %d în site-ul dumneavoastră."
623
-
624
- #: controllers/FocusPages.php:391
625
- msgid "Focus page sent for recheck. It may take a while so please be patient."
626
- msgstr ""
627
- "Focus Page a fost trimis pentru verificare. Poate dura ceva timp, vă rugăm "
628
- "să aveți răbdare."
629
-
630
- #: controllers/FocusPages.php:394 controllers/FocusPages.php:398
631
- msgid "You've made too many requests, please wait a few minutes."
632
- msgstr "Ați făcut prea multe cereri, vă rugăm să așteptați câteva minute."
633
-
634
- #: controllers/FocusPages.php:414
635
- msgid "The focus page is deleted"
636
- msgstr "Pagina de focalizare este ștearsă"
637
-
638
- #: controllers/Menu.php:87
639
- #, php-format
640
- msgid ""
641
- "An error occurred during activation. If this error persists, please contact "
642
- "us at: %s"
643
- msgstr ""
644
- "A apărut o eroare în timpul activării. Dacă această eroare persistă, vă "
645
- "rugăm să ne contactați la adresa: %s"
646
-
647
- #: controllers/Menu.php:121
648
- msgid "Dashboard"
649
- msgstr "Dashboard"
650
-
651
- #: controllers/Menu.php:216 models/CheckSeo.php:186 models/CheckSeo.php:576
652
- #: models/CheckSeo.php:590 models/CheckSeo.php:604 models/CheckSeo.php:618
653
- #: models/CheckSeo.php:660
654
- msgid "SEO Snippet"
655
- msgstr "Snippet SEO"
656
-
657
- #: controllers/Menu.php:225 controllers/Snippet.php:144
658
- msgid "Custom SEO"
659
- msgstr "SEO personalizat"
660
-
661
- #. Author of the plugin/theme
662
- #: controllers/Menu.php:247
663
- msgid "Squirrly SEO"
664
- msgstr "Squirrly SEO"
665
-
666
- #: controllers/Overview.php:70
667
- #, php-format
668
- msgid ""
669
- "%s, why don't you start a two weeks journey for better rankings? %sStart "
670
- "driving your most valuable pages to Better Rankings today with your current "
671
- "plan.%s"
672
- msgstr ""
673
- "%s, de ce nu începi o călătorie de două săptămâni pentru un ranking mai bun? "
674
- "%sÎncepeți să conduceți cele mai valoroase pagini ale dvs. către un "
675
- "clasament mai bun astăzi cu planul dvs. actual.%s"
676
-
677
- #: controllers/Overview.php:93
678
- #, php-format
679
- msgid ""
680
- "Detected %s: We encourage you to %sImport the Settings and SEO%s from %s and "
681
- "deactivate %s to increase the page loading speed for better Google ranking."
682
- msgstr ""
683
- "Detectat %s: Vă încurajăm să %simportați setările și SEO%s de la %s și să "
684
- "dezactivați %s pentru a crește viteza de încărcare a paginii pentru o mai "
685
- "bună poziționare în Google."
686
-
687
- #: controllers/Patterns.php:22
688
- msgid "Saved! This is how the preview looks like"
689
- msgstr "Salvat! Așa arată previzualizarea"
690
-
691
- #: controllers/Post.php:379
692
- msgid "Could not add the demo post."
693
- msgstr "Nu s-a putut trimite postul de demo."
694
-
695
- #: controllers/Post.php:440 controllers/Post.php:465
696
- msgid "Can't get the post URL"
697
- msgstr "Nu pot primi URL-ul postului"
698
-
699
- #: controllers/Post.php:470
700
- msgid "Invalid request"
701
- msgstr "Solicitare incorectă"
702
-
703
- #: controllers/PostsList.php:88 controllers/PostsList.php:139
704
- msgid "SQ Snippet"
705
- msgstr "Snipet Squirrly"
706
-
707
- #: controllers/PostsList.php:89 models/PostsList.php:21
708
- msgid "Optimized"
709
- msgstr "Optimizat"
710
-
711
- #: controllers/PostsList.php:224
712
- msgid "Network Error. Please Refresh."
713
- msgstr "Eroare de rețea. Vă rugăm să actualizați."
714
-
715
- #: controllers/PostsList.php:228
716
- #, php-format
717
- msgid "Maintenance. %sWe'll be back in a minute."
718
- msgstr "Întreținere. %s Ne vom întoarce într-un minut."
719
-
720
- #: controllers/PostsList.php:259
721
- msgid "Not Public"
722
- msgstr "Ciorna"
723
-
724
- #: controllers/PostsList.php:260
725
- msgid "Could not process"
726
- msgstr "Nu s-a putut verifica"
727
-
728
- #: controllers/PostsList.php:261
729
- msgid "The Squirrly subscription has expired!"
730
- msgstr "Abonamentul Squirrly a expirat!"
731
-
732
- #: controllers/Ranking.php:88
733
- msgid "Could not load the Rankings."
734
- msgstr "Nu s-a putut încărca Ranking-ul."
735
-
736
- #: controllers/Ranking.php:104
737
- msgid "Could not load data."
738
- msgstr "Nu s-a putut încărca data."
739
-
740
- #: controllers/Ranking.php:158
741
- #, php-format
742
- msgid "Could not refresh the rank. Please check your SERP credits %shere%s"
743
- msgstr ""
744
- "Nu a putut actualiza poziția Google. Vă rugăm să verificați creditele SERP "
745
- "%shere %s"
746
-
747
- #: controllers/Ranking.php:160
748
- #, php-format
749
- msgid "%s is queued and the rank will be checked soon."
750
- msgstr "%s este pus în coadă și poziția Google va fi verificat în curând."
751
-
752
- #: controllers/Ranking.php:171
753
- msgid "The keyword is deleted."
754
- msgstr "Cuvântul cheie este șters."
755
-
756
- #: controllers/Ranking.php:173
757
- msgid "Could not delete the keyword!"
758
- msgstr "Nu s-a putut șterge cuvântul cheie!"
759
-
760
- #: controllers/Ranking.php:192 controllers/Research.php:264
761
- #: controllers/Research.php:286 controllers/Research.php:368
762
- #: controllers/Research.php:702 controllers/Research.php:787
763
- msgid "Deleted!"
764
- msgstr "Șterse!"
765
-
766
- #: controllers/Ranking.php:209
767
- msgid "Sent!"
768
- msgstr "Trimis!"
769
-
770
- #: controllers/Research.php:105
771
- #, php-format
772
- msgid "No keyword found. %s Show all %s keywords from Briefcase."
773
- msgstr ""
774
- "Nu s-a găsit niciun cuvânt cheie. %s Afișați toate %s cuvintele cheie din "
775
- "Briefcase."
776
-
777
- #: controllers/Research.php:181
778
- msgid "very few"
779
- msgstr "foarte puține"
780
-
781
- #: controllers/Research.php:181
782
- msgid "few"
783
- msgstr "câteva"
784
-
785
- #: controllers/Research.php:181
786
- msgid "some"
787
- msgstr "unele"
788
-
789
- #: controllers/Research.php:181
790
- msgid "many"
791
- msgstr "multe"
792
-
793
- #: controllers/Research.php:182
794
- msgid "very low ranking chance"
795
- msgstr "șanse foarte mici ranking"
796
-
797
- #: controllers/Research.php:182
798
- msgid "low ranking chance"
799
- msgstr "șanse scăzute de ranking"
800
-
801
- #: controllers/Research.php:182
802
- msgid "modest ranking chance"
803
- msgstr "șanse modeste de ranking"
804
-
805
- #: controllers/Research.php:182
806
- msgid "decent ranking chance"
807
- msgstr "sanse decente de ranking"
808
-
809
- #: controllers/Research.php:182
810
- msgid "high ranking chance"
811
- msgstr "șanse mari de ranking"
812
-
813
- #: controllers/Research.php:182
814
- msgid "very high ranking chance"
815
- msgstr "șanse foarte mari de ranking"
816
-
817
- #: controllers/Research.php:230
818
- msgid "Keyword Saved. The rank check will be ready in a minute."
819
- msgstr ""
820
- "Cuvântul cheie este salvat. Verificarea poziției pe Google va fi gata într-"
821
- "un minut."
822
-
823
- #: controllers/Research.php:232 controllers/Research.php:236
824
- msgid "Keyword Saved!"
825
- msgstr "Cuvânt cheie salvat!"
826
-
827
- #: controllers/Research.php:319
828
- msgid "Invalid Label or Color!"
829
- msgstr "Etichetă sau culoare nevalidă!"
830
-
831
- #: controllers/Research.php:400 controllers/Research.php:737
832
- #: controllers/Research.php:763
833
- msgid "Invalid Keyword!"
834
- msgstr "Cuvânt cheie nevalid!"
835
-
836
- #: controllers/Research.php:461 controllers/Research.php:475
837
- #: controllers/Research.php:497 controllers/Research.php:500
838
- #: controllers/SeoSettings.php:454 controllers/SeoSettings.php:457
839
- #: controllers/SeoSettings.php:502 controllers/SeoSettings.php:505
840
- msgid "Error! The backup is not valid."
841
- msgstr "Eroare! Copia de rezervă nu este validă."
842
-
843
- #: controllers/Research.php:495 controllers/SeoSettings.php:452
844
- msgid "Great! The backup is restored."
845
- msgstr "Grozav! Copia de rezervă este restabilită."
846
-
847
- #: controllers/Research.php:503 controllers/SeoSettings.php:460
848
- #: controllers/SeoSettings.php:508
849
- msgid "Error! You have to enter a previously saved backup file."
850
- msgstr "Eroare! Trebuie să introduceți un fișier de backup salvat anterior."
851
-
852
- #: controllers/Research.php:549
853
- msgid "Could not add the keyword to SERP Check. Please try again."
854
- msgstr ""
855
- "Nu s-a putut adăuga cuvântul cheie la Verificare SERP. Vă rugăm să încercați "
856
- "din nou."
857
-
858
- #: controllers/Research.php:551
859
- msgid "The keyword is added to SERP Check."
860
- msgstr "Cuvântul cheie este adăugat la Verificare SERP."
861
-
862
- #: controllers/Research.php:554
863
- msgid "Invalid parameters."
864
- msgstr "Parametri nevalizi."
865
-
866
- #: controllers/Research.php:646
867
- msgid "Keyword Research limit exceeded"
868
- msgstr "Limita de cercetare a cuvintelor cheie a fost depășită"
869
-
870
- #: controllers/Research.php:761
871
- msgid "The keywords are added to SERP Check!"
872
- msgstr "Cuvintele cheie sunt adăugate la Verificare SERP!"
873
-
874
- #: controllers/SeoSettings.php:375
875
- msgid "Google Analytics account is disconnected."
876
- msgstr "Contul Google Analytics este deconectat."
877
-
878
- #: controllers/SeoSettings.php:377 controllers/SeoSettings.php:390
879
- msgid "Error! Could not disconnect the account."
880
- msgstr "Eroare: Nu se poate deconecta contul."
881
-
882
- #: controllers/SeoSettings.php:388
883
- msgid "Google Search Console account is disconnected."
884
- msgstr "Contul Google Search Console este deconectat."
885
-
886
- #: controllers/SeoSettings.php:499
887
- msgid "Great! The SEO backup is restored."
888
- msgstr "Grozav! Backupul SEO este restabilit."
889
-
890
- #: controllers/SeoSettings.php:536 controllers/SeoSettings.php:587
891
- #, php-format
892
- msgid ""
893
- "Success! The import from %s was completed successfully and your SEO is safe!"
894
- msgstr ""
895
- "Succes! Importul de la %s a fost finalizat cu succes, iar SEO-ul dvs. este "
896
- "în siguranță!"
897
-
898
- #: controllers/SeoSettings.php:538
899
- msgid "Error! An error occured while import. Please try again."
900
- msgstr "Eroare! A aparut o eroare in timpulu importului. Incercati din nou."
901
-
902
- #: controllers/SeoSettings.php:550
903
- msgid "All the Plugin settings were imported successfuly!"
904
- msgstr "Toate setările pluginului au fost importate cu succes!"
905
-
906
- #: controllers/SeoSettings.php:552
907
- msgid "No settings found for this plugin/theme."
908
- msgstr "Nu s-au găsit setări pentru acest plugin / temă."
909
-
910
- #: controllers/SeoSettings.php:607
911
- msgid "Rollback to Previous Version"
912
- msgstr "Rollback la versiunea anterioară"
913
-
914
- #: controllers/SeoSettings.php:629 view/SeoSettings/Backup.php:265
915
- msgid "Reinstall Current Version"
916
- msgstr "Reinstalați versiunea curentă"
917
-
918
- #: controllers/SeoSettings.php:660
919
- msgid "Could not save the changes"
920
- msgstr "Nu s-a putut salva modificările"
921
-
922
- #: controllers/SeoSettings.php:695
923
- msgid ""
924
- "Error! Could not get the code. Connect to Google Search Console and validate "
925
- "the connection."
926
- msgstr ""
927
- "Eroare! Nu s-a putut obține codul. Conectați-vă la Google Search Console și "
928
- "validați conexiunea."
929
-
930
- #: controllers/SeoSettings.php:715
931
- msgid ""
932
- "Error! Could not get the tracking code. Connect to Google Analytics and get "
933
- "the website tracking code from Admin area."
934
- msgstr ""
935
- "Eroare! Nu s-a putut obține codul de urmărire. Conectați-vă la Google "
936
- "Analytics și obțineți codul de urmărire a site-ului din zona de administrare."
937
-
938
- #: controllers/SeoSettings.php:784 controllers/SeoSettings.php:819
939
- msgid "Could not add the post type."
940
- msgstr "Nu s-a putut adăuga tipul de post."
941
-
942
- #: controllers/Snippet.php:89
943
- msgid "Squirrly SEO Snippet"
944
- msgstr "Squirrly SEO Snippet"
945
-
946
- #: controllers/Snippet.php:192
947
- #, php-format
948
- msgid ""
949
- "Could not save the snippet. Please check the database table %s integrity."
950
- msgstr ""
951
- "Nu s-a putut salva Snippetul. Vă rugăm să verificați integritatea tabelului "
952
- "%s din baza de date."
953
-
954
- #: core/BlockSupport.php:31
955
- msgid "Thank you for your feedback."
956
- msgstr "Vă mulțumim pentru feedback-ul dumneavoastră."
957
-
958
- #: core/BlockSupport.php:35
959
- msgid "No message."
960
- msgstr "Nici un mesaj."
961
-
962
- #: core/Blocklogin.php:54
963
- #, php-format
964
- msgid ""
965
- "We found your email, so it means you already have a Squirrly.co account. "
966
- "%sClick %sI already have an account%s and login. If you forgot your "
967
- "password, click %shere%s"
968
- msgstr ""
969
- "Am găsit adresa dvs. de e-mail, ceea ce înseamnă că aveți deja un cont "
970
- "Squirrly.co. %sClick pe %sAm deja un cont%s și autentifică-te. Dacă v-ați "
971
- "uitat parola, faceți clic pe %shere%s"
972
-
973
- #: core/Blocklogin.php:57
974
- msgid "Your email is not valid. Please enter a valid email."
975
- msgstr ""
976
- "Adresa dvs. de e-mail nu este validă. Vă rugăm să introduceți un e-mail "
977
- "valid."
978
-
979
- #: core/Blocklogin.php:61
980
- msgid "We could not create your account. Please enter a valid email."
981
- msgstr ""
982
- "Nu am putut să vă creăm contul. Vă rugăm să introduceți un e-mail valid."
983
-
984
- #: core/Blocklogin.php:83 core/Blocklogin.php:140
985
- #, php-format
986
- msgid ""
987
- "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
988
- "webmaster) and request them to add %s to their IP whitelist."
989
- msgstr ""
990
- "Eroare: Nu s-a putut conecta la gazdă :( . Vă rugăm să contactați gazda site-"
991
- "ului dvs. (sau webmasterul) și să le cereți să adauge %s la lista albă de IP-"
992
- "uri."
993
-
994
- #: core/Blocklogin.php:86
995
- msgid "Your email is not set. Please enter a valid email."
996
- msgstr ""
997
- "Adresa dvs. de e-mail nu este setată. Vă rugăm să introduceți un e-mail "
998
- "valid."
999
-
1000
- #: core/Blocklogin.php:108
1001
- msgid "Wrong email or password!"
1002
- msgstr "Email sau Parola gresita!"
1003
-
1004
- #: core/Blocklogin.php:111
1005
- msgid "You can only use this account for the URL you registered first!"
1006
- msgstr ""
1007
- "Puteți utiliza acest cont doar pentru URL-ul pe care l-ați înregistrat mai "
1008
- "întâi!"
1009
-
1010
- #: core/Blocklogin.php:114
1011
- msgid "You disconnected your website from"
1012
- msgstr "Ați deconectat site-ul dvs. de la"
1013
-
1014
- #: core/Blocklogin.php:118
1015
- msgid "An error occured."
1016
- msgstr "A apărut o eroare."
1017
-
1018
- #: core/Blocklogin.php:144
1019
- msgid "Both fields are required."
1020
- msgstr "Ambele câmpuri sunt obligatorii."
1021
-
1022
- #: models/Assistant.php:49
1023
- msgid "Task Details"
1024
- msgstr "Detalii despre task"
1025
-
1026
- #: models/Assistant.php:56
1027
- msgid "active task"
1028
- msgstr "task activă"
1029
-
1030
- #: models/Assistant.php:86
1031
- msgid "Change Main Keyword"
1032
- msgstr "Schimbă cuvântul cheie principal"
1033
-
1034
- #: models/Assistant.php:91
1035
- msgid "Main Keyword"
1036
- msgstr "Cuvânt cheie principal"
1037
-
1038
- #: models/Assistant.php:94
1039
- msgid "Note! You need to request a new Focus Pages audit to update the report!"
1040
- msgstr ""
1041
- "Notă! Trebuie să solicitați un nou audit Focus Pages pentru a actualiza "
1042
- "raportul!"
1043
-
1044
- #: models/Assistant.php:97
1045
- msgid "Save Main Keyword"
1046
- msgstr "Salvează cuvântul cheie principal"
1047
-
1048
- #: models/Assistant.php:118 view/Blocks/Jorney.php:70
1049
- msgid "Do Keyword Research"
1050
- msgstr "Faceți cercetare de cuvinte cheie"
1051
-
1052
- #: models/Assistant.php:119
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
- "Utilizați Cercetare - Găsiți cuvinte cheie pentru a efectua prima cercetare "
1060
- "de cuvinte cheie pentru acest site web utilizând Squirrly SEO. %s Acesta vă "
1061
- "va ghida prin cei 3 pași importanți pentru efectuarea unei cercetări. %s "
1062
- "Urmați pur și simplu pașii."
1063
-
1064
- #: models/Assistant.php:123
1065
- msgid "Add Keywords in Briefcase"
1066
- msgstr "Adăugați cuvinte cheie în Briefcase"
1067
-
1068
- #: models/Assistant.php:124
1069
- #, php-format
1070
- msgid ""
1071
- "Use the Briefcase feature to organize and manage your portfolio of keywords. "
1072
- "%s You'll need to know and document the keywords that you'll be using "
1073
- "throughout your WordPress site. %s This will help you keep a clear SEO "
1074
- "Strategy or it can help you form a SEO Strategy. It will also help you focus "
1075
- "and you'll get to see when you're spreading yourself too thin. %s Add your "
1076
- "first keywords (that you've researched using the Keyword Research tool) to "
1077
- "Briefcase. Only add keywords that you will want to work on at some point in "
1078
- "the future and which are on-point with your strategy."
1079
- msgstr ""
1080
- "Utilizați Briefcase pentru a vă organiza și gestiona portofoliul de cuvinte "
1081
- "cheie. %s Va trebui să cunoașteți și să documentați cuvintele cheie pe care "
1082
- "le veți utiliza pe tot site-ul WordPress. %s Acest lucru vă va ajuta să "
1083
- "păstrați o Strategie SEO clară sau vă poate ajuta să formați o Strategie "
1084
- "SEO. De asemenea, vă va ajuta să vă concentrați și veți putea vedea când vă "
1085
- "împrăștiați prea mult. %s Adăugați primele cuvinte cheie (pe care le-ați "
1086
- "cercetat cu ajutorul instrumentului de cercetare a cuvintelor cheie) în "
1087
- "Briefcase. Adăugați doar cuvinte cheie la care veți dori să lucrați la un "
1088
- "moment dat în viitor și care sunt în concordanță cu strategia dvs."
1089
-
1090
- #: models/Assistant.php:128
1091
- msgid "Create Labels for Keywords"
1092
- msgstr "Creați etichete pentru cuvintele cheie"
1093
-
1094
- #: models/Assistant.php:129
1095
- #, php-format
1096
- msgid ""
1097
- "Organize your keywords by using Labels for the keywords you've stored in "
1098
- "Briefcase. %s There are many ways to use this: from Customer Journey labels, "
1099
- "to direct or indirect labels, to core keywords or secondary keywords ... and "
1100
- "so on. You can get super creative with this. %s We have a very important "
1101
- "blog post you can read for this http://fourhourseo.com/pro-course-6-how-to-"
1102
- "organize-and-manage-your-keyword-portfolio/ %s Just add your first label to "
1103
- "complete this task."
1104
- msgstr ""
1105
- "Organizați-vă cuvintele cheie utilizând etichete pentru cuvintele cheie pe "
1106
- "care le-ați stocat în Briefcase. %s Există mai multe moduri de a utiliza "
1107
- "acest lucru: de la etichete pentru Customer Journey, la etichete directe sau "
1108
- "indirecte, la cuvinte cheie principale sau cuvinte cheie secundare ... și "
1109
- "așa mai departe. Puteți deveni super creativ cu acest lucru. %s Avem un "
1110
- "articol foarte important pe blog pe care îl puteți citi pentru acest lucru "
1111
- "http://fourhourseo.com/pro-course-6-how-to-organize-and-manage-your-keyword-"
1112
- "portfolio/ %s Doar adăugați prima etichetă pentru a finaliza această sarcină."
1113
-
1114
- #: models/Assistant.php:133
1115
- msgid "Add Keywords to Labels"
1116
- msgstr "Adăugați cuvinte cheie la etichete"
1117
-
1118
- #: models/Assistant.php:134
1119
- #, php-format
1120
- msgid ""
1121
- "Now that you've created your first label, you should label one of your "
1122
- "stored keywords using that label. %s Go to Briefcase. Move your mouse over "
1123
- "the row containing your desired keyword. The 3 vertical dots button appears. "
1124
- "%s Move your mouse over it and a menu will show. Click on Assign Label. %s "
1125
- "Then, assign a label to your keyword in order to complete this task."
1126
- msgstr ""
1127
- "Acum că ați creat prima etichetă, ar trebui să etichetați unul dintre "
1128
- "cuvintele cheie stocate folosind această etichetă. %s Mergeți la Briefcase. "
1129
- "Deplasați mouse-ul pe rândul care conține cuvântul cheie dorit. Apare "
1130
- "butonul cu 3 puncte verticale. %s Deplasați mouse-ul peste el și va apărea "
1131
- "un meniu. Faceți clic pe Assign Label (Atribuire etichetă). %s Apoi, "
1132
- "atribuiți o etichetă cuvântului dvs. cheie pentru a finaliza această sarcină."
1133
-
1134
- #: models/Assistant.php:138
1135
- msgid "Send Keywords to Rank Checker"
1136
- msgstr "Trimiteți cuvintele cheie către Rank Checker"
1137
-
1138
- #: models/Assistant.php:139
1139
- #, php-format
1140
- msgid ""
1141
- "Now that you (hopefully) have keywords added to your Briefcase, go look at "
1142
- "one of your keywords. Move the mouse over the row with your desired keyword. "
1143
- "%s You will see a button with 3 vertical dots appear to the right of the "
1144
- "row. %s Get your mouse cursor over that button. A menu shows. Click on Send "
1145
- "to Rank Checker. %s That's it. Now Squirrly SEO's rank checker feature will "
1146
- "start tracking your position in Google for that keyword that is part of your "
1147
- "SEO strategy."
1148
- msgstr ""
1149
- "Acum că ați adăugat (sperăm) cuvinte cheie în servieta dvs., mergeți să vă "
1150
- "uitați la unul dintre cuvintele cheie. Deplasați mouse-ul peste rândul cu "
1151
- "cuvântul cheie dorit. %s Veți vedea că în dreapta rândului va apărea un "
1152
- "buton cu 3 puncte verticale. %s Treceți cursorul mouse-ului pe acel buton. "
1153
- "Se afișează un meniu. Faceți clic pe Send to Rank Checker (Trimiteți la Rank "
1154
- "Checker). %s Asta e tot. Acum, funcția Rank Checker a Squirrly SEO va începe "
1155
- "să urmărească poziția dvs. în Google pentru acel cuvânt cheie care face "
1156
- "parte din strategia dvs. de SEO."
1157
-
1158
- #: models/Assistant.php:145
1159
- msgid "Optimize Using Live Assistant"
1160
- msgstr "Optimizați utilizând Live Assistant"
1161
-
1162
- #: models/Assistant.php:146
1163
- #, php-format
1164
- msgid ""
1165
- "Optimize your first Page or Article using the SEO Live Assistant (SLA) "
1166
- "feature from Squirrly SEO. %s You can either Edit an existing post or create "
1167
- "a new post. (You have your Live Assistant where you have your WP "
1168
- "Editor)%sThe SEO Live Assistant is like having a SEO Consultant near you, "
1169
- "whispering in your ear exactly what you have to do to get a 100&#37; "
1170
- "optimized article or page.%sYou can try the DEMO first, by clicking on the "
1171
- "Demo Post button. It's safe to break anything in the SEO of that page, "
1172
- "because it never gets indexed by Google, since it's a DEMO. It's an easy way "
1173
- "to learn your way around it."
1174
- msgstr ""
1175
- "Optimizează-ți prima pagină sau primul articol folosind funcția SEO Live "
1176
- "Assistant (SLA) de la Squirrly SEO. %s Puteți edita o postare existentă sau "
1177
- "puteți crea o postare nouă. (Aveți Asistentul Live acolo unde aveți Editorul "
1178
- "WP)%sAsistentul SEO Live este ca și cum ați avea un consultant SEO lângă "
1179
- "dumneavoastră, care vă șoptește la ureche exact ce trebuie să faceți pentru "
1180
- "a obține un articol sau o pagină optimizată 100&#37; . %sPuteți încerca mai "
1181
- "întâi DEMO-ul, făcând clic pe butonul Demo Post. Este sigur că nu poți "
1182
- "strica nimic în SEO-ul acelei pagini, deoarece nu este niciodată indexată de "
1183
- "Google, fiind vorba de un DEMO. Este o modalitate ușoară de a învăța cum să "
1184
- "te descurci."
1185
-
1186
- #: models/Assistant.php:152
1187
- msgid "Activate SEO Automation"
1188
- msgstr "Activați automatizarea SEO"
1189
-
1190
- #: models/Assistant.php:153
1191
- #, php-format
1192
- msgid ""
1193
- "The %sSEO Automation Features%s of Squirrly SEO are extremely powerful. %s "
1194
- "They help Non-SEO experts avoid many mistakes they would normally make. %s "
1195
- "They help experts control any WordPress site at a level that has never been "
1196
- "possible before. (just make sure you click to see the Advanced settings). %s "
1197
- "You'll be able to configure automations according to any post type. %s Turn "
1198
- "the toggle to ON for: %sActivate Patterns%s to complete this task."
1199
- msgstr ""
1200
- "Caracteristicile %sSEO Automation%s ale Squirrly SEO sunt extrem de "
1201
- "puternice. %s Ele ajută experții non-SEO să evite multe greșeli pe care le-"
1202
- "ar face în mod normal. %s Ele ajută experții să controleze orice site "
1203
- "WordPress la un nivel care nu a fost niciodată posibil înainte. (asigurați-"
1204
- "vă că faceți clic pentru a vedea setările avansate). %s Veți putea configura "
1205
- "automatizările în funcție de orice tip de post. %s Treceți comutatorul pe ON "
1206
- "pentru: %sActivare Modele%s pentru a finaliza această sarcină."
1207
-
1208
- #: models/Assistant.php:157
1209
- msgid "Activate METAs"
1210
- msgstr "Activați META-urile"
1211
-
1212
- #: models/Assistant.php:158
1213
- #, php-format
1214
- msgid ""
1215
- "Activate the %sMETA settings%s from the Squirrly SEO Plugin. %s You can "
1216
- "import ALL meta settings you've made with other plugins in WordPress into "
1217
- "your Squirrly SEO Plugin. That way everything will be kept 100%% intact, "
1218
- "without any head-aches. %s To complete this task you need to activate: %s - "
1219
- "Optimize the Titles%s - Optimize Descriptions %s - Add Canonical META Link "
1220
- "%s Make sure you click on %sSave settings%s after you switch anything on or "
1221
- "off."
1222
- msgstr ""
1223
- "Activați setările %sMETA%s din Plugin-ul Squirrly SEO. %s Puteți importa "
1224
- "TOATE setările meta pe care le-ați făcut cu alte pluginuri din WordPress în "
1225
- "Plugin-ul Squirrly SEO. În acest fel, totul va fi păstrat 100%% intact, fără "
1226
- "dureri de cap. %s Pentru a finaliza această sarcină, trebuie să activați: %s "
1227
- "- Optimizarea titlurilor%s - Optimizarea Descrierilor %s - Adăugați linkul "
1228
- "META canonic %s Asigurați-vă că faceți clic pe %sSalvați setările%s după ce "
1229
- "activați sau dezactivați ceva."
1230
-
1231
- #: models/Assistant.php:162 view/Blocks/Snippet.php:382
1232
- #: view/SeoSettings/Jsonld.php:37
1233
- msgid "Activate JSON-LD"
1234
- msgstr "Activați JSON-LD"
1235
-
1236
- #: models/Assistant.php:163
1237
- #, php-format
1238
- msgid ""
1239
- "%sJSON-LD Structured Data%s needs to be activated. %s The Duplicate Removal "
1240
- "feature of Squirrly SEO will make sure that if you have more than one JSON-"
1241
- "LD definition inside the source code of any URL, the definition created by "
1242
- "Squirrly SEO will be the only one that remains. %s Make sure you setup all "
1243
- "the information about your Organization or your Personal Brand here. %s To "
1244
- "finish all the JSON-LD related setup, also visit the %sSocial Media%s "
1245
- "section of our Settings page and write in your social media profiles for "
1246
- "this site. %s Then, at URL-level you will be able to add custom JSON-LD if "
1247
- "you're an advanced user."
1248
- msgstr ""
1249
- "%sJSON-LD Structured Data%s trebuie să fie activat. %s Funcția de eliminare "
1250
- "a duplicatelor din Squirrly SEO se va asigura că, dacă aveți mai multe "
1251
- "definiții JSON-LD în interiorul codului sursă al oricărui URL, definiția "
1252
- "creată de Squirrly SEO va fi singura care va rămâne. %s Asigurați-vă că ați "
1253
- "configurat aici toate informațiile despre Organizația dumneavoastră sau "
1254
- "Marca personală. %s Pentru a termina toată configurarea legată de JSON-LD, "
1255
- "vizitați și secțiunea %sSocial Media%s din pagina noastră de Setări și "
1256
- "scrieți profilurile dvs. de social media pentru acest site. %s Apoi, la "
1257
- "nivel de URL veți putea adăuga JSON-LD personalizat dacă sunteți un "
1258
- "utilizator avansat."
1259
-
1260
- #: models/Assistant.php:167 view/Blocks/Snippet.php:615
1261
- #: view/SeoSettings/Automation.php:435 view/SeoSettings/Social.php:52
1262
- msgid "Activate Open Graph"
1263
- msgstr "Activați Open Graph"
1264
-
1265
- #: models/Assistant.php:168
1266
- #, php-format
1267
- msgid ""
1268
- "Go to the %sSocial Media section%s.%sActivate Open Graph. (switch the toggle "
1269
- "to ON) %s The Open Graph will help you control the way your posts look when "
1270
- "people share your URLs to social media sites like Facebook and LinkedIN. %s "
1271
- "It will also make your social media posts look great and gain you clicks to "
1272
- "your site."
1273
- msgstr ""
1274
- "Mergeți la secțiunea %sSocial Media%s.%sActivați Open Graph. (comutați "
1275
- "comutatorul pe ON) %s Open Graph vă va ajuta să controlați modul în care "
1276
- "arată postările dvs. atunci când oamenii partajează URL-urile dvs. pe site-"
1277
- "uri de socializare precum Facebook și LinkedIN. %s De asemenea, va face ca "
1278
- "postările dvs. din social media să arate foarte bine și să vă aducă click-"
1279
- "uri pe site-ul dvs."
1280
-
1281
- #: models/Assistant.php:172 view/Blocks/Snippet.php:881
1282
- #: view/SeoSettings/Automation.php:490 view/SeoSettings/Social.php:295
1283
- msgid "Activate Twitter Card"
1284
- msgstr "Activați cardul Twitter"
1285
-
1286
- #: models/Assistant.php:173
1287
- #, php-format
1288
- msgid ""
1289
- "Go to the %sSocial Media section%s. %s - Activate Twitter Card. (switch the "
1290
- "toggle to ON) %s - Add your Twitter profile URL %s The Twitter Card will "
1291
- "help you control the way your posts look when people share your URLs on "
1292
- "Twitter. %s It will also make your social media posts look great and gain "
1293
- "you clicks to your site."
1294
- msgstr ""
1295
- "Mergeți la secțiunea %sSocial Media%s. %s - Activați cardul Twitter. "
1296
- "(comutați comutatorul pe ON) %s - Adăugați URL-ul profilului dvs. de Twitter "
1297
- "%s Cardul Twitter vă va ajuta să controlați modul în care arată postările "
1298
- "dvs. atunci când oamenii vă partajează URL-urile pe Twitter. %s De asemenea, "
1299
- "va face ca postările dvs. din social media să arate foarte bine și să vă "
1300
- "aducă click-uri pe site-ul dvs."
1301
-
1302
- #: models/Assistant.php:177
1303
- msgid "Activate Sitemap XML"
1304
- msgstr "Activați Sitemap XML"
1305
-
1306
- #: models/Assistant.php:178
1307
- #, php-format
1308
- msgid ""
1309
- "Activate your %sSitemap XML%s setting. Squirrly SEO will then generate your "
1310
- "sitemap, according to different items you can set up. %s Use this to tell "
1311
- "Google how often you bring new content to your site. %s Also, choose for "
1312
- "which types of URLs you'll want to have sitemaps. It depends on your "
1313
- "strategy. Leave the defaults if you're uncertain. Squirrly SEO chooses the "
1314
- "best defaults for you. %s Make sure you include Images and Videos in the "
1315
- "sitemap. It has been identified as a ranking factor, so it's good to have "
1316
- "that."
1317
- msgstr ""
1318
- "Activați setarea %sSitemap XML%s. Squirrly SEO va genera apoi sitemap-ul "
1319
- "dvs., în funcție de diferite elemente pe care le puteți configura. %s "
1320
- "Folosiți acest lucru pentru a-i spune lui Google cât de des aduceți conținut "
1321
- "nou pe site-ul dumneavoastră. %s De asemenea, alegeți pentru ce tipuri de "
1322
- "URL-uri veți dori să aveți sitemap-uri. Depinde de strategia ta. Lăsați "
1323
- "valorile implicite dacă nu sunteți sigur. Squirrly SEO alege cele mai bune "
1324
- "valori implicite pentru dumneavoastră. %s Asigură-te că incluzi Imagini și "
1325
- "Videoclipuri în sitemap. A fost identificat ca fiind un factor de "
1326
- "clasificare, așa că este bine să le aveți."
1327
-
1328
- #: models/Assistant.php:182
1329
- msgid "Activate Google Analytics"
1330
- msgstr "Activați Google Analytics"
1331
-
1332
- #: models/Assistant.php:183
1333
- #, php-format
1334
- msgid ""
1335
- "Go to the %sTracking Tools section%s. %s Add your Google Analytics ID to "
1336
- "complete this setting. (find it in the tracking code that Google Analytics "
1337
- "tells you to place on your site) %s Squirrly SEO will then add "
1338
- "(automatically) your Google Analytics tracking code (in the format you "
1339
- "desire) to every page of your site (according to rules you can modify in the "
1340
- "Automation section)."
1341
- msgstr ""
1342
- "Mergeți la secțiunea %sTracking Tools%s (Instrumente de urmărire). %s "
1343
- "Adăugați ID-ul Google Analytics pentru a finaliza această setare. (îl găsiți "
1344
- "în codul de urmărire pe care Google Analytics vă spune să-l plasați pe site-"
1345
- "ul dvs.) %s Squirrly SEO va adăuga apoi (automat) codul dvs. de urmărire "
1346
- "Google Analytics (în formatul dorit de dvs.) pe fiecare pagină a site-ului "
1347
- "dvs. (în conformitate cu regulile pe care le puteți modifica în secțiunea "
1348
- "Automatizare)."
1349
-
1350
- #: models/Assistant.php:192
1351
- msgid "Connect the Webmasters"
1352
- msgstr "Conectați Webmasteri"
1353
-
1354
- #: models/Assistant.php:193
1355
- msgid ""
1356
- "Go to the %Webmasters section%s. %s This section makes it super easy to "
1357
- "integrate different (important) 3rd party services with your WordPress. %s "
1358
- "Some webmasters are optional, but Google Search Console is really important. "
1359
- "%s Enter your Pinterest code, especially if you plan to expand your presence "
1360
- "on Pinterest. It will %sactivate Rich Pins%s, which will completely boost "
1361
- "your sales and visibility for any product or post that has great images."
1362
- msgstr ""
1363
- "Mergeți la secțiunea %Webmasteri%s. %s Această secțiune vă permite să "
1364
- "integrați foarte ușor diferite (importante) servicii terțe cu WordPress. %s "
1365
- "Unii webmasteri sunt opționali, dar Google Search Console este foarte "
1366
- "important. %s Introduceți codul Pinterest, mai ales dacă intenționați să vă "
1367
- "extindeți prezența pe Pinterest. Acesta va %sactiva Rich Pins%s, ceea ce vă "
1368
- "va stimula complet vânzările și vizibilitatea pentru orice produs sau "
1369
- "postare care are imagini grozave."
1370
-
1371
- #: models/Assistant.php:201 models/focuspages/Accuracy.php:45
1372
- #: models/focuspages/Length.php:68 models/focuspages/Traffic.php:106
1373
- msgid "Connect Google Analytics"
1374
- msgstr "Conectați Google Analytics"
1375
-
1376
- #: models/Assistant.php:202
1377
- #, php-format
1378
- msgid ""
1379
- "Integrate %sGoogle Analytics%s with Squirrly SEO from %sAudits > Settings%s."
1380
- "%sFeatures like %sFocus Pages%s and the %sAudit%s need this integration, in "
1381
- "order to work at full potential.%sGoogle Analytics is free and everyone uses "
1382
- "it. The %sFocus Pages%s and the %sAudit%s will interpret the right data from "
1383
- "Google Analytics for you.%sYou'll feel like an Analytics expert, without "
1384
- "having to know a single thing about Google Analytics."
1385
- msgstr ""
1386
- "Integrați %sGoogle Analytics%s cu Squirrly SEO din %sAudits > Settings%s."
1387
- "%sFuncții precum %sFocus Pages%s și %sAudit%s au nevoie de această "
1388
- "integrare, pentru a funcționa la potențial maxim.%sGoogle Analytics este "
1389
- "gratuit și toată lumea îl folosește. Funcțiile %sFocus Pages%s și %sAudit%s "
1390
- "vor interpreta pentru dumneavoastră datele corecte din Google Analytics.%sVă "
1391
- "veți simți ca un expert în Analytics, fără a fi nevoie să știți nimic despre "
1392
- "Google Analytics."
1393
-
1394
- #: models/Assistant.php:206 models/Assistant.php:228
1395
- msgid "Connect Google Search Console"
1396
- msgstr "Conectați Google Search Console"
1397
-
1398
- #: models/Assistant.php:207
1399
- #, php-format
1400
- msgid ""
1401
- "Integrate your WordPress with %sGoogle Search Console%s with Squirrly SEO "
1402
- "from %sAudits > Settings%s.%sThis integration is more than just setting the "
1403
- "meta code for it. It will connect your WP to the API of Google's service and "
1404
- "enable info such as Impressions, Clicks, Average Ranking Position to be "
1405
- "collected.%sMore importantly, you'll be able to update all the info that "
1406
- "Google has about your site, directly from your Squirrly SEO Plugin."
1407
- msgstr ""
1408
- "Integrează-ți WordPress cu %sGoogle Search Console%s cu Squirrly SEO din "
1409
- "%sAudits > Settings%s.%sAceastă integrare este mai mult decât o simplă "
1410
- "setare a metacodului pentru aceasta. Aceasta va conecta WP-ul dvs. la API-ul "
1411
- "serviciului Google și va permite colectarea de informații precum Impresii, "
1412
- "Clicuri, Poziția medie în clasament.%sMai important, veți putea actualiza "
1413
- "toate informațiile pe care Google le are despre site-ul dvs., direct din "
1414
- "Plugin-ul Squirrly SEO."
1415
-
1416
- #: models/Assistant.php:211
1417
- msgid "Set the Audit Email"
1418
- msgstr "Setați e-mailul de audit"
1419
-
1420
- #: models/Assistant.php:212
1421
- #, php-format
1422
- msgid ""
1423
- "You can customize the email to which we send the Audit reports.%sIt can be "
1424
- "your personal email, your work email or the email of one of your "
1425
- "collaborators.%sIt's a best practice to have the Audit sent to the person "
1426
- "that will take charge and start correcting the problems of the site, in "
1427
- "order to increase the score."
1428
- msgstr ""
1429
- "Puteți personaliza adresa de e-mail la care trimitem rapoartele de audit."
1430
- "%sPoate fi e-mailul dvs. personal, e-mailul de la serviciu sau e-mailul "
1431
- "unuia dintre colaboratorii dvs..%sEste o bună practică ca auditul să fie "
1432
- "trimis persoanei care se va ocupa și va începe să corecteze problemele site-"
1433
- "ului, pentru a crește scorul."
1434
-
1435
- #: models/Assistant.php:216
1436
- msgid "Get your score over 60"
1437
- msgstr "Obțineți un scor de peste 60"
1438
-
1439
- #: models/Assistant.php:217
1440
- #, php-format
1441
- msgid ""
1442
- "True website marketing performance happens after your Audit score gets to "
1443
- "over 84.%sHowever, you need to start with smaller steps. For now, focus on "
1444
- "getting a score of over 60.%sLook at the progress charts weekly and make "
1445
- "sure you check out the Tasks section, which tells you exactly what you need "
1446
- "to do in order to increase the score.%sWe've been testing these scores since "
1447
- "2013 on hundreds of thousands of websites and it's always the same: %strue "
1448
- "performance happens at over 84%s. That's why you need to start working on "
1449
- "this."
1450
- msgstr ""
1451
- "Adevărata performanță de marketing pe site apare după ce scorul Auditului "
1452
- "ajunge la peste 84.%s Cu toate acestea, trebuie să începeți cu pași mai "
1453
- "mici. Deocamdată, concentrează-te pe obținerea unui scor de peste 60.%sVezi "
1454
- "graficele de progres săptămânal și asigură-te că verifici secțiunea Sarcini, "
1455
- "care îți spune exact ce trebuie să faci pentru a crește scorul.%sAm testat "
1456
- "aceste scoruri din 2013 pe sute de mii de site-uri web și este întotdeauna "
1457
- "același lucru: %sadevărata performanță apare la peste 84%s. De aceea, "
1458
- "trebuie să începi să lucrezi la acest aspect."
1459
-
1460
- #: models/Assistant.php:223
1461
- msgid "Track your first 3 Keywords"
1462
- msgstr "Urmăriți primele 3 cuvinte cheie"
1463
-
1464
- #: models/Assistant.php:224
1465
- #, php-format
1466
- msgid ""
1467
- "%sSERP Checker = Search Engine Result Pages Checker.%s %s It checks your "
1468
- "position on the Google Search Engine for your keywords. Also (on the "
1469
- "Business Plan) it shows you the evolution in time for your sites' URLs for "
1470
- "these keywords. %s Tell Squirrly SEO the first three keywords you want it to "
1471
- "check for you, to see if you're ranking for them. %s Because you should work "
1472
- "according to a solid SEO Strategy, you'll only be able to add keywords or "
1473
- "remove keywords in the Ranking section from your Briefcase. %s Briefcase is "
1474
- "your keyword organizer / manager. Find it in the Research section. Go with "
1475
- "the mouse cursor over a keyword from %sBriefcase -> see the 3 vertical dots -"
1476
- "> select Send to Rank Checker%s"
1477
- msgstr ""
1478
- "%sSERP Checker = Search Engine Result Pages Checker.%s %s Vă verifică "
1479
- "poziția în motorul de căutare Google pentru cuvintele cheie. De asemenea, "
1480
- "(pe Planul de afaceri) vă arată evoluția în timp a URL-urilor site-urilor "
1481
- "dumneavoastră pentru aceste cuvinte cheie. %s Spuneți-i lui Squirrly SEO "
1482
- "primele trei cuvinte cheie pe care doriți să le verifice pentru "
1483
- "dumneavoastră, pentru a vedea dacă vă poziționați pentru ele. %s Deoarece ar "
1484
- "trebui să lucrați în conformitate cu o Strategie SEO solidă, veți putea "
1485
- "adăuga cuvinte cheie sau elimina cuvinte cheie doar în secțiunea Clasament "
1486
- "din Briefcase dumneavoastră. %s Briefcase este organizatorul / managerul tău "
1487
- "de cuvinte cheie. Îl găsiți în secțiunea Cercetare. Mergeți cu cursorul "
1488
- "mouse-ului peste un cuvânt cheie din %sBriefcase -> vedeți cele 3 puncte "
1489
- "verticale -> selectați Send to Rank Checker%s"
1490
-
1491
- #: models/Assistant.php:229
1492
- #, php-format
1493
- msgid ""
1494
- "Connect Google Search Console. %s You can do that from %sSEO Audit > Settings"
1495
- "%s. %s It will bring information regarding Impressions and Clicks. %s Note: "
1496
- "if you're on the free plan or the PRO plan then the Ranking Position will be "
1497
- "displayed according to data from Google Search Console, which does not "
1498
- "present the actual position you are on. It shows an average position that "
1499
- "your site was lately found on. It can give you values such as 4.3 because of "
1500
- "this. Even though your page today could be on position 7. %s The Business "
1501
- "Plan is the only one that can give you the exact position because it uses "
1502
- "Squirrly's private cloud servers that are working around the clock to gather "
1503
- "the accurate, on-time and objective information about your rankings."
1504
- msgstr ""
1505
- "Conectați Google Search Console. %s Puteți face acest lucru din %sSEO Audit "
1506
- "> Setări%s. %s Acesta va aduce informații cu privire la Impresii și Clicuri. "
1507
- "%s Notă: dacă sunteți pe planul gratuit sau pe planul PRO, atunci poziția în "
1508
- "clasament va fi afișată în funcție de datele din Google Search Console, care "
1509
- "nu prezintă poziția reală pe care vă aflați. Aceasta prezintă o poziție "
1510
- "medie pe care site-ul dvs. a fost găsit în ultima vreme. Din acest motiv vă "
1511
- "poate oferi valori precum 4,3. Chiar dacă pagina dvs. ar putea fi astăzi pe "
1512
- "poziția 7. %s Planul de afaceri este singurul care vă poate oferi poziția "
1513
- "exactă, deoarece utilizează serverele cloud private ale Squirrly care "
1514
- "lucrează non-stop pentru a aduna informații exacte, la timp și obiective "
1515
- "despre poziția dvs. în clasament."
1516
-
1517
- #: models/Assistant.php:233
1518
- msgid "Get 1 Keyword to the first page of Google"
1519
- msgstr "Obțineți 1 cuvânt cheie pe prima pagină a Google"
1520
-
1521
- #: models/Assistant.php:234
1522
- #, php-format
1523
- msgid ""
1524
- "Start with a small task. %sGet 1 keyword to the first page of Google%s. %s "
1525
- "Select a good keyword (using our %sKeyword Research Tool%s). %s Create an "
1526
- "amazing page for it (if you don't already have one). %s %sAdd the page to "
1527
- "Focus Pages%s in Squirrly SEO. %s Turn the RED lights to Green in Focus "
1528
- "Pages and see your rankings increase over time. %s If you continue working "
1529
- "on those tasks and turning elements to green you'll complete this task."
1530
- msgstr ""
1531
- "Începeți cu o sarcină mică. %sDuceți 1 cuvânt cheie pe prima pagină din "
1532
- "Google%s. %s Selectați un cuvânt cheie bun (folosind instrumentul nostru "
1533
- "%sKeyword Research Tool%s). %s Creați o pagină uimitoare pentru acesta (dacă "
1534
- "nu aveți deja una). %s %sAdaugați pagina la Focus Pages%s în Squirrly SEO. "
1535
- "%s Treceți luminile ROȘII la VERDE în Focus Pages și vedeți cum crește "
1536
- "clasamentul în timp. %s Dacă veți continua să lucrați la aceste sarcini și "
1537
- "să transformați elementele în verde, veți finaliza această sarcină."
1538
-
1539
- #: models/Assistant.php:291 models/abstract/Assistant.php:230
1540
- msgid "You chose to ignore this task. Click to activate it."
1541
- msgstr "Ați ales să ignorați această sarcină. Faceți clic pentru a o activa."
1542
-
1543
- #: models/Audits.php:16
1544
- msgid "Average Content Optimization"
1545
- msgstr "Optimizarea medie a conținutului"
1546
-
1547
- #: models/Audits.php:17 models/Audits.php:96 models/Audits.php:106
1548
- #: models/Audits.php:116 models/Audits.php:126 models/Audits.php:718
1549
- msgid "Great!"
1550
- msgstr "Grozav!"
1551
-
1552
- #: models/Audits.php:18
1553
- msgid "hmm..."
1554
- msgstr "hmm..."
1555
-
1556
- #: models/Audits.php:19
1557
- #, php-format
1558
- msgid ""
1559
- "How can we fix the SEO optimization of a page on our website? %s Find an "
1560
- "amazing keyword set to use for your page. %s If you have a page about a Jazz "
1561
- "Concert that John Dane (fictional name used for this example) will do on 9th "
1562
- "of August 2025 in Phoenix, AZ, then you can try and find the best keywords "
1563
- "you can use, that are related to: 'jazz concert', 'john dane', 'jazz 2025' "
1564
- "and 'jazz in phoenix'. Find out what others search for. If you'll optimize "
1565
- "the page for those keywords, you'll be certain that jazz fans will find it. "
1566
- "The keyword research tool available in Squirrly SEO helps you figure out "
1567
- "exactly what keywords to use. %s Start optimizing your content. Use the "
1568
- "Live Assistant from Squirrly SEO to do this, as it guides you towards the "
1569
- "best practices of optimizing a page for SEO and helps you avoid keyword "
1570
- "stuffing.%s"
1571
- msgstr ""
1572
- "Cum putem remedia optimizarea SEO a unei pagini de pe site-ul nostru? %s "
1573
- "Găsiți un set de cuvinte cheie extraordinar de utilizat pentru pagina dvs. "
1574
- "%s Dacă aveți o pagină despre un concert de jazz pe care John Dane (nume "
1575
- "fictiv folosit pentru acest exemplu) îl va susține pe 9 august 2025 în "
1576
- "Phoenix, AZ, atunci puteți încerca să găsiți cele mai bune cuvinte cheie pe "
1577
- "care le puteți folosi, care sunt legate de: \"concert de jazz\", \"john dane"
1578
- "\", \"jazz 2025\" și \"jazz în phoenix\". Aflați ce caută alții. Dacă veți "
1579
- "optimiza pagina pentru acele cuvinte cheie, veți fi sigur că fanii de jazz o "
1580
- "vor găsi. Instrumentul de cercetare a cuvintelor cheie disponibil în "
1581
- "Squirrly SEO vă ajută să vă dați seama exact ce cuvinte cheie să folosiți. "
1582
- "%s Începeți să vă optimizați conținutul. Folosiți asistentul Live Assistant "
1583
- "din Squirrly SEO pentru a face acest lucru, deoarece vă ghidează către cele "
1584
- "mai bune practici de optimizare a unei pagini pentru SEO și vă ajută să "
1585
- "evitați keyword stuffing.%s"
1586
-
1587
- #: models/Audits.php:20
1588
- msgid ""
1589
- "Optimization is NOT about stuffing in keywords. It's about writing the page "
1590
- "in such a way that Search Engine bots and Humans alike will easily "
1591
- "understand that the page is exactly about the topic they were searching for. "
1592
- "Use the Live Assistant from Squirrly SEO to get the job done with ease."
1593
- msgstr ""
1594
- "Optimizarea NU constă în introducerea de cuvinte cheie. Este vorba despre a "
1595
- "scrie pagina în așa fel încât atât roboții motoarelor de căutare, cât și "
1596
- "oamenii să înțeleagă cu ușurință că pagina se referă exact la subiectul pe "
1597
- "care l-au căutat. Folosiți Live Assistant de la Squirrly SEO pentru a face "
1598
- "treaba cu ușurință."
1599
-
1600
- #: models/Audits.php:21
1601
- msgid ""
1602
- "Use tools like Squirrly Keyword Research and Squirrly Live Assistant to "
1603
- "optimize your content"
1604
- msgstr ""
1605
- "Utilizați instrumente precum Squirrly Keyword Research și Squirrly Live "
1606
- "Assistant pentru a vă optimiza conținutul"
1607
-
1608
- #: models/Audits.php:26
1609
- msgid "DcPublisher Meta"
1610
- msgstr "DcPublisher Meta"
1611
-
1612
- #: models/Audits.php:27 models/Audits.php:57 models/Audits.php:67
1613
- #: models/Audits.php:77 models/Audits.php:136 models/Audits.php:146
1614
- #: models/Audits.php:156 models/Audits.php:166 models/Audits.php:176
1615
- #: models/Audits.php:186 models/Audits.php:196 models/Audits.php:206
1616
- #: models/Audits.php:216 models/Audits.php:226 models/Audits.php:295
1617
- #: models/Audits.php:305 models/Audits.php:315 models/Audits.php:325
1618
- #: models/Audits.php:420 view/SeoSettings/Jsonld.php:288
1619
- msgid "Yes"
1620
- msgstr "Da"
1621
-
1622
- #: models/Audits.php:28 models/Audits.php:58 models/Audits.php:68
1623
- #: models/Audits.php:78 models/Audits.php:137 models/Audits.php:147
1624
- #: models/Audits.php:167 models/Audits.php:177 models/Audits.php:187
1625
- #: models/Audits.php:197 models/Audits.php:207 models/Audits.php:217
1626
- #: models/Audits.php:227 models/Audits.php:296 models/Audits.php:306
1627
- #: models/Audits.php:316 models/Audits.php:326 models/Audits.php:367
1628
- #: models/Audits.php:411 models/Audits.php:421 view/SeoSettings/Jsonld.php:287
1629
- msgid "No"
1630
- msgstr "Nu"
1631
-
1632
- #: models/Audits.php:28
1633
- msgid "The pages without DcPublisher meta"
1634
- msgstr "Paginile fără DcPublisher meta"
1635
-
1636
- #: models/Audits.php:29
1637
- msgid ""
1638
- "Dublin Core is a set of standard metadata elements used to describe the "
1639
- "contents of a website. It can help with some internal search engines and it "
1640
- "does not bloat your code."
1641
- msgstr ""
1642
- "Dublin Core este un set de elemente standard de metadate utilizate pentru a "
1643
- "descrie conținutul unui site web. Poate fi de ajutor pentru unele motoare de "
1644
- "căutare internă și nu vă îngroașă codul."
1645
-
1646
- #: models/Audits.php:30
1647
- msgid "Add the meta DcPublisher tag in the page's header"
1648
- msgstr "Adăugați tag-ul meta DcPublisher în antetul paginii"
1649
-
1650
- #: models/Audits.php:37
1651
- msgid "Top Ten Pages This Week"
1652
- msgstr "Cele mai bune zece pagini din această săptămână"
1653
-
1654
- #: models/Audits.php:40
1655
- #, php-format
1656
- msgid ""
1657
- "If there is enough data in Google Analytics, you should see the list of "
1658
- "pages with the most visitors in the last week. %s Having at least 100 "
1659
- "visitors per page every week is crucial. %s Search Engines like Google and "
1660
- "Bing will push down a page which doesn't attract visitors."
1661
- msgstr ""
1662
- "Dacă există suficiente date în Google Analytics, ar trebui să vedeți lista "
1663
- "paginilor cu cei mai mulți vizitatori în ultima săptămână. %s Este esențial "
1664
- "să aveți cel puțin 100 de vizitatori pe pagină în fiecare săptămână. %s "
1665
- "Motoarele de căutare precum Google și Bing vor da jos o pagină care nu "
1666
- "atrage vizitatori."
1667
-
1668
- #: models/Audits.php:44 view/FocusPages/FocusPageStats.php:197
1669
- msgid "Page Traffic"
1670
- msgstr "Traficul paginilor"
1671
-
1672
- #: models/Audits.php:45
1673
- msgid " total visits / mo."
1674
- msgstr " total vizite / mo."
1675
-
1676
- #: models/Audits.php:46
1677
- msgid "The pages with low traffic"
1678
- msgstr "Paginile cu trafic scăzut"
1679
-
1680
- #: models/Audits.php:47
1681
- #, php-format
1682
- msgid ""
1683
- "How can we fix the Overall Traffic of the website? %s Make sure you have "
1684
- "active listings which can be easily found on various marketplaces / "
1685
- "platforms. eg: you have a Shopify app, a Chrome Extension, a Chrome App, a "
1686
- "Udemy Course, Slides on SlideShare.com, videos on Youtube, an infographic on "
1687
- "Pinterest, etc. These will always bring you constant traffic to the website "
1688
- "and once you set it (and make it visible) you can forget it. It will keep "
1689
- "bringing you traffic. Of course, the key is to first make these items "
1690
- "visible in the places where you publish them. %s You need an email list. "
1691
- "Make sure that people who come to your store, do business with you, visit "
1692
- "your website, or read your blog give you their email address so you can "
1693
- "communicate with them further on. An alternative to this is to make a "
1694
- "Chatbot for Facebook Messenger and get them hooked to the bot. By doing any "
1695
- "of these, you'll be able to bring those people back to your website. %sUse "
1696
- "the Keyword Research tool included in Squirrly SEO, to spot keywords that "
1697
- "are easy to rank for: [link]https://plugin.squirrly.co/best-keyword-research-"
1698
- "tool-for-seo/[link] %sRank for more keywords with low competition. This will "
1699
- "start building up traffic for your site. %sTo Easily rank new pages, use the "
1700
- "SEO Goals: [link]https://plugin.squirrly.co/best-seo-goals/[/link] %sStudy "
1701
- "website rankings to learn how to bring more traffic, by using our Special "
1702
- "Cloud Services for Rank Checking, available only on: Business Plans "
1703
- "[link]https://plugin.squirrly.co/squirrly-seo-pricing/[/link]"
1704
- msgstr ""
1705
- "Cum putem stabili traficul general al site-ului? %s Asigurați-vă că aveți "
1706
- "anunțuri active care pot fi găsite cu ușurință pe diverse piețe / platforme. "
1707
- "ex: aveți o aplicație Shopify, o extensie Chrome, o aplicație Chrome, un "
1708
- "curs Udemy, slide-uri pe SlideShare.com, videoclipuri pe Youtube, un "
1709
- "infografic pe Pinterest, etc. Acestea îți vor aduce mereu trafic constant pe "
1710
- "site și odată ce le-ai setat (și le-ai făcut vizibile) poți să uiți de ele. "
1711
- "Va continua să vă aducă trafic. Bineînțeles, cheia este ca mai întâi să "
1712
- "faceți aceste elemente vizibile în locurile în care le publicați. %s Aveți "
1713
- "nevoie de o listă de e-mail. Asigură-te că persoanele care vin la magazinul "
1714
- "tău, fac afaceri cu tine, îți vizitează site-ul sau îți citesc blogul îți "
1715
- "dau adresa lor de e-mail pentru a putea comunica cu ei mai departe. O "
1716
- "alternativă la acest lucru este să faci un Chatbot pentru Facebook Messenger "
1717
- "și să îi faci pe aceștia să se conecteze la bot. Făcând oricare dintre "
1718
- "acestea, veți putea să-i aduceți pe acei oameni înapoi pe site-ul dvs. web. "
1719
- "%sUtilizați instrumentul de cercetare a cuvintelor cheie inclus în Squirrly "
1720
- "SEO, pentru a depista cuvintele cheie pentru care este ușor de rank-uit: "
1721
- "[link]https://plugin.squirrly.co/best-keyword-research-tool-for-seo/[link] "
1722
- "%sRanking pentru mai multe cuvinte cheie cu concurență scăzută. Acest lucru "
1723
- "va începe să genereze trafic pentru site-ul dvs. %sPentru a clasifica cu "
1724
- "ușurință paginile noi, folosiți Obiectivele SEO: [link]https://plugin."
1725
- "squirrly.co/best-seo-goals/[/link] %sStudiați clasamentele site-urilor web "
1726
- "pentru a afla cum să aduceți mai mult trafic, folosind Serviciile noastre "
1727
- "speciale în cloud pentru verificarea clasamentului, disponibile doar pe: "
1728
- "Planuri de afaceri [link]https://plugin.squirrly.co/squirrly-seo-pricing/[/"
1729
- "link]"
1730
-
1731
- #: models/Audits.php:48
1732
- msgid ""
1733
- "Get each person who arrives on your site once to leave something that you "
1734
- "can use later on to bring them to your site again. You can use Facebook "
1735
- "Pixel and then retarget them, you can make them subscribe to Desktop "
1736
- "Notifications to receive push notifications, you can have them download an "
1737
- "app, subscribe to a newsletter, etc. Sometimes it's best if you can create "
1738
- "clever funnels that will ensure that any person may start following you on "
1739
- "multiple such channels."
1740
- msgstr ""
1741
- "Faceți ca fiecare persoană care ajunge o dată pe site-ul dvs. să lase ceva "
1742
- "pe care îl puteți folosi mai târziu pentru a-i aduce din nou pe site. Poți "
1743
- "folosi Facebook Pixel și apoi să îi retargetezi, îi poți face să se aboneze "
1744
- "la Notificări desktop pentru a primi notificări push, îi poți face să "
1745
- "descarce o aplicație, să se aboneze la un newsletter etc. Uneori, cel mai "
1746
- "bine este dacă puteți crea pâlnii inteligente care să se asigure că orice "
1747
- "persoană poate începe să vă urmărească pe mai multe astfel de canale."
1748
-
1749
- #: models/Audits.php:49
1750
- msgid "Try to gain organic traffic to your site's pages"
1751
- msgstr "Încercați să obțineți trafic organic către paginile site-ului dvs"
1752
-
1753
- #: models/Audits.php:56
1754
- msgid "Visible for search engines?"
1755
- msgstr "Vizibil pentru motoarele de căutare?"
1756
-
1757
- #: models/Audits.php:58
1758
- msgid "The pages with noindex"
1759
- msgstr "Paginile cu noindex"
1760
-
1761
- #: models/Audits.php:59
1762
- #, php-format
1763
- msgid ""
1764
- "How can we fix the noindex for our pages? %s You're currently telling Google "
1765
- "not to index some of your pages through a robots tag inside your code. %s On "
1766
- "WordPress, it's super easy to control on which pages to place no-index and "
1767
- "which pages should never get tagged with no-index if you use the Squirrly "
1768
- "SEO Plugin. %s If you decided you 100%% want these pages to be No-Index (you "
1769
- "don’t want Google to index them) - then remove these pages from the SEO "
1770
- "Audit. Use the SEO Audit for the pages you want to be seen on search engines."
1771
- "%s"
1772
- msgstr ""
1773
- "Cum putem rezolva problema noindex pentru paginile noastre? %s În prezent, "
1774
- "îi spuneți lui Google să nu indexeze unele dintre paginile dvs. prin "
1775
- "intermediul unei etichete robots din cod. %s Pe WordPress, este foarte ușor "
1776
- "să controlați pe care pagini să plasați no-index și care pagini nu ar trebui "
1777
- "să fie etichetate niciodată cu no-index dacă folosiți Plugin-ul Squirrly "
1778
- "SEO. %s Dacă ați decis că 100%% doriți ca aceste pagini să fie No-Index (nu "
1779
- "doriți ca Google să le indexeze) - atunci eliminați aceste pagini din "
1780
- "Auditul SEO. Folosiți SEO Audit pentru paginile pe care doriți să fie văzute "
1781
- "în motoarele de căutare.%s"
1782
-
1783
- #: models/Audits.php:60
1784
- msgid ""
1785
- "Some pages are better off if they have an associated no-index tag. Every "
1786
- "website has a couple of pages that would be completely pointless to appear "
1787
- "in search results, because they wouldn't ever make any sense for potential "
1788
- "searchers."
1789
- msgstr ""
1790
- "Pentru unele pagini este mai bine dacă au o etichetă no-index asociată. "
1791
- "Fiecare site web are câteva pagini care ar fi complet inutil să apară în "
1792
- "rezultatele căutărilor, deoarece nu ar avea niciun sens pentru potențialii "
1793
- "căutători."
1794
-
1795
- #: models/Audits.php:61 models/Audits.php:71
1796
- msgid "Add the correct meta robots tag in the pages"
1797
- msgstr "Adăugați tag-ul meta robots corect în pagini"
1798
-
1799
- #: models/Audits.php:66
1800
- msgid "Followed by search engines?"
1801
- msgstr "Urmată de motoarele de căutare?"
1802
-
1803
- #: models/Audits.php:68
1804
- msgid "The pages with nofollow"
1805
- msgstr "Paginile cu nofollow"
1806
-
1807
- #: models/Audits.php:69
1808
- #, php-format
1809
- msgid ""
1810
- "How can we fix the nofollow for our pages? %s You're currently telling "
1811
- "Google not to follow some of your pages through a robots tag inside your "
1812
- "code. %s On WordPress, it's super easy to control on which pages to place "
1813
- "nofollow and which pages should never get tagged with nofollow if you use "
1814
- "the Squirrly SEO Plugin. %s If you're using something else, make sure you "
1815
- "remove <META NAME=“ROBOTS” CONTENT=“NOFOLLOW”> from the <head> of your HTML."
1816
- "%s"
1817
- msgstr ""
1818
- "Cum putem rezolva problema nofollow pentru paginile noastre? %s În prezent, "
1819
- "îi spuneți lui Google să nu urmărească unele dintre paginile dvs. prin "
1820
- "intermediul unui tag robots în interiorul codului dvs. %s Pe WordPress, este "
1821
- "foarte ușor să controlați pe care pagini să plasați nofollow și care pagini "
1822
- "nu ar trebui să fie etichetate cu nofollow dacă utilizați Plugin-ul Squirrly "
1823
- "SEO. %s Dacă utilizați altceva, asigurați-vă că ați eliminat <META "
1824
- "NAME=“ROBOTS” CONTENT=“NOFOLLOW”>din <head>HTML</head></META> <META "
1825
- "NAME=“ROBOTS” CONTENT=“NOFOLLOW”> <head>%s</head></META>"
1826
-
1827
- #: models/Audits.php:70
1828
- msgid ""
1829
- "Some pages are better off if they have an associated nofollow tag. Every "
1830
- "website has a couple of pages that would be completely pointless to be "
1831
- "followed by search results like: Contact Us, Terms and Policy."
1832
- msgstr ""
1833
- "Unele pagini sunt mai bune dacă au o etichetă nofollow asociată. Fiecare "
1834
- "site web are câteva pagini care ar fi complet inutil să fie urmate de "
1835
- "rezultatele căutării, cum ar fi: Contactați-ne, Termeni și politici."
1836
-
1837
- #: models/Audits.php:76
1838
- msgid "Is your site Safe Browsing?"
1839
- msgstr "Este site-ul dvs. Safe Browsing?"
1840
-
1841
- #: models/Audits.php:79
1842
- #, php-format
1843
- msgid ""
1844
- "How can we get our website to be Safe Browsing compliant? %s Make sure you "
1845
- "find and delete all malware from your website. %s Watch this video to learn "
1846
- "more. [link]https://www.youtube.com/embed/7GStGcTeo20[/link] %s Once you "
1847
- "feel like you've fixed your problems you can check using this tool from "
1848
- "Google: [link]https://transparencyreport.google.com/safe-browsing/search[/"
1849
- "link]%s"
1850
- msgstr ""
1851
- "Cum putem face ca site-ul nostru web să fie compatibil cu Safe Browsing? %s "
1852
- "Asigurați-vă că găsiți și ștergeți toate programele malware de pe site-ul "
1853
- "dumneavoastră. %s Urmăriți acest videoclip pentru a afla mai multe. "
1854
- "[link]https://www.youtube.com/embed/7GStGcTeo20[/link] %s După ce simțiți că "
1855
- "ați rezolvat problemele, puteți verifica folosind acest instrument de la "
1856
- "Google: [link]https://transparencyreport.google.com/safe-browsing/search[/"
1857
- "link]%s"
1858
-
1859
- #: models/Audits.php:80
1860
- msgid ""
1861
- "This is a TOP priority if you're having a Safe Browsing problem at the "
1862
- "moment. Browsers will NOT allow web visitors to actually access your pages. "
1863
- "It will also cause you other problems like lower search rankings."
1864
- msgstr ""
1865
- "Aceasta este o prioritate de TOP dacă aveți o problemă cu Safe Browsing în "
1866
- "acest moment. Browserele NU vor permite vizitatorilor web să vă acceseze "
1867
- "efectiv paginile. De asemenea, acest lucru vă va cauza și alte probleme, cum "
1868
- "ar fi scăderea clasamentului de căutare."
1869
-
1870
- #: models/Audits.php:85
1871
- msgid "Page load time"
1872
- msgstr "Timp de încărcare a paginii"
1873
-
1874
- #: models/Audits.php:86
1875
- msgid "average is a good time"
1876
- msgstr "media este buna"
1877
-
1878
- #: models/Audits.php:87
1879
- msgid "average is slow"
1880
- msgstr "media este lenta"
1881
-
1882
- #: models/Audits.php:87
1883
- msgid "The slow pages are"
1884
- msgstr "Paginile lente sunt"
1885
-
1886
- #: models/Audits.php:88
1887
- #, php-format
1888
- msgid ""
1889
- "How can we fix the loading speed of the website? %s Use smaller images, or "
1890
- "compress them with tools like ShortPixel.com %s Minify Javascripts, use "
1891
- "CDNs, use gZip. %s Use a professional service if your site is based on "
1892
- "WordPress. Our parent company, Squirrly Limited, offers such a service for "
1893
- "WordPress.org based websites [link]https://www.squirrly.co/agency/[/link] %s "
1894
- "After you optimize the page, test the loading Speed Index with Google Speed "
1895
- "Test here [link]https://developers.google.com/speed/pagespeed/insights/[/"
1896
- "link] %s"
1897
- msgstr ""
1898
- "Cum putem corecta viteza de încărcare a site-ului? %s Folosiți imagini mai "
1899
- "mici sau comprimați-le cu instrumente precum ShortPixel.com %s Minificați "
1900
- "Javascripts, folosiți CDN-uri, folosiți gZip. %s Folosiți un serviciu "
1901
- "profesionist dacă site-ul dvs. se bazează pe WordPress. Compania noastră "
1902
- "mamă, Squirrly Limited, oferă un astfel de serviciu pentru site-urile bazate "
1903
- "pe WordPress.org [link]https://www.squirrly.co/agency/[/link] %s După ce ați "
1904
- "optimizat pagina, testați indicele de viteză de încărcare cu Google Speed "
1905
- "Test aici [link]https://developers.google.com/speed/pagespeed/insights/[/"
1906
- "link] %s"
1907
-
1908
- #: models/Audits.php:89
1909
- msgid ""
1910
- "Increasing loading speed will bring you more engagement, lower bounce rates "
1911
- "AND more search engine results."
1912
- msgstr ""
1913
- "Creșterea vitezei de încărcare vă va aduce mai multă implicare, rate de "
1914
- "respingere mai mici ȘI mai multe rezultate în motoarele de căutare."
1915
-
1916
- #: models/Audits.php:90
1917
- msgid "Optimize your site's speed"
1918
- msgstr "Optimizați viteza site-ului dvs"
1919
-
1920
- #: models/Audits.php:95
1921
- msgid "Duplicate Titles"
1922
- msgstr "Titluri duplicate"
1923
-
1924
- #: models/Audits.php:96
1925
- msgid "No duplicate titles."
1926
- msgstr "Nu există titluri duplicate."
1927
-
1928
- #: models/Audits.php:96
1929
- msgid "The pages on your site have unique title tags."
1930
- msgstr "Paginile de pe site-ul dumneavoastră au etichete de titlu unice."
1931
-
1932
- #: models/Audits.php:97 models/Audits.php:107
1933
- msgid "We found duplicates."
1934
- msgstr "Am găsit duplicate."
1935
-
1936
- #: models/Audits.php:97
1937
- msgid "The Pages with Duplicate Titles are"
1938
- msgstr "Paginile cu titluri duplicate sunt"
1939
-
1940
- #: models/Audits.php:98
1941
- #, php-format
1942
- msgid ""
1943
- "How can we fix the Duplicate Titles on our pages? %s Features like SEO "
1944
- "Automation or SEO Snippet from Squirrly SEO will generate your META title "
1945
- "automatically from the content of your page (in case you didn't already "
1946
- "place a custom title). Make every single META Title of every page unique "
1947
- "(you never repeat it on any other URL from the website). You will write what "
1948
- "you want Google to display in the search results as a title for your "
1949
- "listing. Make this text awesome and you'll get people clicking on it. %s See "
1950
- "if you can assign rules to WordPress to have it change the Title of each URL "
1951
- "according to different patterns. Normally the platform will take the Title "
1952
- "of the latest product inside the category and add it to the Title of that "
1953
- "particular category. In this case you can end up with something like: "
1954
- "example.com/shooter-games will have title: 'Counter Strike GO. Buy it Now' "
1955
- "and also: example.com/shooter-games/cs-go will also have title: 'Counter "
1956
- "Strike GO. Buy it Now'. %s All these problematic cases can be forgotten once "
1957
- "you start using Squirrly SEO . With its Patterns feature, it will create "
1958
- "rules for WordPress that ensure each title for each page on your site is "
1959
- "unique. This feature is available in the Free version of Squirry.%s"
1960
- msgstr ""
1961
- "Cum putem repara titlurile duplicate de pe paginile noastre? %s Funcții "
1962
- "precum SEO Automation sau SEO Snippet de la Squirrly SEO vor genera automat "
1963
- "titlul META din conținutul paginii (în cazul în care nu ați plasat deja un "
1964
- "titlu personalizat). Faceți ca fiecare titlu META al fiecărei pagini să fie "
1965
- "unic (nu îl repetați niciodată pe alte URL-uri de pe site). Veți scrie ceea "
1966
- "ce doriți ca Google să afișeze în rezultatele căutării ca titlu pentru "
1967
- "anunțul dvs. Fă ca acest text să fie minunat și vei face ca oamenii să dea "
1968
- "click pe el. %s Vedeți dacă puteți atribui reguli la WordPress pentru ca "
1969
- "acesta să schimbe Titlul fiecărui URL în funcție de diferite modele. În mod "
1970
- "normal, platforma va lua Titlul celui mai recent produs din interiorul "
1971
- "categoriei și îl va adăuga la Titlul acelei categorii particulare. În acest "
1972
- "caz, puteți ajunge la ceva de genul: example.com/shooter-games va avea "
1973
- "titlul: \"Counter Strike GO. Buy it Now\" și, de asemenea: example.com/"
1974
- "shooter-games/cs-go va avea, de asemenea, titlul: \"Counter Strike GO. "
1975
- "Cumpără-l acum\". %s Toate aceste cazuri problematice pot fi uitate odată ce "
1976
- "începeți să folosiți Squirrly SEO . Cu caracteristica sa Patterns, acesta va "
1977
- "crea reguli pentru WordPress care să asigure că fiecare titlu pentru fiecare "
1978
- "pagină de pe site-ul dvs. este unic. Această caracteristică este disponibilă "
1979
- "în versiunea gratuită a Squirry.%s"
1980
-
1981
- #: models/Audits.php:99
1982
- msgid ""
1983
- "On WordPress you can use Squirrly SEO to control everything about your page "
1984
- "Titles and make them stand out on search engines."
1985
- msgstr ""
1986
- "Pe WordPress puteți utiliza Squirrly SEO pentru a controla totul despre "
1987
- "titlurile paginilor dvs. și pentru a le face să iasă în evidență pe "
1988
- "motoarele de căutare."
1989
-
1990
- #: models/Audits.php:100
1991
- msgid ""
1992
- "Add different titles to each page. You can do it manually or use SEO tools "
1993
- "(like Squirrly) for that."
1994
- msgstr ""
1995
- "Adăugați titluri diferite pentru fiecare pagină. Puteți face acest lucru "
1996
- "manual sau puteți folosi instrumente SEO (cum ar fi Squirrly) pentru asta."
1997
-
1998
- #: models/Audits.php:105
1999
- msgid "Duplicate Descriptions"
2000
- msgstr "Descrieri duplicate"
2001
-
2002
- #: models/Audits.php:106
2003
- msgid "No duplicate descriptions."
2004
- msgstr "Nu există descrieri duble."
2005
-
2006
- #: models/Audits.php:106
2007
- msgid "The pages on your site have unique meta descriptions."
2008
- msgstr "Paginile de pe site-ul dvs. au meta descrieri unice."
2009
-
2010
- #: models/Audits.php:107
2011
- msgid "The Pages on which we found duplicates are"
2012
- msgstr "Paginile pe care am găsit duplicate sunt"
2013
-
2014
- #: models/Audits.php:108
2015
- #, php-format
2016
- msgid ""
2017
- "How can we fix the Duplicate Descriptions on our website? %s Use the SEO "
2018
- "Automation feature from Squirrly SEO, because it will generate your META "
2019
- "description automatically from the content of your page (in case you didn't "
2020
- "already place a custom description). Make every single META description of "
2021
- "every page unique (you never repeat it on any other URL from the website). "
2022
- "Make this text awesome and you'll get people clicking on it. %s Use the "
2023
- "Patterns feature from Squirrly SEO. It will help you create rules for "
2024
- "WordPress that ensure each description for each page on your site is unique. "
2025
- "This feature is available on all plans. %s"
2026
- msgstr ""
2027
- "Cum putem repara descrierile duplicate de pe site-ul nostru? %s Folosiți "
2028
- "funcția SEO Automation de la Squirrly SEO, deoarece aceasta va genera "
2029
- "automat descrierea META din conținutul paginii dvs. (în cazul în care nu ați "
2030
- "plasat deja o descriere personalizată). Faceți ca fiecare descriere META a "
2031
- "fiecărei pagini să fie unică (nu o repetați niciodată pe alte URL-uri de pe "
2032
- "site). Fă acest text minunat și vei face ca oamenii să dea click pe el. %s "
2033
- "Folosiți caracteristica Patterns din Squirrly SEO. Aceasta vă va ajuta să "
2034
- "creați reguli pentru WordPress care să vă asigure că fiecare descriere "
2035
- "pentru fiecare pagină de pe site-ul dvs. este unică. Această caracteristică "
2036
- "este disponibilă pe toate planurile. %s"
2037
-
2038
- #: models/Audits.php:109
2039
- msgid ""
2040
- "Use Squirrly SEO’s BULK SEO section to control everything about your META "
2041
- "descriptions and make them stand out on search engines."
2042
- msgstr ""
2043
- "Folosiți secțiunea BULK SEO de la Squirrly SEO pentru a controla totul "
2044
- "despre descrierile META și pentru a le face să iasă în evidență pe motoarele "
2045
- "de căutare."
2046
-
2047
- #: models/Audits.php:110
2048
- msgid ""
2049
- "Add different description to each page. You can do it manually or use SEO "
2050
- "tools (like Squirrly) for that."
2051
- msgstr ""
2052
- "Adăugați o descriere diferită pentru fiecare pagină. Puteți face acest lucru "
2053
- "manual sau puteți utiliza instrumente SEO (cum ar fi Squirrly)."
2054
-
2055
- #: models/Audits.php:115
2056
- msgid "Empty Titles"
2057
- msgstr "Titluri goale"
2058
-
2059
- #: models/Audits.php:116
2060
- msgid "All pages have titles."
2061
- msgstr "Toate paginile au titluri."
2062
-
2063
- #: models/Audits.php:116
2064
- msgid "all the pages on your site have the title tag defined :-)"
2065
- msgstr "toate paginile de pe site-ul tău au tag-ul title definit :-)"
2066
-
2067
- #: models/Audits.php:117
2068
- msgid "There are some pages without title."
2069
- msgstr "Există câteva pagini fără titlu."
2070
-
2071
- #: models/Audits.php:117
2072
- msgid "The pages with empty Title tags are"
2073
- msgstr "Paginile cu etichete Title goale sunt"
2074
-
2075
- #: models/Audits.php:118
2076
- #, php-format
2077
- msgid ""
2078
- "How can we fix the Empty Titles on our pages? %s Use Squirrly’s SEO "
2079
- "Automation features or the SEO Snippet to generate your META title "
2080
- "automatically from the content of your page. Write what you want Google to "
2081
- "display in the search results as a title for your listing. Make this text "
2082
- "awesome and you'll get people clicking on it. %s Use the Patterns feature "
2083
- "from Squirrly. It will create rules for WordPress that ensure each title for "
2084
- "each page on your site is unique. This feature is available on all plans.%s"
2085
- msgstr ""
2086
- "Cum putem repara titlurile goale de pe paginile noastre? %s Utilizați "
2087
- "funcțiile de automatizare SEO ale Squirrly sau Snippet SEO pentru a genera "
2088
- "automat titlul META din conținutul paginii dvs. Scrieți ceea ce doriți ca "
2089
- "Google să afișeze în rezultatele căutării ca titlu pentru lista dvs. Faceți "
2090
- "ca acest text să fie minunat și veți face ca oamenii să dea click pe el. %s "
2091
- "Folosiți caracteristica Patterns din Squirrly. Aceasta va crea reguli pentru "
2092
- "WordPress care să se asigure că fiecare titlu pentru fiecare pagină de pe "
2093
- "site-ul dvs. este unic. Această caracteristică este disponibilă pe toate "
2094
- "planurile.%s"
2095
-
2096
- #: models/Audits.php:119
2097
- msgid ""
2098
- "Use Squirrly SEO to create and control everything about your META titles and "
2099
- "make them stand out on search engines."
2100
- msgstr ""
2101
- "Utilizați Squirrly SEO pentru a crea și controla totul despre titlurile META "
2102
- "și pentru a le face să iasă în evidență pe motoarele de căutare."
2103
-
2104
- #: models/Audits.php:120
2105
- msgid "Add a Title tag to each page in your site."
2106
- msgstr "Adăugați o etichetă Titlu la fiecare pagină din site-ul tau."
2107
-
2108
- #: models/Audits.php:125
2109
- msgid "Empty Descriptions"
2110
- msgstr "Descrieri goale"
2111
-
2112
- #: models/Audits.php:126
2113
- msgid "All articles have description."
2114
- msgstr "Toate articolele au descriere."
2115
-
2116
- #: models/Audits.php:126
2117
- msgid "all the pages on your site have meta description"
2118
- msgstr "toate paginile de pe site-ul tău au meta description"
2119
-
2120
- #: models/Audits.php:127
2121
- msgid "There are some pages without description."
2122
- msgstr "Există câteva pagini fără descriere."
2123
-
2124
- #: models/Audits.php:127
2125
- msgid "The pages with empty description are"
2126
- msgstr "Paginile cu descrierea goală sunt"
2127
-
2128
- #: models/Audits.php:128
2129
- #, php-format
2130
- msgid ""
2131
- "How can we fix the Empty Descriptions on our website? %s Use Squirrly’s SEO "
2132
- "Automation features or the SEO Snippet which will generate your META "
2133
- "description automatically from the content of your page. Make this text "
2134
- "awesome and you'll get people clicking on it. %s See if you can assign rules "
2135
- "to WordPress to have it create META descriptions for each URL according to "
2136
- "different patterns. By having clear rules for all URLs you'll ensure that "
2137
- "Empty Descriptions will no longer be a problem in the future. %s All these "
2138
- "problematic cases can be forgotten once you start using Squirrly SEO . With "
2139
- "its Patterns feature, it will create rules for WordPress that ensure each "
2140
- "description for each page on your site is unique. This feature is available "
2141
- "on all plans.%s"
2142
- msgstr ""
2143
- "Cum putem repara descrierile goale de pe site-ul nostru? %s Folosiți "
2144
- "funcțiile de automatizare SEO ale Squirrly sau Snippet SEO, care va genera "
2145
- "automat descrierea META din conținutul paginii dvs. Faceți acest text "
2146
- "minunat și veți face ca oamenii să dea click pe el. %s Vedeți dacă puteți "
2147
- "atribui reguli la WordPress pentru ca acesta să creeze descrieri META pentru "
2148
- "fiecare URL în funcție de diferite modele. Având reguli clare pentru toate "
2149
- "URL-urile, vă veți asigura că descrierile goale nu vor mai fi o problemă în "
2150
- "viitor. %s Toate aceste cazuri problematice pot fi uitate odată ce începeți "
2151
- "să folosiți Squirrly SEO . Cu caracteristica sa Patterns, acesta va crea "
2152
- "reguli pentru WordPress care să asigure că fiecare descriere pentru fiecare "
2153
- "pagină de pe site-ul dvs. este unică. Această caracteristică este "
2154
- "disponibilă pe toate planurile.%s"
2155
-
2156
- #: models/Audits.php:129
2157
- msgid ""
2158
- "Use Squirrly SEO to create and control everything about your META "
2159
- "descriptions and make them stand out on search engines."
2160
- msgstr ""
2161
- "Utilizați Squirrly SEO pentru a crea și controla totul despre descrierile "
2162
- "META și pentru a le face să iasă în evidență pe motoarele de căutare."
2163
-
2164
- #: models/Audits.php:130
2165
- msgid "Add meta description to each page in your site."
2166
- msgstr "Adăugați meta-descrierea la fiecare pagină din site-ul dvs."
2167
-
2168
- #: models/Audits.php:135
2169
- msgid "Do you have a title tag?"
2170
- msgstr "Aveți o etichetă de titlu?"
2171
-
2172
- #: models/Audits.php:137
2173
- msgid "The pages without title tag are"
2174
- msgstr "Paginile fără etichetă de titlu sunt"
2175
-
2176
- #: models/Audits.php:138
2177
- #, php-format
2178
- msgid ""
2179
- "How can we fix the title tags of our pages %s On WordPress, using Squirrly "
2180
- "SEO will ensure your pages have title tags. It will create titles for every "
2181
- "page. It will help you customize titles for every page, all while making you "
2182
- "write ZERO code. No coding required when you use Squirrly SEO.%s"
2183
- msgstr ""
2184
- "Cum putem repara etichetele de titlu ale paginilor noastre %s Pe WordPress, "
2185
- "utilizând Squirrly SEO vă veți asigura că paginile dvs. au etichete de "
2186
- "titlu. Acesta va crea titluri pentru fiecare pagină. Vă va ajuta să "
2187
- "personalizați titlurile pentru fiecare pagină, totul în timp ce vă face să "
2188
- "scrieți ZERO cod. Nu este nevoie de codare atunci când folosiți Squirrly SEO."
2189
- "%s"
2190
-
2191
- #: models/Audits.php:139
2192
- msgid "Platforms like Shopify handle this aspect with their default engine."
2193
- msgstr ""
2194
- "Platforme precum Shopify se ocupă de acest aspect cu motorul lor implicit."
2195
-
2196
- #: models/Audits.php:140
2197
- msgid "Add a Title tag to this page of your site"
2198
- msgstr "Adăugați o etichetă Titlu la această pagină a site-ului dvs"
2199
-
2200
- #: models/Audits.php:145
2201
- msgid "Do you have a meta description?"
2202
- msgstr "Aveți o meta descriere?"
2203
-
2204
- #: models/Audits.php:147
2205
- msgid "The pages without description meta are"
2206
- msgstr "Paginile fără meta descriere sunt"
2207
-
2208
- #: models/Audits.php:148
2209
- #, php-format
2210
- msgid ""
2211
- "How can we fix the META Descriptions of our pages %s First of all, make sure "
2212
- "that you understand the following: a poorly written META description will "
2213
- "make for a horrible listing inside the Google search page. If people find "
2214
- "your listing, they will not click on your listing in case your META "
2215
- "Description is horrible to look at, is poorly written, or it doesn't seem to "
2216
- "make sense. %s On WordPress, you can use Squirrly SEO for this. It will "
2217
- "automatically create META Descriptions for every page. It will help you "
2218
- "customize these descriptions for every page, all while making you write "
2219
- "ZERO, nada, rien, code. No coding required when you use Squirrly SEO. You "
2220
- "can even customize the way it automates your descriptions.%s"
2221
- msgstr ""
2222
- "Cum putem repara descrierile META ale paginilor noastre %s În primul rând, "
2223
- "asigurați-vă că înțelegeți următoarele: o descriere META prost scrisă va "
2224
- "duce la o listare oribilă în pagina de căutare Google. Dacă oamenii vă "
2225
- "găsesc listarea, nu vor da clic pe ea în cazul în care descrierea META este "
2226
- "oribilă de privit, este prost scrisă sau nu pare să aibă sens. %s Pe "
2227
- "WordPress, puteți utiliza Squirrly SEO pentru acest lucru. Acesta va crea "
2228
- "automat descrieri META pentru fiecare pagină. Vă va ajuta să personalizați "
2229
- "aceste descrieri pentru fiecare pagină, totul în timp ce vă face să scrieți "
2230
- "ZERO, nada, rien, cod. Nu este nevoie de codificare atunci când folosiți "
2231
- "Squirrly SEO. Puteți chiar să personalizați modul în care vă automatizează "
2232
- "descrierile. %s"
2233
-
2234
- #: models/Audits.php:149
2235
- msgid "Platforms like Shopify handle this with their default engines."
2236
- msgstr ""
2237
- "Platforme precum Shopify se ocupă de acest lucru cu motoarele lor implicite."
2238
-
2239
- #: models/Audits.php:150
2240
- msgid "Add meta description to this page of your site"
2241
- msgstr "Adăugați meta descriere la această pagină a site-ului dvs"
2242
-
2243
- #: models/Audits.php:155 models/bulkseo/Metas.php:94
2244
- msgid "Meta Keyword"
2245
- msgstr "Meta cuvânt cheie"
2246
-
2247
- #: models/Audits.php:156
2248
- msgid "Your keywords are"
2249
- msgstr "Cuvintele dvs. cheie sunt"
2250
-
2251
- #: models/Audits.php:157
2252
- msgid "No keywords."
2253
- msgstr "Nu există cuvinte cheie."
2254
-
2255
- #: models/Audits.php:158
2256
- msgid ""
2257
- "It is important for search engines to know which keywords you are trying to "
2258
- "rank for with your website. This also helps bring targeted visitors to your "
2259
- "site."
2260
- msgstr ""
2261
- "Este important ca motoarele de căutare să știe care sunt cuvintele cheie "
2262
- "pentru care încercați să vă poziționați pe site-ul dumneavoastră. Acest "
2263
- "lucru ajută, de asemenea, la aducerea de vizitatori țintă pe site-ul dvs."
2264
-
2265
- #: models/Audits.php:159
2266
- msgid "Make sure that the search for your keywords is on a rising trend"
2267
- msgstr ""
2268
- "Asigurați-vă că căutarea cuvintelor dvs. cheie se află pe o tendință de "
2269
- "creștere"
2270
-
2271
- #: models/Audits.php:165 models/bulkseo/Metas.php:99
2272
- msgid "Canonical Link"
2273
- msgstr "Legătură canonică"
2274
-
2275
- #: models/Audits.php:167
2276
- msgid "The pages without canonical meta"
2277
- msgstr "Paginile fără meta canonice"
2278
-
2279
- #: models/Audits.php:168
2280
- #, php-format
2281
- msgid ""
2282
- "How can we fix the Canonical Links problems of our pages? %s Add this code "
2283
- "to the <head> section of your HTML page: <link rel=\"canonical\" href=\"your "
2284
- "site URL\" /> %s Think of a canonical link as the \"preferred version\" of "
2285
- "the page. %s Make sure you have this definition on your URL especially if "
2286
- "you've copied the content from another LINK on the web. Example: You "
2287
- "published a blog post on Medium and then also added it to your own blog on "
2288
- "your own domain. If you add the canonical link definition, then you won't be "
2289
- "penalized for duplicate content. Medium also allows you to re-publish "
2290
- "content from your own site to Medium and helps you get the rel=\"canonical\" "
2291
- "inside the medium post to show that the original is hosted on your own site."
2292
- "%s Use Squirrly SEO's Bulk SEO to define canonical links and indexing "
2293
- "options for your pages. %s"
2294
- msgstr ""
2295
- "Cum putem remedia problemele legate de legăturile canonice ale paginilor "
2296
- "noastre? %s Adăugați acest cod în <head>secțiunea paginii dumneavoastră "
2297
- "HTML: <link rel=\"canonical\" href=\"your site URL\" /> %s Gândiți-vă la un "
2298
- "link canonic ca la \"versiunea preferată\" a paginii. %s Asigurați-vă că "
2299
- "aveți această definiție în URL-ul dvs. mai ales dacă ați copiat conținutul "
2300
- "de la un alt LINK de pe web. Exemplu: Ați publicat o postare pe Medium și "
2301
- "apoi ați adăugat-o și pe blogul dvs. pe propriul domeniu. Dacă adăugați "
2302
- "definiția legăturii canonice, atunci nu veți fi penalizat pentru conținut "
2303
- "duplicat. Medium vă permite, de asemenea, să republicați conținut de pe "
2304
- "propriul site pe Medium și vă ajută să obțineți rel=\"canonical\" în "
2305
- "interiorul postării de pe Medium pentru a arăta că originalul este găzduit "
2306
- "pe propriul site.%s Folosiți Bulk SEO de la Squirrly SEO pentru a defini "
2307
- "legăturile canonice și opțiunile de indexare pentru paginile dvs</head> "
2308
- "<head> %s</head>"
2309
-
2310
- #: models/Audits.php:169
2311
- msgid ""
2312
- "Platforms like Shopify handle this with their default engine. On WordPress "
2313
- "you can use Squirrly SEO to control canonical links and make sure you avoid "
2314
- "having duplicate content."
2315
- msgstr ""
2316
- "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
2317
- "WordPress puteți utiliza Squirrly SEO pentru a controla legăturile canonice "
2318
- "și a vă asigura că evitați conținutul duplicat."
2319
-
2320
- #: models/Audits.php:170
2321
- msgid "Add canonical meta link in the page header"
2322
- msgstr "Adăugați un meta link canonic în antetul paginii"
2323
-
2324
- #: models/Audits.php:175
2325
- msgid "Meta Json-LD?"
2326
- msgstr "Meta Json-LD?"
2327
-
2328
- #: models/Audits.php:177
2329
- msgid "The pages without Json-LD meta"
2330
- msgstr "Paginile fără meta Json-LD"
2331
-
2332
- #: models/Audits.php:178
2333
- #, php-format
2334
- msgid ""
2335
- "How can we fix the meta Json_LD of the website? %s You need to make sure you "
2336
- "have this tag inside your page's code: <script type=\"application/ld+json"
2337
- "\"> . Or something similar. %s JSON-LD annotates elements on a page, "
2338
- "structuring the data, which can then be used by search engines to "
2339
- "disambiguate elements and establish facts surrounding entities, which is "
2340
- "then associated with creating a more organized, better web overall.%s"
2341
- msgstr ""
2342
- "Cum putem repara meta Json_LD al site-ului? %s Trebuie să vă asigurați că "
2343
- "aveți acest tag în codul paginii dvs: <script type=\"application/ld+json"
2344
- "\"> . Sau ceva asemănător. %s JSON-LD adnotează elementele unei pagini, "
2345
- "structurând datele, care pot fi apoi folosite de motoarele de căutare pentru "
2346
- "a dezambiguiza elementele și a stabili faptele care înconjoară entitățile, "
2347
- "ceea ce este apoi asociat cu crearea unui web mai organizat și mai bun în "
2348
- "general.%s</script>"
2349
-
2350
- #: models/Audits.php:179
2351
- msgid ""
2352
- "On WordPress you can use Squirrly SEO to add the Json-LD Structured data. "
2353
- "Squirrly will automatically structure the information from all your products "
2354
- "if you use Woocommerce plugin for eCommerce."
2355
- msgstr ""
2356
- "Pe WordPress puteți utiliza Squirrly SEO pentru a adăuga datele structurate "
2357
- "Json-LD. Squirrly va structura automat informațiile din toate produsele dvs. "
2358
- "dacă folosiți pluginul Woocommerce pentru eCommerce."
2359
-
2360
- #: models/Audits.php:180
2361
- msgid ""
2362
- "Make sure you activated Json-LD in Squirrly > SEO Settings > Json-LD Meta"
2363
- msgstr ""
2364
- "Asigurați-vă că ați activat Json-LD în Squirrly > Setări SEO > Json-LD Meta"
2365
-
2366
- #: models/Audits.php:185
2367
- msgid "Page Encoding"
2368
- msgstr "Codificarea paginilor"
2369
-
2370
- #: models/Audits.php:187
2371
- msgid "The pages without encoding meta"
2372
- msgstr "Paginile fără meta-coding"
2373
-
2374
- #: models/Audits.php:188
2375
- #, php-format
2376
- msgid ""
2377
- "How can we fix the character encoding specifications of the website? %s "
2378
- "You'll have to specify this according to the encoding you use for your "
2379
- "website. %s Adding your encoding tag to the <head> of the site will fix it. "
2380
- "Below, you'll find what you can place, in case your encoding is UTF-8 (the "
2381
- "majority of web pages use this) %s <meta http-equiv=“Content-Type” "
2382
- "content=“text/html;charset=utf-8” />%s"
2383
- msgstr ""
2384
- "Cum putem corecta specificațiile de codificare a caracterelor de pe site-ul "
2385
- "web? %s Va trebui să specificați acest lucru în funcție de codificarea pe "
2386
- "care o utilizați pentru site-ul dvs. web. %s Adăugarea etichetei de "
2387
- "codificare la <head>site-ul web va rezolva</head> problema. <head>Mai jos, "
2388
- "veți găsi ce puteți plasa, în cazul în care codificarea dvs. este UTF-8 "
2389
- "(majoritatea paginilor web folosesc acest lucru) %s &lt;meta http-equiv="
2390
- "\"Content-Type\" content=\"text/html;charset=utf-8\" /&gt%s</head>"
2391
-
2392
- #: models/Audits.php:189
2393
- msgid ""
2394
- "Platforms like Shopify handle this with their default engine. On WordPress "
2395
- "you can use Squirrly SEO to get encoding specified for all your pages. "
2396
- "Without specifying the encoding, search engines such as Google will be more "
2397
- "likely to suggest other pages and rank other pages that DO have the "
2398
- "specification made."
2399
- msgstr ""
2400
- "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
2401
- "WordPress, puteți utiliza Squirrly SEO pentru a obține codificarea "
2402
- "specificată pentru toate paginile dvs. Fără a specifica codificarea, "
2403
- "motoarele de căutare, cum ar fi Google, vor fi mai predispuse să sugereze "
2404
- "alte pagini și să clasifice alte pagini care DOAR au specificația făcută."
2405
-
2406
- #: models/Audits.php:190
2407
- msgid "Add the meta encoding tag in the page's header"
2408
- msgstr "Adăugați tag-ul meta encoding în antetul paginii"
2409
-
2410
- #: models/Audits.php:195
2411
- msgid "Does your site have a feed or sitemap?"
2412
- msgstr "Site-ul dvs. are un feed sau un sitemap?"
2413
-
2414
- #: models/Audits.php:198
2415
- #, php-format
2416
- msgid ""
2417
- "How can we fix the Feed and Sitemap of the website? %s Make sure that you "
2418
- "feed and Sitemap exists and that it is accessible. Your visitors should be "
2419
- "able to access it using /feed, or /sitemap.xml %s Make sure your visitors "
2420
- "can access it using domainname.com/feed (where the text \"domainname\" is "
2421
- "actually your domain. eg. bloggingwithjane.com ) %s On WordPress, you can "
2422
- "use Squirrly SEO to generate your FEED and the Sitemap for your whole site. "
2423
- "It has some pretty advanced options, so that you feeds will be perfect. This "
2424
- "feature is free to use.%s"
2425
- msgstr ""
2426
- "Cum putem repara Feed-ul și Sitemap-ul site-ului? %s Asigurați-vă că feed-ul "
2427
- "și Sitemap-ul există și că este accesibil. Vizitatorii dvs. ar trebui să îl "
2428
- "poată accesa folosind /feed, sau /sitemap.xml %s Asigurați-vă că vizitatorii "
2429
- "dvs. îl pot accesa folosind domainname.com/feed (unde textul \"domainname\" "
2430
- "este, de fapt, domeniul dvs., de exemplu bloggingwithjane.com) %s Pe "
2431
- "WordPress, puteți utiliza Squirrly SEO pentru a genera FEED-ul și Sitemap-ul "
2432
- "pentru întregul dvs. site. Are niște opțiuni destul de avansate, astfel "
2433
- "încât feed-urile dvs. să fie perfecte. Utilizarea acestei funcții este "
2434
- "gratuită.%s"
2435
-
2436
- #: models/Audits.php:199
2437
- msgid ""
2438
- "Your feeds and sitemaps should contain the date when your content was "
2439
- "published and last updated. This is super important for Google to know, as "
2440
- "it's always looking to surface fresh content to people who search on search "
2441
- "engines. PLUS, having this gives you the opportunity to show up when users "
2442
- "of Google say they want to see only results from the last week. If you had "
2443
- "anything published during the last week, these people will see it and you "
2444
- "will gain traffic."
2445
- msgstr ""
2446
- "Fluxurile și sitemaps-urile dvs. ar trebui să conțină data la care "
2447
- "conținutul dvs. a fost publicat și actualizat ultima dată. Acest lucru este "
2448
- "foarte important de știut pentru Google, care caută mereu să ofere conținut "
2449
- "nou persoanelor care caută pe motoarele de căutare. În plus, având acest "
2450
- "lucru vă oferă posibilitatea de a apărea atunci când utilizatorii Google "
2451
- "spun că doresc să vadă doar rezultatele din ultima săptămână. Dacă ați avut "
2452
- "ceva publicat în ultima săptămână, acești oameni îl vor vedea și veți "
2453
- "câștiga trafic."
2454
-
2455
- #: models/Audits.php:200
2456
- msgid "Add a RSS feed and Sitemap to your site"
2457
- msgstr "Adăugați un feed RSS și un Sitemap la site-ul dvs"
2458
-
2459
- #: models/Audits.php:205
2460
- msgid "Does your site have a robots.txt file?"
2461
- msgstr "Site-ul dvs. are un fișier robots.txt?"
2462
-
2463
- #: models/Audits.php:208
2464
- #, php-format
2465
- msgid ""
2466
- "How can we fix the robots.txt of the website? %s You'll need to have a "
2467
- "http://domain.com/robots.txt link on your site that crawlers can access to "
2468
- "know which pages they are allowed to crawl. (gather info from) %s Create or "
2469
- "Edit a robots.txt file using Squirrly SEO %s Once you have the file, upload "
2470
- "it to your ftp (if you don’t want to let Squirrly operate it for you) and "
2471
- "make sure it can be accessed. %s"
2472
- msgstr ""
2473
- "Cum putem repara fișierul robots.txt al site-ului? %s Va trebui să aveți un "
2474
- "link http://domain.com/robots.txt pe site-ul dvs. pe care crawlerele îl pot "
2475
- "accesa pentru a ști ce pagini au voie să parcurgă. (adunați informații de "
2476
- "la) %s Creați sau editați un fișier robots.txt folosind Squirrly SEO %s "
2477
- "Odată ce aveți fișierul, încărcați-l în ftp-ul dvs. (dacă nu doriți să "
2478
- "lăsați Squirrly să îl opereze pentru dvs.) și asigurați-vă că poate fi "
2479
- "accesat. %s"
2480
-
2481
- #: models/Audits.php:209
2482
- msgid ""
2483
- "Platforms like Shopify handle this with their default engine. On WordPress "
2484
- "you can use Squirrly SEO to create and customize your robots.txt"
2485
- msgstr ""
2486
- "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
2487
- "WordPress, puteți utiliza Squirrly SEO pentru a crea și personaliza fișierul "
2488
- "robots.txt"
2489
-
2490
- #: models/Audits.php:210
2491
- msgid "Add robots.txt file in your site"
2492
- msgstr "Adăugați fișierul robots.txt în site-ul dvs"
2493
-
2494
- #: models/Audits.php:215
2495
- msgid "Meta Viewport"
2496
- msgstr "Meta Viewport"
2497
-
2498
- #: models/Audits.php:217
2499
- msgid "The pages without viewport meta"
2500
- msgstr "Paginile fără meta viewport"
2501
-
2502
- #: models/Audits.php:218
2503
- #, php-format
2504
- msgid ""
2505
- "How can we fix the meta viewport of the website? %s You need to make sure "
2506
- "you have this tag inside your page's code: <meta name=“viewport” "
2507
- "content=“width=device-width, initial-scale=1”> . Or something similar. %s In "
2508
- "case you know that the minimum resolution required to deliver a good user "
2509
- "experience to your viewers is 500 px, then write the following: %s <meta "
2510
- "name=“viewport” content=“width=500, initial-scale=1”>%s"
2511
- msgstr ""
2512
- "Cum putem corecta meta viewportul site-ului? %s Trebuie să vă asigurați că "
2513
- "aveți această etichetă în codul paginii dumneavoastră: <meta name=\"viewport"
2514
- "\" content=\"width=device-width, initial-scale=1\"> . Sau ceva similar. %s "
2515
- "În cazul în care știi că rezoluția minimă necesară pentru a oferi o "
2516
- "experiență de utilizare bună pentru telespectatorii tăi este de 500 px, "
2517
- "atunci scrie următoarele: %s <meta name=\"viewport\" content=\"width=500, "
2518
- "initial-scale=1\">%s"
2519
-
2520
- #: models/Audits.php:219
2521
- msgid ""
2522
- "Platforms like Shopify handle this with their default engine. On WordPress, "
2523
- "you need to make sure the WordPress theme you buy is responsive and has this "
2524
- "definition."
2525
- msgstr ""
2526
- "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
2527
- "WordPress, trebuie să vă asigurați că tema WordPress pe care o cumpărați "
2528
- "este responsivă și are această definiție."
2529
-
2530
- #: models/Audits.php:220
2531
- msgid "Add the meta viewport tag in the page's header"
2532
- msgstr "Adăugați tag-ul meta viewport în antetul paginii"
2533
-
2534
- #: models/Audits.php:225
2535
- msgid "Site optimized for speed?"
2536
- msgstr "Site optimizat pentru viteză?"
2537
-
2538
- #: models/Audits.php:227
2539
- msgid "The pages without gzip"
2540
- msgstr "Paginile fără gzip"
2541
-
2542
- #: models/Audits.php:228
2543
- #, php-format
2544
- msgid ""
2545
- "How can we fix the gzip compression for our website? %s GZIP compression "
2546
- "must be installed on the web server, such as in Apache, IIS and nginx. When "
2547
- "retrieving the website the web browser will prompt the visitor he/she can "
2548
- "receive the GZIP. %s Squirrly’s teams of experts can help you get this done. "
2549
- "[link]https://www.squirrly.co/agency/[/link] - Premium Paid Services, "
2550
- "separate from any software license you may have from the Squirrly Company. "
2551
- "%s Ask your webmaster / developer / host to help you with this. Or try to "
2552
- "find plugins to help you with this.%s"
2553
- msgstr ""
2554
- "Cum putem repara compresia gzip pentru site-ul nostru? %s Compresia GZIP "
2555
- "trebuie să fie instalată pe serverul web, cum ar fi Apache, IIS și nginx. La "
2556
- "preluarea site-ului web, browserul web va solicita vizitatorului că poate "
2557
- "primi GZIP. %s Echipele de experți de la Squirrly vă pot ajuta să faceți "
2558
- "acest lucru. [link]https://www.squirrly.co/agency/[/link] - Servicii Premium "
2559
- "cu plată, separate de orice licență software pe care o aveți de la compania "
2560
- "Squirrly. %s Cereți-i webmasterului / dezvoltatorului / gazdei dvs. să vă "
2561
- "ajute în acest sens. Sau încercați să găsiți plugin-uri care să vă ajute în "
2562
- "acest sens.%s"
2563
-
2564
- #: models/Audits.php:229
2565
- msgid ""
2566
- "Setting this up saves 50% to 80% bandwidth, which will make all your pages "
2567
- "load a lot faster."
2568
- msgstr ""
2569
- "Acest lucru economisește 50% to 80% din lățimea de bandă, ceea ce va face ca "
2570
- "toate paginile dvs. să se încarce mult mai repede."
2571
-
2572
- #: models/Audits.php:230
2573
- msgid "Use gzip to increase your site's speed"
2574
- msgstr "Utilizați gzip pentru a crește viteza site-ului dvs"
2575
-
2576
- #: models/Audits.php:235
2577
- msgid "Duplicate Open Graph Tags?"
2578
- msgstr "Etichete Open Graph duplicate?"
2579
-
2580
- #: models/Audits.php:236 models/Audits.php:246 models/Audits.php:256
2581
- #: models/Audits.php:266
2582
- msgid "No duplicates"
2583
- msgstr "Nu există duplicate"
2584
-
2585
- #: models/Audits.php:237 models/Audits.php:247 models/Audits.php:257
2586
- #: models/Audits.php:267
2587
- msgid "We found some ..."
2588
- msgstr "Am găsit câteva ..."
2589
-
2590
- #: models/Audits.php:237
2591
- msgid "The pages with duplicate Open Graph metas"
2592
- msgstr "Paginile cu meta Open Graph duplicat"
2593
-
2594
- #: models/Audits.php:238 models/Audits.php:248 models/Audits.php:258
2595
- #: models/Audits.php:268
2596
- #, php-format
2597
- msgid ""
2598
- "How can we fix the duplicate meta codes of our pages? %s Make a list of the "
2599
- "pages which have this problem. %s Start fixing them one by one. %s Remove "
2600
- "duplicate definitions of code from the <head> section of each page. (eg. you "
2601
- "have two instances of og:title << remove one of them!)%s"
2602
- msgstr ""
2603
- "Cum putem remedia codurile meta duplicate ale paginilor noastre? %s Faceți o "
2604
- "listă cu paginile care au această problemă. %s Începeți să le remediați una "
2605
- "câte una. %s Eliminați definițiile duplicate ale codului din <head>secțiunea "
2606
- "fiecărei pagini. (ex. aveți două instanțe de og:title &lt;&lt; eliminați una "
2607
- "dintre ele!)%s</head>"
2608
-
2609
- #: models/Audits.php:239 models/Audits.php:249 models/Audits.php:259
2610
- #: models/Audits.php:269
2611
- msgid ""
2612
- "On WordPress you can use Squirrly SEO to Remove Duplicate Meta codes from "
2613
- "all your pages. It removes them automatically. No work on your behalf."
2614
- msgstr ""
2615
- "Pe WordPress puteți utiliza Squirrly SEO pentru a elimina codurile Meta "
2616
- "duplicat din toate paginile dvs. Acesta le elimină automat. Fără muncă din "
2617
- "partea dvs."
2618
-
2619
- #: models/Audits.php:240 models/Audits.php:250 models/Audits.php:260
2620
- #: models/Audits.php:270
2621
- msgid "Make sure you don't have duplicate meta tags in your site's header"
2622
- msgstr ""
2623
- "Asigurați-vă că nu aveți meta tag-uri duplicate în antetul site-ului dvs"
2624
-
2625
- #: models/Audits.php:245
2626
- msgid "Duplicate Twitter Card Tags?"
2627
- msgstr "Etichete de card Twitter duplicat?"
2628
-
2629
- #: models/Audits.php:247
2630
- msgid "The pages with duplicate Twitter Card metas"
2631
- msgstr "Paginile cu metacarte Twitter Card duplicat"
2632
-
2633
- #: models/Audits.php:255
2634
- msgid "Duplicate Title Tags?"
2635
- msgstr "Etichete de titlu duplicat?"
2636
-
2637
- #: models/Audits.php:257
2638
- msgid "The pages with duplicate Title metas"
2639
- msgstr "Paginile cu meta titluri duplicate"
2640
-
2641
- #: models/Audits.php:265
2642
- msgid "Duplicate Description Tags?"
2643
- msgstr "Etichete de descriere duplicate?"
2644
-
2645
- #: models/Audits.php:267
2646
- msgid "The pages with duplicate Description metas"
2647
- msgstr "Paginile cu meta descrieri duplicate"
2648
-
2649
- #: models/Audits.php:278
2650
- msgid "Top Shared Pages"
2651
- msgstr "Top pagini partajate"
2652
-
2653
- #: models/Audits.php:284
2654
- msgid "Shares"
2655
- msgstr "Distribuiri"
2656
-
2657
- #: models/Audits.php:287
2658
- #, php-format
2659
- msgid ""
2660
- "How can we raise the Social Media Shares (or signals) for our pages on "
2661
- "Social Media? %s Use a tool like SalesFlare or FullContact (both paid) to "
2662
- "extract the social media profiles of your customers, users, email "
2663
- "subscribers and even LinkedIN Connections. Then make sure they follow you on "
2664
- "Social Media. An easy way to do this is to follow them yourself. They "
2665
- "already care about you and your company. They will gladly interact with your "
2666
- "profiles. Using tools like these will also give you a clear picture of what "
2667
- "Social Media platforms your desired audience uses most, so that you can "
2668
- "create profiles only for those social media platforms. %s You should create "
2669
- "social media Giveaways, or even viral communities like: [link]https://www."
2670
- "squirrly.co/dmsuperstars/[/link] %s Use a service like [link]https://"
2671
- "techfork.xyz/about/[/link] (warning: other social media providers will most "
2672
- "likely cause problems, because they use bots. - TechFork has been verified "
2673
- "by our community and it has been a partner for over 4 years) %s Learn from "
2674
- "our Episode on the Marketing Education Cloud Podcast how to share your pages "
2675
- "so that you get better social signals and also 10,000 visits from social "
2676
- "media: [link]https://www.squirrly.co/podcast/[/link] %s"
2677
- msgstr ""
2678
- "Cum putem crește numărul de share-uri (sau semnale) pentru paginile noastre "
2679
- "pe Social Media? %s Folosiți un instrument precum SalesFlare sau FullContact "
2680
- "(ambele cu plată) pentru a extrage profilurile de social media ale "
2681
- "clienților, utilizatorilor, abonaților de e-mail și chiar ale conexiunilor "
2682
- "LinkedIN. Apoi, asigurați-vă că vă urmăresc în Social Media. O modalitate "
2683
- "ușoară de a face acest lucru este să îi urmăriți chiar dumneavoastră. Le "
2684
- "pasă deja de dumneavoastră și de compania dumneavoastră. Ei vor interacționa "
2685
- "cu plăcere cu profilurile dvs. Utilizarea unor astfel de instrumente vă va "
2686
- "oferi, de asemenea, o imagine clară asupra platformelor de Social Media pe "
2687
- "care publicul dorit le utilizează cel mai mult, astfel încât să puteți crea "
2688
- "profiluri numai pentru acele platforme de Social Media. %s Ar trebui să "
2689
- "creați Social Media Giveaways, sau chiar comunități virale cum ar fi: "
2690
- "[link]https://www.squirrly.co/dmsuperstars/[/link] %s Utilizați un serviciu "
2691
- "precum [link]https://techfork.xyz/about/[/link] (avertisment: alți furnizori "
2692
- "de social media vor cauza cel mai probabil probleme, deoarece folosesc "
2693
- "roboți. - TechFork a fost verificat de comunitatea noastră și este partener "
2694
- "de peste 4 ani) %s Aflați din episodul nostru de la Marketing Education "
2695
- "Cloud Podcast cum să vă partajați paginile astfel încât să obțineți semnale "
2696
- "sociale mai bune și, de asemenea, 10.000 de vizite din social media: "
2697
- "[link]https://www.squirrly.co/podcast/[/link] %s"
2698
-
2699
- #: models/Audits.php:288
2700
- msgid ""
2701
- "All the shares and likes that your fans will give your pages will contribute "
2702
- "to the total number of shares from social media (social signals). When "
2703
- "Google’s algorithm starts “seeing” that people share your pages on social "
2704
- "media, it will consider that your site is becoming popular and will increase "
2705
- "its rankings."
2706
- msgstr ""
2707
- "Toate share-urile și like-urile pe care fanii dvs. le vor acorda paginilor "
2708
- "dvs. vor contribui la numărul total de share-uri din social media (semnale "
2709
- "sociale). Atunci când algoritmul Google începe să \"vadă\" că oamenii "
2710
- "împărtășesc paginile dvs. în social media, va considera că site-ul dvs. "
2711
- "devine popular și va crește clasamentul."
2712
-
2713
- #: models/Audits.php:289
2714
- msgid "You have to share your articles with your fans"
2715
- msgstr "Trebuie să împărtășești articolele tale cu fanii tăi"
2716
-
2717
- #: models/Audits.php:294
2718
- msgid "Share Buttons in your articles?"
2719
- msgstr "Butoane de partajare în articolele dvs.?"
2720
-
2721
- #: models/Audits.php:296
2722
- msgid "The pages without share buttons"
2723
- msgstr "Paginile fără butoane de partajare"
2724
-
2725
- #: models/Audits.php:297
2726
- #, php-format
2727
- msgid ""
2728
- "How can we get social media share buttons on our website? %s There are many "
2729
- "options to help you get social sharing buttons inside your website. However, "
2730
- "you should be careful not to let them ruin your loading times. Most plugins "
2731
- "and apps will do that. %s Sumo.com is an Okay option. I'm not really happy "
2732
- "with them, because I find it slows my pages. %s My current favorites are "
2733
- "[link]http://info.zotabox.com/[/link] . I'm using them on Shopify and "
2734
- "WordPress. It works with any CMS platform. The loading speed is great and "
2735
- "their social media counters work perfectly.%s"
2736
- msgstr ""
2737
- "Cum putem obține butoane de partajare a rețelelor sociale pe site-ul nostru? "
2738
- "%s Există mai multe opțiuni care vă ajută să obțineți butoane de partajare "
2739
- "socială în cadrul site-ului dvs. web. Cu toate acestea, trebuie să aveți "
2740
- "grijă să nu le lăsați să vă strice timpii de încărcare. Majoritatea "
2741
- "pluginurilor și aplicațiilor vor face acest lucru. %s Sumo.com este o "
2742
- "opțiune bună. Nu sunt foarte mulțumit de ei, pentru că mi se pare că îmi "
2743
- "încetinește paginile. %s Preferatele mele actuale sunt [link]http://info."
2744
- "zotabox.com/[/link] . Îi folosesc pe Shopify și WordPress. Funcționează cu "
2745
- "orice platformă CMS. Viteza de încărcare este mare și contoarele lor de "
2746
- "social media funcționează perfect.%s"
2747
-
2748
- #: models/Audits.php:298
2749
- msgid ""
2750
- "All there is to it is: make the buttons obvious, so people can easily find "
2751
- "them. Make sure they don't slow your site down. Make sure they look great on "
2752
- "mobile."
2753
- msgstr ""
2754
- "Tot ce trebuie făcut este: faceți butoanele evidente, astfel încât oamenii "
2755
- "să le poată găsi cu ușurință. Asigurați-vă că acestea nu vă încetinesc site-"
2756
- "ul. Asigurați-vă că arată bine pe mobil."
2757
-
2758
- #: models/Audits.php:299
2759
- msgid "Add Social Share buttons in your articles"
2760
- msgstr "Adăugați butoane de partajare socială în articolele dvs"
2761
-
2762
- #: models/Audits.php:304
2763
- msgid "Social 'Follow me' Buttons?"
2764
- msgstr "Butoane sociale \"Urmați-mă\"?"
2765
-
2766
- #: models/Audits.php:306
2767
- msgid "The pages without social buttons"
2768
- msgstr "Paginile fără butoane sociale"
2769
-
2770
- #: models/Audits.php:307
2771
- #, php-format
2772
- msgid ""
2773
- "How can we fix the Social Follow Me buttons of the website? %s Add buttons "
2774
- "to your website, that allow your visitors to check your social media "
2775
- "profiles and follow you on social media. %s This is one of the most "
2776
- "important aspects nowadays, if you want to build trust with your website. %s "
2777
- "Learn more with Expectation Marketing. Expectation Marketing is all about "
2778
- "teaching you how to implement such buttons and other trust elements for your "
2779
- "digital brand. [link]http://expectationmarketing.com/[/link] %s"
2780
- msgstr ""
2781
- "Cum putem repara butoanele Social Follow Me de pe site? %s Adăugați butoane "
2782
- "pe site-ul dvs. web, care să permită vizitatorilor dvs. să vă verifice "
2783
- "profilurile de socializare și să vă urmărească pe rețelele sociale. %s "
2784
- "Acesta este unul dintre cele mai importante aspecte din zilele noastre, dacă "
2785
- "doriți să construiți încredere cu site-ul dvs. web. %s Aflați mai multe cu "
2786
- "Expectation Marketing. Expectation Marketing se ocupă de a te învăța cum să "
2787
- "implementezi astfel de butoane și alte elemente de încredere pentru brandul "
2788
- "tău digital. [link]http://expectationmarketing.com/[/link] %s"
2789
-
2790
- #: models/Audits.php:308
2791
- msgid ""
2792
- "Place the buttons in your site's footer, to make sure they're always "
2793
- "accessible. Web users are used to finding them there when they wish to "
2794
- "connect to brands on social media."
2795
- msgstr ""
2796
- "Plasați butoanele în subsolul site-ului dvs., pentru a vă asigura că sunt "
2797
- "întotdeauna accesibile. Utilizatorii web sunt obișnuiți să le găsească acolo "
2798
- "atunci când doresc să se conecteze la mărci pe rețelele sociale."
2799
-
2800
- #: models/Audits.php:309
2801
- msgid ""
2802
- "Add links to your Social Media profiles to strengthen social signals and "
2803
- "keep readers engaged."
2804
- msgstr ""
2805
- "Adăugați linkuri către profilurile dvs. de Social Media pentru a consolida "
2806
- "semnalele sociale și pentru a menține cititorii implicați."
2807
-
2808
- #: models/Audits.php:314
2809
- msgid "Open Graph protocol?"
2810
- msgstr "Protocolul Open Graph?"
2811
-
2812
- #: models/Audits.php:316
2813
- msgid "The pages without Open Graph metas"
2814
- msgstr "Paginile fără metas Open Graph"
2815
-
2816
- #: models/Audits.php:317
2817
- #, php-format
2818
- msgid ""
2819
- "How can we fix the Open Graph of the website? %s You need to make sure "
2820
- "you're going to fix the Open Graph image AS WELL AS all the other open graph "
2821
- "elements. %s If you're on WordPress, you're easily getting all the settings "
2822
- "you need from Squirrly SEO . Make sure you use it. %s Below, you can see "
2823
- "the examples of open graph elements you need to implement in the <head> "
2824
- "section of your page's code. Make sure you replace the elements inside "
2825
- "content=\" \" with your own data: your own titles, own image URLs, etc. %s "
2826
- "<meta property=“og:url” content=“{site}/product/expectation-marketing-"
2827
- "ebook/“ /> %s <meta property=“og:title” content=“Expectation Marketing "
2828
- "[Book]” /> %s <meta property=“og:description” content=“If you`re wondering "
2829
- "why your marketing strategy isn`t bringing the results you expected this is "
2830
- "the right ebook for you. Expectation Marketing is about giving you an acti” /"
2831
- "> %s <meta property=“og:type” content=“product” /> %s <meta property=“og:"
2832
- "image” content=“{site}/image.jpg” /> %s <meta property=“og:image:width” "
2833
- "content=“700” /> %s <meta property=“og:image:height” content=“536” /> %s "
2834
- "<meta property=“og:image:type” content=“image/jpeg” /> %s <meta property=“og:"
2835
- "site_name” content=“Expectation Marketing” /> %s <meta property=“og:locale” "
2836
- "content=“en” />%s"
2837
- msgstr ""
2838
- "Cum putem repara Open Graph de pe site-ul web? %s Trebuie să vă asigurați că "
2839
- "veți repara imaginea Open Graph, precum și toate celelalte elemente Open "
2840
- "Graph. %s Dacă sunteți pe WordPress, veți obține cu ușurință toate setările "
2841
- "de care aveți nevoie de la Squirrly SEO . Asigură-te că îl folosești. %s Mai "
2842
- "jos, poți vedea exemplele de elemente Open Graph pe care trebuie să le "
2843
- "implementezi în <head>secțiunea de cod a paginii tale. Asigurați-vă că "
2844
- "înlocuiți elementele din interiorul content=\" \" cu propriile date: "
2845
- "propriile titluri, propriile URL-uri ale imaginilor etc. %s &lt;meta "
2846
- "property=\"og:url\" content=\"{site}/product/expectation-marketing-ebook/\" /"
2847
- "&gt; %s <meta property=“og:title” content=“Expectation Marketing [Book]” /> "
2848
- "%s <meta property=“og:description” content=“If you`re wondering why your "
2849
- "marketing strategy isn`t bringing the results you expected this is the right "
2850
- "ebook for you. Expectation Marketing is about giving you an acti” /> %s "
2851
- "<meta property=“og:type” content=“product” /> %s &lt;meta property=\"og:image"
2852
- "\" content=\"{site}/image.jpg\" /&gt; %s <meta property=“og:image:width” "
2853
- "content=“700” /> %s <meta property=“og:image:height” content=“536” /> %s &lt;"
2854
- "meta property=\"og:image:type\" content=\"image/jpeg\" /&gt %s <meta "
2855
- "property=“og:site_name” content=“Expectation Marketing” /> %s <meta "
2856
- "property=“og:locale” content=“en” />%s</head>"
2857
-
2858
- #: models/Audits.php:318
2859
- msgid ""
2860
- "Fixing this will improve Click Through Rates on Facebook, LinkedIN. "
2861
- "Guaranteed. Make sure you use this to control how your pages look on social "
2862
- "media when people share them."
2863
- msgstr ""
2864
- "Rezolvarea acestui aspect va îmbunătăți rata de click pe Facebook, LinkedIN. "
2865
- "Garantat. Asigurați-vă că folosiți acest lucru pentru a controla modul în "
2866
- "care arată paginile dvs. pe rețelele sociale atunci când oamenii le "
2867
- "partajează."
2868
-
2869
- #: models/Audits.php:319
2870
- msgid "Add the meta Open Graph tag in your page's header."
2871
- msgstr "Adăugați tag-ul meta Open Graph în antetul paginii dvs."
2872
-
2873
- #: models/Audits.php:324
2874
- msgid "Twitter Card?"
2875
- msgstr "Card Twitter?"
2876
-
2877
- #: models/Audits.php:326
2878
- msgid "The pages without Twitter Card metas"
2879
- msgstr "Paginile fără metacarte Twitter Card"
2880
-
2881
- #: models/Audits.php:327
2882
- #, php-format
2883
- msgid ""
2884
- "How can we fix the Twitter Cards of the website? %s You need to make sure "
2885
- "you're going to fix the Twitter Card image AS WELL AS all the other twitter "
2886
- "card elements. %s If you're on WordPress, you're easily getting all the "
2887
- "settings you need from Squirrly SEO. Make sure you use it. %s Below, you can "
2888
- "see examples of twitter card elements you need to implement in the <head> "
2889
- "section of your page's code. Make sure you replace the elements inside "
2890
- "content=\" \" with your own data: your own titles, own image URLs, etc. %s "
2891
- "<meta property=“twitter:url” content=“{site}/product/expectation-marketing-"
2892
- "ebook/“ /> %s <meta property=“twitter:title” content=“Expectation Marketing "
2893
- "[Book]” /> %s <meta property=“twitter:description” content=“If you`re "
2894
- "wondering why your marketing strategy isn`t bringing the results you "
2895
- "expected this is the right ebook for you. Expectation Marketing is about "
2896
- "giving you an acti” /> %s <meta property=“twitter:image” content=“{site}/"
2897
- "image.jpg” /> %s <meta property=“twitter:domain” content=“Expectation "
2898
- "Marketing” /> %s <meta property=“twitter:card” content=“summary” />%s"
2899
- msgstr ""
2900
- "Cum putem repara cardurile Twitter de pe site? %s Trebuie să vă asigurați că "
2901
- "veți repara imaginea cardului Twitter, precum și toate celelalte elemente "
2902
- "ale cardului Twitter. %s Dacă sunteți pe WordPress, veți obține cu ușurință "
2903
- "toate setările de care aveți nevoie de la Squirrly SEO. Asigură-te că îl "
2904
- "folosești. %s Mai jos, poți vedea exemple de elemente de twitter card pe "
2905
- "care trebuie să le implementezi în <head>secțiunea de cod a paginii tale. "
2906
- "Asigurați-vă că înlocuiți elementele din interiorul content=\" \" cu "
2907
- "propriile date: propriile titluri, propriile URL-uri ale imaginilor etc. %s "
2908
- "&lt;meta property=\"twitter:url\" content=\"{site}/product/expectation-"
2909
- "marketing-ebook/\" /&gt; %s <meta property=“twitter:title” "
2910
- "content=“Expectation Marketing [Book]” /> %s <meta property=“twitter:"
2911
- "description” content=“If you`re wondering why your marketing strategy isn`t "
2912
- "bringing the results you expected this is the right ebook for you. "
2913
- "Expectation Marketing is about giving you an acti” /> %s &lt;meta property="
2914
- "\"twitter:image\" content=\"{site}/image.jpg\" /&gt %s <meta "
2915
- "property=“twitter:domain” content=“Expectation Marketing” /> %s <meta "
2916
- "property=“twitter:card” content=“summary” />%s</head>"
2917
-
2918
- #: models/Audits.php:328
2919
- msgid ""
2920
- "Fixing this will improve Click Through Rates on Twitter. Guaranteed. Make "
2921
- "sure you use this to control how your pages look on social media when people "
2922
- "share them."
2923
- msgstr ""
2924
- "Rezolvarea acestui aspect va îmbunătăți rata de click pe Twitter. Garantat. "
2925
- "Asigurați-vă că folosiți acest lucru pentru a controla modul în care arată "
2926
- "paginile dvs. pe rețelele sociale atunci când oamenii le partajează."
2927
-
2928
- #: models/Audits.php:329
2929
- msgid "Add Twitter Card to make your articles look better on Twitter."
2930
- msgstr ""
2931
- "Adăugați Twitter Card pentru ca articolele dvs. să arate mai bine pe Twitter."
2932
-
2933
- #: models/Audits.php:337
2934
- msgid "Majestic Backlinks"
2935
- msgstr "Majestic Backlinks"
2936
-
2937
- #: models/Audits.php:338 models/Audits.php:339 models/Audits.php:356
2938
- #: models/Audits.php:357
2939
- msgid "link(s)"
2940
- msgstr "link(uri)"
2941
-
2942
- #: models/Audits.php:338 models/Audits.php:339
2943
- msgid "Backlinks Count"
2944
- msgstr "Numărătoarea de backlink-uri"
2945
-
2946
- #: models/Audits.php:340 models/Audits.php:349
2947
- #, php-format
2948
- msgid ""
2949
- "How can we fix the Inbound Links Number to the latest 10 Pages? %s Many are "
2950
- "tempted to go to [link]fiverr.com[/link] for something like this. Avoid "
2951
- "shady SEO. What you can try, and ONLY if it makes sense, is to get bloggers "
2952
- "who sell on fiverr to place your article (with links to your own site) on "
2953
- "their site. %s You can easily get backlinks from multiple domains by showing "
2954
- "that your business: - is an alternative to some other existing business "
2955
- "(there are many websites on which people look for alternatives and they'll "
2956
- "be happy to include your site as well, because it supports their purpose) - "
2957
- "has discounts and coupons (there are many websites for coupon and discounts. "
2958
- "Just search on Google and you'll find many. They'll happily include your "
2959
- "coupon codes and links to your site) - hosts giveaways and contests (many "
2960
- "websites that will happily link to the contest page on your website) %s "
2961
- "Broken Link Building, using tools like Screaming Frog to help you find "
2962
- "broken links.%s Use Squirrly SPY to check the sites which send links to your "
2963
- "competitors or to other websites in your niche (or audience, or market): "
2964
- "[link]https://www.squirrly.co/seo/spy/[/link] %s Many Squirrly users decided "
2965
- "to purchase SPY reports and found out that they easily identified people "
2966
- "from their industry who were easy to reach. This helped them secure new "
2967
- "links from trust-worthy sites. %s"
2968
- msgstr ""
2969
- "Cum putem repara numărul de link-uri de intrare în cele mai recente 10 "
2970
- "pagini? %s Mulți sunt tentați să meargă la [link]fiverr.com[/link] pentru "
2971
- "așa ceva. Evitați SEO dubios. Ceea ce puteți încerca, și NUMAI dacă are "
2972
- "sens, este să convingeți bloggerii care vând pe fiverr să vă plaseze "
2973
- "articolul (cu linkuri către propriul site) pe site-ul lor. %s Poți obține cu "
2974
- "ușurință backlink-uri din mai multe domenii arătând că afacerea ta: - este o "
2975
- "alternativă la o altă afacere existentă (există multe site-uri pe care "
2976
- "oamenii caută alternative și vor fi bucuroși să includă și site-ul tău, "
2977
- "pentru că le susține scopul) - are reduceri și cupoane (există multe site-"
2978
- "uri de cupoane și reduceri. Doar căutați pe Google și veți găsi multe. "
2979
- "Acestea vor include cu plăcere codurile tale de cupoane și linkurile către "
2980
- "site-ul tău) - găzduiește cadouri și concursuri (multe site-uri web care vor "
2981
- "avea cu plăcere un link către pagina de concurs de pe site-ul tău) %s Broken "
2982
- "Link Building, folosind instrumente precum Screaming Frog pentru a te ajuta "
2983
- "să găsești link-uri rupte. %s Folosiți Squirrly SPY pentru a verifica site-"
2984
- "urile care trimit link-uri către concurenții dvs. sau către alte site-uri "
2985
- "web din nișa dvs. (sau audiență, sau piață): [link]https://www.squirrly.co/"
2986
- "seo/spy/[/link] %s Mulți utilizatori Squirrly au decis să achiziționeze "
2987
- "rapoarte SPY și au descoperit că au identificat cu ușurință persoane din "
2988
- "industria lor care erau ușor de contactat. Acest lucru i-a ajutat să obțină "
2989
- "noi linkuri de la site-uri demne de încredere. %s"
2990
-
2991
- #: models/Audits.php:341 models/Audits.php:350
2992
- msgid ""
2993
- "Use the BackLinks Assistant [link]https://www.producthunt.com/upcoming/"
2994
- "backlinks-assistant-by-squirrly[/link]. There are many other ways to "
2995
- "increase the number of backlinks. Find more ideas in this resource: https://"
2996
- "www.squirrly.co/how-to-improve-the-site-audit-score-given-by-squirrly-seo-"
2997
- "plugin/. Send it to your team. Brainstorm items from our list which your "
2998
- "team can start working on."
2999
- msgstr ""
3000
- "Utilizați asistentul BackLinks [link]https://www.producthunt.com/upcoming/"
3001
- "backlinks-assistant-by-squirrly[/link]. Există multe alte modalități de a "
3002
- "crește numărul de backlink-uri. Găsiți mai multe idei în această resursă: "
3003
- "https://www.squirrly.co/how-to-improve-the-site-audit-score-given-by-"
3004
- "squirrly-seo-plugin/. Trimiteți-o echipei dvs. Faceți un brainstorming de "
3005
- "elemente din lista noastră la care echipa dvs. poate începe să lucreze."
3006
-
3007
- #: models/Audits.php:346
3008
- msgid "Majestic Unique Domains"
3009
- msgstr "Majestic Domenii unice"
3010
-
3011
- #: models/Audits.php:347 models/Audits.php:348
3012
- msgid "Links from {total} domains"
3013
- msgstr "Legături din {total} domenii"
3014
-
3015
- #: models/Audits.php:347 models/Audits.php:348
3016
- msgid "Unique Domains Count"
3017
- msgstr "Numărătoarea domeniilor unice"
3018
-
3019
- #: models/Audits.php:355
3020
- msgid "Moz Backlinks"
3021
- msgstr "Moz Backlinks"
3022
-
3023
- #: models/Audits.php:356 models/Audits.php:357
3024
- msgid "Moz Backlinks Count"
3025
- msgstr "Moz Backlinks Count"
3026
-
3027
- #: models/Audits.php:358
3028
- #, php-format
3029
- msgid ""
3030
- "How can we fix the Inbound Links Number to the latest 10 Pages? %s Many are "
3031
- "tempted to go to fiverr.com for something like this. Avoid shady SEO. What "
3032
- "you can try, and ONLY if it makes sense, is to get bloggers who sell on "
3033
- "fiverr to place your article (with links to your own site) on their site. %s "
3034
- "You can easily get backlinks from multiple domains by showing that your "
3035
- "business: - is an alternative to some other existing business (there are "
3036
- "many websites on which people look for alternatives and they'll be happy to "
3037
- "include your site as well, because it supports their purpose) - has "
3038
- "discounts and coupons (there are many websites for coupon and discounts. "
3039
- "Just search on Google and you'll find many. They'll happily include your "
3040
- "coupon codes and links to your site) - hosts giveaways and contests (many "
3041
- "websites that will happily link to the contest page on your website) %s "
3042
- "Broken Link Building, using tools like Screaming Frog to help you find "
3043
- "broken links.%s"
3044
- msgstr ""
3045
- "Cum putem repara numărul de link-uri de intrare în cele mai recente 10 "
3046
- "pagini? %s Mulți sunt tentați să meargă pe fiverr.com pentru așa ceva. "
3047
- "Evitați SEO dubios. Ceea ce puteți încerca, și NUMAI dacă are sens, este să "
3048
- "convingeți bloggerii care vând pe fiverr să vă plaseze articolul (cu linkuri "
3049
- "către propriul site) pe site-ul lor. %s Poți obține cu ușurință backlink-uri "
3050
- "din mai multe domenii arătând că afacerea ta: - este o alternativă la o altă "
3051
- "afacere existentă (există multe site-uri pe care oamenii caută alternative "
3052
- "și vor fi bucuroși să includă și site-ul tău, pentru că le susține scopul) - "
3053
- "are reduceri și cupoane (există multe site-uri de cupoane și reduceri. Doar "
3054
- "căutați pe Google și veți găsi multe. Acestea vor include cu plăcere "
3055
- "codurile tale de cupoane și linkurile către site-ul tău) - găzduiește "
3056
- "cadouri și concursuri (multe site-uri web care vor avea cu plăcere un link "
3057
- "către pagina de concurs de pe site-ul tău) %s Broken Link Building, folosind "
3058
- "instrumente precum Screaming Frog pentru a te ajuta să găsești link-uri "
3059
- "rupte. %s"
3060
-
3061
- #: models/Audits.php:359
3062
- msgid ""
3063
- "Use the BackLinks Assistant [link]https://www.producthunt.com/upcoming/"
3064
- "backlinks-assistant-by-squirrly[/link] . There are many other ways to "
3065
- "increase the number of backlinks. Just check out the full documentation "
3066
- "below. Send it to your team. Brainstorm items from our list which your team "
3067
- "can start working on."
3068
- msgstr ""
3069
- "Utilizați Asistentul BackLinks [link]https://www.producthunt.com/upcoming/"
3070
- "backlinks-assistant-by-squirrly[/link] . Există multe alte modalități de a "
3071
- "crește numărul de backlink-uri. Consultați doar documentația completă de mai "
3072
- "jos. Trimiteți-o echipei dvs. Faceți un brainstorming de elemente din lista "
3073
- "noastră la care echipa dvs. poate începe să lucreze."
3074
-
3075
- #: models/Audits.php:360
3076
- msgid ""
3077
- "Find more blogs, forums, directories to add links there. Contribute to the "
3078
- "respective community and they will appreciate it."
3079
- msgstr ""
3080
- "Găsiți mai multe bloguri, forumuri, directoare pentru a adăuga linkuri "
3081
- "acolo. Contribuiți la comunitatea respectivă și aceasta va aprecia."
3082
-
3083
- #: models/Audits.php:365
3084
- msgid "Links with noFollow?"
3085
- msgstr "Link-uri cu noFollow?"
3086
-
3087
- #: models/Audits.php:366
3088
- msgid "Nofollow Links Count"
3089
- msgstr "Numărătoarea de linkuri Nofollow"
3090
-
3091
- #: models/Audits.php:368
3092
- #, php-format
3093
- msgid ""
3094
- "How can we fix the No-Follow links of the website? %s You can find an "
3095
- "extremely easy way to do this in the SEO Kit of Squirrly: [link]https://www."
3096
- "squirrly.co/seo/kit/[/link] %s You can start doing this even if you don't "
3097
- "have an advanced or complex SEO strategy for all your site's inner links. If "
3098
- "you have pages in your SEO strategy that are super important (you NEED those "
3099
- "pages to be found via search) make sure you add: <meta name=\"robots\" "
3100
- "content=\"index, nofollow\" /> This ensures that Google considers this a "
3101
- "final page. If many other pages link on to this page and this is the final "
3102
- "one, it means that it is the most valuable resource. %s Identify links on "
3103
- "your pages that are not important for you or for the purpose of the site "
3104
- "itself. Maybe you're sending a link to chef Jamie Oliver's recipe for hot "
3105
- "sauce. You should make sure that you add the No Follow tag to that link "
3106
- "going out of your site, because you don't want Google to pass on link juice "
3107
- "to Jaime Oliver. You'd give him a part of your SEO Authority and you don't "
3108
- "want that. You should also add No-Follow tags to internal links from your "
3109
- "very own site. Add no-follow to pages like \"/login\", \"/register\" \"/"
3110
- "terms-of-use\", which are not important to be found via search engines. %s "
3111
- "Add rel=\"nofollow\" to links inside your pages to fix this task. If you'd "
3112
- "want to NoFollow your Sign In page you could do it like this: <a href="
3113
- "\"signin.php\" rel=\"nofollow\">sign in</a>%s"
3114
- msgstr ""
3115
- "Cum putem repara legăturile No-Follow ale site-ului? %s Puteți găsi o "
3116
- "modalitate extrem de ușoară de a face acest lucru în kitul SEO al Squirrly: "
3117
- "[link]https://www.squirrly.co/seo/kit/[/link] %s Puteți începe să faceți "
3118
- "acest lucru chiar dacă nu aveți o strategie SEO avansată sau complexă pentru "
3119
- "toate legăturile interne ale site-ului dvs. Dacă aveți pagini în strategia "
3120
- "dvs. SEO care sunt super importante (aveți NEVOIE de acele pagini pentru a "
3121
- "fi găsite prin intermediul căutării), asigurați-vă că adăugați: <meta name="
3122
- "\"robots\" content=\"index, nofollow\" /> Acest lucru asigură faptul că "
3123
- "Google consideră că aceasta este o pagină finală. Dacă multe alte pagini se "
3124
- "leagă de această pagină și aceasta este cea finală, înseamnă că este cea mai "
3125
- "valoroasă resursă. %s Identificați legăturile de pe paginile dvs. care nu "
3126
- "sunt importante pentru dvs. sau pentru scopul site-ului în sine. Poate că "
3127
- "trimiteți un link către rețeta de sos picant a bucătarului Jamie Oliver. Ar "
3128
- "trebui să vă asigurați că adăugați eticheta No Follow la acel link care iese "
3129
- "din site-ul dvs., deoarece nu doriți ca Google să transmită link juice către "
3130
- "Jaime Oliver. I-ai da o parte din autoritatea ta SEO și nu vrei asta. De "
3131
- "asemenea, ar trebui să adăugați etichete No-Follow la linkurile interne din "
3132
- "propriul site. Adăugați no-follow la pagini precum \"/login\", \"/register\" "
3133
- "\"/terms-of-use\", care nu sunt importante pentru a fi găsite prin "
3134
- "intermediul motoarelor de căutare. %s Adăugați rel=\"nofollow\" la link-"
3135
- "urile din interiorul paginilor dvs. pentru a rezolva această sarcină. Dacă "
3136
- "ați dori să faceți NoFollow pentru pagina dvs. de conectare, ați putea face "
3137
- "așa: <a href=\"signin.php\" rel=\"nofollow\">Sign in</a>%s"
3138
-
3139
- #: models/Audits.php:369
3140
- msgid ""
3141
- "You could add no-follow to most of the links from your site that go towards "
3142
- "external, third-party websites. The only external sites you should leave "
3143
- "without No-Follow are sites that you'd like to be associated with by Google. "
3144
- "This is to say that in some cases you may want to send do-follow links to "
3145
- "other people's sites if they are super high authority and would help Google "
3146
- "better understand what your site's content is all about."
3147
- msgstr ""
3148
- "Ați putea adăuga no-follow la majoritatea linkurilor de pe site-ul dvs. care "
3149
- "se îndreaptă către site-uri externe, terțe. Singurele site-uri externe pe "
3150
- "care ar trebui să le lăsați fără No-Follow sunt site-urile cu care ați dori "
3151
- "să fiți asociat de Google. Aceasta înseamnă că, în unele cazuri, ați putea "
3152
- "dori să trimiteți linkuri do-follow către site-urile altor persoane dacă "
3153
- "acestea sunt de o autoritate super înaltă și ar ajuta Google să înțeleagă "
3154
- "mai bine despre ce este vorba în conținutul site-ului dvs."
3155
-
3156
- #: models/Audits.php:370
3157
- msgid "Add nofollow links to pages like Terms and Conditions."
3158
- msgstr "Adăugați linkuri nofollow la pagini precum Termeni și condiții."
3159
-
3160
- #: models/Audits.php:379 models/FocusPages.php:29
3161
- msgid "Page Authority"
3162
- msgstr "Autoritate de pagină"
3163
-
3164
- #: models/Audits.php:380 models/Audits.php:381
3165
- msgid "average authority"
3166
- msgstr "autoritatea medie"
3167
-
3168
- #: models/Audits.php:382
3169
- #, php-format
3170
- msgid ""
3171
- "How can we fix the Authority of the website? %s You must start by "
3172
- "understanding this: Authority is Squirrly's calculated metric for how well a "
3173
- "given webpage is likely to rank in Google's search results. It collects data "
3174
- "from social media, google analytics and inbound links (backlinks to your own "
3175
- "site) %s You can follow the PRO Tips sections from Audit. %s Get more Buzz "
3176
- "on Social Media. Get More Traffic. Get More Sites to link back to your own "
3177
- "site. That's how you increase your Authority.%s Read the Traffic section of "
3178
- "the Audit for more fixes and ideas. Bringing more Traffic increases "
3179
- "Authority. %s Read the Social Media ideas for getting your pages shared on "
3180
- "social networks. In the SEO Audit from Squirrly. Get more shares and traffic "
3181
- "from social media. That will help boost your overall Web Authority %s Use "
3182
- "Focus Pages from Squirrly: everything we tell you there helps boost your "
3183
- "authority: [link]https://plugin.squirrly.co/focus-pages/[/link] %s"
3184
- msgstr ""
3185
- "Cum putem repara autoritatea site-ului? %s Trebuie să începeți prin a "
3186
- "înțelege acest lucru: Autoritatea este măsura calculată de Squirrly pentru a "
3187
- "determina cât de bine o anumită pagină web are șanse să se claseze în "
3188
- "rezultatele de căutare Google. Acesta colectează date din social media, "
3189
- "google analytics și link-uri de intrare (backlink-uri către propriul site) "
3190
- "%s Puteți urmări secțiunile PRO Tips din Audit. %s Obțineți mai mult Buzz pe "
3191
- "Social Media. Obțineți mai mult trafic. Obțineți mai multe site-uri care să "
3192
- "se lege înapoi la propriul site. Așa vă creșteți Autoritatea.%s Citiți "
3193
- "secțiunea Trafic din Audit pentru mai multe soluții și idei. Aducând mai "
3194
- "mult Trafic crește Autoritatea. %s Citiți ideile din Social Media pentru a "
3195
- "vă face paginile partajate pe rețelele sociale. În Auditul SEO de la "
3196
- "Squirrly. Obțineți mai multe distribuiri și trafic din social media. Asta va "
3197
- "ajuta la creșterea Autorității Web generale %s Folosiți Focus Pages din "
3198
- "Squirrly: tot ceea ce vă spunem acolo ajută la creșterea autorității dvs: "
3199
- "[link]https://plugin.squirrly.co/focus-pages/[/link] %s"
3200
-
3201
- #: models/Audits.php:383
3202
- msgid ""
3203
- "You can build up a solid Content Strategy using the SEO Goals and our brand "
3204
- "new Private SEO Consultant. In a Plugin. Powered by Machine Learning and "
3205
- "Cloud Services: [link]https://plugin.squirrly.co/best-seo-goals/[/link] or "
3206
- "you can start getting more BackLinks using the BackLinks Assistant "
3207
- "[link]https://www.producthunt.com/upcoming/backlinks-assistant-by-squirrly[/"
3208
- "link]."
3209
- msgstr ""
3210
- "Puteți construi o strategie de conținut solidă folosind obiectivele SEO și "
3211
- "noul nostru consultant SEO privat. Într-un Plugin. Alimentat de Machine "
3212
- "Learning și servicii cloud: [link]https://plugin.squirrly.co/best-seo-goals/"
3213
- "[/link] sau puteți începe să obțineți mai multe BackLinks folosind BackLinks "
3214
- "Assistant [link]https://www.producthunt.com/upcoming/backlinks-assistant-by-"
3215
- "squirrly[/link]."
3216
-
3217
- #: models/Audits.php:384
3218
- msgid "Get links to your page from domains with authority."
3219
- msgstr "Obțineți link-uri către pagina dvs. de la domenii cu autoritate."
3220
-
3221
- #: models/Audits.php:389
3222
- msgid "Alexa Rank"
3223
- msgstr "Alexa Rank"
3224
-
3225
- #: models/Audits.php:392
3226
- #, php-format
3227
- msgid ""
3228
- "How can we fix the Alexa Rank of the website? %s Get more traffic to your "
3229
- "website. (the visitors should have the Alexa toolbar installed for Alexa to "
3230
- "be able to measure the traffic). %s You could encourage your visitors to "
3231
- "install the Alexa toolbar (if it makes sense for your business or audience, "
3232
- "of course). %s Increase your SEO rankings, get more shares on social media. "
3233
- "You can use tools like Social Squirrly to make sure you constantly promote "
3234
- "your pages, without doing any manual work. And without forgetting to keep "
3235
- "posting them. [link]https://www.squirrly.co/social-media/tools-for-digital-"
3236
- "marketing/[/link]%s"
3237
- msgstr ""
3238
- "Cum putem repara Alexa Rank-ul site-ului? %s Obțineți mai mult trafic pe "
3239
- "site-ul dvs. web. (vizitatorii trebuie să aibă instalat bara de instrumente "
3240
- "Alexa pentru ca Alexa să poată măsura traficul). %s Ați putea să vă "
3241
- "încurajați vizitatorii să instaleze bara de instrumente Alexa (dacă are sens "
3242
- "pentru afacerea sau publicul dumneavoastră, desigur). %s Creșteți "
3243
- "clasamentul SEO, obțineți mai multe distribuiri pe rețelele sociale. Puteți "
3244
- "utiliza instrumente precum Social Squirrly pentru a vă asigura că vă "
3245
- "promovați în mod constant paginile, fără a face nicio muncă manuală. Și fără "
3246
- "să uitați să continuați să le postați. [link]https://www.squirrly.co/social-"
3247
- "media/tools-for-digital-marketing/[/link]%s"
3248
-
3249
- #: models/Audits.php:393
3250
- msgid ""
3251
- "A certain and tested way of increasing Alexa rank is creating and promoting "
3252
- "many pieces of fresh content. An agency like Squirrly's Content Agency can "
3253
- "help you with this. [link]http://www.squirrly.co/agency[/link]"
3254
- msgstr ""
3255
- "O modalitate sigură și testată de a crește Alexa rank este crearea și "
3256
- "promovarea multor bucăți de conținut proaspăt. O agenție precum Squirrly's "
3257
- "Content Agency vă poate ajuta în acest sens. [link]http://www.squirrly.co/"
3258
- "agency[/link]"
3259
-
3260
- #: models/Audits.php:394
3261
- msgid "Try to gain organic traffic to your site."
3262
- msgstr "Încercați să obțineți trafic organic pe site-ul dumneavoastră."
3263
-
3264
- #: models/Audits.php:399
3265
- msgid "Domain Age"
3266
- msgstr "Vârsta domeniului"
3267
-
3268
- #: models/Audits.php:402
3269
- #, php-format
3270
- msgid ""
3271
- "How can we fix the Domain Age of the website? %s While you certainly can't "
3272
- "go back and forth in time like the Flash, there are things you can do, like: "
3273
- "make sure your domain can be crawled by search engines. %s Ping your domain "
3274
- "name as soon as possible using Google Search Console. Ask GSC asap to index "
3275
- "your pages. Both by manual URL index and by placing the sitemaps generated "
3276
- "by Squirrly. %s Get your website on Way Back Machine. [link]https://archive."
3277
- "org/web/[/link] Archive.org even has a tool called Save Page Now which will "
3278
- "guarantee your entry into Way Back Machine.%s"
3279
- msgstr ""
3280
- "Cum putem stabili vârsta domeniului site-ului? %s Deși, cu siguranță, nu "
3281
- "puteți merge înainte și înapoi în timp ca Flash, există lucruri pe care le "
3282
- "puteți face, cum ar fi: asigurați-vă că domeniul dvs. poate fi urmărit de "
3283
- "motoarele de căutare. %s Efectuați un ping la numele domeniului dvs. cât mai "
3284
- "curând posibil folosind Google Search Console. Cereți GSC cât mai repede să "
3285
- "vă indexeze paginile. Atât prin indexarea manuală a URL-urilor, cât și prin "
3286
- "plasarea sitemap-urilor generate de Squirrly. %s Introduceți site-ul dvs. în "
3287
- "Way Back Machine. [link]https://archive.org/web/[/link] Archive.org are "
3288
- "chiar și un instrument numit Save Page Now care va garanta intrarea ta în "
3289
- "Way Back Machine.%s"
3290
-
3291
- #: models/Audits.php:403
3292
- msgid ""
3293
- "If Squirrly could crawl your website and find your pages + show you the "
3294
- "Audit, it means your domain and pages can be crawled. Just make sure you're "
3295
- "not stopping the Google crawlers in your code via \"no-index\" or via robots."
3296
- "txt"
3297
- msgstr ""
3298
- "Dacă Squirrly ar putea să vă cerceteze site-ul web și să vă găsească "
3299
- "paginile + să vă arate auditul, înseamnă că domeniul și paginile dvs. pot fi "
3300
- "cercetate. Asigurați-vă doar că nu opriți crawlerele Google în codul dvs. "
3301
- "prin \"no-index\" sau prin robots.txt"
3302
-
3303
- #: models/Audits.php:404
3304
- msgid ""
3305
- "Your domain is new. I know it will get older, but still, it's good to know "
3306
- "what to expect if it's new :)"
3307
- msgstr ""
3308
- "Domeniul dumneavoastră este nou. Știu că va îmbătrâni, dar totuși, este bine "
3309
- "să știi la ce să te aștepți dacă este nou :)"
3310
-
3311
- #: models/Audits.php:409
3312
- msgid "Site Icon"
3313
- msgstr "Icoana site-ului"
3314
-
3315
- #: models/Audits.php:412
3316
- #, php-format
3317
- msgid ""
3318
- "How can we fix the favicon of the website? %s If you don't already have a "
3319
- "favicon, you'll need to create one. The dimensions are 16 x 16 pixels %s You "
3320
- "can easily create one using this [link]http://www.favicon.cc/[/link] . "
3321
- "Upload it to your own server after creating it. %s Once you have the "
3322
- "favicon, use this in the code of your pages: <link rel=“shortcut icon” "
3323
- "href=“/images/specialicon.ico” type=“image/x-icon” />%s"
3324
- msgstr ""
3325
- "Cum putem repara faviconul site-ului? %s Dacă nu aveți deja un favicon, va "
3326
- "trebui să creați unul. Dimensiunile sunt de 16 x 16 pixeli %s Puteți crea cu "
3327
- "ușurință unul folosind acest [link]http://www.favicon.cc/[/link] . Încărcați-"
3328
- "l pe propriul server după ce l-ați creat. %s Odată ce aveți faviconul, "
3329
- "folosiți-l în codul paginilor dumneavoastră: <link rel=\"shortcut icon\" "
3330
- "href=\"/images/specialicon.ico\" type=\"image/x-icon\" />%s"
3331
-
3332
- #: models/Audits.php:413
3333
- msgid ""
3334
- "Platforms like Shopify handle this with their default engine. On WordPress "
3335
- "you can use Squirrly SEO to upload and control the favicon displayed on your "
3336
- "pages."
3337
- msgstr ""
3338
- "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
3339
- "WordPress, puteți utiliza Squirrly SEO pentru a încărca și controla "
3340
- "faviconul afișat pe paginile dvs."
3341
-
3342
- #: models/Audits.php:414 models/Audits.php:424
3343
- msgid "Add an icon for your site"
3344
- msgstr "Adăugați o pictogramă pentru site-ul dvs"
3345
-
3346
- #: models/Audits.php:419
3347
- msgid "IPad and IPhone Icons"
3348
- msgstr "IPad și IPhone Icoane"
3349
-
3350
- #: models/Audits.php:422
3351
- #, php-format
3352
- msgid ""
3353
- "How can we fix the Apple Icon of the website? %s If you don't already have "
3354
- "an Apple Icon, you'll need to create one. The dimensions are 129 x 129 "
3355
- "pixels. It will need to be a .png file %s You can easily create one using "
3356
- "this [link]https://www.canva.com/[/link] . Upload it to your own server "
3357
- "after creating it. %s Once you have the Apple Icon, use this in the code (in "
3358
- "the <head> section) of your pages: %s <link rel=“apple-touch-icon” href=“/"
3359
- "apple-touch-icon.png” />%s"
3360
- msgstr ""
3361
- "Cum putem repara pictograma Apple a site-ului? %s Dacă nu aveți deja o "
3362
- "pictogramă Apple, va trebui să creați una. Dimensiunile sunt de 129 x 129 "
3363
- "pixeli. Va trebui să fie un fișier .png %s Puteți crea cu ușurință una "
3364
- "folosind acest [link]https://www.canva.com/[/link] . Încărcați-l pe propriul "
3365
- "server după ce l-ați creat. %s Odată ce aveți pictograma Apple, utilizați "
3366
- "acest lucru în codul (în <head>secțiunea) paginilor dvs.: %s &lt;link rel="
3367
- "\"apple-touch-icon\" href=\"/apple-touch-icon.png\" /&gt</head> <head>%s</"
3368
- "head>"
3369
-
3370
- #: models/Audits.php:423
3371
- msgid ""
3372
- "Platforms like Shopify handle this with their default engine. On WordPress "
3373
- "you can use Squirrly SEO to upload and control the Apple Icon displayed on "
3374
- "user's home screens when they bookmark your pages."
3375
- msgstr ""
3376
- "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
3377
- "WordPress, puteți utiliza Squirrly SEO pentru a încărca și controla "
3378
- "pictograma Apple afișată pe ecranele de pornire ale utilizatorilor atunci "
3379
- "când aceștia marchează paginile dvs."
3380
-
3381
- #: models/Audits.php:463 models/Audits.php:496 models/Audits.php:515
3382
- #: models/Audits.php:622 models/focuspages/Audit.php:186
3383
- #: models/focuspages/Audit.php:207 models/focuspages/Audit.php:228
3384
- #: models/focuspages/Audit.php:249
3385
- msgid "URL"
3386
- msgstr "URL"
3387
-
3388
- #: models/Audits.php:464
3389
- msgid "Visitors"
3390
- msgstr "Vizitatori"
3391
-
3392
- #: models/Audits.php:465
3393
- msgid "Bounce"
3394
- msgstr "Sări"
3395
-
3396
- #: models/Audits.php:481
3397
- msgid "No traffic data found"
3398
- msgstr "Nu s-au găsit date de trafic"
3399
-
3400
- #: models/Audits.php:497 models/Audits.php:516
3401
- msgid "Total"
3402
- msgstr "Total"
3403
-
3404
- #: models/Audits.php:548
3405
- msgid "Facebook reactions"
3406
- msgstr "Reacții pe Facebook"
3407
-
3408
- #: models/Audits.php:552
3409
- msgid "Facebook shares"
3410
- msgstr "Acțiuni Facebook"
3411
-
3412
- #: models/Audits.php:556
3413
- msgid "Reddit shares"
3414
- msgstr "Acțiuni Reddit"
3415
-
3416
- #: models/Audits.php:560
3417
- msgid "Pinterest shares"
3418
- msgstr "Acțiuni Pinterest"
3419
-
3420
- #: models/Audits.php:623
3421
- msgid "Value"
3422
- msgstr "Valoare"
3423
-
3424
- #: models/Audits.php:690 view/Audits/Audit.php:153 view/Audits/Compare.php:167
3425
- msgid "PRO TIP"
3426
- msgstr "PRO TIP"
3427
-
3428
- #: models/Audits.php:710
3429
- msgid "Requires Attention!"
3430
- msgstr "Necesită atenție!"
3431
-
3432
- #: models/Audits.php:714
3433
- msgid "Can be improved."
3434
- msgstr "Poate fi îmbunătățit."
3435
-
3436
- #: models/Audits.php:776
3437
- msgid "not yet"
3438
- msgstr "nu încă"
3439
-
3440
- #: models/BulkSeo.php:16
3441
- msgid "METAs"
3442
- msgstr "METAs"
3443
-
3444
- #: models/BulkSeo.php:17 view/Blocks/Snippet.php:94
3445
- msgid "Open Graph"
3446
- msgstr "Open Graph"
3447
-
3448
- #: models/BulkSeo.php:18 view/Blocks/Snippet.php:98
3449
- msgid "Twitter Card"
3450
- msgstr "Card Twitter"
3451
-
3452
- #: models/BulkSeo.php:19 models/FocusPages.php:19 view/Blocks/Snippet.php:102
3453
- msgid "Visibility"
3454
- msgstr "Vizibilitate"
3455
-
3456
- #: models/CheckSeo.php:38
3457
- msgid "Make your site Visible asap"
3458
- msgstr "Faceți site-ul dvs. vizibil cât mai curând posibil"
3459
-
3460
- #: models/CheckSeo.php:39
3461
- #, php-format
3462
- msgid ""
3463
- "If you want Google (or any other search engine) to Display your pages and "
3464
- "then Rank them higher in search results, your website needs to be Public and "
3465
- "the pages indexable. Currently, a setting in your WordPress makes this "
3466
- "impossible. You selected '%s' in %sSettings > Reading%s. You need to UNCHECK "
3467
- "that option."
3468
- msgstr ""
3469
- "Dacă doriți ca Google (sau orice alt motor de căutare) să vă afișeze "
3470
- "paginile și apoi să le clasifice mai sus în rezultatele căutărilor, site-ul "
3471
- "dvs. trebuie să fie public și paginile trebuie să fie indexabile. În "
3472
- "prezent, o setare din WordPress face ca acest lucru să fie imposibil. Ați "
3473
- "selectat \"%s\" în %sSetări > Lectură%s. Trebuie să debifați această opțiune."
3474
-
3475
- #: models/CheckSeo.php:39 models/CheckSeo.php:40
3476
- #: models/bulkseo/Visibility.php:107 view/Blocks/Snippet.php:1117
3477
- msgid "Discourage search engines from indexing this site"
3478
- msgstr "Descurajează motoarele de căutare să indexeze acest site"
3479
-
3480
- #: models/CheckSeo.php:40
3481
- #, php-format
3482
- msgid "Uncheck the option: %s in %sSettings > Reading%s."
3483
- msgstr "Debifați opțiunea: %s în %sSetări > Citire%s."
3484
-
3485
- #: models/CheckSeo.php:41
3486
- msgid ""
3487
- "Google can't show your site to anybody, because you haven't made your site "
3488
- "public and indexable. You must fix this today."
3489
- msgstr ""
3490
- "Google nu poate arăta site-ul dvs. nimănui, pentru că nu l-ați făcut public "
3491
- "și indexabil. Trebuie să remediați acest lucru astăzi."
3492
-
3493
- #: models/CheckSeo.php:52
3494
- msgid "Get the meta title tag in the front-end"
3495
- msgstr "Obțineți tag-ul meta title în front-end"
3496
-
3497
- #: models/CheckSeo.php:53
3498
- msgid ""
3499
- "Without the title tag in the front-end, search engines will 'think' that "
3500
- "your website is broken. Currently the title tag is missing in front-end."
3501
- msgstr ""
3502
- "Fără eticheta de titlu în partea frontală, motoarele de căutare vor \"crede"
3503
- "\" că site-ul dvs. este defect. În prezent, eticheta de titlu lipsește din "
3504
- "front-end."
3505
-
3506
- #: models/CheckSeo.php:54
3507
- #, php-format
3508
- msgid ""
3509
- "Go to %sSquirrly > SEO Settings > Metas%s and switch on 'Optimize the "
3510
- "Titles'. If it's already switched on, check if another plugin is stopping "
3511
- "Squirrly from showing the Title."
3512
- msgstr ""
3513
- "Mergeți la %sSquirrly > Setări SEO > Metas%s și activați \"Optimizarea "
3514
- "titlurilor\". Dacă este deja activat, verificați dacă un alt plugin "
3515
- "împiedică Squirrly să afișeze titlul."
3516
-
3517
- #: models/CheckSeo.php:55
3518
- msgid ""
3519
- "You have to make the Title tag of the page visible in the front-end of the "
3520
- "website. As soon as possible. Otherwise, you will have difficulty ranking."
3521
- msgstr ""
3522
- "Trebuie să faceți ca eticheta Title a paginii să fie vizibilă în partea "
3523
- "frontală a site-ului web. Cât mai curând posibil. În caz contrar, veți avea "
3524
- "dificultăți în ranking."
3525
-
3526
- #: models/CheckSeo.php:61 models/CheckSeo.php:75 models/CheckSeo.php:89
3527
- #: models/CheckSeo.php:116 models/CheckSeo.php:130 models/CheckSeo.php:227
3528
- #: models/CheckSeo.php:241 models/CheckSeo.php:548 models/CheckSeo.php:714
3529
- #: models/CheckSeo.php:728 models/CheckSeo.php:742 models/CheckSeo.php:756
3530
- #: models/CheckSeo.php:770 models/CheckSeo.php:784
3531
- msgid "On-Page SEO"
3532
- msgstr "On-Page SEO"
3533
-
3534
- #: models/CheckSeo.php:66
3535
- msgid "Turn Squirrly's AMP Support to ON"
3536
- msgstr "Activați suportul AMP al Squirrly la ON"
3537
-
3538
- #: models/CheckSeo.php:67
3539
- msgid ""
3540
- "AMP site detected and Squirrly's AMP Support is OFF - If this website is an "
3541
- "AMP website you need to make sure that you activate Squirrly AMP Tracking "
3542
- "for it. Squirrly will load Google Analytics and Facebook Pixel for AMP and "
3543
- "avoid AMP script errors."
3544
- msgstr ""
3545
- "Site AMP detectat și suportul AMP al Squirrly este dezactivat - Dacă acest "
3546
- "site este un site AMP, trebuie să vă asigurați că activați Squirrly AMP "
3547
- "Tracking pentru acesta. Squirrly va încărca Google Analytics și Facebook "
3548
- "Pixel pentru AMP și va evita erorile de script AMP."
3549
-
3550
- #: models/CheckSeo.php:68
3551
- #, php-format
3552
- msgid "Activate AMP tracking in %s Squirrly > SEO Settings > Tracking Tools%s "
3553
- msgstr ""
3554
- "Activați urmărirea AMP în %s Squirrly > Setări SEO > Instrumente de urmărire"
3555
- "%s "
3556
-
3557
- #: models/CheckSeo.php:69
3558
- msgid ""
3559
- "You must activate the AMP settings for Squirrly SEO, right now. Otherwise, "
3560
- "the AMP version of the site will have missing pieces."
3561
- msgstr ""
3562
- "Trebuie să activați setările AMP pentru Squirrly SEO, chiar acum. În caz "
3563
- "contrar, versiunea AMP a site-ului va avea piese lipsă."
3564
-
3565
- #: models/CheckSeo.php:80
3566
- msgid "Activate Squirrly SEO Title now"
3567
- msgstr "Activați Squirrly SEO Title acum"
3568
-
3569
- #: models/CheckSeo.php:81
3570
- msgid ""
3571
- "Squirrly SEO title is NOT active for your website.If you DON'T use other SEO "
3572
- "plugins, you should activate this option, and Squirrly SEO will add the "
3573
- "Title tag on each page of your website and remove any duplicates. Your title "
3574
- "tag determines your display title in SERPs, and it’s meant to help Google "
3575
- "and human readers understand what your pages are all about"
3576
- msgstr ""
3577
- "Titlul Squirrly SEO NU este activ pentru site-ul dvs. web.Dacă NU folosiți "
3578
- "alte plugin-uri SEO, ar trebui să activați această opțiune, iar Squirrly SEO "
3579
- "va adăuga eticheta Titlu pe fiecare pagină a site-ului dvs. web și va "
3580
- "elimina orice duplicat. Eticheta de titlu determină titlul afișat în SERPs "
3581
- "și are rolul de a ajuta Google și cititorii umani să înțeleagă despre ce "
3582
- "este vorba în paginile dvs"
3583
-
3584
- #: models/CheckSeo.php:82
3585
- #, php-format
3586
- msgid ""
3587
- "Go to %sSquirrly > SEO Settings > Metas%s and switch on: 'Optimize the "
3588
- "Titles'"
3589
- msgstr ""
3590
- "Mergeți la %sSquirrly > Setări SEO > Metas%s și activați: 'Optimizarea "
3591
- "titlurilor'"
3592
-
3593
- #: models/CheckSeo.php:83
3594
- msgid ""
3595
- "You should activate the Squirrly SEO title to help Search Engines understand "
3596
- "what your pages are about and ensure all of your pages have titles."
3597
- msgstr ""
3598
- "Ar trebui să activați titlul Squirrly SEO pentru a ajuta motoarele de "
3599
- "căutare să înțeleagă despre ce este vorba în paginile dvs. și să vă "
3600
- "asigurați că toate paginile dvs. au titluri."
3601
-
3602
- #: models/CheckSeo.php:94
3603
- msgid "Make your LINKS SEO-Friendly"
3604
- msgstr "Asigurați-vă link-uri SEO-Friendly"
3605
-
3606
- #: models/CheckSeo.php:95
3607
- msgid ""
3608
- "Google considers the URLs you use on your website to be a ranking factor. "
3609
- "The permalinks you use and the structure you decide on adopting is "
3610
- "ultimately an SEO signal. Having a good permalink structure also helps make "
3611
- "your site Human-friendly. "
3612
- msgstr ""
3613
- "Google consideră că URL-urile pe care le folosiți pe site-ul dvs. reprezintă "
3614
- "un factor de clasificare. Linkurile permanente pe care le folosiți și "
3615
- "structura pe care decideți să o adoptați reprezintă, în cele din urmă, un "
3616
- "semnal SEO. Având o structură bună a permalink-urilor ajută, de asemenea, ca "
3617
- "site-ul dvs. să fie prietenos pentru oameni. "
3618
-
3619
- #: models/CheckSeo.php:96
3620
- #, php-format
3621
- msgid ""
3622
- "Your URLs should be super easy to read. Go to your %s WordPress dashboard > "
3623
- "Settings > Permalinks %s .There, you can create a custom URL structure for "
3624
- "your permalinks."
3625
- msgstr ""
3626
- "URL-urile dvs. ar trebui să fie foarte ușor de citit. Accesați tabloul de "
3627
- "bord %s WordPress > Setări > Permalinks %s .Acolo, puteți crea o structură "
3628
- "URL personalizată pentru permalinks."
3629
-
3630
- #: models/CheckSeo.php:97
3631
- msgid ""
3632
- "Make your LINKS SEO-Friendly. You're losing potential rankings at the moment."
3633
- msgstr ""
3634
- "Asigurați-vă legături SEO-Friendly. Pierdeți poziții potențiale în acest "
3635
- "moment."
3636
-
3637
- #: models/CheckSeo.php:107
3638
- msgid "Activate the Sitemap from Squirrly"
3639
- msgstr "Activați Sitemap-ul din Squirrly"
3640
-
3641
- #: models/CheckSeo.php:108
3642
- msgid ""
3643
- "XML sitemaps help search engines and spiders discover new pages on your "
3644
- "website. It also helps them better understand the structure of your website. "
3645
- "Activate your Sitemap XML setting. Squirrly SEO will then generate your "
3646
- "sitemap, according to different items you can set up."
3647
- msgstr ""
3648
- "Sitemapele XML ajută motoarele de căutare și spiderii să descopere noile "
3649
- "pagini de pe site-ul dvs. web. De asemenea, le ajută să înțeleagă mai bine "
3650
- "structura site-ului dumneavoastră. Activați setarea Sitemap XML. Squirrly "
3651
- "SEO va genera apoi harta site-ului dumneavoastră, în funcție de diferite "
3652
- "elemente pe care le puteți configura."
3653
-
3654
- #: models/CheckSeo.php:109
3655
- #, php-format
3656
- msgid ""
3657
- "Go to %sSquirrly > SEO Settings > Sitemap XML%s to setup the sitemap. Choose "
3658
- "for which types of URLs you'll want to have sitemaps. It depends on your "
3659
- "strategy. Leave the defaults if you're uncertain."
3660
- msgstr ""
3661
- "Mergeți la %sSquirrly > Setări SEO > Sitemap XML%s pentru a configura "
3662
- "sitemap. Alegeți pentru ce tipuri de URL-uri doriți să aveți sitemaps. "
3663
- "Depinde de strategia dumneavoastră. Lasă valorile implicite dacă nu ești "
3664
- "sigur."
3665
-
3666
- #: models/CheckSeo.php:110
3667
- msgid ""
3668
- "Lead Search Engines to your most important pages using XML sitemaps. Do this "
3669
- "and you can rank better. "
3670
- msgstr ""
3671
- "Conduceți motoarele de căutare către cele mai importante pagini ale dvs. cu "
3672
- "ajutorul sitemelor XML. Faceți acest lucru și vă puteți clasifica mai bine. "
3673
-
3674
- #: models/CheckSeo.php:121
3675
- msgid "Get a robots txt file"
3676
- msgstr "Obțineți un fișier robots txt"
3677
-
3678
- #: models/CheckSeo.php:122
3679
- msgid ""
3680
- "Robots.txt is a text file webmasters create to instruct how to crawl & index "
3681
- "pages on their website. You can use this file to tell search engine robots "
3682
- "what to crawl and what not to crawl on your site. Search bots usually look "
3683
- "for this file in a website as soon as they enter one. Therefore, it's very "
3684
- "important to have a robots.txt file in the first place."
3685
- msgstr ""
3686
- "Robots.txt este un fișier text pe care webmasterii îl creează pentru a "
3687
- "instrui modul de căutare și indexare a paginilor de pe site-ul lor. Puteți "
3688
- "utiliza acest fișier pentru a le spune roboților motoarelor de căutare ce "
3689
- "trebuie să parcurgă și ce nu trebuie să parcurgă pe site-ul dumneavoastră. "
3690
- "De obicei, roboții de căutare caută acest fișier pe un site web imediat ce "
3691
- "intră pe unul. Prin urmare, este foarte important să aveți în primul rând un "
3692
- "fișier robots.txt."
3693
-
3694
- #: models/CheckSeo.php:123
3695
- #, php-format
3696
- msgid ""
3697
- "Go to %sSquirrly > SEO Settings > Robots%s and switch on Activate Robots. If "
3698
- "it's already switched on, check if another plugin is stopping Squirrly from "
3699
- "adding the Robots.txt URL."
3700
- msgstr ""
3701
- "Mergeți la %sSquirrly > Setări SEO > Roboți%s și activați Activare roboți. "
3702
- "Dacă este deja activată, verificați dacă un alt plugin îl împiedică pe "
3703
- "Squirrly să adauge URL-ul Robots.txt."
3704
-
3705
- #: models/CheckSeo.php:124
3706
- msgid ""
3707
- "You should help Search Engine bots find what they need. Create a Robots.txt "
3708
- "file as soon as possible if you want your site to be seen in Search Results."
3709
- msgstr ""
3710
- "Ar trebui să ajutați roboții motoarelor de căutare să găsească ceea ce au "
3711
- "nevoie. Creați un fișier Robots.txt cât mai curând posibil dacă doriți ca "
3712
- "site-ul dvs. să fie văzut în rezultatele căutărilor."
3713
-
3714
- #: models/CheckSeo.php:136
3715
- msgid "Error detected for your Focus Page"
3716
- msgstr "Eroare detectată pentru pagina dvs. Focus"
3717
-
3718
- #: models/CheckSeo.php:137
3719
- #, php-format
3720
- msgid ""
3721
- "An error is preventing Squirrly from accessing and retrieving critical data "
3722
- "about your Focus Page. You should fix this so that Squirrly can generate a "
3723
- "complete audit of your page and show you what you need to do to improve its "
3724
- "chances of ranking. %sThe error can also prevent human visitors from "
3725
- "accessing your page, which is a critical issue. "
3726
- msgstr ""
3727
- "O eroare împiedică Squirrly să acceseze și să recupereze date esențiale "
3728
- "despre pagina dvs. de focus. Ar trebui să remediați această eroare pentru ca "
3729
- "Squirrly să poată genera un audit complet al paginii dvs. și să vă arate ce "
3730
- "trebuie să faceți pentru a-i îmbunătăți șansele de ranking. %sEroarea poate "
3731
- "împiedica, de asemenea, vizitatorii umani să vă acceseze pagina, ceea ce "
3732
- "reprezintă o problemă critică. "
3733
-
3734
- #: models/CheckSeo.php:138
3735
- msgid ""
3736
- "Use a different browser to make sure your Focus Page is visible. Whitelist "
3737
- "our crawler IP address (176.9.112.210) to allow our server to verify your "
3738
- "page so that you’ll receive a full audit."
3739
- msgstr ""
3740
- "Utilizați un alt browser pentru a vă asigura că pagina Focus este vizibilă. "
3741
- "Puneți pe lista albă adresa IP a crawlerului nostru (176.9.112.210) pentru a "
3742
- "permite serverului nostru să vă verifice pagina, astfel încât să primiți un "
3743
- "audit complet."
3744
-
3745
- #: models/CheckSeo.php:139
3746
- msgid ""
3747
- "Make sure that your Focus Page is published and can be accessed by all users "
3748
- "and crawlers."
3749
- msgstr ""
3750
- "Asigurați-vă că pagina Focus Page este publicată și poate fi accesată de "
3751
- "toți utilizatorii și crawlerele."
3752
-
3753
- #: models/CheckSeo.php:145 models/CheckSeo.php:159 models/CheckSeo.php:186
3754
- #: models/CheckSeo.php:200 models/CheckSeo.php:269 models/CheckSeo.php:283
3755
- #: models/CheckSeo.php:297 models/CheckSeo.php:310 models/CheckSeo.php:324
3756
- #: models/CheckSeo.php:352 models/CheckSeo.php:381 models/CheckSeo.php:395
3757
- #: models/CheckSeo.php:409 models/CheckSeo.php:436 models/CheckSeo.php:450
3758
- #: models/CheckSeo.php:478 models/CheckSeo.php:506 models/CheckSeo.php:562
3759
- #: models/CheckSeo.php:576 models/CheckSeo.php:590 models/CheckSeo.php:604
3760
- #: models/CheckSeo.php:618 models/CheckSeo.php:632 models/CheckSeo.php:646
3761
- #: models/CheckSeo.php:660 models/CheckSeo.php:687 models/CheckSeo.php:701
3762
- #: models/CheckSeo.php:797 models/CheckSeo.php:810 models/CheckSeo.php:823
3763
- #: models/CheckSeo.php:836 models/CheckSeo.php:849 models/CheckSeo.php:875
3764
- #: models/CheckSeo.php:888 models/CheckSeo.php:901 models/CheckSeo.php:914
3765
- #: models/CheckSeo.php:927 models/CheckSeo.php:953 models/CheckSeo.php:966
3766
- #: models/CheckSeo.php:979 models/CheckSeo.php:992 models/CheckSeo.php:1005
3767
- #: models/CheckSeo.php:1018 models/CheckSeo.php:1031 models/CheckSeo.php:1044
3768
- #: models/Menu.php:218 models/Menu.php:219 models/Menu.php:366
3769
- #: view/FocusPages/Pagelist.php:24
3770
- msgid "Focus Pages"
3771
- msgstr "Pagini Focus"
3772
-
3773
- #: models/CheckSeo.php:150
3774
- msgid "Add Focus Page. It's the first step to reaching TOP positions"
3775
- msgstr ""
3776
- "Adăugați pagina Focus. Este primul pas pentru a ajunge pe poziții de TOP"
3777
-
3778
- #: models/CheckSeo.php:151
3779
- msgid ""
3780
- "Adding a Focus Page, and then using the SEO Goals related to it, is a sure "
3781
- "way for all aspiring SEO Stars to begin reaching top positions in Google. "
3782
- "SEO is very complicated, and Focus Pages is the only method that helps you "
3783
- "un-complicate it. By following this method you will build a repeatable, "
3784
- "smart strategy, powered by Machine Learning."
3785
- msgstr ""
3786
- "Adăugarea unei Pagini Focus și apoi utilizarea Obiectivelor SEO legate de "
3787
- "aceasta, este o modalitate sigură pentru toate vedetele SEO aspirante de a "
3788
- "începe să atingă poziții de top în Google. SEO este foarte complicat, iar "
3789
- "Focus Pages este singura metodă care te ajută să îl decomplici. Urmând "
3790
- "această metodă, veți construi o strategie inteligentă și repetabilă, "
3791
- "alimentată de Machine Learning."
3792
-
3793
- #: models/CheckSeo.php:152
3794
- #, php-format
3795
- msgid ""
3796
- "Go to %sSquirrly SEO > Focus Pages > Add New Page%s to add a page in Focus "
3797
- "Pages."
3798
- msgstr ""
3799
- "Mergeți la %sSquirrly SEO > Focus Pages > Add New Page%s pentru a adăuga o "
3800
- "pagină în Focus Pages."
3801
-
3802
- #: models/CheckSeo.php:153
3803
- msgid ""
3804
- "You don't currently have a clearly defined strategy. If you're a Non-SEO "
3805
- "Expert you won't be able to reach TOP 10 rankings without Focus Pages."
3806
- msgstr ""
3807
- "Nu aveți în prezent o strategie clar definită. Dacă sunteți un începător "
3808
- "SEO, nu veți putea ajunge în TOP 10 în clasament fără Focus Pages."
3809
-
3810
- #: models/CheckSeo.php:164
3811
- msgid "Change WordPress' default tagline"
3812
- msgstr "Schimbați sloganul implicit al WordPress"
3813
-
3814
- #: models/CheckSeo.php:165
3815
- msgid ""
3816
- "The default WordPress tagline is “Just another WordPress site” - which is "
3817
- "like saying your site is nothing special. It's important to customize it so "
3818
- "that you clearly communicate what your site is about to first-time visitors. "
3819
- "Search Engines also pay close attention to taglines."
3820
- msgstr ""
3821
- "Sloganul implicit al WordPress este \"Doar un alt site WordPress\" - care "
3822
- "este ca și cum ai spune că site-ul tău nu este nimic special. Este important "
3823
- "să îl personalizați, astfel încât să comunicați în mod clar despre ce este "
3824
- "vorba pe site-ul dvs. pentru primii vizitatori. Motoarele de căutare acordă, "
3825
- "de asemenea, o atenție deosebită sloganurilor."
3826
-
3827
- #: models/CheckSeo.php:166
3828
- msgid ""
3829
- "How you optimize your tagline can depend on the theme you are using (some "
3830
- "themes don't display the tagline automatically). Your best bet is to go to "
3831
- "Appearance > Customize from your WP dashboard to access the Customizer. "
3832
- "There, you can customize your tagline. Best Practices: Make sure your "
3833
- "tagline is catchy and reflects your site as a whole (its niche, purpose, the "
3834
- "content that can be found on your site. Include strong keywords in your "
3835
- "tagline, and ensure the tagline fits with your overall branding strategy."
3836
- msgstr ""
3837
- "Modul în care vă optimizați sloganul poate depinde de tema pe care o "
3838
- "utilizați (unele teme nu afișează automat sloganul). Cea mai bună soluție "
3839
- "este să accesați Appearance > Customize din tabloul de bord WP pentru a "
3840
- "accesa Customizer. Acolo, vă puteți personaliza tagline-ul. Cele mai bune "
3841
- "practici: Asigurați-vă că sloganul dvs. este captivant și reflectă site-ul "
3842
- "dvs. ca întreg (nișa, scopul, conținutul care poate fi găsit pe site-ul dvs. "
3843
- "Includeți cuvinte cheie puternice în sloganul dvs. și asigurați-vă că "
3844
- "sloganul se potrivește cu strategia dvs. generală de branding."
3845
-
3846
- #: models/CheckSeo.php:167
3847
- msgid ""
3848
- "Optimize your tagline so that your site is NOT 'Just another WordPress "
3849
- "site' (or: Optimize your tagline to put your site’s best foot forward and "
3850
- "encourage visitors to stick around.)"
3851
- msgstr ""
3852
- "Optimizează-ți sloganul astfel încât site-ul tău să NU fie \"Doar un alt "
3853
- "site WordPress\" (sau: Optimizează-ți sloganul pentru a pune în valoare site-"
3854
- "ul tău și pentru a încuraja vizitatorii să rămână prin preajmă)"
3855
-
3856
- #: models/CheckSeo.php:177
3857
- msgid "Remove all no-index tags from all Focus Pages"
3858
- msgstr "Îndepărtați toate etichetele no-index din toate paginile Focus"
3859
-
3860
- #: models/CheckSeo.php:178
3861
- msgid ""
3862
- "No-index tags suggest to search engines (most notably Google) NOT to index a "
3863
- "specific webpage. By using these tags for your Focus Pages, you're "
3864
- "preventing them from appearing in Google Search. This is bad, because it "
3865
- "means Search Engines won't show your most important pages (which should be "
3866
- "your Focus Pages). Removing all no-index tags for your Focus Pages will fix "
3867
- "it."
3868
- msgstr ""
3869
- "Etichetele No-index sugerează motoarelor de căutare (în special Google) să "
3870
- "NU indexeze o anumită pagină web. Utilizând aceste etichete pentru paginile "
3871
- "dvs. de interes, le împiedicați să apară în Google Search. Acest lucru este "
3872
- "rău, deoarece înseamnă că motoarele de căutare nu vor afișa cele mai "
3873
- "importante pagini ale dvs. (care ar trebui să fie paginile Focus Pages). "
3874
- "Îndepărtarea tuturor etichetelor no-index pentru Focus Pages va rezolva "
3875
- "problema."
3876
-
3877
- #: models/CheckSeo.php:179
3878
- #, php-format
3879
- msgid ""
3880
- "Look at all the places where you could have added instructions for Google "
3881
- "not to index this page from your site. Make sure that there is no such "
3882
- "instruction added to %sWordPress > Settings%s, or in a theme, or in a "
3883
- "plugin, or in %sSquirrly SEO's Snippet%s for this page. Also, make sure you "
3884
- "don't block this page in your %sRobots.txt%s file."
3885
- msgstr ""
3886
- "Uitați-vă la toate locurile în care ați fi putut adăuga instrucțiuni pentru "
3887
- "ca Google să nu indexeze această pagină de pe site-ul dumneavoastră. "
3888
- "Asigurați-vă că nu există nicio astfel de instrucțiune adăugată în "
3889
- "%sWordPress > Settings%s, sau într-o temă, sau într-un plugin, sau în "
3890
- "%sSquirrly SEO's Snippet%s pentru această pagină. De asemenea, asigurați-vă "
3891
- "că nu blocați această pagină în fișierul %sRobots.txt%s."
3892
-
3893
- #: models/CheckSeo.php:180
3894
- msgid ""
3895
- "You must remove all no-index tags for your Focus Pages so that they will "
3896
- "appear in Google Search."
3897
- msgstr ""
3898
- "Trebuie să eliminați toate etichetele no-index pentru paginile Focus Pages, "
3899
- "astfel încât acestea să apară în Google Search."
3900
-
3901
- #: models/CheckSeo.php:191
3902
- msgid "Fix all Visibility issues for your Focus Pages"
3903
- msgstr "Rezolvă toate problemele de vizibilitate pentru paginile tale Focus"
3904
-
3905
- #: models/CheckSeo.php:192
3906
- msgid ""
3907
- "Having visibility issues for your Focus Pages means that your Focus Pages "
3908
- "may not appear in search results. This is bad, because you'll want as many "
3909
- "people to see your most important pages (your Focus Pages)"
3910
- msgstr ""
3911
- "Dacă aveți probleme de vizibilitate pentru paginile Focus înseamnă că este "
3912
- "posibil ca acestea să nu apară în rezultatele căutării. Acest lucru este "
3913
- "rău, deoarece doriți ca cât mai mulți oameni să vadă cele mai importante "
3914
- "pagini ale dumneavoastră (Focus Pages)"
3915
-
3916
- #: models/CheckSeo.php:193
3917
- #, php-format
3918
- msgid ""
3919
- "Go to %sSquirrly > Focus Pages%s and make sure all elements you see when you "
3920
- "click on the Visibility category are turned Green. If you see a red element, "
3921
- "follow the indications to turn it Green. That's how you make sure your Focus "
3922
- "Pages are protected against Visibility Issues."
3923
- msgstr ""
3924
- "Mergeți la %sSquirrly > Focus Pages%s și asigurați-vă că toate elementele pe "
3925
- "care le vedeți atunci când faceți clic pe categoria Vizibilitate sunt de "
3926
- "culoare verde. Dacă vedeți un element roșu, urmați indicațiile pentru a-l "
3927
- "transforma în Verde. Așa vă asigurați că Focus Pages sunt protejate "
3928
- "împotriva problemelor de vizibilitate."
3929
-
3930
- #: models/CheckSeo.php:194
3931
- msgid ""
3932
- "Fix ALL Visibility issues for your Focus Pages so that they will appear on "
3933
- "Google Search."
3934
- msgstr ""
3935
- "Rezolvați TOATE problemele de vizibilitate pentru paginile dvs. Focus, "
3936
- "astfel încât acestea să apară pe Google Search."
3937
-
3938
- #: models/CheckSeo.php:205 models/CheckSeo.php:208
3939
- msgid "Make Your Site Safe for Browsing Again"
3940
- msgstr "Asigurați-vă că site-ul dvs. este din nou sigur pentru navigare"
3941
-
3942
- #: models/CheckSeo.php:206
3943
- msgid ""
3944
- "Safe Browsing notifies webmasters when their websites are compromised by "
3945
- "malicious actors and helps them diagnose and resolve the problem so that "
3946
- "their visitors stay safe."
3947
- msgstr ""
3948
- "Safe Browsing notifică administratorii de site-uri web atunci când site-"
3949
- "urile lor sunt compromise de actori rău intenționați și îi ajută să "
3950
- "diagnosticheze și să rezolve problema, astfel încât vizitatorii lor să fie "
3951
- "în siguranță."
3952
-
3953
- #: models/CheckSeo.php:207
3954
- #, php-format
3955
- msgid ""
3956
- "Go to %shttps://safebrowsing.google.com/%s and follow the instructions to "
3957
- "clean your website."
3958
- msgstr ""
3959
- "Mergeți la %shttps://safebrowsing.google.com/%s și urmați instrucțiunile "
3960
- "pentru a vă curăța site-ul web."
3961
-
3962
- #: models/CheckSeo.php:218
3963
- msgid "Remove Duplicate Open Graph meta tags"
3964
- msgstr "Eliminați metaetichetele Open Graph duplicate"
3965
-
3966
- #: models/CheckSeo.php:219
3967
- msgid ""
3968
- "Some WordPress themes and plugins add Open Graph meta tags which lead to "
3969
- "duplicate Open Graph meta tags issues. It's important to check for this to "
3970
- "determine which plugin or if your theme is generating the duplicate open "
3971
- "graph meta tag. In this case, the plugin or theme causing this manages to "
3972
- "bypass Squirrly's Duplicate Remover features."
3973
- msgstr ""
3974
- "Unele teme și plugin-uri WordPress adaugă metaetichete Open Graph, ceea ce "
3975
- "duce la probleme de duplicare a metaetichetelor Open Graph. Este important "
3976
- "să verificați acest lucru pentru a determina ce plugin sau dacă tema dvs. "
3977
- "generează metaeticheta Open Graph duplicată. În acest caz, pluginul sau tema "
3978
- "care cauzează acest lucru reușește să ocolească funcțiile de eliminare a "
3979
- "duplicatelor de la Squirrly."
3980
-
3981
- #: models/CheckSeo.php:220
3982
- msgid ""
3983
- "Start deactivating plugins (other than Squirrly SEO) from your WordPress "
3984
- "site. Run New Scans for Next SEO Goals to see if you managed to get this "
3985
- "done! Then reactivate everything."
3986
- msgstr ""
3987
- "Începeți să dezactivați pluginurile (altele decât Squirrly SEO) de pe site-"
3988
- "ul dvs. WordPress. Rulați noi scanări pentru următoarele obiective SEO "
3989
- "pentru a vedea dacă ați reușit să faceți acest lucru! Apoi reactivați totul."
3990
-
3991
- #: models/CheckSeo.php:221
3992
- msgid ""
3993
- "You need to remove Duplicate Open Graph meta tags as soon as possible. "
3994
- "Otherwise, you will miss good chances of ranking higher with your pages."
3995
- msgstr ""
3996
- "Trebuie să eliminați metaetichetele Open Graph duplicate cât mai curând "
3997
- "posibil. În caz contrar, veți pierde șanse bune de a vă poziționa mai sus cu "
3998
- "paginile dvs."
3999
-
4000
- #: models/CheckSeo.php:232
4001
- msgid "Remove Duplicate Twitter cards tags"
4002
- msgstr "Îndepărtați etichetele duplicate ale cardurilor Twitter"
4003
-
4004
- #: models/CheckSeo.php:233
4005
- msgid ""
4006
- "Some WordPress themes and plugins add Twitter Card meta tags which lead to "
4007
- "duplicate Twitter card meta tags issues. It's important to check for tp "
4008
- "determine which plugin or if your theme is generating the duplicate open "
4009
- "graph meta tag. In this case, the plugin or theme causing this, manages to "
4010
- "bypass Squirrly's Duplicate Remover features."
4011
- msgstr ""
4012
- "Unele teme și plugin-uri WordPress adaugă metaetichete Twitter Card, ceea ce "
4013
- "duce la probleme de duplicare a metaetichetelor Twitter Card. Este important "
4014
- "să verificați pentru a determina care plugin sau dacă tema dvs. generează "
4015
- "metaeticheta open graph duplicată. În acest caz, pluginul sau tema care "
4016
- "cauzează acest lucru, reușește să ocolească funcțiile Duplicate Remover ale "
4017
- "Squirrly."
4018
-
4019
- #: models/CheckSeo.php:234
4020
- msgid ""
4021
- "Start deactivating plugins (other than Squirrly SEO) from your WordPress "
4022
- "site. Run New Scans for Next SEO Goals to see if you manage to get this "
4023
- "done! Then reactivate everything."
4024
- msgstr ""
4025
- "Începeți să dezactivați pluginurile (altele decât Squirrly SEO) de pe site-"
4026
- "ul dvs. WordPress. Rulați noi scanări pentru următoarele obiective SEO "
4027
- "pentru a vedea dacă reușiți să faceți acest lucru! Apoi reactivați totul."
4028
-
4029
- #: models/CheckSeo.php:235
4030
- msgid ""
4031
- "You need to remove Duplicate Twitter Card meta tags as soon as possible; "
4032
- "Otherwise you will miss good chances of ranking higher with your pages."
4033
- msgstr ""
4034
- "Trebuie să eliminați cât mai curând posibil meta tag-urile duplicate ale "
4035
- "Twitter Card; În caz contrar, veți pierde șanse bune de a vă poziționa mai "
4036
- "sus cu paginile dvs."
4037
-
4038
- #: models/CheckSeo.php:246
4039
- msgid "Use Squirrly's Expert-Grade Research Tool and Add Keywords to Briefcase"
4040
- msgstr ""
4041
- "Folosiți instrumentul de cercetare de nivel expert Squirrly și adăugați "
4042
- "cuvinte cheie în servietă"
4043
-
4044
- #: models/CheckSeo.php:247
4045
- msgid ""
4046
- "With a few clicks, you'll do the work that SEO experts charge thousands of "
4047
- "dollars for (because they do this manually and it takes too much time that "
4048
- "way)."
4049
- msgstr ""
4050
- "Cu câteva clicuri, veți face munca pentru care experții SEO cer mii de "
4051
- "dolari (pentru că ei o fac manual și durează prea mult timp)."
4052
-
4053
- #: models/CheckSeo.php:248
4054
- #, php-format
4055
- msgid ""
4056
- "Go to %sSquirrly > Keyword Research%s. Complete all steps until you get to "
4057
- "the final table with all of the data for each keyword. Add at least one "
4058
- "keyword to Briefcase from that interface."
4059
- msgstr ""
4060
- "Mergeți la %sSquirrly > Keyword Research%s. Parcurgeți toți pașii până când "
4061
- "ajungeți la tabelul final cu toate datele pentru fiecare cuvânt cheie. "
4062
- "Adăugați cel puțin un cuvânt cheie în Briefcase din acea interfață."
4063
-
4064
- #: models/CheckSeo.php:249
4065
- msgid ""
4066
- "You should perform a keyword research using Squirrly's Expert-Grade tool and "
4067
- "store at least one of the results in Briefcase."
4068
- msgstr ""
4069
- "Ar trebui să efectuați o cercetare a cuvintelor cheie utilizând instrumentul "
4070
- "Expert-Grade de la Squirrly și să stocați cel puțin unul dintre rezultate în "
4071
- "Briefcase."
4072
-
4073
- #: models/CheckSeo.php:255 models/CheckSeo.php:283 models/CheckSeo.php:297
4074
- #: models/CheckSeo.php:310 models/CheckSeo.php:381 models/CheckSeo.php:395
4075
- #: models/CheckSeo.php:534 models/Menu.php:142 view/Research/Research.php:17
4076
- msgid "Keyword Research"
4077
- msgstr "Cercetarea cuvintelor cheie"
4078
-
4079
- #: models/CheckSeo.php:260
4080
- msgid ""
4081
- "Optimize your Focus Page with the great keyword you found during Keyword "
4082
- "research"
4083
- msgstr ""
4084
- "Optimizează-ți pagina Focus cu cuvântul cheie pe care l-ai găsit în timpul "
4085
- "cercetării cuvintelor cheie"
4086
-
4087
- #: models/CheckSeo.php:261
4088
- msgid ""
4089
- "So far, only experts knew how to improve search relevance, which is one of "
4090
- "the biggest reasons why Google will choose your page to show up first. "
4091
- "You're well on your way to becoming a SEO Star. Now you can do all this on "
4092
- "your own by using the SEO Live Assistant and the keywords you stored to "
4093
- "briefcase."
4094
- msgstr ""
4095
- "Până acum, doar experții știau cum să îmbunătățească relevanța căutării, "
4096
- "care este unul dintre cele mai importante motive pentru care Google va alege "
4097
- "ca pagina dvs. să apară prima. Sunteți pe drumul cel bun pentru a deveni o "
4098
- "vedetă SEO. Acum puteți face toate acestea pe cont propriu, folosind SEO "
4099
- "Live Assistant și cuvintele cheie pe care le-ați stocat la briefcase."
4100
-
4101
- #: models/CheckSeo.php:262
4102
- #, php-format
4103
- msgid ""
4104
- "Optimize up to 30% for a keyword you already stored to briefcase. Using the "
4105
- "SEO Live Assistant which you find in Edit Post interfaces in WP. Reindex "
4106
- "page with Google Search Console when you are done."
4107
- msgstr ""
4108
- "Optimizați până la 30% fsau un cuvânt cheie pe care l-ați stocat deja în "
4109
- "servietă. Folosind SEO Live Assistant pe care îl găsiți în interfețele Edit "
4110
- "Post din WP. Reindexați pagina cu Google Search Console când ați terminat."
4111
-
4112
- #: models/CheckSeo.php:263
4113
- msgid ""
4114
- "You must optimize all Focus Pages using a main keyword. This will improve "
4115
- "search relevance and you'll improve your site with something that only "
4116
- "experts were able to do before Squirrly."
4117
- msgstr ""
4118
- "Trebuie să optimizați toate paginile Focus Pages folosind un cuvânt cheie "
4119
- "principal. Acest lucru va îmbunătăți relevanța la căutare și vă veți "
4120
- "îmbunătăți site-ul cu ceva ce numai experții puteau face înainte de Squirrly."
4121
-
4122
- #: models/CheckSeo.php:269 models/CheckSeo.php:283 models/CheckSeo.php:297
4123
- #: models/CheckSeo.php:310 models/CheckSeo.php:324 models/CheckSeo.php:381
4124
- #: models/CheckSeo.php:395 models/CheckSeo.php:450 models/CheckSeo.php:562
4125
- #: models/CheckSeo.php:632 models/CheckSeo.php:646 models/Menu.php:158
4126
- #: models/Menu.php:159 view/Blocks/SLASearch.php:8
4127
- msgid "Live Assistant"
4128
- msgstr "Asistent live"
4129
-
4130
- #: models/CheckSeo.php:274
4131
- msgid "Optimize your text to get a good Search Relevancy score"
4132
- msgstr ""
4133
- "Optimizează-ți textul pentru a obține un scor bun de relevanță pentru căutare"
4134
-
4135
- #: models/CheckSeo.php:275
4136
- msgid ""
4137
- "There is no point in ranking your content for a query that doesn’t match "
4138
- "what the user is looking for. Keywords help visitors find what they want, "
4139
- "which is why you should optimize your Focus Page using keywords. This way, "
4140
- "your page will be displayed to search users who are actually interested in "
4141
- "seeing the content provided in it. Choose different keywords for each of "
4142
- "your Focus pages. That way, instead of competing with each other, your pages "
4143
- "can compete with other sites within your industry."
4144
- msgstr ""
4145
- "Nu are niciun rost să vă clasificați conținutul pentru o interogare care nu "
4146
- "corespunde cu ceea ce caută utilizatorul. Cuvintele cheie îi ajută pe "
4147
- "vizitatori să găsească ceea ce doresc, motiv pentru care ar trebui să vă "
4148
- "optimizați pagina Focus folosind cuvinte cheie. În acest fel, pagina dvs. va "
4149
- "fi afișată utilizatorilor de căutare care sunt de fapt interesați să vadă "
4150
- "conținutul furnizat în ea. Alegeți cuvinte-cheie diferite pentru fiecare "
4151
- "dintre paginile Focus. În acest fel, în loc să concureze între ele, paginile "
4152
- "dvs. pot concura cu alte site-uri din industria dvs."
4153
-
4154
- #: models/CheckSeo.php:276
4155
- #, php-format
4156
- msgid ""
4157
- "To get this done, the text itself (the written words of the page) needs to "
4158
- "be optimized using Squirrly's SEO Live Assistant. Go to Edit Post and start "
4159
- "using the %sSEO Live Assistant%s"
4160
- msgstr ""
4161
- "Pentru a face acest lucru, textul în sine (cuvintele scrise ale paginii) "
4162
- "trebuie să fie optimizat cu ajutorul SEO Live Assistant de la Squirrly. "
4163
- "Mergeți la Editare postare și începeți să utilizați %sSEO Live Assistant%s"
4164
-
4165
- #: models/CheckSeo.php:277
4166
- msgid ""
4167
- "Ensure your Focus Page has Search relevancy by optimizing it using a "
4168
- "keyword. Otherwise, that Focus Page will not be displayed in Search Results."
4169
- msgstr ""
4170
- "Asigurați-vă că pagina Focus Page are relevanță pentru căutare, optimizând-o "
4171
- "cu ajutorul unui cuvânt cheie. În caz contrar, pagina Focus Page nu va fi "
4172
- "afișată în rezultatele căutării."
4173
-
4174
- #: models/CheckSeo.php:288
4175
- msgid "Research your Focus Page's keyword"
4176
- msgstr "Cercetează cuvântul cheie al paginii tale de focus"
4177
-
4178
- #: models/CheckSeo.php:289
4179
- msgid ""
4180
- "For at least one of your Focus Pages, I see that you optimized for search "
4181
- "relevance using the SEO Live Assistant. However, you need to be able to read "
4182
- "the Search Volume, Competition, Recent Discussions and Trend for the "
4183
- "keyword. Otherwise, you might be going with a keyword that can't be ranked, "
4184
- "or can't bring traffic. Your SEO Star skills depend on this goal."
4185
- msgstr ""
4186
- "Pentru cel puțin una dintre paginile dvs. de interes, văd că ați optimizat "
4187
- "pentru relevanța căutării folosind SEO Live Assistant. Cu toate acestea, "
4188
- "trebuie să puteți citi volumul de căutare, concurența, discuțiile recente și "
4189
- "tendința pentru cuvântul cheie. În caz contrar, s-ar putea să mergeți cu un "
4190
- "cuvânt cheie care nu poate fi rank-uit sau care nu poate aduce trafic. "
4191
- "Abilitățile tale SEO Star depind de acest obiectiv."
4192
-
4193
- #: models/CheckSeo.php:290
4194
- msgid ""
4195
- "See the keyword. Place it in the research feature and perform a full keyword "
4196
- "research on it. Then add it to briefcase."
4197
- msgstr ""
4198
- "A se vedea cuvântul cheie. Plasați-l în funcția de cercetare și efectuați o "
4199
- "cercetare completă a cuvintelor cheie pe acesta. Apoi adăugați-l la servietă."
4200
-
4201
- #: models/CheckSeo.php:291
4202
- msgid ""
4203
- "You must obtain keyword data for all main keywords used for your Focus "
4204
- "Pages. This will improve your skills and your understanding."
4205
- msgstr ""
4206
- "Trebuie să obțineți date privind cuvintele cheie pentru toate cuvintele "
4207
- "cheie principale utilizate pentru paginile dvs. de interes. Acest lucru vă "
4208
- "va îmbunătăți abilitățile și înțelegerea."
4209
-
4210
- #: models/CheckSeo.php:302
4211
- msgid "Choose less competitive keywords"
4212
- msgstr "Alegeți cuvinte cheie mai puțin competitive"
4213
-
4214
- #: models/CheckSeo.php:303
4215
- msgid ""
4216
- "As a future SEO Star you need to understand that you will never be able to "
4217
- "rank for any keyword you think about. Not even huge sites who have spent a "
4218
- "thousand times more money on their SEO can do that. Just switch to a "
4219
- "different keyword and you will get to the desired results (ranking and "
4220
- "traffic). This is real SEO you are doing right now. You're acting like an "
4221
- "expert."
4222
- msgstr ""
4223
- "În calitate de viitor SEO Star trebuie să înțelegi că nu vei putea niciodată "
4224
- "să te clasezi pentru orice cuvânt cheie la care te gândești. Nici măcar site-"
4225
- "urile uriașe care au cheltuit de o mie de ori mai mulți bani pe SEO nu pot "
4226
- "face asta. Doar treceți la un alt cuvânt cheie și veți ajunge la rezultatele "
4227
- "dorite (clasament și trafic). Acesta este SEO real pe care îl faceți chiar "
4228
- "acum. Te comporți ca un expert."
4229
-
4230
- #: models/CheckSeo.php:304
4231
- msgid ""
4232
- "Go and edit the page using the SEO Live Assistant. Select a different "
4233
- "keyword as the main keyword. Make sure it has a Green light at 'competition'."
4234
- msgstr ""
4235
- "Mergeți și editați pagina cu ajutorul SEO Live Assistant. Selectați un alt "
4236
- "cuvânt cheie ca și cuvânt cheie principal. Asigurați-vă că are un semafor "
4237
- "verde la \"concurență\"."
4238
-
4239
- #: models/CheckSeo.php:305
4240
- msgid ""
4241
- "Replace the main keyword you chose for your Focus Page to get top rankings. "
4242
- "Your page can't compete and reach the top 10 positions in Google for the "
4243
- "current keyword. "
4244
- msgstr ""
4245
- "Înlocuiți cuvântul cheie principal pe care l-ați ales pentru pagina Focus "
4246
- "Page pentru a obține poziții de top. Pagina dvs. nu poate concura și nu "
4247
- "poate ajunge pe primele 10 poziții în Google pentru cuvântul cheie actual "
4248
-
4249
- #: models/CheckSeo.php:315
4250
- msgid ""
4251
- "Try to boost traffic by over +285&#37; by optimizing with SEO Live Assistant"
4252
- msgstr ""
4253
- "Încercați să creșteți traficul cu peste +285&#37; prin optimizarea cu SEO "
4254
- "Live Assistant"
4255
-
4256
- #: models/CheckSeo.php:316
4257
- msgid ""
4258
- "Our data shows that users who optimize their content over 60% using the Live "
4259
- "Assistant get up to +285% increase in traffic compared to those who optimize "
4260
- "below this percentage. As a future SEO Star, you need to practice optimizing "
4261
- "your content as much as you can."
4262
- msgstr ""
4263
- "Datele noastre arată că utilizatorii care își optimizează conținutul peste "
4264
- "60% usingurul Live Assistant obțin până la +285% icreștere a traficului în "
4265
- "comparație cu cei care optimizează sub acest procent. În calitate de "
4266
- "viitoare vedetă SEO, trebuie să exersezi optimizarea conținutului cât mai "
4267
- "mult posibil."
4268
-
4269
- #: models/CheckSeo.php:317
4270
- #, php-format
4271
- msgid ""
4272
- "Your text needs to be optimized to over 60% using the SEO Live Assistant. Re-"
4273
- "index your pages with Google Search Console after you finish optimizing."
4274
- msgstr ""
4275
- "Textul dvs. trebuie să fie optimizat la peste 60% usingurul SEO Live "
4276
- "Assistant. Reindexați-vă paginile cu Google Search Console după ce ați "
4277
- "terminat optimizarea."
4278
-
4279
- #: models/CheckSeo.php:318
4280
- msgid ""
4281
- "Optimize Your Focus Pages over 60% to get up to 285% increase in traffic."
4282
- msgstr ""
4283
- "Optimizează-ți paginile Focus Paginile de peste 60% to obțin până la 285% "
4284
- "icreștere în trafic."
4285
-
4286
- #: models/CheckSeo.php:330
4287
- msgid "Prepare Full Google Search Console Connection"
4288
- msgstr "Pregătiți conexiunea completă la Google Search Console"
4289
-
4290
- #: models/CheckSeo.php:331
4291
- msgid ""
4292
- "Get access to data about impressions, clicks and CTR without leaving "
4293
- "WordPress by connecting Google Search Console to Squirrly. This is an API-"
4294
- "level connection and goes beyond just allowing GSC to track your site. "
4295
- "Enhance your Squirrly SEO with powerful data that comes directly from Google."
4296
- msgstr ""
4297
- "Obțineți acces la date despre impresii, clicuri și CTR fără a părăsi "
4298
- "WordPress prin conectarea Google Search Console la Squirrly. Aceasta este o "
4299
- "conexiune la nivel de API și merge dincolo de a permite GSC să vă urmărească "
4300
- "site-ul. Îmbunătățiți SEO-ul Squirrly cu date puternice care vin direct de "
4301
- "la Google."
4302
-
4303
- #: models/CheckSeo.php:332 view/Connect/GoogleSearchConsole.php:32
4304
- #: view/SeoSettings/Webmaster.php:88
4305
- #, php-format
4306
- msgid "Need Help Connecting Google Search Console? %sClick Here%s"
4307
- msgstr ""
4308
- "Aveți nevoie de ajutor pentru conectarea Google Search Console? %sClick aici"
4309
- "%s"
4310
-
4311
- #: models/CheckSeo.php:333
4312
- msgid ""
4313
- "You must connect Google Search Console to your Squirrly SEO. As soon as "
4314
- "possible. It's quick to do and helps you see impressions, clicks, and CTR, "
4315
- "so you can become an SEO Star."
4316
- msgstr ""
4317
- "Trebuie să conectați Google Search Console la Squirrly SEO. Cât mai curând "
4318
- "posibil. Este rapid de făcut și vă ajută să vedeți impresiile, clicurile și "
4319
- "CTR-ul, astfel încât să puteți deveni o vedetă SEO."
4320
-
4321
- #: models/CheckSeo.php:343
4322
- msgid "Make a Manual Index Request for your Focus Pages With GSC"
4323
- msgstr "Efectuați o cerere de indexare manuală pentru paginile Focus cu GSC"
4324
-
4325
- #: models/CheckSeo.php:344
4326
- msgid ""
4327
- "Whenever you've added or made changes to a page on your site, you should ask "
4328
- "for Google to re-index your page. This will help getting the new content in "
4329
- "Google's index. Don't expect Google to index the latest version of your page "
4330
- "if you skip doing this. As a SEO Star you need to start building a strong "
4331
- "muscle for doing this. Requesting re-index will need to become a habit to "
4332
- "you."
4333
- msgstr ""
4334
- "Ori de câte ori adăugați sau modificați o pagină de pe site-ul dvs., trebuie "
4335
- "să cereți ca Google să vă re-indexeze pagina. Acest lucru va ajuta la "
4336
- "obținerea noului conținut în indexul Google. Nu vă așteptați ca Google să "
4337
- "indexeze cea mai recentă versiune a paginii dvs. dacă omiteți să faceți "
4338
- "acest lucru. În calitate de SEO Star trebuie să începeți să vă construiți un "
4339
- "mușchi puternic pentru a face acest lucru. Solicitarea re-indexării va "
4340
- "trebui să devină un obicei pentru tine."
4341
-
4342
- #: models/CheckSeo.php:345
4343
- #, php-format
4344
- msgid ""
4345
- "Go to %sSquirrly > Focus Pages%s - identify the page that hasn't had a new "
4346
- "index request and use the button to go to GSC and request re-index. %sLearn "
4347
- "how to manually index the URL on Google Search Console%s"
4348
- msgstr ""
4349
- "Mergeți la %sSquirrly > Focus Pages%s - identificați pagina care nu a avut o "
4350
- "nouă cerere de indexare și folosiți butonul pentru a merge la GSC și a "
4351
- "solicita re-indexarea. %sÎnvățați cum să indexați manual URL-ul în Google "
4352
- "Search Console%s"
4353
-
4354
- #: models/CheckSeo.php:346
4355
- msgid ""
4356
- "Let Google know you've made changes to your Focus Pages. Otherwise, nothing "
4357
- "will change in search results. This is mandatory."
4358
- msgstr ""
4359
- "Anunțați Google că ați făcut modificări la paginile dvs. de interes. În caz "
4360
- "contrar, nu se va schimba nimic în rezultatele căutării. Acest lucru este "
4361
- "obligatoriu."
4362
-
4363
- #: models/CheckSeo.php:357
4364
- msgid "Add your keywords to the Rankings section of Squirrly SEO"
4365
- msgstr "Adăugați cuvintele cheie în secțiunea Clasamente din Squirrly SEO"
4366
-
4367
- #: models/CheckSeo.php:358
4368
- msgid ""
4369
- "SEO pros are always diligent about monitoring their rankings. If you want to "
4370
- "be an SEO star, you need to track your success and make data-driven "
4371
- "decisions. By adding your Focus Page's keyword to the Rankings section, "
4372
- "you'll know the true position of your website in Google for that keyword. "
4373
- "Checking the keyword yourself, manually, will give you fake information. You "
4374
- "can ask us why on our Facebook Group."
4375
- msgstr ""
4376
- "Profesioniștii SEO sunt întotdeauna atenți la monitorizarea clasamentelor "
4377
- "lor. Dacă doriți să fiți o vedetă SEO, trebuie să vă urmăriți succesul și să "
4378
- "luați decizii bazate pe date. Adăugând cuvântul cheie al paginii Focus la "
4379
- "secțiunea Clasamente, veți cunoaște adevărata poziție a site-ului dvs. în "
4380
- "Google pentru acel cuvânt cheie. Verificând singur cuvântul cheie, manual, "
4381
- "veți obține informații false. Ne puteți întreba de ce pe Grupul nostru de "
4382
- "Facebook."
4383
-
4384
- #: models/CheckSeo.php:359
4385
- #, php-format
4386
- msgid ""
4387
- "Go to %sSquirrly > Research > Briefcase%s. Find your Focus Page's keyword "
4388
- "from the list, and click on the three dots you see on the far right. Then "
4389
- "click on Send to Rank Checker."
4390
- msgstr ""
4391
- "Mergeți la %sSquirrly > Research > Briefcase%s. Găsiți cuvântul cheie al "
4392
- "paginii dvs. de focus din listă și faceți clic pe cele trei puncte pe care "
4393
- "le vedeți în extrema dreaptă. Apoi faceți clic pe Send to Rank Checker "
4394
- "(Trimiteți la Rank Checker)."
4395
-
4396
- #: models/CheckSeo.php:360
4397
- msgid ""
4398
- "See how your SEO efforts translate into results by adding your Focus Page's "
4399
- "keyword to the Rankings section."
4400
- msgstr ""
4401
- "Vedeți cum se traduc eforturile dvs. SEO în rezultate adăugând cuvântul "
4402
- "cheie al paginii Focus în secțiunea Clasament."
4403
-
4404
- #: models/CheckSeo.php:366 models/CheckSeo.php:464 models/CheckSeo.php:492
4405
- #: models/CheckSeo.php:520 models/Menu.php:146 models/Menu.php:147
4406
- #: models/Menu.php:326 view/Research/Briefcase.php:16
4407
- msgid "Briefcase"
4408
- msgstr "Briefcase"
4409
-
4410
- #: models/CheckSeo.php:366 models/CheckSeo.php:464 models/CheckSeo.php:520
4411
- #: models/Menu.php:242 models/Menu.php:243 models/Menu.php:406
4412
- msgid "Rankings"
4413
- msgstr "Rankings"
4414
-
4415
- #: models/CheckSeo.php:372
4416
- msgid ""
4417
- "Change the main keyword for a Focus Page that didn't reach TOP 20 rankings "
4418
- "during the last 2 months"
4419
- msgstr ""
4420
- "Schimbarea cuvântului cheie principal pentru o Focus Page care nu a ajuns în "
4421
- "TOP 20 în ultimele 2 luni"
4422
-
4423
- #: models/CheckSeo.php:373
4424
- msgid ""
4425
- "As a future SEO star, you need to be able to adapt and pivot. If you see "
4426
- "something is not working, change it. Adapt. The current keyword you have for "
4427
- "this page isn't bringing you top results. In the past 2 months, this keyword "
4428
- "did NOT rank higher than the 21st position in Google. You can achieve better "
4429
- "results by switching to a new keyword."
4430
- msgstr ""
4431
- "În calitate de viitoare vedetă SEO, trebuie să fii capabil să te adaptezi și "
4432
- "să schimbi. Dacă vedeți că ceva nu funcționează, schimbați-l. Adaptați-vă. "
4433
- "Cuvântul cheie actual pe care îl aveți pentru această pagină nu vă aduce "
4434
- "rezultate de top. În ultimele 2 luni, acest cuvânt cheie NU s-a rank-uit mai "
4435
- "sus de poziția 21 în Google. Puteți obține rezultate mai bune dacă treceți "
4436
- "la un nou cuvânt cheie."
4437
-
4438
- #: models/CheckSeo.php:374
4439
- #, php-format
4440
- msgid ""
4441
- "Go to %sSquirrly > Research%s and research new keyword ideas. Then get back "
4442
- "to this page and use SEO Live Assistant to optimize it for a different main "
4443
- "keyword."
4444
- msgstr ""
4445
- "Mergeți la %sSquirrly > Research%s și căutați noi idei de cuvinte cheie. "
4446
- "Apoi reveniți la această pagină și utilizați SEO Live Assistant pentru a o "
4447
- "optimiza pentru un alt cuvânt cheie principal."
4448
-
4449
- #: models/CheckSeo.php:375
4450
- msgid ""
4451
- "Switch your target keyword to reach better results. Don't settle for the "
4452
- "second page of Google."
4453
- msgstr ""
4454
- "Schimbați-vă cuvântul cheie țintă pentru a obține rezultate mai bune. Nu vă "
4455
- "mulțumiți cu a doua pagină din Google."
4456
-
4457
- #: models/CheckSeo.php:386
4458
- msgid ""
4459
- "Get to 90% Optimization Levels for all Focus Pages (using SEO Live Assistant)"
4460
- msgstr ""
4461
- "Ajungeți la niveluri de optimizare de 90% pentru toate paginile Focus "
4462
- "(folosind SEO Live Assistant)"
4463
-
4464
- #: models/CheckSeo.php:387
4465
- msgid ""
4466
- "Our data shows that users who achieve 90% Optimization Levels using the Live "
4467
- "Assistant have a much better chance of achieving top Google Rankings for "
4468
- "their pages. If you want to be an SEO star, you need to push yourself and "
4469
- "get it all the way up to 90 (try 100). The more you practice, the easier it "
4470
- "will be."
4471
- msgstr ""
4472
- "Datele noastre arată că utilizatorii care ating un nivel de optimizare de "
4473
- "90% cu ajutorul asistentului Live au șanse mult mai mari de a obține poziții "
4474
- "de top în Google pentru paginile lor. Dacă doriți să fiți o vedetă SEO, "
4475
- "trebuie să vă forțați și să ajungeți până la 90 (încercați 100). Cu cât "
4476
- "exersați mai mult, cu atât va fi mai ușor."
4477
-
4478
- #: models/CheckSeo.php:388
4479
- #, php-format
4480
- msgid ""
4481
- "Go and edit your Focus Pages using the SEO live Assistant. Follow the "
4482
- "guidance it provides to 100% optimize your page. Re-index your page with "
4483
- "Google Search Console when you are done."
4484
- msgstr ""
4485
- "Mergeți și editați-vă paginile Focus folosind Asistentul SEO live. Urmați "
4486
- "îndrumările pe care vi le oferă pentru a vă optimiza 100% opagina. "
4487
- "Reindexați-vă pagina cu Google Search Console atunci când ați terminat."
4488
-
4489
- #: models/CheckSeo.php:389
4490
- msgid ""
4491
- "You must Optimize to 90% to give your Focus Pages the best chances of "
4492
- "achieving top Google Rankings."
4493
- msgstr ""
4494
- "Trebuie să optimizați la 90% to pentru a oferi paginilor dvs. cele mai bune "
4495
- "șanse de a obține cele mai bune poziții în Google."
4496
-
4497
- #: models/CheckSeo.php:400
4498
- msgid "Stop losing SEO Authority"
4499
- msgstr "Nu mai pierdeți Autoritatea SEO"
4500
-
4501
- #: models/CheckSeo.php:401
4502
- msgid ""
4503
- "You need to place rel='nofollow' to all Outbound links. Outbound links are "
4504
- "URLs from 3rd party sites to which you are linking to. If you send links to "
4505
- "Wikipedia, Facebook, Jamie Oliver, etc. without mentioning 'nofollow', then "
4506
- "you are also sending them the authority you are trying to build up for your "
4507
- "own site. That's really bad, and makes your pages unable to rank high "
4508
- "enough. Because some links are hard for Non-SEO Experts to turn to "
4509
- "'nofollow' we recommend a plugin that does this for you. You can find it on "
4510
- "[link]https://squirrly.co/seo/kit[/link]"
4511
- msgstr ""
4512
- "Trebuie să plasați rel='nofollow' la toate legăturile de ieșire. Legăturile "
4513
- "de ieșire sunt URL-uri de pe site-uri terțe către care vă legați. Dacă "
4514
- "trimiteți linkuri către Wikipedia, Facebook, Jamie Oliver etc. fără a "
4515
- "menționa \"nofollow\", atunci le trimiteți și autoritatea pe care încercați "
4516
- "să o construiți pentru propriul site. Acest lucru este foarte rău și face ca "
4517
- "paginile dvs. să nu poată fi rank-uite suficient de sus. Deoarece unele link-"
4518
- "uri sunt greu de transformat în 'nofollow' pentru experții non-SEO, vă "
4519
- "recomandăm un plugin care face acest lucru pentru dumneavoastră. Îl puteți "
4520
- "găsi pe [link]https://squirrly.co/seo/kit[/link]"
4521
-
4522
- #: models/CheckSeo.php:402
4523
- msgid ""
4524
- "Place rel='nofollow' on outbound links yourself, or use the plugin "
4525
- "recommended by Squirrly that does this for you."
4526
- msgstr ""
4527
- "Plasați rel='nofollow' pe legăturile de ieșire sau utilizați plugin-ul "
4528
- "recomandat de Squirrly care face acest lucru pentru dumneavoastră."
4529
-
4530
- #: models/CheckSeo.php:403
4531
- msgid "Fix your outbound links. Otherwise, you will lose SEO authority."
4532
- msgstr ""
4533
- "Remediați legăturile de ieșire. În caz contrar, vă veți pierde autoritatea "
4534
- "SEO."
4535
-
4536
- #: models/CheckSeo.php:414
4537
- msgid "Connect Google Analytics Data to Squirrly"
4538
- msgstr "Conectați datele Google Analytics la Squirrly"
4539
-
4540
- #: models/CheckSeo.php:415
4541
- msgid ""
4542
- "As a future SEO star, you need to be able to make decisions based on what "
4543
- "the data tells you. By connecting Google Analytics to Squirrly, you can "
4544
- "monitor the traffic that your Focus Pages are getting, and figure your next "
4545
- "steps based on that. Also, much of SEO these days is based on how much time "
4546
- "people spend on your site, so to give you accurate Chances of Ranking, "
4547
- "Squirrly's SML needs to see this data. To ensure Google gets 100% accuracy "
4548
- "on how people spend time on your site, use the plugin we recommend in "
4549
- "[link]https://squirrly.co/seo/kit[/link]"
4550
- msgstr ""
4551
- "În calitate de viitoare vedetă SEO, trebuie să puteți lua decizii pe baza "
4552
- "datelor. Prin conectarea Google Analytics la Squirrly, puteți monitoriza "
4553
- "traficul pe care îl primesc paginile dvs. de focalizare și vă puteți calcula "
4554
- "următorii pași pe baza acestuia. De asemenea, o mare parte din SEO în zilele "
4555
- "noastre se bazează pe timpul petrecut de oameni pe site-ul dvs., așa că, "
4556
- "pentru a vă oferi șanse exacte de ranking, SML-ul Squirrly trebuie să vadă "
4557
- "aceste date. Pentru a vă asigura că Google primește 100% acuratețe cu "
4558
- "privire la modul în care oamenii petrec timp pe site-ul dvs., utilizați "
4559
- "plugin-ul pe care îl recomandăm în [link]https://squirrly.co/seo/kit[/link]"
4560
-
4561
- #: models/CheckSeo.php:416 view/Connect/GoogleAnalytics.php:33
4562
- #: view/SeoSettings/Tracking.php:102
4563
- #, php-format
4564
- msgid "Need Help Connecting Google Analytics? %sClick Here%s"
4565
- msgstr ""
4566
- "Aveți nevoie de ajutor pentru conectarea Google Analytics? %sClick aici%s"
4567
-
4568
- #: models/CheckSeo.php:417
4569
- msgid ""
4570
- "Connect Google Analytics to Squirrly so that you see how much traffic your "
4571
- "Focus Pages are getting."
4572
- msgstr ""
4573
- "Conectați Google Analytics la Squirrly, astfel încât să vedeți cât de mult "
4574
- "trafic primesc paginile Focus."
4575
-
4576
- #: models/CheckSeo.php:427
4577
- msgid "Reach Platform SEO green lights for all Focus Pages"
4578
- msgstr "Lumini verzi SEO pentru toate paginile Focus Pages"
4579
-
4580
- #: models/CheckSeo.php:428
4581
- msgid ""
4582
- "You will be missing out on many ranking opportunities if you do not go and "
4583
- "fix Platform SEO right now. If you do fix it, make sure you start requesting "
4584
- "re-indexes for your pages, using Google Search Console. Your theme might be "
4585
- "generating many types of pages, which are different from ordinary pages in "
4586
- "WP. Reaching 'Platform SEO' Green lights is a very important objective."
4587
- msgstr ""
4588
- "Veți pierde multe oportunități de poziționare dacă nu vă apucați să reparați "
4589
- "platforma SEO chiar acum. Dacă o remediați, asigurați-vă că începeți să "
4590
- "solicitați re-indexări pentru paginile dvs., utilizând Google Search "
4591
- "Console. Este posibil ca tema dvs. să genereze multe tipuri de pagini, care "
4592
- "sunt diferite de paginile obișnuite din WP. Atingerea luminilor verzi "
4593
- "\"Platform SEO\" este un obiectiv foarte important."
4594
-
4595
- #: models/CheckSeo.php:429
4596
- #, php-format
4597
- msgid ""
4598
- "Go to %sSquirrly > Focus Pages%s and look at the COLUMN with Platform SEO. "
4599
- "Click on a dot to see all sub-tasks in the right sidebar of the plugin. "
4600
- "Click on each Red or Green item. Read the pop-up instructions and turn all "
4601
- "red elements to green. Then re-index in Google Search Console. After that, "
4602
- "request a new Focus Pages audit for the page you fixed."
4603
- msgstr ""
4604
- "Mergeți la %sSquirrly > Focus Pages%s și uitați-vă la COLUMNA cu Platform "
4605
- "SEO. Dați clic pe un punct pentru a vedea toate subtasking-urile din bara "
4606
- "laterală din dreapta a plugin-ului. Faceți clic pe fiecare element Roșu sau "
4607
- "Verde. Citiți instrucțiunile pop-up și transformați toate elementele roșii "
4608
- "în verzi. Apoi re-indexați în Google Search Console. După aceea, solicitați "
4609
- "un nou audit Focus Pages pentru pagina pe care ați reparat-o."
4610
-
4611
- #: models/CheckSeo.php:430
4612
- msgid ""
4613
- "Reach Platform SEO green lights for all Focus Pages. Otherwise, you will "
4614
- "keep giving Google faulty data, which can result in low rankings."
4615
- msgstr ""
4616
- "Atingeți luminile verzi SEO pentru toate paginile Focus. În caz contrar, "
4617
- "veți continua să oferiți date eronate la Google, ceea ce poate duce la "
4618
- "clasări scăzute."
4619
-
4620
- #: models/CheckSeo.php:441
4621
- msgid "Add SEO Context Keywords to your Focus Pages"
4622
- msgstr "Adăugați cuvinte cheie de context SEO la paginile dvs. de interes"
4623
-
4624
- #: models/CheckSeo.php:442
4625
- msgid ""
4626
- "Squirrly SEO's Live Assistant lets you optimize your pages for multiple "
4627
- "keywords that you've placed in Briefcase. By optimizing your Focus Page for "
4628
- "a secondary keyword that is related to your primary keywords, you're sending "
4629
- "additional signals to search engines to help them understand and rank the "
4630
- "page. Example: if you have page about 'dog food', you should optimize the "
4631
- "page for one or two dog breeds as well, so that you make it clear to Google "
4632
- "that it is about the animal 'dog', and NOT about a friend 'like in Yo, "
4633
- "dog!'. On [link]https://squirrly.co/seo/kit/[/link] you can see a video that "
4634
- "shows how to add SEO context to a page."
4635
- msgstr ""
4636
- "Asistentul live al Squirrly SEO vă permite să vă optimizați paginile pentru "
4637
- "mai multe cuvinte cheie pe care le-ați plasat în Briefcase. Prin optimizarea "
4638
- "paginii Focus Page pentru un cuvânt cheie secundar care este legat de "
4639
- "cuvintele cheie principale, trimiteți semnale suplimentare motoarelor de "
4640
- "căutare pentru a le ajuta să înțeleagă și să clasifice pagina. Exemplu: dacă "
4641
- "aveți o pagină despre \"hrană pentru câini\", ar trebui să optimizați pagina "
4642
- "și pentru una sau două rase de câini, astfel încât să fie clar pentru Google "
4643
- "că este vorba despre animalul \"câine\", și NU despre un prieten \"ca în Yo, "
4644
- "câine!\". Pe [link]https://squirrly.co/seo/kit/[/link] puteți vedea un "
4645
- "videoclip care arată cum să adăugați context SEO unei pagini."
4646
-
4647
- #: models/CheckSeo.php:443
4648
- msgid ""
4649
- "Optimize your Focus Page for a secondary keyword using the Live Assistant. "
4650
- "Optimize it to at least 30% and re-index the page with Google Search Console "
4651
- "when you're done."
4652
- msgstr ""
4653
- "Optimizați pagina Focus Page pentru un cuvânt cheie secundar cu ajutorul "
4654
- "Live Assistant. Optimizați-o la cel puțin 30% ași reindexați pagina cu "
4655
- "Google Search Console după ce ați terminat."
4656
-
4657
- #: models/CheckSeo.php:444
4658
- msgid ""
4659
- "Help Google understand the exact topic and context of your page so that it "
4660
- "will rank it higher."
4661
- msgstr ""
4662
- "Ajutați Google să înțeleagă subiectul și contextul exact al paginii dvs., "
4663
- "astfel încât să o clasifice mai bine."
4664
-
4665
- #: models/CheckSeo.php:450
4666
- msgid "Multiple Keyword Optimization"
4667
- msgstr "Optimizarea mai multor cuvinte cheie"
4668
-
4669
- #: models/CheckSeo.php:455
4670
- msgid ""
4671
- "Add all secondary Keywords you've used to the Rankings Section of Squirrly"
4672
- msgstr ""
4673
- "Adăugați toate cuvintele cheie secundare pe care le-ați folosit în secțiunea "
4674
- "de clasament din Squirrly"
4675
-
4676
- #: models/CheckSeo.php:456
4677
- msgid ""
4678
- "Most people expect only the main keyword to be ranked in TOP 10 in Google. "
4679
- "However, according to the secondary keywords you've used to build up SEO "
4680
- "Context for your Focus Page, you may find out that your secondary keywords "
4681
- "also got great rankings on Google."
4682
- msgstr ""
4683
- "Majoritatea oamenilor se așteaptă ca doar cuvântul cheie principal să fie "
4684
- "rank-uit în TOP 10 în Google. Cu toate acestea, în funcție de cuvintele "
4685
- "cheie secundare pe care le-ați folosit pentru a construi contextul SEO "
4686
- "pentru pagina dvs. de focus, este posibil să descoperiți că și cuvintele "
4687
- "cheie secundare au obținut poziții excelente pe Google."
4688
-
4689
- #: models/CheckSeo.php:457
4690
- msgid ""
4691
- "Add your secondary keywords (the secondary keywords you used for your Focus "
4692
- "Pages) inside the Rankings Section."
4693
- msgstr ""
4694
- "Adăugați cuvintele cheie secundare (cuvintele cheie secundare pe care le-ați "
4695
- "folosit pentru paginile de interes) în secțiunea Clasament."
4696
-
4697
- #: models/CheckSeo.php:458
4698
- msgid ""
4699
- "As an SEO Star who worked hard on the pages and managed to optimize for "
4700
- "secondary keywords, you need to check if you get more results than you "
4701
- "expected."
4702
- msgstr ""
4703
- "În calitate de SEO Star care a lucrat din greu la pagini și a reușit să "
4704
- "optimizeze pentru cuvinte cheie secundare, trebuie să verificați dacă "
4705
- "obțineți mai multe rezultate decât v-ați așteptat."
4706
-
4707
- #: models/CheckSeo.php:469
4708
- msgid "Fix SEO Images for your Focus Pages"
4709
- msgstr "Fixează imaginile SEO pentru paginile tale de focus"
4710
-
4711
- #: models/CheckSeo.php:470
4712
- msgid ""
4713
- "When it comes to image SEO, it's important to use relevant keywords to help "
4714
- "your page rank on search engines. So, make sure that your filename for one "
4715
- "of the images in your Focus Pages is: keyword.jpg. Takes less than 5 minutes "
4716
- "to fix, and you'll get to practice an optimization tip worthy of an SEO star."
4717
- msgstr ""
4718
- "Când vine vorba de SEO pentru imagini, este important să folosiți cuvinte "
4719
- "cheie relevante pentru a vă ajuta pagina să se claseze în motoarele de "
4720
- "căutare. Așadar, asigurați-vă că numele de fișier al uneia dintre imaginile "
4721
- "din paginile dvs. de interes este: keyword.jpg. Durează mai puțin de 5 "
4722
- "minute pentru a remedia problema și vei pune în practică un sfat de "
4723
- "optimizare demn de o vedetă SEO."
4724
-
4725
- #: models/CheckSeo.php:471
4726
- msgid ""
4727
- "Download a relevant image from your page. Change the filename. Then re-"
4728
- "upload with the SEO filename and add it your page's content again."
4729
- msgstr ""
4730
- "Descărcați o imagine relevantă de pe pagina dvs. Schimbați numele "
4731
- "fișierului. Apoi reîncărcați-o cu numele de fișier SEO și adăugați-o din nou "
4732
- "în conținutul paginii dvs."
4733
-
4734
- #: models/CheckSeo.php:472
4735
- msgid ""
4736
- "Improve your Focus Page's chances of ranking with this quick trick that SEO "
4737
- "professionals use."
4738
- msgstr ""
4739
- "Îmbunătățiți șansele de poziționare a paginii Focus cu acest truc rapid pe "
4740
- "care îl folosesc profesioniștii SEO."
4741
-
4742
- #: models/CheckSeo.php:483
4743
- msgid "Add Labels to Keywords in Briefcase"
4744
- msgstr "Adăugați etichete la cuvintele cheie în Briefcase"
4745
-
4746
- #: models/CheckSeo.php:484
4747
- msgid ""
4748
- "Users who use the Labels system in Briefcase have 60% more keywords ranked "
4749
- "in top 10 on Google than those who don't work with keywords in an organized "
4750
- "way. As a future SEO star, it's important to understand the significance of "
4751
- "keyword organization and how big a role it plays in achieving a high-"
4752
- "performing search campaign. On [link]https://squirrly.co/seo/kit/[/link] you "
4753
- "can see the Direct 1, Direct 2, Direct 3, Direct 4 and Indirect keywords "
4754
- "approach. It will help you with this."
4755
- msgstr ""
4756
- "Utilizatorii care folosesc sistemul de etichete din Briefcase au cu 60% mai "
4757
- "multe cuvinte cheie rank-uite în top 10 pe Google decât cei care nu lucrează "
4758
- "cu cuvintele cheie într-un mod organizat. Ca viitoare vedetă SEO, este "
4759
- "important să înțelegeți semnificația organizării cuvintelor cheie și cât de "
4760
- "mare este rolul pe care îl joacă în realizarea unei campanii de căutare "
4761
- "performante. Pe [link]https://squirrly.co/seo/kit/[/link] puteți vedea "
4762
- "abordarea cuvintelor cheie Direct 1, Direct 2, Direct 3, Direct 4 și "
4763
- "Indirect. Vă va ajuta în acest sens."
4764
-
4765
- #: models/CheckSeo.php:485
4766
- #, php-format
4767
- msgid ""
4768
- "Go to %sSquirrly SEO > Research > Briefcase%s, and add Labels to your "
4769
- "keywords to organize them into tighter, more relevant groups based on your "
4770
- "current campaigns and strategy. "
4771
- msgstr ""
4772
- "Mergeți la %sSquirrly SEO > Cercetare > Briefcase%s și adăugați etichete la "
4773
- "cuvintele cheie pentru a le organiza în grupuri mai restrânse și mai "
4774
- "relevante, pe baza campaniilor și strategiei actuale. "
4775
-
4776
- #: models/CheckSeo.php:486
4777
- msgid ""
4778
- "Improve your chances of getting more keywords ranked in top 10 of Google."
4779
- msgstr ""
4780
- "Îmbunătățiți-vă șansele de a obține mai multe cuvinte cheie rank-uite în top "
4781
- "10 al Google."
4782
-
4783
- #: models/CheckSeo.php:497
4784
- msgid "Add more Ranking Power to your Focus Pages"
4785
- msgstr ""
4786
- "Adăugați mai multă putere de clasificare la paginile dvs. de focalizare"
4787
-
4788
- #: models/CheckSeo.php:498
4789
- msgid ""
4790
- "Links on the web are like votes, and the pages that receive more votes rank "
4791
- "higher. Since Focus Pages are the most important pages in your site, you "
4792
- "should give them more votes (link to them from many pages in your site; "
4793
- "these are called inner-links). Even if you need to create new pages to link "
4794
- "from, it will still be worth it. Some of our users wrote just one article to "
4795
- "get an inner link for their Focus Page, and the next day they were on the "
4796
- "1st page of Google with 4 keywords. [link]https://chiefcontent.com/s1-e4-"
4797
- "focus-pages-by-squirrly-success-with-focus-pages/[/link]"
4798
- msgstr ""
4799
- "Linkurile de pe internet sunt ca niște voturi, iar paginile care primesc mai "
4800
- "multe voturi sunt mai bine rank-uite. Deoarece paginile Focus sunt cele mai "
4801
- "importante pagini din site-ul dumneavoastră, ar trebui să le acordați mai "
4802
- "multe voturi (să le legați de mai multe pagini din site; acestea se numesc "
4803
- "linkuri interne). Chiar dacă va trebui să creați pagini noi din care să "
4804
- "creați linkuri, tot va merita. Unii dintre utilizatorii noștri au scris un "
4805
- "singur articol pentru a obține un link interior pentru pagina lor Focus "
4806
- "Page, iar a doua zi erau pe prima pagină din Google cu 4 cuvinte cheie. "
4807
- "[link]https://chiefcontent.com/s1-e4-focus-pages-by-squirrly-success-with-"
4808
- "focus-pages/[/link]"
4809
-
4810
- #: models/CheckSeo.php:499
4811
- msgid ""
4812
- "Link to your Focus Page from another page in your site. If you don't have a "
4813
- "page where you can link from, spend some time creating one. Re-index with "
4814
- "Google Search Console. "
4815
- msgstr ""
4816
- "Creați un link către pagina Focus de pe o altă pagină din site-ul "
4817
- "dumneavoastră. Dacă nu aveți o pagină de pe care să puteți face legătura, "
4818
- "petreceți ceva timp pentru a crea una. Reindexați cu Google Search Console. "
4819
-
4820
- #: models/CheckSeo.php:500
4821
- msgid "Create 1 Inner Link to one of your Focus Pages"
4822
- msgstr "Creați 1 link interior către una dintre paginile dvs. de interes"
4823
-
4824
- #: models/CheckSeo.php:511
4825
- msgid "Start tracking rankings for 3 keywords"
4826
- msgstr "Începeți să urmăriți clasamentele pentru 3 cuvinte cheie"
4827
-
4828
- #: models/CheckSeo.php:512
4829
- msgid ""
4830
- "Professional SEOs recognize the importance of tracking rankings as a way to "
4831
- "measure SEO success. As a future SEO star, it's important to measure the "
4832
- "impact of your work and pivot your priorities when you see that a current "
4833
- "strategy is not working."
4834
- msgstr ""
4835
- "SEO profesioniști recunosc importanța urmăririi clasamentelor ca modalitate "
4836
- "de măsurare a succesului SEO. În calitate de viitoare vedetă SEO, este "
4837
- "important să măsurați impactul muncii dvs. și să vă schimbați prioritățile "
4838
- "atunci când vedeți că o strategie curentă nu funcționează."
4839
-
4840
- #: models/CheckSeo.php:513
4841
- #, php-format
4842
- msgid ""
4843
- "Get in the habit of tracking your rankings by adding three keywords to "
4844
- "Squirrly's Rankings section. Go to %sResearch > Briefcase%s, choose a "
4845
- "keyword you want to track and click on Send to Rank Checker. Squirrly will "
4846
- "start showing you the true position of your site for that kewyord. Repeat "
4847
- "the process for two more keywords."
4848
- msgstr ""
4849
- "Obișnuiți-vă să vă urmăriți clasamentele prin adăugarea a trei cuvinte cheie "
4850
- "în secțiunea Clasamente din Squirrly. Mergeți la %sResearch > Briefcase%s, "
4851
- "alegeți un cuvânt cheie pe care doriți să îl urmăriți și faceți clic pe Send "
4852
- "to Rank Checker. Squirrly va începe să vă arate adevărata poziție a site-"
4853
- "ului dvs. pentru acel kewyord. Repetați procesul pentru încă două cuvinte "
4854
- "cheie."
4855
-
4856
- #: models/CheckSeo.php:514
4857
- msgid "Start tracking rankings for 3 keywords."
4858
- msgstr "Începeți să urmăriți clasamentele pentru 3 cuvinte cheie."
4859
-
4860
- #: models/CheckSeo.php:525
4861
- msgid "Increase your SEO skill set by building your keyword portfolio"
4862
- msgstr ""
4863
- "Creșteți-vă setul de abilități SEO prin construirea portofoliului de cuvinte "
4864
- "cheie"
4865
-
4866
- #: models/CheckSeo.php:526
4867
- msgid ""
4868
- "Keyword research, both as a skill and as a practice, are critical to your "
4869
- "SEO success. You can't be an SEO master without it. Plus, according to new "
4870
- "research, the more a blogger researches keywords, the more likely they are "
4871
- "to report success. Bloggers who are also SEOs report “strong results” at "
4872
- "much higher than average rates. Get at least 10 keywords inside the "
4873
- "Briefcase section to get started. With powerful keyword research and the SEO "
4874
- "Live Assistant, we managed to outrank Amazon, Stack Overflow, Moz and a few "
4875
- "others. Read more on [link]https://squirrly.co/seo/kit/[/link] in the "
4876
- "section about Google and how much they care about keywords."
4877
- msgstr ""
4878
- "Cercetarea cuvintelor cheie, atât ca abilitate, cât și ca practică, sunt "
4879
- "esențiale pentru succesul SEO. Nu puteți fi un maestru SEO fără ea. În plus, "
4880
- "conform unei noi cercetări, cu cât un blogger cercetează mai mult cuvintele "
4881
- "cheie, cu atât este mai probabil să raporteze un succes. Bloggerii care "
4882
- "sunt, de asemenea, SEO raportează \"rezultate puternice\" la rate mult mai "
4883
- "mari decât media. Obțineți cel puțin 10 cuvinte cheie în interiorul "
4884
- "secțiunii Briefcase pentru a începe. Cu o cercetare puternică a cuvintelor "
4885
- "cheie și cu ajutorul SEO Live Assistant, am reușit să depășim Amazon, Stack "
4886
- "Overflow, Moz și câțiva alții. Citiți mai multe pe [link]https://squirrly.co/"
4887
- "seo/kit/[/link] în secțiunea despre Google și cât de mult le pasă de "
4888
- "cuvintele cheie."
4889
-
4890
- #: models/CheckSeo.php:527
4891
- #, php-format
4892
- msgid ""
4893
- "Go to %sSquirrly SEO > Research%s, and begin doing research based on the "
4894
- "topics you want to rank on Search Engines, and that are important for your "
4895
- "research. If you need help coming up with ideas, %syou can use these keyword "
4896
- "research formulas%s. When you find a good keyword opportunity, save it to "
4897
- "Briefcase. Do this until you have at least 10 keywords inside Briefcase."
4898
- msgstr ""
4899
- "Mergeți la %sSquirrly SEO > Research%s și începeți să faceți cercetări pe "
4900
- "baza subiectelor pe care doriți să le poziționați pe motoarele de căutare și "
4901
- "care sunt importante pentru cercetarea dumneavoastră. Dacă aveți nevoie de "
4902
- "ajutor pentru a veni cu idei, %sputeți folosi aceste formule de cercetare a "
4903
- "cuvintelor cheie%s. Când găsiți o oportunitate bună de cuvinte cheie, "
4904
- "salvați-o în Briefcase. Faceți acest lucru până când aveți cel puțin 10 "
4905
- "cuvinte cheie în Briefcase."
4906
-
4907
- #: models/CheckSeo.php:528
4908
- msgid ""
4909
- "Create your keyword portfolio. Get at least 10 keywords inside the Briefcase "
4910
- "Section."
4911
- msgstr ""
4912
- "Creați-vă un portofoliu de cuvinte cheie. Obțineți cel puțin 10 cuvinte "
4913
- "cheie în cadrul secțiunii Briefcase."
4914
-
4915
- #: models/CheckSeo.php:539
4916
- msgid "Avoid losing positions in search results"
4917
- msgstr "Evitați să pierdeți poziții în rezultatele căutărilor"
4918
-
4919
- #: models/CheckSeo.php:540
4920
- msgid ""
4921
- "Make sure your Rankings won't drop because of duplicate content, duplicate "
4922
- "titles, empty titles, empty descriptions and more. SEO Experts and Non-SEO "
4923
- "Experts love this feature, because it simply handles everything important. "
4924
- "(especially if you already turned Platform SEO to Green inside Focus Pages "
4925
- "section)"
4926
- msgstr ""
4927
- "Asigurați-vă că clasamentul dvs. nu va scădea din cauza conținutului "
4928
- "duplicat, a titlurilor duplicate, a titlurilor goale, a descrierilor goale "
4929
- "și multe altele. Experții SEO și cei care nu sunt experți SEO adoră această "
4930
- "funcție, deoarece se ocupă pur și simplu de tot ceea ce este important. (mai "
4931
- "ales dacă ați transformat deja Platforma SEO în Verde în interiorul "
4932
- "secțiunii Focus Pages)"
4933
-
4934
- #: models/CheckSeo.php:541
4935
- #, php-format
4936
- msgid ""
4937
- "Go to %sSquirrly > SEO Settings > Automation%s and make sure that SEO "
4938
- "Patterns are activated."
4939
- msgstr ""
4940
- "Mergeți la %sSquirrly > Setări SEO > Automatizare%s și asigurați-vă că sunt "
4941
- "activate Modelele SEO."
4942
-
4943
- #: models/CheckSeo.php:542
4944
- msgid "Activate SEO Patterns, with Squirrly's site-wide SEO Automation."
4945
- msgstr ""
4946
- "Activați modelele SEO, cu automatizarea SEO la nivelul întregului site "
4947
- "Squirrly."
4948
-
4949
- #: models/CheckSeo.php:548 models/Menu.php:528 view/Blocks/Snippet.php:444
4950
- msgid "SEO Automation"
4951
- msgstr "SEO Automat"
4952
-
4953
- #: models/CheckSeo.php:553
4954
- msgid "Update Your Focus Pages Content Regularly"
4955
- msgstr "Actualizați periodic conținutul paginilor Focus Pages"
4956
-
4957
- #: models/CheckSeo.php:554
4958
- msgid ""
4959
- "Google prefers to rank pages that have relevant, fresh content that is up-to-"
4960
- "date. Updating your content can also improve your click-through-rate, "
4961
- "because people are more likely to click on articles that were published "
4962
- "recently. And your CTR improving tells Google that your page is the better "
4963
- "resource, which will result in your page getting higher rankings."
4964
- msgstr ""
4965
- "Google preferă să clasifice paginile care au conținut relevant, proaspăt și "
4966
- "actualizat. De asemenea, actualizarea conținutului poate îmbunătăți rata de "
4967
- "clicuri, deoarece oamenii sunt mai predispuși să dea clic pe articolele "
4968
- "publicate recent. Iar îmbunătățirea CTR-ului dvs. îi spune lui Google că "
4969
- "pagina dvs. este cea mai bună resursă, ceea ce va duce la obținerea unor "
4970
- "clasamente mai bune."
4971
-
4972
- #: models/CheckSeo.php:555
4973
- msgid ""
4974
- "The most recent update date for your Focus Page Content needs to be in the "
4975
- "last 3 months. If it's not, then go and edit your page. Re-index with Google "
4976
- "Search Console when you are done."
4977
- msgstr ""
4978
- "Cea mai recentă dată de actualizare a conținutului paginii Focus trebuie să "
4979
- "fie în ultimele 3 luni. Dacă nu este așa, editați pagina. Reindexați cu "
4980
- "Google Search Console când ați terminat."
4981
-
4982
- #: models/CheckSeo.php:556
4983
- msgid "Make Google love your Focus Pages by regularly updating content."
4984
- msgstr ""
4985
- "Faceți ca Google să vă îndrăgească paginile Focus prin actualizarea regulată "
4986
- "a conținutului."
4987
-
4988
- #: models/CheckSeo.php:567
4989
- msgid "Define Title and Description for your Focus Pages"
4990
- msgstr "Definiți titlul și descrierea pentru paginile dvs. de interes"
4991
-
4992
- #: models/CheckSeo.php:568
4993
- #, php-format
4994
- msgid ""
4995
- "Titles and descriptions provide necessary information about the content of "
4996
- "the page, and help indicate the value a Google user will get by clicking on "
4997
- "that page. Not having these elements defined for your pages will make you "
4998
- "lose precious points with both Search Engines and Humans. 36% of SEO experts "
4999
- "think the headline/title tag is the most important SEO element. Each one of "
5000
- "your Focus Pages should have a defined title and meta description."
5001
- msgstr ""
5002
- "Titlurile și descrierile oferă informațiile necesare despre conținutul "
5003
- "paginii și ajută la indicarea valorii pe care un utilizator Google o va "
5004
- "obține dacă va face clic pe pagina respectivă. Dacă nu aveți aceste elemente "
5005
- "definite pentru paginile dvs. veți pierde puncte prețioase atât în fața "
5006
- "motoarelor de căutare, cât și a oamenilor. 36% odintre experții SEO "
5007
- "consideră că titlul/tagul titlu este cel mai important element SEO. Fiecare "
5008
- "dintre paginile dvs. de focalizare ar trebui să aibă un titlu și o meta "
5009
- "descriere definite."
5010
-
5011
- #: models/CheckSeo.php:569
5012
- msgid ""
5013
- "Easily define titles and meta descriptions using the Snippet editor from "
5014
- "Squirrly SEO."
5015
- msgstr ""
5016
- "Definiți cu ușurință titlurile și meta descrierile folosind editorul de "
5017
- "snippet din Squirrly SEO."
5018
-
5019
- #: models/CheckSeo.php:570
5020
- msgid ""
5021
- "Customize Title and Description for your Focus Pages to get more people to "
5022
- "click on your pages in SERPs."
5023
- msgstr ""
5024
- "Personalizați titlul și descrierea pentru paginile dvs. de interes pentru ca "
5025
- "mai mulți oameni să dea clic pe paginile dvs. în SERPs."
5026
-
5027
- #: models/CheckSeo.php:581
5028
- msgid "Optimize Twitter Cards for your Focus Pages"
5029
- msgstr "Optimizați Twitter Cards pentru paginile dvs. de interes"
5030
-
5031
- #: models/CheckSeo.php:582
5032
- msgid ""
5033
- "Twitter Cards are a great partner to your SEO strategy, as it helps you "
5034
- "stand out to Twitter users and thus increase engagement and CTR. Grab that "
5035
- "opportunity by making sure that all the Twitter tags are in place for your "
5036
- "Focus Pages."
5037
- msgstr ""
5038
- "Cardurile Twitter sunt un partener excelent pentru strategia SEO, deoarece "
5039
- "vă ajută să ieșiți în evidență în fața utilizatorilor Twitter și, astfel, să "
5040
- "creșteți implicarea și CTR-ul. Profitați de această oportunitate asigurându-"
5041
- "vă că toate etichetele Twitter sunt la locul lor pentru paginile dvs. de "
5042
- "interes."
5043
-
5044
- #: models/CheckSeo.php:583
5045
- msgid ""
5046
- "Use the Snippet editor from Squirrly SEO to get all the Twitter Card "
5047
- "definition elements in place."
5048
- msgstr ""
5049
- "Folosiți editorul Snippet de la Squirrly SEO pentru a pune la punct toate "
5050
- "elementele de definire a cardului Twitter."
5051
-
5052
- #: models/CheckSeo.php:584
5053
- msgid ""
5054
- "Optimize Twitter Cards for your Focus Pages to boost engagement and traffic."
5055
- msgstr ""
5056
- "Optimizați Twitter Cards pentru paginile dvs. de interes pentru a crește "
5057
- "implicarea și traficul."
5058
-
5059
- #: models/CheckSeo.php:595
5060
- msgid "Optimize Open Graph for your Focus Pages"
5061
- msgstr "Optimizați Open Graph pentru paginile dvs. de interes"
5062
-
5063
- #: models/CheckSeo.php:596
5064
- msgid ""
5065
- "Open Graph lets you control what content is displayed when your pages are "
5066
- "linked on social media, thus influencing your link's performance. If you "
5067
- "lack these tags, then you're risking that an unrelated image or inaccurate "
5068
- "description will be shown. On the flip side, having these tags helps you "
5069
- "harness the power of social media and boost your social media CTR. Using "
5070
- "your keywords inside the OG definitions has been proven to also boost SEO."
5071
- msgstr ""
5072
- "Open Graph vă permite să controlați ce conținut este afișat atunci când "
5073
- "paginile dvs. sunt legate pe rețelele sociale, influențând astfel "
5074
- "performanța legăturii dvs. Dacă vă lipsesc aceste etichete, riscați să vi se "
5075
- "afișeze o imagine fără legătură sau o descriere inexactă. Pe de altă parte, "
5076
- "dacă aveți aceste etichete vă ajută să valorificați puterea social media și "
5077
- "să vă creșteți CTR-ul din social media. S-a dovedit că utilizarea cuvintelor "
5078
- "dvs. cheie în interiorul definițiilor OG stimulează, de asemenea, SEO."
5079
-
5080
- #: models/CheckSeo.php:597
5081
- msgid ""
5082
- "Use the Snippet editor from Squirrly SEO to get all the Open Graph "
5083
- "definition elements in place for your Focus Pages."
5084
- msgstr ""
5085
- "Utilizați editorul de snippet din Squirrly SEO pentru a obține toate "
5086
- "elementele de definire Open Graph pentru paginile dvs. de interes."
5087
-
5088
- #: models/CheckSeo.php:598
5089
- msgid ""
5090
- "Optimize Open Graph. Unless you do so, you're leaving how your Focus Pages "
5091
- "are shown on Facebook up to chance. (it's also bad for SEO)"
5092
- msgstr ""
5093
- "Optimizați Open Graph. Dacă nu faceți acest lucru, lăsați la voia "
5094
- "întâmplării modul în care sunt afișate paginile Focus pe Facebook. (este, de "
5095
- "asemenea, rău pentru SEO)"
5096
-
5097
- #: models/CheckSeo.php:609
5098
- msgid "Optimize Rich Snippets for your Focus Pages"
5099
- msgstr "Optimizați Rich Snippets pentru paginile dvs. de interes"
5100
-
5101
- #: models/CheckSeo.php:610
5102
- msgid ""
5103
- "JSON-LD, Rich Snippets, Schema implementation: this thing goes by many "
5104
- "different names, because nothing has been standardized. However, as an SEO "
5105
- "Star, you need to make sure your site has this JSON-LD properly defined. You "
5106
- "can let Squirrly SEO Automatically handle JSON-LD definitions, or you can "
5107
- "switch to Custom and use the tool that we link to in order to create your "
5108
- "very own definition. Once you're done there, you can come back and paste the "
5109
- "code into the custom section of your page's snippet for JSON-LD. For most "
5110
- "pages, you should let this setting to Auto, though. Also, make sure you've "
5111
- "completed everything about your organization or personal brand in Squirrly > "
5112
- "SEO Settings > JSON-LD."
5113
- msgstr ""
5114
- "JSON-LD, Rich Snippets, implementarea Schema: acest lucru poartă mai multe "
5115
- "nume diferite, deoarece nu a fost standardizat nimic. Cu toate acestea, în "
5116
- "calitate de SEO Star, trebuie să vă asigurați că site-ul dumneavoastră are "
5117
- "acest JSON-LD definit în mod corespunzător. Puteți lăsa Squirrly SEO să se "
5118
- "ocupe automat de definițiile JSON-LD, sau puteți trece la Personalizat și să "
5119
- "utilizați instrumentul către care avem un link pentru a vă crea propria "
5120
- "definiție. După ce ați terminat acolo, puteți reveni și lipi codul în "
5121
- "secțiunea personalizată a snippetului de pagină pentru JSON-LD. Totuși, "
5122
- "pentru majoritatea paginilor, ar trebui să lăsați această setare la Auto. De "
5123
- "asemenea, asigurați-vă că ați completat totul despre organizația sau brandul "
5124
- "dvs. personal în Squirrly > Setări SEO > JSON-LD."
5125
-
5126
- #: models/CheckSeo.php:611
5127
- msgid "Use the Snippet Editor from Squirrly SEO to get this done."
5128
- msgstr ""
5129
- "Utilizați editorul de snippet de la Squirrly SEO pentru a face acest lucru."
5130
-
5131
- #: models/CheckSeo.php:612
5132
- msgid "You need to have good definitions for JSON-LD."
5133
- msgstr "Trebuie să aveți definiții bune pentru JSON-LD."
5134
-
5135
- #: models/CheckSeo.php:623
5136
- msgid "Make your Focus Pages at least 1,500 words long"
5137
- msgstr "Asigurați-vă că paginile de focus au cel puțin 1.500 de cuvinte"
5138
-
5139
- #: models/CheckSeo.php:624
5140
- msgid ""
5141
- "Research shows that the average Google first page result contains 1,890 "
5142
- "words. Plus, long-form content gets an average of 77.2% more links than "
5143
- "short articles, making it ideal for backlink acquisition. The Journey to "
5144
- "Better Ranking from Squirrly SEO gives you many ideas on how to easily make "
5145
- "your pages longer. It might seem daunting at first, but after making a few "
5146
- "pages it will become easy to do. Plus, Squirrly SML showed that in ALL "
5147
- "industries where there is a bit of competition (meaning, other site owners "
5148
- "who have decent sites), the 1,500 words is a powerful differentiator which "
5149
- "can score you easy wins."
5150
- msgstr ""
5151
- "Cercetările arată că, în medie, rezultatul de pe prima pagină Google conține "
5152
- "1 890 de cuvinte. În plus, conținutul de formă lungă primește în medie cu "
5153
- "77,2% mai multe linkuri decât articolele scurte, ceea ce îl face ideal "
5154
- "pentru achiziția de backlink-uri. The Journey to Better Ranking de la "
5155
- "Squirrly SEO vă oferă multe idei despre cum să vă faceți cu ușurință "
5156
- "paginile mai lungi. Ar putea părea descurajant la început, dar după ce veți "
5157
- "face câteva pagini va deveni ușor de făcut. În plus, Squirrly SML a arătat "
5158
- "că, în TOATE industriile în care există puțină concurență (adică alți "
5159
- "proprietari de site-uri care au site-uri decente), cele 1.500 de cuvinte "
5160
- "sunt un diferențiator puternic care vă poate aduce victorii ușoare."
5161
-
5162
- #: models/CheckSeo.php:625
5163
- msgid ""
5164
- "Edit the content on your Focus Pages to make it over 1,500 words long. Some "
5165
- "tips you can use here: [link]https://howto.squirrly.co/wordpress-seo/journey-"
5166
- "to-better-ranking-day-12/[/link] . Re-index with Google Search Console when "
5167
- "you're done."
5168
- msgstr ""
5169
- "Modificați conținutul paginilor Focus Pages pentru a depăși 1.500 de "
5170
- "cuvinte. Câteva sfaturi pe care le puteți folosi aici: [link]https://howto."
5171
- "squirrly.co/wordpress-seo/journey-to-better-ranking-day-12/[/link] . "
5172
- "Reindexați cu Google Search Console când ați terminat."
5173
-
5174
- #: models/CheckSeo.php:626
5175
- msgid ""
5176
- "Make Google want to rank your Focus Pages on the 1st Page by making them at "
5177
- "least 1,500 words long."
5178
- msgstr ""
5179
- "Faceți ca Google să dorească să vă clasifice paginile Focus pe prima pagină, "
5180
- "făcând ca acestea să aibă cel puțin 1.500 de cuvinte."
5181
-
5182
- #: models/CheckSeo.php:637
5183
- msgid "Reach Perfect SEO Content optimizations for all Focus Pages"
5184
- msgstr "Reach Perfect SEO Optimizări de conținut pentru toate paginile Focus"
5185
-
5186
- #: models/CheckSeo.php:638
5187
- msgid ""
5188
- "Expert SEOs don't settle for reaching 30%, 50% or 60% optimization level "
5189
- "when trying to get a page on the 1st page of Google. As a future SEO star, "
5190
- "reaching perfect SEO optimization is a skill you must master as well, as it "
5191
- "gives you the best chances of rankings."
5192
- msgstr ""
5193
- "Experții SEO nu se mulțumesc să atingă un nivel de optimizare de 30%, 50% or "
5194
- "60% o atunci când încearcă să obțină o pagină pe prima pagină a Google. În "
5195
- "calitate de viitoare vedetă SEO, atingerea optimizării SEO perfecte este o "
5196
- "abilitate pe care trebuie să o stăpânești și tu, deoarece îți oferă cele mai "
5197
- "bune șanse de ranking."
5198
-
5199
- #: models/CheckSeo.php:639
5200
- #, php-format
5201
- msgid ""
5202
- "Go to %sSquirrly > Focus Pages%s and look at the SEO Content column. Click "
5203
- "on a red or green light, then look at the right sidebar. There you will see "
5204
- "all elements that compose the final SEO Content scoring to achieve RED or "
5205
- "Green. Click on each RED element and read how to make it green (the ones "
5206
- "from the sidebar)."
5207
- msgstr ""
5208
- "Mergeți la %sSquirrly > Focus Pages%s și uitați-vă la coloana Conținut SEO. "
5209
- "Faceți clic pe o lumină roșie sau verde, apoi uitați-vă la bara laterală din "
5210
- "dreapta. Acolo veți vedea toate elementele care compun punctajul final al "
5211
- "Conținutului SEO pentru a obține ROȘU sau VERDE. Faceți clic pe fiecare "
5212
- "element ROȘU și citiți cum să îl faceți verde (cele din bara laterală)."
5213
-
5214
- #: models/CheckSeo.php:640
5215
- msgid ""
5216
- "Reach Perfect SEO optimization level for your Focus Pages to master content "
5217
- "optimization."
5218
- msgstr ""
5219
- "Atingeți nivelul perfect de optimizare SEO pentru paginile Focus pentru a "
5220
- "stăpâni optimizarea conținutului."
5221
-
5222
- #: models/CheckSeo.php:651
5223
- msgid "Turn all marketing settings to GREEN"
5224
- msgstr "Treceți toate setările de marketing la VERDE"
5225
-
5226
- #: models/CheckSeo.php:652
5227
- msgid ""
5228
- "If you want to unleash the full marketing power of your WordPress site, then "
5229
- "you need to activate all the important marketing settings there are. This is "
5230
- "vital to marketing mastery and to maximizing your site's marketing "
5231
- "opportunities."
5232
- msgstr ""
5233
- "Dacă doriți să dezlănțuiți întreaga putere de marketing a site-ului "
5234
- "WordPress, atunci trebuie să activați toate setările importante de marketing "
5235
- "care există. Acest lucru este vital pentru a stăpâni marketingul și pentru a "
5236
- "maximiza oportunitățile de marketing ale site-ului dvs."
5237
-
5238
- #: models/CheckSeo.php:653
5239
- msgid ""
5240
- "Go to the SEO Settings section of Squirrly SEO. Click on the METAs section. "
5241
- "You'll see tasks appearing at the right of the screen. Look to the right of "
5242
- "the screen and turn those RED lights from Red to Green. Click on each "
5243
- "element and you'll find out what you need to do to complete the task and "
5244
- "turn it Green."
5245
- msgstr ""
5246
- "Mergeți la secțiunea Setări SEO din Squirrly SEO. Faceți clic pe secțiunea "
5247
- "METAs. Veți vedea sarcinile care apar în partea dreaptă a ecranului. Uită-te "
5248
- "în dreapta ecranului și transformă acele lumini ROȘII din Roșu în Verde. "
5249
- "Faceți clic pe fiecare element și veți afla ce trebuie să faceți pentru a "
5250
- "finaliza sarcina și a o transforma în Verde."
5251
-
5252
- #: models/CheckSeo.php:654
5253
- msgid ""
5254
- "Turn all sidebar (right sidebar) lights to GREEN for all SEO Settings "
5255
- "Sections."
5256
- msgstr ""
5257
- "Treceți toate luminile din bara laterală (bara laterală dreaptă) la VERDE "
5258
- "pentru toate secțiunile Setări SEO."
5259
-
5260
- #: models/CheckSeo.php:665
5261
- msgid "Raise Audit Score to Over 30%"
5262
- msgstr "Creșteți scorul de audit la peste 30%"
5263
-
5264
- #: models/CheckSeo.php:666
5265
- msgid ""
5266
- "Sites with Audit scores under 30% will have a very hard time ranking for "
5267
- "anything. Scores under 30 means the site doesn't have enough quality to be "
5268
- "deemed worthy of being found on the first page of Google."
5269
- msgstr ""
5270
- "Site-urile cu scoruri de audit sub 30% vor avea dificultăți în a se "
5271
- "poziționa în clasament pentru orice. Scorurile sub 30 înseamnă că site-ul nu "
5272
- "are suficientă calitate pentru a fi considerat demn de a fi găsit pe prima "
5273
- "pagină a Google."
5274
-
5275
- #: models/CheckSeo.php:667
5276
- #, php-format
5277
- msgid ""
5278
- "Go to %sSquirrly > Audits%s section and read all the Audit tasks where you "
5279
- "currently have problems. It tells you how to fix those problems."
5280
- msgstr ""
5281
- "Mergeți la secțiunea %sSquirrly > Audituri%s și citiți toate sarcinile de "
5282
- "audit în care aveți probleme în prezent. Acesta vă spune cum să rezolvați "
5283
- "aceste probleme."
5284
-
5285
- #: models/CheckSeo.php:668
5286
- msgid ""
5287
- "You need to get an Audit Score of over 30% as soon as possible, if you want "
5288
- "to avoid Google penalties."
5289
- msgstr ""
5290
- "Trebuie să obțineți un Audit Score de peste 30% a cât mai curând posibil, "
5291
- "dacă doriți să evitați penalizările Google."
5292
-
5293
- #: models/CheckSeo.php:674 models/CheckSeo.php:862 models/CheckSeo.php:940
5294
- #: view/Audits/Audits.php:26
5295
- msgid "Audits"
5296
- msgstr "Audituri"
5297
-
5298
- #: models/CheckSeo.php:678
5299
- msgid "Reach 3 Inner Links for all your Focus Pages"
5300
- msgstr "Ajungeți la 3 linkuri interioare pentru toate paginile dvs. de interes"
5301
-
5302
- #: models/CheckSeo.php:679 models/CheckSeo.php:867
5303
- msgid ""
5304
- "Studies show that a strong internal linking structure yields higher rankings "
5305
- "and is an extremely effective SEO tactic. Wikipedia and StackOverflow are "
5306
- "some of the best sites in the world when it comes to SEO. Most of their SEO "
5307
- "power comes from strong internal linking. Since Focus Pages are the most "
5308
- "important pages in your site, you should give them more votes (link to them "
5309
- "from many pages in your site). Even if you need to create new pages to link "
5310
- "from, it will stil be worth it. Make sure that you place the links inside "
5311
- "the content of the page, not in menus, footers, etc. (those don't bring the "
5312
- "same power when it comes to SEO signals). On https://squirrly.co/seo/kit/ "
5313
- "you can see an advanced content marketing strategy related to Long-Form "
5314
- "content and Complementary Content. That will help you think more creatively "
5315
- "about inner links. Also, in the Rank Show series you can see how one website "
5316
- "managed to get its most important ranking increases from great inner links."
5317
- msgstr ""
5318
- "Studiile arată că o structură puternică de legături interne oferă rezultate "
5319
- "mai bune în clasamente și este o tactică SEO extrem de eficientă. Wikipedia "
5320
- "și StackOverflow sunt unele dintre cele mai bune site-uri din lume în ceea "
5321
- "ce privește SEO. Cea mai mare parte a puterii lor SEO provine din legăturile "
5322
- "interne puternice. Deoarece paginile Focus Pages sunt cele mai importante "
5323
- "pagini din site-ul dvs., ar trebui să le acordați mai multe voturi (faceți "
5324
- "legături către ele din mai multe pagini din site-ul dvs.). Chiar dacă va "
5325
- "trebui să creați pagini noi din care să creați legături, va merita. "
5326
- "Asigurați-vă că plasați legăturile în interiorul conținutului paginii, nu în "
5327
- "meniuri, subsoluri etc. (acestea nu aduc aceeași putere în ceea ce privește "
5328
- "semnalele SEO). Pe https://squirrly.co/seo/kit/ puteți vedea o strategie "
5329
- "avansată de content marketing legată de Long-Form content și Complementary "
5330
- "Content. Aceasta vă va ajuta să vă gândiți mai creativ la link-urile "
5331
- "interioare. De asemenea, în seria Rank Show puteți vedea cum un site web a "
5332
- "reușit să obțină cele mai importante creșteri în clasament datorită unor "
5333
- "link-uri interne excelente."
5334
-
5335
- #: models/CheckSeo.php:680
5336
- msgid ""
5337
- "Get at least three inner links to your Focus Pages from other pages in your "
5338
- "site. If you don't have enough pages where you can link from, spend some "
5339
- "time creating new content. Then, re-index with Google Search Console (each "
5340
- "page from which you sent the links)"
5341
- msgstr ""
5342
- "Obțineți cel puțin trei link-uri interne către paginile Focus Pages din alte "
5343
- "pagini ale site-ului dvs. Dacă nu aveți destule pagini de unde să puteți "
5344
- "crea legături, petreceți ceva timp creând conținut nou. Apoi, reindexați cu "
5345
- "Google Search Console (fiecare pagină de la care ați trimis linkurile)"
5346
-
5347
- #: models/CheckSeo.php:681 models/CheckSeo.php:869
5348
- msgid "Add more ranking power to your Focus Pages."
5349
- msgstr "Adăugați mai multă putere de clasificare la paginile dvs. de interes."
5350
-
5351
- #: models/CheckSeo.php:692
5352
- msgid "Get Minimum 10 Visitors / Day to Your Focus Pages"
5353
- msgstr "Obține minim 10 vizitatori / zi pentru paginile tale de interes"
5354
-
5355
- #: models/CheckSeo.php:693 models/CheckSeo.php:945 models/CheckSeo.php:997
5356
- msgid ""
5357
- "You need to make sure that your Focus Pages become more popular and take "
5358
- "action so that more people start seeing it. Google measures many aspects. If "
5359
- "you don't give it enough traffic, it will not have enough data to figure out "
5360
- "if your page is actually any good."
5361
- msgstr ""
5362
- "Trebuie să vă asigurați că paginile Focus Pages devin mai populare și să "
5363
- "acționați astfel încât mai mulți oameni să înceapă să le vadă. Google "
5364
- "măsoară multe aspecte. Dacă nu îi oferiți suficient trafic, nu va avea "
5365
- "suficiente date pentru a-și da seama dacă pagina dvs. este de fapt bună."
5366
-
5367
- #: models/CheckSeo.php:694 models/CheckSeo.php:946 models/CheckSeo.php:998
5368
- msgid ""
5369
- "Start promoting your Focus Pages on your social media channels, send it to "
5370
- "your email subscribers, answer relevant questions on Quora and include a "
5371
- "link to your Page. Get detailed information and more ideas on how you can "
5372
- "start bringing some traffic to your Focus pages on [link]https://squirrly.co/"
5373
- "seo/kit[/link]"
5374
- msgstr ""
5375
- "Începeți să vă promovați paginile Focus pe canalele de social media, "
5376
- "trimiteți-le abonaților dvs. de e-mail, răspundeți la întrebări relevante pe "
5377
- "Quora și includeți un link către pagina dvs. Obțineți informații detaliate "
5378
- "și mai multe idei despre cum puteți începe să aduceți trafic către paginile "
5379
- "Focus pe [link]https://squirrly.co/seo/kit[/link]"
5380
-
5381
- #: models/CheckSeo.php:695 models/CheckSeo.php:947 models/CheckSeo.php:999
5382
- msgid ""
5383
- "Improve visibility for your Focus Pages. Bring in more traffic. Otherwise, "
5384
- "it will be hard to keep ranking higher."
5385
- msgstr ""
5386
- "Îmbunătățiți vizibilitatea pentru paginile Focus Pages. Aduceți mai mult "
5387
- "trafic. În caz contrar, va fi greu să continuați să vă poziționați mai sus."
5388
-
5389
- #: models/CheckSeo.php:705
5390
- msgid "No Duplicate Titles"
5391
- msgstr "Nu există titluri duplicate"
5392
-
5393
- #: models/CheckSeo.php:706
5394
- msgid ""
5395
- "Currently, the theme or a 3rd party plugin inside your WordPress site "
5396
- "manages to bypass Squirrly's duplicate remover feature. It keeps duplicating "
5397
- "the title tag inside the source code. You need to start deactivating all "
5398
- "plugins, except Squirrly SEO, until you find the one causing this problem. "
5399
- "You can use the run new scan button here in Next SEO Goals to see if the "
5400
- "problem persists."
5401
- msgstr ""
5402
- "În prezent, tema sau un plugin terță parte din cadrul site-ului dvs. "
5403
- "WordPress reușește să ocolească funcția de eliminare a duplicatelor de la "
5404
- "Squirrly. Acesta continuă să duplice eticheta de titlu în interiorul codului "
5405
- "sursă. Trebuie să începeți să dezactivați toate pluginurile, cu excepția "
5406
- "Squirrly SEO, până când îl găsiți pe cel care cauzează această problemă. "
5407
- "Puteți folosi butonul de rulare a unei noi scanări aici în Next SEO Goals "
5408
- "pentru a vedea dacă problema persistă."
5409
-
5410
- #: models/CheckSeo.php:707
5411
- msgid ""
5412
- "Track down the plugin or theme setting which causes the duplication. Make it "
5413
- "unable to place title tags."
5414
- msgstr ""
5415
- "Depistați setarea plugin-ului sau a temei care cauzează duplicarea. Faceți-o "
5416
- "să nu poată plasa etichete de titlu."
5417
-
5418
- #: models/CheckSeo.php:708
5419
- msgid "Make sure you don't have any more duplicate titles in your pages."
5420
- msgstr ""
5421
- "Asigurați-vă că nu mai aveți titluri duplicate în paginile dumneavoastră."
5422
-
5423
- #: models/CheckSeo.php:719
5424
- msgid "No Duplicate Descriptions"
5425
- msgstr "Nu există descrieri duplicate"
5426
-
5427
- #: models/CheckSeo.php:720
5428
- msgid ""
5429
- "Currently, the theme or a 3rd party plugin inside your WordPress site "
5430
- "manages to bypass Squirrly's duplicate remover feature. It keeps duplicating "
5431
- "the meta description tag inside the source code. You need to start "
5432
- "deactivating all plugins, except Squirrly SEO, until you find the one "
5433
- "causing this problem. You can use the run new scan button here in Next SEO "
5434
- "Goals to see if the problem persists."
5435
- msgstr ""
5436
- "În prezent, tema sau un plugin terță parte din cadrul site-ului dvs. "
5437
- "WordPress reușește să ocolească funcția de eliminare a duplicatelor de la "
5438
- "Squirrly. Acesta continuă să duplice tag-ul meta description în interiorul "
5439
- "codului sursă. Trebuie să începeți să dezactivați toate pluginurile, cu "
5440
- "excepția Squirrly SEO, până când îl găsiți pe cel care cauzează această "
5441
- "problemă. Puteți folosi butonul de rulare a unei noi scanări aici, în Next "
5442
- "SEO Goals, pentru a vedea dacă problema persistă."
5443
-
5444
- #: models/CheckSeo.php:721
5445
- msgid ""
5446
- "Track down the plugin or theme setting which causes the duplication. Make it "
5447
- "unable to place meta description tags."
5448
- msgstr ""
5449
- "Depistați setarea plugin-ului sau a temei care cauzează duplicarea. Faceți-o "
5450
- "să nu poată plasa etichete meta description."
5451
-
5452
- #: models/CheckSeo.php:722
5453
- msgid "Make sure you don't have any more duplicate descriptions in your pages."
5454
- msgstr ""
5455
- "Asigurați-vă că nu mai aveți descrieri duplicate în paginile dumneavoastră."
5456
-
5457
- #: models/CheckSeo.php:733
5458
- msgid "No Empty Titles"
5459
- msgstr "Fără titluri goale"
5460
-
5461
- #: models/CheckSeo.php:734
5462
- msgid ""
5463
- "Google doesn't want to place sites with coding problems up in the first "
5464
- "positions. Sure, the search engine is smart enough to generate the title on "
5465
- "its own, based on the content inside the URL, but it's still a bad practice."
5466
- msgstr ""
5467
- "Google nu dorește să plaseze pe primele poziții site-urile cu probleme de "
5468
- "codare. Desigur, motorul de căutare este suficient de inteligent pentru a "
5469
- "genera singur titlul, pe baza conținutului din URL, dar este totuși o "
5470
- "practică proastă."
5471
-
5472
- #: models/CheckSeo.php:735 models/CheckSeo.php:749
5473
- #, php-format
5474
- msgid ""
5475
- "Fix this using Squirrly SEO. Find more help in the %sSquirrly > SEO Settings"
5476
- "%s section."
5477
- msgstr ""
5478
- "Remediați acest lucru folosind Squirrly SEO. Găsiți mai mult ajutor în "
5479
- "secțiunea %sSquirrly > Setări SEO%s."
5480
-
5481
- #: models/CheckSeo.php:736 models/CheckSeo.php:750
5482
- msgid ""
5483
- "Make sure you avoid having pages with Empty Titles and Empty Descriptions. "
5484
- "Otherwise, your rankings will suffer."
5485
- msgstr ""
5486
- "Asigurați-vă că evitați să aveți pagini cu titluri și descrieri goale. În "
5487
- "caz contrar, clasamentul dvs. va avea de suferit."
5488
-
5489
- #: models/CheckSeo.php:747
5490
- msgid "No Empty Descriptions"
5491
- msgstr "Nu există descrieri goale"
5492
-
5493
- #: models/CheckSeo.php:748
5494
- msgid ""
5495
- "Google doesn't want to place sites with coding problems up in the first "
5496
- "positions. Sure, the search engine is smart enough to generate the "
5497
- "description on its own, based on the content inside the URL, but it's still "
5498
- "a bad practice."
5499
- msgstr ""
5500
- "Google nu dorește să plaseze pe primele poziții site-urile cu probleme de "
5501
- "codare. Desigur, motorul de căutare este suficient de inteligent pentru a "
5502
- "genera singur descrierea, pe baza conținutului din URL, dar este totuși o "
5503
- "practică proastă."
5504
-
5505
- #: models/CheckSeo.php:761
5506
- msgid "Fix Duplicate Content Issues on your site (across multiple pages)"
5507
- msgstr ""
5508
- "Rezolvarea problemelor de conținut duplicat pe site-ul dvs. (pe mai multe "
5509
- "pagini)"
5510
-
5511
- #: models/CheckSeo.php:762
5512
- msgid ""
5513
- "Having duplicate content in your site will negatively impact your Search "
5514
- "Engine Rankings and traffic. Therefore, you need to make sure you don't have "
5515
- "duplicate titles and descriptions (and even duplicate written text inside "
5516
- "pages) If you copy the same thing over and over again, search engines will "
5517
- "penalize you. Go to [link]https://squirrly.co/seo/kit/[/link] to see the 4 "
5518
- "types of duplicate content."
5519
- msgstr ""
5520
- "Având conținut duplicat în site-ul dvs. va avea un impact negativ asupra "
5521
- "clasamentului și traficului dvs. în motoarele de căutare. Prin urmare, "
5522
- "trebuie să vă asigurați că nu aveți titluri și descrieri duplicate (și chiar "
5523
- "text scris duplicat în interiorul paginilor) Dacă copiați același lucru la "
5524
- "nesfârșit, motoarele de căutare vă vor penaliza. Mergeți la [link]https://"
5525
- "squirrly.co/seo/kit/[/link] pentru a vedea cele 4 tipuri de conținut "
5526
- "duplicat."
5527
-
5528
- #: models/CheckSeo.php:763
5529
- msgid ""
5530
- "Check your most recent Squirrly Audit to see which of your pages have "
5531
- "duplicate content."
5532
- msgstr ""
5533
- "Verificați cel mai recent audit Squirrly pentru a vedea care dintre paginile "
5534
- "dvs. au conținut duplicat."
5535
-
5536
- #: models/CheckSeo.php:764
5537
- msgid ""
5538
- "Fix Duplicate Content. You're at risk of suffering rankings and traffic "
5539
- "losses due to duplicate content on your site."
5540
- msgstr ""
5541
- "Corectarea conținutului duplicat. Riscați să suferiți pierderi de poziții și "
5542
- "de trafic din cauza conținutului duplicat de pe site-ul dvs."
5543
-
5544
- #: models/CheckSeo.php:775
5545
- msgid "Improve SEO Speed"
5546
- msgstr "Îmbunătățirea vitezei SEO"
5547
-
5548
- #: models/CheckSeo.php:776
5549
- msgid ""
5550
- "Pages that rank at the top of Google’s first page tend to load significantly "
5551
- "faster compared to pages that rank on the bottom of page 1. If you want to "
5552
- "rank high on Google, your pages need to load fast. On [link]https://squirrly."
5553
- "co/seo/kit/[/link] you can find an Upgraded Version of ShortPixel, which "
5554
- "they offer for free to Squirrly users."
5555
- msgstr ""
5556
- "Paginile care se clasează în partea de sus a primei pagini Google tind să se "
5557
- "încarce semnificativ mai repede în comparație cu paginile care se clasează "
5558
- "în partea de jos a paginii 1. Dacă doriți să vă poziționați pe primele "
5559
- "locuri în Google, paginile dvs. trebuie să se încarce rapid. Pe "
5560
- "[link]https://squirrly.co/seo/kit/[/link] puteți găsi o versiune "
5561
- "îmbunătățită a ShortPixel, pe care o oferă gratuit utilizatorilor Squirrly."
5562
-
5563
- #: models/CheckSeo.php:777
5564
- msgid ""
5565
- "Using a tool like ShortPixel to reduce your image sizes will help improve "
5566
- "SEO speed."
5567
- msgstr ""
5568
- "Utilizarea unui instrument precum ShortPixel pentru a reduce dimensiunea "
5569
- "imaginilor va ajuta la îmbunătățirea vitezei SEO."
5570
-
5571
- #: models/CheckSeo.php:778
5572
- msgid "Make sure your Focus Pages load fast to improve your rankings."
5573
- msgstr ""
5574
- "Asigurați-vă că paginile Focus se încarcă rapid pentru a vă îmbunătăți "
5575
- "clasamentul."
5576
-
5577
- #: models/CheckSeo.php:788
5578
- msgid "Reduce Bounce Rate for your Focus Pages"
5579
- msgstr "Reduceți rata de respingere pentru paginile dvs. de focalizare"
5580
-
5581
- #: models/CheckSeo.php:789
5582
- msgid ""
5583
- "A high bounce rate generally indicates that your pages aren't relevant to "
5584
- "your visitors. And since Google is all about serving its users results that "
5585
- "are most relevant for them, Google doesn't want to show pages that have a "
5586
- "high bounce rate. A high bounce rate is common for landing pages, but if you "
5587
- "have a page that has long-form content that aims to educate or inform "
5588
- "visitors, then a high bounce rate is a symptom that something is wrong in "
5589
- "your strategy. Either you’re not attracting the right site visitor or the "
5590
- "visitors coming don’t have a good user experience."
5591
- msgstr ""
5592
- "O rată de respingere ridicată indică, în general, faptul că paginile dvs. nu "
5593
- "sunt relevante pentru vizitatori. Și, din moment ce Google dorește să ofere "
5594
- "utilizatorilor săi rezultatele cele mai relevante pentru aceștia, Google nu "
5595
- "dorește să afișeze pagini care au o rată de respingere ridicată. O rată de "
5596
- "respingere ridicată este obișnuită pentru paginile de destinație, dar dacă "
5597
- "aveți o pagină care are un conținut de formă lungă care are ca scop educarea "
5598
- "sau informarea vizitatorilor, atunci o rată de respingere ridicată este un "
5599
- "simptom că ceva nu este în regulă în strategia dvs. Fie nu atrageți "
5600
- "vizitatorii potriviți ai site-ului, fie vizitatorii care vin nu au o "
5601
- "experiență de utilizare bună."
5602
-
5603
- #: models/CheckSeo.php:790
5604
- msgid ""
5605
- "Try reducing your bounce rate by: formatting your content better to improve "
5606
- "readability, including a video, removing pop-ups that disrupt visitors' "
5607
- "experience on your site, and making sure your page loads fast. More "
5608
- "strategies (and a quick-fix plugin) here: [link]https://squirrly.co/seo/kit/"
5609
- "[/link]"
5610
- msgstr ""
5611
- "Încercați să vă reduceți rata de respingere prin: formatarea mai bună a "
5612
- "conținutului pentru a îmbunătăți lizibilitatea, includerea unui videoclip, "
5613
- "eliminarea pop-up-urilor care perturbă experiența vizitatorilor pe site-ul "
5614
- "dvs. și asigurarea unei încărcări rapide a paginii. Mai multe strategii (și "
5615
- "un plugin de remediere rapidă) aici: [link]https://squirrly.co/seo/kit/[/"
5616
- "link]"
5617
-
5618
- #: models/CheckSeo.php:791
5619
- msgid "Reduce bounce rate for your Focus Pages to improve search performance."
5620
- msgstr ""
5621
- "Reduceți rata de respingere a paginilor dvs. pentru a îmbunătăți performanța "
5622
- "de căutare."
5623
-
5624
- #: models/CheckSeo.php:801
5625
- msgid "Time on Page for All Focus Pages: 1 minute average"
5626
- msgstr ""
5627
- "Timpul petrecut pe pagină pentru toate paginile vizate: 1 minut în medie"
5628
-
5629
- #: models/CheckSeo.php:802
5630
- msgid ""
5631
- "If your pages consistently keep people on them for longer than average, the "
5632
- "Google algorithm will adjust the search results to favor your site, because "
5633
- "this interaction tells Google that content on your page is interesting and "
5634
- "relevant. The longer people stay on your Focus Pages, the higher they will "
5635
- "appear in the search engine rankings. Right now, the average time on page "
5636
- "for your Focus Pages is under 1 minute, which is not good. Sometimes Google "
5637
- "takes you down from the first Page of Google if it 'sees' people don't spend "
5638
- "enough time on the page."
5639
- msgstr ""
5640
- "Dacă paginile dvs. îi țin pe oameni mai mult timp decât media, algoritmul "
5641
- "Google va ajusta rezultatele căutării pentru a favoriza site-ul dvs., "
5642
- "deoarece această interacțiune îi spune lui Google că conținutul de pe pagina "
5643
- "dvs. este interesant și relevant. Cu cât oamenii rămân mai mult timp pe "
5644
- "paginile dvs. de focus, cu atât mai sus vor apărea în clasamentul motorului "
5645
- "de căutare. În momentul de față, timpul mediu pe pagină pentru Focus Pages "
5646
- "este sub 1 minut, ceea ce nu este bine. Uneori, Google vă coboară de pe "
5647
- "prima pagină a Google dacă \"vede\" că oamenii nu petrec suficient timp pe "
5648
- "pagină."
5649
-
5650
- #: models/CheckSeo.php:803
5651
- msgid ""
5652
- "Try these tactics to keep visitors on your page for longer: Embed a video or "
5653
- "two, add more visuals to make your page more attractive, format your content "
5654
- "better to make your page easy to scan, ensure your page is laser-focused on "
5655
- "what visitors expect to get from it, experiment with interactive content "
5656
- "such as polls or quizzes."
5657
- msgstr ""
5658
- "Încercați aceste tactici pentru a păstra vizitatorii pe pagina dvs. pentru "
5659
- "mai mult timp: Încorporați unul sau două videoclipuri, adăugați mai multe "
5660
- "elemente vizuale pentru a vă face pagina mai atractivă, formatați mai bine "
5661
- "conținutul pentru a face pagina mai ușor de scanat, asigurați-vă că pagina "
5662
- "dvs. se concentrează pe ceea ce vizitatorii se așteaptă să obțină de la ea, "
5663
- "experimentați cu conținut interactiv, cum ar fi sondaje sau chestionare."
5664
-
5665
- #: models/CheckSeo.php:804
5666
- msgid "Keep visitors on your Focus Pages for longer to boost rankings"
5667
- msgstr ""
5668
- "Păstrați vizitatorii pe paginile dvs. Focus pentru mai mult timp pentru a "
5669
- "stimula clasamentele"
5670
-
5671
- #: models/CheckSeo.php:814
5672
- msgid "Reach 20 Social Media Shares for Each of Your Focus Pages"
5673
- msgstr ""
5674
- "Ajungeți la 20 de distribuiri pe rețelele sociale pentru fiecare dintre "
5675
- "paginile dvs. de interes"
5676
-
5677
- #: models/CheckSeo.php:815
5678
- msgid ""
5679
- "Studies have shown there is a high correlation between social signals and "
5680
- "ranking position. In one case study, a company achieved over 130,000 "
5681
- "Facebook shares to a web page and shot up the rankings for keyword phrases "
5682
- "that were competitive. Our own SML (Squirrly Machine Learning) discovered "
5683
- "ranking increases on tens of thousands of pages after they started getting "
5684
- "shared to social media platforms. The biggest SEO experts agree that social "
5685
- "media helps your SEO efforts. Strive to get as many social media shares as "
5686
- "you can for your Focus Pages from trackable sources."
5687
- msgstr ""
5688
- "Studiile au arătat că există o corelație ridicată între semnalele sociale și "
5689
- "poziția în clasament. Într-un studiu de caz, o companie a obținut peste "
5690
- "130.000 de distribuiri pe Facebook pentru o pagină web și a urcat în "
5691
- "clasament pentru fraze de cuvinte cheie care erau competitive. Propria "
5692
- "noastră SML (Squirrly Machine Learning) a descoperit creșteri ale "
5693
- "clasamentului pentru zeci de mii de pagini după ce acestea au început să fie "
5694
- "partajate pe platformele de socializare. Cei mai mari experți SEO sunt de "
5695
- "acord că social media ajută eforturile SEO. Străduiți-vă să obțineți cât mai "
5696
- "multe distribuiri în social media pentru paginile dvs. de focalizare din "
5697
- "surse care pot fi urmărite."
5698
-
5699
- #: models/CheckSeo.php:816
5700
- msgid ""
5701
- "Try these tactics to reach at least 20 social media shares for each one of "
5702
- "your Focus Pages: Share your content multiple times using different captions "
5703
- "and images, make social media share buttons super easy to find, include "
5704
- "calls-to-action that encourage site visitors to share. More proven methods "
5705
- "you can use here: [link]https://howto.squirrly.co/wordpress-seo/journey-to-"
5706
- "better-ranking-day-6/[/link]. For a complete framework, get access to our "
5707
- "10,000 Visits from Social Media course on Education Cloud."
5708
- msgstr ""
5709
- "Încearcă aceste tactici pentru a ajunge la cel puțin 20 de distribuiri în "
5710
- "social media pentru fiecare dintre paginile tale Focus: Partajați-vă "
5711
- "conținutul de mai multe ori folosind diferite legende și imagini, faceți "
5712
- "butoanele de partajare în rețelele sociale foarte ușor de găsit, includeți "
5713
- "apeluri la acțiune care încurajează vizitatorii site-ului să partajeze. Mai "
5714
- "multe metode dovedite pe care le poți folosi aici: [link]https://howto."
5715
- "squirrly.co/wordpress-seo/journey-to-better-ranking-day-6/[/link]. Pentru un "
5716
- "cadru complet, obțineți acces la cursul nostru 10.000 de vizite din Social "
5717
- "Media pe Education Cloud."
5718
-
5719
- #: models/CheckSeo.php:817
5720
- msgid ""
5721
- "Get at least 20 social media shares for each one of your Focus Pages. It's "
5722
- "hard to rank a page that doesn't get shared to social media sites."
5723
- msgstr ""
5724
- "Obțineți cel puțin 20 de distribuiri în social media pentru fiecare dintre "
5725
- "paginile dvs. de focus. Este greu să clasificați o pagină care nu este "
5726
- "partajată pe site-urile de socializare."
5727
-
5728
- #: models/CheckSeo.php:827
5729
- msgid "Raise Authority Level Over 12 for all Focus Pages"
5730
- msgstr ""
5731
- "Ridicați nivelul de autoritate peste 12 pentru toate paginile de interes"
5732
-
5733
- #: models/CheckSeo.php:828 models/CheckSeo.php:919
5734
- msgid ""
5735
- "Page authority is a metric that Squirrly's servers calculates according to "
5736
- "data from different API, our own crawling and also SML (Squirrly Machine "
5737
- "Learning fine tunes the data, according to the data sets we've been "
5738
- "studying). Google has such a system as well, and we are basically "
5739
- "replicating what they're doing. To improve this you need: traffic to the "
5740
- "page, good traffic metrics (time on page, low bounce rate), inner links, "
5741
- "outbound links set to 'nofollow', backlinks (links from 3rd party sites to "
5742
- "your own site) and social media information."
5743
- msgstr ""
5744
- "Autoritatea paginii este o măsură pe care serverele Squirrly o calculează în "
5745
- "funcție de datele provenite din diferite API-uri, din propriile noastre "
5746
- "căutări și din SML (Squirrly Machine Learning ajustează datele, în funcție "
5747
- "de seturile de date pe care le-am studiat). Google are și el un astfel de "
5748
- "sistem, iar noi practic replicăm ceea ce fac ei. Pentru a îmbunătăți acest "
5749
- "lucru, aveți nevoie de: trafic către pagină, parametri buni de trafic (timp "
5750
- "pe pagină, rată de respingere scăzută), link-uri interne, link-uri de ieșire "
5751
- "setate la \"nofollow\", backlink-uri (link-uri de la site-uri terțe către "
5752
- "propriul site) și informații despre rețelele sociale."
5753
-
5754
- #: models/CheckSeo.php:830
5755
- msgid ""
5756
- "Raise your Page Authority to over 12 for all Focus Pages. Otherwise, it will "
5757
- "be nearly impossible for those pages to reach top positions on Google."
5758
- msgstr ""
5759
- "Creșteți autoritatea paginii dvs. la peste 12 pentru toate paginile Focus. "
5760
- "În caz contrar, va fi aproape imposibil ca aceste pagini să ajungă pe "
5761
- "primele poziții pe Google."
5762
-
5763
- #: models/CheckSeo.php:840
5764
- msgid "Try a different Title and Description for the Focus Pages with low CTR"
5765
- msgstr ""
5766
- "Încercați un titlu și o descriere diferite pentru paginile de focus cu CTR "
5767
- "scăzut"
5768
-
5769
- #: models/CheckSeo.php:841
5770
- msgid ""
5771
- "Google keeps track of which links get clicked the most in their search "
5772
- "results. Links that get clicked more often are moved up higher in the search "
5773
- "results, because this shows Google that a certain link is the result that "
5774
- "best matches the user’s search intent. Right now, NOT enough people click on "
5775
- "your listing, but writing a more enticing title and description can help "
5776
- "change that; and get more people clicking."
5777
- msgstr ""
5778
- "Google ține evidența linkurilor care sunt accesate cel mai des în "
5779
- "rezultatele căutărilor. Linkurile care sunt accesate mai des sunt mutate mai "
5780
- "sus în rezultatele căutării, deoarece acest lucru arată Google că un anumit "
5781
- "link este rezultatul care corespunde cel mai bine intenției de căutare a "
5782
- "utilizatorului. În momentul de față, NU sunt destui cei care dau clic pe "
5783
- "lista dvs., dar scrierea unui titlu și a unei descrieri mai atrăgătoare "
5784
- "poate ajuta la schimbarea acestei situații și poate face ca mai mulți oameni "
5785
- "să dea clic."
5786
-
5787
- #: models/CheckSeo.php:842
5788
- msgid ""
5789
- "Tips to improve your CTR: include your keyword in your description, use How-"
5790
- "To and numbers in your titles as many people are drawn to them, make sure "
5791
- "the description clearly states what your page is about, and add a CTA that "
5792
- "gives people an extra incentive to click on your link."
5793
- msgstr ""
5794
- "Sfaturi pentru a vă îmbunătăți CTR: includeți cuvântul cheie în descriere, "
5795
- "utilizați \"Cum să\" și numere în titluri, deoarece mulți oameni sunt atrași "
5796
- "de acestea, asigurați-vă că descrierea precizează clar despre ce este vorba "
5797
- "în pagina dvs. și adăugați un CTA care oferă oamenilor un stimulent "
5798
- "suplimentar pentru a face clic pe linkul dvs."
5799
-
5800
- #: models/CheckSeo.php:843
5801
- msgid ""
5802
- "Change the title and description to get more SERP clicks for your Focus "
5803
- "Pages (the ones where you see low CTR)"
5804
- msgstr ""
5805
- "Modificați titlul și descrierea pentru a obține mai multe click-uri în SERP "
5806
- "pentru paginile Focus (cele în care vedeți un CTR scăzut)"
5807
-
5808
- #: models/CheckSeo.php:853
5809
- msgid "Audit Score is Over 50%"
5810
- msgstr "Scorul de audit este de peste 50%"
5811
-
5812
- #: models/CheckSeo.php:854
5813
- msgid ""
5814
- "The Squirrly Audit covers the main aspects that influence a site's "
5815
- "performance. Plus, your SEO and digital marketing expertise will increase as "
5816
- "you keep working on solving issues unveiled by the weekly Audit. You need a "
5817
- "score over 50 to have good chances of ranking high on Google."
5818
- msgstr ""
5819
- "Auditul Squirrly acoperă principalele aspecte care influențează performanța "
5820
- "unui site. În plus, expertiza dvs. în SEO și marketing digital va crește pe "
5821
- "măsură ce veți continua să lucrați la rezolvarea problemelor dezvăluite de "
5822
- "auditul săptămânal. Aveți nevoie de un scor de peste 50 pentru a avea șanse "
5823
- "bune de a fi bine poziționat pe Google."
5824
-
5825
- #: models/CheckSeo.php:855
5826
- #, php-format
5827
- msgid ""
5828
- "Open up your Audit from %sSquirrly > Audits%s. Open one of the audits, or "
5829
- "use the Compare Audit button to compare multiple audits and see how far "
5830
- "you've come along. Read about the aspects you can work on to improve your "
5831
- "score (find them on the right sidebar)."
5832
- msgstr ""
5833
- "Deschideți auditul de la %sSquirrly > Audits%s. Deschideți unul dintre "
5834
- "audituri sau utilizați butonul Comparați auditul pentru a compara mai multe "
5835
- "audituri și a vedea cât de departe ați ajuns. Citiți despre aspectele la "
5836
- "care puteți lucra pentru a vă îmbunătăți scorul (le găsiți în bara laterală "
5837
- "din dreapta)."
5838
-
5839
- #: models/CheckSeo.php:856 models/CheckSeo.php:934
5840
- msgid ""
5841
- "Improve the score of your Audit to have a good chance of ranking high on "
5842
- "Google."
5843
- msgstr ""
5844
- "Îmbunătățiți scorul auditului dvs. pentru a avea o șansă bună de a fi bine "
5845
- "rank-uit pe Google."
5846
-
5847
- #: models/CheckSeo.php:866
5848
- msgid "Reach 5 Inner Links for all your Focus Pages"
5849
- msgstr "Ajungeți la 5 linkuri interioare pentru toate paginile dvs. de interes"
5850
-
5851
- #: models/CheckSeo.php:868
5852
- msgid ""
5853
- "Get at least five inner links to your Focus Pages from other pages in your "
5854
- "site. If you don't have enough pages where you can link from, spend some "
5855
- "time creating new content. Then, re-index with Google Search Console (each "
5856
- "page from which you sent the links)"
5857
- msgstr ""
5858
- "Obțineți cel puțin cinci link-uri interne către paginile Focus Pages din "
5859
- "alte pagini ale site-ului dvs. Dacă nu aveți destule pagini de unde să "
5860
- "puteți crea legături, petreceți ceva timp creând conținut nou. Apoi, "
5861
- "reindexați cu Google Search Console (fiecare pagină de la care ați trimis "
5862
- "linkurile)"
5863
-
5864
- #: models/CheckSeo.php:879
5865
- msgid "Time on Page for All Focus Pages: 1.5 minute average"
5866
- msgstr ""
5867
- "Timpul petrecut pe pagină pentru toate paginile vizate: 1.5 minute în medie"
5868
-
5869
- #: models/CheckSeo.php:880
5870
- msgid ""
5871
- "If your pages consistently keep people on them for longer than average, the "
5872
- "Google algorithm will adjust the search results to favor your site, because "
5873
- "this interaction tells Google that content on your page is interesting and "
5874
- "relevant. The longer people stay on your Focus Pages, the higher they will "
5875
- "appear in the search engine rankings. Right now, the average time on page "
5876
- "for your Focus Pages is under 1.5 minutes, which is not ideal. One thing you "
5877
- "can do is check if all traffic sources send you people who spend very little "
5878
- "time on your pages. If that's the case, make sure those sources stop sending "
5879
- "you traffic. Yes, there is such a thing as 'bad traffic' and it can hurt "
5880
- "your positions in Google. Also, you need to use [link]https://squirrly.co/"
5881
- "seo/kit/[/link] and make sure Google reads the correct time on page. Most of "
5882
- "the time, it doesn't, because its tracker gets a 'timeout'. In the kit, "
5883
- "you'll find a plugin that doesn't allow google to time out. And it will "
5884
- "improve the accuracy of the Time on Page readings."
5885
- msgstr ""
5886
- "Dacă paginile dvs. îi țin pe oameni mai mult timp decât media, algoritmul "
5887
- "Google va ajusta rezultatele căutării pentru a favoriza site-ul dvs., "
5888
- "deoarece această interacțiune îi spune lui Google că conținutul de pe pagina "
5889
- "dvs. este interesant și relevant. Cu cât oamenii rămân mai mult timp pe "
5890
- "paginile dvs. de focus, cu atât mai sus vor apărea în clasamentul motorului "
5891
- "de căutare. În momentul de față, timpul mediu pe pagină pentru Focus Pages "
5892
- "este sub 1,5 minute, ceea ce nu este ideal. Un lucru pe care îl puteți face "
5893
- "este să verificați dacă toate sursele de trafic vă trimit oameni care petrec "
5894
- "foarte puțin timp pe paginile dvs. Dacă este cazul, asigurați-vă că acele "
5895
- "surse nu vă mai trimit trafic. Da, există un astfel de lucru ca \"trafic rău"
5896
- "\" și vă poate afecta pozițiile în Google. De asemenea, trebuie să folosiți "
5897
- "[link]https://squirrly.co/seo/kit/[/link] și să vă asigurați că Google "
5898
- "citește timpul corect pe pagină. De cele mai multe ori, nu o face, deoarece "
5899
- "trackerul său primește un \"timeout\". În kit, veți găsi un plugin care nu "
5900
- "permite ca Google să facă time out. Și va îmbunătăți acuratețea citirilor "
5901
- "Time on Page."
5902
-
5903
- #: models/CheckSeo.php:881
5904
- msgid ""
5905
- "Try these tactics to keep visitors on your page for longer: Embed a video or "
5906
- "two, add more visuals to make your page more attractive, format your content "
5907
- "better to make your page easy to scan, ensure your page is laser-focused on "
5908
- "what visitors expect to get from it."
5909
- msgstr ""
5910
- "Încercați aceste tactici pentru a păstra vizitatorii pe pagina dvs. pentru "
5911
- "mai mult timp: Încorporați unul sau două videoclipuri, adăugați mai multe "
5912
- "elemente vizuale pentru a vă face pagina mai atractivă, formatați mai bine "
5913
- "conținutul pentru a face pagina mai ușor de scanat, asigurați-vă că pagina "
5914
- "dvs. se concentrează pe ceea ce vizitatorii se așteaptă să obțină de la ea."
5915
-
5916
- #: models/CheckSeo.php:882
5917
- msgid "Keep visitors on your Focus Pages for longer to boost rankings."
5918
- msgstr ""
5919
- "Păstrați vizitatorii pe paginile Focus pentru mai mult timp, pentru a "
5920
- "îmbunătăți clasamentul."
5921
-
5922
- #: models/CheckSeo.php:892
5923
- msgid "Get At Least 10 referring domains"
5924
- msgstr "Obțineți cel puțin 10 domenii de referință"
5925
-
5926
- #: models/CheckSeo.php:893 models/CheckSeo.php:984
5927
- msgid ""
5928
- "If you want more organic traffic, backlinks and referring domains are "
5929
- "critical. Research has shown that the vast majority of pages (of analyzed ~ "
5930
- "1 billion pages) without any referring domains get NO traffic from Google. "
5931
- "There is also a positive correlation between the number of unique referring "
5932
- "domains and the amount of search traffic the target web page receives."
5933
- msgstr ""
5934
- "Dacă vă doriți mai mult trafic organic, backlink-urile și domeniile de "
5935
- "referință sunt esențiale. Cercetările au arătat că marea majoritate a "
5936
- "paginilor (din cele ~ 1 miliard de pagini analizate) care nu au domenii de "
5937
- "referință NU primesc trafic de la Google. Există, de asemenea, o corelație "
5938
- "pozitivă între numărul de domenii de trimitere unice și cantitatea de trafic "
5939
- "de căutare pe care o primește pagina web țintă."
5940
-
5941
- #: models/CheckSeo.php:894
5942
- msgid ""
5943
- "Find more websites that can send links to your own site. You need to get "
5944
- "links to our site from at least 10 other domains from the web. You can run "
5945
- "Squirrly SPY reports on your competitors to find websites which link to your "
5946
- "kind of website."
5947
- msgstr ""
5948
- "Găsiți mai multe site-uri web care pot trimite link-uri către site-ul "
5949
- "dumneavoastră. Trebuie să obțineți link-uri către site-ul nostru de la cel "
5950
- "puțin 10 alte domenii de pe web. Puteți rula rapoarte Squirrly SPY asupra "
5951
- "concurenților dvs. pentru a găsi site-uri web care au link-uri către tipul "
5952
- "dvs. de site."
5953
-
5954
- #: models/CheckSeo.php:895
5955
- msgid "Get at least 10 referring domains to get more traffic."
5956
- msgstr ""
5957
- "Obțineți cel puțin 10 domenii de referință pentru a obține mai mult trafic."
5958
-
5959
- #: models/CheckSeo.php:905
5960
- msgid "Reach 40 Social Media Shares for Each of Your Focus Pages"
5961
- msgstr ""
5962
- "Ajungeți la 40 de distribuiri pe rețelele sociale pentru fiecare dintre "
5963
- "paginile dvs. de interes"
5964
-
5965
- #: models/CheckSeo.php:906
5966
- msgid ""
5967
- "Try these tactics to reach at least 40 social media shares for each one of "
5968
- "your Focus Pages: Share your content multiple times using different captions "
5969
- "and images, make social media share buttons super easy to find, include "
5970
- "calls-to-action that encourage site visitors to share. More proven methods "
5971
- "you can use here: https://howto.squirrly.co/wordpress-seo/journey-to-better-"
5972
- "ranking-day-6/. For a complete framework, get access to our 10,000 Visits "
5973
- "from Social Media course on Education Cloud."
5974
- msgstr ""
5975
- "Încearcă aceste tactici pentru a ajunge la cel puțin 40 de distribuiri în "
5976
- "social media pentru fiecare dintre paginile tale Focus: Partajați-vă "
5977
- "conținutul de mai multe ori folosind diferite legende și imagini, faceți "
5978
- "butoanele de partajare în rețelele sociale foarte ușor de găsit, includeți "
5979
- "apeluri la acțiune care încurajează vizitatorii site-ului să partajeze. Mai "
5980
- "multe metode dovedite pe care le puteți folosi aici: https://howto.squirrly."
5981
- "co/wordpress-seo/journey-to-better-ranking-day-6/. Pentru un cadru complet, "
5982
- "obțineți acces la cursul nostru 10.000 de vizite din Social Media pe "
5983
- "Education Cloud."
5984
-
5985
- #: models/CheckSeo.php:907
5986
- msgid ""
5987
- "Studies have shown there is a high correlation between social signals and "
5988
- "ranking position. In one case study, a company achieved over 130,000 "
5989
- "Facebook shares to a web page and shot up the rankings for keyword phrases "
5990
- "that were very competitive. Our own SML (Squirrly Machine Learning) "
5991
- "discovered ranking increases on tens of thousands of pages after they "
5992
- "started getting shared to social media platforms. The biggest SEO experts "
5993
- "agree that social media helps your SEO efforts. Strive to get as many social "
5994
- "media shares as you can for your Focus Pages from trackable sources."
5995
- msgstr ""
5996
- "Studiile au arătat că există o corelație ridicată între semnalele sociale și "
5997
- "poziția în clasament. Într-un studiu de caz, o companie a obținut peste "
5998
- "130.000 de distribuiri pe Facebook pentru o pagină web și a urcat în "
5999
- "clasament pentru fraze de cuvinte cheie care erau foarte competitive. "
6000
- "Propria noastră SML (Squirrly Machine Learning) a descoperit creșteri ale "
6001
- "clasamentului pentru zeci de mii de pagini după ce acestea au început să fie "
6002
- "partajate pe platformele de socializare. Cei mai mari experți SEO sunt de "
6003
- "acord că social media ajută eforturile SEO. Străduiți-vă să obțineți cât mai "
6004
- "multe distribuiri în social media pentru paginile dvs. de focalizare din "
6005
- "surse urmăribile."
6006
-
6007
- #: models/CheckSeo.php:908
6008
- msgid ""
6009
- "Get at least 40 social media shares for each one of your Focus Pages. It's "
6010
- "hard to rank a page that doesn't get shared to social media sites."
6011
- msgstr ""
6012
- "Obțineți cel puțin 40 de distribuiri în social media pentru fiecare dintre "
6013
- "paginile dvs. de focus. Este greu să clasificați o pagină care nu este "
6014
- "partajată pe site-urile de socializare."
6015
-
6016
- #: models/CheckSeo.php:918
6017
- msgid "Raise Authority Level to Over 20 for all Focus Pages"
6018
- msgstr ""
6019
- "Ridicați nivelul de autoritate la peste 20 pentru toate paginile de interes"
6020
-
6021
- #: models/CheckSeo.php:921
6022
- msgid ""
6023
- "Raise your Page Authority to over 20 for all Focus Pages. Otherwise, it will "
6024
- "be nearly impossible for those pages to reach top positions on Google."
6025
- msgstr ""
6026
- "Creșteți autoritatea paginii dvs. la peste 20 pentru toate paginile Focus. "
6027
- "În caz contrar, va fi aproape imposibil ca aceste pagini să ajungă pe "
6028
- "primele poziții pe Google."
6029
-
6030
- #: models/CheckSeo.php:931
6031
- msgid "Audit Score is Over 70%"
6032
- msgstr "Scorul de audit este de peste 70%"
6033
-
6034
- #: models/CheckSeo.php:932
6035
- msgid ""
6036
- "The Squirrly Audit covers the main aspects that influence a site's "
6037
- "performance. Plus, your SEO and digital marketing expertise will increase as "
6038
- "you keep working on solving issues unveiled by the weekly Audit. You need a "
6039
- "score over 70 to have good chances of ranking high on Google."
6040
- msgstr ""
6041
- "Auditul Squirrly acoperă principalele aspecte care influențează performanța "
6042
- "unui site. În plus, expertiza dvs. în SEO și marketing digital va crește pe "
6043
- "măsură ce veți continua să lucrați la rezolvarea problemelor dezvăluite de "
6044
- "auditul săptămânal. Aveți nevoie de un scor de peste 70 pentru a avea șanse "
6045
- "bune de a fi bine poziționat pe Google."
6046
-
6047
- #: models/CheckSeo.php:933
6048
- #, php-format
6049
- msgid ""
6050
- "Open up your Audit from %sSquirrly > SEO Audit%s. Open one of the audits, or "
6051
- "use the Compare Audit button to compare multiple audits and see how far "
6052
- "you've come along. Read about the aspects you can work on to improve your "
6053
- "score (find them on the right sidebar)."
6054
- msgstr ""
6055
- "Deschideți auditul din %sSquirrly > SEO Audit%s. Deschideți unul dintre "
6056
- "audituri sau utilizați butonul Comparați auditul pentru a compara mai multe "
6057
- "audituri și a vedea cât de departe ați ajuns. Citiți despre aspectele la "
6058
- "care puteți lucra pentru a vă îmbunătăți scorul (le găsiți în bara laterală "
6059
- "din dreapta)."
6060
-
6061
- #: models/CheckSeo.php:944
6062
- msgid "Get Minimum 30 Visitors / Day to Your Focus Pages"
6063
- msgstr "Obține minim 30 de vizitatori / zi pentru paginile tale de interes"
6064
-
6065
- #: models/CheckSeo.php:957
6066
- msgid "Reach Time on Page for All Focus Pages: 2 minute average"
6067
- msgstr ""
6068
- "Timp de acces pe pagină pentru toate paginile de interes: 2 minute în medie"
6069
-
6070
- #: models/CheckSeo.php:958
6071
- msgid ""
6072
- "If your pages consistently keep people on them for longer than average, the "
6073
- "Google algorithm will adjust the search results to favor your site, because "
6074
- "this interaction tells Google that content on your page is interesting and "
6075
- "relevant. The longer people stay on your Focus Pages, the higher they will "
6076
- "appear in the search engine rankings. Right now, the average time on page "
6077
- "for your Focus Pages is under 2 minutes. You can make changes to improve "
6078
- "that. Average time on page is one of the most important signals for Google."
6079
- msgstr ""
6080
- "Dacă paginile dvs. îi țin pe oameni mai mult timp decât media, algoritmul "
6081
- "Google va ajusta rezultatele căutării pentru a favoriza site-ul dvs., "
6082
- "deoarece această interacțiune îi spune lui Google că conținutul de pe pagina "
6083
- "dvs. este interesant și relevant. Cu cât oamenii rămân mai mult timp pe "
6084
- "paginile dvs. de focus, cu atât mai sus vor apărea în clasamentul motorului "
6085
- "de căutare. În momentul de față, timpul mediu pe pagină pentru Focus Pages "
6086
- "este de sub 2 minute. Puteți face schimbări pentru a îmbunătăți acest lucru. "
6087
- "Timpul mediu pe pagină este unul dintre cele mai importante semnale pentru "
6088
- "Google."
6089
-
6090
- #: models/CheckSeo.php:959
6091
- msgid ""
6092
- "Experiment with interactive content such as polls or quizzes to keep "
6093
- "visitors on your site for longer, or make your content longer, if the topic "
6094
- "is right. It's also worth checking what are your traffic sources, as some "
6095
- "traffic sources can contribute to low time on page. "
6096
- msgstr ""
6097
- "Experimentați cu conținut interactiv, cum ar fi sondaje sau chestionare, "
6098
- "pentru a păstra vizitatorii pe site mai mult timp sau pentru a face "
6099
- "conținutul mai lung, dacă subiectul este potrivit. Merită, de asemenea, să "
6100
- "verificați care sunt sursele dvs. de trafic, deoarece unele surse de trafic "
6101
- "pot contribui la un timp redus de ședere pe pagină. "
6102
-
6103
- #: models/CheckSeo.php:960
6104
- msgid ""
6105
- "Keep visitors on your Focus Pages for at least 2 minutes (on average) to "
6106
- "boost rankings. Keeping people over 2 minutes sends clear signals to Google "
6107
- "that people love your pages."
6108
- msgstr ""
6109
- "Păstrați vizitatorii pe paginile de interes pentru cel puțin 2 minute (în "
6110
- "medie) pentru a îmbunătăți clasamentul. Păstrarea oamenilor peste 2 minute "
6111
- "trimite semnale clare către Google că oamenii iubesc paginile dvs."
6112
-
6113
- #: models/CheckSeo.php:970
6114
- msgid "Get at least 20 referring domains"
6115
- msgstr "Obțineți cel puțin 20 de domenii de referință"
6116
-
6117
- #: models/CheckSeo.php:971
6118
- msgid ""
6119
- "If you want more organic traffic, backlinks and referring domains are "
6120
- "critical. Research has shown that the vast majority of pages (of analyzed ~ "
6121
- "1 billion pages) without any referring domains get NO traffic from Google. "
6122
- "There is also a positive correlation between the number of unique referring "
6123
- "domains and the amount of search traffic the target web page receives. "
6124
- msgstr ""
6125
- "Dacă vă doriți mai mult trafic organic, backlink-urile și domeniile de "
6126
- "referință sunt esențiale. Cercetările au arătat că marea majoritate a "
6127
- "paginilor (din cele ~ 1 miliard de pagini analizate) care nu au domenii de "
6128
- "referință NU primesc trafic de la Google. Există, de asemenea, o corelație "
6129
- "pozitivă între numărul de domenii de trimitere unice și cantitatea de trafic "
6130
- "de căutare pe care o primește pagina web țintă. "
6131
-
6132
- #: models/CheckSeo.php:972
6133
- msgid ""
6134
- "Find more websites that can send links to your own site. You need to get "
6135
- "links to our site from at least 20 other domains from the web. You can run "
6136
- "Squirrly SPY reports on your competitors to find websites which link to your "
6137
- "kind of website."
6138
- msgstr ""
6139
- "Găsiți mai multe site-uri web care pot trimite link-uri către site-ul "
6140
- "dumneavoastră. Trebuie să obțineți link-uri către site-ul nostru de la cel "
6141
- "puțin 20 de alte domenii de pe web. Puteți rula rapoarte Squirrly SPY asupra "
6142
- "concurenților dvs. pentru a găsi site-uri web care au legături către tipul "
6143
- "dvs. de site."
6144
-
6145
- #: models/CheckSeo.php:973
6146
- msgid "Get at least 20 referring domains to get more traffic."
6147
- msgstr ""
6148
- "Obțineți cel puțin 20 de domenii de referință pentru a obține mai mult "
6149
- "trafic."
6150
-
6151
- #: models/CheckSeo.php:983
6152
- msgid "Get at least 30 referring domains"
6153
- msgstr "Obțineți cel puțin 30 de domenii de referință"
6154
-
6155
- #: models/CheckSeo.php:985
6156
- msgid ""
6157
- "Find more websites that can send links to your own site. You need to get "
6158
- "links to our site from at least 30 other domains from the web. You can run "
6159
- "Squirrly SPY reports on your competitors to find websites which link to your "
6160
- "kind of website."
6161
- msgstr ""
6162
- "Găsiți mai multe site-uri web care pot trimite link-uri către site-ul "
6163
- "dumneavoastră. Trebuie să obțineți link-uri către site-ul nostru de la cel "
6164
- "puțin 30 de alte domenii de pe web. Puteți rula rapoarte Squirrly SPY asupra "
6165
- "concurenților dvs. pentru a găsi site-uri web care au link-uri către tipul "
6166
- "dvs. de site."
6167
-
6168
- #: models/CheckSeo.php:986
6169
- msgid "Get at least 30 reffering domains to get more traffic"
6170
- msgstr ""
6171
- "Obțineți cel puțin 30 de domenii de referință pentru a obține mai mult trafic"
6172
-
6173
- #: models/CheckSeo.php:996
6174
- msgid "Get Minimum 70 Visitors / Day to Your Focus Pages"
6175
- msgstr "Obțineți minimum 70 de vizitatori / zi pentru paginile dvs. de interes"
6176
-
6177
- #: models/CheckSeo.php:1009
6178
- msgid "Raise Authority Level to Over 35 for all Focus Pages"
6179
- msgstr ""
6180
- "Ridicați nivelul de autoritate la peste 35 pentru toate paginile de interes"
6181
-
6182
- #: models/CheckSeo.php:1010
6183
- msgid ""
6184
- "Page authority is a metric that Squirrly's servers calculate according to "
6185
- "data from different API, our own crawling and also SML (Squirrly Machine "
6186
- "Learning fine tunes the data, according to the data sets we've been "
6187
- "studying). Google has such a system as well, and we are basically "
6188
- "replicating what they're doing. To improve this, you need: traffic to the "
6189
- "page, good traffic metrics (time on page, low bounce rate), inner links, "
6190
- "outbound links set to \"nofollow\", backlinks (links from 3rd party sites to "
6191
- "your own site) and social media information."
6192
- msgstr ""
6193
- "Autoritatea paginii este o măsură pe care serverele Squirrly o calculează în "
6194
- "funcție de datele provenite din diferite API-uri, din propriile noastre "
6195
- "căutări și din SML (Squirrly Machine Learning ajustează datele, în funcție "
6196
- "de seturile de date pe care le-am studiat). Google are și el un astfel de "
6197
- "sistem, iar noi practic replicăm ceea ce fac ei. Pentru a îmbunătăți acest "
6198
- "lucru, aveți nevoie de: trafic către pagină, parametri buni de trafic (timp "
6199
- "pe pagină, rată de respingere scăzută), link-uri interne, link-uri de ieșire "
6200
- "setate la \"nofollow\", backlink-uri (link-uri de pe site-uri terțe către "
6201
- "site-ul dvs.) și informații despre rețelele sociale."
6202
-
6203
- #: models/CheckSeo.php:1012
6204
- msgid ""
6205
- "Raise your Page Authority to over 35 for all Focus Pages. Do this and Google "
6206
- "will start rewarding you with much better visibility on the search engine."
6207
- msgstr ""
6208
- "Creșteți autoritatea paginii dvs. la peste 35 pentru toate paginile Focus. "
6209
- "Faceți acest lucru și Google va începe să vă recompenseze cu o vizibilitate "
6210
- "mult mai bună pe motorul de căutare."
6211
-
6212
- #: models/CheckSeo.php:1022
6213
- msgid "Get at least 1 Backlink for every Focus Page"
6214
- msgstr "Obțineți cel puțin 1 Backlink pentru fiecare pagină Focus"
6215
-
6216
- #: models/CheckSeo.php:1023 models/CheckSeo.php:1036
6217
- msgid ""
6218
- "A very easy way to reach this goal is to get a Squirrly SPY report "
6219
- "[link]https://squirrly.co/seo/spy/[/link] or something similar for your "
6220
- "competitors (just see who is currently listed top 10 in Google for your main "
6221
- "keyword for each Focus Page). You will see which sites link to them. Then "
6222
- "you can talk to those site owners and ask them how they can include you as "
6223
- "well, and also link to YOUR site."
6224
- msgstr ""
6225
- "Un mod foarte simplu de a atinge acest obiectiv este să obțineți un raport "
6226
- "Squirrly SPY [link]https://squirrly.co/seo/spy/[/link] sau ceva similar "
6227
- "pentru concurenții dvs. (vedeți cine este în prezent listat în top 10 în "
6228
- "Google pentru cuvântul cheie principal pentru fiecare pagină de focus). Veți "
6229
- "vedea ce site-uri se leagă de ei. Apoi, puteți vorbi cu proprietarii acelor "
6230
- "site-uri și îi puteți întreba cum vă pot include și pe dumneavoastră și, de "
6231
- "asemenea, să facă un link către site-ul Dvs."
6232
-
6233
- #: models/CheckSeo.php:1024
6234
- msgid ""
6235
- "Get 1 Backlink for each Focus Page. The 'PRO Ranking Tournament' course "
6236
- "inside Education Cloud by Squirrly has many ideas in lesson 8. These ideas "
6237
- "will help you get backlinks."
6238
- msgstr ""
6239
- "Obțineți 1 Backlink pentru fiecare pagină Focus. Cursul \"PRO Ranking "
6240
- "Tournament\" din cadrul Education Cloud by Squirrly are multe idei în lecția "
6241
- "8. Aceste idei vă vor ajuta să obțineți backlink-uri."
6242
-
6243
- #: models/CheckSeo.php:1025
6244
- msgid ""
6245
- "Get 1 Backlink (minimum) for each of your Focus Pages. Otherwise, it's "
6246
- "pretty improbable that you will manage to reach top positions."
6247
- msgstr ""
6248
- "Obțineți 1 backlink (minim) pentru fiecare dintre paginile dvs. de interes. "
6249
- "În caz contrar, este destul de improbabil să reușiți să ajungeți pe poziții "
6250
- "de top."
6251
-
6252
- #: models/CheckSeo.php:1035
6253
- msgid "Get 10 Backlinks to your Focus Pages"
6254
- msgstr "Obțineți 10 Backlinks către paginile dvs. de focalizare"
6255
-
6256
- #: models/CheckSeo.php:1037
6257
- msgid ""
6258
- "Get 10 Backlinks for each Focus Page. The 'PRO Ranking Tournament' course "
6259
- "inside Education Cloud by Squirrly has many ideas in lesson 8. These ideas "
6260
- "will help you get backlinks."
6261
- msgstr ""
6262
- "Obțineți 10 backlink-uri pentru fiecare pagină Focus. Cursul \"PRO Ranking "
6263
- "Tournament\" din cadrul Education Cloud by Squirrly are multe idei în lecția "
6264
- "8. Aceste idei vă vor ajuta să obțineți backlink-uri."
6265
-
6266
- #: models/CheckSeo.php:1038
6267
- msgid ""
6268
- "Reach over 10 Backlinks for each of your Focus Pages. Otherwise, it's pretty "
6269
- "improbable that you will manage to reach top positions."
6270
- msgstr ""
6271
- "Ajungeți la peste 10 backlink-uri pentru fiecare dintre paginile dvs. de "
6272
- "interes. În caz contrar, este destul de improbabil să reușiți să ajungeți pe "
6273
- "poziții de top."
6274
-
6275
- #: models/CheckSeo.php:1048
6276
- msgid "Help us with a positive review on WordPress."
6277
- msgstr "Ajutați-ne cu o recenzie pozitivă pentru WordPress."
6278
-
6279
- #: models/CheckSeo.php:1049
6280
- msgid "Help us keep the Squirrly SEO plugin free with so many free features."
6281
- msgstr ""
6282
- "Ajutați-ne să menținem plugin-ul Squirrly SEO gratuit cu atât de multe "
6283
- "caracteristici gratuite."
6284
-
6285
- #: models/CheckSeo.php:1050
6286
- #, php-format
6287
- msgid ""
6288
- "Go to %sWordPress Directory%s and write a short positive review for us if "
6289
- "you like the plugin."
6290
- msgstr ""
6291
- "Mergeți la %sWordPress Directory%s și scrieți o scurtă recenzie pozitivă "
6292
- "pentru noi dacă vă place plugin-ul."
6293
-
6294
- #: models/CheckSeo.php:1063 models/CheckSeo.php:1095
6295
- msgid "You got better Traffic to your Focus Pages"
6296
- msgstr "Ai un trafic mai bun pentru paginile tale de focus"
6297
-
6298
- #: models/CheckSeo.php:1071 models/CheckSeo.php:1079
6299
- msgid "You got better Ranking to your Focus Pages"
6300
- msgstr "Ai o mai bună poziționare în paginile de focus"
6301
-
6302
- #: models/CheckSeo.php:1087
6303
- msgid "You got better Time On Page to your Focus Pages"
6304
- msgstr "Ai un Time On Page mai bun pentru paginile tale de focus"
6305
-
6306
- #: models/CheckSeo.php:1103
6307
- msgid "You got better Authority to your Focus Pages"
6308
- msgstr "Ai o mai bună autoritate pentru paginile tale de focus"
6309
-
6310
- #: models/CheckSeo.php:1111
6311
- msgid "You got better Social Signals to your Focus Pages"
6312
- msgstr "Ai semnale sociale mai bune pentru paginile tale de focus"
6313
-
6314
- #: models/CheckSeo.php:1119
6315
- msgid "You got better Loading Speed to your Focus Pages"
6316
- msgstr "Ai o viteză de încărcare mai bună pentru paginile tale Focus"
6317
-
6318
- #: models/CheckSeo.php:1127 models/CheckSeo.php:1135 models/CheckSeo.php:1143
6319
- msgid "You got better Ranking for your Keywords"
6320
- msgstr "Ai un ranking mai bun pentru cuvintele cheie"
6321
-
6322
- #: models/CheckSeo.php:1151
6323
- msgid "You got better Score for your Audit"
6324
- msgstr "Ai un scor mai bun pentru auditul tău"
6325
-
6326
- #: models/CheckSeo.php:1458
6327
- msgid "Could not verify the frontend."
6328
- msgstr "Nu s-a putut verifica frontend-ul."
6329
-
6330
- #: models/CheckSeo.php:1826
6331
- msgid "'Just another WordPress site'"
6332
- msgstr "\"Doar un alt site WordPress"
6333
-
6334
- #: models/CheckSeo.php:1827
6335
- msgid "Just another WordPress site"
6336
- msgstr "Doar un alt WordPress site"
6337
-
6338
- #: models/CheckSeo.php:1977
6339
- #, php-format
6340
- msgid "Focus Page was not found (error %s)"
6341
- msgstr "Focus Pagina nu a fost găsită (eroare %s)"
6342
-
6343
- #: models/CheckSeo.php:1978 models/CheckSeo.php:2030
6344
- msgid ""
6345
- "The way your WordPress site is currently hosted can affect the way Squirrly "
6346
- "SEO operates in order to retrieve and process data about your Focus Pages. "
6347
- "It’s important to do everything on your end to ensure that the Focus Pages "
6348
- "audits can be generated by our system."
6349
- msgstr ""
6350
- "Modul în care este găzduit în prezent site-ul dvs. WordPress poate afecta "
6351
- "modul în care Squirrly SEO operează pentru a prelua și procesa datele despre "
6352
- "Paginile Focus. Este important să faceți tot ce este necesar din partea dvs. "
6353
- "pentru a vă asigura că auditurile Focus Pages pot fi generate de sistemul "
6354
- "nostru."
6355
-
6356
- #: models/CheckSeo.php:1979 models/CheckSeo.php:1998
6357
- msgid ""
6358
- "Use a different browser to check if your Focus Page is visible. Whitelist "
6359
- "our crawler IP address (176.9.112.210) to allow our server to verify your "
6360
- "page so that you’ll receive a full audit."
6361
- msgstr ""
6362
- "Utilizați un alt browser pentru a verifica dacă pagina Focus este vizibilă. "
6363
- "Puneți pe lista albă adresa IP a crawlerului nostru (176.9.112.210) pentru a "
6364
- "permite serverului nostru să vă verifice pagina, astfel încât să primiți un "
6365
- "audit complet."
6366
-
6367
- #: models/CheckSeo.php:1980 models/CheckSeo.php:2032
6368
- msgid "An error is preventing Squirrly from processing your Focus Page audits."
6369
- msgstr "O eroare împiedică Squirrly să proceseze auditurile Focus Page."
6370
-
6371
- #: models/CheckSeo.php:1987
6372
- #, php-format
6373
- msgid "Your Focus Page is redirected to another page (error %s)"
6374
- msgstr ""
6375
- "Pagina dvs. de focus este redirecționată către o altă pagină (eroare %s)"
6376
-
6377
- #: models/CheckSeo.php:1988
6378
- #, php-format
6379
- msgid ""
6380
- "Right now, your Focus Page sends users and search engines to a different URL "
6381
- "from the one they originally requested. That’s because you set up a 301 or a "
6382
- "302 redirect for this page. %s A redirect indicates that your Focus Page has "
6383
- "moved to a different location. If the wrong type of redirect has been set "
6384
- "up, search engines can be become confused as to which page they should rank. "
6385
- "%s A redirect also interferes with how Squirrly’s Focus Pages system "
6386
- "operates."
6387
- msgstr ""
6388
- "În acest moment, pagina dvs. Focus Page trimite utilizatorii și motoarele de "
6389
- "căutare la un URL diferit de cel solicitat inițial. Acest lucru se datorează "
6390
- "faptului că ați configurat o redirecționare 301 sau 302 pentru această "
6391
- "pagină. %s O redirecționare indică faptul că pagina Focus Page s-a mutat "
6392
- "într-o locație diferită. Dacă a fost configurat un tip greșit de "
6393
- "redirecționare, motoarele de căutare pot deveni confuze în ceea ce privește "
6394
- "pagina pe care ar trebui să o clasifice. %s O redirecționare interferează, "
6395
- "de asemenea, cu modul în care funcționează sistemul Focus Pages al Squirrly."
6396
-
6397
- #: models/CheckSeo.php:1989
6398
- msgid ""
6399
- "Choose a page that does NOT redirect to a different page as your Focus Page. "
6400
- "Your Focus Page should have a single URL associated to it so that Squirrly "
6401
- "can serve you the best data."
6402
- msgstr ""
6403
- "Alegeți o pagină care NU redirecționează către o altă pagină ca fiind pagina "
6404
- "Focus. Pagina Focus Page ar trebui să aibă un singur URL asociat, astfel "
6405
- "încât Squirrly să vă poată servi cele mai bune date."
6406
-
6407
- #: models/CheckSeo.php:1990
6408
- msgid "Make sure that your Focus Page is NOT redirected to a different page."
6409
- msgstr ""
6410
- "Asigurați-vă că pagina Focus Page NU este redirecționată către o altă pagină."
6411
-
6412
- #: models/CheckSeo.php:1996
6413
- #, php-format
6414
- msgid "Ensure your Focus Pages can be accessed (error %s)"
6415
- msgstr "Asigurați-vă că paginile Focus pot fi accesate (eroare %s)"
6416
-
6417
- #: models/CheckSeo.php:1997
6418
- #, php-format
6419
- msgid ""
6420
- "A server-side error is preventing Squirrly from being able to access and "
6421
- "audit your Focus Page. You need to fix this so that Squirrly SEO can analyze "
6422
- "your page and serve you complete data on how to improve its chances of "
6423
- "ranking. %sThe error can also prevent human visitors from accessing your "
6424
- "page, which is a critical issue."
6425
- msgstr ""
6426
- "O eroare de server împiedică Squirrly să acceseze și să vă auditeze pagina "
6427
- "Focus. Trebuie să remediați această eroare pentru ca Squirrly SEO să vă "
6428
- "poată analiza pagina și să vă servească date complete despre cum să îi "
6429
- "îmbunătățiți șansele de poziționare. %sEroarea poate împiedica, de asemenea, "
6430
- "vizitatorii umani să vă acceseze pagina, ceea ce reprezintă o problemă "
6431
- "critică."
6432
-
6433
- #: models/CheckSeo.php:1999
6434
- msgid "A server-side error is preventing your Focus Pages from being accessed."
6435
- msgstr "O eroare de server împiedică accesarea Paginilor Focus."
6436
-
6437
- #: models/CheckSeo.php:2004
6438
- #, php-format
6439
- msgid "Make sure your Focus Pages can be audited (error %s)"
6440
- msgstr "Asigurați-vă că paginile Focus pot fi auditate (eroare %s)"
6441
-
6442
- #: models/CheckSeo.php:2005
6443
- msgid ""
6444
- "Squirrly is unable to generate the audit for your Focus Page because it "
6445
- "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
6446
- "server may be down, or maybe your server is inadvertently blocking "
6447
- "Squirrly’s IP address."
6448
- msgstr ""
6449
- "Squirrly nu poate genera auditul pentru Pagina Focus deoarece nu se poate "
6450
- "conecta la serverul site-ului WordPress. De ce? Este posibil ca serverul "
6451
- "site-ului dvs. WordPress să nu funcționeze sau poate că serverul dvs. "
6452
- "blochează din greșeală adresa IP a lui Squirrly."
6453
-
6454
- #: models/CheckSeo.php:2006
6455
- msgid ""
6456
- "Check to see if your WordPress site’s server is offline. Whitelist our "
6457
- "crawler IP address (176.9.112.210) to allow our server to verify your page "
6458
- "so that you’ll receive a full audit."
6459
- msgstr ""
6460
- "Verifică dacă serverul site-ului tău WordPress este offline. Puneți pe lista "
6461
- "albă adresa IP a crawlerului nostru (176.9.112.210) pentru a permite "
6462
- "serverului nostru să vă verifice pagina, astfel încât să primiți un audit "
6463
- "complet."
6464
-
6465
- #: models/CheckSeo.php:2007 models/CheckSeo.php:2015
6466
- msgid ""
6467
- "An error prevents Squirrly from gathering critical data about your Focus "
6468
- "Page."
6469
- msgstr ""
6470
- "O eroare împiedică Squirrly să colecteze date critice despre pagina dvs. "
6471
- "Focus."
6472
-
6473
- #: models/CheckSeo.php:2012
6474
- msgid "Make sure your Focus Pages can be audited (firewall protection)"
6475
- msgstr "Asigurați-vă că paginile Focus pot fi auditate (protecție firewall)"
6476
-
6477
- #: models/CheckSeo.php:2013
6478
- msgid ""
6479
- "Squirrly is unable to generate the audit for your Focus Page because it "
6480
- "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
6481
- "server has a firewall protection and is blocking Squirrly’s IP address."
6482
- msgstr ""
6483
- "Squirrly nu poate genera auditul pentru Pagina Focus deoarece nu se poate "
6484
- "conecta la serverul site-ului WordPress. De ce? Serverul site-ului dvs. "
6485
- "WordPress are o protecție firewall și blochează adresa IP a lui Squirrly."
6486
-
6487
- #: models/CheckSeo.php:2014 models/CheckSeo.php:2031
6488
- msgid ""
6489
- "Whitelist our crawler IP address (176.9.112.210) to allow our server to "
6490
- "verify your page so that you’ll receive a full audit."
6491
- msgstr ""
6492
- "Introduceți pe lista albă adresa IP a crawlerului nostru (176.9.112.210) "
6493
- "pentru a permite serverului nostru să vă verifice pagina, astfel încât veți "
6494
- "primi un audit complet."
6495
-
6496
- #: models/CheckSeo.php:2020
6497
- msgid "Focus Pages - Limit Exceeded"
6498
- msgstr "Focus Pages - limită depășită"
6499
-
6500
- #: models/CheckSeo.php:2021
6501
- msgid ""
6502
- "Squirrly is unable to generate the audit for your Focus Page because you "
6503
- "exceeded the maximum number of Focus Pages for your account."
6504
- msgstr ""
6505
- "Squirrly nu poate genera auditul pentru pagina dvs. de interes deoarece ați "
6506
- "depășit numărul maxim de pagini de interes pentru contul dvs."
6507
-
6508
- #: models/CheckSeo.php:2022
6509
- msgid "Upgrade your account to be able to see all the Focus Pages you added."
6510
- msgstr ""
6511
- "Upgradează-ți contul pentru a putea vedea toate paginile Focus Pages pe care "
6512
- "le-ai adăugat."
6513
-
6514
- #: models/CheckSeo.php:2029
6515
- #, php-format
6516
- msgid "Focus Page could not be verified (error: %s)"
6517
- msgstr "Focus Pagina nu a putut fi verificată (eroare: %s)"
6518
-
6519
- #: models/Compatibility.php:118
6520
- msgid "MPN"
6521
- msgstr "MPN"
6522
-
6523
- #: models/Compatibility.php:119
6524
- msgid "Add Manufacturer Part Number (MPN)"
6525
- msgstr "Adăugați numărul de referință al producătorului (MPN)"
6526
-
6527
- #: models/Compatibility.php:122
6528
- msgid "GTIN"
6529
- msgstr "GTIN"
6530
-
6531
- #: models/Compatibility.php:123
6532
- msgid "Add Global Trade Item Number (GTIN)"
6533
- msgstr "Adăugați numărul articolului comercial global (GTIN)"
6534
-
6535
- #: models/Compatibility.php:126
6536
- msgid "EAN (GTIN-13)"
6537
- msgstr "EAN (GTIN-13)"
6538
-
6539
- #: models/Compatibility.php:127
6540
- msgid ""
6541
- "Add Global Trade Item Number (GTIN) for the major GTIN used outside of North "
6542
- "America"
6543
- msgstr ""
6544
- "Adăugați Global Trade Item Number (GTIN) pentru principalul GTIN utilizat în "
6545
- "afara Americii de Nord"
6546
-
6547
- #: models/Compatibility.php:130
6548
- msgid "UPC (GTIN-12)"
6549
- msgstr "UPC (GTIN-12)"
6550
-
6551
- #: models/Compatibility.php:131
6552
- msgid "Add Global Trade Item Number (GTIN) for North America"
6553
- msgstr ""
6554
- "Adăugați numărul de articol comercial global (GTIN) pentru America de Nord"
6555
-
6556
- #: models/Compatibility.php:134
6557
- msgid "ISBN"
6558
- msgstr "Isbn"
6559
-
6560
- #: models/Compatibility.php:135
6561
- msgid "Add Global Trade Item Number (GTIN) for books"
6562
- msgstr "Adăugați numărul de articol comercial global (GTIN) pentru cărți"
6563
-
6564
- #: models/Compatibility.php:140
6565
- msgid "Brand Name"
6566
- msgstr "Nume de brand"
6567
-
6568
- #: models/Compatibility.php:141
6569
- msgid "Add Product Brand Name"
6570
- msgstr "Adăugați numele mărcii produsului"
6571
-
6572
- #: models/FocusPages.php:20 models/abstract/Assistant.php:89
6573
- #: view/Ranking/Gscsync.php:36 view/Ranking/Rankings.php:222
6574
- #: view/Ranking/Rankings.php:360 view/Research/Briefcase.php:126
6575
- #: view/Research/Briefcase.php:316 view/Research/History.php:33
6576
- #: view/Research/HistoryDetails.php:8 view/Research/Research.php:202
6577
- #: view/Research/Suggested.php:33
6578
- msgid "Keyword"
6579
- msgstr "Cuvant cheie"
6580
-
6581
- #: models/FocusPages.php:21
6582
- msgid "Strategy"
6583
- msgstr "Strategie"
6584
-
6585
- #: models/FocusPages.php:22
6586
- msgid "SEO Content"
6587
- msgstr "Conținut SEO"
6588
-
6589
- #: models/FocusPages.php:23
6590
- msgid "Words / Page"
6591
- msgstr "Cuvinte / Pagina"
6592
-
6593
- #: models/FocusPages.php:24
6594
- msgid "Platform SEO"
6595
- msgstr "Platforma SEO"
6596
-
6597
- #: models/FocusPages.php:25
6598
- msgid "Snippet"
6599
- msgstr "Snippet"
6600
-
6601
- #: models/FocusPages.php:26
6602
- msgid "SEO Image"
6603
- msgstr "Imagine SEO"
6604
-
6605
- #: models/FocusPages.php:27
6606
- msgid "Traffic Health"
6607
- msgstr "Trafic"
6608
-
6609
- #: models/FocusPages.php:28
6610
- msgid "Platform Health"
6611
- msgstr "Website"
6612
-
6613
- #: models/FocusPages.php:30
6614
- msgid "Social Signals"
6615
- msgstr "Semnale sociale"
6616
-
6617
- #: models/FocusPages.php:31
6618
- msgid "Backlinks"
6619
- msgstr "Backlinks"
6620
-
6621
- #: models/FocusPages.php:32
6622
- msgid "Inner Links"
6623
- msgstr "Legături interioare"
6624
-
6625
- #: models/FocusPages.php:33
6626
- msgid "Outbound Links"
6627
- msgstr "Legături externe"
6628
-
6629
- #: models/FocusPages.php:34
6630
- msgid "Accuracy"
6631
- msgstr "Confort"
6632
-
6633
- #: models/FocusPages.php:35 view/Ranking/Gscsync.php:39
6634
- msgid "CTR"
6635
- msgstr "CTR"
6636
-
6637
- #: models/FocusPages.php:36 view/Ranking/Gscsync.php:38
6638
- #: view/Ranking/Rankings.php:374
6639
- msgid "Impressions"
6640
- msgstr "Impresii"
6641
-
6642
- #: models/FocusPages.php:37 view/Ranking/Gscsync.php:37
6643
- #: view/Ranking/Rankings.php:380
6644
- msgid "Clicks"
6645
- msgstr "Click-uri"
6646
-
6647
- #: models/Ico.php:43
6648
- msgid "File type error: Only ICO, JPEG, JPG, GIF or PNG files are allowed."
6649
- msgstr "Eroare fisier: Doar fisierele JPEG, JPG, GIF sau PNG sunt permise."
6650
-
6651
- #: models/Ico.php:52
6652
- msgid "Delete error: Could not delete the old favicon."
6653
- msgstr "Eroare Stergere: Nu se poate sterge icoana veche."
6654
-
6655
- #: models/Ico.php:59
6656
- msgid "Upload error: Could not upload the favicon."
6657
- msgstr "Eroare Upload: Nu se poate urca pe server imaginea."
6658
-
6659
- #: models/Ico.php:65
6660
- msgid "Permission error: Could not change the favicon permissions."
6661
- msgstr "Eroare Fisier: Nu se poate schimba permisiunea fisierului."
6662
-
6663
- #: models/Ico.php:86
6664
- msgid ""
6665
- "ICO Error: Could not create the ICO from file. Try with another file type."
6666
- msgstr "Eroare ICO: Nu se poate transforma imaginea in fisier ICO."
6667
-
6668
- #: models/Ico.php:103
6669
- msgid "The favicon has been updated."
6670
- msgstr "Icoana a fost adaugata pe server."
6671
-
6672
- #: models/Menu.php:110 models/Menu.php:522
6673
- msgid "First Step"
6674
- msgstr "Primul pas"
6675
-
6676
- #: models/Menu.php:110 models/Menu.php:111 models/Menu.php:386
6677
- #: view/Blocks/Toolbar.php:36
6678
- msgid "Overview"
6679
- msgstr "Overview"
6680
-
6681
- #: models/Menu.php:122 models/Menu.php:123
6682
- msgid "All Features"
6683
- msgstr "Toate Feature-urile"
6684
-
6685
- #: models/Menu.php:134 models/Menu.php:135 view/Research/Briefcase.php:138
6686
- msgid "Research"
6687
- msgstr "Cercetări"
6688
-
6689
- #: models/Menu.php:170
6690
- msgid "All Snippets"
6691
- msgstr "Toate Snippets"
6692
-
6693
- #: models/Menu.php:171 models/Menu.php:178 models/Menu.php:434
6694
- #: view/BulkSeo/Bulkseo.php:27
6695
- msgid "Bulk SEO"
6696
- msgstr "Bulk SEO"
6697
-
6698
- #: models/Menu.php:182 models/Menu.php:183
6699
- msgid "SEO Settings"
6700
- msgstr "Setări SEO"
6701
-
6702
- #: models/Menu.php:194 models/Menu.php:195 models/Menu.php:485
6703
- #: view/SeoSettings/Sitemap.php:29
6704
- msgid "Sitemap XML"
6705
- msgstr "Sitemap XML"
6706
-
6707
- #: models/Menu.php:206 models/Menu.php:207
6708
- msgid "Local SEO"
6709
- msgstr "SEO local"
6710
-
6711
- #: models/Menu.php:230 models/Menu.php:231
6712
- msgid "SEO Audit"
6713
- msgstr "Audit SEO"
6714
-
6715
- #: models/Menu.php:250 view/Ranking/Rankings.php:32
6716
- msgid "Google Rankings"
6717
- msgstr "Google Ranking"
6718
-
6719
- #: models/Menu.php:254 models/Menu.php:255
6720
- msgid "Onboarding"
6721
- msgstr "Îmbarcare"
6722
-
6723
- #: models/Menu.php:266 models/Menu.php:267
6724
- msgid "Import & Export SEO"
6725
- msgstr "Import & Export SEO"
6726
-
6727
- #: models/Menu.php:278 models/Menu.php:279
6728
- msgid "Account Info"
6729
- msgstr "Informatii cont"
6730
-
6731
- #: models/Menu.php:290
6732
- msgid "How To & Support"
6733
- msgstr "Suport"
6734
-
6735
- #: models/Menu.php:291
6736
- msgid "Help & Support"
6737
- msgstr "Suport"
6738
-
6739
- #: models/Menu.php:320
6740
- msgid "Find Keywords"
6741
- msgstr "Găsiți cuvinte"
6742
-
6743
- #: models/Menu.php:321
6744
- msgid "do a keyword research"
6745
- msgstr "căutați cuvinte cheie"
6746
-
6747
- #: models/Menu.php:327
6748
- msgid "save the best Keywords"
6749
- msgstr "salvați cele mai bune cuvinte cheie"
6750
-
6751
- #: models/Menu.php:332 view/Research/Briefcase.php:32
6752
- msgid "Labels"
6753
- msgstr "Etichete"
6754
-
6755
- #: models/Menu.php:333
6756
- msgid "group keywords"
6757
- msgstr "grupati cuvinte cheie"
6758
-
6759
- #: models/Menu.php:338
6760
- msgid "Suggested"
6761
- msgstr "Sugestii"
6762
-
6763
- #: models/Menu.php:339
6764
- msgid "better keywords found"
6765
- msgstr "cuvinte cheie mai bune găsite"
6766
-
6767
- #: models/Menu.php:344
6768
- msgid "History"
6769
- msgstr "Istoric"
6770
-
6771
- #: models/Menu.php:345
6772
- msgid "keyword research history"
6773
- msgstr "istoricul cercetării cuvintelor cheie"
6774
-
6775
- #: models/Menu.php:352
6776
- msgid "Optimize Posts"
6777
- msgstr "Optimizare"
6778
-
6779
- #: models/Menu.php:353
6780
- msgid "use the Live Assistant"
6781
- msgstr "utilizați Live Assistant"
6782
-
6783
- #: models/Menu.php:358 models/Menu.php:398 models/Menu.php:424
6784
- msgid "Settings"
6785
- msgstr "Setări"
6786
-
6787
- #: models/Menu.php:359
6788
- msgid "live assistant setup"
6789
- msgstr "configurarea asistentului live"
6790
-
6791
- #: models/Menu.php:367
6792
- msgid "all my focus pages"
6793
- msgstr "toate paginile mele de focus"
6794
-
6795
- #: models/Menu.php:378 models/Menu.php:392
6796
- msgid "Add New Page"
6797
- msgstr "Adăugați pagina"
6798
-
6799
- #: models/Menu.php:379
6800
- msgid "add page in focus pages"
6801
- msgstr "adăugați pagina în paginile de focus"
6802
-
6803
- #: models/Menu.php:387
6804
- msgid "See all the SEO audits"
6805
- msgstr "Vezi toate auditurile SEO"
6806
-
6807
- #: models/Menu.php:393
6808
- msgid "add page in audit"
6809
- msgstr "adăugare pagină în audit"
6810
-
6811
- #: models/Menu.php:399
6812
- msgid "Audit settings"
6813
- msgstr "Setări de audit"
6814
-
6815
- #: models/Menu.php:407
6816
- msgid "See Google ranking"
6817
- msgstr "Vezi Google Rankings"
6818
-
6819
- #: models/Menu.php:412
6820
- msgid "Add Keywords"
6821
- msgstr "Adăugă keyword"
6822
-
6823
- #: models/Menu.php:413
6824
- msgid "Add briefcase keywords"
6825
- msgstr "Adauga cuvant cheie"
6826
-
6827
- #: models/Menu.php:418 view/Ranking/Rankings.php:267
6828
- msgid "Sync Keywords"
6829
- msgstr "Sincronizare"
6830
-
6831
- #: models/Menu.php:419
6832
- msgid "Sync Keywords from GSC"
6833
- msgstr "Sincronizarea cuvintelor cheie din GSC"
6834
-
6835
- #: models/Menu.php:425
6836
- msgid "Ranking settings"
6837
- msgstr "Setări de Rankings"
6838
-
6839
- #: models/Menu.php:435
6840
- msgid "optimize all pages"
6841
- msgstr "optimizați toate paginile"
6842
-
6843
- #: models/Menu.php:443
6844
- msgid "Automation"
6845
- msgstr "Automatizare"
6846
-
6847
- #: models/Menu.php:444
6848
- msgid "patterns & automation"
6849
- msgstr "modele și automatizare"
6850
-
6851
- #: models/Menu.php:449 view/SeoSettings/Links.php:29
6852
- msgid "SEO Links"
6853
- msgstr "Link-uri SEO"
6854
-
6855
- #: models/Menu.php:450
6856
- msgid "manage website links"
6857
- msgstr "gestionați legăturile site-ului web"
6858
-
6859
- #: models/Menu.php:455 view/SeoSettings/Metas.php:29
6860
- msgid "SEO Metas"
6861
- msgstr "SEO Metas"
6862
-
6863
- #: models/Menu.php:456
6864
- msgid "required on-page metas"
6865
- msgstr "meta-uri necesare pe pagină"
6866
-
6867
- #: models/Menu.php:461 view/Blocks/Snippet.php:90 view/Blocks/Snippet.php:358
6868
- msgid "JSON-LD"
6869
- msgstr "JSON-LD"
6870
-
6871
- #: models/Menu.php:462
6872
- msgid "rich snippets & schema"
6873
- msgstr "rich Snippets & Schema"
6874
-
6875
- #: models/Menu.php:467 view/SeoSettings/Social.php:28
6876
- msgid "Social Media"
6877
- msgstr "Rețele sociale"
6878
-
6879
- #: models/Menu.php:468
6880
- msgid "social share options"
6881
- msgstr "opțiuni de Social Media"
6882
-
6883
- #: models/Menu.php:473 view/SeoSettings/Tracking.php:28
6884
- msgid "Tracking Tools"
6885
- msgstr "Tracking Tools"
6886
-
6887
- #: models/Menu.php:474
6888
- msgid "google analytics, pixel, etc."
6889
- msgstr "google analytics, pixel, etc."
6890
-
6891
- #: models/Menu.php:479 view/SeoSettings/Webmaster.php:28
6892
- msgid "Webmaster Tools"
6893
- msgstr "Webmasters"
6894
-
6895
- #: models/Menu.php:480
6896
- msgid "connect to webmasters"
6897
- msgstr "conectați-vă la webmasteri"
6898
-
6899
- #: models/Menu.php:486
6900
- msgid "setup the sitemap"
6901
- msgstr "configurați harta site-ului"
6902
-
6903
- #: models/Menu.php:491
6904
- msgid "Robots.txt"
6905
- msgstr "Robots.txt"
6906
-
6907
- #: models/Menu.php:492
6908
- msgid "search engine filters"
6909
- msgstr "filtre pentru motoare de căutare"
6910
-
6911
- #: models/Menu.php:497
6912
- msgid "Favicon"
6913
- msgstr "Favicon"
6914
-
6915
- #: models/Menu.php:498
6916
- msgid "add website icon"
6917
- msgstr "adăugați pictograma site-ului web"
6918
-
6919
- #: models/Menu.php:503
6920
- msgid "Import/Export"
6921
- msgstr "Import/Export"
6922
-
6923
- #: models/Menu.php:504
6924
- msgid "import & export SEO"
6925
- msgstr "import & export SEO"
6926
-
6927
- #: models/Menu.php:513
6928
- msgid "Advanced"
6929
- msgstr "Avansat"
6930
-
6931
- #: models/Menu.php:514
6932
- msgid "Advanced SEO Settings"
6933
- msgstr "Setări SEO avansate"
6934
-
6935
- #: models/Menu.php:523
6936
- msgid "website details"
6937
- msgstr "detalii despre site"
6938
-
6939
- #: models/Menu.php:529
6940
- msgid "build SEO Automation"
6941
- msgstr "construiți automatizarea SEO"
6942
-
6943
- #: models/Menu.php:534 view/SeoSettings/Backup.php:98
6944
- msgid "Import SEO"
6945
- msgstr "Importă SEO"
6946
-
6947
- #: models/Menu.php:535
6948
- msgid "import settings and SEO"
6949
- msgstr "setări de import și SEO"
6950
-
6951
- #: models/Menu.php:540 view/Onboarding/Step4.php:12
6952
- msgid "Final Step"
6953
- msgstr "Pasul final"
6954
-
6955
- #: models/Menu.php:541
6956
- msgid "check today SEO goals"
6957
- msgstr "verificați obiectivele SEO de azi"
6958
-
6959
- #: models/Menu.php:550
6960
- msgid "Blogging"
6961
- msgstr "Blogging"
6962
-
6963
- #: models/Menu.php:551
6964
- msgid "Blogging overwiew"
6965
- msgstr "Blogging overwiew"
6966
-
6967
- #: models/Menu.php:556
6968
- msgid "Traffic"
6969
- msgstr "Trafic"
6970
-
6971
- #: models/Menu.php:557
6972
- msgid "Weekly website traffic"
6973
- msgstr "Traficul săptămânal pe site"
6974
-
6975
- #: models/Menu.php:562
6976
- msgid "SEO"
6977
- msgstr "SEO"
6978
-
6979
- #: models/Menu.php:563
6980
- msgid "On-Page optimization"
6981
- msgstr "Optimizare On-Page"
6982
-
6983
- #: models/Menu.php:568
6984
- msgid "Social"
6985
- msgstr "Social"
6986
-
6987
- #: models/Menu.php:569
6988
- msgid "Social signals and shares"
6989
- msgstr "Semnale sociale și share-uri"
6990
-
6991
- #: models/Menu.php:574
6992
- msgid "Links"
6993
- msgstr "Legături"
6994
-
6995
- #: models/Menu.php:575
6996
- msgid "Backlinks and Innerlinks"
6997
- msgstr "Backlinks și Innerlinks"
6998
-
6999
- #: models/Menu.php:580 models/focuspages/Authority.php:59
7000
- msgid "Authority"
7001
- msgstr "Autoritatea"
7002
-
7003
- #: models/Menu.php:581
7004
- msgid "Website Off-Page score"
7005
- msgstr "Scorul site-ului Off-Page"
7006
-
7007
- #: models/Post.php:73
7008
- msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
7009
- msgstr "Fișierul încărcat depășește directiva upload_max_filesize în php.ini."
7010
-
7011
- #: models/Post.php:74
7012
- msgid ""
7013
- "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
7014
- "the HTML form."
7015
- msgstr ""
7016
- "Fișierul încărcat depășește MAX_FILE_SIZE directivă specificată în "
7017
- "formularul HTML."
7018
-
7019
- #: models/Post.php:75
7020
- msgid "The uploaded file was only partially uploaded."
7021
- msgstr "Fișierul încărcat a fost încărcat doar parțial."
7022
-
7023
- #: models/Post.php:76
7024
- msgid "No file was uploaded."
7025
- msgstr "Nu a fost încărcat nici un fișier."
7026
-
7027
- #: models/Post.php:78
7028
- msgid "Missing a temporary folder."
7029
- msgstr "Lipsește dosarul temporar."
7030
-
7031
- #: models/Post.php:79
7032
- msgid "Failed to write file to disk."
7033
- msgstr "Nu s-a reușit scrierea fișierului pe disc."
7034
-
7035
- #: models/Post.php:80
7036
- msgid "File upload stopped by extension."
7037
- msgstr "Încărcarea fișierului s-a oprit prin extensie."
7038
-
7039
- #: models/Post.php:97
7040
- msgid "Invalid form submission."
7041
- msgstr "Formularul trimis nu este valid."
7042
-
7043
- #: models/Post.php:107
7044
- msgid "File is empty. Please upload something more substantial."
7045
- msgstr "Fișierul este gol. Vă rugăm să încărcați ceva mai substanțiale."
7046
-
7047
- #: models/Post.php:109
7048
- msgid ""
7049
- "File is empty. Please upload something more substantial. This error could "
7050
- "also be caused by uploads being disabled in your php.ini or by post_max_size "
7051
- "being defined as smaller than upload_max_filesize in php.ini."
7052
- msgstr ""
7053
- "Fișierul este gol. Vă rugăm să încărcați ceva mai substanțial. Această "
7054
- "eroare poate fi cauzată și de faptul că încărcările sunt dezactivate în php."
7055
- "ini sau că post_max_size este definit ca fiind mai mic decât "
7056
- "upload_max_filesize în php.ini."
7057
-
7058
- #: models/Post.php:115
7059
- msgid "Specified file failed upload test."
7060
- msgstr "Fișierul specificat nu a reușit încărcarea testului."
7061
-
7062
- #: models/Post.php:128
7063
- msgid "Sorry, this file type is not permitted for security reasons."
7064
- msgstr ""
7065
- "Ne pare rău, acest tip de fișier nu este permis din motive de securitate."
7066
-
7067
- #: models/Post.php:153
7068
- #, php-format
7069
- msgid "The uploaded file could not be moved to %s."
7070
- msgstr "Fișierul încărcat nu a putut fi mutat în %s."
7071
-
7072
- #: models/Post.php:236
7073
- msgid "Keyword with 2 or more words"
7074
- msgstr "Cuvânt cheie cu 2 sau mai multe cuvinte"
7075
-
7076
- #: models/Post.php:237
7077
- msgid ""
7078
- "Even if a long tail keyword won't bring as many visitors as one keyword "
7079
- "would, the traffic those keywords will bring will be better, and more "
7080
- "focused towards what you're selling."
7081
- msgstr ""
7082
- "Chiar dacă un cuvânt cheie cu coadă lungă nu va aduce la fel de mulți "
7083
- "vizitatori ca un singur cuvânt cheie, traficul pe care îl vor aduce aceste "
7084
- "cuvinte cheie va fi mai bun și mai concentrat pe ceea ce vindeți."
7085
-
7086
- #: models/Post.php:240
7087
- msgid "Domain"
7088
- msgstr "Domeniul"
7089
-
7090
- #: models/Post.php:242
7091
- msgid "Keyword is present in the URL"
7092
- msgstr "Cuvânt cheie prezent in URL"
7093
-
7094
- #: models/Post.php:243
7095
- msgid ""
7096
- "The keywords must be present in the URL for a better ranking. You should "
7097
- "consider not to add a keyword more than once."
7098
- msgstr ""
7099
- "Cuvintele cheie trebuie să fie prezente în URL pentru o mai bună "
7100
- "poziționare. Ar trebui să aveți în vedere să nu adăugați un cuvânt cheie de "
7101
- "mai multe ori."
7102
-
7103
- #: models/Post.php:246
7104
- msgid "Clean & Friendly"
7105
- msgstr "Curat si Prietenos"
7106
-
7107
- #: models/Post.php:248
7108
- #, php-format
7109
- msgid "Title is Google Friendly %s: more keywords %s: over-optimized! %s"
7110
- msgstr ""
7111
- "Titlul este Google Friendly %s: mai multe cuvinte %s: supra-optimizat! %s"
7112
-
7113
- #: models/Post.php:249
7114
- msgid ""
7115
- "It calculates the right number of times your keyword should appear mentioned "
7116
- "in the text and makes sure you do not over-optimize."
7117
- msgstr ""
7118
- "Calculează numărul corect de ori de câte ori trebuie să apară cuvântul cheie "
7119
- "în text și se asigură că nu supra-optimizați."
7120
-
7121
- #: models/Post.php:252
7122
- #, php-format
7123
- msgid "Content is Google Friendly %s: more keywords %s: over-optimized! %s"
7124
- msgstr ""
7125
- "Continutul este Google Friendly %s: mai multe cuvinte %s: supra-optimizat! %s"
7126
-
7127
- #: models/Post.php:253
7128
- msgid ""
7129
- "It calculates the right number of times your keyword should appear mentioned "
7130
- "in the text and makes sure you do not over-optimize"
7131
- msgstr ""
7132
- "Calculează numărul corect de ori de câte ori trebuie să apară cuvântul cheie "
7133
- "menționat în text și se asigură că nu supra-optimizați"
7134
-
7135
- #: models/Post.php:256
7136
- #, php-format
7137
- msgid "Over Optimization %s"
7138
- msgstr "Supra Optimizat %s"
7139
-
7140
- #: models/Post.php:257
7141
- msgid ""
7142
- "Checks if there are words in the whole text that appear way too many times"
7143
- msgstr ""
7144
- "Verifică dacă există cuvinte în întregul text care apar de prea multe ori"
7145
-
7146
- #: models/Post.php:260
7147
- #, php-format
7148
- msgid "Human Friendly %s"
7149
- msgstr "Usor de Citit %s"
7150
-
7151
- #: models/Post.php:261
7152
- msgid ""
7153
- "Your readers (who are not search engine bots) should find a clear text, with "
7154
- "a rich vocabulary, that takes into account some basic rules of writing: such "
7155
- "as having an introduction, a conclusion (in which you state the topic you're "
7156
- "writing about). Also, you can improve their reading experience by avoiding "
7157
- "repetitions."
7158
- msgstr ""
7159
- "Cititorii dvs. (care nu sunt roboți ai motoarelor de căutare) trebuie să "
7160
- "găsească un text clar, cu un vocabular bogat, care să țină cont de câteva "
7161
- "reguli de bază ale scrisului: o introducere, o concluzie (în care să "
7162
- "precizați subiectul despre care scrieți). De asemenea, le puteți îmbunătăți "
7163
- "experiența de lectură prin evitarea repetițiilor."
7164
-
7165
- #: models/Post.php:264 models/focuspages/Snippet.php:124
7166
- #: models/focuspages/Snippet.php:254 models/focuspages/Snippet.php:276
7167
- #: view/Audits/Addpage.php:135 view/Blocks/Snippet.php:173
7168
- #: view/Blocks/Snippet.php:715 view/Blocks/Snippet.php:982
7169
- #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:136
7170
- #: view/SeoSettings/Automation.php:168
7171
- msgid "Title"
7172
- msgstr "Titlul"
7173
-
7174
- #: models/Post.php:266
7175
- msgid "Keywords are used in Title"
7176
- msgstr "Cuvânt cheie prezent in Titlu"
7177
-
7178
- #: models/Post.php:267
7179
- msgid "The keywords need to appear in the title of the article"
7180
- msgstr "Cuvântul cheie trebuie sa apara in titlul articolului"
7181
-
7182
- #: models/Post.php:270
7183
- msgid "Title length is between 10-75 chars"
7184
- msgstr "Lungimea titlului este intre 10 si 75 caractere"
7185
-
7186
- #: models/Post.php:271
7187
- msgid ""
7188
- "The optimum length for Title is between 10-75 chars on major search engines."
7189
- msgstr ""
7190
- "Lungimea optimă a titlului este cuprinsă între 10-75 de caractere pe "
7191
- "principalele motoare de căutare."
7192
-
7193
- #: models/Post.php:274
7194
- msgid "Title is different from domain name"
7195
- msgstr "Titlul este diferit de numele domeniului"
7196
-
7197
- #: models/Post.php:275
7198
- msgid ""
7199
- "Since the Google Penguin Update, the title must be different from the domain "
7200
- "name, or you might get banned soon."
7201
- msgstr ""
7202
- "De la Google Penguin Update, titlul trebuie să fie diferit de numele "
7203
- "domeniului, altfel s-ar putea să fiți interzis în curând."
7204
-
7205
- #: models/Post.php:278
7206
- msgid "Content"
7207
- msgstr "Continut"
7208
-
7209
- #: models/Post.php:280
7210
- msgid "Keywords are used in Content"
7211
- msgstr "Cuvântul cheie este folosit in Continut"
7212
-
7213
- #: models/Post.php:281
7214
- msgid "The keyword must appear in the body of the article, at least once"
7215
- msgstr ""
7216
- "Cuvântul cheie trebuie să apară în corpul articolului, cel puțin o dată"
7217
-
7218
- #: models/Post.php:284
7219
- #, php-format
7220
- msgid "Bold one of the keywords %s"
7221
- msgstr "Îngroasă unul din cuvintele %s"
7222
-
7223
- #: models/Post.php:285
7224
- msgid ""
7225
- "Bolding your keywords will help search engines figure out what your content "
7226
- "is about and what topic you cover. It's also useful for your Human readers "
7227
- "to bold some of the most important ideas."
7228
- msgstr ""
7229
- "Dacă subliniați cuvintele cheie, veți ajuta motoarele de căutare să își dea "
7230
- "seama despre ce este vorba în conținutul dvs. și ce subiect abordați. De "
7231
- "asemenea, este util pentru cititorii dvs. umani să scrieți cu bold unele "
7232
- "dintre cele mai importante idei."
7233
-
7234
- #: models/Post.php:288
7235
- msgid "Keywords used in headline"
7236
- msgstr "Cuvânt cheie folosit ca si headline H2-H6"
7237
-
7238
- #: models/Post.php:289
7239
- msgid ""
7240
- "The keywords should be used in headings like H2, H3, H4. Try NOT to use them "
7241
- "all, for it will seem to be a SEO abuse. You can use your H2 button from the "
7242
- "editor to do this. It works like the Bold, Italic or Underline buttons."
7243
- msgstr ""
7244
- "Cuvintele cheie trebuie folosite în titluri precum H2, H3, H4. Încercați să "
7245
- "NU le folosiți pe toate, pentru că va părea un abuz SEO. Puteți folosi "
7246
- "butonul H2 din editor pentru a face acest lucru. Acesta funcționează ca și "
7247
- "butoanele Bold, Italic sau Underline."
7248
-
7249
- #: models/Post.php:292
7250
- msgid "Use image(s) in content or featured image"
7251
- msgstr "Folosește imagini in conținut sau imagine featured"
7252
-
7253
- #: models/Post.php:293
7254
- msgid ""
7255
- "Articles need to be optimized for human beings as well, so you should place "
7256
- "an image at the begining of your article."
7257
- msgstr ""
7258
- "Articolele trebuie să fie optimizate și pentru oameni, așa că ar trebui să "
7259
- "plasați o imagine la începutul articolului dumneavoastră."
7260
-
7261
- #: models/Post.php:296
7262
- msgid "Use keywords in the Alternative Text field of the image"
7263
- msgstr "Folosește cuvântul cheie in Textul Alternativ al imaginilor"
7264
-
7265
- #: models/Post.php:297
7266
- msgid ""
7267
- "Add at least one image in your article. Now use your keyword in the "
7268
- "description of the image. The Alternative Text field of the image."
7269
- msgstr ""
7270
- "Adăugați cel puțin o imagine în articolul dumneavoastră. Acum, utilizați "
7271
- "cuvântul cheie în descrierea imaginii. Câmpul de text alternativ al "
7272
- "imaginii."
7273
-
7274
- #: models/PostsList.php:24
7275
- msgid "Optimize it with Squirrly Live Assistant"
7276
- msgstr "Optimizează cu Squirrly Live Assistant"
7277
-
7278
- #: models/PostsList.php:48 models/PostsList.php:74
7279
- msgid "Snippet optimized"
7280
- msgstr "Snippet optimizat"
7281
-
7282
- #: models/PostsList.php:48 models/PostsList.php:74
7283
- msgid "task(s) remained."
7284
- msgstr "sarcina (sarcinile) a (au) rămas."
7285
-
7286
- #: models/PostsList.php:52 models/PostsList.php:78
7287
- msgid "Can't get snippet data"
7288
- msgstr "Nu pot obține date de Snippet"
7289
-
7290
- #: models/PostsList.php:55 models/PostsList.php:80 view/Blocks/Snippet.php:135
7291
- msgid "Edit Snippet"
7292
- msgstr "Editați Snippet"
7293
-
7294
- #: models/RoleManager.php:96
7295
- msgid "Squirrly SEO Editor"
7296
- msgstr "Editor Squirrly SEO"
7297
-
7298
- #: models/RoleManager.php:97
7299
- msgid "Squirrly SEO Admin"
7300
- msgstr "Admin Squirrly SEO"
7301
-
7302
- #: models/Rollback.php:98
7303
- msgid "Plugin Install Process"
7304
- msgstr "Procesul de instalare a plugin-ului"
7305
-
7306
- #: models/Snippet.php:266
7307
- msgid "You don't have enough pemission to edit this article"
7308
- msgstr "Nu aveți suficientă permisiune pentru a edita acest articol"
7309
-
7310
- #: models/Snippet.php:366
7311
- msgid "Error! Could not save the data."
7312
- msgstr "Nu s-a putut salva data."
7313
-
7314
- #: models/Snippet.php:371
7315
- msgid "Error! Invalid request."
7316
- msgstr "Eroare! Cerere nevalabilă."
7317
-
7318
- #: models/Snippet.php:418
7319
- msgid "Couldn't find the page"
7320
- msgstr "Nu am putut găsi pagina"
7321
-
7322
- #: models/Snippet.php:434 models/Snippet.php:446
7323
- msgid "No Polylang translation for this post."
7324
- msgstr "Nu există nicio traducere din Polylang pentru acest post."
7325
-
7326
- #: models/abstract/Assistant.php:65 models/focuspages/Accuracy.php:34
7327
- #: models/focuspages/Audit.php:143 models/focuspages/Authority.php:33
7328
- #: models/focuspages/Backlinks.php:46 models/focuspages/Clicks.php:56
7329
- #: models/focuspages/Content.php:75 models/focuspages/Ctr.php:56
7330
- #: models/focuspages/Image.php:90 models/focuspages/Impressions.php:56
7331
- #: models/focuspages/Indexability.php:89 models/focuspages/Innerlinks.php:64
7332
- #: models/focuspages/Keyword.php:73 models/focuspages/Length.php:53
7333
- #: models/focuspages/Nofollow.php:65 models/focuspages/Onpage.php:80
7334
- #: models/focuspages/Ranking.php:35 models/focuspages/Snippet.php:180
7335
- #: models/focuspages/Social.php:56 models/focuspages/Strategy.php:97
7336
- #: models/focuspages/Traffic.php:95
7337
- msgid "Current URL"
7338
- msgstr "URL-ul curent"
7339
-
7340
- #: models/abstract/Assistant.php:81
7341
- msgid "Keywords"
7342
- msgstr "Cuvinte cheie"
7343
-
7344
- #: models/abstract/Assistant.php:81
7345
- msgid "Squirrly Live Assistant Optimization"
7346
- msgstr "Squirrly Live Assistant Optimizare"
7347
-
7348
- #: models/abstract/Assistant.php:81
7349
- msgid "SLA"
7350
- msgstr "SLA"
7351
-
7352
- #: models/abstract/Assistant.php:91
7353
- msgid "No Meta Keyword Found"
7354
- msgstr "Nici un cuvânt cheie Meta găsit"
7355
-
7356
- #: models/abstract/Assistant.php:166
7357
- msgid "We are gathering data for this category"
7358
- msgstr "Suntem în curs de colectare a datelor pentru această categorie"
7359
-
7360
- #: models/abstract/Assistant.php:169
7361
- msgid ""
7362
- "Congratulations for ranking with this keyword, but it will require special "
7363
- "attention from you to keep it within TOP 10 positions"
7364
- msgstr ""
7365
- "Felicitări pentru ranking cu acest cuvânt cheie, dar va necesita o atenție "
7366
- "specială din partea ta pentru a-l menține în TOP 10 poziții"
7367
-
7368
- #: models/abstract/Assistant.php:212
7369
- msgid "Not enough data to process this task"
7370
- msgstr "Nu sunt suficiente date pentru a procesa această sarcină"
7371
-
7372
- #: models/abstract/Assistant.php:216 view/Blocks/Snippet.php:310
7373
- msgid "Current"
7374
- msgstr "Actual"
7375
-
7376
- #: models/bulkseo/Metas.php:57
7377
- msgid "Title not empty"
7378
- msgstr "Titlul nu este gol"
7379
-
7380
- #: models/bulkseo/Metas.php:58 view/Blocks/Snippet.php:189
7381
- #: view/Blocks/Snippet.php:731 view/Blocks/Snippet.php:998
7382
- msgid "Current Title"
7383
- msgstr "Titlul actual"
7384
-
7385
- #: models/bulkseo/Metas.php:60
7386
- #, php-format
7387
- msgid ""
7388
- "The title for this URL must not be empty. %s Write a title for this page. "
7389
- "The title is very important because it shows up in the browser tab and in "
7390
- "the Google listing for your page. %s The better you write the title, the "
7391
- "more clicks you can get when people find your page on search engines."
7392
- msgstr ""
7393
- "Titlul pentru acest URL nu trebuie să fie gol. %s Scrieți un titlu pentru "
7394
- "această pagină. Titlul este foarte important, deoarece apare în fila din "
7395
- "browser și în lista Google pentru pagina dvs. %s Cu cât scrieți mai bine "
7396
- "titlul, cu atât mai multe clicuri puteți obține atunci când oamenii vă "
7397
- "găsesc pagina pe motoarele de căutare."
7398
-
7399
- #: models/bulkseo/Metas.php:63
7400
- #, php-format
7401
- msgid "Title up to %s chars"
7402
- msgstr "Titlu până la %s caractere"
7403
-
7404
- #: models/bulkseo/Metas.php:64
7405
- msgid "Current Title Length"
7406
- msgstr "Titlu actual Lungime"
7407
-
7408
- #: models/bulkseo/Metas.php:65 models/bulkseo/Metas.php:83
7409
- #: models/bulkseo/Opengraph.php:86 models/bulkseo/Opengraph.php:96
7410
- #: models/bulkseo/Twittercard.php:82 models/bulkseo/Twittercard.php:92
7411
- msgid "chars"
7412
- msgstr "caractere"
7413
-
7414
- #: models/bulkseo/Metas.php:66 models/bulkseo/Opengraph.php:87
7415
- #: models/bulkseo/Twittercard.php:83
7416
- #, php-format
7417
- msgid ""
7418
- "Title has to be longer than %s chars and up to %s chars. %s You can change "
7419
- "the title max length from %sSEO Settings > Automation%s."
7420
- msgstr ""
7421
- "Titlul trebuie să fie mai lung de %s caractere și până la %s caractere. %s "
7422
- "Puteți modifica lungimea maximă a titlului din %sSEO Settings > Automation%s."
7423
-
7424
- #: models/bulkseo/Metas.php:69 models/focuspages/Snippet.php:135
7425
- msgid "Keyword in title"
7426
- msgstr "Cuvânt cheie in Titlu"
7427
-
7428
- #: models/bulkseo/Metas.php:70 models/bulkseo/Metas.php:88
7429
- msgid "Snippet Keyword"
7430
- msgstr "Snippet Cuvânt cheie"
7431
-
7432
- #: models/bulkseo/Metas.php:71 models/bulkseo/Metas.php:89
7433
- msgid "no keywords"
7434
- msgstr "fără cuvinte cheie"
7435
-
7436
- #: models/bulkseo/Metas.php:72 models/focuspages/Snippet.php:138
7437
- #, php-format
7438
- msgid ""
7439
- "Your keyword must be present in the title of the page. %s It's a very "
7440
- "important element through which you make sure that you connect the "
7441
- "searcher's intent to the content on your page. %s If I'm looking for \"buy "
7442
- "cheap smartwatch\" and you give me a page called \"Luna Presentation\", I "
7443
- "will never click your page. Why? Because I might not know that Luna is a "
7444
- "smartwatch designed by VectorWatch. %s \"Buy Cheap Smartwatch - Luna by "
7445
- "VectorWatch\" would be a much better choice for a title."
7446
- msgstr ""
7447
- "Cuvântul cheie trebuie să fie prezent în titlul paginii. %s Este un element "
7448
- "foarte important prin care vă asigurați că faceți legătura între intenția "
7449
- "căutătorului și conținutul paginii dumneavoastră. %s Dacă eu caut \"cumpără "
7450
- "smartwatch ieftin\" și tu îmi oferi o pagină numită \"Luna Presentation\", "
7451
- "nu voi da niciodată click pe pagina ta. De ce? Pentru că s-ar putea să nu "
7452
- "știu că Luna este un smartwatch proiectat de VectorWatch. %s \"Cumpără ceas "
7453
- "inteligent ieftin - Luna by VectorWatch\" ar fi o alegere mult mai bună "
7454
- "pentru un titlu."
7455
-
7456
- #: models/bulkseo/Metas.php:75
7457
- msgid "Description not empty"
7458
- msgstr "Descrierea nu este goală"
7459
-
7460
- #: models/bulkseo/Metas.php:76 view/Blocks/Snippet.php:241
7461
- #: view/Blocks/Snippet.php:775 view/Blocks/Snippet.php:1042
7462
- msgid "Current Description"
7463
- msgstr "Descriere curentă"
7464
-
7465
- #: models/bulkseo/Metas.php:78
7466
- #, php-format
7467
- msgid ""
7468
- "Meta descriptions are important for SEO on multiple search engines. %s You "
7469
- "need to have a meta description for this URL. %s The better you write it, "
7470
- "the higher the chances of people clicking on your listing when they find it "
7471
- "on search engines."
7472
- msgstr ""
7473
- "Meta descrierile sunt importante pentru SEO pe mai multe motoare de căutare. "
7474
- "%s Trebuie să aveți o meta descriere pentru acest URL. %s Cu cât o scrieți "
7475
- "mai bine, cu atât mai mari sunt șansele ca oamenii să dea clic pe lista dvs. "
7476
- "atunci când o găsesc pe motoarele de căutare."
7477
-
7478
- #: models/bulkseo/Metas.php:81
7479
- #, php-format
7480
- msgid "Description up to %s chars"
7481
- msgstr "Descriere până la %s caractere"
7482
-
7483
- #: models/bulkseo/Metas.php:82
7484
- msgid "Current Description Length"
7485
- msgstr "Descriere curentă Lungime"
7486
-
7487
- #: models/bulkseo/Metas.php:84 models/bulkseo/Opengraph.php:97
7488
- #: models/bulkseo/Twittercard.php:93
7489
- #, php-format
7490
- msgid ""
7491
- "Description has to be longer than %s chars and up to %s chars. %s You can "
7492
- "change the description max length from %sSEO Settings > Automation%s."
7493
- msgstr ""
7494
- "Descrierea trebuie să fie mai lungă de %s caractere și până la %s caractere. "
7495
- "%s Puteți modifica lungimea maximă a descrierii din %sSEO Settings > "
7496
- "Automation%s."
7497
-
7498
- #: models/bulkseo/Metas.php:87 models/focuspages/Snippet.php:141
7499
- msgid "Keyword in description"
7500
- msgstr "Cuvânt cheie în descriere"
7501
-
7502
- #: models/bulkseo/Metas.php:90
7503
- #, php-format
7504
- msgid ""
7505
- "Same as with the title task. %s If a user reads the description of your page "
7506
- "on Google, but cannot find the keyword they searched for in that text, then "
7507
- "they'd have very low chances of actually clicking and visiting your page. %s "
7508
- "They'd go to the next page ranked on Google for that keyword. %s Think about "
7509
- "this: Google itself is trying more and more to display keywords in the "
7510
- "description of the pages it brings to TOP 10. It's pretty clear they care a "
7511
- "lot about this, because that's what people want to find on the search engine."
7512
- msgstr ""
7513
- "La fel ca în cazul sarcinii de titlu. %s Dacă un utilizator citește "
7514
- "descrierea paginii dvs. pe Google, dar nu găsește cuvântul cheie pe care l-a "
7515
- "căutat în acel text, atunci are șanse foarte mici să dea clic și să vă "
7516
- "viziteze pagina. %s Ar merge la următoarea pagină rank-uită pe Google pentru "
7517
- "acel cuvânt cheie. %s Gândiți-vă la acest lucru: Google însuși încearcă din "
7518
- "ce în ce mai mult să afișeze cuvintele cheie în descrierea paginilor pe care "
7519
- "le aduce în TOP 10. Este destul de clar că le pasă foarte mult de acest "
7520
- "lucru, pentru că asta este ceea ce oamenii vor să găsească pe motorul de "
7521
- "căutare."
7522
-
7523
- #: models/bulkseo/Metas.php:93
7524
- msgid "Meta Keywords (2-4 Words)"
7525
- msgstr "Meta cuvinte cheie (2-4 cuvinte)"
7526
-
7527
- #: models/bulkseo/Metas.php:95
7528
- msgid "no meta keywords"
7529
- msgstr "fără cuvinte cheie meta"
7530
-
7531
- #: models/bulkseo/Metas.php:96
7532
- msgid ""
7533
- "Even if Meta keywords are not mandatory for Google, it's important for other "
7534
- "search engines to find this meta and to index your post for these keywords."
7535
- msgstr ""
7536
- "Chiar dacă cuvintele cheie meta nu sunt obligatorii pentru Google, este "
7537
- "important ca alte motoare de căutare să găsească aceste meta și să indexeze "
7538
- "postul dvs. pentru aceste cuvinte cheie."
7539
-
7540
- #: models/bulkseo/Metas.php:100
7541
- msgid "Current Link"
7542
- msgstr "Legătură curentă"
7543
-
7544
- #: models/bulkseo/Metas.php:102
7545
- #, php-format
7546
- msgid ""
7547
- "You don't have to set any canonical link if your post is not copied from "
7548
- "another source. %s Squirrly will alert you if your canonical link is not the "
7549
- "same with the current post's URL. %s The canonical link is used to tell "
7550
- "search engines which URL is the original one. The original is the one that "
7551
- "gets indexed and ranked."
7552
- msgstr ""
7553
- "Nu trebuie să setați nicio legătură canonică dacă postarea dvs. nu este "
7554
- "copiată din altă sursă. %s Squirrly vă va avertiza dacă legătura canonică nu "
7555
- "este aceeași cu URL-ul postului curent. %s Legătura canonică este utilizată "
7556
- "pentru a spune motoarelor de căutare care este URL-ul original. Originalul "
7557
- "este cel care este indexat și clasificat."
7558
-
7559
- #: models/bulkseo/Metas.php:111
7560
- msgid "Some Squirrly Metas are deactivated."
7561
- msgstr "Unele Squirrly Metas sunt dezactivate."
7562
-
7563
- #: models/bulkseo/Metas.php:116
7564
- msgid ""
7565
- "Some Squirrly Metas are not set correctly. Click to open the Assistant in "
7566
- "the right sidebar and follow the instructions."
7567
- msgstr ""
7568
- "Unele Squirrly Metas nu sunt setate corect. Faceți clic pentru a deschide "
7569
- "asistentul din bara laterală din dreapta și urmați instrucțiunile."
7570
-
7571
- #: models/bulkseo/Metas.php:121
7572
- msgid "Some Squirrly Metas are generated automatically."
7573
- msgstr "Unele Squirrly Metas sunt generate automat."
7574
-
7575
- #: models/bulkseo/Metas.php:124
7576
- msgid "All Squirrly Metas are customized and set correctly."
7577
- msgstr "Toate Squirrly Metas sunt personalizate și setate corect."
7578
-
7579
- #: models/bulkseo/Metas.php:154 models/bulkseo/Metas.php:190
7580
- #: models/bulkseo/Metas.php:223 models/bulkseo/Metas.php:267
7581
- #: models/bulkseo/Metas.php:303 models/bulkseo/Metas.php:336
7582
- #: models/bulkseo/Metas.php:384 models/bulkseo/Metas.php:423
7583
- #: models/bulkseo/Opengraph.php:150 models/bulkseo/Opengraph.php:186
7584
- #: models/bulkseo/Opengraph.php:218 models/bulkseo/Opengraph.php:254
7585
- #: models/bulkseo/Opengraph.php:290 models/bulkseo/Twittercard.php:146
7586
- #: models/bulkseo/Twittercard.php:182 models/bulkseo/Twittercard.php:214
7587
- #: models/bulkseo/Twittercard.php:250 models/bulkseo/Twittercard.php:286
7588
- #: models/bulkseo/Visibility.php:86 models/bulkseo/Visibility.php:125
7589
- #: models/bulkseo/Visibility.php:157 models/bulkseo/Visibility.php:181
7590
- msgid "Squirrly Snippet is deactivated from this post."
7591
- msgstr "Squirrly Snippet este dezactivat din acest post."
7592
-
7593
- #: models/bulkseo/Metas.php:158 models/bulkseo/Metas.php:194
7594
- #: models/bulkseo/Metas.php:227 models/bulkseo/Metas.php:271
7595
- #: models/bulkseo/Metas.php:307 models/bulkseo/Metas.php:340
7596
- #: models/bulkseo/Metas.php:388 models/bulkseo/Metas.php:427
7597
- #, php-format
7598
- msgid ""
7599
- "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
7600
- "%s."
7601
- msgstr ""
7602
- "SEO Metas pentru acest tip de post sunt dezactivate din %sSezoniere SEO > "
7603
- "Automatizare%s."
7604
-
7605
- #: models/bulkseo/Metas.php:162 models/bulkseo/Metas.php:198
7606
- #: models/bulkseo/Metas.php:231
7607
- #, php-format
7608
- msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
7609
- msgstr "Meta Title este dezactivat din %sSEO Settings > Metas%s."
7610
-
7611
- #: models/bulkseo/Metas.php:166 models/bulkseo/Metas.php:202
7612
- #: models/bulkseo/Metas.php:235 models/bulkseo/Metas.php:279
7613
- #: models/bulkseo/Metas.php:315 models/bulkseo/Metas.php:348
7614
- #: models/bulkseo/Metas.php:392 models/bulkseo/Metas.php:435
7615
- #, php-format
7616
- msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
7617
- msgstr "SEO Metas este dezactivat din %sSEO Settings > Metas%s."
7618
-
7619
- #: models/bulkseo/Metas.php:175 models/bulkseo/Metas.php:211
7620
- #: models/bulkseo/Opengraph.php:171 models/bulkseo/Opengraph.php:207
7621
- #: models/bulkseo/Twittercard.php:167 models/bulkseo/Twittercard.php:203
7622
- msgid "Title is generated automatically."
7623
- msgstr "Cuvânt cheie in Titlu."
7624
-
7625
- #: models/bulkseo/Metas.php:239 models/bulkseo/Metas.php:352
7626
- #: models/bulkseo/Metas.php:396
7627
- #, php-format
7628
- msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
7629
- msgstr "Meta Keywords este dezactivat din %sSEO Settings > Metas%s."
7630
-
7631
- #: models/bulkseo/Metas.php:275 models/bulkseo/Metas.php:311
7632
- #: models/bulkseo/Metas.php:344
7633
- #, php-format
7634
- msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
7635
- msgstr "Meta Description este dezactivată din %sSEO Settings > Metas%s."
7636
-
7637
- #: models/bulkseo/Metas.php:288 models/bulkseo/Metas.php:325
7638
- #: models/bulkseo/Opengraph.php:239 models/bulkseo/Opengraph.php:275
7639
- #: models/bulkseo/Twittercard.php:235 models/bulkseo/Twittercard.php:271
7640
- msgid "Description is generated automatically."
7641
- msgstr "Descrierea este generată automat."
7642
-
7643
- #: models/bulkseo/Metas.php:431
7644
- #, php-format
7645
- msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
7646
- msgstr "Meta Canonical este dezactivat din %sSEO Settings > Metas%s."
7647
-
7648
- #: models/bulkseo/Opengraph.php:80
7649
- msgid "OG title not empty"
7650
- msgstr "Paginile cu etichete Title goale sunt"
7651
-
7652
- #: models/bulkseo/Opengraph.php:82
7653
- #, php-format
7654
- msgid ""
7655
- "You need to have an Open Graph title for this post. %s It will help you "
7656
- "control the way your post looks when people share this URL to Facebook, "
7657
- "LinkedIN and other social networks. %s It's also important for SEO purposes."
7658
- msgstr ""
7659
- "Trebuie să aveți un titlu Open Graph pentru această postare. %sAcesta vă va "
7660
- "ajuta să controlați modul în care arată postarea dvs. atunci când oamenii "
7661
- "partajează acest URL pe Facebook, LinkedIN și alte rețele sociale. %s Este, "
7662
- "de asemenea, important în scopuri SEO."
7663
-
7664
- #: models/bulkseo/Opengraph.php:85
7665
- #, php-format
7666
- msgid "OG title up to %s chars"
7667
- msgstr "Titlu OG până la %s caractere"
7668
-
7669
- #: models/bulkseo/Opengraph.php:90
7670
- msgid "OG description not empty"
7671
- msgstr "Descrierea OG nu este goală"
7672
-
7673
- #: models/bulkseo/Opengraph.php:92
7674
- #, php-format
7675
- msgid ""
7676
- "You need to have an Open Graph description for this post. %s It will help "
7677
- "you control the way your post looks when people share this URL to Facebook, "
7678
- "LinkedIN and other social networks. %s It's also important for SEO purposes."
7679
- msgstr ""
7680
- "Trebuie să aveți o descriere Open Graph pentru această postare. %sAceasta vă "
7681
- "va ajuta să controlați modul în care arată postarea dvs. atunci când oamenii "
7682
- "partajează acest URL pe Facebook, LinkedIN și alte rețele sociale. %s Este, "
7683
- "de asemenea, important în scopuri SEO."
7684
-
7685
- #: models/bulkseo/Opengraph.php:95
7686
- #, php-format
7687
- msgid "OG description up to %s chars"
7688
- msgstr "Descriere OG până la %s caractere"
7689
-
7690
- #: models/bulkseo/Opengraph.php:100
7691
- msgid "OG Image"
7692
- msgstr "Imagine"
7693
-
7694
- #: models/bulkseo/Opengraph.php:101 models/bulkseo/Twittercard.php:97
7695
- msgid "(featured image)"
7696
- msgstr "Folosește imagini in conținut sau imagine featured"
7697
-
7698
- #: models/bulkseo/Opengraph.php:102
7699
- #, php-format
7700
- msgid ""
7701
- "Set a good looking image for your URL. It needs to look good in Facebook and "
7702
- "LinkedIN feeds when people will share this URL. %s A great image will "
7703
- "attract more clicks to your site."
7704
- msgstr ""
7705
- "Stabiliți o imagine frumoasă pentru URL-ul dvs. Aceasta trebuie să arate "
7706
- "bine în fluxurile Facebook și LinkedIN atunci când oamenii vor distribui "
7707
- "acest URL. %sO imagine bună va atrage mai multe click-uri pe site-ul dvs."
7708
-
7709
- #: models/bulkseo/Opengraph.php:116
7710
- msgid "Open Graph is deactivated."
7711
- msgstr "Open Graph este dezactivat."
7712
-
7713
- #: models/bulkseo/Opengraph.php:121
7714
- msgid ""
7715
- "Open Graph is not set correctly. Click to open the Assistant in the right "
7716
- "sidebar and follow the instructions."
7717
- msgstr ""
7718
- "Open Graph nu este setat corect. Faceți clic pentru a deschide asistentul "
7719
- "din bara laterală din dreapta și urmați instrucțiunile."
7720
-
7721
- #: models/bulkseo/Opengraph.php:126
7722
- msgid "Open Graph is generated automatically."
7723
- msgstr "Open Graph este generat automat."
7724
-
7725
- #: models/bulkseo/Opengraph.php:129
7726
- msgid "Open Graph is customized and set correctly."
7727
- msgstr "Open Graph este personalizat și setat corect."
7728
-
7729
- #: models/bulkseo/Opengraph.php:154 models/bulkseo/Opengraph.php:190
7730
- #: models/bulkseo/Opengraph.php:222 models/bulkseo/Opengraph.php:258
7731
- #: models/bulkseo/Opengraph.php:294
7732
- #, php-format
7733
- msgid ""
7734
- "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
7735
- "%s."
7736
- msgstr ""
7737
- "Open Graph pentru acest tip de articol este dezactivat din %sSelecții SEO > "
7738
- "Automatizare%s."
7739
-
7740
- #: models/bulkseo/Opengraph.php:158 models/bulkseo/Opengraph.php:194
7741
- #: models/bulkseo/Opengraph.php:226 models/bulkseo/Opengraph.php:262
7742
- #: models/bulkseo/Opengraph.php:298
7743
- #, php-format
7744
- msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
7745
- msgstr "Open Graph este dezactivat de la %sSEO Settings > Social Media%s."
7746
-
7747
- #: models/bulkseo/Opengraph.php:162 models/bulkseo/Opengraph.php:198
7748
- #: models/bulkseo/Opengraph.php:230 models/bulkseo/Opengraph.php:266
7749
- #: models/bulkseo/Opengraph.php:302 models/bulkseo/Twittercard.php:158
7750
- #: models/bulkseo/Twittercard.php:194 models/bulkseo/Twittercard.php:226
7751
- #: models/bulkseo/Twittercard.php:262 models/bulkseo/Twittercard.php:298
7752
- #, php-format
7753
- msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
7754
- msgstr "Social Media este dezactivată din %sSEO Settings > Social Media%s."
7755
-
7756
- #: models/bulkseo/Twittercard.php:76
7757
- msgid "TC title not empty"
7758
- msgstr "Titlul TC nu este gol"
7759
-
7760
- #: models/bulkseo/Twittercard.php:78
7761
- #, php-format
7762
- msgid ""
7763
- "You need to have a title for the Twitter Card of this post. %s It will help "
7764
- "you control the way your post looks when it's shared on Twitter. %s It's "
7765
- "also important for SEO purposes."
7766
- msgstr ""
7767
- "Trebuie să aveți un titlu pentru Twitter Cardul acestei postări. %sAcesta vă "
7768
- "va ajuta să controlați modul în care arată postarea dvs. atunci când este "
7769
- "partajată pe Twitter. %s Este, de asemenea, important în scopuri SEO."
7770
-
7771
- #: models/bulkseo/Twittercard.php:81
7772
- #, php-format
7773
- msgid "TC title up to %s chars"
7774
- msgstr "Titlul TC până la %s caractere"
7775
-
7776
- #: models/bulkseo/Twittercard.php:86
7777
- msgid "TC Description not empty"
7778
- msgstr "TC Descriere necompletă"
7779
-
7780
- #: models/bulkseo/Twittercard.php:88
7781
- #, php-format
7782
- msgid ""
7783
- "You need to have a Twitter Card description for this post. %s It will help "
7784
- "you control the way your post looks when people share this URL on Twitter. "
7785
- "Good copywriting on your Twitter Card description will attract more clicks "
7786
- "to your site. %s It's also important for SEO purposes."
7787
- msgstr ""
7788
- "Trebuie să aveți o descriere a cardului Twitter pentru această postare. "
7789
- "%sAceasta vă va ajuta să controlați modul în care arată postarea dvs. atunci "
7790
- "când oamenii partajează acest URL pe Twitter. Un bun copywriting pe "
7791
- "descrierea Twitter Card va atrage mai multe click-uri pe site-ul dvs. %s "
7792
- "Este, de asemenea, important în scopuri SEO."
7793
-
7794
- #: models/bulkseo/Twittercard.php:91
7795
- #, php-format
7796
- msgid "TC description up to %s chars"
7797
- msgstr "Descriere TC până la %s caractere"
7798
-
7799
- #: models/bulkseo/Twittercard.php:96
7800
- msgid "TC Image"
7801
- msgstr "TC Image"
7802
-
7803
- #: models/bulkseo/Twittercard.php:98
7804
- #, php-format
7805
- msgid ""
7806
- "Set a good looking image for your URL. It needs to look good in Twitter "
7807
- "feeds when people will share this URL. %s A great image will attract more "
7808
- "clicks to your site."
7809
- msgstr ""
7810
- "Stabiliți o imagine frumoasă pentru URL-ul dvs. Aceasta trebuie să arate "
7811
- "bine în fluxurile Twitter atunci când oamenii vor distribui acest URL. %sO "
7812
- "imagine bună va atrage mai multe click-uri pe site-ul dvs."
7813
-
7814
- #: models/bulkseo/Twittercard.php:112
7815
- msgid "Twitter Card is deactivated."
7816
- msgstr "Cardul Twitter este dezactivat."
7817
-
7818
- #: models/bulkseo/Twittercard.php:117
7819
- msgid ""
7820
- "Twitter Card is not set correctly. Click to open the Assistant in the right "
7821
- "sidebar and follow the instructions."
7822
- msgstr ""
7823
- "Twitter Card nu este setat corect. Faceți clic pentru a deschide asistentul "
7824
- "din bara laterală din dreapta și urmați instrucțiunile."
7825
-
7826
- #: models/bulkseo/Twittercard.php:122
7827
- msgid "Twitter Card is generated automatically."
7828
- msgstr "Cardul Twitter este generat automat."
7829
-
7830
- #: models/bulkseo/Twittercard.php:125
7831
- msgid "Twitter Card is customized and set correctly."
7832
- msgstr "Twitter Card este personalizat și setat corect."
7833
-
7834
- #: models/bulkseo/Twittercard.php:150 models/bulkseo/Twittercard.php:186
7835
- #: models/bulkseo/Twittercard.php:218 models/bulkseo/Twittercard.php:254
7836
- #: models/bulkseo/Twittercard.php:290
7837
- #, php-format
7838
- msgid ""
7839
- "Twitter Card for this post type is deactivated from %sSEO Settings > "
7840
- "Automation%s."
7841
- msgstr ""
7842
- "Twitter Card pentru acest tip de articol este dezactivat din %sSEO Settings "
7843
- "> Automation%s."
7844
-
7845
- #: models/bulkseo/Twittercard.php:154 models/bulkseo/Twittercard.php:190
7846
- #: models/bulkseo/Twittercard.php:222 models/bulkseo/Twittercard.php:258
7847
- #: models/bulkseo/Twittercard.php:294
7848
- #, php-format
7849
- msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
7850
- msgstr "Twitter Card este dezactivat din %sSEO Settings > Social Media%s."
7851
-
7852
- #: models/bulkseo/Visibility.php:27
7853
- msgid "Visible on Google"
7854
- msgstr "Vizibil pe Google"
7855
-
7856
- #: models/bulkseo/Visibility.php:28
7857
- #, php-format
7858
- msgid ""
7859
- "Let Google Index this page. %s You need to make sure your settings are "
7860
- "turned to green for the 'let Google index this page' section of this URL's "
7861
- "visibility settings."
7862
- msgstr ""
7863
- "Lăsați Google să indexeze această pagină. %s Trebuie să vă asigurați că "
7864
- "setările dvs. sunt pe verde pentru secțiunea \"permiteți Google să indexeze "
7865
- "această pagină\" din setările de vizibilitate ale acestui URL."
7866
-
7867
- #: models/bulkseo/Visibility.php:31 view/Blocks/Snippet.php:1186
7868
- msgid "Send Authority to this page"
7869
- msgstr "Autoritate de pagină"
7870
-
7871
- #: models/bulkseo/Visibility.php:32
7872
- #, php-format
7873
- msgid ""
7874
- "Pass SEO authority to this page. %s If you want this page to really be "
7875
- "visible, then you must allow the flow of authority from the previous pages "
7876
- "to this one. %s The previous page means any page that leads to the current "
7877
- "one. Passing authority from the previous page to this one will improve the "
7878
- "current page's visibility. %s You need to make sure your settings are turned "
7879
- "to green for the 'Pass Link Juice' section of this URL's visibility settings."
7880
- msgstr ""
7881
- "Transmiteți autoritatea SEO către această pagină. %s Dacă doriți ca această "
7882
- "pagină să fie cu adevărat vizibilă, atunci trebuie să permiteți fluxul de "
7883
- "autoritate de la paginile anterioare către aceasta. %s Pagina anterioară "
7884
- "înseamnă orice pagină care duce la cea actuală. Transmiterea autorității de "
7885
- "la pagina anterioară către aceasta va îmbunătăți vizibilitatea paginii "
7886
- "actuale. %s Trebuie să vă asigurați că setările dvs. sunt pe verde pentru "
7887
- "secțiunea \"Pass Link Juice\" din setările de vizibilitate ale acestui URL."
7888
-
7889
- #: models/bulkseo/Visibility.php:35
7890
- msgid "Add page in sitemap"
7891
- msgstr "Adăugați pagina"
7892
-
7893
- #: models/bulkseo/Visibility.php:36
7894
- #, php-format
7895
- msgid ""
7896
- "Turn the 'Show it in Sitemap.xml' toggle to green (ON). %s That setting "
7897
- "helps you control if the current URL should be found within the sitemap. "
7898
- "There are pages you will want in the sitemap, and pages that you will want "
7899
- "out of the sitemap. %s If your purpose is to maximize visibility for the "
7900
- "current URL, then you need to add it to Sitemap."
7901
- msgstr ""
7902
- "Treceți comutatorul \"Show it in Sitemap.xml\" la verde (ON). %s Această "
7903
- "setare vă ajută să controlați dacă URL-ul curent ar trebui să se regăsească "
7904
- "în sitemap. Există pagini pe care le veți dori în sitemap și pagini pe care "
7905
- "le veți dori în afara sitemap-ului. %s Dacă scopul dvs. este de a maximiza "
7906
- "vizibilitatea pentru URL-ul curent, atunci trebuie să îl adăugați la Sitemap."
7907
-
7908
- #: models/bulkseo/Visibility.php:39 view/Blocks/Snippet.php:1233
7909
- msgid "301 Redirect"
7910
- msgstr "Redirecționare 301"
7911
-
7912
- #: models/bulkseo/Visibility.php:40
7913
- msgid "Current Redirect"
7914
- msgstr "Actual"
7915
-
7916
- #: models/bulkseo/Visibility.php:41
7917
- msgid "No Redirects"
7918
- msgstr "Fără redirecționări"
7919
-
7920
- #: models/bulkseo/Visibility.php:42
7921
- #, php-format
7922
- msgid ""
7923
- "You don't have to set any redirect link if you don't want to redirect to a "
7924
- "different URL. %s Squirrly will alert you if you add a redirect URL to make "
7925
- "sure you know what you're doing. %s The redirect link will be used to "
7926
- "redirect visitors to a different URL when they access the URL of the current "
7927
- "post."
7928
- msgstr ""
7929
- "Nu trebuie să setați niciun link de redirecționare dacă nu doriți să "
7930
- "redirecționați către o altă adresă URL. %s Squirrly vă va alerta dacă "
7931
- "adăugați un URL de redirecționare pentru a se asigura că știți ce faceți. %s "
7932
- "Linkul de redirecționare va fi utilizat pentru a redirecționa vizitatorii "
7933
- "către un alt URL atunci când accesează URL-ul postării curente."
7934
-
7935
- #: models/bulkseo/Visibility.php:56
7936
- msgid "Some visibility options are inactive."
7937
- msgstr "Unele opțiuni de vizibilitate sunt inactive."
7938
-
7939
- #: models/bulkseo/Visibility.php:61
7940
- msgid ""
7941
- "Visibility is not set correctly. Click to open the Assistant in the right "
7942
- "sidebar and follow the instructions."
7943
- msgstr ""
7944
- "Vizibilitatea nu este setată corect. Faceți clic pentru a deschide "
7945
- "asistentul din bara laterală din dreapta și urmați instrucțiunile."
7946
-
7947
- #: models/bulkseo/Visibility.php:65
7948
- msgid "Visibility is set correctly."
7949
- msgstr "Vizibilitatea este setată corect."
7950
-
7951
- #: models/bulkseo/Visibility.php:90
7952
- #, php-format
7953
- msgid ""
7954
- "Noindex for this post type is deactivated from %sSEO Settings > Automation%s."
7955
- msgstr ""
7956
- "Noindex pentru acest tip de post este dezactivat din %sSEO Settings > "
7957
- "Automation%s."
7958
-
7959
- #: models/bulkseo/Visibility.php:94 models/bulkseo/Visibility.php:133
7960
- #, php-format
7961
- msgid "Robots Meta is deactivated from %sSEO Settings > SEO Metas%s."
7962
- msgstr "Robots Meta este dezactivat din %sSEO Settings > SEO Metas%s."
7963
-
7964
- #: models/bulkseo/Visibility.php:98 models/bulkseo/Visibility.php:137
7965
- #, php-format
7966
- msgid "SEO Metas is deactivated from %sSEO Settings > SEO Metas%s."
7967
- msgstr "SEO Metas este dezactivat din %sSEO Settings > SEO Metas%s."
7968
-
7969
- #: models/bulkseo/Visibility.php:107
7970
- #, php-format
7971
- msgid ""
7972
- "You selected '%s' in Settings > Reading. It's important to uncheck that "
7973
- "option."
7974
- msgstr ""
7975
- "Ați selectat \"%s\" în Setări > Citire. Este important să debifați această "
7976
- "opțiune."
7977
-
7978
- #: models/bulkseo/Visibility.php:129
7979
- #, php-format
7980
- msgid ""
7981
- "Nofollow for this post type is deactivated from %sSEO Settings > Automation"
7982
- "%s."
7983
- msgstr ""
7984
- "Nofollow pentru acest tip de articol este dezactivat din %sSelecții SEO > "
7985
- "Automatizare%s."
7986
-
7987
- #: models/bulkseo/Visibility.php:161
7988
- #, php-format
7989
- msgid ""
7990
- "This post type is excluded from sitemap. See %sSEO Settings > Automation%s."
7991
- msgstr ""
7992
- "Acest tip de post este exclus din sitemap. Consultați %sSetări SEO > "
7993
- "Automatizare%s."
7994
-
7995
- #: models/bulkseo/Visibility.php:165
7996
- #, php-format
7997
- msgid "Sitemap XML is deactivated from %sSEO Settings > Sitemap XML%s."
7998
- msgstr "Sitemap XML este dezactivat din %sSEO Settings > Sitemap XML%s."
7999
-
8000
- #: models/bulkseo/Visibility.php:185
8001
- #, php-format
8002
- msgid "Redirect is deactivated from %sSEO Settings > SEO Links%s."
8003
- msgstr "Redirecționarea este dezactivată de la %sSetări SEO > Linkuri SEO%s."
8004
-
8005
- #: models/domain/Patterns.php:367
8006
- msgid "Page"
8007
- msgstr "Pagină"
8008
-
8009
- #: models/domain/Patterns.php:368
8010
- msgid "of"
8011
- msgstr "din"
8012
-
8013
- #: models/focuspages/Accuracy.php:21
8014
- msgid "Rank accuracy"
8015
- msgstr "Precizia clasamentului"
8016
-
8017
- #: models/focuspages/Accuracy.php:22
8018
- #, php-format
8019
- msgid ""
8020
- "Do you need better accuracy for your ranking results? %s Look at the "
8021
- "%sBusiness Plan%s pricing for Squirrly SEO. %s The SERP Checker Available on "
8022
- "FREE and PRO Plans is made via Search Console integration, which means that "
8023
- "the information is not as accurate as possible and will not clearly depict "
8024
- "the exact position in Google. %s Why? %s Google uses an average when it "
8025
- "comes to the position. And it's not the true position. The average is made "
8026
- "according to the positions that the page was found on when users did click "
8027
- "on it. %s Also, the data inside Search Console is a bit old, so if you're "
8028
- "actively trying to increase your rankings day in and day out, you need the "
8029
- "Business Plan. %s If you just want casually to know your rankings and not "
8030
- "care about FULL accuracy, then you can stick with your current plan."
8031
- msgstr ""
8032
- "Aveți nevoie de o precizie mai bună pentru rezultatele clasamentului "
8033
- "dumneavoastră? %s Uitați-vă la %sPlanul de afaceri%s prețurile pentru "
8034
- "Squirrly SEO. %s SERP Checker-ul disponibil în planurile FREE și PRO este "
8035
- "realizat prin integrarea Search Console, ceea ce înseamnă că informațiile nu "
8036
- "sunt cât se poate de exacte și nu vor descrie clar poziția exactă în Google. "
8037
- "%s De ce? %s Google folosește o medie atunci când vine vorba de poziție. Și "
8038
- "nu este poziția reală. Media este făcută în funcție de pozițiile pe care "
8039
- "pagina a fost găsită atunci când utilizatorii au dat click pe ea. %s De "
8040
- "asemenea, datele din Search Console sunt puțin cam vechi, așa că, dacă "
8041
- "încercați în mod activ să vă creșteți poziționarea zi de zi, aveți nevoie de "
8042
- "Planul de afaceri. %s Dacă doriți doar ocazional să vă cunoașteți "
8043
- "clasamentele și nu vă interesează acuratețea COMPLETĂ, atunci puteți rămâne "
8044
- "cu planul dvs. actual."
8045
-
8046
- #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
8047
- #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
8048
- #: models/focuspages/Indexability.php:95 models/focuspages/Traffic.php:101
8049
- msgid "Connect Google Search"
8050
- msgstr "Conectați Google Search"
8051
-
8052
- #: models/focuspages/Audit.php:101
8053
- #, php-format
8054
- msgid "Audit score is over %s"
8055
- msgstr "Scorul auditului este peste %s"
8056
-
8057
- #: models/focuspages/Audit.php:104
8058
- #, php-format
8059
- msgid ""
8060
- "Even though we recommend getting an Audit score of 84 or above, a score of "
8061
- "%s will do. %s The %sAudit%s made by Squirrly takes a lot of things into "
8062
- "account: blogging, SEO, social media, links, authority, traffic. All these "
8063
- "aspects contribute directly or indirectly to the overall SEO of your site. "
8064
- "%s Therefore, without a good score on your Audit it's quite probable for "
8065
- "Google not to position your pages high enough, because overall your website "
8066
- "is not doing good enough for it to be considered a priority. %s A page will "
8067
- "not rank high if most of the website has low quality SEO and low marketing "
8068
- "metrics."
8069
- msgstr ""
8070
- "Chiar dacă vă recomandăm să obțineți un scor de audit de 84 sau mai mare, un "
8071
- "scor de %s este suficient. %s %sAudit%s realizat de Squirrly ia în "
8072
- "considerare o mulțime de lucruri: blogging, SEO, social media, link-uri, "
8073
- "autoritate, trafic. Toate aceste aspecte contribuie direct sau indirect la "
8074
- "SEO-ul general al site-ului dumneavoastră. %s Prin urmare, fără un scor bun "
8075
- "la Audit, este foarte probabil ca Google să nu vă poziționeze paginile "
8076
- "suficient de sus, deoarece, în general, site-ul dvs. nu se descurcă "
8077
- "suficient de bine pentru a fi considerat o prioritate. %s O pagină nu va fi "
8078
- "poziționată sus dacă cea mai mare parte a site-ului are o calitate scăzută a "
8079
- "SEO și parametri de marketing slabi."
8080
-
8081
- #: models/focuspages/Audit.php:107
8082
- msgid "No duplicate titles"
8083
- msgstr "Nu există titluri duplicate"
8084
-
8085
- #: models/focuspages/Audit.php:108
8086
- #, php-format
8087
- msgid ""
8088
- "Make sure that you don't have duplicate titles across pages from your site. "
8089
- "%s If you do, then use canonical links to point the duplicate pages towards "
8090
- "the original. %s Otherwise, if it's too hard to customize too many titles at "
8091
- "once, simply use the Patterns feature from Squirrly. You'll be able to "
8092
- "define patterns, so that your titles will seem to be unique. %s Go to "
8093
- "%sSquirrly > SEO Settings > Automation%s. There you will find the Patterns "
8094
- "tab."
8095
- msgstr ""
8096
- "Asigurați-vă că nu aveți titluri duplicate pe toate paginile de pe site-ul "
8097
- "dumneavoastră. %sDacă da, folosiți linkuri canonice pentru a îndrepta "
8098
- "paginile duplicate către cele originale. %s În caz contrar, dacă este prea "
8099
- "greu să personalizați prea multe titluri deodată, folosiți pur și simplu "
8100
- "funcția Patterns din Squirrly. Veți putea defini modele, astfel încât "
8101
- "titlurile dvs. să pară unice. %s Mergeți la %sSquirrly > Setări SEO > "
8102
- "Automatizare%s. Acolo veți găsi fila Patterns (Modele)."
8103
-
8104
- #: models/focuspages/Audit.php:111
8105
- msgid "No duplicate description"
8106
- msgstr "Nici o descriere duplicată"
8107
-
8108
- #: models/focuspages/Audit.php:112
8109
- #, php-format
8110
- msgid ""
8111
- "Make sure that your pages do not have duplicate descriptions. %s This is "
8112
- "super easy to fix if you're using the SEO Automation feature from Squirrly "
8113
- "SEO, because it will generate your META description automatically from the "
8114
- "content of your page (in case you didn't already place a custom "
8115
- "description). %s If you want to fix this problem by giving the problematic "
8116
- "pages their own custom descriptions: go to the %sSquirrly SEO > Bulk SEO%s "
8117
- "and see which pages have this problem."
8118
- msgstr ""
8119
- "Asigurați-vă că paginile dvs. nu au descrieri duplicate. %s Acest lucru este "
8120
- "foarte ușor de rezolvat dacă folosiți funcția SEO Automation din Squirrly "
8121
- "SEO, deoarece aceasta va genera automat descrierea META din conținutul "
8122
- "paginii (în cazul în care nu ați plasat deja o descriere personalizată). %s "
8123
- "Dacă doriți să remediați această problemă, oferindu-le paginilor "
8124
- "problematice propriile lor descrieri personalizate: mergeți la %sSquirrly "
8125
- "SEO > Bulk SEO%s și vedeți ce pagini au această problemă."
8126
-
8127
- #: models/focuspages/Audit.php:115
8128
- msgid "No empty titles"
8129
- msgstr "Fără titluri goale"
8130
-
8131
- #: models/focuspages/Audit.php:116
8132
- #, php-format
8133
- msgid ""
8134
- "Make sure that you do not have pages with empty titles. %s This means: pages "
8135
- "where you haven't placed a meta title in your Snippet. %s Features like SEO "
8136
- "Automation or SEO Snippet from Squirrly SEO will help you easily fix this "
8137
- "problem by either automating or customizing descriptions for your pages."
8138
- msgstr ""
8139
- "Asigurați-vă că nu aveți pagini cu titluri goale. %s Aceasta înseamnă: "
8140
- "pagini în care nu ați plasat un metatitlu în Snippet. %s Funcții precum SEO "
8141
- "Automation sau SEO Snippet de la Squirrly SEO vă vor ajuta să rezolvați cu "
8142
- "ușurință această problemă, fie prin automatizarea, fie prin personalizarea "
8143
- "descrierilor pentru paginile dvs."
8144
-
8145
- #: models/focuspages/Audit.php:119
8146
- msgid "No empty descriptions"
8147
- msgstr "Nu există descrieri goale"
8148
-
8149
- #: models/focuspages/Audit.php:120
8150
- #, php-format
8151
- msgid ""
8152
- "Make sure that you do not have pages with empty descriptions. %s This means: "
8153
- "pages where you haven't placed a meta description. %s Features like SEO "
8154
- "Automation or SEO Snippet from Squirrly SEO will help you easily fix this "
8155
- "problem by either automating or customizing descriptions for your pages."
8156
- msgstr ""
8157
- "Asigurați-vă că nu aveți pagini cu descrieri goale. %s Aceasta înseamnă: "
8158
- "pagini în care nu ați plasat o meta descriere. %s Funcții precum SEO "
8159
- "Automation sau SEO Snippet de la Squirrly SEO vă vor ajuta să rezolvați cu "
8160
- "ușurință această problemă, fie prin automatizarea, fie prin personalizarea "
8161
- "descrierilor pentru paginile dvs."
8162
-
8163
- #: models/focuspages/Audit.php:123
8164
- msgid "SEO speed"
8165
- msgstr "Viteza SEO"
8166
-
8167
- #: models/focuspages/Audit.php:124
8168
- msgid "sec"
8169
- msgstr "sec"
8170
-
8171
- #: models/focuspages/Audit.php:125
8172
- #, php-format
8173
- msgid ""
8174
- "You need to get good loading times for your pages. %s Good loading times "
8175
- "will help you rank higher in Google, while pages that load very slowly will "
8176
- "drag you down in search results."
8177
- msgstr ""
8178
- "Trebuie să obțineți timpi de încărcare buni pentru paginile dumneavoastră. "
8179
- "%sTimpii de încărcare buni vă vor ajuta să vă poziționați mai bine în "
8180
- "Google, în timp ce paginile care se încarcă foarte încet vă vor trage în jos "
8181
- "în rezultatele căutărilor."
8182
-
8183
- #: models/focuspages/Audit.php:128
8184
- msgid "Mobile-friendly"
8185
- msgstr "Mobil"
8186
-
8187
- #: models/focuspages/Audit.php:129
8188
- #, php-format
8189
- msgid ""
8190
- "Your website must be mobile friendly. %s It used to be an optional thing for "
8191
- "Google until now, but it made it quite mandatory. %s Google prefers to "
8192
- "display sites which are mobile friendly higher in search results, because "
8193
- "most people search using mobile devices these days."
8194
- msgstr ""
8195
- "Site-ul dvs. trebuie să fie compatibil cu dispozitivele mobile. %s Până "
8196
- "acum, era un lucru opțional pentru Google, dar a devenit obligatoriu. %s "
8197
- "Google preferă să afișeze site-urile care sunt mobile friendly mai sus în "
8198
- "rezultatele de căutare, deoarece majoritatea oamenilor caută folosind "
8199
- "dispozitive mobile în zilele noastre."
8200
-
8201
- #: models/focuspages/Audit.php:149
8202
- msgid "Go to Audit"
8203
- msgstr "Mergeți la Audit"
8204
-
8205
- #: models/focuspages/Audit.php:151
8206
- msgid "Note! The audit is not ready yet"
8207
- msgstr "Notă! Auditul nu este încă gata"
8208
-
8209
- #: models/focuspages/Audit.php:152
8210
- msgid "Request a new audit"
8211
- msgstr "Solicitați un nou audit"
8212
-
8213
- #: models/focuspages/Authority.php:58
8214
- #, php-format
8215
- msgid "Authority over %s"
8216
- msgstr "Autoritatea asupra %s"
8217
-
8218
- #: models/focuspages/Authority.php:60
8219
- #, php-format
8220
- msgid ""
8221
- "Your Page Authority Needs to be over %s to complete this task. %s To do that "
8222
- "you'll need good metrics for all the tasks in the Traffic Health section of "
8223
- "Focus Pages. %s You'll also need inner links, social media signals and "
8224
- "backlinks from 3rd party sites."
8225
- msgstr ""
8226
- "Autoritatea paginii dvs. trebuie să fie peste %s pentru a finaliza această "
8227
- "sarcină. %s Pentru a face acest lucru, veți avea nevoie de măsurători bune "
8228
- "pentru toate sarcinile din secțiunea Sănătatea traficului din Focus Pages. "
8229
- "%s De asemenea, vei avea nevoie de link-uri interne, semnale de social media "
8230
- "și backlink-uri de la site-uri terțe."
8231
-
8232
- #: models/focuspages/Authority.php:77 models/focuspages/Backlinks.php:81
8233
- #: models/focuspages/Clicks.php:112 models/focuspages/Content.php:127
8234
- #: models/focuspages/Ctr.php:112 models/focuspages/Image.php:126
8235
- #: models/focuspages/Impressions.php:112 models/focuspages/Indexability.php:125
8236
- #: models/focuspages/Innerlinks.php:86 models/focuspages/Keyword.php:133
8237
- #: models/focuspages/Length.php:89 models/focuspages/Nofollow.php:77
8238
- #: models/focuspages/Onpage.php:96 models/focuspages/Ranking.php:48
8239
- #: models/focuspages/Snippet.php:203 models/focuspages/Social.php:85
8240
- #: models/focuspages/Strategy.php:134 models/focuspages/Traffic.php:127
8241
- msgid ""
8242
- "Click to open the Assistant in the right sidebar and follow the instructions."
8243
- msgstr ""
8244
- "Faceți clic pentru a deschide Asistentul în bara laterală dreaptă și urmați "
8245
- "instrucțiunile."
8246
-
8247
- #: models/focuspages/Backlinks.php:58
8248
- #, php-format
8249
- msgid "At Least %s MOZ BackLinks"
8250
- msgstr "Cel puțin %s MOZ BackLinks MOZ"
8251
-
8252
- #: models/focuspages/Backlinks.php:59 models/focuspages/Backlinks.php:70
8253
- msgid "backlinks"
8254
- msgstr "backlinks"
8255
-
8256
- #: models/focuspages/Backlinks.php:64
8257
- #, php-format
8258
- msgid "At Least %s Referring Domains"
8259
- msgstr "Cel puțin %s Domenii de referință"
8260
-
8261
- #: models/focuspages/Backlinks.php:65
8262
- msgid "unique domains"
8263
- msgstr "domenii unice"
8264
-
8265
- #: models/focuspages/Backlinks.php:69
8266
- #, php-format
8267
- msgid "At Least %s Majestic SEO Links"
8268
- msgstr "Cel puțin %s Majestic SEO Links"
8269
-
8270
- #: models/focuspages/Clicks.php:42
8271
- msgid "Clicks from Search Engine in the last 3 months"
8272
- msgstr "Clicuri din motorul de căutare în ultimele 3 luni"
8273
-
8274
- #: models/focuspages/Clicks.php:65 models/focuspages/Clicks.php:74
8275
- #: models/focuspages/Content.php:104 models/focuspages/Ctr.php:65
8276
- #: models/focuspages/Ctr.php:74 models/focuspages/Image.php:106
8277
- #: models/focuspages/Impressions.php:65 models/focuspages/Impressions.php:74
8278
- #: models/focuspages/Keyword.php:101 models/focuspages/Keyword.php:110
8279
- #: models/focuspages/Strategy.php:112 view/Research/Briefcase.php:259
8280
- msgid "Do a research"
8281
- msgstr "Mai multe detalii"
8282
-
8283
- #: models/focuspages/Clicks.php:73 models/focuspages/Content.php:103
8284
- #: models/focuspages/Ctr.php:73 models/focuspages/Image.php:105
8285
- #: models/focuspages/Impressions.php:73 models/focuspages/Keyword.php:108
8286
- #: models/focuspages/Snippet.php:188 models/focuspages/Strategy.php:111
8287
- msgid "No Keyword found in Squirrly Live Assistant"
8288
- msgstr "Niciun cuvânt cheie găsit în Squirrly Live Assistant"
8289
-
8290
- #: models/focuspages/Clicks.php:76 models/focuspages/Content.php:107
8291
- #: models/focuspages/Ctr.php:76 models/focuspages/Image.php:112
8292
- #: models/focuspages/Impressions.php:76 models/focuspages/Keyword.php:111
8293
- #: models/focuspages/Strategy.php:114
8294
- msgid "Optimize for a keyword"
8295
- msgstr "Optimizați pentru un cuvânt cheie"
8296
-
8297
- #: models/focuspages/Clicks.php:106 models/focuspages/Content.php:123
8298
- #: models/focuspages/Ctr.php:106 models/focuspages/Impressions.php:106
8299
- #: models/focuspages/Keyword.php:129 models/focuspages/Strategy.php:130
8300
- msgid ""
8301
- "Optimize the page for a keyword. Click to open the Assistant in the right "
8302
- "sidebar and follow the instructions."
8303
- msgstr ""
8304
- "Optimizați pagina pentru un cuvânt cheie. Faceți clic pentru a deschide "
8305
- "asistentul din bara laterală din dreapta și urmați instrucțiunile."
8306
-
8307
- #: models/focuspages/Clicks.php:108 models/focuspages/Ctr.php:108
8308
- #: models/focuspages/Impressions.php:108
8309
- msgid "Connect to Google Search Console."
8310
- msgstr "Conectați-vă la Google Search Console."
8311
-
8312
- #: models/focuspages/Content.php:46
8313
- #, php-format
8314
- msgid "Optimize to %s"
8315
- msgstr "Optimizarea la %s"
8316
-
8317
- #: models/focuspages/Content.php:48
8318
- #, php-format
8319
- msgid ""
8320
- "Make sure this Focus Page is optimized to %s using the %sSquirrly SEO Live "
8321
- "Assistant%s. %s As you can see clearly on Google search result pages, "
8322
- "Googles tries to find the closest match (inside web content) to what the "
8323
- "user searched for. %s That is why using this method of optimizing a page as "
8324
- "outlined by the Live Assistant feature is mandatory. %s Don't worry about "
8325
- "over-optimizing anything, as the Live Assistant checks for many over-"
8326
- "optimization traps you may fall into."
8327
- msgstr ""
8328
- "Asigurați-vă că această pagină Focus este optimizată pentru %s folosind "
8329
- "%sSquirrly SEO Live Assistant%s. %s După cum puteți vedea clar pe paginile "
8330
- "de rezultate ale căutării Google, Googles încearcă să găsească cea mai "
8331
- "apropiată potrivire (în interiorul conținutului web) de ceea ce a căutat "
8332
- "utilizatorul. %s De aceea, utilizarea acestei metode de optimizare a unei "
8333
- "pagini, așa cum este prezentată de funcția Live Assistant, este obligatorie. "
8334
- "%s Nu vă faceți griji cu privire la supra-optimizarea a ceva, deoarece Live "
8335
- "Assistant verifică multe capcane de supra-optimizare în care ați putea cădea."
8336
-
8337
- #: models/focuspages/Content.php:51
8338
- msgid "Snippet is green"
8339
- msgstr "Snippet este verde"
8340
-
8341
- #: models/focuspages/Content.php:52
8342
- #, php-format
8343
- msgid ""
8344
- "The tasks inside the %sSnippet%s section of the Focus Pages feature must all "
8345
- "be turned green. %s Why? %s If the Snippet elements are Not green, then your "
8346
- "Focus Page is not 100%% optimized. %s We've built this SEO Content section "
8347
- "especially because we wanted to help you understand that there's a lot more "
8348
- "to On-Page SEO than just a content analysis, or a snippet. You need all "
8349
- "these elements working together in order to achieve high rankings."
8350
- msgstr ""
8351
- "Sarcinile din secțiunea %sSnippet%s a funcției Focus Pages trebuie să fie "
8352
- "toate de culoare verde. %s De ce? %s Dacă elementele Snippet nu sunt verzi, "
8353
- "înseamnă că pagina dvs. Focus Page nu este 100%% optimizată. %s Am construit "
8354
- "această secțiune de Conținut SEO în mod special pentru că am vrut să vă "
8355
- "ajutăm să înțelegeți că există mult mai mult decât o analiză de conținut sau "
8356
- "un snippet pentru SEO On-Page. Aveți nevoie de toate aceste elemente care "
8357
- "lucrează împreună pentru a obține poziții înalte."
8358
-
8359
- #: models/focuspages/Content.php:55
8360
- msgid "Platform SEO is green"
8361
- msgstr "Platforma SEO este verde"
8362
-
8363
- #: models/focuspages/Content.php:56
8364
- #, php-format
8365
- msgid ""
8366
- "Make sure that the Platform SEO section is green for this Focus Page. %s "
8367
- "Because WordPress is such a vast CMS with many customization possibilities, "
8368
- "it happens to many website owners, business owners and developers, that "
8369
- "custom post types from their site remain completely without SEO codes and "
8370
- "other important settings. %s This task makes sure that everything is "
8371
- "properly set up."
8372
- msgstr ""
8373
- "Asigurați-vă că secțiunea Platform SEO este verde pentru această pagină "
8374
- "Focus Page. %s Deoarece WordPress este un CMS atât de vast, cu multe "
8375
- "posibilități de personalizare, se întâmplă multor proprietari de site-uri "
8376
- "web, proprietari de afaceri și dezvoltatori, ca tipurile de postări "
8377
- "personalizate de pe site-ul lor să rămână complet fără coduri SEO și alte "
8378
- "setări importante. %s Această sarcină se asigură că totul este configurat "
8379
- "corespunzător."
8380
-
8381
- #: models/focuspages/Content.php:59
8382
- msgid "Fresh content update"
8383
- msgstr "Actualizarea conținutului proaspăt"
8384
-
8385
- #: models/focuspages/Content.php:61
8386
- #, php-format
8387
- msgid ""
8388
- "Last Update Date for your Content: needs to be in the last 3 months. %s If "
8389
- "it's not, then go and edit your page. %s Google prefers pages where the "
8390
- "website owners keep updating the content. %s Why? %s Because it's one of the "
8391
- "easiest ways to ensure that the content on the page keeps being relevant."
8392
- msgstr ""
8393
- "Data ultimei actualizări pentru conținutul dvs.: trebuie să fie în ultimele "
8394
- "3 luni. %s Dacă nu este așa, editați-vă pagina. %s Google preferă paginile "
8395
- "în care proprietarii site-ului continuă să actualizeze conținutul. %s De ce? "
8396
- "%s Pentru că este una dintre cele mai ușoare modalități de a te asigura că "
8397
- "conținutul paginii continuă să fie relevant."
8398
-
8399
- #: models/focuspages/Content.php:92 models/focuspages/Keyword.php:104
8400
- #: view/Research/Briefcase.php:245 view/Research/HistoryDetails.php:81
8401
- #: view/Research/ResearchDetails.php:51
8402
- msgid "Optimize for this"
8403
- msgstr "Optimizați pentru aceasta"
8404
-
8405
- #: models/focuspages/Ctr.php:41
8406
- msgid "Clickthrough rate"
8407
- msgstr "Rata de clickthrough"
8408
-
8409
- #: models/focuspages/Ctr.php:42
8410
- #, php-format
8411
- msgid ""
8412
- "CTR is the number of clicks that your page receives divided by the number of "
8413
- "times your page appeared in search results: clicks ÷ impressions = CTR. %s "
8414
- "For example, if you had 5 clicks and 100 impressions, then your CTR would be "
8415
- "5%%. %s Keep the CTR above %s with enhanced headlines."
8416
- msgstr ""
8417
- "CTR este numărul de clicuri pe care le primește pagina dvs. împărțit la "
8418
- "numărul de apariții ale paginii dvs. în rezultatele căutării: clicuri ÷ "
8419
- "impresii = CTR. %s De exemplu, dacă ați primit 5 clicuri și 100 de impresii, "
8420
- "atunci CTR-ul dvs. va fi 5%%. %s Păstrați CTR-ul peste %s cu titluri "
8421
- "îmbunătățite."
8422
-
8423
- #: models/focuspages/Image.php:73
8424
- msgid "Keyword in filename"
8425
- msgstr "Cuvânt cheie în numele fișierului"
8426
-
8427
- #: models/focuspages/Image.php:76
8428
- #, php-format
8429
- msgid ""
8430
- "Your filename for one of the images in this Focus Page should be: %s keyword."
8431
- "jpg %s Download a relevant image from your page. Change the filename. Then "
8432
- "re-upload with the SEO filename and add it your page's content again. %s "
8433
- "It's best to keep this at only one filename which contains the main keyword "
8434
- "of the page. %s Why? %s Because Google could consider over-optimization if "
8435
- "you used it more than once."
8436
- msgstr ""
8437
- "Numele de fișier pentru una dintre imaginile din această pagină Focus ar "
8438
- "trebui să fie: %s keyword.jpg %s Descărcați o imagine relevantă din pagina "
8439
- "dvs. Schimbați numele fișierului. Apoi reîncărcați-o cu numele de fișier SEO "
8440
- "și adăugați-o din nou în conținutul paginii dvs. %s Cel mai bine este să "
8441
- "păstrați acest lucru la un singur nume de fișier care să conțină cuvântul "
8442
- "cheie principal al paginii. %s De ce? %s Pentru că Google ar putea considera "
8443
- "că este vorba de supra-optimizare dacă îl folosești de mai multe ori."
8444
-
8445
- #: models/focuspages/Image.php:102 models/focuspages/Snippet.php:191
8446
- msgid "Edit your snippet"
8447
- msgstr "Editați snippetul dvs"
8448
-
8449
- #: models/focuspages/Image.php:143
8450
- msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
8451
- msgstr ""
8452
- "Optimizați mai întâi postarea folosind un cuvânt cheie din Squirrly Briefcase"
8453
-
8454
- #: models/focuspages/Image.php:144
8455
- msgid "No image found"
8456
- msgstr "Nici o imagine găsită"
8457
-
8458
- #: models/focuspages/Impressions.php:42
8459
- msgid "Search Results Impressions in the last 3 months"
8460
- msgstr "Rezultatele căutării Impresii în ultimele 3 luni"
8461
-
8462
- #: models/focuspages/Indexability.php:52
8463
- msgid "Yes, do index"
8464
- msgstr "Da, indexați"
8465
-
8466
- #: models/focuspages/Indexability.php:54 models/focuspages/Indexability.php:60
8467
- msgid "no restrictions"
8468
- msgstr "fără restricții"
8469
-
8470
- #: models/focuspages/Indexability.php:55
8471
- #, php-format
8472
- msgid ""
8473
- "To turn this task to green, go and look at all the places where you could "
8474
- "have added instructions for Google not to index this page from your site. %s "
8475
- "Make sure that there is no such instruction added to %sWordPress > Settings"
8476
- "%s, or in a theme, or in a plugin, or in Squirrly SEO's Snippet for this "
8477
- "page. Also, make sure you don't block this page in your %srobots.txt%s file. "
8478
- "%s Sometimes, you will want certain pages from your site not to be indexed. "
8479
- "Now is not the case, however. %s If this task turns green, then it means "
8480
- "that you did not specify to Google that it should NOT index the page. %s "
8481
- "Therefore, you allow Google to index the page. %s Since this is a Focus "
8482
- "Page, you must allow Google to index it, in order for it to appear in search "
8483
- "result pages."
8484
- msgstr ""
8485
- "Pentru a transforma această sarcină în verde, verificați toate locurile în "
8486
- "care ați fi putut adăuga instrucțiuni pentru ca Google să nu indexeze "
8487
- "această pagină de pe site-ul dvs. %s Asigurați-vă că nu există nicio astfel "
8488
- "de instrucțiune adăugată în %sWordPress > Setări%s, sau într-o temă, sau "
8489
- "într-un plugin, sau în Snippet-ul Squirrly SEO pentru această pagină. De "
8490
- "asemenea, asigurați-vă că nu blocați această pagină în fișierul %srobots.txt"
8491
- "%s. %s Uneori, veți dori ca anumite pagini din site-ul dvs. să nu fie "
8492
- "indexate. Totuși, acum nu este cazul. %s Dacă această sarcină se transformă "
8493
- "în verde, înseamnă că nu i-ați specificat lui Google că NU ar trebui să "
8494
- "indexeze pagina respectivă. %s Prin urmare, permiteți Google să indexeze "
8495
- "pagina. %s Deoarece aceasta este o pagină Focus, trebuie să permiteți Google "
8496
- "să o indexeze, pentru ca aceasta să apară în paginile de rezultate ale "
8497
- "căutării."
8498
-
8499
- #: models/focuspages/Indexability.php:58
8500
- msgid "Yes, do follow"
8501
- msgstr "Da, urmați"
8502
-
8503
- #: models/focuspages/Indexability.php:61
8504
- #, php-format
8505
- msgid ""
8506
- "To turn this task to green, make sure that you do NOT have a no-follow "
8507
- "attribute for this Focus Page. %s This task gets verified from multiple "
8508
- "sources. %s However, if you want to be 100%% certain in the future that "
8509
- "everything is perfect, use just Squirrly SEO, because it will ease both your "
8510
- "setup and the system check. %s With Squirrly SEO, you could easily check "
8511
- "this setting in the %sSnippet section%s. %s Many themes and plugins could "
8512
- "interfere with settings."
8513
- msgstr ""
8514
- "Pentru a transforma această sarcină în verde, asigurați-vă că NU aveți un "
8515
- "atribut no-follow pentru această pagină Focus. %s Această sarcină este "
8516
- "verificată din mai multe surse. %s Cu toate acestea, dacă doriți să fiți "
8517
- "100%% sigur pe viitor că totul este perfect, utilizați doar Squirrly SEO, "
8518
- "deoarece vă va ușura atât configurarea, cât și verificarea sistemului. %s Cu "
8519
- "Squirrly SEO, ați putea verifica cu ușurință această setare în secțiunea "
8520
- "%sSnippet%s. %s Multe teme și pluginuri ar putea interfera cu setările."
8521
-
8522
- #: models/focuspages/Indexability.php:64
8523
- msgid "Present in sitemap"
8524
- msgstr "Prezent în harta site-ului"
8525
-
8526
- #: models/focuspages/Indexability.php:65
8527
- #, php-format
8528
- msgid ""
8529
- "Checks whether or not your page is available in your %sXML Sitemap%s. %s Use "
8530
- "the Sitemap from %sSquirrly > SEO Settings%s. %s Make sure this Focus Page "
8531
- "is included in the sitemap generated by Squirrly SEO. %s In the best "
8532
- "practices section you can find ideas for why it can make sense to remove "
8533
- "pages from your sitemap."
8534
- msgstr ""
8535
- "Verifică dacă pagina dvs. este sau nu disponibilă în %sXML Sitemap%s. %s "
8536
- "Utilizați Sitemap-ul din %sSquirrly > Setări SEO%s. %s Asigură-te că această "
8537
- "Pagină Focus este inclusă în sitemap-ul generat de Squirrly SEO. %s În "
8538
- "secțiunea Cele mai bune practici puteți găsi idei despre motivele pentru "
8539
- "care poate avea sens să eliminați pagini din sitemap."
8540
-
8541
- #: models/focuspages/Indexability.php:68
8542
- msgid "Manual index request"
8543
- msgstr "Cerere manuală de indexare"
8544
-
8545
- #: models/focuspages/Indexability.php:69
8546
- #, php-format
8547
- msgid ""
8548
- "Click the button to %s Ask Google to re-index %s this page. %s Disclaimer: "
8549
- "This task will automatically turn to green once you click on the button and "
8550
- "it takes you to Google Search Console. It's up to you to make 100%% sure "
8551
- "that you do tell Google to either index or re-index this page. %s Perform a "
8552
- "manual request for Google to re-index this page. %s This is super important "
8553
- "to do whenever you make important changes to your pages. Otherwise, Google "
8554
- "will still have the old version of your page. %s If Google keeps having the "
8555
- "older version, then it doesn't matter if you've improved the page. %s When "
8556
- "you click the Ask Google to Re-Index button, Squirrly will use the Google "
8557
- "Search Console API to send Google the request on your behalf."
8558
- msgstr ""
8559
- "Faceți clic pe butonul pentru a %s Cereți Google să re-indexeze %s această "
8560
- "pagină. %s Disclaimer: Această sarcină se va transforma automat în verde "
8561
- "odată ce faceți clic pe buton și vă duce la Google Search Console. Depinde "
8562
- "de dvs. să vă asigurați 100%% că îi spuneți Google să indexeze sau să "
8563
- "reindexeze această pagină. %s Efectuați o solicitare manuală pentru ca "
8564
- "Google să re-indexeze această pagină. %s Acest lucru este super important de "
8565
- "făcut ori de câte ori faceți modificări importante la paginile dvs. În caz "
8566
- "contrar, Google va avea în continuare versiunea veche a paginii dvs. %s Dacă "
8567
- "Google continuă să aibă versiunea mai veche, atunci nu contează dacă ați "
8568
- "îmbunătățit pagina. %s Atunci când faceți clic pe butonul Cereți-i lui "
8569
- "Google să reintroducă indexarea, Squirrly va utiliza API-ul Google Search "
8570
- "Console pentru a trimite Google cererea în numele dvs."
8571
-
8572
- #: models/focuspages/Indexability.php:72 view/Blocks/Snippet.php:300
8573
- msgid "Canonical link"
8574
- msgstr "Legătură canonică"
8575
-
8576
- #: models/focuspages/Indexability.php:73
8577
- msgid "Canonical"
8578
- msgstr "Canonică"
8579
-
8580
- #: models/focuspages/Indexability.php:73
8581
- msgid "No Canonical"
8582
- msgstr "Nu Canonică"
8583
-
8584
- #: models/focuspages/Indexability.php:73
8585
- msgid "Post URL"
8586
- msgstr "URL-ul postului"
8587
-
8588
- #: models/focuspages/Indexability.php:73
8589
- msgid "No URL"
8590
- msgstr "Nici un URL"
8591
-
8592
- #: models/focuspages/Indexability.php:75
8593
- #, php-format
8594
- msgid ""
8595
- "This page should have a canonical link to itself, indicating that it is "
8596
- "indeed the original content. %s You can not have pages with canonical links "
8597
- "to other sites and pages, because you could not rank for them. Why? Because "
8598
- "a canonical link to another URL would mean that the other URL is the one "
8599
- "worth indexing. (the original one) %s To turn this task to green, go and "
8600
- "make sure that this page does not have a canonical link attribute pointing "
8601
- "to another page. %s You can easily control this in the future by using the "
8602
- "%sSnippet feature%s of Squirrly SEO."
8603
- msgstr ""
8604
- "Această pagină ar trebui să aibă o legătură canonică către ea însăși, "
8605
- "indicând că este într-adevăr conținutul original. %s Nu puteți avea pagini "
8606
- "cu linkuri canonice către alte site-uri și pagini, deoarece nu veți putea fi "
8607
- "clasificat pentru acestea. De ce? Pentru că o legătură canonică către un alt "
8608
- "URL ar însemna că celălalt URL este cel care merită să fie indexat. (cel "
8609
- "original) %s Pentru a transforma această sarcină în verde, mergeți și "
8610
- "asigurați-vă că această pagină nu are un atribut de legătură canonică care "
8611
- "să arate spre o altă pagină. %s Puteți controla cu ușurință acest lucru în "
8612
- "viitor, folosind funcția %sSnippet%s din Squirrly SEO."
8613
-
8614
- #: models/focuspages/Indexability.php:78
8615
- msgid "Permalink structure is good"
8616
- msgstr "Structura Permalink este bună"
8617
-
8618
- #: models/focuspages/Indexability.php:80
8619
- #, php-format
8620
- msgid ""
8621
- "Make your LINKS SEO-Friendly in %sWordPress > Settings > Permalinks%s %s "
8622
- "That is where WordPress allows you to change the permalink structure. %s "
8623
- "Your URLs (the links from your site) should be super easy to read. This "
8624
- "makes your site Human-friendly as well."
8625
- msgstr ""
8626
- "Asigurați-vă link-uri SEO-Friendly în %sWordPress > Setări > Permalinks%s %s "
8627
- "Acesta este locul în care WordPress vă permite să modificați structura "
8628
- "permalink. %s URL-urile tale (link-urile de pe site-ul tău) ar trebui să fie "
8629
- "foarte ușor de citit. Acest lucru face ca site-ul tău să fie și Human-"
8630
- "friendly."
8631
-
8632
- #: models/focuspages/Indexability.php:100
8633
- msgid "Ask Google to Re-Index"
8634
- msgstr "Cereți-i lui Google să Re-Indexeze"
8635
-
8636
- #: models/focuspages/Innerlinks.php:53
8637
- #, php-format
8638
- msgid "Get %s inner links"
8639
- msgstr "Obține %s legături interioare"
8640
-
8641
- #: models/focuspages/Innerlinks.php:54
8642
- msgid "inner links to"
8643
- msgstr "legături interioare către"
8644
-
8645
- #: models/focuspages/Innerlinks.php:56
8646
- #, php-format
8647
- msgid ""
8648
- "Get %s Inner Links %s Recommended is: %s %s Inner Links are links that you "
8649
- "send from one URL of your site to another URL of your site. %s Since your "
8650
- "Focus Pages are the most important pages in your site, you should make sure "
8651
- "that you link to them from many pages of your website. %s Note! We check the "
8652
- "links present in the content of each post of your website."
8653
- msgstr ""
8654
- "Obțineți %s legături interioare %s Recomandat este: %s %s Legăturile interne "
8655
- "sunt legături pe care le trimiteți de la un URL al site-ului dvs. la un alt "
8656
- "URL al site-ului dvs. %s Deoarece Paginile Focus sunt cele mai importante "
8657
- "pagini din site-ul dumneavoastră, trebuie să vă asigurați că aveți legături "
8658
- "către ele din mai multe pagini ale site-ului dumneavoastră. %s Notă! "
8659
- "Verificăm legăturile prezente în conținutul fiecărei postări de pe site-ul "
8660
- "dvs."
8661
-
8662
- #: models/focuspages/Innerlinks.php:75
8663
- msgid "Build with Blogging Assistant"
8664
- msgstr "Construiți cu Blogging Assistant"
8665
-
8666
- #: models/focuspages/Keyword.php:48
8667
- msgid "Keyword Competition"
8668
- msgstr "Concurența cuvintelor cheie"
8669
-
8670
- #: models/focuspages/Keyword.php:51
8671
- #, php-format
8672
- msgid ""
8673
- "To complete this task you must make sure that the main keyword you're "
8674
- "optimizing this Focus Page for has low competition. %s The Squirrly SEO "
8675
- "software suite uses our proprietary Market Intelligence feature to determine "
8676
- "the chance that your site has of outranking the current TOP 10 of Google for "
8677
- "the desired keyword you're targeting. %s If you really want to have a clear "
8678
- "shot at ranking, make sure the competition is low for the keyword you choose."
8679
- msgstr ""
8680
- "Pentru a finaliza această sarcină, trebuie să vă asigurați că principalul "
8681
- "cuvânt cheie pentru care optimizați această pagină Focus are o concurență "
8682
- "scăzută. %sSuita software Squirrly SEO utilizează funcția noastră "
8683
- "proprietară de inteligență a pieței pentru a determina șansa pe care o are "
8684
- "site-ul dvs. de a depăși TOP 10 actual al Google pentru cuvântul cheie dorit "
8685
- "pe care îl vizați. %s Dacă doriți cu adevărat să aveți o șansă clară de "
8686
- "ranking, asigurați-vă că concurența este scăzută pentru cuvântul cheie pe "
8687
- "care îl alegeți."
8688
-
8689
- #: models/focuspages/Keyword.php:59
8690
- msgid "Google Trend"
8691
- msgstr "Google Trend"
8692
-
8693
- #: models/focuspages/Keyword.php:61
8694
- #, php-format
8695
- msgid ""
8696
- "Trend levels required to get the Green Check on this task: %s - Steady %s - "
8697
- "Going Up %s - Sky-rocketing %s we take the trend from the previous 3 months. "
8698
- "%s If you target a search query with a bad trend you'll end up seeing little "
8699
- "traffic to this page in the long run. %s Why ? A declining trend shows that "
8700
- "Google Users are losing interest in that topic or keyword and will continue "
8701
- "to do so in the future. %s Therefore, even though you could get much traffic "
8702
- "right now after you rank this page, in the near future you'll get very "
8703
- "little traffic even if you'd end up on Position 1 in Google Search."
8704
- msgstr ""
8705
- "Nivelurile de tendință necesare pentru a obține Verificarea verde pentru "
8706
- "această sarcină: %s - Stabil %s - Creștere %s - Creștere fulminantă %s luăm "
8707
- "tendința din ultimele 3 luni. %s Dacă vizați o interogare de căutare cu o "
8708
- "tendință proastă, veți sfârși prin a vedea puțin trafic pe această pagină pe "
8709
- "termen lung. %s De ce? O tendință de scădere arată că utilizatorii Google "
8710
- "își pierd interesul pentru acel subiect sau cuvânt cheie și vor continua să "
8711
- "facă acest lucru în viitor. %s Prin urmare, chiar dacă ați putea obține mult "
8712
- "trafic acum după ce ați clasificat această pagină, în viitorul apropiat veți "
8713
- "obține foarte puțin trafic chiar dacă ați ajunge pe poziția 1 în Google "
8714
- "Search."
8715
-
8716
- #: models/focuspages/Keyword.php:98
8717
- msgid "Find Better Keywords"
8718
- msgstr "Găsiți cuvinte cheie mai bune"
8719
-
8720
- #: models/focuspages/Keyword.php:158 models/focuspages/Keyword.php:176
8721
- #: models/focuspages/Keyword.php:199
8722
- msgid "No Keyword Found"
8723
- msgstr "Nici un cuvânt cheie găsit"
8724
-
8725
- #: models/focuspages/Keyword.php:158 models/focuspages/Keyword.php:176
8726
- #: models/focuspages/Keyword.php:199
8727
- msgid "Please add a keyword first in Squirrly Live Assistant."
8728
- msgstr ""
8729
- "Vă rugăm să adăugați mai întâi un cuvânt cheie în Squirrly Live Assistant."
8730
-
8731
- #: models/focuspages/Length.php:36
8732
- #, php-format
8733
- msgid "Write %s words"
8734
- msgstr "Scrieți %s cuvinte"
8735
-
8736
- #: models/focuspages/Length.php:37
8737
- msgid "words"
8738
- msgstr "cuvinte"
8739
-
8740
- #: models/focuspages/Length.php:39
8741
- #, php-format
8742
- msgid ""
8743
- "For Focus Pages it's mandatory, in our opinion, to have at least 1,500 "
8744
- "words. %s Go and edit the page. %s I know: for some of you it might sound "
8745
- "tough, but Google places longer, more valuable pages higher in search "
8746
- "positions. %s You don't necessarily have to get 1,500 words on this page for "
8747
- "it to rank in TOP 10 on Google. However, getting this task completed ensures "
8748
- "that your chances of ranking will be very high."
8749
- msgstr ""
8750
- "Pentru Focus Pages este obligatoriu, în opinia noastră, să aibă cel puțin "
8751
- "1.500 de cuvinte. %s Mergeți și editați pagina. %s Știu: pentru unii dintre "
8752
- "voi poate părea greu, dar Google plasează paginile mai lungi și mai "
8753
- "valoroase mai sus în pozițiile de căutare. %s Nu trebuie neapărat să aveți "
8754
- "1.500 de cuvinte pe această pagină pentru ca ea să se claseze în TOP 10 pe "
8755
- "Google. Cu toate acestea, îndeplinirea acestei sarcini vă asigură că șansele "
8756
- "de poziționare vor fi foarte mari."
8757
-
8758
- #: models/focuspages/Length.php:42
8759
- msgid "Reader's Experience"
8760
- msgstr "Experiența cititorului"
8761
-
8762
- #: models/focuspages/Length.php:43
8763
- msgid "minutes average"
8764
- msgstr "minute în medie"
8765
-
8766
- #: models/focuspages/Length.php:44
8767
- #, php-format
8768
- msgid ""
8769
- "Get an average time on page of minimum 2 minutes for this focus page. You "
8770
- "can do this by editing the content and making it more appealing to visitors. "
8771
- "%s We're looking at the Average Time On Page for this page. %s Why? %s "
8772
- "Because, sometimes website owners can be tempted to make the pages longer in "
8773
- "order to get many words on a page. They make them longer by increasing "
8774
- "wordiness. %s Over 1,500 words / page can give you much better SEO results. "
8775
- "However, making it longer does not mean you should make it boring. %s In "
8776
- "order to check that the length of the page was increased properly, we also "
8777
- "take into account if website visitors love this page."
8778
- msgstr ""
8779
- "Obțineți o medie de timp pe pagină de minim 2 minute pentru această pagină "
8780
- "de interes. Puteți face acest lucru prin editarea conținutului și prin "
8781
- "faptul că îl faceți mai atractiv pentru vizitatori. %s Ne uităm la timpul "
8782
- "mediu pe pagină pentru această pagină. %s De ce? %s Pentru că, uneori, "
8783
- "proprietarii de site-uri web pot fi tentați să facă paginile mai lungi "
8784
- "pentru a obține multe cuvinte pe o pagină. Ei le fac mai lungi prin "
8785
- "creșterea numărului de cuvinte. %s Peste 1.500 de cuvinte / pagină vă poate "
8786
- "oferi rezultate SEO mult mai bune. Cu toate acestea, a le face mai lungi nu "
8787
- "înseamnă că trebuie să le faceți plictisitoare. %s Pentru a verifica dacă "
8788
- "lungimea paginii a fost mărită corespunzător, luăm în considerare și dacă "
8789
- "vizitatorii site-ului iubesc această pagină."
8790
-
8791
- #: models/focuspages/Length.php:65
8792
- msgid "Edit Page"
8793
- msgstr "Editare pagină"
8794
-
8795
- #: models/focuspages/Length.php:85
8796
- msgid "Connect to Google Analytics first."
8797
- msgstr "Conectați-vă mai întâi la Google Analytics."
8798
-
8799
- #: models/focuspages/Length.php:121 models/focuspages/Traffic.php:144
8800
- #: models/focuspages/Traffic.php:160 models/focuspages/Traffic.php:176
8801
- msgid "Connect Google Analytics first."
8802
- msgstr "Conectați mai întâi Google Analytics."
8803
-
8804
- #: models/focuspages/Nofollow.php:50
8805
- msgid "Maintain authority"
8806
- msgstr "Autoritatea"
8807
-
8808
- #: models/focuspages/Nofollow.php:51
8809
- msgid "External Dofollow Links"
8810
- msgstr "Link-uri externe Dofollow"
8811
-
8812
- #: models/focuspages/Nofollow.php:51
8813
- msgid "No dofollow external links"
8814
- msgstr "Nu există legături externe dofollow"
8815
-
8816
- #: models/focuspages/Nofollow.php:53 models/focuspages/Ranking.php:24
8817
- #, php-format
8818
- msgid ""
8819
- "TLDR: All outbound links need to have no-follow attribute. %s You've worked "
8820
- "hard on your Focus Page. %s Now make sure that you're not letting that hard "
8821
- "work go to waste, by sending out all your authority and Link Juice over to "
8822
- "other pages from the web. %s The Focus Page needs to be the final page that "
8823
- "Google Follows. It's an \"All Roads Lead to Rome\" kind of scenario. %s If "
8824
- "you want your focus pages to get ranked better and have authority make sure "
8825
- "that ALL outbound links have a no-follow attribute attached to them."
8826
- msgstr ""
8827
- "TLDR: Toate legăturile de ieșire trebuie să aibă atributul no-follow. %s Ați "
8828
- "muncit din greu la pagina dvs. de focus. %s Acum asigurați-vă că nu lăsați "
8829
- "această muncă grea să se irosească, trimițând toată autoritatea și Link "
8830
- "Juice-ul dvs. către alte pagini de pe web. %s Pagina Focus trebuie să fie "
8831
- "pagina finală pe care Google o urmărește. Este un scenariu de tipul \"Toate "
8832
- "drumurile duc la Roma\". %s Dacă doriți ca paginile de focalizare să fie "
8833
- "rank-uite mai bine și să aibă autoritate, asigurați-vă că TOATE legăturile "
8834
- "de ieșire au atributul no-follow atașat la ele."
8835
-
8836
- #: models/focuspages/Onpage.php:53
8837
- msgid "Enhance your sitemap"
8838
- msgstr "Sitemap XML"
8839
-
8840
- #: models/focuspages/Onpage.php:54
8841
- #, php-format
8842
- msgid ""
8843
- "Add images / videos to your sitemap. It's important to have images / videos "
8844
- "enabled. %s Squirrly SEO makes it super easy for you to enhance your XML "
8845
- "sitemap. %s Just use the settings from %sSquirrly > SEO Settings > Sitemap "
8846
- "XML%s. Find the XML sitemap section and use the settings from that panel. "
8847
- msgstr ""
8848
- "Adăugați imagini / clipuri video la harta site-ului dumneavoastră. Este "
8849
- "important ca imaginile / videoclipurile să fie activate. %s Squirrly SEO vă "
8850
- "permite să vă îmbunătățiți foarte ușor harta site-ului XML. %s Pur și simplu "
8851
- "folosiți setările din %sSquirrly > Setări SEO > Sitemap XML%s. Găsiți "
8852
- "secțiunea XML sitemap și utilizați setările din acel panou. "
8853
-
8854
- #: models/focuspages/Onpage.php:57
8855
- msgid "Post Type settings activated"
8856
- msgstr "Setări Post Type activate"
8857
-
8858
- #: models/focuspages/Onpage.php:58
8859
- #, php-format
8860
- msgid ""
8861
- "Are the SEO Settings from Squirrly SEO activated for the post type of this "
8862
- "particular Focus Page? %s This is what we're checking with this task. %s "
8863
- "Why? %s Some of the times, we're seeing that people don't get good enough "
8864
- "results with Google rankings simply because they do not have the SEO "
8865
- "settings activated for their current post type. %s Many WordPress sites "
8866
- "employ the use of custom post types. Your \"Events\" page or \"Real Estate\" "
8867
- "page could be a different post type from general \"Pages\" or \"Posts\" in "
8868
- "WordPress. %s To turn this task to green, go and add this post type (%s) in "
8869
- "%sSquirrly SEO Automation%s."
8870
- msgstr ""
8871
- "Setările SEO din Squirrly SEO sunt activate pentru tipul de postare al "
8872
- "acestei anumite pagini Focus? %s Aceasta este ceea ce verificăm cu această "
8873
- "sarcină. %s De ce? %s De câteva ori, observăm că oamenii nu obțin rezultate "
8874
- "suficient de bune în ceea ce privește clasamentul Google pur și simplu "
8875
- "pentru că nu au setările SEO activate pentru tipul de post curent. %s Multe "
8876
- "site-uri WordPress folosesc utilizarea tipurilor de post personalizate. "
8877
- "Pagina dvs. \"Evenimente\" sau pagina \"Imobiliare\" ar putea fi un tip de "
8878
- "post diferit de \"Pagini\" sau \"Posturi\" generale din WordPress. %s Pentru "
8879
- "a transforma această sarcină în verde, mergeți și adăugați acest tip de post "
8880
- "(%s) în %sSquirrly SEO Automation%s."
8881
-
8882
- #: models/focuspages/Onpage.php:61
8883
- msgid "Patterns activated"
8884
- msgstr "Modele activate"
8885
-
8886
- #: models/focuspages/Onpage.php:62
8887
- #, php-format
8888
- msgid ""
8889
- "To turn this task to green, go and activate the %sPatterns%s from Squirrly "
8890
- "SEO for the post type of this Focus Page. %s With this task, we're looking "
8891
- "to see if the SEO Patterns from Squirrly are activated for the post type of "
8892
- "this Focus Page. %s Similar to the previous task with \"Post Type Settings "
8893
- "Activated\". There are some cases in which this double check is necessary. "
8894
- "%s It's for your ranking safety."
8895
- msgstr ""
8896
- "Pentru a transforma această sarcină în verde, mergeți și activați %sPatterns"
8897
- "%s din Squirrly SEO pentru tipul de postare al acestei Pagini Focus. %s Cu "
8898
- "această sarcină, căutăm să vedem dacă Modelele SEO din Squirrly sunt "
8899
- "activate pentru tipul de postare al acestei Pagini Focus. %s Similar "
8900
- "sarcinii anterioare cu \"Post Type Settings Activated\". Există unele cazuri "
8901
- "în care această dublă verificare este necesară. %s Este pentru siguranța "
8902
- "clasamentului tău."
8903
-
8904
- #: models/focuspages/Onpage.php:65 view/SeoSettings/Robots.php:28
8905
- msgid "Robots File"
8906
- msgstr "Fișier roboți"
8907
-
8908
- #: models/focuspages/Onpage.php:67
8909
- #, php-format
8910
- msgid ""
8911
- "You have a certain definition for your Robots.txt file made in Squirrly SEO "
8912
- "or in another plugin. %s Make sure that the final version of robots.txt that "
8913
- "gets rendered when the file is loaded is the one you had intended. %s "
8914
- "Sometimes, other plugins or themes can interfere and ruin the output of the "
8915
- "robots file. Sometimes it can even be that you have a robots.txt file placed "
8916
- "on your root directory (in such case: remove that file. hard-coding things "
8917
- "like that is bad practice!). %s To do this: look at the definition you've "
8918
- "made inside your plugin. Then, look at the robots.txt from your site. See if "
8919
- "the text inside these two places is identical. If it is identical, "
8920
- "everything is Perfect!"
8921
- msgstr ""
8922
- "Aveți o anumită definiție pentru fișierul Robots.txt făcută în Squirrly SEO "
8923
- "sau în alt plugin. %s Asigurați-vă că versiunea finală a fișierului robots."
8924
- "txt care este redată atunci când fișierul este încărcat este cea pe care ați "
8925
- "intenționat-o. %s Uneori, alte pluginuri sau teme pot interfera și strica "
8926
- "ieșirea fișierului robots. Uneori se poate întâmpla chiar să aveți un fișier "
8927
- "robots.txt plasat în directorul rădăcină (în acest caz: eliminați acel "
8928
- "fișier. hard-coding-ul unor astfel de lucruri este o practică proastă!). %s "
8929
- "Pentru a face acest lucru: uitați-vă la definiția pe care ați făcut-o în "
8930
- "interiorul plugin-ului dvs. Apoi, uitați-vă la fișierul robots.txt de pe "
8931
- "site-ul dvs. Vedeți dacă textul din interiorul acestor două locuri este "
8932
- "identic. Dacă este identic, totul este Perfect!"
8933
-
8934
- #: models/focuspages/Onpage.php:85
8935
- msgid "Go to SEO Settings"
8936
- msgstr "Mergeți la Setări SEO"
8937
-
8938
- #: models/focuspages/Ranking.php:23
8939
- msgid "Nofollow on external links"
8940
- msgstr "Nofollow pe linkurile externe"
8941
-
8942
- #: models/focuspages/Snippet.php:127
8943
- #, php-format
8944
- msgid ""
8945
- "To turn this task to green, go and define a title for this page. You can "
8946
- "easily do this by using the %sSnippet%s from Squirrly SEO. %s Make sure that "
8947
- "you have a Title defined for your Focus Page. %s Not having a title defined "
8948
- "is bad for both search engines and Humans. %s Why? %s It's weird for someone "
8949
- "to try to figure out if they landed on your Pricing page, and not get a "
8950
- "clear answer. If you have multiple pricing pages (in case your site displays "
8951
- "multiple products) then your title should only contain the brand name of "
8952
- "that product."
8953
- msgstr ""
8954
- "Pentru a transforma această sarcină în verde, mergeți și definiți un titlu "
8955
- "pentru această pagină. Puteți face acest lucru cu ușurință folosind %sSnippet"
8956
- "%s de la Squirrly SEO. %s Asigurați-vă că aveți un Titlu definit pentru "
8957
- "Pagina Focus. %s A nu avea un titlu definit este rău atât pentru motoarele "
8958
- "de căutare, cât și pentru Oameni. %s De ce? %s Este ciudat ca cineva să "
8959
- "încerce să își dea seama dacă a aterizat pe pagina dvs. de Prețuri și să nu "
8960
- "primească un răspuns clar. Dacă aveți mai multe pagini de prețuri (în cazul "
8961
- "în care site-ul dvs. afișează mai multe produse), atunci titlul dvs. ar "
8962
- "trebui să conțină doar numele de marcă al produsului respectiv."
8963
-
8964
- #: models/focuspages/Snippet.php:130 models/focuspages/Snippet.php:255
8965
- #: models/focuspages/Snippet.php:277 view/Blocks/Snippet.php:758
8966
- #: view/Blocks/Snippet.php:1025 view/SeoSettings/Automation.php:178
8967
- msgid "Description"
8968
- msgstr "Descriere"
8969
-
8970
- #: models/focuspages/Snippet.php:132
8971
- #, php-format
8972
- msgid ""
8973
- "To turn this task to green, go and define a %sMeta description%s for this "
8974
- "page. You can easily do this by using the Snippet from Squirrly SEO. %s Make "
8975
- "sure that you have a META description set up for this Focus Page. %s The "
8976
- "meta description is very important for showing others the value they can "
8977
- "find by clicking to go to your page. %s Think of it as an awesome ad that "
8978
- "gets people excited enough that they visit your page after reading it. %s "
8979
- "Sometimes, Google displays the exact META description that you create inside "
8980
- "the search result pages. Use great descriptions for pages on your site to "
8981
- "boost CTR (click-through rates)."
8982
- msgstr ""
8983
- "Pentru a transforma această sarcină în verde, mergeți și definiți o "
8984
- "descriere %sMeta%s pentru această pagină. Puteți face acest lucru cu "
8985
- "ușurință utilizând Snippet de la Squirrly SEO. %s Asigurați-vă că aveți "
8986
- "definită o descriere META pentru această pagină Focus. %s Descrierea meta "
8987
- "este foarte importantă pentru a le arăta celorlalți valoarea pe care o pot "
8988
- "găsi dacă dau click pentru a merge la pagina dvs. %s Gândiți-vă la ea ca la "
8989
- "un anunț minunat care îi entuziasmează pe oameni suficient de mult încât să "
8990
- "vă viziteze pagina după ce o citesc. %s Uneori, Google afișează exact "
8991
- "descrierea META pe care o creați în interiorul paginilor de rezultate ale "
8992
- "căutării. Folosiți descrieri grozave pentru paginile de pe site-ul dvs. "
8993
- "pentru a crește CTR (click-through rates)."
8994
-
8995
- #: models/focuspages/Snippet.php:137
8996
- #, php-format
8997
- msgid "Keyword %s must be present in Title"
8998
- msgstr "Cuvântul cheie %s trebuie să fie prezent în titlu"
8999
-
9000
- #: models/focuspages/Snippet.php:142
9001
- #, php-format
9002
- msgid "Keyword %s must be present in Description"
9003
- msgstr "Cuvântul cheie %s trebuie să fie prezent în Descriere"
9004
-
9005
- #: models/focuspages/Snippet.php:143
9006
- #, php-format
9007
- msgid ""
9008
- "Same as with the title task. %s If a user reads the description of your page "
9009
- "on Google, but cannot find the keyword they searched for in that text, then "
9010
- "they'd have very low chances of actually clicking and visiting your page. %s "
9011
- "They'd go to the next page ranked on Google for that keyword. %s Think about "
9012
- "this: Google itself is trying more and more to display keywords in the "
9013
- "description of the pages it bring to TOP 10. It's pretty clear they care a "
9014
- "lot about this, because that's what people want to find on the search engine."
9015
- msgstr ""
9016
- "La fel ca în cazul sarcinii de titlu. %s Dacă un utilizator citește "
9017
- "descrierea paginii dvs. pe Google, dar nu găsește cuvântul cheie pe care l-a "
9018
- "căutat în acel text, atunci are șanse foarte mici să dea clic și să vă "
9019
- "viziteze pagina. %s Ar merge la următoarea pagină rank-uită pe Google pentru "
9020
- "acel cuvânt cheie. %s Gândiți-vă la acest lucru: Google însuși încearcă din "
9021
- "ce în ce mai mult să afișeze cuvintele cheie în descrierea paginilor pe care "
9022
- "le aduce în TOP 10. Este destul de clar că le pasă foarte mult de acest "
9023
- "lucru, pentru că asta este ceea ce oamenii vor să găsească pe motorul de "
9024
- "căutare."
9025
-
9026
- #: models/focuspages/Snippet.php:146
9027
- msgid "Open Graph - full definition"
9028
- msgstr "Open Graph - definiție completă"
9029
-
9030
- #: models/focuspages/Snippet.php:148
9031
- #, php-format
9032
- msgid ""
9033
- "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
9034
- "SEO to get all the definitions in place. %s With this task, we make sure "
9035
- "that you have the full Open Graph definitions created for this Focus Page. "
9036
- "%s There are many things which could interfere with the code, there are "
9037
- "times when you could forget setting some of the elements up, so Squirrly SEO "
9038
- "helps you make sure that ALL the og tags are present. %s And yes, this is "
9039
- "relevant for your search engine position placements."
9040
- msgstr ""
9041
- "Pentru a transforma această sarcină în verde, puteți folosi cu ușurință "
9042
- "%sSnippet%s de la Squirrly SEO pentru a obține toate definițiile la locul "
9043
- "lor. %s Cu această sarcină, ne asigurăm că aveți toate definițiile Open "
9044
- "Graph create pentru această pagină Focus Page. %s Există multe lucruri care "
9045
- "ar putea interfera cu codul, există momente în care ai putea uita să setezi "
9046
- "unele dintre elemente, așa că Squirrly SEO te ajută să te asiguri că TOATE "
9047
- "etichetele og sunt prezente. %s Și da, acest lucru este relevant pentru "
9048
- "poziționarea dvs. în motoarele de căutare."
9049
-
9050
- #: models/focuspages/Snippet.php:151
9051
- msgid "Twitter Cards - full definition"
9052
- msgstr "Carduri Twitter - definiție completă"
9053
-
9054
- #: models/focuspages/Snippet.php:153
9055
- #, php-format
9056
- msgid ""
9057
- "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
9058
- "SEO to get all the definitions in place. %s Checking to make sure that your "
9059
- "Twitter Cards definitions are made properly. %s Same as with the Open Graph "
9060
- "task, Squirrly SEO makes sure to check for all the required definitions, so "
9061
- "that you won't miss a beat."
9062
- msgstr ""
9063
- "Pentru a transforma această sarcină în verde, puteți folosi cu ușurință "
9064
- "%sSnippet%s de la Squirrly SEO pentru a obține toate definițiile la locul "
9065
- "lor. %s Verificarea pentru a vă asigura că definițiile pentru Twitter Cards "
9066
- "sunt făcute corect. %s La fel ca și în cazul sarcinii Open Graph, Squirrly "
9067
- "SEO se asigură că verifică toate definițiile necesare, astfel încât să nu "
9068
- "pierdeți niciun moment."
9069
-
9070
- #: models/focuspages/Snippet.php:156
9071
- msgid "JSON-LD definition"
9072
- msgstr "Definiția JSON-LD"
9073
-
9074
- #: models/focuspages/Snippet.php:157
9075
- #, php-format
9076
- msgid ""
9077
- "To turn this task to green, you can easily use the JSON-LD section inside "
9078
- "%sSquirrly > SEO Settings > JSON-LD%s. %s Make sure that you complete all "
9079
- "fields with the proper information. %s This gives important Semantic context "
9080
- "to Google and it plays a role in determining how high your page should be "
9081
- "placed in search rankings. %s You can validate your existing JSON-LD with: "
9082
- "%shttps://search.google.com/test/rich-results%s"
9083
- msgstr ""
9084
- "Pentru a transforma această sarcină în verde, puteți utiliza cu ușurință "
9085
- "secțiunea JSON-LD din %sSquirrly > Setări SEO > JSON-LD%s. %s Asigură-te că "
9086
- "completezi toate câmpurile cu informațiile corespunzătoare. %s Acest lucru "
9087
- "oferă un context semantic important pentru Google și joacă un rol în "
9088
- "determinarea poziției pe care ar trebui să o ocupe pagina dvs. în "
9089
- "clasamentul de căutare. %s Puteți valida JSON-LD-ul dvs. existent cu: "
9090
- "%shttps://search.google.com/test/rich-results%s"
9091
-
9092
- #: models/focuspages/Snippet.php:160
9093
- msgid "Customized"
9094
- msgstr "Personalizat"
9095
-
9096
- #: models/focuspages/Snippet.php:161
9097
- #, php-format
9098
- msgid ""
9099
- "The Snippets of your most important pages should be customized. %s Use the "
9100
- "%sSnippet%s from Squirrly SEO to customize the meta settings, the open "
9101
- "graph, etc. for this page. %s Since Focus Pages are the most important pages "
9102
- "on your site, you'll want people to love the search engine listings that you "
9103
- "build for this page. %s Therefore, you should define a custom SEO listing to "
9104
- "improve the number of clicks you get when people DO find your page on search "
9105
- "engines. %s NOTE: sometimes Google tries to create automated snippets and "
9106
- "display those, but it's just an experiment they run. Most of the times, your "
9107
- "own custom snippet will be the one that gets displayed."
9108
- msgstr ""
9109
- "Snippet-urile celor mai importante pagini ar trebui să fie personalizate. %s "
9110
- "Folosiți %sSnippet-urile%s din Squirrly SEO pentru a personaliza setările "
9111
- "meta, open graph, etc. pentru această pagină. %s Deoarece Paginile Focus "
9112
- "sunt cele mai importante pagini de pe site-ul dvs., veți dori ca oamenii să "
9113
- "iubească listele pentru motoarele de căutare pe care le construiți pentru "
9114
- "această pagină. %s Prin urmare, ar trebui să definiți o listare SEO "
9115
- "personalizată pentru a îmbunătăți numărul de clicuri pe care le obțineți "
9116
- "atunci când oamenii DOAR găsesc pagina dvs. în motoarele de căutare. %s "
9117
- "NOTĂ: uneori, Google încearcă să creeze snippet automate și să le afișeze, "
9118
- "dar este doar un experiment pe care îl desfășoară. De cele mai multe ori, "
9119
- "propriul dvs. snippet personalizat va fi cel care va fi afișat."
9120
-
9121
- #: models/focuspages/Snippet.php:256 models/focuspages/Snippet.php:278
9122
- msgid "Image"
9123
- msgstr "Imagine"
9124
-
9125
- #: models/focuspages/Social.php:44
9126
- #, php-format
9127
- msgid "%s Shares"
9128
- msgstr "%s Distribuite"
9129
-
9130
- #: models/focuspages/Social.php:45
9131
- msgid "social share"
9132
- msgstr "share social"
9133
-
9134
- #: models/focuspages/Social.php:47
9135
- #, php-format
9136
- msgid ""
9137
- "This task only tracks shares from trackable sources. %s Twitter and LinkedIN "
9138
- "share counts are no longer available. %s Of course, for Twitter you can "
9139
- "always pay Twitter directly for API access, in which case we could give you "
9140
- "a guide on how to integrate your Twitter API with our Focus Pages audit "
9141
- "services. %s %shttps://developer.twitter.com/en/pricing/search-fullarchive%s"
9142
- msgstr ""
9143
- "Această sarcină urmărește numai acțiunile din surse care pot fi urmărite. %s "
9144
- "Numărătoarea de share-uri de pe Twitter și LinkedIN nu mai este disponibilă. "
9145
- "%s Desigur, pentru Twitter puteți plăti întotdeauna Twitter direct pentru "
9146
- "accesul la API, caz în care v-am putea oferi un ghid despre cum să vă "
9147
- "integrați API-ul Twitter cu serviciile noastre de audit Focus Pages. %s "
9148
- "%shttps://developer.twitter.com/en/pricing/search-fullarchive%s"
9149
-
9150
- #: models/focuspages/Social.php:61
9151
- msgid "Go to Social Media Settings"
9152
- msgstr "Mergeți la Setări Social Media"
9153
-
9154
- #: models/focuspages/Strategy.php:70
9155
- msgid "Add keyword to Briefcase"
9156
- msgstr "Adăugați cuvinte cheie în Briefcase Squirrly"
9157
-
9158
- #: models/focuspages/Strategy.php:71
9159
- msgid "Great! The keyword exists in Briefcase"
9160
- msgstr "Grozav! Cuvântul cheie există în Briefcase"
9161
-
9162
- #: models/focuspages/Strategy.php:71
9163
- msgid "The keyword does not exist in Briefcase"
9164
- msgstr "Cuvântul cheie nu există în Briefcase"
9165
-
9166
- #: models/focuspages/Strategy.php:72
9167
- #, php-format
9168
- msgid ""
9169
- "Go add a keyword to your %sBriefcase%s. %s The Briefcase is the command "
9170
- "center for your SEO operations. Manage your keywords in Briefcase, so that "
9171
- "you'll always have quick access to them. You'll always know what your SEO "
9172
- "Strategy is all about. %s Plus, adding keywords to Briefcase will make it "
9173
- "very easy for you to collaborate with other people from your team, "
9174
- "freelancers, agencies or partners. %s Never lose the amazing keywords you "
9175
- "find through the %sSquirrly SEO Keyword Research tool%s."
9176
- msgstr ""
9177
- "Du-te și adaugă un cuvânt cheie la %sBriefcase-urile%s tale. %s Briefcase "
9178
- "este centrul de comandă pentru operațiunile SEO. Gestionați-vă cuvintele "
9179
- "cheie în Briefcase, astfel încât să aveți întotdeauna acces rapid la ele. "
9180
- "Vei ști întotdeauna despre ce este vorba în Strategia ta SEO. %s În plus, "
9181
- "adăugarea de cuvinte cheie în Briefcase îți va facilita foarte mult "
9182
- "colaborarea cu alte persoane din echipa ta, freelanceri, agenții sau "
9183
- "parteneri. %s Nu pierdeți niciodată cuvintele cheie extraordinare pe care le "
9184
- "găsiți prin intermediul instrumentului %sSquirrly SEO Keyword Research %s."
9185
-
9186
- #: models/focuspages/Strategy.php:75
9187
- msgid "Add SEO Context"
9188
- msgstr "Adăugați contextul SEO"
9189
-
9190
- #: models/focuspages/Strategy.php:78
9191
- #, php-format
9192
- msgid ""
9193
- "Optimize to %s for a secondary keyword. %s Squirrly SEO's Live Assistant "
9194
- "allows you to optimize for multiple keywords that you have placed in your "
9195
- "Briefcase. %s Use a couple of additional keywords for your Focus Page which "
9196
- "help Google understand the exact topic and context of your page. %s If you "
9197
- "added the keywords 'political party' to 'black panther', you'd make a clear "
9198
- "hint to Google that your page is about the Black Panther political party, "
9199
- "not Black Panther, the Marvel Movie. %s Or add 'places to eat' to a page "
9200
- "about your Local Restaurant in San Diego. That will give clearer context to "
9201
- "Google that your page really is about a restaurant where people can dine."
9202
- msgstr ""
9203
- "Optimizați la %s pentru un cuvânt cheie secundar. %s Asistentul Live al "
9204
- "Squirrly SEO vă permite să optimizați pentru mai multe cuvinte cheie pe care "
9205
- "le-ați plasat în servietă. %s Folosiți câteva cuvinte cheie suplimentare "
9206
- "pentru Pagina Focus, care ajută Google să înțeleagă subiectul și contextul "
9207
- "exact al paginii dvs. %s Dacă ați adăuga cuvintele cheie \"partid politic\" "
9208
- "la \"pantera neagră\", ați face un indiciu clar pentru Google că pagina dvs. "
9209
- "este despre partidul politic Pantera Neagră, nu despre Pantera Neagră, "
9210
- "filmul Marvel. %s Sau adăugați \"locuri de mâncat\" la o pagină despre "
9211
- "restaurantul dvs. local din San Diego. Acest lucru va oferi un context mai "
9212
- "clar pentru Google că pagina dvs. este într-adevăr despre un restaurant unde "
9213
- "oamenii pot lua masa."
9214
-
9215
- #: models/focuspages/Strategy.php:82
9216
- msgid "Labels Exist"
9217
- msgstr "Există etichete"
9218
-
9219
- #: models/focuspages/Strategy.php:83
9220
- msgid "Great! The keyword has Label attached to it"
9221
- msgstr "Grozav! Cuvântul cheie are atașată eticheta"
9222
-
9223
- #: models/focuspages/Strategy.php:83
9224
- msgid "The keyword does not have a label attached to it"
9225
- msgstr "Cuvântul cheie nu are o etichetă atașată la el"
9226
-
9227
- #: models/focuspages/Strategy.php:84
9228
- #, php-format
9229
- msgid ""
9230
- "To turn this task to green, go to %sLabels section%s and add a label to the "
9231
- "keyword that you've used as main keyword for this Focus Page. %s Make sure "
9232
- "that you keep creating new labels as you're finding more keywords to target "
9233
- "with your website. %s If you're unsure regarding keyword research, read "
9234
- "%sHow to Find Amazing Keywords and get more search traffic?%s . %s Organize "
9235
- "all the Keywords that you plan to use for your website with Briefcase "
9236
- "Labels. %s This task helps you make sure that the main keyword for this "
9237
- "Focus Page has been organized clearly inside your SEO Strategy. That's what "
9238
- "Briefcase Labels are all about."
9239
- msgstr ""
9240
- "Pentru a transforma această sarcină în verde, mergeți la secțiunea %sEtichete"
9241
- "%s și adăugați o etichetă la cuvântul cheie pe care l-ați folosit ca și "
9242
- "cuvânt cheie principal pentru această Pagină Focus. %s Asigurați-vă că "
9243
- "continuați să creați noi etichete pe măsură ce găsiți mai multe cuvinte "
9244
- "cheie pe care să le vizați cu site-ul dvs. web. %s Dacă nu sunteți sigur în "
9245
- "ceea ce privește cercetarea cuvintelor cheie, citiți %sCum să găsiți cuvinte "
9246
- "cheie uimitoare și să obțineți mai mult trafic de căutare?%s . %s Organizați "
9247
- "toate cuvintele cheie pe care intenționați să le folosiți pentru site-ul "
9248
- "dvs. web cu Etichete Briefcase. %s Această sarcină vă ajută să vă asigurați "
9249
- "că principalul cuvânt cheie pentru această Pagină Focus a fost organizat în "
9250
- "mod clar în cadrul Strategiei SEO. Despre asta este vorba în cazul "
9251
- "Etichetelor Briefcase."
9252
-
9253
- #: models/focuspages/Strategy.php:104
9254
- msgid "Manage Strategy"
9255
- msgstr "Gestionați strategia"
9256
-
9257
- #: models/focuspages/Strategy.php:166 models/focuspages/Strategy.php:173
9258
- msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
9259
- msgstr ""
9260
- "Adăugați un cuvânt cheie secundar în Squirrly Live Assistant din Briefcase"
9261
-
9262
- #: models/focuspages/Traffic.php:66
9263
- #, php-format
9264
- msgid "Below %s Bounce Rate"
9265
- msgstr "Mai jos de %s Bounce Rate"
9266
-
9267
- #: models/focuspages/Traffic.php:67
9268
- msgid "bounce rate"
9269
- msgstr "rata de respingere"
9270
-
9271
- #: models/focuspages/Traffic.php:68
9272
- #, php-format
9273
- msgid ""
9274
- "Make sure this number is below %s %s Why? %s A high bounce rate means that "
9275
- "your users just click on your search listing, visit the page and then decide "
9276
- "they've seen enough and bounce off to another page on the web. %s This is, "
9277
- "for Google, an indicator of the quality of the search result it displayed. "
9278
- "And if many of your users bounce off your pages, it means (to Google) that "
9279
- "your page is not worth displaying in search results, because it has low "
9280
- "performance with the user groups it sends your way. %s Easy way to complete "
9281
- "this task: give users pages to click and send them to other pages from your "
9282
- "site."
9283
- msgstr ""
9284
- "Asigurați-vă că acest număr este sub %s %s De ce? %s O rată de respingere "
9285
- "ridicată înseamnă că utilizatorii dvs. dau clic pe lista de căutare, "
9286
- "vizitează pagina, apoi decid că au văzut destul și se îndreaptă către o altă "
9287
- "pagină de pe web. %s Pentru Google, acesta este un indicator al calității "
9288
- "rezultatului de căutare pe care l-a afișat. Iar dacă mulți dintre "
9289
- "utilizatorii dvs. renunță la paginile dvs., înseamnă (pentru Google) că "
9290
- "pagina dvs. nu merită să fie afișată în rezultatele căutării, deoarece are o "
9291
- "performanță scăzută în ceea ce privește grupurile de utilizatori pe care le "
9292
- "trimite către dvs. %s O modalitate ușoară de a îndeplini această sarcină: "
9293
- "oferiți utilizatorilor pagini pe care să dea click și trimiteți-i către alte "
9294
- "pagini de pe site-ul dvs."
9295
-
9296
- #: models/focuspages/Traffic.php:71
9297
- #, php-format
9298
- msgid "Time on page is %s minutes"
9299
- msgstr "Timpul pe pagină este de %s minute"
9300
-
9301
- #: models/focuspages/Traffic.php:72
9302
- msgid "minutes avg."
9303
- msgstr "minute avg."
9304
-
9305
- #: models/focuspages/Traffic.php:74
9306
- #, php-format
9307
- msgid ""
9308
- "Make sure that visitors spend on average at least %s minutes on your site. "
9309
- "%s Get an average time on page of minimum %s minutes for this focus page. "
9310
- "You can do this by editing the content and making it more appealing to "
9311
- "visitors. %s If your visitors don't spend at least 2 minutes on your Focus "
9312
- "Page, it can mean that the page is not important enough for them, or that "
9313
- "the content from the page is boring, or hard to read, or the page just loads "
9314
- "too slow."
9315
- msgstr ""
9316
- "Asigurați-vă că vizitatorii petrec, în medie, cel puțin %s minute pe site-ul "
9317
- "dumneavoastră. %s Obțineți o medie de timp pe pagină de minim %s minute "
9318
- "pentru această pagină de interes. Puteți face acest lucru prin editarea "
9319
- "conținutului și prin faptul că îl faceți mai atractiv pentru vizitatori. %s "
9320
- "Dacă vizitatorii dvs. nu petrec cel puțin 2 minute pe pagina dvs. de "
9321
- "focalizare, poate însemna că pagina nu este suficient de importantă pentru "
9322
- "ei, sau că conținutul din pagină este plictisitor, sau greu de citit, sau "
9323
- "pur și simplu pagina se încarcă prea lent."
9324
-
9325
- #: models/focuspages/Traffic.php:77
9326
- #, php-format
9327
- msgid "%s visitors / day / page"
9328
- msgstr "%s vizitatori / zi / pagină"
9329
-
9330
- #: models/focuspages/Traffic.php:78
9331
- msgid "unique views avg."
9332
- msgstr "vizualizări unice avg."
9333
-
9334
- #: models/focuspages/Traffic.php:79
9335
- #, php-format
9336
- msgid ""
9337
- "For this task, we're looking at unique page views from your %sGoogle "
9338
- "Analytics%s. %s If you don't get an average of %s visitors / day / page, "
9339
- "then this Focus Page is not yet popular enough on your site. %s You should "
9340
- "make sure that more people end up visiting it."
9341
- msgstr ""
9342
- "Pentru această sarcină, ne uităm la vizualizările unice de pagini din "
9343
- "%sGoogle Analytics%s. %s Dacă nu obțineți o medie de %s vizitatori / zi / "
9344
- "pagină, atunci această pagină Focus nu este încă suficient de populară pe "
9345
- "site-ul dvs. %s Ar trebui să vă asigurați că mai mulți oameni ajung să o "
9346
- "viziteze."
9347
-
9348
- #: models/focuspages/Traffic.php:82
9349
- msgid "Just one Google Analytics tracking code"
9350
- msgstr "Doar un singur cod de urmărire Google Analytics"
9351
-
9352
- #: models/focuspages/Traffic.php:83
9353
- #, php-format
9354
- msgid ""
9355
- "We've seen many sites where there were multiple google analytics codes "
9356
- "placed by different employees, themes or plugins. %s With this check, we're "
9357
- "helping you make sure that your tracker is setup properly and that there "
9358
- "will be no errors with your Google Analytics account. %s To turn this green, "
9359
- "you'll have to investigate your theme, custom code that you may have placed "
9360
- "in your theme, other plugins, header settings. Once you have a clear view of "
9361
- "all the tracking codes, make sure that only one remains and that the one "
9362
- "code is the one linked to your Google Analytics account. %s These problems "
9363
- "happen more often than you would think."
9364
- msgstr ""
9365
- "Am văzut multe site-uri în care existau mai multe coduri Google Analytics "
9366
- "plasate de diferiți angajați, teme sau plugin-uri. %s Cu această verificare, "
9367
- "vă ajutăm să vă asigurați că trackerul dvs. este configurat corect și că nu "
9368
- "vor exista erori cu contul dvs. de Google Analytics. %s Pentru a transforma "
9369
- "acest lucru în verde, va trebui să investigați tema dvs., codul personalizat "
9370
- "pe care este posibil să îl fi plasat în temă, alte plugin-uri, setările "
9371
- "antetului. Odată ce aveți o imagine clară a tuturor codurilor de urmărire, "
9372
- "asigurați-vă că rămâne doar unul singur și că acel cod este cel legat de "
9373
- "contul dvs. de Google Analytics. %s Aceste probleme se întâmplă mai des "
9374
- "decât ați crede."
9375
-
9376
- #: models/focuspages/Traffic.php:121
9377
- msgid "Connect Google Analytics first"
9378
- msgstr "Conectați mai întâi Google Analytics"
9379
-
9380
- #: models/focuspages/Traffic.php:123
9381
- msgid "Not enough traffic to show relevant stats"
9382
- msgstr "Nu este suficient trafic pentru a arăta statistici relevante"
9383
-
9384
- #: models/services/Robots.php:13
9385
- msgid "Squirrly SEO Robots"
9386
- msgstr "Squirrly SEO Robots"
9387
-
9388
- #: models/services/Robots.php:16
9389
- msgid ""
9390
- "Your blog is not public. Please see Site Visibility on Settings > Reading."
9391
- msgstr ""
9392
- "Blogul dumneavoastră nu este public. Vă rugăm să consultați Vizibilitatea "
9393
- "site-ului în Setări > Lectură."
9394
-
9395
- #: models/services/Robots.php:32
9396
- msgid "No Squirrly SEO Robots found."
9397
- msgstr "Nu s-au găsit Squirrly SEO Robots."
9398
-
9399
- #: view/Assistant/Assistant.php:16
9400
- msgid "Optimize with Squirrly Live Assistant"
9401
- msgstr "Optimizați cu Squirrly Live Assistant"
9402
-
9403
- #: view/Assistant/Assistant.php:21
9404
- msgid ""
9405
- "Use Squirrly to optimize the content for your Posts, Pages, Products, Custom "
9406
- "Posts, etc."
9407
- msgstr ""
9408
- "Utilizați Squirrly pentru a optimiza conținutul pentru postările, paginile, "
9409
- "produsele, postările personalizate etc."
9410
-
9411
- #: view/Assistant/Assistant.php:35
9412
- msgid "Practice/Test Round"
9413
- msgstr "Runda de practică/teste"
9414
-
9415
- #: view/Assistant/Assistant.php:44
9416
- msgid "Add New"
9417
- msgstr "Adaugă nou"
9418
-
9419
- #: view/Assistant/Assistant.php:64
9420
- msgid "Tips: How to use Squirrly Live Assistant?"
9421
- msgstr "Sfaturi: Cum se utilizează Squirrly Live Assistant?"
9422
-
9423
- #: view/Assistant/Assistant.php:66
9424
- msgid ""
9425
- "Create a new Post, Page or Product and the Live Assistant will load so you "
9426
- "can start optimize the content."
9427
- msgstr ""
9428
- "Creați o nouă postare, pagină sau produs, iar asistentul Live Assistant se "
9429
- "va încărca, astfel încât să puteți începe să optimizați conținutul."
9430
-
9431
- #: view/Assistant/Assistant.php:67
9432
- msgid ""
9433
- "You can also optimize an existing one and update the content for better "
9434
- "ranking."
9435
- msgstr ""
9436
- "Puteți, de asemenea, să optimizați unul existent și să actualizați "
9437
- "conținutul pentru o mai bună poziționare."
9438
-
9439
- #: view/Assistant/Assistant.php:68
9440
- msgid ""
9441
- "Make sure you optimize the lead pages for one or more keywords and monitor "
9442
- "them with Focus Pages."
9443
- msgstr ""
9444
- "Asigurați-vă că optimizați paginile principale pentru unul sau mai multe "
9445
- "cuvinte cheie și monitorizați-le cu ajutorul Focus Pages."
9446
-
9447
- #: view/Assistant/Settings.php:8 view/Audits/Addpage.php:9
9448
- #: view/Audits/Audit.php:9 view/Audits/Audits.php:9 view/Audits/Compare.php:12
9449
- #: view/Audits/Settings.php:8 view/BulkSeo/Bulkseo.php:13
9450
- #: view/FocusPages/Addpage.php:9 view/FocusPages/Pagelist.php:9
9451
- #: view/FocusPages/Settings.php:8 view/Ranking/Rankings.php:18
9452
- #: view/Ranking/Settings.php:8 view/SeoSettings/Advanced.php:8
9453
- #: view/SeoSettings/Automation.php:8 view/SeoSettings/Favicon.php:8
9454
- #: view/SeoSettings/Links.php:8 view/SeoSettings/Metas.php:8
9455
- #: view/SeoSettings/Robots.php:8 view/SeoSettings/Sitemap.php:8
9456
- #: view/SeoSettings/Social.php:8 view/SeoSettings/Tracking.php:8
9457
- #: view/SeoSettings/Webmaster.php:8
9458
- msgid ""
9459
- "You do not have permission to access this page. You need Squirrly SEO Admin "
9460
- "role."
9461
- msgstr ""
9462
- "Nu aveți permisiunea de a accesa această pagină. Aveți nevoie de rolul "
9463
- "Squirrly SEO Admin."
9464
-
9465
- #: view/Assistant/Settings.php:26
9466
- msgid "Live Assistant Settings"
9467
- msgstr "Setări Live Assistant"
9468
-
9469
- #: view/Assistant/Settings.php:45
9470
- msgid "Squirrly Tooltips"
9471
- msgstr "Tooltips Squirrly"
9472
-
9473
- #: view/Assistant/Settings.php:48
9474
- #, php-format
9475
- msgid ""
9476
- "Show %sSquirrly Tooltips%s when posting a new article (e.g. 'Enter a "
9477
- "keyword')."
9478
- msgstr ""
9479
- "Afișați %sSquirrly Tooltips%s atunci când postați un articol nou (de "
9480
- "exemplu, \"Introduceți un cuvânt cheie\")."
9481
-
9482
- #: view/Assistant/Settings.php:58
9483
- msgid "Fetch Snippet on Social Media"
9484
- msgstr "Fetch Snippet pe Social Media"
9485
-
9486
- #: view/Assistant/Settings.php:61
9487
- #, php-format
9488
- msgid ""
9489
- "Automatically fetch the Squirrly Snippet on %sFacebook Sharing Debugger%s "
9490
- "every time you update the content on a page."
9491
- msgstr ""
9492
- "Preluarea automată a Snippet-ului Squirrly pe %sFacebook Sharing Debugger%s "
9493
- "de fiecare dată când actualizați conținutul unei pagini."
9494
-
9495
- #: view/Assistant/Settings.php:71
9496
- msgid "Download Remote Images"
9497
- msgstr "Descărcați imagini la distanță"
9498
-
9499
- #: view/Assistant/Settings.php:74
9500
- #, php-format
9501
- msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
9502
- msgstr ""
9503
- "Descărcați %simagini la distanță%s în %sBiblioteca media%s pentru noile "
9504
- "postări."
9505
-
9506
- #: view/Assistant/Settings.php:75
9507
- msgid ""
9508
- "Prevent from losing the images you use in your articles in case the remote "
9509
- "images are deleted."
9510
- msgstr ""
9511
- "Împiedicați pierderea imaginilor pe care le folosiți în articolele dvs. în "
9512
- "cazul în care imaginile de la distanță sunt șterse."
9513
-
9514
- #: view/Assistant/Settings.php:86
9515
- msgid "Show Copyright Free Images"
9516
- msgstr "Afișați imagini libere de drepturi de autor"
9517
-
9518
- #: view/Assistant/Settings.php:89
9519
- #, php-format
9520
- msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
9521
- msgstr "Căutați %sCopyright Free Images%s în Squirrly Live Assistant."
9522
-
9523
- #: view/Assistant/Settings.php:99
9524
- msgid "Live Assistant Type"
9525
- msgstr "Tipul de asistent live"
9526
-
9527
- #: view/Assistant/Settings.php:102
9528
- msgid "Select how you want Squirrly Live Assistant to load in editor."
9529
- msgstr ""
9530
- "Selectați modul în care doriți ca Squirrly Live Assistant să se încarce în "
9531
- "editor."
9532
-
9533
- #: view/Assistant/Settings.php:106
9534
- msgid "Auto"
9535
- msgstr "Auto"
9536
-
9537
- #: view/Assistant/Settings.php:107
9538
- msgid "Integrated Box"
9539
- msgstr "Cutie integrată"
9540
-
9541
- #: view/Assistant/Settings.php:108
9542
- msgid "Floating Box"
9543
- msgstr "Cutie plutitoare"
9544
-
9545
- #: view/Assistant/Settings.php:121
9546
- msgid "Activate Live Assistant in Frontend"
9547
- msgstr "Activați Live Assistant în Frontend"
9548
-
9549
- #: view/Assistant/Settings.php:124
9550
- msgid ""
9551
- "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
9552
- "with Builders."
9553
- msgstr ""
9554
- "Încărcați Squirrly Live Assistant în Frontend pentru a personaliza postările "
9555
- "și paginile cu Builders."
9556
-
9557
- #: view/Assistant/Settings.php:125
9558
- msgid "Currently supports the Elementor Builder plugin."
9559
- msgstr "În prezent, acceptă pluginul Elementor Builder."
9560
-
9561
- #: view/Assistant/Settings.php:132
9562
- msgid "Places where you do NOT want Squirrly Live Assistant to load"
9563
- msgstr "Locuri în care NU doriți ca Squirrly Live Assistant să se încarce"
9564
-
9565
- #: view/Assistant/Settings.php:138
9566
- msgid ""
9567
- "Don't select anything if you wish Squirrly Live Assistant to load for all "
9568
- "post types."
9569
- msgstr ""
9570
- "Nu selectați nimic dacă doriți ca Squirrly Live Assistant să se încarce "
9571
- "pentru toate tipurile de postări."
9572
-
9573
- #: view/Assistant/Settings.php:144
9574
- msgid "Exclusions"
9575
- msgstr "Excluderi"
9576
-
9577
- #: view/Assistant/Settings.php:146
9578
- msgid "Select places where you do NOT want Squirrly Live Assistant to load."
9579
- msgstr ""
9580
- "Selectați locurile în care NU doriți ca Squirrly Live Assistant să se "
9581
- "încarce."
9582
-
9583
- #: view/Assistant/Settings.php:173 view/SeoSettings/Automation.php:566
9584
- #: view/SeoSettings/Jsonld.php:476 view/SeoSettings/Metas.php:230
9585
- #: view/SeoSettings/Sitemap.php:402 view/SeoSettings/Social.php:459
9586
- msgid "Show Advanced Options"
9587
- msgstr "Arată opțiuni avansate"
9588
-
9589
- #: view/Assistant/Settings.php:174 view/SeoSettings/Automation.php:567
9590
- #: view/SeoSettings/Jsonld.php:477 view/SeoSettings/Metas.php:231
9591
- #: view/SeoSettings/Sitemap.php:403 view/SeoSettings/Social.php:460
9592
- msgid "Hide Advanced Options"
9593
- msgstr "Ascundeți opțiunile avansate"
9594
-
9595
- #: view/Assistant/Settings.php:177 view/Audits/Settings.php:65
9596
- #: view/Ranking/Settings.php:351 view/SeoSettings/Advanced.php:104
9597
- #: view/SeoSettings/Automation.php:570 view/SeoSettings/Automation.php:684
9598
- #: view/SeoSettings/Favicon.php:116 view/SeoSettings/Jsonld.php:480
9599
- #: view/SeoSettings/Links.php:120 view/SeoSettings/Metas.php:234
9600
- #: view/SeoSettings/Robots.php:91 view/SeoSettings/Sitemap.php:406
9601
- #: view/SeoSettings/Social.php:463 view/SeoSettings/Tracking.php:158
9602
- #: view/SeoSettings/Webmaster.php:168
9603
- msgid "Save Settings"
9604
- msgstr "Salveaza setari"
9605
-
9606
- #: view/Audits/Addpage.php:23
9607
- msgid "Add a page in Audit"
9608
- msgstr "Adăugați o pagină în Audit"
9609
-
9610
- #: view/Audits/Addpage.php:28 view/Audits/Audit.php:30
9611
- #: view/Audits/Audits.php:31 view/Audits/Compare.php:34
9612
- msgid ""
9613
- "Verifies the online presence of your website by knowing how your website is "
9614
- "performing in terms of Blogging, SEO, Social, Authority, Links, and Traffic"
9615
- msgstr ""
9616
- "Verifică prezența online a site-ului dvs. web prin cunoașterea "
9617
- "performanțelor site-ului dvs. în ceea ce privește Blogging, SEO, Social, "
9618
- "Autoritatea, Link-uri și Traficul"
9619
-
9620
- #: view/Audits/Addpage.php:96 view/BulkSeo/Bulkseo.php:101
9621
- #: view/FocusPages/Addpage.php:96
9622
- msgid "Any status"
9623
- msgstr "Orice statut"
9624
-
9625
- #: view/Audits/Addpage.php:116 view/BulkSeo/Bulkseo.php:121
9626
- #: view/FocusPages/Addpage.php:116 view/Research/Research.php:210
9627
- msgid "Search"
9628
- msgstr "Caută"
9629
-
9630
- #: view/Audits/Addpage.php:118 view/Audits/Audit.php:42
9631
- #: view/Audits/Compare.php:49 view/BulkSeo/Bulkseo.php:123
9632
- #: view/FocusPages/Addpage.php:118 view/FocusPages/FocusPages.php:7
9633
- #: view/Ranking/Rankings.php:63 view/Research/Briefcase.php:39
9634
- #: view/Research/Briefcase.php:68
9635
- msgid "Show All"
9636
- msgstr "Arată toate"
9637
-
9638
- #: view/Audits/Addpage.php:136 view/FocusPages/Addpage.php:137
9639
- msgid "Option"
9640
- msgstr "Opțiune"
9641
-
9642
- #: view/Audits/Addpage.php:178
9643
- msgid "Add Page to Audit"
9644
- msgstr "Adăugați pagina la audit"
9645
-
9646
- #: view/Audits/Addpage.php:182
9647
- msgid "See Audits"
9648
- msgstr "Vezi audituri"
9649
-
9650
- #: view/Audits/Addpage.php:196 view/BulkSeo/Bulkseo.php:198
9651
- #: view/FocusPages/Addpage.php:200
9652
- msgid "Prev Page"
9653
- msgstr "Pagina anterioară"
9654
-
9655
- #: view/Audits/Addpage.php:197 view/BulkSeo/Bulkseo.php:199
9656
- #: view/FocusPages/Addpage.php:201
9657
- msgid "Next Page"
9658
- msgstr "Pagina următoare"
9659
-
9660
- #: view/Audits/Addpage.php:205 view/FocusPages/Addpage.php:209
9661
- msgid "No page found. Try other post types."
9662
- msgstr "Nu s-a găsit nicio pagină. Încercați alte tipuri de postări."
9663
-
9664
- #: view/Audits/Audit.php:25 view/Audits/Compare.php:29
9665
- msgid "Audit Details"
9666
- msgstr "Detalii de audit"
9667
-
9668
- #: view/Audits/Audit.php:68
9669
- msgid "Audit Pages"
9670
- msgstr "Pagini de audit"
9671
-
9672
- #: view/Audits/Audit.php:91
9673
- msgid "Show Only Completed Tasks"
9674
- msgstr "Afișați numai sarcinile finalizate"
9675
-
9676
- #: view/Audits/Audit.php:96
9677
- msgid "Show Only Incompleted Tasks"
9678
- msgstr "Afișați numai sarcinile neîndeplinite"
9679
-
9680
- #: view/Audits/AuditPageRow.php:41
9681
- msgid "Last checked"
9682
- msgstr "Ultima verificare"
9683
-
9684
- #: view/Audits/AuditPageRow.php:47
9685
- msgid "Could not create the audit for this URL"
9686
- msgstr "Nu s-a putut crea auditul pentru acest URL"
9687
-
9688
- #: view/Audits/AuditPageRow.php:47
9689
- msgid "error code"
9690
- msgstr "cod de eroare"
9691
-
9692
- #: view/Audits/AuditPageRow.php:49
9693
- #, php-format
9694
- msgid ""
9695
- "The way your WordPress site is currently hosted can affect the way Squirrly "
9696
- "SEO operates in order to retrieve and process data about this page. %sIt’s "
9697
- "important to do everything on your end to ensure that the audits can be "
9698
- "generated by our system. %s Whitelist our crawler IP address (176.9.112.210) "
9699
- "to allow our server to verify your page so that you’ll receive a full audit."
9700
- msgstr ""
9701
- "Modul în care este găzduit în prezent site-ul dvs. WordPress poate afecta "
9702
- "modul în care Squirrly SEO operează pentru a prelua și procesa datele despre "
9703
- "această pagină. %sEste important să faceți tot ce este necesar din partea "
9704
- "dvs. pentru a vă asigura că auditurile pot fi generate de sistemul nostru. "
9705
- "%s Puneți pe lista albă adresa IP a crawlerului nostru (176.9.112.210) "
9706
- "pentru a permite serverului nostru să vă verifice pagina, astfel încât să "
9707
- "primiți un audit complet."
9708
-
9709
- #: view/Audits/AuditPageRow.php:50 view/Audits/AuditPageRow.php:78
9710
- #: view/FocusPages/FocusPageRow.php:114 view/FocusPages/FocusPageRow.php:198
9711
- msgid "Inspect URL"
9712
- msgstr "Inspectați URL-ul"
9713
-
9714
- #: view/Audits/AuditPageRow.php:72 view/FocusPages/FocusPageRow.php:93
9715
- #: view/FocusPages/FocusPageRow.php:192
9716
- msgid "Request New Audit"
9717
- msgstr "Solicitarea unui nou audit"
9718
-
9719
- #: view/Audits/AuditPageRow.php:81
9720
- msgid "Do you want to delete the Audit Page?"
9721
- msgstr "Doriți să ștergeți pagina de audit?"
9722
-
9723
- #: view/Audits/AuditPageRow.php:87
9724
- msgid "Remove Page from Audit"
9725
- msgstr "Îndepărtați pagina din audit"
9726
-
9727
- #: view/Audits/AuditPages.php:7
9728
- msgid "Audited pages"
9729
- msgstr "Pagini auditate"
9730
-
9731
- #: view/Audits/AuditPages.php:14 view/FocusPages/FocusPages.php:54
9732
- msgid "Permalink"
9733
- msgstr "Permalink"
9734
-
9735
- #: view/Audits/AuditPages.php:48
9736
- #, php-format
9737
- msgid "No data for this filter. %sShow All%s Audit Pages."
9738
- msgstr "Nu există date pentru acest filtru. %sShow All%s Pagini de audit."
9739
-
9740
- #: view/Audits/AuditPages.php:54
9741
- msgid "Welcome to SEO Audits"
9742
- msgstr "Bine ați venit la SEO Audits"
9743
-
9744
- #: view/Audits/AuditPages.php:56
9745
- msgid "Add a new page for Audit to get started"
9746
- msgstr "Adăugați o nouă pagină pentru Audit pentru a începe"
9747
-
9748
- #: view/Audits/AuditPages.php:69 view/Errors/Error.php:21
9749
- #: view/FocusPages/FocusPages.php:127 view/Ranking/Rankings.php:463
9750
- #, php-format
9751
- msgid ""
9752
- "There is a connection error with Squirrly Cloud. Please check the connection "
9753
- "and %srefresh the page%s."
9754
- msgstr ""
9755
- "Există o eroare de conexiune cu Squirrly Cloud. Vă rugăm să verificați "
9756
- "conexiunea și %sreîncărcați pagina%s."
9757
-
9758
- #: view/Audits/AuditStats.php:30
9759
- msgid ""
9760
- "Your score is low. A medium score is over 50, and a good score is over 80."
9761
- msgstr ""
9762
- "Scorul dumneavoastră este scăzut. Un scor mediu este de peste 50, iar un "
9763
- "scor bun este de peste 80."
9764
-
9765
- #: view/Audits/AuditStats.php:32
9766
- msgid "Your score is medium. A good score is over 80."
9767
- msgstr "Scorul dumneavoastră este mediu. Un scor bun este de peste 80."
9768
-
9769
- #: view/Audits/AuditStats.php:34
9770
- msgid "Your score is good. Keep it as high as posible for good results."
9771
- msgstr ""
9772
- "Scorul dumneavoastră este bun. Păstrați-l cât mai ridicat posibil pentru "
9773
- "rezultate bune."
9774
-
9775
- #: view/Audits/AuditStats.php:41 view/Audits/AuditStats.php:235
9776
- #: view/Audits/Compare.php:78
9777
- msgid "Audit Score"
9778
- msgstr "Scor de audit"
9779
-
9780
- #: view/Audits/AuditStats.php:54
9781
- msgid "Your audit score is"
9782
- msgstr "Punctajul dvs. de audit este"
9783
-
9784
- #: view/Audits/AuditStats.php:63
9785
- msgid "Add a new page for Audit"
9786
- msgstr "Adăugați o nouă pagină pentru Audit"
9787
-
9788
- #: view/Audits/AuditStats.php:71
9789
- msgid "Audit Date"
9790
- msgstr "Data auditului"
9791
-
9792
- #: view/Audits/AuditStats.php:78 view/Audits/AuditStats.php:102
9793
- msgid "You can refresh the audit once every hour"
9794
- msgstr "Puteți reîmprospăta auditul o dată la fiecare oră"
9795
-
9796
- #: view/Audits/AuditStats.php:80 view/Audits/AuditStats.php:104
9797
- msgid "Request Website Audit"
9798
- msgstr "Solicitați un audit al site-ului web"
9799
-
9800
- #: view/Audits/AuditStats.php:90
9801
- msgid "Audit in progress"
9802
- msgstr "Audit în curs de desfășurare"
9803
-
9804
- #: view/Audits/AuditStats.php:96
9805
- msgid "Audit not ready yet"
9806
- msgstr "Auditul nu este încă gata"
9807
-
9808
- #: view/Audits/AuditStats.php:123 view/Audits/AuditStats.php:237
9809
- #: view/Ranking/Rankings.php:415 view/Research/History.php:35
9810
- msgid "Date"
9811
- msgstr "Data"
9812
-
9813
- #: view/Audits/AuditStats.php:123
9814
- msgid "On-Page"
9815
- msgstr "On-Page"
9816
-
9817
- #: view/Audits/AuditStats.php:123
9818
- msgid "Off-Page"
9819
- msgstr "Off-Page"
9820
-
9821
- #: view/Audits/AuditStats.php:146
9822
- #, php-format
9823
- msgid "You've completed %s tasks from %s"
9824
- msgstr "Ai finalizat %s sarcini din %s"
9825
-
9826
- #: view/Audits/AuditStats.php:170 view/Audits/Compare.php:59
9827
- msgid "Scores"
9828
- msgstr "Scoruri"
9829
-
9830
- #: view/Audits/AuditStats.php:171
9831
- #, php-format
9832
- msgid "the latest %s days evolution for Audit"
9833
- msgstr "evoluția ultimelor %s zile pentru Audit"
9834
-
9835
- #: view/Audits/AuditStats.php:196 view/FocusPages/FocusPageStats.php:141
9836
- #: view/Goals/CheckSeo.php:21 view/Ranking/Rankings.php:160
9837
- msgid "Progress & Achievements"
9838
- msgstr "Progrese și realizări"
9839
-
9840
- #: view/Audits/AuditStats.php:197
9841
- #, php-format
9842
- msgid "the latest %s days progress for Audit Pages"
9843
- msgstr "ultimele %s zile de progres pentru Pagini de audit"
9844
-
9845
- #: view/Audits/AuditStats.php:207 view/FocusPages/FocusPageStats.php:152
9846
- #: view/Ranking/Rankings.php:189
9847
- msgid "No progress found yet"
9848
- msgstr "Nici un progres găsit încă"
9849
-
9850
- #: view/Audits/AuditStats.php:220
9851
- msgid "Audit History"
9852
- msgstr "Istoricul auditului"
9853
-
9854
- #: view/Audits/AuditStats.php:227
9855
- msgid "Compare Audits"
9856
- msgstr "Comparați auditurile"
9857
-
9858
- #: view/Audits/AuditStats.php:236
9859
- msgid "Page(s)"
9860
- msgstr "Pagina (pagini)"
9861
-
9862
- #: view/Audits/AuditStats.php:253
9863
- msgid "pages"
9864
- msgstr "meniu"
9865
-
9866
- #: view/Audits/AuditStats.php:257
9867
- msgid "Show Latest Audit"
9868
- msgstr "Afișați cel mai recent audit"
9869
-
9870
- #: view/Audits/AuditStats.php:257
9871
- msgid "Show Audit"
9872
- msgstr "Arată auditul"
9873
-
9874
- #: view/Audits/Audits.php:71
9875
- #, php-format
9876
- msgid ""
9877
- "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
9878
- "to generate the new audit for each page. There is a lot of processing "
9879
- "involved."
9880
- msgstr ""
9881
- "%sNota:%s Rețineți că durează între %s1 minut și 5 minute%s pentru a genera "
9882
- "noul audit pentru fiecare pagină. Este implicată o mare cantitate de "
9883
- "procesare."
9884
-
9885
- #: view/Audits/Audits.php:78
9886
- #, php-format
9887
- msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
9888
- msgstr "Aflați cum să vă îmbunătățiți scorul SEO Audit în timp %sClick aici%s"
9889
-
9890
- #: view/Audits/Audits.php:97 view/FocusPages/Pagelist.php:96
9891
- msgid "Squirrly Inspect URL"
9892
- msgstr "Squirrly Inspect URL"
9893
-
9894
- #: view/Audits/Settings.php:31
9895
- msgid "Audit Settings"
9896
- msgstr "Setări de audit"
9897
-
9898
- #: view/Audits/Settings.php:48
9899
- msgid "Audit Email"
9900
- msgstr "E-mail de audit"
9901
-
9902
- #: view/Audits/Settings.php:49
9903
- msgid "Enter the email address on which you want to receive the weekly audits."
9904
- msgstr ""
9905
- "Introduceți adresa de e-mail la care doriți să primiți auditurile "
9906
- "săptămânale."
9907
-
9908
- #: view/Blocks/Account.php:11
9909
- msgid "Account Info Unavailable"
9910
- msgstr "Informații despre cont indisponibile"
9911
-
9912
- #: view/Blocks/Account.php:44
9913
- msgid "Your Plan"
9914
- msgstr "Planul tău"
9915
-
9916
- #: view/Blocks/Account.php:45
9917
- msgid "Check Account Info"
9918
- msgstr "Verificați informațiile despre cont"
9919
-
9920
- #: view/Blocks/Account.php:50 view/Blocks/Login.php:10 view/Blocks/Login.php:28
9921
- msgid "Email"
9922
- msgstr "E-mail"
9923
-
9924
- #: view/Blocks/Account.php:56
9925
- #, php-format
9926
- msgid "Due Date: %s"
9927
- msgstr "Data scadentă: %s"
9928
-
9929
- #: view/Blocks/Account.php:63
9930
- msgid "Want to see the rest of the sites under your account?"
9931
- msgstr "Doriți să vedeți restul site-urilor din contul dumneavoastră?"
9932
-
9933
- #: view/Blocks/Account.php:64
9934
- msgid "Click Here"
9935
- msgstr "Click aici"
9936
-
9937
- #: view/Blocks/Connect.php:15 view/Blocks/Connect.php:29
9938
- #, php-format
9939
- msgid ""
9940
- "This option is used to track innerlinks and insights for your Focus Pages "
9941
- "and give detailed information about them. %sIt is also useful for sending "
9942
- "the optimized posts from %shttps://cloud.squirrly.co%s directly on your "
9943
- "WordPress site."
9944
- msgstr ""
9945
- "Această opțiune este utilizată pentru a urmări legăturile interne și "
9946
- "perspectivele pentru paginile Focus și pentru a oferi informații detaliate "
9947
- "despre acestea. %sEste, de asemenea, utilă pentru a trimite postările "
9948
- "optimizate de pe %shttps://cloud.squirrly.co%s direct pe site-ul dvs. "
9949
- "WordPress."
9950
-
9951
- #: view/Blocks/Connect.php:16
9952
- msgid "Let Squirrly Cloud get data for Focus Pages"
9953
- msgstr "Lăsați Squirrly Cloud să obțină date pentru Focus Pages"
9954
-
9955
- #: view/Blocks/Connect.php:19
9956
- msgid "Connect"
9957
- msgstr "Conecteaza"
9958
-
9959
- #: view/Blocks/Connect.php:31
9960
- msgid "Let Squirrly Cloud connect to WordPress API"
9961
- msgstr "Lăsați Squirrly Cloud să se conecteze la API-ul WordPress"
9962
-
9963
- #: view/Blocks/Connect.php:35
9964
- msgid "disconnect"
9965
- msgstr "deconectați"
9966
-
9967
- #: view/Blocks/Dashboard.php:22
9968
- msgid "Upgrade your SEO with Squirrly and improve your rankings on Google"
9969
- msgstr ""
9970
- "Upgradează-ți SEO cu Squirrly și îmbunătățește-ți clasamentul pe Google"
9971
-
9972
- #: view/Blocks/Dashboard.php:32
9973
- msgid "Congratulations! you have success messages"
9974
- msgstr "Felicitări! aveți mesaje de succes"
9975
-
9976
- #: view/Blocks/Dashboard.php:51 view/Blocks/Dashboard.php:89
9977
- msgid "others"
9978
- msgstr "alții"
9979
-
9980
- #: view/Blocks/Dashboard.php:60
9981
- #, php-format
9982
- msgid "See %s other achievements"
9983
- msgstr "Vezi %s alte realizări"
9984
-
9985
- #: view/Blocks/Dashboard.php:62
9986
- msgid "See today's achievements"
9987
- msgstr "Vezi realizările de astăzi"
9988
-
9989
- #: view/Blocks/Dashboard.php:71
9990
- msgid "You got new goals"
9991
- msgstr "Ai obiective noi"
9992
-
9993
- #: view/Blocks/Dashboard.php:98
9994
- #, php-format
9995
- msgid "See %s other goals"
9996
- msgstr "Vezi %s alte obiective"
9997
-
9998
- #: view/Blocks/Dashboard.php:100
9999
- msgid "See today's goals"
10000
- msgstr "Vezi obiectivele de astăzi"
10001
-
10002
- #: view/Blocks/Dashboard.php:106 view/Goals/Goals.php:214
10003
- #, php-format
10004
- msgid "No other goals for today. %sGood job!"
10005
- msgstr "Nu am alte obiective pentru astăzi. %sBună treabă!"
10006
-
10007
- #: view/Blocks/Dashboard.php:108 view/Goals/Goals.php:225
10008
- msgid "Rank your best pages with Focus Pages"
10009
- msgstr "Clasificați-vă cele mai bune pagini cu Focus Pages"
10010
-
10011
- #: view/Blocks/Dashboard.php:111 view/Goals/Goals.php:222
10012
- msgid "Boost your SEO with Bulk SEO"
10013
- msgstr "Stimulează-ți SEO cu Bulk SEO"
10014
-
10015
- #: view/Blocks/Dashboard.php:136 view/Goals/CheckSeo.php:138
10016
- msgid "Checking the website ..."
10017
- msgstr "Verificând site-ul web ..."
10018
-
10019
- #: view/Blocks/Features.php:13
10020
- msgid "Squirrly SEO Main Features"
10021
- msgstr "Squirrly SEO Caracteristici principale"
10022
-
10023
- #: view/Blocks/Features.php:14
10024
- msgid "Manage the features & access them directly from here."
10025
- msgstr "Gestionați funcțiile și accesați-le direct de aici."
10026
-
10027
- #: view/Blocks/Features.php:25
10028
- msgid "Search Feature"
10029
- msgstr "Caută"
10030
-
10031
- #: view/Blocks/Features.php:49 view/Blocks/Features.php:60
10032
- #: view/Blocks/Features.php:71 view/Blocks/Features.php:82
10033
- msgid "Click here if you want to see a comparison between them"
10034
- msgstr "Faceți clic aici dacă doriți să vedeți o comparație între ele"
10035
-
10036
- #: view/Blocks/Features.php:91
10037
- msgid "Do you want to activate manual feature setup?"
10038
- msgstr "Doriți să activați configurarea manuală a funcțiilor?"
10039
-
10040
- #: view/Blocks/Features.php:134
10041
- msgid "start feature setup"
10042
- msgstr "configureaza feature"
10043
-
10044
- #: view/Blocks/Features.php:138
10045
- msgid "see feature"
10046
- msgstr "a se vedea caracteristica"
10047
-
10048
- #: view/Blocks/Features.php:160
10049
- msgid "connect to cloud"
10050
- msgstr "conectare la cloud"
10051
-
10052
- #: view/Blocks/Features.php:164
10053
- msgid "already active"
10054
- msgstr "deja activ"
10055
-
10056
- #: view/Blocks/Features.php:168
10057
- msgid "activate feature"
10058
- msgstr "activați funcția"
10059
-
10060
- #: view/Blocks/Features.php:177
10061
- msgid "help"
10062
- msgstr "ajutor"
10063
-
10064
- #: view/Blocks/Features.php:196
10065
- msgid "Do you want to search in the 400 features list?"
10066
- msgstr "Doriți să căutați în lista celor 400 de caracteristici?"
10067
-
10068
- #: view/Blocks/Features.php:198
10069
- msgid "Do you want to see all 400 features list?"
10070
- msgstr "Doriți să vedeți toate cele 400 de caracteristici?"
10071
-
10072
- #: view/Blocks/Jorney.php:13 view/Blocks/Jorney.php:96
10073
- msgid "14 Days Journey Course"
10074
- msgstr "14 Zile de Curs SEO"
10075
-
10076
- #: view/Blocks/Jorney.php:18
10077
- #, php-format
10078
- msgid "Follow the %sdaily recipe%s from below."
10079
- msgstr "Urmați rețeta %scurentă%s de mai jos."
10080
-
10081
- #: view/Blocks/Jorney.php:19 view/Onboarding/Journey2.php:33
10082
- #, php-format
10083
- msgid ""
10084
- "%sJoin%s the rest of the %sJourneyTeam on the Facebook Group%s and if you "
10085
- "want you can share with the members that you have started your Journey."
10086
- msgstr ""
10087
- "%sAlăture-te%s cu restul echipei %sJourneyTeam pe grupul de Facebook%s și, "
10088
- "dacă vrei, poți împărtăși cu membrii că ți-ai început călătoria."
10089
-
10090
- #: view/Blocks/Jorney.php:33
10091
- msgid "Congratulations! You've completed the 14 Days Journey To Better Ranking"
10092
- msgstr ""
10093
- "Felicitări! Ați finalizat Călătoria de 14 zile pentru un ranking mai bun"
10094
-
10095
- #: view/Blocks/Jorney.php:35
10096
- msgid "Your 14 Days Journey To Better Ranking"
10097
- msgstr "Călătoria ta de 14 zile pentru un ranking mai bun"
10098
-
10099
- #: view/Blocks/Jorney.php:43 view/Blocks/Jorney.php:61
10100
- msgid "Day"
10101
- msgstr "Zi"
10102
-
10103
- #: view/Blocks/Jorney.php:50
10104
- msgid "If you missed a day, click on it and read the SEO recipe for it."
10105
- msgstr "Dacă ați ratat o zi, dați clic pe ea și citiți rețeta SEO aferentă."
10106
-
10107
- #: view/Blocks/Jorney.php:56
10108
- msgid "I'm all done. Hide this block."
10109
- msgstr "Am terminat. Ascundeți acest bloc."
10110
-
10111
- #: view/Blocks/Jorney.php:61
10112
- msgid "Open the SEO recipe for today"
10113
- msgstr "Deschideți rețeta SEO pentru astăzi"
10114
-
10115
- #: view/Blocks/Jorney.php:66 view/FocusPages/Addpage.php:23
10116
- msgid "Add a page in Focus Pages"
10117
- msgstr "Adăugați o pagină în Focus Pages"
10118
-
10119
- #: view/Blocks/Jorney.php:101 view/Onboarding/Journey1.php:23
10120
- msgid ""
10121
- "All you need now is to start driving One of your most valuable pages to "
10122
- "Better Rankings."
10123
- msgstr ""
10124
- "Tot ce trebuie să faceți acum este să începeți să conduceți una dintre cele "
10125
- "mai valoroase pagini ale dvs. către un ranking mai bun."
10126
-
10127
- #: view/Blocks/Jorney.php:104
10128
- msgid "I'm ready to start the Journey To Better Ranking"
10129
- msgstr "Sunt gata să încep Călătoria spre un ranking mai bun"
10130
-
10131
- #: view/Blocks/KnowledgeBase.php:8
10132
- msgid "Knowledge Base"
10133
- msgstr "Baza de cunoştinţe"
10134
-
10135
- #: view/Blocks/Login.php:14
10136
- msgid "Password"
10137
- msgstr "Parola"
10138
-
10139
- #: view/Blocks/Login.php:18
10140
- msgid "Register to Squirrly.co"
10141
- msgstr "Inregistreaza-te la Squirrly.co"
10142
-
10143
- #: view/Blocks/Login.php:19
10144
- msgid "Lost password?"
10145
- msgstr "Ai uitat parola?"
10146
-
10147
- #: view/Blocks/Login.php:19
10148
- msgid "Lost password"
10149
- msgstr "Am uitat parola"
10150
-
10151
- #: view/Blocks/Login.php:21
10152
- msgid "Login"
10153
- msgstr "Logare"
10154
-
10155
- #: view/Blocks/Login.php:35
10156
- msgid "I already have an account"
10157
- msgstr "Am deja un cont"
10158
-
10159
- #: view/Blocks/Login.php:38
10160
- #, php-format
10161
- msgid "I Agree with the Squirrly %sTerms of Use%s and %sPrivacy Policy%s"
10162
- msgstr ""
10163
- "Sunt de acord cu termenii de utilizare %sTermeni de utilizare%s și "
10164
- "%sPolitica de confidențialitate%s de la Squirrly"
10165
-
10166
- #: view/Blocks/Login.php:40
10167
- msgid "Sign Up"
10168
- msgstr "Sign Up"
10169
-
10170
- #: view/Blocks/SLASearch.php:3
10171
- msgid "Waiting for your editor to load .."
10172
- msgstr "Așteptând ca editorul dvs. să se încarce .."
10173
-
10174
- #: view/Blocks/SLASearch.php:9
10175
- msgid "Click to Close Squirrly Live Assistant"
10176
- msgstr "Faceți clic pentru a închide Squirrly Live Assistant"
10177
-
10178
- #: view/Blocks/SLASearch.php:10
10179
- msgid "Click to Minimize Box"
10180
- msgstr "Faceți clic pentru a minimiza caseta"
10181
-
10182
- #: view/Blocks/SLASearch.php:11
10183
- msgid "Click to Maximize Box"
10184
- msgstr "Faceți clic pentru a maximiza caseta"
10185
-
10186
- #: view/Blocks/SLASearch.php:12 view/Blocks/SLASearch.php:18
10187
- msgid "Squirrly Briefcase"
10188
- msgstr "Briefcase Squirrly"
10189
-
10190
- #: view/Blocks/SLASearch.php:19
10191
- msgid "Refresh the briefcase"
10192
- msgstr "Reîmprospătați servieta"
10193
-
10194
- #: view/Blocks/SLASearch.php:20
10195
- msgid "Close Briefcase"
10196
- msgstr "Close Briefcase"
10197
-
10198
- #: view/Blocks/SLASearch.php:22
10199
- msgid "Search in Briefcase ..."
10200
- msgstr "Căutați în Briefcase ..."
10201
-
10202
- #: view/Blocks/SLASearch.php:24
10203
- msgid "Go to Briefcase"
10204
- msgstr "Mergeți la Briefcase"
10205
-
10206
- #: view/Blocks/SLASearch.php:32
10207
- msgid "Enter a keyword"
10208
- msgstr "Adauga cuvant"
10209
-
10210
- #: view/Blocks/SLASearch.php:33
10211
- msgid "for Squirrly Live SEO optimization"
10212
- msgstr "pentru optimizare cu Squirrly SEO"
10213
-
10214
- #: view/Blocks/SLASearch.php:38
10215
- msgid "Type in your keyword..."
10216
- msgstr "Introduceți cuvântul cheie..."
10217
-
10218
- #: view/Blocks/SLASearch.php:40
10219
- msgid "Use this keyword"
10220
- msgstr "Foloseste acest cuvant"
10221
-
10222
- #: view/Blocks/SLASearch.php:43
10223
- msgid "Do keyword research!"
10224
- msgstr "Fă cercetare de cuvinte cheie!"
10225
-
10226
- #: view/Blocks/SLASearch.php:47
10227
- msgid "Images"
10228
- msgstr "Imagini"
10229
-
10230
- #: view/Blocks/SLASearch.php:48
10231
- msgid "Twitter"
10232
- msgstr "Twitter"
10233
-
10234
- #: view/Blocks/SLASearch.php:49
10235
- msgid "Wiki"
10236
- msgstr "Wiki"
10237
-
10238
- #: view/Blocks/SLASearch.php:50
10239
- msgid "Blogs"
10240
- msgstr "Bloguri"
10241
-
10242
- #: view/Blocks/SLASearch.php:51
10243
- msgid "My articles"
10244
- msgstr "Articolele mele"
10245
-
10246
- #: view/Blocks/SLASearch.php:59
10247
- msgid "Show only Copyright Free images"
10248
- msgstr "Arata doar imagini fara copyright"
10249
-
10250
- #: view/Blocks/SLASeo.php:4
10251
- msgid "Squirrly Live Assistant"
10252
- msgstr "Asistent live Squirrly"
10253
-
10254
- #: view/Blocks/SLASeo.php:7
10255
- msgid "Update"
10256
- msgstr "Update"
10257
-
10258
- #: view/Blocks/SLASeo.php:10
10259
- msgid "Split Window"
10260
- msgstr "Fereastră divizată"
10261
-
10262
- #: view/Blocks/Snippet.php:86
10263
- msgid "Meta Tags"
10264
- msgstr "Meta etichete"
10265
-
10266
- #: view/Blocks/Snippet.php:113
10267
- #, php-format
10268
- msgid ""
10269
- "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
10270
- "will not load for this post type on the frontend"
10271
- msgstr ""
10272
- "Post Type (%s) a fost exclus din %sSquirrly > SEO Settings%s. Squirrly SEO "
10273
- "nu se va încărca pentru acest tip de post în frontend"
10274
-
10275
- #: view/Blocks/Snippet.php:121 view/SeoSettings/Automation.php:216
10276
- #: view/SeoSettings/Automation.php:245 view/SeoSettings/Automation.php:331
10277
- msgid "Activate Metas"
10278
- msgstr "Activați META-urile"
10279
-
10280
- #: view/Blocks/Snippet.php:130
10281
- msgid "How this page will appear on Search Engines"
10282
- msgstr "Cum va apărea această pagină pe motoarele de căutare"
10283
-
10284
- #: view/Blocks/Snippet.php:134 view/Blocks/Snippet.php:370
10285
- #: view/Blocks/Snippet.php:629 view/Blocks/Snippet.php:895
10286
- #: view/Blocks/Snippet.php:1125
10287
- msgid "Refresh"
10288
- msgstr "Reîmprospătare"
10289
-
10290
- #: view/Blocks/Snippet.php:138 view/Blocks/Snippet.php:654
10291
- #: view/Blocks/Snippet.php:922
10292
- msgid "AUTO-DRAFT"
10293
- msgstr "Auto Draft"
10294
-
10295
- #: view/Blocks/Snippet.php:149 view/Blocks/Snippet.php:942
10296
- msgid "Please save the post first to be able to edit the Squirrly SEO Snippet"
10297
- msgstr ""
10298
- "Vă rugăm să salvați mai întâi postarea pentru a putea edita Squirrly SEO "
10299
- "Snippet"
10300
-
10301
- #: view/Blocks/Snippet.php:156 view/Blocks/Snippet.php:682
10302
- #: view/Blocks/Snippet.php:949
10303
- msgid "Cancel"
10304
- msgstr "Renunta"
10305
-
10306
- #: view/Blocks/Snippet.php:157 view/Blocks/Snippet.php:371
10307
- #: view/Blocks/Snippet.php:683 view/Blocks/Snippet.php:950
10308
- #: view/Blocks/Snippet.php:1126
10309
- msgid "Save"
10310
- msgstr "Salvează"
10311
-
10312
- #: view/Blocks/Snippet.php:167
10313
- msgid "Activate Title"
10314
- msgstr "Activați Titlu"
10315
-
10316
- #: view/Blocks/Snippet.php:174 view/Blocks/Snippet.php:225
10317
- #: view/Blocks/Snippet.php:716 view/Blocks/Snippet.php:759
10318
- #: view/Blocks/Snippet.php:983 view/Blocks/Snippet.php:1026
10319
- #, php-format
10320
- msgid "Tips: Length %s-%s chars"
10321
- msgstr "Sfaturi: Lungime %s-%s caractere"
10322
-
10323
- #: view/Blocks/Snippet.php:177 view/Blocks/Snippet.php:201
10324
- #: view/Blocks/Snippet.php:228 view/Blocks/Snippet.php:255
10325
- #: view/Blocks/Snippet.php:719 view/Blocks/Snippet.php:743
10326
- #: view/Blocks/Snippet.php:762 view/Blocks/Snippet.php:789
10327
- #: view/Blocks/Snippet.php:986 view/Blocks/Snippet.php:1010
10328
- #: view/Blocks/Snippet.php:1029 view/Blocks/Snippet.php:1056
10329
- msgid "Pattern"
10330
- msgstr "Model"
10331
-
10332
- #: view/Blocks/Snippet.php:194 view/Blocks/Snippet.php:736
10333
- #: view/Blocks/Snippet.php:1003
10334
- msgid "Default Title"
10335
- msgstr "Titlu implicit"
10336
-
10337
- #: view/Blocks/Snippet.php:218
10338
- msgid "Activate Description"
10339
- msgstr "Activare Descriere"
10340
-
10341
- #: view/Blocks/Snippet.php:224
10342
- msgid "Meta Description"
10343
- msgstr "Descriere Meta"
10344
-
10345
- #: view/Blocks/Snippet.php:248 view/Blocks/Snippet.php:782
10346
- #: view/Blocks/Snippet.php:1049
10347
- msgid "Default Description"
10348
- msgstr "Descriere implicită Descriere"
10349
-
10350
- #: view/Blocks/Snippet.php:272
10351
- msgid "Activate Keywords"
10352
- msgstr "Activați cuvintele cheie"
10353
-
10354
- #: view/Blocks/Snippet.php:278
10355
- msgid "Meta Keywords"
10356
- msgstr "Cuvinte cheie meta"
10357
-
10358
- #: view/Blocks/Snippet.php:282
10359
- msgid "+ Add keyword"
10360
- msgstr "Adauga cuvant cheie"
10361
-
10362
- #: view/Blocks/Snippet.php:294
10363
- msgid "Activate Canonical"
10364
- msgstr "Activați Canonical"
10365
-
10366
- #: view/Blocks/Snippet.php:301
10367
- msgid "Leave it blank if you don't have an external canonical"
10368
- msgstr "Lasă-l gol dacă nu ai un canonical extern"
10369
-
10370
- #: view/Blocks/Snippet.php:304
10371
- msgid "Found"
10372
- msgstr "Găsit"
10373
-
10374
- #: view/Blocks/Snippet.php:316
10375
- msgid "Default Link"
10376
- msgstr "Link implicit"
10377
-
10378
- #: view/Blocks/Snippet.php:338 view/Blocks/Snippet.php:595
10379
- #: view/Blocks/Snippet.php:853 view/Blocks/Snippet.php:1097
10380
- #: view/Blocks/Snippet.php:1250
10381
- msgid ""
10382
- "To edit the snippet, you have to activate Squirrly SEO for this page first"
10383
- msgstr ""
10384
- "Pentru a edita snippet-ul, trebuie să activați mai întâi Squirrly SEO pentru "
10385
- "această pagină"
10386
-
10387
- #: view/Blocks/Snippet.php:347
10388
- msgid "Activate Squirrly Snippet for this page"
10389
- msgstr "Activați Squirrly Snippet pentru această pagină"
10390
-
10391
- #: view/Blocks/Snippet.php:352 view/Blocks/Snippet.php:858
10392
- #: view/Blocks/Snippet.php:1102
10393
- msgid "Post Type"
10394
- msgstr "Post Type Nou"
10395
-
10396
- #: view/Blocks/Snippet.php:354
10397
- msgid "Term"
10398
- msgstr "Termen"
10399
-
10400
- #: view/Blocks/Snippet.php:356
10401
- msgid "OG"
10402
- msgstr "OG"
10403
-
10404
- #: view/Blocks/Snippet.php:388
10405
- #, php-format
10406
- msgid ""
10407
- "JSON-LD is disable for this Post Type (%s). See %sSquirrly > SEO Settings > "
10408
- "Automation%s."
10409
- msgstr ""
10410
- "JSON-LD este dezactivat pentru acest tip de mesaj (%s). Consultați "
10411
- "%sSquirrly > Setări SEO > Automatizare%s."
10412
-
10413
- #: view/Blocks/Snippet.php:418
10414
- msgid "JSON-LD Schema Types"
10415
- msgstr "Tipuri de Schema JSON-LD"
10416
-
10417
- #: view/Blocks/Snippet.php:419 view/SeoSettings/Automation.php:391
10418
- msgid "JSON-LD will load the Schema for the selected types."
10419
- msgstr "JSON-LD va încărca schema pentru tipurile selectate."
10420
-
10421
- #: view/Blocks/Snippet.php:420
10422
- #, php-format
10423
- msgid "Setup JSON-LD for this Post Type by using %s SEO Automation %s"
10424
- msgstr ""
10425
- "Configurați JSON-LD pentru acest tip de mesaj utilizând %s SEO Automation %s"
10426
-
10427
- #: view/Blocks/Snippet.php:451
10428
- msgid "Hold Control key (or Command on Mac) to select multiple types."
10429
- msgstr ""
10430
- "Țineți apăsată tasta Control (sau Command pe Mac) pentru a selecta mai multe "
10431
- "tipuri."
10432
-
10433
- #: view/Blocks/Snippet.php:460
10434
- msgid "JSON-LD Breadcrumbs Schema"
10435
- msgstr "JSON-LD Breadcrumbs Schema Breadcrumbs"
10436
-
10437
- #: view/Blocks/Snippet.php:462
10438
- #, php-format
10439
- msgid "Manage BreadcrumbsList Schema from %s JSON-LD Settings %s."
10440
- msgstr "Gestionați schema BreadcrumbsList din %s JSON-LD Setări %s."
10441
-
10442
- #: view/Blocks/Snippet.php:467 view/Blocks/Snippet.php:515
10443
- #: view/Blocks/Snippet.php:535
10444
- msgid "Active"
10445
- msgstr "Activ"
10446
-
10447
- #: view/Blocks/Snippet.php:469 view/Blocks/Snippet.php:517
10448
- #: view/Blocks/Snippet.php:537
10449
- msgid "Not Active"
10450
- msgstr "Nu este activ"
10451
-
10452
- #: view/Blocks/Snippet.php:482
10453
- msgid "Primary Category"
10454
- msgstr "Categorie primară"
10455
-
10456
- #: view/Blocks/Snippet.php:484
10457
- msgid "Set the Primary Category for Breadcrumbs."
10458
- msgstr "Setați categoria principală pentru Breadcrumbs."
10459
-
10460
- #: view/Blocks/Snippet.php:508
10461
- msgid "Woocommerce Product Support"
10462
- msgstr "Suport pentru produse Woocommerce"
10463
-
10464
- #: view/Blocks/Snippet.php:510
10465
- #, php-format
10466
- msgid "Manage Woocommerce Support from %s JSON-LD Settings %s."
10467
- msgstr "Gestionați suportul Woocommerce din %s JSON-LD Setări %s."
10468
-
10469
- #: view/Blocks/Snippet.php:528
10470
- msgid "Remove other JSON-LD Schema"
10471
- msgstr "Eliminați alte Schema JSON-LD"
10472
-
10473
- #: view/Blocks/Snippet.php:530
10474
- #, php-format
10475
- msgid "Manage Duplicate Schema remover from %s JSON-LD Settings %s."
10476
- msgstr "Gestionați eliminarea Schema duplicate din %s JSON-LD Setări %s."
10477
-
10478
- #: view/Blocks/Snippet.php:547
10479
- msgid "JSON-LD Code"
10480
- msgstr "Codul JSON-LD"
10481
-
10482
- #: view/Blocks/Snippet.php:548
10483
- msgid "Let Squirrly load the JSON-LD Schema for the selected types."
10484
- msgstr "Lăsați Squirrly să încarce schema JSON-LD pentru tipurile selectate."
10485
-
10486
- #: view/Blocks/Snippet.php:552 view/Blocks/Snippet.php:830
10487
- #: view/Blocks/Snippet.php:1077
10488
- msgid "(Auto)"
10489
- msgstr "(Auto)"
10490
-
10491
- #: view/Blocks/Snippet.php:553
10492
- msgid "Custom Code"
10493
- msgstr "Cod Personalizat"
10494
-
10495
- #: view/Blocks/Snippet.php:555
10496
- #, php-format
10497
- msgid ""
10498
- "Use Advanced Custom Fields (ACF) plugin to add custom JSON-LD. %s Learn More "
10499
- "%s"
10500
- msgstr ""
10501
- "Utilizați pluginul Advanced Custom Fields (ACF) pentru a adăuga JSON-LD "
10502
- "personalizat. %s Aflați mai multe %s"
10503
-
10504
- #: view/Blocks/Snippet.php:564
10505
- msgid "Custom JSON-LD Code"
10506
- msgstr "Cod personalizat JSON-LD"
10507
-
10508
- #: view/Blocks/Snippet.php:565
10509
- #, php-format
10510
- msgid "Add JSON-LD code from %sSchema Generator Online%s."
10511
- msgstr "Adăugați codul JSON-LD din %sSchema Generator Online%s."
10512
-
10513
- #: view/Blocks/Snippet.php:578
10514
- msgid "Validate JSON-LD"
10515
- msgstr "Validarea JSON-LD"
10516
-
10517
- #: view/Blocks/Snippet.php:607 view/Blocks/Snippet.php:873
10518
- #, php-format
10519
- msgid ""
10520
- "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
10521
- "will not load for this post type on the frontend."
10522
- msgstr ""
10523
- "Post Type (%s) a fost exclus din %sSquirrly > SEO Settings%s. Squirrly SEO "
10524
- "nu se va încărca pentru acest tip de post în frontend."
10525
-
10526
- #: view/Blocks/Snippet.php:624
10527
- msgid "How this page appears on Facebook"
10528
- msgstr "Cum apare această pagină pe Facebook"
10529
-
10530
- #: view/Blocks/Snippet.php:630
10531
- msgid "Edit Open Graph"
10532
- msgstr "Editați Open Graph"
10533
-
10534
- #: view/Blocks/Snippet.php:642 view/Blocks/Snippet.php:909
10535
- msgid "The image size must be at least 500 pixels wide"
10536
- msgstr "Dimensiunea imaginii trebuie să fie de cel puțin 500 de pixeli lățime"
10537
-
10538
- #: view/Blocks/Snippet.php:663 view/Blocks/Snippet.php:931
10539
- msgid ""
10540
- "This is the Featured Image. You can change it if you edit the snippet and "
10541
- "upload another image."
10542
- msgstr ""
10543
- "Aceasta este imaginea prezentată. Puteți să o schimbați dacă editați "
10544
- "snippetul și încărcați o altă imagine."
10545
-
10546
- #: view/Blocks/Snippet.php:675
10547
- msgid "Please save the post first to be able to edit the Squirrly SEO Snippet."
10548
- msgstr ""
10549
- "Vă rugăm să salvați mai întâi postul pentru a putea edita Squirrly SEO "
10550
- "Snippet."
10551
-
10552
- #: view/Blocks/Snippet.php:692 view/Blocks/Snippet.php:959
10553
- msgid "Media Image"
10554
- msgstr "Imagine media"
10555
-
10556
- #: view/Blocks/Snippet.php:696 view/Blocks/Snippet.php:963
10557
- #: view/Research/Briefcase.php:487 view/SeoSettings/Favicon.php:84
10558
- msgid "Upload"
10559
- msgstr "Upload"
10560
-
10561
- #: view/Blocks/Snippet.php:697 view/Blocks/Snippet.php:964
10562
- msgid "Image size must be at least 500 pixels wide"
10563
- msgstr "Dimensiunea imaginii trebuie să fie de cel puțin 500 de pixeli lățime"
10564
-
10565
- #: view/Blocks/Snippet.php:804
10566
- msgid "Author Link"
10567
- msgstr "Link autor"
10568
-
10569
- #: view/Blocks/Snippet.php:805
10570
- msgid "For multiple authors, separate their Facebook links with commas"
10571
- msgstr ""
10572
- "Pentru mai mulți autori, separați legăturile lor de Facebook cu virgule"
10573
-
10574
- #: view/Blocks/Snippet.php:819 view/Blocks/Snippet.php:860
10575
- msgid "OG Type"
10576
- msgstr "Tipul OG"
10577
-
10578
- #: view/Blocks/Snippet.php:890
10579
- msgid "How this page appears on Twitter"
10580
- msgstr "Cum apare această pagină pe Twitter"
10581
-
10582
- #: view/Blocks/Snippet.php:896
10583
- msgid "Edit Twitter Card"
10584
- msgstr "Editați cardul Twitter"
10585
-
10586
- #: view/Blocks/Snippet.php:1072
10587
- msgid "Card Type"
10588
- msgstr "Tipul Cardului"
10589
-
10590
- #: view/Blocks/Snippet.php:1073 view/SeoSettings/Social.php:328
10591
- #, php-format
10592
- msgid "Every change needs %sTwitter Card Validator%s"
10593
- msgstr "Fiecare schimbare are nevoie de %sTwitter Card Validator%s"
10594
-
10595
- #: view/Blocks/Snippet.php:1078
10596
- msgid "summary"
10597
- msgstr "rezumat"
10598
-
10599
- #: view/Blocks/Snippet.php:1079
10600
- msgid "summary_large_image"
10601
- msgstr "summary_large_image"
10602
-
10603
- #: view/Blocks/Snippet.php:1104
10604
- msgid "Twitter Type"
10605
- msgstr "Tip Twitter"
10606
-
10607
- #: view/Blocks/Snippet.php:1117
10608
- #, php-format
10609
- msgid ""
10610
- "You selected '%s' in %sSettings > Reading%s. It's important to uncheck that "
10611
- "option."
10612
- msgstr ""
10613
- "Ați selectat \"%s\" în %sSetări > Citire%s. Este important să debifați "
10614
- "această opțiune."
10615
-
10616
- #: view/Blocks/Snippet.php:1137 view/Blocks/Snippet.php:1168
10617
- #, php-format
10618
- msgid ""
10619
- "This Post Type (%s) has Nofollow set in Automation. See %sSquirrly > SEO "
10620
- "Settings > Automation%s."
10621
- msgstr ""
10622
- "Acest tip de postare (%s) are Nofollow setat în Automatizare. Consultați "
10623
- "%sSquirrly > Setări SEO > Automatizare%s."
10624
-
10625
- #: view/Blocks/Snippet.php:1144 view/Blocks/Snippet.php:1175
10626
- #: view/SeoSettings/Automation.php:223 view/SeoSettings/Automation.php:252
10627
- msgid "Activate Robots Meta"
10628
- msgstr "Activați Robots Meta"
10629
-
10630
- #: view/Blocks/Snippet.php:1155
10631
- msgid "Let Google Index This Page"
10632
- msgstr "Lăsați Google să indexeze această pagină"
10633
-
10634
- #: view/Blocks/Snippet.php:1198
10635
- #, php-format
10636
- msgid ""
10637
- "Show in sitemap for this Post Type (%s) was excluded from %sSquirrly > SEO "
10638
- "Settings > Automation%s."
10639
- msgstr ""
10640
- "Afișarea în sitemap pentru acest tip de postare (%s) a fost exclusă din "
10641
- "%sSquirrly > Setări SEO > Automatizare%s."
10642
-
10643
- #: view/Blocks/Snippet.php:1205 view/SeoSettings/Automation.php:273
10644
- #: view/SeoSettings/Sitemap.php:38
10645
- msgid "Activate Sitemap"
10646
- msgstr "Activați Sitemap"
10647
-
10648
- #: view/Blocks/Snippet.php:1215
10649
- msgid "Show it in Sitemap.xml"
10650
- msgstr "Arată-l în Sitemap.xml"
10651
-
10652
- #: view/Blocks/Snippet.php:1227
10653
- msgid "Activate Redirects"
10654
- msgstr "Activați redirecționările"
10655
-
10656
- #: view/Blocks/Snippet.php:1234
10657
- msgid "Leave it blank if you don't want to add a 301 redirect to another URL"
10658
- msgstr ""
10659
- "Lăsați-l gol dacă nu doriți să adăugați o redirecționare 301 către un alt URL"
10660
-
10661
- #: view/Blocks/Snippet.php:1273
10662
- msgid "Loading Squirrly Snippet ..."
10663
- msgstr "Încărcare Squirrly Snippet ..."
10664
-
10665
- #: view/Blocks/Snippet.php:1299
10666
- msgid "Enable Squirrly SEO to load Squirrly Snippet"
10667
- msgstr "Activați Squirrly SEO pentru a încărca Squirrly Snippet"
10668
-
10669
- #: view/Blocks/Snippet.php:1308
10670
- msgid ""
10671
- "Couldn't save your changes. Immunify360 or some other service on your web "
10672
- "hosting account interferes with your WordPress. Please contact the hosting "
10673
- "provider`s support team"
10674
- msgstr ""
10675
- "Nu s-a putut salva modificările. Immunify360 sau un alt serviciu de pe "
10676
- "contul dvs. de găzduire web interferează cu WordPress. Vă rugăm să "
10677
- "contactați echipa de asistență a furnizorului de găzduire"
10678
-
10679
- #: view/Blocks/Stats.php:43
10680
- msgid "Hello"
10681
- msgstr "Bună"
10682
-
10683
- #: view/Blocks/Stats.php:49
10684
- #, php-format
10685
- msgid "%s SEO Protection"
10686
- msgstr "%s Protecție SEO"
10687
-
10688
- #: view/Blocks/Stats.php:52
10689
- msgid "All protection layers are activated."
10690
- msgstr "Toate straturile de protecție sunt activate."
10691
-
10692
- #: view/Blocks/Stats.php:54
10693
- #, php-format
10694
- msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
10695
- msgstr "Porniți SEO de la %sSquirrly > SEO Settings%s."
10696
-
10697
- #: view/Blocks/Stats.php:55
10698
- msgid "How does this work?"
10699
- msgstr "Cum funcționează ?"
10700
-
10701
- #: view/Blocks/Stats.php:64
10702
- msgid "Pages SEO'ed"
10703
- msgstr "Pagini SEO'ed"
10704
-
10705
- #: view/Blocks/Stats.php:70
10706
- msgid "Post Types Covered"
10707
- msgstr "Tipuri de posturi acoperite"
10708
-
10709
- #: view/Blocks/Stats.php:75
10710
- msgid "What's included"
10711
- msgstr "Ce este inclus"
10712
-
10713
- #: view/Blocks/Stats.php:76
10714
- #, php-format
10715
- msgid "Over %s400%s free in-depth features"
10716
- msgstr "Peste %s400%s caracteristici aprofundate gratuite"
10717
-
10718
- #: view/Blocks/Stats.php:78
10719
- msgid "See All Tools"
10720
- msgstr "Vezi toate uneltele"
10721
-
10722
- #: view/Blocks/Stats.php:83 view/Goals/Goals.php:44
10723
- msgid "Run SEO Test"
10724
- msgstr "Executați testul SEO"
10725
-
10726
- #: view/Blocks/Support.php:8
10727
- msgid "Go to Profile"
10728
- msgstr "Profilul tau din Squirrly"
10729
-
10730
- #: view/Blocks/Support.php:8 view/Blocks/Support.php:9
10731
- msgid "Profile"
10732
- msgstr "Profil"
10733
-
10734
- #: view/Blocks/Support.php:19
10735
- msgid "Support"
10736
- msgstr "Suport"
10737
-
10738
- #: view/Blocks/Support.php:22
10739
- msgid "Need Help with Squirrly SEO?"
10740
- msgstr "Ai nevoie de ajutor cu Squirrly SEO?"
10741
-
10742
- #: view/Blocks/Support.php:24 view/Blocks/Support.php:91
10743
- #, php-format
10744
- msgid "10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s."
10745
- msgstr ""
10746
- "De la ora 10.00 la 16.00 (GMT): Luni-vineri %sprin formularul de contact%s."
10747
-
10748
- #: view/Blocks/Support.php:25 view/Blocks/Support.php:92
10749
- #, php-format
10750
- msgid "How To Squirrly %swebsite%s."
10751
- msgstr "Cum să Squirrly %swebsite%s."
10752
-
10753
- #: view/Blocks/Support.php:26 view/Blocks/Support.php:93
10754
- #, php-format
10755
- msgid "Facebook %sSupport Community%s."
10756
- msgstr "Facebook %sComunitatea de suport%s."
10757
-
10758
- #: view/Blocks/Support.php:27 view/Blocks/Support.php:94
10759
- #, php-format
10760
- msgid "Facebook %sMessenger%s."
10761
- msgstr "Facebook %sMessenger%s."
10762
-
10763
- #: view/Blocks/Support.php:28
10764
- #, php-format
10765
- msgid "Twitter %sSupport%s."
10766
- msgstr "Twitter %sSupport%s."
10767
-
10768
- #: view/Blocks/Support.php:36
10769
- msgid "How was your Squirrly experience today?"
10770
- msgstr "Cum a fost experienta de azi cu Squirrly?"
10771
-
10772
- #: view/Blocks/Support.php:43
10773
- msgid "Annoying"
10774
- msgstr "Enervant"
10775
-
10776
- #: view/Blocks/Support.php:47
10777
- msgid "Bad"
10778
- msgstr "Negativ"
10779
-
10780
- #: view/Blocks/Support.php:51
10781
- msgid "Nice"
10782
- msgstr "Frumos"
10783
-
10784
- #: view/Blocks/Support.php:55
10785
- msgid "Great"
10786
- msgstr "Minunat"
10787
-
10788
- #: view/Blocks/Support.php:59
10789
- msgid "Love it"
10790
- msgstr "Îmi place"
10791
-
10792
- #: view/Blocks/Support.php:71
10793
- msgid "How was Squirrly today?"
10794
- msgstr "Cum a fost Squirrly azi?"
10795
-
10796
- #: view/Blocks/Support.php:86
10797
- msgid "Send feedback"
10798
- msgstr "Trimite"
10799
-
10800
- #: view/Blocks/Support.php:90
10801
- msgid "For more support:"
10802
- msgstr "Pentru mai mult sprijin:"
10803
-
10804
- #: view/Blocks/Support.php:95
10805
- #, php-format
10806
- msgid "New Lessons Mon. and Tue. on %sTwitter%s."
10807
- msgstr "Noi lecții luni și marți pe %sTwitter%s."
10808
-
10809
- #: view/Blocks/Support.php:100
10810
- msgid "Thank you! You can send us a happy face tomorrow too."
10811
- msgstr "Vă mulțumesc! Poți să ne trimiți și mâine o față fericită."
10812
-
10813
- #: view/Blocks/Toolbar.php:56
10814
- msgid ""
10815
- "Javascript is disabled on your browser! You need to activate the javascript "
10816
- "in order to use Squirrly SEO."
10817
- msgstr ""
10818
- "Javascript este dezactivat în browserul dumneavoastră! Trebuie să activați "
10819
- "javascript pentru a utiliza Squirrly SEO."
10820
-
10821
- #: view/Blocks/Uninstall.php:5
10822
- msgid "I no longer need the plugin"
10823
- msgstr "Nu mai am nevoie de acest plugin"
10824
-
10825
- #: view/Blocks/Uninstall.php:9
10826
- msgid "I found a better plugin"
10827
- msgstr "Am găsit un plugin mai bun"
10828
-
10829
- #: view/Blocks/Uninstall.php:10
10830
- msgid "Please share which plugin"
10831
- msgstr "Vă rugăm să împărtășiți care plugin"
10832
-
10833
- #: view/Blocks/Uninstall.php:13
10834
- msgid "I couldn't get the plugin to work"
10835
- msgstr "Nu am putut obține plugin-ul pentru a lucra"
10836
-
10837
- #: view/Blocks/Uninstall.php:17
10838
- msgid "It's a temporary deactivation"
10839
- msgstr "Este o dezactivare temporară"
10840
-
10841
- #: view/Blocks/Uninstall.php:21 view/Onboarding/Step1.php:44
10842
- msgid "Other"
10843
- msgstr "Altele"
10844
-
10845
- #: view/Blocks/Uninstall.php:22
10846
- msgid "Please share the reason"
10847
- msgstr "Vă rugăm să împărtășiți motivul"
10848
-
10849
- #: view/Blocks/Uninstall.php:30
10850
- msgid "Deactivate"
10851
- msgstr "Dezactivați"
10852
-
10853
- #: view/Blocks/Uninstall.php:36
10854
- msgid "Please share why you are deactivating the plugin"
10855
- msgstr "Vă rugăm să ne spuneți de ce dezactivați plugin-ul"
10856
-
10857
- #: view/Blocks/Uninstall.php:53
10858
- msgid "Submit &amp; Deactivate"
10859
- msgstr "Trimiteți &amp; Dezactivați"
10860
-
10861
- #: view/Blocks/Uninstall.php:54
10862
- msgid "Skip &amp; Deactivate"
10863
- msgstr "Sari &amp; Dezactivați"
10864
-
10865
- #: view/Blocks/Uninstall.php:60
10866
- #, php-format
10867
- msgid ""
10868
- "You set to remove all Squirrly SEO data on uninstall. You can change this "
10869
- "option from %sSEO Settings > Advanced%s"
10870
- msgstr ""
10871
- "Ați setat să eliminați toate datele Squirrly SEO la dezinstalare. Puteți "
10872
- "modifica această opțiune din %sSEO Settings > Advanced%s"
10873
-
10874
- #: view/Blocks/Uninstall.php:67
10875
- msgid "Disconnect from Squirrly Cloud"
10876
- msgstr "Deconectați-vă de la Squirrly Cloud"
10877
-
10878
- #: view/Blocks/VersionBar.php:15
10879
- #, php-format
10880
- msgid ""
10881
- "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
10882
- "accurate and objective."
10883
- msgstr ""
10884
- "%sSERP Checker %s:%s Actualizăm zilnic cele mai bune poziții pentru fiecare "
10885
- "cuvânt cheie. 100%% precis și obiectiv."
10886
-
10887
- #: view/Blocks/VersionBar.php:18
10888
- #, php-format
10889
- msgid ""
10890
- "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
10891
- msgstr ""
10892
- "%sNicio interogare SERP nu a rămas.%s Vă rugăm să verificați starea și "
10893
- "limitele contului dvs. %s%s"
10894
-
10895
- #: view/Blocks/VersionBar.php:24
10896
- #, php-format
10897
- msgid ""
10898
- "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
10899
- "Google Search Console. %sPositions shown by GSC are averages, not exact "
10900
- "positions in SERPs. %sTo have your rankings checked daily please upgrade "
10901
- "your plan to %sBusiness Plan%s"
10902
- msgstr ""
10903
- "%sSERP Checker %s:%s Afișăm clasamentele în funcție de ceea ce Google vă "
10904
- "arată în Google Search Console. %s Pozițiile afișate de GSC sunt medii, nu "
10905
- "poziții exacte în SERPs. %sPentru a avea clasamentele verificate zilnic, vă "
10906
- "rugăm să vă actualizați planul la %sBusiness Plan%s"
10907
-
10908
- #: view/Blocks/VersionBar.php:31
10909
- #, php-format
10910
- msgid ""
10911
- "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
10912
- "hour."
10913
- msgstr ""
10914
- "%sAudit %s:%s Adăugați maxim %s pagină(e) în Audit și solicitați un nou "
10915
- "audit la fiecare oră."
10916
-
10917
- #: view/Blocks/VersionBar.php:35
10918
- #, php-format
10919
- msgid ""
10920
- "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
10921
- "once a week. %sTo add more pages in Audit and refresh the audit every hour "
10922
- "please upgrade your plan to %sPRO Plan%s"
10923
- msgstr ""
10924
- "%sAudit %s:%s Adăugați maxim %s pagină(e) în Audit. Auditul va fi generat o "
10925
- "dată pe săptămână. %sPentru a adăuga mai multe pagini în Audit și pentru a "
10926
- "actualiza auditul la fiecare oră, vă rugăm să vă actualizați planul la %sPRO "
10927
- "Plan%s"
10928
-
10929
- #: view/Blocks/VersionBar.php:42
10930
- #, php-format
10931
- msgid ""
10932
- "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
10933
- "audit for each page every 5 mins."
10934
- msgstr ""
10935
- "%sFocus Pagini %s:%s Adăugați maxim %s pagină(e) în Pagini Focus și "
10936
- "solicitați un nou audit pentru fiecare pagină la fiecare 5 minute."
10937
-
10938
- #: view/Blocks/VersionBar.php:46
10939
- #, php-format
10940
- msgid ""
10941
- "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
10942
- "audit for each page every 5 mins. %sTo add more pages in Focus Pages please "
10943
- "upgrade your plan to %sPRO Plan%s"
10944
- msgstr ""
10945
- "%sFocus Pagini %s:%s Adăugați maxim %s pagină(e) în Pagini Focus și "
10946
- "solicitați un nou audit pentru fiecare pagină la fiecare 5 minute. %sPentru "
10947
- "a adăuga mai multe pagini în Focus Pages, vă rugăm să vă actualizați planul "
10948
- "la %sPRO Plan%s"
10949
-
10950
- #: view/Blocks/VersionBar.php:50
10951
- #, php-format
10952
- msgid ""
10953
- "Your current plan is OLD Squirrly plan: Please read the official notes about "
10954
- "it %shttps://www.squirrly.co/you-received-access-to-all-updates-from-"
10955
- "squirrly-seo/%s"
10956
- msgstr ""
10957
- "Planul tău actual este planul OLD Squirrly: Vă rugăm să citiți notele "
10958
- "oficiale despre acesta %shttps://www.squirrly.co/you-received-access-to-all-"
10959
- "updates-from-squirrly-seo/%s"
10960
-
10961
- #: view/Blocks/VersionBar.php:58
10962
- #, php-format
10963
- msgid ""
10964
- "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
10965
- "tasks to get 100%% optimized posts and pages."
10966
- msgstr ""
10967
- "%sAsistent în direct %s:%s Utilizați Squirrly Live Assistant cu toate "
10968
- "sarcinile de optimizare pentru a obține 100%% de postări și pagini "
10969
- "optimizate."
10970
-
10971
- #: view/Blocks/VersionBar.php:62
10972
- #, php-format
10973
- msgid ""
10974
- "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
10975
- "pages. %sTo optimize your posts to 100%% please upgrade your plan to %sPRO "
10976
- "Plan%s"
10977
- msgstr ""
10978
- "%sAsistent în direct %s:%s Utilizați principalele sarcini SEO pentru a vă "
10979
- "optimiza postările și paginile. %sPentru a vă optimiza postările la 100%% vă "
10980
- "rugăm să vă actualizați planul la %sPRO Plan%s"
10981
-
10982
- #: view/Blocks/VersionBar.php:70
10983
- #, php-format
10984
- msgid ""
10985
- "%sResearch %s:%s You have %s researches left for your account. The research "
10986
- "will return up to 20 results for each keyword. %sFor more Researches and up "
10987
- "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
10988
- msgstr ""
10989
- "%sResearch %s:%s Mai ai %s cercetări rămase pentru contul tău. Cercetarea va "
10990
- "returna până la 20 de rezultate pentru fiecare cuvânt cheie. %sPentru mai "
10991
- "multe Cercetări și până la 50 de rezultate per cercetare, vă rugăm să vă "
10992
- "actualizați planul la %sBusiness Plan%s"
10993
-
10994
- #: view/Blocks/VersionBar.php:74
10995
- #, php-format
10996
- msgid ""
10997
- "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
10998
- "Deep Keyword Research and get up to 50 results on each research."
10999
- msgstr ""
11000
- "%sResearch %s:%s Mai ai %s cercetări rămase pentru contul tău. %s Poți să "
11001
- "faci Deep Keyword Research și să obții până la 50 de rezultate la fiecare "
11002
- "cercetare."
11003
-
11004
- #: view/Blocks/VersionBar.php:78
11005
- #, php-format
11006
- msgid ""
11007
- "%sResearch %s:%s You have %s researches left for your account. The research "
11008
- "will return up to 10 results for each keyword. %sFor more Researches and up "
11009
- "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
11010
- msgstr ""
11011
- "%sResearch %s:%s Mai ai %s cercetări rămase pentru contul tău. Cercetarea va "
11012
- "returna până la 10 rezultate pentru fiecare cuvânt cheie. %sPentru mai multe "
11013
- "Cercetări și până la 50 de rezultate pe cercetare, vă rugăm să vă "
11014
- "actualizați planul la %sBusiness Plan%s"
11015
-
11016
- #: view/Blocks/VersionBar.php:85
11017
- #, php-format
11018
- msgid ""
11019
- "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
11020
- "optimize your posts and pages."
11021
- msgstr ""
11022
- "%sSquirrly Briefcase: %s Adăugați un număr nelimitat de cuvinte cheie în "
11023
- "Squirrly Briefcase pentru a vă optimiza postările și paginile."
11024
-
11025
- #: view/Blocks/VersionBar.php:90
11026
- #, php-format
11027
- msgid ""
11028
- "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
11029
- "keywords to organize the keywords by your SEO strategy."
11030
- msgstr ""
11031
- "%sSquirrly Labels:%s Adăugați un număr nelimitat de etichete pentru "
11032
- "cuvintele cheie din Squirrly Briefcase pentru a organiza cuvintele cheie în "
11033
- "funcție de strategia dvs. SEO."
11034
-
11035
- #: view/Blocks/VersionBar.php:96
11036
- #, php-format
11037
- msgid ""
11038
- "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
11039
- "find better matching keywords based on your research history."
11040
- msgstr ""
11041
- "%sSugestie de cuvinte cheie %s:%s Veți primi sugestii de cuvinte cheie în "
11042
- "fiecare săptămână, dacă găsim cuvinte cheie mai potrivite pe baza "
11043
- "istoricului dvs. de cercetare."
11044
-
11045
- #: view/Blocks/VersionBar.php:100
11046
- #, php-format
11047
- msgid ""
11048
- "This feature is only available for PRO and Business accounts. %sTo get "
11049
- "Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s"
11050
- msgstr ""
11051
- "Această funcție este disponibilă numai pentru conturile PRO și Business. "
11052
- "%sPentru a primi sugestii de cuvinte cheie în fiecare săptămână, vă rugăm să "
11053
- "vă actualizați planul la %sBusiness Plan%s"
11054
-
11055
- #: view/Blocks/VersionBar.php:109
11056
- #, php-format
11057
- msgid ""
11058
- "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
11059
- "SEO for free."
11060
- msgstr ""
11061
- "%sBulk SEO Setări SEO:%s Această funcție este inclusă gratuit în toate "
11062
- "versiunile Squirrly SEO."
11063
-
11064
- #: view/Blocks/VersionBar.php:115
11065
- #, php-format
11066
- msgid ""
11067
- "%sOn-Page SEO Settings:%s This feature is included in all versions of "
11068
- "Squirrly SEO for free."
11069
- msgstr ""
11070
- "%sOn-Page SEO Settings:%s Această funcție este inclusă gratuit în toate "
11071
- "versiunile Squirrly SEO."
11072
-
11073
- #: view/BulkSeo/Bulkseo.php:32
11074
- msgid ""
11075
- "Simplify the SEO process for all your post type and optimize them in just "
11076
- "minutes."
11077
- msgstr ""
11078
- "Simplificați procesul SEO pentru toate tipurile de postări și optimizați-le "
11079
- "în doar câteva minute."
11080
-
11081
- #: view/BulkSeo/Bulkseo.php:183
11082
- #, php-format
11083
- msgid "No data for this filter. %sShow All%s records for this post type."
11084
- msgstr ""
11085
- "Nu există date pentru acest filtru. %sAfișează toate%s înregistrările pentru "
11086
- "acest tip de post."
11087
-
11088
- #: view/BulkSeo/Bulkseo.php:185
11089
- msgid "No data found for this post type. Try other post types."
11090
- msgstr ""
11091
- "Nu s-au găsit date pentru acest tip de post. Încercați alte tipuri de mesaje."
11092
-
11093
- #: view/BulkSeo/BulkseoRow.php:26
11094
- #, php-format
11095
- msgid "View: %s"
11096
- msgstr "Vezi: %s"
11097
-
11098
- #: view/Connect/GoogleAnalytics.php:10
11099
- msgid "Google Analytics"
11100
- msgstr "Google Analytics"
11101
-
11102
- #: view/Connect/GoogleAnalytics.php:15
11103
- msgid "You are connected to Google Analytics"
11104
- msgstr "Sunteți conectat la Google Analytics"
11105
-
11106
- #: view/Connect/GoogleAnalytics.php:21 view/Connect/GoogleSearchConsole.php:19
11107
- msgid "Disconnect"
11108
- msgstr "Deconectează-te"
11109
-
11110
- #: view/Connect/GoogleAnalytics.php:31
11111
- msgid "Connect this site to Google Analytics"
11112
- msgstr "Conectați acest site la Google Analytics"
11113
-
11114
- #: view/Connect/GoogleAnalytics.php:32
11115
- msgid ""
11116
- "Connect Google Analytics and get traffic insights for your website on each "
11117
- "Audit."
11118
- msgstr ""
11119
- "Conectați Google Analytics și obțineți informații despre traficul de pe site-"
11120
- "ul dvs. la fiecare audit."
11121
-
11122
- #: view/Connect/GoogleAnalytics.php:37 view/Connect/GoogleSearchConsole.php:36
11123
- #: view/SeoSettings/Tracking.php:70 view/SeoSettings/Webmaster.php:70
11124
- msgid "Sign in"
11125
- msgstr "Autentificare"
11126
-
11127
- #: view/Connect/GoogleAnalytics.php:45 view/Connect/GoogleSearchConsole.php:44
11128
- #: view/SeoSettings/Tracking.php:75 view/SeoSettings/Webmaster.php:75
11129
- msgid "Check connection"
11130
- msgstr "Verificați conexiunea"
11131
-
11132
- #: view/Connect/GoogleSearchConsole.php:8 view/SeoSettings/Webmaster.php:61
11133
- msgid "Google Search Console"
11134
- msgstr "Google Search Console"
11135
-
11136
- #: view/Connect/GoogleSearchConsole.php:13
11137
- msgid "You are connected to Google Search Console"
11138
- msgstr "Sunteți conectat la Google Search Console"
11139
-
11140
- #: view/Connect/GoogleSearchConsole.php:30
11141
- msgid "Connect this site to Google Search Console"
11142
- msgstr "Conectați acest site la Google Search Console"
11143
-
11144
- #: view/Connect/GoogleSearchConsole.php:31
11145
- msgid ""
11146
- "Connect Google Search Console and get traffic insights for your website on "
11147
- "each Audit."
11148
- msgstr ""
11149
- "Conectați Google Search Console și obțineți informații despre traficul de pe "
11150
- "site-ul dvs. la fiecare audit."
11151
-
11152
- #: view/Errors/Connect.php:29
11153
- msgid "Connect Your Site to Squirrly Cloud"
11154
- msgstr "Conectează-ți site-ul la Squirrly Cloud"
11155
-
11156
- #: view/Errors/Connect.php:30
11157
- #, php-format
11158
- msgid ""
11159
- "Get Access to the Non-Human SEO Consultant, Focus Pages, SEO Audits and all "
11160
- "our features %s by creating a free account"
11161
- msgstr ""
11162
- "Obțineți acces la consultantul SEO non-uman, la paginile Focus, la "
11163
- "auditurile SEO și la toate caracteristicile noastre %s prin crearea unui "
11164
- "cont gratuit"
11165
-
11166
- #: view/Errors/Connect.php:47 view/Overview.php:26
11167
- msgid "What's Included in Squirrly SEO Plugin"
11168
- msgstr "Ce este inclus în Squirrly SEO Plugin"
11169
-
11170
- #: view/Errors/Connect.php:52 view/Overview.php:31
11171
- #, php-format
11172
- msgid ""
11173
- "With a total of over %s400%s free in-depth features that only Squirrly can "
11174
- "offer."
11175
- msgstr ""
11176
- "Cu un total de peste %s400%s caracteristici gratuite și detaliate pe care "
11177
- "numai Squirrly le poate oferi."
11178
-
11179
- #: view/Errors/Connect.php:55 view/Overview.php:34
11180
- msgid "See what features are included in Squirrly SEO"
11181
- msgstr "Vezi ce caracteristici sunt incluse în Squirrly SEO"
11182
-
11183
- #: view/Errors/Maintenance.php:21
11184
- #, php-format
11185
- msgid ""
11186
- "Unfortunately Squirrly Cloud is down for a bit of maintenance right now. But "
11187
- "we'll be back in a minute. %srefresh the page%s."
11188
- msgstr ""
11189
- "Din păcate, Squirrly Cloud este oprit pentru o mică mentenanță în acest "
11190
- "moment. Dar ne vom întoarce într-un minut. %sreîmprospătați pagina%s."
11191
-
11192
- #: view/Features.php:16 view/Overview.php:59
11193
- msgid "We Need Your Support"
11194
- msgstr "Avem nevoie de sprijinul dumneavoastră"
11195
-
11196
- #: view/Features.php:25 view/Overview.php:68
11197
- msgid "Rate us if you like Squirrly"
11198
- msgstr "Evaluează-ne dacă îți place Squirrly"
11199
-
11200
- #: view/Features.php:41
11201
- msgid "Show Advanced SEO"
11202
- msgstr "Arată SEO avansat"
11203
-
11204
- #: view/Features.php:42
11205
- msgid ""
11206
- "Switch off to have the simplified version of the settings, intended for Non-"
11207
- "SEO Experts."
11208
- msgstr ""
11209
- "Dezactivați pentru a avea versiunea simplificată a setărilor, destinată "
11210
- "experților non-SEO."
11211
-
11212
- #: view/Features.php:43
11213
- msgid ""
11214
- "By switching off, you'll let our AI to select the best possible settings and "
11215
- "to coordinate our 450 SEO features for your website."
11216
- msgstr ""
11217
- "Prin dezactivare, veți permite inteligenței noastre artificiale să selecteze "
11218
- "cele mai bune setări posibile și să coordoneze cele 450 de funcții SEO "
11219
- "pentru site-ul dvs. web."
11220
-
11221
- #: view/FocusPages/Addpage.php:28 view/FocusPages/Pagelist.php:29
11222
- msgid ""
11223
- "Focus Pages bring you clear methods to take your pages from never found to "
11224
- "always found on Google. Rank your pages by influencing the right ranking "
11225
- "factors. Turn everything that you see here to Green and you will win."
11226
- msgstr ""
11227
- "Focus Pages vă oferă metode clare pentru a vă duce paginile de la niciodată "
11228
- "găsite la întotdeauna găsite pe Google. Clasificați-vă paginile prin "
11229
- "influențarea factorilor de clasificare corecți. Transformați tot ceea ce "
11230
- "vedeți aici în Verde și veți câștiga."
11231
-
11232
- #: view/FocusPages/Addpage.php:179
11233
- msgid "Set Focus Page"
11234
- msgstr "Set Focus Page"
11235
-
11236
- #: view/FocusPages/Addpage.php:183
11237
- msgid "Only pages with IDs can be added as Focus Page"
11238
- msgstr "Numai paginile cu ID-uri pot fi adăugate ca pagină Focus Page"
11239
-
11240
- #: view/FocusPages/Addpage.php:183
11241
- msgid "Can't be added"
11242
- msgstr "Nu poate fi adăugat"
11243
-
11244
- #: view/FocusPages/Addpage.php:186
11245
- msgid "See Tasks"
11246
- msgstr "Vezi Sarcini"
11247
-
11248
- #: view/FocusPages/Bestpractice.php:16
11249
- msgid "Best Practices"
11250
- msgstr "Cele mai bune practici"
11251
-
11252
- #: view/FocusPages/FocusPageRow.php:59 view/FocusPages/FocusPageRow.php:127
11253
- #, php-format
11254
- msgid "Congratulations! You ranked on %s on Google with the keyword: %s"
11255
- msgstr "Felicitări! Ai rank-uit pe %s pe Google cu cuvântul cheie: %s"
11256
-
11257
- #: view/FocusPages/FocusPageRow.php:76
11258
- msgid "Audited"
11259
- msgstr "Audit"
11260
-
11261
- #: view/FocusPages/FocusPageRow.php:91
11262
- msgid "You can refresh the audit once every 5 minutes"
11263
- msgstr "Puteți reîmprospăta auditul o dată la fiecare 5 minute"
11264
-
11265
- #: view/FocusPages/FocusPageRow.php:97 view/Ranking/Rankings.php:230
11266
- #: view/Research/History.php:36
11267
- msgid "Details"
11268
- msgstr "Detalii"
11269
-
11270
- #: view/FocusPages/FocusPageRow.php:112
11271
- msgid "Upgrade Plan"
11272
- msgstr "Actualizeaza Plan"
11273
-
11274
- #: view/FocusPages/FocusPageRow.php:119
11275
- msgid "Currently processing data. Please refresh in a few minutes."
11276
- msgstr ""
11277
- "În prezent se procesează date. Vă rugăm să reîmprospătați în câteva minute."
11278
-
11279
- #: view/FocusPages/FocusPageRow.php:125 view/FocusPages/FocusPageRow.php:145
11280
- #: view/FocusPages/FocusPages.php:55
11281
- msgid "Chance to Rank"
11282
- msgstr "Șansa de a se clasa"
11283
-
11284
- #: view/FocusPages/FocusPageRow.php:129
11285
- #, php-format
11286
- msgid ""
11287
- "The Chances of Ranking is dynamically calculated by the Squirrly Machine "
11288
- "Learning based on the main keyword you selected for this Focus Page. %sThe "
11289
- "algorithm behind the Chances of Ranking is complex but the fastest way to "
11290
- "increase your chances is to complete the main tasks like Visibility, Keyword "
11291
- "Competition, Content Optimization, Content Length, Social Signals, Daily "
11292
- "Traffic, Inner Links, and External Nofollow Links. %sIn time you need to "
11293
- "complete all the Focus Pages tasks to rank higher and higher and to maintain "
11294
- "your rank especially if your keyword is a competitive one."
11295
- msgstr ""
11296
- "Șansele de ranking sunt calculate în mod dinamic de către Squirrly Machine "
11297
- "Learning pe baza cuvântului cheie principal pe care l-ați selectat pentru "
11298
- "această pagină Focus. %sAlgoritmul din spatele Șanselor de Ranking este "
11299
- "complex, dar cea mai rapidă modalitate de a vă crește șansele este să "
11300
- "finalizați sarcinile principale, cum ar fi: Vizibilitatea, Concurența "
11301
- "cuvintelor cheie, Optimizarea conținutului, Lungimea conținutului, Semnale "
11302
- "sociale, Traficul zilnic, Legături interne și Legături externe Nofollow. "
11303
- "%sÎn timp, trebuie să finalizați toate sarcinile din Focus Pages pentru a vă "
11304
- "poziționa din ce în ce mai sus și pentru a vă menține poziția, mai ales dacă "
11305
- "cuvântul cheie este unul competitiv."
11306
-
11307
- #: view/FocusPages/FocusPageRow.php:146
11308
- #, php-format
11309
- msgid ""
11310
- "The Chances of Ranking is dynamically calculated by the Squirrly Machine "
11311
- "Learning based on the main keyword you selected for this Focus Page. %sThe "
11312
- "algorithm behind the Chances of Ranking is complex but the fastest way to "
11313
- "increase your chances is to complete the main tasks like Visibility, Keyword "
11314
- "Competition, Content Optimization, Content Length, Social Signals, Daily "
11315
- "Traffic, Inner Links, and External Nofollow Links. %sIn time you need to "
11316
- "complete all the Focus Pages tasks to rank higher and higher and to maintain "
11317
- "your rank especially if your keyword is a competitive one. "
11318
- msgstr ""
11319
- "Șansele de ranking sunt calculate în mod dinamic de către Squirrly Machine "
11320
- "Learning pe baza cuvântului cheie principal pe care l-ați selectat pentru "
11321
- "această pagină Focus. %sAlgoritmul din spatele Șanselor de Ranking este "
11322
- "complex, dar cea mai rapidă modalitate de a vă crește șansele este de a "
11323
- "finaliza principalele sarcini precum Vizibilitatea, Concurența cuvintelor "
11324
- "cheie, Optimizarea conținutului, Lungimea conținutului, Semnale sociale, "
11325
- "Traficul zilnic, Legături interne și Legături externe Nofollow. %sÎn timp, "
11326
- "trebuie să finalizați toate sarcinile din Focus Pages pentru a vă poziționa "
11327
- "din ce în ce mai sus și pentru a vă menține poziția, mai ales dacă cuvântul "
11328
- "cheie este unul competitiv. "
11329
-
11330
- #: view/FocusPages/FocusPageRow.php:201
11331
- msgid "Do you want to delete the Focus Page?"
11332
- msgstr "Doriți să ștergeți pagina Focus?"
11333
-
11334
- #: view/FocusPages/FocusPageRow.php:207
11335
- msgid "Remove Focus Page"
11336
- msgstr "Îndepărtați pagina Focus"
11337
-
11338
- #: view/FocusPages/FocusPageStats.php:40
11339
- #, php-format
11340
- msgid "Week %s of %s"
11341
- msgstr "Săptămâna %s din %s"
11342
-
11343
- #: view/FocusPages/FocusPageStats.php:54
11344
- #, php-format
11345
- msgid "Rank increased %s positions for the keyword: %s"
11346
- msgstr "Rank a crescut %s poziții pentru cuvântul cheie: %s"
11347
-
11348
- #: view/FocusPages/FocusPageStats.php:60
11349
- #, php-format
11350
- msgid "Time on Page increased with %s minutes"
11351
- msgstr "Timpul pe pagină a crescut cu %s minute"
11352
-
11353
- #: view/FocusPages/FocusPageStats.php:65
11354
- #, php-format
11355
- msgid "Page Traffic increased with %s visits"
11356
- msgstr "Traficul paginii a crescut cu %s vizite"
11357
-
11358
- #: view/FocusPages/FocusPageStats.php:71
11359
- #, php-format
11360
- msgid "Organic Clicks increased with %s for the keyword: %s"
11361
- msgstr "Numărul de clicuri organice a crescut cu %s pentru cuvântul cheie: %s"
11362
-
11363
- #: view/FocusPages/FocusPageStats.php:77
11364
- #, php-format
11365
- msgid "Page Authority increased with %s"
11366
- msgstr "Autoritatea paginii a crescut cu %s"
11367
-
11368
- #: view/FocusPages/FocusPageStats.php:82
11369
- #, php-format
11370
- msgid "You got %s Social Shares"
11371
- msgstr "Ai %s Share-uri sociale"
11372
-
11373
- #: view/FocusPages/FocusPageStats.php:89
11374
- #, php-format
11375
- msgid "Page loads with %ss faster"
11376
- msgstr "Pagina se încarcă cu %ss mai repede"
11377
-
11378
- #: view/FocusPages/FocusPageStats.php:115
11379
- msgid "Chances of Ranking"
11380
- msgstr "Șanse de ranking"
11381
-
11382
- #: view/FocusPages/FocusPageStats.php:116
11383
- #: view/FocusPages/FocusPageStats.php:142
11384
- #, php-format
11385
- msgid "the latest %s days evolution for this Focus Page"
11386
- msgstr "evoluția ultimelor %s zile pentru această pagină Focus"
11387
-
11388
- #: view/FocusPages/FocusPageStats.php:171
11389
- msgid "Keyword Ranking"
11390
- msgstr "Clasamentul cuvintelor cheie"
11391
-
11392
- #: view/FocusPages/FocusPageStats.php:172
11393
- #, php-format
11394
- msgid "the latest %s days ranking for %s"
11395
- msgstr "clasamentul ultimelor %s zile pentru %s"
11396
-
11397
- #: view/FocusPages/FocusPageStats.php:198
11398
- #, php-format
11399
- msgid "the latest %s days page views"
11400
- msgstr "ultimele %s zile de afișare a paginilor"
11401
-
11402
- #: view/FocusPages/FocusPages.php:20
11403
- msgid "Current Ranking Drawbacks"
11404
- msgstr "Dezavantajele clasamentului actual"
11405
-
11406
- #: view/FocusPages/FocusPages.php:103
11407
- #, php-format
11408
- msgid "No data for this filter. %sShow All%s Focus Pages."
11409
- msgstr ""
11410
- "Nu există date pentru acest filtru. %sShow All%s Concentrați-vă pe pagini."
11411
-
11412
- #: view/FocusPages/FocusPages.php:107
11413
- msgid "Welcome to Focus Pages"
11414
- msgstr "Bine ați venit la Focus Pages"
11415
-
11416
- #: view/FocusPages/FocusPages.php:109
11417
- msgid "Add a new page as Focus Page to get started"
11418
- msgstr "Adăugați o pagină nouă ca pagină Focus pentru a începe"
11419
-
11420
- #: view/FocusPages/FocusPages.php:113
11421
- msgid "Tips: Which Page Should I Choose?"
11422
- msgstr "Sfaturi: Ce pagină ar trebui să aleg?"
11423
-
11424
- #: view/FocusPages/FocusPages.php:115
11425
- msgid ""
11426
- "One of the most important pages in your website, you money-makers, the pages "
11427
- "that bring you conversions."
11428
- msgstr ""
11429
- "Una dintre cele mai importante pagini din site-ul dvs. web, cele care vă fac "
11430
- "să câștigați bani, cele care vă aduc conversii."
11431
-
11432
- #: view/FocusPages/FocusPages.php:116
11433
- msgid "Don't choose your Home Page, Contact Page or About Use page."
11434
- msgstr ""
11435
- "Nu vă alegeți pagina principală, pagina de contact sau pagina Despre "
11436
- "utilizare."
11437
-
11438
- #: view/FocusPages/Pagelist.php:64
11439
- #, php-format
11440
- msgid ""
11441
- "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
11442
- "to generate the new audit for a focus page. There is a lot of processing "
11443
- "involved."
11444
- msgstr ""
11445
- "%sNotă:%s Rețineți că durează între %s1 minut și 5 minute%s pentru a genera "
11446
- "noul audit pentru o pagină de interes. Este implicată o mare cantitate de "
11447
- "procesare."
11448
-
11449
- #: view/FocusPages/Settings.php:22
11450
- msgid "Focus Pages Settings"
11451
- msgstr "Focus Pages - limită depășită"
11452
-
11453
- #: view/Frontend/Assistant.php:35
11454
- msgid ""
11455
- "To load Squirrly Live Assistant and optimize this page, click to connect to "
11456
- "Squirrly Data Cloud."
11457
- msgstr ""
11458
- "Pentru a încărca Squirrly Live Assistant și a optimiza această pagină, "
11459
- "faceți clic pentru a vă conecta la Squirrly Data Cloud."
11460
-
11461
- #: view/Goals/CheckSeo.php:26
11462
- msgid ""
11463
- "See all the improvements from all Squirrly SEO features in a single panel."
11464
- msgstr ""
11465
- "Vedeți toate îmbunătățirile aduse de toate caracteristicile Squirrly SEO "
11466
- "într-un singur panou."
11467
-
11468
- #: view/Goals/CheckSeo.php:60
11469
- msgid "See results"
11470
- msgstr "Vezi rezultatele"
11471
-
11472
- #: view/Goals/CheckSeo.php:90
11473
- msgid "Show hidden success"
11474
- msgstr "Arată opțiuni avansate"
11475
-
11476
- #: view/Goals/CheckSeo.php:119
11477
- msgid "Website SEO Check"
11478
- msgstr "Verificare SEO"
11479
-
11480
- #: view/Goals/CheckSeo.php:131
11481
- #, php-format
11482
- msgid "%s Upgrades"
11483
- msgstr "%s Îmbunătățiri"
11484
-
11485
- #: view/Goals/CheckSeo.php:132
11486
- msgid "Handled by Squirrly Genius."
11487
- msgstr "Gestionat de Squirrly Genius."
11488
-
11489
- #: view/Goals/CheckSeo.php:133
11490
- msgid ""
11491
- "Remember that it may take up to 1 minute for a complete SEO check. There is "
11492
- "a lot of processing involved."
11493
- msgstr ""
11494
- "Nu uitați că poate dura până la 1 minut pentru o verificare SEO completă. "
11495
- "Este implicată o mulțime de procesare."
11496
-
11497
- #: view/Goals/CheckSeo.php:160
11498
- msgid "Congratulations!"
11499
- msgstr "Felicitări!"
11500
-
11501
- #: view/Goals/Goals.php:35
11502
- msgid "Next SEO Goals"
11503
- msgstr "Următoarele obiective SEO"
11504
-
11505
- #: view/Goals/Goals.php:37
11506
- #, php-format
11507
- msgid "%s goals"
11508
- msgstr "%s obiective"
11509
-
11510
- #: view/Goals/Goals.php:52
11511
- msgid "Reach New Goals"
11512
- msgstr "Adaugă nou"
11513
-
11514
- #: view/Goals/Goals.php:53
11515
- msgid "Squirrly Smart Strategy sets new goals."
11516
- msgstr "Squirrly Smart Strategy își stabilește noi obiective."
11517
-
11518
- #: view/Goals/Goals.php:55
11519
- msgid "How unique are these goals?"
11520
- msgstr "Cât de unice sunt aceste obiective?"
11521
-
11522
- #: view/Goals/Goals.php:67
11523
- msgid "Daily Progress"
11524
- msgstr "Daily Progress"
11525
-
11526
- #: view/Goals/Goals.php:77
11527
- msgid "Today's Progress"
11528
- msgstr "Progresul de astăzi"
11529
-
11530
- #: view/Goals/Goals.php:88
11531
- #, php-format
11532
- msgid ""
11533
- "Hint: remember to click: %sShow me how - Mark as Done%s, when you complete a "
11534
- "goal."
11535
- msgstr ""
11536
- "Sfat: nu uitați să dați clic: %sMai arată-mi cum - Marchează ca fiind "
11537
- "realizat%s, atunci când finalizați un obiectiv."
11538
-
11539
- #: view/Goals/Goals.php:104
11540
- msgid "Goal completed. Good Job!"
11541
- msgstr "Obiectiv îndeplinit. Bună treabă!"
11542
-
11543
- #: view/Goals/Goals.php:116
11544
- msgid "use"
11545
- msgstr "foloseste"
11546
-
11547
- #: view/Goals/Goals.php:123
11548
- msgid "Time to complete this goal."
11549
- msgstr "Timp pentru a finaliza acest obiectiv."
11550
-
11551
- #: view/Goals/Goals.php:123
11552
- msgid "up to"
11553
- msgstr "până la"
11554
-
11555
- #: view/Goals/Goals.php:138
11556
- msgid "Show me how"
11557
- msgstr "Arată-mi cum"
11558
-
11559
- #: view/Goals/Goals.php:142
11560
- msgid "Goal is not done!"
11561
- msgstr "Scopul nu este îndeplinit!"
11562
-
11563
- #: view/Goals/Goals.php:156
11564
- msgid "SOLUTION"
11565
- msgstr "SOLUȚIE"
11566
-
11567
- #: view/Goals/Goals.php:168
11568
- msgid "Let's do this"
11569
- msgstr "Hai să facem asta"
11570
-
11571
- #: view/Goals/Goals.php:178
11572
- msgid "Mark As Done"
11573
- msgstr "L-am terminat"
11574
-
11575
- #: view/Goals/Goals.php:195
11576
- msgid "Do you want to ignore this goal?"
11577
- msgstr "Doriți să ignorați acest obiectiv?"
11578
-
11579
- #: view/Goals/Goals.php:217
11580
- msgid "Want to keep boosting your SEO?"
11581
- msgstr "Doriți să continuați să vă stimulați SEO?"
11582
-
11583
- #: view/Goals/Goals.php:219
11584
- msgid "Optimize your Posts and Pages"
11585
- msgstr "Optimizează-ți postările și paginile"
11586
-
11587
- #: view/Goals/Goals.php:244
11588
- msgid "Show hidden goals"
11589
- msgstr "Afișați obiectivele ascunse"
11590
-
11591
- #: view/Goals/Goals.php:254
11592
- msgid "Next goals on"
11593
- msgstr "Următoarele obiective pe"
11594
-
11595
- #: view/Goals/Goals.php:263
11596
- msgid "Load more goals if exist"
11597
- msgstr "Încărcați mai multe obiective, dacă există"
11598
-
11599
- #: view/Onboarding/Journey1.php:12
11600
- msgid "14 Days Journey"
11601
- msgstr "14 zile de călătorie"
11602
-
11603
- #: view/Onboarding/Journey1.php:29
11604
- msgid ""
11605
- "To drive it in the right direction, you have the chance to join (for Free) "
11606
- "the 14 Days Journey to Better Rankings."
11607
- msgstr ""
11608
- "Pentru a o conduce în direcția corectă, aveți șansa de a vă alătura "
11609
- "(gratuit) călătoriei de 14 zile pentru un ranking mai bun."
11610
-
11611
- #: view/Onboarding/Journey1.php:34
11612
- msgid "You'll get"
11613
- msgstr "Vei primi"
11614
-
11615
- #: view/Onboarding/Journey1.php:36
11616
- #, php-format
11617
- msgid ""
11618
- "the %schance to fix in 14 days%s mistakes from years of ineffective SEO."
11619
- msgstr ""
11620
- "%sșansa de a repara în 14 zile%s greșelile de ani de zile de SEO ineficient."
11621
-
11622
- #: view/Onboarding/Journey1.php:37
11623
- #, php-format
11624
- msgid "the skills you need to %ssucceed in 14 days%s."
11625
- msgstr "abilitățile de care aveți nevoie pentru a %s reuși în 14 zile%s."
11626
-
11627
- #: view/Onboarding/Journey1.php:38
11628
- #, php-format
11629
- msgid ""
11630
- "access to the private %sJourneyTeam community%s where you can share your "
11631
- "experience and talk about it (good and bad, all is accepted)."
11632
- msgstr ""
11633
- "acces la comunitatea privată %sJourneyTeam%s unde vă puteți împărtăși "
11634
- "experiența și vorbi despre ea (cu bune și rele, toate sunt acceptate)."
11635
-
11636
- #: view/Onboarding/Journey1.php:39
11637
- #, php-format
11638
- msgid ""
11639
- "receive%s help from the JourneyTeam%s and Private Feedback on your journey "
11640
- "from Squirrly."
11641
- msgstr ""
11642
- "primește%s ajutor din partea Echipei de Călătorie%s și Feedback privat "
11643
- "despre călătoria ta de la Squirrly."
11644
-
11645
- #: view/Onboarding/Journey1.php:40
11646
- #, php-format
11647
- msgid ""
11648
- "an %sexact recipe to follow for 14 Days%s to bring one of your pages up in "
11649
- "rankings, for a hands-on experience."
11650
- msgstr ""
11651
- "o rețetă %sexactă pe care să o urmați timp de 14 zile%s pentru a ridica una "
11652
- "dintre paginile dvs. în clasament, pentru o experiență practică."
11653
-
11654
- #: view/Onboarding/Journey1.php:41
11655
- #, php-format
11656
- msgid ""
11657
- "%sall the costs%s (to third parties) involved with APIs, technology, cloud "
11658
- "computing, etc. %sare fully sponsored by Squirrly%s. We sponsor every new "
11659
- "member who wishes to become part of the winning JourneyTeam."
11660
- msgstr ""
11661
- "%stoate costurile%s (pentru terți) implicate de API-uri, tehnologie, cloud "
11662
- "computing etc. %ssunt sponsorizate în totalitate de Squirrly%s. Noi "
11663
- "sponsorizăm fiecare nou membru care dorește să facă parte din JourneyTeam-ul "
11664
- "câștigător."
11665
-
11666
- #: view/Onboarding/Journey1.php:47 view/Onboarding/Step2.php:101
11667
- #: view/Onboarding/Step3.php:78
11668
- msgid "Continue"
11669
- msgstr "Continua"
11670
-
11671
- #: view/Onboarding/Journey1.php:62 view/Onboarding/Journey2.php:85
11672
- #: view/Onboarding/Step1.php:79 view/Onboarding/Step2.php:106
11673
- #: view/Onboarding/Step3.php:102
11674
- msgid "Return to Dashboard"
11675
- msgstr "Revenire în panoul principal"
11676
-
11677
- #: view/Onboarding/Journey2.php:11
11678
- msgid "Start the 14 Days Journey"
11679
- msgstr "Începeți călătoria de 14 zile"
11680
-
11681
- #: view/Onboarding/Journey2.php:25
11682
- msgid "Awesome! You are on your way to better results."
11683
- msgstr "Minunat! Sunteți pe drumul spre rezultate mai bune."
11684
-
11685
- #: view/Onboarding/Journey2.php:27
11686
- #, php-format
11687
- msgid "You will receive the %sdaily recipe%s in your %sDashboard%s."
11688
- msgstr "Veți primi %srețeta zilnică%s în %sDashboard%s."
11689
-
11690
- #: view/Onboarding/Journey2.php:34
11691
- #, php-format
11692
- msgid ""
11693
- "%sIn 14 Days you can tell us how it went%s (via messages on our %sFacebook "
11694
- "Page%s) and we'll tell you what you can do to further improve the results "
11695
- "you got during the 14 Days."
11696
- msgstr ""
11697
- "%sÎn 14 zile ne puteți spune cum a mers%s (prin mesaje pe pagina noastră de "
11698
- "Facebook %s%s) și îți vom spune ce poți face pentru a îmbunătăți și mai mult "
11699
- "rezultatele obținute în cele 14 zile."
11700
-
11701
- #: view/Onboarding/Journey2.php:38
11702
- msgid "Close"
11703
- msgstr "Închide"
11704
-
11705
- #: view/Onboarding/Journey2.php:42
11706
- msgid "Choose how to continue"
11707
- msgstr "Alegeți cum să continuați"
11708
-
11709
- #: view/Onboarding/Journey2.php:52
11710
- msgid "Let's Start My 14 Days Journey"
11711
- msgstr "Să începem călătoria mea de 14 zile"
11712
-
11713
- #: view/Onboarding/Journey2.php:60
11714
- msgid "Nah, there is little interest in this"
11715
- msgstr "Nu, nu prea există interes pentru asta"
11716
-
11717
- #: view/Onboarding/Journey2.php:69
11718
- msgid "Close Window"
11719
- msgstr "Inchide Fereastra"
11720
-
11721
- #: view/Onboarding/Step1.php:13 view/Onboarding/Step2.php:18
11722
- msgid "Welcome to"
11723
- msgstr "Bine aţi venit pe"
11724
-
11725
- #: view/Onboarding/Step1.php:25
11726
- msgid "Let us know how to setup your website"
11727
- msgstr "Spuneți-ne cum să vă configurăm site-ul"
11728
-
11729
- #: view/Onboarding/Step1.php:26
11730
- msgid "You can also modify all the settings later."
11731
- msgstr "De asemenea, puteți modifica ulterior toate setările."
11732
-
11733
- #: view/Onboarding/Step1.php:30
11734
- msgid "Your Website Type"
11735
- msgstr "Tipul site-ului dvs"
11736
-
11737
- #: view/Onboarding/Step1.php:31
11738
- msgid ""
11739
- "SEO Automation will setup SEO Patterns and Post Types based on your website "
11740
- "type."
11741
- msgstr ""
11742
- "Automatizarea SEO va configura tipare SEO și tipuri de postări pe baza "
11743
- "tipului de site web."
11744
-
11745
- #: view/Onboarding/Step1.php:36
11746
- msgid "E-commerce"
11747
- msgstr "E-commerce"
11748
-
11749
- #: view/Onboarding/Step1.php:37
11750
- msgid "Personal"
11751
- msgstr "Personal"
11752
-
11753
- #: view/Onboarding/Step1.php:38
11754
- msgid "Blog/News"
11755
- msgstr "Blog/Noutăți"
11756
-
11757
- #: view/Onboarding/Step1.php:39
11758
- msgid "Magazine"
11759
- msgstr "Revista"
11760
-
11761
- #: view/Onboarding/Step1.php:40
11762
- msgid "Portfolio"
11763
- msgstr "Portofoliu"
11764
-
11765
- #: view/Onboarding/Step1.php:41
11766
- msgid "Small Business"
11767
- msgstr "Afacere personala"
11768
-
11769
- #: view/Onboarding/Step1.php:42
11770
- msgid "Local Business"
11771
- msgstr "Afacere locala"
11772
-
11773
- #: view/Onboarding/Step1.php:43
11774
- msgid "Directory"
11775
- msgstr "Director"
11776
-
11777
- #: view/Onboarding/Step1.php:51
11778
- msgid "Your SEO Level"
11779
- msgstr "Nivelul tău SEO"
11780
-
11781
- #: view/Onboarding/Step1.php:52
11782
- msgid "SEO Settings will load data based on your SEO knowledge."
11783
- msgstr ""
11784
- "Setările SEO vor încărca datele pe baza cunoștințelor dumneavoastră SEO."
11785
-
11786
- #: view/Onboarding/Step1.php:56
11787
- msgid "Non-SEO Expert"
11788
- msgstr "Începător SEO"
11789
-
11790
- #: view/Onboarding/Step1.php:57
11791
- msgid "SEO Expert"
11792
- msgstr "Expert SEO"
11793
-
11794
- #: view/Onboarding/Step1.php:65
11795
- msgid "Skip Step"
11796
- msgstr "Treceți mai departe"
11797
-
11798
- #: view/Onboarding/Step1.php:68
11799
- msgid "Save & Continue"
11800
- msgstr "Salvați și continuați"
11801
-
11802
- #: view/Onboarding/Step2.php:26
11803
- msgid "Your Private SEO Consultant Sets Up the SEO for Your WordPress"
11804
- msgstr "Consultantul tău SEO privat setează SEO pentru WordPress"
11805
-
11806
- #: view/Onboarding/Step2.php:34
11807
- #, php-format
11808
- msgid "Getting %s SEO Automation %s ready on your WP"
11809
- msgstr "Noțiuni de bază %s SEO Automation %s gata pe WP dvs"
11810
-
11811
- #: view/Onboarding/Step2.php:42
11812
- #, php-format
11813
- msgid "Activating %s SEO METAs %s"
11814
- msgstr "Activarea %s SEO METAs %s"
11815
-
11816
- #: view/Onboarding/Step2.php:50
11817
- #, php-format
11818
- msgid "Activating %s JSON-LD Schema %s"
11819
- msgstr "Activare %s Schema JSON-LD %s"
11820
-
11821
- #: view/Onboarding/Step2.php:58
11822
- #, php-format
11823
- msgid "Activating %s Open Graph %s"
11824
- msgstr "Activarea %s Open Graph %s"
11825
-
11826
- #: view/Onboarding/Step2.php:66
11827
- #, php-format
11828
- msgid "Activating %s Twitter Cards %s"
11829
- msgstr "Activarea %s Carduri Twitter %s"
11830
-
11831
- #: view/Onboarding/Step2.php:74
11832
- #, php-format
11833
- msgid "Creating your %s Sitemap XML %s"
11834
- msgstr "Crearea %s Sitemap XML %s"
11835
-
11836
- #: view/Onboarding/Step2.php:82
11837
- #, php-format
11838
- msgid "Creating %s Robots.txt %s"
11839
- msgstr "Crearea %s Robots.txt %s"
11840
-
11841
- #: view/Onboarding/Step2.php:87
11842
- msgid "Success! You are all setup"
11843
- msgstr "Succes! Sunteți toți pregătiți"
11844
-
11845
- #: view/Onboarding/Step3.php:12
11846
- msgid "Import SEO & Settings"
11847
- msgstr "Import SEO & Setări"
11848
-
11849
- #: view/Onboarding/Step3.php:28
11850
- msgid "We've detected another SEO Plugin on your site."
11851
- msgstr "Am detectat un alt Plugin SEO pe site-ul dvs."
11852
-
11853
- #: view/Onboarding/Step3.php:32
11854
- #, php-format
11855
- msgid "%sImport your settings and SEO%s from the following plugin"
11856
- msgstr "%sImportați setările și SEO%s din următorul plugin"
11857
-
11858
- #: view/Onboarding/Step3.php:51
11859
- msgid "Import"
11860
- msgstr "Import"
11861
-
11862
- #: view/Onboarding/Step3.php:53 view/SeoSettings/Backup.php:71
11863
- #: view/SeoSettings/Backup.php:111
11864
- msgid "We couldn't find any SEO plugin or theme to import from."
11865
- msgstr "Nu am putut găsi niciun plugin SEO sau temă de la care să importăm."
11866
-
11867
- #: view/Onboarding/Step3.php:62
11868
- msgid "What you gain"
11869
- msgstr "Ce câștigi"
11870
-
11871
- #: view/Onboarding/Step3.php:64
11872
- msgid ""
11873
- "Everything will be the same in your site, and Google will keep all your "
11874
- "rankings safe."
11875
- msgstr ""
11876
- "Totul va fi la fel pe site-ul dvs., iar Google vă va păstra în siguranță "
11877
- "toate clasamentele."
11878
-
11879
- #: view/Onboarding/Step3.php:65
11880
- msgid ""
11881
- "Squirrly SEO covers everything that Google used to see from the old plugin, "
11882
- "and brings new stuff in. That's why Google will do more than keep your "
11883
- "rankings safe. It might award you with brand new page 1 positions if you use "
11884
- "Squirrly."
11885
- msgstr ""
11886
- "Squirrly SEO acoperă tot ceea ce Google obișnuia să vadă din vechiul plugin "
11887
- "și aduce lucruri noi. De aceea, Google va face mai mult decât să vă mențină "
11888
- "în siguranță clasamentele. S-ar putea să vă premieze cu poziții complet noi "
11889
- "pe pagina 1 dacă folosiți Squirrly."
11890
-
11891
- #: view/Onboarding/Step3.php:69
11892
- msgid "If you decide to switch back"
11893
- msgstr "Dacă vă decideți să reveniți"
11894
-
11895
- #: view/Onboarding/Step3.php:71
11896
- msgid ""
11897
- "you can always switch back, without any issues. Your old plugin will remain "
11898
- "the same. We don't delete it."
11899
- msgstr ""
11900
- "puteți oricând să reveniți, fără nicio problemă. Vechiul dvs. plugin va "
11901
- "rămâne același. Noi nu îl ștergem."
11902
-
11903
- #: view/Onboarding/Step3.php:79
11904
- msgid "Skip this step"
11905
- msgstr "Săriți peste acest pas"
11906
-
11907
- #: view/Onboarding/Step3.php:84
11908
- msgid "We haven't detected other SEO Plugins on your site."
11909
- msgstr "Nu am detectat alte plugin-uri SEO pe site-ul dvs."
11910
-
11911
- #: view/Onboarding/Step3.php:87
11912
- msgid "Click Continue to go to the next step."
11913
- msgstr "Faceți clic pe Continue (Continuare) pentru a trece la pasul următor."
11914
-
11915
- #: view/Onboarding/Step4.php:21
11916
- msgid "You're all set."
11917
- msgstr "Sunteți gata."
11918
-
11919
- #: view/Onboarding/Step4.php:24
11920
- msgid "See All Squirrly SEO Features"
11921
- msgstr "Vezi toate caracteristicile Squirrly SEO"
11922
-
11923
- #: view/Onboarding/Step4.php:34
11924
- msgid ""
11925
- "Your private SEO consultant is now accessing our cloud services to start "
11926
- "analyzing your site."
11927
- msgstr ""
11928
- "Consultantul dvs. SEO privat accesează acum serviciile noastre cloud pentru "
11929
- "a începe să vă analizeze site-ul."
11930
-
11931
- #: view/Onboarding/Step4.php:35
11932
- msgid ""
11933
- "Our machine learning is now trying to match some of the data with what we "
11934
- "have in our system."
11935
- msgstr ""
11936
- "Învățarea noastră automată încearcă acum să potrivească unele dintre date cu "
11937
- "ceea ce avem în sistem."
11938
-
11939
- #: view/Onboarding/Step4.php:36
11940
- msgid "Getting your SEO Protection to 100%."
11941
- msgstr "Obținerea protecției SEO la 100%."
11942
-
11943
- #: view/Onboarding/Step4.php:37
11944
- msgid "Covering all the post types from your WP with Excellent on-page SEO."
11945
- msgstr "Acoperirea tuturor tipurilor de post din WP cu Excelent on-page SEO."
11946
-
11947
- #: view/Onboarding/Step4.php:38
11948
- msgid "Analysis by consultant reaching 100%."
11949
- msgstr "Analiza efectuată de consultant a ajuns la 100%."
11950
-
11951
- #: view/Onboarding/Step4.php:47
11952
- msgid ""
11953
- "You can now check today's SEO Goals to see what your new Consultant says you "
11954
- "should focus on."
11955
- msgstr ""
11956
- "Acum puteți verifica Obiectivele SEO de astăzi pentru a vedea pe ce ar "
11957
- "trebui să vă concentreze noul dvs. consultant."
11958
-
11959
- #: view/Onboarding/Step4.php:51
11960
- msgid "Check Today's SEO Goals"
11961
- msgstr "Verificați obiectivele SEO de astăzi"
11962
-
11963
- #: view/Overview.php:15
11964
- msgid ""
11965
- "You do not have permission to access Daily Goals. You need Squirrly SEO "
11966
- "Editor role."
11967
- msgstr ""
11968
- "Nu aveți permisiunea de a accesa Obiective zilnice. Aveți nevoie de rolul "
11969
- "Squirrly SEO Editor."
11970
-
11971
- #: view/Ranking/Gscsync.php:16
11972
- msgid "Google Search Console Keywords Sync"
11973
- msgstr "Sincronizarea cuvintelor cheie din Google Search Console"
11974
-
11975
- #: view/Ranking/Gscsync.php:21 view/Research/Suggested.php:21
11976
- msgid ""
11977
- "See the trending keywords suitable for your website's future topics. We "
11978
- "check for new keywords weekly based on your latest researches."
11979
- msgstr ""
11980
- "Vedeți cuvintele cheie în tendințe potrivite pentru viitoarele subiecte ale "
11981
- "site-ului dumneavoastră. Verificăm săptămânal noi cuvinte cheie pe baza "
11982
- "ultimelor dvs. cercetări."
11983
-
11984
- #: view/Ranking/Gscsync.php:25
11985
- msgid ""
11986
- "This is the list of keywords you have in Google Search Console. Information "
11987
- "for the last 90 days. You can add keywords that you find relevant to your "
11988
- "Briefcase and to the Rankings section."
11989
- msgstr ""
11990
- "Aceasta este lista de cuvinte cheie pe care o aveți în Google Search "
11991
- "Console. Informații pentru ultimele 90 de zile. Puteți adăuga cuvinte cheie "
11992
- "pe care le considerați relevante pentru Briefcase și la secțiunea Clasamente."
11993
-
11994
- #: view/Ranking/Gscsync.php:39
11995
- msgid "Click-Through Rate"
11996
- msgstr "Rata de accesare"
11997
-
11998
- #: view/Ranking/Gscsync.php:40
11999
- msgid "Average Position"
12000
- msgstr "Poziția medie"
12001
-
12002
- #: view/Ranking/Gscsync.php:40
12003
- msgid "AVG Position"
12004
- msgstr "Poziția AVG"
12005
-
12006
- #: view/Ranking/Gscsync.php:85
12007
- msgid "Already in Rank Checker"
12008
- msgstr "Deja în Rank Checker"
12009
-
12010
- #: view/Ranking/Gscsync.php:90
12011
- msgid "Add to Rank Checker"
12012
- msgstr "Adaugă la Rank Checker"
12013
-
12014
- #: view/Ranking/Gscsync.php:106
12015
- msgid "Welcome to Google Search Console Keywords Sync"
12016
- msgstr "Bine ați venit la Google Search Console Keywords Sync"
12017
-
12018
- #: view/Ranking/Gscsync.php:109
12019
- #, php-format
12020
- msgid ""
12021
- "If you're new to SEO, you probably don't know yet how slow Google actually "
12022
- "is with regard to crawling and gathering data about sites which are not as "
12023
- "big as The New York Times, Amazon.com, etc. %s Here are some resources. %s "
12024
- "We could not find any keywords from your GSC account, because Google doesn't "
12025
- "have enough data about your site yet. %s Give Google more time to learn "
12026
- "about your site. Until then, keep working on your SEO Goals from Squirrly "
12027
- "SEO."
12028
- msgstr ""
12029
- "Dacă sunteți nou în domeniul SEO, probabil că nu știți încă cât de lent este "
12030
- "Google în ceea ce privește căutarea și colectarea de date despre site-uri "
12031
- "care nu sunt la fel de mari ca The New York Times, Amazon.com etc. %s Iată "
12032
- "câteva resurse. %s Nu am putut găsi niciun cuvânt cheie din contul "
12033
- "dumneavoastră GSC, deoarece Google nu are încă suficiente date despre site-"
12034
- "ul dumneavoastră. %s Oferiți-i Google mai mult timp pentru a învăța despre "
12035
- "site-ul dvs. Până atunci, continuați să lucrați la Obiectivele SEO de la "
12036
- "Squirrly SEO."
12037
-
12038
- #: view/Ranking/Gscsync.php:112
12039
- msgid "Tips: Which Keyword Should I Choose?"
12040
- msgstr "Sfaturi: Ce cuvânt cheie ar trebui să aleg?"
12041
-
12042
- #: view/Ranking/Gscsync.php:114 view/Ranking/Rankings.php:450
12043
- #, php-format
12044
- msgid ""
12045
- "From %sSquirrly Briefcase%s you can send keywords to Rank Checker to track "
12046
- "the SERP evolution."
12047
- msgstr ""
12048
- "Din %sSquirrly Briefcase%s puteți trimite cuvinte cheie către Rank Checker "
12049
- "pentru a urmări evoluția SERP."
12050
-
12051
- #: view/Ranking/Rankings.php:38
12052
- msgid ""
12053
- "It's a fully functional SEO Ranking Tool that helps you find the true "
12054
- "position of your website in Google for any keyword and any country you want"
12055
- msgstr ""
12056
- "Este un SEO Ranking Tool complet funcțional care vă ajută să găsiți "
12057
- "adevărata poziție a site-ului dvs. în Google pentru orice cuvânt cheie și "
12058
- "orice țară pe care o doriți"
12059
-
12060
- #: view/Ranking/Rankings.php:40
12061
- msgid ""
12062
- "Get the Google Search Console average possitions, clicks and impressions for "
12063
- "all organic keywords of your website."
12064
- msgstr ""
12065
- "Obțineți media posesiunilor, clicurilor și impresiilor din Google Search "
12066
- "Console pentru toate cuvintele cheie organice ale site-ului dvs. web."
12067
-
12068
- #: view/Ranking/Rankings.php:102
12069
- msgid "Only show ranked articles"
12070
- msgstr "Afișați doar articolele cu ranking"
12071
-
12072
- #: view/Ranking/Rankings.php:106
12073
- msgid "Today Avg. Ranking"
12074
- msgstr "Astăzi Avg. Clasament"
12075
-
12076
- #: view/Ranking/Rankings.php:110
12077
- msgid "Only show SERP changes"
12078
- msgstr "Afișați doar modificările SERP"
12079
-
12080
- #: view/Ranking/Rankings.php:132
12081
- msgid "Today SERP Changes"
12082
- msgstr "Schimbări SERP de astăzi"
12083
-
12084
- #: view/Ranking/Rankings.php:161
12085
- #, php-format
12086
- msgid "the latest %s days Google Rankings evolution"
12087
- msgstr "cele mai recente %s zile Google Rankings evoluție"
12088
-
12089
- #: view/Ranking/Rankings.php:167
12090
- #, php-format
12091
- msgid "%s keyword ranked in TOP 10"
12092
- msgstr "%s cuvânt cheie în TOP 10"
12093
-
12094
- #: view/Ranking/Rankings.php:172
12095
- #, php-format
12096
- msgid "%s keyword ranked better today"
12097
- msgstr "%s cuvânt cheie rank-uit mai bine astăzi"
12098
-
12099
- #: view/Ranking/Rankings.php:184
12100
- #, php-format
12101
- msgid "Ranks improved with an average of %s in the last 7 days."
12102
- msgstr "Clasamentul s-a îmbunătățit cu o medie de %s în ultimele 7 zile."
12103
-
12104
- #: view/Ranking/Rankings.php:208 view/Research/Briefcase.php:82
12105
- #: view/Research/Labels.php:88
12106
- msgid "Bulk Actions"
12107
- msgstr "Actiuni in masa"
12108
-
12109
- #: view/Ranking/Rankings.php:209
12110
- msgid "Ar you sure you want to delete the keyword?"
12111
- msgstr "Sunteți sigur că doriți să ștergeți cuvântul cheie?"
12112
-
12113
- #: view/Ranking/Rankings.php:209 view/Research/Briefcase.php:85
12114
- #: view/Research/Labels.php:89
12115
- msgid "Delete"
12116
- msgstr "Șterge"
12117
-
12118
- #: view/Ranking/Rankings.php:211
12119
- msgid "Refresh Serp"
12120
- msgstr "Reîmprospătare Serp"
12121
-
12122
- #: view/Ranking/Rankings.php:214 view/Research/Briefcase.php:87
12123
- #: view/Research/Labels.php:91
12124
- msgid "Apply"
12125
- msgstr "Aplică"
12126
-
12127
- #: view/Ranking/Rankings.php:223
12128
- msgid "Path"
12129
- msgstr "Cale"
12130
-
12131
- #: view/Ranking/Rankings.php:225 view/Research/Briefcase.php:131
12132
- msgid "Rank"
12133
- msgstr "Poziție"
12134
-
12135
- #: view/Ranking/Rankings.php:226
12136
- msgid "Best"
12137
- msgstr "Cele mai bune"
12138
-
12139
- #: view/Ranking/Rankings.php:228 view/Research/Briefcase.php:133
12140
- msgid "Avg Rank"
12141
- msgstr "Clasament mediu"
12142
-
12143
- #: view/Ranking/Rankings.php:261 view/Ranking/Rankings.php:291
12144
- msgid "Google Search Console has no data for this keyword"
12145
- msgstr "Google Search Console nu are date pentru acest cuvânt cheie"
12146
-
12147
- #: view/Ranking/Rankings.php:281 view/Research/Briefcase.php:192
12148
- msgid "Not indexed"
12149
- msgstr "Neindexat"
12150
-
12151
- #: view/Ranking/Rankings.php:292 view/Research/Briefcase.php:194
12152
- msgid "GSC"
12153
- msgstr "GSC"
12154
-
12155
- #: view/Ranking/Rankings.php:296
12156
- msgid "rank details"
12157
- msgstr "detalii de rang"
12158
-
12159
- #: view/Ranking/Rankings.php:315
12160
- msgid "Check Ranking again"
12161
- msgstr "Verificați din nou clasamentul"
12162
-
12163
- #: view/Ranking/Rankings.php:328
12164
- msgid "Remove Keyword"
12165
- msgstr "Eliminați cuvântul cheie"
12166
-
12167
- #: view/Ranking/Rankings.php:387
12168
- msgid "Optimized with SLA"
12169
- msgstr "Optimizat cu SLA"
12170
-
12171
- #: view/Ranking/Rankings.php:395
12172
- msgid "Social Shares"
12173
- msgstr "Distribuie Rețele sociale"
12174
-
12175
- #: view/Ranking/Rankings.php:398
12176
- msgid "Facebook Shares"
12177
- msgstr "Acțiuni Facebook"
12178
-
12179
- #: view/Ranking/Rankings.php:399
12180
- msgid "Reddit Shares"
12181
- msgstr "Acțiuni Reddit"
12182
-
12183
- #: view/Ranking/Rankings.php:400
12184
- msgid "Pinterest Pins"
12185
- msgstr "Pinterest Pins"
12186
-
12187
- #: view/Ranking/Rankings.php:407 view/Research/Briefcase.php:326
12188
- #: view/Research/History.php:34 view/Research/Research.php:203
12189
- #: view/Research/Suggested.php:34 view/SeoSettings/Jsonld.php:125
12190
- msgid "Country"
12191
- msgstr "Țară"
12192
-
12193
- #: view/Ranking/Rankings.php:422
12194
- msgid ""
12195
- "Note! The clicks and impressions data is taken from Google Search Console "
12196
- "for the last 90 days for the current URL."
12197
- msgstr ""
12198
- "Notă! Datele privind clicurile și impresiile sunt preluate din Google Search "
12199
- "Console pentru ultimele 90 de zile pentru URL-ul curent."
12200
-
12201
- #: view/Ranking/Rankings.php:437
12202
- msgid "No ranking found."
12203
- msgstr "Nu s-a găsit niciun clasament."
12204
-
12205
- #: view/Ranking/Rankings.php:441
12206
- msgid "Welcome to Squirrly Rankings"
12207
- msgstr "Bine ați venit la Squirrly Rankings"
12208
-
12209
- #: view/Ranking/Rankings.php:444
12210
- msgid "Add keywords in Briefcase"
12211
- msgstr "Adăugați cuvinte cheie în Briefcase"
12212
-
12213
- #: view/Ranking/Rankings.php:448
12214
- msgid "Tips: How to add Keywords in Rankings?"
12215
- msgstr "Sfaturi: Cum să adăugați cuvinte cheie în clasamente?"
12216
-
12217
- #: view/Ranking/Rankings.php:451
12218
- #, php-format
12219
- msgid ""
12220
- "Connect with %sGoogle Search Console%s to synchronize the keywords for which "
12221
- "your website is ranking."
12222
- msgstr ""
12223
- "Conectați-vă cu %sGoogle Search Console%s pentru a sincroniza cuvintele "
12224
- "cheie pentru care site-ul dvs. este clasificat."
12225
-
12226
- #: view/Ranking/Rankings.php:473
12227
- msgid "Synchronize Keywords with Google Search Console"
12228
- msgstr "Sincronizați cuvintele cheie cu Google Search Console"
12229
-
12230
- #: view/Ranking/Settings.php:30
12231
- msgid "Rankings Settings"
12232
- msgstr "Setări pentru clasamente"
12233
-
12234
- #: view/Ranking/Settings.php:48
12235
- msgid "Google Country"
12236
- msgstr "Țara Google"
12237
-
12238
- #: view/Ranking/Settings.php:49
12239
- msgid "Select the Country for which Squirrly will check the Google rank."
12240
- msgstr "Selectați țara pentru care Squirrly va verifica rangul Google."
12241
-
12242
- #: view/Ranking/Settings.php:53
12243
- msgid "Default"
12244
- msgstr "Implicit"
12245
-
12246
- #: view/Ranking/Settings.php:172
12247
- msgid "Google Language"
12248
- msgstr "Limba Google"
12249
-
12250
- #: view/Ranking/Settings.php:173
12251
- msgid "Select the Language for which Squirrly will check the Google rank."
12252
- msgstr "Selectați limba pentru care Squirrly va verifica rangul Google."
12253
-
12254
- #: view/Ranking/Settings.php:327
12255
- msgid "Device"
12256
- msgstr "Dispozitiv"
12257
-
12258
- #: view/Ranking/Settings.php:328
12259
- msgid "Select the Device for which Squirrly will check the Google rank."
12260
- msgstr "Selectați Dispozitivul pentru care Squirrly va verifica rangul Google."
12261
-
12262
- #: view/Research/Briefcase.php:21
12263
- msgid ""
12264
- "Briefcase is essential to managing your SEO Strategy. With Briefcase you'll "
12265
- "find the best opportunities for keywords you're using in the Awareness "
12266
- "Stage, Decision Stage and other stages you may plan for your Customer's "
12267
- "Journey."
12268
- msgstr ""
12269
- "Briefcase este esențial pentru gestionarea strategiei SEO. Cu Briefcase veți "
12270
- "găsi cele mai bune oportunități pentru cuvintele cheie pe care le folosiți "
12271
- "în Etapa de conștientizare, Etapa de decizie și alte etape pe care le puteți "
12272
- "planifica pentru Călătoria clientului."
12273
-
12274
- #: view/Research/Briefcase.php:37 view/Research/Briefcase.php:66
12275
- msgid "Search Keyword"
12276
- msgstr "Câmpul Căutare cuvânt cheie"
12277
-
12278
- #: view/Research/Briefcase.php:83 view/Research/Briefcase.php:189
12279
- msgid "Send to Rankings"
12280
- msgstr "Trimite la clasamente"
12281
-
12282
- #: view/Research/Briefcase.php:84 view/Research/Briefcase.php:266
12283
- msgid "Assign Label"
12284
- msgstr "Atribuiți eticheta"
12285
-
12286
- #: view/Research/Briefcase.php:85
12287
- msgid "Ar you sure you want to delete the keywords?"
12288
- msgstr "Sunteți sigur că doriți să ștergeți cuvintele cheie?"
12289
-
12290
- #: view/Research/Briefcase.php:93 view/Research/Briefcase.php:385
12291
- #, php-format
12292
- msgid "Select Labels for: %s"
12293
- msgstr "Selectați etichete pentru: %s"
12294
-
12295
- #: view/Research/Briefcase.php:93
12296
- msgid "selected keywords"
12297
- msgstr "cuvinte cheie selectate"
12298
-
12299
- #: view/Research/Briefcase.php:97
12300
- msgid ""
12301
- "By assigning these labels, you will reset the other labels you assigned for "
12302
- "each keyword individually."
12303
- msgstr ""
12304
- "Prin atribuirea acestor etichete, veți reseta celelalte etichete pe care le-"
12305
- "ați atribuit pentru fiecare cuvânt cheie în parte."
12306
-
12307
- #: view/Research/Briefcase.php:102 view/Research/Briefcase.php:401
12308
- msgid "Click to select"
12309
- msgstr "Faceți clic pentru a selecta"
12310
-
12311
- #: view/Research/Briefcase.php:106 view/Research/Briefcase.php:407
12312
- #: view/Research/Labels.php:28
12313
- msgid "Add new Label"
12314
- msgstr "Adauga etichetă noua"
12315
-
12316
- #: view/Research/Briefcase.php:111 view/Research/Briefcase.php:413
12317
- msgid "Save Labels"
12318
- msgstr "Salvați etichetele"
12319
-
12320
- #: view/Research/Briefcase.php:127
12321
- msgid "Usage"
12322
- msgstr "Utilizare"
12323
-
12324
- #: view/Research/Briefcase.php:137 view/Research/Briefcase.php:337
12325
- msgid "Search Volume"
12326
- msgstr "Volumul de căutare"
12327
-
12328
- #: view/Research/Briefcase.php:137 view/Research/HistoryDetails.php:15
12329
- #: view/Research/Suggested.php:41
12330
- msgid "SV"
12331
- msgstr "SV"
12332
-
12333
- #: view/Research/Briefcase.php:180 view/Research/Briefcase.php:182
12334
- #, php-format
12335
- msgid "in %s posts"
12336
- msgstr "în %s posturi"
12337
-
12338
- #: view/Research/Briefcase.php:188 view/Research/Briefcase.php:250
12339
- msgid "Check Rankings"
12340
- msgstr "Verificați clasamentele"
12341
-
12342
- #: view/Research/Briefcase.php:208
12343
- msgid "keyword info"
12344
- msgstr "informații"
12345
-
12346
- #: view/Research/Briefcase.php:230
12347
- msgid "No research data"
12348
- msgstr "Nu există date de cercetare"
12349
-
12350
- #: view/Research/Briefcase.php:252
12351
- msgid "Send to Rank Checker"
12352
- msgstr "Trimite la Rank Checker"
12353
-
12354
- #: view/Research/Briefcase.php:261
12355
- msgid "Refresh Research"
12356
- msgstr "Refresh Research"
12357
-
12358
- #: view/Research/Briefcase.php:271 view/Research/Suggested.php:135
12359
- msgid "Delete Keyword"
12360
- msgstr "Ștergeți cuvântul cheie"
12361
-
12362
- #: view/Research/Briefcase.php:292
12363
- msgid "Optimized with"
12364
- msgstr "Optimizat cu"
12365
-
12366
- #: view/Research/Briefcase.php:331 view/Research/HistoryDetails.php:9
12367
- #: view/Research/HistoryDetails.php:11 view/Research/Research.php:205
12368
- #: view/Research/Research.php:206 view/Research/Suggested.php:36
12369
- #: view/Research/Suggested.php:37
12370
- msgid "Competition"
12371
- msgstr "Concurs"
12372
-
12373
- #: view/Research/Briefcase.php:343 view/Research/HistoryDetails.php:17
12374
- #: view/Research/Research.php:213 view/Research/Suggested.php:44
12375
- msgid "Recent discussions"
12376
- msgstr "Discuții recente"
12377
-
12378
- #: view/Research/Briefcase.php:349 view/Research/HistoryDetails.php:21
12379
- #: view/Research/Research.php:217 view/Research/Suggested.php:48
12380
- msgid "Trending"
12381
- msgstr "Tendință"
12382
-
12383
- #: view/Research/Briefcase.php:429
12384
- msgid "Welcome to Briefcase"
12385
- msgstr "Briefcase"
12386
-
12387
- #: view/Research/Briefcase.php:432 view/Research/History.php:62
12388
- #: view/Research/Suggested.php:157
12389
- msgid "Go Find New Keywords"
12390
- msgstr "Găsiți cuvinte cheie"
12391
-
12392
- #: view/Research/Briefcase.php:436
12393
- msgid "Tips: How to add Keywords in Briefcase?"
12394
- msgstr "Sfaturi: Cum să adăugați cuvinte cheie în Briefcase?"
12395
-
12396
- #: view/Research/Briefcase.php:438
12397
- #, php-format
12398
- msgid "From %sKeyword Research%s send keywords to Briefcase."
12399
- msgstr ""
12400
- "De la %sCercetare cuvinte cheie%s trimiteți cuvintele cheie către Briefcase."
12401
-
12402
- #: view/Research/Briefcase.php:439
12403
- #, php-format
12404
- msgid ""
12405
- "From Briefcase you can use the keywords in %sSquirrly Live Assistant%s to "
12406
- "optimize your pages."
12407
- msgstr ""
12408
- "Din Briefcase puteți utiliza cuvintele cheie din %sSquirrly Live Assistant%s "
12409
- "pentru a vă optimiza paginile."
12410
-
12411
- #: view/Research/Briefcase.php:440
12412
- msgid ""
12413
- "If you already have a list of keywords, Import the keywords usign the below "
12414
- "button."
12415
- msgstr ""
12416
- "Dacă aveți deja o listă de cuvinte cheie, importați cuvintele cheie folosind "
12417
- "butonul de mai jos."
12418
-
12419
- #: view/Research/Briefcase.php:450
12420
- msgid "Backup/Restore Briefcase Keywords"
12421
- msgstr "Backup/Restore Briefcase Cuvinte cheie"
12422
-
12423
- #: view/Research/Briefcase.php:453
12424
- msgid ""
12425
- "Keep your briefcase keywords safe in case you change your domain or "
12426
- "reinstall the plugin"
12427
- msgstr ""
12428
- "Păstrați cuvintele cheie din servietă în siguranță în cazul în care vă "
12429
- "schimbați domeniul sau reinstalați plugin-ul"
12430
-
12431
- #: view/Research/Briefcase.php:454
12432
- #, php-format
12433
- msgid "%sLearn how to import keywords into briefcase%s"
12434
- msgstr "%sÎnvățați cum să importați cuvinte cheie în servietă%s"
12435
-
12436
- #: view/Research/Briefcase.php:460
12437
- msgid "Download Keywords"
12438
- msgstr "Descarcă cuvinte cheie"
12439
-
12440
- #: view/Research/Briefcase.php:463
12441
- msgid "Import Keywords"
12442
- msgstr "Importul de cuvinte cheie"
12443
-
12444
- #: view/Research/Briefcase.php:469
12445
- msgid "Restore Briefcase Keywords"
12446
- msgstr "Restore Briefcase Cuvinte cheie"
12447
-
12448
- #: view/Research/Briefcase.php:477 view/SeoSettings/Backup.php:218
12449
- msgid "Restore Keywords"
12450
- msgstr "Restaurați cuvintele cheie"
12451
-
12452
- #: view/Research/Briefcase.php:478 view/SeoSettings/Backup.php:219
12453
- msgid "Upload the file with the saved Squirrly Briefcase Keywords."
12454
- msgstr "Încărcați fișierul cu cuvintele-cheie salvate din Squirrly Briefcase."
12455
-
12456
- #: view/Research/History.php:16
12457
- msgid "Research History"
12458
- msgstr "Istoria cercetării"
12459
-
12460
- #: view/Research/History.php:21
12461
- msgid "See the Keyword Researches you made in the last 30 days"
12462
- msgstr ""
12463
- "Vezi căutările de cuvinte cheie pe care le-ai făcut în ultimele 30 de zile"
12464
-
12465
- #: view/Research/History.php:34 view/Research/Research.php:203
12466
- #: view/Research/Suggested.php:34
12467
- msgid "Co"
12468
- msgstr "Co"
12469
-
12470
- #: view/Research/History.php:50
12471
- msgid "Show All Keywords"
12472
- msgstr "Afișați toate cuvintele cheie"
12473
-
12474
- #: view/Research/History.php:58
12475
- msgid "Welcome to Keyword Research History"
12476
- msgstr "Bine ați venit la Istoria cercetării cuvintelor cheie"
12477
-
12478
- #: view/Research/History.php:59
12479
- msgid "See your research results and compare them over time"
12480
- msgstr "Vedeți rezultatele cercetării și comparați-le în timp"
12481
-
12482
- #: view/Research/HistoryDetails.php:13 view/Research/Research.php:209
12483
- #: view/Research/Suggested.php:40
12484
- msgid "SEO Search Volume"
12485
- msgstr "Volumul de căutare SEO"
12486
-
12487
- #: view/Research/HistoryDetails.php:19 view/Research/Research.php:214
12488
- #: view/Research/Suggested.php:45
12489
- msgid "Discussion"
12490
- msgstr "Discuţie"
12491
-
12492
- #: view/Research/HistoryDetails.php:23 view/Research/Research.php:218
12493
- #: view/Research/Suggested.php:49
12494
- msgid "Trend"
12495
- msgstr "Trend"
12496
-
12497
- #: view/Research/HistoryDetails.php:87 view/Research/ResearchDetails.php:57
12498
- #: view/Research/Suggested.php:124
12499
- msgid "Already in briefcase"
12500
- msgstr "Deja în servietă"
12501
-
12502
- #: view/Research/HistoryDetails.php:92 view/Research/ResearchDetails.php:62
12503
- #: view/Research/Suggested.php:129
12504
- msgid "Add to briefcase"
12505
- msgstr "Adăugați în Briefcase Squirrly"
12506
-
12507
- #: view/Research/Labels.php:16
12508
- msgid "Briefcase Labels"
12509
- msgstr "Etichete pentru serviete"
12510
-
12511
- #: view/Research/Labels.php:21
12512
- msgid ""
12513
- "Briefcase Labels will help you sort your keywords based on your SEO "
12514
- "strategy. Labels are like categories and you can quickly filter your "
12515
- "keywords by one or more labels."
12516
- msgstr ""
12517
- "Briefcase Labels vă va ajuta să vă clasificați cuvintele cheie în funcție de "
12518
- "strategia SEO. Etichetele sunt ca niște categorii și vă puteți filtra rapid "
12519
- "cuvintele cheie după una sau mai multe etichete."
12520
-
12521
- #: view/Research/Labels.php:37
12522
- msgid "Add New Label"
12523
- msgstr "Adauga etichetă noua"
12524
-
12525
- #: view/Research/Labels.php:42 view/Research/Labels.php:66
12526
- msgid "Label Name"
12527
- msgstr "Nume eticheta"
12528
-
12529
- #: view/Research/Labels.php:46 view/Research/Labels.php:70
12530
- msgid "Label Color"
12531
- msgstr "Culoare etichetă"
12532
-
12533
- #: view/Research/Labels.php:51
12534
- msgid "Add Label"
12535
- msgstr "Adaugă etichetă"
12536
-
12537
- #: view/Research/Labels.php:61 view/Research/Labels.php:130
12538
- msgid "Edit Label"
12539
- msgstr "Editare etichete"
12540
-
12541
- #: view/Research/Labels.php:76
12542
- msgid "Save Label"
12543
- msgstr "Salvați eticheta"
12544
-
12545
- #: view/Research/Labels.php:89
12546
- msgid "Ar you sure you want to delete the labels?"
12547
- msgstr "Sunteți sigur că doriți să ștergeți etichetele?"
12548
-
12549
- #: view/Research/Labels.php:99
12550
- msgid "Name"
12551
- msgstr "Nume"
12552
-
12553
- #: view/Research/Labels.php:100
12554
- msgid "Color"
12555
- msgstr "Culoare"
12556
-
12557
- #: view/Research/Labels.php:135
12558
- msgid "Delete Label"
12559
- msgstr "Ștergeți eticheta"
12560
-
12561
- #: view/Research/Labels.php:152
12562
- msgid "Welcome to Briefcase Labels"
12563
- msgstr "Bine ați venit la Briefcase Labels"
12564
-
12565
- #: view/Research/Labels.php:154
12566
- msgid "Add label to organize the keywords in Briefcase"
12567
- msgstr "Adăugați o etichetă pentru a organiza cuvintele cheie în Briefcase"
12568
-
12569
- #: view/Research/Labels.php:157
12570
- msgid "TIPS: How Should I Create My Labels?"
12571
- msgstr "SFATURI: Cum ar trebui să-mi creez etichetele?"
12572
-
12573
- #: view/Research/Labels.php:159
12574
- #, php-format
12575
- msgid ""
12576
- "Click on %sAdd New Label%s button, add a label name and choose a color for "
12577
- "it."
12578
- msgstr ""
12579
- "Faceți clic pe butonul %sAdd New Label%s (Adaugă o nouă etichetă), adăugați "
12580
- "un nume de etichetă și alegeți o culoare pentru aceasta."
12581
-
12582
- #: view/Research/Labels.php:161
12583
- msgid "Read more details about Briefcase Labels"
12584
- msgstr "Citiți mai multe detalii despre Etichete pentru serviete"
12585
-
12586
- #: view/Research/Research.php:23
12587
- msgid ""
12588
- "You can now find long-tail keywords that are easy to rank for. Get "
12589
- "personalized competition data for each keyword you research, thanks to "
12590
- "Squirrly's Market Intelligence Features."
12591
- msgstr ""
12592
- "Acum puteți găsi cuvinte cheie cu coadă lungă pentru care este ușor să vă "
12593
- "poziționați. Obțineți date personalizate privind concurența pentru fiecare "
12594
- "cuvânt cheie pe care îl cercetați, datorită funcțiilor de informații de "
12595
- "piață ale Squirrly."
12596
-
12597
- #: view/Research/Research.php:37 view/Research/Research.php:149
12598
- msgid "You've reached your Keyword Research Limit"
12599
- msgstr "Ai atins limita de Keyword Research"
12600
-
12601
- #: view/Research/Research.php:38 view/Research/Research.php:150
12602
- msgid "Check Your Account"
12603
- msgstr "Verificați contul dvs"
12604
-
12605
- #: view/Research/Research.php:41
12606
- msgid "Add a keyword to Briefcase"
12607
- msgstr "Adăugați un cuvânt cheie la Briefcase"
12608
-
12609
- #: view/Research/Research.php:45
12610
- msgid "It's best if you focus on finding Long-Tail Keywords."
12611
- msgstr ""
12612
- "Cel mai bine este să vă concentrați pe găsirea cuvintelor cheie Long-Tail."
12613
-
12614
- #: view/Research/Research.php:59
12615
- msgid "Step 1/4: Enter a starting 2-3 words keyword"
12616
- msgstr "Pasul 1/4: Introduceți un cuvânt cheie de pornire de 2-3 cuvinte"
12617
-
12618
- #: view/Research/Research.php:63
12619
- msgid "Enter a keyword that matches your business"
12620
- msgstr "Introduceți un cuvânt cheie care se potrivește cu afacerea dvs"
12621
-
12622
- #: view/Research/Research.php:67
12623
- msgid "Focus on finding Long Tail Keywords."
12624
- msgstr "Concentrează-te pe găsirea cuvintelor cheie Long Tail."
12625
-
12626
- #: view/Research/Research.php:68
12627
- msgid "You need to enter a keyword first"
12628
- msgstr "Trebuie să introduceți mai întâi un cuvânt cheie"
12629
-
12630
- #: view/Research/Research.php:74 view/Research/Research.php:106
12631
- msgid "Next"
12632
- msgstr "Următor"
12633
-
12634
- #: view/Research/Research.php:80
12635
- msgid "Step 2/4: Choose a country for your keyword research"
12636
- msgstr "Pasul 2/4: Alegeți o țară pentru cercetarea cuvintelor cheie"
12637
-
12638
- #: view/Research/Research.php:84
12639
- msgid "Select country"
12640
- msgstr "Selectați Țara"
12641
-
12642
- #: view/Research/Research.php:89
12643
- msgid "Global Search"
12644
- msgstr "Căutare globală"
12645
-
12646
- #: view/Research/Research.php:98
12647
- msgid ""
12648
- "For local SEO you need to select the Country where you run your business"
12649
- msgstr ""
12650
- "Pentru SEO local trebuie să selectați țara în care vă desfășurați afacerea"
12651
-
12652
- #: view/Research/Research.php:103 view/Research/Research.php:156
12653
- #: view/Research/Research.php:231
12654
- msgid "Start Over"
12655
- msgstr "Reia de la început"
12656
-
12657
- #: view/Research/Research.php:111
12658
- msgid "Step 3/4: Select similar keywords from below"
12659
- msgstr "Pasul 3/4: Selectați cuvinte cheie similare de mai jos"
12660
-
12661
- #: view/Research/Research.php:112
12662
- msgid "Select up to 3 similar keywords and start the research"
12663
- msgstr "Selectați până la 3 cuvinte cheie similare și începeți cercetarea"
12664
-
12665
- #: view/Research/Research.php:152
12666
- #, php-format
12667
- msgid "We could not find similar keywords. %sClick on 'Do research'"
12668
- msgstr ""
12669
- "Squirrly nu a putut gasi rezultate asemanatoare. %sClick on \"Do research\""
12670
-
12671
- #: view/Research/Research.php:162 view/Research/Research.php:172
12672
- msgid "Do research"
12673
- msgstr "Faceți cercetări"
12674
-
12675
- #: view/Research/Research.php:165
12676
- msgid "Do research (up to 20 results)"
12677
- msgstr "Efectuați cercetări (până la 20 de rezultate)"
12678
-
12679
- #: view/Research/Research.php:166
12680
- msgid "Do a deep research (up to 50 results)"
12681
- msgstr "Efectuați o cercetare aprofundată (până la 50 de rezultate)"
12682
-
12683
- #: view/Research/Research.php:180
12684
- msgid ""
12685
- "Keyword Research in progress. We're doing all of this in real-time. Data is "
12686
- "fresh."
12687
- msgstr ""
12688
- "Cercetare de cuvinte cheie în curs de desfășurare. Facem toate acestea în "
12689
- "timp real. Datele sunt proaspete."
12690
-
12691
- #: view/Research/Research.php:181
12692
- msgid "We're now finding 10 alternatives for each keyword you selected."
12693
- msgstr ""
12694
- "Acum găsim 10 alternative pentru fiecare cuvânt cheie pe care l-ați selectat."
12695
-
12696
- #: view/Research/Research.php:182
12697
- msgid ""
12698
- "For each alternative, we are looking at the top 10 pages ranked on Google "
12699
- "for that keyword."
12700
- msgstr ""
12701
- "Pentru fiecare alternativă, ne uităm la primele 10 pagini rank-uite pe "
12702
- "Google pentru acel cuvânt cheie."
12703
-
12704
- #: view/Research/Research.php:183
12705
- msgid ""
12706
- "We are now measuring the web authority of each competing page and comparing "
12707
- "it to yours."
12708
- msgstr ""
12709
- "În prezent, măsurăm autoritatea web a fiecărei pagini concurente și o "
12710
- "comparăm cu a dumneavoastră."
12711
-
12712
- #: view/Research/Research.php:184
12713
- msgid "Looking at the monthly search volume for each keyword."
12714
- msgstr "Examinarea volumului lunar de căutare pentru fiecare cuvânt cheie."
12715
-
12716
- #: view/Research/Research.php:185
12717
- msgid "Analyzing the last 30 days of Google trends for each keyword."
12718
- msgstr ""
12719
- "Analizând ultimele 30 de zile de tendințe Google pentru fiecare cuvânt cheie."
12720
-
12721
- #: view/Research/Research.php:186
12722
- msgid ""
12723
- "Seeing how many discussions there are on forums and Twitter for each keyword."
12724
- msgstr ""
12725
- "Să vedeți câte discuții există pe forumuri și pe Twitter pentru fiecare "
12726
- "cuvânt cheie."
12727
-
12728
- #: view/Research/Research.php:187
12729
- msgid ""
12730
- "Piecing all the keywords together now after analyzing each individual "
12731
- "keyword."
12732
- msgstr ""
12733
- "Acum, după ce am analizat fiecare cuvânt cheie în parte, am pus cap la cap "
12734
- "toate cuvintele cheie."
12735
-
12736
- #: view/Research/Research.php:188
12737
- msgid "Preparing the results."
12738
- msgstr "Pregătirea rezultatelor."
12739
-
12740
- #: view/Research/Research.php:191
12741
- msgid ""
12742
- "Did you know that you can open multiple browsers tabs with Squirrly's "
12743
- "Keyword Research, so you can do more researches as the same time?"
12744
- msgstr ""
12745
- "Știați că puteți deschide mai multe file de browsere cu Squirrly's Keyword "
12746
- "Research, astfel încât să puteți face mai multe cercetări în același timp?"
12747
-
12748
- #: view/Research/Research.php:194
12749
- msgid "Step 4/4: We found some relevant keywords for you"
12750
- msgstr ""
12751
- "Pasul 4/4: Am găsit câteva cuvinte cheie relevante pentru dumneavoastră"
12752
-
12753
- #: view/Research/Research.php:195
12754
- #, php-format
12755
- msgid ""
12756
- "Still processing. give it a bit more time, then go to %sResearch History%s. "
12757
- "Results will appear there."
12758
- msgstr ""
12759
- "Încă se procesează. mai lasă-l puțin timp, apoi accesează %sResearch History"
12760
- "%s. Rezultatele vor apărea acolo."
12761
-
12762
- #: view/Research/Research.php:196
12763
- msgid "Step 4/4: We could not find relevant keywords for you"
12764
- msgstr "Pasul 4/4: Nu am putut găsi cuvinte cheie relevante pentru dvs"
12765
-
12766
- #: view/Research/Research.php:246
12767
- msgid "How to Find Amazing Keywords and get more search traffic?"
12768
- msgstr ""
12769
- "Cum să găsiți cuvinte cheie uimitoare și să obțineți mai mult trafic de "
12770
- "căutare?"
12771
-
12772
- #: view/Research/Research.php:260
12773
- msgid "Already Have Keywords?"
12774
- msgstr "Ai deja Cuvinte Cheie?"
12775
-
12776
- #: view/Research/Research.php:263
12777
- msgid "Import Keywords From CSV"
12778
- msgstr "Importa cuvinte cheie din fisier CSV"
12779
-
12780
- #: view/Research/Suggested.php:16
12781
- msgid "Suggested Keywords"
12782
- msgstr "Cuvinte cheie sugerate"
12783
-
12784
- #: view/Research/Suggested.php:151
12785
- msgid "Welcome to Suggested Keywords"
12786
- msgstr "Bine ați venit la Suggested Keywords"
12787
-
12788
- #: view/Research/Suggested.php:152
12789
- msgid "Once a week, Squirrly checks all the keywords from your briefcase."
12790
- msgstr ""
12791
- "O dată pe săptămână, Squirrly verifică toate cuvintele cheie din servieta "
12792
- "dumneavoastră."
12793
-
12794
- #: view/Research/Suggested.php:153
12795
- msgid "If it finds better keywords, they will be listed here"
12796
- msgstr "Dacă găsește cuvinte cheie mai bune, acestea vor fi listate aici"
12797
-
12798
- #: view/Research/Suggested.php:154
12799
- msgid "Until then, add keywords in Briefcase"
12800
- msgstr "Până atunci, adăugați cuvinte cheie în Briefcase"
12801
-
12802
- #: view/SeoSettings/Advanced.php:26
12803
- msgid "Advanced Settings"
12804
- msgstr "Configurări Avansate"
12805
-
12806
- #: view/SeoSettings/Advanced.php:44
12807
- msgid "Load Squirrly Frontend CSS"
12808
- msgstr "Încărcați Squirrly Frontend CSS"
12809
-
12810
- #: view/SeoSettings/Advanced.php:47
12811
- msgid ""
12812
- "Load Squirrly SEO CSS for Twitter and Article inserted from Squirrly "
12813
- "Blogging Assistant."
12814
- msgstr ""
12815
- "Încărcați Squirrly SEO CSS pentru Twitter și articolul inserat din Squirrly "
12816
- "Blogging Assistant."
12817
-
12818
- #: view/SeoSettings/Advanced.php:57
12819
- msgid "Minify Squirrly SEO Metas"
12820
- msgstr "Minify Squirrly SEO Metas"
12821
-
12822
- #: view/SeoSettings/Advanced.php:60
12823
- msgid "Minify the metas in source code to optimize the page loading."
12824
- msgstr ""
12825
- "Minificați META-urile din codul sursă pentru a optimiza încărcarea paginii."
12826
-
12827
- #: view/SeoSettings/Advanced.php:61
12828
- msgid "Remove comments and newlines from Squirrly SEO Metas."
12829
- msgstr "Îndepărtați comentariile și liniile noi din Squirrly SEO Metas."
12830
-
12831
- #: view/SeoSettings/Advanced.php:72
12832
- msgid "Squirrly SEO Late Buffer"
12833
- msgstr "Squirrly SEO Buffer târziu"
12834
-
12835
- #: view/SeoSettings/Advanced.php:75
12836
- msgid "Wait all plugins to load before loading Squirrly SEO frontend buffer."
12837
- msgstr ""
12838
- "Așteptați ca toate plugin-urile să se încarce înainte de a încărca bufferul "
12839
- "frontend Squirrly SEO."
12840
-
12841
- #: view/SeoSettings/Advanced.php:76
12842
- msgid "For compatibility with some Cache and CDN plugins."
12843
- msgstr "Pentru compatibilitate cu unele plugin-uri Cache și CDN."
12844
-
12845
- #: view/SeoSettings/Advanced.php:88
12846
- msgid "Delete Squirrly SEO Table on Uninstall"
12847
- msgstr "Ștergeți Squirrly SEO Table la dezinstalare"
12848
-
12849
- #: view/SeoSettings/Advanced.php:91
12850
- msgid "Delete Squirrly SEO table and options on uninstall."
12851
- msgstr "Ștergeți tabelul Squirrly SEO și opțiunile la dezinstalare."
12852
-
12853
- #: view/SeoSettings/Automation.php:27
12854
- msgid "SEO Automation - Patterns"
12855
- msgstr "Automatizarea SEO - Modele"
12856
-
12857
- #: view/SeoSettings/Automation.php:33
12858
- msgid ""
12859
- "Control how post types are displayed on your site, within search engine "
12860
- "results, and social media feeds."
12861
- msgstr ""
12862
- "Controlați modul în care tipurile de postări sunt afișate pe site-ul dvs., "
12863
- "în rezultatele motoarelor de căutare și în fluxurile de socializare."
12864
-
12865
- #: view/SeoSettings/Automation.php:39 view/SeoSettings/Automation.php:352
12866
- msgid "Activate Patterns"
12867
- msgstr "Activați modelele"
12868
-
12869
- #: view/SeoSettings/Automation.php:96
12870
- msgid "Add Post Type for SEO Automation"
12871
- msgstr "Adăugați tipul de post pentru automatizarea SEO"
12872
-
12873
- #: view/SeoSettings/Automation.php:103 view/SeoSettings/Automation.php:115
12874
- msgid "Add Post Type"
12875
- msgstr "Adăugați tipul de post"
12876
-
12877
- #: view/SeoSettings/Automation.php:104
12878
- msgid "Add new post types in the list and customize the automation for it."
12879
- msgstr ""
12880
- "Adăugați noi tipuri de postări în listă și personalizați automatizarea "
12881
- "pentru acestea."
12882
-
12883
- #: view/SeoSettings/Automation.php:124
12884
- msgid "Customize each Post Type"
12885
- msgstr "Personalizați fiecare tip de postare"
12886
-
12887
- #: view/SeoSettings/Automation.php:170
12888
- msgid "Tips: Length 10-75 chars"
12889
- msgstr "Atentie: Lungimea 10-75 caractere"
12890
-
12891
- #: view/SeoSettings/Automation.php:180
12892
- msgid "Tips: Length 70-320 chars"
12893
- msgstr "Atentie: Lungimea 70-320 caractere"
12894
-
12895
- #: view/SeoSettings/Automation.php:189
12896
- msgid "Separator"
12897
- msgstr "Separator"
12898
-
12899
- #: view/SeoSettings/Automation.php:191
12900
- msgid ""
12901
- "Use separator to help user read the most relevant part of your title and "
12902
- "increase Conversion Rate"
12903
- msgstr ""
12904
- "Folosiți separatorul pentru a ajuta utilizatorul să citească partea cea mai "
12905
- "relevantă a titlului dvs. și pentru a crește rata de conversie"
12906
-
12907
- #: view/SeoSettings/Automation.php:230
12908
- msgid "Let Google Index it"
12909
- msgstr "Lăsați Google să o indexeze"
12910
-
12911
- #: view/SeoSettings/Automation.php:233
12912
- msgid ""
12913
- "If you switch off this option, Squirrly will add noindex meta for this post "
12914
- "type."
12915
- msgstr ""
12916
- "Dacă dezactivați această opțiune, Squirrly va adăuga meta noindex pentru "
12917
- "acest tip de post."
12918
-
12919
- #: view/SeoSettings/Automation.php:259
12920
- msgid "Send Authority to it"
12921
- msgstr "Trimiteți autoritatea către acesta"
12922
-
12923
- #: view/SeoSettings/Automation.php:262
12924
- msgid ""
12925
- "If you sq-switch off this option, Squirrly will add nofollow meta for this "
12926
- "post type."
12927
- msgstr ""
12928
- "Dacă dezactivați această opțiune, Squirrly va adăuga meta nofollow pentru "
12929
- "acest tip de post."
12930
-
12931
- #: view/SeoSettings/Automation.php:280
12932
- msgid "Include In Sitema