SEO SQUIRRLY™ - Version 11.1.01

Version Description

  • 04/04/2021 = Update - Added the option to reactivate the ignored success messages Update - Make the Local SEO feature more visible while active Update - Add the KML download option in GEO Settings Update - Add more infos about the Sitemap XML for each post type Update - Knowledge base based on each section Fixed - Corrected the KML file for Local SEO Fixed - Show all keywords link in Briefcase if no keyword is found on search
Download this release

Release Info

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

Code changes from version 11.1.00 to 11.1.01

classes/ActionController.php CHANGED
@@ -9,9 +9,6 @@ class SQ_Classes_ActionController extends SQ_Classes_FrontController {
9
  /** @var array with all form and ajax actions */
10
  var $actions = array();
11
 
12
- /** @var array from core config */
13
- private static $config;
14
-
15
  /**
16
  * The hookAjax is loaded as custom hook in hookController class
17
  *
@@ -52,61 +49,328 @@ class SQ_Classes_ActionController extends SQ_Classes_FrontController {
52
  }
53
  }
54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  /**
56
  * Get all actions from config.json in core directory and add them in the WP
57
  *
58
  */
59
  public function getActions() {
60
 
61
- $wp_filesystem = SQ_Classes_Helpers_Tools::initFilesystem();
 
 
62
 
63
  $this->actions = array();
64
  $cur_action = SQ_Classes_Helpers_Tools::getValue('action', false);
65
  $http_referer = SQ_Classes_Helpers_Tools::getValue('_wp_http_referer', false);
66
  $sq_nonce = SQ_Classes_Helpers_Tools::getValue('sq_nonce', false);
67
 
68
- if (!function_exists('is_user_logged_in')) {
69
- return;
70
- }
71
-
72
  //Let only the logged users to access the actions
73
- if ($cur_action <> '' && $sq_nonce <> '' && is_admin()) {
74
- /* if config allready in cache */
75
- if (!isset(self::$config)) {
76
- $config_file = _SQ_ROOT_DIR_ . 'config.json';
77
- if (!$wp_filesystem->exists($config_file)) {
78
- return;
79
- }
80
 
81
- /* load configuration blocks data from core config files */
82
- self::$config = json_decode($wp_filesystem->get_contents($config_file), 1);
83
- }
84
 
85
- if (is_array(self::$config))
86
- foreach (self::$config['blocks']['block'] as $block) {
87
  if (isset($block['active']) && $block['active'] == 1) {
88
  /* if there is a single action */
89
  if (isset($block['actions']['action']))
90
- if (isset($block['admin']) && (($block['admin'] == 1 && is_user_logged_in()) || $block['admin'] == 0)) {
 
 
 
 
 
 
91
  /* if there are more actions for the current block */
92
- if (!is_array($block['actions']['action'])) {
93
- /* add the action in the actions array */
94
- if ($block['actions']['action'] == $cur_action) {
95
  $this->actions[] = array('class' => $block['name']);
96
  }
97
- } else {
98
- /* if there are more actions for the current block */
99
- foreach ($block['actions']['action'] as $action) {
100
- /* add the actions in the actions array */
101
- if ($action == $cur_action) {
102
- $this->actions[] = array('class' => $block['name']);
103
- }
104
- }
105
  }
106
  }
107
-
108
  }
109
  }
 
110
 
111
  //If there is an action found in the config.js file
112
  if (!empty($this->actions)) {
9
  /** @var array with all form and ajax actions */
10
  var $actions = array();
11
 
 
 
 
12
  /**
13
  * The hookAjax is loaded as custom hook in hookController class
14
  *
49
  }
50
  }
51
 
52
+ public function getActionsList(){
53
+ return array(
54
+ array(
55
+ 'name' => 'SQ_Core_Blocklogin',
56
+ 'description' => 'Connection Block',
57
+ 'actions' => array(
58
+ 'action' => array(
59
+ 'sq_login',
60
+ 'sq_register',
61
+ ),
62
+ ),
63
+ 'active' => '1',
64
+ ),
65
+ array(
66
+ 'name' => 'SQ_Core_BlockConnect',
67
+ 'description' => 'Connection Block to API',
68
+ 'actions' => array(
69
+ 'action' => array(
70
+ 'sq_cloud_connect',
71
+ 'sq_cloud_disconnect',
72
+ ),
73
+ ),
74
+ 'active' => '1',
75
+ ),
76
+ array(
77
+ 'name' => 'SQ_Controllers_Account',
78
+ 'description' => 'Account Class',
79
+ 'actions' => array(
80
+ 'action' => array(
81
+ 'sq_ajax_account_getaccount',
82
+ ),
83
+ ),
84
+ 'active' => '1',
85
+ ),
86
+ array(
87
+ 'name' => 'SQ_Controllers_FocusPages',
88
+ 'description' => 'Focus Pages Controller',
89
+ 'actions' => array(
90
+ 'action' => array(
91
+ 'sq_focuspages_getpage',
92
+ 'sq_focuspages_addnew',
93
+ 'sq_focuspages_update',
94
+ 'sq_focuspages_delete',
95
+ 'sq_focuspages_inspecturl',
96
+ ),
97
+ ),
98
+ 'active' => '1',
99
+ ),
100
+ array(
101
+ 'name' => 'SQ_Controllers_PostsList',
102
+ 'description' => 'Posts List Page',
103
+ 'actions' => array(
104
+ 'action' => array(
105
+ 'inline-save',
106
+ 'sq_ajax_postslist',
107
+ ),
108
+ ),
109
+ 'active' => '1',
110
+ ),
111
+ array(
112
+ 'name' => 'SQ_Controllers_Post',
113
+ 'description' => 'Post Page',
114
+ 'actions' => array(
115
+ 'action' => array(
116
+ 'sq_create_demo',
117
+ 'sq_ajax_save_ogimage',
118
+ 'sq_ajax_get_post',
119
+ 'sq_ajax_save_post',
120
+ 'sq_ajax_type_click',
121
+ 'sq_ajax_search_blog',
122
+ ),
123
+ ),
124
+ 'active' => '1',
125
+ ),
126
+ array(
127
+ 'name' => 'SQ_Controllers_Snippet',
128
+ 'description' => 'Snippet Page',
129
+ 'actions' => array(
130
+ 'action' => array(
131
+ 'sq_saveseo',
132
+ 'sq_getsnippet',
133
+ 'sq_previewsnippet',
134
+ ),
135
+ ),
136
+ 'active' => '1',
137
+ ),
138
+ array(
139
+ 'name' => 'SQ_Controllers_Patterns',
140
+ 'description' => 'Patterns Class',
141
+ 'actions' => array(
142
+ 'action' => array(
143
+ 'sq_getpatterns',
144
+ ),
145
+ ),
146
+ 'active' => '1',
147
+ ),
148
+ array(
149
+ 'name' => 'SQ_Controllers_BulkSeo',
150
+ 'actions' => array(
151
+ 'action' => array(
152
+ 'sq_ajax_assistant_bulkseo',
153
+ ),
154
+ ),
155
+ 'active' => '1',
156
+ ),
157
+ array(
158
+ 'name' => 'SQ_Controllers_SeoSettings',
159
+ 'actions' => array(
160
+ 'action' => array(
161
+ 'sq_seosettings_automation',
162
+ 'sq_seosettings_bulkseo',
163
+ 'sq_seosettings_jsonld',
164
+ 'sq_seosettings_metas',
165
+ 'sq_seosettings_links',
166
+ 'sq_seosettings_social',
167
+ 'sq_seosettings_tracking',
168
+ 'sq_seosettings_webmaster',
169
+ 'sq_seosettings_sitemap',
170
+ 'sq_seosettings_robots',
171
+ 'sq_seosettings_favicon',
172
+ 'sq_seosettings_backupsettings',
173
+ 'sq_seosettings_backupseo',
174
+ 'sq_seosettings_restoresettings',
175
+ 'sq_seosettings_restoreseo',
176
+ 'sq_seosettings_importsettings',
177
+ 'sq_seosettings_importseo',
178
+ 'sq_seosettings_importall',
179
+ 'sq_seosettings_ga_revoke',
180
+ 'sq_seosettings_gsc_revoke',
181
+ 'sq_seosettings_gsc_check',
182
+ 'sq_seosettings_ga_check',
183
+ 'sq_reinstall',
184
+ 'sq_rollback',
185
+ 'sq_alerts_close',
186
+ 'sq_ajax_seosettings_save',
187
+ 'sq_ajax_automation_addpostype',
188
+ 'sq_ajax_automation_deletepostype',
189
+ 'sq_ajax_sla_sticky',
190
+ 'sq_ajax_gsc_code',
191
+ 'sq_ajax_ga_code',
192
+ 'sq_ajax_connection_check',
193
+ 'sq_seosettings_advanced',
194
+ ),
195
+ ),
196
+ 'active' => '1',
197
+ ),
198
+ array(
199
+ 'name' => 'SQ_Controllers_Research',
200
+ 'actions' => array(
201
+ 'action' => array(
202
+ 'sq_briefcase_addlabel',
203
+ 'sq_briefcase_editlabel',
204
+ 'sq_briefcase_keywordlabel',
205
+ 'sq_briefcase_article',
206
+ 'sq_briefcase_doresearch',
207
+ 'sq_briefcase_addkeyword',
208
+ 'sq_briefcase_deletekeyword',
209
+ 'sq_briefcase_deletelabel',
210
+ 'sq_briefcase_deletefound',
211
+ 'sq_briefcase_savemain',
212
+ 'sq_briefcase_backup',
213
+ 'sq_briefcase_restore',
214
+ 'sq_ajax_briefcase_doserp',
215
+ 'sq_ajax_research_others',
216
+ 'sq_ajax_research_process',
217
+ 'sq_ajax_research_history',
218
+ 'sq_ajax_briefcase_bulk_delete',
219
+ 'sq_ajax_briefcase_bulk_label',
220
+ 'sq_ajax_briefcase_bulk_doserp',
221
+ 'sq_ajax_labels_bulk_delete',
222
+ ),
223
+ ),
224
+ 'active' => '1',
225
+ ),
226
+ array(
227
+ 'name' => 'SQ_Controllers_Audits',
228
+ 'actions' => array(
229
+ 'action' => array(
230
+ 'sq_audits_settings',
231
+ 'sq_auditpages_getaudit',
232
+ 'sq_audits_getpage',
233
+ 'sq_audits_addnew',
234
+ 'sq_audits_page_update',
235
+ 'sq_audits_update',
236
+ 'sq_audits_delete',
237
+ ),
238
+ ),
239
+ 'active' => '1',
240
+ ),
241
+ array(
242
+ 'name' => 'SQ_Controllers_Ranking',
243
+ 'actions' => array(
244
+ 'action' => array(
245
+ 'sq_ranking_settings',
246
+ 'sq_serp_refresh_post',
247
+ 'sq_serp_delete_keyword',
248
+ 'sq_ajax_rank_bulk_delete',
249
+ 'sq_ajax_rank_bulk_refresh',
250
+ ),
251
+ ),
252
+ 'active' => '1',
253
+ ),
254
+ array(
255
+ 'name' => 'SQ_Controllers_Assistant',
256
+ 'actions' => array(
257
+ 'action' => array(
258
+ 'sq_settings_assistant',
259
+ 'sq_ajax_assistant',
260
+ ),
261
+ ),
262
+ 'active' => '1',
263
+ ),
264
+ array(
265
+ 'name' => 'SQ_Controllers_CheckSeo',
266
+ 'actions' => array(
267
+ 'action' => array(
268
+ 'sq_checkseo',
269
+ 'sq_fixsettings',
270
+ 'sq_donetask',
271
+ 'sq_resetignored',
272
+ 'sq_moretasks',
273
+ 'sq_ajax_checkseo',
274
+ 'sq_ajax_getgoals',
275
+ ),
276
+ ),
277
+ 'active' => '1',
278
+ ),
279
+ array(
280
+ 'name' => 'SQ_Controllers_Onboarding',
281
+ 'actions' => array(
282
+ 'action' => array(
283
+ 'sq_onboarding_commitment',
284
+ 'sq_onboading_checksite',
285
+ 'sq_onboarding_settings',
286
+ ),
287
+ ),
288
+ 'active' => '1',
289
+ ),
290
+ array(
291
+ 'name' => 'SQ_Core_BlockJorney',
292
+ 'actions' => array(
293
+ 'action' => array(
294
+ 'sq_journey_close',
295
+ ),
296
+ ),
297
+ 'active' => '1',
298
+ ),
299
+ array(
300
+ 'name' => 'SQ_Core_BlockSupport',
301
+ 'actions' => array(
302
+ 'action' => array(
303
+ 'sq_feedback',
304
+ 'sq_uninstall_feedback',
305
+ ),
306
+ ),
307
+ 'active' => '1',
308
+ ),
309
+ array(
310
+ 'name' => 'SQ_Core_BlockSearch',
311
+ 'actions' => array(
312
+ 'action' => array(
313
+ 'sq_ajax_search',
314
+ ),
315
+ ),
316
+ 'active' => '1',
317
+ ),
318
+ array(
319
+ 'name' => 'SQ_Controllers_Dashboard',
320
+ 'actions' => array(
321
+ 'action' => array(
322
+ 'sq_ajaxcheckseo',
323
+ ),
324
+ ),
325
+ 'active' => '1',
326
+ ),
327
+ );
328
+ }
329
+
330
  /**
331
  * Get all actions from config.json in core directory and add them in the WP
332
  *
333
  */
334
  public function getActions() {
335
 
336
+ if (!is_admin()) {
337
+ return;
338
+ }
339
 
340
  $this->actions = array();
341
  $cur_action = SQ_Classes_Helpers_Tools::getValue('action', false);
342
  $http_referer = SQ_Classes_Helpers_Tools::getValue('_wp_http_referer', false);
343
  $sq_nonce = SQ_Classes_Helpers_Tools::getValue('sq_nonce', false);
344
 
 
 
 
 
345
  //Let only the logged users to access the actions
346
+ if ($cur_action <> '' && $sq_nonce <> '') {
 
 
 
 
 
 
347
 
348
+ //load the actions list for each class
349
+ $actions = $this->getActionsList();
 
350
 
351
+ if(!empty($actions)) {
352
+ foreach ($actions as $block) {
353
  if (isset($block['active']) && $block['active'] == 1) {
354
  /* if there is a single action */
355
  if (isset($block['actions']['action']))
356
+ /* if there are more actions for the current block */
357
+ if (!is_array($block['actions']['action'])) {
358
+ /* add the action in the actions array */
359
+ if ($block['actions']['action'] == $cur_action) {
360
+ $this->actions[] = array('class' => $block['name']);
361
+ }
362
+ } else {
363
  /* if there are more actions for the current block */
364
+ foreach ($block['actions']['action'] as $action) {
365
+ /* add the actions in the actions array */
366
+ if ($action == $cur_action) {
367
  $this->actions[] = array('class' => $block['name']);
368
  }
 
 
 
 
 
 
 
 
369
  }
370
  }
 
371
  }
372
  }
373
+ }
374
 
375
  //If there is an action found in the config.js file
376
  if (!empty($this->actions)) {
classes/RemoteController.php CHANGED
@@ -1337,7 +1337,7 @@ class SQ_Classes_RemoteController {
1337
  prevNonce: "' . wp_create_nonce('post_preview_' . $sq_postID) . '",
1338
  __keyword: "' . esc_html__('Keyword:', _SQ_PLUGIN_NAME_) . '",
1339
  __date: "' . esc_html__('date', _SQ_PLUGIN_NAME_) . '",
1340
- __noconnection: "' . esc_html__("To load Squirrly Live Assistant and optimize this page, click to connect to Squirrly Data Cloud.", _SQ_PLUGIN_NAME_) . '",
1341
  __saved: "' . esc_html__('Saved!', _SQ_PLUGIN_NAME_) . '",
1342
  __readit: "' . esc_html__('Read it!', _SQ_PLUGIN_NAME_) . '",
1343
  __insertit: "' . esc_html__('Insert it!', _SQ_PLUGIN_NAME_) . '",
@@ -1370,12 +1370,16 @@ class SQ_Classes_RemoteController {
1370
  __add_keyword_briefcase: "' . esc_html__('Add Keyword to Briefcase', _SQ_PLUGIN_NAME_) . '",
1371
  __usekeyword: "' . esc_html__('Select', _SQ_PLUGIN_NAME_) . '",
1372
  __new_post_title: "' . esc_html__('Auto Draft') . '",
1373
- __frontend_optimized: "' . esc_html__('You’ve already used the Live Assistant to optimize this post when creating it in your Page Builder. Please go back and resume your optimization work there.', _SQ_PLUGIN_NAME_) . '",
 
 
1374
  };
1375
  $.sq_params = {
1376
  max_length_title: ' . (int)$metas->title_maxlength . ',
1377
  max_length_description: ' . (int)$metas->description_maxlength . ',
1378
  };
 
 
1379
  })(jQuery);
1380
  </script>';
1381
 
@@ -1383,4 +1387,4 @@ class SQ_Classes_RemoteController {
1383
 
1384
  }
1385
 
1386
- }
1337
  prevNonce: "' . wp_create_nonce('post_preview_' . $sq_postID) . '",
1338
  __keyword: "' . esc_html__('Keyword:', _SQ_PLUGIN_NAME_) . '",
1339
  __date: "' . esc_html__('date', _SQ_PLUGIN_NAME_) . '",
1340
+ __noconnection: "' . esc_html__("To load the Live Assistant and optimize this page, click to connect to Squirrly Cloud.", _SQ_PLUGIN_NAME_) . '",
1341
  __saved: "' . esc_html__('Saved!', _SQ_PLUGIN_NAME_) . '",
1342
  __readit: "' . esc_html__('Read it!', _SQ_PLUGIN_NAME_) . '",
1343
  __insertit: "' . esc_html__('Insert it!', _SQ_PLUGIN_NAME_) . '",
1370
  __add_keyword_briefcase: "' . esc_html__('Add Keyword to Briefcase', _SQ_PLUGIN_NAME_) . '",
1371
  __usekeyword: "' . esc_html__('Select', _SQ_PLUGIN_NAME_) . '",
1372
  __new_post_title: "' . esc_html__('Auto Draft') . '",
1373
+ __enter_keyword: "' . esc_html__('Enter keyword above and press ENTER', _SQ_PLUGIN_NAME_) . '",
1374
+ __add_keyword: "' . esc_html__('Add Keywords from Briefcase', _SQ_PLUGIN_NAME_) . '",
1375
+ __frontend_optimized: "' . esc_html__('Live Assistant was used to optimize this page with the Page Builder. Please go back and resume your optimization work there.', _SQ_PLUGIN_NAME_) . '",
1376
  };
1377
  $.sq_params = {
1378
  max_length_title: ' . (int)$metas->title_maxlength . ',
1379
  max_length_description: ' . (int)$metas->description_maxlength . ',
1380
  };
1381
+
1382
+
1383
  })(jQuery);
1384
  </script>';
1385
 
1387
 
1388
  }
1389
 
1390
+ }
classes/helpers/DevKit.php CHANGED
@@ -20,14 +20,16 @@ class SQ_Classes_Helpers_DevKit {
20
  }
21
 
22
  //Hook DevKit options
23
- add_filter('admin_head', array($this, 'hookHead'));
24
- add_filter('sq_menu', array($this, 'manageMenu'));
25
- add_filter('sq_features', array($this, 'manageFeatures'));
26
- add_filter('sq_logo', array($this, 'getCustomLogo'));
27
- add_filter('sq_name', array($this, 'getCustomName'));
28
- add_filter('sq_menu_name', array($this, 'getCustomMenuName'));
29
- add_filter('sq_audit_success_task', array($this, 'getCustomAuditSuccessTask'));
30
- add_filter('sq_audit_fail_task', array($this, 'getCustomAuditFailTask'));
 
 
31
 
32
  }
33
 
@@ -36,12 +38,12 @@ class SQ_Classes_Helpers_DevKit {
36
  * @param $task
37
  * @return mixed
38
  */
39
- public function getCustomAuditSuccessTask($task){
40
 
41
- if(SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_success')) {
42
  if ($customTask = SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_success')) {
43
  foreach ($customTask as $key => $value) {
44
- if ($value <> ''|| $value === false) {
45
  $task->$key = stripslashes($value);
46
  }
47
  }
@@ -56,12 +58,12 @@ class SQ_Classes_Helpers_DevKit {
56
  * @param $task
57
  * @return mixed
58
  */
59
- public function getCustomAuditFailTask($task){
60
 
61
- if(SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_fail')) {
62
  if ($customTask = SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_fail')) {
63
  foreach ($customTask as $key => $value) {
64
- if ($value <> ''|| $value === false) {
65
  $task->$key = stripslashes($value);
66
  }
67
  }
@@ -77,12 +79,12 @@ class SQ_Classes_Helpers_DevKit {
77
  public function hookHead() {
78
  //Hide the ads
79
  if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_ads')) {
80
- echo '<style>.sq_offer {display: none !important;}</style>';
81
  }
82
 
83
  //Dev Kit images
84
  if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
85
- echo '<style>.toplevel_page_sq_dashboard .wp-menu-image img{max-width: 24px !important;}.sq_logo{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;background-size: 100%;}</style>';
86
  }
87
  }
88
 
@@ -129,7 +131,7 @@ class SQ_Classes_Helpers_DevKit {
129
  }
130
 
131
  //Change the features
132
- public function manageFeatures($features){
133
  if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_panel')) {
134
  unset($features[0]); //remove the Cloud App features
135
  }
@@ -190,8 +192,13 @@ class SQ_Classes_Helpers_DevKit {
190
  SQ_Classes_Helpers_Tools::saveOptions();
191
  unlink($package_file);
192
 
193
- wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
194
- exit();
 
 
 
 
 
195
  }
196
  }
197
 
20
  }
21
 
22
  //Hook DevKit options
23
+ if (SQ_Classes_Helpers_Tools::getOption('sq_api')) {
24
+ add_filter('admin_head', array($this, 'hookHead'));
25
+ add_filter('sq_menu', array($this, 'manageMenu'));
26
+ add_filter('sq_features', array($this, 'manageFeatures'));
27
+ add_filter('sq_logo', array($this, 'getCustomLogo'));
28
+ add_filter('sq_name', array($this, 'getCustomName'));
29
+ add_filter('sq_menu_name', array($this, 'getCustomMenuName'));
30
+ add_filter('sq_audit_success_task', array($this, 'getCustomAuditSuccessTask'));
31
+ add_filter('sq_audit_fail_task', array($this, 'getCustomAuditFailTask'));
32
+ }
33
 
34
  }
35
 
38
  * @param $task
39
  * @return mixed
40
  */
41
+ public function getCustomAuditSuccessTask($task) {
42
 
43
+ if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_success')) {
44
  if ($customTask = SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_success')) {
45
  foreach ($customTask as $key => $value) {
46
+ if ($value <> '' || $value === false) {
47
  $task->$key = stripslashes($value);
48
  }
49
  }
58
  * @param $task
59
  * @return mixed
60
  */
61
+ public function getCustomAuditFailTask($task) {
62
 
63
+ if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_fail')) {
64
  if ($customTask = SQ_Classes_Helpers_Tools::getOption('sq_devkit_audit_fail')) {
65
  foreach ($customTask as $key => $value) {
66
+ if ($value <> '' || $value === false) {
67
  $task->$key = stripslashes($value);
68
  }
69
  }
79
  public function hookHead() {
80
  //Hide the ads
81
  if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_ads')) {
82
+ echo '<style>.sq_offer{display: none !important;}</style>';
83
  }
84
 
85
  //Dev Kit images
86
  if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
87
+ echo '<style>.sq_logo{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;}#sq_blocksnippet .postbox-header h2:before,.toplevel_page_sq_dashboard .wp-menu-image:before{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;}.components-squirrly-icon img{content:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;}.menu-top.toplevel_page_sq_dashboard .wp-menu-image:before {content: " ";width: 24px !important;height: 24px !important;display: inline-block;vertical-align: middle !important;line-height: inherit;background-repeat: no-repeat;background-position: center;background-size: 100%;}.toplevel_page_sq_dashboard .wp-menu-image img{display: none !important;}</style>';
88
  }
89
  }
90
 
131
  }
132
 
133
  //Change the features
134
+ public function manageFeatures($features) {
135
  if (!SQ_Classes_Helpers_Tools::getMenuVisible('show_panel')) {
136
  unset($features[0]); //remove the Cloud App features
137
  }
192
  SQ_Classes_Helpers_Tools::saveOptions();
193
  unlink($package_file);
194
 
195
+ if (SQ_Classes_Helpers_Tools::getMenuVisible('show_tutorial')) {
196
+ wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_onboarding'));
197
+ die();
198
+ } else {
199
+ wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
200
+ die();
201
+ }
202
  }
203
  }
204
 
classes/helpers/Tools.php CHANGED
@@ -47,10 +47,6 @@ class SQ_Classes_Helpers_Tools {
47
 
48
  }
49
 
50
- public static function getUsedMemory() {
51
- return number_format(memory_get_usage() / 1024 / 1024, 0);
52
- }
53
-
54
  public static function isAjax() {
55
  return (defined('DOING_AJAX') && DOING_AJAX);
56
  }
@@ -156,7 +152,7 @@ class SQ_Classes_Helpers_Tools {
156
  'sq_sla_type' => 'auto',
157
  'sq_sla_exclude_post_types' => array(),
158
  'sq_keyword_help' => 1,
159
- 'sq_local_images' => 1,
160
  'sq_img_licence' => 1,
161
  'sq_sla_social_fetch' => 1,
162
 
@@ -168,6 +164,8 @@ class SQ_Classes_Helpers_Tools {
168
  'sq_jsonld_breadcrumbs' => 1,
169
  'sq_jsonld_woocommerce' => 1,
170
  'sq_jsonld_clearcode' => 0,
 
 
171
  'sq_jsonld_product_defaults' => 1,
172
  'sq_jsonld_local' => array(
173
  'priceRange' => '',
@@ -236,6 +234,7 @@ class SQ_Classes_Helpers_Tools {
236
  '@type' => 'PostalAddress',
237
  'streetAddress' => '',
238
  'addressLocality' => '',
 
239
  'postalCode' => '',
240
  'addressCountry' => '',
241
  ),
@@ -269,7 +268,7 @@ class SQ_Classes_Helpers_Tools {
269
  'images' => 1,
270
  'videos' => 0,
271
  ),
272
- 'sq_sitemap_perpage' => 200,
273
  'sq_sitemap_frequency' => 'weekly',
274
  'sq_sitemap_combinelangs' => 0,
275
  'sq_sitemap' => array(
@@ -303,6 +302,7 @@ class SQ_Classes_Helpers_Tools {
303
  'sq_use' => 1,
304
  'sq_auto_metas' => 1,
305
  'sq_auto_links' => 0,
 
306
  'sq_auto_title' => 1,
307
  'sq_auto_description' => 1,
308
  'sq_auto_keywords' => 1,
@@ -313,10 +313,11 @@ class SQ_Classes_Helpers_Tools {
313
  'sq_auto_noindex' => 1,
314
  'sq_use_frontend' => 1,
315
  'sq_attachment_redirect' => 0,
316
- 'sq_permalink_redirect' => 1,
 
317
  'sq_external_nofollow' => 1,
318
  'sq_external_exception' => array(),
319
- 'sq_external_blank' => 1,
320
  'sq_metas' => array(
321
  'title_maxlength' => 75,
322
  'description_maxlength' => 320,
@@ -366,6 +367,8 @@ class SQ_Classes_Helpers_Tools {
366
  'sq_auto_facebook' => 1,
367
  'sq_auto_twitter' => 1,
368
  'sq_og_locale' => 'en_US',
 
 
369
 
370
  'socials' => array(
371
  'fb_admins' => array(),
@@ -1189,13 +1192,13 @@ class SQ_Classes_Helpers_Tools {
1189
  public static function isPluginInstalled($name) {
1190
  if (empty(self::$allplugins)) {
1191
  self::$allplugins = (array)get_option('active_plugins', array());
1192
- }
1193
 
1194
- if (!empty(self::$allplugins)) {
1195
  if (is_multisite()) {
1196
  self::$allplugins = array_merge(array_values(self::$allplugins), array_keys(get_site_option('active_sitewide_plugins')));
1197
  }
 
1198
 
 
1199
  return in_array($name, self::$allplugins, true);
1200
  }
1201
 
@@ -1207,7 +1210,7 @@ class SQ_Classes_Helpers_Tools {
1207
  * @return bool
1208
  */
1209
  public static function isFrontAdmin() {
1210
- return (!is_admin() && is_user_logged_in());
1211
  }
1212
 
1213
  /**
@@ -1223,6 +1226,11 @@ class SQ_Classes_Helpers_Tools {
1223
  * @return bool
1224
  */
1225
  public static function isEcommerce() {
 
 
 
 
 
1226
  $products = array('product', 'wpsc-product');
1227
  $post_types = get_post_types(array('public' => true));
1228
 
@@ -1263,6 +1271,32 @@ class SQ_Classes_Helpers_Tools {
1263
  return false;
1264
  }
1265
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1266
  /**
1267
  * Get the admin url for the specific age
1268
  *
@@ -1306,43 +1340,8 @@ class SQ_Classes_Helpers_Tools {
1306
  global $wp_filesystem;
1307
 
1308
  if (!$wp_filesystem || empty($wp_filesystem)) {
1309
- $credentials = array();
1310
-
1311
- if (!defined('FS_METHOD')) {
1312
- define('FS_METHOD', 'direct');
1313
- }
1314
-
1315
- $method = defined('FS_METHOD') ? FS_METHOD : false;
1316
-
1317
- if ('ftpext' === $method) {
1318
- // If defined, set it to that, Else, set to NULL.
1319
- $credentials['hostname'] = defined('FTP_HOST') ? preg_replace('|\w+://|', '', FTP_HOST) : null;
1320
- $credentials['username'] = defined('FTP_USER') ? FTP_USER : null;
1321
- $credentials['password'] = defined('FTP_PASS') ? FTP_PASS : null;
1322
-
1323
- // Set FTP port.
1324
- if (strpos($credentials['hostname'], ':') && null !== $credentials['hostname']) {
1325
- list($credentials['hostname'], $credentials['port']) = explode(':', $credentials['hostname'], 2);
1326
- if (!is_numeric($credentials['port'])) {
1327
- unset($credentials['port']);
1328
- }
1329
- } else {
1330
- unset($credentials['port']);
1331
- }
1332
-
1333
- // Set connection type.
1334
- if ((defined('FTP_SSL') && FTP_SSL) && 'ftpext' === $method) {
1335
- $credentials['connection_type'] = 'ftps';
1336
- } elseif (!array_filter($credentials)) {
1337
- $credentials['connection_type'] = null;
1338
- } else {
1339
- $credentials['connection_type'] = 'ftp';
1340
- }
1341
- }
1342
-
1343
-
1344
  require_once wp_normalize_path(ABSPATH . '/wp-admin/includes/file.php');
1345
- WP_Filesystem($credentials);
1346
  }
1347
 
1348
  return $wp_filesystem;
47
 
48
  }
49
 
 
 
 
 
50
  public static function isAjax() {
51
  return (defined('DOING_AJAX') && DOING_AJAX);
52
  }
152
  'sq_sla_type' => 'auto',
153
  'sq_sla_exclude_post_types' => array(),
154
  'sq_keyword_help' => 1,
155
+ 'sq_local_images' => 0,
156
  'sq_img_licence' => 1,
157
  'sq_sla_social_fetch' => 1,
158
 
164
  'sq_jsonld_breadcrumbs' => 1,
165
  'sq_jsonld_woocommerce' => 1,
166
  'sq_jsonld_clearcode' => 0,
167
+ 'sq_jsonld_product_rating' => 0,
168
+ 'sq_jsonld_product_custom' => 1,
169
  'sq_jsonld_product_defaults' => 1,
170
  'sq_jsonld_local' => array(
171
  'priceRange' => '',
234
  '@type' => 'PostalAddress',
235
  'streetAddress' => '',
236
  'addressLocality' => '',
237
+ 'addressRegion' => '',
238
  'postalCode' => '',
239
  'addressCountry' => '',
240
  ),
268
  'images' => 1,
269
  'videos' => 0,
270
  ),
271
+ 'sq_sitemap_perpage' => 500,
272
  'sq_sitemap_frequency' => 'weekly',
273
  'sq_sitemap_combinelangs' => 0,
274
  'sq_sitemap' => array(
302
  'sq_use' => 1,
303
  'sq_auto_metas' => 1,
304
  'sq_auto_links' => 0,
305
+ 'sq_auto_redirects' => 1,
306
  'sq_auto_title' => 1,
307
  'sq_auto_description' => 1,
308
  'sq_auto_keywords' => 1,
313
  'sq_auto_noindex' => 1,
314
  'sq_use_frontend' => 1,
315
  'sq_attachment_redirect' => 0,
316
+ 'profile_noindex_empty' => 0,
317
+ '404_url_redirect' => home_url(),
318
  'sq_external_nofollow' => 1,
319
  'sq_external_exception' => array(),
320
+ 'sq_external_blank' => 0,
321
  'sq_metas' => array(
322
  'title_maxlength' => 75,
323
  'description_maxlength' => 320,
367
  'sq_auto_facebook' => 1,
368
  'sq_auto_twitter' => 1,
369
  'sq_og_locale' => 'en_US',
370
+ 'sq_og_image' => '',
371
+ 'sq_tc_image' => '',
372
 
373
  'socials' => array(
374
  'fb_admins' => array(),
1192
  public static function isPluginInstalled($name) {
1193
  if (empty(self::$allplugins)) {
1194
  self::$allplugins = (array)get_option('active_plugins', array());
 
1195
 
 
1196
  if (is_multisite()) {
1197
  self::$allplugins = array_merge(array_values(self::$allplugins), array_keys(get_site_option('active_sitewide_plugins')));
1198
  }
1199
+ }
1200
 
1201
+ if (!empty(self::$allplugins)) {
1202
  return in_array($name, self::$allplugins, true);
1203
  }
1204
 
1210
  * @return bool
1211
  */
1212
  public static function isFrontAdmin() {
1213
+ return (!is_admin() && (function_exists('is_user_logged_in') && is_user_logged_in()));
1214
  }
1215
 
1216
  /**
1226
  * @return bool
1227
  */
1228
  public static function isEcommerce() {
1229
+
1230
+ if(self::isPluginInstalled('woocommerce/woocommerce.php')){
1231
+ return true;
1232
+ }
1233
+
1234
  $products = array('product', 'wpsc-product');
1235
  $post_types = get_post_types(array('public' => true));
1236
 
1271
  return false;
1272
  }
1273
 
1274
+ /**
1275
+ * Check the user capability for the roles attached
1276
+ *
1277
+ * @param $cap
1278
+ * @param mixed ...$args
1279
+ * @return bool
1280
+ */
1281
+ public static function userCan($cap, ...$args ) {
1282
+
1283
+ if (current_user_can($cap, ...$args)) {
1284
+ return true;
1285
+ }
1286
+
1287
+ $user = wp_get_current_user();
1288
+ if (count((array)$user->roles) > 1) {
1289
+ foreach ($user->roles as $role) {
1290
+ $role_object = get_role($role);
1291
+ if ($role_object->has_cap($cap)) {
1292
+ return true;
1293
+ }
1294
+ }
1295
+ }
1296
+
1297
+ return false;
1298
+ }
1299
+
1300
  /**
1301
  * Get the admin url for the specific age
1302
  *
1340
  global $wp_filesystem;
1341
 
1342
  if (!$wp_filesystem || empty($wp_filesystem)) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1343
  require_once wp_normalize_path(ABSPATH . '/wp-admin/includes/file.php');
1344
+ WP_Filesystem();
1345
  }
1346
 
1347
  return $wp_filesystem;
config/config.php CHANGED
@@ -45,21 +45,25 @@ define('SQ_ALL_PATTERNS', wp_json_encode(array(
45
  '{{searchphrase}}' => esc_html__("Displays the search phrase (if it appears in the post)", _SQ_PLUGIN_NAME_),
46
  '{{modified}}' => esc_html__("Replaces the publication date of a post/page with the modified one", _SQ_PLUGIN_NAME_),
47
  '{{name}}' => esc_html__("Displays the author's nicename", _SQ_PLUGIN_NAME_),
 
 
48
  '{{user_description}}' => esc_html__("Adds the author's biographical info to the post description", _SQ_PLUGIN_NAME_),
49
- '{{currentdate}}' => esc_html__("Displays the current date", _SQ_PLUGIN_NAME_),
50
  '{{date}}' => esc_html__("Displays the date of the post/page once it's published", _SQ_PLUGIN_NAME_),
 
51
  '{{currentday}}' => esc_html__("Adds the current day", _SQ_PLUGIN_NAME_),
52
  '{{currentmonth}}' => esc_html__("Adds the current month", _SQ_PLUGIN_NAME_),
53
  '{{currentyear}}' => esc_html__("Adds the current year", _SQ_PLUGIN_NAME_),
54
  '{{parent_title}}' => esc_html__("Adds the title of a page's parent page", _SQ_PLUGIN_NAME_),
55
  '{{product_name}}' => esc_html__("Adds the product name from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
56
  '{{product_price}}' => esc_html__("Adds the product price from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
 
57
  '{{product_sale}}' => esc_html__("Adds the product sale price from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
58
  '{{product_currency}}' => esc_html__("Adds the product price currency from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
 
59
  )));
60
 
61
- define('SQ_ALL_OG_TYPES', wp_json_encode(array('website','article','profile','book','music','video')));
62
- define('SQ_ALL_JSONLD_TYPES', wp_json_encode(array('website','article','newsarticle','FAQ page','question','recipe','review','movie','video','local store','local restaurant','profile')));
63
 
64
  define('SQ_ALL_SEP', wp_json_encode(array(
65
  'sc-dash' => '-',
45
  '{{searchphrase}}' => esc_html__("Displays the search phrase (if it appears in the post)", _SQ_PLUGIN_NAME_),
46
  '{{modified}}' => esc_html__("Replaces the publication date of a post/page with the modified one", _SQ_PLUGIN_NAME_),
47
  '{{name}}' => esc_html__("Displays the author's nicename", _SQ_PLUGIN_NAME_),
48
+ '{{single}}' => esc_html__("Displays the post type singular label", _SQ_PLUGIN_NAME_),
49
+ '{{plural}}' => esc_html__("Displays the post type plural label", _SQ_PLUGIN_NAME_),
50
  '{{user_description}}' => esc_html__("Adds the author's biographical info to the post description", _SQ_PLUGIN_NAME_),
 
51
  '{{date}}' => esc_html__("Displays the date of the post/page once it's published", _SQ_PLUGIN_NAME_),
52
+ '{{currentdate}}' => esc_html__("Displays the current date", _SQ_PLUGIN_NAME_),
53
  '{{currentday}}' => esc_html__("Adds the current day", _SQ_PLUGIN_NAME_),
54
  '{{currentmonth}}' => esc_html__("Adds the current month", _SQ_PLUGIN_NAME_),
55
  '{{currentyear}}' => esc_html__("Adds the current year", _SQ_PLUGIN_NAME_),
56
  '{{parent_title}}' => esc_html__("Adds the title of a page's parent page", _SQ_PLUGIN_NAME_),
57
  '{{product_name}}' => esc_html__("Adds the product name from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
58
  '{{product_price}}' => esc_html__("Adds the product price from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
59
+ '{{product_price_with_tax}}' => esc_html__("Adds the product price with Tax from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
60
  '{{product_sale}}' => esc_html__("Adds the product sale price from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
61
  '{{product_currency}}' => esc_html__("Adds the product price currency from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
62
+ '{{product_brand}}' => esc_html__("Adds the product brand from Woocommerce for the current product", _SQ_PLUGIN_NAME_),
63
  )));
64
 
65
+ define('SQ_ALL_OG_TYPES', wp_json_encode(array('website', 'article', 'profile', 'book', 'music', 'video')));
66
+ define('SQ_ALL_JSONLD_TYPES', wp_json_encode(array('website', 'article', 'newsarticle', 'FAQ page', 'question', 'recipe', 'review', 'movie', 'video', 'local store', 'local restaurant', 'profile')));
67
 
68
  define('SQ_ALL_SEP', wp_json_encode(array(
69
  'sc-dash' => '-',
config/paths.php CHANGED
@@ -8,11 +8,11 @@ define('_SQ_MENU_NAME_', 'Squirrly SEO');
8
  define('_SQ_NAMESPACE_', 'SQ');
9
  define('_SQ_PLUGIN_NAME_', 'squirrly-seo'); //THIS LINE WILL BE CHANGED WITH THE USER SETTINGS
10
 
11
- defined('SQ_SSL') || define('SQ_SSL', (((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") || (defined('FORCE_SSL_ADMIN') && FORCE_SSL_ADMIN) || (function_exists('is_ssl') && is_ssl())) ? 'https:' : 'http:')); //CHECK SSL
12
  defined('SQ_CHECK_SSL') || define('SQ_CHECK_SSL', SQ_SSL);
13
  defined('SQ_URI') || define('SQ_URI', 'wp530');
14
  defined('_SQ_DASH_URL_') || define('_SQ_DASH_URL_', 'https://cloud.squirrly.co/');
15
- defined('_SQ_APIV2_URL_') || define('_SQ_APIV2_URL_', SQ_SSL . '//api.squirrly.co/v2/');
16
  define('_SQ_SITE_HOST_', parse_url(home_url(), PHP_URL_HOST));
17
 
18
  define('_SQ_SUPPORT_EMAIL_', 'support@squirrly.co');
8
  define('_SQ_NAMESPACE_', 'SQ');
9
  define('_SQ_PLUGIN_NAME_', 'squirrly-seo'); //THIS LINE WILL BE CHANGED WITH THE USER SETTINGS
10
 
11
+ defined('SQ_SSL') || define('SQ_SSL', (((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") || (defined('FORCE_SSL_ADMIN') && FORCE_SSL_ADMIN) || (function_exists('is_ssl') && is_ssl())) ? true : false)); //CHECK SSL
12
  defined('SQ_CHECK_SSL') || define('SQ_CHECK_SSL', SQ_SSL);
13
  defined('SQ_URI') || define('SQ_URI', 'wp530');
14
  defined('_SQ_DASH_URL_') || define('_SQ_DASH_URL_', 'https://cloud.squirrly.co/');
15
+ defined('_SQ_APIV2_URL_') || define('_SQ_APIV2_URL_', (SQ_SSL ? 'https:' : 'http:') . '//api.squirrly.co/v2/');
16
  define('_SQ_SITE_HOST_', parse_url(home_url(), PHP_URL_HOST));
17
 
18
  define('_SQ_SUPPORT_EMAIL_', 'support@squirrly.co');
controllers/Assistant.php CHANGED
@@ -97,7 +97,7 @@ class SQ_Controllers_Assistant extends SQ_Classes_FrontController {
97
 
98
  ///////////////////////////////////////////LIVE ASSISTANT SETTINGS
99
  case 'sq_settings_assistant':
100
- if (!current_user_can('sq_manage_settings')) {
101
  return;
102
  }
103
 
@@ -112,7 +112,7 @@ class SQ_Controllers_Assistant extends SQ_Classes_FrontController {
112
  break;
113
 
114
  case 'sq_ajax_assistant':
115
- if (!current_user_can('sq_manage_snippets')) {
116
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
117
  SQ_Classes_Helpers_Tools::setHeader('json');
118
  echo wp_json_encode($response);
97
 
98
  ///////////////////////////////////////////LIVE ASSISTANT SETTINGS
99
  case 'sq_settings_assistant':
100
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
101
  return;
102
  }
103
 
112
  break;
113
 
114
  case 'sq_ajax_assistant':
115
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippets')) {
116
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
117
  SQ_Classes_Helpers_Tools::setHeader('json');
118
  echo wp_json_encode($response);
controllers/Audits.php CHANGED
@@ -262,7 +262,7 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController {
262
  }
263
  break;
264
  case 'sq_audits_addnew':
265
- if (!current_user_can('sq_manage_focuspages')) {
266
  return;
267
  }
268
 
@@ -296,7 +296,7 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController {
296
  }
297
  break;
298
  case 'sq_audits_page_update':
299
- if (!current_user_can('sq_manage_focuspages')) {
300
  return;
301
  }
302
 
@@ -320,7 +320,7 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController {
320
  }
321
  break;
322
  case 'sq_audits_update':
323
- if (!current_user_can('sq_manage_focuspages')) {
324
  return;
325
  }
326
 
@@ -336,7 +336,7 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController {
336
  }
337
  break;
338
  case 'sq_audits_delete':
339
- if (!current_user_can('sq_manage_focuspages')) {
340
  return;
341
  }
342
 
@@ -349,7 +349,7 @@ class SQ_Controllers_Audits extends SQ_Classes_FrontController {
349
 
350
  break;
351
  case 'sq_audits_settings':
352
- if (!current_user_can('sq_manage_settings')) {
353
  return;
354
  }
355
 
262
  }
263
  break;
264
  case 'sq_audits_addnew':
265
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_focuspages')) {
266
  return;
267
  }
268
 
296
  }
297
  break;
298
  case 'sq_audits_page_update':
299
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_focuspages')) {
300
  return;
301
  }
302
 
320
  }
321
  break;
322
  case 'sq_audits_update':
323
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_focuspages')) {
324
  return;
325
  }
326
 
336
  }
337
  break;
338
  case 'sq_audits_delete':
339
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_focuspages')) {
340
  return;
341
  }
342
 
349
 
350
  break;
351
  case 'sq_audits_settings':
352
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
353
  return;
354
  }
355
 
controllers/BulkSeo.php CHANGED
@@ -69,7 +69,7 @@ class SQ_Controllers_BulkSeo extends SQ_Classes_FrontController {
69
  SQ_Classes_Helpers_Tools::setHeader('json');
70
 
71
  $response = array();
72
- if (!current_user_can('sq_manage_snippet')) {
73
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
74
  echo wp_json_encode($response);
75
  exit();
69
  SQ_Classes_Helpers_Tools::setHeader('json');
70
 
71
  $response = array();
72
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
73
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
74
  echo wp_json_encode($response);
75
  exit();
controllers/CheckSeo.php CHANGED
@@ -236,7 +236,7 @@ class SQ_Controllers_CheckSeo extends SQ_Classes_FrontController {
236
  $row = array_merge(array('completed' => false, 'active' => true, 'done' => false, 'positive' => false), $row);
237
  $row['status'] = $row['active'] ? (($row['completed'] || $row['done']) ? 'completed' : '') : 'ignore';
238
 
239
- if ($tasks[$function]['positive'] && $row['status'] == 'completed') {
240
  $row = array_merge($tasks[$function], $row);
241
  } else {
242
  unset($report[$function]);
@@ -274,7 +274,7 @@ class SQ_Controllers_CheckSeo extends SQ_Classes_FrontController {
274
  public function action() {
275
  parent::action();
276
 
277
- if (!current_user_can('sq_manage_snippets')) {
278
  return;
279
  }
280
 
236
  $row = array_merge(array('completed' => false, 'active' => true, 'done' => false, 'positive' => false), $row);
237
  $row['status'] = $row['active'] ? (($row['completed'] || $row['done']) ? 'completed' : '') : 'ignore';
238
 
239
+ if ($tasks[$function]['positive'] && in_array($row['status'], array('completed', 'ignore'))) {
240
  $row = array_merge($tasks[$function], $row);
241
  } else {
242
  unset($report[$function]);
274
  public function action() {
275
  parent::action();
276
 
277
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippets')) {
278
  return;
279
  }
280
 
controllers/Dashboard.php CHANGED
@@ -23,7 +23,7 @@ class SQ_Controllers_Dashboard extends SQ_Classes_FrontController {
23
  public function action() {
24
  parent::action();
25
 
26
- if (!current_user_can('sq_manage_snippets')) {
27
  return;
28
  }
29
 
23
  public function action() {
24
  parent::action();
25
 
26
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippets')) {
27
  return;
28
  }
29
 
controllers/FocusPages.php CHANGED
@@ -323,7 +323,7 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
323
  echo wp_json_encode($json);
324
  exit();
325
  case 'sq_focuspages_addnew':
326
- if (!current_user_can('sq_manage_focuspages')) {
327
  return;
328
  }
329
 
@@ -366,7 +366,7 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
366
  }
367
  break;
368
  case 'sq_focuspages_update':
369
- if (!current_user_can('sq_manage_focuspages')) {
370
  return;
371
  }
372
 
@@ -405,7 +405,7 @@ class SQ_Controllers_FocusPages extends SQ_Classes_FrontController {
405
  }
406
  break;
407
  case 'sq_focuspages_delete':
408
- if (!current_user_can('sq_manage_focuspages')) {
409
  return;
410
  }
411
 
323
  echo wp_json_encode($json);
324
  exit();
325
  case 'sq_focuspages_addnew':
326
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_focuspages')) {
327
  return;
328
  }
329
 
366
  }
367
  break;
368
  case 'sq_focuspages_update':
369
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_focuspages')) {
370
  return;
371
  }
372
 
405
  }
406
  break;
407
  case 'sq_focuspages_delete':
408
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_focuspages')) {
409
  return;
410
  }
411
 
controllers/Frontend.php CHANGED
@@ -32,11 +32,6 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
32
  //Set the post so that Squirrly will know which one to process
33
  add_action('template_redirect', array($this->model, 'setPost'), 9);
34
 
35
- //Check the old permalink and redirect to the new permalink
36
- if (SQ_Classes_Helpers_Tools::getOption('sq_permalink_redirect')) {
37
- add_action('template_redirect', array($this->model, 'redirectPermalinks'), 10);
38
- }
39
-
40
  /* Check if sitemap is on and Load the Sitemap */
41
  if (SQ_Classes_Helpers_Tools::getOption('sq_auto_sitemap')) {
42
  add_filter('wp_sitemaps_enabled', '__return_false');
@@ -50,11 +45,6 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
50
  add_action('template_redirect', array($this->model, 'redirectAttachments'), 10);
51
  }
52
 
53
- /* Fix the Links in content */
54
- if (SQ_Classes_Helpers_Tools::getOption('sq_external_nofollow') || SQ_Classes_Helpers_Tools::getOption('sq_external_blank')) {
55
- add_action('the_content', array($this, 'fixNofollowLinks'), 11);
56
- }
57
-
58
  }
59
  }
60
 
@@ -67,7 +57,11 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
67
  remove_action('template_redirect', array($this, 'hookBuffer'), 1);
68
  }
69
 
70
- $this->model->startBuffer();
 
 
 
 
71
  }
72
 
73
  /**
@@ -114,95 +108,29 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
114
  * Hook the Header load
115
  */
116
  public function hookFronthead() {
117
- if (!is_admin() && (!SQ_Classes_Helpers_Tools::getOption('sq_load_css') || defined('SQ_NOCSS') && SQ_NOCSS)) {
118
- return;
119
- }
120
 
121
- if (!SQ_Classes_Helpers_Tools::isAjax()) {
122
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia(_SQ_ASSETS_URL_ . 'css/frontend' . (SQ_DEBUG ? '' : '.min') . '.css');
123
  }
124
- }
125
 
126
-
127
- /**
128
- * Change the image path to absolute when in feed
129
- * @param string $content
130
- *
131
- * @return string
132
- */
133
- public function fixNofollowLinks($content) {
134
-
135
- if (!is_feed() && !is_404()) {
136
- preg_match_all('/<a[^>]*href=[\'"]([^\'"]+)[\'"][^>]*>/i', $content, $out);
137
- if (empty($out) || empty($out[0])) {
138
- return $content;
139
  }
 
140
 
141
- $domain = parse_url(home_url(), PHP_URL_HOST);
142
-
143
- foreach ($out[0] as $index => $link) {
144
- $newlink = $link;
145
-
146
- //only for external links
147
- if (isset($out[1][$index])) {
148
- //If it's not a valid link
149
- if(!$linkdomain = parse_url($out[1][$index], PHP_URL_HOST)){
150
- continue;
151
- }
152
-
153
- //If it's not an external link
154
- if (strpos($linkdomain, $domain) !== false) {
155
- continue;
156
- }
157
-
158
- //If it's not an exception link
159
- $exceptions = SQ_Classes_Helpers_Tools::getOption('sq_external_exception');
160
- if(!empty($exceptions)){
161
- foreach ($exceptions as $exception){
162
- if (strpos($exception, $linkdomain) !== false) {
163
- continue 2;
164
- }
165
- }
166
- }
167
- }
168
-
169
- //If nofollow rel is set
170
- if (SQ_Classes_Helpers_Tools::getOption('sq_external_nofollow')) {
171
-
172
- if (strpos($newlink, 'rel=') === false) {
173
- $newlink = str_replace('<a', '<a rel="nofollow" ', $newlink);
174
- } elseif (strpos($newlink, 'nofollow') === false) {
175
- $newlink = preg_replace('/(rel=[\'"])([^\'"]+)([\'"])/i', '$1nofollow $2$3', $newlink);
176
- }
177
-
178
- }
179
-
180
- //if force external open
181
- if (SQ_Classes_Helpers_Tools::getOption('sq_external_blank')) {
182
-
183
- if (strpos($newlink, 'target=') === false) {
184
- $newlink = str_replace('<a', '<a target="_blank" ', $newlink);
185
- } elseif (strpos($link, '_blank') === false) {
186
- $newlink = preg_replace('/(target=[\'"])([^\'"]+)([\'"])/i', '$1_blank$3', $newlink);
187
- }
188
-
189
- }
190
-
191
- //Check the link and replace it
192
- if ($newlink <> $link) {
193
- $content = str_replace($link, $newlink, $content);
194
- }
195
  }
196
-
197
  }
198
- return $content;
199
  }
200
 
201
  /**
202
  * Hook the footer
203
  */
204
  public function hookFrontfooter() {
205
- echo (string)$this->model->getFooter();
206
  }
207
 
208
  /**
32
  //Set the post so that Squirrly will know which one to process
33
  add_action('template_redirect', array($this->model, 'setPost'), 9);
34
 
 
 
 
 
 
35
  /* Check if sitemap is on and Load the Sitemap */
36
  if (SQ_Classes_Helpers_Tools::getOption('sq_auto_sitemap')) {
37
  add_filter('wp_sitemaps_enabled', '__return_false');
45
  add_action('template_redirect', array($this->model, 'redirectAttachments'), 10);
46
  }
47
 
 
 
 
 
 
48
  }
49
  }
50
 
57
  remove_action('template_redirect', array($this, 'hookBuffer'), 1);
58
  }
59
 
60
+ //Check if there is an editor loading
61
+ //Don't load Squirrly METAs while in frontend editors
62
+ if(!SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->isBuilderEditor()) {
63
+ $this->model->startBuffer();
64
+ }
65
  }
66
 
67
  /**
108
  * Hook the Header load
109
  */
110
  public function hookFronthead() {
 
 
 
111
 
112
+ if (is_admin() || (defined('SQ_NOCSS') && SQ_NOCSS)) {
113
+ return;
114
  }
 
115
 
116
+ if (SQ_Classes_Helpers_Tools::isPluginInstalled('elementor/elementor.php')) {
117
+ if (SQ_Classes_Helpers_Tools::getValue('elementor-preview', false)) {
118
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('elementor');
 
 
 
 
 
 
 
 
 
 
119
  }
120
+ }
121
 
122
+ if(SQ_Classes_Helpers_Tools::getOption('sq_load_css')) {
123
+ if (!SQ_Classes_Helpers_Tools::isAjax()) {
124
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('frontend');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  }
 
126
  }
 
127
  }
128
 
129
  /**
130
  * Hook the footer
131
  */
132
  public function hookFrontfooter() {
133
+ echo $this->model->getFooter();
134
  }
135
 
136
  /**
controllers/Menu.php CHANGED
@@ -40,6 +40,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
40
  $sq_fullscreen = true;
41
  }
42
 
 
43
  add_action('admin_enqueue_scripts', array(SQ_Classes_ObjController::getClass('SQ_Models_Compatibility'), 'fixEnqueueErrors'), PHP_INT_MAX);
44
  add_action('admin_head', array($this, 'setViewport'), PHP_INT_MAX);
45
  }
@@ -62,7 +63,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
62
  public function hookInit() {
63
 
64
  /* add the plugin menu in admin */
65
- if (current_user_can('manage_options')) {
66
  try {
67
  //check if activated
68
  if (get_transient('sq_activate') == 1) {
@@ -112,7 +113,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
112
  public function hookTopmenuDashboard($wp_admin_bar) {
113
  global $sq_fullscreen;
114
 
115
- if (is_user_logged_in()) {
116
  if (isset($sq_fullscreen) && $sq_fullscreen) {
117
  $wp_admin_bar->add_node(array(
118
  'parent' => 'site-name',
@@ -137,13 +138,13 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
137
 
138
  if (is_admin()) {
139
 
140
- if (current_user_can('edit_posts')) {
141
  //Get count local SEO errors
142
  $errors = apply_filters('sq_seo_errors', 0);
143
 
144
  $wp_admin_bar->add_node(array(
145
  'id' => 'sq_toolbar',
146
- 'title' => '<span class="sq_logo" style="margin-right: 2px"></span>' . esc_html__("Squirrly SEO", _SQ_PLUGIN_NAME_) . (($errors) ? '<span class="sq_errorcount">' . $errors . '</span>' : ''),
147
  'href' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'),
148
  'parent' => false
149
  ));
@@ -166,7 +167,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
166
  }
167
 
168
  //make sure the user has the capabilities
169
- if (current_user_can($item['capability'])) {
170
  $wp_admin_bar->add_node(array(
171
  'id' => $menuid,
172
  'title' => $item['title'],
@@ -197,7 +198,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
197
  $post = get_post();
198
  if ('post' == $current_screen->base
199
  && ($post_type_object = get_post_type_object($post->post_type))
200
- && (current_user_can('edit_post', $post->ID) || current_user_can('sq_manage_snippets'))
201
  && ($post_type_object->public)) {
202
  } elseif ('edit' == $current_screen->base
203
  && ($post_type_object = get_post_type_object($current_screen->post_type))
@@ -212,22 +213,16 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
212
  }
213
 
214
  $this->model->addMeta(array('sq_blocksnippet',
215
- ucfirst(_SQ_NAME_) . ' ' . esc_html__("SEO Snippet", _SQ_PLUGIN_NAME_),
216
  array(SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet'), 'init'),
217
  null,
218
  'normal',
219
  'high'
220
  ));
221
 
222
- //Dev Kit images
223
- $style = '';
224
- if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
225
- $style = '<style>.sq_logo{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;background-size: 100%;}</style>';
226
- }
227
-
228
  $wp_admin_bar->add_node(array(
229
  'id' => 'sq_bar_menu',
230
- 'title' => $style . '<span class="sq_logo"></span> ' . esc_html__("Custom SEO", _SQ_PLUGIN_NAME_),
231
  'parent' => 'top-secondary',
232
  ));
233
 
@@ -315,12 +310,14 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
315
 
316
  //Update the external links in the menu
317
  global $submenu;
318
- foreach ($submenu['sq_dashboard'] as &$item) {
319
- if (isset($mainmenu[$item[2]]['href']) && $mainmenu[$item[2]]['href']) {
320
- if (parse_url($mainmenu[$item[2]]['href'], PHP_URL_HOST) !== parse_url(home_url(), PHP_URL_HOST)) {
321
- $item[0] .= '<i class="dashicons dashicons-external" style="font-size:12px;vertical-align:-2px;height:10px;"></i>';
 
 
 
322
  }
323
- $item[2] = $mainmenu[$item[2]]['href'];
324
  }
325
  }
326
  }
@@ -460,7 +457,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
460
  */
461
  public function getCloudMenu($url, $path) {
462
  if (function_exists('wp_get_current_user') && SQ_Classes_Helpers_Tools::getOption('sq_api')) {
463
- if (SQ_Classes_Helpers_Tools::getMenuVisible('show_panel') && current_user_can('sq_manage_settings')) {
464
  $url .= 'login/?token=' . SQ_Classes_Helpers_Tools::getOption('sq_api') . '&user_url=' . apply_filters('sq_homeurl', get_bloginfo('url')) . '&redirect_to=' . _SQ_DASH_URL_ . 'user/' . $path;
465
  }
466
  }
40
  $sq_fullscreen = true;
41
  }
42
 
43
+ //dequeue other css when on Squirrly Settings page
44
  add_action('admin_enqueue_scripts', array(SQ_Classes_ObjController::getClass('SQ_Models_Compatibility'), 'fixEnqueueErrors'), PHP_INT_MAX);
45
  add_action('admin_head', array($this, 'setViewport'), PHP_INT_MAX);
46
  }
63
  public function hookInit() {
64
 
65
  /* add the plugin menu in admin */
66
+ if (SQ_Classes_Helpers_Tools::userCan('manage_options')) {
67
  try {
68
  //check if activated
69
  if (get_transient('sq_activate') == 1) {
113
  public function hookTopmenuDashboard($wp_admin_bar) {
114
  global $sq_fullscreen;
115
 
116
+ if (function_exists('is_user_logged_in') && is_user_logged_in()) {
117
  if (isset($sq_fullscreen) && $sq_fullscreen) {
118
  $wp_admin_bar->add_node(array(
119
  'parent' => 'site-name',
138
 
139
  if (is_admin()) {
140
 
141
+ if (SQ_Classes_Helpers_Tools::userCan('edit_posts')) {
142
  //Get count local SEO errors
143
  $errors = apply_filters('sq_seo_errors', 0);
144
 
145
  $wp_admin_bar->add_node(array(
146
  'id' => 'sq_toolbar',
147
+ 'title' => '<span class="sq_logo" style="margin-right: 2px"></span>' . apply_filters('sq_menu_name', _SQ_MENU_NAME_) . (($errors) ? '<span class="sq_errorcount">' . $errors . '</span>' : ''),
148
  'href' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'),
149
  'parent' => false
150
  ));
167
  }
168
 
169
  //make sure the user has the capabilities
170
+ if (SQ_Classes_Helpers_Tools::userCan($item['capability'])) {
171
  $wp_admin_bar->add_node(array(
172
  'id' => $menuid,
173
  'title' => $item['title'],
198
  $post = get_post();
199
  if ('post' == $current_screen->base
200
  && ($post_type_object = get_post_type_object($post->post_type))
201
+ && (SQ_Classes_Helpers_Tools::userCan('edit_post', $post->ID) || SQ_Classes_Helpers_Tools::userCan('sq_manage_snippets'))
202
  && ($post_type_object->public)) {
203
  } elseif ('edit' == $current_screen->base
204
  && ($post_type_object = get_post_type_object($current_screen->post_type))
213
  }
214
 
215
  $this->model->addMeta(array('sq_blocksnippet',
216
+ esc_html__("SEO Snippet", _SQ_PLUGIN_NAME_),
217
  array(SQ_Classes_ObjController::getClass('SQ_Controllers_Snippet'), 'init'),
218
  null,
219
  'normal',
220
  'high'
221
  ));
222
 
 
 
 
 
 
 
223
  $wp_admin_bar->add_node(array(
224
  'id' => 'sq_bar_menu',
225
+ 'title' => '<span class="sq_logo"></span> ' . esc_html__("Custom SEO", _SQ_PLUGIN_NAME_),
226
  'parent' => 'top-secondary',
227
  ));
228
 
310
 
311
  //Update the external links in the menu
312
  global $submenu;
313
+ if(!empty($submenu['sq_dashboard'])) {
314
+ foreach ($submenu['sq_dashboard'] as &$item) {
315
+ if (isset($mainmenu[$item[2]]['href']) && $mainmenu[$item[2]]['href']) {
316
+ if (parse_url($mainmenu[$item[2]]['href'], PHP_URL_HOST) !== parse_url(home_url(), PHP_URL_HOST)) {
317
+ $item[0] .= '<i class="dashicons dashicons-external" style="font-size:12px;vertical-align:-2px;height:10px;"></i>';
318
+ }
319
+ $item[2] = $mainmenu[$item[2]]['href'];
320
  }
 
321
  }
322
  }
323
  }
457
  */
458
  public function getCloudMenu($url, $path) {
459
  if (function_exists('wp_get_current_user') && SQ_Classes_Helpers_Tools::getOption('sq_api')) {
460
+ if (SQ_Classes_Helpers_Tools::getMenuVisible('show_panel') && SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
461
  $url .= 'login/?token=' . SQ_Classes_Helpers_Tools::getOption('sq_api') . '&user_url=' . apply_filters('sq_homeurl', get_bloginfo('url')) . '&redirect_to=' . _SQ_DASH_URL_ . 'user/' . $path;
462
  }
463
  }
controllers/Onboarding.php CHANGED
@@ -72,6 +72,15 @@ class SQ_Controllers_Onboarding extends SQ_Classes_FrontController {
72
  SQ_Classes_Helpers_Tools::saveOptions('sq_seoexpert', ($sq_onboarding_data['seo_level'] == 'expert'));
73
  }
74
  if (isset($sq_onboarding_data['website_type'])) {
 
 
 
 
 
 
 
 
 
75
  SQ_Classes_Helpers_Tools::saveOptions('sq_jsonld_type', ($sq_onboarding_data['website_type'] == 'personal' ? 'Person' : 'Organization'));
76
  }
77
 
72
  SQ_Classes_Helpers_Tools::saveOptions('sq_seoexpert', ($sq_onboarding_data['seo_level'] == 'expert'));
73
  }
74
  if (isset($sq_onboarding_data['website_type'])) {
75
+ if ($sq_onboarding_data['website_type'] == 'local') {
76
+ SQ_Classes_Helpers_Tools::saveOptions('sq_auto_jsonld_local', 1);
77
+ }
78
+ if ($sq_onboarding_data['website_type'] == 'portofolio') {
79
+ SQ_Classes_Helpers_Tools::saveOptions('sq_attachment_redirect', 0);
80
+ }else{
81
+ SQ_Classes_Helpers_Tools::saveOptions('sq_attachment_redirect', 1);
82
+ SQ_Classes_Helpers_Tools::saveOptions('sq_auto_links', 1);
83
+ }
84
  SQ_Classes_Helpers_Tools::saveOptions('sq_jsonld_type', ($sq_onboarding_data['website_type'] == 'personal' ? 'Person' : 'Organization'));
85
  }
86
 
controllers/Overview.php CHANGED
@@ -9,14 +9,15 @@ class SQ_Controllers_Overview extends SQ_Classes_FrontController {
9
  public $checkin;
10
 
11
  public function init() {
12
- //Checkin to API V2
13
- $this->checkin = SQ_Classes_RemoteController::checkin();
14
 
15
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
16
  echo $this->getView('Errors/Connect');
17
  return;
18
  }
19
 
 
 
 
20
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
21
  if (is_rtl()) {
22
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('popper');
@@ -44,7 +45,7 @@ class SQ_Controllers_Overview extends SQ_Classes_FrontController {
44
  }
45
 
46
  public function getJourneyNotification() {
47
- if (!current_user_can('sq_manage_snippets')) {
48
  return;
49
  }
50
 
9
  public $checkin;
10
 
11
  public function init() {
 
 
12
 
13
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
14
  echo $this->getView('Errors/Connect');
15
  return;
16
  }
17
 
18
+ //Checkin to API V2
19
+ $this->checkin = SQ_Classes_RemoteController::checkin();
20
+
21
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
22
  if (is_rtl()) {
23
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('popper');
45
  }
46
 
47
  public function getJourneyNotification() {
48
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippets')) {
49
  return;
50
  }
51
 
controllers/Patterns.php CHANGED
@@ -67,11 +67,21 @@ class SQ_Controllers_Patterns extends SQ_Classes_FrontController {
67
  if (!empty($values)) {
68
  foreach ($values as $name => $value) {
69
  if ($name <> '' && !is_array($value) && $value <> '') {
 
 
 
 
 
70
  if (strpos($value, '%%') !== false) { //in case there are still patterns from Yoast
71
  $value = preg_replace('/%%([^\%]+)%%/s', '{{$1}}', $value);
72
  $object->$name = preg_replace('/%%([^\%]+)%%/s', '{{$1}}', $object->$name);
73
  }
74
 
 
 
 
 
 
75
  if(is_string($value) && $value <> '') {
76
  if (strpos($value, '{{') !== false && strpos($value, '}}') !== false) {
77
  $sq_with_patterns[$name] = $value;
@@ -89,6 +99,7 @@ class SQ_Controllers_Patterns extends SQ_Classes_FrontController {
89
  }
90
  }
91
  }
 
92
  }
93
  }
94
 
@@ -103,7 +114,7 @@ class SQ_Controllers_Patterns extends SQ_Classes_FrontController {
103
  public function action() {
104
  parent::action();
105
 
106
- if (!current_user_can('sq_manage_snippet')) {
107
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
108
  SQ_Classes_Helpers_Tools::setHeader('json');
109
  echo wp_json_encode($response);
@@ -139,12 +150,7 @@ class SQ_Controllers_Patterns extends SQ_Classes_FrontController {
139
  //return json with the results
140
  SQ_Classes_Helpers_Tools::setHeader('json');
141
 
142
- if (SQ_Classes_Helpers_Tools::getValue('sq_debug') !== 'on') {
143
- echo wp_json_encode(array('json' => wp_json_encode($all_patterns)));
144
- } else {
145
- SQ_Debug::dump($all_patterns, $patterns);
146
- }
147
-
148
  exit();
149
  }
150
  break;
67
  if (!empty($values)) {
68
  foreach ($values as $name => $value) {
69
  if ($name <> '' && !is_array($value) && $value <> '') {
70
+ // if (strpos($value, '#') !== false) { //in case there are still patterns from AIOS
71
+ // $value = preg_replace('/#([a-z_]+)/s', '{{$1}}', $value);
72
+ // $object->$name = preg_replace('/#([a-z_]+)/s', '{{$1}}', $object->$name);
73
+ // }
74
+
75
  if (strpos($value, '%%') !== false) { //in case there are still patterns from Yoast
76
  $value = preg_replace('/%%([^\%]+)%%/s', '{{$1}}', $value);
77
  $object->$name = preg_replace('/%%([^\%]+)%%/s', '{{$1}}', $object->$name);
78
  }
79
 
80
+ if (strpos($value, '%') !== false) { //in case there are still patterns from Rank Math
81
+ $value = preg_replace('/%([^\%]+)%/s', '{{$1}}', $value);
82
+ $object->$name = preg_replace('/%([^\%]+)%/s', '{{$1}}', $object->$name);
83
+ }
84
+
85
  if(is_string($value) && $value <> '') {
86
  if (strpos($value, '{{') !== false && strpos($value, '}}') !== false) {
87
  $sq_with_patterns[$name] = $value;
99
  }
100
  }
101
  }
102
+
103
  }
104
  }
105
 
114
  public function action() {
115
  parent::action();
116
 
117
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
118
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
119
  SQ_Classes_Helpers_Tools::setHeader('json');
120
  echo wp_json_encode($response);
150
  //return json with the results
151
  SQ_Classes_Helpers_Tools::setHeader('json');
152
 
153
+ echo wp_json_encode(array('json' => wp_json_encode($all_patterns)));
 
 
 
 
 
154
  exit();
155
  }
156
  break;
controllers/Post.php CHANGED
@@ -11,6 +11,7 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
11
  if (is_rtl()) {
12
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
13
  }
 
14
  //load the draggable script in post edit for the floating SLA
15
  wp_enqueue_script("jquery-ui-core");
16
  wp_enqueue_script("jquery-ui-draggable");
@@ -23,10 +24,16 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
23
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '')
24
  return;
25
 
26
- //Hook and save the Snippet and Keywords
27
  add_action('wp_insert_attachment_data', array($this, 'hookAttachmentSave'), 12, 2);
 
 
 
 
 
 
 
28
  add_filter('wp_insert_post_data', array($this, 'removeHighlight'), 12, 2);
29
- add_filter('wp_insert_post_data', array($this, 'checkImage'), 13, 2);
30
 
31
  //Hook the save post action
32
  add_action('save_post', array($this, 'hookSavePost'), 11, 2);
@@ -38,14 +45,30 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
38
  add_action('transition_post_status', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps'), 'refreshSitemap'), PHP_INT_MAX, 3);
39
  }
40
 
 
 
 
 
 
 
 
 
 
41
  //Make sure the URL is local and not changed by other plugins
42
- add_filter('sq_homeurl', function ($url) {
43
- if (defined('WP_HOME')) {
44
- return WP_HOME;
45
- } else {
46
- return get_option('home');
47
- }
48
- });
 
 
 
 
 
 
 
49
  }
50
 
51
  /**
@@ -64,6 +87,15 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
64
  * @return array
65
  */
66
  public function removeHighlight($post_data, $postarr) {
 
 
 
 
 
 
 
 
 
67
  if (!isset($post_data['post_content']) || !isset($postarr['ID'])) {
68
  return $post_data;
69
  }
@@ -82,61 +114,69 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
82
  * @return array
83
  */
84
  public function checkImage($post_data, $postarr) {
 
85
  if (!isset($post_data['post_content']) || !isset($postarr['ID'])) {
86
  return $post_data;
87
  }
88
 
 
 
 
 
 
 
 
 
89
  require_once(ABSPATH . 'wp-admin/includes/image.php');
90
 
91
- //if the option to save the images locally is set on
92
- if (SQ_Classes_Helpers_Tools::getOption('sq_local_images')) {
93
- $urls = array();
94
- if (function_exists('preg_match_all')) {
95
- @preg_match_all('/<img[^>]*src=[\'"]([^\'"]+)[\'"][^>]*>/i', stripslashes($post_data['post_content']), $out);
96
 
97
- if (!empty($out)) {
98
- if (!is_array($out[1]) || count((array)$out[1]) == 0) {
99
- return $post_data;
100
- }
101
 
102
- if (get_bloginfo('wpurl') <> '') {
103
- $domain = parse_url(home_url(), PHP_URL_HOST);
104
 
105
- foreach ($out[1] as $row) {
106
- if (strpos($row, '//') !== false && strpos($row, $domain) === false) {
107
- if (!in_array($row, $urls)) {
108
- $urls[] = $row;
109
- }
110
  }
111
  }
112
  }
113
  }
114
  }
 
115
 
116
- if (!is_array($urls) || (is_array($urls) && count((array)$urls) == 0)) {
117
- return $post_data;
118
- }
119
 
120
- if (count((array)$urls) > 1) {
121
- $urls = array_unique($urls);
122
- }
123
 
124
- $time = microtime(true);
125
 
126
- //get the already downloaded images
127
- $images = get_post_meta((int)$postarr['ID'], '_sq_image_downloaded');
128
 
129
- foreach ($urls as $url) {
130
 
131
- //Set the title and filename
132
- $basename = md5(basename($url));
133
- $keyword = SQ_Classes_Helpers_Tools::getValue('sq_keyword', false);
134
- if ($keyword) {
135
- $title = preg_replace('|[^a-z0-9-~+_.?#=!&;,/:%@$\|*\'()\[\]\\x80-\\xff ]|i', '', $keyword);
136
- $basename = preg_replace('|[^a-z0-9-_]|i', '', str_replace(' ', '-', strtolower($keyword)));
137
- }
138
 
139
- //check the images
 
140
  foreach ($images as $key => $local) {
141
  $local = json_decode($local, true);
142
  if ($local['url'] == md5($url)) {
@@ -147,42 +187,40 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
147
  continue 2;
148
  }
149
  }
 
150
 
151
- //Upload the image on server
152
- if ($file = $this->model->upload_image($url, $basename)) {
153
- if (!file_is_valid_image($file['file']))
154
- continue;
155
 
156
- $local_file = $file['url'];
157
- if ($local_file !== false) {
158
 
159
- //save as downloaded image to avoid duplicates
160
- add_post_meta((int)$postarr['ID'], '_sq_image_downloaded', wp_json_encode(array('url' => md5($url), 'file' => $local_file)));
161
 
162
- //replace the image in the content
163
- $post_data['post_content'] = str_replace($url, $local_file, $post_data['post_content']);
164
 
165
- //add the attachment image
166
- $attach_id = wp_insert_attachment(array(
167
- 'post_mime_type' => $file['type'],
168
- 'post_title' => $title,
169
- 'post_content' => '',
170
- 'post_status' => 'inherit',
171
- 'guid' => $local_file
172
- ), $file['file'], $postarr['ID']);
173
-
174
- $attach_data = wp_generate_attachment_metadata($attach_id, $file['file']);
175
- wp_update_attachment_metadata($attach_id, $attach_data);
176
 
177
- }
178
- }
179
 
180
- if (microtime(true) - $time >= 10) {
181
- break;
182
  }
183
-
184
  }
185
 
 
 
 
186
 
187
  }
188
 
@@ -232,6 +270,14 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
232
  get_post_status($post->ID) <> 'inherit'
233
  ) {
234
 
 
 
 
 
 
 
 
 
235
  //Update the SEO Keywords from Live Assistant and Permalink
236
  add_filter('sq_seo_before_save', array($this, 'addSeoKeywords'), 11, 1);
237
  //Update the redirect to old slugs
@@ -282,7 +328,7 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
282
  parent::action();
283
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
284
  case 'sq_create_demo':
285
- if (!current_user_can('sq_manage_snippet')) {
286
  SQ_Classes_Error::setError(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
287
  break;
288
  }
@@ -335,7 +381,7 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
335
 
336
  /**************************** AJAX CALLS *************************/
337
  case 'sq_ajax_save_ogimage':
338
- if (!current_user_can('sq_manage_snippet')) {
339
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
340
  SQ_Classes_Helpers_Tools::setHeader('json');
341
  echo wp_json_encode($response);
@@ -366,7 +412,7 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
366
  case 'sq_ajax_save_post':
367
  SQ_Classes_Helpers_Tools::setHeader('json');
368
 
369
- if (!current_user_can('sq_manage_snippet')) {
370
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
371
  echo wp_json_encode($response);
372
  exit();
@@ -401,7 +447,7 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
401
  case 'sq_ajax_get_post':
402
  SQ_Classes_Helpers_Tools::setHeader('json');
403
 
404
- if (!current_user_can('sq_manage_snippet')) {
405
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
406
  echo wp_json_encode($response);
407
  exit();
@@ -586,4 +632,5 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
586
  }
587
  }
588
 
 
589
  }
11
  if (is_rtl()) {
12
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
13
  }
14
+
15
  //load the draggable script in post edit for the floating SLA
16
  wp_enqueue_script("jquery-ui-core");
17
  wp_enqueue_script("jquery-ui-draggable");
24
  if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '')
25
  return;
26
 
27
+ //Hook and save the Snippet and Keywords for Attachment Pages
28
  add_action('wp_insert_attachment_data', array($this, 'hookAttachmentSave'), 12, 2);
29
+
30
+ //if the option to save the images locally is activated
31
+ if (SQ_Classes_Helpers_Tools::getOption('sq_local_images')) {
32
+ add_filter('wp_insert_post_data', array($this, 'checkImage'), 13, 2);
33
+ }
34
+
35
+ //Remove the SLA highlight from post
36
  add_filter('wp_insert_post_data', array($this, 'removeHighlight'), 12, 2);
 
37
 
38
  //Hook the save post action
39
  add_action('save_post', array($this, 'hookSavePost'), 11, 2);
45
  add_action('transition_post_status', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps'), 'refreshSitemap'), PHP_INT_MAX, 3);
46
  }
47
 
48
+ //Check the compatibility with Woocommerce
49
+ if (SQ_Classes_Helpers_Tools::getOption('sq_jsonld_product_custom')) {
50
+ SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->checkWooCommerce();
51
+ }
52
+
53
+
54
+ //add compatibility for backend
55
+ SQ_Classes_ObjController::getClass('SQ_Models_Compatibility')->hookPostEditorBackend();
56
+
57
  //Make sure the URL is local and not changed by other plugins
58
+ add_filter('sq_homeurl', array($this, 'getHomeUrl'));
59
+ }
60
+
61
+ /**
62
+ * Get the current Home URL
63
+ * @param $url
64
+ * @return mixed
65
+ */
66
+ public function getHomeUrl($url) {
67
+ if (defined('WP_HOME')) {
68
+ return WP_HOME;
69
+ } else {
70
+ return get_option('home');
71
+ }
72
  }
73
 
74
  /**
87
  * @return array
88
  */
89
  public function removeHighlight($post_data, $postarr) {
90
+
91
+ if (isset($post_data['post_type']) && $post_data['post_type'] <> '') {
92
+ //Exclude types for SLA
93
+ $excludes = SQ_Classes_Helpers_Tools::getOption('sq_sla_exclude_post_types');
94
+ if (in_array($post_data['post_type'], $excludes)) {
95
+ return $post_data;
96
+ }
97
+ }
98
+
99
  if (!isset($post_data['post_content']) || !isset($postarr['ID'])) {
100
  return $post_data;
101
  }
114
  * @return array
115
  */
116
  public function checkImage($post_data, $postarr) {
117
+
118
  if (!isset($post_data['post_content']) || !isset($postarr['ID'])) {
119
  return $post_data;
120
  }
121
 
122
+ if (isset($post_data['post_type']) && $post_data['post_type'] <> '') {
123
+ //Exclude types for SLA
124
+ $excludes = SQ_Classes_Helpers_Tools::getOption('sq_sla_exclude_post_types');
125
+ if (in_array($post_data['post_type'], $excludes)) {
126
+ return $post_data;
127
+ }
128
+ }
129
+
130
  require_once(ABSPATH . 'wp-admin/includes/image.php');
131
 
132
+ $urls = array();
133
+ if (function_exists('preg_match_all')) {
134
+ @preg_match_all('/<img[^>]*src=[\'"]([^\'"]+)[\'"][^>]*>/i', stripslashes($post_data['post_content']), $out);
 
 
135
 
136
+ if (!empty($out)) {
137
+ if (!is_array($out[1]) || count((array)$out[1]) == 0) {
138
+ return $post_data;
139
+ }
140
 
141
+ if (get_bloginfo('wpurl') <> '') {
142
+ $domain = parse_url(home_url(), PHP_URL_HOST);
143
 
144
+ foreach ($out[1] as $row) {
145
+ if (strpos($row, '//') !== false && strpos($row, $domain) === false) {
146
+ if (!in_array($row, $urls)) {
147
+ $urls[] = $row;
 
148
  }
149
  }
150
  }
151
  }
152
  }
153
+ }
154
 
155
+ if (!is_array($urls) || (is_array($urls) && count((array)$urls) == 0)) {
156
+ return $post_data;
157
+ }
158
 
159
+ if (count((array)$urls) > 1) {
160
+ $urls = array_unique($urls);
161
+ }
162
 
163
+ $time = microtime(true);
164
 
165
+ //get the already downloaded images
166
+ $images = get_post_meta((int)$postarr['ID'], '_sq_image_downloaded');
167
 
168
+ foreach ($urls as $url) {
169
 
170
+ //Set the title and filename
171
+ $basename = md5(basename($url));
172
+ $keyword = SQ_Classes_Helpers_Tools::getValue('sq_keyword', false);
173
+ if ($keyword) {
174
+ $title = preg_replace('|[^a-z0-9-~+_.?#=!&;,/:%@$\|*\'()\[\]\\x80-\\xff ]|i', '', $keyword);
175
+ $basename = preg_replace('|[^a-z0-9-_]|i', '', str_replace(' ', '-', strtolower($keyword)));
176
+ }
177
 
178
+ //check the images
179
+ if (!empty($images)) {
180
  foreach ($images as $key => $local) {
181
  $local = json_decode($local, true);
182
  if ($local['url'] == md5($url)) {
187
  continue 2;
188
  }
189
  }
190
+ }
191
 
192
+ //Upload the image on server
193
+ if ($file = $this->model->upload_image($url, $basename)) {
194
+ if (!file_is_valid_image($file['file']))
195
+ continue;
196
 
197
+ $local_file = $file['url'];
198
+ if ($local_file !== false) {
199
 
200
+ //save as downloaded image to avoid duplicates
201
+ add_post_meta((int)$postarr['ID'], '_sq_image_downloaded', wp_json_encode(array('url' => md5($url), 'file' => $local_file)));
202
 
203
+ //replace the image in the content
204
+ $post_data['post_content'] = str_replace($url, $local_file, $post_data['post_content']);
205
 
206
+ //add the attachment image
207
+ $attach_id = wp_insert_attachment(array(
208
+ 'post_mime_type' => $file['type'],
209
+ 'post_title' => $title,
210
+ 'post_content' => '',
211
+ 'post_status' => 'inherit',
212
+ 'guid' => $local_file
213
+ ), $file['file'], $postarr['ID']);
 
 
 
214
 
215
+ $attach_data = wp_generate_attachment_metadata($attach_id, $file['file']);
216
+ wp_update_attachment_metadata($attach_id, $attach_data);
217
 
 
 
218
  }
 
219
  }
220
 
221
+ if (microtime(true) - $time >= 10) {
222
+ break;
223
+ }
224
 
225
  }
226
 
270
  get_post_status($post->ID) <> 'inherit'
271
  ) {
272
 
273
+ //Exclude types for SLA
274
+ if (isset($post->post_type) && $post->post_type <> '') {
275
+ $excludes = SQ_Classes_Helpers_Tools::getOption('sq_sla_exclude_post_types');
276
+ if (in_array($post->post_type, $excludes)) {
277
+ return;
278
+ }
279
+ }
280
+
281
  //Update the SEO Keywords from Live Assistant and Permalink
282
  add_filter('sq_seo_before_save', array($this, 'addSeoKeywords'), 11, 1);
283
  //Update the redirect to old slugs
328
  parent::action();
329
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
330
  case 'sq_create_demo':
331
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
332
  SQ_Classes_Error::setError(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
333
  break;
334
  }
381
 
382
  /**************************** AJAX CALLS *************************/
383
  case 'sq_ajax_save_ogimage':
384
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
385
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
386
  SQ_Classes_Helpers_Tools::setHeader('json');
387
  echo wp_json_encode($response);
412
  case 'sq_ajax_save_post':
413
  SQ_Classes_Helpers_Tools::setHeader('json');
414
 
415
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
416
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
417
  echo wp_json_encode($response);
418
  exit();
447
  case 'sq_ajax_get_post':
448
  SQ_Classes_Helpers_Tools::setHeader('json');
449
 
450
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
451
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
452
  echo wp_json_encode($response);
453
  exit();
632
  }
633
  }
634
 
635
+
636
  }
controllers/PostsList.php CHANGED
@@ -202,7 +202,7 @@ class SQ_Controllers_PostsList extends SQ_Classes_FrontController {
202
  parent::action();
203
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
204
  case 'sq_ajax_postslist':
205
- if (!current_user_can('sq_manage_snippet')) {
206
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
207
  SQ_Classes_Helpers_Tools::setHeader('json');
208
  echo wp_json_encode($response);
202
  parent::action();
203
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
204
  case 'sq_ajax_postslist':
205
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
206
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
207
  SQ_Classes_Helpers_Tools::setHeader('json');
208
  echo wp_json_encode($response);
controllers/Ranking.php CHANGED
@@ -125,7 +125,7 @@ class SQ_Controllers_Ranking extends SQ_Classes_FrontController {
125
  public function action() {
126
  parent::action();
127
 
128
- if (!current_user_can('sq_manage_focuspages')) {
129
  return;
130
  }
131
 
125
  public function action() {
126
  parent::action();
127
 
128
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_focuspages')) {
129
  return;
130
  }
131
 
controllers/Research.php CHANGED
@@ -30,10 +30,10 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
30
  $this->checkin = SQ_Classes_RemoteController::checkin();
31
 
32
  if (is_wp_error($this->checkin)) {
33
- if($this->checkin->get_error_message() == 'no_data') {
34
  echo $this->getView('Errors/Error');
35
  return;
36
- }elseif($this->checkin->get_error_message() == 'maintenance') {
37
  echo $this->getView('Errors/Maintenance');
38
  return;
39
  }
@@ -42,11 +42,11 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
42
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'research');
43
 
44
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
45
- if(is_rtl()){
46
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('popper');
47
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap.rtl');
48
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
49
- }else{
50
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
51
  }
52
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
@@ -71,7 +71,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
71
  }
72
 
73
  public function research() {
74
- add_action('sq_form_notices', array($this,'getNotificationBar'));
75
 
76
  $countries = SQ_Classes_RemoteController::getKrCountries();
77
 
@@ -83,7 +83,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
83
  }
84
 
85
  public function briefcase() {
86
- add_action('sq_form_notices', array($this,'getNotificationBar'));
87
 
88
  $search = (string)SQ_Classes_Helpers_Tools::getValue('skeyword', '');
89
  $labels = SQ_Classes_Helpers_Tools::getValue('slabel', false);
@@ -102,7 +102,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
102
  if (isset($briefcase->keywords) && !empty($briefcase->keywords)) {
103
  $this->keywords = $briefcase->keywords;
104
  } else {
105
- $this->error = sprintf(esc_html__("No keyword found. %s Show all %s keywords from Briefcase.", _SQ_PLUGIN_NAME_),'<a href="'.SQ_Classes_Helpers_Tools::getAdminUrl('sq_research','briefcase').'">','</a>');
106
  }
107
 
108
  if (isset($briefcase->labels)) {
@@ -119,7 +119,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
119
  }
120
 
121
  public function labels() {
122
- add_action('sq_form_notices', array($this,'getNotificationBar'));
123
 
124
  $args = array();
125
  if (!empty($labels)) {
@@ -142,7 +142,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
142
  }
143
 
144
  public function suggested() {
145
- add_action('sq_form_notices', array($this,'getNotificationBar'));
146
 
147
  //Get the briefcase keywords
148
  if ($briefcase = SQ_Classes_RemoteController::getBriefcase()) {
@@ -162,7 +162,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
162
 
163
  }
164
 
165
- function history() {
166
 
167
  $args = array();
168
  $args['limit'] = 100;
@@ -170,6 +170,24 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
170
 
171
  }
172
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
 
174
  /**
175
  * Called when action is triggered
@@ -182,7 +200,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
182
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
183
 
184
  case 'sq_briefcase_addkeyword':
185
- if (!current_user_can('sq_manage_snippet')) {
186
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
187
  SQ_Classes_Helpers_Tools::setHeader('json');
188
 
@@ -227,7 +245,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
227
  }
228
  break;
229
  case 'sq_briefcase_deletekeyword':
230
- if (!current_user_can('sq_manage_settings')) {
231
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
232
  SQ_Classes_Helpers_Tools::setHeader('json');
233
  echo wp_json_encode($response);
@@ -249,7 +267,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
249
  }
250
  exit();
251
  case 'sq_briefcase_deletefound':
252
- if (!current_user_can('sq_manage_settings')) {
253
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
254
  SQ_Classes_Helpers_Tools::setHeader('json');
255
  echo wp_json_encode($response);
@@ -272,7 +290,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
272
  exit();
273
  /**********************************/
274
  case 'sq_briefcase_addlabel':
275
- if (!current_user_can('sq_manage_snippet')) {
276
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
277
  SQ_Classes_Helpers_Tools::setHeader('json');
278
  echo wp_json_encode($response);
@@ -302,7 +320,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
302
  }
303
  exit();
304
  case 'sq_briefcase_editlabel':
305
- if (!current_user_can('sq_manage_snippet')) {
306
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
307
  SQ_Classes_Helpers_Tools::setHeader('json');
308
  echo wp_json_encode($response);
@@ -329,7 +347,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
329
  }
330
  exit();
331
  case 'sq_briefcase_deletelabel':
332
- if (!current_user_can('sq_manage_snippets')) {
333
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
334
  SQ_Classes_Helpers_Tools::setHeader('json');
335
  echo wp_json_encode($response);
@@ -353,7 +371,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
353
  }
354
  exit();
355
  case 'sq_briefcase_keywordlabel':
356
- if (!current_user_can('sq_manage_snippet')) {
357
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
358
  SQ_Classes_Helpers_Tools::setHeader('json');
359
  echo wp_json_encode($response);
@@ -383,12 +401,14 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
383
  }
384
  exit();
385
  case 'sq_briefcase_backup':
386
- if (!current_user_can('sq_manage_settings')) {
387
  SQ_Classes_Error::setError(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
388
  return;
389
  }
390
 
391
- $briefcase = SQ_Classes_RemoteController::getBriefcase();
 
 
392
 
393
  $fp = fopen(_SQ_CACHE_DIR_ . 'file.csv', 'w');
394
  foreach ($briefcase->keywords as $row) {
@@ -404,7 +424,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
404
 
405
  exit();
406
  case 'sq_briefcase_restore':
407
- if (!current_user_can('sq_manage_settings')) {
408
  SQ_Classes_Error::setError(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
409
  return;
410
  }
@@ -484,7 +504,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
484
  }
485
  break;
486
  case 'sq_briefcase_savemain':
487
- if (!current_user_can('sq_manage_snippet')) {
488
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
489
  SQ_Classes_Helpers_Tools::setHeader('json');
490
  echo wp_json_encode($response);
@@ -510,7 +530,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
510
  exit();
511
  /************************************************* AJAX */
512
  case 'sq_ajax_briefcase_doserp':
513
- if (!current_user_can('sq_manage_settings')) {
514
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
515
  SQ_Classes_Helpers_Tools::setHeader('json');
516
  echo wp_json_encode($response);
@@ -551,7 +571,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
551
  $json = SQ_Classes_RemoteController::getKROthers($args);
552
 
553
  if (!is_wp_error($json)) {
554
- if(isset($json->keywords)) {
555
  echo wp_json_encode(array('keywords' => $json->keywords));
556
  }
557
  } else {
@@ -616,7 +636,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
616
  $process = SQ_Classes_RemoteController::setKRSuggestion($args);
617
 
618
  if (!is_wp_error($process)) {
619
- if(isset($process->id)) {
620
  //Get the briefcase keywords
621
  echo wp_json_encode(array('done' => false, 'id' => $process->id));
622
 
@@ -661,7 +681,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
661
  exit();
662
 
663
  case 'sq_ajax_briefcase_bulk_delete':
664
- if (!current_user_can('sq_manage_settings')) {
665
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
666
  SQ_Classes_Helpers_Tools::setHeader('json');
667
  echo wp_json_encode($response);
@@ -685,7 +705,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
685
  }
686
  exit();
687
  case 'sq_ajax_briefcase_bulk_label':
688
- if (!current_user_can('sq_manage_settings')) {
689
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
690
  SQ_Classes_Helpers_Tools::setHeader('json');
691
  echo wp_json_encode($response);
@@ -719,7 +739,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
719
 
720
  exit();
721
  case 'sq_ajax_briefcase_bulk_doserp':
722
- if (!current_user_can('sq_manage_settings')) {
723
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
724
  SQ_Classes_Helpers_Tools::setHeader('json');
725
  echo wp_json_encode($response);
@@ -745,7 +765,7 @@ class SQ_Controllers_Research extends SQ_Classes_FrontController {
745
  exit();
746
 
747
  case 'sq_ajax_labels_bulk_delete':
748
- if (!current_user_can('sq_manage_settings')) {
749
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
750
  SQ_Classes_Helpers_Tools::setHeader('json');
751
  echo wp_json_encode($response);
30
  $this->checkin = SQ_Classes_RemoteController::checkin();
31
 
32
  if (is_wp_error($this->checkin)) {
33
+ if ($this->checkin->get_error_message() == 'no_data') {
34
  echo $this->getView('Errors/Error');
35
  return;
36
+ } elseif ($this->checkin->get_error_message() == 'maintenance') {
37
  echo $this->getView('Errors/Maintenance');
38
  return;
39
  }
42
  $tab = SQ_Classes_Helpers_Tools::getValue('tab', 'research');
43
 
44
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap-reboot');
45
+ if (is_rtl()) {
46
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('popper');
47
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap.rtl');
48
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
49
+ } else {
50
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
51
  }
52
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
71
  }
72
 
73
  public function research() {
74
+ add_action('sq_form_notices', array($this, 'getNotificationBar'));
75
 
76
  $countries = SQ_Classes_RemoteController::getKrCountries();
77
 
83
  }
84
 
85
  public function briefcase() {
86
+ add_action('sq_form_notices', array($this, 'getNotificationBar'));
87
 
88
  $search = (string)SQ_Classes_Helpers_Tools::getValue('skeyword', '');
89
  $labels = SQ_Classes_Helpers_Tools::getValue('slabel', false);
102
  if (isset($briefcase->keywords) && !empty($briefcase->keywords)) {
103
  $this->keywords = $briefcase->keywords;
104
  } else {
105
+ $this->error = sprintf(esc_html__("No keyword found. %s Show all %s keywords from Briefcase.", _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl('sq_research', 'briefcase') . '">', '</a>');
106
  }
107
 
108
  if (isset($briefcase->labels)) {
119
  }
120
 
121
  public function labels() {
122
+ add_action('sq_form_notices', array($this, 'getNotificationBar'));
123
 
124
  $args = array();
125
  if (!empty($labels)) {
142
  }
143
 
144
  public function suggested() {
145
+ add_action('sq_form_notices', array($this, 'getNotificationBar'));
146
 
147
  //Get the briefcase keywords
148
  if ($briefcase = SQ_Classes_RemoteController::getBriefcase()) {
162
 
163
  }
164
 
165
+ public function history() {
166
 
167
  $args = array();
168
  $args['limit'] = 100;
170
 
171
  }
172
 
173
+ /**
174
+ * Return the text for the stats in details
175
+ * @param $key
176
+ * @param $index
177
+ * @return string
178
+ */
179
+ public function getReasearchStatsText($key, $index) {
180
+ $stats = array(
181
+ 'tw' => array(esc_html__("very few", _SQ_PLUGIN_NAME_), esc_html__("few", _SQ_PLUGIN_NAME_), esc_html__("few", _SQ_PLUGIN_NAME_), esc_html__("few", _SQ_PLUGIN_NAME_), esc_html__("few", _SQ_PLUGIN_NAME_), esc_html__("some", _SQ_PLUGIN_NAME_), esc_html__("some", _SQ_PLUGIN_NAME_), esc_html__("some", _SQ_PLUGIN_NAME_), esc_html__("some", _SQ_PLUGIN_NAME_), esc_html__("many", _SQ_PLUGIN_NAME_), esc_html__("many", _SQ_PLUGIN_NAME_)),
182
+ 'sc' => array(esc_html__("very low ranking chance", _SQ_PLUGIN_NAME_), esc_html__("very low ranking chance", _SQ_PLUGIN_NAME_), esc_html__("low ranking chance", _SQ_PLUGIN_NAME_), esc_html__("low ranking chance", _SQ_PLUGIN_NAME_), esc_html__("low ranking chance", _SQ_PLUGIN_NAME_), esc_html__("modest ranking chance", _SQ_PLUGIN_NAME_), esc_html__("modest ranking chance", _SQ_PLUGIN_NAME_), esc_html__("decent ranking chance", _SQ_PLUGIN_NAME_), esc_html__("high ranking chance", _SQ_PLUGIN_NAME_), esc_html__("very high ranking chance", _SQ_PLUGIN_NAME_), esc_html__("very high ranking chance", _SQ_PLUGIN_NAME_)),
183
+ );
184
+
185
+ if(isset($stats[$key][$index])){
186
+ return $stats[$key][$index];
187
+ }
188
+
189
+ return '';
190
+ }
191
 
192
  /**
193
  * Called when action is triggered
200
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
201
 
202
  case 'sq_briefcase_addkeyword':
203
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
204
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
205
  SQ_Classes_Helpers_Tools::setHeader('json');
206
 
245
  }
246
  break;
247
  case 'sq_briefcase_deletekeyword':
248
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
249
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
250
  SQ_Classes_Helpers_Tools::setHeader('json');
251
  echo wp_json_encode($response);
267
  }
268
  exit();
269
  case 'sq_briefcase_deletefound':
270
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
271
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
272
  SQ_Classes_Helpers_Tools::setHeader('json');
273
  echo wp_json_encode($response);
290
  exit();
291
  /**********************************/
292
  case 'sq_briefcase_addlabel':
293
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
294
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
295
  SQ_Classes_Helpers_Tools::setHeader('json');
296
  echo wp_json_encode($response);
320
  }
321
  exit();
322
  case 'sq_briefcase_editlabel':
323
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
324
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
325
  SQ_Classes_Helpers_Tools::setHeader('json');
326
  echo wp_json_encode($response);
347
  }
348
  exit();
349
  case 'sq_briefcase_deletelabel':
350
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippets')) {
351
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
352
  SQ_Classes_Helpers_Tools::setHeader('json');
353
  echo wp_json_encode($response);
371
  }
372
  exit();
373
  case 'sq_briefcase_keywordlabel':
374
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
375
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
376
  SQ_Classes_Helpers_Tools::setHeader('json');
377
  echo wp_json_encode($response);
401
  }
402
  exit();
403
  case 'sq_briefcase_backup':
404
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
405
  SQ_Classes_Error::setError(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
406
  return;
407
  }
408
 
409
+ $args = array();
410
+ $args['limit'] = -1;
411
+ $briefcase = SQ_Classes_RemoteController::getBriefcase($args);
412
 
413
  $fp = fopen(_SQ_CACHE_DIR_ . 'file.csv', 'w');
414
  foreach ($briefcase->keywords as $row) {
424
 
425
  exit();
426
  case 'sq_briefcase_restore':
427
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
428
  SQ_Classes_Error::setError(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
429
  return;
430
  }
504
  }
505
  break;
506
  case 'sq_briefcase_savemain':
507
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
508
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
509
  SQ_Classes_Helpers_Tools::setHeader('json');
510
  echo wp_json_encode($response);
530
  exit();
531
  /************************************************* AJAX */
532
  case 'sq_ajax_briefcase_doserp':
533
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
534
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
535
  SQ_Classes_Helpers_Tools::setHeader('json');
536
  echo wp_json_encode($response);
571
  $json = SQ_Classes_RemoteController::getKROthers($args);
572
 
573
  if (!is_wp_error($json)) {
574
+ if (isset($json->keywords)) {
575
  echo wp_json_encode(array('keywords' => $json->keywords));
576
  }
577
  } else {
636
  $process = SQ_Classes_RemoteController::setKRSuggestion($args);
637
 
638
  if (!is_wp_error($process)) {
639
+ if (isset($process->id)) {
640
  //Get the briefcase keywords
641
  echo wp_json_encode(array('done' => false, 'id' => $process->id));
642
 
681
  exit();
682
 
683
  case 'sq_ajax_briefcase_bulk_delete':
684
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
685
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
686
  SQ_Classes_Helpers_Tools::setHeader('json');
687
  echo wp_json_encode($response);
705
  }
706
  exit();
707
  case 'sq_ajax_briefcase_bulk_label':
708
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
709
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
710
  SQ_Classes_Helpers_Tools::setHeader('json');
711
  echo wp_json_encode($response);
739
 
740
  exit();
741
  case 'sq_ajax_briefcase_bulk_doserp':
742
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
743
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
744
  SQ_Classes_Helpers_Tools::setHeader('json');
745
  echo wp_json_encode($response);
765
  exit();
766
 
767
  case 'sq_ajax_labels_bulk_delete':
768
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
769
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
770
  SQ_Classes_Helpers_Tools::setHeader('json');
771
  echo wp_json_encode($response);
controllers/SeoSettings.php CHANGED
@@ -121,7 +121,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
121
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
122
 
123
  case 'sq_seosettings_links':
124
- if (!current_user_can('sq_manage_settings')) {
125
  return;
126
  }
127
 
@@ -149,7 +149,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
149
 
150
  ///////////////////////////////////////////SEO SETTINGS METAS
151
  case 'sq_seosettings_metas':
152
- if (!current_user_can('sq_manage_settings')) {
153
  return;
154
  }
155
 
@@ -195,7 +195,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
195
 
196
  ///////////////////////////////////////////SEO SETTINGS AUTOMATION
197
  case 'sq_seosettings_automation':
198
- if (!current_user_can('sq_manage_settings')) {
199
  return;
200
  }
201
 
@@ -214,7 +214,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
214
  case 'sq_seosettings_tracking':
215
  case 'sq_seosettings_webmaster':
216
  case 'sq_seosettings_advanced':
217
- if (!current_user_can('sq_manage_settings')) {
218
  return;
219
  }
220
 
@@ -237,7 +237,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
237
 
238
  ///////////////////////////////////////////SEO SETTINGS METAS
239
  case 'sq_seosettings_sitemap':
240
- if (!current_user_can('sq_manage_settings')) {
241
  return;
242
  }
243
 
@@ -275,7 +275,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
275
 
276
  //Save the JSON-LD page from SEO Settings
277
  case 'sq_seosettings_jsonld':
278
- if (!current_user_can('sq_manage_settings')) {
279
  return;
280
  }
281
 
@@ -304,7 +304,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
304
 
305
  //Save the Robots permissions
306
  case 'sq_seosettings_robots':
307
- if (!current_user_can('sq_manage_settings')) {
308
  return;
309
  }
310
 
@@ -336,7 +336,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
336
 
337
  //Save the Favicon image
338
  case 'sq_seosettings_favicon':
339
- if (!current_user_can('sq_manage_settings')) {
340
  return;
341
  }
342
 
@@ -365,7 +365,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
365
 
366
  break;
367
  case 'sq_seosettings_ga_revoke':
368
- if (!current_user_can('sq_manage_settings')) {
369
  return;
370
  }
371
 
@@ -378,7 +378,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
378
  }
379
  break;
380
  case 'sq_seosettings_gsc_revoke':
381
- if (!current_user_can('sq_manage_settings')) {
382
  return;
383
  }
384
 
@@ -392,7 +392,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
392
  break;
393
  case 'sq_seosettings_ga_check':
394
  case 'sq_seosettings_gsc_check':
395
- if (!current_user_can('sq_manage_settings')) {
396
  return;
397
  }
398
  //Refresh the checkin on login
@@ -401,7 +401,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
401
  break;
402
 
403
  case 'sq_seosettings_backupsettings':
404
- if (!current_user_can('sq_manage_settings')) {
405
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
406
  SQ_Classes_Helpers_Tools::setHeader('json');
407
  echo wp_json_encode($response);
@@ -418,7 +418,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
418
  }
419
  exit();
420
  case 'sq_seosettings_restoresettings':
421
- if (!current_user_can('sq_manage_settings')) {
422
  return;
423
  }
424
 
@@ -461,7 +461,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
461
  }
462
  break;
463
  case 'sq_seosettings_backupseo':
464
- if (!current_user_can('sq_manage_settings')) {
465
  return;
466
  }
467
 
@@ -476,7 +476,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
476
  }
477
  exit();
478
  case 'sq_seosettings_restoreseo':
479
- if (!current_user_can('sq_manage_settings')) {
480
  return;
481
  }
482
 
@@ -540,7 +540,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
540
  }
541
  break;
542
  case 'sq_seosettings_importsettings':
543
- if (!current_user_can('sq_manage_settings')) {
544
  return;
545
  }
546
 
@@ -554,18 +554,20 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
554
  }
555
  break;
556
  case 'sq_seosettings_importseo':
557
- if (!current_user_can('sq_manage_settings')) {
558
  return;
559
  }
560
 
561
  $platform = SQ_Classes_Helpers_Tools::getValue('sq_import_platform', '');
562
  $overwrite = SQ_Classes_Helpers_Tools::getValue('sq_import_overwrite', false);
 
563
  if ($platform <> '') {
564
  $seo = SQ_Classes_ObjController::getClass('SQ_Models_ImportExport')->importDBSeo($platform);
565
  if (!empty($seo)) {
566
  foreach ($seo as $sq_hash => $metas) {
567
  $sq = SQ_Classes_ObjController::getClass('SQ_Models_Qss')->getSqSeo($sq_hash);
568
  if ($overwrite || !($sq->title && $sq->description)) {
 
569
  SQ_Classes_ObjController::getClass('SQ_Models_Qss')->saveSqSEO(
570
  (isset($metas['url']) ? $metas['url'] : ''),
571
  $sq_hash,
@@ -577,6 +579,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
577
  )),
578
  maybe_serialize($metas),
579
  gmdate('Y-m-d H:i:s'));
 
580
  }
581
  }
582
  }
@@ -640,7 +643,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
640
  case 'sq_ajax_seosettings_save':
641
  SQ_Classes_Helpers_Tools::setHeader('json');
642
  $response = array();
643
- if (!current_user_can('sq_manage_settings')) {
644
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
645
  echo wp_json_encode($response);
646
  exit();
@@ -664,7 +667,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
664
  SQ_Classes_Helpers_Tools::setHeader('json');
665
 
666
  $response = array();
667
- if (!current_user_can('sq_manage_snippet')) {
668
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
669
  echo wp_json_encode($response);
670
  exit();
@@ -677,7 +680,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
677
  SQ_Classes_Helpers_Tools::setHeader('json');
678
 
679
  $response = array();
680
- if (!current_user_can('sq_manage_snippet')) {
681
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
682
  echo wp_json_encode($response);
683
  exit();
@@ -698,7 +701,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
698
  SQ_Classes_Helpers_Tools::setHeader('json');
699
 
700
  $response = array();
701
- if (!current_user_can('sq_manage_snippet')) {
702
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
703
  echo wp_json_encode($response);
704
  exit();
@@ -717,7 +720,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
717
  SQ_Classes_Helpers_Tools::setHeader('json');
718
 
719
  $response = array();
720
- if (!current_user_can('sq_manage_snippet')) {
721
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
722
  echo wp_json_encode($response);
723
  exit();
@@ -735,7 +738,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
735
  case 'sq_ajax_automation_addpostype':
736
  SQ_Classes_Helpers_Tools::setHeader('json');
737
  $response = array();
738
- if (!current_user_can('sq_manage_settings')) {
739
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
740
  echo wp_json_encode($response);
741
  exit();
@@ -745,6 +748,13 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
745
  $posttype = SQ_Classes_Helpers_Tools::getValue('value', false);
746
  $filter = array('public' => true, '_builtin' => false);
747
  $types = get_post_types($filter);
 
 
 
 
 
 
 
748
 
749
  $filter = array('public' => true,);
750
  $taxonomies = get_taxonomies($filter);
@@ -777,7 +787,7 @@ class SQ_Controllers_SeoSettings extends SQ_Classes_FrontController {
777
  case 'sq_ajax_automation_deletepostype':
778
  SQ_Classes_Helpers_Tools::setHeader('json');
779
  $response = array();
780
- if (!current_user_can('sq_manage_settings')) {
781
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
782
  echo wp_json_encode($response);
783
  exit();
121
  switch (SQ_Classes_Helpers_Tools::getValue('action')) {
122
 
123
  case 'sq_seosettings_links':
124
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
125
  return;
126
  }
127
 
149
 
150
  ///////////////////////////////////////////SEO SETTINGS METAS
151
  case 'sq_seosettings_metas':
152
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
153
  return;
154
  }
155
 
195
 
196
  ///////////////////////////////////////////SEO SETTINGS AUTOMATION
197
  case 'sq_seosettings_automation':
198
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
199
  return;
200
  }
201
 
214
  case 'sq_seosettings_tracking':
215
  case 'sq_seosettings_webmaster':
216
  case 'sq_seosettings_advanced':
217
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
218
  return;
219
  }
220
 
237
 
238
  ///////////////////////////////////////////SEO SETTINGS METAS
239
  case 'sq_seosettings_sitemap':
240
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
241
  return;
242
  }
243
 
275
 
276
  //Save the JSON-LD page from SEO Settings
277
  case 'sq_seosettings_jsonld':
278
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
279
  return;
280
  }
281
 
304
 
305
  //Save the Robots permissions
306
  case 'sq_seosettings_robots':
307
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
308
  return;
309
  }
310
 
336
 
337
  //Save the Favicon image
338
  case 'sq_seosettings_favicon':
339
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
340
  return;
341
  }
342
 
365
 
366
  break;
367
  case 'sq_seosettings_ga_revoke':
368
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
369
  return;
370
  }
371
 
378
  }
379
  break;
380
  case 'sq_seosettings_gsc_revoke':
381
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
382
  return;
383
  }
384
 
392
  break;
393
  case 'sq_seosettings_ga_check':
394
  case 'sq_seosettings_gsc_check':
395
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
396
  return;
397
  }
398
  //Refresh the checkin on login
401
  break;
402
 
403
  case 'sq_seosettings_backupsettings':
404
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
405
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
406
  SQ_Classes_Helpers_Tools::setHeader('json');
407
  echo wp_json_encode($response);
418
  }
419
  exit();
420
  case 'sq_seosettings_restoresettings':
421
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
422
  return;
423
  }
424
 
461
  }
462
  break;
463
  case 'sq_seosettings_backupseo':
464
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
465
  return;
466
  }
467
 
476
  }
477
  exit();
478
  case 'sq_seosettings_restoreseo':
479
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
480
  return;
481
  }
482
 
540
  }
541
  break;
542
  case 'sq_seosettings_importsettings':
543
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
544
  return;
545
  }
546
 
554
  }
555
  break;
556
  case 'sq_seosettings_importseo':
557
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
558
  return;
559
  }
560
 
561
  $platform = SQ_Classes_Helpers_Tools::getValue('sq_import_platform', '');
562
  $overwrite = SQ_Classes_Helpers_Tools::getValue('sq_import_overwrite', false);
563
+
564
  if ($platform <> '') {
565
  $seo = SQ_Classes_ObjController::getClass('SQ_Models_ImportExport')->importDBSeo($platform);
566
  if (!empty($seo)) {
567
  foreach ($seo as $sq_hash => $metas) {
568
  $sq = SQ_Classes_ObjController::getClass('SQ_Models_Qss')->getSqSeo($sq_hash);
569
  if ($overwrite || !($sq->title && $sq->description)) {
570
+
571
  SQ_Classes_ObjController::getClass('SQ_Models_Qss')->saveSqSEO(
572
  (isset($metas['url']) ? $metas['url'] : ''),
573
  $sq_hash,
579
  )),
580
  maybe_serialize($metas),
581
  gmdate('Y-m-d H:i:s'));
582
+
583
  }
584
  }
585
  }
643
  case 'sq_ajax_seosettings_save':
644
  SQ_Classes_Helpers_Tools::setHeader('json');
645
  $response = array();
646
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
647
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
648
  echo wp_json_encode($response);
649
  exit();
667
  SQ_Classes_Helpers_Tools::setHeader('json');
668
 
669
  $response = array();
670
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
671
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
672
  echo wp_json_encode($response);
673
  exit();
680
  SQ_Classes_Helpers_Tools::setHeader('json');
681
 
682
  $response = array();
683
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
684
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
685
  echo wp_json_encode($response);
686
  exit();
701
  SQ_Classes_Helpers_Tools::setHeader('json');
702
 
703
  $response = array();
704
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
705
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
706
  echo wp_json_encode($response);
707
  exit();
720
  SQ_Classes_Helpers_Tools::setHeader('json');
721
 
722
  $response = array();
723
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
724
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
725
  echo wp_json_encode($response);
726
  exit();
738
  case 'sq_ajax_automation_addpostype':
739
  SQ_Classes_Helpers_Tools::setHeader('json');
740
  $response = array();
741
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
742
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
743
  echo wp_json_encode($response);
744
  exit();
748
  $posttype = SQ_Classes_Helpers_Tools::getValue('value', false);
749
  $filter = array('public' => true, '_builtin' => false);
750
  $types = get_post_types($filter);
751
+ foreach ($types as $pattern => $type) {
752
+ if($post_type_obj = get_post_type_object( $pattern )){
753
+ if($post_type_obj->has_archive) {
754
+ $types['archive-' . $pattern] = 'archive-' . $pattern;
755
+ }
756
+ }
757
+ }
758
 
759
  $filter = array('public' => true,);
760
  $taxonomies = get_taxonomies($filter);
787
  case 'sq_ajax_automation_deletepostype':
788
  SQ_Classes_Helpers_Tools::setHeader('json');
789
  $response = array();
790
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_settings')) {
791
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
792
  echo wp_json_encode($response);
793
  exit();
controllers/Sitemaps.php CHANGED
@@ -105,7 +105,7 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
105
  global $sq_query;
106
  $sq_query = array();
107
 
108
- if(!isset($request)){
109
  return;
110
  }
111
 
@@ -134,7 +134,7 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
134
  'post_type' => array('post'),
135
  'tax_query' => array(),
136
  'post_status' => 'publish',
137
- 'posts_per_page' => $this->posts_limit,
138
  'paged' => $page,
139
  'orderby' => 'date',
140
  'order' => 'DESC',
@@ -160,6 +160,7 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
160
  switch ($this->model->type) {
161
  case 'sitemap-news':
162
  case 'sitemap-post':
 
163
  break;
164
  case 'sitemap-category':
165
  case 'sitemap-post_tag':
@@ -169,6 +170,7 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
169
  break;
170
  case 'sitemap-page':
171
  $sq_query['post_type'] = array('page');
 
172
  break;
173
  case 'sitemap-attachment':
174
  $sq_query['post_type'] = array('attachment');
@@ -206,6 +208,8 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
206
  $types = array('custom-post');
207
  }
208
  $sq_query['post_type'] = $types;
 
 
209
  break;
210
  case 'sitemap-archive':
211
  add_filter('sq-sitemap-archive', array($this, 'archiveFilter'), 5);
@@ -220,12 +224,12 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
220
  }
221
 
222
  public function getSquirrlyHeader($header) {
223
- if($this->model->type <> 'locations'){
224
- $header = '<?xml-stylesheet type="text/xsl" href="/' . _SQ_ASSETS_RELATIVE_URL_ . 'css/sitemap' . ($this->model->type == 'sitemap' ? 'index' : '') . '.xsl"?>' . "\n";
225
  $header .= '<!-- generated-on="' . date('Y-m-d\TH:i:s+00:00') . '" -->' . "\n";
226
  $header .= '<!-- generator="Squirrly SEO Sitemap" -->' . "\n";
227
- $header .= '<!-- generator-url="https://wordpress.org/plugins/squirrly-seo/" -->' . "\n";
228
- $header .= '<!-- generator-version="' . SQ_VERSION . '" -->' . "\n";
229
  }
230
 
231
  return $header;
@@ -369,6 +373,7 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
369
  }
370
  }
371
  }
 
372
  }
373
  }
374
  $this->showSitemapFooter();
@@ -452,7 +457,7 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
452
  foreach ($xml as $key => $data) {
453
  if ($data === false) {
454
  $str .= $tab . '<' . $key . '>' . "\n";
455
- }elseif (!is_array($data) && $data <> '') {
456
  $str .= $tab . '<' . $key . ($key == 'video:player_loc' ? ' allow_embed="yes"' : '') . '>' . $data . ((strpos($data, '?') == false && $key == 'video:player_loc') ? '' : '') . '</' . $key . '>' . "\n";
457
  } else {
458
  if ($this->getRecursiveXml($data) <> '') {
105
  global $sq_query;
106
  $sq_query = array();
107
 
108
+ if (!isset($request)) {
109
  return;
110
  }
111
 
134
  'post_type' => array('post'),
135
  'tax_query' => array(),
136
  'post_status' => 'publish',
137
+ 'posts_per_page' => 1000,
138
  'paged' => $page,
139
  'orderby' => 'date',
140
  'order' => 'DESC',
160
  switch ($this->model->type) {
161
  case 'sitemap-news':
162
  case 'sitemap-post':
163
+ $sq_query['posts_per_page'] = $this->posts_limit;
164
  break;
165
  case 'sitemap-category':
166
  case 'sitemap-post_tag':
170
  break;
171
  case 'sitemap-page':
172
  $sq_query['post_type'] = array('page');
173
+ $sq_query['posts_per_page'] = $this->posts_limit;
174
  break;
175
  case 'sitemap-attachment':
176
  $sq_query['post_type'] = array('attachment');
208
  $types = array('custom-post');
209
  }
210
  $sq_query['post_type'] = $types;
211
+ $sq_query['posts_per_page'] = $this->posts_limit;
212
+
213
  break;
214
  case 'sitemap-archive':
215
  add_filter('sq-sitemap-archive', array($this, 'archiveFilter'), 5);
224
  }
225
 
226
  public function getSquirrlyHeader($header) {
227
+ if ($this->model->type <> 'locations') {
228
+ $header = '<?xml-stylesheet type="text/xsl" href="/' . _SQ_ASSETS_RELATIVE_URL_ . 'css/sitemap' . ($this->model->type == 'sitemap' ? 'index' : '') . '.xsl"?>' . "\n";
229
  $header .= '<!-- generated-on="' . date('Y-m-d\TH:i:s+00:00') . '" -->' . "\n";
230
  $header .= '<!-- generator="Squirrly SEO Sitemap" -->' . "\n";
231
+ $header .= '<!-- generator-url="https://wordpress.org/plugins/squirrly-seo/" -->' . "\n";
232
+ $header .= '<!-- generator-version="' . SQ_VERSION . '" -->' . "\n";
233
  }
234
 
235
  return $header;
373
  }
374
  }
375
  }
376
+
377
  }
378
  }
379
  $this->showSitemapFooter();
457
  foreach ($xml as $key => $data) {
458
  if ($data === false) {
459
  $str .= $tab . '<' . $key . '>' . "\n";
460
+ } elseif (!is_array($data) && $data <> '') {
461
  $str .= $tab . '<' . $key . ($key == 'video:player_loc' ? ' allow_embed="yes"' : '') . '>' . $data . ((strpos($data, '?') == false && $key == 'video:player_loc') ? '' : '') . '</' . $key . '>' . "\n";
462
  } else {
463
  if ($this->getRecursiveXml($data) <> '') {
controllers/Snippet.php CHANGED
@@ -48,7 +48,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
48
  * Hook the Head sequence in frontend when user is logged in
49
  */
50
  public function hookFronthead() {
51
- if (current_user_can('sq_manage_snippet')) {
52
  //prevent some compatibility errors with other plugins
53
  remove_all_actions('print_media_templates');
54
 
@@ -98,7 +98,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
98
  public function hookTopmenuFrontend($wp_admin_bar) {
99
  global $wp_the_query;
100
 
101
- if (is_admin() || !is_user_logged_in()) {
102
  return;
103
  }
104
 
@@ -111,7 +111,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
111
  return;
112
  }
113
 
114
- if (!current_user_can('sq_manage_snippets')) {
115
  $current_object = $wp_the_query->get_queried_object();
116
 
117
  if (empty($current_object))
@@ -119,12 +119,12 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
119
 
120
  if (!empty($current_object->post_type)
121
  && ($post_type_object = get_post_type_object($current_object->post_type))
122
- && current_user_can('edit_post', $current_object->ID)
123
  && $post_type_object->show_in_admin_bar
124
  && $edit_post_link = get_edit_post_link($current_object->ID)) {
125
  } elseif (!empty($current_object->taxonomy)
126
  && ($tax = get_taxonomy($current_object->taxonomy))
127
- && current_user_can('edit_term', $current_object->term_id)
128
  && $edit_term_link = get_edit_term_link($current_object->term_id, $current_object->taxonomy)) {
129
  } else {
130
  return;
@@ -136,7 +136,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
136
  //Dev Kit
137
  $style = '';
138
  if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
139
- $style = '<style>.sq_logo{background-image:url("' . SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo') . '") !important;background-size: 100%;}</style>';
140
  }
141
 
142
  $wp_admin_bar->add_node(array(
@@ -169,7 +169,7 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
169
  parent::action();
170
 
171
  $response = array();
172
- if (!current_user_can('sq_manage_snippet')) {
173
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
174
  SQ_Classes_Helpers_Tools::setHeader('json');
175
  echo wp_json_encode($response);
48
  * Hook the Head sequence in frontend when user is logged in
49
  */
50
  public function hookFronthead() {
51
+ if (SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
52
  //prevent some compatibility errors with other plugins
53
  remove_all_actions('print_media_templates');
54
 
98
  public function hookTopmenuFrontend($wp_admin_bar) {
99
  global $wp_the_query;
100
 
101
+ if (is_admin() || !function_exists('is_user_logged_in') || !is_user_logged_in()) {
102
  return;
103
  }
104
 
111
  return;
112
  }
113
 
114
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippets')) {
115
  $current_object = $wp_the_query->get_queried_object();
116
 
117
  if (empty($current_object))
119
 
120
  if (!empty($current_object->post_type)
121
  && ($post_type_object = get_post_type_object($current_object->post_type))
122
+ && SQ_Classes_Helpers_Tools::userCan('edit_post', $current_object->ID)
123
  && $post_type_object->show_in_admin_bar
124
  && $edit_post_link = get_edit_post_link($current_object->ID)) {
125
  } elseif (!empty($current_object->taxonomy)
126
  && ($tax = get_taxonomy($current_object->taxonomy))
127
+ && SQ_Classes_Helpers_Tools::userCan('edit_term', $current_object->term_id)
128
  && $edit_term_link = get_edit_term_link($current_object->term_id, $current_object->taxonomy)) {
129
  } else {
130
  return;
136
  //Dev Kit
137
  $style = '';
138
  if (SQ_Classes_Helpers_Tools::getOption('sq_devkit_logo')) {
139
+ $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>';
140
  }
141
 
142
  $wp_admin_bar->add_node(array(
169
  parent::action();
170
 
171
  $response = array();
172
+ if (!SQ_Classes_Helpers_Tools::userCan('sq_manage_snippet')) {
173
  $response['error'] = SQ_Classes_Error::showNotices(esc_html__("You do not have permission to perform this action", _SQ_PLUGIN_NAME_), 'sq_error');
174
  SQ_Classes_Helpers_Tools::setHeader('json');
175
  echo wp_json_encode($response);
core/BlockFeatures.php CHANGED
@@ -36,8 +36,8 @@ class SQ_Core_BlockFeatures extends SQ_Classes_BlockController {
36
  'details' => 'https://howto.squirrly.co/kb/install-squirrly-seo-plugin/#journey',
37
  ), //14 Days Journey Course
38
  array(
39
- 'title' => "Smart SEO Strategy",
40
- 'description' => "The Non-Human SEO Consultant with <strong>over 100+ signals</strong> that prepares your goals to take you closer to the first page of Google.",
41
  'mode' => "Free",
42
  'option' => false,
43
  'active' => true,
36
  'details' => 'https://howto.squirrly.co/kb/install-squirrly-seo-plugin/#journey',
37
  ), //14 Days Journey Course
38
  array(
39
+ 'title' => "Next SEO Goals",
40
+ 'description' => "The AI SEO Consultant with <strong>over 100+ signals</strong> that prepares your goals to take you closer to the first page of Google.",
41
  'mode' => "Free",
42
  'option' => false,
43
  'active' => true,
core/Blocklogin.php CHANGED
@@ -12,6 +12,7 @@ class SQ_Core_Blocklogin extends SQ_Classes_BlockController {
12
  }
13
 
14
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('login');
 
15
  echo $this->getView('Blocks/Login');
16
  }
17
 
12
  }
13
 
14
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('login');
15
+ SQ_Classes_Error::hookNotices();
16
  echo $this->getView('Blocks/Login');
17
  }
18
 
languages/squirrly-seo-ro_RO.mo CHANGED
Binary file
languages/squirrly-seo-ro_RO.po CHANGED
@@ -1,27 +1,30 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO\n"
4
- "POT-Creation-Date: 2021-03-22 08:13+0200\n"
5
- "PO-Revision-Date: 2021-03-22 09:03+0200\n"
6
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
7
  "Language-Team: Squirrly UK <support@squirrly.co>\n"
8
  "Language: ro_RO\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && n"
17
- "%100<=19) ? 1 : 2);\n"
 
18
  "X-Poedit-SearchPath-0: .\n"
 
19
 
20
- #: classes/RemoteController.php:279
21
  msgid "Too many API attempts, please slow down the request."
22
  msgstr "Prea multe încercări de API, vă rugăm să încetiniți solicitarea."
23
 
24
- #: classes/RemoteController.php:283
25
  msgid ""
26
  "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
27
  "in a minute."
@@ -29,81 +32,82 @@ msgstr ""
29
  "Squirrly Cloud este în stare de întreținere în acest moment. Dar vom reveni "
30
  "într-un minut."
31
 
32
- #: classes/RemoteController.php:1323
33
  msgid "Keyword:"
34
  msgstr "Cuvant cheie:"
35
 
36
- #: classes/RemoteController.php:1324
37
  msgid "date"
38
  msgstr "data"
39
 
40
- #: classes/RemoteController.php:1325 view/Frontend/Assistant.php:35
41
  msgid ""
42
- "To load Squirrly Live Assistant and optimize this page, click to connect to "
43
- "Squirrly Data Cloud."
44
  msgstr ""
45
  "Pentru a încărca Squirrly Live Assistant și a optimiza această pagină, "
46
- "faceți clic pentru a vă conecta la Squirrly Data Cloud."
47
 
48
- #: classes/RemoteController.php:1326 controllers/CheckSeo.php:329
49
- #: controllers/Patterns.php:21 controllers/Research.php:295
50
- #: controllers/Research.php:326 controllers/Research.php:380
51
- #: controllers/Research.php:690 view/Blocks/Snippet.php:1227
 
52
  msgid "Saved!"
53
  msgstr "Salvat!"
54
 
55
- #: classes/RemoteController.php:1327
56
  msgid "Read it!"
57
  msgstr "Citeste!"
58
 
59
- #: classes/RemoteController.php:1328
60
  msgid "Insert it!"
61
  msgstr "Adauga!"
62
 
63
- #: classes/RemoteController.php:1329
64
  msgid "Reference"
65
  msgstr "Referință"
66
 
67
- #: classes/RemoteController.php:1330
68
  msgid "Insert as box"
69
  msgstr "Adaugă o casuță"
70
 
71
- #: classes/RemoteController.php:1331
72
  msgid "Insert Link"
73
  msgstr "Adaugă Link"
74
 
75
- #: classes/RemoteController.php:1332
76
  msgid "Not relevant?"
77
  msgstr "Nu este relevant?"
78
 
79
- #: classes/RemoteController.php:1333
80
  msgid "Insert in your article"
81
  msgstr "Adauga paragraf in articol"
82
 
83
- #: classes/RemoteController.php:1334
84
  msgid ":( An error occurred while processing your request. Please try again"
85
  msgstr ":( A apărut o eroare la procesarea cererii. Încercați din nou"
86
 
87
- #: classes/RemoteController.php:1335
88
  msgid "No results found!"
89
  msgstr "Nu s-a gasit nimic!"
90
 
91
- #: classes/RemoteController.php:1336
92
  #, php-format
93
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
94
  msgstr ""
95
  "[ ATTRIBUTE: Verificați: %s pentru a vedea condițiile de atribuire a "
96
  "imaginii ]"
97
 
98
- #: classes/RemoteController.php:1337
99
  msgid "Has creative commons attributes"
100
  msgstr "Are condiții de atribuire"
101
 
102
- #: classes/RemoteController.php:1338
103
  msgid "No known copyright restrictions"
104
  msgstr "Nu sunt restricții de copyright cunoscute"
105
 
106
- #: classes/RemoteController.php:1339
107
  msgid ""
108
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
109
  "optimize for a keyword before publishing?"
@@ -111,97 +115,103 @@ msgstr ""
111
  "Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa îl "
112
  "optimizezi înainte de publicare?"
113
 
114
- #: classes/RemoteController.php:1340
115
  msgid "Your Subscription has Expired"
116
  msgstr "Abonamentul dvs. a expirat"
117
 
118
- #: classes/RemoteController.php:1341
119
  msgid "There are no keywords saved in briefcase yet"
120
- msgstr "Încă nu există cuvinte cheie salvate în Servieta Squirrly"
121
 
122
- #: classes/RemoteController.php:1342
123
  #, php-format
124
  msgid "Congratulations! Your article is 100% optimized!"
125
  msgstr "Felicitări! Articolul dumneavoastră este 100% optimizat !"
126
 
127
- #: classes/RemoteController.php:1343
128
  #, php-format
129
  msgid "appears too many times. Try to remove %s of them"
130
  msgstr "apare de prea multe ori. Șterge %s cuvint(e) cheie"
131
 
132
- #: classes/RemoteController.php:1344
133
  #, php-format
134
  msgid "write %s more words"
135
  msgstr "mai adaugă %s cuvinte"
136
 
137
- #: classes/RemoteController.php:1345
138
  #, php-format
139
  msgid "Add the keyword in the %s of your article"
140
  msgstr "Adaugă cuvântul cheie la %s articolului"
141
 
142
- #: classes/RemoteController.php:1346
143
  msgid "Click to keep the highlight on"
144
  msgstr "Faceți clic pentru a continua sublinierea"
145
 
146
- #: classes/RemoteController.php:1347
147
  msgid "introduction"
148
  msgstr "introducere"
149
 
150
- #: classes/RemoteController.php:1348
151
  #, php-format
152
  msgid "Write more words after the %s keyword"
153
  msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
154
 
155
- #: classes/RemoteController.php:1349
156
  msgid "or use synonyms"
157
  msgstr "sau foloseste sinonime"
158
 
159
- #: classes/RemoteController.php:1350
160
  #, php-format
161
  msgid "add %s more word(s)"
162
  msgstr "mai adauga %s cuvinte"
163
 
164
- #: classes/RemoteController.php:1351
165
  #, php-format
166
  msgid "or remove %s word(s)"
167
  msgstr "sau sterge %s cuvinte"
168
 
169
- #: classes/RemoteController.php:1352
170
  #, php-format
171
  msgid "add the selected keyword %s more time(s) "
172
- msgstr "adaugă cuvântul cheie selectat %s mai multe ori(e)"
173
 
174
- #: classes/RemoteController.php:1353
175
  #, php-format
176
  msgid "write %s more words to start calculating"
177
  msgstr "scrie %s cuvinte pentru a se putea verifica"
178
 
179
- #: classes/RemoteController.php:1354 view/Research/Research.php:49
180
  msgid "Add to Briefcase"
181
- msgstr "Adăugați în Servieta Squirrly"
182
 
183
- #: classes/RemoteController.php:1355
184
  msgid "Add Keyword to Briefcase"
185
- msgstr "Adăugați cuvinte cheie în Servieta Squirrly"
186
 
187
- #: classes/RemoteController.php:1356
188
  msgid "Select"
189
  msgstr "Selectează"
190
 
191
- #: classes/RemoteController.php:1357 view/Blocks/Snippet.php:133
192
- #: view/Blocks/Snippet.php:594 view/Blocks/Snippet.php:862
193
  msgid "Auto Draft"
194
  msgstr "Auto Draft"
195
 
196
- #: classes/RemoteController.php:1358
 
 
 
 
 
 
 
 
197
  msgid ""
198
- "You’ve already used the Live Assistant to optimize this post when creating "
199
- "it in your Page Builder. Please go back and resume your optimization work "
200
- "there."
201
  msgstr ""
202
- "Ați folosit deja Asistentul Live pentru a optimiza această postare atunci "
203
- "când ați creat-o în Generatorul de pagini. Vă rugăm să vă întoarceți și "
204
- "vă reluați activitatea de optimizare acolo."
205
 
206
  #: classes/helpers/Sanitize.php:196
207
  msgid "The code for Google Webmaster Tool is incorrect."
@@ -243,59 +253,59 @@ msgstr "Codul Facebook Pixel poate conține doar numere."
243
  msgid "The code for Facebook App must only contain numbers."
244
  msgstr "Codul Facebook App poate conține doar numele."
245
 
246
- #: classes/helpers/Tools.php:83
247
  msgid "Getting started"
248
  msgstr "Setări"
249
 
250
- #: classes/helpers/Tools.php:108
251
  msgid "Documentation"
252
  msgstr "Documentație"
253
 
254
- #: classes/helpers/Tools.php:109
255
  msgid "Leave a review"
256
  msgstr "Lasă o evaluare"
257
 
258
- #: classes/helpers/Tools.php:523
259
- msgid "Format"
260
- msgstr "Format"
261
-
262
- #: classes/helpers/Tools.php:542 classes/helpers/Tools.php:580
263
  msgid "Category"
264
  msgstr "Categorie"
265
 
266
- #: classes/helpers/Tools.php:561 classes/helpers/Tools.php:599
267
  msgid "Tag"
268
  msgstr "Etichetă"
269
 
270
- #: classes/helpers/Tools.php:618
 
 
 
 
271
  msgid "Shipping Option"
272
  msgstr "Opțiunea de expediere"
273
 
274
- #: classes/helpers/Tools.php:637
275
  msgid "Author at"
276
  msgstr "Autor la"
277
 
278
- #: classes/helpers/Tools.php:695
279
  msgid "Are you looking for"
280
  msgstr "Căutați"
281
 
282
- #: classes/helpers/Tools.php:696
283
  msgid "These are the results for"
284
  msgstr "Nu s-a găsit nimic pentru"
285
 
286
- #: classes/helpers/Tools.php:696
287
  msgid "that you can find on our website."
288
  msgstr "pe care îl puteți găsi pe site-ul nostru."
289
 
290
- #: classes/helpers/Tools.php:732
291
  msgid "Page not found"
292
  msgstr "Pagina nu a fost găsită"
293
 
294
- #: classes/helpers/Tools.php:733
295
  msgid "This page could not be found on our website."
296
  msgstr "Această pagină nu a putut fi găsită pe site-ul nostru."
297
 
298
- #: classes/helpers/Tools.php:1065
299
  msgid "For better text comparison you need to install PHP mbstring extension."
300
  msgstr ""
301
  "Pentru o comparație mai bună a textului, trebuie să instalați extensia PHP "
@@ -336,7 +346,7 @@ msgstr "Adăugă numele site-ului la descrierea postării"
336
 
337
  #: config/config.php:37
338
  msgid "Adds the tagline/description of your site"
339
- msgstr "Adăugă titlul / descrierea site-ului dvs."
340
 
341
  #: config/config.php:38
342
  msgid "Adds the post category (several categories will be comma-separated)"
@@ -381,53 +391,70 @@ msgid "Displays the author's nicename"
381
  msgstr "Afișează numele autorului"
382
 
383
  #: config/config.php:48
384
- msgid "Adds the author's biographical info to the post description"
385
- msgstr "Adăuga informațiile biografice ale autorului la descrierea postării"
386
 
387
  #: config/config.php:49
388
- msgid "Displays the current date"
389
- msgstr "Afișează data curentă"
390
 
391
  #: config/config.php:50
 
 
 
 
392
  msgid "Displays the date of the post/page once it's published"
393
  msgstr "Afișează data postării / paginii odată ce a fost publicată"
394
 
395
- #: config/config.php:51
 
 
 
 
396
  msgid "Adds the current day"
397
  msgstr "Adăugă ziua curentă"
398
 
399
- #: config/config.php:52
400
  msgid "Adds the current month"
401
  msgstr "Adăuga luna curentă"
402
 
403
- #: config/config.php:53
404
  msgid "Adds the current year"
405
  msgstr "Adăugă anul curent"
406
 
407
- #: config/config.php:54
408
  msgid "Adds the title of a page's parent page"
409
  msgstr "Adăugă titlul paginii părinte a unei pagini"
410
 
411
- #: config/config.php:55
412
  msgid "Adds the product name from Woocommerce for the current product"
413
  msgstr "Adăugă numele produsului de la Woocommerce pentru produsul curent"
414
 
415
- #: config/config.php:56
416
  msgid "Adds the product price from Woocommerce for the current product"
417
  msgstr "Adăuga prețul produsului de la Woocommerce pentru produsul curent"
418
 
419
- #: config/config.php:57
 
 
 
 
 
420
  msgid "Adds the product sale price from Woocommerce for the current product"
421
  msgstr ""
422
  "Adăuga prețul de vânzare al produsului de la Woocommerce pentru produsul "
423
  "curent"
424
 
425
- #: config/config.php:58
426
  msgid ""
427
  "Adds the product price currency from Woocommerce for the current product"
428
  msgstr ""
429
  "Adăuga moneda prețului produsului de la Woocommerce pentru produsul curent"
430
 
 
 
 
 
431
  #: controllers/Api.php:69
432
  msgid "Invalid Token. Please try again"
433
  msgstr "Simbol Invalid. Vă rugăm să încercați din nou"
@@ -448,36 +475,36 @@ msgstr "Conexiunea a expirat. Vă rugăm să încercați din nou."
448
  msgid "Wrong Params"
449
  msgstr "Parametrii greșiți"
450
 
451
- #: controllers/Assistant.php:71 controllers/Research.php:105
452
  msgid "No keyword found."
453
  msgstr "Nu a fost găsit niciun cuvânt cheie."
454
 
455
  #: controllers/Assistant.php:110 controllers/Assistant.php:137
456
- #: controllers/Audits.php:343 controllers/Ranking.php:148
457
  #: controllers/SeoSettings.php:146 controllers/SeoSettings.php:192
458
  #: controllers/SeoSettings.php:209 controllers/SeoSettings.php:233
459
  #: controllers/SeoSettings.php:272 controllers/SeoSettings.php:301
460
- #: controllers/SeoSettings.php:332 controllers/SeoSettings.php:655
461
- #: controllers/SeoSettings.php:766 controllers/SeoSettings.php:801
462
  msgid "Saved"
463
  msgstr "Salvat"
464
 
465
  #: controllers/Assistant.php:116 controllers/BulkSeo.php:73
466
- #: controllers/Patterns.php:107 controllers/Post.php:286
467
- #: controllers/Post.php:339 controllers/Post.php:370 controllers/Post.php:405
468
- #: controllers/PostsList.php:190 controllers/Research.php:186
469
- #: controllers/Research.php:193 controllers/Research.php:231
470
- #: controllers/Research.php:253 controllers/Research.php:276
471
- #: controllers/Research.php:306 controllers/Research.php:333
472
- #: controllers/Research.php:357 controllers/Research.php:387
473
- #: controllers/Research.php:408 controllers/Research.php:489
474
- #: controllers/Research.php:640 controllers/Research.php:664
475
- #: controllers/Research.php:698 controllers/Research.php:724
476
- #: controllers/SeoSettings.php:405 controllers/SeoSettings.php:644
477
- #: controllers/SeoSettings.php:668 controllers/SeoSettings.php:681
478
- #: controllers/SeoSettings.php:702 controllers/SeoSettings.php:721
479
- #: controllers/SeoSettings.php:739 controllers/SeoSettings.php:781
480
- #: controllers/Snippet.php:171
481
  msgid "You do not have permission to perform this action"
482
  msgstr "Nu aveți permisiunea de a efectua această acțiune"
483
 
@@ -485,58 +512,68 @@ msgstr "Nu aveți permisiunea de a efectua această acțiune"
485
  msgid "Error: Could not save the data."
486
  msgstr "Nu s-a putut salva data."
487
 
488
- #: controllers/Audits.php:141
489
  msgid "The audit was not found. Please load another audit."
490
  msgstr "Auditul nu a fost găsit. Vă rugăm să încărcați un alt audit."
491
 
492
- #: controllers/Audits.php:170
493
  msgid "Could not load the Audit Page."
494
  msgstr "Nu s-a putut încărca pagina de audit."
495
 
496
- #: controllers/Audits.php:284
497
  msgid "Audit page is added. The audit may take a while so please be patient."
498
  msgstr ""
499
  "S-a adăugat pagina de audit. Auditul poate dura câteva minute, vă rugăm să "
500
  "aveți răbdare."
501
 
502
- #: controllers/Audits.php:287
503
  msgid "You reached the maximum number of audit pages for your account."
504
  msgstr "Ați atins numărul maxim de pagini de audit pentru contul dvs."
505
 
506
- #: controllers/Audits.php:290
507
  msgid "Error! Could not add the audit page."
508
  msgstr "Eroare! Nu se poate adăuga pagina de audit."
509
 
510
- #: controllers/Audits.php:294
511
  msgid "Error! Could not find the audit page in your website."
512
  msgstr "Eroare! Nu se poate adăuga pagina de audit in website."
513
 
514
- #: controllers/Audits.php:304
515
  msgid "Audit page sent for recheck. It may take a while so please be patient."
516
  msgstr ""
517
  "Pagina de audit a fost trimisă pentru verificare. Poate dura ceva timp, vă "
518
  "rugăm să aveți răbdare."
519
 
520
- #: controllers/Audits.php:307 controllers/Audits.php:310
 
 
 
 
 
 
 
 
 
521
  msgid "The audit for all pages can be made once an hour."
522
  msgstr "Auditul pentru toate paginile se poate face o dată pe oră."
523
 
524
- #: controllers/Audits.php:320
525
  msgid "The audit page is deleted."
526
  msgstr "Pagina de audit a fost ștearsă."
527
 
528
- #: controllers/Audits.php:322 controllers/FocusPages.php:417
529
- #: controllers/Ranking.php:175 controllers/Ranking.php:193
530
- #: controllers/Ranking.php:211 controllers/Research.php:222
531
- #: controllers/Research.php:225 controllers/Research.php:248
532
- #: controllers/Research.php:270 controllers/Research.php:328
533
- #: controllers/Research.php:352 controllers/Research.php:536
534
- #: controllers/Research.php:607 controllers/Research.php:634
535
- #: controllers/Research.php:659 controllers/Research.php:744
 
536
  msgid "Invalid params!"
537
  msgstr "Parametrii greșiți!"
538
 
539
- #: controllers/Audits.php:345
540
  msgid "Not a valid email address."
541
  msgstr "Te rog introdu o adresă email validă."
542
 
@@ -560,44 +597,45 @@ msgstr "Salvat! Sarcina marcată ca terminată."
560
  msgid "Focus Page does not exist or was deleted from your website."
561
  msgstr "Acest Focus Page nu există sau a fost șters de pe site-ul dvs. web."
562
 
563
- #: controllers/FocusPages.php:348
564
  msgid "Focus page is added. The audit may take a while so please be patient."
565
  msgstr ""
566
  "Se adaugă Focus Page. Auditul poate dura ceva timp, vă rugăm să aveți "
567
  "răbdare."
568
 
569
- #: controllers/FocusPages.php:355
570
  msgid "You reached the maximum number of focus pages for all your websites."
571
  msgstr ""
572
  "Ați atins numărul maxim de Focus Pages pentru toate site-urile dvs. web."
573
 
574
- #: controllers/FocusPages.php:358
575
  msgid "Error! Could not add the focus page."
576
  msgstr "Eroare! Nu se poate adăuga acest Focus Page."
577
 
578
- #: controllers/FocusPages.php:361
579
  msgid "Error! This focus page is not public."
580
  msgstr "Eroare! Acest Focus Page nu este publică."
581
 
582
- #: controllers/FocusPages.php:365 controllers/FocusPages.php:404
583
- msgid "Error! Could not find the focus page in your website."
584
- msgstr "Eroare! Nu s-a putut găsi acest Focus Page pe site-ul dvs. web."
 
585
 
586
- #: controllers/FocusPages.php:392
587
  msgid "Focus page sent for recheck. It may take a while so please be patient."
588
  msgstr ""
589
  "Focus Page a fost trimis pentru verificare. Poate dura ceva timp, vă rugăm "
590
  "să aveți răbdare."
591
 
592
- #: controllers/FocusPages.php:395 controllers/FocusPages.php:399
593
  msgid "You've made too many requests, please wait a few minutes."
594
  msgstr "Ați făcut prea multe cereri, vă rugăm să așteptați câteva minute."
595
 
596
- #: controllers/FocusPages.php:415
597
  msgid "The focus page is deleted"
598
  msgstr "Pagina de focalizare este ștearsă"
599
 
600
- #: controllers/Menu.php:86
601
  #, php-format
602
  msgid ""
603
  "An error occurred during activation. If this error persists, please contact "
@@ -606,179 +644,230 @@ msgstr ""
606
  "A apărut o eroare în timpul activării. Dacă această eroare persistă, vă "
607
  "rugăm să ne contactați la adresa: %s"
608
 
609
- #: controllers/Menu.php:123
610
  msgid "Dashboard"
611
  msgstr "Dashboard"
612
 
613
- #. Author of the plugin/theme
614
- #: controllers/Menu.php:148 controllers/Menu.php:253 controllers/Menu.php:280
615
- #: view/Blocks/SLASearch.php:8
616
- msgid "Squirrly SEO"
617
- msgstr "Squirrly SEO"
618
-
619
- #: controllers/Menu.php:217
620
  msgid "SEO Snippet"
621
  msgstr "Snippet SEO"
622
 
623
- #: controllers/Menu.php:232 controllers/Snippet.php:142
624
  msgid "Custom SEO"
625
  msgstr "SEO personalizat"
626
 
627
- #: controllers/Overview.php:69
 
 
 
 
 
628
  #, php-format
629
  msgid ""
630
  "%s, why don't you start a two weeks journey for better rankings? %sStart "
631
  "driving your most valuable pages to Better Rankings today with your current "
632
  "plan.%s"
633
  msgstr ""
634
- "%s, de ce nu începi o călătorie de două săptămâni pentru o clasare mai bună? "
635
  "%sÎncepeți să conduceți cele mai valoroase pagini ale dvs. către un "
636
  "clasament mai bun astăzi cu planul dvs. actual.%s"
637
 
638
- #: controllers/Overview.php:92
639
  #, php-format
640
  msgid ""
641
  "Detected %s: We encourage you to %sImport the Settings and SEO%s from %s and "
642
  "deactivate %s to increase the page loading speed for better Google ranking."
643
  msgstr ""
 
 
 
644
 
645
  #: controllers/Patterns.php:22
646
  msgid "Saved! This is how the preview looks like"
647
  msgstr "Salvat! Așa arată previzualizarea"
648
 
649
- #: controllers/Post.php:333
650
  msgid "Could not add the demo post."
651
  msgstr "Nu s-a putut trimite postul de demo."
652
 
653
- #: controllers/Post.php:394 controllers/Post.php:419
654
  msgid "Can't get the post URL"
655
  msgstr "Nu pot primi URL-ul postului"
656
 
657
- #: controllers/Post.php:424
658
  msgid "Invalid request"
659
  msgstr "Solicitare incorectă"
660
 
661
- #: controllers/PostsList.php:72 controllers/PostsList.php:123
662
  msgid "SQ Snippet"
663
  msgstr "Snipet Squirrly"
664
 
665
- #: controllers/PostsList.php:73 models/PostsList.php:21
666
  msgid "Optimized"
667
  msgstr "Optimizat"
668
 
669
- #: controllers/PostsList.php:208
670
  msgid "Network Error. Please Refresh."
671
  msgstr "Eroare de rețea. Vă rugăm să actualizați."
672
 
673
- #: controllers/PostsList.php:212
674
  #, php-format
675
  msgid "Maintenance. %sWe'll be back in a minute."
676
  msgstr "Întreținere. %s Ne vom întoarce într-un minut."
677
 
678
- #: controllers/PostsList.php:243
679
  msgid "Not Public"
680
  msgstr "Ciorna"
681
 
682
- #: controllers/PostsList.php:244
683
  msgid "Could not process"
684
  msgstr "Nu s-a putut verifica"
685
 
686
- #: controllers/PostsList.php:245
687
  msgid "The Squirrly subscription has expired!"
688
  msgstr "Abonamentul Squirrly a expirat!"
689
 
690
- #: controllers/Ranking.php:87
691
  msgid "Could not load the Rankings."
692
  msgstr "Nu s-a putut încărca Ranking-ul."
693
 
694
- #: controllers/Ranking.php:103
695
  msgid "Could not load data."
696
  msgstr "Nu s-a putut încărca data."
697
 
698
- #: controllers/Ranking.php:157
699
  #, php-format
700
  msgid "Could not refresh the rank. Please check your SERP credits %shere%s"
701
  msgstr ""
702
  "Nu a putut actualiza poziția Google. Vă rugăm să verificați creditele SERP "
703
  "%shere %s"
704
 
705
- #: controllers/Ranking.php:159
706
  #, php-format
707
  msgid "%s is queued and the rank will be checked soon."
708
  msgstr "%s este pus în coadă și poziția Google va fi verificat în curând."
709
 
710
- #: controllers/Ranking.php:170
711
  msgid "The keyword is deleted."
712
  msgstr "Cuvântul cheie este șters."
713
 
714
- #: controllers/Ranking.php:172
715
  msgid "Could not delete the keyword!"
716
  msgstr "Nu s-a putut șterge cuvântul cheie!"
717
 
718
- #: controllers/Ranking.php:191 controllers/Research.php:246
719
- #: controllers/Research.php:268 controllers/Research.php:350
720
- #: controllers/Research.php:657 controllers/Research.php:742
721
  msgid "Deleted!"
722
  msgstr "Șterse!"
723
 
724
- #: controllers/Ranking.php:208
725
  msgid "Sent!"
726
  msgstr "Trimis!"
727
 
728
- #: controllers/Research.php:212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
729
  msgid "Keyword Saved. The rank check will be ready in a minute."
730
  msgstr ""
731
  "Cuvântul cheie este salvat. Verificarea poziției pe Google va fi gata într-"
732
  "un minut."
733
 
734
- #: controllers/Research.php:214 controllers/Research.php:218
735
  msgid "Keyword Saved!"
736
  msgstr "Cuvânt cheie salvat!"
737
 
738
- #: controllers/Research.php:301
739
  msgid "Invalid Label or Color!"
740
  msgstr "Etichetă sau culoare nevalidă!"
741
 
742
- #: controllers/Research.php:382 controllers/Research.php:692
743
- #: controllers/Research.php:718
744
  msgid "Invalid Keyword!"
745
  msgstr "Cuvânt cheie nevalid!"
746
 
747
- #: controllers/Research.php:441 controllers/Research.php:455
748
- #: controllers/Research.php:477 controllers/Research.php:480
749
  #: controllers/SeoSettings.php:454 controllers/SeoSettings.php:457
750
  #: controllers/SeoSettings.php:502 controllers/SeoSettings.php:505
751
  msgid "Error! The backup is not valid."
752
  msgstr "Eroare! Copia de rezervă nu este validă."
753
 
754
- #: controllers/Research.php:475 controllers/SeoSettings.php:452
755
  msgid "Great! The backup is restored."
756
  msgstr "Grozav! Copia de rezervă este restabilită."
757
 
758
- #: controllers/Research.php:483 controllers/SeoSettings.php:460
759
  #: controllers/SeoSettings.php:508
760
  msgid "Error! You have to enter a previously saved backup file."
761
  msgstr "Eroare! Trebuie să introduceți un fișier de backup salvat anterior."
762
 
763
- #: controllers/Research.php:504
764
  msgid "Could not add the keyword to SERP Check. Please try again."
765
  msgstr ""
766
  "Nu s-a putut adăuga cuvântul cheie la Verificare SERP. Vă rugăm să încercați "
767
  "din nou."
768
 
769
- #: controllers/Research.php:506
770
  msgid "The keyword is added to SERP Check."
771
  msgstr "Cuvântul cheie este adăugat la Verificare SERP."
772
 
773
- #: controllers/Research.php:509
774
  msgid "Invalid parameters."
775
  msgstr "Parametri nevalizi."
776
 
777
- #: controllers/Research.php:601
778
  msgid "Keyword Research limit exceeded"
779
  msgstr "Limita de cercetare a cuvintelor cheie a fost depășită"
780
 
781
- #: controllers/Research.php:716
782
  msgid "The keywords are added to SERP Check!"
783
  msgstr "Cuvintele cheie sunt adăugate la Verificare SERP!"
784
 
@@ -798,7 +887,7 @@ msgstr "Contul Google Search Console este deconectat."
798
  msgid "Great! The SEO backup is restored."
799
  msgstr "Grozav! Backupul SEO este restabilit."
800
 
801
- #: controllers/SeoSettings.php:536 controllers/SeoSettings.php:584
802
  #, php-format
803
  msgid ""
804
  "Success! The import from %s was completed successfully and your SEO is safe!"
@@ -818,19 +907,19 @@ msgstr "Toate setările pluginului au fost importate cu succes!"
818
  msgid "No settings found for this plugin/theme."
819
  msgstr "Nu s-au găsit setări pentru acest plugin / temă."
820
 
821
- #: controllers/SeoSettings.php:604 models/Rollback.php:98
822
  msgid "Rollback to Previous Version"
823
  msgstr "Rollback la versiunea anterioară"
824
 
825
- #: controllers/SeoSettings.php:626
826
  msgid "Reinstall Current Version"
827
  msgstr "Reinstalați versiunea curentă"
828
 
829
- #: controllers/SeoSettings.php:657
830
  msgid "Could not save the changes"
831
  msgstr "Nu s-a putut salva modificările"
832
 
833
- #: controllers/SeoSettings.php:692
834
  msgid ""
835
  "Error! Could not get the code. Connect to Google Search Console and validate "
836
  "the connection."
@@ -838,7 +927,7 @@ msgstr ""
838
  "Eroare! Nu s-a putut obține codul. Conectați-vă la Google Search Console și "
839
  "validați conexiunea."
840
 
841
- #: controllers/SeoSettings.php:712
842
  msgid ""
843
  "Error! Could not get the tracking code. Connect to Google Analytics and get "
844
  "the website tracking code from Admin area."
@@ -846,19 +935,21 @@ msgstr ""
846
  "Eroare! Nu s-a putut obține codul de urmărire. Conectați-vă la Google "
847
  "Analytics și obțineți codul de urmărire a site-ului din zona de administrare."
848
 
849
- #: controllers/SeoSettings.php:774 controllers/SeoSettings.php:809
850
  msgid "Could not add the post type."
851
  msgstr "Nu s-a putut adăuga tipul de post."
852
 
853
- #: controllers/Snippet.php:87
854
  msgid "Squirrly SEO Snippet"
855
  msgstr "Squirrly SEO Snippet"
856
 
857
- #: controllers/Snippet.php:190
858
  #, php-format
859
  msgid ""
860
  "Could not save the snippet. Please check the database table %s integrity."
861
  msgstr ""
 
 
862
 
863
  #: core/BlockSupport.php:31
864
  msgid "Thank you for your feedback."
@@ -868,7 +959,7 @@ msgstr "Vă mulțumim pentru feedback-ul dumneavoastră."
868
  msgid "No message."
869
  msgstr "Nici un mesaj."
870
 
871
- #: core/Blocklogin.php:53
872
  #, php-format
873
  msgid ""
874
  "We found your email, so it means you already have a Squirrly.co account. "
@@ -879,61 +970,51 @@ msgstr ""
879
  "Squirrly.co. %sClick pe %sAm deja un cont%s și autentifică-te. Dacă v-ați "
880
  "uitat parola, faceți clic pe %shere%s"
881
 
882
- #: core/Blocklogin.php:56
883
  msgid "Your email is not valid. Please enter a valid email."
884
  msgstr ""
885
  "Adresa dvs. de e-mail nu este validă. Vă rugăm să introduceți un e-mail "
886
  "valid."
887
 
888
- #: core/Blocklogin.php:59
889
  msgid "We could not create your account. Please enter a valid email."
890
  msgstr ""
891
  "Nu am putut să vă creăm contul. Vă rugăm să introduceți un e-mail valid."
892
 
893
- #: core/Blocklogin.php:81
894
  #, php-format
895
  msgid ""
896
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
897
- "webmaster) and request them to add %s to their IP whitelist."
898
  msgstr ""
899
  "Eroare: Nu s-a putut conecta la gazdă :( . Vă rugăm să contactați gazda site-"
900
  "ului dvs. (sau webmasterul) și să le cereți să adauge %s la lista albă de IP-"
901
  "uri."
902
 
903
- #: core/Blocklogin.php:85
904
- msgid "Could not send your information to Squirrly. Please try again."
905
  msgstr ""
906
- "Nu am putut trimite informațiile dvs. către Squirrly. Vă rugăm să încercați "
907
- "din nou."
908
 
909
- #: core/Blocklogin.php:107
910
  msgid "Wrong email or password!"
911
  msgstr "Email sau Parola gresita!"
912
 
913
- #: core/Blocklogin.php:110
914
  msgid "You can only use this account for the URL you registered first!"
915
  msgstr ""
916
  "Puteți utiliza acest cont doar pentru URL-ul pe care l-ați înregistrat mai "
917
  "întâi!"
918
 
919
- #: core/Blocklogin.php:113
920
  msgid "You disconnected your website from"
921
  msgstr "Ați deconectat site-ul dvs. de la"
922
 
923
- #: core/Blocklogin.php:116
924
  msgid "An error occured."
925
  msgstr "A apărut o eroare."
926
 
927
- #: core/Blocklogin.php:139
928
- #, php-format
929
- msgid ""
930
- "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
931
- "webmaster) and request them to add %s to their IP whitelist."
932
- msgstr ""
933
- "Eroare: Nu s-a putut conecta la gazdă :( . Vă rugăm să contactați gazda site-"
934
- "ului dvs. (sau webmasterul) și să le cereți să adauge %s la lista albă de IP-"
935
- "uri."
936
-
937
  #: core/Blocklogin.php:144
938
  msgid "Both fields are required."
939
  msgstr "Ambele câmpuri sunt obligatorii."
@@ -946,28 +1027,46 @@ msgstr "Detalii despre task"
946
  msgid "active task"
947
  msgstr "task activă"
948
 
949
- #: models/Assistant.php:79 view/Blocks/Jorney.php:70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
950
  msgid "Do Keyword Research"
951
  msgstr "Faceți cercetare de cuvinte cheie"
952
 
953
- #: models/Assistant.php:80
954
- #, fuzzy, php-format
955
  msgid ""
956
  "Use Research - Find Keywords to perform your very first keyword research for "
957
  "this website using Squirrly SEO. %s It will guide through the 3 important "
958
  "steps of performing a research. %s Just follow the steps."
959
  msgstr ""
960
- "Utilizați cercetarea - găsiți cuvinte cheie pentru a efectua prima dvs. "
961
- "cercetare de cuvinte cheie pentru acest site web, utilizând Squirrly SEO. "
962
- "%s Se va ghida prin cele 3 etape importante ale efectuării unei cercetări. "
963
- "%s Urmați pașii."
964
 
965
- #: models/Assistant.php:84
966
  msgid "Add Keywords in Briefcase"
967
  msgstr "Adăugați cuvinte cheie în Briefcase"
968
 
969
- #: models/Assistant.php:85
970
- #, fuzzy, php-format
971
  msgid ""
972
  "Use the Briefcase feature to organize and manage your portfolio of keywords. "
973
  "%s You'll need to know and document the keywords that you'll be using "
@@ -978,22 +1077,22 @@ msgid ""
978
  "Briefcase. Only add keywords that you will want to work on at some point in "
979
  "the future and which are on-point with your strategy."
980
  msgstr ""
981
- "Utilizați funcția Servietă pentru a organiza și gestiona portofoliul dvs. de "
982
- "cuvinte cheie. %s Va trebui să cunoașteți și să documentați cuvintele cheie "
983
- "pe care le veți utiliza pe întregul site WordPress. %s Aceasta vă va ajuta "
984
- "păstrați o strategie SEO clară sau vă poate ajuta să formați o strategie "
985
- "SEO. Te va ajuta, de asemenea, te concentrezi și vei vedea când te vei "
986
- "răspândi prea subțire. %s Adăugați primele cuvinte cheie (pe care le-ați "
987
- "cercetat folosind instrumentul Cercetare de cuvinte cheie) la Serviciu "
988
- "Adăugați numai cuvinte cheie la care doriți să lucrați la un moment dat în "
989
- "viitor și care sunt la îndemână cu strategia dvs."
990
-
991
- #: models/Assistant.php:89
992
  msgid "Create Labels for Keywords"
993
  msgstr "Creați etichete pentru cuvintele cheie"
994
 
995
- #: models/Assistant.php:90
996
- #, fuzzy, php-format
997
  msgid ""
998
  "Organize your keywords by using Labels for the keywords you've stored in "
999
  "Briefcase. %s There are many ways to use this: from Customer Journey labels, "
@@ -1003,21 +1102,21 @@ msgid ""
1003
  "organize-and-manage-your-keyword-portfolio/ %s Just add your first label to "
1004
  "complete this task."
1005
  msgstr ""
1006
- "Organizați-vă cuvintele cheie utilizând Etichete pentru cuvintele cheie pe "
1007
- "care le-ați stocat în Serviciu. %s Există mai multe modalități de a utiliza "
1008
- "acest lucru: de la etichetele Călătoriei clienților, la etichete directe sau "
1009
- "indirecte, la cuvinte cheie de bază sau cuvinte cheie secundare ... etc. "
1010
- "Puteți deveni super creativi cu acest lucru. %s Avem o postare de blog "
1011
- "foarte importantă pe care o puteți citi pentru acest http://fourhourseo.com/"
1012
- "pro-course-6-how-to-organize-and-manage-your-keyword-portfolio/ %s Adăugați "
1013
- "doar prima dvs. etichetă pentru a finaliza această sarcină."
1014
 
1015
- #: models/Assistant.php:94
1016
  msgid "Add Keywords to Labels"
1017
  msgstr "Adăugați cuvinte cheie la etichete"
1018
 
1019
- #: models/Assistant.php:95
1020
- #, fuzzy, php-format
1021
  msgid ""
1022
  "Now that you've created your first label, you should label one of your "
1023
  "stored keywords using that label. %s Go to Briefcase. Move your mouse over "
@@ -1026,18 +1125,18 @@ msgid ""
1026
  "Then, assign a label to your keyword in order to complete this task."
1027
  msgstr ""
1028
  "Acum că ați creat prima etichetă, ar trebui să etichetați unul dintre "
1029
- "cuvintele dvs. cheie stocate folosind acea etichetă. %s Accesați servieta. "
1030
- "Mutați mouse-ul peste rândul care conține cuvântul cheie dorit. Apare "
1031
- "butonul de 3 puncte verticale. %s Mutați mouse-ul peste el și va apărea un "
1032
- "meniu. Faceți clic pe Assign Label. %s Apoi, alocați o etichetă cuvântului "
1033
- "dvs. cheie pentru a finaliza această sarcină."
1034
 
1035
- #: models/Assistant.php:99
1036
  msgid "Send Keywords to Rank Checker"
1037
  msgstr "Trimiteți cuvintele cheie către Rank Checker"
1038
 
1039
- #: models/Assistant.php:100
1040
- #, fuzzy, php-format
1041
  msgid ""
1042
  "Now that you (hopefully) have keywords added to your Briefcase, go look at "
1043
  "one of your keywords. Move the mouse over the row with your desired keyword. "
@@ -1047,47 +1146,49 @@ msgid ""
1047
  "start tracking your position in Google for that keyword that is part of your "
1048
  "SEO strategy."
1049
  msgstr ""
1050
- "Acum că (sperăm) aveți cuvinte cheie adăugate în servieta dvs., accesați "
1051
- "unul dintre cuvintele dvs. cheie. Mutați mouse-ul peste rând cu cuvântul "
1052
- "cheie dorit. %s Veți vedea un buton cu 3 puncte verticale în dreapta "
1053
- "rândului. %s Obțineți cursorul mouse-ului peste acel buton. Apare un meniu. "
1054
- "Faceți clic pe Trimitere verificator de rang %s Asta e. Acum, funcția de "
1055
- "verificare de rang SEO a Squirrly va începe urmărească poziția în "
1056
- "Google pentru acel cuvânt cheie care face parte din strategia dvs. SEO."
 
1057
 
1058
- #: models/Assistant.php:106
1059
  msgid "Optimize Using Live Assistant"
1060
  msgstr "Optimizați utilizând Live Assistant"
1061
 
1062
- #: models/Assistant.php:107
1063
- #, fuzzy, php-format
1064
  msgid ""
1065
  "Optimize your first Page or Article using the SEO Live Assistant (SLA) "
1066
  "feature from Squirrly SEO. %s You can either Edit an existing post or create "
1067
  "a new post. (You have your Live Assistant where you have your WP "
1068
  "Editor)%sThe SEO Live Assistant is like having a SEO Consultant near you, "
1069
- "whispering in your ear exactly what you have to do to get a 100% optimized "
1070
- "article or page.%sYou can try the DEMO first, by clicking on the Demo Post "
1071
- "button. It's safe to break anything in the SEO of that page, because it "
1072
- "never gets indexed by Google, since it's a DEMO. It's an easy way to learn "
1073
- "your way around it."
1074
- msgstr ""
1075
- "Optimizează-ți prima pagină sau articol folosind funcția SEO Live Assistant "
1076
- "(SLA) din Squirrly SEO. %s Puteți edita o postare existentă sau crea o nouă "
1077
- "postare. (Ai asistentul tău live unde ai editorul WP) %s Asistentul SEO Live "
1078
- "este ca și cum ai un consultant SEO lângă tine, care îți șoptește în ureche "
1079
- "exact ceea ce trebuie faci pentru a obține un articol sau o pagină "
1080
- "optimizate 100%. încercați mai întâi DEMO, făcând clic pe butonul Demo Post. "
1081
- "Este sigur spargeți orice lucru în SEO-ul acelei pagini, deoarece nu este "
1082
- "niciodată indexat de Google, deoarece este un DEMO. Este un mod ușor de a-ți "
1083
- "învăța drumul în jurul său."
1084
-
1085
- #: models/Assistant.php:113
 
1086
  msgid "Activate SEO Automation"
1087
  msgstr "Activați automatizarea SEO"
1088
 
1089
- #: models/Assistant.php:114
1090
- #, fuzzy, php-format
1091
  msgid ""
1092
  "The %sSEO Automation Features%s of Squirrly SEO are extremely powerful. %s "
1093
  "They help Non-SEO experts avoid many mistakes they would normally make. %s "
@@ -1096,20 +1197,20 @@ msgid ""
1096
  "You'll be able to configure automations according to any post type. %s Turn "
1097
  "the toggle to ON for: %sActivate Patterns%s to complete this task."
1098
  msgstr ""
1099
- "Caracteristicile %sAutomation %s ale Squirrly SEO sunt extrem de puternice. "
1100
- "%s Ajută experții non-SEO să evite multe greșeli pe care le-ar face în mod "
1101
- "normal. %s Ajută experții să controleze orice site WordPress la un nivel "
1102
- "care nu a fost niciodată posibil. (doar asigurați-vă că faceți clic pentru a "
1103
- "vedea setările avansate). %s Veți putea configura automatizări în funcție "
1104
- "de orice tip de postare. %s Activați comutarea la ON pentru: %sActivați "
1105
- "modelele %s pentru a finaliza această sarcină."
1106
 
1107
- #: models/Assistant.php:118
1108
  msgid "Activate METAs"
1109
  msgstr "Activați META-urile"
1110
 
1111
- #: models/Assistant.php:119
1112
- #, fuzzy, php-format
1113
  msgid ""
1114
  "Activate the %sMETA settings%s from the Squirrly SEO Plugin. %s You can "
1115
  "import ALL meta settings you've made with other plugins in WordPress into "
@@ -1119,21 +1220,21 @@ msgid ""
1119
  "%s Make sure you click on %sSave settings%s after you switch anything on or "
1120
  "off."
1121
  msgstr ""
1122
- "Activați setările %sMETA %s din pluginul SEO Squirrly. %s Puteți importa "
1123
- "TOATE setările meta pe care le-ați făcut cu alte pluginuri în WordPress în "
1124
- "pluginul dvs. SEO Squirrly. Astfel, totul va fi păstrat 100%% intact, fără "
1125
- "dureri de cap. %s Pentru a finaliza această sarcină, trebuie să activați: "
1126
- "%s - Optimizați titlurile %s - Optimizați descrierile %s - Adăugați link-ul "
1127
- "Canon META %s Asigurați-vă că faceți clic pe %sSave settings %s după ce ați "
1128
- "activat sau dezactivat ceva."
1129
 
1130
- #: models/Assistant.php:123 view/Blocks/Snippet.php:373
1131
- #: view/SeoSettings/Jsonld.php:36
1132
  msgid "Activate JSON-LD"
1133
  msgstr "Activați JSON-LD"
1134
 
1135
- #: models/Assistant.php:124
1136
- #, fuzzy, php-format
1137
  msgid ""
1138
  "%sJSON-LD Structured Data%s needs to be activated. %s The Duplicate Removal "
1139
  "feature of Squirrly SEO will make sure that if you have more than one JSON-"
@@ -1145,23 +1246,24 @@ msgid ""
1145
  "this site. %s Then, at URL-level you will be able to add custom JSON-LD if "
1146
  "you're an advanced user."
1147
  msgstr ""
1148
- "%sJSON-LD Date structurate %s trebuie să fie activate. %s Funcția de "
1149
- "eliminare duplicată a Squirrly SEO va asigura dacă aveți mai multe "
1150
- "definiții JSON-LD în codul sursă al oricărei URL, definiția creată de "
1151
- "Squirrly SEO va fi singura care rămâne. %s Asigurați-vă că configurați "
1152
- "toate informațiile despre organizația dvs. sau marca personală aici. %s "
1153
- "Pentru a termina toată configurația legată de JSON-LD, vizitați și secțiunea "
1154
- "%sSocial Media %s din pagina noastră de setări și scrieți în profilurile "
1155
- "dvs. de socializare pentru acest site. %s Apoi, la nivelul URL veți putea "
1156
- "adăuga JSON-LD personalizat dacă sunteți un utilizator avansat."
1157
-
1158
- #: models/Assistant.php:128 view/Blocks/Snippet.php:555
1159
- #: view/SeoSettings/Automation.php:386 view/SeoSettings/Social.php:48
 
1160
  msgid "Activate Open Graph"
1161
  msgstr "Activați Open Graph"
1162
 
1163
- #: models/Assistant.php:129
1164
- #, fuzzy, php-format
1165
  msgid ""
1166
  "Go to the %sSocial Media section%s.%sActivate Open Graph. (switch the toggle "
1167
  "to ON) %s The Open Graph will help you control the way your posts look when "
@@ -1169,20 +1271,20 @@ msgid ""
1169
  "It will also make your social media posts look great and gain you clicks to "
1170
  "your site."
1171
  msgstr ""
1172
- "Accesați secțiunea %social Media %s. %s Activează graficul deschis. (treceți "
1173
- "comutatorul la ON) %s Graficul Deschis vă va ajuta să controlați modul în "
1174
- "care arată postările dvs. când oamenii își trimit adresele URL pe site-urile "
1175
- "de socializare precum Facebook și LinkedIN. %s Va face, de asemenea, "
1176
- "postările dvs. de socializare să arate grozav și să vă câștigați clicuri pe "
1177
- "site-ul dvs."
1178
 
1179
- #: models/Assistant.php:133 view/Blocks/Snippet.php:821
1180
- #: view/SeoSettings/Automation.php:437 view/SeoSettings/Social.php:271
1181
  msgid "Activate Twitter Card"
1182
  msgstr "Activați cardul Twitter"
1183
 
1184
- #: models/Assistant.php:134
1185
- #, fuzzy, php-format
1186
  msgid ""
1187
  "Go to the %sSocial Media section%s. %s - Activate Twitter Card. (switch the "
1188
  "toggle to ON) %s - Add your Twitter profile URL %s The Twitter Card will "
@@ -1190,19 +1292,19 @@ msgid ""
1190
  "Twitter. %s It will also make your social media posts look great and gain "
1191
  "you clicks to your site."
1192
  msgstr ""
1193
- "Accesați secțiunea %sSial social %s. %s - Activați cardul Twitter. "
1194
- "(comutați comutarea la ON) %s - Adăugați profilul dvs. de URL URL %s Cardul "
1195
- "de Twitter vă va ajuta să controlați modul în care arată postările dvs. "
1196
- "atunci când oamenii vă trimit adresele URL pe Twitter. %s Va face, de "
1197
- "asemenea, postările dvs. de socializare să arate grozav și să vă câștigați "
1198
- "clicuri pe site-ul dvs."
1199
 
1200
- #: models/Assistant.php:138
1201
  msgid "Activate Sitemap XML"
1202
  msgstr "Activați Sitemap XML"
1203
 
1204
- #: models/Assistant.php:139
1205
- #, fuzzy, php-format
1206
  msgid ""
1207
  "Activate your %sSitemap XML%s setting. Squirrly SEO will then generate your "
1208
  "sitemap, according to different items you can set up. %s Use this to tell "
@@ -1213,22 +1315,22 @@ msgid ""
1213
  "sitemap. It has been identified as a ranking factor, so it's good to have "
1214
  "that."
1215
  msgstr ""
1216
- "Activați setarea %sSitemap XML %s. Squirrly SEO va genera apoi site-ul dvs., "
1217
- "în funcție de diferite elemente pe care le puteți configura. %s Folosiți "
1218
- "acest lucru pentru a spune Google cât de des aduceți conținut nou pe site-ul "
1219
- "dvs. %s De asemenea, alegeți tipurile de adrese URL pe care doriți să le "
1220
- "aveți sitemap-uri. Depinde de strategia ta. Lăsați valorile implicite dacă "
1221
- "nu sunteți sigur. Squirrly SEO alege cele mai bune valori implicite pentru "
1222
- "dvs. %s Asigurați-văincludeți imagini și videoclipuri în harta site-"
1223
- "ului. A fost identificat ca factor de clasament, deci este bine să aveți "
1224
- "acest lucru."
1225
-
1226
- #: models/Assistant.php:143
1227
  msgid "Activate Google Analytics"
1228
  msgstr "Activați Google Analytics"
1229
 
1230
- #: models/Assistant.php:144
1231
- #, fuzzy, php-format
1232
  msgid ""
1233
  "Go to the %sTracking Tools section%s. %s Add your Google Analytics ID to "
1234
  "complete this setting. (find it in the tracking code that Google Analytics "
@@ -1237,42 +1339,42 @@ msgid ""
1237
  "desire) to every page of your site (according to rules you can modify in the "
1238
  "Automation section)."
1239
  msgstr ""
1240
- "Accesați secțiunea %sTracking Tools %s. %s Adăugați codul Google Analytics "
1241
- "pentru a finaliza această setare. (găsiți-l în codul de urmărire pe care "
1242
- "Google Analytics vă spune îl plasați pe site-ul dvs.) %s Squirrly SEO va "
1243
- "adăuga (automat) codul dvs. de urmărire Google Analytics (în formatul dorit) "
1244
- "la fiecare pagină a site-ului dvs. puteți modifica în secțiunea "
 
1245
  "Automatizare)."
1246
 
1247
- #: models/Assistant.php:153
1248
  msgid "Connect the Webmasters"
1249
  msgstr "Conectați Webmasteri"
1250
 
1251
- #: models/Assistant.php:154
1252
- #, fuzzy, php-format
1253
  msgid ""
1254
- "Go to the %sConnection section%s. %s This section makes it super easy to "
1255
  "integrate different (important) 3rd party services with your WordPress. %s "
1256
- "Alexa META Code is 100%% optional, but the rest are very important to add. "
1257
  "%s Enter your Pinterest code, especially if you plan to expand your presence "
1258
  "on Pinterest. It will %sactivate Rich Pins%s, which will completely boost "
1259
  "your sales and visibility for any product or post that has great images."
1260
  msgstr ""
1261
- "Accesați secțiunea %sConectare %s. %s Această secțiune simplifică "
1262
- "integrarea diferitelor (importante) servicii terțe cu WordPress. %s Codul "
1263
- "META Alexa este 100%% opțional, dar restul sunt foarte importante de "
1264
- "adăugat. %s Introduceți codul Pinterest, mai ales dacă intenționați să vă "
1265
- "extindeți prezența pe Pinterest. Acesta va% activa% Rich Pins %s, ceea ce vă "
1266
- "va spori complet vânzările și vizibilitatea pentru orice produs sau post "
1267
- "care are imagini grozave."
1268
 
1269
- #: models/Assistant.php:162 models/focuspages/Accuracy.php:45
1270
  #: models/focuspages/Length.php:68 models/focuspages/Traffic.php:106
1271
  msgid "Connect Google Analytics"
1272
  msgstr "Conectați Google Analytics"
1273
 
1274
- #: models/Assistant.php:163
1275
- #, fuzzy, php-format
1276
  msgid ""
1277
  "Integrate %sGoogle Analytics%s with Squirrly SEO from %sAudits > Settings%s."
1278
  "%sFeatures like %sFocus Pages%s and the %sAudit%s need this integration, in "
@@ -1281,20 +1383,20 @@ msgid ""
1281
  "Google Analytics for you.%sYou'll feel like an Analytics expert, without "
1282
  "having to know a single thing about Google Analytics."
1283
  msgstr ""
1284
- "Integrați %sGoogle Analytics %s cu Squirrly SEO de la %sAudits> Setări %s. "
1285
- "%s Caracteristici precum %sFocus Pages %s și %sAudit %s au nevoie de această "
1286
- "integrare, pentru a funcționa la potențial maxim. %sGoogle Analytics este "
1287
- "gratuit și toată lumea îl folosește. %sFocus Pages %s și %sAudit %s vor "
1288
- "interpreta datele potrivite din Google Analytics pentru tine. %s Te vei "
1289
- "simți ca un expert Analytics, fără a fi necesarștii un lucru despre "
1290
  "Google Analytics."
1291
 
1292
- #: models/Assistant.php:167 models/Assistant.php:189
1293
  msgid "Connect Google Search Console"
1294
  msgstr "Conectați Google Search Console"
1295
 
1296
- #: models/Assistant.php:168
1297
- #, fuzzy, php-format
1298
  msgid ""
1299
  "Integrate your WordPress with %sGoogle Search Console%s with Squirrly SEO "
1300
  "from %sAudits > Settings%s.%sThis integration is more than just setting the "
@@ -1303,20 +1405,20 @@ msgid ""
1303
  "collected.%sMore importantly, you'll be able to update all the info that "
1304
  "Google has about your site, directly from your Squirrly SEO Plugin."
1305
  msgstr ""
1306
- "Integrați WordPress-ul dvs. cu %sGoogle Search Console %s cu Squirrly SEO "
1307
- "din %sAudits> Setări %s. %s Această integrare este mai mult decât setarea "
1308
- "codului meta pentru acesta. Va conecta WP-ul dvs. la API-ul serviciului "
1309
- "Google și va permite colectarea informațiilor precum afișări, clicuri, "
1310
- "poziția medie de clasare. %s Mai mult, veți putea actualiza toate "
1311
- "informațiile pe care Google le are despre site-ul dvs., direct de la "
1312
- "Pluginul tău SEO Squirrly"
1313
 
1314
- #: models/Assistant.php:172
1315
  msgid "Set the Audit Email"
1316
  msgstr "Setați e-mailul de audit"
1317
 
1318
- #: models/Assistant.php:173
1319
- #, fuzzy, php-format
1320
  msgid ""
1321
  "You can customize the email to which we send the Audit reports.%sIt can be "
1322
  "your personal email, your work email or the email of one of your "
@@ -1324,18 +1426,18 @@ msgid ""
1324
  "that will take charge and start correcting the problems of the site, in "
1325
  "order to increase the score."
1326
  msgstr ""
1327
- "Puteți personaliza e-mailul către care trimitem rapoartele de audit. %s "
1328
- "Poate fi e-mailul personal, e-mailul de lucru sau e-mailul unuia dintre "
1329
- "colaboratori. %s Este cea mai bună practică trimiterea auditului către "
1330
- "persoana care se va ocupa și începețicorectați problemele site-ului, "
1331
- "pentru a crește scorul."
1332
 
1333
- #: models/Assistant.php:177
1334
  msgid "Get your score over 60"
1335
  msgstr "Obțineți un scor de peste 60"
1336
 
1337
- #: models/Assistant.php:178
1338
- #, fuzzy, php-format
1339
  msgid ""
1340
  "True website marketing performance happens after your Audit score gets to "
1341
  "over 84.%sHowever, you need to start with smaller steps. For now, focus on "
@@ -1346,22 +1448,21 @@ msgid ""
1346
  "performance happens at over 84%s. That's why you need to start working on "
1347
  "this."
1348
  msgstr ""
1349
- "Performanța adevărată de marketing a site-urilor web se întâmplă după ce "
1350
- "scorul dvs. de audit ajunge depășească 84. %s Cu toate acestea, trebuie "
1351
- "să începeți cu pași mai mici. Deocamdată, concentrați-vă pe obținerea unui "
1352
- "scor de peste 60. %s-a uitat pe graficele de progres săptămânal și asigurați-"
1353
- "vă că consultați secțiunea Sarcini, care spune exact ce trebuie să faceți "
1354
- "pentru a crește scorul. %s Am fost testarea acestor scoruri din 2013 pe sute "
1355
- "de mii de site-uri web și este întotdeauna aceeași: performanța %strue se "
1356
- "întâmplă la peste 84 %s. De aceea, trebuie să începi să lucrezi la acest "
1357
- "lucru."
1358
 
1359
- #: models/Assistant.php:184
1360
  msgid "Track your first 3 Keywords"
1361
  msgstr "Urmăriți primele 3 cuvinte cheie"
1362
 
1363
- #: models/Assistant.php:185
1364
- #, fuzzy, php-format
1365
  msgid ""
1366
  "%sSERP Checker = Search Engine Result Pages Checker.%s %s It checks your "
1367
  "position on the Google Search Engine for your keywords. Also (on the "
@@ -1374,21 +1475,21 @@ msgid ""
1374
  "the mouse cursor over a keyword from %sBriefcase -> see the 3 vertical dots -"
1375
  "> select Send to Rank Checker%s"
1376
  msgstr ""
1377
- "%sSERP Checker = Verificator pentru paginile de rezultate ale motorului de "
1378
- "căutare. %s %s Verifică poziția dvs. în motorul de căutare Google pentru "
1379
- "cuvintele dvs. cheie. De asemenea (în Planul de afaceri) vă arată evoluția "
1380
- "în timp a adreselor URL ale site-urilor dvs. pentru aceste cuvinte cheie. "
1381
- "%s Spuneți Squirrly SEO primele trei cuvinte cheie pe care doriți să le "
1382
- "verifice pentru dvs., pentru a vedea dacă sunteți clasat pentru ele. %s "
1383
- "Deoarece ar trebui să lucrezi conform unei strategii SEO solide, vei putea "
1384
- "doar să adaugi cuvinte cheie sau elimini cuvinte cheie din secțiunea "
1385
- "Clasament din Servieta. %s Servieta este organizatorul / managerul dvs. de "
1386
- "cuvinte cheie. Găsiți-l în secțiunea Cercetare. Mergeți cu cursorul mouse-"
1387
- "ului peste un cuvânt cheie din %sBriefcase -> a se vedea cele 3 puncte "
1388
- "verticale -> selectați Trimiteți la Checker Rank %s"
1389
-
1390
- #: models/Assistant.php:190
1391
- #, fuzzy, php-format
1392
  msgid ""
1393
  "Connect Google Search Console. %s You can do that from %sSEO Audit > Settings"
1394
  "%s. %s It will bring information regarding Impressions and Clicks. %s Note: "
@@ -1401,24 +1502,24 @@ msgid ""
1401
  "Squirrly's private cloud servers that are working around the clock to gather "
1402
  "the accurate, on-time and objective information about your rankings."
1403
  msgstr ""
1404
- "Conectați Google Search Console. %s Puteți face asta din %sSEO Audit> "
1405
- "Setări %s. %s Va aduce informații despre afișări și clicuri. %s Notă: dacă "
1406
- "sunteți pe planul gratuit sau pe planul PRO, atunci Poziția de clasament va "
1407
- "fi afișată în funcție de datele din Google Search Console, care nu prezintă "
1408
- "poziția reală pe care vă aflați. Acesta arată o poziție medie pe care site-"
1409
- "ul dvs. a fost găsit în ultimul timp. poate oferi valori precum 4.3 din "
1410
- "această cauză. Chiar dacă pagina dvs. de astăzi ar putea fi pe poziția 7. %s "
1411
- "Planul de afaceri este singurul care vă poate oferi poziția exactă, deoarece "
1412
- "folosește serverele de cloud private ale lui Squirrly care lucrează non-stop "
1413
- "pentru a aduna exact, la timp și obiectivul informații despre clasamentul "
1414
- "dvs."
1415
-
1416
- #: models/Assistant.php:194
1417
  msgid "Get 1 Keyword to the first page of Google"
1418
  msgstr "Obțineți 1 cuvânt cheie pe prima pagină a Google"
1419
 
1420
- #: models/Assistant.php:195
1421
- #, fuzzy, php-format
1422
  msgid ""
1423
  "Start with a small task. %sGet 1 keyword to the first page of Google%s. %s "
1424
  "Select a good keyword (using our %sKeyword Research Tool%s). %s Create an "
@@ -1427,15 +1528,15 @@ msgid ""
1427
  "Pages and see your rankings increase over time. %s If you continue working "
1428
  "on those tasks and turning elements to green you'll complete this task."
1429
  msgstr ""
1430
- "Începeți cu o sarcină mică. %sGet 1 cuvânt cheie la prima pagină de Google "
1431
- "%s. %s Selectați un cuvânt cheie bun (utilizând instrumentul nostru de "
1432
- "cercetare %sKeyword %s). %s Creați o pagină uimitoare (dacă nu aveți deja "
1433
- "una). %s %s Adăugați pagina la Focus Pages %s în Squirrly SEO. %s "
1434
- "Întoarceți luminile RED în verde în paginile de focalizare și vedeți "
1435
- "clasamentul dvs. crește în timp. %s Dacă continuați să lucrați la acele "
1436
- "sarcini și transformați elementele în verde, veți finaliza această sarcină."
1437
 
1438
- #: models/Assistant.php:252 models/abstract/Assistant.php:228
1439
  msgid "You chose to ignore this task. Click to activate it."
1440
  msgstr "Ați ales să ignorați această sarcină. Faceți clic pentru a o activa."
1441
 
@@ -1453,7 +1554,7 @@ msgid "hmm..."
1453
  msgstr "hmm..."
1454
 
1455
  #: models/Audits.php:19
1456
- #, fuzzy, php-format
1457
  msgid ""
1458
  "How can we fix the SEO optimization of a page on our website? %s Find an "
1459
  "amazing keyword set to use for your page. %s If you have a page about a Jazz "
@@ -1468,39 +1569,35 @@ msgid ""
1468
  "best practices of optimizing a page for SEO and helps you avoid keyword "
1469
  "stuffing.%s"
1470
  msgstr ""
1471
- "Cum putem repara optimizarea SEO a unei pagini de pe site-ul nostru web? %s "
1472
- "Găsiți un set de cuvinte cheie uimitor de utilizat pentru pagina dvs. %s "
1473
- "Dacă aveți o pagină despre un concert de jazz pe care John Dane (nume fictiv "
1474
- "folosit pentru acest exemplu) îl va face pe 9 august 2025 în Phoenix, AZ, "
1475
- "atunci puteți încerca să găsiți cele mai bune cuvinte cheie pe care le "
1476
- "puteți utiliza, care sunt legate. la: concert de jazz”, john dane”, „jazz "
1477
- "2025 și jazz in Phoenix”. Aflați ce caută alții. Dacă veți optimiza pagina "
1478
- "pentru acele cuvinte cheie, veți fi sigur că fanii de jazz o vor găsi. "
1479
- "Instrumentul de cercetare a cuvintelor cheie de la Squirrly SEO (disponibil "
1480
- "ca instrument web și, de asemenea, ca plugin pentru WordPress), te ajută să "
1481
- "îți dai seama exact ce să folosești. %s Începeți optimizați "
1482
- "conținutul. Puteți utiliza un instrument precum Squirrly SEO pentru a vă "
1483
- "optimiza paginile. Squirrly ghidează spre cele mai bune practici de "
1484
- "optimizare a unei pagini pentru SEO și de evitare a umpluturilor de cuvinte "
1485
- "cheie. %s"
1486
 
1487
  #: models/Audits.php:20
1488
- #, fuzzy
1489
  msgid ""
1490
  "Optimization is NOT about stuffing in keywords. It's about writing the page "
1491
  "in such a way that Search Engine bots and Humans alike will easily "
1492
  "understand that the page is exactly about the topic they were searching for. "
1493
  "Use the Live Assistant from Squirrly SEO to get the job done with ease."
1494
  msgstr ""
1495
- "Optimizarea NU este despre umplerea cuvintelor cheie. Este vorba despre "
1496
- "scrierea paginii într-o astfel de pagină, încât robotii de căutare și omul "
1497
- "deopotrivă vor înțelege cu ușurință că pagina se referă exact la subiectul "
1498
- "pe care îl căutau. Dacă nu sunteți sigur cum puteți face acest lucru, SEO "
1499
- "Squirrly (disponibil ca instrument web sau ca plugin WordPress) vă ajută să "
1500
- "faceți treaba cu ușurință."
1501
 
1502
  #: models/Audits.php:21
1503
- #, fuzzy
1504
  msgid ""
1505
  "Use tools like Squirrly Keyword Research and Squirrly Live Assistant to "
1506
  "optimize your content"
@@ -1518,7 +1615,7 @@ msgstr "DcPublisher Meta"
1518
  #: models/Audits.php:186 models/Audits.php:196 models/Audits.php:206
1519
  #: models/Audits.php:216 models/Audits.php:226 models/Audits.php:295
1520
  #: models/Audits.php:305 models/Audits.php:315 models/Audits.php:325
1521
- #: models/Audits.php:420 view/SeoSettings/Jsonld.php:264
1522
  msgid "Yes"
1523
  msgstr "Da"
1524
 
@@ -1528,7 +1625,7 @@ msgstr "Da"
1528
  #: models/Audits.php:197 models/Audits.php:207 models/Audits.php:217
1529
  #: models/Audits.php:227 models/Audits.php:296 models/Audits.php:306
1530
  #: models/Audits.php:316 models/Audits.php:326 models/Audits.php:367
1531
- #: models/Audits.php:411 models/Audits.php:421 view/SeoSettings/Jsonld.php:263
1532
  msgid "No"
1533
  msgstr "Nu"
1534
 
@@ -1537,15 +1634,14 @@ msgid "The pages without DcPublisher meta"
1537
  msgstr "Paginile fără DcPublisher meta"
1538
 
1539
  #: models/Audits.php:29
1540
- #, fuzzy
1541
  msgid ""
1542
  "Dublin Core is a set of standard metadata elements used to describe the "
1543
  "contents of a website. It can help with some internal search engines and it "
1544
  "does not bloat your code."
1545
  msgstr ""
1546
- "Dublin Core este un set de elemente de metadate standard utilizate pentru a "
1547
- "descrie conținutul unui site web. poate ajuta cu unele motoare de căutare "
1548
- "interne și nu vă umflă codul."
1549
 
1550
  #: models/Audits.php:30
1551
  msgid "Add the meta DcPublisher tag in the page's header"
@@ -1556,7 +1652,7 @@ msgid "Top Ten Pages This Week"
1556
  msgstr "Cele mai bune zece pagini din această săptămână"
1557
 
1558
  #: models/Audits.php:40
1559
- #, fuzzy, php-format
1560
  msgid ""
1561
  "If there is enough data in Google Analytics, you should see the list of "
1562
  "pages with the most visitors in the last week. %s Having at least 100 "
@@ -1564,10 +1660,10 @@ msgid ""
1564
  "Bing will push down a page which doesn't attract visitors."
1565
  msgstr ""
1566
  "Dacă există suficiente date în Google Analytics, ar trebui să vedeți lista "
1567
- "cu paginile cu cei mai mulți vizitatori în ultima săptămână. %s A avea cel "
1568
- "puțin 100 de vizitatori pe pagină în fiecare săptămână este crucial. %s "
1569
- "Motoare de căutare precum Google și Bing vor împinge o pagină care nu atacă "
1570
- "vizitatorii."
1571
 
1572
  #: models/Audits.php:44 view/FocusPages/FocusPageStats.php:197
1573
  msgid "Page Traffic"
@@ -1582,7 +1678,7 @@ msgid "The pages with low traffic"
1582
  msgstr "Paginile cu trafic scăzut"
1583
 
1584
  #: models/Audits.php:47
1585
- #, fuzzy, php-format
1586
  msgid ""
1587
  "How can we fix the Overall Traffic of the website? %s Make sure you have "
1588
  "active listings which can be easily found on various marketplaces / "
@@ -1606,23 +1702,33 @@ msgid ""
1606
  "Cloud Services for Rank Checking, available only on: Business Plans "
1607
  "[link]https://plugin.squirrly.co/squirrly-seo-pricing/[/link]"
1608
  msgstr ""
1609
- "Cum putem repara traficul general al site-ului? %s Asigurați-vă că aveți "
1610
- "înregistrări active care pot fi găsite cu ușurință pe diverse piețe / "
1611
- "platforme. de exemplu: aveți o aplicație Shopify, o extensie Chrome, o "
1612
- "aplicație Chrome, un curs Udemy, diapozitive pe SlideShare.com, videoclipuri "
1613
- "pe Youtube, o infografie pe Pinterest, etc. Acestea vor aduce întotdeauna "
1614
- "trafic constant pe site-ul web și odată ce setați-l (și faceți-l vizibil) îl "
1615
- "puteți uita. va aduce traficul. Desigur, cheia este faceți mai întâi "
1616
- "aceste elemente vizibile în locurile în care le publicați. %s Aveți nevoie "
1617
- "de o listă de e-mailuri. Asigurați-vă că persoanele care vin la magazinul "
1618
- "dvs., fac afaceri cu dvs., vizitați site-ul dvs. web, citiți blogul dvs. "
1619
- "lăsați adresa de e-mail pentru a putea comunica cu ei mai departe. O "
1620
- "alternativă la aceasta este să creezi un Chatbot pentru Facebook Messenger "
1621
- "și să-i atașezi la bot. Făcând oricare dintre acestea, veți putea să îi "
1622
- "readuceți pe acești oameni pe site-ul dvs. web. %s"
 
 
 
 
 
 
 
 
 
 
 
1623
 
1624
  #: models/Audits.php:48
1625
- #, fuzzy
1626
  msgid ""
1627
  "Get each person who arrives on your site once to leave something that you "
1628
  "can use later on to bring them to your site again. You can use Facebook "
@@ -1632,18 +1738,17 @@ msgid ""
1632
  "clever funnels that will ensure that any person may start following you on "
1633
  "multiple such channels."
1634
  msgstr ""
1635
- "Obțineți fiecare persoană care ajunge pe site-ul dvs. odată să lase ceva pe "
1636
- "care îl puteți folosi ulterior pentru a le aduce pe site-ul dvs. din nou. "
1637
- "Puteți utiliza Facebook Pixel și apoi le reargetați, le puteți face să "
1638
- "abonați la notificări desktop pentru a primi notificări push, putețile "
1639
- "descărcați o aplicație, să abonați la un newsletter etc. Uneori este cel "
1640
- "mai bine dacă puteți crea canale inteligente care vor asigura că orice "
1641
  "persoană poate începe să vă urmărească pe mai multe astfel de canale."
1642
 
1643
  #: models/Audits.php:49
1644
- #, fuzzy
1645
  msgid "Try to gain organic traffic to your site's pages"
1646
- msgstr "Încercați să obțineți trafic organic către paginile site-ului dvs."
1647
 
1648
  #: models/Audits.php:56
1649
  msgid "Visible for search engines?"
@@ -1654,7 +1759,7 @@ msgid "The pages with noindex"
1654
  msgstr "Paginile cu noindex"
1655
 
1656
  #: models/Audits.php:59
1657
- #, fuzzy, php-format
1658
  msgid ""
1659
  "How can we fix the noindex for our pages? %s You're currently telling Google "
1660
  "not to index some of your pages through a robots tag inside your code. %s On "
@@ -1665,30 +1770,31 @@ msgid ""
1665
  "Audit. Use the SEO Audit for the pages you want to be seen on search engines."
1666
  "%s"
1667
  msgstr ""
1668
- "Cum putem repara noindex pentru paginile noastre? %s În prezent, îi spui "
1669
- "Google să nu indexeze unele dintre paginile tale printr-o etichetă de roboți "
1670
- "din codul tău. %s Pe WordPress, este foarte ușor să controlezi ce pagini să "
1671
- "plasezi fără index și ce pagini nu ar trebui niciodată să fie etichetate "
1672
- "fără index dacă folosești pluginul SEO Squirrly. %s Dacă utilizați altceva, "
1673
- "asigurați-văeliminați <META NAME=“ROBOTS” CONTENT=“NOINDEX, NOFOLLOW”> "
1674
- "de la <head> din codul dvs. HTML. %s"
 
 
1675
 
1676
  #: models/Audits.php:60
1677
- #, fuzzy
1678
  msgid ""
1679
  "Some pages are better off if they have an associated no-index tag. Every "
1680
  "website has a couple of pages that would be completely pointless to appear "
1681
  "in search results, because they wouldn't ever make any sense for potential "
1682
  "searchers."
1683
  msgstr ""
1684
- "Unele pagini sunt mai bune dacă au o etichetă fără index. Fiecare site web "
1685
- "are câteva pagini care ar fi complet inutile să apară în rezultatele "
1686
- "căutării, deoarece nu ar avea niciun sens pentru potențiali căutători."
 
1687
 
1688
  #: models/Audits.php:61 models/Audits.php:71
1689
- #, fuzzy
1690
  msgid "Add the correct meta robots tag in the pages"
1691
- msgstr "Adăugați eticheta meta roboți corect în pagini"
1692
 
1693
  #: models/Audits.php:66
1694
  msgid "Followed by search engines?"
@@ -1699,7 +1805,7 @@ msgid "The pages with nofollow"
1699
  msgstr "Paginile cu nofollow"
1700
 
1701
  #: models/Audits.php:69
1702
- #, fuzzy, php-format
1703
  msgid ""
1704
  "How can we fix the nofollow for our pages? %s You're currently telling "
1705
  "Google not to follow some of your pages through a robots tag inside your "
@@ -1709,31 +1815,31 @@ msgid ""
1709
  "remove <META NAME=“ROBOTS” CONTENT=“NOFOLLOW”> from the <head> of your HTML."
1710
  "%s"
1711
  msgstr ""
1712
- "Cum putem repara nofollow pentru paginile noastre? %s În prezent, îi spui "
1713
- "Google să nu urmeze unele dintre paginile tale printr-o etichetă de roboți "
1714
- "din codul tău. %s Pe WordPress, este extrem de ușor să controlezi ce pagini "
1715
- "să plasezi nofollow și ce pagini nu ar trebui niciodată fie etichetate cu "
1716
- "nofollow dacă folosești pluginul SEO Squirrly. %s Dacă utilizați altceva, "
1717
- "asigurați-vă că eliminați <META NAME=“ROBOTS” CONTENT=“NOFOLLOW”> de la "
1718
- "<head> din codul dvs. HTML. %s"
 
1719
 
1720
  #: models/Audits.php:70
1721
- #, fuzzy
1722
  msgid ""
1723
  "Some pages are better off if they have an associated nofollow tag. Every "
1724
  "website has a couple of pages that would be completely pointless to be "
1725
  "followed by search results like: Contact Us, Terms and Policy."
1726
  msgstr ""
1727
  "Unele pagini sunt mai bune dacă au o etichetă nofollow asociată. Fiecare "
1728
- "site web are câteva pagini care ar fi complet inutile să fie urmate de "
1729
- "rezultatele căutării precum: Contactați-ne, Termeni și politică."
1730
 
1731
  #: models/Audits.php:76
1732
  msgid "Is your site Safe Browsing?"
1733
  msgstr "Este site-ul dvs. Safe Browsing?"
1734
 
1735
  #: models/Audits.php:79
1736
- #, fuzzy, php-format
1737
  msgid ""
1738
  "How can we get our website to be Safe Browsing compliant? %s Make sure you "
1739
  "find and delete all malware from your website. %s Watch this video to learn "
@@ -1742,24 +1848,24 @@ msgid ""
1742
  "Google: [link]https://transparencyreport.google.com/safe-browsing/search[/"
1743
  "link]%s"
1744
  msgstr ""
1745
- "Cum putem face ca site-ul nostru web să fie compatibil cu Navigarea sigură? "
1746
- "%s Asigurați-vă că găsiți și ștergeți toate programele malware de pe site-ul "
1747
- "dvs. web. %s Vizionați acest videoclip pentru a afla mai multe. [link] "
1748
- "https://www.youtube.com/embed/7GStGcTeo20 [/ link] %s Odată ce simțiai "
1749
- "rezolvat problemele, poți verifica folosind acest instrument de la Google: "
1750
- "[link] https: // transparență. google.com/safe-browsing/search[/link]%s"
 
1751
 
1752
  #: models/Audits.php:80
1753
- #, fuzzy
1754
  msgid ""
1755
  "This is a TOP priority if you're having a Safe Browsing problem at the "
1756
  "moment. Browsers will NOT allow web visitors to actually access your pages. "
1757
  "It will also cause you other problems like lower search rankings."
1758
  msgstr ""
1759
- "Aceasta este o prioritate de top dacă aveți o problemă de Navigare sigură în "
1760
- "acest moment. Navigatorii NU vor permite vizitatorilor web să acceseze "
1761
- "efectiv paginile dvs. De asemenea, vă va provoca alte probleme, cum ar fi "
1762
- "clasamentele de căutare mai mici."
1763
 
1764
  #: models/Audits.php:85
1765
  msgid "Page load time"
@@ -1778,7 +1884,7 @@ msgid "The slow pages are"
1778
  msgstr "Paginile lente sunt"
1779
 
1780
  #: models/Audits.php:88
1781
- #, fuzzy, php-format
1782
  msgid ""
1783
  "How can we fix the loading speed of the website? %s Use smaller images, or "
1784
  "compress them with tools like ShortPixel.com %s Minify Javascripts, use "
@@ -1789,22 +1895,23 @@ msgid ""
1789
  "Test here [link]https://developers.google.com/speed/pagespeed/insights/[/"
1790
  "link] %s"
1791
  msgstr ""
1792
- "Cum putem repara viteza de încărcare a site-ului? %s Utilizați imagini mai "
1793
- "mici sau comprimați-le cu instrumente precum ShortPixel.com %s Minimizați "
1794
- "Javascripturile, utilizați CDN-uri, utilizați gZip. %s Folosiți un serviciu "
1795
- "profesional dacă site-ul dvs. este bazat pe WordPress. Compania noastră "
1796
- "mamă, Squirrly Limited, oferă un astfel de serviciu pentru site-urile web "
1797
- "bazate pe WordPress.org [link] https://plugin.squirrly.co/store/fix-site-"
1798
- "structure-seo-security-speed-broken-links-css- javascript / [/ link] %s"
 
 
1799
 
1800
  #: models/Audits.php:89
1801
- #, fuzzy
1802
  msgid ""
1803
  "Increasing loading speed will bring you more engagement, lower bounce rates "
1804
  "AND more search engine results."
1805
  msgstr ""
1806
  "Creșterea vitezei de încărcare vă va aduce mai multă implicare, rate de "
1807
- "respingere mai mici ȘI mai multe rezultate ale motorului de căutare."
1808
 
1809
  #: models/Audits.php:90
1810
  msgid "Optimize your site's speed"
@@ -1831,7 +1938,7 @@ msgid "The Pages with Duplicate Titles are"
1831
  msgstr "Paginile cu titluri duplicate sunt"
1832
 
1833
  #: models/Audits.php:98
1834
- #, fuzzy, php-format
1835
  msgid ""
1836
  "How can we fix the Duplicate Titles on our pages? %s Features like SEO "
1837
  "Automation or SEO Snippet from Squirrly SEO will generate your META title "
@@ -1851,44 +1958,42 @@ msgid ""
1851
  "rules for WordPress that ensure each title for each page on your site is "
1852
  "unique. This feature is available in the Free version of Squirry.%s"
1853
  msgstr ""
1854
- "Cum putem repara titlurile duplicate pe paginile noastre? %s Caracteristici "
1855
- "precum SEO Automation sau SEO Snippet din Squirrly SEO, va genera titlul "
1856
- "META în mod automat din conținutul paginii dvs. (în cazul în care nu ați "
1857
- "plasat deja un titlu personalizat). Faceți fiecare Titlu META al fiecărei "
1858
- "pagini unic (nu îl repetați niciodată pe nicio altă adresă URL de pe site). "
1859
- "Veți scrie ce doriți să afișeze Google în rezultatele căutării ca titlu "
1860
- "pentru înregistrarea dvs. Faceți acest text nemaipomenit și veți face ca "
1861
- "oamenii să facă clic pe el. %s Vedeți dacă puteți atribui reguli WordPress "
1862
- "pentru ca acesta să schimbe titlul fiecărei URL în funcție de tipare "
1863
- "diferite. În mod normal, platforma va lua Titlul celui mai recent produs din "
1864
- "categorie și îl va adăuga la Titlul acelei categorii. În acest caz, puteți "
1865
- "termina cu ceva de genul: example.com/shooter-games va avea titlul: 'Counter "
1866
- "Strike GO. Cumpărați-l acum și, de asemenea: example.com/shooter-games/cs-go "
1867
- "va avea și titlul: Counter Strike GO. Cumpara asta acum'. %s Toate aceste "
1868
- "cazuri problematice pot fi uitate odată ce începeți să folosiți Squirrly "
1869
- "SEO. Cu funcția sa de modele, va crea reguli pentru WordPress care să "
1870
- "asigure fiecare titlu pentru fiecare pagină de pe site-ul dvs. este unic. "
1871
- "Aceasta este complet disponibilă pe versiunea gratuită, astfel încât "
1872
- "puteți începe imediat. %s"
1873
 
1874
  #: models/Audits.php:99
1875
- #, fuzzy
1876
  msgid ""
1877
  "On WordPress you can use Squirrly SEO to control everything about your page "
1878
  "Titles and make them stand out on search engines."
1879
  msgstr ""
1880
  "Pe WordPress puteți utiliza Squirrly SEO pentru a controla totul despre "
1881
- "titlurile paginii dvs. și a le face să iasă în evidență pe motoarele de "
1882
- "căutare."
1883
 
1884
  #: models/Audits.php:100
1885
- #, fuzzy
1886
  msgid ""
1887
  "Add different titles to each page. You can do it manually or use SEO tools "
1888
  "(like Squirrly) for that."
1889
  msgstr ""
1890
- "Adăugați titluri diferite la fiecare pagină. Puteți face acest lucru manual "
1891
- "sau puteți utiliza instrumente SEO (cum ar fi Squirrly) pentru asta."
1892
 
1893
  #: models/Audits.php:105
1894
  msgid "Duplicate Descriptions"
@@ -1907,7 +2012,7 @@ msgid "The Pages on which we found duplicates are"
1907
  msgstr "Paginile pe care am găsit duplicate sunt"
1908
 
1909
  #: models/Audits.php:108
1910
- #, fuzzy, php-format
1911
  msgid ""
1912
  "How can we fix the Duplicate Descriptions on our website? %s Use the SEO "
1913
  "Automation feature from Squirrly SEO, because it will generate your META "
@@ -1919,37 +2024,33 @@ msgid ""
1919
  "WordPress that ensure each description for each page on your site is unique. "
1920
  "This feature is available on all plans. %s"
1921
  msgstr ""
1922
- "Cum putem repara descrierile goale de pe site-ul nostru web? %s "
1923
- "Caracteristici precum SEO Automation sau SEO Snippet de la Squirrly SEO, va "
1924
- "genera descrierea META în mod automat din conținutul paginii tale. Faceți "
1925
- "acest text nemaipomenit și veți face ca oamenii facă clic pe el. %s "
1926
- "Vedeți dacă puteți atribui reguli WordPress pentru a crea crearea de "
1927
- "descrieri META pentru fiecare URL în funcție de tipare diferite. Având "
1928
- "reguli clare pentru toate adresele URL,veți asigura Descrierile goale "
1929
- "nu vor mai fi o problemă în viitor. %s Toate aceste cazuri problematice pot "
1930
- "fi uitate odată ce începeți folosiți Squirrly SEO. Cu funcția sa de "
1931
- "modele, va crea reguli pentru WordPress care să asigure că fiecare descriere "
1932
- "pentru fiecare pagină de pe site-ul dvs. este unică. Aceasta este complet "
1933
- "disponibilă pe versiunea gratuită, astfel încât să puteți începe imediat. %s"
1934
 
1935
  #: models/Audits.php:109
1936
- #, fuzzy
1937
  msgid ""
1938
  "Use Squirrly SEO’s BULK SEO section to control everything about your META "
1939
  "descriptions and make them stand out on search engines."
1940
  msgstr ""
1941
- "Pe WordPress poți folosi Squirrly SEO pentru a controla totul despre "
1942
- "descrierile META și pentru a le face să iasă în evidență pe motoarele de "
1943
- "căutare."
1944
 
1945
  #: models/Audits.php:110
1946
- #, fuzzy
1947
  msgid ""
1948
  "Add different description to each page. You can do it manually or use SEO "
1949
  "tools (like Squirrly) for that."
1950
  msgstr ""
1951
- "Adăugați o descriere diferită la fiecare pagină. Puteți face acest lucru "
1952
- "manual sau puteți utiliza instrumente SEO (cum ar fi Squirrly) pentru asta."
1953
 
1954
  #: models/Audits.php:115
1955
  msgid "Empty Titles"
@@ -1972,7 +2073,7 @@ msgid "The pages with empty Title tags are"
1972
  msgstr "Paginile cu etichete Title goale sunt"
1973
 
1974
  #: models/Audits.php:118
1975
- #, fuzzy, php-format
1976
  msgid ""
1977
  "How can we fix the Empty Titles on our pages? %s Use Squirrly’s SEO "
1978
  "Automation features or the SEO Snippet to generate your META title "
@@ -1982,34 +2083,27 @@ msgid ""
1982
  "from Squirrly. It will create rules for WordPress that ensure each title for "
1983
  "each page on your site is unique. This feature is available on all plans.%s"
1984
  msgstr ""
1985
- "Cum putem repara titlurile goale pe paginile noastre? %s Caracteristici "
1986
- "precum SEO Automation sau SEO Snippet din Squirrly SEO, va genera titlul "
1987
- "META în mod automat din conținutul paginii tale. Scrieți ce doriți ca Google "
1988
- "să afișeze în rezultatele căutării ca titlu pentru înregistrarea dvs. Faceți "
1989
- "acest text nemaipomenit și veți face ca oamenii să facă clic pe el. %s "
1990
- "Vedeți dacă puteți atribui reguli către WordPress pentru ca acesta să creeze "
1991
- "titluri pentru fiecare URL în conformitate cu tipare diferite. Având reguli "
1992
- "clare pentru toate adresele URL, veți asigura titlurile goale nu vor "
1993
- "mai fi o problemă în viitor. %s Toate aceste cazuri problematice pot fi "
1994
- "uitate odată ce începeți să folosiți Squirrly SEO. Cu funcția sa de modele, "
1995
- "va crea reguli pentru WordPress care să asigure fiecare titlu pentru fiecare "
1996
- "pagină de pe site-ul dvs. este unic. Aceasta este complet disponibilă pe "
1997
- "versiunea gratuită, astfel încât să puteți începe imediat. %s"
1998
 
1999
  #: models/Audits.php:119
2000
- #, fuzzy
2001
  msgid ""
2002
  "Use Squirrly SEO to create and control everything about your META titles and "
2003
  "make them stand out on search engines."
2004
  msgstr ""
2005
- "Pe WordPress poți folosi Squirrly SEO pentru a crea și controla totul despre "
2006
- "titlurile META și pentru a le face să iasă în evidență pe motoarele de "
2007
- "căutare."
2008
 
2009
  #: models/Audits.php:120
2010
- #, fuzzy
2011
  msgid "Add a Title tag to each page in your site."
2012
- msgstr "Adăugați o etichetă de titlu la fiecare pagină din site-ul dvs."
2013
 
2014
  #: models/Audits.php:125
2015
  msgid "Empty Descriptions"
@@ -2032,7 +2126,7 @@ msgid "The pages with empty description are"
2032
  msgstr "Paginile cu descrierea goală sunt"
2033
 
2034
  #: models/Audits.php:128
2035
- #, fuzzy, php-format
2036
  msgid ""
2037
  "How can we fix the Empty Descriptions on our website? %s Use Squirrly’s SEO "
2038
  "Automation features or the SEO Snippet which will generate your META "
@@ -2046,28 +2140,26 @@ msgid ""
2046
  "description for each page on your site is unique. This feature is available "
2047
  "on all plans.%s"
2048
  msgstr ""
2049
- "Cum putem repara descrierile goale de pe site-ul nostru web? %s "
2050
- "Caracteristici precum SEO Automation sau SEO Snippet de la Squirrly SEO, va "
2051
- "genera descrierea META în mod automat din conținutul paginii tale. Faceți "
2052
- "acest text nemaipomenit și veți face ca oamenii să facă clic pe el. %s "
2053
- "Vedeți dacă puteți atribui reguli WordPress pentru a crea crearea de "
2054
- "descrieri META pentru fiecare URL în funcție de tipare diferite. Având "
2055
- "reguli clare pentru toate adresele URL, vă veți asigura că Descrierile goale "
2056
- "nu vor mai fi o problemă în viitor. %s Toate aceste cazuri problematice pot "
2057
- "fi uitate odată ce începeți să folosiți Squirrly SEO. Cu funcția sa de "
2058
- "modele, va crea reguli pentru WordPress care să asigure că fiecare descriere "
2059
- "pentru fiecare pagină de pe site-ul dvs. este unică. Aceasta este complet "
2060
- "disponibilă pe versiunea gratuită, astfel încât să puteți începe imediat. %s"
2061
 
2062
  #: models/Audits.php:129
2063
- #, fuzzy
2064
  msgid ""
2065
  "Use Squirrly SEO to create and control everything about your META "
2066
  "descriptions and make them stand out on search engines."
2067
  msgstr ""
2068
- "Pe WordPress poți folosi Squirrly SEO pentru a crea și controla totul despre "
2069
- "descrierile META și pentru a le face să iasă în evidență pe motoarele de "
2070
- "căutare."
2071
 
2072
  #: models/Audits.php:130
2073
  msgid "Add meta description to each page in your site."
@@ -2082,31 +2174,28 @@ msgid "The pages without title tag are"
2082
  msgstr "Paginile fără etichetă de titlu sunt"
2083
 
2084
  #: models/Audits.php:138
2085
- #, fuzzy, php-format
2086
  msgid ""
2087
  "How can we fix the title tags of our pages %s On WordPress, using Squirrly "
2088
  "SEO will ensure your pages have title tags. It will create titles for every "
2089
  "page. It will help you customize titles for every page, all while making you "
2090
  "write ZERO code. No coding required when you use Squirrly SEO.%s"
2091
  msgstr ""
2092
- "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
2093
- "WordPress puteți folosi SEO Squirrly. Va crea titluri pentru fiecare pagină. "
2094
- "Acesta va ajuta personalizați titlurile pentru fiecare pagină, toate "
2095
- "făcându-vă scrieți ZERO, nada, rien, cod. Nu este necesară codificarea "
2096
- "odată ce folosiți un instrument precum Squirrly SEO."
 
2097
 
2098
  #: models/Audits.php:139
2099
- #, fuzzy
2100
  msgid "Platforms like Shopify handle this aspect with their default engine."
2101
  msgstr ""
2102
- "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
2103
- "WordPress poți folosi Squirrly SEO pentru a-ți crea și personaliza roboții."
2104
- "txt"
2105
 
2106
  #: models/Audits.php:140
2107
- #, fuzzy
2108
  msgid "Add a Title tag to this page of your site"
2109
- msgstr "Adăugați o etichetă de titlu la această pagină a site-ului dvs."
2110
 
2111
  #: models/Audits.php:145
2112
  msgid "Do you have a meta description?"
@@ -2117,7 +2206,7 @@ msgid "The pages without description meta are"
2117
  msgstr "Paginile fără meta descriere sunt"
2118
 
2119
  #: models/Audits.php:148
2120
- #, fuzzy, php-format
2121
  msgid ""
2122
  "How can we fix the META Descriptions of our pages %s First of all, make sure "
2123
  "that you understand the following: a poorly written META description will "
@@ -2132,23 +2221,20 @@ msgid ""
2132
  msgstr ""
2133
  "Cum putem repara descrierile META ale paginilor noastre %s În primul rând, "
2134
  "asigurați-vă că înțelegeți următoarele: o descriere META prost scrisă va "
2135
- "face o listă oribilă în pagina de căutare Google. Dacă oamenii găsesc "
2136
- "înregistrarea dvs., nu vor face clic pe înregistrarea dvs. în cazul în care "
2137
- "Descrierea dvs. META este oribilă de privit, este slab scrisă sau nu pare să "
2138
- "aibă sens. %s <meta name=\"description\" content=\"\" /> %s Veți plasa "
2139
- "textul de descriere META în secțiunea de mai sus, cuprinsă între \"și\". "
2140
- "Asigurați-vă textul dvs. descrie valoarea / beneficiul pe care o persoană "
2141
- "care îl caută pe Google ar obține accesând pagina dvs. După ce ați terminat "
2142
- " scrieți conținutul etichetei de mai sus, asigurați-vă îl plasați în "
2143
- "interiorul <head> secțiunea codului paginii dvs. %s"
2144
 
2145
  #: models/Audits.php:149
2146
- #, fuzzy
2147
  msgid "Platforms like Shopify handle this with their default engines."
2148
  msgstr ""
2149
- "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
2150
- "WordPress poți folosi Squirrly SEO pentru a-ți crea și personaliza roboții."
2151
- "txt"
2152
 
2153
  #: models/Audits.php:150
2154
  msgid "Add meta description to this page of your site"
@@ -2167,21 +2253,19 @@ msgid "No keywords."
2167
  msgstr "Nu există cuvinte cheie."
2168
 
2169
  #: models/Audits.php:158
2170
- #, fuzzy
2171
  msgid ""
2172
  "It is important for search engines to know which keywords you are trying to "
2173
  "rank for with your website. This also helps bring targeted visitors to your "
2174
  "site."
2175
  msgstr ""
2176
- "Este important ca motoarele de căutare să știe ce cuvinte cheie pe care "
2177
- "încercați să le clasificați cu site-ul dvs. web. Acest lucru ajută, de "
2178
- "asemenea, la aducerea vizitatorilor vizați pe site-ul dvs."
2179
 
2180
  #: models/Audits.php:159
2181
- #, fuzzy
2182
  msgid "Make sure that the search for your keywords is on a rising trend"
2183
  msgstr ""
2184
- "Asigurați-vă că căutarea cuvintelor dvs. cheie este într-o tendință în "
2185
  "creștere"
2186
 
2187
  #: models/Audits.php:165 models/bulkseo/Metas.php:99
@@ -2193,7 +2277,7 @@ msgid "The pages without canonical meta"
2193
  msgstr "Paginile fără meta canonice"
2194
 
2195
  #: models/Audits.php:168
2196
- #, fuzzy, php-format
2197
  msgid ""
2198
  "How can we fix the Canonical Links problems of our pages? %s Add this code "
2199
  "to the <head> section of your HTML page: <link rel=\"canonical\" href=\"your "
@@ -2208,20 +2292,22 @@ msgid ""
2208
  "%s Use Squirrly SEO's Bulk SEO to define canonical links and indexing "
2209
  "options for your pages. %s"
2210
  msgstr ""
2211
- "Cum putem rezolva problemele Linkurilor Canonice ale paginilor noastre? %s "
2212
- "Adăugați acest cod la <head> secțiunea paginii dvs. HTML: <link rel="
2213
- "\"canonical\" href=\"{site}\" /> %s Gândiți-vă la un link canonic ca "
2214
- "versiunea preferată” a paginii. %s Asigurați-vă că aveți această definiție "
2215
- "pe adresa URL, în special dacă ați copiat conținutul de pe un alt LINK de pe "
2216
- "web. Exemplu: ați publicat o postare pe blog pe Medium și apoi l-ați adăugat "
2217
- "și în propriul blog pe propriul dvs. domeniu. Dacă adăugați definiția "
2218
- "linkului canonic, atunci nu veți fi penalizat pentru conținut duplicat. "
2219
- "Medium vă permite, de asemenea, să re-publicați conținutul de pe site-ul "
2220
- "propriu către Medium și vă ajută să obțineți rel = \"canonic\" în cadrul "
2221
- "postării media pentru a arăta că originalul este găzduit pe propriul site. %s"
 
 
 
2222
 
2223
  #: models/Audits.php:169
2224
- #, fuzzy
2225
  msgid ""
2226
  "Platforms like Shopify handle this with their default engine. On WordPress "
2227
  "you can use Squirrly SEO to control canonical links and make sure you avoid "
@@ -2229,7 +2315,7 @@ msgid ""
2229
  msgstr ""
2230
  "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
2231
  "WordPress puteți utiliza Squirrly SEO pentru a controla legăturile canonice "
2232
- "și asigurați-vă că evitați aveți conținut duplicat."
2233
 
2234
  #: models/Audits.php:170
2235
  msgid "Add canonical meta link in the page header"
@@ -2244,7 +2330,7 @@ msgid "The pages without Json-LD meta"
2244
  msgstr "Paginile fără meta Json-LD"
2245
 
2246
  #: models/Audits.php:178
2247
- #, fuzzy, php-format
2248
  msgid ""
2249
  "How can we fix the meta Json_LD of the website? %s You need to make sure you "
2250
  "have this tag inside your page's code: <script type=\"application/ld+json"
@@ -2253,30 +2339,29 @@ msgid ""
2253
  "disambiguate elements and establish facts surrounding entities, which is "
2254
  "then associated with creating a more organized, better web overall.%s"
2255
  msgstr ""
2256
- "Cum putem repara meta Json_LD a site-ului? %s Trebuie să vă asigurați că "
2257
- "aveți această etichetă în codul paginii dvs.: <script type=\"application/ld"
2258
- "+json\"> . Or something similar. %s JSON-LD annotates elements on a page, "
2259
- "structuring the data, which can then be used by search engines to "
2260
- "disambiguate elements and establish facts surrounding entities, which is "
2261
- "then associated with creating a more organized, better web overall.%s"
 
2262
 
2263
  #: models/Audits.php:179
2264
- #, fuzzy
2265
  msgid ""
2266
  "On WordPress you can use Squirrly SEO to add the Json-LD Structured data. "
2267
  "Squirrly will automatically structure the information from all your products "
2268
  "if you use Woocommerce plugin for eCommerce."
2269
  msgstr ""
2270
- "Pe WordPress puteți utiliza Squirrly SEO pentru a adăuga datele Json-LD "
2271
- "Structurate. Squirrly va structura automat informațiile din toate produsele "
2272
- "dvs. dacă utilizați pluginul Woocommerce pentru eCommerce."
2273
 
2274
  #: models/Audits.php:180
2275
- #, fuzzy
2276
  msgid ""
2277
  "Make sure you activated Json-LD in Squirrly > SEO Settings > Json-LD Meta"
2278
  msgstr ""
2279
- "Asigurați-vă că ați activat Json-LD în Squirrly> Setări SEO> Json-LD Meta"
2280
 
2281
  #: models/Audits.php:185
2282
  msgid "Page Encoding"
@@ -2287,7 +2372,7 @@ msgid "The pages without encoding meta"
2287
  msgstr "Paginile fără meta-coding"
2288
 
2289
  #: models/Audits.php:188
2290
- #, fuzzy, php-format
2291
  msgid ""
2292
  "How can we fix the character encoding specifications of the website? %s "
2293
  "You'll have to specify this according to the encoding you use for your "
@@ -2296,16 +2381,15 @@ msgid ""
2296
  "majority of web pages use this) %s <meta http-equiv=“Content-Type” "
2297
  "content=“text/html;charset=utf-8” />%s"
2298
  msgstr ""
2299
- "Cum putem repara specificațiile de codare a caracterelor site-ului web? %s "
2300
- "Va trebui să specificați acest lucru în funcție de codificarea pe care o "
2301
- "utilizați pentru site-ul dvs. %s Adăugarea etichetei dvs. de codificare la "
2302
- "<head> a site-ului o va repara. Mai jos, veți găsi ce puteți plasa, în cazul "
2303
- "în care codificarea dvs. este UTF-8 (majoritatea paginilor web folosesc "
2304
- "asta) %s <meta http-equiv=“Content-Type” content=“text/html;charset=utf-8” /"
2305
- "> %s"
2306
 
2307
  #: models/Audits.php:189
2308
- #, fuzzy
2309
  msgid ""
2310
  "Platforms like Shopify handle this with their default engine. On WordPress "
2311
  "you can use Squirrly SEO to get encoding specified for all your pages. "
@@ -2314,10 +2398,10 @@ msgid ""
2314
  "specification made."
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 obține codificare specificată "
2318
- "pentru toate paginile dvs. Fără a specifica codificarea, motoarele de "
2319
- "căutare, cum ar fi Google, vor fi mai susceptibile să sugereze alte pagini "
2320
- "și să plaseze alte pagini care au specificația făcută."
2321
 
2322
  #: models/Audits.php:190
2323
  msgid "Add the meta encoding tag in the page's header"
@@ -2328,7 +2412,7 @@ msgid "Does your site have a feed or sitemap?"
2328
  msgstr "Site-ul dvs. are un feed sau un sitemap?"
2329
 
2330
  #: models/Audits.php:198
2331
- #, fuzzy, php-format
2332
  msgid ""
2333
  "How can we fix the Feed and Sitemap of the website? %s Make sure that you "
2334
  "feed and Sitemap exists and that it is accessible. Your visitors should be "
@@ -2339,18 +2423,17 @@ msgid ""
2339
  "It has some pretty advanced options, so that you feeds will be perfect. This "
2340
  "feature is free to use.%s"
2341
  msgstr ""
2342
- "Cum putem repara Feed-ul și Sitemap-ul site-ului? %s Asigurați-vă că "
2343
- "alimentați și Sitemap există și că este accesibil. Vizitatorii dvs. ar "
2344
- "trebui să-l poată accesa folosind / feed sau /sitemap.xml %s Asigurați-vă că "
2345
- "vizitatorii dvs. îl pot accesa folosind domainname.com/feed (unde textul "
2346
- "\"nume de domeniu\" este de fapt domeniul dvs., de exemplu, bloggingwithjane."
2347
- "com) %s Pe WordPress, puteți utiliza Squirrly SEO pentru a genera FEED-"
2348
- "ul și Sitemap-ul pentru întregul site. Are câteva opțiuni destul de "
2349
- "avansate, astfel încât alimentările vor fi perfecte. Această caracteristică "
2350
- "este liberă de a utiliza. %s"
2351
 
2352
  #: models/Audits.php:199
2353
- #, fuzzy
2354
  msgid ""
2355
  "Your feeds and sitemaps should contain the date when your content was "
2356
  "published and last updated. This is super important for Google to know, as "
@@ -2360,14 +2443,14 @@ msgid ""
2360
  "anything published during the last week, these people will see it and you "
2361
  "will gain traffic."
2362
  msgstr ""
2363
- "Feed-urile și sitem-urile dvs. ar trebui să conțină data publicării "
2364
- "conținutului și ultima actualizare a conținutului dvs. Acest lucru este "
2365
- "foarte important știe Google, întrucât este întotdeauna în căutarea "
2366
- "suprafeței de conținut proaspăt pentru persoanele care caută pe motoarele de "
2367
- "căutare. PLUS, având acest lucru vă oferă posibilitatea de a prezenta "
2368
- "atunci când utilizatorii Google spun că vor să vadă doar rezultatele din "
2369
- "săptămâna trecută. Dacă ați publicat ceva în ultima săptămână, acești oameni "
2370
- "o vor vedea și veți câștiga trafic."
2371
 
2372
  #: models/Audits.php:200
2373
  msgid "Add a RSS feed and Sitemap to your site"
@@ -2378,7 +2461,7 @@ msgid "Does your site have a robots.txt file?"
2378
  msgstr "Site-ul dvs. are un fișier robots.txt?"
2379
 
2380
  #: models/Audits.php:208
2381
- #, fuzzy, php-format
2382
  msgid ""
2383
  "How can we fix the robots.txt of the website? %s You'll need to have a "
2384
  "http://domain.com/robots.txt link on your site that crawlers can access to "
@@ -2387,23 +2470,22 @@ msgid ""
2387
  "it to your ftp (if you don’t want to let Squirrly operate it for you) and "
2388
  "make sure it can be accessed. %s"
2389
  msgstr ""
2390
- "Cum putem repara robotul.txt al site-ului? %s Va trebui să aveți un link "
2391
- "http://domain.com/robots.txt pe site-ul dvs., pe care crawlerii pot accesa "
2392
- "pentru a ști ce pagini au voie să se deplaseze. (aduna informații din) %s "
2393
- "Creați sau editați un fișier robots.txt folosind acest instrument gratuit "
2394
- "[link] http://tools.seochat.com/tools/online-robots-txt-generator/#sthash."
2395
- "Ucw1odTS.dpbs [/ link] %s După ce aveți fișierul, încărcați-l pe ftp și "
2396
- "asigurați-vă că acesta poate fi accesat. %s"
2397
 
2398
  #: models/Audits.php:209
2399
- #, fuzzy
2400
  msgid ""
2401
  "Platforms like Shopify handle this with their default engine. On WordPress "
2402
  "you can use Squirrly SEO to create and customize your robots.txt"
2403
  msgstr ""
2404
  "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
2405
- "WordPress poți folosi Squirrly SEO pentru a-ți crea și personaliza roboții."
2406
- "txt"
2407
 
2408
  #: models/Audits.php:210
2409
  msgid "Add robots.txt file in your site"
@@ -2418,7 +2500,7 @@ msgid "The pages without viewport meta"
2418
  msgstr "Paginile fără meta viewport"
2419
 
2420
  #: models/Audits.php:218
2421
- #, fuzzy, php-format
2422
  msgid ""
2423
  "How can we fix the meta viewport of the website? %s You need to make sure "
2424
  "you have this tag inside your page's code: <meta name=“viewport” "
@@ -2427,24 +2509,23 @@ msgid ""
2427
  "experience to your viewers is 500 px, then write the following: %s <meta "
2428
  "name=“viewport” content=“width=500, initial-scale=1”>%s"
2429
  msgstr ""
2430
- "Cum putem repara metaviziunea site-ului web? %s Trebuie să vă asigurați că "
2431
- "aveți această etichetă în codul paginii dvs.: <meta name = \"viewport\" "
2432
- "content = \"width = device-width, initial-scale = 1\">. Sau ceva similar. "
2433
- "%s În cazul în care știți că rezoluția minimă necesară pentru a oferi o "
2434
- "experiență bună utilizatorilor spectatorilor dvs. este de 500 px, atunci "
2435
- "scrieți următoarele: %s <meta name = \"viewport\" content = \"width = 500, "
2436
- "initial-scale = 1 „> %s"
2437
 
2438
  #: models/Audits.php:219
2439
- #, fuzzy
2440
  msgid ""
2441
  "Platforms like Shopify handle this with their default engine. On WordPress, "
2442
  "you need to make sure the WordPress theme you buy is responsive and has this "
2443
  "definition."
2444
  msgstr ""
2445
  "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
2446
- "WordPress trebuie să vă asigurați că tema WordPress pe care o cumpărați este "
2447
- "receptivă și are această definiție."
2448
 
2449
  #: models/Audits.php:220
2450
  msgid "Add the meta viewport tag in the page's header"
@@ -2459,7 +2540,7 @@ msgid "The pages without gzip"
2459
  msgstr "Paginile fără gzip"
2460
 
2461
  #: models/Audits.php:228
2462
- #, fuzzy, php-format
2463
  msgid ""
2464
  "How can we fix the gzip compression for our website? %s GZIP compression "
2465
  "must be installed on the web server, such as in Apache, IIS and nginx. When "
@@ -2470,22 +2551,23 @@ msgid ""
2470
  "%s Ask your webmaster / developer / host to help you with this. Or try to "
2471
  "find plugins to help you with this.%s"
2472
  msgstr ""
2473
- "Cum putem repara compresia gzip pentru site-ul nostru web? Compresia GZIP %s "
2474
- "trebuie instalată pe serverul web, cum ar fi în Apache, IIS și nginx. Când "
2475
- "preluați site-ul web, browserul web va solicita vizitatorului primească "
2476
- "GZIP. %s Apoi serverul web va trimite fișierele comprimate GZIP către "
2477
- "browserul web, după care browserul le va dezarhiva. %s În cazul în care "
2478
- "browserul web al vizitatorului nu acceptă GZIP, fișierele vor fi trimise "
2479
- "înapoi vizitatorului în starea inițială (necomprimată). %s"
 
 
2480
 
2481
  #: models/Audits.php:229
2482
- #, fuzzy
2483
  msgid ""
2484
  "Setting this up saves 50% to 80% bandwidth, which will make all your pages "
2485
  "load a lot faster."
2486
  msgstr ""
2487
- "Setarea acestei funcții economisește lățimea de bandă de la 50% la 80%, ceea "
2488
- "ce va face ca toate paginile dvs. să se încarce mult mai rapid."
2489
 
2490
  #: models/Audits.php:230
2491
  msgid "Use gzip to increase your site's speed"
@@ -2511,36 +2593,34 @@ msgstr "Paginile cu meta Open Graph duplicat"
2511
 
2512
  #: models/Audits.php:238 models/Audits.php:248 models/Audits.php:258
2513
  #: models/Audits.php:268
2514
- #, fuzzy, php-format
2515
  msgid ""
2516
  "How can we fix the duplicate meta codes of our pages? %s Make a list of the "
2517
  "pages which have this problem. %s Start fixing them one by one. %s Remove "
2518
  "duplicate definitions of code from the <head> section of each page. (eg. you "
2519
  "have two instances of og:title << remove one of them!)%s"
2520
  msgstr ""
2521
- "Cum putem repara meta codurile duplicate ale paginilor noastre? %s Creează "
2522
- "o listă cu paginile care prezintă această problemă. %s Începeți să le "
2523
- "remediați unul câte unul. %s Eliminați definițiile duplicate ale codului "
2524
- "din <head> secțiune a fiecărei pagini. (de ex. aveți două instanțe de og: "
2525
- "title << eliminați una dintre ele!) %s"
2526
 
2527
  #: models/Audits.php:239 models/Audits.php:249 models/Audits.php:259
2528
  #: models/Audits.php:269
2529
- #, fuzzy
2530
  msgid ""
2531
  "On WordPress you can use Squirrly SEO to Remove Duplicate Meta codes from "
2532
  "all your pages. It removes them automatically. No work on your behalf."
2533
  msgstr ""
2534
- "Pe WordPress puteți folosi SEO Squirrly pentru a elimina codurile Meta "
2535
- "duplicate din toate paginile dvs. Îi elimină automat. Nicio treabă în numele "
2536
- "tău."
2537
 
2538
  #: models/Audits.php:240 models/Audits.php:250 models/Audits.php:260
2539
  #: models/Audits.php:270
2540
- #, fuzzy
2541
  msgid "Make sure you don't have duplicate meta tags in your site's header"
2542
  msgstr ""
2543
- "Asigurați-vă că nu aveți metaetichete duplicate în antetul site-ului dvs."
2544
 
2545
  #: models/Audits.php:245
2546
  msgid "Duplicate Twitter Card Tags?"
@@ -2575,7 +2655,7 @@ msgid "Shares"
2575
  msgstr "Distribuiri"
2576
 
2577
  #: models/Audits.php:287
2578
- #, fuzzy, php-format
2579
  msgid ""
2580
  "How can we raise the Social Media Shares (or signals) for our pages on "
2581
  "Social Media? %s Use a tool like SalesFlare or FullContact (both paid) to "
@@ -2595,23 +2675,28 @@ msgid ""
2595
  "so that you get better social signals and also 10,000 visits from social "
2596
  "media: [link]https://www.squirrly.co/podcast/[/link] %s"
2597
  msgstr ""
2598
- "Cum putem ridica Acțiunile (sau semnalele) de social media pentru paginile "
2599
- "noastre de pe Social Media? %s Folosiți un instrument precum SalesFlare sau "
2600
- "FullContact (ambele plătite) pentru a extrage profilurile de social media "
2601
- "ale clienților, utilizatorilor, abonaților de e-mail și chiar conexiunilor "
2602
- "LinkedIN. Apoi, asigurați-vă că vă urmăresc pe Social Media. O modalitate "
2603
- "ușoară de a face acest lucru este să le urmați singur. Deja le pasă de tine "
2604
- "și de compania ta. Ei vor interacționa cu plăcere cu profilurile tale. "
2605
- "Utilizarea unor astfel de instrumente vă va oferi, de asemenea, o imagine "
2606
- "clară despre ce platforme de social media utilizează cel mai mult publicul "
2607
- "dorit, astfel încât să puteți crea profiluri doar pentru acele platforme de "
2608
- "social media. %s Ar trebui să creezi Giveways cu Gleam.io [link] http://"
2609
- "gleam.io [/ link] sau creezi Thunder Claps [link] http://thunderclap.it "
2610
- "[/ link] sau HeadTalker [link] https: / /headtalker.com/[/link] pentru a "
2611
- "face orice pagină super populară pe rețelele de socializare. %s"
 
 
 
 
 
 
2612
 
2613
  #: models/Audits.php:288
2614
- #, fuzzy
2615
  msgid ""
2616
  "All the shares and likes that your fans will give your pages will contribute "
2617
  "to the total number of shares from social media (social signals). When "
@@ -2619,11 +2704,11 @@ msgid ""
2619
  "media, it will consider that your site is becoming popular and will increase "
2620
  "its rankings."
2621
  msgstr ""
2622
- "Toate distribuirile și like-urile pe care fanii dvs. le vor oferi paginilor "
2623
- "dvs. vor contribui la numărul total de partajări de pe social media (semnale "
2624
- "sociale). Acest factor de clasare care este important pentru motoarele de "
2625
- "căutare precum Google, deoarece arată mulți oameni le pasă de paginile "
2626
- "dvs."
2627
 
2628
  #: models/Audits.php:289
2629
  msgid "You have to share your articles with your fans"
@@ -2638,7 +2723,7 @@ msgid "The pages without share buttons"
2638
  msgstr "Paginile fără butoane de partajare"
2639
 
2640
  #: models/Audits.php:297
2641
- #, fuzzy, php-format
2642
  msgid ""
2643
  "How can we get social media share buttons on our website? %s There are many "
2644
  "options to help you get social sharing buttons inside your website. However, "
@@ -2649,27 +2734,26 @@ msgid ""
2649
  "WordPress. It works with any CMS platform. The loading speed is great and "
2650
  "their social media counters work perfectly.%s"
2651
  msgstr ""
2652
- "Cum putem obține butoane de distribuire a rețelelor de socializare pe site-"
2653
- "ul nostru web? %s Există multe opțiuni care vă ajută să obțineți butoane de "
2654
- "partajare socială pe site-ul dvs. web. Cu toate acestea, trebuie să aveți "
2655
  "grijă să nu le lăsați să vă strice timpii de încărcare. Majoritatea "
2656
- "pluginurilor și aplicațiilor vor face asta. %s Sumo.com este o opțiune OK. "
2657
- "Nu sunt foarte mulțumit de ei, pentru că considerîncetinește paginile "
2658
- "mele. %s Favoritele mele actuale sunt [link] http://info.zotabox.com/ [/ "
2659
- "link]. Le folosesc pe Shopify și WordPress. Funcționează cu orice platformă "
2660
- "CMS. Viteza de încărcare este mare, iar contoarele lor de social media "
2661
- "funcționează perfect. %s"
2662
 
2663
  #: models/Audits.php:298
2664
- #, fuzzy
2665
  msgid ""
2666
  "All there is to it is: make the buttons obvious, so people can easily find "
2667
  "them. Make sure they don't slow your site down. Make sure they look great on "
2668
  "mobile."
2669
  msgstr ""
2670
- "Nu mai rămâne decât: faceți butoanele evidente, astfel încât oamenii să le "
2671
- "poată găsi cu ușurință. Asigurați-vă că nu încetinesc site-ul. Asigurați-vă "
2672
- "că arăt excelent pe mobil."
2673
 
2674
  #: models/Audits.php:299
2675
  msgid "Add Social Share buttons in your articles"
@@ -2684,7 +2768,7 @@ msgid "The pages without social buttons"
2684
  msgstr "Paginile fără butoane sociale"
2685
 
2686
  #: models/Audits.php:307
2687
- #, fuzzy, php-format
2688
  msgid ""
2689
  "How can we fix the Social Follow Me buttons of the website? %s Add buttons "
2690
  "to your website, that allow your visitors to check your social media "
@@ -2694,35 +2778,32 @@ msgid ""
2694
  "teaching you how to implement such buttons and other trust elements for your "
2695
  "digital brand. [link]http://expectationmarketing.com/[/link] %s"
2696
  msgstr ""
2697
- "Cum putem repara butoanele Social Follow Me ale site-ului? %s Adăugați "
2698
- "butoane pe site-ul dvs. web, care permit vizitatorilor să vă verifice "
2699
- "profilurile de social media și să vă urmărească pe rețelele de socializare. "
2700
- "%s Acesta este unul dintre cele mai importante aspecte în zilele noastre, "
2701
- "dacă doriți să construiți încredere cu site-ul dvs. web. %s Aflați mai "
2702
- "multe cu marketingul așteptării. Așteptarea marketingului înseamnă"
2703
- "învețe cum să implementați astfel de butoane și alte elemente de încredere "
2704
- "pentru marca dvs. digitală. [link] http://expectationmarketing.com/ [/ link] "
2705
- "%s"
2706
 
2707
  #: models/Audits.php:308
2708
- #, fuzzy
2709
  msgid ""
2710
  "Place the buttons in your site's footer, to make sure they're always "
2711
  "accessible. Web users are used to finding them there when they wish to "
2712
  "connect to brands on social media."
2713
  msgstr ""
2714
- "Plasați butoanele în subsolul site-ului dvs., pentru a vă asigura că acestea "
2715
- "sunt întotdeauna accesibile. Utilizatorii web obișnuiesc să-i găsească acolo "
2716
- "atunci când doresc să se conecteze la mărci pe rețelele de socializare."
2717
 
2718
  #: models/Audits.php:309
2719
- #, fuzzy
2720
  msgid ""
2721
  "Add links to your Social Media profiles to strengthen social signals and "
2722
  "keep readers engaged."
2723
  msgstr ""
2724
- "Adăugați legături la profilurile dvs. de social media pentru a consolida "
2725
- "semnalele sociale și a menține cititorii implicați"
2726
 
2727
  #: models/Audits.php:314
2728
  msgid "Open Graph protocol?"
@@ -2733,7 +2814,7 @@ msgid "The pages without Open Graph metas"
2733
  msgstr "Paginile fără metas Open Graph"
2734
 
2735
  #: models/Audits.php:317
2736
- #, fuzzy, php-format
2737
  msgid ""
2738
  "How can we fix the Open Graph of the website? %s You need to make sure "
2739
  "you're going to fix the Open Graph image AS WELL AS all the other open graph "
@@ -2754,42 +2835,40 @@ msgid ""
2754
  "site_name” content=“Expectation Marketing” /> %s <meta property=“og:locale” "
2755
  "content=“en” />%s"
2756
  msgstr ""
2757
- "Cum putem repara graficul deschis al site-ului? %s Trebuie să vă asigurați "
2758
- "veți repara imaginea Open Graph AS WELL AS toate celelalte elemente de "
2759
- "grafic deschise. Al treilea punct punct din această secțiune oferă "
2760
- "exemple pe care trebuie le implementați în <head> secțiunea codului "
2761
- "paginii dvs. Asigurați-vă înlocuiți elementele din conținut = &quot;"
2762
- "&quot; cu lucrurile proprii: propriile titluri, URL-urile propriei imagini, "
2763
- "etc. %s Dacă sunteți pe WordPress, veți primi cu ușurință toate setările de "
2764
- "care aveți nevoie din SEO Squirrly. Asigurați- îl utilizați. %s <meta "
2765
- "property=“og:url content=“{site}/product/expectation-marketing-ebook/“ /> "
2766
- "%s <meta property=“og:title” content=“Expectation Marketing [Book]” /> %s "
2767
- "<meta property=“og:description” content=“If you&#039;re wondering why your "
2768
- "marketing strategy isn&#039;t bringing the results you expected this is the "
2769
- "right ebook for you. Expectation Marketing is about giving you an acti” /> "
2770
- "%s <meta property=“og:type” content=“product” /> %s <meta property=“og:"
2771
- "image” content=“{site}/image.jpg /> %s <meta property=“og:image:width” "
2772
- "content=“700” /> %s <meta property=“og:image:height” content=“536” /> %s "
2773
- "<meta property=“og:image:type content=“image/jpeg /> %s <meta "
2774
- "property=“og:site_name” content=“Expectation Marketing” /> %s <meta "
2775
- "property=“og:locale” content=“en” /> %s"
2776
 
2777
  #: models/Audits.php:318
2778
- #, fuzzy
2779
  msgid ""
2780
  "Fixing this will improve Click Through Rates on Facebook, LinkedIN. "
2781
  "Guaranteed. Make sure you use this to control how your pages look on social "
2782
  "media when people share them."
2783
  msgstr ""
2784
- "Rezolvarea acestui lucru va îmbunătăți ratele de clic pe Facebook, Google "
2785
- "Plus, LinkedIN. Garantat. Asigurați-vă că utilizați acest lucru pentru a "
2786
- "controla aspectul paginilor dvs. pe social media atunci când oamenii le "
2787
- "distribuie."
2788
 
2789
  #: models/Audits.php:319
2790
- #, fuzzy
2791
  msgid "Add the meta Open Graph tag in your page's header."
2792
- msgstr "Adăugați eticheta meta Open Graph în antetul paginii dvs."
2793
 
2794
  #: models/Audits.php:324
2795
  msgid "Twitter Card?"
@@ -2800,7 +2879,7 @@ msgid "The pages without Twitter Card metas"
2800
  msgstr "Paginile fără metacarte Twitter Card"
2801
 
2802
  #: models/Audits.php:327
2803
- #, fuzzy, php-format
2804
  msgid ""
2805
  "How can we fix the Twitter Cards of the website? %s You need to make sure "
2806
  "you're going to fix the Twitter Card image AS WELL AS all the other twitter "
@@ -2818,40 +2897,38 @@ msgid ""
2818
  "image.jpg” /> %s <meta property=“twitter:domain” content=“Expectation "
2819
  "Marketing” /> %s <meta property=“twitter:card” content=“summary” />%s"
2820
  msgstr ""
2821
- "Cum putem repara cărțile Twitter ale site-ului? %s Trebuie să vă asigurați "
2822
- "veți repara imaginea cartelei Twitter așa de bine ca toate celelalte "
2823
- "elemente ale cardului twitter. Al treilea punct punct din această secțiune "
2824
- " oferă exemple pe care trebuie le implementați în <head> secțiunea "
2825
- "codului paginii dvs. Asigurați-vă înlocuiți elementele din conținut = "
2826
- "&quot;&quot; cu lucrurile proprii: propriile titluri, URL-urile propriei "
2827
- "imagini, etc. %s Dacă sunteți pe WordPress, veți primi cu ușurință toate "
2828
- "setările de care aveți nevoie din SEO Squirrly. Asigurați-vă că îl "
2829
- "utilizați. %s <meta property=“twitter:url content=“{site}/product/"
2830
- "expectation-marketing-ebook/“ /> %s <meta property=“twitter:title” "
2831
- "content=“Expectation Marketing [Book]” /> %s <meta property=“twitter:"
2832
- "description” content=“If you&#039;re wondering why your marketing strategy "
2833
- "isn&#039;t bringing the results you expected this is the right ebook for "
2834
- "you. Expectation Marketing is about giving you an acti” /> %s <meta "
2835
- "property=“twitter:image content=“{site}/image.jpg /> %s <meta "
2836
- "property=“twitter:domain” content=“Expectation Marketing” /> %s <meta "
2837
- "property=“twitter:card” content=“summary” /> %s"
2838
 
2839
  #: models/Audits.php:328
2840
- #, fuzzy
2841
  msgid ""
2842
  "Fixing this will improve Click Through Rates on Twitter. Guaranteed. Make "
2843
  "sure you use this to control how your pages look on social media when people "
2844
  "share them."
2845
  msgstr ""
2846
- "Rezolvarea acestui lucru va îmbunătăți ratele de clic pe Twitter. Garantat. "
2847
- "Asigurați-vă că utilizați acest lucru pentru a controla aspectul paginilor "
2848
- "dvs. pe social media atunci când oamenii le distribuie."
2849
 
2850
  #: models/Audits.php:329
2851
- #, fuzzy
2852
  msgid "Add Twitter Card to make your articles look better on Twitter."
2853
  msgstr ""
2854
- "Adăugați Twitter Card pentru ca articolele dvs. să pară mai bune pe Twitter."
2855
 
2856
  #: models/Audits.php:337
2857
  msgid "Majestic Backlinks"
@@ -2867,7 +2944,7 @@ msgid "Backlinks Count"
2867
  msgstr "Numărătoarea de backlink-uri"
2868
 
2869
  #: models/Audits.php:340 models/Audits.php:349
2870
- #, fuzzy, php-format
2871
  msgid ""
2872
  "How can we fix the Inbound Links Number to the latest 10 Pages? %s Many are "
2873
  "tempted to go to [link]fiverr.com[/link] for something like this. Avoid "
@@ -2889,24 +2966,29 @@ msgid ""
2889
  "from their industry who were easy to reach. This helped them secure new "
2890
  "links from trust-worthy sites. %s"
2891
  msgstr ""
2892
- "Cum putem repara numărul de legături de intrare la ultimele 10 pagini? %s "
2893
- "Mulți sunt tentați să meargă la [link] fiverr.com [/ link] pentru ceva de "
2894
- "genul acesta. Evitați SEO umbrit. Ce poți încerca și NUMAI dacă are sens, "
2895
- "este să-i faci pe bloggerii care vând pe fiverr să-ți plaseze articolul (cu "
2896
- "link-uri către propriul site) pe site-ul lor. %s Puteți obține cu ușurință "
2897
- "backlink-uri din mai multe domenii, arătând că afacerea dvs.: - este o "
2898
- "alternativă la alte afaceri existente (există multe site-uri web pe care "
2899
- "oamenii caută alternative și vor fi încântați să includă și site-ul dvs., "
2900
- "deoarece acesta își susține scopul) - are reduceri și cupoane (există multe "
2901
- "site-uri web pentru cupoane și reduceri. Doar căutați pe Google și veți găsi "
2902
- "multe. Vor include cu plăcere codurile dvs. de cupoane și link-uri către "
2903
- "site-ul dvs.) - gazdele cadouri și concursuri (multe site-uri web care se "
2904
- "vor conecta fericit la pagina concursului de pe site-ul dvs. web) %s Broken "
2905
- "Link Building, folosind instrumente precum Screaming Frog pentru a ajuta "
2906
- "să găsiți linkuri rupte. %s"
 
 
 
 
 
 
2907
 
2908
  #: models/Audits.php:341 models/Audits.php:350
2909
- #, fuzzy
2910
  msgid ""
2911
  "Use the BackLinks Assistant [link]https://www.producthunt.com/upcoming/"
2912
  "backlinks-assistant-by-squirrly[/link]. There are many other ways to "
@@ -2915,11 +2997,12 @@ msgid ""
2915
  "plugin/. Send it to your team. Brainstorm items from our list which your "
2916
  "team can start working on."
2917
  msgstr ""
2918
- "Utilizați Asistentul BackLinks [link] https://www.producthunt.com/upcoming/"
2919
- "backlinks-assistant-by-squirrly [/ link]. Există multe alte modalități de a "
2920
- "crește numărul de backlink-uri. Vedeți documentația completă de mai jos. "
2921
- "Trimite-o echipei tale. Brainstorm elemente din lista noastră la care echipa "
2922
- "dvs. poate începe lucreze."
 
2923
 
2924
  #: models/Audits.php:346
2925
  msgid "Majestic Unique Domains"
@@ -2942,7 +3025,7 @@ msgid "Moz Backlinks Count"
2942
  msgstr "Moz Backlinks Count"
2943
 
2944
  #: models/Audits.php:358
2945
- #, fuzzy, php-format
2946
  msgid ""
2947
  "How can we fix the Inbound Links Number to the latest 10 Pages? %s Many are "
2948
  "tempted to go to fiverr.com for something like this. Avoid shady SEO. What "
@@ -2959,24 +3042,23 @@ msgid ""
2959
  "Broken Link Building, using tools like Screaming Frog to help you find "
2960
  "broken links.%s"
2961
  msgstr ""
2962
- "Cum putem repara numărul de legături de intrare la ultimele 10 pagini? %s "
2963
- "Mulți sunt tentați să meargă pe fiverr.com pentru ceva de genul acesta. "
2964
- "Evitați SEO umbrit. Ce poți încerca și NUMAI dacă are sens, este să-i faci "
2965
- "pe bloggerii care vând pe fiverr să-ți plaseze articolul (cu link-uri către "
2966
- "propriul site) pe site-ul lor. %s Puteți obține cu ușurință backlink-uri "
2967
- "din mai multe domenii, arătând că afacerea dvs.: - este o alternativă la "
2968
- "alte afaceri existente (există multe site-uri web pe care oamenii caută "
2969
- "alternative și vor fi încântați să includă și site-ul dvs., deoarece acesta "
2970
- "își susține scopul) - are reduceri și cupoane (există multe site-uri web "
2971
- "pentru cupoane și reduceri. Doar căutați pe Google și veți găsi multe. Vor "
2972
- "include cu plăcere codurile dvs. de cupoane și link-uri către site-ul dvs.) "
2973
- "- gazdele cadouri și concursuri (multe site-uri web care se vor conecta "
2974
- "fericit la pagina concursului de pe site-ul dvs. web) %s Broken Link "
2975
- "Building, folosind instrumente precum Screaming Frog pentru a ajuta să "
2976
- "găsiți linkuri rupte. %s"
2977
 
2978
  #: models/Audits.php:359
2979
- #, fuzzy
2980
  msgid ""
2981
  "Use the BackLinks Assistant [link]https://www.producthunt.com/upcoming/"
2982
  "backlinks-assistant-by-squirrly[/link] . There are many other ways to "
@@ -2984,20 +3066,19 @@ msgid ""
2984
  "below. Send it to your team. Brainstorm items from our list which your team "
2985
  "can start working on."
2986
  msgstr ""
2987
- "Utilizați Asistentul BackLinks [link] https://www.producthunt.com/upcoming/"
2988
- "backlinks-assistant-by-squirrly [/ link]. Există multe alte modalități de a "
2989
- "crește numărul de backlink-uri. Vedeți documentația completă de mai jos. "
2990
- "Trimite-o echipei tale. Brainstorm elemente din lista noastră la care echipa "
2991
- "dvs. poate începe să lucreze."
2992
 
2993
  #: models/Audits.php:360
2994
- #, fuzzy
2995
  msgid ""
2996
  "Find more blogs, forums, directories to add links there. Contribute to the "
2997
  "respective community and they will appreciate it."
2998
  msgstr ""
2999
  "Găsiți mai multe bloguri, forumuri, directoare pentru a adăuga linkuri "
3000
- "acolo. Contribuie la comunitatea respectivă și ei o vor aprecia."
3001
 
3002
  #: models/Audits.php:365
3003
  msgid "Links with noFollow?"
@@ -3008,7 +3089,7 @@ msgid "Nofollow Links Count"
3008
  msgstr "Numărătoarea de linkuri Nofollow"
3009
 
3010
  #: models/Audits.php:368
3011
- #, fuzzy, php-format
3012
  msgid ""
3013
  "How can we fix the No-Follow links of the website? %s You can find an "
3014
  "extremely easy way to do this in the SEO Kit of Squirrly: [link]https://www."
@@ -3031,30 +3112,31 @@ msgid ""
3031
  "want to NoFollow your Sign In page you could do it like this: <a href="
3032
  "\"signin.php\" rel=\"nofollow\">sign in</a>%s"
3033
  msgstr ""
3034
- "Cum putem repara link-urile nr-Follow ale site-ului? %s Puteți începe "
3035
- "faceți acest lucru chiar dacă nu aveți o strategie SEO avansată sau complexă "
3036
- "pentru toate legăturile interioare ale site-ului dvs. Dacă aveți pagini în "
3037
- "strategia dvs. SEO super importante (aveți nevoie de acele pagini care pot "
3038
- "fi găsite prin căutare), asigurați- adăugați: <meta name=\"robots\" "
3039
- "content=\"index, nofollow\" /> Acest lucru asigură Google consideră "
3040
- "aceasta este o pagină finală. Dacă multe alte pagini se conectează la "
3041
- "această pagină și aceasta este ultima, înseamnăaceasta este cea mai "
3042
- "valoroasă resursă. %s Identificați linkurile din paginile dvs. care nu sunt "
3043
- "importante pentru dvs. sau pentru scopul site-ului în sine. Poate trimiteți "
3044
- "un link către rețeta bucătarului Jamie Oliver pentru sosul fierbinte. Ar "
3045
- "trebui asigurați adăugați eticheta No Follow la linkul care iese de "
3046
- "pe site-ul dvs., deoarece nu doriți ca Google transmită sucul de link "
3047
- "către Jaime Oliver. I-ai da o parte din autoritatea ta SEO și nu vrei asta. "
3048
- "De asemenea, ar trebui adăugați etichete No-Follow la linkurile interne "
3049
- "de pe propriul site. Adăugați urmăriri în pagini precum „/ autentificare”, "
3050
- "„/ înregistrare” „/ condiții de utilizare”, care nu sunt importante pentru a "
3051
- "fi găsite prin motoarele de căutare. %s Adăugați rel = \"nofollow\" la "
3052
- "linkurile din paginile dvs. pentru a remedia această sarcină. Dacă doriți să "
3053
- "nu urmăriți pagina de conectare, puteți face acest lucru: <a href="
3054
- "\"signin.php\" rel=\"nofollow\">conectați-vă</a> %s"
 
 
3055
 
3056
  #: models/Audits.php:369
3057
- #, fuzzy
3058
  msgid ""
3059
  "You could add no-follow to most of the links from your site that go towards "
3060
  "external, third-party websites. The only external sites you should leave "
@@ -3063,18 +3145,17 @@ msgid ""
3063
  "other people's sites if they are super high authority and would help Google "
3064
  "better understand what your site's content is all about."
3065
  msgstr ""
3066
- "Puteți adăuga non-follow la majoritatea linkurilor de pe site-ul dvs. care "
3067
- "se îndreaptă către site-uri web terțe, externe. Singurele site-uri externe "
3068
- "pe care ar trebui să le lăsați fără No-Follow sunt site-urile cu care doriți "
3069
- "să le asociați Google. Asta înseamnă că, în unele cazuri, este posibil "
3070
- "doriți să trimiteți link-uri de urmărire către site-urile altor persoane, "
3071
- "dacă sunt autorități super-înalte și ar ajuta Google să înțeleagă mai bine "
3072
- "despre ce conține site-ul dvs."
3073
 
3074
  #: models/Audits.php:370
3075
- #, fuzzy
3076
  msgid "Add nofollow links to pages like Terms and Conditions."
3077
- msgstr "Adăugați link-uri nofollow la pagini precum Termeni și condiții."
3078
 
3079
  #: models/Audits.php:379 models/FocusPages.php:29
3080
  msgid "Page Authority"
@@ -3085,7 +3166,7 @@ msgid "average authority"
3085
  msgstr "autoritatea medie"
3086
 
3087
  #: models/Audits.php:382
3088
- #, fuzzy, php-format
3089
  msgid ""
3090
  "How can we fix the Authority of the website? %s You must start by "
3091
  "understanding this: Authority is Squirrly's calculated metric for how well a "
@@ -3101,17 +3182,23 @@ msgid ""
3101
  "Focus Pages from Squirrly: everything we tell you there helps boost your "
3102
  "authority: [link]https://plugin.squirrly.co/focus-pages/[/link] %s"
3103
  msgstr ""
3104
- "Cum putem repara Autoritatea site-ului web? %s Trebuie să începeți prin a "
3105
- "înțelege acest lucru: Autoritatea este metrica calculată de Squirrly pentru "
3106
- "cât de bine este posibil ca o anumită pagină web să se încadreze în "
3107
- "rezultatele căutării Google. Colectează date din social media, Google "
3108
- "Analytics și link-uri de intrare (backlinks către propriul site) %s Puteți "
3109
- "urmări secțiunile PRO Tips din Audit. %s Obțineți mai mult Buzz pe rețelele "
3110
- "de socializare. Obțineți mai mult trafic. Obțineți mai multe site-uri pentru "
3111
- "a conecta înapoi la propriul dvs. site. Așa îți mărești Autoritatea. %s"
 
 
 
 
 
 
 
3112
 
3113
  #: models/Audits.php:383
3114
- #, fuzzy
3115
  msgid ""
3116
  "You can build up a solid Content Strategy using the SEO Goals and our brand "
3117
  "new Private SEO Consultant. In a Plugin. Powered by Machine Learning and "
@@ -3120,11 +3207,12 @@ msgid ""
3120
  "[link]https://www.producthunt.com/upcoming/backlinks-assistant-by-squirrly[/"
3121
  "link]."
3122
  msgstr ""
3123
- "Puteți construi o strategie de conținut solidă folosind acest software "
3124
- "asistent [link] https://www.producthunt.com/upending/strategy-assistant-by-"
3125
- "squirrly [/ link] sau puteți începe să obțineți mai multe BackLink folosind "
3126
- "asistența BackLinks [ link] https://www.producthunt.com/upcoming/backlinks-"
3127
- "assistant-by-squirrly [/ link]."
 
3128
 
3129
  #: models/Audits.php:384
3130
  msgid "Get links to your page from domains with authority."
@@ -3135,7 +3223,7 @@ msgid "Alexa Rank"
3135
  msgstr "Alexa Rank"
3136
 
3137
  #: models/Audits.php:392
3138
- #, fuzzy, php-format
3139
  msgid ""
3140
  "How can we fix the Alexa Rank of the website? %s Get more traffic to your "
3141
  "website. (the visitors should have the Alexa toolbar installed for Alexa to "
@@ -3147,27 +3235,27 @@ msgid ""
3147
  "posting them. [link]https://www.squirrly.co/social-media/tools-for-digital-"
3148
  "marketing/[/link]%s"
3149
  msgstr ""
3150
- "Cum putem repara Alexa Rank a site-ului? %s Obțineți mai mult trafic pe "
3151
- "site-ul dvs. web. (vizitatorii ar trebui să aibă bara de instrumente Alexa "
3152
- "instalată pentru Alexa pentru a putea măsura traficul). %s Ați putea "
3153
- "încuraja vizitatorii să instaleze bara de instrumente Alexa (dacă are sens "
3154
- "pentru afacerea sau audiența dvs., desigur). %s Creșteți-vă clasamentul "
3155
- "SEO, obțineți mai multe acțiuni pe rețelele de socializare. Puteți utiliza "
3156
- "instrumente precum Social Squirrly pentru a vă asigura că vă promovați în "
3157
- "mod constant paginile, fără a face nicio lucrare manuală. Și fără să uităm "
3158
- "să le postăm. (link: squirrly.co/social)%s"
 
3159
 
3160
  #: models/Audits.php:393
3161
- #, fuzzy
3162
  msgid ""
3163
  "A certain and tested way of increasing Alexa rank is creating and promoting "
3164
  "many pieces of fresh content. An agency like Squirrly's Content Agency can "
3165
  "help you with this. [link]http://www.squirrly.co/agency[/link]"
3166
  msgstr ""
3167
- "Un mod sigur și testat de creștere a rangului Alexa este crearea și "
3168
- "promovarea multor bucăți de conținut proaspăt. O agenție precum Squirrlys "
3169
- "Content Agency vă poate ajuta în acest sens. [Link] http://www.squirrly.co/"
3170
- "agency [/ link]"
3171
 
3172
  #: models/Audits.php:394
3173
  msgid "Try to gain organic traffic to your site."
@@ -3178,7 +3266,7 @@ msgid "Domain Age"
3178
  msgstr "Vârsta domeniului"
3179
 
3180
  #: models/Audits.php:402
3181
- #, fuzzy, php-format
3182
  msgid ""
3183
  "How can we fix the Domain Age of the website? %s While you certainly can't "
3184
  "go back and forth in time like the Flash, there are things you can do, like: "
@@ -3189,44 +3277,43 @@ msgid ""
3189
  "org/web/[/link] Archive.org even has a tool called Save Page Now which will "
3190
  "guarantee your entry into Way Back Machine.%s"
3191
  msgstr ""
3192
- "Cum putem repara Domeniul de vârstă al site-ului? %s În timp ce cu "
3193
- "siguranță nu puteți merge înainte și înapoi în timp, precum Flash, există "
3194
- "lucruri pe care le puteți face, cum ar fi: asigurați-vă că domeniul dvs. "
3195
- "poate fi accesat cu crawlere de către motoarele de căutare. %s Ping numele "
3196
- "dvs. de domeniu cât mai curând posibil folosind un instrument precum: Google "
3197
- "Ping (LINK: googleping.com) %s Obțineți site-ul dvs. pe Way Back Machine. "
3198
- "[link] https://archive.org/web/ [/ link] Archive.org are chiar și un "
3199
- "instrument numit Save Page Now, care vă va garanta intrarea în Way Way "
3200
- "Machine. %s"
 
3201
 
3202
  #: models/Audits.php:403
3203
- #, fuzzy
3204
  msgid ""
3205
  "If Squirrly could crawl your website and find your pages + show you the "
3206
  "Audit, it means your domain and pages can be crawled. Just make sure you're "
3207
  "not stopping the Google crawlers in your code via \"no-index\" or via robots."
3208
  "txt"
3209
  msgstr ""
3210
- "Dacă Squirrly ar putea accesa site-ul dvs. web și a găsi paginile dvs. + vă "
3211
- "va arăta Auditul, înseamnă că domeniul dvs. și paginile pot fi accesate cu "
3212
- "crawlere. Doar asigurați-vă că nu opriți crawler-urile Google din codul dvs. "
3213
- "prin no-index sau prin robots.txt"
3214
 
3215
  #: models/Audits.php:404
3216
- #, fuzzy
3217
  msgid ""
3218
  "Your domain is new. I know it will get older, but still, it's good to know "
3219
  "what to expect if it's new :)"
3220
  msgstr ""
3221
- "Domeniul dvs. este nou. Știu că va îmbătrâni, dar totuși, este bine să știi "
3222
- "la ce să te aștepți dacă este nou :)"
3223
 
3224
  #: models/Audits.php:409
3225
  msgid "Site Icon"
3226
  msgstr "Icoana site-ului"
3227
 
3228
  #: models/Audits.php:412
3229
- #, fuzzy, php-format
3230
  msgid ""
3231
  "How can we fix the favicon of the website? %s If you don't already have a "
3232
  "favicon, you'll need to create one. The dimensions are 16 x 16 pixels %s You "
@@ -3235,24 +3322,22 @@ msgid ""
3235
  "favicon, use this in the code of your pages: <link rel=“shortcut icon” "
3236
  "href=“/images/specialicon.ico” type=“image/x-icon” />%s"
3237
  msgstr ""
3238
- "Cum putem repara favorizarea site-ului web? %s Dacă nu aveți deja un "
3239
- "favicon, va trebui să creați unul. Dimensiunile sunt 16 x 16 pixeli %s "
3240
- "Puteți crea cu ușurință unul folosind acest [link] http://www.favicon.cc/ [/ "
3241
- "link]. Încărcați-l pe propriul dvs. server după crearea acestuia. %s După "
3242
- "ce ai favicon, folosește acest lucru în codul paginilor tale: <link rel = "
3243
- "\"pictograma scurtătură\" href = \"/ images / specialicon.ico\" type = "
3244
- "\"image / x-icon\" /> %s"
3245
 
3246
  #: models/Audits.php:413
3247
- #, fuzzy
3248
  msgid ""
3249
  "Platforms like Shopify handle this with their default engine. On WordPress "
3250
  "you can use Squirrly SEO to upload and control the favicon displayed on your "
3251
  "pages."
3252
  msgstr ""
3253
  "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
3254
- "WordPress puteți utiliza SEO Squirrly pentru a încărca și controla faviconul "
3255
- "afișat în paginile dvs."
3256
 
3257
  #: models/Audits.php:414 models/Audits.php:424
3258
  msgid "Add an icon for your site"
@@ -3263,7 +3348,7 @@ msgid "IPad and IPhone Icons"
3263
  msgstr "IPad și IPhone Icoane"
3264
 
3265
  #: models/Audits.php:422
3266
- #, fuzzy, php-format
3267
  msgid ""
3268
  "How can we fix the Apple Icon of the website? %s If you don't already have "
3269
  "an Apple Icon, you'll need to create one. The dimensions are 129 x 129 "
@@ -3273,25 +3358,25 @@ msgid ""
3273
  "the <head> section) of your pages: %s <link rel=“apple-touch-icon” href=“/"
3274
  "apple-touch-icon.png” />%s"
3275
  msgstr ""
3276
- "Cum putem repara pictograma Apple a site-ului web? %s Dacă nu aveți deja o "
3277
- "pictogramă Apple, va trebui să creați una. Dimensiunile sunt 129 x 129 "
3278
- "pixeli. Va trebui să fie un fișier .png %s Puteți crea cu ușurință unul "
3279
- "folosind acest [link] https://www.canva.com/ [/ link]. Încărcați-l pe "
3280
- "propriul dvs. server după crearea acestuia. %s După ce ai pictograma Apple, "
3281
- "folosește acest lucru în cod (în <head> secțiune) din paginile dvs.: %s "
3282
- "<link rel=“apple-touch-icon href=“/apple-touch-icon.png /> %s"
 
3283
 
3284
  #: models/Audits.php:423
3285
- #, fuzzy
3286
  msgid ""
3287
  "Platforms like Shopify handle this with their default engine. On WordPress "
3288
  "you can use Squirrly SEO to upload and control the Apple Icon displayed on "
3289
  "user's home screens when they bookmark your pages."
3290
  msgstr ""
3291
  "Platforme precum Shopify se ocupă de acest lucru cu motorul lor implicit. Pe "
3292
- "WordPress puteți utiliza Squirrly SEO pentru a încărca și controla "
3293
- "pictograma Apple afișată pe ecranele de pornire ale utilizatorului atunci "
3294
- "când marchează paginile."
3295
 
3296
  #: models/Audits.php:463 models/Audits.php:496 models/Audits.php:515
3297
  #: models/Audits.php:622 models/focuspages/Audit.php:186
@@ -3336,7 +3421,7 @@ msgstr "Acțiuni Pinterest"
3336
  msgid "Value"
3337
  msgstr "Valoare"
3338
 
3339
- #: models/Audits.php:690 view/Audits/Audit.php:142 view/Audits/Compare.php:163
3340
  msgid "PRO TIP"
3341
  msgstr "PRO TIP"
3342
 
@@ -3356,15 +3441,15 @@ msgstr "nu încă"
3356
  msgid "METAs"
3357
  msgstr "METAs"
3358
 
3359
- #: models/BulkSeo.php:17 view/Blocks/Snippet.php:89
3360
  msgid "Open Graph"
3361
- msgstr "Deschidere grafic"
3362
 
3363
- #: models/BulkSeo.php:18 view/Blocks/Snippet.php:93
3364
  msgid "Twitter Card"
3365
  msgstr "Card Twitter"
3366
 
3367
- #: models/BulkSeo.php:19 models/FocusPages.php:19 view/Blocks/Snippet.php:97
3368
  msgid "Visibility"
3369
  msgstr "Vizibilitate"
3370
 
@@ -3373,7 +3458,7 @@ msgid "Make your site Visible asap"
3373
  msgstr "Faceți site-ul dvs. vizibil cât mai curând posibil"
3374
 
3375
  #: models/CheckSeo.php:39
3376
- #, fuzzy, php-format
3377
  msgid ""
3378
  "If you want Google (or any other search engine) to Display your pages and "
3379
  "then Rank them higher in search results, your website needs to be Public and "
@@ -3381,14 +3466,14 @@ msgid ""
3381
  "impossible. You selected '%s' in %sSettings > Reading%s. You need to UNCHECK "
3382
  "that option."
3383
  msgstr ""
3384
- "Dacă doriți ca Google (sau orice alt motor de căutare) să afișeze paginile "
3385
- "dvs. și apoi să le poziționeze mai sus în rezultatele căutării, site-ul dvs. "
3386
- "web trebuie să fie public și paginile indexabile. În prezent, o setare în "
3387
- "WordPress-ul dvs. face acest lucru imposibil. Ați selectat „ %s” în %setări> "
3388
- "Citire %s. Trebuie să DEZECȚI opțiunea respectivă."
3389
 
3390
  #: models/CheckSeo.php:39 models/CheckSeo.php:40
3391
- #: models/bulkseo/Visibility.php:101 view/Blocks/Snippet.php:1057
3392
  msgid "Discourage search engines from indexing this site"
3393
  msgstr "Descurajează motoarele de căutare să indexeze acest site"
3394
 
@@ -3398,73 +3483,78 @@ msgid "Uncheck the option: %s in %sSettings > Reading%s."
3398
  msgstr "Debifați opțiunea: %s în %sSetări > Citire%s."
3399
 
3400
  #: models/CheckSeo.php:41
3401
- #, fuzzy
3402
  msgid ""
3403
  "Google can't show your site to anybody, because you haven't made your site "
3404
  "public and indexable. You must fix this today."
3405
  msgstr ""
3406
- "Google nu poate arăta site-ul nimănui, deoarece nu ați făcut public site-"
3407
- "ul dvs. și să fie indexat. Trebuie să rezolvi asta astăzi."
3408
 
3409
  #: models/CheckSeo.php:52
3410
  msgid "Get the meta title tag in the front-end"
3411
  msgstr "Obțineți tag-ul meta title în front-end"
3412
 
3413
  #: models/CheckSeo.php:53
3414
- #, fuzzy
3415
  msgid ""
3416
  "Without the title tag in the front-end, search engines will 'think' that "
3417
  "your website is broken. Currently the title tag is missing in front-end."
3418
  msgstr ""
3419
- "Fără eticheta din partea frontală, motoarele de căutare vor „gândi” că site-"
3420
- "ul dvs. este stricat. În prezent, eticheta de titlu lipsește în față."
 
3421
 
3422
  #: models/CheckSeo.php:54
3423
- #, fuzzy, php-format
3424
  msgid ""
3425
  "Go to %sSquirrly > SEO Settings > Metas%s and switch on 'Optimize the "
3426
  "Titles'. If it's already switched on, check if another plugin is stopping "
3427
  "Squirrly from showing the Title."
3428
  msgstr ""
3429
- "Accesați %sSquirrly> Setări SEO> Metas %s și porniți „Optimizați titlurile”. "
3430
- "Dacă este deja pornit, verificați dacă un alt plugin oprește Squirrly de la "
3431
- "afișarea Titlului."
3432
 
3433
  #: models/CheckSeo.php:55
3434
- #, fuzzy
3435
  msgid ""
3436
  "You have to make the Title tag of the page visible in the front-end of the "
3437
  "website. As soon as possible. Otherwise, you will have difficulty ranking."
3438
  msgstr ""
3439
- "Trebuie să faceți vizibilă eticheta Titlu a paginii în partea frontală a "
3440
- "site-ului. Cât mai repede posibil. În caz contrar, veți avea dificultăți în "
3441
- "clasare."
 
 
 
 
 
 
 
 
3442
 
3443
  #: models/CheckSeo.php:66
3444
  msgid "Turn Squirrly's AMP Support to ON"
3445
  msgstr "Activați suportul AMP al Squirrly la ON"
3446
 
3447
  #: models/CheckSeo.php:67
3448
- #, fuzzy
3449
  msgid ""
3450
  "AMP site detected and Squirrly's AMP Support is OFF - If this website is an "
3451
  "AMP website you need to make sure that you activate Squirrly AMP Tracking "
3452
  "for it. Squirrly will load Google Analytics and Facebook Pixel for AMP and "
3453
  "avoid AMP script errors."
3454
  msgstr ""
3455
- "Site-ul AMP a fost detectat și amplificatorul Squirrly este OFF - Dacă acest "
3456
  "site este un site AMP, trebuie să vă asigurați că activați Squirrly AMP "
3457
  "Tracking pentru acesta. Squirrly va încărca Google Analytics și Facebook "
3458
  "Pixel pentru AMP și va evita erorile de script AMP."
3459
 
3460
  #: models/CheckSeo.php:68
3461
- #, fuzzy, php-format
3462
  msgid "Activate AMP tracking in %s Squirrly > SEO Settings > Tracking Tools%s "
3463
  msgstr ""
3464
- "Activați urmărirea AMP în %s Squirrly> Setări SEO> Instrumente de urmărire %s"
 
3465
 
3466
  #: models/CheckSeo.php:69
3467
- #, fuzzy
3468
  msgid ""
3469
  "You must activate the AMP settings for Squirrly SEO, right now. Otherwise, "
3470
  "the AMP version of the site will have missing pieces."
@@ -3477,7 +3567,6 @@ msgid "Activate Squirrly SEO Title now"
3477
  msgstr "Activați Squirrly SEO Title acum"
3478
 
3479
  #: models/CheckSeo.php:81
3480
- #, fuzzy
3481
  msgid ""
3482
  "Squirrly SEO title is NOT active for your website.If you DON'T use other SEO "
3483
  "plugins, you should activate this option, and Squirrly SEO will add the "
@@ -3485,59 +3574,58 @@ msgid ""
3485
  "tag determines your display title in SERPs, and it’s meant to help Google "
3486
  "and human readers understand what your pages are all about"
3487
  msgstr ""
3488
- "Titlul SEO squirrly NU este activ pentru site-ul dvs. web. Dacă NU utilizați "
3489
  "alte plugin-uri SEO, ar trebui să activați această opțiune, iar Squirrly SEO "
3490
- "va adăuga eticheta Titlu de pe fiecare pagină a site-ului dvs. Web și va "
3491
- "elimina eventualele duplicate. Eticheta dvs. determină titlul afișat în SERP-"
3492
- "uri și are scopul de a ajuta Google și cititorii umani să înțeleagă despre "
3493
- "ce sunt paginile dvs."
3494
 
3495
  #: models/CheckSeo.php:82
3496
- #, fuzzy, php-format
3497
  msgid ""
3498
  "Go to %sSquirrly > SEO Settings > Metas%s and switch on: 'Optimize the "
3499
  "Titles'"
3500
  msgstr ""
3501
- "Accesați %sSquirrly> Setări SEO> Metas %s și porniți: „Optimizați titlurile”"
 
3502
 
3503
  #: models/CheckSeo.php:83
3504
- #, fuzzy
3505
  msgid ""
3506
  "You should activate the Squirrly SEO title to help Search Engines understand "
3507
  "what your pages are about and ensure all of your pages have titles."
3508
  msgstr ""
3509
- "Ar trebui să activați titlul SEO Squirrly pentru a ajuta motoarele de "
3510
- "căutare să înțeleagă despre ce sunt paginile dvs. și să vă asigurați că "
3511
- "toate paginile dvs. au titluri."
3512
 
3513
  #: models/CheckSeo.php:94
3514
  msgid "Make your LINKS SEO-Friendly"
3515
  msgstr "Asigurați-vă link-uri SEO-Friendly"
3516
 
3517
  #: models/CheckSeo.php:95
3518
- #, fuzzy
3519
  msgid ""
3520
  "Google considers the URLs you use on your website to be a ranking factor. "
3521
  "The permalinks you use and the structure you decide on adopting is "
3522
  "ultimately an SEO signal. Having a good permalink structure also helps make "
3523
  "your site Human-friendly. "
3524
  msgstr ""
3525
- "Google consideră că adresele URL pe care le utilizați pe site-ul dvs. web "
3526
- "sunt un factor de clasare. Permisele pe care le utilizați și structura pe "
3527
- "care decideți să o adoptați sunt în cele din urmă un semnal SEO. Dacă aveți "
3528
- "o structură permalink bună ajută faceți site-ul dvs. prietenoasă cu "
3529
- "oamenii"
3530
 
3531
  #: models/CheckSeo.php:96
3532
- #, fuzzy, php-format
3533
  msgid ""
3534
  "Your URLs should be super easy to read. Go to your %s WordPress dashboard > "
3535
  "Settings > Permalinks %s .There, you can create a custom URL structure for "
3536
  "your permalinks."
3537
  msgstr ""
3538
  "URL-urile dvs. ar trebui să fie foarte ușor de citit. Accesați tabloul de "
3539
- "bord %s WordPress> Setări> Permalinking %s. Aici, puteți crea o structură "
3540
- "URL personalizată pentru permisele dvs. permanente."
3541
 
3542
  #: models/CheckSeo.php:97
3543
  msgid ""
@@ -3551,46 +3639,43 @@ msgid "Activate the Sitemap from Squirrly"
3551
  msgstr "Activați Sitemap-ul din Squirrly"
3552
 
3553
  #: models/CheckSeo.php:108
3554
- #, fuzzy
3555
  msgid ""
3556
  "XML sitemaps help search engines and spiders discover new pages on your "
3557
  "website. It also helps them better understand the structure of your website. "
3558
  "Activate your Sitemap XML setting. Squirrly SEO will then generate your "
3559
  "sitemap, according to different items you can set up."
3560
  msgstr ""
3561
- "Sitemap-urile XML ajută motoarele de căutare și păianjenii să descopere noi "
3562
- "pagini pe site-ul dvs. web. De asemenea, îi ajută să înțeleagă mai bine "
3563
- "structura site-ului dvs. web. Activați setarea XML a sitemap-ului. Squirrly "
3564
- "SEO va genera apoi site-ul dvs., în funcție de diferite elemente pe care le "
3565
- "puteți configura."
3566
 
3567
  #: models/CheckSeo.php:109
3568
- #, fuzzy, php-format
3569
  msgid ""
3570
  "Go to %sSquirrly > SEO Settings > Sitemap XML%s to setup the sitemap. Choose "
3571
  "for which types of URLs you'll want to have sitemaps. It depends on your "
3572
  "strategy. Leave the defaults if you're uncertain."
3573
  msgstr ""
3574
- "Accesați %sSquirrly> Setări SEO> Sitemap XML %s pentru a configura harta "
3575
- "site-ului. Alegeți tipurile de adrese URL pe care doriți să le aveți sitemap-"
3576
- "uri. Depinde de strategia ta. Lăsați valorile implicite dacă nu sunteți "
3577
  "sigur."
3578
 
3579
  #: models/CheckSeo.php:110
3580
- #, fuzzy
3581
  msgid ""
3582
  "Lead Search Engines to your most important pages using XML sitemaps. Do this "
3583
  "and you can rank better. "
3584
  msgstr ""
3585
- "Conduceți motoarele de căutare către paginile dvs. cele mai importante "
3586
- "folosind sitemap-uri XML. Faceți acest lucru și vă puteți clasifica mai bine."
3587
 
3588
  #: models/CheckSeo.php:121
3589
  msgid "Get a robots txt file"
3590
  msgstr "Obțineți un fișier robots txt"
3591
 
3592
  #: models/CheckSeo.php:122
3593
- #, fuzzy
3594
  msgid ""
3595
  "Robots.txt is a text file webmasters create to instruct how to crawl & index "
3596
  "pages on their website. You can use this file to tell search engine robots "
@@ -3598,40 +3683,40 @@ msgid ""
3598
  "for this file in a website as soon as they enter one. Therefore, it's very "
3599
  "important to have a robots.txt file in the first place."
3600
  msgstr ""
3601
- "Robots.txt este un fișier text webmasteri creat pentru a instrui cum "
3602
- "crawl și indexeze paginile de pe site-ul lor web. Puteți utiliza acest "
3603
- "fișier pentru a spune roboților motorului de căutare ce anume să se ghemeze "
3604
- "și ce nu se târască pe site. Bots de căutare caută de obicei acest fișier "
3605
- "într-un site web imediat ce intră într-unul. Prin urmare, este foarte "
3606
- "important să aveți un fișier robots.txt în primul rând."
 
3607
 
3608
  #: models/CheckSeo.php:123
3609
- #, fuzzy, php-format
3610
  msgid ""
3611
  "Go to %sSquirrly > SEO Settings > Robots%s and switch on Activate Robots. If "
3612
  "it's already switched on, check if another plugin is stopping Squirrly from "
3613
  "adding the Robots.txt URL."
3614
  msgstr ""
3615
- "Accesați %sSquirrly> Setări SEO> Roboti %s și porniți Activarea roboților. "
3616
- "Dacă este deja pornit, verificați dacă un alt plugin oprește Squirrly de la "
3617
- "adăugarea adresei URL Robots.txt."
3618
 
3619
  #: models/CheckSeo.php:124
3620
- #, fuzzy
3621
  msgid ""
3622
  "You should help Search Engine bots find what they need. Create a Robots.txt "
3623
  "file as soon as possible if you want your site to be seen in Search Results."
3624
  msgstr ""
3625
- "Ar trebui să ajutați robotii de căutare să găsească ceea ce au nevoie. "
3626
- "Creați un fișier Robots.txt cât mai curând posibil dacă doriți ca site-ul "
3627
- "dvs. să fie văzut în Rezultatele căutării."
3628
 
3629
  #: models/CheckSeo.php:136
3630
  msgid "Error detected for your Focus Page"
3631
  msgstr "Eroare detectată pentru pagina dvs. Focus"
3632
 
3633
  #: models/CheckSeo.php:137
3634
- #, fuzzy, php-format
3635
  msgid ""
3636
  "An error is preventing Squirrly from accessing and retrieving critical data "
3637
  "about your Focus Page. You should fix this so that Squirrly can generate a "
@@ -3639,42 +3724,58 @@ msgid ""
3639
  "chances of ranking. %sThe error can also prevent human visitors from "
3640
  "accessing your page, which is a critical issue. "
3641
  msgstr ""
3642
- "O eroare îl împiedică pe Squirrly să acceseze și să recupereze date critice "
3643
- "despre pagina dvs. de focalizare. Ar trebui să remediați acest lucru, astfel "
3644
- "încât Squirrly să poată genera un audit complet al paginii dvs. și să vă "
3645
- "arate ce trebuie să faceți pentru a-i îmbunătăți șansele de clasare. "
3646
- "%sEroarea poate de asemenea să împiedice vizitatorii umani să acceseze "
3647
- "pagina dvs., ceea ce este o problemă critică."
3648
 
3649
  #: models/CheckSeo.php:138
3650
- #, fuzzy
3651
  msgid ""
3652
  "Use a different browser to make sure your Focus Page is visible. Whitelist "
3653
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
3654
  "page so that you’ll receive a full audit."
3655
  msgstr ""
3656
- "Utilizați un browser diferit pentru a vă asigura că pagina dvs. de "
3657
- "focalizare este vizibilă. Lista completă a adresei IP a crawlerului "
3658
- "(176.9.112.210) pentru a permite serverului nostru să verifice pagina dvs. "
3659
- "astfel încât să primiți un audit complet."
3660
 
3661
  #: models/CheckSeo.php:139
3662
- #, fuzzy
3663
  msgid ""
3664
  "Make sure that your Focus Page is published and can be accessed by all users "
3665
  "and crawlers."
3666
  msgstr ""
3667
- "Asigurați-vă că pagina dvs. de focalizare este publicată și poate fi "
3668
- "accesată de toți utilizatorii și crawlerii."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3669
 
3670
  #: models/CheckSeo.php:150
3671
- #, fuzzy
3672
  msgid "Add Focus Page. It's the first step to reaching TOP positions"
3673
  msgstr ""
3674
- "Adăugați pagina de focalizare. Folosiți-l pentru a atinge primele poziții"
3675
 
3676
  #: models/CheckSeo.php:151
3677
- #, fuzzy
3678
  msgid ""
3679
  "Adding a Focus Page, and then using the SEO Goals related to it, is a sure "
3680
  "way for all aspiring SEO Stars to begin reaching top positions in Google. "
@@ -3682,52 +3783,48 @@ msgid ""
3682
  "un-complicate it. By following this method you will build a repeatable, "
3683
  "smart strategy, powered by Machine Learning."
3684
  msgstr ""
3685
- "Adăugarea unei pagini de focalizare și apoi folosirea Obiectivelor zilnice "
3686
- "de SEO legate de aceasta, este o modalitate sigură pentru toate stelele SEO "
3687
- "aspiranteînceapă să ajungă pe poziții de top în Google. SEO este foarte "
3688
- "complicat, iar Focus Pages este singura metodă care te ajută să-l complici. "
3689
- "Urmărind această metodă veți construi o strategie inteligentă repetabilă, "
3690
- "bazată pe Machine Learning."
3691
 
3692
  #: models/CheckSeo.php:152
3693
- #, fuzzy, php-format
3694
  msgid ""
3695
  "Go to %sSquirrly SEO > Focus Pages > Add New Page%s to add a page in Focus "
3696
  "Pages."
3697
  msgstr ""
3698
- "Accesați %sSquirrly SEO> Pagini Focus> Adăugare Pagina nouă %s pentru a "
3699
- "adăuga o pagină în Pagini Focus."
3700
 
3701
  #: models/CheckSeo.php:153
3702
- #, fuzzy
3703
  msgid ""
3704
  "You don't currently have a clearly defined strategy. If you're a Non-SEO "
3705
  "Expert you won't be able to reach TOP 10 rankings without Focus Pages."
3706
  msgstr ""
3707
- "În prezent nu aveți o strategie clar definită. Dacă sunteți un expert non-"
3708
- "SEO, nu veți putea ajunge la TOP 10 în clasament fără Focus Pages."
3709
 
3710
  #: models/CheckSeo.php:164
3711
- #, fuzzy
3712
  msgid "Change WordPress' default tagline"
3713
- msgstr "Schimbați eticheta implicită WordPress"
3714
 
3715
  #: models/CheckSeo.php:165
3716
- #, fuzzy
3717
  msgid ""
3718
  "The default WordPress tagline is “Just another WordPress site” - which is "
3719
  "like saying your site is nothing special. It's important to customize it so "
3720
  "that you clearly communicate what your site is about to first-time visitors. "
3721
  "Search Engines also pay close attention to taglines."
3722
  msgstr ""
3723
- "Eticheta implicită WordPress este Doar un alt site WordPress - ceea ce "
3724
- "înseamnă că site-ul dvs. nu este nimic special. Este important să-l "
3725
- "personalizați, astfel încât să comunicați clar despre ce este site-ul dvs. "
3726
- "vizitatorilor. Motoarele de căutare acordă o atenție deosebită și liniilor "
3727
- "de etichetă."
3728
 
3729
  #: models/CheckSeo.php:166
3730
- #, fuzzy
3731
  msgid ""
3732
  "How you optimize your tagline can depend on the theme you are using (some "
3733
  "themes don't display the tagline automatically). Your best bet is to go to "
@@ -3737,34 +3834,30 @@ msgid ""
3737
  "content that can be found on your site. Include strong keywords in your "
3738
  "tagline, and ensure the tagline fits with your overall branding strategy."
3739
  msgstr ""
3740
- "Modul în care vă optimizați eticheta poate depinde de tema pe care o "
3741
- "utilizați (unele teme nu afișează automat linia de etichetă). Cel mai bun "
3742
- "pariu este să accesați Aspectul> Personalizați din tabloul de bord WP pentru "
3743
- "a accesa Personalizatorul. Acolo, puteți personaliza linia de etichetă. Cele "
3744
- "mai bune practici: asigurați-vă că eticheta dvs. este atrăgătoare și "
3745
- "reflectă site-ul dvs. în ansamblu (nișa, scopul său, conținutul care poate "
3746
- "fi găsit pe site-ul dvs.. Includeți cuvinte cheie puternice în eticheta dvs. "
3747
- "și asigurați-vă eticheta corespunde strategiei dvs. generale de marcare."
3748
 
3749
  #: models/CheckSeo.php:167
3750
- #, fuzzy
3751
  msgid ""
3752
  "Optimize your tagline so that your site is NOT 'Just another WordPress "
3753
  "site' (or: Optimize your tagline to put your site’s best foot forward and "
3754
  "encourage visitors to stick around.)"
3755
  msgstr ""
3756
- "Optimizați-vă linia de etichetă, astfel încât site-ul dvs.nu fie Doar "
3757
- "un alt site WordPress (sau: Optimizați-vă linia de etichetă pentru a pune "
3758
- "cel mai bun picior al site-ului dvs. și încurajați-i pe vizitatori să "
3759
- "rămână.)"
3760
 
3761
  #: models/CheckSeo.php:177
3762
- #, fuzzy
3763
  msgid "Remove all no-index tags from all Focus Pages"
3764
- msgstr "Eliminați toate etichetele fără index din toate paginile Focus"
3765
 
3766
  #: models/CheckSeo.php:178
3767
- #, fuzzy
3768
  msgid ""
3769
  "No-index tags suggest to search engines (most notably Google) NOT to index a "
3770
  "specific webpage. By using these tags for your Focus Pages, you're "
@@ -3773,16 +3866,16 @@ msgid ""
3773
  "your Focus Pages). Removing all no-index tags for your Focus Pages will fix "
3774
  "it."
3775
  msgstr ""
3776
- "Etichetele fără index sugerează motoarelor de căutare (în special Google) să "
3777
- "nu indexeze o anumită pagină web. Utilizând aceste etichete pentru paginile "
3778
- "dvs. de focalizare, le împiedicați să apară în Căutarea Google. Acest lucru "
3779
- "este rău, deoarece înseamnă că motoarele de căutare nu vor afișa paginile "
3780
- "cele mai importante (care ar trebui să fie paginile dvs. de focalizare) "
3781
- "Ștergerea tuturor etichetelor fără index pentru paginile dvs. de focalizare "
3782
- "o va rezolva."
3783
 
3784
  #: models/CheckSeo.php:179
3785
- #, fuzzy, php-format
3786
  msgid ""
3787
  "Look at all the places where you could have added instructions for Google "
3788
  "not to index this page from your site. Make sure that there is no such "
@@ -3790,95 +3883,87 @@ msgid ""
3790
  "plugin, or in %sSquirrly SEO's Snippet%s for this page. Also, make sure you "
3791
  "don't block this page in your %sRobots.txt%s file."
3792
  msgstr ""
3793
- "Uită-te la toate locurile în care ai putea adăuga instrucțiuni pentru ca "
3794
- "Google să nu indexeze această pagină de pe site-ul tău. Asigurați-vă că nu "
3795
- "este adăugată o astfel de instrucțiune la %sWordPress> Setări %s, sau într-o "
3796
- "temă sau într-un plugin sau în %sSqurrly Snippet %s pentru această pagină. "
3797
- "De asemenea, asigurați-vă nu blocați această pagină în fișierul dvs. "
3798
- "%sRobots.txt %s."
3799
 
3800
  #: models/CheckSeo.php:180
3801
- #, fuzzy
3802
  msgid ""
3803
  "You must remove all no-index tags for your Focus Pages so that they will "
3804
  "appear in Google Search."
3805
  msgstr ""
3806
- "Trebuie să eliminați toate etichetele fără index pentru paginile dvs. Focus, "
3807
- "astfel încât acestea să apară în Căutarea Google."
3808
 
3809
  #: models/CheckSeo.php:191
3810
- #, fuzzy
3811
  msgid "Fix all Visibility issues for your Focus Pages"
3812
- msgstr ""
3813
- "Remediați toate problemele de vizibilitate pentru paginile dvs. de focalizare"
3814
 
3815
  #: models/CheckSeo.php:192
3816
- #, fuzzy
3817
  msgid ""
3818
  "Having visibility issues for your Focus Pages means that your Focus Pages "
3819
  "may not appear in search results. This is bad, because you'll want as many "
3820
  "people to see your most important pages (your Focus Pages)"
3821
  msgstr ""
3822
- "Dacă aveți probleme de vizibilitate pentru paginile dvs. de focalizare, este "
3823
- "posibil ca paginile dvs. de focar să nu apară în rezultatele căutării. Acest "
3824
- "lucru este rău, deoarece veți dori ca tot mai mulți oameni să vadă paginile "
3825
- "dvs. cele mai importante (paginile dvs. de focalizare)"
3826
 
3827
  #: models/CheckSeo.php:193
3828
- #, fuzzy, php-format
3829
  msgid ""
3830
  "Go to %sSquirrly > Focus Pages%s and make sure all elements you see when you "
3831
  "click on the Visibility category are turned Green. If you see a red element, "
3832
  "follow the indications to turn it Green. That's how you make sure your Focus "
3833
  "Pages are protected against Visibility Issues."
3834
  msgstr ""
3835
- "Accesați %sSquirrly> Focus Pages %s și asigurați-vă că toate elementele pe "
3836
- "care le vedeți când faceți clic pe categoria Vizibilitate sunt de culoare "
3837
- "verde. Dacă vedeți un element roșu, urmați indicațiile pentru a deveni "
3838
- "verde. Așa vă asigurați că paginile dvs. Focus sunt protejate împotriva "
3839
- "problemelor de vizibilitate."
3840
 
3841
  #: models/CheckSeo.php:194
3842
- #, fuzzy
3843
  msgid ""
3844
  "Fix ALL Visibility issues for your Focus Pages so that they will appear on "
3845
  "Google Search."
3846
  msgstr ""
3847
- "Remediați TOATE problemele de vizibilitate pentru paginile dvs. de "
3848
- "focalizare, astfel încât acestea să apară în Căutarea Google."
3849
 
3850
  #: models/CheckSeo.php:205 models/CheckSeo.php:208
3851
- #, fuzzy
3852
  msgid "Make Your Site Safe for Browsing Again"
3853
- msgstr "Faceți site-ul dvs. în siguranță pentru navigare din nou"
3854
 
3855
  #: models/CheckSeo.php:206
3856
- #, fuzzy
3857
  msgid ""
3858
  "Safe Browsing notifies webmasters when their websites are compromised by "
3859
  "malicious actors and helps them diagnose and resolve the problem so that "
3860
  "their visitors stay safe."
3861
  msgstr ""
3862
- "Navigarea sigură notifică administratorii web atunci când site-urile lor web "
3863
- "sunt compromise de actori nocivi și îi ajută să diagnostice și să rezolve "
3864
- "problema, astfel încât vizitatorii lor să rămână în siguranță."
 
3865
 
3866
  #: models/CheckSeo.php:207
3867
- #, fuzzy, php-format
3868
  msgid ""
3869
  "Go to %shttps://safebrowsing.google.com/%s and follow the instructions to "
3870
  "clean your website."
3871
  msgstr ""
3872
- "Accesați %shttps: //safebrowsing.google.com/%s și urmați instrucțiunile "
3873
- "pentru a vă curăța site-ul."
3874
 
3875
  #: models/CheckSeo.php:218
3876
- #, fuzzy
3877
  msgid "Remove Duplicate Open Graph meta tags"
3878
- msgstr "Eliminați etichetele Duplicate Open Graph"
3879
 
3880
  #: models/CheckSeo.php:219
3881
- #, fuzzy
3882
  msgid ""
3883
  "Some WordPress themes and plugins add Open Graph meta tags which lead to "
3884
  "duplicate Open Graph meta tags issues. It's important to check for this to "
@@ -3886,40 +3971,37 @@ msgid ""
3886
  "graph meta tag. In this case, the plugin or theme causing this manages to "
3887
  "bypass Squirrly's Duplicate Remover features."
3888
  msgstr ""
3889
- "Unele teme și plugin-uri WordPress adaugă meta tag-uri Open Graph care duc "
3890
- "la duplicarea unor meta taguri Open Graph. Este important să verificați dacă "
3891
- "pentru a determina ce plugin sau dacă tema dvs. generează eticheta duplicată "
3892
- "a graficului deschis. În acest caz, pluginul sau tema care provoacă acest "
3893
- "lucru reușește să ocolească caracteristicile Duplicate Remover de Squirrly."
 
3894
 
3895
  #: models/CheckSeo.php:220
3896
- #, fuzzy
3897
  msgid ""
3898
  "Start deactivating plugins (other than Squirrly SEO) from your WordPress "
3899
  "site. Run New Scans for Next SEO Goals to see if you managed to get this "
3900
  "done! Then reactivate everything."
3901
  msgstr ""
3902
  "Începeți să dezactivați pluginurile (altele decât Squirrly SEO) de pe site-"
3903
- "ul dvs. WordPress. Executați noi scanări pentru obiective SEO zilnice pentru "
3904
- "a vedea dacă ați reușit să faceți acest lucru! Apoi reactivați totul."
3905
 
3906
  #: models/CheckSeo.php:221
3907
- #, fuzzy
3908
  msgid ""
3909
  "You need to remove Duplicate Open Graph meta tags as soon as possible. "
3910
  "Otherwise, you will miss good chances of ranking higher with your pages."
3911
  msgstr ""
3912
- "Trebuie să eliminați cât mai curând posibil etichetele de tip Duplicate Open "
3913
- "Graph. În caz contrar, veți rata șansele bune de a obține un nivel mai mare "
3914
- "cu paginile dvs."
3915
 
3916
  #: models/CheckSeo.php:232
3917
- #, fuzzy
3918
  msgid "Remove Duplicate Twitter cards tags"
3919
- msgstr "Eliminați etichetele duplicate ale cărților Twitter"
3920
 
3921
  #: models/CheckSeo.php:233
3922
- #, fuzzy
3923
  msgid ""
3924
  "Some WordPress themes and plugins add Twitter Card meta tags which lead to "
3925
  "duplicate Twitter card meta tags issues. It's important to check for tp "
@@ -3927,84 +4009,82 @@ msgid ""
3927
  "graph meta tag. In this case, the plugin or theme causing this, manages to "
3928
  "bypass Squirrly's Duplicate Remover features."
3929
  msgstr ""
3930
- "Unele teme și plugin-uri WordPress adaugă meta tag-urile Twitter Card care "
3931
- "duc la duplicarea unor probleme de meta taguri ale cardurilor Twitter. Este "
3932
- "important să verificați dacă tp determină ce plugin sau dacă tema dvs. "
3933
- "generează eticheta duplicată a graficului deschis. În acest caz, pluginul "
3934
- "sau tema care provoacă acest lucru, reușește să ocolească funcțiile de "
3935
- "scoatere duplicată ale lui Squirrly."
3936
 
3937
  #: models/CheckSeo.php:234
3938
- #, fuzzy
3939
  msgid ""
3940
  "Start deactivating plugins (other than Squirrly SEO) from your WordPress "
3941
  "site. Run New Scans for Next SEO Goals to see if you manage to get this "
3942
  "done! Then reactivate everything."
3943
  msgstr ""
3944
  "Începeți să dezactivați pluginurile (altele decât Squirrly SEO) de pe site-"
3945
- "ul dvs. WordPress. Efectuați noi scanări pentru obiective SEO zilnice pentru "
3946
- "a vedea dacă reușiți să faceți acest lucru! Apoi reactivați totul."
3947
 
3948
  #: models/CheckSeo.php:235
3949
- #, fuzzy
3950
  msgid ""
3951
  "You need to remove Duplicate Twitter Card meta tags as soon as possible; "
3952
  "Otherwise you will miss good chances of ranking higher with your pages."
3953
  msgstr ""
3954
- "Trebuie să eliminați cât mai curând posibil etichetele de tip Duplicate "
3955
- "Twitter Card; În caz contrar, veți rata șansele bune de a obține un nivel "
3956
- "mai mare cu paginile dvs."
3957
 
3958
  #: models/CheckSeo.php:246
3959
- #, fuzzy
3960
  msgid "Use Squirrly's Expert-Grade Research Tool and Add Keywords to Briefcase"
3961
  msgstr ""
3962
- "Folosiți instrumentul de cercetare expert-grad Squirrly și adăugați cuvinte "
3963
- "cheie în servietă"
3964
 
3965
  #: models/CheckSeo.php:247
3966
- #, fuzzy
3967
  msgid ""
3968
  "With a few clicks, you'll do the work that SEO experts charge thousands of "
3969
  "dollars for (because they do this manually and it takes too much time that "
3970
  "way)."
3971
  msgstr ""
3972
- "Cu câteva clicuri, veți face munca pentru care experții SEO percep mii de "
3973
- "dolari (pentru că fac acest lucru manual și durează prea mult timp în acest "
3974
- "fel)."
3975
 
3976
  #: models/CheckSeo.php:248
3977
- #, fuzzy, php-format
3978
  msgid ""
3979
  "Go to %sSquirrly > Keyword Research%s. Complete all steps until you get to "
3980
  "the final table with all of the data for each keyword. Add at least one "
3981
  "keyword to Briefcase from that interface."
3982
  msgstr ""
3983
- "Accesați %sSquirrly> Cercetare de cuvinte cheie %s. Finalizați toți pașii "
3984
- "până când ajungeți la tabelul final cu toate datele pentru fiecare cuvânt "
3985
- "cheie. Adăugați cel puțin un cuvânt cheie la Serviciul din acea interfață."
3986
 
3987
  #: models/CheckSeo.php:249
3988
- #, fuzzy
3989
  msgid ""
3990
  "You should perform a keyword research using Squirrly's Expert-Grade tool and "
3991
  "store at least one of the results in Briefcase."
3992
  msgstr ""
3993
- "Ar trebui să efectuați o cercetare a cuvintelor cheie folosind instrumentul "
3994
- "Squirrly Expert-Grade și să stocați cel puțin unul dintre rezultatele din "
3995
  "Briefcase."
3996
 
 
 
 
 
 
 
3997
  #: models/CheckSeo.php:260
3998
- #, fuzzy
3999
  msgid ""
4000
  "Optimize your Focus Page with the great keyword you found during Keyword "
4001
  "research"
4002
  msgstr ""
4003
- "Optimizează-ți pagina de focus cu ajutorul cuvântului cheie excelent pe care "
4004
- "l-ai găsit în timpul cercetării cuvinte cheie"
4005
 
4006
  #: models/CheckSeo.php:261
4007
- #, fuzzy
4008
  msgid ""
4009
  "So far, only experts knew how to improve search relevance, which is one of "
4010
  "the biggest reasons why Google will choose your page to show up first. "
@@ -4012,43 +4092,47 @@ msgid ""
4012
  "your own by using the SEO Live Assistant and the keywords you stored to "
4013
  "briefcase."
4014
  msgstr ""
4015
- "Până în prezent, doar experții știau să îmbunătățească relevanța căutării, "
4016
- "acesta fiind unul dintre cele mai mari motive pentru care Google își va "
4017
- "alege pagina pentru a se afișa mai întâi. Sunteți bine pe drumul dvs. pentru "
4018
- "a deveni o stea SEO. Acum puteți face toate acestea pe cont propriu folosind "
4019
- "asistentul SEO Live și cuvintele cheie pe care le-ați stocat în servietă."
4020
 
4021
  #: models/CheckSeo.php:262
4022
- #, fuzzy, php-format
4023
  msgid ""
4024
  "Optimize up to 30% for a keyword you already stored to briefcase. Using the "
4025
  "SEO Live Assistant which you find in Edit Post interfaces in WP. Reindex "
4026
  "page with Google Search Console when you are done."
4027
  msgstr ""
4028
- "Optimizați până la 30% pentru un cuvânt cheie pe care l-ați stocat deja în "
4029
- "servietă. Folosind Asistentul SEO Live pe care îl găsiți în interfețele Edit "
4030
- "Post în WP. Pagina Reindex cu Google Search Console când ați terminat."
4031
 
4032
  #: models/CheckSeo.php:263
4033
- #, fuzzy
4034
  msgid ""
4035
  "You must optimize all Focus Pages using a main keyword. This will improve "
4036
  "search relevance and you'll improve your site with something that only "
4037
  "experts were able to do before Squirrly."
4038
  msgstr ""
4039
- "Trebuie să optimizați toate paginile Focus folosind un cuvânt cheie "
4040
- "principal. Acest lucru va îmbunătăți relevanța căutării și vă veți "
4041
- "îmbunătăți site-ul cu ceva ce numai experții au putut face înainte de "
4042
- "Squirrly."
 
 
 
 
 
 
 
4043
 
4044
  #: models/CheckSeo.php:274
4045
- #, fuzzy
4046
  msgid "Optimize your text to get a good Search Relevancy score"
4047
  msgstr ""
4048
- "Optimizați-vă textul pentru a obține un scor bun de relevanță pentru căutare"
4049
 
4050
  #: models/CheckSeo.php:275
4051
- #, fuzzy
4052
  msgid ""
4053
  "There is no point in ranking your content for a query that doesn’t match "
4054
  "what the user is looking for. Keywords help visitors find what they want, "
@@ -4058,43 +4142,40 @@ msgid ""
4058
  "your Focus pages. That way, instead of competing with each other, your pages "
4059
  "can compete with other sites within your industry."
4060
  msgstr ""
4061
- "Nu are rost să clasificați conținutul dvs. pentru o interogare care nu se "
4062
- "potrivește cu ceea ce utilizatorul caută. Cuvintele cheie ajută vizitatorii "
4063
- "să găsească ceea ce doresc, motiv pentru care ar trebui să optimizați pagina "
4064
- "dvs. de focalizare folosind cuvinte cheie. În acest fel, pagina dvs. va fi "
4065
- "afișată utilizatorilor de căutare care sunt de fapt interesați să vadă "
4066
- "conținutul oferit în aceasta. Alegeți cuvinte cheie diferite pentru fiecare "
4067
- "dintre paginile dvs. Focus. În acest fel, în loc să concureze între ele, "
4068
- "paginile dvs. pot concura cu alte site-uri din industria dvs."
4069
 
4070
  #: models/CheckSeo.php:276
4071
- #, fuzzy, php-format
4072
  msgid ""
4073
  "To get this done, the text itself (the written words of the page) needs to "
4074
  "be optimized using Squirrly's SEO Live Assistant. Go to Edit Post and start "
4075
  "using the %sSEO Live Assistant%s"
4076
  msgstr ""
4077
- "Pentru a face acest lucru, textul însuși (cuvintele scrise ale paginii) "
4078
- "trebuie optimizat folosind SEO Live Assistant. Accesați Editare postare și "
4079
- "începeți să utilizați %sSEO Live Assistant %s"
4080
 
4081
  #: models/CheckSeo.php:277
4082
- #, fuzzy
4083
  msgid ""
4084
  "Ensure your Focus Page has Search relevancy by optimizing it using a "
4085
  "keyword. Otherwise, that Focus Page will not be displayed in Search Results."
4086
  msgstr ""
4087
- "Asigurați-vă că pagina dvs. de focalitate are relevanță pentru căutare prin "
4088
- "optimizarea ei folosind un cuvânt cheie. În caz contrar, pagina focalizare "
4089
- "nu va fi afișată în rezultatele căutării."
4090
 
4091
  #: models/CheckSeo.php:288
4092
- #, fuzzy
4093
  msgid "Research your Focus Page's keyword"
4094
- msgstr "Cercetați cuvântul cheie al paginii dvs. de focalizare"
4095
 
4096
  #: models/CheckSeo.php:289
4097
- #, fuzzy
4098
  msgid ""
4099
  "For at least one of your Focus Pages, I see that you optimized for search "
4100
  "relevance using the SEO Live Assistant. However, you need to be able to read "
@@ -4102,40 +4183,35 @@ msgid ""
4102
  "keyword. Otherwise, you might be going with a keyword that can't be ranked, "
4103
  "or can't bring traffic. Your SEO Star skills depend on this goal."
4104
  msgstr ""
4105
- "Pentru cel puțin una dintre paginile dvs. de focalizare, văd că ați "
4106
- "optimizat pentru relevanța căutării folosind SEO Live Assistant. Cu toate "
4107
- "acestea, trebuie să puteți citi volumul de căutare, concurența, discuțiile "
4108
- "recente și tendința pentru cuvântul cheie. În caz contrar, s-ar putea să "
4109
- "mergeți cu un cuvânt cheie care nu poate fi clasat sau nu poate aduce "
4110
- "trafic. Aptitudinile tale SEO Star depind de acest obiectiv."
4111
 
4112
  #: models/CheckSeo.php:290
4113
- #, fuzzy
4114
  msgid ""
4115
  "See the keyword. Place it in the research feature and perform a full keyword "
4116
  "research on it. Then add it to briefcase."
4117
  msgstr ""
4118
- "Consultați cuvântul cheie. Plasați-o în funcția de cercetare și efectuați o "
4119
- "cercetare completă asupra cuvintelor cheie. Apoi adăugați-l în servietă."
4120
 
4121
  #: models/CheckSeo.php:291
4122
- #, fuzzy
4123
  msgid ""
4124
  "You must obtain keyword data for all main keywords used for your Focus "
4125
  "Pages. This will improve your skills and your understanding."
4126
  msgstr ""
4127
- "Trebuie să obțineți date de cuvinte cheie pentru toate cuvintele cheie "
4128
- "principale utilizate pentru paginile dvs. de focalizare. Acest lucru vă va "
4129
- "îmbunătăți abilitățile și înțelegerea."
4130
 
4131
  #: models/CheckSeo.php:302
4132
- #, fuzzy
4133
- #| msgid "Keyword"
4134
  msgid "Choose less competitive keywords"
4135
- msgstr "Cuvant cheie:"
4136
 
4137
  #: models/CheckSeo.php:303
4138
- #, fuzzy
4139
  msgid ""
4140
  "As a future SEO Star you need to understand that you will never be able to "
4141
  "rank for any keyword you think about. Not even huge sites who have spent a "
@@ -4144,44 +4220,40 @@ msgid ""
4144
  "traffic). This is real SEO you are doing right now. You're acting like an "
4145
  "expert."
4146
  msgstr ""
4147
- "Ca viitoare stea SEO trebuie să înțelegeți că nu veți putea niciodată să vă "
4148
- "clasificați pentru niciun cuvânt cheie despre care gândiți. Nici măcar "
4149
- "site-urile uriașe care au cheltuit de o mie de ori mai mulți bani pe SEO pot "
4150
- "face asta. Treceți la un cuvânt cheie diferit și veți ajunge la rezultatele "
4151
- "dorite (clasare și trafic). Acesta este un SEO real pe care îl faci chiar "
4152
- "acum. Te porți ca un expert."
4153
 
4154
  #: models/CheckSeo.php:304
4155
- #, fuzzy
4156
  msgid ""
4157
  "Go and edit the page using the SEO Live Assistant. Select a different "
4158
  "keyword as the main keyword. Make sure it has a Green light at 'competition'."
4159
  msgstr ""
4160
- "Accesați și editați pagina utilizând SEO Live Assistant. Selectați un cuvânt "
4161
- "cheie diferit ca cuvânt cheie principal. Asigurați-vă că are o lumină verde "
4162
- "la „competiție”."
4163
 
4164
  #: models/CheckSeo.php:305
4165
- #, fuzzy
4166
  msgid ""
4167
  "Replace the main keyword you chose for your Focus Page to get top rankings. "
4168
  "Your page can't compete and reach the top 10 positions in Google for the "
4169
  "current keyword. "
4170
  msgstr ""
4171
- "Înlocuiți cuvântul cheie pe care l-ați ales pentru pagina dvs. de focalizare "
4172
- "pentru a obține topul de top. Pagina dvs. nu poate concura și ajunge în "
4173
- "primele 10 poziții din Google pentru cuvântul cheie actual."
4174
 
4175
  #: models/CheckSeo.php:315
4176
- #, fuzzy, php-format
4177
  msgid ""
4178
- "Try to boost traffic by over +285% by optimizing with SEO Live Assistant"
4179
  msgstr ""
4180
- "Încercați să stimulați traficul cu peste + 285% prin optimizarea cu SEO Live "
4181
- "Assistant"
4182
 
4183
  #: models/CheckSeo.php:316
4184
- #, fuzzy
4185
  msgid ""
4186
  "Our data shows that users who optimize their content over 60% using the Live "
4187
  "Assistant get up to +285% increase in traffic compared to those who optimize "
@@ -4189,73 +4261,68 @@ msgid ""
4189
  "your content as much as you can."
4190
  msgstr ""
4191
  "Datele noastre arată că utilizatorii care își optimizează conținutul peste "
4192
- "60% folosind Live Assistant au o creștere a traficului cu + 285% în "
4193
- "comparație cu cei care optimizează sub acest procent. Ca o viitoare stea "
4194
- "SEO, trebuie să practicați optimizarea conținutului dvs. cât puteți."
 
4195
 
4196
  #: models/CheckSeo.php:317
4197
- #, fuzzy, php-format
4198
  msgid ""
4199
  "Your text needs to be optimized to over 60% using the SEO Live Assistant. Re-"
4200
  "index your pages with Google Search Console after you finish optimizing."
4201
  msgstr ""
4202
- "Textul dvs. trebuie să fie optimizat la peste 60% utilizând SEO Live "
4203
- "Assistant. Reindexează paginile cu Google Search Console după ce ai terminat "
4204
- "de optimizat."
4205
 
4206
  #: models/CheckSeo.php:318
4207
- #, fuzzy
4208
  msgid ""
4209
  "Optimize Your Focus Pages over 60% to get up to 285% increase in traffic."
4210
  msgstr ""
4211
- "Optimizează-ți paginile de focus cu peste 60% pentru a obține o creștere a "
4212
- "traficului cu până la 285%."
4213
 
4214
  #: models/CheckSeo.php:330
4215
- #, fuzzy
4216
  msgid "Prepare Full Google Search Console Connection"
4217
- msgstr "Inregistreaza-te la Squirrly.co"
4218
 
4219
  #: models/CheckSeo.php:331
4220
- #, fuzzy
4221
  msgid ""
4222
  "Get access to data about impressions, clicks and CTR without leaving "
4223
  "WordPress by connecting Google Search Console to Squirrly. This is an API-"
4224
  "level connection and goes beyond just allowing GSC to track your site. "
4225
  "Enhance your Squirrly SEO with powerful data that comes directly from Google."
4226
  msgstr ""
4227
- "Obțineți acces la date despre afișări, clicuri și CTR fără a părăsi "
4228
- "WordPress conectând Google Search Console la Squirrly. Aceasta este o "
4229
- "conexiune la nivel de API și depășește doar permițând GSC să vă urmărească "
4230
- "site-ul. Îmbunătățește-ți SEO Squirrly cu date puternice care provin direct "
4231
- "de la Google."
4232
 
4233
  #: models/CheckSeo.php:332 view/Connect/GoogleSearchConsole.php:32
4234
- #: view/SeoSettings/Webmaster.php:83
4235
- #, fuzzy, php-format
4236
  msgid "Need Help Connecting Google Search Console? %sClick Here%s"
4237
- msgstr "Conectați Google Search Console"
 
 
4238
 
4239
  #: models/CheckSeo.php:333
4240
- #, fuzzy
4241
  msgid ""
4242
  "You must connect Google Search Console to your Squirrly SEO. As soon as "
4243
  "possible. It's quick to do and helps you see impressions, clicks, and CTR, "
4244
  "so you can become an SEO Star."
4245
  msgstr ""
4246
- "Trebuie să conectați Google Search Console la SEO-ul dvs. Squirrly. Cât mai "
4247
- "repede posibil. Este rapid de făcut și vă ajută să vedeți afișări, clicuri "
4248
- "și CTR, astfel încât să puteți deveni o stea SEO."
4249
 
4250
  #: models/CheckSeo.php:343
4251
- #, fuzzy
4252
  msgid "Make a Manual Index Request for your Focus Pages With GSC"
4253
- msgstr ""
4254
- "Efectuați o solicitare de index manual pentru paginile dvs. de focalizare cu "
4255
- "GSC"
4256
 
4257
  #: models/CheckSeo.php:344
4258
- #, fuzzy
4259
  msgid ""
4260
  "Whenever you've added or made changes to a page on your site, you should ask "
4261
  "for Google to re-index your page. This will help getting the new content in "
@@ -4264,42 +4331,40 @@ msgid ""
4264
  "muscle for doing this. Requesting re-index will need to become a habit to "
4265
  "you."
4266
  msgstr ""
4267
- "Ori de câte ori ați adăugat sau ați făcut modificări la o pagină de pe site-"
4268
- "ul dvs., ar trebuisolicitați Google să-și reindexeze pagina. Acest lucru "
4269
- "va ajuta la obținerea noului conținut în indexul Google. Nu vă așteptați ca "
4270
- "Google să indice cea mai recentă versiune a paginii dvs. dacă săriți acest "
4271
- "lucru. Ca o stea SEO trebuie să începeți să construiți un mușchi puternic "
4272
- "pentru a face acest lucru. Solicitarea reindexării va trebui să devină un "
4273
- "obicei pentru tine."
4274
 
4275
  #: models/CheckSeo.php:345
4276
- #, fuzzy, php-format
4277
  msgid ""
4278
  "Go to %sSquirrly > Focus Pages%s - identify the page that hasn't had a new "
4279
  "index request and use the button to go to GSC and request re-index. %sLearn "
4280
  "how to manually index the URL on Google Search Console%s"
4281
  msgstr ""
4282
- "Accesați %sSquirrly> Focus Pages %s - identificați pagina care nu a avut o "
4283
- "nouă solicitare de index și utilizați butonul pentru a merge la GSC și a "
4284
- "solicita reindexarea."
 
4285
 
4286
  #: models/CheckSeo.php:346
4287
- #, fuzzy
4288
  msgid ""
4289
  "Let Google know you've made changes to your Focus Pages. Otherwise, nothing "
4290
  "will change in search results. This is mandatory."
4291
  msgstr ""
4292
- "Anunțați Google că ați făcut modificări în paginile dvs. Focus. În caz "
4293
  "contrar, nu se va schimba nimic în rezultatele căutării. Acest lucru este "
4294
  "obligatoriu."
4295
 
4296
  #: models/CheckSeo.php:357
4297
- #, fuzzy
4298
  msgid "Add your keywords to the Rankings section of Squirrly SEO"
4299
- msgstr "Adăugați cuvintele dvs. cheie la secțiunea Clasament din Squirrly SEO"
4300
 
4301
  #: models/CheckSeo.php:358
4302
- #, fuzzy
4303
  msgid ""
4304
  "SEO pros are always diligent about monitoring their rankings. If you want to "
4305
  "be an SEO star, you need to track your success and make data-driven "
@@ -4308,46 +4373,54 @@ msgid ""
4308
  "Checking the keyword yourself, manually, will give you fake information. You "
4309
  "can ask us why on our Facebook Group."
4310
  msgstr ""
4311
- "Pro SEO sunt întotdeauna harnici în ceea ce privește monitorizarea "
4312
- "clasamentului lor. Dacă doriți să fiți un star SEO, trebuie să vă urmăriți "
4313
- "succesul și să luați decizii bazate pe date. Prin adăugarea cuvântului cheie "
4314
- "al paginii de focalizare la secțiunea Clasament, veți ști poziția reală a "
4315
- "site-ului dvs. web în Google pentru acest cuvânt cheie. Verificând manual "
4316
- "cuvântul cheie, manual, vă va oferi informații false. Ne puteți întreba de "
4317
- "ce pe Grupul nostru de Facebook."
4318
 
4319
  #: models/CheckSeo.php:359
4320
- #, fuzzy, php-format
4321
  msgid ""
4322
  "Go to %sSquirrly > Research > Briefcase%s. Find your Focus Page's keyword "
4323
  "from the list, and click on the three dots you see on the far right. Then "
4324
  "click on Send to Rank Checker."
4325
  msgstr ""
4326
- "Accesați %sSquirrly> Cercetare> Servietă %s. Găsiți cuvântul cheie al "
4327
- "paginii de focalizare din listă și faceți clic pe cele trei puncte pe care "
4328
- "le vedeți în extrema dreaptă. Apoi faceți clic pe Trimitere verificator de "
4329
- "rang."
4330
 
4331
  #: models/CheckSeo.php:360
4332
- #, fuzzy
4333
  msgid ""
4334
  "See how your SEO efforts translate into results by adding your Focus Page's "
4335
  "keyword to the Rankings section."
4336
  msgstr ""
4337
- "Vedeți cum eforturile dvs. SEO se traduce în rezultate adăugând cuvântul "
4338
- "cheie al paginii dvs. de focalizare în secțiunea Clasament."
 
 
 
 
 
 
 
 
 
 
 
4339
 
4340
  #: models/CheckSeo.php:372
4341
- #, fuzzy
4342
  msgid ""
4343
  "Change the main keyword for a Focus Page that didn't reach TOP 20 rankings "
4344
  "during the last 2 months"
4345
  msgstr ""
4346
- "Modificați cuvântul cheie principal pentru o pagină de focalizare care nu a "
4347
- "atins top 20 în ultimele 2 luni"
4348
 
4349
  #: models/CheckSeo.php:373
4350
- #, fuzzy
4351
  msgid ""
4352
  "As a future SEO star, you need to be able to adapt and pivot. If you see "
4353
  "something is not working, change it. Adapt. The current keyword you have for "
@@ -4355,43 +4428,40 @@ msgid ""
4355
  "did NOT rank higher than the 21st position in Google. You can achieve better "
4356
  "results by switching to a new keyword."
4357
  msgstr ""
4358
- "Ca viitoare vedetă SEO, trebuie să fii capabil să te adaptezi și "
4359
- "pivotezi. Dacă vedeți că ceva nu funcționează, schimbați-l. Adapta. Cuvântul "
4360
- "cheie curent pe care îl aveți pentru această pagină nu vă aduce rezultate de "
4361
- "top. În ultimele 2 luni, acest cuvânt cheie NU a ocupat poziția mai mare "
4362
- "decât poziția 21 în Google. Puteți obține rezultate mai bune prin trecerea "
4363
  "la un nou cuvânt cheie."
4364
 
4365
  #: models/CheckSeo.php:374
4366
- #, fuzzy, php-format
4367
  msgid ""
4368
  "Go to %sSquirrly > Research%s and research new keyword ideas. Then get back "
4369
  "to this page and use SEO Live Assistant to optimize it for a different main "
4370
  "keyword."
4371
  msgstr ""
4372
- "Accesați %sSquirrly> Cercetare %s și căutați idei noi de cuvinte cheie. Apoi "
4373
- "reveniți la această pagină și utilizați SEO Live Assistant pentru a o "
4374
  "optimiza pentru un alt cuvânt cheie principal."
4375
 
4376
  #: models/CheckSeo.php:375
4377
- #, fuzzy
4378
  msgid ""
4379
  "Switch your target keyword to reach better results. Don't settle for the "
4380
  "second page of Google."
4381
  msgstr ""
4382
- "Comutați cuvântul cheie țintă pentru a obține rezultate mai bune. Nu vă "
4383
- "conformați cu a doua pagină a Google."
4384
 
4385
  #: models/CheckSeo.php:386
4386
- #, fuzzy
4387
  msgid ""
4388
  "Get to 90% Optimization Levels for all Focus Pages (using SEO Live Assistant)"
4389
  msgstr ""
4390
- "Obțineți 90% niveluri de optimizare pentru toate paginile focalizate "
4391
- "(utilizând SEO Live Assistant)"
4392
 
4393
  #: models/CheckSeo.php:387
4394
- #, fuzzy
4395
  msgid ""
4396
  "Our data shows that users who achieve 90% Optimization Levels using the Live "
4397
  "Assistant have a much better chance of achieving top Google Rankings for "
@@ -4399,39 +4469,36 @@ msgid ""
4399
  "get it all the way up to 90 (try 100). The more you practice, the easier it "
4400
  "will be."
4401
  msgstr ""
4402
- "Datele noastre arată că utilizatorii care ating niveluri de optimizare de "
4403
- "90% utilizând Live Assistant au șanse mult mai bune de a obține Topul Google "
4404
- "Top pentru paginile lor. Dacă doriți să fiți un star SEO, trebuie să vă "
4405
- "împingeți și să ajungeți până la 90 de ani (încercați 100). Cu cât "
4406
- "practicați mai mult, cu atât va fi mai ușor."
4407
 
4408
  #: models/CheckSeo.php:388
4409
- #, fuzzy, php-format
4410
  msgid ""
4411
  "Go and edit your Focus Pages using the SEO live Assistant. Follow the "
4412
  "guidance it provides to 100% optimize your page. Re-index your page with "
4413
  "Google Search Console when you are done."
4414
  msgstr ""
4415
- "Accesați și editați paginile dvs. Focus folosind asistentul SEO live. Urmați "
4416
- "îndrumările pe care le oferă pentru a optimiza 100% pagina. Reindexează "
4417
- "pagina cu Google Search Console după ce ai terminat."
4418
 
4419
  #: models/CheckSeo.php:389
4420
- #, fuzzy
4421
  msgid ""
4422
  "You must Optimize to 90% to give your Focus Pages the best chances of "
4423
  "achieving top Google Rankings."
4424
  msgstr ""
4425
- "Trebuie să optimizați până la 90% pentru a oferi paginilor dvs. focale cele "
4426
- "mai mari șanse de a obține Topul Google Top."
4427
 
4428
  #: models/CheckSeo.php:400
4429
- #, fuzzy
4430
  msgid "Stop losing SEO Authority"
4431
- msgstr "Nu mai pierdeți autoritatea SEO"
4432
 
4433
  #: models/CheckSeo.php:401
4434
- #, fuzzy
4435
  msgid ""
4436
  "You need to place rel='nofollow' to all Outbound links. Outbound links are "
4437
  "URLs from 3rd party sites to which you are linking to. If you send links to "
@@ -4442,40 +4509,35 @@ msgid ""
4442
  "'nofollow' we recommend a plugin that does this for you. You can find it on "
4443
  "[link]https://squirrly.co/seo/kit[/link]"
4444
  msgstr ""
4445
- "Trebuie să plasați rel = 'nofollow' la toate legăturile de ieșire. Linkurile "
4446
- "de ieșire sunt adrese URL de pe site-urile terțe părți la care vă conectați. "
4447
- "Dacă trimiteți linkuri către Wikipedia, Facebook, Jamie Oliver etc. fără a "
4448
- "menționa nofollow”, atunci le trimiteți și autoritatea pe care încercați "
4449
- "o construiți pentru propriul dvs. site. Asta este într-adevăr rău și face ca "
4450
- "paginile dvs. să nu poată fi destul de înalte. Deoarece unele link-uri sunt "
4451
- "dificile pentru experții non-SEO să apeleze la „nofollow”, recomandăm un "
4452
- "plugin care face acest lucru pentru dvs. O puteți găsi pe [link] https://"
4453
- "squirrly.co/seo/kit [/ link]"
4454
 
4455
  #: models/CheckSeo.php:402
4456
- #, fuzzy
4457
  msgid ""
4458
  "Place rel='nofollow' on outbound links yourself, or use the plugin "
4459
  "recommended by Squirrly that does this for you."
4460
  msgstr ""
4461
- "Plasați rel = 'nofollow' pe link-urile de ieșire sau folosiți pluginul "
4462
- "recomandat de Squirrly care face acest lucru pentru dvs."
4463
 
4464
  #: models/CheckSeo.php:403
4465
- #, fuzzy
4466
  msgid "Fix your outbound links. Otherwise, you will lose SEO authority."
4467
  msgstr ""
4468
- "Remediați-vă legăturile de ieșire. În caz contrar, veți pierde autoritatea "
4469
  "SEO."
4470
 
4471
  #: models/CheckSeo.php:414
4472
- #, fuzzy
4473
- #| msgid "Google %sAnalytics ID%s:"
4474
  msgid "Connect Google Analytics Data to Squirrly"
4475
- msgstr "Google %sAnalytics ID%s:"
4476
 
4477
  #: models/CheckSeo.php:415
4478
- #, fuzzy
4479
  msgid ""
4480
  "As a future SEO star, you need to be able to make decisions based on what "
4481
  "the data tells you. By connecting Google Analytics to Squirrly, you can "
@@ -4486,39 +4548,36 @@ msgid ""
4486
  "on how people spend time on your site, use the plugin we recommend in "
4487
  "[link]https://squirrly.co/seo/kit[/link]"
4488
  msgstr ""
4489
- "Ca viitoare vedetă SEO, trebuie să fii capabil să iei decizii pe baza a ceea "
4490
- "ce îți spun datele. Prin conectarea Google Analytics la Squirrly, puteți "
4491
- "monitoriza traficul pe care îl obțin paginile dvs. Focus și vă puteți "
4492
- "calcula următorii pași pe baza acestuia. De asemenea, o mare parte din SEO "
4493
- "în aceste zile se bazează pe cât timp petrec oamenii pe site-ul dvs., deci "
4494
- "pentru a vă oferi șanse exacte de clasare, SML-ul Squirrly trebuie să vadă "
4495
- "aceste date. Pentru a vă asigura că Google obține o precizie de 100% cu "
4496
  "privire la modul în care oamenii petrec timp pe site-ul dvs., utilizați "
4497
- "pluginul pe care îl recomandăm în [link] https://squirrly.co/seo/kit [/ link]"
4498
 
4499
  #: models/CheckSeo.php:416 view/Connect/GoogleAnalytics.php:33
4500
- #: view/SeoSettings/Tracking.php:96
4501
- #, fuzzy, php-format
4502
- #| msgid "Google %sAnalytics ID%s:"
4503
  msgid "Need Help Connecting Google Analytics? %sClick Here%s"
4504
- msgstr "Google %sAnalytics ID%s:"
 
4505
 
4506
  #: models/CheckSeo.php:417
4507
- #, fuzzy
4508
  msgid ""
4509
  "Connect Google Analytics to Squirrly so that you see how much traffic your "
4510
  "Focus Pages are getting."
4511
  msgstr ""
4512
  "Conectați Google Analytics la Squirrly, astfel încât să vedeți cât de mult "
4513
- "trafic obține paginile dvs. Focus."
4514
 
4515
  #: models/CheckSeo.php:427
4516
- #, fuzzy
4517
  msgid "Reach Platform SEO green lights for all Focus Pages"
4518
- msgstr "Atingeți luminile verzi platformă SEO pentru toate paginile Focus"
4519
 
4520
  #: models/CheckSeo.php:428
4521
- #, fuzzy
4522
  msgid ""
4523
  "You will be missing out on many ranking opportunities if you do not go and "
4524
  "fix Platform SEO right now. If you do fix it, make sure you start requesting "
@@ -4526,15 +4585,15 @@ msgid ""
4526
  "generating many types of pages, which are different from ordinary pages in "
4527
  "WP. Reaching 'Platform SEO' Green lights is a very important objective."
4528
  msgstr ""
4529
- "Vei lipsi de multe oportunități de clasament dacă nu te duci și rezolvi "
4530
- "platforma SEO chiar acum. Dacă o rezolvați, asigurați-vă că începeți să "
4531
- "solicitați reindexări pentru paginile dvs., utilizând Google Search Console. "
4532
- "Tema dvs. ar putea genera multe tipuri de pagini, care sunt diferite de "
4533
- "paginile obișnuite din WP. Atingerea luminilor verzi „Platform SEO” este un "
4534
- "obiectiv foarte important."
4535
 
4536
  #: models/CheckSeo.php:429
4537
- #, fuzzy, php-format
4538
  msgid ""
4539
  "Go to %sSquirrly > Focus Pages%s and look at the COLUMN with Platform SEO. "
4540
  "Click on a dot to see all sub-tasks in the right sidebar of the plugin. "
@@ -4542,30 +4601,27 @@ msgid ""
4542
  "red elements to green. Then re-index in Google Search Console. After that, "
4543
  "request a new Focus Pages audit for the page you fixed."
4544
  msgstr ""
4545
- "Accesați %sSquirrly> Focus Pages %s și uitați-vă la COLUMN cu platforma SEO. "
4546
- "Faceți clic pe un punct pentru a vedea toate sub-sarcinile din bara laterală "
4547
- "din dreapta a pluginului. Faceți clic pe fiecare articol Roșu sau Verde. "
4548
- "Citiți instrucțiunile pop-up și transformați toate elementele roșii în "
4549
- "verde. Apoi reindexează în Google Search Console. După aceea, solicitați un "
4550
- "nou audit al paginilor Focus pentru pagina fixată."
4551
 
4552
  #: models/CheckSeo.php:430
4553
- #, fuzzy
4554
  msgid ""
4555
  "Reach Platform SEO green lights for all Focus Pages. Otherwise, you will "
4556
  "keep giving Google faulty data, which can result in low rankings."
4557
  msgstr ""
4558
- "Atingeți luminile verzi platformă SEO pentru toate paginile Focus. În caz "
4559
- "contrar, veți continua să oferiți date defecte Google, ceea ce poate duce la "
4560
- "clasamente scăzute."
4561
 
4562
  #: models/CheckSeo.php:441
4563
- #, fuzzy
4564
  msgid "Add SEO Context Keywords to your Focus Pages"
4565
- msgstr "Adăugați Cuvinte cheie de context SEO în paginile dvs. de focalizare"
4566
 
4567
  #: models/CheckSeo.php:442
4568
- #, fuzzy
4569
  msgid ""
4570
  "Squirrly SEO's Live Assistant lets you optimize your pages for multiple "
4571
  "keywords that you've placed in Briefcase. By optimizing your Focus Page for "
@@ -4577,125 +4633,117 @@ msgid ""
4577
  "dog!'. On [link]https://squirrly.co/seo/kit/[/link] you can see a video that "
4578
  "shows how to add SEO context to a page."
4579
  msgstr ""
4580
- "Asistentul Live Squirrly SEO vă permite să vă optimizați paginile pentru mai "
4581
- "multe cuvinte cheie pe care le-ați plasat în Serviciu. Prin optimizarea "
4582
- "paginii de focalizare pentru un cuvânt cheie secundar care are legătură cu "
4583
  "cuvintele cheie principale, trimiteți semnale suplimentare motoarelor de "
4584
- "căutare pentru a le ajuta să înțeleagă și să plaseze pagina. Exemplu: dacă "
4585
- "aveți o pagină despre „hrana pentru câini”, ar trebui să optimizați și "
4586
- "pagina pentru una sau două rase de câini, astfel încât să-l lămuriți pe "
4587
- "Google că este vorba despre animalul câine și NU despre un prieten ca în "
4588
- "Yo, câine! '. Pe [link] https://squirrly.co/seo/kit/ [/ link] puteți vedea "
4589
- "un videoclip care arată cum să adăugați contextul SEO într-o pagină."
4590
 
4591
  #: models/CheckSeo.php:443
4592
- #, fuzzy
4593
  msgid ""
4594
  "Optimize your Focus Page for a secondary keyword using the Live Assistant. "
4595
  "Optimize it to at least 30% and re-index the page with Google Search Console "
4596
  "when you're done."
4597
  msgstr ""
4598
- "Optimizați-vă pagina de focalizare pentru un cuvânt cheie secundar utilizând "
4599
- "Live Assistant. Optimizează-l la cel puțin 30% și reindexează pagina cu "
4600
- "Google Search Console când ați terminat."
4601
 
4602
  #: models/CheckSeo.php:444
4603
- #, fuzzy
4604
  msgid ""
4605
  "Help Google understand the exact topic and context of your page so that it "
4606
  "will rank it higher."
4607
  msgstr ""
4608
- "Ajută-l pe Google să înțeleagă subiectul și contextul exact al paginii tale, "
4609
- "astfel încât să o plaseze mai sus."
 
 
 
 
4610
 
4611
  #: models/CheckSeo.php:455
4612
- #, fuzzy
4613
  msgid ""
4614
  "Add all secondary Keywords you've used to the Rankings Section of Squirrly"
4615
  msgstr ""
4616
- "Adăugați toate cuvintele cheie secundare pe care le-ați folosit la secțiunea "
4617
- "de clasare din Squirrly"
4618
 
4619
  #: models/CheckSeo.php:456
4620
- #, fuzzy
4621
  msgid ""
4622
  "Most people expect only the main keyword to be ranked in TOP 10 in Google. "
4623
  "However, according to the secondary keywords you've used to build up SEO "
4624
  "Context for your Focus Page, you may find out that your secondary keywords "
4625
  "also got great rankings on Google."
4626
  msgstr ""
4627
- "Majoritatea oamenilor se așteaptă ca principalul cuvânt cheie să fie clasat "
4628
- "în TOP 10 în Google. Cu toate acestea, în funcție de cuvintele cheie "
4629
- "secundare pe care le-ați folosit pentru a crea contextul SEO pentru pagina "
4630
- "dvs. de focalizare, puteți afla cuvintele dvs. cheie secundare au obținut "
4631
- "o clasare excelentă pe Google."
4632
 
4633
  #: models/CheckSeo.php:457
4634
- #, fuzzy
4635
  msgid ""
4636
  "Add your secondary keywords (the secondary keywords you used for your Focus "
4637
  "Pages) inside the Rankings Section."
4638
  msgstr ""
4639
- "Adăugați cuvintele dvs. cheie secundare (cuvintele cheie secundare pe care "
4640
- "le-ați folosit pentru paginile dvs. Focus) în secțiunea Clasament."
4641
 
4642
  #: models/CheckSeo.php:458
4643
- #, fuzzy
4644
  msgid ""
4645
  "As an SEO Star who worked hard on the pages and managed to optimize for "
4646
  "secondary keywords, you need to check if you get more results than you "
4647
  "expected."
4648
  msgstr ""
4649
- "Ca Star SEO, care a lucrat din greu în pagini și a reușit să optimizeze "
4650
- "pentru cuvintele cheie secundare, trebuie să verificați dacă obțineți mai "
4651
- "multe rezultate decât așteptați."
4652
 
4653
  #: models/CheckSeo.php:469
4654
- #, fuzzy
4655
  msgid "Fix SEO Images for your Focus Pages"
4656
- msgstr "Fixează imagini SEO pentru paginile dvs. de focalizare"
4657
 
4658
  #: models/CheckSeo.php:470
4659
- #, fuzzy
4660
  msgid ""
4661
  "When it comes to image SEO, it's important to use relevant keywords to help "
4662
  "your page rank on search engines. So, make sure that your filename for one "
4663
  "of the images in your Focus Pages is: keyword.jpg. Takes less than 5 minutes "
4664
  "to fix, and you'll get to practice an optimization tip worthy of an SEO star."
4665
  msgstr ""
4666
- "Când vine vorba de imagini SEO, este important să utilizați cuvinte cheie "
4667
- "relevante pentru a vă ajuta să rangați pagina pe motoarele de căutare. "
4668
- "Deci, asigurați-vă că numele dvs. de fișier pentru una dintre imaginile din "
4669
- "paginile dvs. de focalizare este: keywords.jpg. Durează mai puțin de 5 "
4670
- "minute pentru a remedia și vei putea practica un sfat de optimizare demn de "
4671
- "o stea SEO."
4672
 
4673
  #: models/CheckSeo.php:471
4674
- #, fuzzy
4675
  msgid ""
4676
  "Download a relevant image from your page. Change the filename. Then re-"
4677
  "upload with the SEO filename and add it your page's content again."
4678
  msgstr ""
4679
- "Descărcați o imagine relevantă de pe pagina dvs. Schimbați numele de fișier. "
4680
- "Apoi încărcați din nou cu numele de fișier SEO și adăugați-l din nou "
4681
- "conținutul paginii dvs."
4682
 
4683
  #: models/CheckSeo.php:472
4684
- #, fuzzy
4685
  msgid ""
4686
  "Improve your Focus Page's chances of ranking with this quick trick that SEO "
4687
  "professionals use."
4688
  msgstr ""
4689
- "Îmbunătățește-ți șansele de a-ți focaliza pagina cu acest truc rapid pe care "
4690
- "îl folosesc profesioniștii SEO."
4691
 
4692
  #: models/CheckSeo.php:483
4693
- #, fuzzy
4694
  msgid "Add Labels to Keywords in Briefcase"
4695
- msgstr "Adăugați etichete la cuvintele cheie din servietă"
4696
 
4697
  #: models/CheckSeo.php:484
4698
- #, fuzzy
4699
  msgid ""
4700
  "Users who use the Labels system in Briefcase have 60% more keywords ranked "
4701
  "in top 10 on Google than those who don't work with keywords in an organized "
@@ -4705,40 +4753,39 @@ msgid ""
4705
  "can see the Direct 1, Direct 2, Direct 3, Direct 4 and Indirect keywords "
4706
  "approach. It will help you with this."
4707
  msgstr ""
4708
- "Utilizatorii care utilizează sistemul Etichete din serviciu au cu 60% mai "
4709
- "multe cuvinte cheie clasate în top 10 pe Google decât cei care nu lucrează "
4710
- "cu cuvinte cheie în mod organizat. Ca viitoare vedetă SEO, este important să "
4711
- "înțelegem semnificația organizației de cuvinte cheie și cât de mare este "
4712
- "rolul său în realizarea unei campanii de căutare performante. Pe [link] "
4713
- "https://squirrly.co/seo/kit/ [/ link] puteți vedea abordarea cuvinte cheie "
4714
- "Direct 1, Direct 2, Direct 3, Direct 4 și Indirect. Te va ajuta cu asta."
 
4715
 
4716
  #: models/CheckSeo.php:485
4717
- #, fuzzy, php-format
4718
  msgid ""
4719
  "Go to %sSquirrly SEO > Research > Briefcase%s, and add Labels to your "
4720
  "keywords to organize them into tighter, more relevant groups based on your "
4721
  "current campaigns and strategy. "
4722
  msgstr ""
4723
- "Accesați %sSquirrly SEO> Cercetare> Servietă %s și adăugați Etichete la "
4724
- "cuvintele dvs. cheie pentru a le organiza în grupuri mai stricte, mai "
4725
- "relevante, bazate pe campaniile și strategia dvs. curente."
4726
 
4727
  #: models/CheckSeo.php:486
4728
- #, fuzzy
4729
  msgid ""
4730
  "Improve your chances of getting more keywords ranked in top 10 of Google."
4731
  msgstr ""
4732
- "Îmbunătățiți-vă șansele de a obține mai multe cuvinte cheie clasate în top "
4733
  "10 al Google."
4734
 
4735
  #: models/CheckSeo.php:497
4736
- #, fuzzy
4737
  msgid "Add more Ranking Power to your Focus Pages"
4738
- msgstr "Adăugați mai multe puteri de clasare la paginile dvs. de focus"
 
4739
 
4740
  #: models/CheckSeo.php:498
4741
- #, fuzzy
4742
  msgid ""
4743
  "Links on the web are like votes, and the pages that receive more votes rank "
4744
  "higher. Since Focus Pages are the most important pages in your site, you "
@@ -4749,53 +4796,49 @@ msgid ""
4749
  "1st page of Google with 4 keywords. [link]https://chiefcontent.com/s1-e4-"
4750
  "focus-pages-by-squirrly-success-with-focus-pages/[/link]"
4751
  msgstr ""
4752
- "Linkurile de pe web sunt ca voturile, iar paginile care primesc mai multe "
4753
- "voturi sunt mai mari. Deoarece Pagini Focus sunt cele mai importante pagini "
4754
- "de pe site-ul dvs., ar trebui să le acordați mai multe voturi (link-ul lor "
4755
- "de la multe pagini de pe site-ul dvs.; acestea sunt numite link-uri "
4756
- "interioare). Chiar dacă aveți nevoie să creați noi pagini din care să faceți "
4757
- "legături, tot va merita. Unii dintre utilizatorii noștri au scris doar un "
4758
- "articol pentru a obține un link interior pentru pagina lor de focalizare, "
4759
- "iar a doua zi au fost pe prima pagină a Google cu 4 cuvinte cheie. [Link] "
4760
- "https://chiefcontent.com/s1-e4-focus-pages-by-squirrly-success-with-focus-"
4761
- "pages/ [/ link]"
4762
 
4763
  #: models/CheckSeo.php:499
4764
- #, fuzzy
4765
  msgid ""
4766
  "Link to your Focus Page from another page in your site. If you don't have a "
4767
  "page where you can link from, spend some time creating one. Re-index with "
4768
  "Google Search Console. "
4769
  msgstr ""
4770
- "Link către pagina dvs. de focalizare de pe o altă pagină a site-ului dvs. "
4771
- "Dacă nu aveți o pagină de unde puteți conecta, petreceți ceva timp creând "
4772
- "una. Reindexează cu Google Search Console."
4773
 
4774
  #: models/CheckSeo.php:500
4775
- #, fuzzy
4776
  msgid "Create 1 Inner Link to one of your Focus Pages"
4777
- msgstr "Creați 1 link interior la una dintre paginile dvs. Focus"
4778
 
4779
  #: models/CheckSeo.php:511
4780
- #, fuzzy
4781
  msgid "Start tracking rankings for 3 keywords"
4782
  msgstr "Începeți să urmăriți clasamentele pentru 3 cuvinte cheie"
4783
 
4784
  #: models/CheckSeo.php:512
4785
- #, fuzzy
4786
  msgid ""
4787
  "Professional SEOs recognize the importance of tracking rankings as a way to "
4788
  "measure SEO success. As a future SEO star, it's important to measure the "
4789
  "impact of your work and pivot your priorities when you see that a current "
4790
  "strategy is not working."
4791
  msgstr ""
4792
- "SEO profesioniști recunosc importanța urmăririi clasamentelor ca o "
4793
- "modalitate de a măsura succesul SEO. Ca viitoare vedetă SEO, este important "
4794
- "să măsurăm impactul muncii tale și să îți pivotăm prioritățile atunci când "
4795
- "vezi că o strategie actuală nu funcționează."
4796
 
4797
  #: models/CheckSeo.php:513
4798
- #, fuzzy, php-format
4799
  msgid ""
4800
  "Get in the habit of tracking your rankings by adding three keywords to "
4801
  "Squirrly's Rankings section. Go to %sResearch > Briefcase%s, choose a "
@@ -4803,26 +4846,24 @@ msgid ""
4803
  "start showing you the true position of your site for that kewyord. Repeat "
4804
  "the process for two more keywords."
4805
  msgstr ""
4806
- "Obțineți obiceiul de a urmări clasamentul dvs. adăugând trei cuvinte cheie "
4807
- "în secțiunea Clasament Squirrly. Accesați %sRechelare> Servietă %s, alegeți "
4808
- "un cuvânt cheie pe care doriți să-l urmăriți și faceți clic pe Trimiteți la "
4809
- "verificatorul de rang. Squirrly va începe să vă arate adevărata poziție a "
4810
- "site-ului dvs. pentru acel kewyord. Repetați procesul pentru încă două "
4811
- "cuvinte cheie."
4812
 
4813
  #: models/CheckSeo.php:514
4814
- #, fuzzy
4815
  msgid "Start tracking rankings for 3 keywords."
4816
  msgstr "Începeți să urmăriți clasamentele pentru 3 cuvinte cheie."
4817
 
4818
  #: models/CheckSeo.php:525
4819
- #, fuzzy
4820
  msgid "Increase your SEO skill set by building your keyword portfolio"
4821
  msgstr ""
4822
- "Crește-ți setul de abilități SEO construind portofoliul de cuvinte cheie"
 
4823
 
4824
  #: models/CheckSeo.php:526
4825
- #, fuzzy
4826
  msgid ""
4827
  "Keyword research, both as a skill and as a practice, are critical to your "
4828
  "SEO success. You can't be an SEO master without it. Plus, according to new "
@@ -4834,19 +4875,20 @@ msgid ""
4834
  "others. Read more on [link]https://squirrly.co/seo/kit/[/link] in the "
4835
  "section about Google and how much they care about keywords."
4836
  msgstr ""
4837
- "Cercetarea cu cuvinte cheie, atât ca abilitate, cât și ca practică, sunt "
4838
- "esențiale pentru succesul SEO. Nu poți fi un maestru SEO fără el. În plus, "
4839
- "potrivit noilor cercetări, cu cât un blogger cercetează cuvinte cheie, cu "
4840
- "atât este mai probabil să raporteze succesul. Bloggerii care sunt și SEO "
4841
- "raportează rezultate puternice la rate mult mai mari decât media. Obțineți "
4842
- "cel puțin 10 cuvinte cheie în secțiunea Servieta pentru a începe. Cu o "
4843
- "cercetare puternică a cuvintelor cheie și SEO Live Assistant, am reușit să "
4844
- "depășim Amazon, Stack Overflow, Moz și câțiva alții. Citiți mai multe pe "
4845
- "[link] https://squirrly.co/seo/kit/ [/ link] din secțiunea despre Google și "
4846
- "cât de mult le pasă de cuvintele cheie."
 
4847
 
4848
  #: models/CheckSeo.php:527
4849
- #, fuzzy, php-format
4850
  msgid ""
4851
  "Go to %sSquirrly SEO > Research%s, and begin doing research based on the "
4852
  "topics you want to rank on Search Engines, and that are important for your "
@@ -4854,30 +4896,27 @@ msgid ""
4854
  "research formulas%s. When you find a good keyword opportunity, save it to "
4855
  "Briefcase. Do this until you have at least 10 keywords inside Briefcase."
4856
  msgstr ""
4857
- "Accesați %sSquirrly SEO> Cercetare %s și începeți să faceți cercetări pe "
4858
- "baza subiectelor pe care doriți să le clasificați pe Motoarele de căutare și "
4859
- "care sunt importante pentru cercetarea dvs. Dacă aveți nevoie de ajutor "
4860
- "pentru idei, %syou poate utiliza aceste formule de cercetare a cuvintelor "
4861
- "cheie %s. Când găsiți o oportunitate bună de cuvinte cheie, salvați-l în "
4862
- "Serviciu. Faceți acest lucru până când veți avea cel puțin 10 cuvinte cheie "
4863
- "în serviciu."
4864
 
4865
  #: models/CheckSeo.php:528
4866
- #, fuzzy
4867
  msgid ""
4868
  "Create your keyword portfolio. Get at least 10 keywords inside the Briefcase "
4869
  "Section."
4870
  msgstr ""
4871
- "Creați portofoliul dvs. de cuvinte cheie. Obțineți cel puțin 10 cuvinte "
4872
- "cheie în secțiunea Briefcase."
4873
 
4874
  #: models/CheckSeo.php:539
4875
- #, fuzzy
4876
  msgid "Avoid losing positions in search results"
4877
- msgstr "Evitați pierderea pozițiilor în rezultatele căutării"
4878
 
4879
  #: models/CheckSeo.php:540
4880
- #, fuzzy
4881
  msgid ""
4882
  "Make sure your Rankings won't drop because of duplicate content, duplicate "
4883
  "titles, empty titles, empty descriptions and more. SEO Experts and Non-SEO "
@@ -4885,34 +4924,37 @@ msgid ""
4885
  "(especially if you already turned Platform SEO to Green inside Focus Pages "
4886
  "section)"
4887
  msgstr ""
4888
- "Asigurați-vă că Clasamentele dvs. nu vor scădea din cauza conținutului "
4889
  "duplicat, a titlurilor duplicate, a titlurilor goale, a descrierilor goale "
4890
- "și multe altele. Experții SEO și experții non-SEO adoră această "
4891
- "caracteristică, deoarece se ocupă pur și simplu de tot ceea ce este "
4892
- "important. (mai ales dacă ați transformat deja platforma SEO în verde în "
4893
- "secțiunea Pagini Focus)"
4894
 
4895
  #: models/CheckSeo.php:541
4896
- #, fuzzy, php-format
4897
  msgid ""
4898
  "Go to %sSquirrly > SEO Settings > Automation%s and make sure that SEO "
4899
  "Patterns are activated."
4900
  msgstr ""
4901
- "Accesați %sSquirrly> Setări SEO>% automatizare și asigurați-vă că modelele "
4902
- "SEO sunt activate."
4903
 
4904
  #: models/CheckSeo.php:542
4905
- #, fuzzy
4906
  msgid "Activate SEO Patterns, with Squirrly's site-wide SEO Automation."
4907
- msgstr "Activează modelele SEO, cu automatizarea SEO a site-ului Squirrly."
 
 
 
 
 
 
4908
 
4909
  #: models/CheckSeo.php:553
4910
- #, fuzzy
4911
  msgid "Update Your Focus Pages Content Regularly"
4912
- msgstr "Actualizați-vă conținutul paginilor focus"
4913
 
4914
  #: models/CheckSeo.php:554
4915
- #, fuzzy
4916
  msgid ""
4917
  "Google prefers to rank pages that have relevant, fresh content that is up-to-"
4918
  "date. Updating your content can also improve your click-through-rate, "
@@ -4920,38 +4962,35 @@ msgid ""
4920
  "recently. And your CTR improving tells Google that your page is the better "
4921
  "resource, which will result in your page getting higher rankings."
4922
  msgstr ""
4923
- "Google preferă să plaseze pagini care au conținut actual, relevant și "
4924
- "actualizat. Actualizarea conținutului poate îmbunătăți, de asemenea, rata "
4925
- "de clic, deoarece oamenii au mai multe șanse facă clic pe articolele care "
4926
- "au fost publicate recent. Și îmbunătățirea CTR-ului dvs. îi spune Google că "
4927
- "pagina dvs. este resursa mai bună, ceea ce va duce la obținerea unui "
4928
- "clasament mai ridicat."
4929
 
4930
  #: models/CheckSeo.php:555
4931
- #, fuzzy
4932
  msgid ""
4933
  "The most recent update date for your Focus Page Content needs to be in the "
4934
  "last 3 months. If it's not, then go and edit your page. Re-index with Google "
4935
  "Search Console when you are done."
4936
  msgstr ""
4937
- "Data de actualizare cea mai recentă pentru conținutul paginii de focalizare "
4938
- "trebuie să fie în ultimele 3 luni. Dacă nu, atunci mergeți și editați "
4939
- "pagina. Reindexează cu Google Search Console când ai terminat."
4940
 
4941
  #: models/CheckSeo.php:556
4942
- #, fuzzy
4943
  msgid "Make Google love your Focus Pages by regularly updating content."
4944
  msgstr ""
4945
- "Faceți ca Google să vă iubească paginile de focalizare prin actualizarea "
4946
- "periodică a conținutului."
4947
 
4948
  #: models/CheckSeo.php:567
4949
- #, fuzzy
4950
  msgid "Define Title and Description for your Focus Pages"
4951
- msgstr "Definiți titlul și descrierea pentru paginile dvs. de focalizare"
4952
 
4953
  #: models/CheckSeo.php:568
4954
- #, fuzzy, php-format
4955
  msgid ""
4956
  "Titles and descriptions provide necessary information about the content of "
4957
  "the page, and help indicate the value a Google user will get by clicking on "
@@ -4960,75 +4999,68 @@ msgid ""
4960
  "think the headline/title tag is the most important SEO element. Each one of "
4961
  "your Focus Pages should have a defined title and meta description."
4962
  msgstr ""
4963
- "Titlurile și descrierile oferă informații necesare despre conținutul paginii "
4964
- "și ajută la indicarea valorii pe care o va obține un utilizator Google "
4965
- "făcând clic pe pagina respectivă. Dacă nu aveți aceste elemente definite "
4966
- "pentru paginile dvs., va face să pierdeți puncte prețioase atât cu "
4967
- "motoarele de căutare, cât și cu oamenii. 36% dintre experții SEO consideră "
4968
- "că titlul / eticheta este cel mai important element SEO. Fiecare dintre "
4969
- "paginile dvs. de focalizare ar trebui să aibă un titlu definit și o meta "
4970
- "descriere."
4971
 
4972
  #: models/CheckSeo.php:569
4973
- #, fuzzy
4974
  msgid ""
4975
  "Easily define titles and meta descriptions using the Snippet editor from "
4976
  "Squirrly SEO."
4977
  msgstr ""
4978
  "Definiți cu ușurință titlurile și meta descrierile folosind editorul de "
4979
- "fragmente de la Squirrly SEO."
4980
 
4981
  #: models/CheckSeo.php:570
4982
- #, fuzzy
4983
  msgid ""
4984
  "Customize Title and Description for your Focus Pages to get more people to "
4985
  "click on your pages in SERPs."
4986
  msgstr ""
4987
- "Personalizați titlul și descrierea pentru paginile dvs. de focalizare pentru "
4988
- "a determina mai multe persoanefacă clic pe paginile dvs. din SERP-uri."
4989
 
4990
  #: models/CheckSeo.php:581
4991
- #, fuzzy
4992
  msgid "Optimize Twitter Cards for your Focus Pages"
4993
- msgstr "Optimizați cardurile Twitter pentru paginile dvs. de focus"
4994
 
4995
  #: models/CheckSeo.php:582
4996
- #, fuzzy
4997
  msgid ""
4998
  "Twitter Cards are a great partner to your SEO strategy, as it helps you "
4999
  "stand out to Twitter users and thus increase engagement and CTR. Grab that "
5000
  "opportunity by making sure that all the Twitter tags are in place for your "
5001
  "Focus Pages."
5002
  msgstr ""
5003
- "Cardurile Twitter sunt un partener minunat pentru strategia dvs. SEO, "
5004
- "deoarece vă ajută să distingeți de utilizatorii Twitter și creșteți "
5005
- "astfel implicarea și CTR. Obțineți această ocazie asigurându-vă că toate "
5006
- "etichetele Twitter sunt pe loc pentru paginile dvs. de focalizare."
 
5007
 
5008
  #: models/CheckSeo.php:583
5009
- #, fuzzy
5010
  msgid ""
5011
  "Use the Snippet editor from Squirrly SEO to get all the Twitter Card "
5012
  "definition elements in place."
5013
  msgstr ""
5014
- "Utilizați editorul Snippet de la Squirrly SEO pentru a obține toate "
5015
  "elementele de definire a cardului Twitter."
5016
 
5017
  #: models/CheckSeo.php:584
5018
- #, fuzzy
5019
  msgid ""
5020
  "Optimize Twitter Cards for your Focus Pages to boost engagement and traffic."
5021
  msgstr ""
5022
- "Optimizați carduri Twitter pentru paginile dvs. de focalizare pentru a "
5023
- "stimula implicarea și traficul."
5024
 
5025
  #: models/CheckSeo.php:595
5026
- #, fuzzy
5027
  msgid "Optimize Open Graph for your Focus Pages"
5028
- msgstr "Optimizați graficul deschis pentru paginile dvs. de focalizare"
5029
 
5030
  #: models/CheckSeo.php:596
5031
- #, fuzzy
5032
  msgid ""
5033
  "Open Graph lets you control what content is displayed when your pages are "
5034
  "linked on social media, thus influencing your link's performance. If you "
@@ -5038,40 +5070,35 @@ msgid ""
5038
  "your keywords inside the OG definitions has been proven to also boost SEO."
5039
  msgstr ""
5040
  "Open Graph vă permite să controlați ce conținut este afișat atunci când "
5041
- "paginile dvs. sunt conectate pe social media, influențând astfel performanța "
5042
- "linkului dvs. Dacă vă lipsește aceste etichete, riscați să apară o imagine "
5043
- "fără legătură sau o descriere inexactă. De partea flip, faptul că aceste "
5044
- "etichete vă ajută să valorificați puterea rețelelor de socializare și să vă "
5045
- "creșteți CTR-ul social media. Utilizarea cuvintelor cheie din definițiile OG "
5046
- "s-a dovedit a stimula SEO."
5047
 
5048
  #: models/CheckSeo.php:597
5049
- #, fuzzy
5050
  msgid ""
5051
  "Use the Snippet editor from Squirrly SEO to get all the Open Graph "
5052
  "definition elements in place for your Focus Pages."
5053
  msgstr ""
5054
- "Utilizați editorul Snippet de la Squirrly SEO pentru a obține toate "
5055
- "elementele de definire a graficului deschis pentru paginile dvs. de "
5056
- "focalizare."
5057
 
5058
  #: models/CheckSeo.php:598
5059
- #, fuzzy
5060
  msgid ""
5061
  "Optimize Open Graph. Unless you do so, you're leaving how your Focus Pages "
5062
  "are shown on Facebook up to chance. (it's also bad for SEO)"
5063
  msgstr ""
5064
- "Optimizarea graficului deschis. Dacă nu faceți acest lucru, lăsați modul în "
5065
- "care paginile dvs. de focalizare sunt afișate pe Facebook până la "
5066
- "întâmplare. (este de asemenea rău pentru SEO)"
5067
 
5068
  #: models/CheckSeo.php:609
5069
- #, fuzzy
5070
  msgid "Optimize Rich Snippets for your Focus Pages"
5071
- msgstr "Optimizați fragmente bogate pentru paginile dvs. de focalizare"
5072
 
5073
  #: models/CheckSeo.php:610
5074
- #, fuzzy
5075
  msgid ""
5076
  "JSON-LD, Rich Snippets, Schema implementation: this thing goes by many "
5077
  "different names, because nothing has been standardized. However, as an SEO "
@@ -5084,35 +5111,32 @@ msgid ""
5084
  "completed everything about your organization or personal brand in Squirrly > "
5085
  "SEO Settings > JSON-LD."
5086
  msgstr ""
5087
- "JSON-LD, Rich Snippets, implementarea schemei: acest lucru merge cu multe "
5088
- "nume diferite, deoarece nimic nu a fost standardizat. Totuși, ca Star SEO, "
5089
- "trebuie să vă asigurați că site-ul dvs. are acest JSON-LD definit corect. "
5090
- "Puteți lăsa Squirrly SEO să gestioneze automat definițiile JSON-LD sau "
5091
- "puteți comutați la Custom și utilizați instrumentul la care facem "
5092
- "legătura pentru a crea propria definiție. După ce ați terminat acolo, "
5093
- "puteți întoarceți și lipiți codul în secțiunea personalizată din "
5094
- "fragmentul paginii dvs. pentru JSON-LD. Pentru majoritatea paginilor, "
5095
- "totuși, ar trebui să permiteți această setare la Auto. De asemenea, "
5096
- "asigurați-vă că ați completat totul despre organizația dvs. sau marca "
5097
- "personală în Squirrly> Setări SEO> JSON-LD."
5098
 
5099
  #: models/CheckSeo.php:611
5100
- #, fuzzy
5101
  msgid "Use the Snippet Editor from Squirrly SEO to get this done."
5102
- msgstr "Utilizați Snippet Editor de la Squirrly SEO pentru a face acest lucru."
 
5103
 
5104
  #: models/CheckSeo.php:612
5105
- #, fuzzy
5106
  msgid "You need to have good definitions for JSON-LD."
5107
  msgstr "Trebuie să aveți definiții bune pentru JSON-LD."
5108
 
5109
  #: models/CheckSeo.php:623
5110
- #, fuzzy
5111
  msgid "Make your Focus Pages at least 1,500 words long"
5112
- msgstr "Creează-ți paginile focalizate de cel puțin 1.500 de cuvinte"
5113
 
5114
  #: models/CheckSeo.php:624
5115
- #, fuzzy
5116
  msgid ""
5117
  "Research shows that the average Google first page result contains 1,890 "
5118
  "words. Plus, long-form content gets an average of 77.2% more links than "
@@ -5124,60 +5148,56 @@ msgid ""
5124
  "who have decent sites), the 1,500 words is a powerful differentiator which "
5125
  "can score you easy wins."
5126
  msgstr ""
5127
- "Cercetările arată rezultatul mediu din prima pagină Google conține 1.890 "
5128
- "de cuvinte. În plus, conținutul de formă lungă primește în medie cu 77,2% "
5129
- "mai multe link-uri decât articolele scurte, ceea ce îl face ideal pentru "
5130
- "achiziția de backlink. Călătoria către o mai bună clasare din Squirrly SEO "
5131
- "vă oferă multe idei despre cum să vă faceți mai ușor paginile mai lungi. Ar "
5132
- "putea părea descurajant la început, dar după ce ați făcut câteva pagini, va "
5133
- "deveni ușor de făcut. În plus, Squirrly SML a arătat că în TOATE industriile "
5134
- "în care există un pic de concurență (adică alți proprietari de site-uri care "
5135
- "au site-uri decente), cele 1.500 de cuvinte sunt un diferențiator puternic "
5136
- "care vă poate obține victorii ușoare."
5137
 
5138
  #: models/CheckSeo.php:625
5139
- #, fuzzy
5140
  msgid ""
5141
  "Edit the content on your Focus Pages to make it over 1,500 words long. Some "
5142
  "tips you can use here: [link]https://howto.squirrly.co/wordpress-seo/journey-"
5143
  "to-better-ranking-day-12/[/link] . Re-index with Google Search Console when "
5144
  "you're done."
5145
  msgstr ""
5146
- "Editați conținutul din paginile dvs. de focalizare pentru a face mai mult de "
5147
- "1.500 de cuvinte. Câteva sfaturi pe care le puteți folosi aici: [link] "
5148
- "https://howto.squirrly.co/wordpress-seo/journey-to-better-ranking-day-12/ [/ "
5149
- "link]. Reindexează cu Google Search Console când ai terminat."
5150
 
5151
  #: models/CheckSeo.php:626
5152
- #, fuzzy
5153
  msgid ""
5154
  "Make Google want to rank your Focus Pages on the 1st Page by making them at "
5155
  "least 1,500 words long."
5156
  msgstr ""
5157
- "Faceți ca Google să își dorească să își clasifice paginile Focus pe prima "
5158
- "pagină, făcând din acestea cel puțin 1.500 de cuvinte."
5159
 
5160
  #: models/CheckSeo.php:637
5161
- #, fuzzy
5162
  msgid "Reach Perfect SEO Content optimizations for all Focus Pages"
5163
- msgstr "Atingeți optimizările Perfect Content SEO pentru toate paginile Focus"
5164
 
5165
  #: models/CheckSeo.php:638
5166
- #, fuzzy
5167
  msgid ""
5168
  "Expert SEOs don't settle for reaching 30%, 50% or 60% optimization level "
5169
  "when trying to get a page on the 1st page of Google. As a future SEO star, "
5170
  "reaching perfect SEO optimization is a skill you must master as well, as it "
5171
  "gives you the best chances of rankings."
5172
  msgstr ""
5173
- "Experții SEO nu se potrivesc cu atingerea nivelului de optimizare de 30%, 50 "
5174
- "%sau 60% atunci când încercațiobțineți o pagină pe prima pagină a "
5175
- "Google. Ca viitoare vedetă SEO, atingerea optimizării SEO perfecte este o "
5176
- "abilitate pe care trebuie să o stăpânești, deoarece îți oferă cele mai bune "
5177
- "șanse de clasament."
5178
 
5179
  #: models/CheckSeo.php:639
5180
- #, fuzzy, php-format
5181
  msgid ""
5182
  "Go to %sSquirrly > Focus Pages%s and look at the SEO Content column. Click "
5183
  "on a red or green light, then look at the right sidebar. There you will see "
@@ -5185,41 +5205,37 @@ msgid ""
5185
  "Green. Click on each RED element and read how to make it green (the ones "
5186
  "from the sidebar)."
5187
  msgstr ""
5188
- "Accesați %sSquirrly> Focus Pages %s și uitați-vă la coloana Conținut SEO. "
5189
- "Faceți clic pe o lumină roșie sau verde, apoi priviți bara laterală din "
5190
- "dreapta. Acolo veți vedea toate elementele care compun scorul final de "
5191
- "conținut SEO pentru a obține RED sau Green. Faceți clic pe fiecare element "
5192
- "RED și citiți cum să îl faceți verde (cele din bara laterală)."
5193
 
5194
  #: models/CheckSeo.php:640
5195
- #, fuzzy
5196
  msgid ""
5197
  "Reach Perfect SEO optimization level for your Focus Pages to master content "
5198
  "optimization."
5199
  msgstr ""
5200
- "Atingeți nivelul de optimizare SEO perfect pentru paginile dvs. Focus pentru "
5201
- "a stabili optimizarea conținutului."
5202
 
5203
  #: models/CheckSeo.php:651
5204
- #, fuzzy
5205
  msgid "Turn all marketing settings to GREEN"
5206
- msgstr "Transformați toate setările de marketing pe VERDE"
5207
 
5208
  #: models/CheckSeo.php:652
5209
- #, fuzzy
5210
  msgid ""
5211
  "If you want to unleash the full marketing power of your WordPress site, then "
5212
  "you need to activate all the important marketing settings there are. This is "
5213
  "vital to marketing mastery and to maximizing your site's marketing "
5214
  "opportunities."
5215
  msgstr ""
5216
- "Dacă doriți să dezlănțuiți întreaga putere de marketing a site-ului dvs. "
5217
  "WordPress, atunci trebuie să activați toate setările importante de marketing "
5218
- "pe care le aveți. Acest lucru este vital pentru măiestria marketingului și "
5219
- "pentru maximizarea posibilităților de marketing ale site-ului dvs."
5220
 
5221
  #: models/CheckSeo.php:653
5222
- #, fuzzy
5223
  msgid ""
5224
  "Go to the SEO Settings section of Squirrly SEO. Click on the METAs section. "
5225
  "You'll see tasks appearing at the right of the screen. Look to the right of "
@@ -5227,62 +5243,63 @@ msgid ""
5227
  "element and you'll find out what you need to do to complete the task and "
5228
  "turn it Green."
5229
  msgstr ""
5230
- "Accesați secțiunea Setări SEO din SEO Squirrly. Faceți clic pe secțiunea "
5231
- "METAs. Veți vedea sarcini care apar în partea dreaptă a ecranului. Priviți "
5232
- "în partea dreaptă a ecranului și rotiți aceste lumini roșii de la Roșu la "
5233
- "Verde. Faceți clic pe fiecare element și veți afla ce trebuie să faceți "
5234
- "pentru a finaliza sarcina și a o transforma în verde."
5235
 
5236
  #: models/CheckSeo.php:654
5237
- #, fuzzy
5238
  msgid ""
5239
  "Turn all sidebar (right sidebar) lights to GREEN for all SEO Settings "
5240
  "Sections."
5241
  msgstr ""
5242
- "Rotiți toate luminile barei laterale (bara laterală) la VERDE pentru toate "
5243
- "secțiunile de setări SEO."
5244
 
5245
  #: models/CheckSeo.php:665
5246
- #, fuzzy
5247
  msgid "Raise Audit Score to Over 30%"
5248
- msgstr "Crește scorul de audit la peste 30%"
5249
 
5250
  #: models/CheckSeo.php:666
5251
- #, fuzzy
5252
  msgid ""
5253
  "Sites with Audit scores under 30% will have a very hard time ranking for "
5254
  "anything. Scores under 30 means the site doesn't have enough quality to be "
5255
  "deemed worthy of being found on the first page of Google."
5256
  msgstr ""
5257
- "Site-urile cu scoruri de audit sub 30% vor avea un moment foarte greu pentru "
5258
- "orice. Scorurile sub 30 de ani înseamnă că site-ul nu are suficientă "
5259
- "calitate pentru a fi considerat demn de a fi găsit pe prima pagină a Google."
 
5260
 
5261
  #: models/CheckSeo.php:667
5262
- #, fuzzy, php-format
5263
  msgid ""
5264
  "Go to %sSquirrly > Audits%s section and read all the Audit tasks where you "
5265
  "currently have problems. It tells you how to fix those problems."
5266
  msgstr ""
5267
- "Accesați secțiunea %sSquirrly> Audits %s și citiți toate sarcinile de audit "
5268
- "unde aveți probleme în prezent. Îți spune cum să rezolvi acele probleme."
 
5269
 
5270
  #: models/CheckSeo.php:668
5271
- #, fuzzy
5272
  msgid ""
5273
  "You need to get an Audit Score of over 30% as soon as possible, if you want "
5274
  "to avoid Google penalties."
5275
  msgstr ""
5276
- "Trebuie să obțineți un Scor de audit de peste 30% cât mai curând posibil, "
5277
- "dacă doriți să evitați sancțiunile Google."
 
 
 
 
 
5278
 
5279
  #: models/CheckSeo.php:678
5280
- #, fuzzy
5281
  msgid "Reach 3 Inner Links for all your Focus Pages"
5282
- msgstr "Atingeți 3 Link-uri interioare pentru toate paginile dvs. Focus"
5283
 
5284
  #: models/CheckSeo.php:679 models/CheckSeo.php:867
5285
- #, fuzzy
5286
  msgid ""
5287
  "Studies show that a strong internal linking structure yields higher rankings "
5288
  "and is an extremely effective SEO tactic. Wikipedia and StackOverflow are "
@@ -5298,60 +5315,56 @@ msgid ""
5298
  "about inner links. Also, in the Rank Show series you can see how one website "
5299
  "managed to get its most important ranking increases from great inner links."
5300
  msgstr ""
5301
- "Studiile arată că o structură puternică de legătură internă ranguri "
5302
- "superioare și este o tactică SEO extrem de eficientă. Wikipedia și "
5303
- "StackOverflow sunt unele dintre cele mai bune site-uri din lume când vine "
5304
- "vorba de SEO. Cea mai mare parte a puterii lor SEO vine din legătura internă "
5305
- "puternică. Deoarece paginile Focus sunt cele mai importante pagini de pe "
5306
- "site-ul dvs., ar trebui să le acordați mai multe voturi (link-ul lor de la "
5307
- "multe pagini de pe site-ul dvs.). Chiar dacă aveți nevoie pentru a crea "
5308
- "pagini noi din care să faceți legături, va merita. Asigurați-vă că plasați "
5309
- "linkurile în conținutul paginii, nu în meniuri, în subsoluri etc. (acestea "
5310
- "nu aduc aceeași putere atunci când vine vorba de semnale SEO). Pe https://"
5311
- "squirrly.co/seo/kit/ puteți vedea o strategie avansată de marketing a "
5312
- "conținutului legată de conținutul Formă lungă și conținut complementar. Asta "
5313
- "te va ajuta să gândești mai creativ despre legăturile interioare. De "
5314
- "asemenea, în seria Show Show poți vedea cum un site web a reușit să obțină "
5315
- "cel mai important clasament crește de la legăturile interioare mari."
 
5316
 
5317
  #: models/CheckSeo.php:680
5318
- #, fuzzy
5319
  msgid ""
5320
  "Get at least three inner links to your Focus Pages from other pages in your "
5321
  "site. If you don't have enough pages where you can link from, spend some "
5322
  "time creating new content. Then, re-index with Google Search Console (each "
5323
  "page from which you sent the links)"
5324
  msgstr ""
5325
- "Obțineți cel puțin trei linkuri interioare către paginile dvs. Focus din "
5326
- "alte pagini ale site-ului dvs. Dacă nu aveți destule pagini de unde "
5327
- "puteți conecta, petreceți ceva timp creând conținut nou. Apoi, reindexați cu "
5328
  "Google Search Console (fiecare pagină de la care ați trimis linkurile)"
5329
 
5330
  #: models/CheckSeo.php:681 models/CheckSeo.php:869
5331
- #, fuzzy
5332
  msgid "Add more ranking power to your Focus Pages."
5333
- msgstr "Adăugați mai multă putere de clasare la paginile dvs. Focus"
5334
 
5335
  #: models/CheckSeo.php:692
5336
- #, fuzzy
5337
  msgid "Get Minimum 10 Visitors / Day to Your Focus Pages"
5338
- msgstr "Obțineți minim 10 vizitatori / zi la paginile dvs. de focalizare"
5339
 
5340
  #: models/CheckSeo.php:693 models/CheckSeo.php:945 models/CheckSeo.php:997
5341
- #, fuzzy
5342
  msgid ""
5343
  "You need to make sure that your Focus Pages become more popular and take "
5344
  "action so that more people start seeing it. Google measures many aspects. If "
5345
  "you don't give it enough traffic, it will not have enough data to figure out "
5346
  "if your page is actually any good."
5347
  msgstr ""
5348
- "Trebuie să vă asigurați că paginile dvs. Focus devin mai populare și să "
5349
- "acționați pentru ca mai multe persoane să înceapă să o vadă. Google măsoară "
5350
- "multe aspecte. Dacă nu îi oferi suficient trafic, nu va avea suficiente date "
5351
- "pentru a da seama dacă pagina dvs. este de fapt bună."
5352
 
5353
  #: models/CheckSeo.php:694 models/CheckSeo.php:946 models/CheckSeo.php:998
5354
- #, fuzzy
5355
  msgid ""
5356
  "Start promoting your Focus Pages on your social media channels, send it to "
5357
  "your email subscribers, answer relevant questions on Quora and include a "
@@ -5359,29 +5372,25 @@ msgid ""
5359
  "start bringing some traffic to your Focus pages on [link]https://squirrly.co/"
5360
  "seo/kit[/link]"
5361
  msgstr ""
5362
- "Începeți să promovați paginile dvs. Focus pe canalele de social media, "
5363
  "trimiteți-le abonaților dvs. de e-mail, răspundeți la întrebări relevante pe "
5364
  "Quora și includeți un link către pagina dvs. Obțineți informații detaliate "
5365
- "și mai multe idei despre cum puteți începe să aduceți un pic de trafic către "
5366
- "paginile dvs. Focus pe [link] https://squirrly.co/seo/kit [/ link]"
5367
 
5368
  #: models/CheckSeo.php:695 models/CheckSeo.php:947 models/CheckSeo.php:999
5369
- #, fuzzy
5370
  msgid ""
5371
  "Improve visibility for your Focus Pages. Bring in more traffic. Otherwise, "
5372
  "it will be hard to keep ranking higher."
5373
  msgstr ""
5374
- "Îmbunătățiți vizibilitatea pentru paginile dvs. Focus. Aduceți mai mult "
5375
- "trafic. În caz contrar, va fi greu să mențineți clasamentul mai mare."
5376
 
5377
  #: models/CheckSeo.php:705
5378
- #, fuzzy
5379
- #| msgid "Custom description: "
5380
  msgid "No Duplicate Titles"
5381
- msgstr "Descrierea:"
5382
 
5383
  #: models/CheckSeo.php:706
5384
- #, fuzzy
5385
  msgid ""
5386
  "Currently, the theme or a 3rd party plugin inside your WordPress site "
5387
  "manages to bypass Squirrly's duplicate remover feature. It keeps duplicating "
@@ -5390,36 +5399,32 @@ msgid ""
5390
  "You can use the run new scan button here in Next SEO Goals to see if the "
5391
  "problem persists."
5392
  msgstr ""
5393
- "În prezent, tema sau un plugin de terță parte din interiorul site-ului dvs. "
5394
- "WordPress reușește să ocolească funcția de eliminare duplicată a lui "
5395
- "Squirrly. Acesta continuă să dubleze eticheta de titlu în interiorul codului "
5396
- "sursă. Trebuie să începeți să dezactivați toate pluginurile, cu excepția SEO "
5397
- "Squirrly, până când veți găsi cel care cauzează această problemă. Puteți "
5398
- "utiliza butonul alerga nou de scanare aici în Obiectivele zilnice SEO pentru "
5399
- "a vedea dacă problema persistă."
5400
 
5401
  #: models/CheckSeo.php:707
5402
- #, fuzzy
5403
  msgid ""
5404
  "Track down the plugin or theme setting which causes the duplication. Make it "
5405
  "unable to place title tags."
5406
  msgstr ""
5407
- "Urmăriți setarea pluginului sau a temei care provoacă duplicarea. Faceți "
5408
- "imposibilitatea de a plasa etichete de titlu."
5409
 
5410
  #: models/CheckSeo.php:708
5411
- #, fuzzy
5412
  msgid "Make sure you don't have any more duplicate titles in your pages."
5413
- msgstr "Asigurați-vă că nu mai aveți titluri duplicate în paginile dvs."
 
5414
 
5415
  #: models/CheckSeo.php:719
5416
- #, fuzzy
5417
- #| msgid "Custom description: "
5418
  msgid "No Duplicate Descriptions"
5419
- msgstr "Descrierea:"
5420
 
5421
  #: models/CheckSeo.php:720
5422
- #, fuzzy
5423
  msgid ""
5424
  "Currently, the theme or a 3rd party plugin inside your WordPress site "
5425
  "manages to bypass Squirrly's duplicate remover feature. It keeps duplicating "
@@ -5428,91 +5433,82 @@ msgid ""
5428
  "causing this problem. You can use the run new scan button here in Next SEO "
5429
  "Goals to see if the problem persists."
5430
  msgstr ""
5431
- "În prezent, tema sau un plugin de terță parte din interiorul site-ului dvs. "
5432
- "WordPress reușește să ocolească funcția de eliminare duplicată a lui "
5433
- "Squirrly. Menține duplicarea etichetei meta descriere în codul sursă. "
5434
- "Trebuie să începeți să dezactivați toate pluginurile, cu excepția SEO "
5435
- "Squirrly, până când veți găsi cel care cauzează această problemă. Puteți "
5436
- "utiliza butonul alerga nou de scanare aici în Obiectivele zilnice SEO pentru "
5437
- "a vedea dacă problema persistă."
5438
 
5439
  #: models/CheckSeo.php:721
5440
- #, fuzzy
5441
  msgid ""
5442
  "Track down the plugin or theme setting which causes the duplication. Make it "
5443
  "unable to place meta description tags."
5444
  msgstr ""
5445
- "Urmăriți setarea pluginului sau a temei care provoacă duplicarea. Faceți "
5446
- "imposibilitatea de a plasa etichete meta descriere."
5447
 
5448
  #: models/CheckSeo.php:722
5449
- #, fuzzy
5450
  msgid "Make sure you don't have any more duplicate descriptions in your pages."
5451
- msgstr "Asigurați-vă că nu mai aveți alte descrieri duplicate în paginile dvs."
 
5452
 
5453
  #: models/CheckSeo.php:733
5454
- #, fuzzy
5455
- #| msgid "Custom description: "
5456
  msgid "No Empty Titles"
5457
- msgstr "Descrierea:"
5458
 
5459
  #: models/CheckSeo.php:734
5460
- #, fuzzy
5461
  msgid ""
5462
  "Google doesn't want to place sites with coding problems up in the first "
5463
  "positions. Sure, the search engine is smart enough to generate the title on "
5464
  "its own, based on the content inside the URL, but it's still a bad practice."
5465
  msgstr ""
5466
- "Google nu vrea să plaseze site-uri cu probleme de codificare în primele "
5467
- "poziții. Sigur, motorul de căutare este suficient de inteligent pentru a "
5468
- "genera singur titlul, pe baza conținutului din interiorul adresei URL, dar "
5469
- "este totuși o practică proastă."
5470
 
5471
  #: models/CheckSeo.php:735 models/CheckSeo.php:749
5472
- #, fuzzy, php-format
5473
  msgid ""
5474
  "Fix this using Squirrly SEO. Find more help in the %sSquirrly > SEO Settings"
5475
  "%s section."
5476
  msgstr ""
5477
- "Remediați acest lucru utilizând Squirrly SEO. Găsiți mai mult ajutor în "
5478
- "secțiunea %sSquirrly> Setări SEO %s."
5479
 
5480
  #: models/CheckSeo.php:736 models/CheckSeo.php:750
5481
- #, fuzzy
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 goale și descrieri goale. "
5487
- "În caz contrar, clasamentul dvs. va avea de suferit."
5488
 
5489
  #: models/CheckSeo.php:747
5490
- #, fuzzy
5491
- #| msgid "Custom description: "
5492
  msgid "No Empty Descriptions"
5493
- msgstr "Descrierea:"
5494
 
5495
  #: models/CheckSeo.php:748
5496
- #, fuzzy
5497
  msgid ""
5498
  "Google doesn't want to place sites with coding problems up in the first "
5499
  "positions. Sure, the search engine is smart enough to generate the "
5500
  "description on its own, based on the content inside the URL, but it's still "
5501
  "a bad practice."
5502
  msgstr ""
5503
- "Google nu vrea să plaseze site-uri cu probleme de codificare în primele "
5504
- "poziții. Sigur, motorul de căutare este suficient de inteligent pentru a "
5505
- "genera singur descrierea, pe baza conținutului din interiorul adresei URL, "
5506
- "dar este totuși o practică proastă."
5507
 
5508
  #: models/CheckSeo.php:761
5509
- #, fuzzy
5510
  msgid "Fix Duplicate Content Issues on your site (across multiple pages)"
5511
  msgstr ""
5512
- "Remediați probleme de conținut duplicat pe site-ul dvs. (pe mai multe pagini)"
 
5513
 
5514
  #: models/CheckSeo.php:762
5515
- #, fuzzy
5516
  msgid ""
5517
  "Having duplicate content in your site will negatively impact your Search "
5518
  "Engine Rankings and traffic. Therefore, you need to make sure you don't have "
@@ -5521,15 +5517,15 @@ msgid ""
5521
  "penalize you. Go to [link]https://squirrly.co/seo/kit/[/link] to see the 4 "
5522
  "types of duplicate content."
5523
  msgstr ""
5524
- "Dacă aveți conținut duplicat pe site-ul dvs., va afecta negativ Clasamentul "
5525
- "motorului de căutare și traficul. Prin urmare, trebuie să vă asigurați că nu "
5526
- "aveți titluri și descrieri duplicate (și chiar copiați textul scris în "
5527
- "interiorul paginilor) Dacă copiați același lucru de mai multe ori, motoarele "
5528
- "de căutare vă vor penaliza. Accesați [link] https://squirrly.co/seo/kit/ [/ "
5529
- "link] pentru a vedea cele 4 tipuri de conținut duplicat."
 
5530
 
5531
  #: models/CheckSeo.php:763
5532
- #, fuzzy
5533
  msgid ""
5534
  "Check your most recent Squirrly Audit to see which of your pages have "
5535
  "duplicate content."
@@ -5538,21 +5534,18 @@ msgstr ""
5538
  "dvs. au conținut duplicat."
5539
 
5540
  #: models/CheckSeo.php:764
5541
- #, fuzzy
5542
  msgid ""
5543
  "Fix Duplicate Content. You're at risk of suffering rankings and traffic "
5544
  "losses due to duplicate content on your site."
5545
  msgstr ""
5546
- "Remediați conținutul duplicat. Aveți riscul de a suferi clasamente și "
5547
- "pierderi de trafic datorate conținutului duplicat pe site-ul dvs."
5548
 
5549
  #: models/CheckSeo.php:775
5550
- #, fuzzy
5551
  msgid "Improve SEO Speed"
5552
  msgstr "Îmbunătățirea vitezei SEO"
5553
 
5554
  #: models/CheckSeo.php:776
5555
- #, fuzzy
5556
  msgid ""
5557
  "Pages that rank at the top of Google’s first page tend to load significantly "
5558
  "faster compared to pages that rank on the bottom of page 1. If you want to "
@@ -5560,36 +5553,32 @@ msgid ""
5560
  "co/seo/kit/[/link] you can find an Upgraded Version of ShortPixel, which "
5561
  "they offer for free to Squirrly users."
5562
  msgstr ""
5563
- "Pagini care se situează în partea de sus a primei pagini Google tind să se "
5564
- "încarce semnificativ mai rapid în comparație cu paginile care se clasează în "
5565
- "partea de jos a paginii 1. Dacă doriți să se claseze pe Google, paginile "
5566
- "dvs. trebuie să încarce rapid. Pe [link] https://squirrly.co/seo/kit/ [/ "
5567
- "link] puteți găsi o versiune actualizată a ShortPixel, pe care o oferă "
5568
- "gratuit utilizatorilor Squirrly."
5569
 
5570
  #: models/CheckSeo.php:777
5571
- #, fuzzy
5572
  msgid ""
5573
  "Using a tool like ShortPixel to reduce your image sizes will help improve "
5574
  "SEO speed."
5575
  msgstr ""
5576
- "Utilizarea unui instrument precum ShortPixel pentru a reduce dimensiunile "
5577
- "imaginii va ajuta la îmbunătățirea vitezei SEO."
5578
 
5579
  #: models/CheckSeo.php:778
5580
- #, fuzzy
5581
  msgid "Make sure your Focus Pages load fast to improve your rankings."
5582
  msgstr ""
5583
- "Asigurați-vă că paginile dvs. Focus se încarcă rapid pentru a vă îmbunătăți "
5584
  "clasamentul."
5585
 
5586
  #: models/CheckSeo.php:788
5587
- #, fuzzy
5588
  msgid "Reduce Bounce Rate for your Focus Pages"
5589
  msgstr "Reduceți rata de respingere pentru paginile dvs. de focalizare"
5590
 
5591
  #: models/CheckSeo.php:789
5592
- #, fuzzy
5593
  msgid ""
5594
  "A high bounce rate generally indicates that your pages aren't relevant to "
5595
  "your visitors. And since Google is all about serving its users results that "
@@ -5600,19 +5589,18 @@ msgid ""
5600
  "your strategy. Either you’re not attracting the right site visitor or the "
5601
  "visitors coming don’t have a good user experience."
5602
  msgstr ""
5603
- "În general, o rată de respingere ridicată indică faptul că paginile dvs. nu "
5604
- "sunt relevante pentru vizitatorii dvs. Și având în vedere Google se "
5605
- "referă la furnizarea de rezultate ale utilizatorilor săi, care sunt cele mai "
5606
- "relevante pentru ei, Google nu dorește să afișeze pagini care au o rată de "
5607
- "respingere ridicată. O rată mare de respingere este obișnuită pentru "
5608
- "paginile de destinație, dar dacă aveți o pagină care are conținut de formă "
5609
- "lungă care are drept scop educarea sau informarea vizitatorilor, atunci o "
5610
- "rată ridicată de respingere este un simptom că ceva nu este în regulă în "
5611
- "strategia dvs. Fie nu atrageți vizitatorul corect al site-ului, fie "
5612
- "vizitatorii care vin nu au o experiență bună pentru utilizatori."
5613
 
5614
  #: models/CheckSeo.php:790
5615
- #, fuzzy
5616
  msgid ""
5617
  "Try reducing your bounce rate by: formatting your content better to improve "
5618
  "readability, including a video, removing pop-ups that disrupt visitors' "
@@ -5620,27 +5608,25 @@ msgid ""
5620
  "strategies (and a quick-fix plugin) here: [link]https://squirrly.co/seo/kit/"
5621
  "[/link]"
5622
  msgstr ""
5623
- "Încercați să reduceți rata de respingere prin: formatați mai bine conținutul "
5624
- "pentru a îmbunătăți lizibilitatea, inclusiv un videoclip, eliminând "
5625
- "ferestrele de tip pop-up care perturbă experiența vizitatorilor de pe site-"
5626
- "ul dvs. și asigurați-vă pagina dvs. se încarcă rapid. Mai multe strategii "
5627
- "(și un plugin de rezolvare rapidă) aici: [link] https://squirrly.co/seo/kit/ "
5628
- "[/ link]"
5629
 
5630
  #: models/CheckSeo.php:791
5631
- #, fuzzy
5632
  msgid "Reduce bounce rate for your Focus Pages to improve search performance."
5633
  msgstr ""
5634
- "Reduceți rata de respingere pentru paginile dvs. Focus pentru a îmbunătăți "
5635
- "performanța căutării."
5636
 
5637
  #: models/CheckSeo.php:801
5638
- #, fuzzy
5639
  msgid "Time on Page for All Focus Pages: 1 minute average"
5640
- msgstr "Timp în pagină pentru toate paginile focalizate: 1 minut mediu"
 
5641
 
5642
  #: models/CheckSeo.php:802
5643
- #, fuzzy
5644
  msgid ""
5645
  "If your pages consistently keep people on them for longer than average, the "
5646
  "Google algorithm will adjust the search results to favor your site, because "
@@ -5651,18 +5637,17 @@ msgid ""
5651
  "takes you down from the first Page of Google if it 'sees' people don't spend "
5652
  "enough time on the page."
5653
  msgstr ""
5654
- "Dacă paginile dvs. păstrează în mod constant persoanele pe ele mai mult "
5655
- "decât media, algoritmul Google va ajusta rezultatele căutării pentru a "
5656
- "favoriza site-ul dvs., deoarece această interacțiune spune Google că "
5657
- "conținutul din pagina dvs. este interesant și relevant. Cu cât oamenii rămân "
5658
- "mai mult pe paginile dvs. de focalizare, cu atât vor apărea în clasamentul "
5659
- "motorului de căutare. În momentul de față, timpul mediu pe paginile pentru "
5660
- "paginile dvs. de focalizare este sub 1 minut, ceea ce nu este bun. Uneori, "
5661
- "Google te scoate din prima pagină a Google dacă vede că oamenii nu petrec "
5662
- "suficient timp pe pagină."
5663
 
5664
  #: models/CheckSeo.php:803
5665
- #, fuzzy
5666
  msgid ""
5667
  "Try these tactics to keep visitors on your page for longer: Embed a video or "
5668
  "two, add more visuals to make your page more attractive, format your content "
@@ -5670,29 +5655,26 @@ msgid ""
5670
  "what visitors expect to get from it, experiment with interactive content "
5671
  "such as polls or quizzes."
5672
  msgstr ""
5673
- "Încercați aceste tactici pentru a menține vizitatorii pe pagina dvs. mai "
5674
- "mult timp: încorporați un videoclip sau două, adăugați mai multe imagini "
5675
- "pentru a face pagina mai atractivă, formatați conținutul mai bine pentru a "
5676
- "face pagina dvs. ușor de scanat, asigurați-vă că pagina dvs. este focalizată "
5677
- "laser pe ceea ce vizitatori. așteptați-văobțineți de la ea, "
5678
- "experimentați cu conținut interactiv, cum ar fi sondaje sau teste."
5679
 
5680
  #: models/CheckSeo.php:804
5681
- #, fuzzy
5682
  msgid "Keep visitors on your Focus Pages for longer to boost rankings"
5683
  msgstr ""
5684
- "Mențineți vizitatorii pe paginile dvs. Focus pentru mai mult timp pentru a "
5685
- "stimula clasamentul"
5686
 
5687
  #: models/CheckSeo.php:814
5688
- #, fuzzy
5689
  msgid "Reach 20 Social Media Shares for Each of Your Focus Pages"
5690
  msgstr ""
5691
- "Atingeți 20 de acțiuni de socializare pentru fiecare dintre paginile dvs. de "
5692
- "focus"
5693
 
5694
  #: models/CheckSeo.php:815
5695
- #, fuzzy
5696
  msgid ""
5697
  "Studies have shown there is a high correlation between social signals and "
5698
  "ranking position. In one case study, a company achieved over 130,000 "
@@ -5704,17 +5686,17 @@ msgid ""
5704
  "you can for your Focus Pages from trackable sources."
5705
  msgstr ""
5706
  "Studiile au arătat că există o corelație ridicată între semnalele sociale și "
5707
- "poziția de clasare. Într-un studiu de caz, o companie a obținut peste "
5708
- "130.000 de acțiuni Facebook pe o pagină web și a clasat clasamentele pentru "
5709
- "expresiile cheie care erau competitive. Propriul nostru SML (Squirrly "
5710
- "Machine Learning) a descoperit creșteri ale clasamentului pe zeci de mii de "
5711
- "pagini după ce au început să se partajeze pe platformele de socializare. Cei "
5712
- "mai mari experți SEO sunt de acord media socială ajută eforturile SEO. "
5713
- "Străduiți-vă să obțineți cât mai multe partaje de social media pentru "
5714
- "paginile dvs. de focalizare din surse urmabile."
 
5715
 
5716
  #: models/CheckSeo.php:816
5717
- #, fuzzy
5718
  msgid ""
5719
  "Try these tactics to reach at least 20 social media shares for each one of "
5720
  "your Focus Pages: Share your content multiple times using different captions "
@@ -5724,33 +5706,31 @@ msgid ""
5724
  "better-ranking-day-6/[/link]. For a complete framework, get access to our "
5725
  "10,000 Visits from Social Media course on Education Cloud."
5726
  msgstr ""
5727
- "Încercați aceste tactici pentru a ajunge la cel puțin 20 de share-uri de "
5728
- "social media pentru fiecare dintre paginile dvs. Focus: Partajați-vă "
5729
- "conținutul de mai multe ori folosind imagini și imagini diferite, faceți "
5730
- "butoanele de partajare social media super ușor de găsit, include apeluri la "
5731
- "acțiune care încurajează vizitatorii site-ului. a împărtăși. Metode mai "
5732
- "dovedite pe care le puteți utiliza aici: [link] https://howto.squirrly.co/"
5733
- "wordpress-seo/journey-to-better-ranking-day-6/ [/ link]. Pentru un cadru "
5734
- "complet, accesați cursul nostru de 10.000 de vizite de la Social Media pe "
5735
- "Cloud Cloud."
5736
 
5737
  #: models/CheckSeo.php:817
5738
- #, fuzzy
5739
  msgid ""
5740
  "Get at least 20 social media shares for each one of your Focus Pages. It's "
5741
  "hard to rank a page that doesn't get shared to social media sites."
5742
  msgstr ""
5743
- "Obțineți cel puțin 20 de share-uri de social media pentru fiecare dintre "
5744
- "paginile dvs. de focalizare. Este greu să clasificăm o pagină care nu este "
5745
- "distribuită pe site-urile de socializare."
5746
 
5747
  #: models/CheckSeo.php:827
5748
- #, fuzzy
5749
  msgid "Raise Authority Level Over 12 for all Focus Pages"
5750
- msgstr "Creșteți nivelul autorității peste 12 pentru toate paginile focalizate"
 
5751
 
5752
  #: models/CheckSeo.php:828 models/CheckSeo.php:919
5753
- #, fuzzy
5754
  msgid ""
5755
  "Page authority is a metric that Squirrly's servers calculates according to "
5756
  "data from different API, our own crawling and also SML (Squirrly Machine "
@@ -5761,34 +5741,32 @@ msgid ""
5761
  "outbound links set to 'nofollow', backlinks (links from 3rd party sites to "
5762
  "your own site) and social media information."
5763
  msgstr ""
5764
- "Autoritatea paginii este o metrică pe care serverele lui Squirrly le "
5765
- "calculează în funcție de date de la diferite API, propriul nostru crawling "
5766
- "și, de asemenea, SML (Squirrly Machine Learning optimizează datele, în "
5767
- "funcție de seturile de date pe care le-am studiat). De asemenea, Google are "
5768
- "un astfel de sistem, iar noi practic replicăm ceea ce fac. Pentru a "
5769
- "îmbunătăți acest lucru aveți nevoie: trafic către pagină, valori bune ale "
5770
- "traficului (timp pe pagină, ritm redus de respingere), link-uri interioare, "
5771
- "link-uri de ieșire setate pe nofollow”, backlinks (link-uri de pe site-uri "
5772
- "terțe către propriul site) și social media informație."
5773
 
5774
  #: models/CheckSeo.php:830
5775
- #, fuzzy
5776
  msgid ""
5777
  "Raise your Page Authority to over 12 for all Focus Pages. Otherwise, it will "
5778
  "be nearly impossible for those pages to reach top positions on Google."
5779
  msgstr ""
5780
- "Creșteți autoritatea paginii la peste 12 pentru toate paginile focalizate. "
5781
- "În caz contrar, aceste pagini vor fi aproape imposibile să ajungă pe "
5782
- "pozițiile de top pe Google."
5783
 
5784
  #: models/CheckSeo.php:840
5785
- #, fuzzy
5786
  msgid "Try a different Title and Description for the Focus Pages with low CTR"
5787
  msgstr ""
5788
- "Încercați un alt titlu și descriere pentru paginile Focus cu CTR scăzut"
 
5789
 
5790
  #: models/CheckSeo.php:841
5791
- #, fuzzy
5792
  msgid ""
5793
  "Google keeps track of which links get clicked the most in their search "
5794
  "results. Links that get clicked more often are moved up higher in the search "
@@ -5797,46 +5775,41 @@ msgid ""
5797
  "your listing, but writing a more enticing title and description can help "
5798
  "change that; and get more people clicking."
5799
  msgstr ""
5800
- "Google urmărește legăturile la care au fost făcute clic cel mai mult în "
5801
- "rezultatele căutării lor. Linkurile care fac clic mai des sunt avansate mai "
5802
  "sus în rezultatele căutării, deoarece acest lucru arată Google că un anumit "
5803
- "link este rezultatul care se potrivește cel mai bine cu intenția de căutare "
5804
- "a utilizatorului. În momentul de față, NU suficient de mulți oameni fac clic "
5805
- "pe lista dvs., dar scrierea unui titlu și descriere mai ispititoare poate "
5806
- "ajuta la schimbarea acestui lucru; și faceți mai multe persoane care fac "
5807
- "clic."
5808
 
5809
  #: models/CheckSeo.php:842
5810
- #, fuzzy
5811
  msgid ""
5812
  "Tips to improve your CTR: include your keyword in your description, use How-"
5813
  "To and numbers in your titles as many people are drawn to them, make sure "
5814
  "the description clearly states what your page is about, and add a CTA that "
5815
  "gives people an extra incentive to click on your link."
5816
  msgstr ""
5817
- "Sfaturi pentru îmbunătățirea valorii dvs. CTR: includeți cuvântul dvs. cheie "
5818
- "în descrierea dvs., utilizați modul de instrucțiune și numerele din "
5819
- "titlurile dvs., cât mai multe persoane sunt atrase de acestea, asigurați-vă "
5820
- " descrierea precizează clar despre ce este pagina dvs. și adăugați un CTA "
5821
- "care le oferă oamenilor un un stimulent suplimentar pentru a face clic pe "
5822
- "linkul dvs."
5823
 
5824
  #: models/CheckSeo.php:843
5825
- #, fuzzy
5826
  msgid ""
5827
  "Change the title and description to get more SERP clicks for your Focus "
5828
  "Pages (the ones where you see low CTR)"
5829
  msgstr ""
5830
- "Modificați titlul și descrierea pentru a obține mai multe clicuri SERP "
5831
- "pentru paginile dvs. Focus (cele în care vedeți un CTR scăzut)"
5832
 
5833
  #: models/CheckSeo.php:853
5834
- #, fuzzy
5835
  msgid "Audit Score is Over 50%"
5836
- msgstr "Squirrly article rank"
5837
 
5838
  #: models/CheckSeo.php:854
5839
- #, fuzzy
5840
  msgid ""
5841
  "The Squirrly Audit covers the main aspects that influence a site's "
5842
  "performance. Plus, your SEO and digital marketing expertise will increase as "
@@ -5844,60 +5817,56 @@ msgid ""
5844
  "score over 50 to have good chances of ranking high on Google."
5845
  msgstr ""
5846
  "Auditul Squirrly acoperă principalele aspecte care influențează performanța "
5847
- "unui site. În plus, expertiza dvs. SEO și marketing digital va crește pe "
5848
- "măsură ce continuați să lucrați la rezolvarea problemelor dezvăluite de "
5849
- "Audit săptămânal. Aveți nevoie de un scor peste 50 pentru a avea șanse mari "
5850
- " obțineți un nivel ridicat pe Google."
5851
 
5852
  #: models/CheckSeo.php:855
5853
- #, fuzzy, php-format
5854
  msgid ""
5855
  "Open up your Audit from %sSquirrly > Audits%s. Open one of the audits, or "
5856
  "use the Compare Audit button to compare multiple audits and see how far "
5857
  "you've come along. Read about the aspects you can work on to improve your "
5858
  "score (find them on the right sidebar)."
5859
  msgstr ""
5860
- "Deschideți-vă auditul de la %sSquirrly> Audit %s. Deschideți unul dintre "
5861
  "audituri sau utilizați butonul Comparați auditul pentru a compara mai multe "
5862
- "audituri și pentru a vedea cât de departe ați ajuns. Citiți despre aspectele "
5863
- "la care puteți lucra pentru a vă îmbunătăți scorul (găsiți-le în bara "
5864
- "laterală dreaptă)."
5865
 
5866
  #: models/CheckSeo.php:856 models/CheckSeo.php:934
5867
- #, fuzzy
5868
  msgid ""
5869
  "Improve the score of your Audit to have a good chance of ranking high on "
5870
  "Google."
5871
  msgstr ""
5872
- "Îmbunătățiți scorul Auditului dvs. pentru a avea șanse mari obțineți un "
5873
- "nivel ridicat pe Google."
5874
 
5875
  #: models/CheckSeo.php:866
5876
- #, fuzzy
5877
  msgid "Reach 5 Inner Links for all your Focus Pages"
5878
- msgstr ""
5879
- "Atingeți 5 legături interioare pentru toate paginile dvs. de focalizare"
5880
 
5881
  #: models/CheckSeo.php:868
5882
- #, fuzzy
5883
  msgid ""
5884
  "Get at least five inner links to your Focus Pages from other pages in your "
5885
  "site. If you don't have enough pages where you can link from, spend some "
5886
  "time creating new content. Then, re-index with Google Search Console (each "
5887
  "page from which you sent the links)"
5888
  msgstr ""
5889
- "Obțineți cel puțin cinci link-uri interioare către paginile dvs. Focus din "
5890
- "alte pagini ale site-ului dvs. Dacă nu aveți destule pagini de unde "
5891
- "puteți conecta, petreceți ceva timp creând conținut nou. Apoi, reindexați cu "
5892
- "Google Search Console (fiecare pagină de la care ați trimis linkurile)"
 
5893
 
5894
  #: models/CheckSeo.php:879
5895
- #, fuzzy
5896
  msgid "Time on Page for All Focus Pages: 1.5 minute average"
5897
- msgstr "Timp în pagină pentru toate paginile focalizate: media de 1,5 minute"
 
5898
 
5899
  #: models/CheckSeo.php:880
5900
- #, fuzzy
5901
  msgid ""
5902
  "If your pages consistently keep people on them for longer than average, the "
5903
  "Google algorithm will adjust the search results to favor your site, because "
@@ -5914,51 +5883,47 @@ msgid ""
5914
  "you'll find a plugin that doesn't allow google to time out. And it will "
5915
  "improve the accuracy of the Time on Page readings."
5916
  msgstr ""
5917
- "Dacă paginile dvs. păstrează în mod constant persoanele pe ele mai mult "
5918
- "decât media, algoritmul Google va ajusta rezultatele căutării pentru a "
5919
- "favoriza site-ul dvs., deoarece această interacțiune spune Google că "
5920
- "conținutul din pagina dvs. este interesant și relevant. Cu cât oamenii rămân "
5921
- "mai mult pe paginile dvs. de focalizare, cu atât vor apărea în clasamentul "
5922
- "motorului de căutare. Momentan, timpul mediu din pagină pentru paginile dvs. "
5923
- "de focalizare este sub 1,5 minute, ceea ce nu este ideal. Un lucru pe care "
5924
- "îl puteți face este să verificați dacă toate sursele de trafic vă trimit "
5925
- "oameni care petrec foarte puțin timp pe paginile dvs. În acest caz, "
5926
- "asigurați-vă că aceste surse nu mai trimit trafic. Da, există un astfel de "
5927
- "„trafic prost” și vă poate răni pozițiile în Google. De asemenea, trebuie să "
5928
- "utilizați [link] https://squirrly.co/seo/kit/ [/ link] și asigurați-vă că "
5929
- "Google citește ora corectă pe pagina. De cele mai multe ori, nu, pentru "
5930
- "trackerul său primește un timeout”. În kit, veți găsi un plugin care nu "
5931
- "permită google-ului să-și reziste. Și va îmbunătăți acuratețea timpului la "
5932
- "citirile de pagină."
5933
 
5934
  #: models/CheckSeo.php:881
5935
- #, fuzzy
5936
  msgid ""
5937
  "Try these tactics to keep visitors on your page for longer: Embed a video or "
5938
  "two, add more visuals to make your page more attractive, format your content "
5939
  "better to make your page easy to scan, ensure your page is laser-focused on "
5940
  "what visitors expect to get from it."
5941
  msgstr ""
5942
- "Încercați aceste tactici pentru a menține vizitatorii pe pagina dvs. mai "
5943
- "mult timp: încorporați un videoclip sau două, adăugați mai multe imagini "
5944
- "pentru a face pagina mai atractivă, formatați conținutul mai bine pentru a "
5945
- "face pagina dvs. ușor de scanat, asigurați-vă că pagina dvs. este focalizată "
5946
- "laser pe ceea ce vizitatori. așteptați-văobțineți din ea"
5947
 
5948
  #: models/CheckSeo.php:882
5949
- #, fuzzy
5950
  msgid "Keep visitors on your Focus Pages for longer to boost rankings."
5951
  msgstr ""
5952
- "Mențineți vizitatorii pe paginile dvs. Focus pentru mai mult timp pentru a "
5953
- "stimula clasamentul."
5954
 
5955
  #: models/CheckSeo.php:892
5956
- #, fuzzy
5957
  msgid "Get At Least 10 referring domains"
5958
  msgstr "Obțineți cel puțin 10 domenii de referință"
5959
 
5960
  #: models/CheckSeo.php:893 models/CheckSeo.php:984
5961
- #, fuzzy
5962
  msgid ""
5963
  "If you want more organic traffic, backlinks and referring domains are "
5964
  "critical. Research has shown that the vast majority of pages (of analyzed ~ "
@@ -5966,41 +5931,38 @@ msgid ""
5966
  "There is also a positive correlation between the number of unique referring "
5967
  "domains and the amount of search traffic the target web page receives."
5968
  msgstr ""
5969
- "Dacă doriți mai mult trafic organic, backlinks-urile și domeniile de "
5970
  "referință sunt esențiale. Cercetările au arătat că marea majoritate a "
5971
- "paginilor (din 1 ~ miliard de pagini analizate) fără domenii de referință nu "
5972
- "obțin trafic de la Google. Există, de asemenea, o corelație pozitivă între "
5973
- "numărul de domenii de referință unice și volumul de trafic de căutare pe "
5974
- "care îl primește pagina web vizată."
5975
 
5976
  #: models/CheckSeo.php:894
5977
- #, fuzzy
5978
  msgid ""
5979
  "Find more websites that can send links to your own site. You need to get "
5980
  "links to our site from at least 10 other domains from the web. You can run "
5981
  "Squirrly SPY reports on your competitors to find websites which link to your "
5982
  "kind of website."
5983
  msgstr ""
5984
- "Găsiți mai multe site-uri web care pot trimite link-uri către propriul dvs. "
5985
- "site. Trebuie să obțineți link-uri către site-ul nostru din cel puțin 10 "
5986
- "domenii de pe web. Puteți rula rapoarte Squirrly SPY pe concurenții dvs. "
5987
- "pentru a găsi site-uri web care se conectează la felul dvs. de site."
 
5988
 
5989
  #: models/CheckSeo.php:895
5990
- #, fuzzy
5991
  msgid "Get at least 10 referring domains to get more traffic."
5992
  msgstr ""
5993
  "Obțineți cel puțin 10 domenii de referință pentru a obține mai mult trafic."
5994
 
5995
  #: models/CheckSeo.php:905
5996
- #, fuzzy
5997
  msgid "Reach 40 Social Media Shares for Each of Your Focus Pages"
5998
  msgstr ""
5999
- "Atingeți 40 de acțiuni de socializare pentru fiecare dintre paginile dvs. "
6000
- "focalizate"
6001
 
6002
  #: models/CheckSeo.php:906
6003
- #, fuzzy
6004
  msgid ""
6005
  "Try these tactics to reach at least 40 social media shares for each one of "
6006
  "your Focus Pages: Share your content multiple times using different captions "
@@ -6010,17 +5972,17 @@ msgid ""
6010
  "ranking-day-6/. For a complete framework, get access to our 10,000 Visits "
6011
  "from Social Media course on Education Cloud."
6012
  msgstr ""
6013
- "Încercați aceste tactici pentru a ajunge la cel puțin 40 de share-uri de "
6014
- "social media pentru fiecare din paginile dvs. Focus: Partajați conținutul "
6015
- "dvs. de mai multe ori folosind subtitrări și imagini diferite, faceți "
6016
- "butoanele de partajare social media super ușor de găsit, include apeluri la "
6017
- "acțiune care încurajează vizitatorii site-ului. a împărtăși. Metode mai "
6018
- "dovedite pe care le puteți utiliza aici: https://howto.squirrly.co/wordpress-"
6019
- "seo/journey-to-better-ranking-day-6/. Pentru un cadru complet, accesați "
6020
- "cursul nostru de 10.000 de vizite de la Social Media pe Cloud Cloud."
 
6021
 
6022
  #: models/CheckSeo.php:907
6023
- #, fuzzy
6024
  msgid ""
6025
  "Studies have shown there is a high correlation between social signals and "
6026
  "ranking position. In one case study, a company achieved over 130,000 "
@@ -6032,47 +5994,44 @@ msgid ""
6032
  "media shares as you can for your Focus Pages from trackable sources."
6033
  msgstr ""
6034
  "Studiile au arătat că există o corelație ridicată între semnalele sociale și "
6035
- "poziția de clasare. Într-un studiu de caz, o companie a obținut peste "
6036
- "130.000 de acțiuni Facebook pe o pagină web și a clasat clasamentele pentru "
6037
- "expresii cheie care erau foarte competitive. Propriul nostru SML (Squirrly "
6038
- "Machine Learning) a descoperit creșteri ale clasamentului pe zeci de mii de "
6039
- "pagini după ce au început să se partajeze pe platformele de socializare. Cei "
6040
- "mai mari experți SEO sunt de acord media socială ajută eforturile SEO. "
6041
- "Străduiți-vă să obțineți cât mai multe partaje de social media pentru "
6042
- "paginile dvs. de focalizare din surse urmabile."
 
6043
 
6044
  #: models/CheckSeo.php:908
6045
- #, fuzzy
6046
  msgid ""
6047
  "Get at least 40 social media shares for each one of your Focus Pages. It's "
6048
  "hard to rank a page that doesn't get shared to social media sites."
6049
  msgstr ""
6050
- "Obțineți cel puțin 40 de share-uri de social media pentru fiecare dintre "
6051
- "paginile dvs. de focalizare. Este greu să clasificăm o pagină care nu este "
6052
- "distribuită pe site-urile de socializare."
6053
 
6054
  #: models/CheckSeo.php:918
6055
- #, fuzzy
6056
  msgid "Raise Authority Level to Over 20 for all Focus Pages"
6057
- msgstr "Creșteți nivelul autorității la peste 20 de pagini focus"
 
6058
 
6059
  #: models/CheckSeo.php:921
6060
- #, fuzzy
6061
  msgid ""
6062
  "Raise your Page Authority to over 20 for all Focus Pages. Otherwise, it will "
6063
  "be nearly impossible for those pages to reach top positions on Google."
6064
  msgstr ""
6065
- "Creșteți autoritatea paginii la peste 20 pentru toate paginile focalizate. "
6066
- "În caz contrar, aceste pagini vor fi aproape imposibile să ajungă pe "
6067
- "pozițiile de top pe Google."
6068
 
6069
  #: models/CheckSeo.php:931
6070
- #, fuzzy
6071
  msgid "Audit Score is Over 70%"
6072
- msgstr "Squirrly article rank"
6073
 
6074
  #: models/CheckSeo.php:932
6075
- #, fuzzy
6076
  msgid ""
6077
  "The Squirrly Audit covers the main aspects that influence a site's "
6078
  "performance. Plus, your SEO and digital marketing expertise will increase as "
@@ -6080,38 +6039,35 @@ msgid ""
6080
  "score over 70 to have good chances of ranking high on Google."
6081
  msgstr ""
6082
  "Auditul Squirrly acoperă principalele aspecte care influențează performanța "
6083
- "unui site. În plus, expertiza dvs. SEO și marketing digital va crește pe "
6084
- "măsură ce continuați să lucrați la rezolvarea problemelor dezvăluite de "
6085
- "Audit săptămânal. Aveți nevoie de un scor peste 70 pentru a avea șanse mari "
6086
- " obțineți un nivel mare pe Google."
6087
 
6088
  #: models/CheckSeo.php:933
6089
- #, fuzzy, php-format
6090
  msgid ""
6091
  "Open up your Audit from %sSquirrly > SEO Audit%s. Open one of the audits, or "
6092
  "use the Compare Audit button to compare multiple audits and see how far "
6093
  "you've come along. Read about the aspects you can work on to improve your "
6094
  "score (find them on the right sidebar)."
6095
  msgstr ""
6096
- "Deschideți-vă auditul de la %sSquirrly> SEO Audit %s. Deschideți unul dintre "
6097
  "audituri sau utilizați butonul Comparați auditul pentru a compara mai multe "
6098
- "audituri și pentru a vedea cât de departe ați ajuns. Citiți despre aspectele "
6099
- "la care puteți lucra pentru a vă îmbunătăți scorul (găsiți-le în bara "
6100
- "laterală dreaptă)."
6101
 
6102
  #: models/CheckSeo.php:944
6103
- #, fuzzy
6104
  msgid "Get Minimum 30 Visitors / Day to Your Focus Pages"
6105
- msgstr "Obțineți minim 30 de vizitatori / zi la paginile dvs. de focalizare"
6106
 
6107
  #: models/CheckSeo.php:957
6108
- #, fuzzy
6109
  msgid "Reach Time on Page for All Focus Pages: 2 minute average"
6110
  msgstr ""
6111
- "Atingeți timp pe pagină pentru toate paginile focalizate: media de 2 minute"
6112
 
6113
  #: models/CheckSeo.php:958
6114
- #, fuzzy
6115
  msgid ""
6116
  "If your pages consistently keep people on them for longer than average, the "
6117
  "Google algorithm will adjust the search results to favor your site, because "
@@ -6121,18 +6077,17 @@ msgid ""
6121
  "for your Focus Pages is under 2 minutes. You can make changes to improve "
6122
  "that. Average time on page is one of the most important signals for Google."
6123
  msgstr ""
6124
- "Dacă paginile dvs. păstrează în mod constant persoanele pe ele mai mult "
6125
- "decât media, algoritmul Google va ajusta rezultatele căutării pentru a "
6126
- "favoriza site-ul dvs., deoarece această interacțiune spune Google că "
6127
- "conținutul din pagina dvs. este interesant și relevant. Cu cât oamenii rămân "
6128
- "mai mult pe paginile dvs. de focalizare, cu atât vor apărea în clasamentul "
6129
- "motorului de căutare. Momentan, timpul mediu de pe paginile pentru paginile "
6130
- "dvs. de focalizare este sub 2 minute. Puteți face modificări pentru a "
6131
- "îmbunătăți asta. Timpul mediu pe pagină este unul dintre cele mai importante "
6132
- "semnale pentru Google."
6133
 
6134
  #: models/CheckSeo.php:959
6135
- #, fuzzy
6136
  msgid ""
6137
  "Experiment with interactive content such as polls or quizzes to keep "
6138
  "visitors on your site for longer, or make your content longer, if the topic "
@@ -6140,29 +6095,26 @@ msgid ""
6140
  "traffic sources can contribute to low time on page. "
6141
  msgstr ""
6142
  "Experimentați cu conținut interactiv, cum ar fi sondaje sau chestionare, "
6143
- "pentru a menține vizitatorii pe site-ul dvs. mai mult timp sau pentru a "
6144
- "prelungi conținutul, dacă subiectul este corect. Merită verificați care "
6145
- "sunt sursele dvs. de trafic, deoarece unele surse de trafic pot contribui la "
6146
- "timp redus pe pagină."
6147
 
6148
  #: models/CheckSeo.php:960
6149
- #, fuzzy
6150
  msgid ""
6151
  "Keep visitors on your Focus Pages for at least 2 minutes (on average) to "
6152
  "boost rankings. Keeping people over 2 minutes sends clear signals to Google "
6153
  "that people love your pages."
6154
  msgstr ""
6155
- "Mențineți vizitatorii pe paginile dvs. Focus timp de cel puțin 2 minute (în "
6156
- "medie) pentru a stimula clasamentul. Păstrarea persoanelor peste 2 minute "
6157
  "trimite semnale clare către Google că oamenii iubesc paginile dvs."
6158
 
6159
  #: models/CheckSeo.php:970
6160
- #, fuzzy
6161
  msgid "Get at least 20 referring domains"
6162
  msgstr "Obțineți cel puțin 20 de domenii de referință"
6163
 
6164
  #: models/CheckSeo.php:971
6165
- #, fuzzy
6166
  msgid ""
6167
  "If you want more organic traffic, backlinks and referring domains are "
6168
  "critical. Research has shown that the vast majority of pages (of analyzed ~ "
@@ -6170,70 +6122,64 @@ msgid ""
6170
  "There is also a positive correlation between the number of unique referring "
6171
  "domains and the amount of search traffic the target web page receives. "
6172
  msgstr ""
6173
- "Dacă doriți mai mult trafic organic, backlinks-urile și domeniile de "
6174
  "referință sunt esențiale. Cercetările au arătat că marea majoritate a "
6175
- "paginilor (din 1 ~ miliard de pagini analizate) fără domenii de referință nu "
6176
- "obțin trafic de la Google. Există, de asemenea, o corelație pozitivă între "
6177
- "numărul de domenii de referință unice și volumul de trafic de căutare pe "
6178
- "care îl primește pagina web vizată."
6179
 
6180
  #: models/CheckSeo.php:972
6181
- #, fuzzy
6182
  msgid ""
6183
  "Find more websites that can send links to your own site. You need to get "
6184
  "links to our site from at least 20 other domains from the web. You can run "
6185
  "Squirrly SPY reports on your competitors to find websites which link to your "
6186
  "kind of website."
6187
  msgstr ""
6188
- "Găsiți mai multe site-uri web care pot trimite link-uri către propriul dvs. "
6189
- "site. Trebuie să obțineți linkuri către site-ul nostru din cel puțin 20 de "
6190
- "domenii de pe web. Puteți rula rapoarte Squirrly SPY pe concurenții dvs. "
6191
- "pentru a găsi site-uri web care se conectează la felul dvs. de site."
 
6192
 
6193
  #: models/CheckSeo.php:973
6194
- #, fuzzy
6195
  msgid "Get at least 20 referring domains to get more traffic."
6196
  msgstr ""
6197
  "Obțineți cel puțin 20 de domenii de referință pentru a obține mai mult "
6198
  "trafic."
6199
 
6200
  #: models/CheckSeo.php:983
6201
- #, fuzzy
6202
  msgid "Get at least 30 referring domains"
6203
  msgstr "Obțineți cel puțin 30 de domenii de referință"
6204
 
6205
  #: models/CheckSeo.php:985
6206
- #, fuzzy
6207
  msgid ""
6208
  "Find more websites that can send links to your own site. You need to get "
6209
  "links to our site from at least 30 other domains from the web. You can run "
6210
  "Squirrly SPY reports on your competitors to find websites which link to your "
6211
  "kind of website."
6212
  msgstr ""
6213
- "Găsiți mai multe site-uri web care pot trimite link-uri către propriul dvs. "
6214
- "site. Trebuie să obțineți link-uri către site-ul nostru din cel puțin 30 de "
6215
- "alte domenii de pe web. Puteți rula rapoarte Squirrly SPY pe concurenții "
6216
- "dvs. pentru a găsi site-uri web care se conectează la felul dvs. de site."
 
6217
 
6218
  #: models/CheckSeo.php:986
6219
- #, fuzzy
6220
  msgid "Get at least 30 reffering domains to get more traffic"
6221
  msgstr ""
6222
  "Obțineți cel puțin 30 de domenii de referință pentru a obține mai mult trafic"
6223
 
6224
  #: models/CheckSeo.php:996
6225
- #, fuzzy
6226
  msgid "Get Minimum 70 Visitors / Day to Your Focus Pages"
6227
- msgstr "Obțineți minim 70 de vizitatori / zi la paginile dvs. de focalizare"
6228
 
6229
  #: models/CheckSeo.php:1009
6230
- #, fuzzy
6231
  msgid "Raise Authority Level to Over 35 for all Focus Pages"
6232
  msgstr ""
6233
- "Creșteți nivelul autorității la peste 35 pentru toate paginile focalizate"
6234
 
6235
  #: models/CheckSeo.php:1010
6236
- #, fuzzy
6237
  msgid ""
6238
  "Page authority is a metric that Squirrly's servers calculate according to "
6239
  "data from different API, our own crawling and also SML (Squirrly Machine "
@@ -6244,33 +6190,30 @@ msgid ""
6244
  "outbound links set to \"nofollow\", backlinks (links from 3rd party sites to "
6245
  "your own site) and social media information."
6246
  msgstr ""
6247
- "Autoritatea paginii este o metrică pe care serverele Squirrly o calculează "
6248
- "în funcție de date de la diferite API, propriul nostru crawling și, de "
6249
- "asemenea, SML (Squirrly Machine Learning ajustează bine datele, în funcție "
6250
- "de seturile de date pe care le-am studiat). De asemenea, Google are un "
6251
- "astfel de sistem, iar noi practic replicăm ceea ce fac. Pentru a îmbunătăți "
6252
- "acest lucru, aveți nevoie de: trafic către pagină, valori bune ale "
6253
- "traficului (timp pe pagină, rata de respingere scăzută), link-uri "
6254
- "interioare, link-uri de ieșire setate pe „nofollow”, backlinks (link-uri de "
6255
- "pe site-uri terțe către propriul site) și sociale informații media"
6256
 
6257
  #: models/CheckSeo.php:1012
6258
- #, fuzzy
6259
  msgid ""
6260
  "Raise your Page Authority to over 35 for all Focus Pages. Do this and Google "
6261
  "will start rewarding you with much better visibility on the search engine."
6262
  msgstr ""
6263
- "Creșteți autoritatea paginii dvs. la peste 35 pentru toate paginile "
6264
- "focalizate. Faceți acest lucru și Google va începe să vă recompenseze cu o "
6265
- "vizibilitate mult mai bună pe motorul de căutare."
6266
 
6267
  #: models/CheckSeo.php:1022
6268
- #, fuzzy
6269
  msgid "Get at least 1 Backlink for every Focus Page"
6270
- msgstr "Obțineți cel puțin 1 backlink pentru fiecare pagină de focalizare"
6271
 
6272
  #: models/CheckSeo.php:1023 models/CheckSeo.php:1036
6273
- #, fuzzy
6274
  msgid ""
6275
  "A very easy way to reach this goal is to get a Squirrly SPY report "
6276
  "[link]https://squirrly.co/seo/spy/[/link] or something similar for your "
@@ -6279,183 +6222,160 @@ msgid ""
6279
  "you can talk to those site owners and ask them how they can include you as "
6280
  "well, and also link to YOUR site."
6281
  msgstr ""
6282
- "O modalitate foarte ușoară de a atinge acest obiectiv este să obțineți un "
6283
- "raport Squirrly SPY [link] https://squirrly.co/seo/spy/ [/ link] sau ceva "
6284
- "similar pentru concurenții dvs. (trebuie doar să vedeți cine este în prezent "
6285
- "lista top 10 din Google pentru cuvântul dvs. cheie principal pentru fiecare "
6286
- "pagină de focalizare). Veți vedea ce site-uri le leagă. Apoi, puteți vorbi "
6287
- "cu acei proprietari de site-uri și să-i întrebați cum vă pot include, precum "
6288
- "și link-ul către site-ul dvs.."
6289
 
6290
  #: models/CheckSeo.php:1024
6291
- #, fuzzy
6292
  msgid ""
6293
  "Get 1 Backlink for each Focus Page. The 'PRO Ranking Tournament' course "
6294
  "inside Education Cloud by Squirrly has many ideas in lesson 8. These ideas "
6295
  "will help you get backlinks."
6296
  msgstr ""
6297
- "Obțineți 1 backlink pentru fiecare pagină de focalizare. Cursul PRO Ranking "
6298
- "Tournament din cadrul Education Cloud by Squirrly are multe idei în lecția "
6299
  "8. Aceste idei vă vor ajuta să obțineți backlink-uri."
6300
 
6301
  #: models/CheckSeo.php:1025
6302
- #, fuzzy
6303
  msgid ""
6304
  "Get 1 Backlink (minimum) for each of your Focus Pages. Otherwise, it's "
6305
  "pretty improbable that you will manage to reach top positions."
6306
  msgstr ""
6307
- "Obțineți 1 backlink (minim) pentru fiecare dintre paginile dvs. Focus. În "
6308
- "caz contrar, este destul de improbabil vei reuși ajungi pe poziții de "
6309
- "vârf."
6310
 
6311
  #: models/CheckSeo.php:1035
6312
- #, fuzzy
6313
  msgid "Get 10 Backlinks to your Focus Pages"
6314
- msgstr "Obțineți 10 backlinkuri la paginile dvs. Focus"
6315
 
6316
  #: models/CheckSeo.php:1037
6317
- #, fuzzy
6318
  msgid ""
6319
  "Get 10 Backlinks for each Focus Page. The 'PRO Ranking Tournament' course "
6320
  "inside Education Cloud by Squirrly has many ideas in lesson 8. These ideas "
6321
  "will help you get backlinks."
6322
  msgstr ""
6323
- "Obține 10 backlinkuri pentru fiecare pagină de focalizare. Cursul PRO "
6324
- "Ranking Tournament din cadrul Education Cloud by Squirrly are multe idei în "
6325
- "lecția 8. Aceste idei vă vor ajuta să obțineți backlink-uri."
6326
 
6327
  #: models/CheckSeo.php:1038
6328
- #, fuzzy
6329
  msgid ""
6330
  "Reach over 10 Backlinks for each of your Focus Pages. Otherwise, it's pretty "
6331
  "improbable that you will manage to reach top positions."
6332
  msgstr ""
6333
- "Atingeți peste 10 backlink-uri pentru fiecare dintre paginile dvs. Focus. În "
6334
- "caz contrar, este destul de improbabil vei reuși ajungi pe poziții de "
6335
- "vârf."
6336
 
6337
  #: models/CheckSeo.php:1048
6338
- #, fuzzy
6339
  msgid "Help us with a positive review on WordPress."
6340
- msgstr "Ajută-ne cu o recenzie pozitivă pe WordPress."
6341
 
6342
  #: models/CheckSeo.php:1049
6343
- #, fuzzy
6344
  msgid "Help us keep the Squirrly SEO plugin free with so many free features."
6345
  msgstr ""
6346
- "Ajută-ne să menținem gratuit pluginul SEO Squirrly cu atât de multe funcții "
6347
- "gratuite."
6348
 
6349
  #: models/CheckSeo.php:1050
6350
- #, fuzzy, php-format
6351
  msgid ""
6352
  "Go to %sWordPress Directory%s and write a short positive review for us if "
6353
  "you like the plugin."
6354
  msgstr ""
6355
- "Accesați %sWordPress Directory %s și scrieți o scurtă recenzie pozitivă "
6356
- "pentru noi dacă doriți pluginul."
6357
 
6358
  #: models/CheckSeo.php:1063 models/CheckSeo.php:1095
6359
- #, fuzzy
6360
  msgid "You got better Traffic to your Focus Pages"
6361
- msgstr "Ai un trafic mai bun către paginile tale focale"
6362
 
6363
  #: models/CheckSeo.php:1071 models/CheckSeo.php:1079
6364
- #, fuzzy
6365
  msgid "You got better Ranking to your Focus Pages"
6366
- msgstr "Ați obținut o mai bună clasare la paginile dvs. de focalizare"
6367
 
6368
  #: models/CheckSeo.php:1087
6369
- #, fuzzy
6370
  msgid "You got better Time On Page to your Focus Pages"
6371
- msgstr "Ai mai bun timp în pagină la paginile de focalizare"
6372
 
6373
  #: models/CheckSeo.php:1103
6374
- #, fuzzy
6375
  msgid "You got better Authority to your Focus Pages"
6376
- msgstr "Ai o autoritate mai bună pentru paginile tale de focalizare"
6377
 
6378
  #: models/CheckSeo.php:1111
6379
- #, fuzzy
6380
  msgid "You got better Social Signals to your Focus Pages"
6381
- msgstr "Ați obținut semnale sociale mai bune către paginile dvs. de focalizare"
6382
 
6383
  #: models/CheckSeo.php:1119
6384
- #, fuzzy
6385
  msgid "You got better Loading Speed to your Focus Pages"
6386
- msgstr "Aveți o viteză de încărcare mai bună la paginile dvs. de focalizare"
6387
 
6388
  #: models/CheckSeo.php:1127 models/CheckSeo.php:1135 models/CheckSeo.php:1143
6389
- #, fuzzy
6390
  msgid "You got better Ranking for your Keywords"
6391
- msgstr "Ați obținut un clasament mai bun pentru cuvintele dvs. cheie"
6392
 
6393
  #: models/CheckSeo.php:1151
6394
- #, fuzzy
6395
  msgid "You got better Score for your Audit"
6396
- msgstr "Ai obținut un scor mai bun pentru auditul tău"
6397
 
6398
  #: models/CheckSeo.php:1458
6399
- #, fuzzy
6400
- #| msgid "Could not send the email..."
6401
  msgid "Could not verify the frontend."
6402
- msgstr "Nu s-a putut trimite email ..."
6403
 
6404
  #: models/CheckSeo.php:1826
6405
- #, fuzzy
6406
  msgid "'Just another WordPress site'"
6407
- msgstr "Doar un alt WordPress site"
6408
 
6409
  #: models/CheckSeo.php:1827
6410
- #, fuzzy
6411
  msgid "Just another WordPress site"
6412
  msgstr "Doar un alt WordPress site"
6413
 
6414
  #: models/CheckSeo.php:1977
6415
- #, fuzzy, php-format
6416
  msgid "Focus Page was not found (error %s)"
6417
- msgstr "Pagina focalizare nu a fost găsită (eroare %s)"
6418
 
6419
  #: models/CheckSeo.php:1978 models/CheckSeo.php:2030
6420
- #, fuzzy
6421
  msgid ""
6422
  "The way your WordPress site is currently hosted can affect the way Squirrly "
6423
  "SEO operates in order to retrieve and process data about your Focus Pages. "
6424
  "It’s important to do everything on your end to ensure that the Focus Pages "
6425
  "audits can be generated by our system."
6426
  msgstr ""
6427
- "Detalii despre sarcină: Modul în care este găzduit site-ul dvs. WordPress în "
6428
- "prezent poate afecta modul în care funcționează Squirrly SEO pentru a prelua "
6429
- "și prelucra date despre paginile dvs. de focalizare. Este important "
6430
- "faceți totul la sfârșitul dvs. pentru a vă asigura că auditul Pagini Focus "
6431
- "poate fi generat de sistemul nostru."
6432
 
6433
  #: models/CheckSeo.php:1979 models/CheckSeo.php:1998
6434
- #, fuzzy
6435
  msgid ""
6436
  "Use a different browser to check if your Focus Page is visible. Whitelist "
6437
  "our crawler IP address (176.9.112.210) to allow our server to verify your "
6438
  "page so that you’ll receive a full audit."
6439
  msgstr ""
6440
- "Utilizați un browser diferit pentru a verifica dacă pagina dvs. de "
6441
- "focalizare este vizibilă. Lista completă a adresei IP a crawlerului "
6442
- "(176.9.112.210) pentru a permite serverului nostru să verifice pagina dvs. "
6443
- "astfel încât să primiți un audit complet."
6444
 
6445
  #: models/CheckSeo.php:1980 models/CheckSeo.php:2032
6446
- #, fuzzy
6447
  msgid "An error is preventing Squirrly from processing your Focus Page audits."
6448
- msgstr ""
6449
- "O eroare îl împiedică pe Squirrly să proceseze auditul dvs. Focus Page."
6450
 
6451
  #: models/CheckSeo.php:1987
6452
- #, fuzzy, php-format
6453
  msgid "Your Focus Page is redirected to another page (error %s)"
6454
  msgstr ""
6455
- "Pagina dvs. de focalizare este redirecționată către o altă pagină (eroare %s)"
6456
 
6457
  #: models/CheckSeo.php:1988
6458
- #, fuzzy, php-format
6459
  msgid ""
6460
  "Right now, your Focus Page sends users and search engines to a different URL "
6461
  "from the one they originally requested. That’s because you set up a 301 or a "
@@ -6465,40 +6385,37 @@ msgid ""
6465
  "%s A redirect also interferes with how Squirrly’s Focus Pages system "
6466
  "operates."
6467
  msgstr ""
6468
- "În momentul de față, pagina dvs. de focalizare trimite utilizatorii și "
6469
- "motoarele de căutare pe o adresă URL diferită de cea solicitată inițial. "
6470
- "Acest lucru se datorează faptului că configurați o redirecționare 301 sau "
6471
- "302 pentru această pagină. %s O redirecție indică faptul că pagina dvs. de "
6472
- "focalizare s-a mutat într-o locație diferită. Dacă a fost configurat tipul "
6473
- "greșit de redirecționare, motoarele de căutare pot deveni confuze cu privire "
6474
- "la ce pagină ar trebui să fie clasate. %s O redirecție interferează, de "
6475
- "asemenea, cu modul în care funcționează sistemul Focus Pages al lui Squirrly."
6476
 
6477
  #: models/CheckSeo.php:1989
6478
- #, fuzzy
6479
  msgid ""
6480
  "Choose a page that does NOT redirect to a different page as your Focus Page. "
6481
  "Your Focus Page should have a single URL associated to it so that Squirrly "
6482
  "can serve you the best data."
6483
  msgstr ""
6484
- "Alegeți o pagină care NU redirecționează către o altă pagină ca Pagina dvs. "
6485
- "de focalizare. Pagina dvs. de focalizare ar trebui să aibă o singură adresă "
6486
- "URL asociată, astfel încât Squirrly să vă poată servi cele mai bune date."
6487
 
6488
  #: models/CheckSeo.php:1990
6489
- #, fuzzy
6490
  msgid "Make sure that your Focus Page is NOT redirected to a different page."
6491
  msgstr ""
6492
- "Asigurați-vă că pagina dvs. Focus nu este redirecționată către o altă pagină."
6493
 
6494
  #: models/CheckSeo.php:1996
6495
- #, fuzzy, php-format
6496
  msgid "Ensure your Focus Pages can be accessed (error %s)"
6497
- msgstr ""
6498
- "Asigurați-vă că paginile dvs. de focalizare pot fi accesate (eroare %s)"
6499
 
6500
  #: models/CheckSeo.php:1997
6501
- #, fuzzy, php-format
6502
  msgid ""
6503
  "A server-side error is preventing Squirrly from being able to access and "
6504
  "audit your Focus Page. You need to fix this so that Squirrly SEO can analyze "
@@ -6506,87 +6423,75 @@ msgid ""
6506
  "ranking. %sThe error can also prevent human visitors from accessing your "
6507
  "page, which is a critical issue."
6508
  msgstr ""
6509
- "O eroare din partea serverului împiedică Squirrly să poată să acceseze și să "
6510
- "auditeze pagina dvs. de focalizare. Trebuie să remediați acest lucru, astfel "
6511
- "încât SEO Squirrly să vă poată analiza pagina și să vă ofere date complete "
6512
- "despre cum să-i îmbunătățiți șansele de clasare. %sEroarea poate de "
6513
- "asemenea să împiedice vizitatorii umani să acceseze pagina dvs., ceea ce "
6514
- "este o problemă critică."
6515
 
6516
  #: models/CheckSeo.php:1999
6517
- #, fuzzy
6518
  msgid "A server-side error is preventing your Focus Pages from being accessed."
6519
- msgstr ""
6520
- "O eroare din partea serverului împiedică accesarea paginilor dvs. focus."
6521
 
6522
  #: models/CheckSeo.php:2004
6523
- #, fuzzy, php-format
6524
  msgid "Make sure your Focus Pages can be audited (error %s)"
6525
- msgstr ""
6526
- "Asigurați-vă că paginile dvs. de focalizare pot fi auditate (eroare %s)"
6527
 
6528
  #: models/CheckSeo.php:2005
6529
- #, fuzzy
6530
  msgid ""
6531
  "Squirrly is unable to generate the audit for your Focus Page because it "
6532
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
6533
  "server may be down, or maybe your server is inadvertently blocking "
6534
  "Squirrly’s IP address."
6535
  msgstr ""
6536
- "Squirrly nu poate genera auditul pentru pagina dvs. de focalizare, deoarece "
6537
- "nu se poate conecta la serverul site-ului dvs. WordPress. De ce? Este "
6538
- "posibil ca serverul site-ului dvs. WordPress să fie defect, sau poate că "
6539
- "serverul dvs. blochează din greșește adresa IP a lui Squirrly."
6540
 
6541
  #: models/CheckSeo.php:2006
6542
- #, fuzzy
6543
  msgid ""
6544
  "Check to see if your WordPress site’s server is offline. Whitelist our "
6545
  "crawler IP address (176.9.112.210) to allow our server to verify your page "
6546
  "so that you’ll receive a full audit."
6547
  msgstr ""
6548
- "Verificați dacă serverul site-ului dvs. WordPress este deconectat. Lista "
6549
- "completă a adresei IP a crawlerului (176.9.112.210) pentru a permite "
6550
- "serverului nostru să verifice pagina dvs. astfel încât să primiți un audit "
6551
  "complet."
6552
 
6553
  #: models/CheckSeo.php:2007 models/CheckSeo.php:2015
6554
- #, fuzzy
6555
  msgid ""
6556
  "An error prevents Squirrly from gathering critical data about your Focus "
6557
  "Page."
6558
  msgstr ""
6559
- "O eroare îl împiedică pe Squirrly să strângă date critice despre pagina dvs. "
6560
- "de focalizare."
6561
 
6562
  #: models/CheckSeo.php:2012
6563
- #, fuzzy
6564
  msgid "Make sure your Focus Pages can be audited (firewall protection)"
6565
- msgstr ""
6566
- "Asigurați-vă că paginile dvs. de focalizare pot fi auditate (eroare %s)"
6567
 
6568
  #: models/CheckSeo.php:2013
6569
- #, fuzzy
6570
  msgid ""
6571
  "Squirrly is unable to generate the audit for your Focus Page because it "
6572
  "can’t connect to your WordPress site’s server. Why? Your WordPress site’s "
6573
  "server has a firewall protection and is blocking Squirrly’s IP address."
6574
  msgstr ""
6575
- "Squirrly nu poate genera auditul pentru pagina dvs. de focalizare, deoarece "
6576
- "nu se poate conecta la serverul site-ului dvs. WordPress. De ce? Este "
6577
- "posibil ca serverul site-ului dvs. WordPress fie defect, sau poate "
6578
- "serverul dvs. blochează din greșește adresa IP a lui Squirrly."
6579
 
6580
  #: models/CheckSeo.php:2014 models/CheckSeo.php:2031
6581
- #, fuzzy
6582
  msgid ""
6583
  "Whitelist our crawler IP address (176.9.112.210) to allow our server to "
6584
  "verify your page so that you’ll receive a full audit."
6585
  msgstr ""
6586
- "Verificați dacă serverul site-ului dvs. WordPress este deconectat. Lista "
6587
- "completă a adresei IP a crawlerului (176.9.112.210) pentru a permite "
6588
- "serverului nostru să verifice pagina dvs. astfel încât să primiți un audit "
6589
- "complet."
6590
 
6591
  #: models/CheckSeo.php:2020
6592
  msgid "Focus Pages - Limit Exceeded"
@@ -6597,23 +6502,79 @@ msgid ""
6597
  "Squirrly is unable to generate the audit for your Focus Page because you "
6598
  "exceeded the maximum number of Focus Pages for your account."
6599
  msgstr ""
 
 
6600
 
6601
  #: models/CheckSeo.php:2022
6602
- #, fuzzy
6603
  msgid "Upgrade your account to be able to see all the Focus Pages you added."
6604
- msgstr "Doriți să ștergeți automatizarea pentru %s?"
 
 
6605
 
6606
  #: models/CheckSeo.php:2029
6607
- #, fuzzy, php-format
6608
  msgid "Focus Page could not be verified (error: %s)"
6609
- msgstr "Pagina focalizare nu a fost găsită (eroare %s)"
6610
-
6611
- #: models/FocusPages.php:20 models/abstract/Assistant.php:87
6612
- #: view/Ranking/Gscsync.php:32 view/Ranking/Rankings.php:218
6613
- #: view/Ranking/Rankings.php:356 view/Research/Briefcase.php:109
6614
- #: view/Research/Briefcase.php:299 view/Research/History.php:30
6615
- #: view/Research/HistoryDetails.php:8 view/Research/Research.php:200
6616
- #: view/Research/Suggested.php:29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6617
  msgid "Keyword"
6618
  msgstr "Cuvant cheie"
6619
 
@@ -6669,17 +6630,17 @@ msgstr "Legături externe"
6669
  msgid "Accuracy"
6670
  msgstr "Confort"
6671
 
6672
- #: models/FocusPages.php:35 view/Ranking/Gscsync.php:35
6673
  msgid "CTR"
6674
  msgstr "CTR"
6675
 
6676
- #: models/FocusPages.php:36 view/Ranking/Gscsync.php:34
6677
- #: view/Ranking/Rankings.php:370
6678
  msgid "Impressions"
6679
  msgstr "Impresii"
6680
 
6681
- #: models/FocusPages.php:37 view/Ranking/Gscsync.php:33
6682
- #: view/Ranking/Rankings.php:376
6683
  msgid "Clicks"
6684
  msgstr "Click-uri"
6685
 
@@ -6708,385 +6669,354 @@ msgstr "Eroare ICO: Nu se poate transforma imaginea in fisier ICO."
6708
  msgid "The favicon has been updated."
6709
  msgstr "Icoana a fost adaugata pe server."
6710
 
6711
- #: models/Menu.php:110 models/Menu.php:510
6712
  msgid "First Step"
6713
  msgstr "Primul pas"
6714
 
6715
- #: models/Menu.php:110 models/Menu.php:111 models/Menu.php:374
6716
- #: view/Blocks/Toolbar.php:42
6717
  msgid "Overview"
6718
- msgstr "Prezentare generală"
6719
 
6720
  #: models/Menu.php:122 models/Menu.php:123
6721
  msgid "All Features"
6722
  msgstr "Toate Feature-urile"
6723
 
6724
- #: models/Menu.php:134 models/Menu.php:135 view/Research/Briefcase.php:121
6725
  msgid "Research"
6726
  msgstr "Cercetări"
6727
 
6728
- #: models/Menu.php:142 view/Research/Research.php:19
6729
- msgid "Keyword Research"
6730
- msgstr "Cercetarea cuvintelor cheie"
6731
-
6732
- #: models/Menu.php:146 models/Menu.php:147
6733
- msgid "Live Assistant"
6734
- msgstr "Asistent live"
6735
-
6736
- #: models/Menu.php:158
6737
  msgid "All Snippets"
6738
  msgstr "Toate Snippets"
6739
 
6740
- #: models/Menu.php:159
6741
- msgid "Bulk Seo"
6742
- msgstr "Bulk SEO"
6743
-
6744
- #: models/Menu.php:166 models/Menu.php:422 view/BulkSeo/Bulkseo.php:30
6745
  msgid "Bulk SEO"
6746
  msgstr "Bulk SEO"
6747
 
6748
- #: models/Menu.php:170 models/Menu.php:171
6749
  msgid "SEO Settings"
6750
  msgstr "Setări SEO"
6751
 
6752
- #: models/Menu.php:182 models/Menu.php:183 models/Menu.php:473
6753
  #: view/SeoSettings/Sitemap.php:29
6754
  msgid "Sitemap XML"
6755
  msgstr "Sitemap XML"
6756
 
6757
- #: models/Menu.php:194 models/Menu.php:195 view/SeoSettings/Jsonld.php:58
6758
  msgid "Local SEO"
6759
  msgstr "SEO local"
6760
 
6761
- #: models/Menu.php:206 models/Menu.php:207 models/Menu.php:354
6762
- #: view/FocusPages/Pagelist.php:24
6763
- msgid "Focus Pages"
6764
- msgstr "Pagini Focus"
6765
-
6766
- #: models/Menu.php:218 models/Menu.php:219
6767
  msgid "SEO Audit"
6768
  msgstr "Audit SEO"
6769
 
6770
- #: models/Menu.php:230 models/Menu.php:231 models/Menu.php:394
6771
- msgid "Rankings"
6772
- msgstr "Rankings"
6773
-
6774
- #: models/Menu.php:238 view/Ranking/Rankings.php:32
6775
  msgid "Google Rankings"
6776
  msgstr "Google Ranking"
6777
 
6778
- #: models/Menu.php:242 models/Menu.php:243
6779
  msgid "Onboarding"
6780
  msgstr "Îmbarcare"
6781
 
6782
- #: models/Menu.php:254 models/Menu.php:255
6783
  msgid "Import & Export SEO"
6784
  msgstr "Import & Export SEO"
6785
 
6786
- #: models/Menu.php:266 models/Menu.php:267
6787
  msgid "Account Info"
6788
  msgstr "Informatii cont"
6789
 
6790
- #: models/Menu.php:278
6791
  msgid "How To & Support"
6792
  msgstr "Suport"
6793
 
6794
- #: models/Menu.php:279
6795
  msgid "Help & Support"
6796
  msgstr "Suport"
6797
 
6798
- #: models/Menu.php:308
6799
  msgid "Find Keywords"
6800
- msgstr "Găsiți cuvinte cheie"
6801
 
6802
- #: models/Menu.php:309
6803
  msgid "do a keyword research"
6804
- msgstr "căutați cuvintelor cheie"
6805
 
6806
- #: models/Menu.php:314 view/Research/Briefcase.php:19
6807
- msgid "Briefcase"
6808
- msgstr "Briefcase"
6809
-
6810
- #: models/Menu.php:315
6811
  msgid "save the best Keywords"
6812
  msgstr "salvați cele mai bune cuvinte cheie"
6813
 
6814
- #: models/Menu.php:320 view/Research/Briefcase.php:31
6815
  msgid "Labels"
6816
  msgstr "Etichete"
6817
 
6818
- #: models/Menu.php:321
6819
  msgid "group keywords"
6820
  msgstr "grupati cuvinte cheie"
6821
 
6822
- #: models/Menu.php:326
6823
  msgid "Suggested"
6824
  msgstr "Sugestii"
6825
 
6826
- #: models/Menu.php:327
6827
  msgid "better keywords found"
6828
  msgstr "cuvinte cheie mai bune găsite"
6829
 
6830
- #: models/Menu.php:332
6831
  msgid "History"
6832
  msgstr "Istoric"
6833
 
6834
- #: models/Menu.php:333
6835
  msgid "keyword research history"
6836
  msgstr "istoricul cercetării cuvintelor cheie"
6837
 
6838
- #: models/Menu.php:340
6839
  msgid "Optimize Posts"
6840
- msgstr "Optimizare postări"
6841
 
6842
- #: models/Menu.php:341
6843
  msgid "use the Live Assistant"
6844
  msgstr "utilizați Live Assistant"
6845
 
6846
- #: models/Menu.php:346 models/Menu.php:386 models/Menu.php:412
6847
  msgid "Settings"
6848
  msgstr "Setări"
6849
 
6850
- #: models/Menu.php:347
6851
  msgid "live assistant setup"
6852
  msgstr "configurarea asistentului live"
6853
 
6854
- #: models/Menu.php:355
6855
  msgid "all my focus pages"
6856
  msgstr "toate paginile mele de focus"
6857
 
6858
- #: models/Menu.php:366 models/Menu.php:380
6859
  msgid "Add New Page"
6860
- msgstr "Adăugați pagina nouă"
6861
 
6862
- #: models/Menu.php:367
6863
  msgid "add page in focus pages"
6864
  msgstr "adăugați pagina în paginile de focus"
6865
 
6866
- #: models/Menu.php:375
6867
  msgid "See all the SEO audits"
6868
  msgstr "Vezi toate auditurile SEO"
6869
 
6870
- #: models/Menu.php:381
6871
  msgid "add page in audit"
6872
  msgstr "adăugare pagină în audit"
6873
 
6874
- #: models/Menu.php:387
6875
  msgid "Audit settings"
6876
  msgstr "Setări de audit"
6877
 
6878
- #: models/Menu.php:395
6879
  msgid "See Google ranking"
6880
  msgstr "Vezi Google Rankings"
6881
 
6882
- #: models/Menu.php:400
6883
  msgid "Add Keywords"
6884
- msgstr "Adăugați cuvinte cheie"
6885
 
6886
- #: models/Menu.php:401
6887
  msgid "Add briefcase keywords"
6888
  msgstr "Adauga cuvant cheie"
6889
 
6890
- #: models/Menu.php:406 view/Ranking/Rankings.php:263
6891
  msgid "Sync Keywords"
6892
- msgstr "Sincronizare Cuvinte cheie"
6893
 
6894
- #: models/Menu.php:407
6895
  msgid "Sync Keywords from GSC"
6896
  msgstr "Sincronizarea cuvintelor cheie din GSC"
6897
 
6898
- #: models/Menu.php:413
6899
  msgid "Ranking settings"
6900
  msgstr "Setări de Rankings"
6901
 
6902
- #: models/Menu.php:423
6903
  msgid "optimize all pages"
6904
  msgstr "optimizați toate paginile"
6905
 
6906
- #: models/Menu.php:431
6907
  msgid "Automation"
6908
  msgstr "Automatizare"
6909
 
6910
- #: models/Menu.php:432
6911
  msgid "patterns & automation"
6912
  msgstr "modele și automatizare"
6913
 
6914
- #: models/Menu.php:437 view/SeoSettings/Links.php:29
6915
  msgid "SEO Links"
6916
  msgstr "Link-uri SEO"
6917
 
6918
- #: models/Menu.php:438
6919
  msgid "manage website links"
6920
  msgstr "gestionați legăturile site-ului web"
6921
 
6922
- #: models/Menu.php:443 view/SeoSettings/Metas.php:29
6923
  msgid "SEO Metas"
6924
  msgstr "SEO Metas"
6925
 
6926
- #: models/Menu.php:444
6927
  msgid "required on-page metas"
6928
- msgstr "METAs necesare pe pagină"
6929
 
6930
- #: models/Menu.php:449 view/Blocks/Snippet.php:85
6931
  msgid "JSON-LD"
6932
  msgstr "JSON-LD"
6933
 
6934
- #: models/Menu.php:450
6935
  msgid "rich snippets & schema"
6936
  msgstr "rich Snippets & Schema"
6937
 
6938
- #: models/Menu.php:455 view/SeoSettings/Social.php:28
6939
  msgid "Social Media"
6940
  msgstr "Rețele sociale"
6941
 
6942
- #: models/Menu.php:456
6943
  msgid "social share options"
6944
  msgstr "opțiuni de Social Media"
6945
 
6946
- #: models/Menu.php:461 view/SeoSettings/Tracking.php:28
6947
  msgid "Tracking Tools"
6948
- msgstr "Instrumente de urmărire"
6949
 
6950
- #: models/Menu.php:462
6951
  msgid "google analytics, pixel, etc."
6952
  msgstr "google analytics, pixel, etc."
6953
 
6954
- #: models/Menu.php:467 view/SeoSettings/Webmaster.php:28
6955
  msgid "Webmaster Tools"
6956
- msgstr "Instrumente Webmaster"
6957
 
6958
- #: models/Menu.php:468
6959
  msgid "connect to webmasters"
6960
  msgstr "conectați-vă la webmasteri"
6961
 
6962
- #: models/Menu.php:474
6963
  msgid "setup the sitemap"
6964
  msgstr "configurați harta site-ului"
6965
 
6966
- #: models/Menu.php:479
6967
  msgid "Robots.txt"
6968
  msgstr "Robots.txt"
6969
 
6970
- #: models/Menu.php:480
6971
  msgid "search engine filters"
6972
  msgstr "filtre pentru motoare de căutare"
6973
 
6974
- #: models/Menu.php:485
6975
  msgid "Favicon"
6976
  msgstr "Favicon"
6977
 
6978
- #: models/Menu.php:486
6979
  msgid "add website icon"
6980
  msgstr "adăugați pictograma site-ului web"
6981
 
6982
- #: models/Menu.php:491
6983
  msgid "Import/Export"
6984
  msgstr "Import/Export"
6985
 
6986
- #: models/Menu.php:492
6987
  msgid "import & export SEO"
6988
  msgstr "import & export SEO"
6989
 
6990
- #: models/Menu.php:501
6991
  msgid "Advanced"
6992
  msgstr "Avansat"
6993
 
6994
- #: models/Menu.php:502
6995
  msgid "Advanced SEO Settings"
6996
  msgstr "Setări SEO avansate"
6997
 
6998
- #: models/Menu.php:511
6999
  msgid "website details"
7000
  msgstr "detalii despre site"
7001
 
7002
- #: models/Menu.php:516 view/Blocks/Snippet.php:433
7003
- msgid "SEO Automation"
7004
- msgstr "Automatizare SEO"
7005
-
7006
- #: models/Menu.php:517
7007
  msgid "build SEO Automation"
7008
  msgstr "construiți automatizarea SEO"
7009
 
7010
- #: models/Menu.php:522 view/SeoSettings/Backup.php:91
7011
  msgid "Import SEO"
7012
  msgstr "Importă SEO"
7013
 
7014
- #: models/Menu.php:523
7015
  msgid "import settings and SEO"
7016
  msgstr "setări de import și SEO"
7017
 
7018
- #: models/Menu.php:528 view/Onboarding/Step4.php:12
7019
  msgid "Final Step"
7020
  msgstr "Pasul final"
7021
 
7022
- #: models/Menu.php:529
7023
  msgid "check today SEO goals"
7024
  msgstr "verificați obiectivele SEO de azi"
7025
 
7026
- #: models/Menu.php:538
7027
  msgid "Blogging"
7028
  msgstr "Blogging"
7029
 
7030
- #: models/Menu.php:539
7031
  msgid "Blogging overwiew"
7032
  msgstr "Blogging overwiew"
7033
 
7034
- #: models/Menu.php:544
7035
  msgid "Traffic"
7036
  msgstr "Trafic"
7037
 
7038
- #: models/Menu.php:545
7039
  msgid "Weekly website traffic"
7040
  msgstr "Traficul săptămânal pe site"
7041
 
7042
- #: models/Menu.php:550
7043
  msgid "SEO"
7044
  msgstr "SEO"
7045
 
7046
- #: models/Menu.php:551
7047
  msgid "On-Page optimization"
7048
  msgstr "Optimizare On-Page"
7049
 
7050
- #: models/Menu.php:556
7051
  msgid "Social"
7052
  msgstr "Social"
7053
 
7054
- #: models/Menu.php:557
7055
  msgid "Social signals and shares"
7056
  msgstr "Semnale sociale și share-uri"
7057
 
7058
- #: models/Menu.php:562
7059
  msgid "Links"
7060
  msgstr "Legături"
7061
 
7062
- #: models/Menu.php:563
7063
  msgid "Backlinks and Innerlinks"
7064
  msgstr "Backlinks și Innerlinks"
7065
 
7066
- #: models/Menu.php:568 models/focuspages/Authority.php:59
7067
  msgid "Authority"
7068
  msgstr "Autoritatea"
7069
 
7070
- #: models/Menu.php:569
7071
  msgid "Website Off-Page score"
7072
  msgstr "Scorul site-ului Off-Page"
7073
 
7074
  #: models/Post.php:73
7075
- #, fuzzy
7076
  msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
7077
- msgstr "Fișierul încărcat depășește directiva upload_max_filesize din php.ini."
7078
 
7079
  #: models/Post.php:74
7080
- #, fuzzy
7081
  msgid ""
7082
  "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
7083
  "the HTML form."
7084
  msgstr ""
7085
- "Fișierul încărcat depășește directiva MAX_FILE_SIZE care a fost specificată "
7086
- "în formularul HTML."
7087
 
7088
  #: models/Post.php:75
7089
- #, fuzzy
7090
  msgid "The uploaded file was only partially uploaded."
7091
  msgstr "Fișierul încărcat a fost încărcat doar parțial."
7092
 
@@ -7099,65 +7029,59 @@ msgid "Missing a temporary folder."
7099
  msgstr "Lipsește dosarul temporar."
7100
 
7101
  #: models/Post.php:79
7102
- #, fuzzy
7103
  msgid "Failed to write file to disk."
7104
- msgstr "Nu a reușit scrie fișierul pe disc."
7105
 
7106
  #: models/Post.php:80
7107
- #, fuzzy
7108
  msgid "File upload stopped by extension."
7109
  msgstr "Încărcarea fișierului s-a oprit prin extensie."
7110
 
7111
  #: models/Post.php:97
7112
- #, fuzzy
7113
  msgid "Invalid form submission."
7114
- msgstr "Trimiterea formularului este nevalidă."
7115
 
7116
  #: models/Post.php:107
7117
  msgid "File is empty. Please upload something more substantial."
7118
  msgstr "Fișierul este gol. Vă rugăm să încărcați ceva mai substanțiale."
7119
 
7120
  #: models/Post.php:109
7121
- #, fuzzy
7122
  msgid ""
7123
  "File is empty. Please upload something more substantial. This error could "
7124
  "also be caused by uploads being disabled in your php.ini or by post_max_size "
7125
  "being defined as smaller than upload_max_filesize in php.ini."
7126
  msgstr ""
7127
  "Fișierul este gol. Vă rugăm să încărcați ceva mai substanțial. Această "
7128
- "eroare ar putea fi cauzată și de încărcarea încărcării în php.ini sau de "
7129
- "definirea post_max_size ca fiind mai mică decât upload_max_filesize în php."
7130
- "ini."
7131
 
7132
  #: models/Post.php:115
7133
  msgid "Specified file failed upload test."
7134
  msgstr "Fișierul specificat nu a reușit încărcarea testului."
7135
 
7136
  #: models/Post.php:128
7137
- #, fuzzy
7138
  msgid "Sorry, this file type is not permitted for security reasons."
7139
  msgstr ""
7140
  "Ne pare rău, acest tip de fișier nu este permis din motive de securitate."
7141
 
7142
  #: models/Post.php:153
7143
- #, fuzzy, php-format
7144
  msgid "The uploaded file could not be moved to %s."
7145
- msgstr "Fișierul încărcat nu a putut fi mutat la %s."
7146
 
7147
  #: models/Post.php:236
7148
  msgid "Keyword with 2 or more words"
7149
  msgstr "Cuvânt cheie cu 2 sau mai multe cuvinte"
7150
 
7151
  #: models/Post.php:237
7152
- #, fuzzy
7153
  msgid ""
7154
  "Even if a long tail keyword won't bring as many visitors as one keyword "
7155
  "would, the traffic those keywords will bring will be better, and more "
7156
  "focused towards what you're selling."
7157
  msgstr ""
7158
  "Chiar dacă un cuvânt cheie cu coadă lungă nu va aduce la fel de mulți "
7159
- "vizitatori decât un cuvânt cheie, traficul pe care îl vor aduce aceste "
7160
- "cuvinte cheie va fi mai bun și mai concentrat către ceea ce vindeți."
7161
 
7162
  #: models/Post.php:240
7163
  msgid "Domain"
@@ -7168,13 +7092,12 @@ msgid "Keyword is present in the URL"
7168
  msgstr "Cuvânt cheie prezent in URL"
7169
 
7170
  #: models/Post.php:243
7171
- #, fuzzy
7172
  msgid ""
7173
  "The keywords must be present in the URL for a better ranking. You should "
7174
  "consider not to add a keyword more than once."
7175
  msgstr ""
7176
- "Cuvintele cheie trebuie să fie prezente pe adresa URL pentru o mai bună "
7177
- "clasare. Trebuieluați în considerare să nu adăugați un cuvânt cheie de "
7178
  "mai multe ori."
7179
 
7180
  #: models/Post.php:246
@@ -7188,13 +7111,12 @@ msgstr ""
7188
  "Titlul este Google Friendly %s: mai multe cuvinte %s: supra-optimizat! %s"
7189
 
7190
  #: models/Post.php:249
7191
- #, fuzzy
7192
  msgid ""
7193
  "It calculates the right number of times your keyword should appear mentioned "
7194
  "in the text and makes sure you do not over-optimize."
7195
  msgstr ""
7196
- "Calculează numărul corect de ori ar trebui să apară cuvântul dvs. cheie "
7197
- "menționat în text și asigură că nu supra-optimizați."
7198
 
7199
  #: models/Post.php:252
7200
  #, php-format
@@ -7203,13 +7125,12 @@ msgstr ""
7203
  "Continutul este Google Friendly %s: mai multe cuvinte %s: supra-optimizat! %s"
7204
 
7205
  #: models/Post.php:253
7206
- #, fuzzy
7207
  msgid ""
7208
  "It calculates the right number of times your keyword should appear mentioned "
7209
  "in the text and makes sure you do not over-optimize"
7210
  msgstr ""
7211
- "Calculează numărul corect de ori ar trebui să apară cuvântul dvs. cheie "
7212
- "menționat în text și asigură că nu supra-optimizați"
7213
 
7214
  #: models/Post.php:256
7215
  #, php-format
@@ -7217,7 +7138,6 @@ msgid "Over Optimization %s"
7217
  msgstr "Supra Optimizat %s"
7218
 
7219
  #: models/Post.php:257
7220
- #, fuzzy
7221
  msgid ""
7222
  "Checks if there are words in the whole text that appear way too many times"
7223
  msgstr ""
@@ -7229,7 +7149,6 @@ msgid "Human Friendly %s"
7229
  msgstr "Usor de Citit %s"
7230
 
7231
  #: models/Post.php:261
7232
- #, fuzzy
7233
  msgid ""
7234
  "Your readers (who are not search engine bots) should find a clear text, with "
7235
  "a rich vocabulary, that takes into account some basic rules of writing: such "
@@ -7237,18 +7156,18 @@ msgid ""
7237
  "writing about). Also, you can improve their reading experience by avoiding "
7238
  "repetitions."
7239
  msgstr ""
7240
- "Cititorii dvs. (care nu sunt robot de căutare) ar trebui găsească un text "
7241
- "clar, cu un vocabular bogat, care să țină cont de anumite reguli de bază ale "
7242
- "scrierii: cum ar fi o introducere, o concluzie (în care afirmați subiectul "
7243
- "pe care îl scrieți despre). De asemenea, puteți îmbunătăți experiența lor de "
7244
- "citit evitând repetările."
7245
-
7246
- #: models/Post.php:264 models/focuspages/Snippet.php:120
7247
- #: models/focuspages/Snippet.php:250 models/focuspages/Snippet.php:272
7248
- #: view/Audits/Addpage.php:131 view/Blocks/Snippet.php:168
7249
- #: view/Blocks/Snippet.php:655 view/Blocks/Snippet.php:922
7250
- #: view/BulkSeo/Bulkseo.php:142 view/FocusPages/Addpage.php:132
7251
- #: view/SeoSettings/Automation.php:139
7252
  msgid "Title"
7253
  msgstr "Titlul"
7254
 
@@ -7265,25 +7184,23 @@ msgid "Title length is between 10-75 chars"
7265
  msgstr "Lungimea titlului este intre 10 si 75 caractere"
7266
 
7267
  #: models/Post.php:271
7268
- #, fuzzy
7269
  msgid ""
7270
  "The optimum length for Title is between 10-75 chars on major search engines."
7271
  msgstr ""
7272
- "Lungimea optimă pentru titlu este cuprinsă între 10-75 de caractere pe "
7273
- "motoarele de căutare majore."
7274
 
7275
  #: models/Post.php:274
7276
  msgid "Title is different from domain name"
7277
  msgstr "Titlul este diferit de numele domeniului"
7278
 
7279
  #: models/Post.php:275
7280
- #, fuzzy
7281
  msgid ""
7282
  "Since the Google Penguin Update, the title must be different from the domain "
7283
  "name, or you might get banned soon."
7284
  msgstr ""
7285
  "De la Google Penguin Update, titlul trebuie să fie diferit de numele "
7286
- "domeniului sau s-ar putea să fiți interzis în curând."
7287
 
7288
  #: models/Post.php:278
7289
  msgid "Content"
@@ -7294,7 +7211,6 @@ msgid "Keywords are used in Content"
7294
  msgstr "Cuvântul cheie este folosit in Continut"
7295
 
7296
  #: models/Post.php:281
7297
- #, fuzzy
7298
  msgid "The keyword must appear in the body of the article, at least once"
7299
  msgstr ""
7300
  "Cuvântul cheie trebuie să apară în corpul articolului, cel puțin o dată"
@@ -7305,58 +7221,55 @@ msgid "Bold one of the keywords %s"
7305
  msgstr "Îngroasă unul din cuvintele %s"
7306
 
7307
  #: models/Post.php:285
7308
- #, fuzzy
7309
  msgid ""
7310
  "Bolding your keywords will help search engines figure out what your content "
7311
  "is about and what topic you cover. It's also useful for your Human readers "
7312
  "to bold some of the most important ideas."
7313
  msgstr ""
7314
- "Acordarea cuvintelor cheie va ajuta motoarele de căutare să descopere "
7315
- "despre ce conținut este vorba și despre ce subiect abordați. De asemenea, "
7316
- "este util pentru cititorii dvs. umani să îndrăznească unele dintre cele mai "
7317
- "importante idei."
7318
 
7319
  #: models/Post.php:288
7320
  msgid "Keywords used in headline"
7321
  msgstr "Cuvânt cheie folosit ca si headline H2-H6"
7322
 
7323
  #: models/Post.php:289
7324
- #, fuzzy
7325
  msgid ""
7326
  "The keywords should be used in headings like H2, H3, H4. Try NOT to use them "
7327
  "all, for it will seem to be a SEO abuse. You can use your H2 button from the "
7328
  "editor to do this. It works like the Bold, Italic or Underline buttons."
7329
  msgstr ""
7330
- "Cuvintele cheie ar trebui utilizate în titluri precum H2, H3, H4. Încercați "
7331
- "NU le folosiți pe toate, pentru că va părea a fi un abuz SEO. Puteți "
7332
- "utiliza butonul H2 de la editor pentru a face acest lucru. Funcționează ca "
7333
- "butoanele îngroșate, italice sau subliniate."
7334
 
7335
  #: models/Post.php:292
7336
  msgid "Use image(s) in content or featured image"
7337
  msgstr "Folosește imagini in conținut sau imagine featured"
7338
 
7339
  #: models/Post.php:293
7340
- #, fuzzy
7341
  msgid ""
7342
  "Articles need to be optimized for human beings as well, so you should place "
7343
  "an image at the begining of your article."
7344
  msgstr ""
7345
- "Articolele trebuie să fie optimizate și pentru ființele umane, așa că ar "
7346
- "trebui să plasezi o imagine la începutul articolului tău."
7347
 
7348
  #: models/Post.php:296
7349
  msgid "Use keywords in the Alternative Text field of the image"
7350
  msgstr "Folosește cuvântul cheie in Textul Alternativ al imaginilor"
7351
 
7352
  #: models/Post.php:297
7353
- #, fuzzy
7354
  msgid ""
7355
  "Add at least one image in your article. Now use your keyword in the "
7356
  "description of the image. The Alternative Text field of the image."
7357
  msgstr ""
7358
- "Adăugați cel puțin o imagine în articolul dvs. Acum folosiți cuvântul cheie "
7359
- "în descrierea imaginii. Câmpul Text alternativ al imaginii."
 
7360
 
7361
  #: models/PostsList.php:24
7362
  msgid "Optimize it with Squirrly Live Assistant"
@@ -7374,7 +7287,7 @@ msgstr "sarcina (sarcinile) a (au) rămas."
7374
  msgid "Can't get snippet data"
7375
  msgstr "Nu pot obține date de Snippet"
7376
 
7377
- #: models/PostsList.php:55 models/PostsList.php:80 view/Blocks/Snippet.php:130
7378
  msgid "Edit Snippet"
7379
  msgstr "Editați Snippet"
7380
 
@@ -7386,23 +7299,27 @@ msgstr "Editor Squirrly SEO"
7386
  msgid "Squirrly SEO Admin"
7387
  msgstr "Admin Squirrly SEO"
7388
 
7389
- #: models/Snippet.php:250
 
 
 
 
7390
  msgid "You don't have enough pemission to edit this article"
7391
  msgstr "Nu aveți suficientă permisiune pentru a edita acest articol"
7392
 
7393
- #: models/Snippet.php:345
7394
  msgid "Error! Could not save the data."
7395
  msgstr "Nu s-a putut salva data."
7396
 
7397
- #: models/Snippet.php:350
7398
  msgid "Error! Invalid request."
7399
  msgstr "Eroare! Cerere nevalabilă."
7400
 
7401
- #: models/Snippet.php:382
7402
  msgid "Couldn't find the page"
7403
  msgstr "Nu am putut găsi pagina"
7404
 
7405
- #: models/Snippet.php:398 models/Snippet.php:410
7406
  msgid "No Polylang translation for this post."
7407
  msgstr "Nu există nicio traducere din Polylang pentru acest post."
7408
 
@@ -7414,120 +7331,110 @@ msgstr "Nu există nicio traducere din Polylang pentru acest post."
7414
  #: models/focuspages/Indexability.php:89 models/focuspages/Innerlinks.php:64
7415
  #: models/focuspages/Keyword.php:73 models/focuspages/Length.php:53
7416
  #: models/focuspages/Nofollow.php:65 models/focuspages/Onpage.php:80
7417
- #: models/focuspages/Ranking.php:35 models/focuspages/Snippet.php:176
7418
  #: models/focuspages/Social.php:56 models/focuspages/Strategy.php:97
7419
  #: models/focuspages/Traffic.php:95
7420
  msgid "Current URL"
7421
  msgstr "URL-ul curent"
7422
 
7423
- #: models/abstract/Assistant.php:80
7424
  msgid "Keywords"
7425
  msgstr "Cuvinte cheie"
7426
 
7427
- #: models/abstract/Assistant.php:80
7428
  msgid "Squirrly Live Assistant Optimization"
7429
  msgstr "Squirrly Live Assistant Optimizare"
7430
 
7431
- #: models/abstract/Assistant.php:80
7432
  msgid "SLA"
7433
  msgstr "SLA"
7434
 
7435
- #: models/abstract/Assistant.php:89
7436
  msgid "No Meta Keyword Found"
7437
  msgstr "Nici un cuvânt cheie Meta găsit"
7438
 
7439
- #: models/abstract/Assistant.php:164
7440
  msgid "We are gathering data for this category"
7441
  msgstr "Suntem în curs de colectare a datelor pentru această categorie"
7442
 
7443
- #: models/abstract/Assistant.php:167
7444
- #, fuzzy
7445
  msgid ""
7446
  "Congratulations for ranking with this keyword, but it will require special "
7447
  "attention from you to keep it within TOP 10 positions"
7448
  msgstr ""
7449
- "Felicitări pentru clasarea cu acest cuvânt cheie, dar va necesita o atenție "
7450
- "specială din partea dvs. pentru a-l menține în pozițiile TOP 10"
7451
 
7452
- #: models/abstract/Assistant.php:210
7453
- #, fuzzy
7454
  msgid "Not enough data to process this task"
7455
  msgstr "Nu sunt suficiente date pentru a procesa această sarcină"
7456
 
7457
- #: models/abstract/Assistant.php:214 view/Blocks/Snippet.php:305
7458
  msgid "Current"
7459
  msgstr "Actual"
7460
 
7461
  #: models/bulkseo/Metas.php:57
7462
- #, fuzzy
7463
  msgid "Title not empty"
7464
  msgstr "Titlul nu este gol"
7465
 
7466
- #: models/bulkseo/Metas.php:58 view/Blocks/Snippet.php:184
7467
- #: view/Blocks/Snippet.php:671 view/Blocks/Snippet.php:938
7468
- #, fuzzy
7469
  msgid "Current Title"
7470
- msgstr "Titlul curent"
7471
 
7472
  #: models/bulkseo/Metas.php:60
7473
- #, fuzzy, php-format
7474
  msgid ""
7475
  "The title for this URL must not be empty. %s Write a title for this page. "
7476
  "The title is very important because it shows up in the browser tab and in "
7477
  "the Google listing for your page. %s The better you write the title, the "
7478
  "more clicks you can get when people find your page on search engines."
7479
  msgstr ""
7480
- "Titlul acestei URL nu trebuie să fie gol. %s Scrieți un titlu pentru "
7481
- "această pagină. Titlul este foarte important, deoarece apare în fila "
7482
- "browserului și în lista Google pentru pagina ta. %s Cu cât scrieți mai bine "
7483
- "titlul, cu atât mai multe clicuri puteți obține atunci când oamenii găsesc "
7484
- "pagina dvs. pe motoarele de căutare."
7485
 
7486
  #: models/bulkseo/Metas.php:63
7487
- #, fuzzy, php-format
7488
  msgid "Title up to %s chars"
7489
  msgstr "Titlu până la %s caractere"
7490
 
7491
  #: models/bulkseo/Metas.php:64
7492
- #, fuzzy
7493
  msgid "Current Title Length"
7494
- msgstr "Lungimea curentă a titlului"
7495
 
7496
  #: models/bulkseo/Metas.php:65 models/bulkseo/Metas.php:83
7497
- #: models/bulkseo/Opengraph.php:84 models/bulkseo/Opengraph.php:94
7498
- #: models/bulkseo/Twittercard.php:80 models/bulkseo/Twittercard.php:90
7499
  msgid "chars"
7500
  msgstr "caractere"
7501
 
7502
- #: models/bulkseo/Metas.php:66 models/bulkseo/Opengraph.php:85
7503
- #: models/bulkseo/Twittercard.php:81
7504
- #, fuzzy, php-format
7505
  msgid ""
7506
  "Title has to be longer than %s chars and up to %s chars. %s You can change "
7507
  "the title max length from %sSEO Settings > Automation%s."
7508
  msgstr ""
7509
- "Titlul trebuie să fie mai lung decât %s caractere și până la %s caractere. "
7510
- "%s Puteți modifica lungimea maximă a titlului de la %sSEO Setări> "
7511
- "Automatizare %s."
7512
 
7513
- #: models/bulkseo/Metas.php:69 models/focuspages/Snippet.php:131
7514
  msgid "Keyword in title"
7515
  msgstr "Cuvânt cheie in Titlu"
7516
 
7517
  #: models/bulkseo/Metas.php:70 models/bulkseo/Metas.php:88
7518
- #, fuzzy
7519
- #| msgid "Keyword"
7520
  msgid "Snippet Keyword"
7521
- msgstr "Cuvant cheie:"
7522
 
7523
  #: models/bulkseo/Metas.php:71 models/bulkseo/Metas.php:89
7524
- #, fuzzy
7525
- #| msgid "manage keywords"
7526
  msgid "no keywords"
7527
- msgstr "Cuvinte cheie"
7528
 
7529
- #: models/bulkseo/Metas.php:72 models/focuspages/Snippet.php:134
7530
- #, fuzzy, php-format
7531
  msgid ""
7532
  "Your keyword must be present in the title of the page. %s It's a very "
7533
  "important element through which you make sure that you connect the "
@@ -7537,69 +7444,63 @@ msgid ""
7537
  "smartwatch designed by VectorWatch. %s \"Buy Cheap Smartwatch - Luna by "
7538
  "VectorWatch\" would be a much better choice for a title."
7539
  msgstr ""
7540
- "Cuvântul cheie trebuie să fie prezent în titlul paginii. %s Este un element "
7541
- "foarte important prin care vă asigurați că conectați intenția căutătorului "
7542
- "la conținutul de pe pagina dvs. %s Dacă caut „cumpărați smartwatch-uri "
7543
- "ieftine” și îmi dați o pagină numită „Prezentare Luna”, nu voi face "
7544
- "niciodată clic pe pagina dvs. De ce? Pentru că s-ar putea să nu știu că Luna "
7545
- "este un smartwatch proiectat de VectorWatch. %s \"Cumpărați SmartWatch "
7546
- "ieftin - Luna de VectorWatch\" ar fi o alegere mult mai bună pentru un titlu."
 
7547
 
7548
  #: models/bulkseo/Metas.php:75
7549
- #, fuzzy
7550
- #| msgid "Description:"
7551
  msgid "Description not empty"
7552
- msgstr "Descrierea:"
7553
 
7554
- #: models/bulkseo/Metas.php:76 view/Blocks/Snippet.php:236
7555
- #: view/Blocks/Snippet.php:715 view/Blocks/Snippet.php:982
7556
- #, fuzzy
7557
  msgid "Current Description"
7558
- msgstr "Descrierea curentă"
7559
 
7560
  #: models/bulkseo/Metas.php:78
7561
- #, fuzzy, php-format
7562
  msgid ""
7563
  "Meta descriptions are important for SEO on multiple search engines. %s You "
7564
  "need to have a meta description for this URL. %s The better you write it, "
7565
  "the higher the chances of people clicking on your listing when they find it "
7566
  "on search engines."
7567
  msgstr ""
7568
- "Descrierile meta sunt importante pentru SEO pe mai multe motoare de "
7569
- "căutare. %s Trebuie să aveți o meta descriere pentru această adresă URL. "
7570
- "%s Cu cât îl scrii mai bine, cu atât sunt mai mari șansele ca oamenii să "
7571
- "facă clic pe listă când o găsesc pe motoarele de căutare."
7572
 
7573
  #: models/bulkseo/Metas.php:81
7574
- #, fuzzy, php-format
7575
  msgid "Description up to %s chars"
7576
- msgstr "Descrierea până la %s caractere"
7577
 
7578
  #: models/bulkseo/Metas.php:82
7579
- #, fuzzy
7580
- #| msgid "Custom description: "
7581
  msgid "Current Description Length"
7582
- msgstr "Descrierea:"
7583
 
7584
- #: models/bulkseo/Metas.php:84 models/bulkseo/Opengraph.php:95
7585
- #: models/bulkseo/Twittercard.php:91
7586
- #, fuzzy, php-format
7587
  msgid ""
7588
  "Description has to be longer than %s chars and up to %s chars. %s You can "
7589
  "change the description max length from %sSEO Settings > Automation%s."
7590
  msgstr ""
7591
- "Descrierea trebuie să fie mai lungă de %s caractere și până la %s "
7592
- "caractere. %s Puteți schimba lungimea maximă a descrierii de la %sSEO "
7593
- "Setări> Automatizare %s."
7594
 
7595
- #: models/bulkseo/Metas.php:87 models/focuspages/Snippet.php:137
7596
- #, fuzzy
7597
- #| msgid "Custom description: "
7598
  msgid "Keyword in description"
7599
- msgstr "Descrierea:"
7600
 
7601
  #: models/bulkseo/Metas.php:90
7602
- #, fuzzy, php-format
7603
  msgid ""
7604
  "Same as with the title task. %s If a user reads the description of your page "
7605
  "on Google, but cannot find the keyword they searched for in that text, then "
@@ -7609,44 +7510,39 @@ msgid ""
7609
  "description of the pages it brings to TOP 10. It's pretty clear they care a "
7610
  "lot about this, because that's what people want to find on the search engine."
7611
  msgstr ""
7612
- "La fel și cu sarcina din titlu. %s Dacă un utilizator citește descrierea "
7613
- "paginii dvs. pe Google, dar nu poate găsi cuvântul cheie pe care l-a căutat "
7614
- "în textul respectiv, atunci ar avea șanse foarte mici de a face clic și de a "
7615
- "vizita pagina dvs. %s S-ar duce la pagina următoare clasată pe Google "
7616
- "pentru cuvântul cheie. %s Gândiți-vă la acest lucru: Google însuși încearcă "
7617
- "din ce în ce mai mult să afișeze cuvinte cheie în descrierea paginilor pe "
7618
- "care le aduce la TOP 10. Este destul de clar că le pasă foarte mult de acest "
7619
- "lucru, pentru că asta vor oamenii să găsească în motorul de căutare."
 
7620
 
7621
  #: models/bulkseo/Metas.php:93
7622
- #, fuzzy
7623
  msgid "Meta Keywords (2-4 Words)"
7624
- msgstr "Cuvinte cheie meta (2-4 cuvinte)"
7625
 
7626
  #: models/bulkseo/Metas.php:95
7627
- #, fuzzy
7628
- #| msgid "Enter a keyword"
7629
  msgid "no meta keywords"
7630
- msgstr "Adauga cuvant"
7631
 
7632
  #: models/bulkseo/Metas.php:96
7633
- #, fuzzy
7634
  msgid ""
7635
  "Even if Meta keywords are not mandatory for Google, it's important for other "
7636
  "search engines to find this meta and to index your post for these keywords."
7637
  msgstr ""
7638
- "Chiar dacă cuvintele cheie Meta nu sunt obligatorii pentru Google, este "
7639
- "important pentru alte motoare de căutare să găsească această meta și să îți "
7640
- "indexeze postarea pentru aceste cuvinte cheie."
7641
 
7642
  #: models/bulkseo/Metas.php:100
7643
- #, fuzzy
7644
- #| msgid "Current: "
7645
  msgid "Current Link"
7646
- msgstr "Pozitia curenta"
7647
 
7648
  #: models/bulkseo/Metas.php:102
7649
- #, fuzzy, php-format
7650
  msgid ""
7651
  "You don't have to set any canonical link if your post is not copied from "
7652
  "another source. %s Squirrly will alert you if your canonical link is not the "
@@ -7654,348 +7550,326 @@ msgid ""
7654
  "search engines which URL is the original one. The original is the one that "
7655
  "gets indexed and ranked."
7656
  msgstr ""
7657
- "Nu trebuie să setați niciun link canonic dacă postarea dvs. nu este copiată "
7658
- "dintr-o altă sursă. %s Squirrly vă va avertiza dacă legătura dvs. canonică "
7659
- "nu este aceeași cu adresa URL a postării curente. %s Link-ul canonic este "
7660
- "utilizat pentru a spune motoarelor de căutare care este URL-ul original. "
7661
- "Originalul este cel care este indexat și clasat."
7662
 
7663
  #: models/bulkseo/Metas.php:111
7664
- #, fuzzy
7665
  msgid "Some Squirrly Metas are deactivated."
7666
- msgstr "Unele metale Squirrly sunt dezactivate."
7667
 
7668
  #: models/bulkseo/Metas.php:116
7669
  msgid ""
7670
  "Some Squirrly Metas are not set correctly. Click to open the Assistant in "
7671
  "the right sidebar and follow the instructions."
7672
  msgstr ""
 
 
7673
 
7674
  #: models/bulkseo/Metas.php:121
7675
- #, fuzzy
7676
  msgid "Some Squirrly Metas are generated automatically."
7677
- msgstr "Unele metale Squirrly sunt generate automat."
7678
 
7679
  #: models/bulkseo/Metas.php:124
7680
- #, fuzzy
7681
  msgid "All Squirrly Metas are customized and set correctly."
7682
- msgstr "Toate metoda Squirrly sunt personalizate și setate corect."
7683
 
7684
  #: models/bulkseo/Metas.php:154 models/bulkseo/Metas.php:190
7685
  #: models/bulkseo/Metas.php:223 models/bulkseo/Metas.php:267
7686
  #: models/bulkseo/Metas.php:303 models/bulkseo/Metas.php:336
7687
  #: models/bulkseo/Metas.php:384 models/bulkseo/Metas.php:423
7688
- #: models/bulkseo/Opengraph.php:148 models/bulkseo/Opengraph.php:184
7689
- #: models/bulkseo/Opengraph.php:216 models/bulkseo/Opengraph.php:252
7690
- #: models/bulkseo/Opengraph.php:288 models/bulkseo/Twittercard.php:144
7691
- #: models/bulkseo/Twittercard.php:180 models/bulkseo/Twittercard.php:212
7692
- #: models/bulkseo/Twittercard.php:248 models/bulkseo/Twittercard.php:284
7693
- #: models/bulkseo/Visibility.php:80 models/bulkseo/Visibility.php:119
7694
- #: models/bulkseo/Visibility.php:152
7695
- #, fuzzy
7696
  msgid "Squirrly Snippet is deactivated from this post."
7697
- msgstr "Squirrly Snippet este dezactivat de la această postare."
7698
 
7699
  #: models/bulkseo/Metas.php:158 models/bulkseo/Metas.php:194
7700
  #: models/bulkseo/Metas.php:227 models/bulkseo/Metas.php:271
7701
  #: models/bulkseo/Metas.php:307 models/bulkseo/Metas.php:340
7702
  #: models/bulkseo/Metas.php:388 models/bulkseo/Metas.php:427
7703
- #, fuzzy, php-format
7704
  msgid ""
7705
  "SEO Metas for this post type are deactivated from %sSEO Settings > Automation"
7706
  "%s."
7707
  msgstr ""
7708
- "Metasele SEO pentru acest tip de post sunt dezactivate din %setări ESSEO> "
7709
- "Automatizare %s."
7710
 
7711
  #: models/bulkseo/Metas.php:162 models/bulkseo/Metas.php:198
7712
  #: models/bulkseo/Metas.php:231
7713
- #, fuzzy, php-format
7714
  msgid "Meta Title is deactivated from %sSEO Settings > Metas%s."
7715
- msgstr "Titlul Meta este dezactivat din %setări SSEO> Metas %s."
7716
 
7717
  #: models/bulkseo/Metas.php:166 models/bulkseo/Metas.php:202
7718
  #: models/bulkseo/Metas.php:235 models/bulkseo/Metas.php:279
7719
  #: models/bulkseo/Metas.php:315 models/bulkseo/Metas.php:348
7720
  #: models/bulkseo/Metas.php:392 models/bulkseo/Metas.php:435
7721
- #, fuzzy, php-format
7722
  msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
7723
- msgstr "Metasele SEO sunt dezactivate din %setări SSEO> Metas %s."
7724
 
7725
  #: models/bulkseo/Metas.php:175 models/bulkseo/Metas.php:211
7726
- #: models/bulkseo/Opengraph.php:169 models/bulkseo/Opengraph.php:205
7727
- #: models/bulkseo/Twittercard.php:165 models/bulkseo/Twittercard.php:201
7728
- #, fuzzy
7729
- #| msgid "<< Leave it automatically"
7730
  msgid "Title is generated automatically."
7731
- msgstr "<< Sa se adauge automat"
7732
 
7733
  #: models/bulkseo/Metas.php:239 models/bulkseo/Metas.php:352
7734
  #: models/bulkseo/Metas.php:396
7735
- #, fuzzy, php-format
7736
  msgid "Meta Keywords is deactivated from %sSEO Settings > Metas%s."
7737
- msgstr "Cuvinte cheie Meta este dezactivat de la %sSEO Setări> Metas %s."
7738
 
7739
  #: models/bulkseo/Metas.php:275 models/bulkseo/Metas.php:311
7740
  #: models/bulkseo/Metas.php:344
7741
- #, fuzzy, php-format
7742
  msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
7743
- msgstr "Meta Description este dezactivat de la %sSEO Setări> Metas %s."
7744
 
7745
  #: models/bulkseo/Metas.php:288 models/bulkseo/Metas.php:325
7746
- #: models/bulkseo/Opengraph.php:237 models/bulkseo/Opengraph.php:273
7747
- #: models/bulkseo/Twittercard.php:233 models/bulkseo/Twittercard.php:269
7748
- #, fuzzy
7749
  msgid "Description is generated automatically."
7750
  msgstr "Descrierea este generată automat."
7751
 
7752
  #: models/bulkseo/Metas.php:431
7753
- #, fuzzy, php-format
7754
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
7755
- msgstr "Meta Canonical este dezactivat de la %sSEO Setări> Metas %s."
7756
 
7757
- #: models/bulkseo/Opengraph.php:78
7758
- #, fuzzy
7759
  msgid "OG title not empty"
7760
- msgstr "Titlul OG nu este gol"
7761
 
7762
- #: models/bulkseo/Opengraph.php:80
7763
- #, fuzzy, php-format
7764
  msgid ""
7765
  "You need to have an Open Graph title for this post. %s It will help you "
7766
  "control the way your post looks when people share this URL to Facebook, "
7767
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
7768
  msgstr ""
7769
- "Trebuie să aveți un titlu Open Graph pentru această postare. %s va ajuta "
7770
- "să controlați felul în care arată postarea dvs. atunci când oamenii "
7771
- "partajează această adresă URL pe Facebook, LinkedIN și alte rețele sociale. "
7772
- "%s Este important și în scopuri SEO."
7773
 
7774
- #: models/bulkseo/Opengraph.php:83
7775
- #, fuzzy, php-format
7776
  msgid "OG title up to %s chars"
7777
  msgstr "Titlu OG până la %s caractere"
7778
 
7779
- #: models/bulkseo/Opengraph.php:88
7780
- #, fuzzy
7781
  msgid "OG description not empty"
7782
  msgstr "Descrierea OG nu este goală"
7783
 
7784
- #: models/bulkseo/Opengraph.php:90
7785
- #, fuzzy, php-format
7786
  msgid ""
7787
  "You need to have an Open Graph description for this post. %s It will help "
7788
  "you control the way your post looks when people share this URL to Facebook, "
7789
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
7790
  msgstr ""
7791
- "Trebuie să aveți o descriere Open Graph pentru această postare. %s va "
7792
- "ajuta să controlați felul în care arată postarea dvs. atunci când oamenii "
7793
- "partajează această adresă URL pe Facebook, LinkedIN și alte rețele sociale. "
7794
- "%s Este important și în scopuri SEO."
7795
 
7796
- #: models/bulkseo/Opengraph.php:93
7797
- #, fuzzy, php-format
7798
  msgid "OG description up to %s chars"
7799
- msgstr "Descrierea OG până la %s caractere"
7800
 
7801
- #: models/bulkseo/Opengraph.php:98
7802
- #, fuzzy
7803
- #| msgid "Images"
7804
  msgid "OG Image"
7805
- msgstr "Imagini"
7806
 
7807
- #: models/bulkseo/Opengraph.php:99 models/bulkseo/Twittercard.php:95
7808
- #, fuzzy
7809
  msgid "(featured image)"
7810
- msgstr "(imagine prezentată)"
7811
 
7812
- #: models/bulkseo/Opengraph.php:100
7813
- #, fuzzy, php-format
7814
  msgid ""
7815
  "Set a good looking image for your URL. It needs to look good in Facebook and "
7816
  "LinkedIN feeds when people will share this URL. %s A great image will "
7817
  "attract more clicks to your site."
7818
  msgstr ""
7819
- "Setați o imagine cu aspect bun pentru adresa URL. Trebuie să arate bine în "
7820
- "fluxurile Facebook și LinkedIN atunci când oamenii vor partaja această "
7821
- "adresă URL. %s O imagine excelentă va atrage mai multe clicuri pe site-ul "
7822
- "dvs."
7823
 
7824
- #: models/bulkseo/Opengraph.php:114
7825
- #, fuzzy
7826
  msgid "Open Graph is deactivated."
7827
  msgstr "Open Graph este dezactivat."
7828
 
7829
- #: models/bulkseo/Opengraph.php:119
7830
  msgid ""
7831
  "Open Graph is not set correctly. Click to open the Assistant in the right "
7832
  "sidebar and follow the instructions."
7833
  msgstr ""
 
 
7834
 
7835
- #: models/bulkseo/Opengraph.php:124
7836
- #, fuzzy
7837
- #| msgid "<< Leave it automatically"
7838
  msgid "Open Graph is generated automatically."
7839
- msgstr "<< Sa se adauge automat"
7840
 
7841
- #: models/bulkseo/Opengraph.php:127
7842
- #, fuzzy
7843
  msgid "Open Graph is customized and set correctly."
7844
  msgstr "Open Graph este personalizat și setat corect."
7845
 
7846
- #: models/bulkseo/Opengraph.php:152 models/bulkseo/Opengraph.php:188
7847
- #: models/bulkseo/Opengraph.php:220 models/bulkseo/Opengraph.php:256
7848
- #: models/bulkseo/Opengraph.php:292
7849
- #, fuzzy, php-format
7850
  msgid ""
7851
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
7852
  "%s."
7853
  msgstr ""
7854
- "Deschiderea graficului pentru acest tip de post este dezactivată de la %sSEO "
7855
- "Setări> Automatizare %s."
7856
 
7857
- #: models/bulkseo/Opengraph.php:156 models/bulkseo/Opengraph.php:192
7858
- #: models/bulkseo/Opengraph.php:224 models/bulkseo/Opengraph.php:260
7859
- #: models/bulkseo/Opengraph.php:296
7860
- #, fuzzy, php-format
7861
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
7862
- msgstr "Open Graph este dezactivat din %sSEO Setări> Social Media %s."
7863
 
7864
- #: models/bulkseo/Opengraph.php:160 models/bulkseo/Opengraph.php:196
7865
- #: models/bulkseo/Opengraph.php:228 models/bulkseo/Opengraph.php:264
7866
- #: models/bulkseo/Opengraph.php:300 models/bulkseo/Twittercard.php:156
7867
- #: models/bulkseo/Twittercard.php:192 models/bulkseo/Twittercard.php:224
7868
- #: models/bulkseo/Twittercard.php:260 models/bulkseo/Twittercard.php:296
7869
- #, fuzzy, php-format
7870
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
7871
- msgstr "Social Media este dezactivat din %sSEO Setări> Social Media %s."
7872
 
7873
- #: models/bulkseo/Twittercard.php:74
7874
- #, fuzzy
7875
  msgid "TC title not empty"
7876
  msgstr "Titlul TC nu este gol"
7877
 
7878
- #: models/bulkseo/Twittercard.php:76
7879
- #, fuzzy, php-format
7880
  msgid ""
7881
  "You need to have a title for the Twitter Card of this post. %s It will help "
7882
  "you control the way your post looks when it's shared on Twitter. %s It's "
7883
  "also important for SEO purposes."
7884
  msgstr ""
7885
- "Trebuie să aveți un titlu pentru cardul Twitter al acestei postări. %s Te "
7886
- "va ajuta să controlezi aspectul postării tale când este distribuită pe "
7887
- "Twitter. %s Este important și în scopuri SEO."
7888
 
7889
- #: models/bulkseo/Twittercard.php:79
7890
- #, fuzzy, php-format
7891
  msgid "TC title up to %s chars"
7892
  msgstr "Titlul TC până la %s caractere"
7893
 
7894
- #: models/bulkseo/Twittercard.php:84
7895
- #, fuzzy
7896
- #| msgid "Description:"
7897
  msgid "TC Description not empty"
7898
- msgstr "Descrierea:"
7899
 
7900
- #: models/bulkseo/Twittercard.php:86
7901
- #, fuzzy, php-format
7902
  msgid ""
7903
  "You need to have a Twitter Card description for this post. %s It will help "
7904
  "you control the way your post looks when people share this URL on Twitter. "
7905
  "Good copywriting on your Twitter Card description will attract more clicks "
7906
  "to your site. %s It's also important for SEO purposes."
7907
  msgstr ""
7908
- "Trebuie să aveți o descriere a cardului Twitter pentru această postare. %s "
7909
- " va ajuta să controlați felul în care arată postarea dvs. atunci când "
7910
- "oamenii partajează această adresă URL pe Twitter. O redactare bună a "
7911
- "descrierii cardului dvs. Twitter va atrage mai multe clicuri pe site-ul "
7912
- "dvs. %s Este important și în scopuri SEO."
7913
 
7914
- #: models/bulkseo/Twittercard.php:89
7915
- #, fuzzy, php-format
7916
  msgid "TC description up to %s chars"
7917
- msgstr "Descrierea TC până la %s caractere"
7918
 
7919
- #: models/bulkseo/Twittercard.php:94
7920
- #, fuzzy
7921
- #| msgid "Images"
7922
  msgid "TC Image"
7923
- msgstr "Imagini"
7924
 
7925
- #: models/bulkseo/Twittercard.php:96
7926
- #, fuzzy, php-format
7927
  msgid ""
7928
  "Set a good looking image for your URL. It needs to look good in Twitter "
7929
  "feeds when people will share this URL. %s A great image will attract more "
7930
  "clicks to your site."
7931
  msgstr ""
7932
- "Setați o imagine cu aspect bun pentru adresa URL. Trebuie să arate bine în "
7933
- "fluxurile Twitter atunci când oamenii vor partaja această adresă URL. %s O "
7934
- "imagine excelentă va atrage mai multe clicuri pe site-ul dvs."
7935
 
7936
- #: models/bulkseo/Twittercard.php:110
7937
- #, fuzzy
7938
  msgid "Twitter Card is deactivated."
7939
  msgstr "Cardul Twitter este dezactivat."
7940
 
7941
- #: models/bulkseo/Twittercard.php:115
7942
  msgid ""
7943
  "Twitter Card is not set correctly. Click to open the Assistant in the right "
7944
  "sidebar and follow the instructions."
7945
  msgstr ""
 
 
7946
 
7947
- #: models/bulkseo/Twittercard.php:120
7948
- #, fuzzy
7949
  msgid "Twitter Card is generated automatically."
7950
  msgstr "Cardul Twitter este generat automat."
7951
 
7952
- #: models/bulkseo/Twittercard.php:123
7953
- #, fuzzy
7954
  msgid "Twitter Card is customized and set correctly."
7955
- msgstr "Cardul Twitter este personalizat și setat corect."
7956
 
7957
- #: models/bulkseo/Twittercard.php:148 models/bulkseo/Twittercard.php:184
7958
- #: models/bulkseo/Twittercard.php:216 models/bulkseo/Twittercard.php:252
7959
- #: models/bulkseo/Twittercard.php:288
7960
- #, fuzzy, php-format
7961
  msgid ""
7962
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
7963
  "Automation%s."
7964
  msgstr ""
7965
- "Cardul Twitter pentru acest tip de post este dezactivat de la %sSEO Setări> "
7966
- "Automatizare %s."
7967
 
7968
- #: models/bulkseo/Twittercard.php:152 models/bulkseo/Twittercard.php:188
7969
- #: models/bulkseo/Twittercard.php:220 models/bulkseo/Twittercard.php:256
7970
- #: models/bulkseo/Twittercard.php:292
7971
- #, fuzzy, php-format
7972
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
7973
- msgstr "Cardul Twitter este dezactivat din %sSEO Setări> Social Media %s."
7974
 
7975
  #: models/bulkseo/Visibility.php:27
7976
- #, fuzzy
7977
  msgid "Visible on Google"
7978
  msgstr "Vizibil pe Google"
7979
 
7980
  #: models/bulkseo/Visibility.php:28
7981
- #, fuzzy, php-format
7982
  msgid ""
7983
  "Let Google Index this page. %s You need to make sure your settings are "
7984
  "turned to green for the 'let Google index this page' section of this URL's "
7985
  "visibility settings."
7986
  msgstr ""
7987
- "Permiteți indexului Google această pagină. %s Trebuie să vă asigurați că "
7988
- "setările dvs. sunt transformate în verde pentru secțiunea „lăsați Google să "
7989
- "indexeze această pagină” din setările de vizibilitate ale URL-ului."
7990
 
7991
- #: models/bulkseo/Visibility.php:31 view/Blocks/Snippet.php:1126
7992
- #, fuzzy
7993
- #| msgid "The total authority for this post"
7994
  msgid "Send Authority to this page"
7995
- msgstr "Nu sunt suficiente informatii pentru acest post"
7996
 
7997
  #: models/bulkseo/Visibility.php:32
7998
- #, fuzzy, php-format
7999
  msgid ""
8000
  "Pass SEO authority to this page. %s If you want this page to really be "
8001
  "visible, then you must allow the flow of authority from the previous pages "
@@ -8004,22 +7878,20 @@ msgid ""
8004
  "current page's visibility. %s You need to make sure your settings are turned "
8005
  "to green for the 'Pass Link Juice' section of this URL's visibility settings."
8006
  msgstr ""
8007
- "Treceți autoritatea SEO pe această pagină. %s Dacă doriți ca această pagină "
8008
- "să fie cu adevărat vizibilă, atunci trebuie să permiteți fluxul de "
8009
- "autoritate de la paginile anterioare către aceasta. %s Pagina anterioară "
8010
- "înseamnă orice pagină care o conduce la cea curentă. Trecerea autorității de "
8011
- "la pagina anterioară la aceasta va îmbunătăți vizibilitatea paginii "
8012
- "curente. %s Trebuie să vă asigurați că setările dvs. sunt transformate în "
8013
- "verde pentru secțiunea „Treceți legătura legăturii” din setările de "
8014
- "vizibilitate ale acestui URL."
8015
 
8016
  #: models/bulkseo/Visibility.php:35
8017
- #, fuzzy
8018
  msgid "Add page in sitemap"
8019
- msgstr "Adăugați pagina în sitemap"
8020
 
8021
  #: models/bulkseo/Visibility.php:36
8022
- #, fuzzy, php-format
8023
  msgid ""
8024
  "Turn the 'Show it in Sitemap.xml' toggle to green (ON). %s That setting "
8025
  "helps you control if the current URL should be found within the sitemap. "
@@ -8027,93 +7899,123 @@ msgid ""
8027
  "out of the sitemap. %s If your purpose is to maximize visibility for the "
8028
  "current URL, then you need to add it to Sitemap."
8029
  msgstr ""
8030
- "Activați comutarea „Afișați-o în Sitemap.xml la verde (ON). %s Această "
8031
- "setare vă ajută să controlați dacă adresa URL curentă ar trebui să fie "
8032
- "găsită în harta site-ului. Există pagini pe care le veți dori în sitemap și "
8033
- "pagini pe care le veți dori din harta site-ului. %s Dacă scopul dvs. este "
8034
- "de a maximiza vizibilitatea pentru URL-ul curent, atunci trebuie să îl "
8035
- "adăugați la Sitemap."
8036
 
8037
- #: models/bulkseo/Visibility.php:50
8038
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8039
  msgid "Some visibility options are inactive."
8040
  msgstr "Unele opțiuni de vizibilitate sunt inactive."
8041
 
8042
- #: models/bulkseo/Visibility.php:55
8043
  msgid ""
8044
  "Visibility is not set correctly. Click to open the Assistant in the right "
8045
  "sidebar and follow the instructions."
8046
  msgstr ""
 
 
8047
 
8048
- #: models/bulkseo/Visibility.php:59
8049
- #, fuzzy
8050
  msgid "Visibility is set correctly."
8051
  msgstr "Vizibilitatea este setată corect."
8052
 
8053
- #: models/bulkseo/Visibility.php:84
8054
- #, fuzzy, php-format
8055
  msgid ""
8056
  "Noindex for this post type is deactivated from %sSEO Settings > Automation%s."
8057
  msgstr ""
8058
- "Noindex pentru acest tip de post este dezactivat din %sSEO Setări> "
8059
- "Automatizare %s."
8060
 
8061
- #: models/bulkseo/Visibility.php:88 models/bulkseo/Visibility.php:127
8062
- #, fuzzy, php-format
8063
  msgid "Robots Meta is deactivated from %sSEO Settings > SEO Metas%s."
8064
- msgstr "Robots Meta este dezactivat din %sSEO Setări> SEO Metas %s."
8065
 
8066
- #: models/bulkseo/Visibility.php:92 models/bulkseo/Visibility.php:131
8067
- #, fuzzy, php-format
8068
  msgid "SEO Metas is deactivated from %sSEO Settings > SEO Metas%s."
8069
- msgstr "Metasele SEO sunt dezactivate din setările %sSEO> Metasele SEO %s."
8070
 
8071
- #: models/bulkseo/Visibility.php:101
8072
- #, fuzzy, php-format
8073
  msgid ""
8074
  "You selected '%s' in Settings > Reading. It's important to uncheck that "
8075
  "option."
8076
  msgstr ""
8077
- "Ați selectat %s în Setări> Citire. Este important să debifați această "
8078
  "opțiune."
8079
 
8080
- #: models/bulkseo/Visibility.php:123
8081
- #, fuzzy, php-format
8082
  msgid ""
8083
  "Nofollow for this post type is deactivated from %sSEO Settings > Automation"
8084
  "%s."
8085
  msgstr ""
8086
- "Nofollow pentru acest tip de post este dezactivat din %sSEO Setări> "
8087
- "Automatizare %s."
8088
 
8089
- #: models/bulkseo/Visibility.php:156
8090
- #, fuzzy, php-format
8091
  msgid ""
8092
  "This post type is excluded from sitemap. See %sSEO Settings > Automation%s."
8093
  msgstr ""
8094
- "Acest tip de post este exclus din harta site-ului. Consultați %sSEO Setări> "
8095
- "Automatizare %s."
8096
 
8097
- #: models/bulkseo/Visibility.php:160
8098
- #, fuzzy, php-format
8099
  msgid "Sitemap XML is deactivated from %sSEO Settings > Sitemap XML%s."
8100
- msgstr "Sitemap XML este dezactivat din %sSEO Setări> Sitemap XML %s."
8101
 
8102
- #: models/domain/Patterns.php:377
 
 
 
 
 
8103
  msgid "Page"
8104
  msgstr "Pagină"
8105
 
8106
- #: models/domain/Patterns.php:378
8107
  msgid "of"
8108
  msgstr "din"
8109
 
8110
  #: models/focuspages/Accuracy.php:21
8111
- #, fuzzy
8112
  msgid "Rank accuracy"
8113
- msgstr "Precizia rangului"
8114
 
8115
  #: models/focuspages/Accuracy.php:22
8116
- #, fuzzy, php-format
8117
  msgid ""
8118
  "Do you need better accuracy for your ranking results? %s Look at the "
8119
  "%sBusiness Plan%s pricing for Squirrly SEO. %s The SERP Checker Available on "
@@ -8127,33 +8029,33 @@ msgid ""
8127
  "Business Plan. %s If you just want casually to know your rankings and not "
8128
  "care about FULL accuracy, then you can stick with your current plan."
8129
  msgstr ""
8130
- "Aveți nevoie de o precizie mai bună pentru rezultatele clasamentului dvs.? "
8131
- "%s Uită-te la prețurile %sBusiness Plan %s pentru Squirrly SEO. %s "
8132
- "Verificatorul SERP disponibil pe planurile GRATUIT și PRO se realizează prin "
8133
- "integrarea Search Console, ceea ce înseamnă că informațiile nu sunt cât se "
8134
- "poate de precise și nu vor descrie clar poziția exactă în Google. %s De "
8135
- "ce? %s Google folosește o medie când vine vorba de poziție. Și nu este "
8136
- "adevărata poziție. Media se face în funcție de pozițiile pe care pagina a "
8137
- "fost găsită atunci când utilizatorii au făcut clic pe ea. %s De asemenea, "
8138
- "datele din Search Console sunt puțin vechi, așa dacă încercați activ să "
8139
- "vă măriți clasamentele zi de zi, aveți nevoie de Planul de afaceri. %s Dacă "
8140
- "dorești doar să-ți cunoști clasamentul șinu-ți pese de acuratețea "
8141
- "COMPLETĂ, atunci poți respecta planul tău actual."
 
8142
 
8143
  #: models/focuspages/Accuracy.php:40 models/focuspages/Clicks.php:62
8144
  #: models/focuspages/Ctr.php:62 models/focuspages/Impressions.php:62
8145
  #: models/focuspages/Indexability.php:95 models/focuspages/Traffic.php:101
8146
- #, fuzzy
8147
  msgid "Connect Google Search"
8148
- msgstr "Inregistreaza-te la Squirrly.co"
8149
 
8150
  #: models/focuspages/Audit.php:101
8151
- #, fuzzy, php-format
8152
  msgid "Audit score is over %s"
8153
- msgstr "Scorul de audit este peste %s"
8154
 
8155
  #: models/focuspages/Audit.php:104
8156
- #, fuzzy, php-format
8157
  msgid ""
8158
  "Even though we recommend getting an Audit score of 84 or above, a score of "
8159
  "%s will do. %s The %sAudit%s made by Squirrly takes a lot of things into "
@@ -8165,24 +8067,23 @@ msgid ""
8165
  "not rank high if most of the website has low quality SEO and low marketing "
8166
  "metrics."
8167
  msgstr ""
8168
- "Chiar dacă vă recomandăm să obțineți un scor de audit peste 84 sau mai mare, "
8169
- "un scor de %s o va face. %s %sAudit %s realizat de Squirrly are în vedere o "
8170
- "mulțime de lucruri: blogging, SEO, social media, link-uri, autoritate, "
8171
- "trafic. Toate aceste aspecte contribuie direct sau indirect la SEO-ul "
8172
- "general al site-ului dvs. %s Prin urmare, fără un scor bun pe Auditul dvs. "
8173
- "este destul de probabil ca Google să nu poziționeze paginile dvs. suficient "
8174
- "de ridicate, deoarece, în general, site-ul dvs. web nu face suficient de "
8175
- "bine pentru ca acesta fie considerat prioritar. %s O pagină nu va avea "
8176
- "un nivel înalt dacă majoritatea site-ului web are valori SEO de calitate "
8177
- "scăzută și valori de marketing scăzute."
8178
 
8179
  #: models/focuspages/Audit.php:107
8180
- #, fuzzy
8181
  msgid "No duplicate titles"
8182
- msgstr "Fără titluri duplicate"
8183
 
8184
  #: models/focuspages/Audit.php:108
8185
- #, fuzzy, php-format
8186
  msgid ""
8187
  "Make sure that you don't have duplicate titles across pages from your site. "
8188
  "%s If you do, then use canonical links to point the duplicate pages towards "
@@ -8192,22 +8093,20 @@ msgid ""
8192
  "%sSquirrly > SEO Settings > Automation%s. There you will find the Patterns "
8193
  "tab."
8194
  msgstr ""
8195
- "Asigurați-vă că nu aveți titluri duplicate în paginile de pe site-ul dvs. "
8196
- "%s Dacă faceți acest lucru, atunci utilizați legături canonice pentru a "
8197
- "îndrepta paginile duplicate către original. %s În caz contrar, dacă este "
8198
- "prea greu să personalizezi prea multe titluri simultan, pur și simplu "
8199
- "folosește funcția Patterns din Squirrly. Veți putea definiți tiparele, "
8200
- "astfel încât titlurile dvs. să pară unice. %s Accesați %sSquirrly> Setări "
8201
- "SEO> Automatizare %s. Acolo veți găsi fila Modele."
8202
 
8203
  #: models/focuspages/Audit.php:111
8204
- #, fuzzy
8205
- #| msgid "Custom description: "
8206
  msgid "No duplicate description"
8207
- msgstr "Descrierea:"
8208
 
8209
  #: models/focuspages/Audit.php:112
8210
- #, fuzzy, php-format
8211
  msgid ""
8212
  "Make sure that your pages do not have duplicate descriptions. %s This is "
8213
  "super easy to fix if you're using the SEO Automation feature from Squirrly "
@@ -8217,55 +8116,51 @@ msgid ""
8217
  "pages their own custom descriptions: go to the %sSquirrly SEO > Bulk SEO%s "
8218
  "and see which pages have this problem."
8219
  msgstr ""
8220
- "Asigurați-vă că paginile dvs. nu au descrieri duplicate. %s Acest lucru "
8221
- "este foarte ușor de remediat dacă utilizați funcția de automatizare SEO de "
8222
- "la Squirrly SEO, pentru va genera automat descrierea META din conținutul "
8223
- "paginii dvs. (în cazul în care nu ați introdus deja o descriere "
8224
- "personalizată). %s Dacă doriți să remediați această problemă oferind "
8225
- "paginilor problematice propriile lor descrieri personalizate: accesați "
8226
- "%sSquirrly SEO> Bulk SEO %s și vedeți ce pagini au această problemă."
8227
 
8228
  #: models/focuspages/Audit.php:115
8229
- #, fuzzy
8230
  msgid "No empty titles"
8231
- msgstr "Nu există titluri goale"
8232
 
8233
  #: models/focuspages/Audit.php:116
8234
- #, fuzzy, php-format
8235
  msgid ""
8236
  "Make sure that you do not have pages with empty titles. %s This means: pages "
8237
  "where you haven't placed a meta title in your Snippet. %s Features like SEO "
8238
  "Automation or SEO Snippet from Squirrly SEO will help you easily fix this "
8239
  "problem by either automating or customizing descriptions for your pages."
8240
  msgstr ""
8241
- "Asigurați-vă că nu aveți pagini cu titluri goale. %s Aceasta înseamnă: "
8242
- "pagini în care nu ați plasat un titlu meta în fragmentul dvs. %s "
8243
- "Caracteristici precum SEO Automation sau SEO Snippet de la Squirrly SEO vă "
8244
- "vor ajuta să remediați cu ușurință această problemă, fie automatizând sau "
8245
- "personalizând descrierile pentru paginile dvs."
8246
 
8247
  #: models/focuspages/Audit.php:119
8248
- #, fuzzy
8249
- #| msgid "Custom description: "
8250
  msgid "No empty descriptions"
8251
- msgstr "Descrierea:"
8252
 
8253
  #: models/focuspages/Audit.php:120
8254
- #, fuzzy, php-format
8255
  msgid ""
8256
  "Make sure that you do not have pages with empty descriptions. %s This means: "
8257
  "pages where you haven't placed a meta description. %s Features like SEO "
8258
  "Automation or SEO Snippet from Squirrly SEO will help you easily fix this "
8259
  "problem by either automating or customizing descriptions for your pages."
8260
  msgstr ""
8261
- "Asigurați-vă că nu aveți pagini cu descrieri goale. %s Aceasta înseamnă: "
8262
- "pagini în care nu ați plasat o meta descriere. %s Caracteristici precum SEO "
8263
- "Automation sau SEO Snippet de la Squirrly SEO vă vor ajuta să remediați cu "
8264
- "ușurință această problemă, fie automatizând sau personalizând descrierile "
8265
- "pentru paginile dvs."
8266
 
8267
  #: models/focuspages/Audit.php:123
8268
- #, fuzzy
8269
  msgid "SEO speed"
8270
  msgstr "Viteza SEO"
8271
 
@@ -8274,69 +8169,65 @@ msgid "sec"
8274
  msgstr "sec"
8275
 
8276
  #: models/focuspages/Audit.php:125
8277
- #, fuzzy, php-format
8278
  msgid ""
8279
  "You need to get good loading times for your pages. %s Good loading times "
8280
  "will help you rank higher in Google, while pages that load very slowly will "
8281
  "drag you down in search results."
8282
  msgstr ""
8283
- "Trebuie să obțineți timp de încărcare bun pentru paginile dvs. %s Timpurile "
8284
- "bune de încărcare vă vor ajuta să obțineți un nivel mai ridicat în Google, "
8285
- "în timp ce paginile care se încarcă foarte încet vă vor trage în jos în "
8286
- "rezultatele căutării."
8287
 
8288
  #: models/focuspages/Audit.php:128
8289
- #, fuzzy
8290
  msgid "Mobile-friendly"
8291
- msgstr "Pentru dispozitive mobile"
8292
 
8293
  #: models/focuspages/Audit.php:129
8294
- #, fuzzy, php-format
8295
  msgid ""
8296
  "Your website must be mobile friendly. %s It used to be an optional thing for "
8297
  "Google until now, but it made it quite mandatory. %s Google prefers to "
8298
  "display sites which are mobile friendly higher in search results, because "
8299
  "most people search using mobile devices these days."
8300
  msgstr ""
8301
- "Site-ul dvs. web trebuie să fie mobil. %s A fost un lucru opțional pentru "
8302
- "Google până acum, dar a devenit destul de obligatoriu. %s Google preferă să "
8303
- "afișeze site-uri care sunt mai prietenoase pentru mobil în rezultatele "
8304
- "căutării, deoarece majoritatea oamenilor caută utilizând dispozitive mobile "
8305
- "în aceste zile."
8306
 
8307
  #: models/focuspages/Audit.php:149
8308
- #, fuzzy
8309
  msgid "Go to Audit"
8310
- msgstr "Accesați Audit"
8311
 
8312
  #: models/focuspages/Audit.php:151
8313
- #, fuzzy
8314
  msgid "Note! The audit is not ready yet"
8315
- msgstr "Notă! Auditul nu este încă pregătit"
8316
 
8317
  #: models/focuspages/Audit.php:152
8318
- #, fuzzy
8319
  msgid "Request a new audit"
8320
  msgstr "Solicitați un nou audit"
8321
 
8322
  #: models/focuspages/Authority.php:58
8323
- #, fuzzy, php-format
8324
  msgid "Authority over %s"
8325
- msgstr "Autoritatea peste %s"
8326
 
8327
  #: models/focuspages/Authority.php:60
8328
- #, fuzzy, php-format
8329
  msgid ""
8330
  "Your Page Authority Needs to be over %s to complete this task. %s To do that "
8331
  "you'll need good metrics for all the tasks in the Traffic Health section of "
8332
  "Focus Pages. %s You'll also need inner links, social media signals and "
8333
  "backlinks from 3rd party sites."
8334
  msgstr ""
8335
- "Autoritatea dvs. de pagină trebuie să depășească %s pentru a finaliza "
8336
- "această sarcină. %s Pentru a face asta, veți avea nevoie de metrici bune "
8337
- "pentru toate sarcinile din secțiunea Sănătate în trafic din paginile Focus. "
8338
- "%s Veți avea nevoie, de asemenea, de legături interioare, semnale de social "
8339
- "media și backlinks de pe site-uri terțe."
8340
 
8341
  #: models/focuspages/Authority.php:77 models/focuspages/Backlinks.php:81
8342
  #: models/focuspages/Clicks.php:112 models/focuspages/Content.php:127
@@ -8345,39 +8236,38 @@ msgstr ""
8345
  #: models/focuspages/Innerlinks.php:86 models/focuspages/Keyword.php:133
8346
  #: models/focuspages/Length.php:89 models/focuspages/Nofollow.php:77
8347
  #: models/focuspages/Onpage.php:96 models/focuspages/Ranking.php:48
8348
- #: models/focuspages/Snippet.php:199 models/focuspages/Social.php:85
8349
  #: models/focuspages/Strategy.php:134 models/focuspages/Traffic.php:127
8350
  msgid ""
8351
  "Click to open the Assistant in the right sidebar and follow the instructions."
8352
  msgstr ""
 
 
8353
 
8354
  #: models/focuspages/Backlinks.php:58
8355
- #, fuzzy, php-format
8356
  msgid "At Least %s MOZ BackLinks"
8357
- msgstr "La cel puțin %s MOZ BackLinks"
8358
 
8359
  #: models/focuspages/Backlinks.php:59 models/focuspages/Backlinks.php:70
8360
- #, fuzzy
8361
  msgid "backlinks"
8362
- msgstr "backlink"
8363
 
8364
  #: models/focuspages/Backlinks.php:64
8365
- #, fuzzy, php-format
8366
  msgid "At Least %s Referring Domains"
8367
- msgstr "Domeniile de referință cel puțin %s"
8368
 
8369
  #: models/focuspages/Backlinks.php:65
8370
- #, fuzzy
8371
  msgid "unique domains"
8372
  msgstr "domenii unice"
8373
 
8374
  #: models/focuspages/Backlinks.php:69
8375
- #, fuzzy, php-format
8376
  msgid "At Least %s Majestic SEO Links"
8377
- msgstr "Cel puțin %s Link-uri SEO Majestic"
8378
 
8379
  #: models/focuspages/Clicks.php:42
8380
- #, fuzzy
8381
  msgid "Clicks from Search Engine in the last 3 months"
8382
  msgstr "Clicuri din motorul de căutare în ultimele 3 luni"
8383
 
@@ -8386,26 +8276,23 @@ msgstr "Clicuri din motorul de căutare în ultimele 3 luni"
8386
  #: models/focuspages/Ctr.php:74 models/focuspages/Image.php:106
8387
  #: models/focuspages/Impressions.php:65 models/focuspages/Impressions.php:74
8388
  #: models/focuspages/Keyword.php:101 models/focuspages/Keyword.php:110
8389
- #: models/focuspages/Strategy.php:112 view/Research/Briefcase.php:242
8390
  msgid "Do a research"
8391
  msgstr "Mai multe detalii"
8392
 
8393
  #: models/focuspages/Clicks.php:73 models/focuspages/Content.php:103
8394
  #: models/focuspages/Ctr.php:73 models/focuspages/Image.php:105
8395
  #: models/focuspages/Impressions.php:73 models/focuspages/Keyword.php:108
8396
- #: models/focuspages/Snippet.php:184 models/focuspages/Strategy.php:111
8397
- #, fuzzy
8398
  msgid "No Keyword found in Squirrly Live Assistant"
8399
- msgstr "Squirrly Live Assistant"
8400
 
8401
  #: models/focuspages/Clicks.php:76 models/focuspages/Content.php:107
8402
  #: models/focuspages/Ctr.php:76 models/focuspages/Image.php:112
8403
  #: models/focuspages/Impressions.php:76 models/focuspages/Keyword.php:111
8404
  #: models/focuspages/Strategy.php:114
8405
- #, fuzzy
8406
- #| msgid "Optimize for Keyword"
8407
  msgid "Optimize for a keyword"
8408
- msgstr "Optimizare dupa cuvant cheie"
8409
 
8410
  #: models/focuspages/Clicks.php:106 models/focuspages/Content.php:123
8411
  #: models/focuspages/Ctr.php:106 models/focuspages/Impressions.php:106
@@ -8414,47 +8301,45 @@ msgid ""
8414
  "Optimize the page for a keyword. Click to open the Assistant in the right "
8415
  "sidebar and follow the instructions."
8416
  msgstr ""
 
 
8417
 
8418
  #: models/focuspages/Clicks.php:108 models/focuspages/Ctr.php:108
8419
  #: models/focuspages/Impressions.php:108
8420
- #, fuzzy
8421
  msgid "Connect to Google Search Console."
8422
- msgstr "Inregistreaza-te la Squirrly.co"
8423
 
8424
  #: models/focuspages/Content.php:46
8425
- #, fuzzy, php-format
8426
- #| msgid "Optimize"
8427
  msgid "Optimize to %s"
8428
- msgstr "Optimizare"
8429
 
8430
  #: models/focuspages/Content.php:48
8431
- #, fuzzy, php-format
8432
  msgid ""
8433
- "Make sure this Focus Page is optimized to 100%% using the %sSquirrly SEO "
8434
- "Live Assistant%s. %s As you can see clearly on Google search result pages, "
8435
  "Googles tries to find the closest match (inside web content) to what the "
8436
  "user searched for. %s That is why using this method of optimizing a page as "
8437
  "outlined by the Live Assistant feature is mandatory. %s Don't worry about "
8438
  "over-optimizing anything, as the Live Assistant checks for many over-"
8439
  "optimization traps you may fall into."
8440
  msgstr ""
8441
- "Asigurați-vă că această pagină focalizată este optimizată la 100%% utilizând "
8442
- "%sSquirrly SEO Live Assistant %s. %s După cum puteți vedea clar în paginile "
8443
- "cu rezultatele căutării Google, Googles încearcă să găsească potrivirea cea "
8444
- "mai apropiată (în interiorul conținutului web) la ceea ce a căutat "
8445
- "utilizatorul. %s De aceea, este obligatorie utilizarea acestei metode de "
8446
- "optimizare a unei pagini, așa cum este prezentată de funcția Live "
8447
- "Assistant. %s Nu vă faceți griji cu privire la optimizarea excesivă, "
8448
- "deoarece asistentul live verifică multe capcane de supra-optimizare în care "
8449
- "puteți cădea."
8450
 
8451
  #: models/focuspages/Content.php:51
8452
- #, fuzzy
8453
  msgid "Snippet is green"
8454
  msgstr "Snippet este verde"
8455
 
8456
  #: models/focuspages/Content.php:52
8457
- #, fuzzy, php-format
8458
  msgid ""
8459
  "The tasks inside the %sSnippet%s section of the Focus Pages feature must all "
8460
  "be turned green. %s Why? %s If the Snippet elements are Not green, then your "
@@ -8463,21 +8348,20 @@ msgid ""
8463
  "to On-Page SEO than just a content analysis, or a snippet. You need all "
8464
  "these elements working together in order to achieve high rankings."
8465
  msgstr ""
8466
- "Sarcinile din secțiunea %sSnippet %s a funcției Focus Pages trebuie să fie "
8467
- "înverzite. %s De ce? %s Dacă elementele fragmentului nu sunt verzi, atunci "
8468
- "pagina dvs. de focalizare nu este optimizată 100%%. %s Am construit această "
8469
- "secțiune Conținut SEO, în special pentru că am vrut să vă ajutăm să "
8470
- "înțelegeți că există SEO mult mai mult decât o simplă analiză de conținut "
8471
- "sau un fragment. Aveți nevoie de toate aceste elemente care să lucreze "
8472
- "împreună pentru a obține un clasament înalt."
8473
 
8474
  #: models/focuspages/Content.php:55
8475
- #, fuzzy
8476
  msgid "Platform SEO is green"
8477
  msgstr "Platforma SEO este verde"
8478
 
8479
  #: models/focuspages/Content.php:56
8480
- #, fuzzy, php-format
8481
  msgid ""
8482
  "Make sure that the Platform SEO section is green for this Focus Page. %s "
8483
  "Because WordPress is such a vast CMS with many customization possibilities, "
@@ -8486,20 +8370,20 @@ msgid ""
8486
  "other important settings. %s This task makes sure that everything is "
8487
  "properly set up."
8488
  msgstr ""
8489
- "Asigurați-vă că secțiunea SEO platformă este verde pentru această pagină de "
8490
- "focalizare. %s Deoarece WordPress este un CMS atât de vast, cu multe "
8491
- "posibilități de personalizare, se întâmplă multor proprietari de site-uri, "
8492
- "proprietarilor de afaceri și dezvoltatorilor, tipurile de postări "
8493
- "personalizate de pe site-ul lor rămân complet fără coduri SEO și alte setări "
8494
- "importante. %s Această sarcină se asigură că totul este configurat corect."
 
8495
 
8496
  #: models/focuspages/Content.php:59
8497
- #, fuzzy
8498
  msgid "Fresh content update"
8499
  msgstr "Actualizarea conținutului proaspăt"
8500
 
8501
  #: models/focuspages/Content.php:61
8502
- #, fuzzy, php-format
8503
  msgid ""
8504
  "Last Update Date for your Content: needs to be in the last 3 months. %s If "
8505
  "it's not, then go and edit your page. %s Google prefers pages where the "
@@ -8507,46 +8391,41 @@ msgid ""
8507
  "easiest ways to ensure that the content on the page keeps being relevant."
8508
  msgstr ""
8509
  "Data ultimei actualizări pentru conținutul dvs.: trebuie să fie în ultimele "
8510
- "3 luni. %s Dacă nu, atunci mergeți și editați pagina. %s Google preferă "
8511
- "paginile în care proprietarii site-ului web continuă să actualizeze "
8512
- "conținutul. %s De ce? %s Pentru că este una dintre cele mai simple "
8513
- "modalități de a vă asigura că conținutul de pe pagină continuă să fie "
8514
- "relevant."
8515
 
8516
  #: models/focuspages/Content.php:92 models/focuspages/Keyword.php:104
8517
- #: view/Research/Briefcase.php:228 view/Research/HistoryDetails.php:78
8518
  #: view/Research/ResearchDetails.php:51
8519
- #, fuzzy
8520
- #| msgid "Optimize for Keyword"
8521
  msgid "Optimize for this"
8522
- msgstr "Optimizeazaz Descrierile"
8523
 
8524
  #: models/focuspages/Ctr.php:41
8525
- #, fuzzy
8526
  msgid "Clickthrough rate"
8527
- msgstr "Rata de clic"
8528
 
8529
  #: models/focuspages/Ctr.php:42
8530
- #, fuzzy, php-format
8531
  msgid ""
8532
  "CTR is the number of clicks that your page receives divided by the number of "
8533
  "times your page appeared in search results: clicks ÷ impressions = CTR. %s "
8534
  "For example, if you had 5 clicks and 100 impressions, then your CTR would be "
8535
  "5%%. %s Keep the CTR above %s with enhanced headlines."
8536
  msgstr ""
8537
- "CTR este numărul de clicuri pe care pagina dvs. le primește împărțit la "
8538
- "numărul de ori pe care pagina dvs. a apărut în rezultatele căutării: clicuri "
8539
- "÷ impressions = CTR. %s De exemplu, dacă ați avea 5 clicuri și 100 de "
8540
- "afișări, atunci CTR-ul dvs. va fi de 5%%. %s Păstrați valoarea CTR peste %s "
8541
- "cu titluri îmbunătățite."
8542
 
8543
  #: models/focuspages/Image.php:73
8544
- #, fuzzy
8545
  msgid "Keyword in filename"
8546
- msgstr "Cuvânt cheie în nume de fișier"
8547
 
8548
  #: models/focuspages/Image.php:76
8549
- #, fuzzy, php-format
8550
  msgid ""
8551
  "Your filename for one of the images in this Focus Page should be: %s keyword."
8552
  "jpg %s Download a relevant image from your page. Change the filename. Then "
@@ -8555,50 +8434,41 @@ msgid ""
8555
  "of the page. %s Why? %s Because Google could consider over-optimization if "
8556
  "you used it more than once."
8557
  msgstr ""
8558
- "Numele dvs. de fișier pentru una dintre imaginile din această pagină de "
8559
- "focalizare ar trebui să fie: %s keyword.jpg %s Descărcați o imagine "
8560
- "relevantă de pe pagina dvs. Schimbați numele de fișier. Apoi încărcați din "
8561
- "nou cu numele de fișier SEO și adăugați-l din nou conținutul paginii dvs. "
8562
- "%s Este mai bine să păstrați acest lucru la un singur nume de fișier care "
8563
- "conține cuvântul cheie principal al paginii. %s De ce? %s Pentru că Google "
8564
- "ar putea avea în vedere supra-optimizarea dacă l-ați utilizat de mai multe "
8565
- "ori."
8566
 
8567
- #: models/focuspages/Image.php:102 models/focuspages/Snippet.php:187
8568
- #, fuzzy
8569
  msgid "Edit your snippet"
8570
- msgstr "Editează fragmentul"
8571
 
8572
  #: models/focuspages/Image.php:143
8573
- #, fuzzy
8574
  msgid "Optimize the post first using a Keyword from Squirrly Briefcase"
8575
  msgstr ""
8576
  "Optimizați mai întâi postarea folosind un cuvânt cheie din Squirrly Briefcase"
8577
 
8578
  #: models/focuspages/Image.php:144
8579
- #, fuzzy
8580
- #| msgid "No results found!"
8581
  msgid "No image found"
8582
- msgstr "Nu s-a gasit nimic ..."
8583
 
8584
  #: models/focuspages/Impressions.php:42
8585
- #, fuzzy
8586
  msgid "Search Results Impressions in the last 3 months"
8587
- msgstr "Rezultate căutare Impresii din ultimele 3 luni"
8588
 
8589
  #: models/focuspages/Indexability.php:52
8590
- #, fuzzy
8591
  msgid "Yes, do index"
8592
- msgstr "Da, face index"
8593
 
8594
  #: models/focuspages/Indexability.php:54 models/focuspages/Indexability.php:60
8595
- #, fuzzy
8596
- #| msgid "No known copyright restrictions"
8597
  msgid "no restrictions"
8598
- msgstr "Nu sunt restrictii de copyright cunoscute"
8599
 
8600
  #: models/focuspages/Indexability.php:55
8601
- #, fuzzy, php-format
8602
  msgid ""
8603
  "To turn this task to green, go and look at all the places where you could "
8604
  "have added instructions for Google not to index this page from your site. %s "
@@ -8612,26 +8482,26 @@ msgid ""
8612
  "Page, you must allow Google to index it, in order for it to appear in search "
8613
  "result pages."
8614
  msgstr ""
8615
- "Pentru a transforma această sarcină în verde, accesați toate locurile unde "
8616
- "ați putea adăuga instrucțiuni pentru ca Google să nu indexeze această pagină "
8617
- "de pe site-ul dvs. %s Asigurați-vă că nu este adăugată o astfel de "
8618
- "instrucțiune la %sWordPress> Setări %s, sau într-o temă, într-un plugin sau "
8619
- "în fragmentul SEO al Squirrly SEO pentru această pagină. De asemenea, "
8620
- "asigurați-vă că nu blocați această pagină în fișierul dvs. %srobots.txt %s. "
8621
- "%s Uneori, veți dori ca anumite pagini de pe site-ul dvs. să nu fie "
8622
- "indexate. Nu este însă cazul. %s Dacă această sarcină devine verde, atunci "
8623
- "înseamnă că nu ați specificat Google că NU ar trebui să indexeze pagina. %s "
8624
- "Prin urmare, permiteți Google să indexeze pagina. %s Întrucât aceasta este "
8625
- "o pagină de focalizare, trebuie să permiteți Google să o indexeze, pentru ca "
8626
- "aceasta să apară în paginile cu rezultatele căutării."
 
8627
 
8628
  #: models/focuspages/Indexability.php:58
8629
- #, fuzzy
8630
  msgid "Yes, do follow"
8631
- msgstr "Da, urmează"
8632
 
8633
  #: models/focuspages/Indexability.php:61
8634
- #, fuzzy, php-format
8635
  msgid ""
8636
  "To turn this task to green, make sure that you do NOT have a no-follow "
8637
  "attribute for this Focus Page. %s This task gets verified from multiple "
@@ -8642,21 +8512,19 @@ msgid ""
8642
  "interfere with settings."
8643
  msgstr ""
8644
  "Pentru a transforma această sarcină în verde, asigurați-vă că NU aveți un "
8645
- "atribut fără urmărire pentru această pagină de focalizare. %s Această "
8646
- "sarcină este verificată din mai multe surse. %s Cu toate acestea, dacă "
8647
- "doriți să fiți 100 % %siguri pe viitor că totul este perfect, folosiți doar "
8648
- "Squirrly SEO, deoarece vă va ușura atât configurarea, cât și verificarea "
8649
- "sistemului. %s Cu Squirrly SEO, puteți verifica cu ușurință această setare "
8650
- "în secțiunea %sSnippet %s. %s Multe teme și pluginuri pot interfera cu "
8651
- "setările."
8652
 
8653
  #: models/focuspages/Indexability.php:64
8654
- #, fuzzy
8655
  msgid "Present in sitemap"
8656
- msgstr "Prezentă în sitemap"
8657
 
8658
  #: models/focuspages/Indexability.php:65
8659
- #, fuzzy, php-format
8660
  msgid ""
8661
  "Checks whether or not your page is available in your %sXML Sitemap%s. %s Use "
8662
  "the Sitemap from %sSquirrly > SEO Settings%s. %s Make sure this Focus Page "
@@ -8664,24 +8532,23 @@ msgid ""
8664
  "practices section you can find ideas for why it can make sense to remove "
8665
  "pages from your sitemap."
8666
  msgstr ""
8667
- "Verifică dacă pagina dvs. este sau nu disponibilă în %sXML Sitemap %s. %s "
8668
- "Utilizați Sitemap-ul din %sSquirrly> Setări SEO %s. %s Asigurați-vă că "
8669
- "această pagină focalizată este inclusă în sitemap-ul generat de Squirrly "
8670
- "SEO. %s În secțiunea de bune practici puteți găsi idei pentru care poate "
8671
- "avea sens să eliminați paginile din harta dvs. de hartă."
8672
 
8673
  #: models/focuspages/Indexability.php:68
8674
- #, fuzzy
8675
  msgid "Manual index request"
8676
- msgstr "Cerere manuală de index"
8677
 
8678
  #: models/focuspages/Indexability.php:69
8679
- #, fuzzy, php-format
8680
  msgid ""
8681
- "Click the button to ask Google to re-index this page. %s Disclaimer: This "
8682
- "task will automatically turn to green once you click on the button and it "
8683
- "takes you to Google Search Console. It's up to you to make 100%% sure that "
8684
- "you do tell Google to either index or re-index this page. %s Perform a "
8685
  "manual request for Google to re-index this page. %s This is super important "
8686
  "to do whenever you make important changes to your pages. Otherwise, Google "
8687
  "will still have the old version of your page. %s If Google keeps having the "
@@ -8689,46 +8556,41 @@ msgid ""
8689
  "you click the Ask Google to Re-Index button, Squirrly will use the Google "
8690
  "Search Console API to send Google the request on your behalf."
8691
  msgstr ""
8692
- "Faceți clic pe butonul pentru a cere Google să reindexeze această pagină. "
8693
- "%s Renunțare: Această sarcină se va transforma automat în verde odată ce "
8694
- "faceți clic pe buton și vă va duce la Google Search Console. Depindeți de "
8695
- "dvs. să vă asigurați 100%% că spuneți Google să indice sau să reindexați "
8696
- "această pagină. %s Efectuați o solicitare manuală pentru ca Google să "
8697
- "reindexeze această pagină. %s Acest lucru este foarte important de făcut "
8698
- "ori de câte ori faceți modificări importante în paginile dvs. În caz "
8699
- "contrar, Google va avea în continuare versiunea veche a paginii tale. %s "
8700
- "Dacă Google are în continuare versiunea mai veche, atunci nu contează dacă "
8701
- "ați îmbunătățit pagina. %s Când faceți clic pe butonul Ask Google to Re-"
8702
- "Index, Squirrly va folosi API-ul Search Search Console pentru a trimite "
8703
- "Google cererea în numele dvs."
8704
-
8705
- #: models/focuspages/Indexability.php:72 view/Blocks/Snippet.php:295
8706
- #, fuzzy
8707
  msgid "Canonical link"
8708
- msgstr "Link canonic"
8709
 
8710
  #: models/focuspages/Indexability.php:73
8711
- #, fuzzy
8712
  msgid "Canonical"
8713
- msgstr "Canonic"
8714
 
8715
  #: models/focuspages/Indexability.php:73
8716
- #, fuzzy
8717
  msgid "No Canonical"
8718
- msgstr "Fără canonic"
8719
 
8720
  #: models/focuspages/Indexability.php:73
8721
- #, fuzzy
8722
  msgid "Post URL"
8723
- msgstr "Adresa URL"
8724
 
8725
  #: models/focuspages/Indexability.php:73
8726
- #, fuzzy
8727
  msgid "No URL"
8728
- msgstr "Fără URL"
8729
 
8730
  #: models/focuspages/Indexability.php:75
8731
- #, fuzzy, php-format
8732
  msgid ""
8733
  "This page should have a canonical link to itself, indicating that it is "
8734
  "indeed the original content. %s You can not have pages with canonical links "
@@ -8739,52 +8601,49 @@ msgid ""
8739
  "to another page. %s You can easily control this in the future by using the "
8740
  "%sSnippet feature%s of Squirrly SEO."
8741
  msgstr ""
8742
- "Această pagină ar trebui să aibă un link canonic cu ea însăși, ceea ce "
8743
- "indică faptul că este într-adevăr conținutul original. %s Nu puteți avea "
8744
- "pagini cu link-uri canonice către alte site-uri și pagini, deoarece nu le "
8745
- "puteți clasifica pentru ele. De ce? Deoarece o legătură canonică către o "
8746
- "altă adresă URL ar însemna că cealaltă adresă URL este cea care merită "
8747
- "indexată. (originalul) %s Pentru a transforma această activitate în verde, "
8748
- "mergeți și asigurați-vă că această pagină nu are un atribut de legătură "
8749
- "canonică îndreptat către o altă pagină. %s Puteți controla cu ușurință "
8750
- "acest lucru în viitor, utilizând funcția %sSnippet %s a Squirrly SEO."
8751
 
8752
  #: models/focuspages/Indexability.php:78
8753
- #, fuzzy
8754
  msgid "Permalink structure is good"
8755
- msgstr "Structura permanentă este bună"
8756
 
8757
  #: models/focuspages/Indexability.php:80
8758
- #, fuzzy, php-format
8759
  msgid ""
8760
  "Make your LINKS SEO-Friendly in %sWordPress > Settings > Permalinks%s %s "
8761
  "That is where WordPress allows you to change the permalink structure. %s "
8762
  "Your URLs (the links from your site) should be super easy to read. This "
8763
  "makes your site Human-friendly as well."
8764
  msgstr ""
8765
- "Faceți-vă LINK-urile SEO-friendly în %sWordPress> Setări> Legături "
8766
- "permanente %s %s Acolo WordPress vă permite să modificați structura de "
8767
- "legături permanente. %s URL-urile dvs. (linkurile de pe site-ul dvs.) ar "
8768
- "trebui să fie foarte ușor de citit. Acest lucru face ca site-ul dvs. să fie "
8769
- "și prietenos cu omul."
8770
 
8771
  #: models/focuspages/Indexability.php:100
8772
- #, fuzzy
8773
  msgid "Ask Google to Re-Index"
8774
- msgstr "Solicitați Google să reindexeze"
8775
 
8776
  #: models/focuspages/Innerlinks.php:53
8777
- #, fuzzy, php-format
8778
  msgid "Get %s inner links"
8779
- msgstr "Obțineți% linkuri interioare"
8780
 
8781
  #: models/focuspages/Innerlinks.php:54
8782
- #, fuzzy
8783
  msgid "inner links to"
8784
- msgstr "legături interioare"
8785
 
8786
  #: models/focuspages/Innerlinks.php:56
8787
- #, fuzzy, php-format
8788
  msgid ""
8789
  "Get %s Inner Links %s Recommended is: %s %s Inner Links are links that you "
8790
  "send from one URL of your site to another URL of your site. %s Since your "
@@ -8792,27 +8651,24 @@ msgid ""
8792
  "that you link to them from many pages of your website. %s Note! We check the "
8793
  "links present in the content of each post of your website."
8794
  msgstr ""
8795
- "Obțineți %s Link-uri interioare %s Recomandat este: %s %s Link-urile "
8796
- "interioare sunt link-uri pe care le trimiteți de la o adresă URL a site-ului "
8797
- "dvs. la o altă adresă URL a site-ului dvs. %s Deoarece paginile dvs. de "
8798
- "focalizare sunt cele mai importante pagini de pe site-ul dvs., trebuie să vă "
8799
- "asigurați că vă conectați la ele din mai multe pagini ale site-ului dvs. "
8800
- "web. %s Notă! Verificăm linkurile prezente în conținutul fiecărei postări a "
8801
- "site-ului dvs. web."
8802
 
8803
  #: models/focuspages/Innerlinks.php:75
8804
- #, fuzzy
8805
  msgid "Build with Blogging Assistant"
8806
  msgstr "Construiți cu Blogging Assistant"
8807
 
8808
  #: models/focuspages/Keyword.php:48
8809
- #, fuzzy
8810
- #| msgid "Competition:"
8811
  msgid "Keyword Competition"
8812
- msgstr "Competitia:"
8813
 
8814
  #: models/focuspages/Keyword.php:51
8815
- #, fuzzy, php-format
8816
  msgid ""
8817
  "To complete this task you must make sure that the main keyword you're "
8818
  "optimizing this Focus Page for has low competition. %s The Squirrly SEO "
@@ -8821,50 +8677,21 @@ msgid ""
8821
  "the desired keyword you're targeting. %s If you really want to have a clear "
8822
  "shot at ranking, make sure the competition is low for the keyword you choose."
8823
  msgstr ""
8824
- "Pentru a finaliza această sarcină, trebuie să vă asigurați că principala "
8825
- "cheie pentru care optimizați această pagină de focalizare are o concurență "
8826
- "scăzută. %s Suita de software SEO Squirrly folosește funcția noastră de "
8827
- "piață inteligentă de piață pentru a determina șansa pe care site-ul dvs. are "
8828
- "de a deranja actualul TOP 10 al Google pentru cuvântul cheie dorit pe care "
8829
- "îl vizați. %s Dacă doriți cu adevărat să obțineți o fotografie clară la "
8830
- "clasament, asigurați-vă că concurența este mică pentru cuvântul cheie ales."
8831
-
8832
- #: models/focuspages/Keyword.php:54
8833
- #, fuzzy
8834
- #| msgid "Search it:"
8835
- msgid "Search volume"
8836
- msgstr "Se cauta:"
8837
-
8838
- #: models/focuspages/Keyword.php:56
8839
- #, fuzzy, php-format
8840
- msgid ""
8841
- "To turn this task to green, go and find a keyword that has a good search "
8842
- "volume. (meaning that many people search on Google for this keyword every "
8843
- "single month). %s The Research features from Squirrly SEO will indicate if "
8844
- "the volume is big enough. %s Since these are the most important pages on "
8845
- "your website, you need to make sure that you get the maximum number of "
8846
- "people possible to find this page. %s If you target keyword searches with "
8847
- "low volumes, then you'll end up having just 2 or 3 people every month "
8848
- "visiting this page. And then all the effort will have been for nothing."
8849
- msgstr ""
8850
- "Pentru a transforma această sarcină în verde, accesați un cuvânt cheie care "
8851
- "are un volum de căutare bun. (ceea ce înseamnă că multe persoane caută pe "
8852
- "Google acest cuvânt cheie în fiecare lună). %s Caracteristicile de "
8853
- "cercetare de la Squirrly SEO vor indica dacă volumul este suficient de "
8854
- "mare. %s Întrucât acestea sunt cele mai importante pagini de pe site-ul "
8855
- "dvs. web, trebuie să vă asigurați că obțineți numărul maxim de persoane "
8856
- "posibile pentru a găsi această pagină. %s Dacă vizați căutările de cuvinte "
8857
- "cheie cu volum redus, veți ajunge să aveți doar 2 sau 3 persoane în fiecare "
8858
- "lună care vizitează această pagină. Și atunci tot efortul va fi fost degeaba."
8859
 
8860
  #: models/focuspages/Keyword.php:59
8861
- #, fuzzy
8862
- #| msgid "See rank"
8863
  msgid "Google Trend"
8864
- msgstr "Vezi rang"
8865
 
8866
  #: models/focuspages/Keyword.php:61
8867
- #, fuzzy, php-format
8868
  msgid ""
8869
  "Trend levels required to get the Green Check on this task: %s - Steady %s - "
8870
  "Going Up %s - Sky-rocketing %s we take the trend from the previous 3 months. "
@@ -8875,49 +8702,43 @@ msgid ""
8875
  "right now after you rank this page, in the near future you'll get very "
8876
  "little traffic even if you'd end up on Position 1 in Google Search."
8877
  msgstr ""
8878
- "Niveluri de tendință necesare pentru obținerea Verificării Verzi asupra "
8879
- "acestei sarcini: %s -%% constant - Creștere %s - Sky-rocketing %s luăm "
8880
- "tendința din ultimele 3 luni. %s Dacă vizați o interogare de căutare cu o "
8881
- "tendință proastă, veți ajunge vedeți puțin trafic către această pagină pe "
8882
- "termen lung. %s De ce? O tendință în scădere arată că utilizatorii Google "
8883
  "își pierd interesul pentru acel subiect sau cuvânt cheie și vor continua să "
8884
- "facă acest lucru în viitor. %s Prin urmare, chiar dacă puteți obține mult "
8885
- "trafic chiar acum după ce ați clasat această pagină, în viitorul apropiat "
8886
- "veți primi foarte puțin trafic, chiar dacă ați ajunge pe poziția 1 din "
8887
- "Căutarea Google."
8888
 
8889
  #: models/focuspages/Keyword.php:98
8890
- #, fuzzy
8891
- #| msgid "Enter a keyword"
8892
  msgid "Find Better Keywords"
8893
- msgstr "Adauga cuvant"
8894
 
8895
  #: models/focuspages/Keyword.php:158 models/focuspages/Keyword.php:176
8896
  #: models/focuspages/Keyword.php:199
8897
- #, fuzzy
8898
- #| msgid "Keyword"
8899
  msgid "No Keyword Found"
8900
- msgstr "Cuvant cheie:"
8901
 
8902
  #: models/focuspages/Keyword.php:158 models/focuspages/Keyword.php:176
8903
  #: models/focuspages/Keyword.php:199
8904
- #, fuzzy
8905
  msgid "Please add a keyword first in Squirrly Live Assistant."
8906
  msgstr ""
8907
- "Adăugați un cuvânt cheie secundar în Squirrly Live Assistant din Briefcase"
8908
 
8909
  #: models/focuspages/Length.php:36
8910
- #, fuzzy, php-format
8911
- #| msgid "write %s more words"
8912
  msgid "Write %s words"
8913
- msgstr "mai adauga %s cuvinte"
8914
 
8915
  #: models/focuspages/Length.php:37
8916
  msgid "words"
8917
  msgstr "cuvinte"
8918
 
8919
  #: models/focuspages/Length.php:39
8920
- #, fuzzy, php-format
8921
  msgid ""
8922
  "For Focus Pages it's mandatory, in our opinion, to have at least 1,500 "
8923
  "words. %s Go and edit the page. %s I know: for some of you it might sound "
@@ -8926,26 +8747,24 @@ msgid ""
8926
  "it to rank in TOP 10 on Google. However, getting this task completed ensures "
8927
  "that your chances of ranking will be very high."
8928
  msgstr ""
8929
- "Pentru Pagini Focus este obligatoriu, după părerea noastră, să avem cel "
8930
- "puțin 1.500 de cuvinte. %s Mergeți și editați pagina. %s Știu: pentru unii "
8931
- "dintre voi s-ar putea suna greu, dar Google plasează pagini mai lungi și mai "
8932
- "valoroase în poziții de căutare. %s Nu trebuie neapărat să obțineți 1.500 "
8933
- "de cuvinte pe această pagină pentru ca acestapoată fi clasat în TOP 10 "
8934
- "pe Google. Cu toate acestea, finalizarea acestei sarcini asigură că șansele "
8935
- "dvs. de clasament vor fi foarte mari."
8936
 
8937
  #: models/focuspages/Length.php:42
8938
- #, fuzzy
8939
  msgid "Reader's Experience"
8940
  msgstr "Experiența cititorului"
8941
 
8942
  #: models/focuspages/Length.php:43
8943
- #, fuzzy
8944
  msgid "minutes average"
8945
- msgstr "minute medii"
8946
 
8947
  #: models/focuspages/Length.php:44
8948
- #, fuzzy, php-format
8949
  msgid ""
8950
  "Get an average time on page of minimum 2 minutes for this focus page. You "
8951
  "can do this by editing the content and making it more appealing to visitors. "
@@ -8957,51 +8776,45 @@ msgid ""
8957
  "order to check that the length of the page was increased properly, we also "
8958
  "take into account if website visitors love this page."
8959
  msgstr ""
8960
- "Obțineți un timp mediu pe pagina de minim 2 minute pentru această pagină de "
8961
- "focalizare. Puteți face acest lucru prin editarea conținutului și pentru a "
8962
- "face mai atractiv pentru vizitatori. %s Ne uităm la timpul mediu din pagină "
8963
- "pentru această pagină. %s De ce? %s Pentru că, uneori, proprietarii de "
8964
- "site-uri web pot fi tentați să facă paginile mai lungi pentru a obține multe "
8965
- "cuvinte pe o pagină. Îi fac mai lungi prin creșterea cuvântării. %s Peste "
8966
- "1.500 de cuvinte / pagină vă pot oferi rezultate SEO mult mai bune. Totuși, "
8967
- "a-l face mai lung nu înseamnă ar trebui să-l faci plictisitor. %s Pentru "
8968
- "a verifica dacă lungimea paginii a crescut în mod corespunzător, luăm în "
8969
- "considerare și dacă vizitatorii site-ului web iubesc această pagină."
 
8970
 
8971
  #: models/focuspages/Length.php:65
8972
  msgid "Edit Page"
8973
  msgstr "Editare pagină"
8974
 
8975
  #: models/focuspages/Length.php:85
8976
- #, fuzzy
8977
- #| msgid "Google %sAnalytics ID%s:"
8978
  msgid "Connect to Google Analytics first."
8979
- msgstr "Google %sAnalytics ID%s:"
8980
 
8981
  #: models/focuspages/Length.php:121 models/focuspages/Traffic.php:144
8982
  #: models/focuspages/Traffic.php:160 models/focuspages/Traffic.php:176
8983
- #, fuzzy
8984
- #| msgid "Google %sAnalytics ID%s:"
8985
  msgid "Connect Google Analytics first."
8986
- msgstr "Google %sAnalytics ID%s:"
8987
 
8988
  #: models/focuspages/Nofollow.php:50
8989
- #, fuzzy
8990
  msgid "Maintain authority"
8991
- msgstr "Mențineți autoritatea"
8992
 
8993
  #: models/focuspages/Nofollow.php:51
8994
- #, fuzzy
8995
  msgid "External Dofollow Links"
8996
- msgstr "Legături externe Dofollow"
8997
 
8998
  #: models/focuspages/Nofollow.php:51
8999
- #, fuzzy
9000
  msgid "No dofollow external links"
9001
- msgstr "Nu există legături externe"
9002
 
9003
  #: models/focuspages/Nofollow.php:53 models/focuspages/Ranking.php:24
9004
- #, fuzzy, php-format
9005
  msgid ""
9006
  "TLDR: All outbound links need to have no-follow attribute. %s You've worked "
9007
  "hard on your Focus Page. %s Now make sure that you're not letting that hard "
@@ -9011,43 +8824,39 @@ msgid ""
9011
  "you want your focus pages to get ranked better and have authority make sure "
9012
  "that ALL outbound links have a no-follow attribute attached to them."
9013
  msgstr ""
9014
- "TLDR: Toate legăturile de ieșire trebuie să aibă un atribut fără urmărire. "
9015
- "%s Ați muncit din greu pe pagina dvs. de focalizare. %s Acum asigurați-vă "
9016
- "că nu lăsați ca această muncă grea să se risipească, trimițând toată "
9017
- "autoritatea și Link Juice către alte pagini de pe web. %s Pagina de "
9018
- "focalizare trebuie să fie pagina finală pe care Google o urmărește. Este un "
9019
- "tip de scenariu „Toate drumurile duc către Roma”. %s Dacă doriți ca "
9020
- "paginile dvs. de focalizarefie mai bine clasificate și aveți "
9021
- "autoritate, asigurați-vă TOATE link-urile de ieșire au atașat un atribut "
9022
- "fără urmărire."
9023
 
9024
  #: models/focuspages/Onpage.php:53
9025
- #, fuzzy
9026
- #| msgid "Enter your email"
9027
  msgid "Enhance your sitemap"
9028
- msgstr "Adauga adresa email"
9029
 
9030
  #: models/focuspages/Onpage.php:54
9031
- #, fuzzy, php-format
9032
  msgid ""
9033
  "Add images / videos to your sitemap. It's important to have images / videos "
9034
  "enabled. %s Squirrly SEO makes it super easy for you to enhance your XML "
9035
  "sitemap. %s Just use the settings from %sSquirrly > SEO Settings > Sitemap "
9036
  "XML%s. Find the XML sitemap section and use the settings from that panel. "
9037
  msgstr ""
9038
- "Adăugați imagini / videoclipuri pe harta dvs. sit. Este important să aveți "
9039
- "imagini / videoclipuri activate. %s Squirrly SEO vă face foarte ușor să vă "
9040
- "îmbunătățiți sitemap-ul XML. %s Folosiți doar setările de la %sSquirrly> "
9041
- "Setări SEO> Sitemap XML %s. Găsiți secțiunea sitemap XML și utilizați "
9042
- "setările din panoul respectiv."
9043
 
9044
  #: models/focuspages/Onpage.php:57
9045
- #, fuzzy
9046
  msgid "Post Type settings activated"
9047
- msgstr "Setările de tip post sunt activate"
9048
 
9049
  #: models/focuspages/Onpage.php:58
9050
- #, fuzzy, php-format
9051
  msgid ""
9052
  "Are the SEO Settings from Squirrly SEO activated for the post type of this "
9053
  "particular Focus Page? %s This is what we're checking with this task. %s "
@@ -9059,24 +8868,23 @@ msgid ""
9059
  "WordPress. %s To turn this task to green, go and add this post type (%s) in "
9060
  "%sSquirrly SEO Automation%s."
9061
  msgstr ""
9062
- "Setările SEO de la SEO Squirrly sunt activate pentru tipul de post al "
9063
- "acestei anumite pagini de focalizare? %s Acest lucru verificăm cu această "
9064
- "sarcină. %s De ce? %s De câteva ori, vedem că oamenii nu obțin rezultate "
9065
- "suficient de bune cu clasamentele Google, pur și simplu pentru că nu au "
9066
- "setările SEO activate pentru tipul lor actual de postare. %s Multe site-uri "
9067
- "WordPress folosesc tipuri de postare personalizate. Pagina dvs. „Evenimente” "
9068
- "sau pagina Imobiliare ar putea fi un tip de post diferit de general "
9069
- "Pagini sau „Postări” din WordPress. %s Pentru a transforma această "
9070
- "activitate în verde, du-te și adaugă acest tip de postare ( %s) în "
9071
- "%sSquirrly SEO Automation %s."
9072
 
9073
  #: models/focuspages/Onpage.php:61
9074
- #, fuzzy
9075
  msgid "Patterns activated"
9076
- msgstr "Tiparele activate"
9077
 
9078
  #: models/focuspages/Onpage.php:62
9079
- #, fuzzy, php-format
9080
  msgid ""
9081
  "To turn this task to green, go and activate the %sPatterns%s from Squirrly "
9082
  "SEO for the post type of this Focus Page. %s With this task, we're looking "
@@ -9085,21 +8893,20 @@ msgid ""
9085
  "Activated\". There are some cases in which this double check is necessary. "
9086
  "%s It's for your ranking safety."
9087
  msgstr ""
9088
- "Pentru a transforma această sarcină în verde, accesați %sPatterns %s din "
9089
- "Squirrly SEO pentru tipul de post al acestei pagini de focalizare. %s Cu "
9090
- "această sarcină, căutăm să vedem dacă modelele SEO de la Squirrly sunt "
9091
- "activate pentru tipul de post al acestei pagini de focalizare. %s Similar "
9092
- "cu sarcina precedentă cu „Setări tip post post activate”. Există câteva "
9093
- "cazuri în care această dublă verificare este necesară. %s Este pentru "
9094
- "siguranța clasamentului dvs."
9095
 
9096
  #: models/focuspages/Onpage.php:65 view/SeoSettings/Robots.php:28
9097
- #, fuzzy
9098
  msgid "Robots File"
9099
- msgstr "File Robots"
9100
 
9101
  #: models/focuspages/Onpage.php:67
9102
- #, fuzzy, php-format
9103
  msgid ""
9104
  "You have a certain definition for your Robots.txt file made in Squirrly SEO "
9105
  "or in another plugin. %s Make sure that the final version of robots.txt that "
@@ -9112,31 +8919,28 @@ msgid ""
9112
  "the text inside these two places is identical. If it is identical, "
9113
  "everything is Perfect!"
9114
  msgstr ""
9115
- "Aveți o anumită definiție pentru fișierul dvs. Robots.txt făcut în Squirrly "
9116
- "SEO sau într-un alt plugin. %s Asigurați-vă că versiunea finală a robots."
9117
- "txt care este redată la încărcarea fișierului este cea pe care v-ați "
9118
- "propus. %s Uneori, alte pluginuri sau teme pot interfera și distruge "
9119
- "ieșirea fișierului roboților. Uneori, poate fi chiar aveți un fișier "
9120
- "robots.txt plasat în directorul dvs. rădăcină (în astfel de cazuri: "
9121
- "eliminați acel fișier. Lucruri care codifică tare sunt ca o proastă "
9122
- "practică!). %s Pentru a face acest lucru: uitați-vă la definiția pe care "
9123
- "ați făcut-o în pluginul dvs. Apoi, uită-te la robots.txt de pe site-ul tău. "
9124
- "Vedeți dacă textul din aceste două locuri este identic. Dacă este identic, "
9125
- "totul este perfect!"
9126
 
9127
  #: models/focuspages/Onpage.php:85
9128
- #, fuzzy
9129
- #| msgid "Go to settings"
9130
  msgid "Go to SEO Settings"
9131
- msgstr "Mergi la setari"
9132
 
9133
  #: models/focuspages/Ranking.php:23
9134
- #, fuzzy
9135
  msgid "Nofollow on external links"
9136
- msgstr "Nofollow pe link-urile externe"
9137
 
9138
- #: models/focuspages/Snippet.php:123
9139
- #, fuzzy, php-format
9140
  msgid ""
9141
  "To turn this task to green, go and define a title for this page. You can "
9142
  "easily do this by using the %sSnippet%s from Squirrly SEO. %s Make sure that "
@@ -9148,23 +8952,23 @@ msgid ""
9148
  "that product."
9149
  msgstr ""
9150
  "Pentru a transforma această sarcină în verde, mergeți și definiți un titlu "
9151
- "pentru această pagină. Puteți face acest lucru cu ușurință folosind "
9152
- "%sSnippet %s din Squirrly SEO. %s Asigurați-vă că aveți un titlu definit "
9153
- "pentru pagina dvs. de focalizare. %s Nu are un titlu definit este rău atât "
9154
- "pentru motoarele de căutare, cât și pentru oameni. %s De ce? %s Este "
9155
- "ciudat ca cineva încerce să-și dea seama dacă a aterizat pe pagina dvs. "
9156
- "de prețuri și să nu obțină un răspuns clar. Dacă aveți mai multe pagini de "
9157
- "prețuri (în cazul în care site-ul dvs. afișează mai multe produse), atunci "
9158
- "titlul dvs. ar trebui să conțină doar numele mărcii acelui produs."
9159
-
9160
- #: models/focuspages/Snippet.php:126 models/focuspages/Snippet.php:251
9161
- #: models/focuspages/Snippet.php:273 view/Blocks/Snippet.php:698
9162
- #: view/Blocks/Snippet.php:965 view/SeoSettings/Automation.php:148
9163
  msgid "Description"
9164
  msgstr "Descriere"
9165
 
9166
- #: models/focuspages/Snippet.php:128
9167
- #, fuzzy, php-format
9168
  msgid ""
9169
  "To turn this task to green, go and define a %sMeta description%s for this "
9170
  "page. You can easily do this by using the Snippet from Squirrly SEO. %s Make "
@@ -9177,31 +8981,29 @@ msgid ""
9177
  "boost CTR (click-through rates)."
9178
  msgstr ""
9179
  "Pentru a transforma această sarcină în verde, mergeți și definiți o "
9180
- "descriere %sMeta %s pentru această pagină. Puteți face acest lucru cu "
9181
- "ușurință folosind Snippet de la Squirrly SEO. %s Asigurați-vă că aveți o "
9182
- "descriere META configurată pentru această pagină de focalizare. %s Meta "
9183
- "descrierea este foarte importantă pentru a arăta altora valoarea pe care o "
9184
- "pot găsi făcând clic pentru a accesa pagina ta. %s Gândiți-vă la el ca la "
9185
- "un anunț nemaipomenit, care îi încântă pe oameni suficient de încântați "
9186
- "încât vizitează pagina dvs. după ce au citit-o. %s Uneori, Google afișează "
9187
- "descrierea META exactă pe care o creați în paginile cu rezultatele căutării. "
9188
- "Utilizați descrieri minunate pentru paginile de pe site-ul dvs. pentru a "
9189
- "stimula CTR (ratele de clic)."
9190
-
9191
- #: models/focuspages/Snippet.php:133
9192
- #, fuzzy, php-format
9193
- #| msgid "Keywords are used in Title"
9194
  msgid "Keyword %s must be present in Title"
9195
- msgstr "Cuvânt cheie prezent in Titlu"
9196
 
9197
- #: models/focuspages/Snippet.php:138
9198
- #, fuzzy, php-format
9199
- #| msgid "Custom description: "
9200
  msgid "Keyword %s must be present in Description"
9201
- msgstr "Descrierea:"
9202
 
9203
- #: models/focuspages/Snippet.php:139
9204
- #, fuzzy, php-format
9205
  msgid ""
9206
  "Same as with the title task. %s If a user reads the description of your page "
9207
  "on Google, but cannot find the keyword they searched for in that text, then "
@@ -9211,22 +9013,22 @@ msgid ""
9211
  "description of the pages it bring to TOP 10. It's pretty clear they care a "
9212
  "lot about this, because that's what people want to find on the search engine."
9213
  msgstr ""
9214
- "La fel și cu sarcina din titlu. %s Dacă un utilizator citește descrierea "
9215
- "paginii dvs. pe Google, dar nu poate găsi cuvântul cheie pe care l-a căutat "
9216
- "în textul respectiv, atunci ar avea șanse foarte mici de a face clic și de a "
9217
- "vizita pagina dvs. %s S-ar duce la pagina următoare clasată pe Google "
9218
- "pentru cuvântul cheie. %s Gândiți-vă la acest lucru: Google însuși încearcă "
9219
- "din ce în ce mai mult să afișeze cuvinte cheie în descrierea paginilor pe "
9220
- "care le aduce la TOP 10. Este destul de clar că le pasă mult de acest lucru, "
9221
- "pentru că asta vor oamenii să găsească în motorul de căutare."
 
9222
 
9223
- #: models/focuspages/Snippet.php:142
9224
- #, fuzzy
9225
  msgid "Open Graph - full definition"
9226
  msgstr "Open Graph - definiție completă"
9227
 
9228
- #: models/focuspages/Snippet.php:144
9229
- #, fuzzy, php-format
9230
  msgid ""
9231
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
9232
  "SEO to get all the definitions in place. %s With this task, we make sure "
@@ -9236,22 +9038,21 @@ msgid ""
9236
  "helps you make sure that ALL the og tags are present. %s And yes, this is "
9237
  "relevant for your search engine position placements."
9238
  msgstr ""
9239
- "Pentru a transforma această sarcină în verde, puteți utiliza cu ușurință "
9240
- "%sSnippet %s din Squirrly SEO pentru a obține toate definițiile. %s Cu "
9241
- "această sarcină, ne asigurăm că aveți definițiile complete ale graficului "
9242
- "deschis pentru această pagină de focalizare. %s Există multe lucruri care "
9243
- "ar putea interfera cu codul, există momente în care ai putea uita setarea "
9244
- "unora dintre elemente, astfel încât Squirrly SEO te ajută să te asiguri că "
9245
- "TOATE etichetele og sunt prezente. %s Și da, acest lucru este relevant "
9246
- "pentru destinațiile de plasare a motorului de căutare."
9247
-
9248
- #: models/focuspages/Snippet.php:147
9249
- #, fuzzy
9250
  msgid "Twitter Cards - full definition"
9251
- msgstr "Cărți Twitter - definiție completă"
9252
 
9253
- #: models/focuspages/Snippet.php:149
9254
- #, fuzzy, php-format
9255
  msgid ""
9256
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
9257
  "SEO to get all the definitions in place. %s Checking to make sure that your "
@@ -9259,20 +9060,19 @@ msgid ""
9259
  "task, Squirrly SEO makes sure to check for all the required definitions, so "
9260
  "that you won't miss a beat."
9261
  msgstr ""
9262
- "Pentru a transforma această sarcină în verde, puteți utiliza cu ușurință "
9263
- "%sSnippet %s din Squirrly SEO pentru a obține toate definițiile. %s "
9264
- "Verificați pentru a vă asigura că definițiile cărților dvs. Twitter sunt "
9265
- "făcute corect. %s La fel ca în sarcina Open Graph, SEO Squirrly vă asigură "
9266
- "că verificați toate definițiile necesare, astfel încât să nu pierdeți o "
9267
- "bătaie."
9268
 
9269
- #: models/focuspages/Snippet.php:152
9270
- #, fuzzy
9271
  msgid "JSON-LD definition"
9272
  msgstr "Definiția JSON-LD"
9273
 
9274
- #: models/focuspages/Snippet.php:153
9275
- #, fuzzy, php-format
9276
  msgid ""
9277
  "To turn this task to green, you can easily use the JSON-LD section inside "
9278
  "%sSquirrly > SEO Settings > JSON-LD%s. %s Make sure that you complete all "
@@ -9282,20 +9082,19 @@ msgid ""
9282
  "%shttps://search.google.com/test/rich-results%s"
9283
  msgstr ""
9284
  "Pentru a transforma această sarcină în verde, puteți utiliza cu ușurință "
9285
- "secțiunea JSON-LD din %sSquirrly> Setări SEO> JSON-LD %s. %s Asigurați-vă "
9286
- " completați toate câmpurile cu informațiile adecvate. %s Acest lucru "
9287
- "oferă contextului semantic important Google și joacă un rol în determinarea "
9288
- "gradului de ridicare a paginii dvs. în clasamentele de căutare. %s Puteți "
9289
- "valida JSON-LD existent cu: %shttps: //search.google.com/structured-data/"
9290
- "testing-tool%s"
9291
 
9292
- #: models/focuspages/Snippet.php:156
9293
- #, fuzzy
9294
  msgid "Customized"
9295
- msgstr "Modificare META"
9296
 
9297
- #: models/focuspages/Snippet.php:157
9298
- #, fuzzy, php-format
9299
  msgid ""
9300
  "The Snippets of your most important pages should be customized. %s Use the "
9301
  "%sSnippet%s from Squirrly SEO to customize the meta settings, the open "
@@ -9307,19 +9106,19 @@ msgid ""
9307
  "display those, but it's just an experiment they run. Most of the times, your "
9308
  "own custom snippet will be the one that gets displayed."
9309
  msgstr ""
9310
- "Fragmentele celor mai importante pagini ale tale trebuie personalizate. %s "
9311
- "Utilizați %sSnippet %s din Squirrly SEO pentru a personaliza setările meta, "
9312
- "graficul deschis etc. pentru această pagină. %s Deoarece paginile Focus "
9313
  "sunt cele mai importante pagini de pe site-ul dvs., veți dori ca oamenii să "
9314
- "iubească listările cu motoarele de căutare pe care le creați pentru această "
9315
- "pagină. %s Prin urmare, ar trebui să definiți o listă SEO personalizată "
9316
- "pentru a îmbunătăți numărul de clicuri pe care le obțineți atunci când "
9317
- "oamenii își găsesc pagina pe motoarele de căutare. %s NOTĂ: uneori, Google "
9318
- "încearcă să creeze fragmente automate și să le afișeze, dar este doar un "
9319
- "experiment pe care îl execută. De cele mai multe ori, propriul fragment "
9320
- "personalizat va fi cel care va fi afișat."
9321
-
9322
- #: models/focuspages/Snippet.php:252 models/focuspages/Snippet.php:274
9323
  msgid "Image"
9324
  msgstr "Imagine"
9325
 
@@ -9329,12 +9128,11 @@ msgid "%s Shares"
9329
  msgstr "%s Distribuite"
9330
 
9331
  #: models/focuspages/Social.php:45
9332
- #, fuzzy
9333
  msgid "social share"
9334
- msgstr "cota socială"
9335
 
9336
  #: models/focuspages/Social.php:47
9337
- #, fuzzy, php-format
9338
  msgid ""
9339
  "This task only tracks shares from trackable sources. %s Twitter and LinkedIN "
9340
  "share counts are no longer available. %s Of course, for Twitter you can "
@@ -9342,36 +9140,31 @@ msgid ""
9342
  "a guide on how to integrate your Twitter API with our Focus Pages audit "
9343
  "services. %s %shttps://developer.twitter.com/en/pricing/search-fullarchive%s"
9344
  msgstr ""
9345
- "Această sarcină urmărește doar acțiunile din surse urmabile. %s Twitter și "
9346
- "conturile de acțiuni LinkedIN nu mai sunt disponibile. %s Bineînțeles, "
9347
- "pentru Twitter puteți plăti întotdeauna Twitter direct pentru acces API, caz "
9348
- "în care am putea vă oferim un ghid despre cum să integrați API-ul dvs. "
9349
- "Twitter cu serviciile noastre de audit a paginilor Focus. %s %shttps: //"
9350
- "developer.twitter.com/en/pricing/search-fullarchive%s"
9351
 
9352
  #: models/focuspages/Social.php:61
9353
- #, fuzzy
9354
- #| msgid "Social Media Options"
9355
  msgid "Go to Social Media Settings"
9356
- msgstr "Optiuni Social Media"
9357
 
9358
  #: models/focuspages/Strategy.php:70
9359
- #, fuzzy
9360
  msgid "Add keyword to Briefcase"
9361
- msgstr "Adăugați cuvinte cheie la servietă"
9362
 
9363
  #: models/focuspages/Strategy.php:71
9364
- #, fuzzy
9365
  msgid "Great! The keyword exists in Briefcase"
9366
  msgstr "Grozav! Cuvântul cheie există în Briefcase"
9367
 
9368
  #: models/focuspages/Strategy.php:71
9369
- #, fuzzy
9370
  msgid "The keyword does not exist in Briefcase"
9371
- msgstr "Cuvântul cheie nu există în Servietă"
9372
 
9373
  #: models/focuspages/Strategy.php:72
9374
- #, fuzzy, php-format
9375
  msgid ""
9376
  "Go add a keyword to your %sBriefcase%s. %s The Briefcase is the command "
9377
  "center for your SEO operations. Manage your keywords in Briefcase, so that "
@@ -9381,22 +9174,21 @@ msgid ""
9381
  "freelancers, agencies or partners. %s Never lose the amazing keywords you "
9382
  "find through the %sSquirrly SEO Keyword Research tool%s."
9383
  msgstr ""
9384
- "Accesați un cuvânt cheie la %sBriefcase %s. %s Servieta este centrul de "
9385
- "comandă pentru operațiunile dvs. SEO. Gestionează-ți cuvintele cheie în "
9386
- "servietă, astfel încât să ai mereu acces rapid la ele. Veți ști întotdeauna "
9387
- "despre ce este vorba despre strategia dvs. SEO. %s Plus, adăugarea de "
9388
- "cuvinte cheie la Serviciu va facilita colaborarea cu alte persoane din "
9389
- "echipa dvs., freelanceri, agenții sau parteneri. %s Nu pierde niciodată "
9390
- "cuvintele cheie uimitoare pe care le găsești prin intermediul instrumentului "
9391
- "%sSqurrly SEO Keyword Research %s."
9392
 
9393
  #: models/focuspages/Strategy.php:75
9394
- #, fuzzy
9395
  msgid "Add SEO Context"
9396
  msgstr "Adăugați contextul SEO"
9397
 
9398
  #: models/focuspages/Strategy.php:78
9399
- #, fuzzy, php-format
9400
  msgid ""
9401
  "Optimize to %s for a secondary keyword. %s Squirrly SEO's Live Assistant "
9402
  "allows you to optimize for multiple keywords that you have placed in your "
@@ -9408,35 +9200,32 @@ msgid ""
9408
  "about your Local Restaurant in San Diego. That will give clearer context to "
9409
  "Google that your page really is about a restaurant where people can dine."
9410
  msgstr ""
9411
- "Optimizați la %s pentru un cuvânt cheie secundar. %s Squirrly SEO Assistant "
9412
- "Live vă permite să optimizați pentru mai multe cuvinte cheie pe care le-ați "
9413
- "plasat în Servieta. %s Folosiți câteva cuvinte cheie suplimentare pentru "
9414
- "pagina dvs. de focalizare, care ajută Google să înțeleagă subiectul și "
9415
- "contextul exact al paginii dvs. %s Dacă ați adăugat cuvintele cheie partid "
9416
- "politic” la pantera neagră”, ați face un indiciu clar pentru Google că "
9417
- "pagina dvs. este despre partidul politic Black Panther, nu Black Panther, "
9418
- "filmul Marvel. %s Sau adăugați locuri de mâncare” la o pagină despre "
9419
- "restaurantul local din San Diego. Acest lucru va oferi contextului mai clar "
9420
- "Google că pagina dvs. este cu adevărat despre un restaurant în care oamenii "
9421
- "pot lua masa."
9422
 
9423
  #: models/focuspages/Strategy.php:82
9424
- #, fuzzy
9425
  msgid "Labels Exist"
9426
- msgstr "Etichetele există"
9427
 
9428
  #: models/focuspages/Strategy.php:83
9429
- #, fuzzy
9430
  msgid "Great! The keyword has Label attached to it"
9431
- msgstr "Grozav! Cuvântul cheie are Etichetă atașată la acesta"
9432
 
9433
  #: models/focuspages/Strategy.php:83
9434
- #, fuzzy
9435
  msgid "The keyword does not have a label attached to it"
9436
- msgstr "Cuvântul cheie nu are o etichetă atașată"
9437
 
9438
  #: models/focuspages/Strategy.php:84
9439
- #, fuzzy, php-format
9440
  msgid ""
9441
  "To turn this task to green, go to %sLabels section%s and add a label to the "
9442
  "keyword that you've used as main keyword for this Focus Page. %s Make sure "
@@ -9448,41 +9237,39 @@ msgid ""
9448
  "Focus Page has been organized clearly inside your SEO Strategy. That's what "
9449
  "Briefcase Labels are all about."
9450
  msgstr ""
9451
- "Pentru a transforma această sarcină în verde, accesați secțiunea %sLabels %s "
9452
- "și adăugați o etichetă la cuvântul cheie pe care l-ați folosit ca cuvânt "
9453
- "cheie principal pentru această pagină de focalizare. %s Asigurați-vă că "
9454
- "continuați să creați etichete noi pe măsură ce găsiți mai multe cuvinte "
9455
- "cheie pe care să le vizați cu site-ul dvs. web. %s Dacă nu sunteți sigur cu "
9456
- "privire la cercetarea cu cuvinte cheie, citiți %sCum să găsiți cuvinte cheie "
9457
- "uimitoare și să obțineți mai mult trafic de căutare? %s. %s Organizați "
9458
- "toate cuvintele cheie pe care intenționați să le utilizați pentru site-ul "
9459
- "dvs. web cu etichete servieta. %s Această sarcină vă ajută să vă asigurați "
9460
- "că principalul cuvânt cheie al acestei pagini de focalizare a fost organizat "
9461
- "clar în cadrul strategiei dvs. SEO. Cam asta sunt etichetele de serviciu."
 
9462
 
9463
  #: models/focuspages/Strategy.php:104
9464
- #, fuzzy
9465
  msgid "Manage Strategy"
9466
- msgstr "Gestionează strategia"
9467
 
9468
  #: models/focuspages/Strategy.php:166 models/focuspages/Strategy.php:173
9469
- #, fuzzy
9470
  msgid "Add a secondary keyword in Squirrly Live Assistant from Briefcase"
9471
  msgstr ""
9472
  "Adăugați un cuvânt cheie secundar în Squirrly Live Assistant din Briefcase"
9473
 
9474
  #: models/focuspages/Traffic.php:66
9475
- #, fuzzy, php-format
9476
  msgid "Below %s Bounce Rate"
9477
- msgstr "Sub %s Rata de respingere"
9478
 
9479
  #: models/focuspages/Traffic.php:67
9480
- #, fuzzy
9481
  msgid "bounce rate"
9482
  msgstr "rata de respingere"
9483
 
9484
  #: models/focuspages/Traffic.php:68
9485
- #, fuzzy, php-format
9486
  msgid ""
9487
  "Make sure this number is below %s %s Why? %s A high bounce rate means that "
9488
  "your users just click on your search listing, visit the page and then decide "
@@ -9494,29 +9281,29 @@ msgid ""
9494
  "this task: give users pages to click and send them to other pages from your "
9495
  "site."
9496
  msgstr ""
9497
- "Asigurați-vă că acest număr este sub %s %s De ce? %s O rată de respingere "
9498
- "ridicată înseamnă că utilizatorii dvs. trebuie doar să facă clic pe lista "
9499
- "dvs. de căutare, viziteze pagina și apoi decidă au văzut suficient "
9500
- "și să sară pe o altă pagină de pe web. %s Acesta este, pentru Google, un "
9501
- "indicator al calității rezultatului căutării afișat. Și dacă mulți dintre "
9502
- "utilizatorii tăi sări din paginile tale, înseamnă (către Google) că pagina "
9503
- "ta nu merită afișată în rezultatele căutării, deoarece are performanțe "
9504
- "reduse cu grupurile de utilizatori pe care le trimite. %s Mod ușor de a "
9505
- "finaliza această sarcină: dați utilizatorilor pagini pentru a da clic și a "
9506
- "le trimite către alte pagini de pe site-ul dvs."
 
9507
 
9508
  #: models/focuspages/Traffic.php:71
9509
- #, fuzzy, php-format
9510
  msgid "Time on page is %s minutes"
9511
  msgstr "Timpul pe pagină este de %s minute"
9512
 
9513
  #: models/focuspages/Traffic.php:72
9514
- #, fuzzy
9515
  msgid "minutes avg."
9516
- msgstr "minute medii."
9517
 
9518
  #: models/focuspages/Traffic.php:74
9519
- #, fuzzy, php-format
9520
  msgid ""
9521
  "Make sure that visitors spend on average at least %s minutes on your site. "
9522
  "%s Get an average time on page of minimum %s minutes for this focus page. "
@@ -9526,46 +9313,44 @@ msgid ""
9526
  "the content from the page is boring, or hard to read, or the page just loads "
9527
  "too slow."
9528
  msgstr ""
9529
- "Asigurați-vă că vizitatorii petrec în medie cel puțin %s minute pe site-ul "
9530
- "dvs. %s Obțineți un timp mediu pe pagina de minim %s minute pentru această "
9531
- "pagină de focalizare. Puteți face acest lucru prin editarea conținutului și "
9532
- "pentru a face mai atractiv pentru vizitatori. %s Dacă vizitatorii dvs. nu "
9533
- "petrec cel puțin 2 minute pe pagina dvs. de focalizare, poate însemna că "
9534
- "pagina nu este suficient de importantă pentru ei sau că conținutul paginii "
9535
- "este plictisitor, sau greu de citit, sau pagina doar încărcări prea lente."
 
9536
 
9537
  #: models/focuspages/Traffic.php:77
9538
- #, fuzzy, php-format
9539
  msgid "%s visitors / day / page"
9540
  msgstr "%s vizitatori / zi / pagină"
9541
 
9542
  #: models/focuspages/Traffic.php:78
9543
- #, fuzzy
9544
  msgid "unique views avg."
9545
- msgstr "vederi unice avg."
9546
 
9547
  #: models/focuspages/Traffic.php:79
9548
- #, fuzzy, php-format
9549
  msgid ""
9550
  "For this task, we're looking at unique page views from your %sGoogle "
9551
  "Analytics%s. %s If you don't get an average of %s visitors / day / page, "
9552
  "then this Focus Page is not yet popular enough on your site. %s You should "
9553
  "make sure that more people end up visiting it."
9554
  msgstr ""
9555
- "Pentru această sarcină, ne uităm la vizualizări ale paginii unice din "
9556
- "%sGoogle Analytics %s. %s Dacă nu primiți o medie de %s vizitatori / zi / "
9557
- "pagină, atunci această pagină focalizată nu este încă suficient de populară "
9558
- "pe site-ul dvs. %s Ar trebui să vă asigurați că mai multe persoane ajung să "
9559
- "îl viziteze."
9560
 
9561
  #: models/focuspages/Traffic.php:82
9562
- #, fuzzy
9563
- #| msgid "The code for Google Analytics is incorrect."
9564
  msgid "Just one Google Analytics tracking code"
9565
- msgstr "Codul Google Analytics este incorect."
9566
 
9567
  #: models/focuspages/Traffic.php:83
9568
- #, fuzzy, php-format
9569
  msgid ""
9570
  "We've seen many sites where there were multiple google analytics codes "
9571
  "placed by different employees, themes or plugins. %s With this check, we're "
@@ -9577,91 +9362,87 @@ msgid ""
9577
  "code is the one linked to your Google Analytics account. %s These problems "
9578
  "happen more often than you would think."
9579
  msgstr ""
9580
- "Am văzut multe site-uri unde existau mai multe coduri de analiză Google "
9581
- "plasate de către angajați, teme sau pluginuri diferite. %s Cu această "
9582
- "verificare, vă ajutăm să vă asigurați că trackerul dvs. este configurat "
9583
- "corect și că nu vor exista erori cu contul dvs. Google Analytics. %s Pentru "
9584
- "a deveni acest verde, va trebui să investigați tema dvs., codul personalizat "
9585
- "pe care l-ați plasat în tema dvs., alte pluginuri, setările antetului. După "
9586
- "ce aveți o vedere clară a tuturor codurilor de urmărire, asigurați-vă că "
9587
- "rămâne doar unul și că unicul cod este cel legat de contul Google "
9588
- "Analytics. %s Aceste probleme se întâmplă mai des decât ai crede."
 
9589
 
9590
  #: models/focuspages/Traffic.php:121
9591
- #, fuzzy
9592
- #| msgid "Google %sAnalytics ID%s:"
9593
  msgid "Connect Google Analytics first"
9594
- msgstr "Google %sAnalytics ID%s:"
9595
 
9596
  #: models/focuspages/Traffic.php:123
9597
- #, fuzzy
9598
  msgid "Not enough traffic to show relevant stats"
9599
- msgstr "Nu este suficient trafic pentru a afișa statistici relevante"
9600
 
9601
  #: models/services/Robots.php:13
9602
- #, fuzzy
9603
  msgid "Squirrly SEO Robots"
9604
- msgstr "Roboți SEO squirrly"
9605
 
9606
  #: models/services/Robots.php:16
9607
- #, fuzzy
9608
  msgid ""
9609
  "Your blog is not public. Please see Site Visibility on Settings > Reading."
9610
  msgstr ""
9611
- "Blogul dvs. nu este public. Vă rugăm să consultați Vizibilitatea site-ului "
9612
- "pe Setări> Citire."
9613
 
9614
  #: models/services/Robots.php:32
9615
- #, fuzzy
9616
  msgid "No Squirrly SEO Robots found."
9617
- msgstr "Nu s-au găsit roboți SEO Squirrly"
9618
 
9619
- #: view/Assistant/Assistant.php:19
9620
- #, fuzzy
9621
  msgid "Optimize with Squirrly Live Assistant"
9622
- msgstr "Optimizează cu Squirrly Live Assistant"
9623
 
9624
- #: view/Assistant/Assistant.php:20
9625
- #, fuzzy
9626
  msgid ""
9627
  "Use Squirrly to optimize the content for your Posts, Pages, Products, Custom "
9628
  "Posts, etc."
9629
  msgstr ""
9630
- "Folosiți Squirrly pentru a optimiza conținutul pentru postările, paginile, "
9631
- "produsele etc."
9632
 
9633
- #: view/Assistant/Assistant.php:34
9634
- #, fuzzy
9635
- #| msgid "No results found!"
9636
  msgid "Practice/Test Round"
9637
- msgstr "Nu s-a gasit nimic ..."
9638
 
9639
- #: view/Assistant/Assistant.php:43
9640
  msgid "Add New"
9641
  msgstr "Adaugă nou"
9642
 
9643
- #: view/Assistant/Assistant.php:63
9644
- #, fuzzy
9645
  msgid "Tips: How to use Squirrly Live Assistant?"
9646
- msgstr "Asistent SEO Live"
9647
 
9648
- #: view/Assistant/Assistant.php:65
9649
  msgid ""
9650
  "Create a new Post, Page or Product and the Live Assistant will load so you "
9651
  "can start optimize the content."
9652
  msgstr ""
 
 
9653
 
9654
- #: view/Assistant/Assistant.php:66
9655
  msgid ""
9656
  "You can also optimize an existing one and update the content for better "
9657
  "ranking."
9658
  msgstr ""
 
 
9659
 
9660
- #: view/Assistant/Assistant.php:67
9661
  msgid ""
9662
  "Make sure you optimize the lead pages for one or more keywords and monitor "
9663
  "them with Focus Pages."
9664
  msgstr ""
 
 
9665
 
9666
  #: view/Assistant/Settings.php:8 view/Audits/Addpage.php:9
9667
  #: view/Audits/Audit.php:9 view/Audits/Audits.php:9 view/Audits/Compare.php:12
@@ -9674,110 +9455,98 @@ msgstr ""
9674
  #: view/SeoSettings/Robots.php:8 view/SeoSettings/Sitemap.php:8
9675
  #: view/SeoSettings/Social.php:8 view/SeoSettings/Tracking.php:8
9676
  #: view/SeoSettings/Webmaster.php:8
9677
- #, fuzzy
9678
  msgid ""
9679
  "You do not have permission to access this page. You need Squirrly SEO Admin "
9680
  "role."
9681
  msgstr ""
9682
- "Nu aveți permisiunea de a accesa această pagină. Ai nevoie de Squirrly SEO "
9683
- "Administrator"
9684
 
9685
  #: view/Assistant/Settings.php:26
9686
- #, fuzzy
9687
- #| msgid "Save settings"
9688
  msgid "Live Assistant Settings"
9689
- msgstr "Salveaza setari"
9690
 
9691
- #: view/Assistant/Settings.php:41
9692
- #, fuzzy
9693
  msgid "Squirrly Tooltips"
9694
- msgstr "Optiuni Squirrly"
9695
 
9696
- #: view/Assistant/Settings.php:42
9697
- #, fuzzy, php-format
9698
  msgid ""
9699
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. 'Enter a "
9700
  "keyword')."
9701
  msgstr ""
9702
- "Afișați %sSquirrly Tooltips %s la postarea unui nou articol (de exemplu, "
9703
- "\"Introduceți un cuvânt cheie\")."
9704
 
9705
- #: view/Assistant/Settings.php:52
9706
- #, fuzzy
9707
  msgid "Fetch Snippet on Social Media"
9708
- msgstr "Activați Social Media"
9709
 
9710
- #: view/Assistant/Settings.php:53
9711
  #, php-format
9712
  msgid ""
9713
  "Automatically fetch the Squirrly Snippet on %sFacebook Sharing Debugger%s "
9714
  "every time you update the content on a page."
9715
  msgstr ""
 
 
9716
 
9717
- #: view/Assistant/Settings.php:63
9718
- #, fuzzy
9719
  msgid "Download Remote Images"
9720
  msgstr "Descărcați imagini la distanță"
9721
 
9722
- #: view/Assistant/Settings.php:64
9723
- #, fuzzy, php-format
9724
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
9725
  msgstr ""
9726
- "Descărcați %sremote images %s în biblioteca dvs. %sMedia %s pentru noile "
9727
  "postări."
9728
 
9729
- #: view/Assistant/Settings.php:65
9730
- #, fuzzy
9731
  msgid ""
9732
  "Prevent from losing the images you use in your articles in case the remote "
9733
  "images are deleted."
9734
  msgstr ""
9735
- "Împiedicați pierderea imaginilor pe care le utilizați în articolele dvs. în "
9736
- "cazul în care imaginile la distanță sunt șterse."
9737
 
9738
- #: view/Assistant/Settings.php:76
9739
- #, fuzzy
9740
- #| msgid "Show only Copyright Free images"
9741
  msgid "Show Copyright Free Images"
9742
- msgstr "Arata doar imagini fara copyright"
9743
 
9744
- #: view/Assistant/Settings.php:77
9745
- #, fuzzy, php-format
9746
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
9747
- msgstr "Căutați %sCopyright Free Images %s în Squirrly Live Assistant."
9748
 
9749
- #: view/Assistant/Settings.php:87
9750
- #, fuzzy
9751
- #| msgid "Save settings"
9752
  msgid "Live Assistant Type"
9753
- msgstr "Salveaza setari"
9754
 
9755
- #: view/Assistant/Settings.php:88
9756
- #, fuzzy
9757
  msgid "Select how you want Squirrly Live Assistant to load in editor."
9758
- msgstr "Asistent SEO Live"
 
 
9759
 
9760
- #: view/Assistant/Settings.php:92
9761
  msgid "Auto"
9762
  msgstr "Auto"
9763
 
9764
- #: view/Assistant/Settings.php:93
9765
- #, fuzzy
9766
  msgid "Integrated Box"
9767
- msgstr "Caseta integrată"
9768
 
9769
- #: view/Assistant/Settings.php:94
9770
- #, fuzzy
9771
  msgid "Floating Box"
9772
  msgstr "Cutie plutitoare"
9773
 
9774
- #: view/Assistant/Settings.php:107
9775
- #, fuzzy
9776
  msgid "Activate Live Assistant in Frontend"
9777
- msgstr "Activați Asistent Live în Frontend"
9778
 
9779
- #: view/Assistant/Settings.php:108
9780
- #, fuzzy
9781
  msgid ""
9782
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
9783
  "with Builders."
@@ -9785,166 +9554,143 @@ msgstr ""
9785
  "Încărcați Squirrly Live Assistant în Frontend pentru a personaliza postările "
9786
  "și paginile cu Builders."
9787
 
9788
- #: view/Assistant/Settings.php:109
9789
- #, fuzzy
9790
  msgid "Currently supports the Elementor Builder plugin."
9791
- msgstr "În prezent acceptă pluginul Elementor Builder."
9792
 
9793
- #: view/Assistant/Settings.php:116
9794
- #, fuzzy
9795
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
9796
- msgstr "Locuri în care NU doriți se încarce Squirrly Live Assistant"
9797
 
9798
- #: view/Assistant/Settings.php:118
9799
- #, fuzzy
9800
  msgid ""
9801
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
9802
  "post types."
9803
  msgstr ""
9804
  "Nu selectați nimic dacă doriți ca Squirrly Live Assistant să se încarce "
9805
- "pentru toate tipurile de post."
9806
 
9807
- #: view/Assistant/Settings.php:124
9808
  msgid "Exclusions"
9809
  msgstr "Excluderi"
9810
 
9811
- #: view/Assistant/Settings.php:125
9812
- #, fuzzy
9813
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
9814
  msgstr ""
9815
- "Selectați locațiile în care NU doriți se încarce Squirrly Live Assistant."
 
9816
 
9817
- #: view/Assistant/Settings.php:152 view/SeoSettings/Automation.php:507
9818
- #: view/SeoSettings/Jsonld.php:425 view/SeoSettings/Metas.php:227
9819
- #: view/SeoSettings/Sitemap.php:370 view/SeoSettings/Social.php:415
9820
  msgid "Show Advanced Options"
9821
  msgstr "Arată opțiuni avansate"
9822
 
9823
- #: view/Assistant/Settings.php:153 view/SeoSettings/Automation.php:508
9824
- #: view/SeoSettings/Jsonld.php:426 view/SeoSettings/Metas.php:228
9825
- #: view/SeoSettings/Sitemap.php:371 view/SeoSettings/Social.php:416
9826
- #, fuzzy
9827
  msgid "Hide Advanced Options"
9828
  msgstr "Ascundeți opțiunile avansate"
9829
 
9830
- #: view/Assistant/Settings.php:156 view/Audits/Settings.php:61
9831
- #: view/Ranking/Settings.php:346 view/SeoSettings/Advanced.php:92
9832
- #: view/SeoSettings/Automation.php:511 view/SeoSettings/Automation.php:625
9833
- #: view/SeoSettings/Favicon.php:108 view/SeoSettings/Jsonld.php:429
9834
- #: view/SeoSettings/Links.php:112 view/SeoSettings/Metas.php:231
9835
- #: view/SeoSettings/Robots.php:86 view/SeoSettings/Sitemap.php:374
9836
- #: view/SeoSettings/Social.php:419 view/SeoSettings/Tracking.php:147
9837
- #: view/SeoSettings/Webmaster.php:157
9838
  msgid "Save Settings"
9839
  msgstr "Salveaza setari"
9840
 
9841
  #: view/Audits/Addpage.php:23
9842
- #, fuzzy
9843
  msgid "Add a page in Audit"
9844
  msgstr "Adăugați o pagină în Audit"
9845
 
9846
- #: view/Audits/Addpage.php:24 view/Audits/Audit.php:26
9847
- #: view/Audits/Audits.php:27 view/Audits/Compare.php:30
9848
- #, fuzzy
9849
  msgid ""
9850
  "Verifies the online presence of your website by knowing how your website is "
9851
  "performing in terms of Blogging, SEO, Social, Authority, Links, and Traffic"
9852
  msgstr ""
9853
- "Verifică prezența online a site-ului dvs. web cunoscând performanțele site-"
9854
- "ului dvs. în termeni de blogging, SEO, social, autoritate, link-uri și trafic"
 
9855
 
9856
- #: view/Audits/Addpage.php:92 view/BulkSeo/Bulkseo.php:100
9857
- #: view/FocusPages/Addpage.php:92
9858
- #, fuzzy
9859
  msgid "Any status"
9860
  msgstr "Orice statut"
9861
 
9862
- #: view/Audits/Addpage.php:112 view/BulkSeo/Bulkseo.php:120
9863
- #: view/FocusPages/Addpage.php:112 view/Research/Research.php:208
9864
  msgid "Search"
9865
  msgstr "Caută"
9866
 
9867
- #: view/Audits/Addpage.php:114 view/Audits/Audit.php:38
9868
- #: view/Audits/Compare.php:45 view/BulkSeo/Bulkseo.php:122
9869
- #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:7
9870
- #: view/Ranking/Rankings.php:59 view/Research/Briefcase.php:38
 
9871
  msgid "Show All"
9872
  msgstr "Arată toate"
9873
 
9874
- #: view/Audits/Addpage.php:132 view/FocusPages/Addpage.php:133
9875
  msgid "Option"
9876
  msgstr "Opțiune"
9877
 
9878
- #: view/Audits/Addpage.php:174
9879
- #, fuzzy
9880
  msgid "Add Page to Audit"
9881
  msgstr "Adăugați pagina la audit"
9882
 
9883
- #: view/Audits/Addpage.php:178
9884
- #, fuzzy
9885
  msgid "See Audits"
9886
- msgstr "Vezi Audituri"
9887
 
9888
- #: view/Audits/Addpage.php:192 view/BulkSeo/Bulkseo.php:197
9889
- #: view/FocusPages/Addpage.php:196
9890
- #, fuzzy
9891
  msgid "Prev Page"
9892
- msgstr "Pagina Prev"
9893
 
9894
- #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
9895
- #: view/FocusPages/Addpage.php:197
9896
  msgid "Next Page"
9897
  msgstr "Pagina următoare"
9898
 
9899
- #: view/Audits/Addpage.php:201 view/FocusPages/Addpage.php:205
9900
- #, fuzzy
9901
  msgid "No page found. Try other post types."
9902
- msgstr ""
9903
- "Nu au fost găsite date pentru acest tip de postare. Încercați alte tipuri de "
9904
- "postare."
9905
 
9906
  #: view/Audits/Audit.php:25 view/Audits/Compare.php:29
9907
- #, fuzzy
9908
- #| msgid "Your E-mail:"
9909
  msgid "Audit Details"
9910
- msgstr "Emailul tau:"
9911
 
9912
- #: view/Audits/Audit.php:64
9913
- #, fuzzy
9914
- #| msgid "Could not process"
9915
  msgid "Audit Pages"
9916
- msgstr "Nu s-a putut verifica"
9917
 
9918
- #: view/Audits/Audit.php:87
9919
- #, fuzzy
9920
- #| msgid "Show only Copyright Free images"
9921
  msgid "Show Only Completed Tasks"
9922
- msgstr "Arata doar imagini fara copyright"
9923
 
9924
- #: view/Audits/Audit.php:92
9925
- #, fuzzy
9926
  msgid "Show Only Incompleted Tasks"
9927
- msgstr "Afișați numai sarcini incomplete"
9928
 
9929
  #: view/Audits/AuditPageRow.php:41
9930
- #, fuzzy
9931
  msgid "Last checked"
9932
  msgstr "Ultima verificare"
9933
 
9934
  #: view/Audits/AuditPageRow.php:47
9935
- #, fuzzy
9936
- #| msgid "Could not send the email..."
9937
  msgid "Could not create the audit for this URL"
9938
- msgstr "Nu s-a putut trimite email ..."
9939
 
9940
  #: view/Audits/AuditPageRow.php:47
9941
- #, fuzzy
9942
- #| msgid "An error occured."
9943
  msgid "error code"
9944
- msgstr "A aparut o eroare."
9945
 
9946
  #: view/Audits/AuditPageRow.php:49
9947
- #, fuzzy, php-format
9948
  msgid ""
9949
  "The way your WordPress site is currently hosted can affect the way Squirrly "
9950
  "SEO operates in order to retrieve and process data about this page. %sIt’s "
@@ -9952,95 +9698,90 @@ msgid ""
9952
  "generated by our system. %s Whitelist our crawler IP address (176.9.112.210) "
9953
  "to allow our server to verify your page so that you’ll receive a full audit."
9954
  msgstr ""
9955
- "Detalii despre sarcină: Modul în care este găzduit site-ul dvs. WordPress în "
9956
- "prezent poate afecta modul în care funcționează Squirrly SEO pentru a prelua "
9957
- "și prelucra date despre paginile dvs. de focalizare. Este important "
9958
- "faceți totul la sfârșitul dvs. pentru a vă asigura că auditul Pagini Focus "
9959
- "poate fi generat de sistemul nostru."
 
 
9960
 
9961
  #: view/Audits/AuditPageRow.php:50 view/Audits/AuditPageRow.php:78
9962
- #: view/FocusPages/FocusPageRow.php:114 view/FocusPages/FocusPageRow.php:192
9963
- #, fuzzy
9964
  msgid "Inspect URL"
9965
- msgstr "Adresa URL"
9966
 
9967
- #: view/Audits/AuditPageRow.php:66
9968
- #, fuzzy
 
 
 
 
9969
  msgid "Do you want to delete the Audit Page?"
9970
- msgstr "Doriți să ștergeți automatizarea pentru %s?"
9971
 
9972
- #: view/Audits/AuditPageRow.php:72
9973
- #, fuzzy
9974
  msgid "Remove Page from Audit"
9975
- msgstr "Ștergeți pagina din audit"
9976
 
9977
  #: view/Audits/AuditPages.php:7
9978
- #, fuzzy
9979
- #| msgid "Could not process"
9980
  msgid "Audited pages"
9981
- msgstr "Nu s-a putut verifica"
9982
 
9983
  #: view/Audits/AuditPages.php:14 view/FocusPages/FocusPages.php:54
9984
  msgid "Permalink"
9985
  msgstr "Permalink"
9986
 
9987
  #: view/Audits/AuditPages.php:48
9988
- #, fuzzy, php-format
9989
  msgid "No data for this filter. %sShow All%s Audit Pages."
9990
- msgstr ""
9991
- "Nu există date pentru acest filtru. %s Afișează toate paginile de audit %s."
9992
 
9993
  #: view/Audits/AuditPages.php:54
9994
- #, fuzzy
9995
- msgid "Welcome to Squirrly SEO Audits"
9996
- msgstr "Bine ați venit la Squirrly SEO Audits"
9997
 
9998
  #: view/Audits/AuditPages.php:56
9999
- #, fuzzy
10000
  msgid "Add a new page for Audit to get started"
10001
  msgstr "Adăugați o nouă pagină pentru Audit pentru a începe"
10002
 
10003
  #: view/Audits/AuditPages.php:69 view/Errors/Error.php:21
10004
- #: view/FocusPages/FocusPages.php:127 view/Ranking/Rankings.php:459
10005
- #, fuzzy, php-format
10006
  msgid ""
10007
  "There is a connection error with Squirrly Cloud. Please check the connection "
10008
  "and %srefresh the page%s."
10009
  msgstr ""
10010
- "Există o eroare de conectare cu Squirrly Cloud. Verificați conexiunea și "
10011
- "%srefresh pagina %s."
10012
 
10013
  #: view/Audits/AuditStats.php:30
10014
- #, fuzzy
10015
  msgid ""
10016
  "Your score is low. A medium score is over 50, and a good score is over 80."
10017
  msgstr ""
10018
- "Scorul dvs. este scăzut. Un scor mediu este peste 50, iar un scor bun este "
10019
- "peste 80."
10020
 
10021
  #: view/Audits/AuditStats.php:32
10022
- #, fuzzy
10023
  msgid "Your score is medium. A good score is over 80."
10024
- msgstr "Scorul dvs. este mediu. Un scor bun este peste 80"
10025
 
10026
  #: view/Audits/AuditStats.php:34
10027
- #, fuzzy
10028
  msgid "Your score is good. Keep it as high as posible for good results."
10029
- msgstr "Scorul dvs. este bun. Păstrați-l cât mai sus pentru rezultate bune"
 
 
10030
 
10031
  #: view/Audits/AuditStats.php:41 view/Audits/AuditStats.php:235
10032
- #: view/Audits/Compare.php:74
10033
- #, fuzzy
10034
  msgid "Audit Score"
10035
- msgstr "Squirrly article rank"
10036
 
10037
  #: view/Audits/AuditStats.php:54
10038
- #, fuzzy
10039
  msgid "Your audit score is"
10040
- msgstr "Scorul dvs. de audit este:"
10041
 
10042
  #: view/Audits/AuditStats.php:63
10043
- #, fuzzy
10044
  msgid "Add a new page for Audit"
10045
  msgstr "Adăugați o nouă pagină pentru Audit"
10046
 
@@ -10049,172 +9790,136 @@ msgid "Audit Date"
10049
  msgstr "Data auditului"
10050
 
10051
  #: view/Audits/AuditStats.php:78 view/Audits/AuditStats.php:102
10052
- #, fuzzy
10053
  msgid "You can refresh the audit once every hour"
10054
- msgstr "Puteți reîmprospăta auditul o dată în fiecare oră"
10055
 
10056
  #: view/Audits/AuditStats.php:80 view/Audits/AuditStats.php:104
10057
- #, fuzzy
10058
  msgid "Request Website Audit"
10059
- msgstr "Solicitați auditul site-ului web"
10060
 
10061
  #: view/Audits/AuditStats.php:90
10062
- #, fuzzy
10063
- #| msgid "Could not process"
10064
  msgid "Audit in progress"
10065
- msgstr "Nu s-a putut verifica"
10066
 
10067
  #: view/Audits/AuditStats.php:96
10068
- #, fuzzy
10069
  msgid "Audit not ready yet"
10070
- msgstr "Auditul nu este încă pregătit"
10071
 
10072
  #: view/Audits/AuditStats.php:123 view/Audits/AuditStats.php:237
10073
- #: view/Ranking/Rankings.php:411 view/Research/History.php:32
10074
  msgid "Date"
10075
  msgstr "Data"
10076
 
10077
  #: view/Audits/AuditStats.php:123
10078
- #, fuzzy
10079
  msgid "On-Page"
10080
- msgstr "Pe pagina"
10081
 
10082
  #: view/Audits/AuditStats.php:123
10083
- #, fuzzy
10084
  msgid "Off-Page"
10085
  msgstr "Off-Page"
10086
 
10087
  #: view/Audits/AuditStats.php:146
10088
- #, fuzzy, php-format
10089
  msgid "You've completed %s tasks from %s"
10090
- msgstr "Ați finalizat sarcinile %s de la %s"
10091
 
10092
- #: view/Audits/AuditStats.php:170 view/Audits/Compare.php:55
10093
- #, fuzzy
10094
  msgid "Scores"
10095
  msgstr "Scoruri"
10096
 
10097
  #: view/Audits/AuditStats.php:171
10098
- #, fuzzy, php-format
10099
  msgid "the latest %s days evolution for Audit"
10100
- msgstr "ultima evoluție de %s zile pentru Audit"
10101
 
10102
  #: view/Audits/AuditStats.php:196 view/FocusPages/FocusPageStats.php:141
10103
- #: view/Goals/CheckSeo.php:21 view/Ranking/Rankings.php:156
10104
- #, fuzzy
10105
  msgid "Progress & Achievements"
10106
- msgstr "Progresul și realizările"
10107
 
10108
  #: view/Audits/AuditStats.php:197
10109
- #, fuzzy, php-format
10110
  msgid "the latest %s days progress for Audit Pages"
10111
  msgstr "ultimele %s zile de progres pentru Pagini de audit"
10112
 
10113
  #: view/Audits/AuditStats.php:207 view/FocusPages/FocusPageStats.php:152
10114
- #: view/Ranking/Rankings.php:185
10115
- #, fuzzy
10116
- #| msgid "No results found!"
10117
  msgid "No progress found yet"
10118
- msgstr "Nu s-a gasit nimic ..."
10119
 
10120
  #: view/Audits/AuditStats.php:220
10121
- #, fuzzy
10122
  msgid "Audit History"
10123
- msgstr "Squirrly article rank"
10124
 
10125
  #: view/Audits/AuditStats.php:227
10126
- #, fuzzy
10127
  msgid "Compare Audits"
10128
  msgstr "Comparați auditurile"
10129
 
10130
  #: view/Audits/AuditStats.php:236
10131
- #, fuzzy
10132
  msgid "Page(s)"
10133
- msgstr "Pagina (s)"
10134
 
10135
  #: view/Audits/AuditStats.php:253
10136
  msgid "pages"
10137
  msgstr "meniu"
10138
 
10139
  #: view/Audits/AuditStats.php:257
10140
- #, fuzzy
10141
  msgid "Show Latest Audit"
10142
- msgstr "Show Audit"
10143
 
10144
  #: view/Audits/AuditStats.php:257
10145
- #, fuzzy
10146
  msgid "Show Audit"
10147
- msgstr "Show Audit"
10148
-
10149
- #: view/Audits/Audits.php:26
10150
- #, fuzzy
10151
- msgid "Audits"
10152
- msgstr "auditurile"
10153
 
10154
- #: view/Audits/Audits.php:67
10155
- #, fuzzy, php-format
10156
  msgid ""
10157
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
10158
  "to generate the new audit for each page. There is a lot of processing "
10159
  "involved."
10160
  msgstr ""
10161
- "%sNote: %s țin minte este nevoie de oriunde între %s1 minut până la 5 "
10162
- "minute %s pentru a genera noul audit pentru fiecare pagină. Sunt multe "
10163
- "prelucrări implicate."
10164
 
10165
- #: view/Audits/Audits.php:74
10166
- #, fuzzy, php-format
10167
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
10168
- msgstr ""
10169
- "Aflați cum să vă îmbunătățiți scorul Auditului SEO în timp %s Faceți clic "
10170
- "aici %s"
10171
 
10172
- #: view/Audits/Audits.php:93 view/FocusPages/Pagelist.php:92
10173
- #, fuzzy
10174
- #| msgid "Squirrly Snippet"
10175
  msgid "Squirrly Inspect URL"
10176
- msgstr "Snipet Squirrly"
10177
 
10178
  #: view/Audits/Settings.php:31
10179
- #, fuzzy
10180
- #| msgid " settings"
10181
  msgid "Audit Settings"
10182
- msgstr "setari"
10183
 
10184
- #: view/Audits/Settings.php:44
10185
- #, fuzzy
10186
- #| msgid "Your E-mail:"
10187
  msgid "Audit Email"
10188
- msgstr "Emailul tau:"
10189
 
10190
- #: view/Audits/Settings.php:45
10191
- #, fuzzy
10192
  msgid "Enter the email address on which you want to receive the weekly audits."
10193
  msgstr ""
10194
- "Introduceți adresa de e-mail pe care doriți să primiți audituri săptămânale."
 
10195
 
10196
  #: view/Blocks/Account.php:11
10197
- #, fuzzy
10198
- #| msgid "Account Info"
10199
  msgid "Account Info Unavailable"
10200
- msgstr "Informatii cont"
10201
 
10202
  #: view/Blocks/Account.php:44
10203
- #, fuzzy
10204
  msgid "Your Plan"
10205
- msgstr "Planul tau:"
10206
 
10207
  #: view/Blocks/Account.php:45
10208
- #, fuzzy
10209
- #| msgid "Squirrly account information"
10210
  msgid "Check Account Info"
10211
- msgstr "Informatii cont Squirrly"
10212
 
10213
  #: view/Blocks/Account.php:50 view/Blocks/Login.php:10 view/Blocks/Login.php:28
10214
- #, fuzzy
10215
- #| msgid "Email:"
10216
  msgid "Email"
10217
- msgstr "Email:"
10218
 
10219
  #: view/Blocks/Account.php:56
10220
  #, php-format
@@ -10223,213 +9928,213 @@ msgstr "Data scadentă: %s"
10223
 
10224
  #: view/Blocks/Account.php:63
10225
  msgid "Want to see the rest of the sites under your account?"
10226
- msgstr ""
10227
 
10228
  #: view/Blocks/Account.php:64
10229
- #, fuzzy
10230
- #| msgid "Clicks"
10231
  msgid "Click Here"
10232
- msgstr "Click-uri"
10233
 
10234
  #: view/Blocks/Connect.php:15 view/Blocks/Connect.php:29
10235
- #, fuzzy, php-format
10236
  msgid ""
10237
  "This option is used to track innerlinks and insights for your Focus Pages "
10238
  "and give detailed information about them. %sIt is also useful for sending "
10239
  "the optimized posts from %shttps://cloud.squirrly.co%s directly on your "
10240
  "WordPress site."
10241
  msgstr ""
10242
- "Această opțiune este utilizată pentru a urmări legăturile interioare și "
10243
- "informațiile pentru paginile dvs. Focus și pentru a oferi informații "
10244
- "detaliate despre acestea."
 
 
10245
 
10246
  #: view/Blocks/Connect.php:16
10247
- #, fuzzy
10248
  msgid "Let Squirrly Cloud get data for Focus Pages"
10249
- msgstr "Permiteți Squirrly API să obțină date pentru Focus Pages"
10250
 
10251
  #: view/Blocks/Connect.php:19
10252
  msgid "Connect"
10253
  msgstr "Conecteaza"
10254
 
10255
  #: view/Blocks/Connect.php:31
10256
- #, fuzzy
10257
- msgid "Let Squirrly API get data for Focus Pages"
10258
- msgstr "Permiteți Squirrly API să obțină date pentru Focus Pages"
10259
 
10260
  #: view/Blocks/Connect.php:35
10261
- #, fuzzy
10262
- #| msgid "Connecting ..."
10263
  msgid "disconnect"
10264
- msgstr "Conectare ..."
10265
 
10266
  #: view/Blocks/Dashboard.php:22
10267
- #, fuzzy
10268
  msgid "Upgrade your SEO with Squirrly and improve your rankings on Google"
10269
  msgstr ""
10270
- "Upgrade-ți SEO-ul cu Squirrly și îmbunătățește-ți clasamentele pe Google"
10271
 
10272
  #: view/Blocks/Dashboard.php:32
10273
- #, fuzzy
10274
- #| msgid "Congratulations! Now write a new article with:"
10275
  msgid "Congratulations! you have success messages"
10276
- msgstr "Felicitari! Acum scrie un nou articol cu:"
10277
 
10278
  #: view/Blocks/Dashboard.php:51 view/Blocks/Dashboard.php:89
10279
- #, fuzzy
10280
  msgid "others"
10281
  msgstr "alții"
10282
 
10283
  #: view/Blocks/Dashboard.php:60
10284
- #, fuzzy, php-format
10285
  msgid "See %s other achievements"
10286
- msgstr "Vezi alte% realizări"
10287
 
10288
  #: view/Blocks/Dashboard.php:62
10289
- #, fuzzy
10290
- #| msgid "See dashboard"
10291
  msgid "See today's achievements"
10292
- msgstr "Vezi Dashboard"
10293
 
10294
  #: view/Blocks/Dashboard.php:71
10295
- #, fuzzy
10296
  msgid "You got new goals"
10297
- msgstr "Ai astăzi noi obiective"
10298
 
10299
  #: view/Blocks/Dashboard.php:98
10300
- #, fuzzy, php-format
10301
- #| msgid "See dashboard"
10302
  msgid "See %s other goals"
10303
- msgstr "Vezi Dashboard"
10304
 
10305
  #: view/Blocks/Dashboard.php:100
10306
- #, fuzzy
10307
- #| msgid "See dashboard"
10308
  msgid "See today's goals"
10309
- msgstr "Vezi Dashboard"
10310
 
10311
  #: view/Blocks/Dashboard.php:106 view/Goals/Goals.php:214
10312
- #, fuzzy, php-format
10313
  msgid "No other goals for today. %sGood job!"
10314
- msgstr "Niciun alt obiectiv pentru astăzi. %sBun loc de muncă!"
10315
 
10316
  #: view/Blocks/Dashboard.php:108 view/Goals/Goals.php:225
10317
- #, fuzzy
10318
  msgid "Rank your best pages with Focus Pages"
10319
- msgstr "Clasează-ți cele mai bune pagini cu Focus Pages"
10320
 
10321
  #: view/Blocks/Dashboard.php:111 view/Goals/Goals.php:222
10322
- #, fuzzy
10323
  msgid "Boost your SEO with Bulk SEO"
10324
- msgstr "Îmbunătățiți-vă SEO cu Bulk SEO"
10325
 
10326
- #: view/Blocks/Dashboard.php:136 view/Goals/CheckSeo.php:119
10327
- #, fuzzy
10328
- #| msgid "Check with google ..."
10329
  msgid "Checking the website ..."
10330
- msgstr "Verificat cu google ..."
10331
 
10332
- #: view/Blocks/Features.php:11
10333
- #, fuzzy
10334
- #| msgid "Squirrly SEO Editor"
10335
- msgid "Squirrly SEO Feature Categories"
10336
- msgstr "Editor Squirrly SEO"
10337
 
10338
- #: view/Blocks/Features.php:12
10339
- #, fuzzy
10340
- msgid "Manage the Squirrly SEO Features & access them directly from here."
10341
- msgstr ""
10342
- "Încărcați fragmentul SEO Squirrly în Frontend pentru a personaliza SEO "
10343
- "direct din previzualizarea paginii."
10344
 
10345
- #: view/Blocks/Features.php:23
10346
- #, fuzzy
10347
- #| msgid "Search it:"
10348
  msgid "Search Feature"
10349
- msgstr "Se cauta:"
 
 
 
 
 
10350
 
10351
- #: view/Blocks/Features.php:59
 
 
 
 
10352
  msgid "start feature setup"
10353
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10354
 
10355
  #: view/Blocks/Jorney.php:13 view/Blocks/Jorney.php:96
10356
- #, fuzzy
10357
  msgid "14 Days Journey Course"
10358
- msgstr "Curs de 14 zile de călătorie"
10359
 
10360
  #: view/Blocks/Jorney.php:18
10361
- #, fuzzy, php-format
10362
  msgid "Follow the %sdaily recipe%s from below."
10363
- msgstr "Urmați rețeta %sdaily %s de jos."
10364
 
10365
  #: view/Blocks/Jorney.php:19 view/Onboarding/Journey2.php:33
10366
- #, fuzzy, php-format
10367
  msgid ""
10368
  "%sJoin%s the rest of the %sJourneyTeam on the Facebook Group%s and if you "
10369
  "want you can share with the members that you have started your Journey."
10370
  msgstr ""
10371
- "%sJoin%% restul %sJourneyTeam de pe grupul Facebook %s și, dacă doriți, "
10372
- "puteți partaja cu membrii că ați început călătoria."
10373
 
10374
  #: view/Blocks/Jorney.php:33
10375
- #, fuzzy
10376
  msgid "Congratulations! You've completed the 14 Days Journey To Better Ranking"
10377
  msgstr ""
10378
- "Felicitări! Ați finalizat cele 14 zile de călătorie către un clasament mai "
10379
- "bun"
10380
 
10381
  #: view/Blocks/Jorney.php:35
10382
- #, fuzzy
10383
  msgid "Your 14 Days Journey To Better Ranking"
10384
- msgstr "Călătoria ta de 14 zile către un clasament mai bun"
10385
 
10386
  #: view/Blocks/Jorney.php:43 view/Blocks/Jorney.php:61
10387
  msgid "Day"
10388
  msgstr "Zi"
10389
 
10390
  #: view/Blocks/Jorney.php:50
10391
- #, fuzzy
10392
  msgid "If you missed a day, click on it and read the SEO recipe for it."
10393
- msgstr "Dacă ați ratat o zi, faceți clic pe ea și citiți rețeta SEO pentru ea."
10394
 
10395
  #: view/Blocks/Jorney.php:56
10396
- #, fuzzy
10397
  msgid "I'm all done. Hide this block."
10398
  msgstr "Am terminat. Ascundeți acest bloc."
10399
 
10400
  #: view/Blocks/Jorney.php:61
10401
- #, fuzzy
10402
  msgid "Open the SEO recipe for today"
10403
- msgstr "Deschide rețeta SEO pentru astăzi"
10404
 
10405
  #: view/Blocks/Jorney.php:66 view/FocusPages/Addpage.php:23
10406
- #, fuzzy
10407
  msgid "Add a page in Focus Pages"
10408
  msgstr "Adăugați o pagină în Focus Pages"
10409
 
10410
  #: view/Blocks/Jorney.php:101 view/Onboarding/Journey1.php:23
10411
- #, fuzzy
10412
  msgid ""
10413
  "All you need now is to start driving One of your most valuable pages to "
10414
  "Better Rankings."
10415
  msgstr ""
10416
- "Tot ce îți trebuie acum este să începiconduci Una dintre cele mai "
10417
- "valoroase pagini ale tale cu Top Rankings."
10418
 
10419
  #: view/Blocks/Jorney.php:104
10420
- #, fuzzy
10421
  msgid "I'm ready to start the Journey To Better Ranking"
10422
- msgstr "Sunt gata să încep călătoria către o mai bună clasare"
10423
 
10424
- #: view/Blocks/KnowledgeBase.php:7
10425
  msgid "Knowledge Base"
10426
  msgstr "Baza de cunoştinţe"
10427
 
10428
  #: view/Blocks/Login.php:14
10429
- #, fuzzy
10430
- #| msgid "Password:"
10431
  msgid "Password"
10432
- msgstr "Parola:"
10433
 
10434
  #: view/Blocks/Login.php:18
10435
  msgid "Register to Squirrly.co"
@@ -10452,70 +10157,51 @@ msgid "I already have an account"
10452
  msgstr "Am deja un cont"
10453
 
10454
  #: view/Blocks/Login.php:38
10455
- #, fuzzy, php-format
10456
  msgid "I Agree with the Squirrly %sTerms of Use%s and %sPrivacy Policy%s"
10457
  msgstr ""
10458
- "Sunt de acord cu Squirrly %sTermeni de utilizare %s și %s Politica de "
10459
- "confidențialitate %s"
10460
 
10461
  #: view/Blocks/Login.php:40
10462
  msgid "Sign Up"
10463
  msgstr "Sign Up"
10464
 
10465
  #: view/Blocks/SLASearch.php:3
10466
- #, fuzzy
10467
  msgid "Waiting for your editor to load .."
10468
- msgstr "Așteptați să se încarce editorul dvs. .."
10469
-
10470
- #: view/Blocks/SLASearch.php:4 view/Blocks/Toolbar.php:62
10471
- #, fuzzy
10472
- msgid ""
10473
- "Javascript is disabled on your browser! You need to activate the javascript "
10474
- "in order to use Squirrly SEO."
10475
- msgstr ""
10476
- "Javascript este dezactivat! Trebuie să activați javascriptul pentru a "
10477
- "utiliza Squirrly SEO."
10478
 
10479
  #: view/Blocks/SLASearch.php:9
10480
- #, fuzzy
10481
  msgid "Click to Close Squirrly Live Assistant"
10482
- msgstr "Asistent SEO Live"
10483
 
10484
  #: view/Blocks/SLASearch.php:10
10485
- #, fuzzy
10486
  msgid "Click to Minimize Box"
10487
  msgstr "Faceți clic pentru a minimiza caseta"
10488
 
10489
  #: view/Blocks/SLASearch.php:11
10490
- #, fuzzy
10491
  msgid "Click to Maximize Box"
10492
  msgstr "Faceți clic pentru a maximiza caseta"
10493
 
10494
  #: view/Blocks/SLASearch.php:12 view/Blocks/SLASearch.php:18
10495
- #, fuzzy
10496
  msgid "Squirrly Briefcase"
10497
- msgstr "Servieta Squirrly"
10498
 
10499
  #: view/Blocks/SLASearch.php:19
10500
- #, fuzzy
10501
- #| msgid "Squirrly Keyword Research"
10502
  msgid "Refresh the briefcase"
10503
- msgstr " Cercetare cuvinte cheie"
10504
 
10505
  #: view/Blocks/SLASearch.php:20
10506
- #, fuzzy
10507
  msgid "Close Briefcase"
10508
- msgstr "Închide servieta"
10509
 
10510
  #: view/Blocks/SLASearch.php:22
10511
- #, fuzzy
10512
  msgid "Search in Briefcase ..."
10513
- msgstr "Căutați în servietă ..."
10514
 
10515
  #: view/Blocks/SLASearch.php:24
10516
- #, fuzzy
10517
  msgid "Go to Briefcase"
10518
- msgstr "Accesați Servieta"
10519
 
10520
  #: view/Blocks/SLASearch.php:32
10521
  msgid "Enter a keyword"
@@ -10526,20 +10212,16 @@ msgid "for Squirrly Live SEO optimization"
10526
  msgstr "pentru optimizare cu Squirrly SEO"
10527
 
10528
  #: view/Blocks/SLASearch.php:38
10529
- #, fuzzy
10530
- #| msgid "Enter even more keywords."
10531
  msgid "Type in your keyword..."
10532
- msgstr "Adauga mai multe cuvinte"
10533
 
10534
  #: view/Blocks/SLASearch.php:40
10535
  msgid "Use this keyword"
10536
  msgstr "Foloseste acest cuvant"
10537
 
10538
  #: view/Blocks/SLASearch.php:43
10539
- #, fuzzy
10540
- #| msgid "Do more research!"
10541
  msgid "Do keyword research!"
10542
- msgstr "Mai multe detalii!"
10543
 
10544
  #: view/Blocks/SLASearch.php:47
10545
  msgid "Images"
@@ -10566,493 +10248,478 @@ msgid "Show only Copyright Free images"
10566
  msgstr "Arata doar imagini fara copyright"
10567
 
10568
  #: view/Blocks/SLASeo.php:4
10569
- #, fuzzy
10570
  msgid "Squirrly Live Assistant"
10571
- msgstr "Squirrly Live Assistant"
10572
 
10573
  #: view/Blocks/SLASeo.php:7
10574
  msgid "Update"
10575
  msgstr "Update"
10576
 
10577
  #: view/Blocks/SLASeo.php:10
10578
- #, fuzzy
10579
  msgid "Split Window"
10580
- msgstr "Fereastră despărțită"
10581
 
10582
- #: view/Blocks/Snippet.php:81
10583
- #, fuzzy
10584
  msgid "Meta Tags"
10585
  msgstr "Meta etichete"
10586
 
10587
- #: view/Blocks/Snippet.php:108
10588
- #, fuzzy, php-format
10589
  msgid ""
10590
  "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
10591
  "will not load for this post type on the frontend"
10592
  msgstr ""
10593
- "Tipul de postare ( %s) a fost exclus din %sSquirrly> Setări SEO %s. Squirrly "
10594
- "SEO nu se va încărca pentru acest tip de postare pe frontend"
10595
 
10596
- #: view/Blocks/Snippet.php:116 view/SeoSettings/Automation.php:184
10597
- #: view/SeoSettings/Automation.php:211 view/SeoSettings/Automation.php:290
10598
- #, fuzzy
10599
  msgid "Activate Metas"
10600
- msgstr "Activați Metas"
10601
 
10602
- #: view/Blocks/Snippet.php:125
10603
- #, fuzzy
10604
  msgid "How this page will appear on Search Engines"
10605
- msgstr "Cum va apărea această pagină pe Motoarele de căutare"
10606
 
10607
- #: view/Blocks/Snippet.php:129 view/Blocks/Snippet.php:361
10608
- #: view/Blocks/Snippet.php:569 view/Blocks/Snippet.php:835
10609
- #: view/Blocks/Snippet.php:1065
10610
  msgid "Refresh"
10611
  msgstr "Reîmprospătare"
10612
 
10613
- #: view/Blocks/Snippet.php:133 view/Blocks/Snippet.php:594
10614
- #: view/Blocks/Snippet.php:862
10615
- #, fuzzy
10616
  msgid "AUTO-DRAFT"
10617
- msgstr "AUTO-PROIECT"
10618
 
10619
- #: view/Blocks/Snippet.php:144 view/Blocks/Snippet.php:882
10620
- #, fuzzy
10621
  msgid "Please save the post first to be able to edit the Squirrly SEO Snippet"
10622
  msgstr ""
10623
- "Vă rugăm să salvați mai întâi postarea pentru a putea edita fragmentul SEO "
10624
- "Squirrly"
10625
 
10626
- #: view/Blocks/Snippet.php:151 view/Blocks/Snippet.php:622
10627
- #: view/Blocks/Snippet.php:889
10628
  msgid "Cancel"
10629
  msgstr "Renunta"
10630
 
10631
- #: view/Blocks/Snippet.php:152 view/Blocks/Snippet.php:362
10632
- #: view/Blocks/Snippet.php:623 view/Blocks/Snippet.php:890
10633
- #: view/Blocks/Snippet.php:1066
10634
  msgid "Save"
10635
  msgstr "Salvează"
10636
 
10637
- #: view/Blocks/Snippet.php:162
10638
  msgid "Activate Title"
10639
  msgstr "Activați Titlu"
10640
 
10641
- #: view/Blocks/Snippet.php:169 view/Blocks/Snippet.php:220
10642
- #: view/Blocks/Snippet.php:656 view/Blocks/Snippet.php:699
10643
- #: view/Blocks/Snippet.php:923 view/Blocks/Snippet.php:966
10644
- #, fuzzy, php-format
10645
- #| msgid "Tips: Length 10-75 chars"
10646
  msgid "Tips: Length %s-%s chars"
10647
- msgstr "Atentie: Lungimea 10-75 caractere"
10648
-
10649
- #: view/Blocks/Snippet.php:172 view/Blocks/Snippet.php:196
10650
- #: view/Blocks/Snippet.php:223 view/Blocks/Snippet.php:250
10651
- #: view/Blocks/Snippet.php:659 view/Blocks/Snippet.php:683
10652
- #: view/Blocks/Snippet.php:702 view/Blocks/Snippet.php:729
10653
- #: view/Blocks/Snippet.php:926 view/Blocks/Snippet.php:950
10654
- #: view/Blocks/Snippet.php:969 view/Blocks/Snippet.php:996
10655
  msgid "Pattern"
10656
  msgstr "Model"
10657
 
10658
- #: view/Blocks/Snippet.php:189 view/Blocks/Snippet.php:676
10659
- #: view/Blocks/Snippet.php:943
10660
  msgid "Default Title"
10661
  msgstr "Titlu implicit"
10662
 
10663
- #: view/Blocks/Snippet.php:213
10664
- #, fuzzy
10665
- #| msgid "Description:"
10666
  msgid "Activate Description"
10667
- msgstr "Descrierea:"
10668
 
10669
- #: view/Blocks/Snippet.php:219
10670
  msgid "Meta Description"
10671
  msgstr "Descriere Meta"
10672
 
10673
- #: view/Blocks/Snippet.php:243 view/Blocks/Snippet.php:722
10674
- #: view/Blocks/Snippet.php:989
10675
- #, fuzzy
10676
  msgid "Default Description"
10677
- msgstr "Descriere implicită"
10678
 
10679
- #: view/Blocks/Snippet.php:267
10680
- #, fuzzy
10681
- #| msgid "Keywords"
10682
  msgid "Activate Keywords"
10683
- msgstr "Cuvinte cheie:"
10684
 
10685
- #: view/Blocks/Snippet.php:273
10686
  msgid "Meta Keywords"
10687
  msgstr "Cuvinte cheie meta"
10688
 
10689
- #: view/Blocks/Snippet.php:277
10690
  msgid "+ Add keyword"
10691
  msgstr "Adauga cuvant cheie"
10692
 
10693
- #: view/Blocks/Snippet.php:289
10694
- #, fuzzy
10695
  msgid "Activate Canonical"
10696
  msgstr "Activați Canonical"
10697
 
10698
- #: view/Blocks/Snippet.php:296
10699
- #, fuzzy
10700
  msgid "Leave it blank if you don't have an external canonical"
10701
- msgstr "Lăsați-l liber dacă nu aveți o canonică externă"
10702
 
10703
- #: view/Blocks/Snippet.php:299
10704
- #, fuzzy
10705
  msgid "Found"
10706
- msgstr "Găsite:"
10707
 
10708
- #: view/Blocks/Snippet.php:311
10709
- #, fuzzy
10710
  msgid "Default Link"
10711
- msgstr "Legătură implicită"
10712
 
10713
- #: view/Blocks/Snippet.php:333 view/Blocks/Snippet.php:535
10714
- #: view/Blocks/Snippet.php:793 view/Blocks/Snippet.php:1037
10715
- #: view/Blocks/Snippet.php:1170
10716
- #, fuzzy
10717
  msgid ""
10718
  "To edit the snippet, you have to activate Squirrly SEO for this page first"
10719
  msgstr ""
10720
- "Pentru a edita fragmentul, trebuie să activați mai întâi SEO Squirrly pentru "
10721
  "această pagină"
10722
 
10723
- #: view/Blocks/Snippet.php:342
10724
- #, fuzzy
10725
  msgid "Activate Squirrly Snippet for this page"
10726
  msgstr "Activați Squirrly Snippet pentru această pagină"
10727
 
10728
- #: view/Blocks/Snippet.php:347 view/Blocks/Snippet.php:798
10729
- #: view/Blocks/Snippet.php:1042
10730
  msgid "Post Type"
10731
  msgstr "Post Type Nou"
10732
 
10733
- #: view/Blocks/Snippet.php:349 view/Blocks/Snippet.php:759
10734
- #: view/Blocks/Snippet.php:800
10735
- #, fuzzy
10736
- msgid "OG Type"
10737
- msgstr "Tip OG"
10738
 
10739
- #: view/Blocks/Snippet.php:379
10740
- #, fuzzy, php-format
 
 
 
 
10741
  msgid ""
10742
  "JSON-LD is disable for this Post Type (%s). See %sSquirrly > SEO Settings > "
10743
  "Automation%s."
10744
  msgstr ""
10745
- "JSON-LD este dezactivat pentru acest tip de postare ( %s). Consultați "
10746
- "%sSquirrly> Setări SEO>% automatizare."
10747
 
10748
- #: view/Blocks/Snippet.php:409
10749
- #, fuzzy
10750
  msgid "JSON-LD Schema Types"
10751
- msgstr "Cod JSON-LD"
10752
 
10753
- #: view/Blocks/Snippet.php:410 view/SeoSettings/Automation.php:342
10754
- #, fuzzy
10755
  msgid "JSON-LD will load the Schema for the selected types."
10756
- msgstr "JSON-LD va încerca încarce datele relevante pentru acest tip."
10757
 
10758
- #: view/Blocks/Snippet.php:411
10759
- #, fuzzy, php-format
10760
  msgid "Setup JSON-LD for this Post Type by using %s SEO Automation %s"
10761
  msgstr ""
10762
- "JSON-LD este dezactivat pentru acest tip de postare ( %s). Consultați "
10763
- "%sSquirrly> Setări SEO>% automatizare."
10764
 
10765
- #: view/Blocks/Snippet.php:440
10766
- #, fuzzy
10767
  msgid "Hold Control key (or Command on Mac) to select multiple types."
10768
- msgstr "Țineți apăsată tasta de control pentru a selecta mai multe locuri"
 
 
10769
 
10770
- #: view/Blocks/Snippet.php:449
10771
- #, fuzzy
10772
  msgid "JSON-LD Breadcrumbs Schema"
10773
- msgstr "Cod JSON-LD"
10774
 
10775
- #: view/Blocks/Snippet.php:450
10776
  #, php-format
10777
  msgid "Manage BreadcrumbsList Schema from %s JSON-LD Settings %s."
10778
- msgstr ""
10779
 
10780
- #: view/Blocks/Snippet.php:455 view/Blocks/Snippet.php:473
10781
- #, fuzzy
10782
  msgid "Active"
10783
- msgstr "Activați META-urile"
10784
 
10785
- #: view/Blocks/Snippet.php:457 view/Blocks/Snippet.php:475
10786
- #, fuzzy
10787
  msgid "Not Active"
10788
- msgstr "Activați META-urile"
 
 
 
 
10789
 
10790
- #: view/Blocks/Snippet.php:467
 
 
 
 
10791
  msgid "Woocommerce Product Support"
10792
- msgstr ""
10793
 
10794
- #: view/Blocks/Snippet.php:468
10795
  #, php-format
10796
  msgid "Manage Woocommerce Support from %s JSON-LD Settings %s."
10797
- msgstr ""
10798
 
10799
- #: view/Blocks/Snippet.php:487
10800
- #, fuzzy
 
 
 
 
 
 
 
 
10801
  msgid "JSON-LD Code"
10802
- msgstr "Cod JSON-LD"
10803
 
10804
- #: view/Blocks/Snippet.php:488
10805
- #, fuzzy
10806
  msgid "Let Squirrly load the JSON-LD Schema for the selected types."
10807
- msgstr ""
10808
- "Permiteți Squirrly SEO să încarce JSON-LD META pentru acest tip de post."
10809
 
10810
- #: view/Blocks/Snippet.php:492 view/Blocks/Snippet.php:770
10811
- #: view/Blocks/Snippet.php:1017
10812
  msgid "(Auto)"
10813
  msgstr "(Auto)"
10814
 
10815
- #: view/Blocks/Snippet.php:493
10816
  msgid "Custom Code"
10817
  msgstr "Cod Personalizat"
10818
 
10819
- #: view/Blocks/Snippet.php:495
10820
  #, php-format
10821
  msgid ""
10822
  "Use Advanced Custom Fields (ACF) plugin to add custom JSON-LD. %s Learn More "
10823
  "%s"
10824
  msgstr ""
 
 
10825
 
10826
- #: view/Blocks/Snippet.php:504
10827
- #, fuzzy
10828
  msgid "Custom JSON-LD Code"
10829
- msgstr "Cod JSON-LD personalizat"
10830
 
10831
- #: view/Blocks/Snippet.php:505
10832
- #, fuzzy, php-format
10833
  msgid "Add JSON-LD code from %sSchema Generator Online%s."
10834
- msgstr "Adăugați codul JSON-LD de la %sSchema Generator Online %s."
10835
 
10836
- #: view/Blocks/Snippet.php:518
10837
- #, fuzzy
10838
  msgid "Validate JSON-LD"
10839
- msgstr "Activați JSON-LD"
10840
 
10841
- #: view/Blocks/Snippet.php:547 view/Blocks/Snippet.php:813
10842
- #, fuzzy, php-format
10843
  msgid ""
10844
  "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
10845
  "will not load for this post type on the frontend."
10846
  msgstr ""
10847
- "Tipul de postare ( %s) a fost exclus din %sSquirrly> Setări SEO %s. Squirrly "
10848
- "SEO nu se va încărca pentru acest tip de postare pe frontend"
10849
 
10850
- #: view/Blocks/Snippet.php:564
10851
- #, fuzzy
10852
  msgid "How this page appears on Facebook"
10853
  msgstr "Cum apare această pagină pe Facebook"
10854
 
10855
- #: view/Blocks/Snippet.php:570
10856
- #, fuzzy
10857
  msgid "Edit Open Graph"
10858
- msgstr "Editați graficul deschis"
10859
 
10860
- #: view/Blocks/Snippet.php:582 view/Blocks/Snippet.php:849
10861
- #, fuzzy
10862
  msgid "The image size must be at least 500 pixels wide"
10863
- msgstr "Mărimea imaginii trebuie să aibă o lățime de cel puțin 500 pixeli"
10864
 
10865
- #: view/Blocks/Snippet.php:603 view/Blocks/Snippet.php:871
10866
- #, fuzzy
10867
  msgid ""
10868
  "This is the Featured Image. You can change it if you edit the snippet and "
10869
  "upload another image."
10870
  msgstr ""
10871
- "Aceasta este imaginea prezentată. Îl puteți schimba dacă editați fragmentul "
10872
- "și încărcați o altă imagine."
10873
 
10874
- #: view/Blocks/Snippet.php:615
10875
- #, fuzzy
10876
  msgid "Please save the post first to be able to edit the Squirrly SEO Snippet."
10877
  msgstr ""
10878
- "Vă rugăm să salvați mai întâi postarea pentru a putea edita fragmentul SEO "
10879
- "Squirrly"
10880
 
10881
- #: view/Blocks/Snippet.php:632 view/Blocks/Snippet.php:899
10882
- #, fuzzy
10883
  msgid "Media Image"
10884
  msgstr "Imagine media"
10885
 
10886
- #: view/Blocks/Snippet.php:636 view/Blocks/Snippet.php:903
10887
- #: view/Research/Briefcase.php:468 view/SeoSettings/Favicon.php:78
10888
  msgid "Upload"
10889
  msgstr "Upload"
10890
 
10891
- #: view/Blocks/Snippet.php:637 view/Blocks/Snippet.php:904
10892
- #, fuzzy
10893
  msgid "Image size must be at least 500 pixels wide"
10894
- msgstr "Dimensiunea imaginii trebuie să aibă o lățime de cel puțin 500 pixeli"
10895
 
10896
- #: view/Blocks/Snippet.php:744
10897
  msgid "Author Link"
10898
  msgstr "Link autor"
10899
 
10900
- #: view/Blocks/Snippet.php:745
10901
- #, fuzzy
10902
  msgid "For multiple authors, separate their Facebook links with commas"
10903
  msgstr ""
10904
  "Pentru mai mulți autori, separați legăturile lor de Facebook cu virgule"
10905
 
10906
- #: view/Blocks/Snippet.php:830
10907
- #, fuzzy
 
 
 
10908
  msgid "How this page appears on Twitter"
10909
  msgstr "Cum apare această pagină pe Twitter"
10910
 
10911
- #: view/Blocks/Snippet.php:836
10912
- #, fuzzy
10913
  msgid "Edit Twitter Card"
10914
- msgstr "Editează cardul Twitter"
10915
 
10916
- #: view/Blocks/Snippet.php:1012
10917
  msgid "Card Type"
10918
  msgstr "Tipul Cardului"
10919
 
10920
- #: view/Blocks/Snippet.php:1013 view/SeoSettings/Social.php:286
10921
- #, fuzzy, php-format
10922
  msgid "Every change needs %sTwitter Card Validator%s"
10923
- msgstr "Fiecare modificare are nevoie de %sTwitter Card Validator %s"
10924
 
10925
- #: view/Blocks/Snippet.php:1018
10926
- #, fuzzy
10927
  msgid "summary"
10928
  msgstr "rezumat"
10929
 
10930
- #: view/Blocks/Snippet.php:1019
10931
- #, fuzzy
10932
  msgid "summary_large_image"
10933
  msgstr "summary_large_image"
10934
 
10935
- #: view/Blocks/Snippet.php:1044
10936
- #, fuzzy
10937
- #| msgid "Twitter"
10938
  msgid "Twitter Type"
10939
- msgstr "Twitter"
10940
 
10941
- #: view/Blocks/Snippet.php:1057
10942
- #, fuzzy, php-format
10943
  msgid ""
10944
  "You selected '%s' in %sSettings > Reading%s. It's important to uncheck that "
10945
  "option."
10946
  msgstr ""
10947
- "Ați selectat %s în %setări> Citire %s. Este important să debifați această "
10948
- "opțiune."
10949
 
10950
- #: view/Blocks/Snippet.php:1077 view/Blocks/Snippet.php:1108
10951
- #, fuzzy, php-format
10952
  msgid ""
10953
  "This Post Type (%s) has Nofollow set in Automation. See %sSquirrly > SEO "
10954
  "Settings > Automation%s."
10955
  msgstr ""
10956
- "Acest tip de post (%) are setul Nofollow în automatizare. Consultați "
10957
- "%sSquirrly> Setări SEO>% automatizare."
10958
 
10959
- #: view/Blocks/Snippet.php:1084 view/Blocks/Snippet.php:1115
10960
- #: view/SeoSettings/Automation.php:191 view/SeoSettings/Automation.php:218
10961
- #, fuzzy
10962
  msgid "Activate Robots Meta"
10963
- msgstr "Activați Roboții Meta"
10964
 
10965
- #: view/Blocks/Snippet.php:1095
10966
- #, fuzzy
10967
  msgid "Let Google Index This Page"
10968
- msgstr "Permiteți Google să indexeze această pagină"
10969
 
10970
- #: view/Blocks/Snippet.php:1138
10971
- #, fuzzy, php-format
10972
  msgid ""
10973
  "Show in sitemap for this Post Type (%s) was excluded from %sSquirrly > SEO "
10974
  "Settings > Automation%s."
10975
  msgstr ""
10976
- "Afișarea în sitemap pentru acest tip de postare ( %s) a fost exclusă din "
10977
- "%sSquirrly> Setări SEO> Automatizare %s."
10978
 
10979
- #: view/Blocks/Snippet.php:1145 view/SeoSettings/Automation.php:237
10980
- #: view/SeoSettings/Sitemap.php:34
10981
- #, fuzzy
10982
  msgid "Activate Sitemap"
10983
  msgstr "Activați Sitemap"
10984
 
10985
- #: view/Blocks/Snippet.php:1155
10986
- #, fuzzy
10987
  msgid "Show it in Sitemap.xml"
10988
- msgstr "Afișați-l în Sitemap.xml"
10989
 
10990
- #: view/Blocks/Snippet.php:1193
10991
- #, fuzzy
10992
- #| msgid "Squirrly Snippet"
 
 
 
 
 
 
 
10993
  msgid "Loading Squirrly Snippet ..."
10994
- msgstr "Snipet Squirrly"
10995
 
10996
- #: view/Blocks/Snippet.php:1219
10997
- #, fuzzy
10998
  msgid "Enable Squirrly SEO to load Squirrly Snippet"
10999
- msgstr "Activați Squirrly SEO pentru a încărca fragmentul Squirrly"
11000
 
11001
- #: view/Blocks/Snippet.php:1228
11002
  msgid ""
11003
  "Couldn't save your changes. Immunify360 or some other service on your web "
11004
  "hosting account interferes with your WordPress. Please contact the hosting "
11005
  "provider`s support team"
11006
  msgstr ""
 
 
 
11007
 
11008
  #: view/Blocks/Stats.php:43
11009
  msgid "Hello"
11010
  msgstr "Bună"
11011
 
11012
  #: view/Blocks/Stats.php:49
11013
- #, fuzzy, php-format
11014
  msgid "%s SEO Protection"
11015
  msgstr "%s Protecție SEO"
11016
 
11017
  #: view/Blocks/Stats.php:52
11018
- #, fuzzy
11019
  msgid "All protection layers are activated."
11020
  msgstr "Toate straturile de protecție sunt activate."
11021
 
11022
  #: view/Blocks/Stats.php:54
11023
- #, fuzzy, php-format
11024
  msgid "Power up the SEO from %sSquirrly > SEO Settings%s."
11025
- msgstr "Porniți SEO de la %sSquirrly> Setări SEO %s."
11026
 
11027
- #: view/Blocks/Stats.php:58
11028
  msgid "How does this work?"
11029
  msgstr "Cum funcționează ?"
11030
 
11031
- #: view/Blocks/Stats.php:66
11032
- #, fuzzy
11033
  msgid "Pages SEO'ed"
11034
- msgstr "Pagini SEO"
11035
 
11036
- #: view/Blocks/Stats.php:72
11037
- #, fuzzy
11038
  msgid "Post Types Covered"
11039
- msgstr "Tipuri de post acoperite"
11040
 
11041
- #: view/Blocks/Stats.php:77
11042
  msgid "What's included"
11043
- msgstr ""
11044
 
11045
- #: view/Blocks/Stats.php:78
11046
  #, php-format
11047
  msgid "Over %s400%s free in-depth features"
11048
- msgstr ""
11049
 
11050
- #: view/Blocks/Stats.php:80
11051
  msgid "See All Tools"
11052
- msgstr ""
11053
 
11054
- #: view/Blocks/Stats.php:84 view/Goals/Goals.php:44
11055
- #, fuzzy
11056
  msgid "Run SEO Test"
11057
  msgstr "Executați testul SEO"
11058
 
@@ -11073,36 +10740,36 @@ msgid "Need Help with Squirrly SEO?"
11073
  msgstr "Ai nevoie de ajutor cu Squirrly SEO?"
11074
 
11075
  #: view/Blocks/Support.php:24 view/Blocks/Support.php:91
11076
- #, fuzzy, php-format
11077
  msgid "10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s."
11078
- msgstr "10:00 - 16:00 (GMT): luni-vin% formular de contact sby %s."
 
11079
 
11080
  #: view/Blocks/Support.php:25 view/Blocks/Support.php:92
11081
- #, fuzzy, php-format
11082
  msgid "How To Squirrly %swebsite%s."
11083
- msgstr "Cum Pentru a Squirrly %site web %s."
11084
 
11085
  #: view/Blocks/Support.php:26 view/Blocks/Support.php:93
11086
- #, fuzzy, php-format
11087
  msgid "Facebook %sSupport Community%s."
11088
- msgstr "Facebook %sSupport comunitate %s."
11089
 
11090
  #: view/Blocks/Support.php:27 view/Blocks/Support.php:94
11091
- #, fuzzy, php-format
11092
  msgid "Facebook %sMessenger%s."
11093
- msgstr "Facebook %sMessenger %s."
11094
 
11095
  #: view/Blocks/Support.php:28
11096
- #, fuzzy, php-format
11097
  msgid "Twitter %sSupport%s."
11098
- msgstr "Twitter %sSupport %s."
11099
 
11100
  #: view/Blocks/Support.php:36
11101
  msgid "How was your Squirrly experience today?"
11102
  msgstr "Cum a fost experienta de azi cu Squirrly?"
11103
 
11104
  #: view/Blocks/Support.php:43
11105
- #, fuzzy
11106
  msgid "Annoying"
11107
  msgstr "Enervant"
11108
 
@@ -11111,18 +10778,16 @@ msgid "Bad"
11111
  msgstr "Negativ"
11112
 
11113
  #: view/Blocks/Support.php:51
11114
- #, fuzzy
11115
  msgid "Nice"
11116
- msgstr "Grozav"
11117
 
11118
  #: view/Blocks/Support.php:55
11119
  msgid "Great"
11120
  msgstr "Minunat"
11121
 
11122
  #: view/Blocks/Support.php:59
11123
- #, fuzzy
11124
  msgid "Love it"
11125
- msgstr "Iubesc"
11126
 
11127
  #: view/Blocks/Support.php:71
11128
  msgid "How was Squirrly today?"
@@ -11133,70 +10798,69 @@ msgid "Send feedback"
11133
  msgstr "Trimite"
11134
 
11135
  #: view/Blocks/Support.php:90
11136
- #, fuzzy
11137
  msgid "For more support:"
11138
  msgstr "Pentru mai mult sprijin:"
11139
 
11140
  #: view/Blocks/Support.php:95
11141
- #, fuzzy, php-format
11142
  msgid "New Lessons Mon. and Tue. on %sTwitter%s."
11143
- msgstr "Lecții noi lun. și mar. pe %sTwitter %s."
11144
 
11145
  #: view/Blocks/Support.php:100
11146
- #, fuzzy
11147
- #| msgid "Thank you! You can send us a happy face tomorow too."
11148
  msgid "Thank you! You can send us a happy face tomorrow too."
11149
- msgstr "Multumim! Ne poti trimite o fata vesela si maine."
 
 
 
 
 
 
 
 
11150
 
11151
  #: view/Blocks/Uninstall.php:5
11152
  msgid "I no longer need the plugin"
11153
- msgstr ""
11154
 
11155
  #: view/Blocks/Uninstall.php:9
11156
  msgid "I found a better plugin"
11157
- msgstr ""
11158
 
11159
  #: view/Blocks/Uninstall.php:10
11160
- #, fuzzy
11161
- #| msgid "These are the results for"
11162
  msgid "Please share which plugin"
11163
- msgstr "Nu s-a găsit nimic pentru"
11164
 
11165
  #: view/Blocks/Uninstall.php:13
11166
  msgid "I couldn't get the plugin to work"
11167
- msgstr ""
11168
 
11169
  #: view/Blocks/Uninstall.php:17
11170
  msgid "It's a temporary deactivation"
11171
- msgstr ""
11172
 
11173
- #: view/Blocks/Uninstall.php:21 view/Onboarding/Step1.php:42
11174
- #, fuzzy
11175
  msgid "Other"
11176
- msgstr "alții"
11177
 
11178
  #: view/Blocks/Uninstall.php:22
11179
- #, fuzzy
11180
- #| msgid "These are the results for"
11181
  msgid "Please share the reason"
11182
- msgstr "Nu s-a găsit nimic pentru"
11183
 
11184
  #: view/Blocks/Uninstall.php:30
11185
- #, fuzzy
11186
- msgid "Deactivate Squirrly SEO"
11187
- msgstr "Squirrly article rank"
11188
 
11189
  #: view/Blocks/Uninstall.php:36
11190
- msgid "Please share why you are deactivating Squirrly:"
11191
- msgstr ""
11192
 
11193
  #: view/Blocks/Uninstall.php:53
11194
  msgid "Submit &amp; Deactivate"
11195
- msgstr ""
11196
 
11197
  #: view/Blocks/Uninstall.php:54
11198
  msgid "Skip &amp; Deactivate"
11199
- msgstr ""
11200
 
11201
  #: view/Blocks/Uninstall.php:60
11202
  #, php-format
@@ -11204,84 +10868,84 @@ msgid ""
11204
  "You set to remove all Squirrly SEO data on uninstall. You can change this "
11205
  "option from %sSEO Settings > Advanced%s"
11206
  msgstr ""
 
 
11207
 
11208
  #: view/Blocks/Uninstall.php:67
11209
- #, fuzzy
11210
- #| msgid "This email connects you to Squirrly.co"
11211
  msgid "Disconnect from Squirrly Cloud"
11212
- msgstr "Acest email te conecteaza la Squirrly"
11213
 
11214
  #: view/Blocks/VersionBar.php:15
11215
- #, fuzzy, php-format
11216
  msgid ""
11217
  "%sSERP Checker %s:%s We update the best ranks for each keyword, daily. 100%% "
11218
  "accurate and objective."
11219
  msgstr ""
11220
- "%sSERP Checker %s: %s Actualizăm zilnic cele mai bune rânduri pentru fiecare "
11221
  "cuvânt cheie. 100%% precis și obiectiv."
11222
 
11223
  #: view/Blocks/VersionBar.php:18
11224
- #, fuzzy, php-format
11225
  msgid ""
11226
  "%sNo SERP queries remained.%s Please check your %saccount status and limits%s"
11227
  msgstr ""
11228
- "%sNo au rămas întrebări SERP. %s Vă rugăm să verificați starea %saccount și "
11229
- "limitele %s"
11230
 
11231
  #: view/Blocks/VersionBar.php:24
11232
- #, fuzzy, php-format
11233
  msgid ""
11234
  "%sSERP Checker %s:%s We show ranks according to what Google shows you in "
11235
  "Google Search Console. %sPositions shown by GSC are averages, not exact "
11236
  "positions in SERPs. %sTo have your rankings checked daily please upgrade "
11237
  "your plan to %sBusiness Plan%s"
11238
  msgstr ""
11239
- "%sSERP Checker %s: %s Afișăm clasamente în funcție de ceea ce vă arată "
11240
- "Google în Google Search Console. %spozițiile prezentate de GSC sunt medii, "
11241
- "nu poziții exacte în SERP. %s Pentru a verifica clasamentul zilnic, vă "
11242
- "rugăm să actualizați planul la %sBusiness Plan %s"
11243
 
11244
  #: view/Blocks/VersionBar.php:31
11245
- #, fuzzy, php-format
11246
  msgid ""
11247
  "%sAudit %s:%s Add maximum %s page(s) in Audit and request a new audit every "
11248
  "hour."
11249
  msgstr ""
11250
- "%sAudit %s: %s Adăugați maximum (s) pagini (s) în Audit și solicitați un nou "
11251
  "audit la fiecare oră."
11252
 
11253
  #: view/Blocks/VersionBar.php:35
11254
- #, fuzzy, php-format
11255
  msgid ""
11256
  "%sAudit %s:%s Add maximum %s page(s) in Audit. The audit will be generated "
11257
  "once a week. %sTo add more pages in Audit and refresh the audit every hour "
11258
  "please upgrade your plan to %sPRO Plan%s"
11259
  msgstr ""
11260
- "%sAudit %s: %s Adăugați pagina (e) maximă (s) în Audit. Auditul va fi "
11261
- "generat o dată pe săptămână. %s Pentru a adăuga mai multe pagini în Audit "
11262
- "și a reîmprospăta auditul la fiecare oră, vă rugăm să actualizați planul la "
11263
- "%sPRO Plan %s"
11264
 
11265
  #: view/Blocks/VersionBar.php:42
11266
- #, fuzzy, php-format
11267
  msgid ""
11268
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
11269
  "audit for each page every 5 mins."
11270
  msgstr ""
11271
- "%sFocus Pages %s: %s Adăugați maximum %s pagina (pagini) în paginile Focus "
11272
- "și solicitați un nou audit pentru fiecare pagină la fiecare 5 minute."
11273
 
11274
  #: view/Blocks/VersionBar.php:46
11275
- #, fuzzy, php-format
11276
  msgid ""
11277
  "%sFocus Pages %s:%s Add maximum %s page(s) in Focus Pages and request a new "
11278
  "audit for each page every 5 mins. %sTo add more pages in Focus Pages please "
11279
  "upgrade your plan to %sPRO Plan%s"
11280
  msgstr ""
11281
- "%sFocus Pages %s: %s Adăugați maximum %s pagina (pagini) în paginile Focus "
11282
- "și solicitați un nou audit pentru fiecare pagină la fiecare 5 minute. %s "
11283
- "Pentru a adăuga mai multe pagini în Pagini Focus, vă rugăm să actualizați "
11284
- "planul la %sPRO Plan %s"
11285
 
11286
  #: view/Blocks/VersionBar.php:50
11287
  #, php-format
@@ -11290,345 +10954,332 @@ msgid ""
11290
  "it %shttps://www.squirrly.co/you-received-access-to-all-updates-from-"
11291
  "squirrly-seo/%s"
11292
  msgstr ""
 
 
 
11293
 
11294
  #: view/Blocks/VersionBar.php:58
11295
- #, fuzzy, php-format
11296
  msgid ""
11297
  "%sLive Assistant %s:%s Use Squirrly Live Assistant with all the optimization "
11298
  "tasks to get 100%% optimized posts and pages."
11299
  msgstr ""
11300
- "%sLive Assistant %s: %s Utilizați Squirrly Live Assistant cu toate sarcinile "
11301
- "de optimizare pentru a obține 100%% postări și pagini optimizate."
 
11302
 
11303
  #: view/Blocks/VersionBar.php:62
11304
- #, fuzzy, php-format
11305
  msgid ""
11306
  "%sLive Assistant %s:%s Use the main SEO tasks to optimize your posts and "
11307
  "pages. %sTo optimize your posts to 100%% please upgrade your plan to %sPRO "
11308
  "Plan%s"
11309
  msgstr ""
11310
- "%sLive Assistant %s: %s Utilizați principalele sarcini SEO pentru a-ți "
11311
- "optimiza postările și paginile. %s Pentru a optimiza postările dvs. la 100 "
11312
- "%%, vă rugăm să actualizați planul la Planul %sPRO %s"
11313
 
11314
  #: view/Blocks/VersionBar.php:70
11315
- #, fuzzy, php-format
11316
  msgid ""
11317
  "%sResearch %s:%s You have %s researches left for your account. The research "
11318
  "will return up to 20 results for each keyword. %sFor more Researches and up "
11319
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
11320
  msgstr ""
11321
- "%sCercetare %s: %s Aveți %s cercetări rămase pentru contul dvs. Cercetarea "
11322
- "va întoarce până la 20 de rezultate pentru fiecare cuvânt cheie. %sPentru "
11323
- "mai multe cercetări și până la 50 de rezultate pe cercetare, vă rugăm să "
11324
- "actualizați planul dvs. la %sBusiness Plan %s"
11325
 
11326
  #: view/Blocks/VersionBar.php:74
11327
- #, fuzzy, php-format
11328
  msgid ""
11329
  "%sResearch %s:%s You have %s researches left for your account. %sYou can do "
11330
  "Deep Keyword Research and get up to 50 results on each research."
11331
  msgstr ""
11332
- "%sCercetare %s: %s Aveți %s cercetări rămase pentru contul dvs. %sPuteți "
11333
- "face cercetări profunde cu cuvinte cheie și puteți obține până la 50 de "
11334
- "rezultate pentru fiecare cercetare."
11335
 
11336
  #: view/Blocks/VersionBar.php:78
11337
- #, fuzzy, php-format
11338
  msgid ""
11339
  "%sResearch %s:%s You have %s researches left for your account. The research "
11340
  "will return up to 10 results for each keyword. %sFor more Researches and up "
11341
  "to 50 results per research, please upgrade your plan to %sBusiness Plan%s"
11342
  msgstr ""
11343
- "%sCercetare %s: %s Aveți %s cercetări rămase pentru contul dvs. Cercetarea "
11344
- "va întoarce până la 10 rezultate pentru fiecare cuvânt cheie. %sPentru mai "
11345
- "multe cercetări și până la 50 de rezultate pe cercetare, vă rugăm să "
11346
- "actualizați planul dvs. la %sBusiness Plan %s"
11347
 
11348
  #: view/Blocks/VersionBar.php:85
11349
- #, fuzzy, php-format
11350
  msgid ""
11351
  "%sSquirrly Briefcase:%s Add unlimited keywords in your Squirrly Briefcase to "
11352
  "optimize your posts and pages."
11353
  msgstr ""
11354
- "%sSquirrly Servieta: %s Adăugați cuvinte cheie nelimitate în servieta "
11355
- "Squirrly pentru a vă optimiza mesajele și paginile."
11356
 
11357
  #: view/Blocks/VersionBar.php:90
11358
- #, fuzzy, php-format
11359
  msgid ""
11360
  "%sSquirrly Labels:%s Add unlimited Labels for the Squirrly Briefcase "
11361
  "keywords to organize the keywords by your SEO strategy."
11362
  msgstr ""
11363
- "%s Etichete sigure: %s Adăugați etichete nelimitate pentru cuvintele cheie "
11364
- "Squirrly Servieta pentru organizarea cuvintelor cheie după strategia dvs. "
11365
- "SEO."
11366
 
11367
  #: view/Blocks/VersionBar.php:96
11368
- #, fuzzy, php-format
11369
  msgid ""
11370
  "%sKeyword Suggestion %s:%s You'll get keyword suggestions every week if we "
11371
  "find better matching keywords based on your research history."
11372
  msgstr ""
11373
- "%sKeyword Sugestie %s: %s Veți primi sugestii de cuvinte cheie în fiecare "
11374
- "săptămână dacă găsim cuvinte cheie mai potrivite în funcție de istoricul "
11375
- "dvs. de cercetare."
11376
 
11377
  #: view/Blocks/VersionBar.php:100
11378
- #, fuzzy, php-format
11379
  msgid ""
11380
  "This feature is only available for PRO and Business accounts. %sTo get "
11381
  "Keyword Suggections every week please upgrade your plan to %sBusiness Plan%s"
11382
  msgstr ""
11383
- "Această caracteristică este disponibilă numai pentru conturile PRO și "
11384
- "Business. %s Pentru a primi sugestii de cuvinte cheie în fiecare săptămână, "
11385
- "vă rugăm să actualizați planul la %sBusiness Plan %s"
11386
 
11387
  #: view/Blocks/VersionBar.php:109
11388
- #, fuzzy, php-format
11389
  msgid ""
11390
  "%sBulk SEO Settings:%s This feature is included in all versions of Squirrly "
11391
  "SEO for free."
11392
  msgstr ""
11393
- "%sBulk Setări SEO: %s Această caracteristică este inclusă în toate "
11394
- "versiunile de Squirrly SEO gratuit."
11395
 
11396
  #: view/Blocks/VersionBar.php:115
11397
- #, fuzzy, php-format
11398
  msgid ""
11399
  "%sOn-Page SEO Settings:%s This feature is included in all versions of "
11400
  "Squirrly SEO for free."
11401
  msgstr ""
11402
- "%sOn-Page Setări SEO: %s Această caracteristică este inclusă în toate "
11403
- "versiunile de Squirrly SEO gratuit."
11404
 
11405
- #: view/BulkSeo/Bulkseo.php:31
11406
- #, fuzzy
11407
  msgid ""
11408
- "Simplify the SEO process for all your posts types and optimize them in just "
11409
  "minutes."
11410
  msgstr ""
11411
  "Simplificați procesul SEO pentru toate tipurile de postări și optimizați-le "
11412
  "în doar câteva minute."
11413
 
11414
- #: view/BulkSeo/Bulkseo.php:182
11415
- #, fuzzy, php-format
11416
  msgid "No data for this filter. %sShow All%s records for this post type."
11417
  msgstr ""
11418
- "Nu există date pentru acest filtru. %s Afișează Toate %s înregistrări "
11419
- "pentru acest tip de postare."
11420
 
11421
- #: view/BulkSeo/Bulkseo.php:184
11422
- #, fuzzy
11423
  msgid "No data found for this post type. Try other post types."
11424
  msgstr ""
11425
- "Nu au fost găsite date pentru acest tip de postare. Încercați alte tipuri de "
11426
- "postare."
11427
 
11428
  #: view/BulkSeo/BulkseoRow.php:26
11429
  #, php-format
11430
  msgid "View: %s"
11431
- msgstr ""
11432
 
11433
  #: view/Connect/GoogleAnalytics.php:10
11434
  msgid "Google Analytics"
11435
  msgstr "Google Analytics"
11436
 
11437
  #: view/Connect/GoogleAnalytics.php:15
11438
- #, fuzzy
11439
- #| msgid "The code for Google Analytics is incorrect."
11440
  msgid "You are connected to Google Analytics"
11441
- msgstr "Codul Google Analytics este incorect."
11442
 
11443
  #: view/Connect/GoogleAnalytics.php:21 view/Connect/GoogleSearchConsole.php:19
11444
  msgid "Disconnect"
11445
  msgstr "Deconectează-te"
11446
 
11447
  #: view/Connect/GoogleAnalytics.php:31
11448
- #, fuzzy
11449
- #| msgid "Google %sAnalytics ID%s:"
11450
  msgid "Connect this site to Google Analytics"
11451
- msgstr "Google %sAnalytics ID%s:"
11452
 
11453
  #: view/Connect/GoogleAnalytics.php:32
11454
- #, fuzzy
11455
  msgid ""
11456
  "Connect Google Analytics and get traffic insights for your website on each "
11457
  "Audit."
11458
  msgstr ""
11459
- "Conectați Google Analytics și obțineți informații despre trafic pentru site-"
11460
- "ul dvs. web pentru fiecare audit"
11461
 
11462
  #: view/Connect/GoogleAnalytics.php:37 view/Connect/GoogleSearchConsole.php:36
11463
- #: view/SeoSettings/Tracking.php:65 view/SeoSettings/Webmaster.php:65
11464
  msgid "Sign in"
11465
  msgstr "Autentificare"
11466
 
11467
  #: view/Connect/GoogleAnalytics.php:45 view/Connect/GoogleSearchConsole.php:44
11468
- #: view/SeoSettings/Tracking.php:70 view/SeoSettings/Webmaster.php:70
11469
- #, fuzzy
11470
- #| msgid "Connecting ..."
11471
  msgid "Check connection"
11472
- msgstr "Conectare ..."
11473
 
11474
- #: view/Connect/GoogleSearchConsole.php:8 view/SeoSettings/Webmaster.php:57
11475
  msgid "Google Search Console"
11476
  msgstr "Google Search Console"
11477
 
11478
  #: view/Connect/GoogleSearchConsole.php:13
11479
- #, fuzzy
11480
  msgid "You are connected to Google Search Console"
11481
  msgstr "Sunteți conectat la Google Search Console"
11482
 
11483
  #: view/Connect/GoogleSearchConsole.php:30
11484
- #, fuzzy
11485
  msgid "Connect this site to Google Search Console"
11486
- msgstr "Inregistreaza-te la Squirrly.co"
11487
 
11488
  #: view/Connect/GoogleSearchConsole.php:31
11489
- #, fuzzy
11490
  msgid ""
11491
  "Connect Google Search Console and get traffic insights for your website on "
11492
  "each Audit."
11493
  msgstr ""
11494
- "Conectați Google Search Console și obțineți informații despre trafic pentru "
11495
- "site-ul dvs. web pentru fiecare audit"
11496
 
11497
  #: view/Errors/Connect.php:29
11498
- #, fuzzy
11499
- #| msgid "This email connects you to Squirrly.co"
11500
  msgid "Connect Your Site to Squirrly Cloud"
11501
- msgstr "Acest email te conecteaza la Squirrly"
11502
 
11503
  #: view/Errors/Connect.php:30
11504
- #, fuzzy, php-format
11505
  msgid ""
11506
  "Get Access to the Non-Human SEO Consultant, Focus Pages, SEO Audits and all "
11507
  "our features %s by creating a free account"
11508
  msgstr ""
11509
- "Obțineți acces la consultantul SEO non-uman, paginile focus, auditurile SEO "
11510
- "și toate caracteristicile noastre %s prin crearea unui cont gratuit"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11511
 
11512
  #: view/Errors/Maintenance.php:21
11513
- #, fuzzy, php-format
11514
  msgid ""
11515
  "Unfortunately Squirrly Cloud is down for a bit of maintenance right now. But "
11516
  "we'll be back in a minute. %srefresh the page%s."
11517
  msgstr ""
11518
- "Din păcate, Squirrly Cloud a scăzut pentru un pic de întreținere acum. Dar "
11519
- "vom reveni într-un minut. %srefresh pagina %s."
11520
 
11521
- #: view/Features.php:15 view/Overview.php:57
11522
- #, fuzzy
11523
  msgid "We Need Your Support"
11524
- msgstr "Avem nevoie de sprijinul tău"
11525
 
11526
- #: view/Features.php:24 view/Overview.php:66
11527
- #, fuzzy
11528
  msgid "Rate us if you like Squirrly"
11529
- msgstr "Evaluează-ne dacă îți place SEO Squirrly"
11530
 
11531
- #: view/Features.php:39
11532
- #, fuzzy
11533
- #| msgid "Social Media Options"
11534
  msgid "Show Advanced SEO"
11535
- msgstr "Optiuni Social Media"
11536
 
11537
- #: view/Features.php:40
11538
- #, fuzzy
11539
  msgid ""
11540
  "Switch off to have the simplified version of the settings, intended for Non-"
11541
  "SEO Experts."
11542
  msgstr ""
11543
- "Opriți pentru a avea versiunea simplificată a setărilor, destinată "
11544
  "experților non-SEO."
11545
 
11546
- #: view/Features.php:41
11547
- #, fuzzy
11548
  msgid ""
11549
- "It will offer the same level of SEO performance, but it will be less "
11550
- "customizable."
11551
  msgstr ""
11552
- "Va oferi același nivel de performanță SEO, dar va fi mai puțin "
11553
- "personalizabil."
 
11554
 
11555
- #: view/FocusPages/Addpage.php:24 view/FocusPages/Pagelist.php:25
11556
- #, fuzzy
11557
  msgid ""
11558
  "Focus Pages bring you clear methods to take your pages from never found to "
11559
  "always found on Google. Rank your pages by influencing the right ranking "
11560
  "factors. Turn everything that you see here to Green and you will win."
11561
  msgstr ""
11562
- "Pagini focalizate vă oferă metode clare pentru a lua paginile dvs. de la "
11563
- "care nu s-a găsit niciodată găsit întotdeauna pe Google. Clasează-ți "
11564
- "paginile influențând factorii de clasare potriviți. Transformă tot ceea ce "
11565
- "vezi aici în Green și vei câștiga."
11566
 
11567
- #: view/FocusPages/Addpage.php:175
11568
- #, fuzzy
11569
  msgid "Set Focus Page"
11570
- msgstr "Setare Pagina focalizare"
11571
 
11572
- #: view/FocusPages/Addpage.php:179
11573
- #, fuzzy
11574
  msgid "Only pages with IDs can be added as Focus Page"
11575
- msgstr "Numai paginile cu ID-uri pot fi adăugate ca Pagina de focalizare"
11576
 
11577
- #: view/FocusPages/Addpage.php:179
11578
- #, fuzzy
11579
  msgid "Can't be added"
11580
  msgstr "Nu poate fi adăugat"
11581
 
11582
- #: view/FocusPages/Addpage.php:182
11583
- #, fuzzy
11584
- #| msgid "See rank"
11585
  msgid "See Tasks"
11586
- msgstr "Vezi rang"
11587
 
11588
  #: view/FocusPages/Bestpractice.php:16
11589
- #, fuzzy
11590
  msgid "Best Practices"
11591
  msgstr "Cele mai bune practici"
11592
 
11593
  #: view/FocusPages/FocusPageRow.php:59 view/FocusPages/FocusPageRow.php:127
11594
  #, php-format
11595
  msgid "Congratulations! You ranked on %s on Google with the keyword: %s"
11596
- msgstr ""
11597
 
11598
  #: view/FocusPages/FocusPageRow.php:76
11599
  msgid "Audited"
11600
  msgstr "Audit"
11601
 
11602
  #: view/FocusPages/FocusPageRow.php:91
11603
- #, fuzzy
11604
  msgid "You can refresh the audit once every 5 minutes"
11605
- msgstr "Puteți reîmprospăta auditul o dată la 5 minute"
11606
-
11607
- #: view/FocusPages/FocusPageRow.php:93
11608
- #, fuzzy
11609
- msgid "Request new audit"
11610
- msgstr "Solicitați un nou audit"
11611
 
11612
- #: view/FocusPages/FocusPageRow.php:97 view/Ranking/Rankings.php:226
11613
- #: view/Research/History.php:33
11614
  msgid "Details"
11615
  msgstr "Detalii"
11616
 
11617
  #: view/FocusPages/FocusPageRow.php:112
11618
  msgid "Upgrade Plan"
11619
- msgstr ""
11620
 
11621
  #: view/FocusPages/FocusPageRow.php:119
11622
- #, fuzzy
11623
  msgid "Currently processing data. Please refresh in a few minutes."
11624
  msgstr ""
11625
- "În prezent procesarea datelor. Vă rugăm să reîmprospătați în câteva minute."
11626
 
11627
  #: view/FocusPages/FocusPageRow.php:125 view/FocusPages/FocusPageRow.php:145
11628
  #: view/FocusPages/FocusPages.php:55
11629
- #, fuzzy
11630
  msgid "Chance to Rank"
11631
- msgstr "Șansă la clasare"
11632
 
11633
  #: view/FocusPages/FocusPageRow.php:129
11634
  #, php-format
@@ -11642,6 +11293,16 @@ msgid ""
11642
  "complete all the Focus Pages tasks to rank higher and higher and to maintain "
11643
  "your rank especially if your keyword is a competitive one."
11644
  msgstr ""
 
 
 
 
 
 
 
 
 
 
11645
 
11646
  #: view/FocusPages/FocusPageRow.php:146
11647
  #, php-format
@@ -11655,745 +11316,672 @@ msgid ""
11655
  "complete all the Focus Pages tasks to rank higher and higher and to maintain "
11656
  "your rank especially if your keyword is a competitive one. "
11657
  msgstr ""
11658
-
11659
- #: view/FocusPages/FocusPageRow.php:180
11660
- #, fuzzy
 
 
 
 
 
 
 
 
 
11661
  msgid "Do you want to delete the Focus Page?"
11662
- msgstr "Doriți să ștergeți automatizarea pentru %s?"
11663
 
11664
- #: view/FocusPages/FocusPageRow.php:186
11665
- #, fuzzy
11666
  msgid "Remove Focus Page"
11667
- msgstr "Consultați Pagini de focalizare"
11668
 
11669
  #: view/FocusPages/FocusPageStats.php:40
11670
  #, php-format
11671
  msgid "Week %s of %s"
11672
- msgstr ""
11673
 
11674
  #: view/FocusPages/FocusPageStats.php:54
11675
- #, fuzzy, php-format
11676
  msgid "Rank increased %s positions for the keyword: %s"
11677
- msgstr "Poziția a crescut %s pentru cuvântul cheie: %s"
11678
 
11679
  #: view/FocusPages/FocusPageStats.php:60
11680
- #, fuzzy, php-format
11681
  msgid "Time on Page increased with %s minutes"
11682
  msgstr "Timpul pe pagină a crescut cu %s minute"
11683
 
11684
  #: view/FocusPages/FocusPageStats.php:65
11685
- #, fuzzy, php-format
11686
  msgid "Page Traffic increased with %s visits"
11687
- msgstr "Traficul de pagini a crescut odată cu %s vizite"
11688
 
11689
  #: view/FocusPages/FocusPageStats.php:71
11690
- #, fuzzy, php-format
11691
  msgid "Organic Clicks increased with %s for the keyword: %s"
11692
- msgstr "Clicurile organice au crescut cu %s pentru cuvântul cheie: %s"
11693
 
11694
  #: view/FocusPages/FocusPageStats.php:77
11695
- #, fuzzy, php-format
11696
  msgid "Page Authority increased with %s"
11697
  msgstr "Autoritatea paginii a crescut cu %s"
11698
 
11699
  #: view/FocusPages/FocusPageStats.php:82
11700
- #, fuzzy, php-format
11701
  msgid "You got %s Social Shares"
11702
- msgstr "Aveți %s Acțiuni sociale"
11703
 
11704
  #: view/FocusPages/FocusPageStats.php:89
11705
- #, fuzzy, php-format
11706
  msgid "Page loads with %ss faster"
11707
- msgstr "Încărcările paginii cu %ss mai rapid"
11708
 
11709
  #: view/FocusPages/FocusPageStats.php:115
11710
- #, fuzzy
11711
- #| msgid "See rank"
11712
  msgid "Chances of Ranking"
11713
- msgstr "Vezi rang"
11714
 
11715
  #: view/FocusPages/FocusPageStats.php:116
11716
  #: view/FocusPages/FocusPageStats.php:142
11717
- #, fuzzy, php-format
11718
  msgid "the latest %s days evolution for this Focus Page"
11719
- msgstr "ultima evoluție de %s zile pentru această pagină de focalizare"
11720
 
11721
  #: view/FocusPages/FocusPageStats.php:171
11722
- #, fuzzy
11723
- #| msgid "Keyword"
11724
  msgid "Keyword Ranking"
11725
- msgstr "Cuvant cheie:"
11726
 
11727
  #: view/FocusPages/FocusPageStats.php:172
11728
- #, fuzzy, php-format
11729
  msgid "the latest %s days ranking for %s"
11730
- msgstr "ultimele %s zile de clasare pentru %s"
11731
 
11732
  #: view/FocusPages/FocusPageStats.php:198
11733
- #, fuzzy, php-format
11734
  msgid "the latest %s days page views"
11735
- msgstr "ultimele %s zile vizualizări ale paginii"
11736
 
11737
  #: view/FocusPages/FocusPages.php:20
11738
- #, fuzzy
11739
  msgid "Current Ranking Drawbacks"
11740
- msgstr "Dezavantaje ale clasamentului curent"
11741
 
11742
  #: view/FocusPages/FocusPages.php:103
11743
- #, fuzzy, php-format
11744
  msgid "No data for this filter. %sShow All%s Focus Pages."
11745
  msgstr ""
11746
- "Nu există date pentru acest filtru. %s Afișează toate paginile %s Focus."
11747
 
11748
  #: view/FocusPages/FocusPages.php:107
11749
- #, fuzzy
11750
  msgid "Welcome to Focus Pages"
11751
  msgstr "Bine ați venit la Focus Pages"
11752
 
11753
  #: view/FocusPages/FocusPages.php:109
11754
- #, fuzzy
11755
  msgid "Add a new page as Focus Page to get started"
11756
- msgstr "Adăugați o nouă pagină ca Pagina de focalizare pentru a începe"
11757
 
11758
  #: view/FocusPages/FocusPages.php:113
11759
- #, fuzzy
11760
  msgid "Tips: Which Page Should I Choose?"
11761
  msgstr "Sfaturi: Ce pagină ar trebui să aleg?"
11762
 
11763
  #: view/FocusPages/FocusPages.php:115
11764
- #, fuzzy
11765
  msgid ""
11766
  "One of the most important pages in your website, you money-makers, the pages "
11767
  "that bring you conversions."
11768
  msgstr ""
11769
- "Una dintre cele mai importante pagini de pe site-ul dvs., voi, producători "
11770
- "de bani, paginile care vă aduc conversii."
11771
 
11772
  #: view/FocusPages/FocusPages.php:116
11773
- #, fuzzy
11774
  msgid "Don't choose your Home Page, Contact Page or About Use page."
11775
  msgstr ""
11776
- "Nu alegeți pagina dvs. de pornire, pagina de contact sau pagina Despre "
11777
  "utilizare."
11778
 
11779
- #: view/FocusPages/Pagelist.php:60
11780
- #, fuzzy, php-format
11781
  msgid ""
11782
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
11783
  "to generate the new audit for a focus page. There is a lot of processing "
11784
  "involved."
11785
  msgstr ""
11786
- "%sNote: %s țin minte este nevoie de oriunde între %s1 minut până la 5 "
11787
- "minute %s pentru a genera noul audit pentru o pagină de focalizare. Sunt "
11788
- "multe prelucrări implicate."
11789
 
11790
  #: view/FocusPages/Settings.php:22
11791
- #, fuzzy
11792
- #| msgid " settings"
11793
  msgid "Focus Pages Settings"
11794
- msgstr "setari"
 
 
 
 
 
 
 
 
11795
 
11796
  #: view/Goals/CheckSeo.php:26
11797
- #, fuzzy
11798
  msgid ""
11799
  "See all the improvements from all Squirrly SEO features in a single panel."
11800
  msgstr ""
11801
- "Vedeți toate îmbunătățirile de la toate caracteristicile SEO Squirrly într-"
11802
- "un singur panou."
11803
 
11804
- #: view/Goals/CheckSeo.php:53
11805
  msgid "See results"
11806
  msgstr "Vezi rezultatele"
11807
 
11808
- #: view/Goals/CheckSeo.php:100
11809
- #, fuzzy
11810
- #| msgid "Change the Website Icon"
 
 
11811
  msgid "Website SEO Check"
11812
- msgstr "Schimba icoana site-ului"
11813
 
11814
- #: view/Goals/CheckSeo.php:112
11815
  #, php-format
11816
  msgid "%s Upgrades"
11817
- msgstr ""
11818
 
11819
- #: view/Goals/CheckSeo.php:113
11820
- #, fuzzy
11821
- #| msgid "Recommended by Squirrly"
11822
  msgid "Handled by Squirrly Genius."
11823
- msgstr "Recomandat de Squirrly"
11824
 
11825
- #: view/Goals/CheckSeo.php:114
11826
- #, fuzzy
11827
  msgid ""
11828
  "Remember that it may take up to 1 minute for a complete SEO check. There is "
11829
  "a lot of processing involved."
11830
  msgstr ""
11831
- "Amintiți-vă că poate dura până la 1 minut pentru o verificare SEO completă. "
11832
- "Sunt multe prelucrări implicate."
11833
 
11834
- #: view/Goals/CheckSeo.php:141
11835
  msgid "Congratulations!"
11836
  msgstr "Felicitări!"
11837
 
11838
  #: view/Goals/Goals.php:35
11839
- #, fuzzy
11840
  msgid "Next SEO Goals"
11841
- msgstr "Obiective zilnice SEO"
11842
 
11843
  #: view/Goals/Goals.php:37
11844
- #, fuzzy, php-format
11845
  msgid "%s goals"
11846
- msgstr "%s obiective pentru astăzi"
11847
 
11848
  #: view/Goals/Goals.php:52
11849
- #, fuzzy
11850
  msgid "Reach New Goals"
11851
- msgstr "Atingeți obiective noi"
11852
 
11853
  #: view/Goals/Goals.php:53
11854
- #, fuzzy
11855
  msgid "Squirrly Smart Strategy sets new goals."
11856
- msgstr "Strategia inteligentă squirrly stabilește noi obiective."
11857
 
11858
  #: view/Goals/Goals.php:55
11859
- #, fuzzy
11860
  msgid "How unique are these goals?"
11861
  msgstr "Cât de unice sunt aceste obiective?"
11862
 
11863
  #: view/Goals/Goals.php:67
11864
- #, fuzzy
11865
- #| msgid "progress"
11866
  msgid "Daily Progress"
11867
- msgstr "progres"
11868
 
11869
  #: view/Goals/Goals.php:77
11870
- #, fuzzy
11871
- #| msgid "progress"
11872
  msgid "Today's Progress"
11873
- msgstr "progres"
11874
 
11875
  #: view/Goals/Goals.php:88
11876
- #, fuzzy, php-format
11877
  msgid ""
11878
  "Hint: remember to click: %sShow me how - Mark as Done%s, when you complete a "
11879
  "goal."
11880
  msgstr ""
11881
- "Sugestie: amintiți-văfaceți clic pe: %s Afișați-mă - Marcați ca Gata %s, "
11882
- "când finalizați un obiectiv."
11883
 
11884
  #: view/Goals/Goals.php:104
11885
- #, fuzzy
11886
  msgid "Goal completed. Good Job!"
11887
- msgstr "Obiectivul finalizat. Bună treabă!"
11888
 
11889
  #: view/Goals/Goals.php:116
11890
  msgid "use"
11891
  msgstr "foloseste"
11892
 
11893
  #: view/Goals/Goals.php:123
11894
- #, fuzzy
11895
  msgid "Time to complete this goal."
11896
- msgstr "E timpul îndepliniți acest obiectiv."
11897
 
11898
  #: view/Goals/Goals.php:123
11899
  msgid "up to"
11900
  msgstr "până la"
11901
 
11902
  #: view/Goals/Goals.php:138
11903
- #, fuzzy
11904
  msgid "Show me how"
11905
  msgstr "Arată-mi cum"
11906
 
11907
  #: view/Goals/Goals.php:142
11908
- #, fuzzy
11909
  msgid "Goal is not done!"
11910
- msgstr "Obiectivul nu este făcut!"
11911
 
11912
  #: view/Goals/Goals.php:156
11913
- #, fuzzy
11914
  msgid "SOLUTION"
11915
- msgstr "SOLUŢIE"
11916
 
11917
  #: view/Goals/Goals.php:168
11918
- #, fuzzy
11919
  msgid "Let's do this"
11920
- msgstr " o facem"
11921
 
11922
  #: view/Goals/Goals.php:178
11923
- #, fuzzy
11924
  msgid "Mark As Done"
11925
- msgstr "Mark As Gata"
11926
 
11927
  #: view/Goals/Goals.php:195
11928
- #, fuzzy
11929
  msgid "Do you want to ignore this goal?"
11930
- msgstr "Vreiignori acest obiectiv?"
11931
 
11932
  #: view/Goals/Goals.php:217
11933
- #, fuzzy
11934
  msgid "Want to keep boosting your SEO?"
11935
- msgstr "Doriți să vă sporiți SEO?"
11936
 
11937
  #: view/Goals/Goals.php:219
11938
- #, fuzzy
11939
- #| msgid "Optimize"
11940
  msgid "Optimize your Posts and Pages"
11941
- msgstr "Optimizare"
11942
 
11943
  #: view/Goals/Goals.php:244
11944
- #, fuzzy
11945
- #| msgid "More details"
11946
  msgid "Show hidden goals"
11947
- msgstr "Mai mult"
11948
 
11949
  #: view/Goals/Goals.php:254
11950
- #, fuzzy
11951
  msgid "Next goals on"
11952
- msgstr "Următoarele obiective"
11953
 
11954
  #: view/Goals/Goals.php:263
11955
- #, fuzzy
11956
  msgid "Load more goals if exist"
11957
- msgstr "Încărcați mai multe obiective dacă există"
11958
 
11959
  #: view/Onboarding/Journey1.php:12
11960
- #, fuzzy
11961
  msgid "14 Days Journey"
11962
- msgstr "14 Zile de călătorie"
11963
 
11964
  #: view/Onboarding/Journey1.php:29
11965
- #, fuzzy
11966
  msgid ""
11967
  "To drive it in the right direction, you have the chance to join (for Free) "
11968
  "the 14 Days Journey to Better Rankings."
11969
  msgstr ""
11970
- "Pentru a-l conduce în direcția corectă, aveți șansa de a vă alătura "
11971
- "(gratuit) celor 14 zile de călătorie către o clasare mai bună."
11972
 
11973
  #: view/Onboarding/Journey1.php:34
11974
- #, fuzzy
11975
  msgid "You'll get"
11976
  msgstr "Vei primi"
11977
 
11978
  #: view/Onboarding/Journey1.php:36
11979
- #, fuzzy, php-format
11980
  msgid ""
11981
  "the %schance to fix in 14 days%s mistakes from years of ineffective SEO."
11982
  msgstr ""
11983
- "%schance pentru a remedia în 14 zile %s greșeli din ani de SEO ineficiente."
11984
 
11985
  #: view/Onboarding/Journey1.php:37
11986
- #, fuzzy, php-format
11987
  msgid "the skills you need to %ssucceed in 14 days%s."
11988
- msgstr "abilitățile de care aveți nevoie pentru a continua% în 14 zile %s."
11989
 
11990
  #: view/Onboarding/Journey1.php:38
11991
- #, fuzzy, php-format
11992
  msgid ""
11993
  "access to the private %sJourneyTeam community%s where you can share your "
11994
  "experience and talk about it (good and bad, all is accepted)."
11995
  msgstr ""
11996
- "acces la comunitatea privată %sJourneyTeam %s unde puteți împărtăși "
11997
- "experiența și vorbi despre ea (bine și rău, totul este acceptat)."
11998
 
11999
  #: view/Onboarding/Journey1.php:39
12000
- #, fuzzy, php-format
12001
  msgid ""
12002
  "receive%s help from the JourneyTeam%s and Private Feedback on your journey "
12003
  "from Squirrly."
12004
  msgstr ""
12005
- "primiți %s ajutor de la JourneyTeam %s și feedback privat în călătoria dvs. "
12006
- "din Squirrly."
12007
 
12008
  #: view/Onboarding/Journey1.php:40
12009
- #, fuzzy, php-format
12010
  msgid ""
12011
  "an %sexact recipe to follow for 14 Days%s to bring one of your pages up in "
12012
  "rankings, for a hands-on experience."
12013
  msgstr ""
12014
- "o rețetă de %sexact pe care trebuie să o urmezi timp de 14 zile %s pentru a "
12015
- "aduce una dintre paginile tale în clasament, pentru o experiență practică."
12016
 
12017
  #: view/Onboarding/Journey1.php:41
12018
- #, fuzzy, php-format
12019
  msgid ""
12020
  "%sall the costs%s (to third parties) involved with APIs, technology, cloud "
12021
  "computing, etc. %sare fully sponsored by Squirrly%s. We sponsor every new "
12022
  "member who wishes to become part of the winning JourneyTeam."
12023
  msgstr ""
12024
- "%sall costurile %s (către terți) implicați cu API-uri, tehnologie, cloud "
12025
- "computing etc. %sare complet sponsorizate de Squirrly %s. Sponsoriem fiecare "
12026
- "membru nou care dorește să devină parte a JourneyTeam câștigătoare."
 
12027
 
12028
- #: view/Onboarding/Journey1.php:47 view/Onboarding/Step2.php:100
12029
  #: view/Onboarding/Step3.php:78
12030
- #, fuzzy
12031
  msgid "Continue"
12032
- msgstr "Continuare>"
12033
 
12034
  #: view/Onboarding/Journey1.php:62 view/Onboarding/Journey2.php:85
12035
- #: view/Onboarding/Step1.php:77 view/Onboarding/Step2.php:105
12036
  #: view/Onboarding/Step3.php:102
12037
- #, fuzzy
12038
- #| msgid "Go to dashboard"
12039
  msgid "Return to Dashboard"
12040
- msgstr "Mergi la Dashboard"
12041
 
12042
  #: view/Onboarding/Journey2.php:11
12043
- #, fuzzy
12044
  msgid "Start the 14 Days Journey"
12045
- msgstr "Începe călătoria de 14 zile"
12046
 
12047
  #: view/Onboarding/Journey2.php:25
12048
- #, fuzzy
12049
  msgid "Awesome! You are on your way to better results."
12050
- msgstr "Minunat! Ești pe cale obții rezultate mai bune."
12051
 
12052
  #: view/Onboarding/Journey2.php:27
12053
- #, fuzzy, php-format
12054
  msgid "You will receive the %sdaily recipe%s in your %sDashboard%s."
12055
- msgstr "Veți primi rețeta %sdaily %s în %sDashboard %s."
12056
 
12057
  #: view/Onboarding/Journey2.php:34
12058
- #, fuzzy, php-format
12059
  msgid ""
12060
  "%sIn 14 Days you can tell us how it went%s (via messages on our %sFacebook "
12061
  "Page%s) and we'll tell you what you can do to further improve the results "
12062
  "you got during the 14 Days."
12063
  msgstr ""
12064
- "%s În 14 zile ne puteți spune cum a decurs %s (prin mesaje pe pagina noastră "
12065
- "%sFacebook %s) și vom spune ce puteți face pentru a îmbunătăți în "
12066
- "continuare rezultatele obținute în cele 14 zile."
12067
 
12068
  #: view/Onboarding/Journey2.php:38
12069
  msgid "Close"
12070
  msgstr "Închide"
12071
 
12072
  #: view/Onboarding/Journey2.php:42
12073
- #, fuzzy
12074
  msgid "Choose how to continue"
12075
  msgstr "Alegeți cum să continuați"
12076
 
12077
  #: view/Onboarding/Journey2.php:52
12078
- #, fuzzy
12079
  msgid "Let's Start My 14 Days Journey"
12080
  msgstr "Să începem călătoria mea de 14 zile"
12081
 
12082
  #: view/Onboarding/Journey2.php:60
12083
- #, fuzzy
12084
  msgid "Nah, there is little interest in this"
12085
- msgstr "Nu, există prea puțin interes pentru asta"
12086
 
12087
  #: view/Onboarding/Journey2.php:69
12088
  msgid "Close Window"
12089
  msgstr "Inchide Fereastra"
12090
 
12091
  #: view/Onboarding/Step1.php:13 view/Onboarding/Step2.php:18
12092
- #, fuzzy
12093
- msgid "Welcome to Squirrly SEO 2021 (Smart Strategy)"
12094
- msgstr "Bine ați venit la Squirrly SEO 2020 (Strategie inteligentă)"
12095
 
12096
  #: view/Onboarding/Step1.php:25
12097
  msgid "Let us know how to setup your website"
12098
- msgstr ""
12099
 
12100
  #: view/Onboarding/Step1.php:26
12101
  msgid "You can also modify all the settings later."
12102
- msgstr ""
12103
 
12104
  #: view/Onboarding/Step1.php:30
12105
- #, fuzzy
12106
  msgid "Your Website Type"
12107
- msgstr "Tipul dvs. de site"
12108
 
12109
  #: view/Onboarding/Step1.php:31
12110
  msgid ""
12111
  "SEO Automation will setup SEO Patterns and Post Types based on your website "
12112
  "type."
12113
  msgstr ""
 
 
12114
 
12115
  #: view/Onboarding/Step1.php:36
12116
  msgid "E-commerce"
12117
- msgstr ""
12118
 
12119
  #: view/Onboarding/Step1.php:37
12120
  msgid "Personal"
12121
  msgstr "Personal"
12122
 
12123
  #: view/Onboarding/Step1.php:38
12124
- #, fuzzy
12125
- #| msgid "Blogs"
12126
  msgid "Blog/News"
12127
- msgstr "Bloguri"
12128
 
12129
  #: view/Onboarding/Step1.php:39
12130
  msgid "Magazine"
12131
- msgstr ""
12132
 
12133
  #: view/Onboarding/Step1.php:40
12134
  msgid "Portfolio"
12135
- msgstr ""
12136
 
12137
  #: view/Onboarding/Step1.php:41
12138
- #, fuzzy
12139
- #| msgid "History"
 
 
 
 
 
 
12140
  msgid "Directory"
12141
- msgstr "Istoric"
12142
 
12143
- #: view/Onboarding/Step1.php:49
12144
  msgid "Your SEO Level"
12145
- msgstr ""
12146
 
12147
- #: view/Onboarding/Step1.php:50
12148
  msgid "SEO Settings will load data based on your SEO knowledge."
12149
  msgstr ""
 
12150
 
12151
- #: view/Onboarding/Step1.php:54
12152
- #, fuzzy
12153
- #| msgid "SEO Snippet"
12154
  msgid "Non-SEO Expert"
12155
- msgstr "Snippet SEO"
12156
 
12157
- #: view/Onboarding/Step1.php:55
12158
- #, fuzzy
12159
- #| msgid "SEO Snippet"
12160
  msgid "SEO Expert"
12161
- msgstr "Snippet SEO"
12162
 
12163
- #: view/Onboarding/Step1.php:63
12164
- #, fuzzy
12165
- #| msgid "Skip this step"
12166
  msgid "Skip Step"
12167
- msgstr "Săriți peste acest pas"
12168
 
12169
- #: view/Onboarding/Step1.php:66
12170
- #, fuzzy
12171
  msgid "Save & Continue"
12172
- msgstr "Continuare>"
12173
 
12174
  #: view/Onboarding/Step2.php:26
12175
- #, fuzzy
12176
  msgid "Your Private SEO Consultant Sets Up the SEO for Your WordPress"
12177
- msgstr "Consultantul dvs. privat SEO stabilește SEO pentru WordPress"
12178
 
12179
  #: view/Onboarding/Step2.php:34
12180
- #, fuzzy, php-format
12181
  msgid "Getting %s SEO Automation %s ready on your WP"
12182
- msgstr "Pregătirea automatizării SEO pe WP"
12183
 
12184
  #: view/Onboarding/Step2.php:42
12185
- #, fuzzy, php-format
12186
  msgid "Activating %s SEO METAs %s"
12187
- msgstr "Activarea META-urilor"
12188
 
12189
  #: view/Onboarding/Step2.php:50
12190
- #, fuzzy, php-format
12191
  msgid "Activating %s JSON-LD Schema %s"
12192
- msgstr "Activarea JSON-LD schema.org"
12193
 
12194
  #: view/Onboarding/Step2.php:58
12195
- #, fuzzy, php-format
12196
  msgid "Activating %s Open Graph %s"
12197
- msgstr "Activarea graficului deschis"
12198
 
12199
  #: view/Onboarding/Step2.php:66
12200
- #, fuzzy, php-format
12201
- #| msgid "Twitter"
12202
  msgid "Activating %s Twitter Cards %s"
12203
- msgstr "Twitter"
12204
 
12205
  #: view/Onboarding/Step2.php:74
12206
- #, fuzzy, php-format
12207
- #| msgid "Enter your email"
12208
  msgid "Creating your %s Sitemap XML %s"
12209
- msgstr "Adauga adresa email"
12210
 
12211
  #: view/Onboarding/Step2.php:82
12212
- #, fuzzy, php-format
12213
  msgid "Creating %s Robots.txt %s"
12214
- msgstr "Crearea de roboți.txt"
12215
 
12216
  #: view/Onboarding/Step2.php:87
12217
- #, fuzzy
12218
  msgid "Success! You are all setup"
12219
- msgstr "Succes! Sunteți toate configurate"
12220
 
12221
  #: view/Onboarding/Step3.php:12
12222
- #, fuzzy
12223
  msgid "Import SEO & Settings"
12224
- msgstr "Setari"
12225
 
12226
  #: view/Onboarding/Step3.php:28
12227
- #, fuzzy
12228
  msgid "We've detected another SEO Plugin on your site."
12229
- msgstr "Am detectat un alt plugin SEO pe site-ul dvs."
12230
 
12231
  #: view/Onboarding/Step3.php:32
12232
- #, fuzzy, php-format
12233
- msgid ""
12234
- "%sImport your settings and SEO%s from the following plugin into your new "
12235
- "Squirrly SEO"
12236
- msgstr ""
12237
- "%sImportează-ți setările și SEO %s din următorul plugin în noul tău SEO "
12238
- "Squirrly"
12239
 
12240
  #: view/Onboarding/Step3.php:51
12241
  msgid "Import"
12242
  msgstr "Import"
12243
 
12244
- #: view/Onboarding/Step3.php:53 view/SeoSettings/Backup.php:64
12245
- #: view/SeoSettings/Backup.php:93
12246
- #, fuzzy
12247
  msgid "We couldn't find any SEO plugin or theme to import from."
12248
- msgstr "Nu am găsit niciun plugin sau temă SEO din care să importăm."
12249
 
12250
  #: view/Onboarding/Step3.php:62
12251
- #, fuzzy
12252
  msgid "What you gain"
12253
  msgstr "Ce câștigi"
12254
 
12255
  #: view/Onboarding/Step3.php:64
12256
- #, fuzzy
12257
  msgid ""
12258
  "Everything will be the same in your site, and Google will keep all your "
12259
  "rankings safe."
12260
  msgstr ""
12261
- "Totul va fi la fel în site-ul dvs., iar Google va păstra toate clasamentele "
12262
- "în siguranță."
12263
 
12264
  #: view/Onboarding/Step3.php:65
12265
- #, fuzzy
12266
  msgid ""
12267
  "Squirrly SEO covers everything that Google used to see from the old plugin, "
12268
  "and brings new stuff in. That's why Google will do more than keep your "
12269
  "rankings safe. It might award you with brand new page 1 positions if you use "
12270
  "Squirrly."
12271
  msgstr ""
12272
- "Squirrly SEO acoperă tot ce obișnuia să vadă Google din vechiul plugin și "
12273
- "aduce lucruri noi. De aceea, Google va face mai mult decât să îți păstrezi "
12274
- "clasamentul în siguranță. S-ar putea să vă acorde poziții noi în pagina 1 "
12275
- "dacă utilizați Squirrly."
12276
 
12277
  #: view/Onboarding/Step3.php:69
12278
- #, fuzzy
12279
  msgid "If you decide to switch back"
12280
- msgstr "Dacă decideți să comutați înapoi"
12281
 
12282
  #: view/Onboarding/Step3.php:71
12283
- #, fuzzy
12284
  msgid ""
12285
  "you can always switch back, without any issues. Your old plugin will remain "
12286
  "the same. We don't delete it."
12287
  msgstr ""
12288
- "puteți întoarce întotdeauna, fără probleme. Pluginul vechi va rămâne "
12289
- "același. Nu o ștergem."
12290
 
12291
  #: view/Onboarding/Step3.php:79
12292
  msgid "Skip this step"
12293
  msgstr "Săriți peste acest pas"
12294
 
12295
  #: view/Onboarding/Step3.php:84
12296
- #, fuzzy
12297
  msgid "We haven't detected other SEO Plugins on your site."
12298
  msgstr "Nu am detectat alte plugin-uri SEO pe site-ul dvs."
12299
 
12300
  #: view/Onboarding/Step3.php:87
12301
- #, fuzzy
12302
  msgid "Click Continue to go to the next step."
12303
- msgstr "Faceți clic pe Continuare pentru a trece la pasul următor."
12304
 
12305
- #: view/Onboarding/Step4.php:20
12306
- #, fuzzy
 
 
 
 
 
 
 
12307
  msgid ""
12308
  "Your private SEO consultant is now accessing our cloud services to start "
12309
  "analyzing your site."
12310
  msgstr ""
12311
- "Consultantul dvs. privat SEO accesează acum serviciile noastre cloud pentru "
12312
- "a începe analiza site-ului dvs."
12313
 
12314
- #: view/Onboarding/Step4.php:21
12315
- #, fuzzy
12316
  msgid ""
12317
  "Our machine learning is now trying to match some of the data with what we "
12318
  "have in our system."
12319
  msgstr ""
12320
- "Învățarea noastră mașină încearcă acum să potrivească unele dintre datele cu "
12321
- "ceea ce avem în sistemul nostru."
12322
 
12323
- #: view/Onboarding/Step4.php:22
12324
- #, fuzzy
12325
  msgid "Getting your SEO Protection to 100%."
12326
  msgstr "Obținerea protecției SEO la 100%."
12327
 
12328
- #: view/Onboarding/Step4.php:23
12329
- #, fuzzy
12330
  msgid "Covering all the post types from your WP with Excellent on-page SEO."
12331
- msgstr ""
12332
- "Acoperirea tuturor tipurilor de postări din WP-ul dvs. cu SEO excelent pe "
12333
- "pagina."
12334
 
12335
- #: view/Onboarding/Step4.php:24
12336
- #, fuzzy
12337
  msgid "Analysis by consultant reaching 100%."
12338
  msgstr "Analiza efectuată de consultant a ajuns la 100%."
12339
 
12340
- #: view/Onboarding/Step4.php:33
12341
- #, fuzzy
12342
  msgid ""
12343
  "You can now check today's SEO Goals to see what your new Consultant says you "
12344
  "should focus on."
12345
  msgstr ""
12346
- "Acum puteți verifica Obiectivele SEO de astăzi pentru a vedea ce spune noul "
12347
- "dvs. consultant pe care ar trebui să vă concentrați"
12348
 
12349
- #: view/Onboarding/Step4.php:37
12350
- #, fuzzy
12351
- #| msgid "See dashboard"
12352
  msgid "Check Today's SEO Goals"
12353
- msgstr "Vezi Dashboard"
12354
 
12355
- #: view/Overview.php:13
12356
- #, fuzzy
12357
  msgid ""
12358
  "You do not have permission to access Daily Goals. You need Squirrly SEO "
12359
  "Editor role."
12360
  msgstr ""
12361
- "Nu aveți permisiunea de a accesa această pagină. Ai nevoie de Squirrly SEO "
12362
- "Administrator"
12363
-
12364
- #: view/Overview.php:24
12365
- #, fuzzy
12366
- msgid "What's Included in Squirrly SEO Plugin"
12367
- msgstr "începe să folosești Squirrly SEO"
12368
-
12369
- #: view/Overview.php:29
12370
- #, php-format
12371
- msgid ""
12372
- "With a total of over %s400%s free in-depth features that only Squirrly can "
12373
- "offer."
12374
- msgstr ""
12375
-
12376
- #: view/Overview.php:32
12377
- msgid "Start Activating SEO Features Now"
12378
- msgstr ""
12379
 
12380
  #: view/Ranking/Gscsync.php:16
12381
- #, fuzzy
12382
  msgid "Google Search Console Keywords Sync"
12383
- msgstr "Sincronizare cuvinte cheie Google Console Search"
12384
 
12385
- #: view/Ranking/Gscsync.php:17 view/Research/Suggested.php:17
12386
- #, fuzzy
12387
  msgid ""
12388
  "See the trending keywords suitable for your website's future topics. We "
12389
  "check for new keywords weekly based on your latest researches."
12390
  msgstr ""
12391
- "Consultați cele mai populare cuvinte cheie adecvate pentru subiectele "
12392
- "viitoare ale site-ului dvs. Verificăm săptămânal noi cuvinte cheie pe baza "
12393
- "ultimelor cercetări."
12394
 
12395
- #: view/Ranking/Gscsync.php:21
12396
- #, fuzzy
12397
  msgid ""
12398
  "This is the list of keywords you have in Google Search Console. Information "
12399
  "for the last 90 days. You can add keywords that you find relevant to your "
@@ -12401,42 +11989,34 @@ msgid ""
12401
  msgstr ""
12402
  "Aceasta este lista de cuvinte cheie pe care o aveți în Google Search "
12403
  "Console. Informații pentru ultimele 90 de zile. Puteți adăuga cuvinte cheie "
12404
- "pe care le considerați relevante pentru servieta și în secțiunea Clasament."
12405
 
12406
- #: view/Ranking/Gscsync.php:35
12407
- #, fuzzy
12408
  msgid "Click-Through Rate"
12409
- msgstr "Rată de clic"
12410
 
12411
- #: view/Ranking/Gscsync.php:36
12412
- #, fuzzy
12413
  msgid "Average Position"
12414
  msgstr "Poziția medie"
12415
 
12416
- #: view/Ranking/Gscsync.php:36
12417
- #, fuzzy
12418
  msgid "AVG Position"
12419
  msgstr "Poziția AVG"
12420
 
12421
- #: view/Ranking/Gscsync.php:81
12422
- #, fuzzy
12423
  msgid "Already in Rank Checker"
12424
- msgstr "Trimiteți la Verificatorul de Rang"
12425
 
12426
- #: view/Ranking/Gscsync.php:86
12427
- #, fuzzy
12428
  msgid "Add to Rank Checker"
12429
- msgstr "Trimiteți la Verificatorul de Rang"
12430
 
12431
- #: view/Ranking/Gscsync.php:102
12432
- #, fuzzy
12433
  msgid "Welcome to Google Search Console Keywords Sync"
12434
- msgstr ""
12435
- "Bine ați venit la Sincronizarea cuvintelor cheie din Consola de căutare "
12436
- "Google"
12437
 
12438
- #: view/Ranking/Gscsync.php:105
12439
- #, fuzzy, php-format
12440
  msgid ""
12441
  "If you're new to SEO, you probably don't know yet how slow Google actually "
12442
  "is with regard to crawling and gathering data about sites which are not as "
@@ -12446,1557 +12026,1337 @@ msgid ""
12446
  "about your site. Until then, keep working on your SEO Goals from Squirrly "
12447
  "SEO."
12448
  msgstr ""
12449
- "Dacă sunteți nou în SEO, probabil nu știți încă cât de lent este Google în "
12450
- "ceea ce privește accesarea la crawling și colectarea de date despre site-uri "
12451
- "care nu sunt la fel de mari ca The New York Times, Amazon.com etc. unele "
12452
- "resurse. %s Nu am găsit niciun cuvânt cheie din contul dvs. GSC, deoarece "
12453
- "Google nu are încă suficiente date despre site-ul dvs. %s Oferiți Google "
12454
- "mai mult timp pentru a afla despre site-ul dvs. Până atunci, continuați să "
12455
- "lucrați la Obiectivele dvs. zilnice de SEO de la SEO Squirrly."
 
12456
 
12457
- #: view/Ranking/Gscsync.php:108
12458
- #, fuzzy
12459
  msgid "Tips: Which Keyword Should I Choose?"
12460
- msgstr "Sfaturi: ce cuvânt cheie ar trebui să aleg?"
12461
 
12462
- #: view/Ranking/Gscsync.php:110 view/Ranking/Rankings.php:446
12463
- #, fuzzy, php-format
12464
  msgid ""
12465
  "From %sSquirrly Briefcase%s you can send keywords to Rank Checker to track "
12466
  "the SERP evolution."
12467
  msgstr ""
12468
- "De la %sSquirrly Briefcase %s puteți trimite cuvinte cheie către Rank "
12469
- "Checker pentru a urmări evoluția SERP."
12470
 
12471
- #: view/Ranking/Rankings.php:34
12472
- #, fuzzy
12473
  msgid ""
12474
  "It's a fully functional SEO Ranking Tool that helps you find the true "
12475
  "position of your website in Google for any keyword and any country you want"
12476
  msgstr ""
12477
- "Este un instrument de funcționare SEO complet funcțional care te ajută să "
12478
- "găsești poziția adevărată a site-ului tău în Google pentru orice cuvânt "
12479
- "cheie și orice țară dorești"
12480
 
12481
- #: view/Ranking/Rankings.php:36
12482
- #, fuzzy
12483
  msgid ""
12484
  "Get the Google Search Console average possitions, clicks and impressions for "
12485
  "all organic keywords of your website."
12486
  msgstr ""
12487
- "Consultați posesia medie, clicurile și afișările Google Search Console "
12488
- "pentru cuvinte cheie organice"
12489
 
12490
- #: view/Ranking/Rankings.php:98
12491
- #, fuzzy
12492
- #| msgid "All your articles"
12493
  msgid "Only show ranked articles"
12494
- msgstr "Articolele mele"
12495
 
12496
- #: view/Ranking/Rankings.php:102
12497
- #, fuzzy
12498
  msgid "Today Avg. Ranking"
12499
  msgstr "Astăzi Avg. Clasament"
12500
 
12501
- #: view/Ranking/Rankings.php:106
12502
- #, fuzzy
12503
  msgid "Only show SERP changes"
12504
  msgstr "Afișați doar modificările SERP"
12505
 
12506
- #: view/Ranking/Rankings.php:128
12507
- #, fuzzy
12508
  msgid "Today SERP Changes"
12509
- msgstr "Astăzi se schimbă SERP"
12510
 
12511
- #: view/Ranking/Rankings.php:157
12512
- #, fuzzy, php-format
12513
  msgid "the latest %s days Google Rankings evolution"
12514
- msgstr "ultima evoluție a clasamentului Google% zile"
12515
 
12516
- #: view/Ranking/Rankings.php:163
12517
- #, fuzzy, php-format
12518
  msgid "%s keyword ranked in TOP 10"
12519
- msgstr "%s cuvânt cheie clasat în TOP 10"
12520
 
12521
- #: view/Ranking/Rankings.php:168
12522
- #, fuzzy, php-format
12523
  msgid "%s keyword ranked better today"
12524
- msgstr "Cuvântul cheie %s s-a clasat mai bine astăzi"
12525
 
12526
- #: view/Ranking/Rankings.php:180
12527
- #, fuzzy, php-format
12528
  msgid "Ranks improved with an average of %s in the last 7 days."
12529
- msgstr "Gradele s-au îmbunătățit cu o medie de %s în ultimele 7 zile"
12530
 
12531
- #: view/Ranking/Rankings.php:204 view/Research/Briefcase.php:65
12532
- #: view/Research/Labels.php:85
12533
  msgid "Bulk Actions"
12534
  msgstr "Actiuni in masa"
12535
 
12536
- #: view/Ranking/Rankings.php:205
12537
- #, fuzzy
12538
- #| msgid "Could not send the email..."
12539
  msgid "Ar you sure you want to delete the keyword?"
12540
- msgstr "Nu s-a putut trimite email ..."
12541
 
12542
- #: view/Ranking/Rankings.php:205 view/Research/Briefcase.php:68
12543
- #: view/Research/Labels.php:86
12544
  msgid "Delete"
12545
  msgstr "Șterge"
12546
 
12547
- #: view/Ranking/Rankings.php:207
12548
- #, fuzzy
12549
- #| msgid "Squirrly Keyword Research"
12550
  msgid "Refresh Serp"
12551
- msgstr " Cercetare cuvinte cheie"
12552
 
12553
- #: view/Ranking/Rankings.php:210 view/Research/Briefcase.php:70
12554
- #: view/Research/Labels.php:88
12555
  msgid "Apply"
12556
  msgstr "Aplică"
12557
 
12558
- #: view/Ranking/Rankings.php:219
12559
  msgid "Path"
12560
  msgstr "Cale"
12561
 
12562
- #: view/Ranking/Rankings.php:221 view/Research/Briefcase.php:114
12563
  msgid "Rank"
12564
  msgstr "Poziție"
12565
 
12566
- #: view/Ranking/Rankings.php:222
12567
  msgid "Best"
12568
  msgstr "Cele mai bune"
12569
 
12570
- #: view/Ranking/Rankings.php:224 view/Research/Briefcase.php:116
12571
- #, fuzzy
12572
  msgid "Avg Rank"
12573
- msgstr "Rang mediu"
12574
 
12575
- #: view/Ranking/Rankings.php:257 view/Ranking/Rankings.php:287
12576
- #, fuzzy
12577
  msgid "Google Search Console has no data for this keyword"
12578
  msgstr "Google Search Console nu are date pentru acest cuvânt cheie"
12579
 
12580
- #: view/Ranking/Rankings.php:277 view/Research/Briefcase.php:175
12581
- #, fuzzy
12582
  msgid "Not indexed"
12583
- msgstr "Nu este indexat"
12584
 
12585
- #: view/Ranking/Rankings.php:288 view/Research/Briefcase.php:177
12586
- #, fuzzy
12587
  msgid "GSC"
12588
  msgstr "GSC"
12589
 
12590
- #: view/Ranking/Rankings.php:292
12591
- #, fuzzy
12592
- #| msgid "More details"
12593
  msgid "rank details"
12594
- msgstr "Mai mult"
12595
 
12596
- #: view/Ranking/Rankings.php:311
12597
- #, fuzzy
12598
  msgid "Check Ranking again"
12599
- msgstr "Verificați din nou Clasamentul"
12600
 
12601
- #: view/Ranking/Rankings.php:324
12602
- #, fuzzy
12603
- #| msgid "Keyword"
12604
  msgid "Remove Keyword"
12605
- msgstr "Cuvant cheie:"
12606
 
12607
- #: view/Ranking/Rankings.php:383
12608
- #, fuzzy
12609
- #| msgid "Optimize"
12610
  msgid "Optimized with SLA"
12611
- msgstr "Optimizare"
12612
 
12613
- #: view/Ranking/Rankings.php:391
12614
  msgid "Social Shares"
12615
  msgstr "Distribuie Rețele sociale"
12616
 
12617
- #: view/Ranking/Rankings.php:394
12618
- #, fuzzy
12619
  msgid "Facebook Shares"
12620
- msgstr "Facebook partajează"
12621
 
12622
- #: view/Ranking/Rankings.php:395
12623
- #, fuzzy
12624
  msgid "Reddit Shares"
12625
  msgstr "Acțiuni Reddit"
12626
 
12627
- #: view/Ranking/Rankings.php:396
12628
- #, fuzzy
12629
- #| msgid "Pinterest"
12630
  msgid "Pinterest Pins"
12631
- msgstr "Pinterest"
12632
 
12633
- #: view/Ranking/Rankings.php:403 view/Research/Briefcase.php:309
12634
- #: view/Research/History.php:31 view/Research/Research.php:201
12635
- #: view/Research/Suggested.php:30 view/SeoSettings/Jsonld.php:122
12636
  msgid "Country"
12637
  msgstr "Țară"
12638
 
12639
- #: view/Ranking/Rankings.php:418
12640
- #, fuzzy
12641
  msgid ""
12642
  "Note! The clicks and impressions data is taken from Google Search Console "
12643
  "for the last 90 days for the current URL."
12644
  msgstr ""
12645
- "Notă! Datele despre clicuri și afișări sunt preluate din Google Search "
12646
- "Console în ultimele 90 de zile pentru adresa URL curentă"
12647
 
12648
- #: view/Ranking/Rankings.php:433
12649
- #, fuzzy
12650
  msgid "No ranking found."
12651
- msgstr "Nu a fost găsit niciun clasament."
12652
 
12653
- #: view/Ranking/Rankings.php:437
12654
- #, fuzzy
12655
  msgid "Welcome to Squirrly Rankings"
12656
- msgstr "Bine ați venit la Clasamentul Squirrly"
12657
 
12658
- #: view/Ranking/Rankings.php:440
12659
- #, fuzzy
12660
  msgid "Add keywords in Briefcase"
12661
- msgstr "Adăugați cuvinte cheie în servietă"
12662
 
12663
- #: view/Ranking/Rankings.php:444
12664
- #, fuzzy
12665
  msgid "Tips: How to add Keywords in Rankings?"
12666
- msgstr "Sfaturi: Cum să adăugați cuvinte cheie în clasament?"
12667
 
12668
- #: view/Ranking/Rankings.php:447
12669
- #, fuzzy, php-format
12670
  msgid ""
12671
  "Connect with %sGoogle Search Console%s to synchronize the keywords for which "
12672
  "your website is ranking."
12673
  msgstr ""
12674
- "Conectați-vă cu %sGoogle Search Console %s pentru a sincroniza cuvintele "
12675
- "cheie pentru care se clasează site-ul dvs. web."
12676
 
12677
- #: view/Ranking/Rankings.php:469
12678
- #, fuzzy
12679
  msgid "Synchronize Keywords with Google Search Console"
12680
  msgstr "Sincronizați cuvintele cheie cu Google Search Console"
12681
 
12682
  #: view/Ranking/Settings.php:30
12683
- #, fuzzy
12684
  msgid "Rankings Settings"
12685
- msgstr "Setari"
12686
 
12687
- #: view/Ranking/Settings.php:44
12688
- #, fuzzy
12689
  msgid "Google Country"
12690
  msgstr "Țara Google"
12691
 
12692
- #: view/Ranking/Settings.php:45
12693
- #, fuzzy
12694
  msgid "Select the Country for which Squirrly will check the Google rank."
12695
- msgstr "Selectați țara Google pentru care Squirrly va verifica poziția Google."
12696
 
12697
- #: view/Ranking/Settings.php:49
12698
  msgid "Default"
12699
  msgstr "Implicit"
12700
 
12701
- #: view/Ranking/Settings.php:167
12702
- #, fuzzy
12703
  msgid "Google Language"
12704
- msgstr "Clasament Google"
12705
 
12706
- #: view/Ranking/Settings.php:168
12707
- #, fuzzy
12708
  msgid "Select the Language for which Squirrly will check the Google rank."
12709
- msgstr "Selectați țara Google pentru care Squirrly va verifica poziția Google."
12710
 
12711
- #: view/Ranking/Settings.php:322
12712
  msgid "Device"
12713
- msgstr ""
12714
 
12715
- #: view/Ranking/Settings.php:323
12716
- #, fuzzy
12717
  msgid "Select the Device for which Squirrly will check the Google rank."
12718
- msgstr "Selectați țara Google pentru care Squirrly va verifica poziția Google."
12719
 
12720
- #: view/Research/Briefcase.php:20
12721
- #, fuzzy
12722
  msgid ""
12723
  "Briefcase is essential to managing your SEO Strategy. With Briefcase you'll "
12724
  "find the best opportunities for keywords you're using in the Awareness "
12725
  "Stage, Decision Stage and other stages you may plan for your Customer's "
12726
  "Journey."
12727
  msgstr ""
12728
- "Servieta este esențială pentru gestionarea strategiei SEO. Cu Servieta veți "
12729
- "găsi cele mai bune oportunități pentru cuvinte cheie pe care le utilizați în "
12730
- "Etapa de conștientizare, Etapa de decizie și alte etape pe care le puteți "
12731
  "planifica pentru Călătoria clientului."
12732
 
12733
- #: view/Research/Briefcase.php:36
12734
  msgid "Search Keyword"
12735
  msgstr "Câmpul Căutare cuvânt cheie"
12736
 
12737
- #: view/Research/Briefcase.php:66 view/Research/Briefcase.php:172
12738
- #, fuzzy
12739
- #| msgid "See rank"
12740
  msgid "Send to Rankings"
12741
- msgstr "Vezi rang"
12742
 
12743
- #: view/Research/Briefcase.php:67 view/Research/Briefcase.php:249
12744
- #, fuzzy
12745
  msgid "Assign Label"
12746
- msgstr "Atribuire etichetă"
12747
 
12748
- #: view/Research/Briefcase.php:68
12749
- #, fuzzy
12750
- #| msgid "Could not send the email..."
12751
  msgid "Ar you sure you want to delete the keywords?"
12752
- msgstr "Nu s-a putut trimite email ..."
12753
 
12754
- #: view/Research/Briefcase.php:76 view/Research/Briefcase.php:368
12755
- #, fuzzy, php-format
12756
  msgid "Select Labels for: %s"
12757
- msgstr "Selectați Etichete pentru: %s"
12758
 
12759
- #: view/Research/Briefcase.php:76
12760
- #, fuzzy
12761
- #| msgid "Keyword"
12762
  msgid "selected keywords"
12763
- msgstr "Cuvant cheie:"
12764
 
12765
- #: view/Research/Briefcase.php:80
12766
- #, fuzzy
12767
  msgid ""
12768
  "By assigning these labels, you will reset the other labels you assigned for "
12769
  "each keyword individually."
12770
  msgstr ""
12771
- "Alocând aceste etichete, veți reseta celelalte etichete atribuite pentru "
12772
- "fiecare cuvânt cheie individual."
12773
 
12774
- #: view/Research/Briefcase.php:89 view/Research/Briefcase.php:390
12775
- #: view/Research/Labels.php:26
12776
- #, fuzzy
 
 
 
12777
  msgid "Add new Label"
12778
- msgstr "Adăugați o nouă etichetă"
12779
 
12780
- #: view/Research/Briefcase.php:94 view/Research/Briefcase.php:396
12781
- #, fuzzy
12782
  msgid "Save Labels"
12783
- msgstr "Salvați etichete"
12784
 
12785
- #: view/Research/Briefcase.php:110
12786
  msgid "Usage"
12787
  msgstr "Utilizare"
12788
 
12789
- #: view/Research/Briefcase.php:120 view/Research/Briefcase.php:320
12790
- #, fuzzy
12791
- #| msgid "Search it:"
12792
  msgid "Search Volume"
12793
- msgstr "Se cauta:"
12794
 
12795
- #: view/Research/Briefcase.php:120 view/Research/HistoryDetails.php:15
12796
- #: view/Research/Suggested.php:37
12797
- #, fuzzy
12798
  msgid "SV"
12799
  msgstr "SV"
12800
 
12801
- #: view/Research/Briefcase.php:163 view/Research/Briefcase.php:165
12802
- #, fuzzy, php-format
12803
- #| msgid "posts"
12804
  msgid "in %s posts"
12805
- msgstr "articole"
12806
 
12807
- #: view/Research/Briefcase.php:171 view/Research/Briefcase.php:233
12808
- #, fuzzy
12809
  msgid "Check Rankings"
12810
- msgstr "Verificați din nou Clasamentul"
12811
 
12812
- #: view/Research/Briefcase.php:191
12813
- #, fuzzy
12814
- #| msgid "Keyword"
12815
  msgid "keyword info"
12816
- msgstr "Cuvant cheie:"
12817
 
12818
- #: view/Research/Briefcase.php:213
12819
- #, fuzzy
12820
- #| msgid "Do a research"
12821
  msgid "No research data"
12822
- msgstr "Mai multe detalii"
12823
 
12824
- #: view/Research/Briefcase.php:235
12825
- #, fuzzy
12826
  msgid "Send to Rank Checker"
12827
- msgstr "Trimiteți la Verificatorul de Rang"
12828
 
12829
- #: view/Research/Briefcase.php:244
12830
- #, fuzzy
12831
- #| msgid "Squirrly Keyword Research"
12832
  msgid "Refresh Research"
12833
- msgstr " Cercetare cuvinte cheie"
12834
 
12835
- #: view/Research/Briefcase.php:254 view/Research/Suggested.php:131
12836
- #, fuzzy
12837
- #| msgid "Keyword"
12838
  msgid "Delete Keyword"
12839
- msgstr "Cuvant cheie:"
12840
 
12841
- #: view/Research/Briefcase.php:275
12842
- #, fuzzy
12843
- #| msgid "Optimize"
12844
  msgid "Optimized with"
12845
- msgstr "Optimizare"
12846
 
12847
- #: view/Research/Briefcase.php:314 view/Research/HistoryDetails.php:17
12848
- #: view/Research/HistoryDetails.php:19 view/Research/Research.php:203
12849
- #: view/Research/Research.php:204 view/Research/Suggested.php:32
12850
- #: view/Research/Suggested.php:33
12851
- #, fuzzy
12852
  msgid "Competition"
12853
- msgstr "Concurență"
12854
 
12855
- #: view/Research/Briefcase.php:326 view/Research/HistoryDetails.php:9
12856
- #: view/Research/Research.php:211 view/Research/Suggested.php:40
12857
- #, fuzzy
12858
  msgid "Recent discussions"
12859
  msgstr "Discuții recente"
12860
 
12861
- #: view/Research/Briefcase.php:332 view/Research/HistoryDetails.php:21
12862
- #: view/Research/Research.php:215 view/Research/Suggested.php:44
12863
  msgid "Trending"
12864
  msgstr "Tendință"
12865
 
12866
- #: view/Research/Briefcase.php:412
12867
- #, fuzzy
12868
- msgid "Welcome to Squirrly Briefcase"
12869
- msgstr "Bine ați venit la Serviciul Squirrly"
12870
 
12871
- #: view/Research/Briefcase.php:415 view/Research/History.php:59
12872
- #: view/Research/Suggested.php:153
12873
- #, fuzzy
12874
- #| msgid "Keywords"
12875
  msgid "Go Find New Keywords"
12876
- msgstr "Cuvinte cheie:"
12877
 
12878
- #: view/Research/Briefcase.php:419
12879
- #, fuzzy
12880
  msgid "Tips: How to add Keywords in Briefcase?"
12881
- msgstr "Sfaturi: Cum să adăugați cuvinte cheie în servietă?"
12882
 
12883
- #: view/Research/Briefcase.php:421
12884
- #, fuzzy, php-format
12885
  msgid "From %sKeyword Research%s send keywords to Briefcase."
12886
- msgstr "De la %sKeyword Research %s trimite cuvinte cheie la Serviciu."
 
12887
 
12888
- #: view/Research/Briefcase.php:422
12889
- #, fuzzy, php-format
12890
  msgid ""
12891
  "From Briefcase you can use the keywords in %sSquirrly Live Assistant%s to "
12892
  "optimize your pages."
12893
  msgstr ""
12894
- "Din servietă puteți utiliza cuvintele cheie din %sSquirrly Live Assistant %s "
12895
  "pentru a vă optimiza paginile."
12896
 
12897
- #: view/Research/Briefcase.php:423
12898
- #, fuzzy
12899
  msgid ""
12900
  "If you already have a list of keywords, Import the keywords usign the below "
12901
  "button."
12902
  msgstr ""
12903
- "Dacă aveți deja o listă de cuvinte cheie, importați cuvintele cheie, spuneți-"
12904
- "ne butonul de mai jos."
12905
 
12906
- #: view/Research/Briefcase.php:433
12907
- #, fuzzy
12908
  msgid "Backup/Restore Briefcase Keywords"
12909
- msgstr "Backup / Restaurare cuvinte cheie servie"
12910
 
12911
- #: view/Research/Briefcase.php:434
12912
- #, fuzzy
12913
  msgid ""
12914
  "Keep your briefcase keywords safe in case you change your domain or "
12915
  "reinstall the plugin"
12916
  msgstr ""
12917
- "Păstrați în siguranță cuvintele cheie ale dumneavoastră servie în cazul în "
12918
- "care schimbați domeniul dvs. sau reinstalați pluginul"
12919
 
12920
- #: view/Research/Briefcase.php:435
12921
- #, fuzzy, php-format
12922
  msgid "%sLearn how to import keywords into briefcase%s"
12923
- msgstr "%s Aflați cum să importați cuvintele cheie în servietă %s"
12924
 
12925
- #: view/Research/Briefcase.php:441
12926
- #, fuzzy
12927
- #| msgid "Keywords"
12928
  msgid "Download Keywords"
12929
- msgstr "Cuvinte cheie:"
12930
 
12931
- #: view/Research/Briefcase.php:444
12932
- #, fuzzy
12933
- #| msgid "Keywords"
12934
  msgid "Import Keywords"
12935
- msgstr "Importa cuvinte cheie din fisier CSV"
12936
 
12937
- #: view/Research/Briefcase.php:450
12938
- #, fuzzy
12939
  msgid "Restore Briefcase Keywords"
12940
- msgstr "Restaurați cuvinte cheie servietă"
12941
 
12942
- #: view/Research/Briefcase.php:458
12943
- #, fuzzy
12944
- #| msgid "Keywords"
12945
  msgid "Restore Keywords"
12946
- msgstr "Cuvinte cheie:"
12947
 
12948
- #: view/Research/Briefcase.php:459
12949
- #, fuzzy
12950
  msgid "Upload the file with the saved Squirrly Briefcase Keywords."
12951
- msgstr "Încărcați fișierul cu cuvintele cheie salvate de la Squirrly."
12952
 
12953
- #: view/Research/History.php:17
12954
- #, fuzzy
12955
- #| msgid "Search it:"
12956
  msgid "Research History"
12957
- msgstr "Se cauta:"
12958
 
12959
- #: view/Research/History.php:18
12960
- #, fuzzy
12961
- #| msgid "Squirrly Keyword Research"
12962
  msgid "See the Keyword Researches you made in the last 30 days"
12963
- msgstr " Cercetare cuvinte cheie"
 
12964
 
12965
- #: view/Research/History.php:31 view/Research/Research.php:201
12966
- #: view/Research/Suggested.php:30
12967
- #, fuzzy
12968
  msgid "Co"
12969
- msgstr "co"
12970
 
12971
- #: view/Research/History.php:47
12972
- #, fuzzy
12973
- #| msgid "Keywords"
12974
  msgid "Show All Keywords"
12975
- msgstr "Cuvinte cheie:"
12976
 
12977
- #: view/Research/History.php:55
12978
- #, fuzzy
12979
- #| msgid "Squirrly Keyword Research"
12980
  msgid "Welcome to Keyword Research History"
12981
- msgstr " Cercetare cuvinte cheie"
12982
 
12983
- #: view/Research/History.php:56
12984
- #, fuzzy
12985
  msgid "See your research results and compare them over time"
12986
- msgstr "Vedeți rezultatele cercetării dvs. și comparați-le în timp"
12987
-
12988
- #: view/Research/HistoryDetails.php:11 view/Research/Research.php:212
12989
- #: view/Research/Suggested.php:41
12990
- msgid "Discussion"
12991
- msgstr "Discuţie"
12992
 
12993
- #: view/Research/HistoryDetails.php:13 view/Research/Research.php:207
12994
- #: view/Research/Suggested.php:36
12995
- #, fuzzy
12996
  msgid "SEO Search Volume"
12997
  msgstr "Volumul de căutare SEO"
12998
 
12999
- #: view/Research/HistoryDetails.php:23 view/Research/Research.php:216
13000
  #: view/Research/Suggested.php:45
 
 
 
 
 
13001
  msgid "Trend"
13002
  msgstr "Trend"
13003
 
13004
- #: view/Research/HistoryDetails.php:84 view/Research/ResearchDetails.php:57
13005
- #: view/Research/Suggested.php:120
13006
- #, fuzzy
13007
  msgid "Already in briefcase"
13008
  msgstr "Deja în servietă"
13009
 
13010
- #: view/Research/HistoryDetails.php:89 view/Research/ResearchDetails.php:62
13011
- #: view/Research/Suggested.php:125
13012
- #, fuzzy
13013
  msgid "Add to briefcase"
13014
- msgstr "Adăugați la servietă"
13015
 
13016
- #: view/Research/Labels.php:19
13017
- #, fuzzy
13018
  msgid "Briefcase Labels"
13019
- msgstr "Etichete servieta"
13020
 
13021
- #: view/Research/Labels.php:20
13022
- #, fuzzy
13023
  msgid ""
13024
  "Briefcase Labels will help you sort your keywords based on your SEO "
13025
  "strategy. Labels are like categories and you can quickly filter your "
13026
  "keywords by one or more labels."
13027
  msgstr ""
13028
- "Etichetele Servietavor ajuta să sortați cuvintele dvs. cheie pe baza "
13029
- "strategiei dvs. SEO. Etichetele sunt ca niște categorii și puteți filtra "
13030
- "rapid cuvintele cheie cu una sau mai multe etichete."
13031
 
13032
- #: view/Research/Labels.php:34
13033
  msgid "Add New Label"
13034
  msgstr "Adauga etichetă noua"
13035
 
13036
- #: view/Research/Labels.php:39 view/Research/Labels.php:63
13037
  msgid "Label Name"
13038
  msgstr "Nume eticheta"
13039
 
13040
- #: view/Research/Labels.php:43 view/Research/Labels.php:67
13041
  msgid "Label Color"
13042
  msgstr "Culoare etichetă"
13043
 
13044
- #: view/Research/Labels.php:48
13045
  msgid "Add Label"
13046
  msgstr "Adaugă etichetă"
13047
 
13048
- #: view/Research/Labels.php:58 view/Research/Labels.php:127
13049
  msgid "Edit Label"
13050
  msgstr "Editare etichete"
13051
 
13052
- #: view/Research/Labels.php:73
13053
- #, fuzzy
13054
  msgid "Save Label"
13055
  msgstr "Salvați eticheta"
13056
 
13057
- #: view/Research/Labels.php:86
13058
- #, fuzzy
13059
  msgid "Ar you sure you want to delete the labels?"
13060
  msgstr "Sunteți sigur că doriți să ștergeți etichetele?"
13061
 
13062
- #: view/Research/Labels.php:96
13063
  msgid "Name"
13064
  msgstr "Nume"
13065
 
13066
- #: view/Research/Labels.php:97
13067
  msgid "Color"
13068
  msgstr "Culoare"
13069
 
13070
- #: view/Research/Labels.php:132
13071
- #, fuzzy
13072
  msgid "Delete Label"
13073
  msgstr "Ștergeți eticheta"
13074
 
13075
- #: view/Research/Labels.php:149
13076
- #, fuzzy
13077
  msgid "Welcome to Briefcase Labels"
13078
- msgstr "Bine ați venit la Etichete Servieta"
13079
 
13080
- #: view/Research/Labels.php:151
13081
- #, fuzzy
 
 
 
13082
  msgid "TIPS: How Should I Create My Labels?"
13083
- msgstr "SFATURI: Cum ar trebui îmi creez etichetele?"
13084
 
13085
- #: view/Research/Labels.php:153
13086
- #, fuzzy, php-format
13087
  msgid ""
13088
  "Click on %sAdd New Label%s button, add a label name and choose a color for "
13089
  "it."
13090
  msgstr ""
13091
- "Faceți clic pe butonul %sAdd New Label %s, adăugați un nume de etichetă și "
13092
- "alegeți o culoare pentru aceasta."
13093
 
13094
- #: view/Research/Labels.php:155
13095
- #, fuzzy
13096
  msgid "Read more details about Briefcase Labels"
13097
- msgstr "Citiți mai multe detalii despre Etichete Briefcase"
13098
 
13099
- #: view/Research/Research.php:21
13100
- #, fuzzy
13101
  msgid ""
13102
  "You can now find long-tail keywords that are easy to rank for. Get "
13103
  "personalized competition data for each keyword you research, thanks to "
13104
  "Squirrly's Market Intelligence Features."
13105
  msgstr ""
13106
- "Acum puteți găsi cuvinte cheie cu coadă lungă, ușor de clasat. Obțineți date "
13107
- "personalizate despre concurență pentru fiecare cuvânt cheie pe care îl "
13108
- "cercetați, datorită funcțiilor de informații de piață ale Squirrly."
 
13109
 
13110
- #: view/Research/Research.php:35 view/Research/Research.php:147
13111
  msgid "You've reached your Keyword Research Limit"
13112
  msgstr "Ai atins limita de Keyword Research"
13113
 
13114
- #: view/Research/Research.php:36 view/Research/Research.php:148
13115
- #, fuzzy
13116
  msgid "Check Your Account"
13117
- msgstr "Verificați-vă contul"
13118
 
13119
- #: view/Research/Research.php:39
13120
- #, fuzzy
13121
  msgid "Add a keyword to Briefcase"
13122
- msgstr "Adăugați un cuvânt cheie la Serviciu"
13123
 
13124
- #: view/Research/Research.php:43
13125
- #, fuzzy
13126
  msgid "It's best if you focus on finding Long-Tail Keywords."
13127
  msgstr ""
13128
- "Este cel mai bine dacă vă concentrați pe a găsi cuvinte cheie cu coadă lungă"
13129
 
13130
- #: view/Research/Research.php:57
13131
- #, fuzzy
13132
  msgid "Step 1/4: Enter a starting 2-3 words keyword"
13133
- msgstr "Pasul 1/4: Introduceți un cuvânt cheie de 2-3 cuvinte de pornire"
13134
 
13135
- #: view/Research/Research.php:61
13136
- #, fuzzy
13137
  msgid "Enter a keyword that matches your business"
13138
- msgstr "Introduceți un cuvânt cheie care se potrivește afacerii dvs."
13139
 
13140
- #: view/Research/Research.php:65
13141
- #, fuzzy
13142
  msgid "Focus on finding Long Tail Keywords."
13143
- msgstr "Concentrați-vă pe găsirea cuvintelor cheie cu coadă lungă."
13144
 
13145
- #: view/Research/Research.php:66
13146
- #, fuzzy
13147
  msgid "You need to enter a keyword first"
13148
- msgstr "Mai întâi trebuie să introduceți un cuvânt cheie"
13149
 
13150
- #: view/Research/Research.php:72 view/Research/Research.php:104
13151
  msgid "Next"
13152
  msgstr "Următor"
13153
 
13154
- #: view/Research/Research.php:78
13155
- #, fuzzy
13156
  msgid "Step 2/4: Choose a country for your keyword research"
13157
- msgstr "Pasul 2/4: alegeți o țară pentru cercetarea dvs. în cuvinte cheie"
13158
 
13159
- #: view/Research/Research.php:82
13160
  msgid "Select country"
13161
  msgstr "Selectați Țara"
13162
 
13163
- #: view/Research/Research.php:87
13164
- #, fuzzy
13165
- #| msgid "Search"
13166
  msgid "Global Search"
13167
- msgstr "Caută"
13168
 
13169
- #: view/Research/Research.php:96
13170
- #, fuzzy
13171
  msgid ""
13172
  "For local SEO you need to select the Country where you run your business"
13173
  msgstr ""
13174
- "Pentru SEO local, trebuie să selectați Țara în care vă conduceți afacerea"
13175
 
13176
- #: view/Research/Research.php:101 view/Research/Research.php:154
13177
- #: view/Research/Research.php:229
13178
  msgid "Start Over"
13179
  msgstr "Reia de la început"
13180
 
13181
- #: view/Research/Research.php:109
13182
- #, fuzzy
13183
  msgid "Step 3/4: Select similar keywords from below"
13184
- msgstr "Pasul 3/4: selectați cuvinte cheie similare de jos"
13185
 
13186
- #: view/Research/Research.php:110
13187
- #, fuzzy
13188
- #| msgid "We could not find similar keywords. %sClick on \"Do research\""
13189
  msgid "Select up to 3 similar keywords and start the research"
13190
- msgstr ""
13191
- "Squirrly nu a putut gasi rezultate asemanatoare. %sClick on \"Do research\""
13192
 
13193
- #: view/Research/Research.php:150
13194
- #, fuzzy, php-format
13195
- #| msgid "We could not find similar keywords. %sClick on \"Do research\""
13196
  msgid "We could not find similar keywords. %sClick on 'Do research'"
13197
  msgstr ""
13198
  "Squirrly nu a putut gasi rezultate asemanatoare. %sClick on \"Do research\""
13199
 
13200
- #: view/Research/Research.php:160 view/Research/Research.php:170
13201
- #, fuzzy
13202
- #| msgid "Do a research"
13203
  msgid "Do research"
13204
- msgstr "Mai multe detalii"
13205
 
13206
- #: view/Research/Research.php:163
13207
- #, fuzzy
13208
- #| msgid "Do a research"
13209
  msgid "Do research (up to 20 results)"
13210
- msgstr "Mai multe detalii"
13211
 
13212
- #: view/Research/Research.php:164
13213
- #, fuzzy
13214
- #| msgid "Do a research"
13215
  msgid "Do a deep research (up to 50 results)"
13216
- msgstr "Mai multe detalii"
13217
 
13218
- #: view/Research/Research.php:178
13219
- #, fuzzy
13220
  msgid ""
13221
  "Keyword Research in progress. We're doing all of this in real-time. Data is "
13222
  "fresh."
13223
  msgstr ""
13224
- "Cuvinte cheie Cercetări în curs. Facem toate acestea în timp real. Datele "
13225
- "sunt proaspete."
13226
 
13227
- #: view/Research/Research.php:179
13228
- #, fuzzy
13229
  msgid "We're now finding 10 alternatives for each keyword you selected."
13230
- msgstr "Acum găsim 10 alternative pentru fiecare cuvânt cheie selectat."
 
13231
 
13232
- #: view/Research/Research.php:180
13233
- #, fuzzy
13234
  msgid ""
13235
  "For each alternative, we are looking at the top 10 pages ranked on Google "
13236
  "for that keyword."
13237
  msgstr ""
13238
- "Pentru fiecare alternativă, ne uităm la primele 10 pagini clasate pe Google "
13239
- "pentru acest cuvânt cheie."
13240
 
13241
- #: view/Research/Research.php:181
13242
- #, fuzzy
13243
  msgid ""
13244
  "We are now measuring the web authority of each competing page and comparing "
13245
  "it to yours."
13246
  msgstr ""
13247
- "Acum măsurăm autoritatea web a fiecărei pagini concurente și o comparăm cu a "
13248
- "ta."
13249
 
13250
- #: view/Research/Research.php:182
13251
- #, fuzzy
13252
  msgid "Looking at the monthly search volume for each keyword."
13253
- msgstr "Analizând volumul lunar de căutare pentru fiecare cuvânt cheie."
13254
 
13255
- #: view/Research/Research.php:183
13256
- #, fuzzy
13257
  msgid "Analyzing the last 30 days of Google trends for each keyword."
13258
  msgstr ""
13259
- "Analizând ultimele 30 de zile ale tendințelor Google pentru fiecare cuvânt "
13260
- "cheie."
13261
 
13262
- #: view/Research/Research.php:184
13263
- #, fuzzy
13264
  msgid ""
13265
  "Seeing how many discussions there are on forums and Twitter for each keyword."
13266
  msgstr ""
13267
- "Văzând câte discuții există pe forumuri și Twitter pentru fiecare cuvânt "
13268
- "cheie."
13269
 
13270
- #: view/Research/Research.php:185
13271
- #, fuzzy
13272
  msgid ""
13273
  "Piecing all the keywords together now after analyzing each individual "
13274
  "keyword."
13275
  msgstr ""
13276
- "Împărțirea tuturor cuvintelor cheie acum după analizarea fiecărui cuvânt "
13277
- "cheie individual"
13278
 
13279
- #: view/Research/Research.php:186
13280
- #, fuzzy
13281
  msgid "Preparing the results."
13282
  msgstr "Pregătirea rezultatelor."
13283
 
13284
- #: view/Research/Research.php:192
13285
- #, fuzzy
13286
- #| msgid "We could not find relevant keywords for you"
 
 
 
 
 
 
13287
  msgid "Step 4/4: We found some relevant keywords for you"
13288
- msgstr "Squirrly nu a putut gasi rezultate pentru"
 
13289
 
13290
- #: view/Research/Research.php:193
13291
- #, fuzzy, php-format
13292
  msgid ""
13293
  "Still processing. give it a bit more time, then go to %sResearch History%s. "
13294
  "Results will appear there."
13295
  msgstr ""
13296
- "Încă se procesează. acordați-i un pic mai mult timp, apoi mergeți la "
13297
- "%sRecizare Istoric %s. Rezultatele vor apărea acolo."
13298
 
13299
- #: view/Research/Research.php:194
13300
- #, fuzzy
13301
- #| msgid "We could not find relevant keywords for you"
13302
  msgid "Step 4/4: We could not find relevant keywords for you"
13303
- msgstr "Squirrly nu a putut gasi rezultate pentru"
13304
 
13305
- #: view/Research/Research.php:244
13306
- #, fuzzy
13307
  msgid "How to Find Amazing Keywords and get more search traffic?"
13308
  msgstr ""
13309
  "Cum să găsiți cuvinte cheie uimitoare și să obțineți mai mult trafic de "
13310
  "căutare?"
13311
 
13312
- #: view/Research/Research.php:258
13313
  msgid "Already Have Keywords?"
13314
  msgstr "Ai deja Cuvinte Cheie?"
13315
 
13316
- #: view/Research/Research.php:261
13317
  msgid "Import Keywords From CSV"
13318
  msgstr "Importa cuvinte cheie din fisier CSV"
13319
 
13320
  #: view/Research/Suggested.php:16
13321
- #, fuzzy
13322
- #| msgid "Keywords"
13323
  msgid "Suggested Keywords"
13324
- msgstr "Cuvinte cheie:"
13325
 
13326
- #: view/Research/Suggested.php:147
13327
- #, fuzzy
13328
  msgid "Welcome to Suggested Keywords"
13329
- msgstr "Bine ați venit la Cuvinte cheie sugerate"
13330
 
13331
- #: view/Research/Suggested.php:148
13332
- #, fuzzy
13333
  msgid "Once a week, Squirrly checks all the keywords from your briefcase."
13334
  msgstr ""
13335
- "O dată pe săptămână, Squirrly verifică toate cuvintele cheie din servietă."
 
13336
 
13337
- #: view/Research/Suggested.php:149
13338
- #, fuzzy
13339
  msgid "If it finds better keywords, they will be listed here"
13340
- msgstr "Dacă găsește cuvinte cheie mai bune, acestea vor fi enumerate aici"
13341
 
13342
- #: view/Research/Suggested.php:150
13343
- #, fuzzy
13344
  msgid "Until then, add keywords in Briefcase"
13345
- msgstr "Până atunci, adăugați cuvinte cheie în servietă"
13346
 
13347
  #: view/SeoSettings/Advanced.php:26
13348
  msgid "Advanced Settings"
13349
  msgstr "Configurări Avansate"
13350
 
13351
- #: view/SeoSettings/Advanced.php:40
13352
- #, fuzzy
13353
- #| msgid "Squirrly settings"
13354
  msgid "Load Squirrly Frontend CSS"
13355
- msgstr "Setari Squirrly"
13356
 
13357
- #: view/SeoSettings/Advanced.php:41
13358
- #, fuzzy
13359
  msgid ""
13360
  "Load Squirrly SEO CSS for Twitter and Article inserted from Squirrly "
13361
  "Blogging Assistant."
13362
  msgstr ""
13363
- "Încărcați Squirrly SEO CSS pentru Twitter și articol inserat de la Squirrly "
13364
  "Blogging Assistant."
13365
 
13366
- #: view/SeoSettings/Advanced.php:51
13367
- #, fuzzy
13368
  msgid "Minify Squirrly SEO Metas"
13369
- msgstr "Asistent SEO Live"
13370
 
13371
- #: view/SeoSettings/Advanced.php:52
13372
- #, fuzzy
13373
  msgid "Minify the metas in source code to optimize the page loading."
13374
  msgstr ""
13375
- "Minimizați metasele din codul sursă pentru a optimiza încărcarea paginii."
13376
 
13377
- #: view/SeoSettings/Advanced.php:53
13378
- #, fuzzy
13379
  msgid "Remove comments and newlines from Squirrly SEO Metas."
13380
- msgstr "Eliminați comentarii și linii noi din metale SEO Squirrly."
13381
 
13382
- #: view/SeoSettings/Advanced.php:64
13383
- #, fuzzy
13384
- #| msgid "Squirrly SEO Editor"
13385
  msgid "Squirrly SEO Late Buffer"
13386
- msgstr "Editor Squirrly SEO"
13387
 
13388
- #: view/SeoSettings/Advanced.php:65
13389
- #, fuzzy
13390
  msgid "Wait all plugins to load before loading Squirrly SEO frontend buffer."
13391
  msgstr ""
13392
- "Așteptați să se încarce toate plug-urile înainte de a încărca bufferul "
13393
- "frontend SEO Squirrly."
13394
 
13395
- #: view/SeoSettings/Advanced.php:66
13396
- #, fuzzy
13397
  msgid "For compatibility with some Cache and CDN plugins."
13398
- msgstr "Pentru compatibilitate cu unele pluginuri Cache și CDN."
13399
 
13400
- #: view/SeoSettings/Advanced.php:78
13401
- #, fuzzy
13402
  msgid "Delete Squirrly SEO Table on Uninstall"
13403
- msgstr "Ștergeți Squirrly Table pe Dezinstalare"
13404
 
13405
- #: view/SeoSettings/Advanced.php:79
13406
- #, fuzzy
13407
  msgid "Delete Squirrly SEO table and options on uninstall."
13408
- msgstr "Ștergeți tabelul SEO Squirrly și opțiunile de pe dezinstalare."
13409
 
13410
  #: view/SeoSettings/Automation.php:27
13411
- #, fuzzy
13412
- #| msgid "Automation"
13413
  msgid "SEO Automation - Patterns"
13414
- msgstr "Automatizare"
13415
 
13416
- #: view/SeoSettings/Automation.php:29
13417
- #, fuzzy
13418
  msgid ""
13419
  "Control how post types are displayed on your site, within search engine "
13420
  "results, and social media feeds."
13421
  msgstr ""
13422
- "Controlați cum sunt afișate tipurile de postare pe site-ul dvs., în "
13423
- "rezultatele motorului de căutare și în fluxurile de social media"
13424
 
13425
- #: view/SeoSettings/Automation.php:38 view/SeoSettings/Automation.php:309
13426
- #, fuzzy
13427
  msgid "Activate Patterns"
13428
- msgstr "Activează tiparele"
13429
 
13430
- #: view/SeoSettings/Automation.php:79
13431
- #, fuzzy
13432
  msgid "Add Post Type for SEO Automation"
13433
- msgstr "Adăugați tip de post pentru automatizare SEO"
13434
 
13435
- #: view/SeoSettings/Automation.php:86 view/SeoSettings/Automation.php:99
13436
- #, fuzzy
13437
  msgid "Add Post Type"
13438
- msgstr "Adăugați tipul de postare"
13439
 
13440
- #: view/SeoSettings/Automation.php:88
13441
- #, fuzzy
13442
  msgid "Add new post types in the list and customize the automation for it."
13443
  msgstr ""
13444
- "Adăugați noi tipuri de post în listă și personalizați automatizarea pentru "
13445
- "aceasta."
13446
 
13447
- #: view/SeoSettings/Automation.php:108
13448
- #, fuzzy
13449
- msgid "Customize the automation for each post type"
13450
- msgstr "Personalizați automatizarea pentru fiecare tip de post"
13451
 
13452
- #: view/SeoSettings/Automation.php:140
13453
  msgid "Tips: Length 10-75 chars"
13454
  msgstr "Atentie: Lungimea 10-75 caractere"
13455
 
13456
- #: view/SeoSettings/Automation.php:149
13457
  msgid "Tips: Length 70-320 chars"
13458
  msgstr "Atentie: Lungimea 70-320 caractere"
13459
 
13460
- #: view/SeoSettings/Automation.php:158
13461
  msgid "Separator"
13462
  msgstr "Separator"
13463
 
13464
- #: view/SeoSettings/Automation.php:159
13465
- #, fuzzy
13466
  msgid ""
13467
  "Use separator to help user read the most relevant part of your title and "
13468
  "increase Conversion Rate"
13469
  msgstr ""
13470
- "Utilizați separatorul pentru a ajuta utilizatorul să citească partea cea mai "
13471
- "relevantă a titlului dvs. și crească Rata de conversie"
13472
 
13473
- #: view/SeoSettings/Automation.php:198
13474
- #, fuzzy
13475
  msgid "Let Google Index it"
13476
- msgstr "Lăsați-l pe Google să îl indexeze"
13477
 
13478
- #: view/SeoSettings/Automation.php:199
13479
- #, fuzzy
13480
  msgid ""
13481
  "If you switch off this option, Squirrly will add noindex meta for this post "
13482
  "type."
13483
  msgstr ""
13484
- "Dacă dezactivați această opțiune, Squirrly va adăuga noindex meta pentru "
13485
  "acest tip de post."
13486
 
13487
- #: view/SeoSettings/Automation.php:225
13488
- #, fuzzy
13489
  msgid "Send Authority to it"
13490
- msgstr "Trimiteți autoritatea"
13491
 
13492
- #: view/SeoSettings/Automation.php:226
13493
- #, fuzzy
13494
  msgid ""
13495
  "If you sq-switch off this option, Squirrly will add nofollow meta for this "
13496
  "post type."
13497
  msgstr ""
13498
- "Dacă dezactivați această opțiune, Squirrly va adăuga nofollow meta pentru "
13499
  "acest tip de post."
13500
 
13501
- #: view/SeoSettings/Automation.php:244
13502
- #, fuzzy
13503
  msgid "Include In Sitemap"
13504
  msgstr "Includeți în Sitemap"
13505
 
13506
- #: view/SeoSettings/Automation.php:245
13507
- #, fuzzy
13508
  msgid "Let Squirrly SEO include this post type in Squirrly Sitemap XML."
13509
  msgstr ""
13510
- "Lasă Squirrly SEO să includă acest tip de post în Squirrly Sitemap XML."
 
13511
 
13512
- #: view/SeoSettings/Automation.php:246
13513
- #, fuzzy
13514
  msgid ""
13515
  "If you switch off this option, Squirrly will not load the Sitemap for this "
13516
  "post type."
13517
  msgstr ""
13518
- "Dacă dezactivați această opțiune, Squirrly va adăuga noindex meta pentru "
13519
  "acest tip de post."
13520
 
13521
- #: view/SeoSettings/Automation.php:261 view/SeoSettings/Links.php:121
13522
- #, fuzzy
13523
  msgid "Redirect Broken URLs"
13524
- msgstr "Redirecționați adresele URL sparte"
13525
 
13526
- #: view/SeoSettings/Automation.php:262
13527
- #, fuzzy
13528
  msgid ""
13529
  "Redirect the 404 URL in case it is changed with a new one in Post Editor."
13530
  msgstr ""
13531
- "Redirecționați URL-ul stricat în cazul în care acesta este schimbat cu unul "
13532
- "nou în Post Editor."
13533
 
13534
- #: view/SeoSettings/Automation.php:273 view/SeoSettings/Links.php:61
13535
- #, fuzzy
13536
  msgid "Redirect Attachments Page"
13537
- msgstr "Redirecționează pagina atașamentelor"
13538
 
13539
- #: view/SeoSettings/Automation.php:274 view/SeoSettings/Links.php:62
13540
- #, fuzzy
13541
  msgid "Redirect the attachment page to its image URL."
13542
- msgstr "Redirecționați pagina atașamentului către adresa URL a imaginii."
13543
 
13544
- #: view/SeoSettings/Automation.php:275 view/SeoSettings/Links.php:63
13545
- #, fuzzy
13546
  msgid "Recommended if your website is not a photography website."
13547
- msgstr "Recomandat dacă site-ul dvs. web nu este un site de fotografie."
13548
 
13549
- #: view/SeoSettings/Automation.php:297
13550
- #, fuzzy
13551
  msgid "Load Squirrly SEO METAs"
13552
- msgstr "Asistent SEO Live"
13553
 
13554
- #: view/SeoSettings/Automation.php:298
13555
- #, fuzzy
13556
  msgid ""
13557
  "Let Squirrly SEO load the Title, Description, Keyword METAs for this post "
13558
  "type."
13559
  msgstr ""
13560
- "Permiteți Squirrly SEO să încarce META-urile pentru titlu, descriere și "
13561
- "cuvinte cheie pentru acest tip de post."
13562
 
13563
- #: view/SeoSettings/Automation.php:316
13564
- #, fuzzy
13565
- #| msgid "Squirrly settings"
13566
  msgid "Load Squirrly Patterns"
13567
- msgstr "Setari Squirrly"
13568
 
13569
- #: view/SeoSettings/Automation.php:317
13570
- #, fuzzy
13571
  msgid "Let Squirrly SEO load the Patterns for this post type."
13572
- msgstr "Permiteți Squirrly SEO să încarce tiparele pentru acest tip de post."
13573
 
13574
- #: view/SeoSettings/Automation.php:328
13575
- #, fuzzy
13576
  msgid "Activate Json-Ld"
13577
- msgstr "Activați Json-Ld"
13578
 
13579
- #: view/SeoSettings/Automation.php:335
13580
- #, fuzzy
13581
  msgid "Load JSON-LD Structured Data"
13582
  msgstr "Încărcați date structurate JSON-LD"
13583
 
13584
- #: view/SeoSettings/Automation.php:336
13585
- #, fuzzy
13586
  msgid "Let Squirrly SEO load the JSON-LD Schema for this post type."
13587
  msgstr ""
13588
- "Permiteți Squirrly SEO să încarce JSON-LD META pentru acest tip de post."
13589
 
13590
- #: view/SeoSettings/Automation.php:341
13591
- #, fuzzy
13592
  msgid "JSON-LD Type"
13593
- msgstr "Cod JSON-LD"
13594
 
13595
- #: view/SeoSettings/Automation.php:379 view/SeoSettings/Automation.php:430
13596
- #, fuzzy
13597
  msgid "Activate Social Media"
13598
  msgstr "Activați Social Media"
13599
 
13600
- #: view/SeoSettings/Automation.php:393
13601
- #, fuzzy
13602
  msgid "Load Squirrly Open Graph"
13603
- msgstr "Încărcați Graficul Squirrly Open"
13604
 
13605
- #: view/SeoSettings/Automation.php:394
13606
- #, fuzzy
13607
  msgid "Let Squirrly SEO load the Open Graph for this post type."
13608
- msgstr ""
13609
- "Lasă Squirrly SEO să încarce graficul deschis pentru acest tip de post."
13610
 
13611
- #: view/SeoSettings/Automation.php:399
13612
- #, fuzzy
13613
  msgid "Open Graph Type"
13614
- msgstr "Deschideți grafic"
13615
 
13616
- #: view/SeoSettings/Automation.php:400
13617
- #, fuzzy
13618
  msgid "Select which Open Graph type to load for this post type."
13619
- msgstr "Selectați ce tip Open Graph să se încarce pentru acest tip de post."
 
13620
 
13621
- #: view/SeoSettings/Automation.php:444
13622
- #, fuzzy
13623
  msgid "Load Squirrly Twitter Card"
13624
- msgstr "Încărcați cartonașul Twitter Squirrly"
13625
 
13626
- #: view/SeoSettings/Automation.php:445
13627
- #, fuzzy
13628
  msgid "Let Squirrly SEO load the Twitter Card for this post type."
13629
  msgstr ""
13630
- "Lăsați Squirrly SEO să încarce cardul Twitter pentru acest tip de post."
13631
 
13632
- #: view/SeoSettings/Automation.php:460 view/SeoSettings/Automation.php:479
13633
- #: view/SeoSettings/Tracking.php:33
13634
- #, fuzzy
13635
  msgid "Activate Trackers"
13636
- msgstr "Activați următorii"
13637
 
13638
- #: view/SeoSettings/Automation.php:467
13639
  msgid "Load Google Analytics Tracking Script"
13640
  msgstr "Incarca codul pentru Google Analytics"
13641
 
13642
- #: view/SeoSettings/Automation.php:468
13643
- #, fuzzy
13644
  msgid "Let Google Analytics Tracking to load for this post type."
13645
  msgstr ""
13646
- "Permiteți urmărirea Google Analytics să se încarce pentru acest tip de "
13647
- "postare."
13648
 
13649
- #: view/SeoSettings/Automation.php:486
13650
- #, fuzzy
13651
  msgid "Load Facebook Pixel Tracking Script"
13652
- msgstr "Încărcați scriptul de urmărire a pixelilor Facebook"
13653
 
13654
- #: view/SeoSettings/Automation.php:487
13655
- #, fuzzy
13656
  msgid "Let Facebook Pixel Tracking to load for this post type."
13657
- msgstr "Permiteți încărcarea Facebook Pixel Tracking pentru acest tip de post."
 
13658
 
13659
- #: view/SeoSettings/Automation.php:497
13660
- #, fuzzy, php-format
13661
  msgid "Do you want to delete the automation for %s?"
13662
  msgstr "Doriți să ștergeți automatizarea pentru %s?"
13663
 
13664
- #: view/SeoSettings/Automation.php:497
13665
- #, fuzzy, php-format
13666
  msgid "Remove automation for %s"
13667
- msgstr "Eliminați automatizarea pentru %s"
13668
 
13669
- #: view/SeoSettings/Automation.php:525
13670
- #, fuzzy
13671
- #| msgid "Squirrly settings"
13672
  msgid "Squirrly Patterns"
13673
- msgstr "Setari Squirrly"
13674
 
13675
- #: view/SeoSettings/Automation.php:528
13676
- #, fuzzy
13677
  msgid ""
13678
  "Use the Pattern system to prevent Title and Description duplicates between "
13679
  "posts"
13680
  msgstr ""
13681
- "Utilizați sistemul Pattern pentru a preveni duplicarea titlului și "
13682
- "descrierii între postări"
13683
 
13684
- #: view/SeoSettings/Automation.php:534
13685
- #, fuzzy
13686
  msgid ""
13687
  "Patterns change the codes like {{title}} with the actual value of the post "
13688
  "Title."
13689
  msgstr ""
13690
- "Tiparele schimbă codurile precum {{title}} cu valoarea reală a postului "
13691
- "Titlu."
13692
 
13693
- #: view/SeoSettings/Automation.php:535
13694
- #, fuzzy
13695
  msgid ""
13696
  "In Squirrly, each post type in your site comes with a predefined posting "
13697
  "pattern when displayed onto your website. However, based on your site's "
13698
  "purpose and needs, you can also decide what information these patterns will "
13699
  "include."
13700
  msgstr ""
13701
- "În Squirrly, fiecare tip de postare pe site-ul dvs. este livrat cu un model "
13702
- "de postare predefinit atunci când este afișat pe site-ul dvs. web. Cu toate "
13703
- "acestea, pe baza scopului și nevoilor site-ului dvs., puteți decide, de "
13704
- "asemenea, ce informații vor include aceste tipare."
13705
 
13706
- #: view/SeoSettings/Automation.php:536
13707
- #, fuzzy
13708
  msgid ""
13709
  "Once you set up a pattern for a particular post type, only the content "
13710
  "required by your custom sequence will be displayed."
13711
  msgstr ""
13712
- "După ce ați configurat un model pentru un anumit tip de post, va fi afișat "
13713
- "doar conținutul solicitat de secvența dvs. personalizată."
13714
 
13715
- #: view/SeoSettings/Automation.php:537
13716
- #, fuzzy, php-format
13717
  msgid ""
13718
  "Squirrly lets you see how the customized patterns will apply when posts/"
13719
  "pages are shared across social media or search engine feeds. You just need "
13720
  "to go to the %sBulk SEO%s and see the meta information for each post type."
13721
  msgstr ""
13722
  "Squirrly vă permite să vedeți cum se vor aplica modelele personalizate "
13723
- "atunci când postările / paginile sunt partajate pe rețelele de socializare "
13724
- "sau în fluxurile de motoare de căutare. Trebuie doar să accesați %sBulk SEO "
13725
- "%s și să vedeți informațiile meta pentru fiecare tip de postare."
13726
 
13727
- #: view/SeoSettings/Automation.php:544
13728
- #, fuzzy
13729
  msgid "META Lengths"
13730
  msgstr "Lungimi META"
13731
 
13732
- #: view/SeoSettings/Automation.php:547
13733
- #, fuzzy
13734
  msgid "Change the lengths for each META on automation"
13735
- msgstr "Modificați lungimile pentru fiecare META la automatizare"
13736
 
13737
- #: view/SeoSettings/Automation.php:553 view/SeoSettings/Metas.php:200
13738
  msgid "Title Length"
13739
  msgstr "Lungime titlu"
13740
 
13741
- #: view/SeoSettings/Automation.php:561 view/SeoSettings/Metas.php:208
13742
  msgid "Description Length"
13743
  msgstr "Lungime descriere"
13744
 
13745
- #: view/SeoSettings/Automation.php:569 view/SeoSettings/Social.php:375
13746
- #, fuzzy
13747
  msgid "Open Graph Title Length"
13748
- msgstr "Deschideți lungimea titlului graficului"
13749
 
13750
- #: view/SeoSettings/Automation.php:577 view/SeoSettings/Social.php:383
13751
- #, fuzzy
13752
  msgid "Open Graph Description Length"
13753
- msgstr "Deschideți grafic Descriere Lungime"
13754
 
13755
- #: view/SeoSettings/Automation.php:585 view/SeoSettings/Social.php:391
13756
- #, fuzzy
13757
  msgid "Twitter Card Title Length"
13758
- msgstr "Lungimea titlului cardului Twitter"
13759
 
13760
- #: view/SeoSettings/Automation.php:593 view/SeoSettings/Social.php:399
13761
- #, fuzzy
13762
  msgid "Twitter Card Description Length"
13763
- msgstr "Lungime descriere card Twitter"
13764
 
13765
- #: view/SeoSettings/Automation.php:601 view/SeoSettings/Jsonld.php:400
13766
- #, fuzzy
13767
  msgid "JSON-LD Title Length"
13768
- msgstr "Lungimea titlului JSON-LD"
13769
 
13770
- #: view/SeoSettings/Automation.php:609 view/SeoSettings/Jsonld.php:408
13771
- #, fuzzy
13772
  msgid "JSON-LD Description Length"
13773
- msgstr "JSON-LD Lungime descriere"
13774
 
13775
  #: view/SeoSettings/Backup.php:8 view/SeoSettings/Jsonld.php:8
13776
- #, fuzzy
13777
  msgid ""
13778
  "You do not have permission to access this page. You need Squirrly SEO Admin "
13779
  "role"
13780
  msgstr ""
13781
- "Nu aveți permisiunea de a accesa această pagină. Ai nevoie de Squirrly SEO "
13782
- "Administrator"
13783
 
13784
  #: view/SeoSettings/Backup.php:24
13785
- #, fuzzy
13786
  msgid "Import Settings & SEO"
13787
- msgstr "Importați setări și SEO"
13788
 
13789
- #: view/SeoSettings/Backup.php:26
13790
- #, fuzzy
13791
  msgid ""
13792
  "Import the settings and SEO from other plugins so you can use only Squirrly "
13793
  "SEO for on-page SEO."
13794
  msgstr ""
13795
- "Importați setările și SEO din alte pluginuri, astfel încât să puteți utiliza "
13796
- "doar SEO Squirrly pentru SEO pe pagina."
13797
 
13798
- #: view/SeoSettings/Backup.php:27
13799
- #, fuzzy
13800
  msgid ""
13801
  "Note! If you import the SEO settings from other plugins or themes, you will "
13802
  "lose all the settings that you had in Squirrly SEO. Make sure you backup "
13803
  "your settings from the panel below before you do this."
13804
  msgstr ""
13805
  "Notă! Dacă importați setările SEO din alte pluginuri sau teme, veți pierde "
13806
- "toate setările pe care le-ați avut în Squirrly SEO. Asigurați-vă că faceți "
13807
- "backup pentru setările de pe panoul de mai jos înainte de a face acest lucru."
 
13808
 
13809
- #: view/SeoSettings/Backup.php:44
13810
- #, fuzzy
13811
  msgid "Import Settings From"
13812
- msgstr "Importați setări din"
13813
 
13814
- #: view/SeoSettings/Backup.php:45
13815
- #, fuzzy
13816
  msgid "Select the plugin or theme you want to import the Settings from."
13817
- msgstr "Selectați pluginul sau tema din care doriți să importați Setările."
13818
-
13819
- #: view/SeoSettings/Backup.php:46
13820
- #, fuzzy
13821
- msgid "Note! It will overwrite the settings you set in Squirrly SEO."
13822
- msgstr "Descărcați toate setările de pe Squirrly SEO."
13823
 
13824
- #: view/SeoSettings/Backup.php:62
13825
  msgid "Import Settings"
13826
  msgstr "Importă setări"
13827
 
13828
- #: view/SeoSettings/Backup.php:73
13829
- #, fuzzy
 
 
 
 
13830
  msgid "Import SEO From"
13831
- msgstr "Importa SEO din"
13832
 
13833
- #: view/SeoSettings/Backup.php:74
13834
- #, fuzzy
13835
- msgid "Select the plugin or theme you want to import the SEO settings from."
13836
- msgstr "Selectați pluginul sau tema din care doriți să importați setările SEO."
13837
 
13838
- #: view/SeoSettings/Backup.php:75
13839
- #, fuzzy
13840
- msgid ""
13841
- "Note! It will import only the SEO for the pages that were not yet optimized "
13842
- "with Squirrly SEO."
13843
- msgstr "Restaurați setările și toate paginile optimizate cu Squirrly SEO."
13844
 
13845
- #: view/SeoSettings/Backup.php:102
13846
- #, fuzzy
13847
  msgid "Backup Settings & SEO"
13848
- msgstr "Setări de rezervă și SEO"
13849
 
13850
- #: view/SeoSettings/Backup.php:104
13851
- #, fuzzy
13852
  msgid ""
13853
  "You can now download your Squirrly settings in an sql file before you go "
13854
  "ahead and import the SEO settings from another plugin. That way, you can "
13855
  "always go back to your Squirrly settings."
13856
  msgstr ""
13857
  "Acum puteți descărca setările Squirrly într-un fișier sql înainte de a "
13858
- "continua și importa setările SEO dintr-un alt plugin. În acest fel, puteți "
13859
- "întotdeauna întoarceți la setările Squirrly."
13860
 
13861
- #: view/SeoSettings/Backup.php:111
13862
  msgid "Backup Settings"
13863
  msgstr "Setări salvare"
13864
 
13865
- #: view/SeoSettings/Backup.php:112
13866
- #, fuzzy
13867
  msgid "Download all the settings from Squirrly SEO."
13868
- msgstr "Descărcați toate setările de pe Squirrly SEO."
13869
 
13870
- #: view/SeoSettings/Backup.php:117
13871
- #, fuzzy
13872
  msgid "Download Backup"
13873
  msgstr "Descărcați Backup"
13874
 
13875
- #: view/SeoSettings/Backup.php:125
13876
- #, fuzzy
13877
  msgid "Backup SEO"
13878
  msgstr "Backup SEO"
13879
 
13880
- #: view/SeoSettings/Backup.php:126
13881
  msgid "Download all the Squirrly SEO Snippet optimizations."
13882
  msgstr "Descarca toate optimizarile pentru Squirrly SEO Snippet."
13883
 
13884
- #: view/SeoSettings/Backup.php:131
13885
- #, fuzzy
13886
  msgid "Download Backup"
13887
  msgstr "Descărcați Backup"
13888
 
13889
- #: view/SeoSettings/Backup.php:139
13890
- #, fuzzy
 
 
 
 
 
 
 
13891
  msgid "Restore Settings & SEO"
13892
  msgstr "Restaurați setările și SEO"
13893
 
13894
- #: view/SeoSettings/Backup.php:141
13895
- #, fuzzy
13896
  msgid "Restore the settings and all the pages optimized with Squirrly SEO."
13897
  msgstr "Restaurați setările și toate paginile optimizate cu Squirrly SEO."
13898
 
13899
- #: view/SeoSettings/Backup.php:148 view/SeoSettings/Backup.php:157
13900
- #, fuzzy
13901
  msgid "Restore Settings"
13902
  msgstr "Restaurați setările"
13903
 
13904
- #: view/SeoSettings/Backup.php:149
13905
- #, fuzzy
13906
  msgid "Upload the file with the saved Squirrly Settings."
13907
- msgstr "Încărcați fișierul cu Setările Squirrly salvate."
13908
 
13909
- #: view/SeoSettings/Backup.php:165 view/SeoSettings/Backup.php:174
13910
- #, fuzzy
13911
  msgid "Restore SEO"
13912
  msgstr "Restaurați SEO"
13913
 
13914
- #: view/SeoSettings/Backup.php:166
13915
- #, fuzzy
13916
  msgid "Upload the file with the saved Squirrly SEO SQL file."
13917
- msgstr "Încărcați fișierul cu fișierul SQL Squirrly SEO salvat."
13918
 
13919
- #: view/SeoSettings/Backup.php:181
13920
- #, fuzzy
 
 
 
13921
  msgid "Rollback Plugin"
13922
- msgstr "Plugin rollback"
13923
 
13924
- #: view/SeoSettings/Backup.php:183
13925
- #, fuzzy
13926
  msgid "You can rollback Squirrly SEO plugin to the last stable version."
13927
- msgstr "Puteți derula pluginul SEO Squirrly la ultima versiune stabilă."
13928
 
13929
- #: view/SeoSettings/Backup.php:190
13930
- #, fuzzy
13931
- msgid "Rollback to"
13932
- msgstr "Rollback la"
13933
 
13934
- #: view/SeoSettings/Backup.php:191
13935
- #, fuzzy
13936
  msgid "Install the last stable version of the plugin."
13937
- msgstr "Instalați ultima versiune stabilă a pluginului."
13938
 
13939
- #: view/SeoSettings/Backup.php:196
13940
- #, fuzzy
13941
- #| msgid "Squirrly"
13942
  msgid "Install Squirrly SEO"
13943
- msgstr "Squirrly"
13944
 
13945
- #: view/SeoSettings/Backup.php:205
13946
- msgid "Reinstall"
13947
- msgstr ""
13948
 
13949
- #: view/SeoSettings/Backup.php:206
13950
- #, fuzzy
13951
  msgid "Reinstall the current version of the plugin."
13952
- msgstr "Instalați ultima versiune stabilă a pluginului."
13953
-
13954
- #: view/SeoSettings/Backup.php:211
13955
- #, fuzzy
13956
- #| msgid "Squirrly"
13957
- msgid "Reinstall Squirrly SEO"
13958
- msgstr "Squirrly"
13959
 
13960
  #: view/SeoSettings/Favicon.php:28
13961
- #, fuzzy
13962
- #| msgid "Change the Website Icon"
13963
  msgid "Website Icon"
13964
- msgstr "Schimba icoana site-ului"
13965
 
13966
- #: view/SeoSettings/Favicon.php:30
13967
- #, fuzzy
13968
  msgid ""
13969
  "Add your website icon in the browser tabs and on other devices like iPhone, "
13970
  "iPad and Android phones."
13971
  msgstr ""
13972
- "Adăugați pictograma site-ului dvs. web în filele browserului și pe alte "
13973
- "dispozitive, cum ar fi iPhone, iPad și telefoane Android."
13974
 
13975
- #: view/SeoSettings/Favicon.php:36
13976
- #, fuzzy
13977
  msgid "Activate Favicon"
13978
  msgstr "Activați Favicon"
13979
 
13980
- #: view/SeoSettings/Favicon.php:56
13981
  msgid "Upload file"
13982
  msgstr "Urca fisier"
13983
 
13984
- #: view/SeoSettings/Favicon.php:57
13985
- #, fuzzy
13986
  msgid "Upload a jpg, jpeg, png or ico file."
13987
  msgstr "Încărcați un fișier jpg, jpeg, png sau ico."
13988
 
13989
- #: view/SeoSettings/Favicon.php:87
13990
- #, fuzzy
13991
  msgid "Add Apple Touch Icons"
13992
- msgstr "Adăugați pictogramele Apple Touch"
13993
 
13994
- #: view/SeoSettings/Favicon.php:88
13995
- #, fuzzy
13996
  msgid "Also load the favicon for Apple devices."
13997
- msgstr "Încărcați și favicon pentru dispozitivele Apple."
13998
 
13999
- #: view/SeoSettings/Favicon.php:94
14000
  msgid ""
14001
  "If you don't see the new icon in your browser, empty the browser cache and "
14002
  "refresh the page."
@@ -14004,12 +13364,11 @@ msgstr ""
14004
  "Daca nu vezi noua icoana in browser, goleste cache-ul din browser si da "
14005
  "refresh la pagina."
14006
 
14007
- #: view/SeoSettings/Favicon.php:95
14008
  msgid "Accepted file types: JPG, JPEG, GIF and PNG."
14009
  msgstr "Tip fisiere JPEG,JPG,GIF sau PNG."
14010
 
14011
- #: view/SeoSettings/Favicon.php:96
14012
- #, fuzzy
14013
  msgid ""
14014
  "Does not physically create the favicon.ico file. The best option for "
14015
  "Multisites."
@@ -14017,832 +13376,801 @@ msgstr ""
14017
  "Nu creează fizic fișierul favicon.ico. Cea mai bună opțiune pentru multisite."
14018
 
14019
  #: view/SeoSettings/Jsonld.php:28
14020
- #, fuzzy
14021
  msgid "JSON-LD Structured Data"
14022
  msgstr "Date structurate JSON-LD"
14023
 
14024
- #: view/SeoSettings/Jsonld.php:59
14025
  msgid "Select between a Personal or a Business website type."
14026
- msgstr ""
14027
 
14028
- #: view/SeoSettings/Jsonld.php:64
14029
  msgid "Organization"
14030
  msgstr "Organizație"
14031
 
14032
- #: view/SeoSettings/Jsonld.php:65
14033
- #, fuzzy
14034
- #| msgid "Personal"
14035
  msgid "Person"
14036
- msgstr "Personal"
14037
 
14038
- #: view/SeoSettings/Jsonld.php:74
14039
- #, fuzzy
14040
  msgid "Your Organization Name"
14041
- msgstr "Numele organizației dvs."
14042
 
14043
- #: view/SeoSettings/Jsonld.php:84 view/SeoSettings/Jsonld.php:294
14044
- #, fuzzy
14045
  msgid "Logo URL"
14046
- msgstr "URL-ul logo-ului"
14047
 
14048
- #: view/SeoSettings/Jsonld.php:89 view/SeoSettings/Jsonld.php:299
 
14049
  msgid "Select Image"
14050
  msgstr "Selectează imagine"
14051
 
14052
- #: view/SeoSettings/Jsonld.php:94 view/SeoSettings/Jsonld.php:313
14053
  msgid "Short Description"
14054
  msgstr "Descrierea"
14055
 
14056
- #: view/SeoSettings/Jsonld.php:95
14057
- #, fuzzy
14058
  msgid "A short description about the company. 20-50 words."
14059
- msgstr "O scurtă descriere despre companie. 20-50 de cuvinte."
14060
 
14061
- #: view/SeoSettings/Jsonld.php:104
14062
  msgid "Address"
14063
- msgstr ""
14064
 
14065
- #: view/SeoSettings/Jsonld.php:113
14066
  msgid "City"
14067
- msgstr ""
14068
 
14069
- #: view/SeoSettings/Jsonld.php:131
14070
- #, fuzzy
14071
- #| msgid "Custom Code"
14072
  msgid "Postal Code"
14073
- msgstr "Cod Personalizat"
14074
 
14075
- #: view/SeoSettings/Jsonld.php:140 view/SeoSettings/Jsonld.php:304
14076
  msgid "Contact Phone"
14077
  msgstr "Telefon de contact"
14078
 
14079
- #: view/SeoSettings/Jsonld.php:149
14080
- #, fuzzy
14081
  msgid "Contact Type"
14082
- msgstr "Tip de contact"
14083
 
14084
- #: view/SeoSettings/Jsonld.php:155
14085
  msgid "Customer Service"
14086
  msgstr "Serviciu clienți"
14087
 
14088
- #: view/SeoSettings/Jsonld.php:156
14089
- #, fuzzy
14090
  msgid "Technical Support"
14091
- msgstr "Suport tehnic"
14092
 
14093
- #: view/SeoSettings/Jsonld.php:157
14094
- #, fuzzy
14095
  msgid "Billing Support"
14096
- msgstr "Suport de facturare"
14097
 
14098
- #: view/SeoSettings/Jsonld.php:158
14099
- #, fuzzy
14100
  msgid "Bill Payment"
14101
- msgstr "Plata facturii"
14102
 
14103
- #: view/SeoSettings/Jsonld.php:159
14104
  msgid "Sales"
14105
  msgstr "Vanzari"
14106
 
14107
- #: view/SeoSettings/Jsonld.php:160
14108
  msgid "Reservations"
14109
  msgstr "Rezervări"
14110
 
14111
- #: view/SeoSettings/Jsonld.php:161
14112
- #, fuzzy
14113
  msgid "Credit Card Support"
14114
- msgstr "Suport pentru card de credit"
14115
 
14116
- #: view/SeoSettings/Jsonld.php:162
14117
- #, fuzzy
14118
  msgid "Emergency"
14119
  msgstr "De urgență"
14120
 
14121
- #: view/SeoSettings/Jsonld.php:163
14122
- #, fuzzy
14123
  msgid "Baggage Tracking"
14124
  msgstr "Urmărirea bagajelor"
14125
 
14126
- #: view/SeoSettings/Jsonld.php:164
14127
- #, fuzzy
14128
  msgid "Roadside Assistance"
14129
- msgstr "Asistenta rutiera"
14130
 
14131
- #: view/SeoSettings/Jsonld.php:165
14132
- #, fuzzy
14133
  msgid "Package Tracking"
14134
- msgstr "Urmărirea pachetelor"
14135
 
14136
- #: view/SeoSettings/Jsonld.php:171
14137
  msgid "Setup JSON-LD Schema for Local SEO"
14138
- msgstr ""
14139
 
14140
- #: view/SeoSettings/Jsonld.php:175
14141
- #, fuzzy
14142
- #| msgid "Automation"
14143
  msgid "GEO Location"
14144
- msgstr "Automatizare"
14145
 
14146
- #: view/SeoSettings/Jsonld.php:179
14147
- #, fuzzy
14148
- #| msgid "SEO Settings"
14149
  msgid "GEO Settings"
14150
- msgstr "Setări SEO"
14151
 
14152
- #: view/SeoSettings/Jsonld.php:181
14153
  msgid "Latitude & Longitude of your store/business."
14154
- msgstr ""
14155
 
14156
- #: view/SeoSettings/Jsonld.php:184
 
 
 
 
14157
  msgid "latitude"
14158
- msgstr ""
14159
 
14160
- #: view/SeoSettings/Jsonld.php:187
14161
  msgid "longitude"
 
 
 
 
 
 
14162
  msgstr ""
 
 
14163
 
14164
- #: view/SeoSettings/Jsonld.php:192
14165
  msgid "Opening Hours"
14166
- msgstr ""
14167
 
14168
- #: view/SeoSettings/Jsonld.php:205
14169
  msgid "Opens"
14170
- msgstr ""
14171
 
14172
- #: view/SeoSettings/Jsonld.php:207
14173
  msgid "08:00"
14174
- msgstr ""
14175
 
14176
- #: view/SeoSettings/Jsonld.php:213
14177
- #, fuzzy
14178
- #| msgid "Close"
14179
  msgid "Closes"
14180
- msgstr "Închide"
14181
 
14182
- #: view/SeoSettings/Jsonld.php:215
14183
  msgid "23:00"
14184
- msgstr ""
14185
 
14186
- #: view/SeoSettings/Jsonld.php:223
14187
  msgid "Local Restaurant"
 
 
 
 
 
 
14188
  msgstr ""
 
 
14189
 
14190
- #: view/SeoSettings/Jsonld.php:227
14191
  msgid "Price Range"
14192
- msgstr ""
14193
 
14194
- #: view/SeoSettings/Jsonld.php:240
14195
  msgid "Serves Cuisine"
14196
- msgstr ""
14197
 
14198
- #: view/SeoSettings/Jsonld.php:249
14199
- #, fuzzy
14200
- #| msgid "Current: "
14201
  msgid "Menu Link"
14202
- msgstr "Pozitia curenta"
14203
 
14204
- #: view/SeoSettings/Jsonld.php:258
14205
- #, fuzzy
14206
- #| msgid "Reservations"
14207
  msgid "Accept Reservations"
14208
- msgstr "Rezervări"
14209
 
14210
- #: view/SeoSettings/Jsonld.php:275
14211
  msgid "Your Name"
14212
  msgstr "Numele dvs"
14213
 
14214
- #: view/SeoSettings/Jsonld.php:285
14215
  msgid "Job Title"
14216
  msgstr "Titlu"
14217
 
14218
- #: view/SeoSettings/Jsonld.php:314
14219
- #, fuzzy
14220
  msgid "A short description about your job title."
14221
- msgstr "O scurtă descriere despre titlul postului."
14222
 
14223
- #: view/SeoSettings/Jsonld.php:327
14224
  msgid "Set this person as a global author"
14225
- msgstr ""
14226
 
14227
- #: view/SeoSettings/Jsonld.php:328
14228
  msgid "Overwrite the posts/pages author(s) with this author in Json-LD."
14229
  msgstr ""
 
 
14230
 
14231
- #: view/SeoSettings/Jsonld.php:338
14232
- #, fuzzy
14233
  msgid "More Json-LD Settings"
14234
- msgstr "Setari"
14235
 
14236
- #: view/SeoSettings/Jsonld.php:347
14237
- #, fuzzy
14238
  msgid "Add Support For Woocommerce"
14239
- msgstr "Adăugați asistență pentru Woocommerce"
14240
 
14241
- #: view/SeoSettings/Jsonld.php:348
14242
- #, fuzzy
14243
  msgid ""
14244
- "Improve the Woocommerce Product and Orders Schema with the required data."
 
14245
  msgstr ""
14246
- "Îmbunătățiți schema de produse și comenzi Woocommerce cu datele necesare."
 
14247
 
14248
- #: view/SeoSettings/Jsonld.php:358
14249
- #, fuzzy
14250
- msgid "Add default data for Woocommerce Products"
 
 
 
 
 
 
 
 
 
 
 
14251
  msgstr "Adăugați date implicite pentru produsele Woocommerce"
14252
 
14253
- #: view/SeoSettings/Jsonld.php:359
14254
- #, fuzzy
14255
  msgid ""
14256
- "Add default data for JSON-LD aggregateRating, review, offers, sku, mpn to "
14257
- "avoid GSC errors."
14258
  msgstr ""
14259
- "Adăugați date implicite pentru JSON-LD aggregateRating, recenzie, oferte, "
14260
- "sku, mpn pentru a evita erorile GSC."
14261
 
14262
- #: view/SeoSettings/Jsonld.php:369
14263
- #, fuzzy
14264
  msgid "Add Breadcrumbs in Json-LD"
14265
- msgstr "Adăugați pâinea în Json-LD"
14266
 
14267
- #: view/SeoSettings/Jsonld.php:370
14268
- #, fuzzy
14269
  msgid ""
14270
  "Add the BreadcrumbsList Schema into Json-LD including all parent categories."
14271
  msgstr ""
14272
- "Adăugați schema BreadcrumbsList în Json-LD, incluzând toate categoriile "
14273
  "părinte."
14274
 
14275
- #: view/SeoSettings/Jsonld.php:380
14276
- #, fuzzy
14277
  msgid "Remove other Json-LD from page"
14278
  msgstr "Eliminați alte Json-LD din pagină"
14279
 
14280
- #: view/SeoSettings/Jsonld.php:381
14281
- #, fuzzy
14282
  msgid ""
14283
  "Clear the Json-LD from other plugins and theme to avoid duplicate schemas."
14284
  msgstr ""
14285
- "Ștergeți Json-LD de alte pluginuri și temă pentru a evita duplicarea "
14286
- "schemelor."
14287
 
14288
- #: view/SeoSettings/Jsonld.php:393 view/SeoSettings/Metas.php:193
14289
- #: view/SeoSettings/Social.php:368
14290
- #, fuzzy
14291
  msgid "Title & Description Lengths"
14292
- msgstr "Lungime descriere card Twitter"
14293
 
14294
- #: view/SeoSettings/Jsonld.php:439
14295
- #, fuzzy
14296
- #| msgid "Next Page"
14297
  msgid "Next Step"
14298
- msgstr "Pagina următoare"
14299
 
14300
- #: view/SeoSettings/Jsonld.php:443
14301
  msgid "Tips: How to optimize Json-LD Schema on all pages?"
14302
- msgstr ""
14303
 
14304
- #: view/SeoSettings/Jsonld.php:445
14305
  #, php-format
14306
  msgid ""
14307
  "Use the %s SEO Automation %s to setup the Json-LD type based on Post Types."
14308
  msgstr ""
 
 
14309
 
14310
- #: view/SeoSettings/Jsonld.php:446
14311
  #, php-format
14312
  msgid ""
14313
  "Use %s Bulk SEO %s to optimize the JSON-LD in the SEO Snippet for each page "
14314
  "on your website."
14315
  msgstr ""
 
 
14316
 
14317
- #: view/SeoSettings/Links.php:31
14318
  msgid ""
14319
  "Increase the website authority by not sending authority to all external "
14320
  "links."
14321
  msgstr ""
 
 
14322
 
14323
- #: view/SeoSettings/Links.php:40 view/SeoSettings/Metas.php:40
14324
- #, fuzzy
14325
  msgid "Activate SEO Metas"
14326
- msgstr "Activați Metas"
14327
 
14328
- #: view/SeoSettings/Links.php:73
14329
- #, fuzzy
14330
  msgid "Add Nofollow to external links"
14331
- msgstr "Nofollow pe link-urile externe"
14332
 
14333
- #: view/SeoSettings/Links.php:74
14334
  msgid ""
14335
- "Add the 'nofollow' attribute to all external links and stop loosing "
14336
- "authority."
14337
  msgstr ""
 
 
14338
 
14339
- #: view/SeoSettings/Links.php:84
14340
  msgid "Open external links in New Tab"
14341
- msgstr ""
14342
 
14343
- #: view/SeoSettings/Links.php:85
14344
  msgid ""
14345
  "Add the '_blank' attribute to all external links to open them in a new tab."
14346
  msgstr ""
 
 
14347
 
14348
- #: view/SeoSettings/Links.php:92
14349
- #, fuzzy
14350
- #| msgid "in action"
14351
  msgid "Domain Exception"
14352
- msgstr "in actiune!"
14353
 
14354
- #: view/SeoSettings/Links.php:93
14355
  msgid "Add external links for who you don't want to apply the nofollow."
14356
- msgstr ""
14357
 
14358
- #: view/SeoSettings/Links.php:127
14359
- msgid "Manage redirects for each Posts Type"
14360
- msgstr ""
14361
 
14362
- #: view/SeoSettings/Links.php:132
14363
- #, fuzzy
14364
  msgid "Tips: How to redirect broken URLs?"
14365
- msgstr "Redirecționați adresele URL sparte"
14366
 
14367
- #: view/SeoSettings/Links.php:134
14368
  #, php-format
14369
  msgid ""
14370
  "Use the %s SEO Automation %s to setup the broken URLs redirect if you change "
14371
  "a post/page slug."
14372
  msgstr ""
 
 
14373
 
14374
- #: view/SeoSettings/Links.php:135
14375
  msgid ""
14376
  "Squirrly SEO will add a 301 redirect to the new slug without losing any SEO "
14377
  "authority."
14378
  msgstr ""
 
 
14379
 
14380
- #: view/SeoSettings/Metas.php:31
14381
  msgid ""
14382
  "Add all Search Engine METAs like Title, Description, Canonical Link, Dublin "
14383
  "Core, Robots and more."
14384
  msgstr ""
 
 
14385
 
14386
- #: view/SeoSettings/Metas.php:56
14387
- #, fuzzy
14388
- #| msgid "Optimize"
14389
  msgid "Optimize with SEO Patterns"
14390
- msgstr "Optimizare"
14391
 
14392
- #: view/SeoSettings/Metas.php:61
14393
- #, fuzzy
14394
  msgid "Optimize all SEO Snippets"
14395
- msgstr "optimizați toate paginile"
14396
 
14397
- #: view/SeoSettings/Metas.php:67
14398
  msgid "Tips: How to optimize all the pages from my website?"
14399
- msgstr ""
14400
 
14401
- #: view/SeoSettings/Metas.php:69
14402
  #, php-format
14403
  msgid ""
14404
  "Use the %s SEO Automation %s to setup SEO Patterns based on Post Types for "
14405
  "global optimization."
14406
  msgstr ""
 
 
14407
 
14408
- #: view/SeoSettings/Metas.php:70
14409
  #, php-format
14410
  msgid ""
14411
  "Use %s Bulk SEO %s to optimize the SEO Snippet for each page on your website."
14412
  msgstr ""
 
 
14413
 
14414
- #: view/SeoSettings/Metas.php:79
14415
  msgid "Manage On-Page SEO Metas"
14416
- msgstr ""
14417
 
14418
- #: view/SeoSettings/Metas.php:87
14419
- #, fuzzy
14420
  msgid "Optimize the Titles"
14421
  msgstr "Optimizați titlurile"
14422
 
14423
- #: view/SeoSettings/Metas.php:89
14424
- #, fuzzy
14425
  msgid ""
14426
  "Add the Title Tag in the page header. You can customize it using the Bulk "
14427
  "SEO and Squirrly SEO Snippet."
14428
  msgstr ""
14429
- "Adăugați eticheta de titlu în antetul paginii. Puteți să-l personalizați "
14430
- "folosind fragmentul SEO Bulk și Squirrly SEO."
14431
 
14432
- #: view/SeoSettings/Metas.php:99
14433
  msgid "Optimize Descriptions"
14434
  msgstr "Optimizeazaz Descrierile"
14435
 
14436
- #: view/SeoSettings/Metas.php:101
14437
- #, fuzzy
14438
  msgid ""
14439
  "Add the Description meta in the page header. You can customize it using the "
14440
  "Bulk SEO and Squirrly SEO Snippet."
14441
  msgstr ""
14442
- "Adăugați meta Descriere în antetul paginii. Puteți să-l personalizați "
14443
- "folosind fragmentul SEO Bulk și Squirrly SEO."
14444
 
14445
- #: view/SeoSettings/Metas.php:111
14446
- #, fuzzy
14447
- #| msgid "Optimize for Keyword"
14448
  msgid "Optimize Keywords"
14449
- msgstr "Optimizare dupa cuvant cheie"
14450
 
14451
- #: view/SeoSettings/Metas.php:113
14452
- #, fuzzy
14453
  msgid ""
14454
  "Add the Keyword meta in the page header. You can customize it using the Bulk "
14455
  "SEO and Squirrly SEO Snippet."
14456
  msgstr ""
14457
- "Adăugați meta-cheie meta în antetul paginii. Puteți să-l personalizați "
14458
- "folosind fragmentul SEO Bulk și Squirrly SEO."
14459
 
14460
- #: view/SeoSettings/Metas.php:114
14461
- #, fuzzy
14462
  msgid ""
14463
  "This meta is not mandatory for Google but other search engines still use it "
14464
  "for ranking"
14465
  msgstr ""
14466
- "Această meta nu este obligatorie pentru Google, dar alte motoare de căutare "
14467
- "o folosesc în continuare pentru clasament"
14468
 
14469
- #: view/SeoSettings/Metas.php:125
14470
- #, fuzzy
14471
  msgid "Add Canonical Meta Link"
14472
- msgstr "Adăugați Canonical Meta Link"
14473
 
14474
- #: view/SeoSettings/Metas.php:127
14475
- #, fuzzy
14476
  msgid ""
14477
  "Add canonical link meta in the page header. You can customize the canonical "
14478
  "link on each page."
14479
  msgstr ""
14480
- "Adăugați meta-linkul canonic în antetul paginii. Puteți personaliza linkul "
14481
  "canonic pe fiecare pagină."
14482
 
14483
- #: view/SeoSettings/Metas.php:128
14484
- #, fuzzy
14485
  msgid ""
14486
  "Also add prev & next links metas in the page header when navigate between "
14487
  "blog pages."
14488
  msgstr ""
14489
- "De asemenea, adăugați metele de linkuri anterioare și următoare în antetul "
14490
- "paginii atunci când navigați între paginile blogului."
14491
 
14492
- #: view/SeoSettings/Metas.php:138
14493
- #, fuzzy
14494
  msgid "Add Dublin Core Meta"
14495
  msgstr "Adăugați Dublin Core Meta"
14496
 
14497
- #: view/SeoSettings/Metas.php:140
14498
- #, fuzzy
14499
  msgid "Add the Dublin Core meta in the page header."
14500
- msgstr "Adaugă metoda Dublin Core în antetul paginii."
14501
 
14502
- #: view/SeoSettings/Metas.php:150
14503
- #, fuzzy
14504
  msgid "Add Robots Meta"
14505
- msgstr "Adaugă Robots Meta"
14506
 
14507
- #: view/SeoSettings/Metas.php:152
14508
- #, fuzzy
14509
  msgid ""
14510
  "Add the Index/Noindex and Follow/Nofollow options in Squirrly SEO Snippet."
14511
  msgstr ""
14512
- "Adăugați opțiunile Index / Noindex și Follow / Nofollow în Squirrly SEO "
14513
- "Snippet."
14514
 
14515
- #: view/SeoSettings/Metas.php:153
14516
- #, fuzzy
14517
  msgid "Add googlebot and bingbot METAs for better performance."
14518
  msgstr "Adăugați META-uri googlebot și bingbot pentru o performanță mai bună."
14519
 
14520
- #: view/SeoSettings/Metas.php:160
14521
- #, fuzzy
14522
  msgid "More SEO Settings"
14523
- msgstr "Setari"
14524
 
14525
- #: view/SeoSettings/Metas.php:168
14526
- #, fuzzy
14527
  msgid "Add the Post tags in Keyword META"
14528
- msgstr "Adăugați etichetele Post în cuvântul cheie META"
14529
 
14530
- #: view/SeoSettings/Metas.php:170
14531
- #, fuzzy
14532
  msgid ""
14533
  "Add all the tags from your posts as keywords. Not recommended when you use "
14534
  "Keywords in Squirrly SEO Snippet."
14535
  msgstr ""
14536
- "Adăugați toate etichetele din postările dvs. sub formă de cuvinte cheie. Nu "
14537
- "este recomandat când utilizați Cuvinte cheie în Squirrly SEO Snippet."
14538
 
14539
- #: view/SeoSettings/Metas.php:180
14540
- #, fuzzy
14541
  msgid "Activate SEO Snippet in Frontend"
14542
- msgstr "Activați Snippet în Frontend"
14543
 
14544
- #: view/SeoSettings/Metas.php:182
14545
- #, fuzzy
14546
  msgid ""
14547
  "Load Squirrly SEO Snippet in Frontend to customize the SEO directly from "
14548
  "page preview."
14549
  msgstr ""
14550
- "Încărcați fragmentul SEO Squirrly în Frontend pentru a personaliza SEO "
14551
- "direct din previzualizarea paginii."
14552
 
14553
- #: view/SeoSettings/Robots.php:30
14554
- #, fuzzy
14555
  msgid ""
14556
  "A robots.txt file tells search engine crawlers which pages or files the "
14557
  "crawler can or can't request from your site."
14558
  msgstr ""
14559
- "Un fișier robots.txt spune crawler-urilor motorului de căutare ce pagini sau "
14560
- "fișiere pe care crawlerul le pot sau nu le pot solicita de pe site-ul dvs."
14561
 
14562
- #: view/SeoSettings/Robots.php:36
14563
- #, fuzzy
14564
  msgid "Activate Robots"
14565
- msgstr "Activați roboți"
14566
 
14567
- #: view/SeoSettings/Robots.php:57
14568
- #, fuzzy
14569
  msgid "Edit the Robots.txt data"
14570
- msgstr "Editați datele Robots.txt"
14571
 
14572
- #: view/SeoSettings/Robots.php:58
14573
- #, fuzzy
14574
  msgid ""
14575
  "Does not physically create the robots.txt file. The best option for "
14576
  "Multisites."
14577
  msgstr ""
14578
  "Nu creează fizic fișierul robots.txt. Cea mai bună opțiune pentru multisite."
14579
 
14580
- #: view/SeoSettings/Robots.php:71
14581
  msgid ""
14582
  "Edit the Robots.txt only if you know what you're doing. Adding wrong rules "
14583
  "in Robots can lead to SEO ranking errors or block your posts in Google."
14584
  msgstr ""
 
 
 
14585
 
14586
- #: view/SeoSettings/Sitemap.php:57
14587
- #, fuzzy
14588
  msgid "Blogging Frequency"
14589
- msgstr "Frecvența blogurilor"
14590
 
14591
- #: view/SeoSettings/Sitemap.php:58
14592
- #, fuzzy
14593
  msgid "How often do you write new posts?"
14594
- msgstr "Cât de des scrii postări noi?"
14595
 
14596
- #: view/SeoSettings/Sitemap.php:62
14597
- #, fuzzy
14598
  msgid "every hour"
14599
- msgstr "fiecare ora"
14600
 
14601
- #: view/SeoSettings/Sitemap.php:63
14602
- #, fuzzy
14603
  msgid "every day"
14604
- msgstr "in fiecare zi"
14605
 
14606
- #: view/SeoSettings/Sitemap.php:64
14607
- #, fuzzy
14608
  msgid "1-3 times per week"
14609
- msgstr "De 1-3 ori pe săptămână"
14610
 
14611
- #: view/SeoSettings/Sitemap.php:65
14612
- #, fuzzy
14613
  msgid "1-3 times per month"
14614
- msgstr "De 1-3 ori pe lună"
14615
 
14616
- #: view/SeoSettings/Sitemap.php:66
14617
- #, fuzzy
14618
  msgid "1-3 times per year"
14619
- msgstr "De 1-3 ori pe an"
14620
 
14621
- #: view/SeoSettings/Sitemap.php:78
14622
- #, fuzzy
14623
  msgid "Combine Languages in Sitemap"
14624
- msgstr "Combinați limbile în sitemap"
14625
 
14626
- #: view/SeoSettings/Sitemap.php:79
14627
- #, fuzzy
14628
  msgid "Add all languages in the same sitemap.xml file"
14629
  msgstr "Adăugați toate limbile în același fișier sitemap.xml"
14630
 
14631
- #: view/SeoSettings/Sitemap.php:80
14632
- #, fuzzy
14633
  msgid ""
14634
  "If not selected, you have to add the language slug for each snippet. e.g. /"
14635
  "en/sitemap.xml"
14636
  msgstr ""
14637
- "Dacă nu este selectat, trebuie să adăugați slug-ul de limbă pentru fiecare "
14638
- "fragment. de exemplu. /en/sitemap.xml"
14639
 
14640
- #: view/SeoSettings/Sitemap.php:89
14641
- #, fuzzy
14642
  msgid "Build Sitemaps for"
14643
- msgstr "Creați Sitemap-uri pentru"
14644
 
14645
- #: view/SeoSettings/Sitemap.php:91
14646
- #, fuzzy, php-format
14647
  msgid ""
14648
  "Check the sitemap you want Squirrly to build for your website. Your sitemap "
14649
  "will be %s"
14650
  msgstr ""
14651
- "Verificați harta web pe care doriți să o construiască Squirrly pentru site-"
14652
- "ul dvs. web. Sitemap-ul dvs. va fi %s"
14653
 
14654
- #: view/SeoSettings/Sitemap.php:92
14655
- #, fuzzy
14656
  msgid ""
14657
  "Verify your sitemaps after you activate them to have data. Uncheck them if "
14658
  "they don't have URLs to avoid Google errors."
14659
  msgstr ""
14660
- "Verificați-vă sit-urile după ce le activați pentru a avea date. Debifează-le "
14661
- "dacă nu au adrese URL pentru a evita erorile Google."
14662
 
14663
- #: view/SeoSettings/Sitemap.php:101
14664
  msgid "Home Page"
14665
  msgstr "Pagina principala"
14666
 
14667
- #: view/SeoSettings/Sitemap.php:102
14668
- #, fuzzy
14669
  msgid "Build the sitemap for the home page."
14670
  msgstr "Construiți harta site-ului pentru pagina principală."
14671
 
14672
- #: view/SeoSettings/Sitemap.php:108 view/SeoSettings/Sitemap.php:140
14673
- #: view/SeoSettings/Sitemap.php:159 view/SeoSettings/Sitemap.php:180
14674
- #: view/SeoSettings/Sitemap.php:200 view/SeoSettings/Sitemap.php:221
14675
- #: view/SeoSettings/Sitemap.php:240 view/SeoSettings/Sitemap.php:284
14676
- #, fuzzy
14677
  msgid "Deactivated from SEO Automation."
14678
- msgstr "Activați Meta Automation"
14679
 
14680
- #: view/SeoSettings/Sitemap.php:120
14681
- #, fuzzy
14682
  msgid "Google News"
14683
- msgstr "Stiri google"
14684
 
14685
- #: view/SeoSettings/Sitemap.php:121
14686
- #, fuzzy, php-format
14687
  msgid ""
14688
  "Only if you have a news website. Make sure you submit your website to "
14689
  "%sGoogle News%s first."
14690
  msgstr ""
14691
- "Doar dacă aveți un site de știri. Asigurați-vă că trimiteți site-ul dvs. web "
14692
- "la %sGoogle News %s."
14693
 
14694
- #: view/SeoSettings/Sitemap.php:133
14695
  msgid "Posts"
14696
  msgstr "Articole"
14697
 
14698
- #: view/SeoSettings/Sitemap.php:134
14699
- #, fuzzy
14700
  msgid "Build the sitemap for your posts."
14701
- msgstr "Creează harta sit-ului pentru postările tale."
14702
 
14703
- #: view/SeoSettings/Sitemap.php:152
14704
  msgid "Attachments"
14705
  msgstr "Atașamente"
14706
 
14707
- #: view/SeoSettings/Sitemap.php:153
14708
- #, fuzzy
14709
  msgid "Only recommended if you have a photography website."
14710
- msgstr "Recomandat doar dacă aveți un site web de fotografie."
14711
 
14712
- #: view/SeoSettings/Sitemap.php:173
14713
  msgid "Categories"
14714
  msgstr "Categorii"
14715
 
14716
- #: view/SeoSettings/Sitemap.php:174
14717
- #, fuzzy
14718
  msgid "Build the sitemap for your post categories."
14719
- msgstr "Creați sitemap pentru categoriile dvs. de postări."
14720
 
14721
- #: view/SeoSettings/Sitemap.php:193
14722
  msgid "Tags"
14723
  msgstr "Etichete"
14724
 
14725
- #: view/SeoSettings/Sitemap.php:194
14726
- #, fuzzy
14727
  msgid "Build the sitemap for your post tags."
14728
- msgstr "Creați sitemap pentru etichetele dvs. post."
14729
 
14730
- #: view/SeoSettings/Sitemap.php:214
14731
  msgid "Pages"
14732
  msgstr "Pagini"
14733
 
14734
- #: view/SeoSettings/Sitemap.php:215
14735
- #, fuzzy
14736
  msgid "Build the sitemap for your pages."
14737
- msgstr "Creați sitemap pentru paginile dvs."
14738
 
14739
- #: view/SeoSettings/Sitemap.php:233
14740
  msgid "Archive"
14741
  msgstr "Arhiva"
14742
 
14743
- #: view/SeoSettings/Sitemap.php:234
14744
- #, fuzzy
14745
  msgid "Build the sitemap for your archive links."
14746
- msgstr "Construiți harta sit-ului pentru linkurile de arhivă."
14747
 
14748
- #: view/SeoSettings/Sitemap.php:254
14749
  msgid "Custom Taxonomies"
14750
  msgstr "Taxonomies personalizate"
14751
 
14752
- #: view/SeoSettings/Sitemap.php:255
14753
- #, fuzzy
14754
  msgid "Build the sitemap for your custom post type categories and tags."
14755
  msgstr ""
14756
- "Creați sitemap pentru categoriile și etichetele dvs. de tip postare "
14757
- "personalizate."
14758
 
14759
- #: view/SeoSettings/Sitemap.php:264
14760
  msgid "Custom Posts"
14761
  msgstr "Adaugă postări personalizate"
14762
 
14763
- #: view/SeoSettings/Sitemap.php:265
14764
- #, fuzzy
14765
  msgid ""
14766
  "Build the sitemap for your custom post types (other than WP posts and pages)."
14767
  msgstr ""
14768
- "Construiți sitemap pentru tipurile dvs. de postări personalizate (altele "
14769
  "decât postările și paginile WP)."
14770
 
14771
- #: view/SeoSettings/Sitemap.php:277
14772
  msgid "Products"
14773
  msgstr "Produse"
14774
 
14775
- #: view/SeoSettings/Sitemap.php:278
14776
- #, fuzzy
14777
  msgid "Build the sitemap for your e-commerce products."
14778
  msgstr "Construiți harta site-ului pentru produsele dvs. de comerț electronic."
14779
 
14780
- #: view/SeoSettings/Sitemap.php:307
14781
- #, fuzzy
14782
  msgid "Include Images in Sitemap"
14783
  msgstr "Includeți imagini în Sitemap"
14784
 
14785
- #: view/SeoSettings/Sitemap.php:308
14786
- #, fuzzy
14787
  msgid ""
14788
  "Add the image tag for each post with feature image to index your images in "
14789
  "Google Image Search."
14790
  msgstr ""
14791
- "Adăugați eticheta de imagine pentru fiecare post cu imaginea caracteristică "
14792
- "pentru a vă indexa imaginile în Căutarea de imagini Google."
14793
 
14794
- #: view/SeoSettings/Sitemap.php:318
14795
- #, fuzzy
14796
  msgid "Include Videos in Sitemap"
14797
  msgstr "Includeți videoclipuri în Sitemap"
14798
 
14799
- #: view/SeoSettings/Sitemap.php:319
14800
- #, fuzzy
14801
  msgid "Add the video tag for each post with embed video in it."
14802
  msgstr ""
14803
- "Adăugați eticheta video pentru fiecare postare cu video încorporat în ea."
 
14804
 
14805
- #: view/SeoSettings/Sitemap.php:329
14806
- #, fuzzy
14807
  msgid "Ping New Posts to Search Engines"
14808
- msgstr "Ping postări noi pe Google"
14809
 
14810
- #: view/SeoSettings/Sitemap.php:330
14811
- #, fuzzy
14812
  msgid "Ping your sitemap to Search Engines when a new post is published."
14813
  msgstr ""
14814
- "Ping-ți sitemap-ul pe Google și Bing când este publicată o nouă postare."
 
14815
 
14816
- #: view/SeoSettings/Sitemap.php:341
14817
- #, fuzzy
14818
  msgid "Sitemap Pagination"
14819
- msgstr "Paginarea site-ului"
14820
 
14821
- #: view/SeoSettings/Sitemap.php:342
14822
  msgid "Split the sitemap records in pages to prevent slow sitemap loading."
14823
  msgstr ""
 
 
14824
 
14825
- #: view/SeoSettings/Social.php:49
14826
  msgid ""
14827
  "Add the Social Open Graph protocol so that your Facebook shares look good."
14828
  msgstr "Adauga Open Graph meta pentru o afisare mai frumoasa in Facebook."
14829
 
14830
- #: view/SeoSettings/Social.php:50
14831
- #, fuzzy, php-format
14832
  msgid ""
14833
  "You can always update an URL on Facebook if you change its Social Media "
14834
  "Image. Visit %sOpen Graph Debugger%s"
14835
  msgstr ""
14836
  "Puteți actualiza întotdeauna o adresă URL pe Facebook dacă îi schimbați "
14837
- "imaginea socială. Vizitați %sOpen Graph Debugger %s"
14838
 
14839
- #: view/SeoSettings/Social.php:59
14840
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
14841
  msgid "Facebook Share Language"
14842
- msgstr "Facebook Share Language"
14843
 
14844
- #: view/SeoSettings/Social.php:60
14845
- #, fuzzy
14846
  msgid ""
14847
  "Use this so that Facebook can automatically translate the text into the "
14848
  "reader's language"
@@ -14850,63 +14178,73 @@ msgstr ""
14850
  "Folosiți acest lucru pentru ca Facebook să poată traduce automat textul în "
14851
  "limba cititorului"
14852
 
14853
- #: view/SeoSettings/Social.php:209
14854
  msgid "Facebook App ID"
14855
  msgstr "Facebook App ID"
14856
 
14857
- #: view/SeoSettings/Social.php:210
14858
- #, fuzzy, php-format
14859
  msgid ""
14860
  "Add the %sFacebook App ID%s to create a connection between your Facebook "
14861
  "Page and your Website."
14862
  msgstr ""
14863
- "Adăugați% ID de aplicație %sFacebook %s pentru a crea o conexiune între "
14864
- "pagina dvs. de Facebook și site-ul dvs. Web."
14865
 
14866
- #: view/SeoSettings/Social.php:229 view/SeoSettings/Social.php:241
14867
- #: view/SeoSettings/Social.php:254
14868
- #, fuzzy
14869
  msgid "Facebook Admin ID"
14870
- msgstr "ID de administrator Facebook"
14871
 
14872
- #: view/SeoSettings/Social.php:230 view/SeoSettings/Social.php:242
14873
- #, fuzzy
14874
  msgid ""
14875
  "Similar to Facebook App ID, Facebook Admin ID connects your Facebook Page to "
14876
  "your Website."
14877
  msgstr ""
14878
- "Similar ID-ului aplicației Facebook, ID-ul de administrator Facebook "
14879
- "conectează pagina dvs. de Facebook la site-ul dvs. Web."
14880
 
14881
- #: view/SeoSettings/Social.php:261
14882
- #, fuzzy
14883
  msgid "Add multiple Facebook Admin IDs"
14884
- msgstr "Adăugați mai multe ID-uri de administrare Facebook"
14885
 
14886
- #: view/SeoSettings/Social.php:272
14887
- #, fuzzy
 
 
 
14888
  msgid ""
14889
  "Add the Twitter Card in your tweets so that your Twitter shares look good."
14890
  msgstr ""
14891
- "Adăugați cardul Twitter în tweet-urile dvs. pentru ca share-urile dvs. "
14892
  "Twitter să arate bine."
14893
 
14894
- #: view/SeoSettings/Social.php:273
14895
- #, fuzzy, php-format
14896
  msgid ""
14897
  "Make sure you validate the twitter card with your Twitter account. Visit "
14898
  "%sTwitter Card Validator%s"
14899
  msgstr ""
14900
- "Asigurați-văvalidați cardul twitter cu contul dvs. de Twitter. Vizitați "
14901
- "%sTwitter Card Validator %s"
14902
 
14903
- #: view/SeoSettings/Social.php:283
14904
- #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
14905
  msgid "Share Large Images"
14906
- msgstr "Partajează imagini mari"
14907
 
14908
- #: view/SeoSettings/Social.php:284
14909
- #, fuzzy
14910
  msgid ""
14911
  "Activate this option only if you upload images with sizes between 500px and "
14912
  "4096px width in Twitter Card."
@@ -14914,251 +14252,324 @@ msgstr ""
14914
  "Activați această opțiune numai dacă încărcați imagini cu dimensiuni între "
14915
  "500px și 4096px lățime în Twitter Card."
14916
 
14917
- #: view/SeoSettings/Social.php:285
14918
- #, fuzzy, php-format
14919
  msgid ""
14920
  "This option will show the twitter card image as a shared image and not as a "
14921
  "summary. Visit %sSummary Card with Large Image%s"
14922
  msgstr ""
14923
- "Această opțiune va arăta imaginea cartelei twitter ca imagine partajată și "
14924
- "nu ca un rezumat. Vizitați %sSumary Card cu imagine mare %s"
14925
 
14926
- #: view/SeoSettings/Social.php:293
14927
  msgid "Social Media Accounts"
14928
  msgstr "Conturi sociale media"
14929
 
14930
- #: view/SeoSettings/Social.php:295
14931
- #, fuzzy
14932
  msgid ""
14933
  "Add your Social Media account for JSON-LD Structured data, Open Graph, and "
14934
  "Twitter Card."
14935
  msgstr ""
14936
- "Adăugați contul dvs. de social media pentru datele structurate JSON-LD, Open "
14937
  "Graph și Twitter Card."
14938
 
14939
- #: view/SeoSettings/Social.php:301
14940
  msgid "Twitter Profile URL"
14941
  msgstr "Profilul URL"
14942
 
14943
- #: view/SeoSettings/Social.php:303
14944
- #, fuzzy
14945
  msgid "Required for Twitter Card Validator"
14946
- msgstr "Obligatoriu pentru validator card Twitter"
14947
 
14948
- #: view/SeoSettings/Social.php:312
14949
- #, fuzzy
14950
  msgid "Facebook Profile or Page URL"
14951
- msgstr "Profil Facebook sau adresa URL a paginii"
14952
 
14953
- #: view/SeoSettings/Social.php:323
14954
  msgid "Linkedin Profile URL"
14955
  msgstr "URL LinkedIn"
14956
 
14957
- #: view/SeoSettings/Social.php:333
14958
  msgid "Pinterest Profile URL"
14959
  msgstr "Pinterest adresa URL a profilului"
14960
 
14961
- #: view/SeoSettings/Social.php:343
14962
- #, fuzzy
14963
  msgid "Instagram Profile URL"
14964
- msgstr "URL-ul profilului Instagram"
14965
 
14966
- #: view/SeoSettings/Social.php:353
14967
- #, fuzzy
14968
  msgid "Youtube Channel URL"
14969
- msgstr "URL-ul canalului YouTube"
14970
 
14971
- #: view/SeoSettings/Tracking.php:57
14972
  msgid "Google Analytics ID"
14973
  msgstr "Google Analytics ID"
14974
 
14975
- #: view/SeoSettings/Tracking.php:58
14976
- #, fuzzy, php-format
14977
  msgid ""
14978
  "Squirrly adds the Google Tracking script for your Analytics ID. %sGet the "
14979
  "Analytics ID%s"
14980
  msgstr ""
14981
- "Squirrly adaugă scriptul Google Tracking pentru ID-ul dvs. Google "
14982
- "Analytics. %s Obțineți ID-ul Analytics %s"
14983
 
14984
- #: view/SeoSettings/Tracking.php:76
14985
- #, fuzzy
14986
  msgid "Get GA Code"
14987
  msgstr "Obțineți codul GA"
14988
 
14989
- #: view/SeoSettings/Tracking.php:85
14990
- #, fuzzy
14991
  msgid "Google Tracking Mode"
14992
- msgstr "Mod de urmărire Google"
14993
 
14994
- #: view/SeoSettings/Tracking.php:86
14995
- #, fuzzy, php-format
14996
  msgid ""
14997
  "Choose gtag.js if you use %sGoogle Tag Manager%s or the %sGoogle Analytics "
14998
  "4%s. Otherwise select analytics.js to track the website traffic."
14999
  msgstr ""
15000
- "Alegeți gtag.js dacă utilizați %sGoogle Tag Manager %s. În caz contrar, "
15001
- "selectați analytics.js pentru a urmări traficul site-ului."
 
15002
 
15003
- #: view/SeoSettings/Tracking.php:90
15004
- #, fuzzy
15005
  msgid "analytics.js"
15006
  msgstr "analytics.js"
15007
 
15008
- #: view/SeoSettings/Tracking.php:91
15009
- #, fuzzy
15010
  msgid "gtag.js"
15011
  msgstr "gtag.js"
15012
 
15013
- #: view/SeoSettings/Tracking.php:105
15014
- #, fuzzy
15015
  msgid "Facebook Pixel"
15016
  msgstr "Facebook Pixel"
15017
 
15018
- #: view/SeoSettings/Tracking.php:106
15019
- #, fuzzy, php-format
15020
  msgid ""
15021
  "Use FB Pixel to track the visitors events and to use Facebook Ads more "
15022
  "efficient. %sLearn More%s"
15023
  msgstr ""
15024
  "Utilizați FB Pixel pentru a urmări evenimentele vizitatorilor și pentru a "
15025
- "utiliza Facebook Ads mai eficient. %s Aflați mai multe %s"
15026
 
15027
- #: view/SeoSettings/Tracking.php:122
15028
  msgid "Load the AMP Support on AMP pages"
15029
- msgstr ""
15030
 
15031
- #: view/SeoSettings/Tracking.php:123
15032
  #, php-format
15033
  msgid ""
15034
  "Load the Accelerate Mobile Pages (AMP) support for plugins like %sAMP for WP"
15035
  "%s or %sAMP%s detected"
15036
  msgstr ""
 
 
15037
 
15038
- #: view/SeoSettings/Tracking.php:133
15039
- #, fuzzy
15040
  msgid "Load Tracking for Logged Users"
15041
- msgstr "Urmărirea încărcării pentru utilizatorii conectați"
15042
 
15043
- #: view/SeoSettings/Tracking.php:134
15044
- #, fuzzy
15045
  msgid "Load the tracking codes for logged users too."
15046
  msgstr "Încărcați codurile de urmărire și pentru utilizatorii conectați."
15047
 
15048
- #: view/SeoSettings/Webmaster.php:33
15049
- #, fuzzy
15050
  msgid "Activate Webmasters"
15051
- msgstr "Activați webmasteri"
15052
 
15053
- #: view/SeoSettings/Webmaster.php:58
15054
- #, fuzzy, php-format
15055
- #| msgid "Google META verification code for %sWebmaster Tool%s:"
15056
  msgid ""
15057
  "Add the Google META verification code to connect to %sGoogle Search Console%s"
15058
- msgstr "Cod META pentru %sGoogle Webmaster Tool%s"
 
 
15059
 
15060
- #: view/SeoSettings/Webmaster.php:76
15061
- #, fuzzy
15062
  msgid "Get GSC Code"
15063
- msgstr "Obțineți codul GSC"
15064
 
15065
- #: view/SeoSettings/Webmaster.php:89
15066
- #, fuzzy
15067
  msgid "Bing Webmaster Tools"
15068
- msgstr "Instrumente pentru webmaster"
15069
 
15070
- #: view/SeoSettings/Webmaster.php:90
15071
- #, fuzzy, php-format
15072
- #| msgid "Google META verification code for %sWebmaster Tool%s:"
15073
  msgid ""
15074
  "Add the Bing META verification code to connect to %sBing Webmaster Tool%s"
15075
- msgstr "Cod META pentru %sGoogle Webmaster Tool%s"
 
 
15076
 
15077
- #: view/SeoSettings/Webmaster.php:99
15078
- #, fuzzy
15079
  msgid "Baidu Webmaster Tools"
15080
- msgstr "Instrumente pentru webmaster"
15081
 
15082
- #: view/SeoSettings/Webmaster.php:100
15083
- #, fuzzy, php-format
15084
- #| msgid "Google META verification code for %sWebmaster Tool%s:"
15085
  msgid ""
15086
  "Add the Baidu META verification code to connect to %sBaidu Webmaster Tool%s"
15087
- msgstr "Cod META pentru %sGoogle Webmaster Tool%s"
 
 
15088
 
15089
- #: view/SeoSettings/Webmaster.php:109
15090
- #, fuzzy
15091
  msgid "Yandex Webmaster Code"
15092
- msgstr "Instrumente pentru webmaster"
15093
 
15094
- #: view/SeoSettings/Webmaster.php:110
15095
- #, fuzzy, php-format
15096
- #| msgid "Google META verification code for %sWebmaster Tool%s:"
15097
  msgid ""
15098
  "Add the Yandex META verification code to connect to %sYandex Webmaster Tool%s"
15099
- msgstr "Cod META pentru %sGoogle Webmaster Tool%s"
 
 
15100
 
15101
- #: view/SeoSettings/Webmaster.php:119
15102
- #, fuzzy
15103
  msgid "Alexa META Code"
15104
- msgstr "Codul META Alexa"
15105
 
15106
- #: view/SeoSettings/Webmaster.php:120
15107
- #, fuzzy, php-format
15108
  msgid ""
15109
  "Add the Alexa META code to analyze your entire website. Visit the %sAlexa "
15110
  "Marketing Tool%s"
15111
  msgstr ""
15112
- "Adăugați codul META Alexa pentru a analiza întregul site web. Accesați "
15113
- "%sAlexa Instrumentul de marketing %s"
15114
 
15115
- #: view/SeoSettings/Webmaster.php:129
15116
- #, fuzzy
15117
  msgid "Pinterest Website Validator Code"
15118
- msgstr "Codul validator al site-ului Pinterest"
15119
 
15120
- #: view/SeoSettings/Webmaster.php:130
15121
- #, fuzzy, php-format
15122
  msgid ""
15123
  "Add the Pinterest verification code to connect your website to your "
15124
  "Pinterest account. Visit the %sRich Pins Validator%s"
15125
  msgstr ""
15126
- "Adăugați codul de verificare Pinterest pentru a conecta site-ul dvs. web la "
15127
- "contul dvs. Pinterest. Accesați %sRich Pins Validator %s"
15128
 
15129
- #: view/SeoSettings/Webmaster.php:139
15130
  msgid "Norton Safe Web Code"
15131
- msgstr ""
15132
 
15133
- #: view/SeoSettings/Webmaster.php:140
15134
- #, fuzzy, php-format
15135
  msgid ""
15136
  "Add the Norton Safe Web verification code or ID to connect your website to "
15137
  "Norton Safe Web. Visit the %sNorton Ownership Verification Page%s"
15138
  msgstr ""
15139
- "Adăugați codul de verificare Pinterest pentru a conecta site-ul dvs. web la "
15140
- "contul dvs. Pinterest. Accesați %sRich Pins Validator %s"
 
15141
 
15142
  #. Plugin Name of the plugin/theme
15143
- #, fuzzy
15144
  msgid "Squirrly SEO 2021 (Smart Strategy)"
15145
- msgstr "Bine ați venit la Squirrly SEO 2020 (Strategie inteligentă)"
15146
 
15147
  #. Plugin URI of the plugin/theme
15148
  msgid "https://wordpress.org/plugins/squirrly-seo/"
15149
- msgstr ""
15150
 
15151
  #. Description of the plugin/theme
15152
  msgid ""
15153
  "A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning "
15154
  "and Cloud Services. Over 300 functionalities for SEO available when you need "
15155
- "them.<BR> <a href=\"http://cloud.squirrly.co/user\" target=\"_blank"
15156
- "\"><strong>Account Info</strong></a>"
15157
  msgstr ""
 
 
 
15158
 
15159
  #. Author URI of the plugin/theme
15160
  msgid "https://plugin.squirrly.co"
15161
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15162
 
15163
  #~ msgid "Articles optimized so far"
15164
  #~ msgstr "Articole optimizate până acum"
@@ -15184,9 +14595,6 @@ msgstr ""
15184
  #~ msgid "Pages ranking in top 100 Google"
15185
  #~ msgstr "Pagini care se clasează în top 100 Google"
15186
 
15187
- #~ msgid "see rankings"
15188
- #~ msgstr "Vezi rank-urile"
15189
-
15190
  #~ msgid "SEO Audits"
15191
  #~ msgstr "Audituri SEO"
15192
 
@@ -15303,10 +14711,6 @@ msgstr ""
15303
  #~ "Add Social Open Graph protocol so that your Facebook shares look good."
15304
  #~ msgstr "Adauga Open Graph meta pentru o afisare mai frumoasa in Facebook."
15305
 
15306
- #, fuzzy
15307
- #~ msgid "Twitter Card Optimization"
15308
- #~ msgstr "Optimizarea primei pagini"
15309
-
15310
  #, fuzzy
15311
  #~ msgid ""
15312
  #~ "Add Twitter Card in your tweets so that your Twitter shares look good."
@@ -15385,14 +14789,6 @@ msgstr ""
15385
  #~ "Urmăriți-vă cu precizie clasamentele cu verificatorul Google SERP de "
15386
  #~ "Squirrly, ușor de utilizat"
15387
 
15388
- #, fuzzy
15389
- #~ msgid "Go to feature"
15390
- #~ msgstr "Accesați Servieta"
15391
-
15392
- #, fuzzy
15393
- #~ msgid "Inactive"
15394
- #~ msgstr "sarcină activă"
15395
-
15396
  #, fuzzy
15397
  #~ msgid "Current JSON-LD Code"
15398
  #~ msgstr "Codul JSON-LD curent"
@@ -15523,9 +14919,6 @@ msgstr ""
15523
  #~ msgid "Georgia"
15524
  #~ msgstr "Georgia"
15525
 
15526
- #~ msgid "Germany"
15527
- #~ msgstr "Germania"
15528
-
15529
  #, fuzzy
15530
  #~ msgid "Ghana "
15531
  #~ msgstr "Ghana"
@@ -16005,11 +15398,6 @@ msgstr ""
16005
  #~ msgid "(BETA)"
16006
  #~ msgstr "(BETA)"
16007
 
16008
- #, fuzzy
16009
- #~| msgid "Keywords"
16010
- #~ msgid "Already added"
16011
- #~ msgstr "Cuvinte cheie:"
16012
-
16013
  #, fuzzy
16014
  #~| msgid "No results found!"
16015
  #~ msgid "No page found."
@@ -16613,9 +16001,6 @@ msgstr ""
16613
  #~ msgid "Click on Sign Up button and try again ..."
16614
  #~ msgstr "Apasa butonul Sign Up pentru a incerca din nou ..."
16615
 
16616
- #~ msgid "Enter a keyword above!"
16617
- #~ msgstr "Adauga cuvinte cheie mai sus!"
16618
-
16619
  #~ msgid "I have more then one keyword!"
16620
  #~ msgstr "Am mai multe cuvinte!"
16621
 
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: 2021-04-28 14:07+0300\n"
6
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
7
  "Language-Team: Squirrly UK <support@squirrly.co>\n"
8
  "Language: ro_RO\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.4.3\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."
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?"
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. rugăm "
214
+ " î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."
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 "
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)"
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"
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
 
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
 
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 "
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
 
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!"
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."
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."
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."
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. "
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."
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 "
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 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 "
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ă concentrați și veți putea vedea când "
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, "
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 "
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. "
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 î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 șoptește la ureche exact ce trebuie 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 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 "
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 "
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-"
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 "
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 "
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 "
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ă-teincluzi 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 "
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 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 "
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ș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 "
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 "
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 fie "
1432
+ "trimis persoanei care se va ocupa și va începe 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 "
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 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 "
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 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ă 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: "
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 "
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 "
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
+ " 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
 
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 "
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 ajută dați seama exact ce cuvinte cheiefolosiți. "
1582
+ "%s Începeți optimizați conținutul. Folosiți asistentul Live Assistant "
1583
+ "din Squirrly SEO pentru a face acest lucru, deoareceghidează 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 î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"
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
 
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
 
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"
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 "
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"
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 / "
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 aducă trafic. Bineînțeles, cheia este ca mai întâi "
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 î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 "
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 î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 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?"
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 "
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
+ " controlați pe care pagini să plasați no-index și care pagini nu ar trebui "
1777
+ " fie etichetate niciodată cu no-index dacă folosiți Plugin-ul Squirrly "
1778
+ "SEO. %s Dacă ați decis 100%% doriți ca aceste pagini să fie No-Index (nu "
1779
+ "doriți ca Google 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?"
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 "
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 controlați pe care pagini plasați nofollow și care pagini "
1822
+ "nu ar trebui 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 "
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ă 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"
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 "
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"
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 "
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. ca acest text 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 asigure 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"
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 "
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 fie unică (nu o repetați niciodată pe alte URL-uri de pe "
2032
+ "site). acest text minunat și vei face ca oamenii să dea click pe el. %s "
2033
+ "Folosiți caracteristica Patterns din Squirrly SEO. Aceasta va ajuta "
2034
+ "creați reguli pentru WordPress care asigure 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"
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 "
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 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 se asigure 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"
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 "
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 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."
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 veți asigura paginile dvs. au etichete de "
2186
+ "titlu. Acesta va crea titluri pentru fiecare pagină. va ajuta să "
2187
+ "personalizați titlurile pentru fiecare pagină, totul în timp ce face "
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?"
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 "
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 "
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ă. va ajuta personalizați "
2229
+ "aceste descrieri pentru fiecare pagină, totul în timp ce face scrieți "
2230
+ "ZERO, nada, rien, cod. Nu este nevoie de codificare atunci când folosiți "
2231
+ "Squirrly SEO. Puteți chiar personalizați modul în care 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"
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ă 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
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 "
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 "
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 asigura că evitați conținutul duplicat."
2319
 
2320
  #: models/Audits.php:170
2321
  msgid "Add canonical meta link in the page header"
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"
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"
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 "
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. "
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"
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 "
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. 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 "
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 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"
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 "
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 îl opereze pentru dvs.) și asigurați- 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"
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” "
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"
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 "
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 poate "
2557
+ "primi GZIP. %s Echipele de experți de la Squirrly 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"
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?"
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 "
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 "
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 \"vadă\" oamenii "
2710
+ "împărtășesc paginile dvs. în social media, va considera 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"
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, "
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 î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 încetinesc site-"
2756
+ "ul. Asigurați-vă arată bine pe mobil."
2757
 
2758
  #: models/Audits.php:299
2759
  msgid "Add Social Share buttons in your articles"
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 "
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 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?"
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 "
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 "
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- "
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?"
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 "
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 "
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 le implementezi în <head>secțiunea de cod a paginii tale. "
2906
+ "Asigurați-vă î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"
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 "
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 convingeți bloggerii care vând pe fiverr 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 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 "
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"
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 "
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 "
3048
+ "convingeți bloggerii care vând pe fiverr 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 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 "
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?"
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."
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 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ă adăugați: <meta name="
3122
+ "\"robots\" content=\"index, nofollow\" /> Acest lucru asigură faptul că "
3123
+ "Google consideră aceasta este o pagină finală. Dacă multe alte pagini se "
3124
+ "leagă de această pagină și aceasta este cea finală, înseamnă 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 "
3127
+ "trimiteți un link către rețeta de sos picant a bucătarului Jamie Oliver. Ar "
3128
+ "trebui asigurați adăugați eticheta No Follow la acel link care iese "
3129
+ "din site-ul dvs., deoarece nu doriți ca Google 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 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 "
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"
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 "
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 "
3192
+ "se lege înapoi la propriul site. Așa 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 "
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."
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 "
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 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."
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: "
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 "
3285
+ " 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 vă cerceteze site-ul web și 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 "
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"
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 "
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
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
 
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
 
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 "
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ă 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
 
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 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."
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 "
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 ""
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 "
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 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 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 "
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ă 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ă 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. "
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
+ "începeatingă poziții de top în Google. SEO este foarte complicat, iar "
3789
+ "Focus Pages este singura metodă care te ajută î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 "
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, 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ăuNU 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 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 "
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 "
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ă 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ă 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ă 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 "
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 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 "
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 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. "
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. 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, "
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ă 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ă "
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 "
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 "
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
+ " 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 "
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 "
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
+ " cereți ca Google 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 faceți "
4338
+ "acest lucru. În calitate de SEO Star trebuie să începeți să 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 "
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 "
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 "
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 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 "
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
+ "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, 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 "
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 "
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 apucațireparaț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. 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. "
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 "
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 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 descoperiți ș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 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 "
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 "
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 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 măsurați impactul muncii dvs. și să 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 "
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ă 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 î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 "
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 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 "
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 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 "
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, "
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șidea 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 "
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 "
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 oamenidea 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, "
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 "
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 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 "
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 "
5119
+ "utilizați instrumentul către care avem un link pentru a 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ă 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 "
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ă 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 atingă un nivel de optimizare de 30%, 50% or "
5194
+ "60% o atunci când încearcă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 "
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 "
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 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 "
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ă 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 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 "
5372
  "start bringing some traffic to your Focus pages on [link]https://squirrly.co/"
5373
  "seo/kit[/link]"
5374
  msgstr ""
5375
+ "Începeți să 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 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 "
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
+ " 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 "
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ă 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
+ " 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 "
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."
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 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 "
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ă 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 "
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' "
5608
  "strategies (and a quick-fix plugin) here: [link]https://squirrly.co/seo/kit/"
5609
  "[/link]"
5610
  msgstr ""
5611
+ "Încercați să 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 "
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 "
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 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ă 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 "
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 "
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 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 "
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 "
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 î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ă 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 "
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 "
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 "
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 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 asigurați 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 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ă 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 ~ "
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ă 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 "
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 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 "
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 "
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 "
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 "
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, "
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 ~ "
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ă 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 "
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 "
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 reușițiajungeț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 reușițiajungeț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ă 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 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ă 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 "
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 "
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ă 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ă 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 verifice pagina, astfel încât veți "
6494
+ "primi un audit complet."
 
6495
 
6496
  #: models/CheckSeo.php:2020
6497
  msgid "Focus Pages - Limit Exceeded"
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
 
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
 
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
 
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 î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"
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 aveți în vedere să nu adăugați un cuvânt cheie de "
7101
  "mai multe ori."
7102
 
7103
  #: models/Post.php:246
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
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
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 ""
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 "
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 "
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
 
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"
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ă"
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 "
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"
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
 
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
 
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 "
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 "
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 "
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 dea clic și "
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 "
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 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 "
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 "
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 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 "
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. "
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 "
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ă creșteți poziționarea zi de zi, aveți nevoie de "
8042
+ "Planul de afaceri. %s Dacă doriți doar ocazional 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 "
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 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 "
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 "
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
 
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ă 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
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
 
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
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- 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 "
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, "
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 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 "
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 "
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
+ " 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 "
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 "
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 "
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ă-teaceastă "
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 "
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ă 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 "
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 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
+ " 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 "
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 "
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. "
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
+ " 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 "
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 ease claseze în TOP 10 pe "
8755
+ "Google. Cu toate acestea, îndeplinirea acestei sarcini 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. "
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ă trebuie 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 "
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 șiaibă autoritate, asigurați-vă 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 "
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 "
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 "
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 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 "
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îș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 "
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
+ " 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 "
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 dea clic și "
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 "
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 setezi "
9046
+ "unele dintre elemente, așa 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 "
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ă 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 "
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 "
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 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 "
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 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
 
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 "
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ă "
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 "
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 "
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 "
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 "
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 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 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. "
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 "
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
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."
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 "
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 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. rugăm 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
 
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țidurează î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
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 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 "Funcția de căutare"
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țiconduceț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"
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"
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 " cercetare de cuvinte cheie!"
10225
 
10226
  #: view/Blocks/SLASearch.php:47
10227
  msgid "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 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
 
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 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
 
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?"
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 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 " rugăm î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 " rugăm î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
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ă 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ă 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ă actualizați planul "
10948
+ "la %sPRO Plan%s"
10949
 
10950
  #: view/Blocks/VersionBar.php:50
10951
  #, php-format
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 "
10979
+ "optimiza postările și paginile. %sPentru a optimiza postările la 100%% "
10980
+ "rugăm să 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ă "
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 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ă "
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 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 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
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
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
+ " 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 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țidurează î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 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 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țiignoraț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ă 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 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 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ă 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ă 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 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 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 "
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 "
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 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 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 doriți ș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 doriți ș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 Labelsva ajuta să clasificați cuvintele cheie în funcție de "
12518
+ "strategia SEO. Etichetele sunt ca niște categorii și 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 "
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 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
+ " 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 Sitemap"
12933
  msgstr "Includeți în Sitemap"
12934
 
12935
+ #: view/SeoSettings/Automation.php:283
 
12936
  msgid "Let Squirrly SEO include this post type in Squirrly Sitemap XML."
12937
  msgstr ""
12938
+ "Permiteți ca Squirrly SEO să includă acest tip de post în Squirrly Sitemap "
12939
+ "XML."
12940
 
12941
+ #: view/SeoSettings/Automation.php:284
 
12942
  msgid ""
12943
  "If you switch off this option, Squirrly will not load the Sitemap for this "
12944
  "post type."
12945
  msgstr ""
12946
+ "Dacă dezactivați această opțiune, Squirrly nu va încărca Sitemap-ul pentru "
12947
  "acest tip de post."
12948
 
12949
+ #: view/SeoSettings/Automation.php:299 view/SeoSettings/Links.php:129
 
12950
  msgid "Redirect Broken URLs"
12951
+ msgstr "Redirecționați URL-urile sparte"
12952
 
12953
+ #: view/SeoSettings/Automation.php:302
 
12954
  msgid ""
12955
  "Redirect the 404 URL in case it is changed with a new one in Post Editor."
12956
  msgstr ""
12957
+ "Redirecționați URL-ul 404 în cazul în care acesta este schimbat cu unul nou "
12958
+ "în Editorul de postări."
12959
 
12960
+ #: view/SeoSettings/Automation.php:313 view/SeoSettings/Links.php:62
 
12961
  msgid "Redirect Attachments Page"
12962
+ msgstr "Atașamente"
12963
 
12964
+ #: view/SeoSettings/Automation.php:314 view/SeoSettings/Links.php:65
 
12965
  msgid "Redirect the attachment page to its image URL."
12966
+ msgstr "Redirecționați pagina de atașament către URL-ul imaginii sale."
12967
 
12968
+ #: view/SeoSettings/Automation.php:315 view/SeoSettings/Links.php:66
 
12969
  msgid "Recommended if your website is not a photography website."
12970
+ msgstr "Eroare! Nu se poate adăuga pagina de audit in website."
12971
 
12972
+ #: view/SeoSettings/Automation.php:338
 
12973
  msgid "Load Squirrly SEO METAs"
12974
+ msgstr "Squirrly SEO"
12975
 
12976
+ #: view/SeoSettings/Automation.php:341
 
12977
  msgid ""
12978
  "Let Squirrly SEO load the Title, Description, Keyword METAs for this post "
12979
  "type."
12980
  msgstr ""
12981
+ "Lăsați Squirrly SEO să încarce Titlul, Descrierea, Cuvântul cheie METAs "
12982
+ "pentru acest tip de postare."
12983
 
12984
+ #: view/SeoSettings/Automation.php:359
 
 
12985
  msgid "Load Squirrly Patterns"
12986
+ msgstr "Încărcați modelele Squirrly"
12987
 
12988
+ #: view/SeoSettings/Automation.php:362
 
12989
  msgid "Let Squirrly SEO load the Patterns for this post type."
12990
+ msgstr "Lăsați Squirrly SEO să încarce modelele pentru acest tip de post."
12991
 
12992
+ #: view/SeoSettings/Automation.php:373
 
12993
  msgid "Activate Json-Ld"
12994
+ msgstr "Activați JSON-LD"
12995
 
12996
+ #: view/SeoSettings/Automation.php:380
 
12997
  msgid "Load JSON-LD Structured Data"
12998
  msgstr "Încărcați date structurate JSON-LD"
12999
 
13000
+ #: view/SeoSettings/Automation.php:383
 
13001
  msgid "Let Squirrly SEO load the JSON-LD Schema for this post type."
13002
  msgstr ""
13003
+ "Lăsați Squirrly SEO să încarce Schema JSON-LD pentru acest tip de articol."
13004
 
13005
+ #: view/SeoSettings/Automation.php:388 view/SeoSettings/Jsonld.php:59
 
13006
  msgid "JSON-LD Type"
13007
+ msgstr "JSON-LD Tip"
13008
 
13009
+ #: view/SeoSettings/Automation.php:428 view/SeoSettings/Automation.php:483
 
13010
  msgid "Activate Social Media"
13011
  msgstr "Activați Social Media"
13012
 
13013
+ #: view/SeoSettings/Automation.php:442
 
13014
  msgid "Load Squirrly Open Graph"
13015
+ msgstr "Încărcați Squirrly Open Graph"
13016
 
13017
+ #: view/SeoSettings/Automation.php:445
 
13018
  msgid "Let Squirrly SEO load the Open Graph for this post type."
13019
+ msgstr "Lăsați Squirrly SEO să încarce Open Graph pentru acest tip de postare."
 
13020
 
13021
+ #: view/SeoSettings/Automation.php:450
 
13022
  msgid "Open Graph Type"
13023
+ msgstr "Tip Open Graph"
13024
 
13025
+ #: view/SeoSettings/Automation.php:453
 
13026
  msgid "Select which Open Graph type to load for this post type."
13027
+ msgstr ""
13028
+ "Selectați ce tip de Open Graph se va încărca pentru acest tip de postare."
13029
 
13030
+ #: view/SeoSettings/Automation.php:497
 
13031
  msgid "Load Squirrly Twitter Card"
13032
+ msgstr "Încărcați cardul Squirrly Twitter"
13033
 
13034
+ #: view/SeoSettings/Automation.php:500
 
13035
  msgid "Let Squirrly SEO load the Twitter Card for this post type."
13036
  msgstr ""
13037
+ "Lăsați Squirrly SEO să încarce Twitter Card pentru acest tip de articol."
13038
 
13039
+ #: view/SeoSettings/Automation.php:515 view/SeoSettings/Automation.php:536
13040
+ #: view/SeoSettings/Tracking.php:37
 
13041
  msgid "Activate Trackers"
13042
+ msgstr "Activați dispozitivele de urmărire"
13043
 
13044
+ #: view/SeoSettings/Automation.php:522
13045
  msgid "Load Google Analytics Tracking Script"
13046
  msgstr "Incarca codul pentru Google Analytics"
13047
 
13048
+ #: view/SeoSettings/Automation.php:525
 
13049
  msgid "Let Google Analytics Tracking to load for this post type."
13050
  msgstr ""
13051
+ "Lăsați Google Analytics Tracking să se încarce pentru acest tip de post."
 
13052
 
13053
+ #: view/SeoSettings/Automation.php:543
 
13054
  msgid "Load Facebook Pixel Tracking Script"
13055
+ msgstr "Încărcați scriptul de urmărire Facebook Pixel"
13056
 
13057
+ #: view/SeoSettings/Automation.php:546
 
13058
  msgid "Let Facebook Pixel Tracking to load for this post type."
13059
+ msgstr ""
13060
+ "Lăsați Facebook Pixel Tracking să se încarce pentru acest tip de postare."
13061
 
13062
+ #: view/SeoSettings/Automation.php:556
13063
+ #, php-format
13064
  msgid "Do you want to delete the automation for %s?"
13065
  msgstr "Doriți să ștergeți automatizarea pentru %s?"
13066
 
13067
+ #: view/SeoSettings/Automation.php:556
13068
+ #, php-format
13069
  msgid "Remove automation for %s"
13070
+ msgstr "Eliminarea automatizării pentru %s"
13071
 
13072
+ #: view/SeoSettings/Automation.php:584
 
 
13073
  msgid "Squirrly Patterns"
13074
+ msgstr "Modele Squirrly"
13075
 
13076
+ #: view/SeoSettings/Automation.php:587
 
13077
  msgid ""
13078
  "Use the Pattern system to prevent Title and Description duplicates between "
13079
  "posts"
13080
  msgstr ""
13081
+ "Utilizați sistemul de modele pentru a preveni duplicarea titlurilor și "
13082
+ "descrierilor între postări"
13083
 
13084
+ #: view/SeoSettings/Automation.php:593
 
13085
  msgid ""
13086
  "Patterns change the codes like {{title}} with the actual value of the post "
13087
  "Title."
13088
  msgstr ""
13089
+ "Modelele schimbă codurile de tipul {{title}} cu valoarea reală a titlului "
13090
+ "postului."
13091
 
13092
+ #: view/SeoSettings/Automation.php:594
 
13093
  msgid ""
13094
  "In Squirrly, each post type in your site comes with a predefined posting "
13095
  "pattern when displayed onto your website. However, based on your site's "
13096
  "purpose and needs, you can also decide what information these patterns will "
13097
  "include."
13098
  msgstr ""
13099
+ "În Squirrly, fiecare tip de postare din site-ul dvs. vine cu un model de "
13100
+ "postare predefinit atunci când este afișat pe site-ul dvs. web. Cu toate "
13101
+ "acestea, în funcție de scopul și nevoile site-ului dvs. puteți decide, de "
13102
+ "asemenea, ce informații vor include aceste modele."
13103
 
13104
+ #: view/SeoSettings/Automation.php:595
 
13105
  msgid ""
13106
  "Once you set up a pattern for a particular post type, only the content "
13107
  "required by your custom sequence will be displayed."
13108
  msgstr ""
13109
+ "Odată ce ați configurat un model pentru un anumit tip de articol, va fi "
13110
+ "afișat numai conținutul cerut de secvența dvs. personalizată."
13111
 
13112
+ #: view/SeoSettings/Automation.php:596
13113
+ #, php-format
13114
  msgid ""
13115
  "Squirrly lets you see how the customized patterns will apply when posts/"
13116
  "pages are shared across social media or search engine feeds. You just need "
13117
  "to go to the %sBulk SEO%s and see the meta information for each post type."
13118
  msgstr ""
13119
  "Squirrly vă permite să vedeți cum se vor aplica modelele personalizate "
13120
+ "atunci când postările/paginile sunt partajate în rețelele sociale sau în "
13121
+ "fluxurile motoarelor de căutare. Trebuie doar să mergeți la %sBulk SEO%s și "
13122
+ "să vedeți informațiile meta pentru fiecare tip de post."
13123
 
13124
+ #: view/SeoSettings/Automation.php:603
 
13125
  msgid "META Lengths"
13126
  msgstr "Lungimi META"
13127
 
13128
+ #: view/SeoSettings/Automation.php:606
 
13129
  msgid "Change the lengths for each META on automation"
13130
+ msgstr "Modificați lungimile pentru fiecare META pe automatizare"
13131
 
13132
+ #: view/SeoSettings/Automation.php:612 view/SeoSettings/Metas.php:201
13133
  msgid "Title Length"
13134
  msgstr "Lungime titlu"
13135
 
13136
+ #: view/SeoSettings/Automation.php:620 view/SeoSettings/Metas.php:210
13137
  msgid "Description Length"
13138
  msgstr "Lungime descriere"
13139
 
13140
+ #: view/SeoSettings/Automation.php:628 view/SeoSettings/Social.php:419
 
13141
  msgid "Open Graph Title Length"
13142
+ msgstr "Lungime titlu Open Graph"
13143
 
13144
+ #: view/SeoSettings/Automation.php:636 view/SeoSettings/Social.php:427
 
13145
  msgid "Open Graph Description Length"
13146
+ msgstr "Open Graph Descriere Lungime"
13147
 
13148
+ #: view/SeoSettings/Automation.php:644 view/SeoSettings/Social.php:435
 
13149
  msgid "Twitter Card Title Length"
13150
+ msgstr "Twitter Card Titlu lungime"
13151
 
13152
+ #: view/SeoSettings/Automation.php:652 view/SeoSettings/Social.php:443
 
13153
  msgid "Twitter Card Description Length"
13154
+ msgstr "Twitter Card Descriere Lungime"
13155
 
13156
+ #: view/SeoSettings/Automation.php:660 view/SeoSettings/Jsonld.php:451
 
13157
  msgid "JSON-LD Title Length"
13158
+ msgstr "JSON-LD Titlul JSON-LD Lungime"
13159
 
13160
+ #: view/SeoSettings/Automation.php:668 view/SeoSettings/Jsonld.php:459
 
13161
  msgid "JSON-LD Description Length"
13162
+ msgstr "JSON-LD Descriere Lungime"
13163
 
13164
  #: view/SeoSettings/Backup.php:8 view/SeoSettings/Jsonld.php:8
 
13165
  msgid ""
13166
  "You do not have permission to access this page. You need Squirrly SEO Admin "
13167
  "role"
13168
  msgstr ""
13169
+ "Nu aveți permisiunea de a accesa această pagină. Aveți nevoie de rolul de "
13170
+ "administrator Squirrly SEO"
13171
 
13172
  #: view/SeoSettings/Backup.php:24
 
13173
  msgid "Import Settings & SEO"
13174
+ msgstr "Setări de import și SEO"
13175
 
13176
+ #: view/SeoSettings/Backup.php:30
 
13177
  msgid ""
13178
  "Import the settings and SEO from other plugins so you can use only Squirrly "
13179
  "SEO for on-page SEO."
13180
  msgstr ""
13181
+ "Importați setările și SEO din alte plugin-uri, astfel încât să puteți "
13182
+ "utiliza doar Squirrly SEO pentru SEO pe pagină."
13183
 
13184
+ #: view/SeoSettings/Backup.php:31
 
13185
  msgid ""
13186
  "Note! If you import the SEO settings from other plugins or themes, you will "
13187
  "lose all the settings that you had in Squirrly SEO. Make sure you backup "
13188
  "your settings from the panel below before you do this."
13189
  msgstr ""
13190
  "Notă! Dacă importați setările SEO din alte pluginuri sau teme, veți pierde "
13191
+ "toate setările pe care le aveați în Squirrly SEO. Asigurați-vă că faceți o "
13192
+ "copie de rezervă a setărilor din panoul de mai jos înainte de a face acest "
13193
+ "lucru."
13194
 
13195
+ #: view/SeoSettings/Backup.php:48
 
13196
  msgid "Import Settings From"
13197
+ msgstr "Importați setările de la"
13198
 
13199
+ #: view/SeoSettings/Backup.php:50
 
13200
  msgid "Select the plugin or theme you want to import the Settings from."
13201
+ msgstr "Selectați pluginul sau tema din care doriți să importați setările."
 
 
 
 
 
13202
 
13203
+ #: view/SeoSettings/Backup.php:66
13204
  msgid "Import Settings"
13205
  msgstr "Importă setări"
13206
 
13207
+ #: view/SeoSettings/Backup.php:68
13208
+ msgid "Note! It will overwrite the settings you set in Squirrly SEO."
13209
+ msgstr ""
13210
+ "Notă! Acesta va suprascrie setările pe care le-ați setat în Squirrly SEO."
13211
+
13212
+ #: view/SeoSettings/Backup.php:80
13213
  msgid "Import SEO From"
13214
+ msgstr "Import SEO din"
13215
 
13216
+ #: view/SeoSettings/Backup.php:82
13217
+ msgid "Select the plugin or theme you want to import the SEO & Patterns from."
13218
+ msgstr ""
13219
+ "Selectați pluginul sau tema din care doriți să importați SEO & Patterns."
13220
 
13221
+ #: view/SeoSettings/Backup.php:103
13222
+ msgid "Overwrite all existing SEO Snippets optimizations"
13223
+ msgstr "Suprascrieți toate optimizările SEO Snippets existente"
 
 
 
13224
 
13225
+ #: view/SeoSettings/Backup.php:120
 
13226
  msgid "Backup Settings & SEO"
13227
+ msgstr "Setări de backup și SEO"
13228
 
13229
+ #: view/SeoSettings/Backup.php:124
 
13230
  msgid ""
13231
  "You can now download your Squirrly settings in an sql file before you go "
13232
  "ahead and import the SEO settings from another plugin. That way, you can "
13233
  "always go back to your Squirrly settings."
13234
  msgstr ""
13235
  "Acum puteți descărca setările Squirrly într-un fișier sql înainte de a "
13236
+ "continua și de a importa setările SEO de la un alt plugin. În acest fel, "
13237
+ "puteți întoarce întotdeauna la setările Squirrly."
13238
 
13239
+ #: view/SeoSettings/Backup.php:131
13240
  msgid "Backup Settings"
13241
  msgstr "Setări salvare"
13242
 
13243
+ #: view/SeoSettings/Backup.php:132
 
13244
  msgid "Download all the settings from Squirrly SEO."
13245
+ msgstr "Descărcați toate setările din Squirrly SEO."
13246
 
13247
+ #: view/SeoSettings/Backup.php:137
 
13248
  msgid "Download Backup"
13249
  msgstr "Descărcați Backup"
13250
 
13251
+ #: view/SeoSettings/Backup.php:145
 
13252
  msgid "Backup SEO"
13253
  msgstr "Backup SEO"
13254
 
13255
+ #: view/SeoSettings/Backup.php:146
13256
  msgid "Download all the Squirrly SEO Snippet optimizations."
13257
  msgstr "Descarca toate optimizarile pentru Squirrly SEO Snippet."
13258
 
13259
+ #: view/SeoSettings/Backup.php:151 view/SeoSettings/Backup.php:165
 
13260
  msgid "Download Backup"
13261
  msgstr "Descărcați Backup"
13262
 
13263
+ #: view/SeoSettings/Backup.php:159
13264
+ msgid "Backup Briefcase"
13265
+ msgstr "Backup Briefcase"
13266
+
13267
+ #: view/SeoSettings/Backup.php:160
13268
+ msgid "Download all Briefcase Keywords."
13269
+ msgstr "Descarcă toate servieta Cuvinte cheie."
13270
+
13271
+ #: view/SeoSettings/Backup.php:173
13272
  msgid "Restore Settings & SEO"
13273
  msgstr "Restaurați setările și SEO"
13274
 
13275
+ #: view/SeoSettings/Backup.php:177
 
13276
  msgid "Restore the settings and all the pages optimized with Squirrly SEO."
13277
  msgstr "Restaurați setările și toate paginile optimizate cu Squirrly SEO."
13278
 
13279
+ #: view/SeoSettings/Backup.php:184 view/SeoSettings/Backup.php:193
 
13280
  msgid "Restore Settings"
13281
  msgstr "Restaurați setările"
13282
 
13283
+ #: view/SeoSettings/Backup.php:185
 
13284
  msgid "Upload the file with the saved Squirrly Settings."
13285
+ msgstr "Încărcați fișierul cu setările Squirrly salvate."
13286
 
13287
+ #: view/SeoSettings/Backup.php:201 view/SeoSettings/Backup.php:210
 
13288
  msgid "Restore SEO"
13289
  msgstr "Restaurați SEO"
13290
 
13291
+ #: view/SeoSettings/Backup.php:202
 
13292
  msgid "Upload the file with the saved Squirrly SEO SQL file."
13293
+ msgstr "Încărcați fișierul cu fișierul Squirrly SEO SQL salvat."
13294
 
13295
+ #: view/SeoSettings/Backup.php:227
13296
+ msgid "Restore"
13297
+ msgstr "Recupereaza"
13298
+
13299
+ #: view/SeoSettings/Backup.php:233
13300
  msgid "Rollback Plugin"
13301
+ msgstr "Rollback Plugin"
13302
 
13303
+ #: view/SeoSettings/Backup.php:237
 
13304
  msgid "You can rollback Squirrly SEO plugin to the last stable version."
13305
+ msgstr "Puteți reveni la ultima versiune stabilă a plugin-ului Squirrly SEO."
13306
 
13307
+ #: view/SeoSettings/Backup.php:244
13308
+ msgid "Rollback to version"
13309
+ msgstr "Revenire la versiunea"
 
13310
 
13311
+ #: view/SeoSettings/Backup.php:245
 
13312
  msgid "Install the last stable version of the plugin."
13313
+ msgstr "Instalați ultima versiune stabilă a plugin-ului."
13314
 
13315
+ #: view/SeoSettings/Backup.php:250
 
 
13316
  msgid "Install Squirrly SEO"
13317
+ msgstr "Instalați Squirrly SEO"
13318
 
13319
+ #: view/SeoSettings/Backup.php:259
13320
+ msgid "Reinstall version"
13321
+ msgstr "Reinstalați versiunea"
13322
 
13323
+ #: view/SeoSettings/Backup.php:260
 
13324
  msgid "Reinstall the current version of the plugin."
13325
+ msgstr "Reinstalați versiunea curentă a plugin-ului."
 
 
 
 
 
 
13326
 
13327
  #: view/SeoSettings/Favicon.php:28
 
 
13328
  msgid "Website Icon"
13329
+ msgstr "Icoana site-ului"
13330
 
13331
+ #: view/SeoSettings/Favicon.php:34
 
13332
  msgid ""
13333
  "Add your website icon in the browser tabs and on other devices like iPhone, "
13334
  "iPad and Android phones."
13335
  msgstr ""
13336
+ "Adăugați pictograma site-ului dvs. în filele browserului și pe alte "
13337
+ "dispozitive precum iPhone, iPad și telefoane Android."
13338
 
13339
+ #: view/SeoSettings/Favicon.php:40
 
13340
  msgid "Activate Favicon"
13341
  msgstr "Activați Favicon"
13342
 
13343
+ #: view/SeoSettings/Favicon.php:60
13344
  msgid "Upload file"
13345
  msgstr "Urca fisier"
13346
 
13347
+ #: view/SeoSettings/Favicon.php:63
 
13348
  msgid "Upload a jpg, jpeg, png or ico file."
13349
  msgstr "Încărcați un fișier jpg, jpeg, png sau ico."
13350
 
13351
+ #: view/SeoSettings/Favicon.php:93
 
13352
  msgid "Add Apple Touch Icons"
13353
+ msgstr "Adăugați pictograme Apple Touch"
13354
 
13355
+ #: view/SeoSettings/Favicon.php:96
 
13356
  msgid "Also load the favicon for Apple devices."
13357
+ msgstr "De asemenea, încărcați faviconul pentru dispozitivele Apple."
13358
 
13359
+ #: view/SeoSettings/Favicon.php:102
13360
  msgid ""
13361
  "If you don't see the new icon in your browser, empty the browser cache and "
13362
  "refresh the page."
13364
  "Daca nu vezi noua icoana in browser, goleste cache-ul din browser si da "
13365
  "refresh la pagina."
13366
 
13367
+ #: view/SeoSettings/Favicon.php:103
13368
  msgid "Accepted file types: JPG, JPEG, GIF and PNG."
13369
  msgstr "Tip fisiere JPEG,JPG,GIF sau PNG."
13370
 
13371
+ #: view/SeoSettings/Favicon.php:104
 
13372
  msgid ""
13373
  "Does not physically create the favicon.ico file. The best option for "
13374
  "Multisites."
13376
  "Nu creează fizic fișierul favicon.ico. Cea mai bună opțiune pentru multisite."
13377
 
13378
  #: view/SeoSettings/Jsonld.php:28
 
13379
  msgid "JSON-LD Structured Data"
13380
  msgstr "Date structurate JSON-LD"
13381
 
13382
+ #: view/SeoSettings/Jsonld.php:62
13383
  msgid "Select between a Personal or a Business website type."
13384
+ msgstr "Selectați între un tip de site web personal sau de afaceri."
13385
 
13386
+ #: view/SeoSettings/Jsonld.php:67
13387
  msgid "Organization"
13388
  msgstr "Organizație"
13389
 
13390
+ #: view/SeoSettings/Jsonld.php:68
 
 
13391
  msgid "Person"
13392
+ msgstr "Persoană"
13393
 
13394
+ #: view/SeoSettings/Jsonld.php:77
 
13395
  msgid "Your Organization Name"
13396
+ msgstr "Numele organizației dvs"
13397
 
13398
+ #: view/SeoSettings/Jsonld.php:87 view/SeoSettings/Jsonld.php:318
 
13399
  msgid "Logo URL"
13400
+ msgstr "Logo URL"
13401
 
13402
+ #: view/SeoSettings/Jsonld.php:92 view/SeoSettings/Jsonld.php:323
13403
+ #: view/SeoSettings/Social.php:69 view/SeoSettings/Social.php:313
13404
  msgid "Select Image"
13405
  msgstr "Selectează imagine"
13406
 
13407
+ #: view/SeoSettings/Jsonld.php:97 view/SeoSettings/Jsonld.php:337
13408
  msgid "Short Description"
13409
  msgstr "Descrierea"
13410
 
13411
+ #: view/SeoSettings/Jsonld.php:98
 
13412
  msgid "A short description about the company. 20-50 words."
13413
+ msgstr "O scurtă descriere a companiei. 20-50 de cuvinte."
13414
 
13415
+ #: view/SeoSettings/Jsonld.php:107
13416
  msgid "Address"
13417
+ msgstr "Adresa"
13418
 
13419
+ #: view/SeoSettings/Jsonld.php:116
13420
  msgid "City"
13421
+ msgstr "Oraș"
13422
 
13423
+ #: view/SeoSettings/Jsonld.php:134
 
 
13424
  msgid "Postal Code"
13425
+ msgstr "Cod poștal"
13426
 
13427
+ #: view/SeoSettings/Jsonld.php:143 view/SeoSettings/Jsonld.php:328
13428
  msgid "Contact Phone"
13429
  msgstr "Telefon de contact"
13430
 
13431
+ #: view/SeoSettings/Jsonld.php:152
 
13432
  msgid "Contact Type"
13433
+ msgstr "Tipul de contact"
13434
 
13435
+ #: view/SeoSettings/Jsonld.php:158
13436
  msgid "Customer Service"
13437
  msgstr "Serviciu clienți"
13438
 
13439
+ #: view/SeoSettings/Jsonld.php:159
 
13440
  msgid "Technical Support"
13441
+ msgstr "Asistență tehnică"
13442
 
13443
+ #: view/SeoSettings/Jsonld.php:160
 
13444
  msgid "Billing Support"
13445
+ msgstr "Suport pentru facturare"
13446
 
13447
+ #: view/SeoSettings/Jsonld.php:161
 
13448
  msgid "Bill Payment"
13449
+ msgstr "Plata facturilor"
13450
 
13451
+ #: view/SeoSettings/Jsonld.php:162
13452
  msgid "Sales"
13453
  msgstr "Vanzari"
13454
 
13455
+ #: view/SeoSettings/Jsonld.php:163
13456
  msgid "Reservations"
13457
  msgstr "Rezervări"
13458
 
13459
+ #: view/SeoSettings/Jsonld.php:164
 
13460
  msgid "Credit Card Support"
13461
+ msgstr "Suport pentru carduri de credit"
13462
 
13463
+ #: view/SeoSettings/Jsonld.php:165
 
13464
  msgid "Emergency"
13465
  msgstr "De urgență"
13466
 
13467
+ #: view/SeoSettings/Jsonld.php:166
 
13468
  msgid "Baggage Tracking"
13469
  msgstr "Urmărirea bagajelor"
13470
 
13471
+ #: view/SeoSettings/Jsonld.php:167
 
13472
  msgid "Roadside Assistance"
13473
+ msgstr "Asistență rutieră"
13474
 
13475
+ #: view/SeoSettings/Jsonld.php:168
 
13476
  msgid "Package Tracking"
13477
+ msgstr "Urmărirea pachetului"
13478
 
13479
+ #: view/SeoSettings/Jsonld.php:175
13480
  msgid "Setup JSON-LD Schema for Local SEO"
13481
+ msgstr "Configurați Schema JSON-LD pentru SEO local"
13482
 
13483
+ #: view/SeoSettings/Jsonld.php:181
 
 
13484
  msgid "GEO Location"
13485
+ msgstr "GEO Locație"
13486
 
13487
+ #: view/SeoSettings/Jsonld.php:187
 
 
13488
  msgid "GEO Settings"
13489
+ msgstr "Setări GEO"
13490
 
13491
+ #: view/SeoSettings/Jsonld.php:189
13492
  msgid "Latitude & Longitude of your store/business."
13493
+ msgstr "Latitudinea și longitudinea magazinului/afacerii dumneavoastră."
13494
 
13495
+ #: view/SeoSettings/Jsonld.php:191
13496
+ msgid "Get GEO Coordonates based on address."
13497
+ msgstr "Obțineți coordonate GEO pe baza adresei."
13498
+
13499
+ #: view/SeoSettings/Jsonld.php:197
13500
  msgid "latitude"
13501
+ msgstr "latitudine"
13502
 
13503
+ #: view/SeoSettings/Jsonld.php:200
13504
  msgid "longitude"
13505
+ msgstr "longitudine"
13506
+
13507
+ #: view/SeoSettings/Jsonld.php:204
13508
+ #, php-format
13509
+ msgid ""
13510
+ "Download the file %s for GEO Coordonates to import into %s Google Earth %s."
13511
  msgstr ""
13512
+ "Descărcați fișierul %s pentru GEO Coordonates pentru a importa în %s Google "
13513
+ "Earth %s."
13514
 
13515
+ #: view/SeoSettings/Jsonld.php:211
13516
  msgid "Opening Hours"
13517
+ msgstr "Orar de lucru"
13518
 
13519
+ #: view/SeoSettings/Jsonld.php:226
13520
  msgid "Opens"
13521
+ msgstr "Deschideri"
13522
 
13523
+ #: view/SeoSettings/Jsonld.php:228
13524
  msgid "08:00"
13525
+ msgstr "08:00"
13526
 
13527
+ #: view/SeoSettings/Jsonld.php:234
 
 
13528
  msgid "Closes"
13529
+ msgstr "Expiră la"
13530
 
13531
+ #: view/SeoSettings/Jsonld.php:236
13532
  msgid "23:00"
13533
+ msgstr "23:00"
13534
 
13535
+ #: view/SeoSettings/Jsonld.php:244
13536
  msgid "Local Restaurant"
13537
+ msgstr "Restaurant local"
13538
+
13539
+ #: view/SeoSettings/Jsonld.php:247
13540
+ msgid ""
13541
+ "ONLY use this if you have a restaurant, pizza place, bar, pub, etc. "
13542
+ "Otherwise, leave blank."
13543
  msgstr ""
13544
+ "Folosiți acest lucru NUMAI dacă aveți un restaurant, o pizzerie, un bar, un "
13545
+ "pub, etc. În caz contrar, lăsați spațiul gol."
13546
 
13547
+ #: view/SeoSettings/Jsonld.php:251
13548
  msgid "Price Range"
13549
+ msgstr "Interval preț"
13550
 
13551
+ #: view/SeoSettings/Jsonld.php:264
13552
  msgid "Serves Cuisine"
13553
+ msgstr "Servește Bucătărie"
13554
 
13555
+ #: view/SeoSettings/Jsonld.php:273
 
 
13556
  msgid "Menu Link"
13557
+ msgstr "Legătură de meniu"
13558
 
13559
+ #: view/SeoSettings/Jsonld.php:282
 
 
13560
  msgid "Accept Reservations"
13561
+ msgstr "Acceptă rezervări"
13562
 
13563
+ #: view/SeoSettings/Jsonld.php:299
13564
  msgid "Your Name"
13565
  msgstr "Numele dvs"
13566
 
13567
+ #: view/SeoSettings/Jsonld.php:309
13568
  msgid "Job Title"
13569
  msgstr "Titlu"
13570
 
13571
+ #: view/SeoSettings/Jsonld.php:338
 
13572
  msgid "A short description about your job title."
13573
+ msgstr "O scurtă descriere a funcției pe care o dețineți."
13574
 
13575
+ #: view/SeoSettings/Jsonld.php:351
13576
  msgid "Set this person as a global author"
13577
+ msgstr "Setați această persoană ca autor global"
13578
 
13579
+ #: view/SeoSettings/Jsonld.php:354
13580
  msgid "Overwrite the posts/pages author(s) with this author in Json-LD."
13581
  msgstr ""
13582
+ "Suprascrieți autorul (autorii) postărilor/paginilor cu acest autor în Json-"
13583
+ "LD."
13584
 
13585
+ #: view/SeoSettings/Jsonld.php:364
 
13586
  msgid "More Json-LD Settings"
13587
+ msgstr "Mai multe setări Json-LD"
13588
 
13589
+ #: view/SeoSettings/Jsonld.php:373
 
13590
  msgid "Add Support For Woocommerce"
13591
+ msgstr "Adăugați suport pentru Woocommerce"
13592
 
13593
+ #: view/SeoSettings/Jsonld.php:376
 
13594
  msgid ""
13595
+ "Improve the WooCommerce Product and Orders Schema by enabling Squirrly to "
13596
+ "add the required data."
13597
  msgstr ""
13598
+ "Îmbunătățiți schema de produse și comenzi WooCommerce permițându-i lui "
13599
+ "Squirrly să adauge datele necesare."
13600
 
13601
+ #: view/SeoSettings/Jsonld.php:386
13602
+ msgid "Add Custom Data for WooCommerce Products"
13603
+ msgstr "Adăugați date personalizate pentru produsele WooCommerce"
13604
+
13605
+ #: view/SeoSettings/Jsonld.php:389
13606
+ msgid ""
13607
+ "Enable Squirrly to include additional metadata fields for WooCommerce "
13608
+ "Products: MPN, ISBN, EAN, UPC, GTIN, Brand, Review."
13609
+ msgstr ""
13610
+ "Activați Squirrly pentru a include câmpuri suplimentare de metadate pentru "
13611
+ "produsele WooCommerce: MPN, ISBN, EAN, UPC, GTIN, GTIN, Brand, Review."
13612
+
13613
+ #: view/SeoSettings/Jsonld.php:399
13614
+ msgid "Add Default Data for Woocommerce Products"
13615
  msgstr "Adăugați date implicite pentru produsele Woocommerce"
13616
 
13617
+ #: view/SeoSettings/Jsonld.php:402
 
13618
  msgid ""
13619
+ "Add default data for JSON-LD AggregateRating, Offers, Sku, MPN when they are "
13620
+ "missing from the product to avoid GSC errors."
13621
  msgstr ""
13622
+ "Adăugați date implicite pentru JSON-LD AggregateRating, Offers, Sku, MPN "
13623
+ "atunci când acestea lipsesc din produs pentru a evita erorile GSC."
13624
 
13625
+ #: view/SeoSettings/Jsonld.php:416
 
13626
  msgid "Add Breadcrumbs in Json-LD"
13627
+ msgstr "Adăugați Breadcrumbs în Json-LD"
13628
 
13629
+ #: view/SeoSettings/Jsonld.php:419
 
13630
  msgid ""
13631
  "Add the BreadcrumbsList Schema into Json-LD including all parent categories."
13632
  msgstr ""
13633
+ "Adăugați schema BreadcrumbsList în Json-LD, inclusiv toate categoriile "
13634
  "părinte."
13635
 
13636
+ #: view/SeoSettings/Jsonld.php:429
 
13637
  msgid "Remove other Json-LD from page"
13638
  msgstr "Eliminați alte Json-LD din pagină"
13639
 
13640
+ #: view/SeoSettings/Jsonld.php:432
 
13641
  msgid ""
13642
  "Clear the Json-LD from other plugins and theme to avoid duplicate schemas."
13643
  msgstr ""
13644
+ "Ștergeți Json-LD de la alte pluginuri și teme pentru a evita duplicate de "
13645
+ "Schema."
13646
 
13647
+ #: view/SeoSettings/Jsonld.php:444 view/SeoSettings/Metas.php:194
13648
+ #: view/SeoSettings/Social.php:412
 
13649
  msgid "Title & Description Lengths"
13650
+ msgstr "Lungimi de titlu și descriere"
13651
 
13652
+ #: view/SeoSettings/Jsonld.php:490
 
 
13653
  msgid "Next Step"
13654
+ msgstr "Pasul următor"
13655
 
13656
+ #: view/SeoSettings/Jsonld.php:494
13657
  msgid "Tips: How to optimize Json-LD Schema on all pages?"
13658
+ msgstr "Sfaturi: Cum să optimizați Schema Json-LD pe toate paginile?"
13659
 
13660
+ #: view/SeoSettings/Jsonld.php:496
13661
  #, php-format
13662
  msgid ""
13663
  "Use the %s SEO Automation %s to setup the Json-LD type based on Post Types."
13664
  msgstr ""
13665
+ "Utilizați %s SEO Automation %s pentru a configura tipul Json-LD pe baza "
13666
+ "tipurilor de post."
13667
 
13668
+ #: view/SeoSettings/Jsonld.php:497
13669
  #, php-format
13670
  msgid ""
13671
  "Use %s Bulk SEO %s to optimize the JSON-LD in the SEO Snippet for each page "
13672
  "on your website."
13673
  msgstr ""
13674
+ "Folosiți %s Bulk SEO %s pentru a optimiza JSON-LD în Snippet SEO pentru "
13675
+ "fiecare pagină de pe site-ul dvs. web."
13676
 
13677
+ #: view/SeoSettings/Links.php:35
13678
  msgid ""
13679
  "Increase the website authority by not sending authority to all external "
13680
  "links."
13681
  msgstr ""
13682
+ "Creșteți autoritatea site-ului web prin faptul că nu trimiteți autoritate "
13683
+ "către toate legăturile externe."
13684
 
13685
+ #: view/SeoSettings/Links.php:41 view/SeoSettings/Metas.php:41
 
13686
  msgid "Activate SEO Metas"
13687
+ msgstr "Activați SEO Metas"
13688
 
13689
+ #: view/SeoSettings/Links.php:76
 
13690
  msgid "Add Nofollow to external links"
13691
+ msgstr "Adăugați Nofollow la legăturile externe"
13692
 
13693
+ #: view/SeoSettings/Links.php:79
13694
  msgid ""
13695
+ "Add the 'nofollow' attribute to all external links and stop losing authority."
 
13696
  msgstr ""
13697
+ "Adăugați atributul \"nofollow\" la toate legăturile externe și nu mai "
13698
+ "pierdeți autoritate."
13699
 
13700
+ #: view/SeoSettings/Links.php:89
13701
  msgid "Open external links in New Tab"
13702
+ msgstr "Deschiderea linkurilor externe în fila nouă"
13703
 
13704
+ #: view/SeoSettings/Links.php:92
13705
  msgid ""
13706
  "Add the '_blank' attribute to all external links to open them in a new tab."
13707
  msgstr ""
13708
+ "Adăugați atributul \"_blank\" la toate linkurile externe pentru a le "
13709
+ "deschide într-o filă nouă."
13710
 
13711
+ #: view/SeoSettings/Links.php:99
 
 
13712
  msgid "Domain Exception"
13713
+ msgstr "Excepție de domeniu"
13714
 
13715
+ #: view/SeoSettings/Links.php:101
13716
  msgid "Add external links for who you don't want to apply the nofollow."
13717
+ msgstr "Adăugați linkuri externe pentru care nu doriți să aplicați nofollow."
13718
 
13719
+ #: view/SeoSettings/Links.php:135
13720
+ msgid "Manage redirects for each Post Type"
13721
+ msgstr "Gestionați redirecționările pentru fiecare tip de postare"
13722
 
13723
+ #: view/SeoSettings/Links.php:140
 
13724
  msgid "Tips: How to redirect broken URLs?"
13725
+ msgstr "Sfaturi: Cum să redirecționați URL-urile rupte?"
13726
 
13727
+ #: view/SeoSettings/Links.php:142
13728
  #, php-format
13729
  msgid ""
13730
  "Use the %s SEO Automation %s to setup the broken URLs redirect if you change "
13731
  "a post/page slug."
13732
  msgstr ""
13733
+ "Utilizați %s Automatizare SEO %s pentru a configura redirecționarea URL-"
13734
+ "urilor sparte dacă schimbați un slug de post/pagină."
13735
 
13736
+ #: view/SeoSettings/Links.php:143
13737
  msgid ""
13738
  "Squirrly SEO will add a 301 redirect to the new slug without losing any SEO "
13739
  "authority."
13740
  msgstr ""
13741
+ "Squirrly SEO va adăuga o redirecționare 301 la noul slug fără a pierde nicio "
13742
+ "autoritate SEO."
13743
 
13744
+ #: view/SeoSettings/Metas.php:35
13745
  msgid ""
13746
  "Add all Search Engine METAs like Title, Description, Canonical Link, Dublin "
13747
  "Core, Robots and more."
13748
  msgstr ""
13749
+ "Adăugați toate META-urile pentru motoarele de căutare, cum ar fi titlul, "
13750
+ "descrierea, legătura canonică, Dublin Core, Robots și multe altele."
13751
 
13752
+ #: view/SeoSettings/Metas.php:57
 
 
13753
  msgid "Optimize with SEO Patterns"
13754
+ msgstr "Optimizați cu modele SEO"
13755
 
13756
+ #: view/SeoSettings/Metas.php:62
 
13757
  msgid "Optimize all SEO Snippets"
13758
+ msgstr "Optimizați toate Snippets SEO"
13759
 
13760
+ #: view/SeoSettings/Metas.php:68
13761
  msgid "Tips: How to optimize all the pages from my website?"
13762
+ msgstr "Sfaturi: Cum să optimizez toate paginile de pe site-ul meu?"
13763
 
13764
+ #: view/SeoSettings/Metas.php:70
13765
  #, php-format
13766
  msgid ""
13767
  "Use the %s SEO Automation %s to setup SEO Patterns based on Post Types for "
13768
  "global optimization."
13769
  msgstr ""
13770
+ "Utilizați %s Automatizare SEO %s pentru a configura modele SEO bazate pe "
13771
+ "tipuri de postări pentru optimizare globală."
13772
 
13773
+ #: view/SeoSettings/Metas.php:71
13774
  #, php-format
13775
  msgid ""
13776
  "Use %s Bulk SEO %s to optimize the SEO Snippet for each page on your website."
13777
  msgstr ""
13778
+ "Utilizați %s Bulk SEO %s pentru a optimiza Snippet-ul SEO pentru fiecare "
13779
+ "pagină de pe site-ul dvs. web."
13780
 
13781
+ #: view/SeoSettings/Metas.php:80
13782
  msgid "Manage On-Page SEO Metas"
13783
+ msgstr "Gestionați META-urile SEO On-Page"
13784
 
13785
+ #: view/SeoSettings/Metas.php:88
 
13786
  msgid "Optimize the Titles"
13787
  msgstr "Optimizați titlurile"
13788
 
13789
+ #: view/SeoSettings/Metas.php:90
 
13790
  msgid ""
13791
  "Add the Title Tag in the page header. You can customize it using the Bulk "
13792
  "SEO and Squirrly SEO Snippet."
13793
  msgstr ""
13794
+ "Adăugați eticheta de titlu în antetul paginii. Îl puteți personaliza "
13795
+ "folosind Bulk SEO și Squirrly SEO Snippet."
13796
 
13797
+ #: view/SeoSettings/Metas.php:100
13798
  msgid "Optimize Descriptions"
13799
  msgstr "Optimizeazaz Descrierile"
13800
 
13801
+ #: view/SeoSettings/Metas.php:102
 
13802
  msgid ""
13803
  "Add the Description meta in the page header. You can customize it using the "
13804
  "Bulk SEO and Squirrly SEO Snippet."
13805
  msgstr ""
13806
+ "Adăugați meta Descrierea în antetul paginii. Îl puteți personaliza folosind "
13807
+ "Bulk SEO și Squirrly SEO Snippet."
13808
 
13809
+ #: view/SeoSettings/Metas.php:112
 
 
13810
  msgid "Optimize Keywords"
13811
+ msgstr "Optimizarea cuvintelor cheie"
13812
 
13813
+ #: view/SeoSettings/Metas.php:114
 
13814
  msgid ""
13815
  "Add the Keyword meta in the page header. You can customize it using the Bulk "
13816
  "SEO and Squirrly SEO Snippet."
13817
  msgstr ""
13818
+ "Adăugați cuvântul cheie meta în antetul paginii. Îl puteți personaliza "
13819
+ "folosind Bulk SEO și Squirrly SEO Snippet."
13820
 
13821
+ #: view/SeoSettings/Metas.php:115
 
13822
  msgid ""
13823
  "This meta is not mandatory for Google but other search engines still use it "
13824
  "for ranking"
13825
  msgstr ""
13826
+ "Acest meta nu este obligatoriu pentru Google, dar alte motoare de căutare îl "
13827
+ "folosesc pentru ranking"
13828
 
13829
+ #: view/SeoSettings/Metas.php:126
 
13830
  msgid "Add Canonical Meta Link"
13831
+ msgstr "Adăugați un Meta Link Canonic"
13832
 
13833
+ #: view/SeoSettings/Metas.php:128
 
13834
  msgid ""
13835
  "Add canonical link meta in the page header. You can customize the canonical "
13836
  "link on each page."
13837
  msgstr ""
13838
+ "Adăugați meta linkul canonic în antetul paginii. Puteți personaliza link-ul "
13839
  "canonic pe fiecare pagină."
13840
 
13841
+ #: view/SeoSettings/Metas.php:129
 
13842
  msgid ""
13843
  "Also add prev & next links metas in the page header when navigate between "
13844
  "blog pages."
13845
  msgstr ""
13846
+ "De asemenea, adăugați metasta linkuri prev și next în antetul paginii atunci "
13847
+ "când navigați între paginile blogului."
13848
 
13849
+ #: view/SeoSettings/Metas.php:139
 
13850
  msgid "Add Dublin Core Meta"
13851
  msgstr "Adăugați Dublin Core Meta"
13852
 
13853
+ #: view/SeoSettings/Metas.php:141
 
13854
  msgid "Add the Dublin Core meta in the page header."
13855
+ msgstr "Adăugați meta Dublin Core în antetul paginii."
13856
 
13857
+ #: view/SeoSettings/Metas.php:151
 
13858
  msgid "Add Robots Meta"
13859
+ msgstr "Adăugați Robots Meta"
13860
 
13861
+ #: view/SeoSettings/Metas.php:153
 
13862
  msgid ""
13863
  "Add the Index/Noindex and Follow/Nofollow options in Squirrly SEO Snippet."
13864
  msgstr ""
13865
+ "Adăugați opțiunile Index/Noindex și Follow/Nofollow în Squirrly SEO Snippet."
 
13866
 
13867
+ #: view/SeoSettings/Metas.php:154
 
13868
  msgid "Add googlebot and bingbot METAs for better performance."
13869
  msgstr "Adăugați META-uri googlebot și bingbot pentru o performanță mai bună."
13870
 
13871
+ #: view/SeoSettings/Metas.php:161
 
13872
  msgid "More SEO Settings"
13873
+ msgstr "Mai multe setări SEO"
13874
 
13875
+ #: view/SeoSettings/Metas.php:169
 
13876
  msgid "Add the Post tags in Keyword META"
13877
+ msgstr "Adăugați etichetele Post în META cuvinte cheie"
13878
 
13879
+ #: view/SeoSettings/Metas.php:171
 
13880
  msgid ""
13881
  "Add all the tags from your posts as keywords. Not recommended when you use "
13882
  "Keywords in Squirrly SEO Snippet."
13883
  msgstr ""
13884
+ "Adăugați toate etichetele din postările dvs. ca cuvinte cheie. Nu este "
13885
+ "recomandat atunci când folosiți cuvinte cheie în Squirrly SEO Snippet."
13886
 
13887
+ #: view/SeoSettings/Metas.php:181
 
13888
  msgid "Activate SEO Snippet in Frontend"
13889
+ msgstr "Activați Snippet SEO în Frontend"
13890
 
13891
+ #: view/SeoSettings/Metas.php:183
 
13892
  msgid ""
13893
  "Load Squirrly SEO Snippet in Frontend to customize the SEO directly from "
13894
  "page preview."
13895
  msgstr ""
13896
+ "Încărcați Squirrly SEO Snippet în Frontend pentru a personaliza SEO direct "
13897
+ "din previzualizarea paginii."
13898
 
13899
+ #: view/SeoSettings/Robots.php:34
 
13900
  msgid ""
13901
  "A robots.txt file tells search engine crawlers which pages or files the "
13902
  "crawler can or can't request from your site."
13903
  msgstr ""
13904
+ "Un fișier robots.txt le spune crawlerelor motoarelor de căutare ce pagini "
13905
+ "sau fișiere pot sau nu pot solicita crawlerele de pe site-ul dumneavoastră."
13906
 
13907
+ #: view/SeoSettings/Robots.php:40
 
13908
  msgid "Activate Robots"
13909
+ msgstr "Activați roboții"
13910
 
13911
+ #: view/SeoSettings/Robots.php:61
 
13912
  msgid "Edit the Robots.txt data"
13913
+ msgstr "Editați datele din Robots.txt"
13914
 
13915
+ #: view/SeoSettings/Robots.php:63
 
13916
  msgid ""
13917
  "Does not physically create the robots.txt file. The best option for "
13918
  "Multisites."
13919
  msgstr ""
13920
  "Nu creează fizic fișierul robots.txt. Cea mai bună opțiune pentru multisite."
13921
 
13922
+ #: view/SeoSettings/Robots.php:76
13923
  msgid ""
13924
  "Edit the Robots.txt only if you know what you're doing. Adding wrong rules "
13925
  "in Robots can lead to SEO ranking errors or block your posts in Google."
13926
  msgstr ""
13927
+ "Modificați Robots.txt numai dacă știți ce faceți. Adăugarea unor reguli "
13928
+ "greșite în Robots poate duce la erori de poziționare SEO sau vă poate bloca "
13929
+ "postările în Google."
13930
 
13931
+ #: view/SeoSettings/Sitemap.php:61
 
13932
  msgid "Blogging Frequency"
13933
+ msgstr "Frecvența de blogging"
13934
 
13935
+ #: view/SeoSettings/Sitemap.php:64
 
13936
  msgid "How often do you write new posts?"
13937
+ msgstr "Cât de des scrieți postări noi?"
13938
 
13939
+ #: view/SeoSettings/Sitemap.php:68
 
13940
  msgid "every hour"
13941
+ msgstr "în fiecare oră"
13942
 
13943
+ #: view/SeoSettings/Sitemap.php:69
 
13944
  msgid "every day"
13945
+ msgstr "în fiecare zi"
13946
 
13947
+ #: view/SeoSettings/Sitemap.php:70
 
13948
  msgid "1-3 times per week"
13949
+ msgstr "1-3 ori pe săptămână"
13950
 
13951
+ #: view/SeoSettings/Sitemap.php:71
 
13952
  msgid "1-3 times per month"
13953
+ msgstr "1-3 ori pe lună"
13954
 
13955
+ #: view/SeoSettings/Sitemap.php:72
 
13956
  msgid "1-3 times per year"
13957
+ msgstr "1-3 ori pe an"
13958
 
13959
+ #: view/SeoSettings/Sitemap.php:84
 
13960
  msgid "Combine Languages in Sitemap"
13961
+ msgstr "Combinați limbile în Sitemap"
13962
 
13963
+ #: view/SeoSettings/Sitemap.php:87
 
13964
  msgid "Add all languages in the same sitemap.xml file"
13965
  msgstr "Adăugați toate limbile în același fișier sitemap.xml"
13966
 
13967
+ #: view/SeoSettings/Sitemap.php:88
 
13968
  msgid ""
13969
  "If not selected, you have to add the language slug for each snippet. e.g. /"
13970
  "en/sitemap.xml"
13971
  msgstr ""
13972
+ "Dacă nu este selectat, trebuie să adăugați slug-ul limbii pentru fiecare "
13973
+ "snippet. de exemplu /en/sitemap.xml"
13974
 
13975
+ #: view/SeoSettings/Sitemap.php:97
 
13976
  msgid "Build Sitemaps for"
13977
+ msgstr "Construiți Sitemaps pentru"
13978
 
13979
+ #: view/SeoSettings/Sitemap.php:101
13980
+ #, php-format
13981
  msgid ""
13982
  "Check the sitemap you want Squirrly to build for your website. Your sitemap "
13983
  "will be %s"
13984
  msgstr ""
13985
+ "Verificați harta site-ului pe care doriți ca Squirrly să o construiască "
13986
+ "pentru site-ul dumneavoastră. Sitemap-ul dvs. va fi %s"
13987
 
13988
+ #: view/SeoSettings/Sitemap.php:102
 
13989
  msgid ""
13990
  "Verify your sitemaps after you activate them to have data. Uncheck them if "
13991
  "they don't have URLs to avoid Google errors."
13992
  msgstr ""
13993
+ "Verificați sitemaps după ce le activați pentru a avea date. Debifați-le dacă "
13994
+ "nu au URL-uri pentru a evita erorile Google."
13995
 
13996
+ #: view/SeoSettings/Sitemap.php:111
13997
  msgid "Home Page"
13998
  msgstr "Pagina principala"
13999
 
14000
+ #: view/SeoSettings/Sitemap.php:112
 
14001
  msgid "Build the sitemap for the home page."
14002
  msgstr "Construiți harta site-ului pentru pagina principală."
14003
 
14004
+ #: view/SeoSettings/Sitemap.php:119 view/SeoSettings/Sitemap.php:155
14005
+ #: view/SeoSettings/Sitemap.php:175 view/SeoSettings/Sitemap.php:197
14006
+ #: view/SeoSettings/Sitemap.php:218 view/SeoSettings/Sitemap.php:240
14007
+ #: view/SeoSettings/Sitemap.php:260 view/SeoSettings/Sitemap.php:308
 
14008
  msgid "Deactivated from SEO Automation."
14009
+ msgstr "Dezactivat din SEO Automation."
14010
 
14011
+ #: view/SeoSettings/Sitemap.php:131
 
14012
  msgid "Google News"
14013
+ msgstr "Google News"
14014
 
14015
+ #: view/SeoSettings/Sitemap.php:134
14016
+ #, php-format
14017
  msgid ""
14018
  "Only if you have a news website. Make sure you submit your website to "
14019
  "%sGoogle News%s first."
14020
  msgstr ""
14021
+ "Doar dacă aveți un site de știri. Asigurați-vă că trimiteți mai întâi "
14022
+ "site-ul dvs. la %sGoogle News%s."
14023
 
14024
+ #: view/SeoSettings/Sitemap.php:147
14025
  msgid "Posts"
14026
  msgstr "Articole"
14027
 
14028
+ #: view/SeoSettings/Sitemap.php:148
 
14029
  msgid "Build the sitemap for your posts."
14030
+ msgstr "Construiți harta site-ului pentru postările dvs."
14031
 
14032
+ #: view/SeoSettings/Sitemap.php:167
14033
  msgid "Attachments"
14034
  msgstr "Atașamente"
14035
 
14036
+ #: view/SeoSettings/Sitemap.php:168
 
14037
  msgid "Only recommended if you have a photography website."
14038
+ msgstr "Recomandat doar dacă aveți un site de fotografie."
14039
 
14040
+ #: view/SeoSettings/Sitemap.php:189
14041
  msgid "Categories"
14042
  msgstr "Categorii"
14043
 
14044
+ #: view/SeoSettings/Sitemap.php:190
 
14045
  msgid "Build the sitemap for your post categories."
14046
+ msgstr "Construiți harta site-ului pentru categoriile de postări."
14047
 
14048
+ #: view/SeoSettings/Sitemap.php:210
14049
  msgid "Tags"
14050
  msgstr "Etichete"
14051
 
14052
+ #: view/SeoSettings/Sitemap.php:211
 
14053
  msgid "Build the sitemap for your post tags."
14054
+ msgstr "Construiți harta site-ului pentru etichetele posturilor dumneavoastră."
14055
 
14056
+ #: view/SeoSettings/Sitemap.php:232
14057
  msgid "Pages"
14058
  msgstr "Pagini"
14059
 
14060
+ #: view/SeoSettings/Sitemap.php:233
 
14061
  msgid "Build the sitemap for your pages."
14062
+ msgstr "Construiți harta site-ului pentru paginile dvs."
14063
 
14064
+ #: view/SeoSettings/Sitemap.php:252
14065
  msgid "Archive"
14066
  msgstr "Arhiva"
14067
 
14068
+ #: view/SeoSettings/Sitemap.php:253
 
14069
  msgid "Build the sitemap for your archive links."
14070
+ msgstr "Construiți harta site-ului pentru linkurile de arhivă."
14071
 
14072
+ #: view/SeoSettings/Sitemap.php:274
14073
  msgid "Custom Taxonomies"
14074
  msgstr "Taxonomies personalizate"
14075
 
14076
+ #: view/SeoSettings/Sitemap.php:275
 
14077
  msgid "Build the sitemap for your custom post type categories and tags."
14078
  msgstr ""
14079
+ "Creați harta site-ului pentru categoriile și etichetele de tip post "
14080
+ "personalizat."
14081
 
14082
+ #: view/SeoSettings/Sitemap.php:285
14083
  msgid "Custom Posts"
14084
  msgstr "Adaugă postări personalizate"
14085
 
14086
+ #: view/SeoSettings/Sitemap.php:286
 
14087
  msgid ""
14088
  "Build the sitemap for your custom post types (other than WP posts and pages)."
14089
  msgstr ""
14090
+ "Construiți harta site-ului pentru tipurile de postări personalizate (altele "
14091
  "decât postările și paginile WP)."
14092
 
14093
+ #: view/SeoSettings/Sitemap.php:299
14094
  msgid "Products"
14095
  msgstr "Produse"
14096
 
14097
+ #: view/SeoSettings/Sitemap.php:302
 
14098
  msgid "Build the sitemap for your e-commerce products."
14099
  msgstr "Construiți harta site-ului pentru produsele dvs. de comerț electronic."
14100
 
14101
+ #: view/SeoSettings/Sitemap.php:331
 
14102
  msgid "Include Images in Sitemap"
14103
  msgstr "Includeți imagini în Sitemap"
14104
 
14105
+ #: view/SeoSettings/Sitemap.php:334
 
14106
  msgid ""
14107
  "Add the image tag for each post with feature image to index your images in "
14108
  "Google Image Search."
14109
  msgstr ""
14110
+ "Adăugați tag-ul de imagine pentru fiecare postare cu imaginea caracteristică "
14111
+ "pentru a vă indexa imaginile în Google Image Search."
14112
 
14113
+ #: view/SeoSettings/Sitemap.php:344
 
14114
  msgid "Include Videos in Sitemap"
14115
  msgstr "Includeți videoclipuri în Sitemap"
14116
 
14117
+ #: view/SeoSettings/Sitemap.php:347
 
14118
  msgid "Add the video tag for each post with embed video in it."
14119
  msgstr ""
14120
+ "Adăugați tag-ul video pentru fiecare postare în care este încorporat un "
14121
+ "videoclip."
14122
 
14123
+ #: view/SeoSettings/Sitemap.php:357
 
14124
  msgid "Ping New Posts to Search Engines"
14125
+ msgstr "Ping postări noi către motoarele de căutare"
14126
 
14127
+ #: view/SeoSettings/Sitemap.php:360
 
14128
  msgid "Ping your sitemap to Search Engines when a new post is published."
14129
  msgstr ""
14130
+ "Trimiteți harta site-ului dvs. către motoarele de căutare atunci când este "
14131
+ "publicată o nouă postare."
14132
 
14133
+ #: view/SeoSettings/Sitemap.php:371
 
14134
  msgid "Sitemap Pagination"
14135
+ msgstr "Paginare Sitemap"
14136
 
14137
+ #: view/SeoSettings/Sitemap.php:374
14138
  msgid "Split the sitemap records in pages to prevent slow sitemap loading."
14139
  msgstr ""
14140
+ "Împărțiți înregistrările din harta site-ului în pagini pentru a preveni "
14141
+ "încărcarea lentă a hărții site-ului."
14142
 
14143
+ #: view/SeoSettings/Social.php:55
14144
  msgid ""
14145
  "Add the Social Open Graph protocol so that your Facebook shares look good."
14146
  msgstr "Adauga Open Graph meta pentru o afisare mai frumoasa in Facebook."
14147
 
14148
+ #: view/SeoSettings/Social.php:56
14149
+ #, php-format
14150
  msgid ""
14151
  "You can always update an URL on Facebook if you change its Social Media "
14152
  "Image. Visit %sOpen Graph Debugger%s"
14153
  msgstr ""
14154
  "Puteți actualiza întotdeauna o adresă URL pe Facebook dacă îi schimbați "
14155
+ "imaginea din Social Media. Vizitați %sOpen Graph Debugger%s"
14156
 
14157
+ #: view/SeoSettings/Social.php:64
14158
+ msgid "Default Open Graph Image"
14159
+ msgstr "Imagine Open Graph implicită"
14160
+
14161
+ #: view/SeoSettings/Social.php:65
14162
+ msgid ""
14163
+ "Set an Open Graph default Image to load when you don't have any image for a "
14164
+ "URL set."
14165
+ msgstr ""
14166
+ "Setați o imagine implicită Open Graph care să se încarce atunci când nu "
14167
+ "aveți nicio imagine pentru o adresă URL setată."
14168
+
14169
+ #: view/SeoSettings/Social.php:76
14170
  msgid "Facebook Share Language"
14171
+ msgstr "Limba de partajare Facebook"
14172
 
14173
+ #: view/SeoSettings/Social.php:79
 
14174
  msgid ""
14175
  "Use this so that Facebook can automatically translate the text into the "
14176
  "reader's language"
14178
  "Folosiți acest lucru pentru ca Facebook să poată traduce automat textul în "
14179
  "limba cititorului"
14180
 
14181
+ #: view/SeoSettings/Social.php:228
14182
  msgid "Facebook App ID"
14183
  msgstr "Facebook App ID"
14184
 
14185
+ #: view/SeoSettings/Social.php:230
14186
+ #, php-format
14187
  msgid ""
14188
  "Add the %sFacebook App ID%s to create a connection between your Facebook "
14189
  "Page and your Website."
14190
  msgstr ""
14191
+ "Adăugați %sFacebook App ID%s pentru a crea o conexiune între pagina dvs. de "
14192
+ "Facebook și site-ul dvs. web."
14193
 
14194
+ #: view/SeoSettings/Social.php:249 view/SeoSettings/Social.php:262
14195
+ #: view/SeoSettings/Social.php:275
 
14196
  msgid "Facebook Admin ID"
14197
+ msgstr "ID-ul de administrator Facebook"
14198
 
14199
+ #: view/SeoSettings/Social.php:251 view/SeoSettings/Social.php:263
 
14200
  msgid ""
14201
  "Similar to Facebook App ID, Facebook Admin ID connects your Facebook Page to "
14202
  "your Website."
14203
  msgstr ""
14204
+ "Similar cu Facebook App ID, Facebook Admin ID conectează pagina dvs. de "
14205
+ "Facebook la site-ul dvs. web."
14206
 
14207
+ #: view/SeoSettings/Social.php:282
 
14208
  msgid "Add multiple Facebook Admin IDs"
14209
+ msgstr "Adăugați mai multe ID-uri de administrator Facebook"
14210
 
14211
+ #: view/SeoSettings/Social.php:287
14212
+ msgid "Twitter Card Settings"
14213
+ msgstr "Setări pentru cardul Twitter"
14214
+
14215
+ #: view/SeoSettings/Social.php:298
14216
  msgid ""
14217
  "Add the Twitter Card in your tweets so that your Twitter shares look good."
14218
  msgstr ""
14219
+ "Adăugați cardul Twitter în tweet-urile dvs. pentru ca acțiunile dvs. pe "
14220
  "Twitter să arate bine."
14221
 
14222
+ #: view/SeoSettings/Social.php:299
14223
+ #, php-format
14224
  msgid ""
14225
  "Make sure you validate the twitter card with your Twitter account. Visit "
14226
  "%sTwitter Card Validator%s"
14227
  msgstr ""
14228
+ "Asigură-tevalidezi cardul Twitter cu contul tău de Twitter. Vizitați "
14229
+ "%sTwitter Card Validator%s"
14230
 
14231
+ #: view/SeoSettings/Social.php:308
14232
+ msgid "Default Twitter Card Image"
14233
+ msgstr "Imaginea implicită a cardului Twitter"
14234
+
14235
+ #: view/SeoSettings/Social.php:309
14236
+ msgid ""
14237
+ "Set a Twitter Card default Image to load when you don't have any image for a "
14238
+ "URL set."
14239
+ msgstr ""
14240
+ "Setați o imagine implicită a cardului Twitter pentru a o încărca atunci când "
14241
+ "nu aveți nicio imagine pentru o adresă URL setată."
14242
+
14243
+ #: view/SeoSettings/Social.php:323
14244
  msgid "Share Large Images"
14245
+ msgstr "Distribuie imagini mari"
14246
 
14247
+ #: view/SeoSettings/Social.php:326
 
14248
  msgid ""
14249
  "Activate this option only if you upload images with sizes between 500px and "
14250
  "4096px width in Twitter Card."
14252
  "Activați această opțiune numai dacă încărcați imagini cu dimensiuni între "
14253
  "500px și 4096px lățime în Twitter Card."
14254
 
14255
+ #: view/SeoSettings/Social.php:327
14256
+ #, php-format
14257
  msgid ""
14258
  "This option will show the twitter card image as a shared image and not as a "
14259
  "summary. Visit %sSummary Card with Large Image%s"
14260
  msgstr ""
14261
+ "Această opțiune va afișa imaginea cardului Twitter ca imagine partajată și "
14262
+ "nu ca rezumat. Vizitați %sCarte de rezumat cu imagine mare%s"
14263
 
14264
+ #: view/SeoSettings/Social.php:335
14265
  msgid "Social Media Accounts"
14266
  msgstr "Conturi sociale media"
14267
 
14268
+ #: view/SeoSettings/Social.php:339
 
14269
  msgid ""
14270
  "Add your Social Media account for JSON-LD Structured data, Open Graph, and "
14271
  "Twitter Card."
14272
  msgstr ""
14273
+ "Adăugați contul dvs. de social media pentru date structurate JSON-LD, Open "
14274
  "Graph și Twitter Card."
14275
 
14276
+ #: view/SeoSettings/Social.php:345
14277
  msgid "Twitter Profile URL"
14278
  msgstr "Profilul URL"
14279
 
14280
+ #: view/SeoSettings/Social.php:347
 
14281
  msgid "Required for Twitter Card Validator"
14282
+ msgstr "Necesar pentru Twitter Card Validator"
14283
 
14284
+ #: view/SeoSettings/Social.php:356
 
14285
  msgid "Facebook Profile or Page URL"
14286
+ msgstr "Profilul Facebook sau URL-ul paginii"
14287
 
14288
+ #: view/SeoSettings/Social.php:367
14289
  msgid "Linkedin Profile URL"
14290
  msgstr "URL LinkedIn"
14291
 
14292
+ #: view/SeoSettings/Social.php:377
14293
  msgid "Pinterest Profile URL"
14294
  msgstr "Pinterest adresa URL a profilului"
14295
 
14296
+ #: view/SeoSettings/Social.php:387
 
14297
  msgid "Instagram Profile URL"
14298
+ msgstr "URL profil Instagram"
14299
 
14300
+ #: view/SeoSettings/Social.php:397
 
14301
  msgid "Youtube Channel URL"
14302
+ msgstr "URL-ul canalului Youtube"
14303
 
14304
+ #: view/SeoSettings/Tracking.php:61
14305
  msgid "Google Analytics ID"
14306
  msgstr "Google Analytics ID"
14307
 
14308
+ #: view/SeoSettings/Tracking.php:63
14309
+ #, php-format
14310
  msgid ""
14311
  "Squirrly adds the Google Tracking script for your Analytics ID. %sGet the "
14312
  "Analytics ID%s"
14313
  msgstr ""
14314
+ "Squirrly adaugă scriptul de urmărire Google pentru ID-ul dvs. de analiză. "
14315
+ "%sObțineți ID-ul Analytics%s"
14316
 
14317
+ #: view/SeoSettings/Tracking.php:81
 
14318
  msgid "Get GA Code"
14319
  msgstr "Obțineți codul GA"
14320
 
14321
+ #: view/SeoSettings/Tracking.php:90
 
14322
  msgid "Google Tracking Mode"
14323
+ msgstr "Modul de urmărire Google"
14324
 
14325
+ #: view/SeoSettings/Tracking.php:92
14326
+ #, php-format
14327
  msgid ""
14328
  "Choose gtag.js if you use %sGoogle Tag Manager%s or the %sGoogle Analytics "
14329
  "4%s. Otherwise select analytics.js to track the website traffic."
14330
  msgstr ""
14331
+ "Alegeți gtag.js dacă folosiți %sGoogle Tag Manager%s sau %sGoogle Analytics "
14332
+ "4%s. În caz contrar, selectați analytics.js pentru a urmări traficul de pe "
14333
+ "site."
14334
 
14335
+ #: view/SeoSettings/Tracking.php:96
 
14336
  msgid "analytics.js"
14337
  msgstr "analytics.js"
14338
 
14339
+ #: view/SeoSettings/Tracking.php:97
 
14340
  msgid "gtag.js"
14341
  msgstr "gtag.js"
14342
 
14343
+ #: view/SeoSettings/Tracking.php:111
 
14344
  msgid "Facebook Pixel"
14345
  msgstr "Facebook Pixel"
14346
 
14347
+ #: view/SeoSettings/Tracking.php:113
14348
+ #, php-format
14349
  msgid ""
14350
  "Use FB Pixel to track the visitors events and to use Facebook Ads more "
14351
  "efficient. %sLearn More%s"
14352
  msgstr ""
14353
  "Utilizați FB Pixel pentru a urmări evenimentele vizitatorilor și pentru a "
14354
+ "utiliza Facebook Ads mai eficient. %sÎnvățați mai multe%s"
14355
 
14356
+ #: view/SeoSettings/Tracking.php:129
14357
  msgid "Load the AMP Support on AMP pages"
14358
+ msgstr "Încărcați suportul AMP pe paginile AMP"
14359
 
14360
+ #: view/SeoSettings/Tracking.php:132
14361
  #, php-format
14362
  msgid ""
14363
  "Load the Accelerate Mobile Pages (AMP) support for plugins like %sAMP for WP"
14364
  "%s or %sAMP%s detected"
14365
  msgstr ""
14366
+ "Încărcați suportul pentru Accelerate Mobile Pages (AMP) pentru plugin-uri "
14367
+ "precum %sAMP pentru WP%s sau %sAMP%s detectate"
14368
 
14369
+ #: view/SeoSettings/Tracking.php:142
 
14370
  msgid "Load Tracking for Logged Users"
14371
+ msgstr "Urmărirea încărcăturii pentru utilizatorii înregistrați"
14372
 
14373
+ #: view/SeoSettings/Tracking.php:145
 
14374
  msgid "Load the tracking codes for logged users too."
14375
  msgstr "Încărcați codurile de urmărire și pentru utilizatorii conectați."
14376
 
14377
+ #: view/SeoSettings/Webmaster.php:37
 
14378
  msgid "Activate Webmasters"
14379
+ msgstr "Activați Webmasteri"
14380
 
14381
+ #: view/SeoSettings/Webmaster.php:63
14382
+ #, php-format
 
14383
  msgid ""
14384
  "Add the Google META verification code to connect to %sGoogle Search Console%s"
14385
+ msgstr ""
14386
+ "Adăugați codul de verificare Google META pentru a vă conecta la %sGoogle "
14387
+ "Search Console%s"
14388
 
14389
+ #: view/SeoSettings/Webmaster.php:81
 
14390
  msgid "Get GSC Code"
14391
+ msgstr "Ia GSC Cod"
14392
 
14393
+ #: view/SeoSettings/Webmaster.php:94
 
14394
  msgid "Bing Webmaster Tools"
14395
+ msgstr "Bing Webmaster Tools"
14396
 
14397
+ #: view/SeoSettings/Webmaster.php:96
14398
+ #, php-format
 
14399
  msgid ""
14400
  "Add the Bing META verification code to connect to %sBing Webmaster Tool%s"
14401
+ msgstr ""
14402
+ "Adăugați codul de verificare Bing META pentru a vă conecta la %sBing "
14403
+ "Webmaster Tool%s"
14404
 
14405
+ #: view/SeoSettings/Webmaster.php:105
 
14406
  msgid "Baidu Webmaster Tools"
14407
+ msgstr "Instrumente Baidu Webmaster"
14408
 
14409
+ #: view/SeoSettings/Webmaster.php:107
14410
+ #, php-format
 
14411
  msgid ""
14412
  "Add the Baidu META verification code to connect to %sBaidu Webmaster Tool%s"
14413
+ msgstr ""
14414
+ "Adăugați codul de verificare Baidu META pentru a vă conecta la %sBaidu "
14415
+ "Webmaster Tool%s"
14416
 
14417
+ #: view/SeoSettings/Webmaster.php:116
 
14418
  msgid "Yandex Webmaster Code"
14419
+ msgstr "Codul Yandex Webmaster"
14420
 
14421
+ #: view/SeoSettings/Webmaster.php:118
14422
+ #, php-format
 
14423
  msgid ""
14424
  "Add the Yandex META verification code to connect to %sYandex Webmaster Tool%s"
14425
+ msgstr ""
14426
+ "Adăugați codul de verificare Yandex META pentru a vă conecta la %sYandex "
14427
+ "Webmaster Tool%s"
14428
 
14429
+ #: view/SeoSettings/Webmaster.php:127
 
14430
  msgid "Alexa META Code"
14431
+ msgstr "Codul Alexa META"
14432
 
14433
+ #: view/SeoSettings/Webmaster.php:129
14434
+ #, php-format
14435
  msgid ""
14436
  "Add the Alexa META code to analyze your entire website. Visit the %sAlexa "
14437
  "Marketing Tool%s"
14438
  msgstr ""
14439
+ "Adăugați codul META Alexa pentru a analiza întregul site web. Vizitați "
14440
+ "%sAlexa Marketing Tool%s"
14441
 
14442
+ #: view/SeoSettings/Webmaster.php:138
 
14443
  msgid "Pinterest Website Validator Code"
14444
+ msgstr "Codul de validare a site-ului Pinterest"
14445
 
14446
+ #: view/SeoSettings/Webmaster.php:140
14447
+ #, php-format
14448
  msgid ""
14449
  "Add the Pinterest verification code to connect your website to your "
14450
  "Pinterest account. Visit the %sRich Pins Validator%s"
14451
  msgstr ""
14452
+ "Adăugați codul de verificare Pinterest pentru a conecta site-ul dvs. la "
14453
+ "contul dvs. Pinterest. Vizitați %sRich Pins Validator%s"
14454
 
14455
+ #: view/SeoSettings/Webmaster.php:149
14456
  msgid "Norton Safe Web Code"
14457
+ msgstr "Codul Norton Safe Web"
14458
 
14459
+ #: view/SeoSettings/Webmaster.php:151
14460
+ #, php-format
14461
  msgid ""
14462
  "Add the Norton Safe Web verification code or ID to connect your website to "
14463
  "Norton Safe Web. Visit the %sNorton Ownership Verification Page%s"
14464
  msgstr ""
14465
+ "Adăugați codul de verificare Norton Safe Web sau ID-ul pentru a conecta "
14466
+ "site-ul dvs. la Norton Safe Web. Vizitați pagina de verificare a "
14467
+ "proprietății %sNorton%s"
14468
 
14469
  #. Plugin Name of the plugin/theme
 
14470
  msgid "Squirrly SEO 2021 (Smart Strategy)"
14471
+ msgstr "Squirrly SEO 2021 (Strategie inteligentă)"
14472
 
14473
  #. Plugin URI of the plugin/theme
14474
  msgid "https://wordpress.org/plugins/squirrly-seo/"
14475
+ msgstr "https://wordpress.org/plugins/squirrly-seo/"
14476
 
14477
  #. Description of the plugin/theme
14478
  msgid ""
14479
  "A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning "
14480
  "and Cloud Services. Over 300 functionalities for SEO available when you need "
14481
+ "them."
 
14482
  msgstr ""
14483
+ "Consultant SEO privat bazat pe I.A. Într-un Plugin. Alimentat de Machine "
14484
+ "Learning și servicii cloud. Peste 300 de funcționalități pentru SEO "
14485
+ "disponibile atunci când aveți nevoie de ele."
14486
 
14487
  #. Author URI of the plugin/theme
14488
  msgid "https://plugin.squirrly.co"
14489
+ msgstr "https://plugin.squirrly.co"
14490
+
14491
+ #, php-format
14492
+ #~ msgid ""
14493
+ #~ "Error: Couldn't connect to host :( . Please contact your site's webhost "
14494
+ #~ "(or webmaster) and request them to add %s to their IP whitelist."
14495
+ #~ msgstr ""
14496
+ #~ "Eroare: Nu s-a putut conecta la gazdă :( . Vă rugăm să contactați gazda "
14497
+ #~ "site-ului dvs. (sau webmasterul) și să le cereți să adauge %s la lista "
14498
+ #~ "albă de IP-uri."
14499
+
14500
+ #~ msgid "Could not send your information to Squirrly. Please try again."
14501
+ #~ msgstr ""
14502
+ #~ "Nu am putut trimite informațiile dvs. către Squirrly. Vă rugăm să "
14503
+ #~ "încercați din nou."
14504
+
14505
+ #~ msgid "Bulk Seo"
14506
+ #~ msgstr "Bulk SEO"
14507
+
14508
+ #, fuzzy
14509
+ #~| msgid "Search it:"
14510
+ #~ msgid "Search volume"
14511
+ #~ msgstr "Se cauta:"
14512
+
14513
+ #, fuzzy, php-format
14514
+ #~ msgid ""
14515
+ #~ "To turn this task to green, go and find a keyword that has a good search "
14516
+ #~ "volume. (meaning that many people search on Google for this keyword every "
14517
+ #~ "single month). %s The Research features from Squirrly SEO will indicate "
14518
+ #~ "if the volume is big enough. %s Since these are the most important pages "
14519
+ #~ "on your website, you need to make sure that you get the maximum number of "
14520
+ #~ "people possible to find this page. %s If you target keyword searches with "
14521
+ #~ "low volumes, then you'll end up having just 2 or 3 people every month "
14522
+ #~ "visiting this page. And then all the effort will have been for nothing."
14523
+ #~ msgstr ""
14524
+ #~ "Pentru a transforma această sarcină în verde, accesați un cuvânt cheie "
14525
+ #~ "care are un volum de căutare bun. (ceea ce înseamnă că multe persoane "
14526
+ #~ "caută pe Google acest cuvânt cheie în fiecare lună). %s Caracteristicile "
14527
+ #~ "de cercetare de la Squirrly SEO vor indica dacă volumul este suficient de "
14528
+ #~ "mare. %s Întrucât acestea sunt cele mai importante pagini de pe site-ul "
14529
+ #~ "dvs. web, trebuie să vă asigurați că obțineți numărul maxim de persoane "
14530
+ #~ "posibile pentru a găsi această pagină. %s Dacă vizați căutările de "
14531
+ #~ "cuvinte cheie cu volum redus, veți ajunge să aveți doar 2 sau 3 persoane "
14532
+ #~ "în fiecare lună care vizitează această pagină. Și atunci tot efortul va "
14533
+ #~ "fi fost degeaba."
14534
+
14535
+ #, fuzzy
14536
+ #~ msgid "Let Squirrly API get data for Focus Pages"
14537
+ #~ msgstr "Permiteți Squirrly API să obțină date pentru Focus Pages"
14538
+
14539
+ #, fuzzy
14540
+ #~ msgid "Deactivate Squirrly SEO"
14541
+ #~ msgstr "Squirrly article rank"
14542
+
14543
+ #, fuzzy
14544
+ #~ msgid ""
14545
+ #~ "It will offer the same level of SEO performance, but it will be less "
14546
+ #~ "customizable."
14547
+ #~ msgstr ""
14548
+ #~ "Va oferi același nivel de performanță SEO, dar va fi mai puțin "
14549
+ #~ "personalizabil."
14550
+
14551
+ #, fuzzy
14552
+ #~ msgid "Welcome to Squirrly SEO 2021 (Smart Strategy)"
14553
+ #~ msgstr "Bine ați venit la Squirrly SEO 2020 (Strategie inteligentă)"
14554
+
14555
+ #, fuzzy
14556
+ #~ msgid "Welcome to Squirrly Briefcase"
14557
+ #~ msgstr "Bine ați venit la Serviciul Squirrly"
14558
+
14559
+ #, fuzzy
14560
+ #~ msgid ""
14561
+ #~ "Note! It will import only the SEO for the pages that were not yet "
14562
+ #~ "optimized with Squirrly SEO."
14563
+ #~ msgstr "Restaurați setările și toate paginile optimizate cu Squirrly SEO."
14564
+
14565
+ #, fuzzy
14566
+ #~ msgid "Rollback to"
14567
+ #~ msgstr "Rollback la"
14568
+
14569
+ #, fuzzy
14570
+ #~| msgid "Squirrly"
14571
+ #~ msgid "Reinstall Squirrly SEO"
14572
+ #~ msgstr "Squirrly"
14573
 
14574
  #~ msgid "Articles optimized so far"
14575
  #~ msgstr "Articole optimizate până acum"
14595
  #~ msgid "Pages ranking in top 100 Google"
14596
  #~ msgstr "Pagini care se clasează în top 100 Google"
14597
 
 
 
 
14598
  #~ msgid "SEO Audits"
14599
  #~ msgstr "Audituri SEO"
14600
 
14711
  #~ "Add Social Open Graph protocol so that your Facebook shares look good."
14712
  #~ msgstr "Adauga Open Graph meta pentru o afisare mai frumoasa in Facebook."
14713
 
 
 
 
 
14714
  #, fuzzy
14715
  #~ msgid ""
14716
  #~ "Add Twitter Card in your tweets so that your Twitter shares look good."
14789
  #~ "Urmăriți-vă cu precizie clasamentele cu verificatorul Google SERP de "
14790
  #~ "Squirrly, ușor de utilizat"
14791
 
 
 
 
 
 
 
 
 
14792
  #, fuzzy
14793
  #~ msgid "Current JSON-LD Code"
14794
  #~ msgstr "Codul JSON-LD curent"
14919
  #~ msgid "Georgia"
14920
  #~ msgstr "Georgia"
14921
 
 
 
 
14922
  #, fuzzy
14923
  #~ msgid "Ghana "
14924
  #~ msgstr "Ghana"
15398
  #~ msgid "(BETA)"
15399
  #~ msgstr "(BETA)"
15400
 
 
 
 
 
 
15401
  #, fuzzy
15402
  #~| msgid "No results found!"
15403
  #~ msgid "No page found."
16001
  #~ msgid "Click on Sign Up button and try again ..."
16002
  #~ msgstr "Apasa butonul Sign Up pentru a incerca din nou ..."
16003
 
 
 
 
16004
  #~ msgid "I have more then one keyword!"
16005
  #~ msgstr "Am mai multe cuvinte!"
16006
 
languages/squirrly-seo.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Squirrly SEO 2020 (Smart Strategy)\n"
6
- "POT-Creation-Date: 2021-03-22 08:13+0200\n"
7
  "PO-Revision-Date: 2020-10-13 10:56+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -21,179 +21,187 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
 
24
- #: classes/RemoteController.php:279
25
  msgid "Too many API attempts, please slow down the request."
26
  msgstr ""
27
 
28
- #: classes/RemoteController.php:283
29
  msgid ""
30
  "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
31
  "in a minute."
32
  msgstr ""
33
 
34
- #: classes/RemoteController.php:1323
35
  msgid "Keyword:"
36
  msgstr ""
37
 
38
- #: classes/RemoteController.php:1324
39
  msgid "date"
40
  msgstr ""
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
- #: classes/RemoteController.php:1326 controllers/CheckSeo.php:329
49
- #: controllers/Patterns.php:21 controllers/Research.php:295
50
- #: controllers/Research.php:326 controllers/Research.php:380
51
- #: controllers/Research.php:690 view/Blocks/Snippet.php:1227
 
52
  msgid "Saved!"
53
  msgstr ""
54
 
55
- #: classes/RemoteController.php:1327
56
  msgid "Read it!"
57
  msgstr ""
58
 
59
- #: classes/RemoteController.php:1328
60
  msgid "Insert it!"
61
  msgstr ""
62
 
63
- #: classes/RemoteController.php:1329
64
  msgid "Reference"
65
  msgstr ""
66
 
67
- #: classes/RemoteController.php:1330
68
  msgid "Insert as box"
69
  msgstr ""
70
 
71
- #: classes/RemoteController.php:1331
72
  msgid "Insert Link"
73
  msgstr ""
74
 
75
- #: classes/RemoteController.php:1332
76
  msgid "Not relevant?"
77
  msgstr ""
78
 
79
- #: classes/RemoteController.php:1333
80
  msgid "Insert in your article"
81
  msgstr ""
82
 
83
- #: classes/RemoteController.php:1334
84
  msgid ":( An error occurred while processing your request. Please try again"
85
  msgstr ""
86
 
87
- #: classes/RemoteController.php:1335
88
  msgid "No results found!"
89
  msgstr ""
90
 
91
- #: classes/RemoteController.php:1336
92
  #, php-format
93
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
94
  msgstr ""
95
 
96
- #: classes/RemoteController.php:1337
97
  msgid "Has creative commons attributes"
98
  msgstr ""
99
 
100
- #: classes/RemoteController.php:1338
101
  msgid "No known copyright restrictions"
102
  msgstr ""
103
 
104
- #: classes/RemoteController.php:1339
105
  msgid ""
106
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
107
  "optimize for a keyword before publishing?"
108
  msgstr ""
109
 
110
- #: classes/RemoteController.php:1340
111
  msgid "Your Subscription has Expired"
112
  msgstr ""
113
 
114
- #: classes/RemoteController.php:1341
115
  msgid "There are no keywords saved in briefcase yet"
116
  msgstr ""
117
 
118
- #: classes/RemoteController.php:1342
119
  #, php-format
120
  msgid "Congratulations! Your article is 100% optimized!"
121
  msgstr ""
122
 
123
- #: classes/RemoteController.php:1343
124
  #, php-format
125
  msgid "appears too many times. Try to remove %s of them"
126
  msgstr ""
127
 
128
- #: classes/RemoteController.php:1344
129
  #, php-format
130
  msgid "write %s more words"
131
  msgstr ""
132
 
133
- #: classes/RemoteController.php:1345
134
  #, php-format
135
  msgid "Add the keyword in the %s of your article"
136
  msgstr ""
137
 
138
- #: classes/RemoteController.php:1346
139
  msgid "Click to keep the highlight on"
140
  msgstr ""
141
 
142
- #: classes/RemoteController.php:1347
143
  msgid "introduction"
144
  msgstr ""
145
 
146
- #: classes/RemoteController.php:1348
147
  #, php-format
148
  msgid "Write more words after the %s keyword"
149
  msgstr ""
150
 
151
- #: classes/RemoteController.php:1349
152
  msgid "or use synonyms"
153
  msgstr ""
154
 
155
- #: classes/RemoteController.php:1350
156
  #, php-format
157
  msgid "add %s more word(s)"
158
  msgstr ""
159
 
160
- #: classes/RemoteController.php:1351
161
  #, php-format
162
  msgid "or remove %s word(s)"
163
  msgstr ""
164
 
165
- #: classes/RemoteController.php:1352
166
  #, php-format
167
  msgid "add the selected keyword %s more time(s) "
168
  msgstr ""
169
 
170
- #: classes/RemoteController.php:1353
171
  #, php-format
172
  msgid "write %s more words to start calculating"
173
  msgstr ""
174
 
175
- #: classes/RemoteController.php:1354 view/Research/Research.php:49
176
  msgid "Add to Briefcase"
177
  msgstr ""
178
 
179
- #: classes/RemoteController.php:1355
180
  msgid "Add Keyword to Briefcase"
181
  msgstr ""
182
 
183
- #: classes/RemoteController.php:1356
184
  msgid "Select"
185
  msgstr ""
186
 
187
- #: classes/RemoteController.php:1357 view/Blocks/Snippet.php:133
188
- #: view/Blocks/Snippet.php:594 view/Blocks/Snippet.php:862
189
  msgid "Auto Draft"
190
  msgstr ""
191
 
192
- #: classes/RemoteController.php:1358
 
 
 
 
 
 
 
 
193
  msgid ""
194
- "You’ve already used the Live Assistant to optimize this post when creating "
195
- "it in your Page Builder. Please go back and resume your optimization work "
196
- "there."
197
  msgstr ""
198
 
199
  #: classes/helpers/Sanitize.php:196
@@ -236,59 +244,59 @@ msgstr ""
236
  msgid "The code for Facebook App must only contain numbers."
237
  msgstr ""
238
 
239
- #: classes/helpers/Tools.php:83
240
  msgid "Getting started"
241
  msgstr ""
242
 
243
- #: classes/helpers/Tools.php:108
244
  msgid "Documentation"
245
  msgstr ""
246
 
247
- #: classes/helpers/Tools.php:109
248
  msgid "Leave a review"
249
  msgstr ""
250
 
251
- #: classes/helpers/Tools.php:523
252
- msgid "Format"
253
- msgstr ""
254
-
255
- #: classes/helpers/Tools.php:542 classes/helpers/Tools.php:580
256
  msgid "Category"
257
  msgstr ""
258
 
259
- #: classes/helpers/Tools.php:561 classes/helpers/Tools.php:599
260
  msgid "Tag"
261
  msgstr ""
262
 
263
- #: classes/helpers/Tools.php:618
 
 
 
 
264
  msgid "Shipping Option"
265
  msgstr ""
266
 
267
- #: classes/helpers/Tools.php:637
268
  msgid "Author at"
269
  msgstr ""
270
 
271
- #: classes/helpers/Tools.php:695
272
  msgid "Are you looking for"
273
  msgstr ""
274
 
275
- #: classes/helpers/Tools.php:696
276
  msgid "These are the results for"
277
  msgstr ""
278
 
279
- #: classes/helpers/Tools.php:696
280
  msgid "that you can find on our website."
281
  msgstr ""
282
 
283
- #: classes/helpers/Tools.php:732
284
  msgid "Page not found"
285
  msgstr ""
286
 
287
- #: classes/helpers/Tools.php:733
288
  msgid "This page could not be found on our website."
289
  msgstr ""
290
 
291
- #: classes/helpers/Tools.php:1065
292
  msgid "For better text comparison you need to install PHP mbstring extension."
293
  msgstr ""
294
 
@@ -367,50 +375,67 @@ msgid "Displays the author's nicename"
367
  msgstr ""
368
 
369
  #: config/config.php:48
370
- msgid "Adds the author's biographical info to the post description"
371
  msgstr ""
372
 
373
  #: config/config.php:49
374
- msgid "Displays the current date"
375
  msgstr ""
376
 
377
  #: config/config.php:50
378
- msgid "Displays the date of the post/page once it's published"
379
  msgstr ""
380
 
381
  #: config/config.php:51
382
- msgid "Adds the current day"
383
  msgstr ""
384
 
385
  #: config/config.php:52
386
- msgid "Adds the current month"
387
  msgstr ""
388
 
389
  #: config/config.php:53
390
- msgid "Adds the current year"
391
  msgstr ""
392
 
393
  #: config/config.php:54
394
- msgid "Adds the title of a page's parent page"
395
  msgstr ""
396
 
397
  #: config/config.php:55
398
- msgid "Adds the product name from Woocommerce for the current product"
399
  msgstr ""
400
 
401
  #: config/config.php:56
402
- msgid "Adds the product price from Woocommerce for the current product"
403
  msgstr ""
404
 
405
  #: config/config.php:57
406
- msgid "Adds the product sale price from Woocommerce for the current product"
407
  msgstr ""
408
 
409
  #: config/config.php:58
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  msgid ""
411
  "Adds the product price currency from Woocommerce for the current product"
412
  msgstr ""
413
 
 
 
 
 
414
  #: controllers/Api.php:69
415
  msgid "Invalid Token. Please try again"
416
  msgstr ""
@@ -431,36 +456,36 @@ msgstr ""
431
  msgid "Wrong Params"
432
  msgstr ""
433
 
434
- #: controllers/Assistant.php:71 controllers/Research.php:105
435
  msgid "No keyword found."
436
  msgstr ""
437
 
438
  #: controllers/Assistant.php:110 controllers/Assistant.php:137
439
- #: controllers/Audits.php:343 controllers/Ranking.php:148
440
  #: controllers/SeoSettings.php:146 controllers/SeoSettings.php:192
441
  #: controllers/SeoSettings.php:209 controllers/SeoSettings.php:233
442
  #: controllers/SeoSettings.php:272 controllers/SeoSettings.php:301
443
- #: controllers/SeoSettings.php:332 controllers/SeoSettings.php:655
444
- #: controllers/SeoSettings.php:766 controllers/SeoSettings.php:801
445
  msgid "Saved"
446
  msgstr ""
447
 
448
  #: controllers/Assistant.php:116 controllers/BulkSeo.php:73
449
- #: controllers/Patterns.php:107 controllers/Post.php:286
450
- #: controllers/Post.php:339 controllers/Post.php:370 controllers/Post.php:405
451
- #: controllers/PostsList.php:190 controllers/Research.php:186
452
- #: controllers/Research.php:193 controllers/Research.php:231
453
- #: controllers/Research.php:253 controllers/Research.php:276
454
- #: controllers/Research.php:306 controllers/Research.php:333
455
- #: controllers/Research.php:357 controllers/Research.php:387
456
- #: controllers/Research.php:408 controllers/Research.php:489
457
- #: controllers/Research.php:640 controllers/Research.php:664
458
- #: controllers/Research.php:698 controllers/Research.php:724
459
- #: controllers/SeoSettings.php:405 controllers/SeoSettings.php:644
460
- #: controllers/SeoSettings.php:668 controllers/SeoSettings.php:681
461
- #: controllers/SeoSettings.php:702 controllers/SeoSettings.php:721
462
- #: controllers/SeoSettings.php:739 controllers/SeoSettings.php:781
463
- #: controllers/Snippet.php:171
464
  msgid "You do not have permission to perform this action"
465
  msgstr ""
466
 
@@ -468,54 +493,63 @@ msgstr ""
468
  msgid "Error: Could not save the data."
469
  msgstr ""
470
 
471
- #: controllers/Audits.php:141
472
  msgid "The audit was not found. Please load another audit."
473
  msgstr ""
474
 
475
- #: controllers/Audits.php:170
476
  msgid "Could not load the Audit Page."
477
  msgstr ""
478
 
479
- #: controllers/Audits.php:284
480
  msgid "Audit page is added. The audit may take a while so please be patient."
481
  msgstr ""
482
 
483
- #: controllers/Audits.php:287
484
  msgid "You reached the maximum number of audit pages for your account."
485
  msgstr ""
486
 
487
- #: controllers/Audits.php:290
488
  msgid "Error! Could not add the audit page."
489
  msgstr ""
490
 
491
- #: controllers/Audits.php:294
492
  msgid "Error! Could not find the audit page in your website."
493
  msgstr ""
494
 
495
- #: controllers/Audits.php:304
496
  msgid "Audit page sent for recheck. It may take a while so please be patient."
497
  msgstr ""
498
 
499
- #: controllers/Audits.php:307 controllers/Audits.php:310
 
 
 
 
 
 
 
 
500
  msgid "The audit for all pages can be made once an hour."
501
  msgstr ""
502
 
503
- #: controllers/Audits.php:320
504
  msgid "The audit page is deleted."
505
  msgstr ""
506
 
507
- #: controllers/Audits.php:322 controllers/FocusPages.php:417
508
- #: controllers/Ranking.php:175 controllers/Ranking.php:193
509
- #: controllers/Ranking.php:211 controllers/Research.php:222
510
- #: controllers/Research.php:225 controllers/Research.php:248
511
- #: controllers/Research.php:270 controllers/Research.php:328
512
- #: controllers/Research.php:352 controllers/Research.php:536
513
- #: controllers/Research.php:607 controllers/Research.php:634
514
- #: controllers/Research.php:659 controllers/Research.php:744
 
515
  msgid "Invalid params!"
516
  msgstr ""
517
 
518
- #: controllers/Audits.php:345
519
  msgid "Not a valid email address."
520
  msgstr ""
521
 
@@ -539,64 +573,66 @@ msgstr ""
539
  msgid "Focus Page does not exist or was deleted from your website."
540
  msgstr ""
541
 
542
- #: controllers/FocusPages.php:348
543
  msgid "Focus page is added. The audit may take a while so please be patient."
544
  msgstr ""
545
 
546
- #: controllers/FocusPages.php:355
547
  msgid "You reached the maximum number of focus pages for all your websites."
548
  msgstr ""
549
 
550
- #: controllers/FocusPages.php:358
551
  msgid "Error! Could not add the focus page."
552
  msgstr ""
553
 
554
- #: controllers/FocusPages.php:361
555
  msgid "Error! This focus page is not public."
556
  msgstr ""
557
 
558
- #: controllers/FocusPages.php:365 controllers/FocusPages.php:404
559
- msgid "Error! Could not find the focus page in your website."
 
560
  msgstr ""
561
 
562
- #: controllers/FocusPages.php:392
563
  msgid "Focus page sent for recheck. It may take a while so please be patient."
564
  msgstr ""
565
 
566
- #: controllers/FocusPages.php:395 controllers/FocusPages.php:399
567
  msgid "You've made too many requests, please wait a few minutes."
568
  msgstr ""
569
 
570
- #: controllers/FocusPages.php:415
571
  msgid "The focus page is deleted"
572
  msgstr ""
573
 
574
- #: controllers/Menu.php:86
575
  #, php-format
576
  msgid ""
577
  "An error occurred during activation. If this error persists, please contact "
578
  "us at: %s"
579
  msgstr ""
580
 
581
- #: controllers/Menu.php:123
582
  msgid "Dashboard"
583
  msgstr ""
584
 
585
- #. Author of the plugin/theme
586
- #: controllers/Menu.php:148 controllers/Menu.php:253 controllers/Menu.php:280
587
- #: view/Blocks/SLASearch.php:8
588
- msgid "Squirrly SEO"
589
- msgstr ""
590
-
591
- #: controllers/Menu.php:217
592
  msgid "SEO Snippet"
593
  msgstr ""
594
 
595
- #: controllers/Menu.php:232 controllers/Snippet.php:142
596
  msgid "Custom SEO"
597
  msgstr ""
598
 
599
- #: controllers/Overview.php:69
 
 
 
 
 
600
  #, php-format
601
  msgid ""
602
  "%s, why don't you start a two weeks journey for better rankings? %sStart "
@@ -604,7 +640,7 @@ msgid ""
604
  "plan.%s"
605
  msgstr ""
606
 
607
- #: controllers/Overview.php:92
608
  #, php-format
609
  msgid ""
610
  "Detected %s: We encourage you to %sImport the Settings and SEO%s from %s and "
@@ -615,133 +651,178 @@ msgstr ""
615
  msgid "Saved! This is how the preview looks like"
616
  msgstr ""
617
 
618
- #: controllers/Post.php:333
619
  msgid "Could not add the demo post."
620
  msgstr ""
621
 
622
- #: controllers/Post.php:394 controllers/Post.php:419
623
  msgid "Can't get the post URL"
624
  msgstr ""
625
 
626
- #: controllers/Post.php:424
627
  msgid "Invalid request"
628
  msgstr ""
629
 
630
- #: controllers/PostsList.php:72 controllers/PostsList.php:123
631
  msgid "SQ Snippet"
632
  msgstr ""
633
 
634
- #: controllers/PostsList.php:73 models/PostsList.php:21
635
  msgid "Optimized"
636
  msgstr ""
637
 
638
- #: controllers/PostsList.php:208
639
  msgid "Network Error. Please Refresh."
640
  msgstr ""
641
 
642
- #: controllers/PostsList.php:212
643
  #, php-format
644
  msgid "Maintenance. %sWe'll be back in a minute."
645
  msgstr ""
646
 
647
- #: controllers/PostsList.php:243
648
  msgid "Not Public"
649
  msgstr ""
650
 
651
- #: controllers/PostsList.php:244
652
  msgid "Could not process"
653
  msgstr ""
654
 
655
- #: controllers/PostsList.php:245
656
  msgid "The Squirrly subscription has expired!"
657
  msgstr ""
658
 
659
- #: controllers/Ranking.php:87
660
  msgid "Could not load the Rankings."
661
  msgstr ""
662
 
663
- #: controllers/Ranking.php:103
664
  msgid "Could not load data."
665
  msgstr ""
666
 
667
- #: controllers/Ranking.php:157
668
  #, php-format
669
  msgid "Could not refresh the rank. Please check your SERP credits %shere%s"
670
  msgstr ""
671
 
672
- #: controllers/Ranking.php:159
673
  #, php-format
674
  msgid "%s is queued and the rank will be checked soon."
675
  msgstr ""
676
 
677
- #: controllers/Ranking.php:170
678
  msgid "The keyword is deleted."
679
  msgstr ""
680
 
681
- #: controllers/Ranking.php:172
682
  msgid "Could not delete the keyword!"
683
  msgstr ""
684
 
685
- #: controllers/Ranking.php:191 controllers/Research.php:246
686
- #: controllers/Research.php:268 controllers/Research.php:350
687
- #: controllers/Research.php:657 controllers/Research.php:742
688
  msgid "Deleted!"
689
  msgstr ""
690
 
691
- #: controllers/Ranking.php:208
692
  msgid "Sent!"
693
  msgstr ""
694
 
695
- #: controllers/Research.php:212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
696
  msgid "Keyword Saved. The rank check will be ready in a minute."
697
  msgstr ""
698
 
699
- #: controllers/Research.php:214 controllers/Research.php:218
700
  msgid "Keyword Saved!"
701
  msgstr ""
702
 
703
- #: controllers/Research.php:301
704
  msgid "Invalid Label or Color!"
705
  msgstr ""
706
 
707
- #: controllers/Research.php:382 controllers/Research.php:692
708
- #: controllers/Research.php:718
709
  msgid "Invalid Keyword!"
710
  msgstr ""
711
 
712
- #: controllers/Research.php:441 controllers/Research.php:455
713
- #: controllers/Research.php:477 controllers/Research.php:480
714
  #: controllers/SeoSettings.php:454 controllers/SeoSettings.php:457
715
  #: controllers/SeoSettings.php:502 controllers/SeoSettings.php:505
716
  msgid "Error! The backup is not valid."
717
  msgstr ""
718
 
719
- #: controllers/Research.php:475 controllers/SeoSettings.php:452
720
  msgid "Great! The backup is restored."
721
  msgstr ""
722
 
723
- #: controllers/Research.php:483 controllers/SeoSettings.php:460
724
  #: controllers/SeoSettings.php:508
725
  msgid "Error! You have to enter a previously saved backup file."
726
  msgstr ""
727
 
728
- #: controllers/Research.php:504
729
  msgid "Could not add the keyword to SERP Check. Please try again."
730
  msgstr ""
731
 
732
- #: controllers/Research.php:506
733
  msgid "The keyword is added to SERP Check."
734
  msgstr ""
735
 
736
- #: controllers/Research.php:509
737
  msgid "Invalid parameters."
738
  msgstr ""
739
 
740
- #: controllers/Research.php:601
741
  msgid "Keyword Research limit exceeded"
742
  msgstr ""
743
 
744
- #: controllers/Research.php:716
745
  msgid "The keywords are added to SERP Check!"
746
  msgstr ""
747
 
@@ -761,7 +842,7 @@ msgstr ""
761
  msgid "Great! The SEO backup is restored."
762
  msgstr ""
763
 
764
- #: controllers/SeoSettings.php:536 controllers/SeoSettings.php:584
765
  #, php-format
766
  msgid ""
767
  "Success! The import from %s was completed successfully and your SEO is safe!"
@@ -779,39 +860,39 @@ msgstr ""
779
  msgid "No settings found for this plugin/theme."
780
  msgstr ""
781
 
782
- #: controllers/SeoSettings.php:604 models/Rollback.php:98
783
  msgid "Rollback to Previous Version"
784
  msgstr ""
785
 
786
- #: controllers/SeoSettings.php:626
787
  msgid "Reinstall Current Version"
788
  msgstr ""
789
 
790
- #: controllers/SeoSettings.php:657
791
  msgid "Could not save the changes"
792
  msgstr ""
793
 
794
- #: controllers/SeoSettings.php:692
795
  msgid ""
796
  "Error! Could not get the code. Connect to Google Search Console and validate "
797
  "the connection."
798
  msgstr ""
799
 
800
- #: controllers/SeoSettings.php:712
801
  msgid ""
802
  "Error! Could not get the tracking code. Connect to Google Analytics and get "
803
  "the website tracking code from Admin area."
804
  msgstr ""
805
 
806
- #: controllers/SeoSettings.php:774 controllers/SeoSettings.php:809
807
  msgid "Could not add the post type."
808
  msgstr ""
809
 
810
- #: controllers/Snippet.php:87
811
  msgid "Squirrly SEO Snippet"
812
  msgstr ""
813
 
814
- #: controllers/Snippet.php:190
815
  #, php-format
816
  msgid ""
817
  "Could not save the snippet. Please check the database table %s integrity."
@@ -825,7 +906,7 @@ msgstr ""
825
  msgid "No message."
826
  msgstr ""
827
 
828
- #: core/Blocklogin.php:53
829
  #, php-format
830
  msgid ""
831
  "We found your email, so it means you already have a Squirrly.co account. "
@@ -833,48 +914,41 @@ msgid ""
833
  "password, click %shere%s"
834
  msgstr ""
835
 
836
- #: core/Blocklogin.php:56
837
  msgid "Your email is not valid. Please enter a valid email."
838
  msgstr ""
839
 
840
- #: core/Blocklogin.php:59
841
  msgid "We could not create your account. Please enter a valid email."
842
  msgstr ""
843
 
844
- #: core/Blocklogin.php:81
845
  #, php-format
846
  msgid ""
847
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
848
- "webmaster) and request them to add %s to their IP whitelist."
849
  msgstr ""
850
 
851
- #: core/Blocklogin.php:85
852
- msgid "Could not send your information to Squirrly. Please try again."
853
  msgstr ""
854
 
855
- #: core/Blocklogin.php:107
856
  msgid "Wrong email or password!"
857
  msgstr ""
858
 
859
- #: core/Blocklogin.php:110
860
  msgid "You can only use this account for the URL you registered first!"
861
  msgstr ""
862
 
863
- #: core/Blocklogin.php:113
864
  msgid "You disconnected your website from"
865
  msgstr ""
866
 
867
- #: core/Blocklogin.php:116
868
  msgid "An error occured."
869
  msgstr ""
870
 
871
- #: core/Blocklogin.php:139
872
- #, php-format
873
- msgid ""
874
- "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
875
- "webmaster) and request them to add %s to their IP whitelist."
876
- msgstr ""
877
-
878
  #: core/Blocklogin.php:144
879
  msgid "Both fields are required."
880
  msgstr ""
@@ -887,11 +961,27 @@ msgstr ""
887
  msgid "active task"
888
  msgstr ""
889
 
890
- #: models/Assistant.php:79 view/Blocks/Jorney.php:70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
891
  msgid "Do Keyword Research"
892
  msgstr ""
893
 
894
- #: models/Assistant.php:80
895
  #, php-format
896
  msgid ""
897
  "Use Research - Find Keywords to perform your very first keyword research for "
@@ -899,11 +989,11 @@ msgid ""
899
  "steps of performing a research. %s Just follow the steps."
900
  msgstr ""
901
 
902
- #: models/Assistant.php:84
903
  msgid "Add Keywords in Briefcase"
904
  msgstr ""
905
 
906
- #: models/Assistant.php:85
907
  #, php-format
908
  msgid ""
909
  "Use the Briefcase feature to organize and manage your portfolio of keywords. "
@@ -916,11 +1006,11 @@ msgid ""
916
  "the future and which are on-point with your strategy."
917
  msgstr ""
918
 
919
- #: models/Assistant.php:89
920
  msgid "Create Labels for Keywords"
921
  msgstr ""
922
 
923
- #: models/Assistant.php:90
924
  #, php-format
925
  msgid ""
926
  "Organize your keywords by using Labels for the keywords you've stored in "
@@ -932,11 +1022,11 @@ msgid ""
932
  "complete this task."
933
  msgstr ""
934
 
935
- #: models/Assistant.php:94
936
  msgid "Add Keywords to Labels"
937
  msgstr ""
938
 
939
- #: models/Assistant.php:95
940
  #, php-format
941
  msgid ""
942
  "Now that you've created your first label, you should label one of your "
@@ -946,11 +1036,11 @@ msgid ""
946
  "Then, assign a label to your keyword in order to complete this task."
947
  msgstr ""
948
 
949
- #: models/Assistant.php:99
950
  msgid "Send Keywords to Rank Checker"
951
  msgstr ""
952
 
953
- #: models/Assistant.php:100
954
  #, php-format
955
  msgid ""
956
  "Now that you (hopefully) have keywords added to your Briefcase, go look at "
@@ -962,29 +1052,29 @@ msgid ""
962
  "SEO strategy."
963
  msgstr ""
964
 
965
- #: models/Assistant.php:106
966
  msgid "Optimize Using Live Assistant"
967
  msgstr ""
968
 
969
- #: models/Assistant.php:107
970
  #, php-format
971
  msgid ""
972
  "Optimize your first Page or Article using the SEO Live Assistant (SLA) "
973
  "feature from Squirrly SEO. %s You can either Edit an existing post or create "
974
  "a new post. (You have your Live Assistant where you have your WP "
975
  "Editor)%sThe SEO Live Assistant is like having a SEO Consultant near you, "
976
- "whispering in your ear exactly what you have to do to get a 100% optimized "
977
- "article or page.%sYou can try the DEMO first, by clicking on the Demo Post "
978
- "button. It's safe to break anything in the SEO of that page, because it "
979
- "never gets indexed by Google, since it's a DEMO. It's an easy way to learn "
980
- "your way around it."
981
  msgstr ""
982
 
983
- #: models/Assistant.php:113
984
  msgid "Activate SEO Automation"
985
  msgstr ""
986
 
987
- #: models/Assistant.php:114
988
  #, php-format
989
  msgid ""
990
  "The %sSEO Automation Features%s of Squirrly SEO are extremely powerful. %s "
@@ -995,11 +1085,11 @@ msgid ""
995
  "the toggle to ON for: %sActivate Patterns%s to complete this task."
996
  msgstr ""
997
 
998
- #: models/Assistant.php:118
999
  msgid "Activate METAs"
1000
  msgstr ""
1001
 
1002
- #: models/Assistant.php:119
1003
  #, php-format
1004
  msgid ""
1005
  "Activate the %sMETA settings%s from the Squirrly SEO Plugin. %s You can "
@@ -1011,12 +1101,12 @@ msgid ""
1011
  "off."
1012
  msgstr ""
1013
 
1014
- #: models/Assistant.php:123 view/Blocks/Snippet.php:373
1015
- #: view/SeoSettings/Jsonld.php:36
1016
  msgid "Activate JSON-LD"
1017
  msgstr ""
1018
 
1019
- #: models/Assistant.php:124
1020
  #, php-format
1021
  msgid ""
1022
  "%sJSON-LD Structured Data%s needs to be activated. %s The Duplicate Removal "
@@ -1030,12 +1120,12 @@ msgid ""
1030
  "you're an advanced user."
1031
  msgstr ""
1032
 
1033
- #: models/Assistant.php:128 view/Blocks/Snippet.php:555
1034
- #: view/SeoSettings/Automation.php:386 view/SeoSettings/Social.php:48
1035
  msgid "Activate Open Graph"
1036
  msgstr ""
1037
 
1038
- #: models/Assistant.php:129
1039
  #, php-format
1040
  msgid ""
1041
  "Go to the %sSocial Media section%s.%sActivate Open Graph. (switch the toggle "
@@ -1045,12 +1135,12 @@ msgid ""
1045
  "your site."
1046
  msgstr ""
1047
 
1048
- #: models/Assistant.php:133 view/Blocks/Snippet.php:821
1049
- #: view/SeoSettings/Automation.php:437 view/SeoSettings/Social.php:271
1050
  msgid "Activate Twitter Card"
1051
  msgstr ""
1052
 
1053
- #: models/Assistant.php:134
1054
  #, php-format
1055
  msgid ""
1056
  "Go to the %sSocial Media section%s. %s - Activate Twitter Card. (switch the "
@@ -1060,11 +1150,11 @@ msgid ""
1060
  "you clicks to your site."
1061
  msgstr ""
1062
 
1063
- #: models/Assistant.php:138
1064
  msgid "Activate Sitemap XML"
1065
  msgstr ""
1066
 
1067
- #: models/Assistant.php:139
1068
  #, php-format
1069
  msgid ""
1070
  "Activate your %sSitemap XML%s setting. Squirrly SEO will then generate your "
@@ -1077,11 +1167,11 @@ msgid ""
1077
  "that."
1078
  msgstr ""
1079
 
1080
- #: models/Assistant.php:143
1081
  msgid "Activate Google Analytics"
1082
  msgstr ""
1083
 
1084
- #: models/Assistant.php:144
1085
  #, php-format
1086
  msgid ""
1087
  "Go to the %sTracking Tools section%s. %s Add your Google Analytics ID to "
@@ -1092,27 +1182,26 @@ msgid ""
1092
  "Automation section)."
1093
  msgstr ""
1094
 
1095
- #: models/Assistant.php:153
1096
  msgid "Connect the Webmasters"
1097
  msgstr ""
1098
 
1099
- #: models/Assistant.php:154
1100
- #, php-format
1101
  msgid ""
1102
- "Go to the %sConnection section%s. %s This section makes it super easy to "
1103
  "integrate different (important) 3rd party services with your WordPress. %s "
1104
- "Alexa META Code is 100%% optional, but the rest are very important to add. "
1105
  "%s Enter your Pinterest code, especially if you plan to expand your presence "
1106
  "on Pinterest. It will %sactivate Rich Pins%s, which will completely boost "
1107
  "your sales and visibility for any product or post that has great images."
1108
  msgstr ""
1109
 
1110
- #: models/Assistant.php:162 models/focuspages/Accuracy.php:45
1111
  #: models/focuspages/Length.php:68 models/focuspages/Traffic.php:106
1112
  msgid "Connect Google Analytics"
1113
  msgstr ""
1114
 
1115
- #: models/Assistant.php:163
1116
  #, php-format
1117
  msgid ""
1118
  "Integrate %sGoogle Analytics%s with Squirrly SEO from %sAudits > Settings%s."
@@ -1123,11 +1212,11 @@ msgid ""
1123
  "having to know a single thing about Google Analytics."
1124
  msgstr ""
1125
 
1126
- #: models/Assistant.php:167 models/Assistant.php:189
1127
  msgid "Connect Google Search Console"
1128
  msgstr ""
1129
 
1130
- #: models/Assistant.php:168
1131
  #, php-format
1132
  msgid ""
1133
  "Integrate your WordPress with %sGoogle Search Console%s with Squirrly SEO "
@@ -1138,11 +1227,11 @@ msgid ""
1138
  "Google has about your site, directly from your Squirrly SEO Plugin."
1139
  msgstr ""
1140
 
1141
- #: models/Assistant.php:172
1142
  msgid "Set the Audit Email"
1143
  msgstr ""
1144
 
1145
- #: models/Assistant.php:173
1146
  #, php-format
1147
  msgid ""
1148
  "You can customize the email to which we send the Audit reports.%sIt can be "
@@ -1152,11 +1241,11 @@ msgid ""
1152
  "order to increase the score."
1153
  msgstr ""
1154
 
1155
- #: models/Assistant.php:177
1156
  msgid "Get your score over 60"
1157
  msgstr ""
1158
 
1159
- #: models/Assistant.php:178
1160
  #, php-format
1161
  msgid ""
1162
  "True website marketing performance happens after your Audit score gets to "
@@ -1169,11 +1258,11 @@ msgid ""
1169
  "this."
1170
  msgstr ""
1171
 
1172
- #: models/Assistant.php:184
1173
  msgid "Track your first 3 Keywords"
1174
  msgstr ""
1175
 
1176
- #: models/Assistant.php:185
1177
  #, php-format
1178
  msgid ""
1179
  "%sSERP Checker = Search Engine Result Pages Checker.%s %s It checks your "
@@ -1188,7 +1277,7 @@ msgid ""
1188
  "> select Send to Rank Checker%s"
1189
  msgstr ""
1190
 
1191
- #: models/Assistant.php:190
1192
  #, php-format
1193
  msgid ""
1194
  "Connect Google Search Console. %s You can do that from %sSEO Audit > Settings"
@@ -1203,11 +1292,11 @@ msgid ""
1203
  "the accurate, on-time and objective information about your rankings."
1204
  msgstr ""
1205
 
1206
- #: models/Assistant.php:194
1207
  msgid "Get 1 Keyword to the first page of Google"
1208
  msgstr ""
1209
 
1210
- #: models/Assistant.php:195
1211
  #, php-format
1212
  msgid ""
1213
  "Start with a small task. %sGet 1 keyword to the first page of Google%s. %s "
@@ -1218,7 +1307,7 @@ msgid ""
1218
  "on those tasks and turning elements to green you'll complete this task."
1219
  msgstr ""
1220
 
1221
- #: models/Assistant.php:252 models/abstract/Assistant.php:228
1222
  msgid "You chose to ignore this task. Click to activate it."
1223
  msgstr ""
1224
 
@@ -1276,7 +1365,7 @@ msgstr ""
1276
  #: models/Audits.php:186 models/Audits.php:196 models/Audits.php:206
1277
  #: models/Audits.php:216 models/Audits.php:226 models/Audits.php:295
1278
  #: models/Audits.php:305 models/Audits.php:315 models/Audits.php:325
1279
- #: models/Audits.php:420 view/SeoSettings/Jsonld.php:264
1280
  msgid "Yes"
1281
  msgstr ""
1282
 
@@ -1286,7 +1375,7 @@ msgstr ""
1286
  #: models/Audits.php:197 models/Audits.php:207 models/Audits.php:217
1287
  #: models/Audits.php:227 models/Audits.php:296 models/Audits.php:306
1288
  #: models/Audits.php:316 models/Audits.php:326 models/Audits.php:367
1289
- #: models/Audits.php:411 models/Audits.php:421 view/SeoSettings/Jsonld.php:263
1290
  msgid "No"
1291
  msgstr ""
1292
 
@@ -2565,7 +2654,7 @@ msgstr ""
2565
  msgid "Value"
2566
  msgstr ""
2567
 
2568
- #: models/Audits.php:690 view/Audits/Audit.php:142 view/Audits/Compare.php:163
2569
  msgid "PRO TIP"
2570
  msgstr ""
2571
 
@@ -2585,15 +2674,15 @@ msgstr ""
2585
  msgid "METAs"
2586
  msgstr ""
2587
 
2588
- #: models/BulkSeo.php:17 view/Blocks/Snippet.php:89
2589
  msgid "Open Graph"
2590
  msgstr ""
2591
 
2592
- #: models/BulkSeo.php:18 view/Blocks/Snippet.php:93
2593
  msgid "Twitter Card"
2594
  msgstr ""
2595
 
2596
- #: models/BulkSeo.php:19 models/FocusPages.php:19 view/Blocks/Snippet.php:97
2597
  msgid "Visibility"
2598
  msgstr ""
2599
 
@@ -2612,7 +2701,7 @@ msgid ""
2612
  msgstr ""
2613
 
2614
  #: models/CheckSeo.php:39 models/CheckSeo.php:40
2615
- #: models/bulkseo/Visibility.php:101 view/Blocks/Snippet.php:1057
2616
  msgid "Discourage search engines from indexing this site"
2617
  msgstr ""
2618
 
@@ -2651,6 +2740,14 @@ msgid ""
2651
  "website. As soon as possible. Otherwise, you will have difficulty ranking."
2652
  msgstr ""
2653
 
 
 
 
 
 
 
 
 
2654
  #: models/CheckSeo.php:66
2655
  msgid "Turn Squirrly's AMP Support to ON"
2656
  msgstr ""
@@ -2805,6 +2902,26 @@ msgid ""
2805
  "and crawlers."
2806
  msgstr ""
2807
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2808
  #: models/CheckSeo.php:150
2809
  msgid "Add Focus Page. It's the first step to reaching TOP positions"
2810
  msgstr ""
@@ -3012,6 +3129,12 @@ msgid ""
3012
  "store at least one of the results in Briefcase."
3013
  msgstr ""
3014
 
 
 
 
 
 
 
3015
  #: models/CheckSeo.php:260
3016
  msgid ""
3017
  "Optimize your Focus Page with the great keyword you found during Keyword "
@@ -3042,6 +3165,14 @@ msgid ""
3042
  "experts were able to do before Squirrly."
3043
  msgstr ""
3044
 
 
 
 
 
 
 
 
 
3045
  #: models/CheckSeo.php:274
3046
  msgid "Optimize your text to get a good Search Relevancy score"
3047
  msgstr ""
@@ -3124,9 +3255,8 @@ msgid ""
3124
  msgstr ""
3125
 
3126
  #: models/CheckSeo.php:315
3127
- #, php-format
3128
  msgid ""
3129
- "Try to boost traffic by over +285% by optimizing with SEO Live Assistant"
3130
  msgstr ""
3131
 
3132
  #: models/CheckSeo.php:316
@@ -3162,7 +3292,7 @@ msgid ""
3162
  msgstr ""
3163
 
3164
  #: models/CheckSeo.php:332 view/Connect/GoogleSearchConsole.php:32
3165
- #: view/SeoSettings/Webmaster.php:83
3166
  #, php-format
3167
  msgid "Need Help Connecting Google Search Console? %sClick Here%s"
3168
  msgstr ""
@@ -3230,6 +3360,17 @@ msgid ""
3230
  "keyword to the Rankings section."
3231
  msgstr ""
3232
 
 
 
 
 
 
 
 
 
 
 
 
3233
  #: models/CheckSeo.php:372
3234
  msgid ""
3235
  "Change the main keyword for a Focus Page that didn't reach TOP 20 rankings "
@@ -3330,7 +3471,7 @@ msgid ""
3330
  msgstr ""
3331
 
3332
  #: models/CheckSeo.php:416 view/Connect/GoogleAnalytics.php:33
3333
- #: view/SeoSettings/Tracking.php:96
3334
  #, php-format
3335
  msgid "Need Help Connecting Google Analytics? %sClick Here%s"
3336
  msgstr ""
@@ -3400,6 +3541,10 @@ msgid ""
3400
  "will rank it higher."
3401
  msgstr ""
3402
 
 
 
 
 
3403
  #: models/CheckSeo.php:455
3404
  msgid ""
3405
  "Add all secondary Keywords you've used to the Rankings Section of Squirrly"
@@ -3588,6 +3733,10 @@ msgstr ""
3588
  msgid "Activate SEO Patterns, with Squirrly's site-wide SEO Automation."
3589
  msgstr ""
3590
 
 
 
 
 
3591
  #: models/CheckSeo.php:553
3592
  msgid "Update Your Focus Pages Content Regularly"
3593
  msgstr ""
@@ -3824,6 +3973,11 @@ msgid ""
3824
  "to avoid Google penalties."
3825
  msgstr ""
3826
 
 
 
 
 
 
3827
  #: models/CheckSeo.php:678
3828
  msgid "Reach 3 Inner Links for all your Focus Pages"
3829
  msgstr ""
@@ -4657,12 +4811,62 @@ msgstr ""
4657
  msgid "Focus Page could not be verified (error: %s)"
4658
  msgstr ""
4659
 
4660
- #: models/FocusPages.php:20 models/abstract/Assistant.php:87
4661
- #: view/Ranking/Gscsync.php:32 view/Ranking/Rankings.php:218
4662
- #: view/Ranking/Rankings.php:356 view/Research/Briefcase.php:109
4663
- #: view/Research/Briefcase.php:299 view/Research/History.php:30
4664
- #: view/Research/HistoryDetails.php:8 view/Research/Research.php:200
4665
- #: view/Research/Suggested.php:29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4666
  msgid "Keyword"
4667
  msgstr ""
4668
 
@@ -4718,17 +4922,17 @@ msgstr ""
4718
  msgid "Accuracy"
4719
  msgstr ""
4720
 
4721
- #: models/FocusPages.php:35 view/Ranking/Gscsync.php:35
4722
  msgid "CTR"
4723
  msgstr ""
4724
 
4725
- #: models/FocusPages.php:36 view/Ranking/Gscsync.php:34
4726
- #: view/Ranking/Rankings.php:370
4727
  msgid "Impressions"
4728
  msgstr ""
4729
 
4730
- #: models/FocusPages.php:37 view/Ranking/Gscsync.php:33
4731
- #: view/Ranking/Rankings.php:376
4732
  msgid "Clicks"
4733
  msgstr ""
4734
 
@@ -4757,12 +4961,12 @@ msgstr ""
4757
  msgid "The favicon has been updated."
4758
  msgstr ""
4759
 
4760
- #: models/Menu.php:110 models/Menu.php:510
4761
  msgid "First Step"
4762
  msgstr ""
4763
 
4764
- #: models/Menu.php:110 models/Menu.php:111 models/Menu.php:374
4765
- #: view/Blocks/Toolbar.php:42
4766
  msgid "Overview"
4767
  msgstr ""
4768
 
@@ -4770,353 +4974,325 @@ msgstr ""
4770
  msgid "All Features"
4771
  msgstr ""
4772
 
4773
- #: models/Menu.php:134 models/Menu.php:135 view/Research/Briefcase.php:121
4774
  msgid "Research"
4775
  msgstr ""
4776
 
4777
- #: models/Menu.php:142 view/Research/Research.php:19
4778
- msgid "Keyword Research"
4779
- msgstr ""
4780
-
4781
- #: models/Menu.php:146 models/Menu.php:147
4782
- msgid "Live Assistant"
4783
- msgstr ""
4784
-
4785
- #: models/Menu.php:158
4786
  msgid "All Snippets"
4787
  msgstr ""
4788
 
4789
- #: models/Menu.php:159
4790
- msgid "Bulk Seo"
4791
- msgstr ""
4792
-
4793
- #: models/Menu.php:166 models/Menu.php:422 view/BulkSeo/Bulkseo.php:30
4794
  msgid "Bulk SEO"
4795
  msgstr ""
4796
 
4797
- #: models/Menu.php:170 models/Menu.php:171
4798
  msgid "SEO Settings"
4799
  msgstr ""
4800
 
4801
- #: models/Menu.php:182 models/Menu.php:183 models/Menu.php:473
4802
  #: view/SeoSettings/Sitemap.php:29
4803
  msgid "Sitemap XML"
4804
  msgstr ""
4805
 
4806
- #: models/Menu.php:194 models/Menu.php:195 view/SeoSettings/Jsonld.php:58
4807
  msgid "Local SEO"
4808
  msgstr ""
4809
 
4810
- #: models/Menu.php:206 models/Menu.php:207 models/Menu.php:354
4811
- #: view/FocusPages/Pagelist.php:24
4812
- msgid "Focus Pages"
4813
- msgstr ""
4814
-
4815
- #: models/Menu.php:218 models/Menu.php:219
4816
  msgid "SEO Audit"
4817
  msgstr ""
4818
 
4819
- #: models/Menu.php:230 models/Menu.php:231 models/Menu.php:394
4820
- msgid "Rankings"
4821
- msgstr ""
4822
-
4823
- #: models/Menu.php:238 view/Ranking/Rankings.php:32
4824
  msgid "Google Rankings"
4825
  msgstr ""
4826
 
4827
- #: models/Menu.php:242 models/Menu.php:243
4828
  msgid "Onboarding"
4829
  msgstr ""
4830
 
4831
- #: models/Menu.php:254 models/Menu.php:255
4832
  msgid "Import & Export SEO"
4833
  msgstr ""
4834
 
4835
- #: models/Menu.php:266 models/Menu.php:267
4836
  msgid "Account Info"
4837
  msgstr ""
4838
 
4839
- #: models/Menu.php:278
4840
  msgid "How To & Support"
4841
  msgstr ""
4842
 
4843
- #: models/Menu.php:279
4844
  msgid "Help & Support"
4845
  msgstr ""
4846
 
4847
- #: models/Menu.php:308
4848
  msgid "Find Keywords"
4849
  msgstr ""
4850
 
4851
- #: models/Menu.php:309
4852
  msgid "do a keyword research"
4853
  msgstr ""
4854
 
4855
- #: models/Menu.php:314 view/Research/Briefcase.php:19
4856
- msgid "Briefcase"
4857
- msgstr ""
4858
-
4859
- #: models/Menu.php:315
4860
  msgid "save the best Keywords"
4861
  msgstr ""
4862
 
4863
- #: models/Menu.php:320 view/Research/Briefcase.php:31
4864
  msgid "Labels"
4865
  msgstr ""
4866
 
4867
- #: models/Menu.php:321
4868
  msgid "group keywords"
4869
  msgstr ""
4870
 
4871
- #: models/Menu.php:326
4872
  msgid "Suggested"
4873
  msgstr ""
4874
 
4875
- #: models/Menu.php:327
4876
  msgid "better keywords found"
4877
  msgstr ""
4878
 
4879
- #: models/Menu.php:332
4880
  msgid "History"
4881
  msgstr ""
4882
 
4883
- #: models/Menu.php:333
4884
  msgid "keyword research history"
4885
  msgstr ""
4886
 
4887
- #: models/Menu.php:340
4888
  msgid "Optimize Posts"
4889
  msgstr ""
4890
 
4891
- #: models/Menu.php:341
4892
  msgid "use the Live Assistant"
4893
  msgstr ""
4894
 
4895
- #: models/Menu.php:346 models/Menu.php:386 models/Menu.php:412
4896
  msgid "Settings"
4897
  msgstr ""
4898
 
4899
- #: models/Menu.php:347
4900
  msgid "live assistant setup"
4901
  msgstr ""
4902
 
4903
- #: models/Menu.php:355
4904
  msgid "all my focus pages"
4905
  msgstr ""
4906
 
4907
- #: models/Menu.php:366 models/Menu.php:380
4908
  msgid "Add New Page"
4909
  msgstr ""
4910
 
4911
- #: models/Menu.php:367
4912
  msgid "add page in focus pages"
4913
  msgstr ""
4914
 
4915
- #: models/Menu.php:375
4916
  msgid "See all the SEO audits"
4917
  msgstr ""
4918
 
4919
- #: models/Menu.php:381
4920
  msgid "add page in audit"
4921
  msgstr ""
4922
 
4923
- #: models/Menu.php:387
4924
  msgid "Audit settings"
4925
  msgstr ""
4926
 
4927
- #: models/Menu.php:395
4928
  msgid "See Google ranking"
4929
  msgstr ""
4930
 
4931
- #: models/Menu.php:400
4932
  msgid "Add Keywords"
4933
  msgstr ""
4934
 
4935
- #: models/Menu.php:401
4936
  msgid "Add briefcase keywords"
4937
  msgstr ""
4938
 
4939
- #: models/Menu.php:406 view/Ranking/Rankings.php:263
4940
  msgid "Sync Keywords"
4941
  msgstr ""
4942
 
4943
- #: models/Menu.php:407
4944
  msgid "Sync Keywords from GSC"
4945
  msgstr ""
4946
 
4947
- #: models/Menu.php:413
4948
  msgid "Ranking settings"
4949
  msgstr ""
4950
 
4951
- #: models/Menu.php:423
4952
  msgid "optimize all pages"
4953
  msgstr ""
4954
 
4955
- #: models/Menu.php:431
4956
  msgid "Automation"
4957
  msgstr ""
4958
 
4959
- #: models/Menu.php:432
4960
  msgid "patterns & automation"
4961
  msgstr ""
4962
 
4963
- #: models/Menu.php:437 view/SeoSettings/Links.php:29
4964
  msgid "SEO Links"
4965
  msgstr ""
4966
 
4967
- #: models/Menu.php:438
4968
  msgid "manage website links"
4969
  msgstr ""
4970
 
4971
- #: models/Menu.php:443 view/SeoSettings/Metas.php:29
4972
  msgid "SEO Metas"
4973
  msgstr ""
4974
 
4975
- #: models/Menu.php:444
4976
  msgid "required on-page metas"
4977
  msgstr ""
4978
 
4979
- #: models/Menu.php:449 view/Blocks/Snippet.php:85
4980
  msgid "JSON-LD"
4981
  msgstr ""
4982
 
4983
- #: models/Menu.php:450
4984
  msgid "rich snippets & schema"
4985
  msgstr ""
4986
 
4987
- #: models/Menu.php:455 view/SeoSettings/Social.php:28
4988
  msgid "Social Media"
4989
  msgstr ""
4990
 
4991
- #: models/Menu.php:456
4992
  msgid "social share options"
4993
  msgstr ""
4994
 
4995
- #: models/Menu.php:461 view/SeoSettings/Tracking.php:28
4996
  msgid "Tracking Tools"
4997
  msgstr ""
4998
 
4999
- #: models/Menu.php:462
5000
  msgid "google analytics, pixel, etc."
5001
  msgstr ""
5002
 
5003
- #: models/Menu.php:467 view/SeoSettings/Webmaster.php:28
5004
  msgid "Webmaster Tools"
5005
  msgstr ""
5006
 
5007
- #: models/Menu.php:468
5008
  msgid "connect to webmasters"
5009
  msgstr ""
5010
 
5011
- #: models/Menu.php:474
5012
  msgid "setup the sitemap"
5013
  msgstr ""
5014
 
5015
- #: models/Menu.php:479
5016
  msgid "Robots.txt"
5017
  msgstr ""
5018
 
5019
- #: models/Menu.php:480
5020
  msgid "search engine filters"
5021
  msgstr ""
5022
 
5023
- #: models/Menu.php:485
5024
  msgid "Favicon"
5025
  msgstr ""
5026
 
5027
- #: models/Menu.php:486
5028
  msgid "add website icon"
5029
  msgstr ""
5030
 
5031
- #: models/Menu.php:491
5032
  msgid "Import/Export"
5033
  msgstr ""
5034
 
5035
- #: models/Menu.php:492
5036
  msgid "import & export SEO"
5037
  msgstr ""
5038
 
5039
- #: models/Menu.php:501
5040
  msgid "Advanced"
5041
  msgstr ""
5042
 
5043
- #: models/Menu.php:502
5044
  msgid "Advanced SEO Settings"
5045
  msgstr ""
5046
 
5047
- #: models/Menu.php:511
5048
  msgid "website details"
5049
  msgstr ""
5050
 
5051
- #: models/Menu.php:516 view/Blocks/Snippet.php:433
5052
- msgid "SEO Automation"
5053
- msgstr ""
5054
-
5055
- #: models/Menu.php:517
5056
  msgid "build SEO Automation"
5057
  msgstr ""
5058
 
5059
- #: models/Menu.php:522 view/SeoSettings/Backup.php:91
5060
  msgid "Import SEO"
5061
  msgstr ""
5062
 
5063
- #: models/Menu.php:523
5064
  msgid "import settings and SEO"
5065
  msgstr ""
5066
 
5067
- #: models/Menu.php:528 view/Onboarding/Step4.php:12
5068
  msgid "Final Step"
5069
  msgstr ""
5070
 
5071
- #: models/Menu.php:529
5072
  msgid "check today SEO goals"
5073
  msgstr ""
5074
 
5075
- #: models/Menu.php:538
5076
  msgid "Blogging"
5077
  msgstr ""
5078
 
5079
- #: models/Menu.php:539
5080
  msgid "Blogging overwiew"
5081
  msgstr ""
5082
 
5083
- #: models/Menu.php:544
5084
  msgid "Traffic"
5085
  msgstr ""
5086
 
5087
- #: models/Menu.php:545
5088
  msgid "Weekly website traffic"
5089
  msgstr ""
5090
 
5091
- #: models/Menu.php:550
5092
  msgid "SEO"
5093
  msgstr ""
5094
 
5095
- #: models/Menu.php:551
5096
  msgid "On-Page optimization"
5097
  msgstr ""
5098
 
5099
- #: models/Menu.php:556
5100
  msgid "Social"
5101
  msgstr ""
5102
 
5103
- #: models/Menu.php:557
5104
  msgid "Social signals and shares"
5105
  msgstr ""
5106
 
5107
- #: models/Menu.php:562
5108
  msgid "Links"
5109
  msgstr ""
5110
 
5111
- #: models/Menu.php:563
5112
  msgid "Backlinks and Innerlinks"
5113
  msgstr ""
5114
 
5115
- #: models/Menu.php:568 models/focuspages/Authority.php:59
5116
  msgid "Authority"
5117
  msgstr ""
5118
 
5119
- #: models/Menu.php:569
5120
  msgid "Website Off-Page score"
5121
  msgstr ""
5122
 
@@ -5253,12 +5429,12 @@ msgid ""
5253
  "repetitions."
5254
  msgstr ""
5255
 
5256
- #: models/Post.php:264 models/focuspages/Snippet.php:120
5257
- #: models/focuspages/Snippet.php:250 models/focuspages/Snippet.php:272
5258
- #: view/Audits/Addpage.php:131 view/Blocks/Snippet.php:168
5259
- #: view/Blocks/Snippet.php:655 view/Blocks/Snippet.php:922
5260
- #: view/BulkSeo/Bulkseo.php:142 view/FocusPages/Addpage.php:132
5261
- #: view/SeoSettings/Automation.php:139
5262
  msgid "Title"
5263
  msgstr ""
5264
 
@@ -5360,7 +5536,7 @@ msgstr ""
5360
  msgid "Can't get snippet data"
5361
  msgstr ""
5362
 
5363
- #: models/PostsList.php:55 models/PostsList.php:80 view/Blocks/Snippet.php:130
5364
  msgid "Edit Snippet"
5365
  msgstr ""
5366
 
@@ -5372,23 +5548,27 @@ msgstr ""
5372
  msgid "Squirrly SEO Admin"
5373
  msgstr ""
5374
 
5375
- #: models/Snippet.php:250
 
 
 
 
5376
  msgid "You don't have enough pemission to edit this article"
5377
  msgstr ""
5378
 
5379
- #: models/Snippet.php:345
5380
  msgid "Error! Could not save the data."
5381
  msgstr ""
5382
 
5383
- #: models/Snippet.php:350
5384
  msgid "Error! Invalid request."
5385
  msgstr ""
5386
 
5387
- #: models/Snippet.php:382
5388
  msgid "Couldn't find the page"
5389
  msgstr ""
5390
 
5391
- #: models/Snippet.php:398 models/Snippet.php:410
5392
  msgid "No Polylang translation for this post."
5393
  msgstr ""
5394
 
@@ -5400,43 +5580,43 @@ msgstr ""
5400
  #: models/focuspages/Indexability.php:89 models/focuspages/Innerlinks.php:64
5401
  #: models/focuspages/Keyword.php:73 models/focuspages/Length.php:53
5402
  #: models/focuspages/Nofollow.php:65 models/focuspages/Onpage.php:80
5403
- #: models/focuspages/Ranking.php:35 models/focuspages/Snippet.php:176
5404
  #: models/focuspages/Social.php:56 models/focuspages/Strategy.php:97
5405
  #: models/focuspages/Traffic.php:95
5406
  msgid "Current URL"
5407
  msgstr ""
5408
 
5409
- #: models/abstract/Assistant.php:80
5410
  msgid "Keywords"
5411
  msgstr ""
5412
 
5413
- #: models/abstract/Assistant.php:80
5414
  msgid "Squirrly Live Assistant Optimization"
5415
  msgstr ""
5416
 
5417
- #: models/abstract/Assistant.php:80
5418
  msgid "SLA"
5419
  msgstr ""
5420
 
5421
- #: models/abstract/Assistant.php:89
5422
  msgid "No Meta Keyword Found"
5423
  msgstr ""
5424
 
5425
- #: models/abstract/Assistant.php:164
5426
  msgid "We are gathering data for this category"
5427
  msgstr ""
5428
 
5429
- #: models/abstract/Assistant.php:167
5430
  msgid ""
5431
  "Congratulations for ranking with this keyword, but it will require special "
5432
  "attention from you to keep it within TOP 10 positions"
5433
  msgstr ""
5434
 
5435
- #: models/abstract/Assistant.php:210
5436
  msgid "Not enough data to process this task"
5437
  msgstr ""
5438
 
5439
- #: models/abstract/Assistant.php:214 view/Blocks/Snippet.php:305
5440
  msgid "Current"
5441
  msgstr ""
5442
 
@@ -5444,8 +5624,8 @@ msgstr ""
5444
  msgid "Title not empty"
5445
  msgstr ""
5446
 
5447
- #: models/bulkseo/Metas.php:58 view/Blocks/Snippet.php:184
5448
- #: view/Blocks/Snippet.php:671 view/Blocks/Snippet.php:938
5449
  msgid "Current Title"
5450
  msgstr ""
5451
 
@@ -5468,20 +5648,20 @@ msgid "Current Title Length"
5468
  msgstr ""
5469
 
5470
  #: models/bulkseo/Metas.php:65 models/bulkseo/Metas.php:83
5471
- #: models/bulkseo/Opengraph.php:84 models/bulkseo/Opengraph.php:94
5472
- #: models/bulkseo/Twittercard.php:80 models/bulkseo/Twittercard.php:90
5473
  msgid "chars"
5474
  msgstr ""
5475
 
5476
- #: models/bulkseo/Metas.php:66 models/bulkseo/Opengraph.php:85
5477
- #: models/bulkseo/Twittercard.php:81
5478
  #, php-format
5479
  msgid ""
5480
  "Title has to be longer than %s chars and up to %s chars. %s You can change "
5481
  "the title max length from %sSEO Settings > Automation%s."
5482
  msgstr ""
5483
 
5484
- #: models/bulkseo/Metas.php:69 models/focuspages/Snippet.php:131
5485
  msgid "Keyword in title"
5486
  msgstr ""
5487
 
@@ -5493,7 +5673,7 @@ msgstr ""
5493
  msgid "no keywords"
5494
  msgstr ""
5495
 
5496
- #: models/bulkseo/Metas.php:72 models/focuspages/Snippet.php:134
5497
  #, php-format
5498
  msgid ""
5499
  "Your keyword must be present in the title of the page. %s It's a very "
@@ -5509,8 +5689,8 @@ msgstr ""
5509
  msgid "Description not empty"
5510
  msgstr ""
5511
 
5512
- #: models/bulkseo/Metas.php:76 view/Blocks/Snippet.php:236
5513
- #: view/Blocks/Snippet.php:715 view/Blocks/Snippet.php:982
5514
  msgid "Current Description"
5515
  msgstr ""
5516
 
@@ -5532,15 +5712,15 @@ msgstr ""
5532
  msgid "Current Description Length"
5533
  msgstr ""
5534
 
5535
- #: models/bulkseo/Metas.php:84 models/bulkseo/Opengraph.php:95
5536
- #: models/bulkseo/Twittercard.php:91
5537
  #, php-format
5538
  msgid ""
5539
  "Description has to be longer than %s chars and up to %s chars. %s You can "
5540
  "change the description max length from %sSEO Settings > Automation%s."
5541
  msgstr ""
5542
 
5543
- #: models/bulkseo/Metas.php:87 models/focuspages/Snippet.php:137
5544
  msgid "Keyword in description"
5545
  msgstr ""
5546
 
@@ -5606,13 +5786,13 @@ msgstr ""
5606
  #: models/bulkseo/Metas.php:223 models/bulkseo/Metas.php:267
5607
  #: models/bulkseo/Metas.php:303 models/bulkseo/Metas.php:336
5608
  #: models/bulkseo/Metas.php:384 models/bulkseo/Metas.php:423
5609
- #: models/bulkseo/Opengraph.php:148 models/bulkseo/Opengraph.php:184
5610
- #: models/bulkseo/Opengraph.php:216 models/bulkseo/Opengraph.php:252
5611
- #: models/bulkseo/Opengraph.php:288 models/bulkseo/Twittercard.php:144
5612
- #: models/bulkseo/Twittercard.php:180 models/bulkseo/Twittercard.php:212
5613
- #: models/bulkseo/Twittercard.php:248 models/bulkseo/Twittercard.php:284
5614
- #: models/bulkseo/Visibility.php:80 models/bulkseo/Visibility.php:119
5615
- #: models/bulkseo/Visibility.php:152
5616
  msgid "Squirrly Snippet is deactivated from this post."
5617
  msgstr ""
5618
 
@@ -5641,8 +5821,8 @@ msgid "SEO Metas is deactivated from %sSEO Settings > Metas%s."
5641
  msgstr ""
5642
 
5643
  #: models/bulkseo/Metas.php:175 models/bulkseo/Metas.php:211
5644
- #: models/bulkseo/Opengraph.php:169 models/bulkseo/Opengraph.php:205
5645
- #: models/bulkseo/Twittercard.php:165 models/bulkseo/Twittercard.php:201
5646
  msgid "Title is generated automatically."
5647
  msgstr ""
5648
 
@@ -5659,8 +5839,8 @@ msgid "Meta Description is deactivated from %sSEO Settings > Metas%s."
5659
  msgstr ""
5660
 
5661
  #: models/bulkseo/Metas.php:288 models/bulkseo/Metas.php:325
5662
- #: models/bulkseo/Opengraph.php:237 models/bulkseo/Opengraph.php:273
5663
- #: models/bulkseo/Twittercard.php:233 models/bulkseo/Twittercard.php:269
5664
  msgid "Description is generated automatically."
5665
  msgstr ""
5666
 
@@ -5669,11 +5849,11 @@ msgstr ""
5669
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
5670
  msgstr ""
5671
 
5672
- #: models/bulkseo/Opengraph.php:78
5673
  msgid "OG title not empty"
5674
  msgstr ""
5675
 
5676
- #: models/bulkseo/Opengraph.php:80
5677
  #, php-format
5678
  msgid ""
5679
  "You need to have an Open Graph title for this post. %s It will help you "
@@ -5681,16 +5861,16 @@ msgid ""
5681
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5682
  msgstr ""
5683
 
5684
- #: models/bulkseo/Opengraph.php:83
5685
  #, php-format
5686
  msgid "OG title up to %s chars"
5687
  msgstr ""
5688
 
5689
- #: models/bulkseo/Opengraph.php:88
5690
  msgid "OG description not empty"
5691
  msgstr ""
5692
 
5693
- #: models/bulkseo/Opengraph.php:90
5694
  #, php-format
5695
  msgid ""
5696
  "You need to have an Open Graph description for this post. %s It will help "
@@ -5698,20 +5878,20 @@ msgid ""
5698
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5699
  msgstr ""
5700
 
5701
- #: models/bulkseo/Opengraph.php:93
5702
  #, php-format
5703
  msgid "OG description up to %s chars"
5704
  msgstr ""
5705
 
5706
- #: models/bulkseo/Opengraph.php:98
5707
  msgid "OG Image"
5708
  msgstr ""
5709
 
5710
- #: models/bulkseo/Opengraph.php:99 models/bulkseo/Twittercard.php:95
5711
  msgid "(featured image)"
5712
  msgstr ""
5713
 
5714
- #: models/bulkseo/Opengraph.php:100
5715
  #, php-format
5716
  msgid ""
5717
  "Set a good looking image for your URL. It needs to look good in Facebook and "
@@ -5719,54 +5899,54 @@ msgid ""
5719
  "attract more clicks to your site."
5720
  msgstr ""
5721
 
5722
- #: models/bulkseo/Opengraph.php:114
5723
  msgid "Open Graph is deactivated."
5724
  msgstr ""
5725
 
5726
- #: models/bulkseo/Opengraph.php:119
5727
  msgid ""
5728
  "Open Graph is not set correctly. Click to open the Assistant in the right "
5729
  "sidebar and follow the instructions."
5730
  msgstr ""
5731
 
5732
- #: models/bulkseo/Opengraph.php:124
5733
  msgid "Open Graph is generated automatically."
5734
  msgstr ""
5735
 
5736
- #: models/bulkseo/Opengraph.php:127
5737
  msgid "Open Graph is customized and set correctly."
5738
  msgstr ""
5739
 
5740
- #: models/bulkseo/Opengraph.php:152 models/bulkseo/Opengraph.php:188
5741
- #: models/bulkseo/Opengraph.php:220 models/bulkseo/Opengraph.php:256
5742
- #: models/bulkseo/Opengraph.php:292
5743
  #, php-format
5744
  msgid ""
5745
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
5746
  "%s."
5747
  msgstr ""
5748
 
5749
- #: models/bulkseo/Opengraph.php:156 models/bulkseo/Opengraph.php:192
5750
- #: models/bulkseo/Opengraph.php:224 models/bulkseo/Opengraph.php:260
5751
- #: models/bulkseo/Opengraph.php:296
5752
  #, php-format
5753
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
5754
  msgstr ""
5755
 
5756
- #: models/bulkseo/Opengraph.php:160 models/bulkseo/Opengraph.php:196
5757
- #: models/bulkseo/Opengraph.php:228 models/bulkseo/Opengraph.php:264
5758
- #: models/bulkseo/Opengraph.php:300 models/bulkseo/Twittercard.php:156
5759
- #: models/bulkseo/Twittercard.php:192 models/bulkseo/Twittercard.php:224
5760
- #: models/bulkseo/Twittercard.php:260 models/bulkseo/Twittercard.php:296
5761
  #, php-format
5762
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
5763
  msgstr ""
5764
 
5765
- #: models/bulkseo/Twittercard.php:74
5766
  msgid "TC title not empty"
5767
  msgstr ""
5768
 
5769
- #: models/bulkseo/Twittercard.php:76
5770
  #, php-format
5771
  msgid ""
5772
  "You need to have a title for the Twitter Card of this post. %s It will help "
@@ -5774,16 +5954,16 @@ msgid ""
5774
  "also important for SEO purposes."
5775
  msgstr ""
5776
 
5777
- #: models/bulkseo/Twittercard.php:79
5778
  #, php-format
5779
  msgid "TC title up to %s chars"
5780
  msgstr ""
5781
 
5782
- #: models/bulkseo/Twittercard.php:84
5783
  msgid "TC Description not empty"
5784
  msgstr ""
5785
 
5786
- #: models/bulkseo/Twittercard.php:86
5787
  #, php-format
5788
  msgid ""
5789
  "You need to have a Twitter Card description for this post. %s It will help "
@@ -5792,16 +5972,16 @@ msgid ""
5792
  "to your site. %s It's also important for SEO purposes."
5793
  msgstr ""
5794
 
5795
- #: models/bulkseo/Twittercard.php:89
5796
  #, php-format
5797
  msgid "TC description up to %s chars"
5798
  msgstr ""
5799
 
5800
- #: models/bulkseo/Twittercard.php:94
5801
  msgid "TC Image"
5802
  msgstr ""
5803
 
5804
- #: models/bulkseo/Twittercard.php:96
5805
  #, php-format
5806
  msgid ""
5807
  "Set a good looking image for your URL. It needs to look good in Twitter "
@@ -5809,36 +5989,36 @@ msgid ""
5809
  "clicks to your site."
5810
  msgstr ""
5811
 
5812
- #: models/bulkseo/Twittercard.php:110
5813
  msgid "Twitter Card is deactivated."
5814
  msgstr ""
5815
 
5816
- #: models/bulkseo/Twittercard.php:115
5817
  msgid ""
5818
  "Twitter Card is not set correctly. Click to open the Assistant in the right "
5819
  "sidebar and follow the instructions."
5820
  msgstr ""
5821
 
5822
- #: models/bulkseo/Twittercard.php:120
5823
  msgid "Twitter Card is generated automatically."
5824
  msgstr ""
5825
 
5826
- #: models/bulkseo/Twittercard.php:123
5827
  msgid "Twitter Card is customized and set correctly."
5828
  msgstr ""
5829
 
5830
- #: models/bulkseo/Twittercard.php:148 models/bulkseo/Twittercard.php:184
5831
- #: models/bulkseo/Twittercard.php:216 models/bulkseo/Twittercard.php:252
5832
- #: models/bulkseo/Twittercard.php:288
5833
  #, php-format
5834
  msgid ""
5835
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
5836
  "Automation%s."
5837
  msgstr ""
5838
 
5839
- #: models/bulkseo/Twittercard.php:152 models/bulkseo/Twittercard.php:188
5840
- #: models/bulkseo/Twittercard.php:220 models/bulkseo/Twittercard.php:256
5841
- #: models/bulkseo/Twittercard.php:292
5842
  #, php-format
5843
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
5844
  msgstr ""
@@ -5855,7 +6035,7 @@ msgid ""
5855
  "visibility settings."
5856
  msgstr ""
5857
 
5858
- #: models/bulkseo/Visibility.php:31 view/Blocks/Snippet.php:1126
5859
  msgid "Send Authority to this page"
5860
  msgstr ""
5861
 
@@ -5884,66 +6064,93 @@ msgid ""
5884
  "current URL, then you need to add it to Sitemap."
5885
  msgstr ""
5886
 
5887
- #: models/bulkseo/Visibility.php:50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5888
  msgid "Some visibility options are inactive."
5889
  msgstr ""
5890
 
5891
- #: models/bulkseo/Visibility.php:55
5892
  msgid ""
5893
  "Visibility is not set correctly. Click to open the Assistant in the right "
5894
  "sidebar and follow the instructions."
5895
  msgstr ""
5896
 
5897
- #: models/bulkseo/Visibility.php:59
5898
  msgid "Visibility is set correctly."
5899
  msgstr ""
5900
 
5901
- #: models/bulkseo/Visibility.php:84
5902
  #, php-format
5903
  msgid ""
5904
  "Noindex for this post type is deactivated from %sSEO Settings > Automation%s."
5905
  msgstr ""
5906
 
5907
- #: models/bulkseo/Visibility.php:88 models/bulkseo/Visibility.php:127
5908
  #, php-format
5909
  msgid "Robots Meta is deactivated from %sSEO Settings > SEO Metas%s."
5910
  msgstr ""
5911
 
5912
- #: models/bulkseo/Visibility.php:92 models/bulkseo/Visibility.php:131
5913
  #, php-format
5914
  msgid "SEO Metas is deactivated from %sSEO Settings > SEO Metas%s."
5915
  msgstr ""
5916
 
5917
- #: models/bulkseo/Visibility.php:101
5918
  #, php-format
5919
  msgid ""
5920
  "You selected '%s' in Settings > Reading. It's important to uncheck that "
5921
  "option."
5922
  msgstr ""
5923
 
5924
- #: models/bulkseo/Visibility.php:123
5925
  #, php-format
5926
  msgid ""
5927
  "Nofollow for this post type is deactivated from %sSEO Settings > Automation"
5928
  "%s."
5929
  msgstr ""
5930
 
5931
- #: models/bulkseo/Visibility.php:156
5932
  #, php-format
5933
  msgid ""
5934
  "This post type is excluded from sitemap. See %sSEO Settings > Automation%s."
5935
  msgstr ""
5936
 
5937
- #: models/bulkseo/Visibility.php:160
5938
  #, php-format
5939
  msgid "Sitemap XML is deactivated from %sSEO Settings > Sitemap XML%s."
5940
  msgstr ""
5941
 
5942
- #: models/domain/Patterns.php:377
 
 
 
 
 
5943
  msgid "Page"
5944
  msgstr ""
5945
 
5946
- #: models/domain/Patterns.php:378
5947
  msgid "of"
5948
  msgstr ""
5949
 
@@ -6112,7 +6319,7 @@ msgstr ""
6112
  #: models/focuspages/Innerlinks.php:86 models/focuspages/Keyword.php:133
6113
  #: models/focuspages/Length.php:89 models/focuspages/Nofollow.php:77
6114
  #: models/focuspages/Onpage.php:96 models/focuspages/Ranking.php:48
6115
- #: models/focuspages/Snippet.php:199 models/focuspages/Social.php:85
6116
  #: models/focuspages/Strategy.php:134 models/focuspages/Traffic.php:127
6117
  msgid ""
6118
  "Click to open the Assistant in the right sidebar and follow the instructions."
@@ -6150,14 +6357,14 @@ msgstr ""
6150
  #: models/focuspages/Ctr.php:74 models/focuspages/Image.php:106
6151
  #: models/focuspages/Impressions.php:65 models/focuspages/Impressions.php:74
6152
  #: models/focuspages/Keyword.php:101 models/focuspages/Keyword.php:110
6153
- #: models/focuspages/Strategy.php:112 view/Research/Briefcase.php:242
6154
  msgid "Do a research"
6155
  msgstr ""
6156
 
6157
  #: models/focuspages/Clicks.php:73 models/focuspages/Content.php:103
6158
  #: models/focuspages/Ctr.php:73 models/focuspages/Image.php:105
6159
  #: models/focuspages/Impressions.php:73 models/focuspages/Keyword.php:108
6160
- #: models/focuspages/Snippet.php:184 models/focuspages/Strategy.php:111
6161
  msgid "No Keyword found in Squirrly Live Assistant"
6162
  msgstr ""
6163
 
@@ -6189,8 +6396,8 @@ msgstr ""
6189
  #: models/focuspages/Content.php:48
6190
  #, php-format
6191
  msgid ""
6192
- "Make sure this Focus Page is optimized to 100%% using the %sSquirrly SEO "
6193
- "Live Assistant%s. %s As you can see clearly on Google search result pages, "
6194
  "Googles tries to find the closest match (inside web content) to what the "
6195
  "user searched for. %s That is why using this method of optimizing a page as "
6196
  "outlined by the Live Assistant feature is mandatory. %s Don't worry about "
@@ -6242,7 +6449,7 @@ msgid ""
6242
  msgstr ""
6243
 
6244
  #: models/focuspages/Content.php:92 models/focuspages/Keyword.php:104
6245
- #: view/Research/Briefcase.php:228 view/Research/HistoryDetails.php:78
6246
  #: view/Research/ResearchDetails.php:51
6247
  msgid "Optimize for this"
6248
  msgstr ""
@@ -6275,7 +6482,7 @@ msgid ""
6275
  "you used it more than once."
6276
  msgstr ""
6277
 
6278
- #: models/focuspages/Image.php:102 models/focuspages/Snippet.php:187
6279
  msgid "Edit your snippet"
6280
  msgstr ""
6281
 
@@ -6352,10 +6559,10 @@ msgstr ""
6352
  #: models/focuspages/Indexability.php:69
6353
  #, php-format
6354
  msgid ""
6355
- "Click the button to ask Google to re-index this page. %s Disclaimer: This "
6356
- "task will automatically turn to green once you click on the button and it "
6357
- "takes you to Google Search Console. It's up to you to make 100%% sure that "
6358
- "you do tell Google to either index or re-index this page. %s Perform a "
6359
  "manual request for Google to re-index this page. %s This is super important "
6360
  "to do whenever you make important changes to your pages. Otherwise, Google "
6361
  "will still have the old version of your page. %s If Google keeps having the "
@@ -6364,7 +6571,7 @@ msgid ""
6364
  "Search Console API to send Google the request on your behalf."
6365
  msgstr ""
6366
 
6367
- #: models/focuspages/Indexability.php:72 view/Blocks/Snippet.php:295
6368
  msgid "Canonical link"
6369
  msgstr ""
6370
 
@@ -6452,23 +6659,6 @@ msgid ""
6452
  "shot at ranking, make sure the competition is low for the keyword you choose."
6453
  msgstr ""
6454
 
6455
- #: models/focuspages/Keyword.php:54
6456
- msgid "Search volume"
6457
- msgstr ""
6458
-
6459
- #: models/focuspages/Keyword.php:56
6460
- #, php-format
6461
- msgid ""
6462
- "To turn this task to green, go and find a keyword that has a good search "
6463
- "volume. (meaning that many people search on Google for this keyword every "
6464
- "single month). %s The Research features from Squirrly SEO will indicate if "
6465
- "the volume is big enough. %s Since these are the most important pages on "
6466
- "your website, you need to make sure that you get the maximum number of "
6467
- "people possible to find this page. %s If you target keyword searches with "
6468
- "low volumes, then you'll end up having just 2 or 3 people every month "
6469
- "visiting this page. And then all the effort will have been for nothing."
6470
- msgstr ""
6471
-
6472
  #: models/focuspages/Keyword.php:59
6473
  msgid "Google Trend"
6474
  msgstr ""
@@ -6652,7 +6842,7 @@ msgstr ""
6652
  msgid "Nofollow on external links"
6653
  msgstr ""
6654
 
6655
- #: models/focuspages/Snippet.php:123
6656
  #, php-format
6657
  msgid ""
6658
  "To turn this task to green, go and define a title for this page. You can "
@@ -6665,13 +6855,13 @@ msgid ""
6665
  "that product."
6666
  msgstr ""
6667
 
6668
- #: models/focuspages/Snippet.php:126 models/focuspages/Snippet.php:251
6669
- #: models/focuspages/Snippet.php:273 view/Blocks/Snippet.php:698
6670
- #: view/Blocks/Snippet.php:965 view/SeoSettings/Automation.php:148
6671
  msgid "Description"
6672
  msgstr ""
6673
 
6674
- #: models/focuspages/Snippet.php:128
6675
  #, php-format
6676
  msgid ""
6677
  "To turn this task to green, go and define a %sMeta description%s for this "
@@ -6685,17 +6875,17 @@ msgid ""
6685
  "boost CTR (click-through rates)."
6686
  msgstr ""
6687
 
6688
- #: models/focuspages/Snippet.php:133
6689
  #, php-format
6690
  msgid "Keyword %s must be present in Title"
6691
  msgstr ""
6692
 
6693
- #: models/focuspages/Snippet.php:138
6694
  #, php-format
6695
  msgid "Keyword %s must be present in Description"
6696
  msgstr ""
6697
 
6698
- #: models/focuspages/Snippet.php:139
6699
  #, php-format
6700
  msgid ""
6701
  "Same as with the title task. %s If a user reads the description of your page "
@@ -6707,11 +6897,11 @@ msgid ""
6707
  "lot about this, because that's what people want to find on the search engine."
6708
  msgstr ""
6709
 
6710
- #: models/focuspages/Snippet.php:142
6711
  msgid "Open Graph - full definition"
6712
  msgstr ""
6713
 
6714
- #: models/focuspages/Snippet.php:144
6715
  #, php-format
6716
  msgid ""
6717
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -6723,11 +6913,11 @@ msgid ""
6723
  "relevant for your search engine position placements."
6724
  msgstr ""
6725
 
6726
- #: models/focuspages/Snippet.php:147
6727
  msgid "Twitter Cards - full definition"
6728
  msgstr ""
6729
 
6730
- #: models/focuspages/Snippet.php:149
6731
  #, php-format
6732
  msgid ""
6733
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
@@ -6737,11 +6927,11 @@ msgid ""
6737
  "that you won't miss a beat."
6738
  msgstr ""
6739
 
6740
- #: models/focuspages/Snippet.php:152
6741
  msgid "JSON-LD definition"
6742
  msgstr ""
6743
 
6744
- #: models/focuspages/Snippet.php:153
6745
  #, php-format
6746
  msgid ""
6747
  "To turn this task to green, you can easily use the JSON-LD section inside "
@@ -6752,11 +6942,11 @@ msgid ""
6752
  "%shttps://search.google.com/test/rich-results%s"
6753
  msgstr ""
6754
 
6755
- #: models/focuspages/Snippet.php:156
6756
  msgid "Customized"
6757
  msgstr ""
6758
 
6759
- #: models/focuspages/Snippet.php:157
6760
  #, php-format
6761
  msgid ""
6762
  "The Snippets of your most important pages should be customized. %s Use the "
@@ -6770,7 +6960,7 @@ msgid ""
6770
  "own custom snippet will be the one that gets displayed."
6771
  msgstr ""
6772
 
6773
- #: models/focuspages/Snippet.php:252 models/focuspages/Snippet.php:274
6774
  msgid "Image"
6775
  msgstr ""
6776
 
@@ -6974,41 +7164,41 @@ msgstr ""
6974
  msgid "No Squirrly SEO Robots found."
6975
  msgstr ""
6976
 
6977
- #: view/Assistant/Assistant.php:19
6978
  msgid "Optimize with Squirrly Live Assistant"
6979
  msgstr ""
6980
 
6981
- #: view/Assistant/Assistant.php:20
6982
  msgid ""
6983
  "Use Squirrly to optimize the content for your Posts, Pages, Products, Custom "
6984
  "Posts, etc."
6985
  msgstr ""
6986
 
6987
- #: view/Assistant/Assistant.php:34
6988
  msgid "Practice/Test Round"
6989
  msgstr ""
6990
 
6991
- #: view/Assistant/Assistant.php:43
6992
  msgid "Add New"
6993
  msgstr ""
6994
 
6995
- #: view/Assistant/Assistant.php:63
6996
  msgid "Tips: How to use Squirrly Live Assistant?"
6997
  msgstr ""
6998
 
6999
- #: view/Assistant/Assistant.php:65
7000
  msgid ""
7001
  "Create a new Post, Page or Product and the Live Assistant will load so you "
7002
  "can start optimize the content."
7003
  msgstr ""
7004
 
7005
- #: view/Assistant/Assistant.php:66
7006
  msgid ""
7007
  "You can also optimize an existing one and update the content for better "
7008
  "ranking."
7009
  msgstr ""
7010
 
7011
- #: view/Assistant/Assistant.php:67
7012
  msgid ""
7013
  "Make sure you optimize the lead pages for one or more keywords and monitor "
7014
  "them with Focus Pages."
@@ -7034,124 +7224,124 @@ msgstr ""
7034
  msgid "Live Assistant Settings"
7035
  msgstr ""
7036
 
7037
- #: view/Assistant/Settings.php:41
7038
  msgid "Squirrly Tooltips"
7039
  msgstr ""
7040
 
7041
- #: view/Assistant/Settings.php:42
7042
  #, php-format
7043
  msgid ""
7044
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. 'Enter a "
7045
  "keyword')."
7046
  msgstr ""
7047
 
7048
- #: view/Assistant/Settings.php:52
7049
  msgid "Fetch Snippet on Social Media"
7050
  msgstr ""
7051
 
7052
- #: view/Assistant/Settings.php:53
7053
  #, php-format
7054
  msgid ""
7055
  "Automatically fetch the Squirrly Snippet on %sFacebook Sharing Debugger%s "
7056
  "every time you update the content on a page."
7057
  msgstr ""
7058
 
7059
- #: view/Assistant/Settings.php:63
7060
  msgid "Download Remote Images"
7061
  msgstr ""
7062
 
7063
- #: view/Assistant/Settings.php:64
7064
  #, php-format
7065
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
7066
  msgstr ""
7067
 
7068
- #: view/Assistant/Settings.php:65
7069
  msgid ""
7070
  "Prevent from losing the images you use in your articles in case the remote "
7071
  "images are deleted."
7072
  msgstr ""
7073
 
7074
- #: view/Assistant/Settings.php:76
7075
  msgid "Show Copyright Free Images"
7076
  msgstr ""
7077
 
7078
- #: view/Assistant/Settings.php:77
7079
  #, php-format
7080
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7081
  msgstr ""
7082
 
7083
- #: view/Assistant/Settings.php:87
7084
  msgid "Live Assistant Type"
7085
  msgstr ""
7086
 
7087
- #: view/Assistant/Settings.php:88
7088
  msgid "Select how you want Squirrly Live Assistant to load in editor."
7089
  msgstr ""
7090
 
7091
- #: view/Assistant/Settings.php:92
7092
  msgid "Auto"
7093
  msgstr ""
7094
 
7095
- #: view/Assistant/Settings.php:93
7096
  msgid "Integrated Box"
7097
  msgstr ""
7098
 
7099
- #: view/Assistant/Settings.php:94
7100
  msgid "Floating Box"
7101
  msgstr ""
7102
 
7103
- #: view/Assistant/Settings.php:107
7104
  msgid "Activate Live Assistant in Frontend"
7105
  msgstr ""
7106
 
7107
- #: view/Assistant/Settings.php:108
7108
  msgid ""
7109
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7110
  "with Builders."
7111
  msgstr ""
7112
 
7113
- #: view/Assistant/Settings.php:109
7114
  msgid "Currently supports the Elementor Builder plugin."
7115
  msgstr ""
7116
 
7117
- #: view/Assistant/Settings.php:116
7118
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
7119
  msgstr ""
7120
 
7121
- #: view/Assistant/Settings.php:118
7122
  msgid ""
7123
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
7124
  "post types."
7125
  msgstr ""
7126
 
7127
- #: view/Assistant/Settings.php:124
7128
  msgid "Exclusions"
7129
  msgstr ""
7130
 
7131
- #: view/Assistant/Settings.php:125
7132
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7133
  msgstr ""
7134
 
7135
- #: view/Assistant/Settings.php:152 view/SeoSettings/Automation.php:507
7136
- #: view/SeoSettings/Jsonld.php:425 view/SeoSettings/Metas.php:227
7137
- #: view/SeoSettings/Sitemap.php:370 view/SeoSettings/Social.php:415
7138
  msgid "Show Advanced Options"
7139
  msgstr ""
7140
 
7141
- #: view/Assistant/Settings.php:153 view/SeoSettings/Automation.php:508
7142
- #: view/SeoSettings/Jsonld.php:426 view/SeoSettings/Metas.php:228
7143
- #: view/SeoSettings/Sitemap.php:371 view/SeoSettings/Social.php:416
7144
  msgid "Hide Advanced Options"
7145
  msgstr ""
7146
 
7147
- #: view/Assistant/Settings.php:156 view/Audits/Settings.php:61
7148
- #: view/Ranking/Settings.php:346 view/SeoSettings/Advanced.php:92
7149
- #: view/SeoSettings/Automation.php:511 view/SeoSettings/Automation.php:625
7150
- #: view/SeoSettings/Favicon.php:108 view/SeoSettings/Jsonld.php:429
7151
- #: view/SeoSettings/Links.php:112 view/SeoSettings/Metas.php:231
7152
- #: view/SeoSettings/Robots.php:86 view/SeoSettings/Sitemap.php:374
7153
- #: view/SeoSettings/Social.php:419 view/SeoSettings/Tracking.php:147
7154
- #: view/SeoSettings/Webmaster.php:157
7155
  msgid "Save Settings"
7156
  msgstr ""
7157
 
@@ -7159,53 +7349,54 @@ msgstr ""
7159
  msgid "Add a page in Audit"
7160
  msgstr ""
7161
 
7162
- #: view/Audits/Addpage.php:24 view/Audits/Audit.php:26
7163
- #: view/Audits/Audits.php:27 view/Audits/Compare.php:30
7164
  msgid ""
7165
  "Verifies the online presence of your website by knowing how your website is "
7166
  "performing in terms of Blogging, SEO, Social, Authority, Links, and Traffic"
7167
  msgstr ""
7168
 
7169
- #: view/Audits/Addpage.php:92 view/BulkSeo/Bulkseo.php:100
7170
- #: view/FocusPages/Addpage.php:92
7171
  msgid "Any status"
7172
  msgstr ""
7173
 
7174
- #: view/Audits/Addpage.php:112 view/BulkSeo/Bulkseo.php:120
7175
- #: view/FocusPages/Addpage.php:112 view/Research/Research.php:208
7176
  msgid "Search"
7177
  msgstr ""
7178
 
7179
- #: view/Audits/Addpage.php:114 view/Audits/Audit.php:38
7180
- #: view/Audits/Compare.php:45 view/BulkSeo/Bulkseo.php:122
7181
- #: view/FocusPages/Addpage.php:114 view/FocusPages/FocusPages.php:7
7182
- #: view/Ranking/Rankings.php:59 view/Research/Briefcase.php:38
 
7183
  msgid "Show All"
7184
  msgstr ""
7185
 
7186
- #: view/Audits/Addpage.php:132 view/FocusPages/Addpage.php:133
7187
  msgid "Option"
7188
  msgstr ""
7189
 
7190
- #: view/Audits/Addpage.php:174
7191
  msgid "Add Page to Audit"
7192
  msgstr ""
7193
 
7194
- #: view/Audits/Addpage.php:178
7195
  msgid "See Audits"
7196
  msgstr ""
7197
 
7198
- #: view/Audits/Addpage.php:192 view/BulkSeo/Bulkseo.php:197
7199
- #: view/FocusPages/Addpage.php:196
7200
  msgid "Prev Page"
7201
  msgstr ""
7202
 
7203
- #: view/Audits/Addpage.php:193 view/BulkSeo/Bulkseo.php:198
7204
- #: view/FocusPages/Addpage.php:197
7205
  msgid "Next Page"
7206
  msgstr ""
7207
 
7208
- #: view/Audits/Addpage.php:201 view/FocusPages/Addpage.php:205
7209
  msgid "No page found. Try other post types."
7210
  msgstr ""
7211
 
@@ -7213,15 +7404,15 @@ msgstr ""
7213
  msgid "Audit Details"
7214
  msgstr ""
7215
 
7216
- #: view/Audits/Audit.php:64
7217
  msgid "Audit Pages"
7218
  msgstr ""
7219
 
7220
- #: view/Audits/Audit.php:87
7221
  msgid "Show Only Completed Tasks"
7222
  msgstr ""
7223
 
7224
- #: view/Audits/Audit.php:92
7225
  msgid "Show Only Incompleted Tasks"
7226
  msgstr ""
7227
 
@@ -7248,15 +7439,20 @@ msgid ""
7248
  msgstr ""
7249
 
7250
  #: view/Audits/AuditPageRow.php:50 view/Audits/AuditPageRow.php:78
7251
- #: view/FocusPages/FocusPageRow.php:114 view/FocusPages/FocusPageRow.php:192
7252
  msgid "Inspect URL"
7253
  msgstr ""
7254
 
7255
- #: view/Audits/AuditPageRow.php:66
 
 
 
 
 
7256
  msgid "Do you want to delete the Audit Page?"
7257
  msgstr ""
7258
 
7259
- #: view/Audits/AuditPageRow.php:72
7260
  msgid "Remove Page from Audit"
7261
  msgstr ""
7262
 
@@ -7274,7 +7470,7 @@ msgid "No data for this filter. %sShow All%s Audit Pages."
7274
  msgstr ""
7275
 
7276
  #: view/Audits/AuditPages.php:54
7277
- msgid "Welcome to Squirrly SEO Audits"
7278
  msgstr ""
7279
 
7280
  #: view/Audits/AuditPages.php:56
@@ -7282,7 +7478,7 @@ msgid "Add a new page for Audit to get started"
7282
  msgstr ""
7283
 
7284
  #: view/Audits/AuditPages.php:69 view/Errors/Error.php:21
7285
- #: view/FocusPages/FocusPages.php:127 view/Ranking/Rankings.php:459
7286
  #, php-format
7287
  msgid ""
7288
  "There is a connection error with Squirrly Cloud. Please check the connection "
@@ -7303,7 +7499,7 @@ msgid "Your score is good. Keep it as high as posible for good results."
7303
  msgstr ""
7304
 
7305
  #: view/Audits/AuditStats.php:41 view/Audits/AuditStats.php:235
7306
- #: view/Audits/Compare.php:74
7307
  msgid "Audit Score"
7308
  msgstr ""
7309
 
@@ -7336,7 +7532,7 @@ msgid "Audit not ready yet"
7336
  msgstr ""
7337
 
7338
  #: view/Audits/AuditStats.php:123 view/Audits/AuditStats.php:237
7339
- #: view/Ranking/Rankings.php:411 view/Research/History.php:32
7340
  msgid "Date"
7341
  msgstr ""
7342
 
@@ -7353,7 +7549,7 @@ msgstr ""
7353
  msgid "You've completed %s tasks from %s"
7354
  msgstr ""
7355
 
7356
- #: view/Audits/AuditStats.php:170 view/Audits/Compare.php:55
7357
  msgid "Scores"
7358
  msgstr ""
7359
 
@@ -7363,7 +7559,7 @@ msgid "the latest %s days evolution for Audit"
7363
  msgstr ""
7364
 
7365
  #: view/Audits/AuditStats.php:196 view/FocusPages/FocusPageStats.php:141
7366
- #: view/Goals/CheckSeo.php:21 view/Ranking/Rankings.php:156
7367
  msgid "Progress & Achievements"
7368
  msgstr ""
7369
 
@@ -7373,7 +7569,7 @@ msgid "the latest %s days progress for Audit Pages"
7373
  msgstr ""
7374
 
7375
  #: view/Audits/AuditStats.php:207 view/FocusPages/FocusPageStats.php:152
7376
- #: view/Ranking/Rankings.php:185
7377
  msgid "No progress found yet"
7378
  msgstr ""
7379
 
@@ -7401,11 +7597,7 @@ msgstr ""
7401
  msgid "Show Audit"
7402
  msgstr ""
7403
 
7404
- #: view/Audits/Audits.php:26
7405
- msgid "Audits"
7406
- msgstr ""
7407
-
7408
- #: view/Audits/Audits.php:67
7409
  #, php-format
7410
  msgid ""
7411
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
@@ -7413,12 +7605,12 @@ msgid ""
7413
  "involved."
7414
  msgstr ""
7415
 
7416
- #: view/Audits/Audits.php:74
7417
  #, php-format
7418
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
7419
  msgstr ""
7420
 
7421
- #: view/Audits/Audits.php:93 view/FocusPages/Pagelist.php:92
7422
  msgid "Squirrly Inspect URL"
7423
  msgstr ""
7424
 
@@ -7426,11 +7618,11 @@ msgstr ""
7426
  msgid "Audit Settings"
7427
  msgstr ""
7428
 
7429
- #: view/Audits/Settings.php:44
7430
  msgid "Audit Email"
7431
  msgstr ""
7432
 
7433
- #: view/Audits/Settings.php:45
7434
  msgid "Enter the email address on which you want to receive the weekly audits."
7435
  msgstr ""
7436
 
@@ -7481,7 +7673,7 @@ msgid "Connect"
7481
  msgstr ""
7482
 
7483
  #: view/Blocks/Connect.php:31
7484
- msgid "Let Squirrly API get data for Focus Pages"
7485
  msgstr ""
7486
 
7487
  #: view/Blocks/Connect.php:35
@@ -7535,26 +7727,63 @@ msgstr ""
7535
  msgid "Boost your SEO with Bulk SEO"
7536
  msgstr ""
7537
 
7538
- #: view/Blocks/Dashboard.php:136 view/Goals/CheckSeo.php:119
7539
  msgid "Checking the website ..."
7540
  msgstr ""
7541
 
7542
- #: view/Blocks/Features.php:11
7543
- msgid "Squirrly SEO Feature Categories"
7544
  msgstr ""
7545
 
7546
- #: view/Blocks/Features.php:12
7547
- msgid "Manage the Squirrly SEO Features & access them directly from here."
7548
  msgstr ""
7549
 
7550
- #: view/Blocks/Features.php:23
7551
  msgid "Search Feature"
7552
  msgstr ""
7553
 
7554
- #: view/Blocks/Features.php:59
 
 
 
 
 
 
 
 
 
7555
  msgid "start feature setup"
7556
  msgstr ""
7557
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7558
  #: view/Blocks/Jorney.php:13 view/Blocks/Jorney.php:96
7559
  msgid "14 Days Journey Course"
7560
  msgstr ""
@@ -7609,7 +7838,7 @@ msgstr ""
7609
  msgid "I'm ready to start the Journey To Better Ranking"
7610
  msgstr ""
7611
 
7612
- #: view/Blocks/KnowledgeBase.php:7
7613
  msgid "Knowledge Base"
7614
  msgstr ""
7615
 
@@ -7650,12 +7879,6 @@ msgstr ""
7650
  msgid "Waiting for your editor to load .."
7651
  msgstr ""
7652
 
7653
- #: view/Blocks/SLASearch.php:4 view/Blocks/Toolbar.php:62
7654
- msgid ""
7655
- "Javascript is disabled on your browser! You need to activate the javascript "
7656
- "in order to use Squirrly SEO."
7657
- msgstr ""
7658
-
7659
  #: view/Blocks/SLASearch.php:9
7660
  msgid "Click to Close Squirrly Live Assistant"
7661
  msgstr ""
@@ -7744,353 +7967,387 @@ msgstr ""
7744
  msgid "Split Window"
7745
  msgstr ""
7746
 
7747
- #: view/Blocks/Snippet.php:81
7748
  msgid "Meta Tags"
7749
  msgstr ""
7750
 
7751
- #: view/Blocks/Snippet.php:108
7752
  #, php-format
7753
  msgid ""
7754
  "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
7755
  "will not load for this post type on the frontend"
7756
  msgstr ""
7757
 
7758
- #: view/Blocks/Snippet.php:116 view/SeoSettings/Automation.php:184
7759
- #: view/SeoSettings/Automation.php:211 view/SeoSettings/Automation.php:290
7760
  msgid "Activate Metas"
7761
  msgstr ""
7762
 
7763
- #: view/Blocks/Snippet.php:125
7764
  msgid "How this page will appear on Search Engines"
7765
  msgstr ""
7766
 
7767
- #: view/Blocks/Snippet.php:129 view/Blocks/Snippet.php:361
7768
- #: view/Blocks/Snippet.php:569 view/Blocks/Snippet.php:835
7769
- #: view/Blocks/Snippet.php:1065
7770
  msgid "Refresh"
7771
  msgstr ""
7772
 
7773
- #: view/Blocks/Snippet.php:133 view/Blocks/Snippet.php:594
7774
- #: view/Blocks/Snippet.php:862
7775
  msgid "AUTO-DRAFT"
7776
  msgstr ""
7777
 
7778
- #: view/Blocks/Snippet.php:144 view/Blocks/Snippet.php:882
7779
  msgid "Please save the post first to be able to edit the Squirrly SEO Snippet"
7780
  msgstr ""
7781
 
7782
- #: view/Blocks/Snippet.php:151 view/Blocks/Snippet.php:622
7783
- #: view/Blocks/Snippet.php:889
7784
  msgid "Cancel"
7785
  msgstr ""
7786
 
7787
- #: view/Blocks/Snippet.php:152 view/Blocks/Snippet.php:362
7788
- #: view/Blocks/Snippet.php:623 view/Blocks/Snippet.php:890
7789
- #: view/Blocks/Snippet.php:1066
7790
  msgid "Save"
7791
  msgstr ""
7792
 
7793
- #: view/Blocks/Snippet.php:162
7794
  msgid "Activate Title"
7795
  msgstr ""
7796
 
7797
- #: view/Blocks/Snippet.php:169 view/Blocks/Snippet.php:220
7798
- #: view/Blocks/Snippet.php:656 view/Blocks/Snippet.php:699
7799
- #: view/Blocks/Snippet.php:923 view/Blocks/Snippet.php:966
7800
  #, php-format
7801
  msgid "Tips: Length %s-%s chars"
7802
  msgstr ""
7803
 
7804
- #: view/Blocks/Snippet.php:172 view/Blocks/Snippet.php:196
7805
- #: view/Blocks/Snippet.php:223 view/Blocks/Snippet.php:250
7806
- #: view/Blocks/Snippet.php:659 view/Blocks/Snippet.php:683
7807
- #: view/Blocks/Snippet.php:702 view/Blocks/Snippet.php:729
7808
- #: view/Blocks/Snippet.php:926 view/Blocks/Snippet.php:950
7809
- #: view/Blocks/Snippet.php:969 view/Blocks/Snippet.php:996
7810
  msgid "Pattern"
7811
  msgstr ""
7812
 
7813
- #: view/Blocks/Snippet.php:189 view/Blocks/Snippet.php:676
7814
- #: view/Blocks/Snippet.php:943
7815
  msgid "Default Title"
7816
  msgstr ""
7817
 
7818
- #: view/Blocks/Snippet.php:213
7819
  msgid "Activate Description"
7820
  msgstr ""
7821
 
7822
- #: view/Blocks/Snippet.php:219
7823
  msgid "Meta Description"
7824
  msgstr ""
7825
 
7826
- #: view/Blocks/Snippet.php:243 view/Blocks/Snippet.php:722
7827
- #: view/Blocks/Snippet.php:989
7828
  msgid "Default Description"
7829
  msgstr ""
7830
 
7831
- #: view/Blocks/Snippet.php:267
7832
  msgid "Activate Keywords"
7833
  msgstr ""
7834
 
7835
- #: view/Blocks/Snippet.php:273
7836
  msgid "Meta Keywords"
7837
  msgstr ""
7838
 
7839
- #: view/Blocks/Snippet.php:277
7840
  msgid "+ Add keyword"
7841
  msgstr ""
7842
 
7843
- #: view/Blocks/Snippet.php:289
7844
  msgid "Activate Canonical"
7845
  msgstr ""
7846
 
7847
- #: view/Blocks/Snippet.php:296
7848
  msgid "Leave it blank if you don't have an external canonical"
7849
  msgstr ""
7850
 
7851
- #: view/Blocks/Snippet.php:299
7852
  msgid "Found"
7853
  msgstr ""
7854
 
7855
- #: view/Blocks/Snippet.php:311
7856
  msgid "Default Link"
7857
  msgstr ""
7858
 
7859
- #: view/Blocks/Snippet.php:333 view/Blocks/Snippet.php:535
7860
- #: view/Blocks/Snippet.php:793 view/Blocks/Snippet.php:1037
7861
- #: view/Blocks/Snippet.php:1170
7862
  msgid ""
7863
  "To edit the snippet, you have to activate Squirrly SEO for this page first"
7864
  msgstr ""
7865
 
7866
- #: view/Blocks/Snippet.php:342
7867
  msgid "Activate Squirrly Snippet for this page"
7868
  msgstr ""
7869
 
7870
- #: view/Blocks/Snippet.php:347 view/Blocks/Snippet.php:798
7871
- #: view/Blocks/Snippet.php:1042
7872
  msgid "Post Type"
7873
  msgstr ""
7874
 
7875
- #: view/Blocks/Snippet.php:349 view/Blocks/Snippet.php:759
7876
- #: view/Blocks/Snippet.php:800
7877
- msgid "OG Type"
7878
  msgstr ""
7879
 
7880
- #: view/Blocks/Snippet.php:379
 
 
 
 
7881
  #, php-format
7882
  msgid ""
7883
  "JSON-LD is disable for this Post Type (%s). See %sSquirrly > SEO Settings > "
7884
  "Automation%s."
7885
  msgstr ""
7886
 
7887
- #: view/Blocks/Snippet.php:409
7888
  msgid "JSON-LD Schema Types"
7889
  msgstr ""
7890
 
7891
- #: view/Blocks/Snippet.php:410 view/SeoSettings/Automation.php:342
7892
  msgid "JSON-LD will load the Schema for the selected types."
7893
  msgstr ""
7894
 
7895
- #: view/Blocks/Snippet.php:411
7896
  #, php-format
7897
  msgid "Setup JSON-LD for this Post Type by using %s SEO Automation %s"
7898
  msgstr ""
7899
 
7900
- #: view/Blocks/Snippet.php:440
7901
  msgid "Hold Control key (or Command on Mac) to select multiple types."
7902
  msgstr ""
7903
 
7904
- #: view/Blocks/Snippet.php:449
7905
  msgid "JSON-LD Breadcrumbs Schema"
7906
  msgstr ""
7907
 
7908
- #: view/Blocks/Snippet.php:450
7909
  #, php-format
7910
  msgid "Manage BreadcrumbsList Schema from %s JSON-LD Settings %s."
7911
  msgstr ""
7912
 
7913
- #: view/Blocks/Snippet.php:455 view/Blocks/Snippet.php:473
 
7914
  msgid "Active"
7915
  msgstr ""
7916
 
7917
- #: view/Blocks/Snippet.php:457 view/Blocks/Snippet.php:475
 
7918
  msgid "Not Active"
7919
  msgstr ""
7920
 
7921
- #: view/Blocks/Snippet.php:467
 
 
 
 
 
 
 
 
7922
  msgid "Woocommerce Product Support"
7923
  msgstr ""
7924
 
7925
- #: view/Blocks/Snippet.php:468
7926
  #, php-format
7927
  msgid "Manage Woocommerce Support from %s JSON-LD Settings %s."
7928
  msgstr ""
7929
 
7930
- #: view/Blocks/Snippet.php:487
 
 
 
 
 
 
 
 
 
7931
  msgid "JSON-LD Code"
7932
  msgstr ""
7933
 
7934
- #: view/Blocks/Snippet.php:488
7935
  msgid "Let Squirrly load the JSON-LD Schema for the selected types."
7936
  msgstr ""
7937
 
7938
- #: view/Blocks/Snippet.php:492 view/Blocks/Snippet.php:770
7939
- #: view/Blocks/Snippet.php:1017
7940
  msgid "(Auto)"
7941
  msgstr ""
7942
 
7943
- #: view/Blocks/Snippet.php:493
7944
  msgid "Custom Code"
7945
  msgstr ""
7946
 
7947
- #: view/Blocks/Snippet.php:495
7948
  #, php-format
7949
  msgid ""
7950
  "Use Advanced Custom Fields (ACF) plugin to add custom JSON-LD. %s Learn More "
7951
  "%s"
7952
  msgstr ""
7953
 
7954
- #: view/Blocks/Snippet.php:504
7955
  msgid "Custom JSON-LD Code"
7956
  msgstr ""
7957
 
7958
- #: view/Blocks/Snippet.php:505
7959
  #, php-format
7960
  msgid "Add JSON-LD code from %sSchema Generator Online%s."
7961
  msgstr ""
7962
 
7963
- #: view/Blocks/Snippet.php:518
7964
  msgid "Validate JSON-LD"
7965
  msgstr ""
7966
 
7967
- #: view/Blocks/Snippet.php:547 view/Blocks/Snippet.php:813
7968
  #, php-format
7969
  msgid ""
7970
  "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
7971
  "will not load for this post type on the frontend."
7972
  msgstr ""
7973
 
7974
- #: view/Blocks/Snippet.php:564
7975
  msgid "How this page appears on Facebook"
7976
  msgstr ""
7977
 
7978
- #: view/Blocks/Snippet.php:570
7979
  msgid "Edit Open Graph"
7980
  msgstr ""
7981
 
7982
- #: view/Blocks/Snippet.php:582 view/Blocks/Snippet.php:849
7983
  msgid "The image size must be at least 500 pixels wide"
7984
  msgstr ""
7985
 
7986
- #: view/Blocks/Snippet.php:603 view/Blocks/Snippet.php:871
7987
  msgid ""
7988
  "This is the Featured Image. You can change it if you edit the snippet and "
7989
  "upload another image."
7990
  msgstr ""
7991
 
7992
- #: view/Blocks/Snippet.php:615
7993
  msgid "Please save the post first to be able to edit the Squirrly SEO Snippet."
7994
  msgstr ""
7995
 
7996
- #: view/Blocks/Snippet.php:632 view/Blocks/Snippet.php:899
7997
  msgid "Media Image"
7998
  msgstr ""
7999
 
8000
- #: view/Blocks/Snippet.php:636 view/Blocks/Snippet.php:903
8001
- #: view/Research/Briefcase.php:468 view/SeoSettings/Favicon.php:78
8002
  msgid "Upload"
8003
  msgstr ""
8004
 
8005
- #: view/Blocks/Snippet.php:637 view/Blocks/Snippet.php:904
8006
  msgid "Image size must be at least 500 pixels wide"
8007
  msgstr ""
8008
 
8009
- #: view/Blocks/Snippet.php:744
8010
  msgid "Author Link"
8011
  msgstr ""
8012
 
8013
- #: view/Blocks/Snippet.php:745
8014
  msgid "For multiple authors, separate their Faceb
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Squirrly SEO 2020 (Smart Strategy)\n"
6
+ "POT-Creation-Date: 2021-04-26 17:32+0300\n"
7
  "PO-Revision-Date: 2020-10-13 10:56+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
 
24
+ #: classes/RemoteController.php:275
25
  msgid "Too many API attempts, please slow down the request."
26
  msgstr ""
27
 
28
+ #: classes/RemoteController.php:279
29
  msgid ""
30
  "Squirrly Cloud is down for a bit of maintenance right now. But we'll be back "
31
  "in a minute."
32
  msgstr ""
33
 
34
+ #: classes/RemoteController.php:1338
35
  msgid "Keyword:"
36
  msgstr ""
37
 
38
+ #: classes/RemoteController.php:1339
39
  msgid "date"
40
  msgstr ""
41
 
42
+ #: classes/RemoteController.php:1340
43
  msgid ""
44
+ "To load the Live Assistant and optimize this page, click to connect to "
45
+ "Squirrly Cloud."
46
  msgstr ""
47
 
48
+ #: classes/RemoteController.php:1341 controllers/CheckSeo.php:329
49
+ #: controllers/Patterns.php:21 controllers/Research.php:313
50
+ #: controllers/Research.php:344 controllers/Research.php:398
51
+ #: controllers/Research.php:526 controllers/Research.php:735
52
+ #: view/Blocks/Snippet.php:1307
53
  msgid "Saved!"
54
  msgstr ""
55
 
56
+ #: classes/RemoteController.php:1342
57
  msgid "Read it!"
58
  msgstr ""
59
 
60
+ #: classes/RemoteController.php:1343
61
  msgid "Insert it!"
62
  msgstr ""
63
 
64
+ #: classes/RemoteController.php:1344
65
  msgid "Reference"
66
  msgstr ""
67
 
68
+ #: classes/RemoteController.php:1345
69
  msgid "Insert as box"
70
  msgstr ""
71
 
72
+ #: classes/RemoteController.php:1346
73
  msgid "Insert Link"
74
  msgstr ""
75
 
76
+ #: classes/RemoteController.php:1347
77
  msgid "Not relevant?"
78
  msgstr ""
79
 
80
+ #: classes/RemoteController.php:1348
81
  msgid "Insert in your article"
82
  msgstr ""
83
 
84
+ #: classes/RemoteController.php:1349
85
  msgid ":( An error occurred while processing your request. Please try again"
86
  msgstr ""
87
 
88
+ #: classes/RemoteController.php:1350
89
  msgid "No results found!"
90
  msgstr ""
91
 
92
+ #: classes/RemoteController.php:1351
93
  #, php-format
94
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
95
  msgstr ""
96
 
97
+ #: classes/RemoteController.php:1352
98
  msgid "Has creative commons attributes"
99
  msgstr ""
100
 
101
+ #: classes/RemoteController.php:1353
102
  msgid "No known copyright restrictions"
103
  msgstr ""
104
 
105
+ #: classes/RemoteController.php:1354
106
  msgid ""
107
  "You haven`t used Squirrly SEO to optimize your article. Do you want to "
108
  "optimize for a keyword before publishing?"
109
  msgstr ""
110
 
111
+ #: classes/RemoteController.php:1355
112
  msgid "Your Subscription has Expired"
113
  msgstr ""
114
 
115
+ #: classes/RemoteController.php:1356
116
  msgid "There are no keywords saved in briefcase yet"
117
  msgstr ""
118
 
119
+ #: classes/RemoteController.php:1357
120
  #, php-format
121
  msgid "Congratulations! Your article is 100% optimized!"
122
  msgstr ""
123
 
124
+ #: classes/RemoteController.php:1358
125
  #, php-format
126
  msgid "appears too many times. Try to remove %s of them"
127
  msgstr ""
128
 
129
+ #: classes/RemoteController.php:1359
130
  #, php-format
131
  msgid "write %s more words"
132
  msgstr ""
133
 
134
+ #: classes/RemoteController.php:1360
135
  #, php-format
136
  msgid "Add the keyword in the %s of your article"
137
  msgstr ""
138
 
139
+ #: classes/RemoteController.php:1361
140
  msgid "Click to keep the highlight on"
141
  msgstr ""
142
 
143
+ #: classes/RemoteController.php:1362
144
  msgid "introduction"
145
  msgstr ""
146
 
147
+ #: classes/RemoteController.php:1363
148
  #, php-format
149
  msgid "Write more words after the %s keyword"
150
  msgstr ""
151
 
152
+ #: classes/RemoteController.php:1364
153
  msgid "or use synonyms"
154
  msgstr ""
155
 
156
+ #: classes/RemoteController.php:1365
157
  #, php-format
158
  msgid "add %s more word(s)"
159
  msgstr ""
160
 
161
+ #: classes/RemoteController.php:1366
162
  #, php-format
163
  msgid "or remove %s word(s)"
164
  msgstr ""
165
 
166
+ #: classes/RemoteController.php:1367
167
  #, php-format
168
  msgid "add the selected keyword %s more time(s) "
169
  msgstr ""
170
 
171
+ #: classes/RemoteController.php:1368
172
  #, php-format
173
  msgid "write %s more words to start calculating"
174
  msgstr ""
175
 
176
+ #: classes/RemoteController.php:1369 view/Research/Research.php:51
177
  msgid "Add to Briefcase"
178
  msgstr ""
179
 
180
+ #: classes/RemoteController.php:1370
181
  msgid "Add Keyword to Briefcase"
182
  msgstr ""
183
 
184
+ #: classes/RemoteController.php:1371
185
  msgid "Select"
186
  msgstr ""
187
 
188
+ #: classes/RemoteController.php:1372 view/Blocks/Snippet.php:138
189
+ #: view/Blocks/Snippet.php:654 view/Blocks/Snippet.php:922
190
  msgid "Auto Draft"
191
  msgstr ""
192
 
193
+ #: classes/RemoteController.php:1373
194
+ msgid "Enter keyword above and press ENTER"
195
+ msgstr ""
196
+
197
+ #: classes/RemoteController.php:1374
198
+ msgid "Add Keywords from Briefcase"
199
+ msgstr ""
200
+
201
+ #: classes/RemoteController.php:1375
202
  msgid ""
203
+ "Live Assistant was used to optimize this page with the Page Builder. Please "
204
+ "go back and resume your optimization work there."
 
205
  msgstr ""
206
 
207
  #: classes/helpers/Sanitize.php:196
244
  msgid "The code for Facebook App must only contain numbers."
245
  msgstr ""
246
 
247
+ #: classes/helpers/Tools.php:78
248
  msgid "Getting started"
249
  msgstr ""
250
 
251
+ #: classes/helpers/Tools.php:103
252
  msgid "Documentation"
253
  msgstr ""
254
 
255
+ #: classes/helpers/Tools.php:104
256
  msgid "Leave a review"
257
  msgstr ""
258
 
259
+ #: classes/helpers/Tools.php:530 classes/helpers/Tools.php:587
 
 
 
 
260
  msgid "Category"
261
  msgstr ""
262
 
263
+ #: classes/helpers/Tools.php:549 classes/helpers/Tools.php:606
264
  msgid "Tag"
265
  msgstr ""
266
 
267
+ #: classes/helpers/Tools.php:568
268
+ msgid "Format"
269
+ msgstr ""
270
+
271
+ #: classes/helpers/Tools.php:625
272
  msgid "Shipping Option"
273
  msgstr ""
274
 
275
+ #: classes/helpers/Tools.php:663
276
  msgid "Author at"
277
  msgstr ""
278
 
279
+ #: classes/helpers/Tools.php:701
280
  msgid "Are you looking for"
281
  msgstr ""
282
 
283
+ #: classes/helpers/Tools.php:702
284
  msgid "These are the results for"
285
  msgstr ""
286
 
287
+ #: classes/helpers/Tools.php:702
288
  msgid "that you can find on our website."
289
  msgstr ""
290
 
291
+ #: classes/helpers/Tools.php:738
292
  msgid "Page not found"
293
  msgstr ""
294
 
295
+ #: classes/helpers/Tools.php:739
296
  msgid "This page could not be found on our website."
297
  msgstr ""
298
 
299
+ #: classes/helpers/Tools.php:1071
300
  msgid "For better text comparison you need to install PHP mbstring extension."
301
  msgstr ""
302
 
375
  msgstr ""
376
 
377
  #: config/config.php:48
378
+ msgid "Displays the post type singular label"
379
  msgstr ""
380
 
381
  #: config/config.php:49
382
+ msgid "Displays the post type plural label"
383
  msgstr ""
384
 
385
  #: config/config.php:50
386
+ msgid "Adds the author's biographical info to the post description"
387
  msgstr ""
388
 
389
  #: config/config.php:51
390
+ msgid "Displays the date of the post/page once it's published"
391
  msgstr ""
392
 
393
  #: config/config.php:52
394
+ msgid "Displays the current date"
395
  msgstr ""
396
 
397
  #: config/config.php:53
398
+ msgid "Adds the current day"
399
  msgstr ""
400
 
401
  #: config/config.php:54
402
+ msgid "Adds the current month"
403
  msgstr ""
404
 
405
  #: config/config.php:55
406
+ msgid "Adds the current year"
407
  msgstr ""
408
 
409
  #: config/config.php:56
410
+ msgid "Adds the title of a page's parent page"
411
  msgstr ""
412
 
413
  #: config/config.php:57
414
+ msgid "Adds the product name from Woocommerce for the current product"
415
  msgstr ""
416
 
417
  #: config/config.php:58
418
+ msgid "Adds the product price from Woocommerce for the current product"
419
+ msgstr ""
420
+
421
+ #: config/config.php:59
422
+ msgid ""
423
+ "Adds the product price with Tax from Woocommerce for the current product"
424
+ msgstr ""
425
+
426
+ #: config/config.php:60
427
+ msgid "Adds the product sale price from Woocommerce for the current product"
428
+ msgstr ""
429
+
430
+ #: config/config.php:61
431
  msgid ""
432
  "Adds the product price currency from Woocommerce for the current product"
433
  msgstr ""
434
 
435
+ #: config/config.php:62
436
+ msgid "Adds the product brand from Woocommerce for the current product"
437
+ msgstr ""
438
+
439
  #: controllers/Api.php:69
440
  msgid "Invalid Token. Please try again"
441
  msgstr ""
456
  msgid "Wrong Params"
457
  msgstr ""
458
 
459
+ #: controllers/Assistant.php:71
460
  msgid "No keyword found."
461
  msgstr ""
462
 
463
  #: controllers/Assistant.php:110 controllers/Assistant.php:137
464
+ #: controllers/Audits.php:368 controllers/Ranking.php:149
465
  #: controllers/SeoSettings.php:146 controllers/SeoSettings.php:192
466
  #: controllers/SeoSettings.php:209 controllers/SeoSettings.php:233
467
  #: controllers/SeoSettings.php:272 controllers/SeoSettings.php:301
468
+ #: controllers/SeoSettings.php:332 controllers/SeoSettings.php:658
469
+ #: controllers/SeoSettings.php:776 controllers/SeoSettings.php:811
470
  msgid "Saved"
471
  msgstr ""
472
 
473
  #: controllers/Assistant.php:116 controllers/BulkSeo.php:73
474
+ #: controllers/Patterns.php:118 controllers/Post.php:332
475
+ #: controllers/Post.php:385 controllers/Post.php:416 controllers/Post.php:451
476
+ #: controllers/PostsList.php:206 controllers/Research.php:204
477
+ #: controllers/Research.php:211 controllers/Research.php:249
478
+ #: controllers/Research.php:271 controllers/Research.php:294
479
+ #: controllers/Research.php:324 controllers/Research.php:351
480
+ #: controllers/Research.php:375 controllers/Research.php:405
481
+ #: controllers/Research.php:428 controllers/Research.php:508
482
+ #: controllers/Research.php:534 controllers/Research.php:685
483
+ #: controllers/Research.php:709 controllers/Research.php:743
484
+ #: controllers/Research.php:769 controllers/SeoSettings.php:405
485
+ #: controllers/SeoSettings.php:647 controllers/SeoSettings.php:671
486
+ #: controllers/SeoSettings.php:684 controllers/SeoSettings.php:705
487
+ #: controllers/SeoSettings.php:724 controllers/SeoSettings.php:742
488
+ #: controllers/SeoSettings.php:791 controllers/Snippet.php:173
489
  msgid "You do not have permission to perform this action"
490
  msgstr ""
491
 
493
  msgid "Error: Could not save the data."
494
  msgstr ""
495
 
496
+ #: controllers/Audits.php:142
497
  msgid "The audit was not found. Please load another audit."
498
  msgstr ""
499
 
500
+ #: controllers/Audits.php:171
501
  msgid "Could not load the Audit Page."
502
  msgstr ""
503
 
504
+ #: controllers/Audits.php:285
505
  msgid "Audit page is added. The audit may take a while so please be patient."
506
  msgstr ""
507
 
508
+ #: controllers/Audits.php:288
509
  msgid "You reached the maximum number of audit pages for your account."
510
  msgstr ""
511
 
512
+ #: controllers/Audits.php:291
513
  msgid "Error! Could not add the audit page."
514
  msgstr ""
515
 
516
+ #: controllers/Audits.php:295
517
  msgid "Error! Could not find the audit page in your website."
518
  msgstr ""
519
 
520
+ #: controllers/Audits.php:311 controllers/Audits.php:329
521
  msgid "Audit page sent for recheck. It may take a while so please be patient."
522
  msgstr ""
523
 
524
+ #: controllers/Audits.php:313
525
+ msgid "You've made too many requests, you can request one page audit per hour."
526
+ msgstr ""
527
+
528
+ #: controllers/Audits.php:315 controllers/Audits.php:318
529
+ msgid "The page could not be sent for reaudit."
530
+ msgstr ""
531
+
532
+ #: controllers/Audits.php:332 controllers/Audits.php:335
533
  msgid "The audit for all pages can be made once an hour."
534
  msgstr ""
535
 
536
+ #: controllers/Audits.php:345
537
  msgid "The audit page is deleted."
538
  msgstr ""
539
 
540
+ #: controllers/Audits.php:347 controllers/FocusPages.php:416
541
+ #: controllers/Ranking.php:176 controllers/Ranking.php:194
542
+ #: controllers/Ranking.php:212 controllers/Research.php:240
543
+ #: controllers/Research.php:243 controllers/Research.php:266
544
+ #: controllers/Research.php:288 controllers/Research.php:346
545
+ #: controllers/Research.php:370 controllers/Research.php:528
546
+ #: controllers/Research.php:581 controllers/Research.php:652
547
+ #: controllers/Research.php:679 controllers/Research.php:704
548
+ #: controllers/Research.php:789
549
  msgid "Invalid params!"
550
  msgstr ""
551
 
552
+ #: controllers/Audits.php:370
553
  msgid "Not a valid email address."
554
  msgstr ""
555
 
573
  msgid "Focus Page does not exist or was deleted from your website."
574
  msgstr ""
575
 
576
+ #: controllers/FocusPages.php:347
577
  msgid "Focus page is added. The audit may take a while so please be patient."
578
  msgstr ""
579
 
580
+ #: controllers/FocusPages.php:354
581
  msgid "You reached the maximum number of focus pages for all your websites."
582
  msgstr ""
583
 
584
+ #: controllers/FocusPages.php:357
585
  msgid "Error! Could not add the focus page."
586
  msgstr ""
587
 
588
+ #: controllers/FocusPages.php:360
589
  msgid "Error! This focus page is not public."
590
  msgstr ""
591
 
592
+ #: controllers/FocusPages.php:364 controllers/FocusPages.php:403
593
+ #, php-format
594
+ msgid "Error! Could not find the focus page %d in your website."
595
  msgstr ""
596
 
597
+ #: controllers/FocusPages.php:391
598
  msgid "Focus page sent for recheck. It may take a while so please be patient."
599
  msgstr ""
600
 
601
+ #: controllers/FocusPages.php:394 controllers/FocusPages.php:398
602
  msgid "You've made too many requests, please wait a few minutes."
603
  msgstr ""
604
 
605
+ #: controllers/FocusPages.php:414
606
  msgid "The focus page is deleted"
607
  msgstr ""
608
 
609
+ #: controllers/Menu.php:87
610
  #, php-format
611
  msgid ""
612
  "An error occurred during activation. If this error persists, please contact "
613
  "us at: %s"
614
  msgstr ""
615
 
616
+ #: controllers/Menu.php:121
617
  msgid "Dashboard"
618
  msgstr ""
619
 
620
+ #: controllers/Menu.php:216 models/CheckSeo.php:186 models/CheckSeo.php:576
621
+ #: models/CheckSeo.php:590 models/CheckSeo.php:604 models/CheckSeo.php:618
622
+ #: models/CheckSeo.php:660
 
 
 
 
623
  msgid "SEO Snippet"
624
  msgstr ""
625
 
626
+ #: controllers/Menu.php:225 controllers/Snippet.php:144
627
  msgid "Custom SEO"
628
  msgstr ""
629
 
630
+ #. Author of the plugin/theme
631
+ #: controllers/Menu.php:247
632
+ msgid "Squirrly SEO"
633
+ msgstr ""
634
+
635
+ #: controllers/Overview.php:70
636
  #, php-format
637
  msgid ""
638
  "%s, why don't you start a two weeks journey for better rankings? %sStart "
640
  "plan.%s"
641
  msgstr ""
642
 
643
+ #: controllers/Overview.php:93
644
  #, php-format
645
  msgid ""
646
  "Detected %s: We encourage you to %sImport the Settings and SEO%s from %s and "
651
  msgid "Saved! This is how the preview looks like"
652
  msgstr ""
653
 
654
+ #: controllers/Post.php:379
655
  msgid "Could not add the demo post."
656
  msgstr ""
657
 
658
+ #: controllers/Post.php:440 controllers/Post.php:465
659
  msgid "Can't get the post URL"
660
  msgstr ""
661
 
662
+ #: controllers/Post.php:470
663
  msgid "Invalid request"
664
  msgstr ""
665
 
666
+ #: controllers/PostsList.php:88 controllers/PostsList.php:139
667
  msgid "SQ Snippet"
668
  msgstr ""
669
 
670
+ #: controllers/PostsList.php:89 models/PostsList.php:21
671
  msgid "Optimized"
672
  msgstr ""
673
 
674
+ #: controllers/PostsList.php:224
675
  msgid "Network Error. Please Refresh."
676
  msgstr ""
677
 
678
+ #: controllers/PostsList.php:228
679
  #, php-format
680
  msgid "Maintenance. %sWe'll be back in a minute."
681
  msgstr ""
682
 
683
+ #: controllers/PostsList.php:259
684
  msgid "Not Public"
685
  msgstr ""
686
 
687
+ #: controllers/PostsList.php:260
688
  msgid "Could not process"
689
  msgstr ""
690
 
691
+ #: controllers/PostsList.php:261
692
  msgid "The Squirrly subscription has expired!"
693
  msgstr ""
694
 
695
+ #: controllers/Ranking.php:88
696
  msgid "Could not load the Rankings."
697
  msgstr ""
698
 
699
+ #: controllers/Ranking.php:104
700
  msgid "Could not load data."
701
  msgstr ""
702
 
703
+ #: controllers/Ranking.php:158
704
  #, php-format
705
  msgid "Could not refresh the rank. Please check your SERP credits %shere%s"
706
  msgstr ""
707
 
708
+ #: controllers/Ranking.php:160
709
  #, php-format
710
  msgid "%s is queued and the rank will be checked soon."
711
  msgstr ""
712
 
713
+ #: controllers/Ranking.php:171
714
  msgid "The keyword is deleted."
715
  msgstr ""
716
 
717
+ #: controllers/Ranking.php:173
718
  msgid "Could not delete the keyword!"
719
  msgstr ""
720
 
721
+ #: controllers/Ranking.php:192 controllers/Research.php:264
722
+ #: controllers/Research.php:286 controllers/Research.php:368
723
+ #: controllers/Research.php:702 controllers/Research.php:787
724
  msgid "Deleted!"
725
  msgstr ""
726
 
727
+ #: controllers/Ranking.php:209
728
  msgid "Sent!"
729
  msgstr ""
730
 
731
+ #: controllers/Research.php:105
732
+ #, php-format
733
+ msgid "No keyword found. %s Show all %s keywords from Briefcase."
734
+ msgstr ""
735
+
736
+ #: controllers/Research.php:181
737
+ msgid "very few"
738
+ msgstr ""
739
+
740
+ #: controllers/Research.php:181
741
+ msgid "few"
742
+ msgstr ""
743
+
744
+ #: controllers/Research.php:181
745
+ msgid "some"
746
+ msgstr ""
747
+
748
+ #: controllers/Research.php:181
749
+ msgid "many"
750
+ msgstr ""
751
+
752
+ #: controllers/Research.php:182
753
+ msgid "very low ranking chance"
754
+ msgstr ""
755
+
756
+ #: controllers/Research.php:182
757
+ msgid "low ranking chance"
758
+ msgstr ""
759
+
760
+ #: controllers/Research.php:182
761
+ msgid "modest ranking chance"
762
+ msgstr ""
763
+
764
+ #: controllers/Research.php:182
765
+ msgid "decent ranking chance"
766
+ msgstr ""
767
+
768
+ #: controllers/Research.php:182
769
+ msgid "high ranking chance"
770
+ msgstr ""
771
+
772
+ #: controllers/Research.php:182
773
+ msgid "very high ranking chance"
774
+ msgstr ""
775
+
776
+ #: controllers/Research.php:230
777
  msgid "Keyword Saved. The rank check will be ready in a minute."
778
  msgstr ""
779
 
780
+ #: controllers/Research.php:232 controllers/Research.php:236
781
  msgid "Keyword Saved!"
782
  msgstr ""
783
 
784
+ #: controllers/Research.php:319
785
  msgid "Invalid Label or Color!"
786
  msgstr ""
787
 
788
+ #: controllers/Research.php:400 controllers/Research.php:737
789
+ #: controllers/Research.php:763
790
  msgid "Invalid Keyword!"
791
  msgstr ""
792
 
793
+ #: controllers/Research.php:461 controllers/Research.php:475
794
+ #: controllers/Research.php:497 controllers/Research.php:500
795
  #: controllers/SeoSettings.php:454 controllers/SeoSettings.php:457
796
  #: controllers/SeoSettings.php:502 controllers/SeoSettings.php:505
797
  msgid "Error! The backup is not valid."
798
  msgstr ""
799
 
800
+ #: controllers/Research.php:495 controllers/SeoSettings.php:452
801
  msgid "Great! The backup is restored."
802
  msgstr ""
803
 
804
+ #: controllers/Research.php:503 controllers/SeoSettings.php:460
805
  #: controllers/SeoSettings.php:508
806
  msgid "Error! You have to enter a previously saved backup file."
807
  msgstr ""
808
 
809
+ #: controllers/Research.php:549
810
  msgid "Could not add the keyword to SERP Check. Please try again."
811
  msgstr ""
812
 
813
+ #: controllers/Research.php:551
814
  msgid "The keyword is added to SERP Check."
815
  msgstr ""
816
 
817
+ #: controllers/Research.php:554
818
  msgid "Invalid parameters."
819
  msgstr ""
820
 
821
+ #: controllers/Research.php:646
822
  msgid "Keyword Research limit exceeded"
823
  msgstr ""
824
 
825
+ #: controllers/Research.php:761
826
  msgid "The keywords are added to SERP Check!"
827
  msgstr ""
828
 
842
  msgid "Great! The SEO backup is restored."
843
  msgstr ""
844
 
845
+ #: controllers/SeoSettings.php:536 controllers/SeoSettings.php:587
846
  #, php-format
847
  msgid ""
848
  "Success! The import from %s was completed successfully and your SEO is safe!"
860
  msgid "No settings found for this plugin/theme."
861
  msgstr ""
862
 
863
+ #: controllers/SeoSettings.php:607
864
  msgid "Rollback to Previous Version"
865
  msgstr ""
866
 
867
+ #: controllers/SeoSettings.php:629 view/SeoSettings/Backup.php:265
868
  msgid "Reinstall Current Version"
869
  msgstr ""
870
 
871
+ #: controllers/SeoSettings.php:660
872
  msgid "Could not save the changes"
873
  msgstr ""
874
 
875
+ #: controllers/SeoSettings.php:695
876
  msgid ""
877
  "Error! Could not get the code. Connect to Google Search Console and validate "
878
  "the connection."
879
  msgstr ""
880
 
881
+ #: controllers/SeoSettings.php:715
882
  msgid ""
883
  "Error! Could not get the tracking code. Connect to Google Analytics and get "
884
  "the website tracking code from Admin area."
885
  msgstr ""
886
 
887
+ #: controllers/SeoSettings.php:784 controllers/SeoSettings.php:819
888
  msgid "Could not add the post type."
889
  msgstr ""
890
 
891
+ #: controllers/Snippet.php:89
892
  msgid "Squirrly SEO Snippet"
893
  msgstr ""
894
 
895
+ #: controllers/Snippet.php:192
896
  #, php-format
897
  msgid ""
898
  "Could not save the snippet. Please check the database table %s integrity."
906
  msgid "No message."
907
  msgstr ""
908
 
909
+ #: core/Blocklogin.php:54
910
  #, php-format
911
  msgid ""
912
  "We found your email, so it means you already have a Squirrly.co account. "
914
  "password, click %shere%s"
915
  msgstr ""
916
 
917
+ #: core/Blocklogin.php:57
918
  msgid "Your email is not valid. Please enter a valid email."
919
  msgstr ""
920
 
921
+ #: core/Blocklogin.php:61
922
  msgid "We could not create your account. Please enter a valid email."
923
  msgstr ""
924
 
925
+ #: core/Blocklogin.php:83 core/Blocklogin.php:140
926
  #, php-format
927
  msgid ""
928
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
929
+ "webmaster) and request them to add %s to their IP whitelist."
930
  msgstr ""
931
 
932
+ #: core/Blocklogin.php:86
933
+ msgid "Your email is not set. Please enter a valid email."
934
  msgstr ""
935
 
936
+ #: core/Blocklogin.php:108
937
  msgid "Wrong email or password!"
938
  msgstr ""
939
 
940
+ #: core/Blocklogin.php:111
941
  msgid "You can only use this account for the URL you registered first!"
942
  msgstr ""
943
 
944
+ #: core/Blocklogin.php:114
945
  msgid "You disconnected your website from"
946
  msgstr ""
947
 
948
+ #: core/Blocklogin.php:118
949
  msgid "An error occured."
950
  msgstr ""
951
 
 
 
 
 
 
 
 
952
  #: core/Blocklogin.php:144
953
  msgid "Both fields are required."
954
  msgstr ""
961
  msgid "active task"
962
  msgstr ""
963
 
964
+ #: models/Assistant.php:86
965
+ msgid "Change Main Keyword"
966
+ msgstr ""
967
+
968
+ #: models/Assistant.php:91
969
+ msgid "Main Keyword"
970
+ msgstr ""
971
+
972
+ #: models/Assistant.php:94
973
+ msgid "Note! You need to request a new Focus Pages audit to update the report!"
974
+ msgstr ""
975
+
976
+ #: models/Assistant.php:97
977
+ msgid "Save Main Keyword"
978
+ msgstr ""
979
+
980
+ #: models/Assistant.php:118 view/Blocks/Jorney.php:70
981
  msgid "Do Keyword Research"
982
  msgstr ""
983
 
984
+ #: models/Assistant.php:119
985
  #, php-format
986
  msgid ""
987
  "Use Research - Find Keywords to perform your very first keyword research for "
989
  "steps of performing a research. %s Just follow the steps."
990
  msgstr ""
991
 
992
+ #: models/Assistant.php:123
993
  msgid "Add Keywords in Briefcase"
994
  msgstr ""
995
 
996
+ #: models/Assistant.php:124
997
  #, php-format
998
  msgid ""
999
  "Use the Briefcase feature to organize and manage your portfolio of keywords. "
1006
  "the future and which are on-point with your strategy."
1007
  msgstr ""
1008
 
1009
+ #: models/Assistant.php:128
1010
  msgid "Create Labels for Keywords"
1011
  msgstr ""
1012
 
1013
+ #: models/Assistant.php:129
1014
  #, php-format
1015
  msgid ""
1016
  "Organize your keywords by using Labels for the keywords you've stored in "
1022
  "complete this task."
1023
  msgstr ""
1024
 
1025
+ #: models/Assistant.php:133
1026
  msgid "Add Keywords to Labels"
1027
  msgstr ""
1028
 
1029
+ #: models/Assistant.php:134
1030
  #, php-format
1031
  msgid ""
1032
  "Now that you've created your first label, you should label one of your "
1036
  "Then, assign a label to your keyword in order to complete this task."
1037
  msgstr ""
1038
 
1039
+ #: models/Assistant.php:138
1040
  msgid "Send Keywords to Rank Checker"
1041
  msgstr ""
1042
 
1043
+ #: models/Assistant.php:139
1044
  #, php-format
1045
  msgid ""
1046
  "Now that you (hopefully) have keywords added to your Briefcase, go look at "
1052
  "SEO strategy."
1053
  msgstr ""
1054
 
1055
+ #: models/Assistant.php:145
1056
  msgid "Optimize Using Live Assistant"
1057
  msgstr ""
1058
 
1059
+ #: models/Assistant.php:146
1060
  #, php-format
1061
  msgid ""
1062
  "Optimize your first Page or Article using the SEO Live Assistant (SLA) "
1063
  "feature from Squirrly SEO. %s You can either Edit an existing post or create "
1064
  "a new post. (You have your Live Assistant where you have your WP "
1065
  "Editor)%sThe SEO Live Assistant is like having a SEO Consultant near you, "
1066
+ "whispering in your ear exactly what you have to do to get a 100&#37; "
1067
+ "optimized article or page.%sYou can try the DEMO first, by clicking on the "
1068
+ "Demo Post button. It's safe to break anything in the SEO of that page, "
1069
+ "because it never gets indexed by Google, since it's a DEMO. It's an easy way "
1070
+ "to learn your way around it."
1071
  msgstr ""
1072
 
1073
+ #: models/Assistant.php:152
1074
  msgid "Activate SEO Automation"
1075
  msgstr ""
1076
 
1077
+ #: models/Assistant.php:153
1078
  #, php-format
1079
  msgid ""
1080
  "The %sSEO Automation Features%s of Squirrly SEO are extremely powerful. %s "
1085
  "the toggle to ON for: %sActivate Patterns%s to complete this task."
1086
  msgstr ""
1087
 
1088
+ #: models/Assistant.php:157
1089
  msgid "Activate METAs"
1090
  msgstr ""
1091
 
1092
+ #: models/Assistant.php:158
1093
  #, php-format
1094
  msgid ""
1095
  "Activate the %sMETA settings%s from the Squirrly SEO Plugin. %s You can "
1101
  "off."
1102
  msgstr ""
1103
 
1104
+ #: models/Assistant.php:162 view/Blocks/Snippet.php:382
1105
+ #: view/SeoSettings/Jsonld.php:37
1106
  msgid "Activate JSON-LD"
1107
  msgstr ""
1108
 
1109
+ #: models/Assistant.php:163
1110
  #, php-format
1111
  msgid ""
1112
  "%sJSON-LD Structured Data%s needs to be activated. %s The Duplicate Removal "
1120
  "you're an advanced user."
1121
  msgstr ""
1122
 
1123
+ #: models/Assistant.php:167 view/Blocks/Snippet.php:615
1124
+ #: view/SeoSettings/Automation.php:435 view/SeoSettings/Social.php:52
1125
  msgid "Activate Open Graph"
1126
  msgstr ""
1127
 
1128
+ #: models/Assistant.php:168
1129
  #, php-format
1130
  msgid ""
1131
  "Go to the %sSocial Media section%s.%sActivate Open Graph. (switch the toggle "
1135
  "your site."
1136
  msgstr ""
1137
 
1138
+ #: models/Assistant.php:172 view/Blocks/Snippet.php:881
1139
+ #: view/SeoSettings/Automation.php:490 view/SeoSettings/Social.php:295
1140
  msgid "Activate Twitter Card"
1141
  msgstr ""
1142
 
1143
+ #: models/Assistant.php:173
1144
  #, php-format
1145
  msgid ""
1146
  "Go to the %sSocial Media section%s. %s - Activate Twitter Card. (switch the "
1150
  "you clicks to your site."
1151
  msgstr ""
1152
 
1153
+ #: models/Assistant.php:177
1154
  msgid "Activate Sitemap XML"
1155
  msgstr ""
1156
 
1157
+ #: models/Assistant.php:178
1158
  #, php-format
1159
  msgid ""
1160
  "Activate your %sSitemap XML%s setting. Squirrly SEO will then generate your "
1167
  "that."
1168
  msgstr ""
1169
 
1170
+ #: models/Assistant.php:182
1171
  msgid "Activate Google Analytics"
1172
  msgstr ""
1173
 
1174
+ #: models/Assistant.php:183
1175
  #, php-format
1176
  msgid ""
1177
  "Go to the %sTracking Tools section%s. %s Add your Google Analytics ID to "
1182
  "Automation section)."
1183
  msgstr ""
1184
 
1185
+ #: models/Assistant.php:192
1186
  msgid "Connect the Webmasters"
1187
  msgstr ""
1188
 
1189
+ #: models/Assistant.php:193
 
1190
  msgid ""
1191
+ "Go to the %Webmasters section%s. %s This section makes it super easy to "
1192
  "integrate different (important) 3rd party services with your WordPress. %s "
1193
+ "Some webmasters are optional, but Google Search Console is really important. "
1194
  "%s Enter your Pinterest code, especially if you plan to expand your presence "
1195
  "on Pinterest. It will %sactivate Rich Pins%s, which will completely boost "
1196
  "your sales and visibility for any product or post that has great images."
1197
  msgstr ""
1198
 
1199
+ #: models/Assistant.php:201 models/focuspages/Accuracy.php:45
1200
  #: models/focuspages/Length.php:68 models/focuspages/Traffic.php:106
1201
  msgid "Connect Google Analytics"
1202
  msgstr ""
1203
 
1204
+ #: models/Assistant.php:202
1205
  #, php-format
1206
  msgid ""
1207
  "Integrate %sGoogle Analytics%s with Squirrly SEO from %sAudits > Settings%s."
1212
  "having to know a single thing about Google Analytics."
1213
  msgstr ""
1214
 
1215
+ #: models/Assistant.php:206 models/Assistant.php:228
1216
  msgid "Connect Google Search Console"
1217
  msgstr ""
1218
 
1219
+ #: models/Assistant.php:207
1220
  #, php-format
1221
  msgid ""
1222
  "Integrate your WordPress with %sGoogle Search Console%s with Squirrly SEO "
1227
  "Google has about your site, directly from your Squirrly SEO Plugin."
1228
  msgstr ""
1229
 
1230
+ #: models/Assistant.php:211
1231
  msgid "Set the Audit Email"
1232
  msgstr ""
1233
 
1234
+ #: models/Assistant.php:212
1235
  #, php-format
1236
  msgid ""
1237
  "You can customize the email to which we send the Audit reports.%sIt can be "
1241
  "order to increase the score."
1242
  msgstr ""
1243
 
1244
+ #: models/Assistant.php:216
1245
  msgid "Get your score over 60"
1246
  msgstr ""
1247
 
1248
+ #: models/Assistant.php:217
1249
  #, php-format
1250
  msgid ""
1251
  "True website marketing performance happens after your Audit score gets to "
1258
  "this."
1259
  msgstr ""
1260
 
1261
+ #: models/Assistant.php:223
1262
  msgid "Track your first 3 Keywords"
1263
  msgstr ""
1264
 
1265
+ #: models/Assistant.php:224
1266
  #, php-format
1267
  msgid ""
1268
  "%sSERP Checker = Search Engine Result Pages Checker.%s %s It checks your "
1277
  "> select Send to Rank Checker%s"
1278
  msgstr ""
1279
 
1280
+ #: models/Assistant.php:229
1281
  #, php-format
1282
  msgid ""
1283
  "Connect Google Search Console. %s You can do that from %sSEO Audit > Settings"
1292
  "the accurate, on-time and objective information about your rankings."
1293
  msgstr ""
1294
 
1295
+ #: models/Assistant.php:233
1296
  msgid "Get 1 Keyword to the first page of Google"
1297
  msgstr ""
1298
 
1299
+ #: models/Assistant.php:234
1300
  #, php-format
1301
  msgid ""
1302
  "Start with a small task. %sGet 1 keyword to the first page of Google%s. %s "
1307
  "on those tasks and turning elements to green you'll complete this task."
1308
  msgstr ""
1309
 
1310
+ #: models/Assistant.php:291 models/abstract/Assistant.php:230
1311
  msgid "You chose to ignore this task. Click to activate it."
1312
  msgstr ""
1313
 
1365
  #: models/Audits.php:186 models/Audits.php:196 models/Audits.php:206
1366
  #: models/Audits.php:216 models/Audits.php:226 models/Audits.php:295
1367
  #: models/Audits.php:305 models/Audits.php:315 models/Audits.php:325
1368
+ #: models/Audits.php:420 view/SeoSettings/Jsonld.php:288
1369
  msgid "Yes"
1370
  msgstr ""
1371
 
1375
  #: models/Audits.php:197 models/Audits.php:207 models/Audits.php:217
1376
  #: models/Audits.php:227 models/Audits.php:296 models/Audits.php:306
1377
  #: models/Audits.php:316 models/Audits.php:326 models/Audits.php:367
1378
+ #: models/Audits.php:411 models/Audits.php:421 view/SeoSettings/Jsonld.php:287
1379
  msgid "No"
1380
  msgstr ""
1381
 
2654
  msgid "Value"
2655
  msgstr ""
2656
 
2657
+ #: models/Audits.php:690 view/Audits/Audit.php:153 view/Audits/Compare.php:167
2658
  msgid "PRO TIP"
2659
  msgstr ""
2660
 
2674
  msgid "METAs"
2675
  msgstr ""
2676
 
2677
+ #: models/BulkSeo.php:17 view/Blocks/Snippet.php:94
2678
  msgid "Open Graph"
2679
  msgstr ""
2680
 
2681
+ #: models/BulkSeo.php:18 view/Blocks/Snippet.php:98
2682
  msgid "Twitter Card"
2683
  msgstr ""
2684
 
2685
+ #: models/BulkSeo.php:19 models/FocusPages.php:19 view/Blocks/Snippet.php:102
2686
  msgid "Visibility"
2687
  msgstr ""
2688
 
2701
  msgstr ""
2702
 
2703
  #: models/CheckSeo.php:39 models/CheckSeo.php:40
2704
+ #: models/bulkseo/Visibility.php:107 view/Blocks/Snippet.php:1117
2705
  msgid "Discourage search engines from indexing this site"
2706
  msgstr ""
2707
 
2740
  "website. As soon as possible. Otherwise, you will have difficulty ranking."
2741
  msgstr ""
2742
 
2743
+ #: models/CheckSeo.php:61 models/CheckSeo.php:75 models/CheckSeo.php:89
2744
+ #: models/CheckSeo.php:116 models/CheckSeo.php:130 models/CheckSeo.php:227
2745
+ #: models/CheckSeo.php:241 models/CheckSeo.php:548 models/CheckSeo.php:714
2746
+ #: models/CheckSeo.php:728 models/CheckSeo.php:742 models/CheckSeo.php:756
2747
+ #: models/CheckSeo.php:770 models/CheckSeo.php:784
2748
+ msgid "On-Page SEO"
2749
+ msgstr ""
2750
+
2751
  #: models/CheckSeo.php:66
2752
  msgid "Turn Squirrly's AMP Support to ON"
2753
  msgstr ""
2902
  "and crawlers."
2903
  msgstr ""
2904
 
2905
+ #: models/CheckSeo.php:145 models/CheckSeo.php:159 models/CheckSeo.php:186
2906
+ #: models/CheckSeo.php:200 models/CheckSeo.php:269 models/CheckSeo.php:283
2907
+ #: models/CheckSeo.php:297 models/CheckSeo.php:310 models/CheckSeo.php:324
2908
+ #: models/CheckSeo.php:352 models/CheckSeo.php:381 models/CheckSeo.php:395
2909
+ #: models/CheckSeo.php:409 models/CheckSeo.php:436 models/CheckSeo.php:450
2910
+ #: models/CheckSeo.php:478 models/CheckSeo.php:506 models/CheckSeo.php:562
2911
+ #: models/CheckSeo.php:576 models/CheckSeo.php:590 models/CheckSeo.php:604
2912
+ #: models/CheckSeo.php:618 models/CheckSeo.php:632 models/CheckSeo.php:646
2913
+ #: models/CheckSeo.php:660 models/CheckSeo.php:687 models/CheckSeo.php:701
2914
+ #: models/CheckSeo.php:797 models/CheckSeo.php:810 models/CheckSeo.php:823
2915
+ #: models/CheckSeo.php:836 models/CheckSeo.php:849 models/CheckSeo.php:875
2916
+ #: models/CheckSeo.php:888 models/CheckSeo.php:901 models/CheckSeo.php:914
2917
+ #: models/CheckSeo.php:927 models/CheckSeo.php:953 models/CheckSeo.php:966
2918
+ #: models/CheckSeo.php:979 models/CheckSeo.php:992 models/CheckSeo.php:1005
2919
+ #: models/CheckSeo.php:1018 models/CheckSeo.php:1031 models/CheckSeo.php:1044
2920
+ #: models/Menu.php:218 models/Menu.php:219 models/Menu.php:366
2921
+ #: view/FocusPages/Pagelist.php:24
2922
+ msgid "Focus Pages"
2923
+ msgstr ""
2924
+
2925
  #: models/CheckSeo.php:150
2926
  msgid "Add Focus Page. It's the first step to reaching TOP positions"
2927
  msgstr ""
3129
  "store at least one of the results in Briefcase."
3130
  msgstr ""
3131
 
3132
+ #: models/CheckSeo.php:255 models/CheckSeo.php:283 models/CheckSeo.php:297
3133
+ #: models/CheckSeo.php:310 models/CheckSeo.php:381 models/CheckSeo.php:395
3134
+ #: models/CheckSeo.php:534 models/Menu.php:142 view/Research/Research.php:17
3135
+ msgid "Keyword Research"
3136
+ msgstr ""
3137
+
3138
  #: models/CheckSeo.php:260
3139
  msgid ""
3140
  "Optimize your Focus Page with the great keyword you found during Keyword "
3165
  "experts were able to do before Squirrly."
3166
  msgstr ""
3167
 
3168
+ #: models/CheckSeo.php:269 models/CheckSeo.php:283 models/CheckSeo.php:297
3169
+ #: models/CheckSeo.php:310 models/CheckSeo.php:324 models/CheckSeo.php:381
3170
+ #: models/CheckSeo.php:395 models/CheckSeo.php:450 models/CheckSeo.php:562
3171
+ #: models/CheckSeo.php:632 models/CheckSeo.php:646 models/Menu.php:158
3172
+ #: models/Menu.php:159 view/Blocks/SLASearch.php:8
3173
+ msgid "Live Assistant"
3174
+ msgstr ""
3175
+
3176
  #: models/CheckSeo.php:274
3177
  msgid "Optimize your text to get a good Search Relevancy score"
3178
  msgstr ""
3255
  msgstr ""
3256
 
3257
  #: models/CheckSeo.php:315
 
3258
  msgid ""
3259
+ "Try to boost traffic by over +285&#37; by optimizing with SEO Live Assistant"
3260
  msgstr ""
3261
 
3262
  #: models/CheckSeo.php:316
3292
  msgstr ""
3293
 
3294
  #: models/CheckSeo.php:332 view/Connect/GoogleSearchConsole.php:32
3295
+ #: view/SeoSettings/Webmaster.php:88
3296
  #, php-format
3297
  msgid "Need Help Connecting Google Search Console? %sClick Here%s"
3298
  msgstr ""
3360
  "keyword to the Rankings section."
3361
  msgstr ""
3362
 
3363
+ #: models/CheckSeo.php:366 models/CheckSeo.php:464 models/CheckSeo.php:492
3364
+ #: models/CheckSeo.php:520 models/Menu.php:146 models/Menu.php:147
3365
+ #: models/Menu.php:326 view/Research/Briefcase.php:16
3366
+ msgid "Briefcase"
3367
+ msgstr ""
3368
+
3369
+ #: models/CheckSeo.php:366 models/CheckSeo.php:464 models/CheckSeo.php:520
3370
+ #: models/Menu.php:242 models/Menu.php:243 models/Menu.php:406
3371
+ msgid "Rankings"
3372
+ msgstr ""
3373
+
3374
  #: models/CheckSeo.php:372
3375
  msgid ""
3376
  "Change the main keyword for a Focus Page that didn't reach TOP 20 rankings "
3471
  msgstr ""
3472
 
3473
  #: models/CheckSeo.php:416 view/Connect/GoogleAnalytics.php:33
3474
+ #: view/SeoSettings/Tracking.php:102
3475
  #, php-format
3476
  msgid "Need Help Connecting Google Analytics? %sClick Here%s"
3477
  msgstr ""
3541
  "will rank it higher."
3542
  msgstr ""
3543
 
3544
+ #: models/CheckSeo.php:450
3545
+ msgid "Multiple Keyword Optimization"
3546
+ msgstr ""
3547
+
3548
  #: models/CheckSeo.php:455
3549
  msgid ""
3550
  "Add all secondary Keywords you've used to the Rankings Section of Squirrly"
3733
  msgid "Activate SEO Patterns, with Squirrly's site-wide SEO Automation."
3734
  msgstr ""
3735
 
3736
+ #: models/CheckSeo.php:548 models/Menu.php:528 view/Blocks/Snippet.php:444
3737
+ msgid "SEO Automation"
3738
+ msgstr ""
3739
+
3740
  #: models/CheckSeo.php:553
3741
  msgid "Update Your Focus Pages Content Regularly"
3742
  msgstr ""
3973
  "to avoid Google penalties."
3974
  msgstr ""
3975
 
3976
+ #: models/CheckSeo.php:674 models/CheckSeo.php:862 models/CheckSeo.php:940
3977
+ #: view/Audits/Audits.php:26
3978
+ msgid "Audits"
3979
+ msgstr ""
3980
+
3981
  #: models/CheckSeo.php:678
3982
  msgid "Reach 3 Inner Links for all your Focus Pages"
3983
  msgstr ""
4811
  msgid "Focus Page could not be verified (error: %s)"
4812
  msgstr ""
4813
 
4814
+ #: models/Compatibility.php:118
4815
+ msgid "MPN"
4816
+ msgstr ""
4817
+
4818
+ #: models/Compatibility.php:119
4819
+ msgid "Add Manufacturer Part Number (MPN)"
4820
+ msgstr ""
4821
+
4822
+ #: models/Compatibility.php:122
4823
+ msgid "GTIN"
4824
+ msgstr ""
4825
+
4826
+ #: models/Compatibility.php:123
4827
+ msgid "Add Global Trade Item Number (GTIN)"
4828
+ msgstr ""
4829
+
4830
+ #: models/Compatibility.php:126
4831
+ msgid "EAN (GTIN-13)"
4832
+ msgstr ""
4833
+
4834
+ #: models/Compatibility.php:127
4835
+ msgid ""
4836
+ "Add Global Trade Item Number (GTIN) for the major GTIN used outside of North "
4837
+ "America"
4838
+ msgstr ""
4839
+
4840
+ #: models/Compatibility.php:130
4841
+ msgid "UPC (GTIN-12)"
4842
+ msgstr ""
4843
+
4844
+ #: models/Compatibility.php:131
4845
+ msgid "Add Global Trade Item Number (GTIN) for North America"
4846
+ msgstr ""
4847
+
4848
+ #: models/Compatibility.php:134
4849
+ msgid "ISBN"
4850
+ msgstr ""
4851
+
4852
+ #: models/Compatibility.php:135
4853
+ msgid "Add Global Trade Item Number (GTIN) for books"
4854
+ msgstr ""
4855
+
4856
+ #: models/Compatibility.php:140
4857
+ msgid "Brand Name"
4858
+ msgstr ""
4859
+
4860
+ #: models/Compatibility.php:141
4861
+ msgid "Add Product Brand Name"
4862
+ msgstr ""
4863
+
4864
+ #: models/FocusPages.php:20 models/abstract/Assistant.php:89
4865
+ #: view/Ranking/Gscsync.php:36 view/Ranking/Rankings.php:222
4866
+ #: view/Ranking/Rankings.php:360 view/Research/Briefcase.php:126
4867
+ #: view/Research/Briefcase.php:316 view/Research/History.php:33
4868
+ #: view/Research/HistoryDetails.php:8 view/Research/Research.php:202
4869
+ #: view/Research/Suggested.php:33
4870
  msgid "Keyword"
4871
  msgstr ""
4872
 
4922
  msgid "Accuracy"
4923
  msgstr ""
4924
 
4925
+ #: models/FocusPages.php:35 view/Ranking/Gscsync.php:39
4926
  msgid "CTR"
4927
  msgstr ""
4928
 
4929
+ #: models/FocusPages.php:36 view/Ranking/Gscsync.php:38
4930
+ #: view/Ranking/Rankings.php:374
4931
  msgid "Impressions"
4932
  msgstr ""
4933
 
4934
+ #: models/FocusPages.php:37 view/Ranking/Gscsync.php:37
4935
+ #: view/Ranking/Rankings.php:380
4936
  msgid "Clicks"
4937
  msgstr ""
4938
 
4961
  msgid "The favicon has been updated."
4962
  msgstr ""
4963
 
4964
+ #: models/Menu.php:110 models/Menu.php:522
4965
  msgid "First Step"
4966
  msgstr ""
4967
 
4968
+ #: models/Menu.php:110 models/Menu.php:111 models/Menu.php:386
4969
+ #: view/Blocks/Toolbar.php:36
4970
  msgid "Overview"
4971
  msgstr ""
4972
 
4974
  msgid "All Features"
4975
  msgstr ""
4976
 
4977
+ #: models/Menu.php:134 models/Menu.php:135 view/Research/Briefcase.php:138
4978
  msgid "Research"
4979
  msgstr ""
4980
 
4981
+ #: models/Menu.php:170
 
 
 
 
 
 
 
 
4982
  msgid "All Snippets"
4983
  msgstr ""
4984
 
4985
+ #: models/Menu.php:171 models/Menu.php:178 models/Menu.php:434
4986
+ #: view/BulkSeo/Bulkseo.php:27
 
 
 
4987
  msgid "Bulk SEO"
4988
  msgstr ""
4989
 
4990
+ #: models/Menu.php:182 models/Menu.php:183
4991
  msgid "SEO Settings"
4992
  msgstr ""
4993
 
4994
+ #: models/Menu.php:194 models/Menu.php:195 models/Menu.php:485
4995
  #: view/SeoSettings/Sitemap.php:29
4996
  msgid "Sitemap XML"
4997
  msgstr ""
4998
 
4999
+ #: models/Menu.php:206 models/Menu.php:207
5000
  msgid "Local SEO"
5001
  msgstr ""
5002
 
5003
+ #: models/Menu.php:230 models/Menu.php:231
 
 
 
 
 
5004
  msgid "SEO Audit"
5005
  msgstr ""
5006
 
5007
+ #: models/Menu.php:250 view/Ranking/Rankings.php:32
 
 
 
 
5008
  msgid "Google Rankings"
5009
  msgstr ""
5010
 
5011
+ #: models/Menu.php:254 models/Menu.php:255
5012
  msgid "Onboarding"
5013
  msgstr ""
5014
 
5015
+ #: models/Menu.php:266 models/Menu.php:267
5016
  msgid "Import & Export SEO"
5017
  msgstr ""
5018
 
5019
+ #: models/Menu.php:278 models/Menu.php:279
5020
  msgid "Account Info"
5021
  msgstr ""
5022
 
5023
+ #: models/Menu.php:290
5024
  msgid "How To & Support"
5025
  msgstr ""
5026
 
5027
+ #: models/Menu.php:291
5028
  msgid "Help & Support"
5029
  msgstr ""
5030
 
5031
+ #: models/Menu.php:320
5032
  msgid "Find Keywords"
5033
  msgstr ""
5034
 
5035
+ #: models/Menu.php:321
5036
  msgid "do a keyword research"
5037
  msgstr ""
5038
 
5039
+ #: models/Menu.php:327
 
 
 
 
5040
  msgid "save the best Keywords"
5041
  msgstr ""
5042
 
5043
+ #: models/Menu.php:332 view/Research/Briefcase.php:32
5044
  msgid "Labels"
5045
  msgstr ""
5046
 
5047
+ #: models/Menu.php:333
5048
  msgid "group keywords"
5049
  msgstr ""
5050
 
5051
+ #: models/Menu.php:338
5052
  msgid "Suggested"
5053
  msgstr ""
5054
 
5055
+ #: models/Menu.php:339
5056
  msgid "better keywords found"
5057
  msgstr ""
5058
 
5059
+ #: models/Menu.php:344
5060
  msgid "History"
5061
  msgstr ""
5062
 
5063
+ #: models/Menu.php:345
5064
  msgid "keyword research history"
5065
  msgstr ""
5066
 
5067
+ #: models/Menu.php:352
5068
  msgid "Optimize Posts"
5069
  msgstr ""
5070
 
5071
+ #: models/Menu.php:353
5072
  msgid "use the Live Assistant"
5073
  msgstr ""
5074
 
5075
+ #: models/Menu.php:358 models/Menu.php:398 models/Menu.php:424
5076
  msgid "Settings"
5077
  msgstr ""
5078
 
5079
+ #: models/Menu.php:359
5080
  msgid "live assistant setup"
5081
  msgstr ""
5082
 
5083
+ #: models/Menu.php:367
5084
  msgid "all my focus pages"
5085
  msgstr ""
5086
 
5087
+ #: models/Menu.php:378 models/Menu.php:392
5088
  msgid "Add New Page"
5089
  msgstr ""
5090
 
5091
+ #: models/Menu.php:379
5092
  msgid "add page in focus pages"
5093
  msgstr ""
5094
 
5095
+ #: models/Menu.php:387
5096
  msgid "See all the SEO audits"
5097
  msgstr ""
5098
 
5099
+ #: models/Menu.php:393
5100
  msgid "add page in audit"
5101
  msgstr ""
5102
 
5103
+ #: models/Menu.php:399
5104
  msgid "Audit settings"
5105
  msgstr ""
5106
 
5107
+ #: models/Menu.php:407
5108
  msgid "See Google ranking"
5109
  msgstr ""
5110
 
5111
+ #: models/Menu.php:412
5112
  msgid "Add Keywords"
5113
  msgstr ""
5114
 
5115
+ #: models/Menu.php:413
5116
  msgid "Add briefcase keywords"
5117
  msgstr ""
5118
 
5119
+ #: models/Menu.php:418 view/Ranking/Rankings.php:267
5120
  msgid "Sync Keywords"
5121
  msgstr ""
5122
 
5123
+ #: models/Menu.php:419
5124
  msgid "Sync Keywords from GSC"
5125
  msgstr ""
5126
 
5127
+ #: models/Menu.php:425
5128
  msgid "Ranking settings"
5129
  msgstr ""
5130
 
5131
+ #: models/Menu.php:435
5132
  msgid "optimize all pages"
5133
  msgstr ""
5134
 
5135
+ #: models/Menu.php:443
5136
  msgid "Automation"
5137
  msgstr ""
5138
 
5139
+ #: models/Menu.php:444
5140
  msgid "patterns & automation"
5141
  msgstr ""
5142
 
5143
+ #: models/Menu.php:449 view/SeoSettings/Links.php:29
5144
  msgid "SEO Links"
5145
  msgstr ""
5146
 
5147
+ #: models/Menu.php:450
5148
  msgid "manage website links"
5149
  msgstr ""
5150
 
5151
+ #: models/Menu.php:455 view/SeoSettings/Metas.php:29
5152
  msgid "SEO Metas"
5153
  msgstr ""
5154
 
5155
+ #: models/Menu.php:456
5156
  msgid "required on-page metas"
5157
  msgstr ""
5158
 
5159
+ #: models/Menu.php:461 view/Blocks/Snippet.php:90 view/Blocks/Snippet.php:358
5160
  msgid "JSON-LD"
5161
  msgstr ""
5162
 
5163
+ #: models/Menu.php:462
5164
  msgid "rich snippets & schema"
5165
  msgstr ""
5166
 
5167
+ #: models/Menu.php:467 view/SeoSettings/Social.php:28
5168
  msgid "Social Media"
5169
  msgstr ""
5170
 
5171
+ #: models/Menu.php:468
5172
  msgid "social share options"
5173
  msgstr ""
5174
 
5175
+ #: models/Menu.php:473 view/SeoSettings/Tracking.php:28
5176
  msgid "Tracking Tools"
5177
  msgstr ""
5178
 
5179
+ #: models/Menu.php:474
5180
  msgid "google analytics, pixel, etc."
5181
  msgstr ""
5182
 
5183
+ #: models/Menu.php:479 view/SeoSettings/Webmaster.php:28
5184
  msgid "Webmaster Tools"
5185
  msgstr ""
5186
 
5187
+ #: models/Menu.php:480
5188
  msgid "connect to webmasters"
5189
  msgstr ""
5190
 
5191
+ #: models/Menu.php:486
5192
  msgid "setup the sitemap"
5193
  msgstr ""
5194
 
5195
+ #: models/Menu.php:491
5196
  msgid "Robots.txt"
5197
  msgstr ""
5198
 
5199
+ #: models/Menu.php:492
5200
  msgid "search engine filters"
5201
  msgstr ""
5202
 
5203
+ #: models/Menu.php:497
5204
  msgid "Favicon"
5205
  msgstr ""
5206
 
5207
+ #: models/Menu.php:498
5208
  msgid "add website icon"
5209
  msgstr ""
5210
 
5211
+ #: models/Menu.php:503
5212
  msgid "Import/Export"
5213
  msgstr ""
5214
 
5215
+ #: models/Menu.php:504
5216
  msgid "import & export SEO"
5217
  msgstr ""
5218
 
5219
+ #: models/Menu.php:513
5220
  msgid "Advanced"
5221
  msgstr ""
5222
 
5223
+ #: models/Menu.php:514
5224
  msgid "Advanced SEO Settings"
5225
  msgstr ""
5226
 
5227
+ #: models/Menu.php:523
5228
  msgid "website details"
5229
  msgstr ""
5230
 
5231
+ #: models/Menu.php:529
 
 
 
 
5232
  msgid "build SEO Automation"
5233
  msgstr ""
5234
 
5235
+ #: models/Menu.php:534 view/SeoSettings/Backup.php:98
5236
  msgid "Import SEO"
5237
  msgstr ""
5238
 
5239
+ #: models/Menu.php:535
5240
  msgid "import settings and SEO"
5241
  msgstr ""
5242
 
5243
+ #: models/Menu.php:540 view/Onboarding/Step4.php:12
5244
  msgid "Final Step"
5245
  msgstr ""
5246
 
5247
+ #: models/Menu.php:541
5248
  msgid "check today SEO goals"
5249
  msgstr ""
5250
 
5251
+ #: models/Menu.php:550
5252
  msgid "Blogging"
5253
  msgstr ""
5254
 
5255
+ #: models/Menu.php:551
5256
  msgid "Blogging overwiew"
5257
  msgstr ""
5258
 
5259
+ #: models/Menu.php:556
5260
  msgid "Traffic"
5261
  msgstr ""
5262
 
5263
+ #: models/Menu.php:557
5264
  msgid "Weekly website traffic"
5265
  msgstr ""
5266
 
5267
+ #: models/Menu.php:562
5268
  msgid "SEO"
5269
  msgstr ""
5270
 
5271
+ #: models/Menu.php:563
5272
  msgid "On-Page optimization"
5273
  msgstr ""
5274
 
5275
+ #: models/Menu.php:568
5276
  msgid "Social"
5277
  msgstr ""
5278
 
5279
+ #: models/Menu.php:569
5280
  msgid "Social signals and shares"
5281
  msgstr ""
5282
 
5283
+ #: models/Menu.php:574
5284
  msgid "Links"
5285
  msgstr ""
5286
 
5287
+ #: models/Menu.php:575
5288
  msgid "Backlinks and Innerlinks"
5289
  msgstr ""
5290
 
5291
+ #: models/Menu.php:580 models/focuspages/Authority.php:59
5292
  msgid "Authority"
5293
  msgstr ""
5294
 
5295
+ #: models/Menu.php:581
5296
  msgid "Website Off-Page score"
5297
  msgstr ""
5298
 
5429
  "repetitions."
5430
  msgstr ""
5431
 
5432
+ #: models/Post.php:264 models/focuspages/Snippet.php:124
5433
+ #: models/focuspages/Snippet.php:254 models/focuspages/Snippet.php:276
5434
+ #: view/Audits/Addpage.php:135 view/Blocks/Snippet.php:173
5435
+ #: view/Blocks/Snippet.php:715 view/Blocks/Snippet.php:982
5436
+ #: view/BulkSeo/Bulkseo.php:143 view/FocusPages/Addpage.php:136
5437
+ #: view/SeoSettings/Automation.php:168
5438
  msgid "Title"
5439
  msgstr ""
5440
 
5536
  msgid "Can't get snippet data"
5537
  msgstr ""
5538
 
5539
+ #: models/PostsList.php:55 models/PostsList.php:80 view/Blocks/Snippet.php:135
5540
  msgid "Edit Snippet"
5541
  msgstr ""
5542
 
5548
  msgid "Squirrly SEO Admin"
5549
  msgstr ""
5550
 
5551
+ #: models/Rollback.php:98
5552
+ msgid "Plugin Install Process"
5553
+ msgstr ""
5554
+
5555
+ #: models/Snippet.php:266
5556
  msgid "You don't have enough pemission to edit this article"
5557
  msgstr ""
5558
 
5559
+ #: models/Snippet.php:366
5560
  msgid "Error! Could not save the data."
5561
  msgstr ""
5562
 
5563
+ #: models/Snippet.php:371
5564
  msgid "Error! Invalid request."
5565
  msgstr ""
5566
 
5567
+ #: models/Snippet.php:418
5568
  msgid "Couldn't find the page"
5569
  msgstr ""
5570
 
5571
+ #: models/Snippet.php:434 models/Snippet.php:446
5572
  msgid "No Polylang translation for this post."
5573
  msgstr ""
5574
 
5580
  #: models/focuspages/Indexability.php:89 models/focuspages/Innerlinks.php:64
5581
  #: models/focuspages/Keyword.php:73 models/focuspages/Length.php:53
5582
  #: models/focuspages/Nofollow.php:65 models/focuspages/Onpage.php:80
5583
+ #: models/focuspages/Ranking.php:35 models/focuspages/Snippet.php:180
5584
  #: models/focuspages/Social.php:56 models/focuspages/Strategy.php:97
5585
  #: models/focuspages/Traffic.php:95
5586
  msgid "Current URL"
5587
  msgstr ""
5588
 
5589
+ #: models/abstract/Assistant.php:81
5590
  msgid "Keywords"
5591
  msgstr ""
5592
 
5593
+ #: models/abstract/Assistant.php:81
5594
  msgid "Squirrly Live Assistant Optimization"
5595
  msgstr ""
5596
 
5597
+ #: models/abstract/Assistant.php:81
5598
  msgid "SLA"
5599
  msgstr ""
5600
 
5601
+ #: models/abstract/Assistant.php:91
5602
  msgid "No Meta Keyword Found"
5603
  msgstr ""
5604
 
5605
+ #: models/abstract/Assistant.php:166
5606
  msgid "We are gathering data for this category"
5607
  msgstr ""
5608
 
5609
+ #: models/abstract/Assistant.php:169
5610
  msgid ""
5611
  "Congratulations for ranking with this keyword, but it will require special "
5612
  "attention from you to keep it within TOP 10 positions"
5613
  msgstr ""
5614
 
5615
+ #: models/abstract/Assistant.php:212
5616
  msgid "Not enough data to process this task"
5617
  msgstr ""
5618
 
5619
+ #: models/abstract/Assistant.php:216 view/Blocks/Snippet.php:310
5620
  msgid "Current"
5621
  msgstr ""
5622
 
5624
  msgid "Title not empty"
5625
  msgstr ""
5626
 
5627
+ #: models/bulkseo/Metas.php:58 view/Blocks/Snippet.php:189
5628
+ #: view/Blocks/Snippet.php:731 view/Blocks/Snippet.php:998
5629
  msgid "Current Title"
5630
  msgstr ""
5631
 
5648
  msgstr ""
5649
 
5650
  #: models/bulkseo/Metas.php:65 models/bulkseo/Metas.php:83
5651
+ #: models/bulkseo/Opengraph.php:86 models/bulkseo/Opengraph.php:96
5652
+ #: models/bulkseo/Twittercard.php:82 models/bulkseo/Twittercard.php:92
5653
  msgid "chars"
5654
  msgstr ""
5655
 
5656
+ #: models/bulkseo/Metas.php:66 models/bulkseo/Opengraph.php:87
5657
+ #: models/bulkseo/Twittercard.php:83
5658
  #, php-format
5659
  msgid ""
5660
  "Title has to be longer than %s chars and up to %s chars. %s You can change "
5661
  "the title max length from %sSEO Settings > Automation%s."
5662
  msgstr ""
5663
 
5664
+ #: models/bulkseo/Metas.php:69 models/focuspages/Snippet.php:135
5665
  msgid "Keyword in title"
5666
  msgstr ""
5667
 
5673
  msgid "no keywords"
5674
  msgstr ""
5675
 
5676
+ #: models/bulkseo/Metas.php:72 models/focuspages/Snippet.php:138
5677
  #, php-format
5678
  msgid ""
5679
  "Your keyword must be present in the title of the page. %s It's a very "
5689
  msgid "Description not empty"
5690
  msgstr ""
5691
 
5692
+ #: models/bulkseo/Metas.php:76 view/Blocks/Snippet.php:241
5693
+ #: view/Blocks/Snippet.php:775 view/Blocks/Snippet.php:1042
5694
  msgid "Current Description"
5695
  msgstr ""
5696
 
5712
  msgid "Current Description Length"
5713
  msgstr ""
5714
 
5715
+ #: models/bulkseo/Metas.php:84 models/bulkseo/Opengraph.php:97
5716
+ #: models/bulkseo/Twittercard.php:93
5717
  #, php-format
5718
  msgid ""
5719
  "Description has to be longer than %s chars and up to %s chars. %s You can "
5720
  "change the description max length from %sSEO Settings > Automation%s."
5721
  msgstr ""
5722
 
5723
+ #: models/bulkseo/Metas.php:87 models/focuspages/Snippet.php:141
5724
  msgid "Keyword in description"
5725
  msgstr ""
5726
 
5786
  #: models/bulkseo/Metas.php:223 models/bulkseo/Metas.php:267
5787
  #: models/bulkseo/Metas.php:303 models/bulkseo/Metas.php:336
5788
  #: models/bulkseo/Metas.php:384 models/bulkseo/Metas.php:423
5789
+ #: models/bulkseo/Opengraph.php:150 models/bulkseo/Opengraph.php:186
5790
+ #: models/bulkseo/Opengraph.php:218 models/bulkseo/Opengraph.php:254
5791
+ #: models/bulkseo/Opengraph.php:290 models/bulkseo/Twittercard.php:146
5792
+ #: models/bulkseo/Twittercard.php:182 models/bulkseo/Twittercard.php:214
5793
+ #: models/bulkseo/Twittercard.php:250 models/bulkseo/Twittercard.php:286
5794
+ #: models/bulkseo/Visibility.php:86 models/bulkseo/Visibility.php:125
5795
+ #: models/bulkseo/Visibility.php:157 models/bulkseo/Visibility.php:181
5796
  msgid "Squirrly Snippet is deactivated from this post."
5797
  msgstr ""
5798
 
5821
  msgstr ""
5822
 
5823
  #: models/bulkseo/Metas.php:175 models/bulkseo/Metas.php:211
5824
+ #: models/bulkseo/Opengraph.php:171 models/bulkseo/Opengraph.php:207
5825
+ #: models/bulkseo/Twittercard.php:167 models/bulkseo/Twittercard.php:203
5826
  msgid "Title is generated automatically."
5827
  msgstr ""
5828
 
5839
  msgstr ""
5840
 
5841
  #: models/bulkseo/Metas.php:288 models/bulkseo/Metas.php:325
5842
+ #: models/bulkseo/Opengraph.php:239 models/bulkseo/Opengraph.php:275
5843
+ #: models/bulkseo/Twittercard.php:235 models/bulkseo/Twittercard.php:271
5844
  msgid "Description is generated automatically."
5845
  msgstr ""
5846
 
5849
  msgid "Meta Canonical is deactivated from %sSEO Settings > Metas%s."
5850
  msgstr ""
5851
 
5852
+ #: models/bulkseo/Opengraph.php:80
5853
  msgid "OG title not empty"
5854
  msgstr ""
5855
 
5856
+ #: models/bulkseo/Opengraph.php:82
5857
  #, php-format
5858
  msgid ""
5859
  "You need to have an Open Graph title for this post. %s It will help you "
5861
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5862
  msgstr ""
5863
 
5864
+ #: models/bulkseo/Opengraph.php:85
5865
  #, php-format
5866
  msgid "OG title up to %s chars"
5867
  msgstr ""
5868
 
5869
+ #: models/bulkseo/Opengraph.php:90
5870
  msgid "OG description not empty"
5871
  msgstr ""
5872
 
5873
+ #: models/bulkseo/Opengraph.php:92
5874
  #, php-format
5875
  msgid ""
5876
  "You need to have an Open Graph description for this post. %s It will help "
5878
  "LinkedIN and other social networks. %s It's also important for SEO purposes."
5879
  msgstr ""
5880
 
5881
+ #: models/bulkseo/Opengraph.php:95
5882
  #, php-format
5883
  msgid "OG description up to %s chars"
5884
  msgstr ""
5885
 
5886
+ #: models/bulkseo/Opengraph.php:100
5887
  msgid "OG Image"
5888
  msgstr ""
5889
 
5890
+ #: models/bulkseo/Opengraph.php:101 models/bulkseo/Twittercard.php:97
5891
  msgid "(featured image)"
5892
  msgstr ""
5893
 
5894
+ #: models/bulkseo/Opengraph.php:102
5895
  #, php-format
5896
  msgid ""
5897
  "Set a good looking image for your URL. It needs to look good in Facebook and "
5899
  "attract more clicks to your site."
5900
  msgstr ""
5901
 
5902
+ #: models/bulkseo/Opengraph.php:116
5903
  msgid "Open Graph is deactivated."
5904
  msgstr ""
5905
 
5906
+ #: models/bulkseo/Opengraph.php:121
5907
  msgid ""
5908
  "Open Graph is not set correctly. Click to open the Assistant in the right "
5909
  "sidebar and follow the instructions."
5910
  msgstr ""
5911
 
5912
+ #: models/bulkseo/Opengraph.php:126
5913
  msgid "Open Graph is generated automatically."
5914
  msgstr ""
5915
 
5916
+ #: models/bulkseo/Opengraph.php:129
5917
  msgid "Open Graph is customized and set correctly."
5918
  msgstr ""
5919
 
5920
+ #: models/bulkseo/Opengraph.php:154 models/bulkseo/Opengraph.php:190
5921
+ #: models/bulkseo/Opengraph.php:222 models/bulkseo/Opengraph.php:258
5922
+ #: models/bulkseo/Opengraph.php:294
5923
  #, php-format
5924
  msgid ""
5925
  "Open Graph for this post type is deactivated from %sSEO Settings > Automation"
5926
  "%s."
5927
  msgstr ""
5928
 
5929
+ #: models/bulkseo/Opengraph.php:158 models/bulkseo/Opengraph.php:194
5930
+ #: models/bulkseo/Opengraph.php:226 models/bulkseo/Opengraph.php:262
5931
+ #: models/bulkseo/Opengraph.php:298
5932
  #, php-format
5933
  msgid "Open Graph is deactivated from %sSEO Settings > Social Media%s."
5934
  msgstr ""
5935
 
5936
+ #: models/bulkseo/Opengraph.php:162 models/bulkseo/Opengraph.php:198
5937
+ #: models/bulkseo/Opengraph.php:230 models/bulkseo/Opengraph.php:266
5938
+ #: models/bulkseo/Opengraph.php:302 models/bulkseo/Twittercard.php:158
5939
+ #: models/bulkseo/Twittercard.php:194 models/bulkseo/Twittercard.php:226
5940
+ #: models/bulkseo/Twittercard.php:262 models/bulkseo/Twittercard.php:298
5941
  #, php-format
5942
  msgid "Social Media is deactivated from %sSEO Settings > Social Media%s."
5943
  msgstr ""
5944
 
5945
+ #: models/bulkseo/Twittercard.php:76
5946
  msgid "TC title not empty"
5947
  msgstr ""
5948
 
5949
+ #: models/bulkseo/Twittercard.php:78
5950
  #, php-format
5951
  msgid ""
5952
  "You need to have a title for the Twitter Card of this post. %s It will help "
5954
  "also important for SEO purposes."
5955
  msgstr ""
5956
 
5957
+ #: models/bulkseo/Twittercard.php:81
5958
  #, php-format
5959
  msgid "TC title up to %s chars"
5960
  msgstr ""
5961
 
5962
+ #: models/bulkseo/Twittercard.php:86
5963
  msgid "TC Description not empty"
5964
  msgstr ""
5965
 
5966
+ #: models/bulkseo/Twittercard.php:88
5967
  #, php-format
5968
  msgid ""
5969
  "You need to have a Twitter Card description for this post. %s It will help "
5972
  "to your site. %s It's also important for SEO purposes."
5973
  msgstr ""
5974
 
5975
+ #: models/bulkseo/Twittercard.php:91
5976
  #, php-format
5977
  msgid "TC description up to %s chars"
5978
  msgstr ""
5979
 
5980
+ #: models/bulkseo/Twittercard.php:96
5981
  msgid "TC Image"
5982
  msgstr ""
5983
 
5984
+ #: models/bulkseo/Twittercard.php:98
5985
  #, php-format
5986
  msgid ""
5987
  "Set a good looking image for your URL. It needs to look good in Twitter "
5989
  "clicks to your site."
5990
  msgstr ""
5991
 
5992
+ #: models/bulkseo/Twittercard.php:112
5993
  msgid "Twitter Card is deactivated."
5994
  msgstr ""
5995
 
5996
+ #: models/bulkseo/Twittercard.php:117
5997
  msgid ""
5998
  "Twitter Card is not set correctly. Click to open the Assistant in the right "
5999
  "sidebar and follow the instructions."
6000
  msgstr ""
6001
 
6002
+ #: models/bulkseo/Twittercard.php:122
6003
  msgid "Twitter Card is generated automatically."
6004
  msgstr ""
6005
 
6006
+ #: models/bulkseo/Twittercard.php:125
6007
  msgid "Twitter Card is customized and set correctly."
6008
  msgstr ""
6009
 
6010
+ #: models/bulkseo/Twittercard.php:150 models/bulkseo/Twittercard.php:186
6011
+ #: models/bulkseo/Twittercard.php:218 models/bulkseo/Twittercard.php:254
6012
+ #: models/bulkseo/Twittercard.php:290
6013
  #, php-format
6014
  msgid ""
6015
  "Twitter Card for this post type is deactivated from %sSEO Settings > "
6016
  "Automation%s."
6017
  msgstr ""
6018
 
6019
+ #: models/bulkseo/Twittercard.php:154 models/bulkseo/Twittercard.php:190
6020
+ #: models/bulkseo/Twittercard.php:222 models/bulkseo/Twittercard.php:258
6021
+ #: models/bulkseo/Twittercard.php:294
6022
  #, php-format
6023
  msgid "Twitter Card is deactivated from %sSEO Settings > Social Media%s."
6024
  msgstr ""
6035
  "visibility settings."
6036
  msgstr ""
6037
 
6038
+ #: models/bulkseo/Visibility.php:31 view/Blocks/Snippet.php:1186
6039
  msgid "Send Authority to this page"
6040
  msgstr ""
6041
 
6064
  "current URL, then you need to add it to Sitemap."
6065
  msgstr ""
6066
 
6067
+ #: models/bulkseo/Visibility.php:39 view/Blocks/Snippet.php:1233
6068
+ msgid "301 Redirect"
6069
+ msgstr ""
6070
+
6071
+ #: models/bulkseo/Visibility.php:40
6072
+ msgid "Current Redirect"
6073
+ msgstr ""
6074
+
6075
+ #: models/bulkseo/Visibility.php:41
6076
+ msgid "No Redirects"
6077
+ msgstr ""
6078
+
6079
+ #: models/bulkseo/Visibility.php:42
6080
+ #, php-format
6081
+ msgid ""
6082
+ "You don't have to set any redirect link if you don't want to redirect to a "
6083
+ "different URL. %s Squirrly will alert you if you add a redirect URL to make "
6084
+ "sure you know what you're doing. %s The redirect link will be used to "
6085
+ "redirect visitors to a different URL when they access the URL of the current "
6086
+ "post."
6087
+ msgstr ""
6088
+
6089
+ #: models/bulkseo/Visibility.php:56
6090
  msgid "Some visibility options are inactive."
6091
  msgstr ""
6092
 
6093
+ #: models/bulkseo/Visibility.php:61
6094
  msgid ""
6095
  "Visibility is not set correctly. Click to open the Assistant in the right "
6096
  "sidebar and follow the instructions."
6097
  msgstr ""
6098
 
6099
+ #: models/bulkseo/Visibility.php:65
6100
  msgid "Visibility is set correctly."
6101
  msgstr ""
6102
 
6103
+ #: models/bulkseo/Visibility.php:90
6104
  #, php-format
6105
  msgid ""
6106
  "Noindex for this post type is deactivated from %sSEO Settings > Automation%s."
6107
  msgstr ""
6108
 
6109
+ #: models/bulkseo/Visibility.php:94 models/bulkseo/Visibility.php:133
6110
  #, php-format
6111
  msgid "Robots Meta is deactivated from %sSEO Settings > SEO Metas%s."
6112
  msgstr ""
6113
 
6114
+ #: models/bulkseo/Visibility.php:98 models/bulkseo/Visibility.php:137
6115
  #, php-format
6116
  msgid "SEO Metas is deactivated from %sSEO Settings > SEO Metas%s."
6117
  msgstr ""
6118
 
6119
+ #: models/bulkseo/Visibility.php:107
6120
  #, php-format
6121
  msgid ""
6122
  "You selected '%s' in Settings > Reading. It's important to uncheck that "
6123
  "option."
6124
  msgstr ""
6125
 
6126
+ #: models/bulkseo/Visibility.php:129
6127
  #, php-format
6128
  msgid ""
6129
  "Nofollow for this post type is deactivated from %sSEO Settings > Automation"
6130
  "%s."
6131
  msgstr ""
6132
 
6133
+ #: models/bulkseo/Visibility.php:161
6134
  #, php-format
6135
  msgid ""
6136
  "This post type is excluded from sitemap. See %sSEO Settings > Automation%s."
6137
  msgstr ""
6138
 
6139
+ #: models/bulkseo/Visibility.php:165
6140
  #, php-format
6141
  msgid "Sitemap XML is deactivated from %sSEO Settings > Sitemap XML%s."
6142
  msgstr ""
6143
 
6144
+ #: models/bulkseo/Visibility.php:185
6145
+ #, php-format
6146
+ msgid "Redirect is deactivated from %sSEO Settings > SEO Links%s."
6147
+ msgstr ""
6148
+
6149
+ #: models/domain/Patterns.php:367
6150
  msgid "Page"
6151
  msgstr ""
6152
 
6153
+ #: models/domain/Patterns.php:368
6154
  msgid "of"
6155
  msgstr ""
6156
 
6319
  #: models/focuspages/Innerlinks.php:86 models/focuspages/Keyword.php:133
6320
  #: models/focuspages/Length.php:89 models/focuspages/Nofollow.php:77
6321
  #: models/focuspages/Onpage.php:96 models/focuspages/Ranking.php:48
6322
+ #: models/focuspages/Snippet.php:203 models/focuspages/Social.php:85
6323
  #: models/focuspages/Strategy.php:134 models/focuspages/Traffic.php:127
6324
  msgid ""
6325
  "Click to open the Assistant in the right sidebar and follow the instructions."
6357
  #: models/focuspages/Ctr.php:74 models/focuspages/Image.php:106
6358
  #: models/focuspages/Impressions.php:65 models/focuspages/Impressions.php:74
6359
  #: models/focuspages/Keyword.php:101 models/focuspages/Keyword.php:110
6360
+ #: models/focuspages/Strategy.php:112 view/Research/Briefcase.php:259
6361
  msgid "Do a research"
6362
  msgstr ""
6363
 
6364
  #: models/focuspages/Clicks.php:73 models/focuspages/Content.php:103
6365
  #: models/focuspages/Ctr.php:73 models/focuspages/Image.php:105
6366
  #: models/focuspages/Impressions.php:73 models/focuspages/Keyword.php:108
6367
+ #: models/focuspages/Snippet.php:188 models/focuspages/Strategy.php:111
6368
  msgid "No Keyword found in Squirrly Live Assistant"
6369
  msgstr ""
6370
 
6396
  #: models/focuspages/Content.php:48
6397
  #, php-format
6398
  msgid ""
6399
+ "Make sure this Focus Page is optimized to %s using the %sSquirrly SEO Live "
6400
+ "Assistant%s. %s As you can see clearly on Google search result pages, "
6401
  "Googles tries to find the closest match (inside web content) to what the "
6402
  "user searched for. %s That is why using this method of optimizing a page as "
6403
  "outlined by the Live Assistant feature is mandatory. %s Don't worry about "
6449
  msgstr ""
6450
 
6451
  #: models/focuspages/Content.php:92 models/focuspages/Keyword.php:104
6452
+ #: view/Research/Briefcase.php:245 view/Research/HistoryDetails.php:81
6453
  #: view/Research/ResearchDetails.php:51
6454
  msgid "Optimize for this"
6455
  msgstr ""
6482
  "you used it more than once."
6483
  msgstr ""
6484
 
6485
+ #: models/focuspages/Image.php:102 models/focuspages/Snippet.php:191
6486
  msgid "Edit your snippet"
6487
  msgstr ""
6488
 
6559
  #: models/focuspages/Indexability.php:69
6560
  #, php-format
6561
  msgid ""
6562
+ "Click the button to %s Ask Google to re-index %s this page. %s Disclaimer: "
6563
+ "This task will automatically turn to green once you click on the button and "
6564
+ "it takes you to Google Search Console. It's up to you to make 100%% sure "
6565
+ "that you do tell Google to either index or re-index this page. %s Perform a "
6566
  "manual request for Google to re-index this page. %s This is super important "
6567
  "to do whenever you make important changes to your pages. Otherwise, Google "
6568
  "will still have the old version of your page. %s If Google keeps having the "
6571
  "Search Console API to send Google the request on your behalf."
6572
  msgstr ""
6573
 
6574
+ #: models/focuspages/Indexability.php:72 view/Blocks/Snippet.php:300
6575
  msgid "Canonical link"
6576
  msgstr ""
6577
 
6659
  "shot at ranking, make sure the competition is low for the keyword you choose."
6660
  msgstr ""
6661
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6662
  #: models/focuspages/Keyword.php:59
6663
  msgid "Google Trend"
6664
  msgstr ""
6842
  msgid "Nofollow on external links"
6843
  msgstr ""
6844
 
6845
+ #: models/focuspages/Snippet.php:127
6846
  #, php-format
6847
  msgid ""
6848
  "To turn this task to green, go and define a title for this page. You can "
6855
  "that product."
6856
  msgstr ""
6857
 
6858
+ #: models/focuspages/Snippet.php:130 models/focuspages/Snippet.php:255
6859
+ #: models/focuspages/Snippet.php:277 view/Blocks/Snippet.php:758
6860
+ #: view/Blocks/Snippet.php:1025 view/SeoSettings/Automation.php:178
6861
  msgid "Description"
6862
  msgstr ""
6863
 
6864
+ #: models/focuspages/Snippet.php:132
6865
  #, php-format
6866
  msgid ""
6867
  "To turn this task to green, go and define a %sMeta description%s for this "
6875
  "boost CTR (click-through rates)."
6876
  msgstr ""
6877
 
6878
+ #: models/focuspages/Snippet.php:137
6879
  #, php-format
6880
  msgid "Keyword %s must be present in Title"
6881
  msgstr ""
6882
 
6883
+ #: models/focuspages/Snippet.php:142
6884
  #, php-format
6885
  msgid "Keyword %s must be present in Description"
6886
  msgstr ""
6887
 
6888
+ #: models/focuspages/Snippet.php:143
6889
  #, php-format
6890
  msgid ""
6891
  "Same as with the title task. %s If a user reads the description of your page "
6897
  "lot about this, because that's what people want to find on the search engine."
6898
  msgstr ""
6899
 
6900
+ #: models/focuspages/Snippet.php:146
6901
  msgid "Open Graph - full definition"
6902
  msgstr ""
6903
 
6904
+ #: models/focuspages/Snippet.php:148
6905
  #, php-format
6906
  msgid ""
6907
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
6913
  "relevant for your search engine position placements."
6914
  msgstr ""
6915
 
6916
+ #: models/focuspages/Snippet.php:151
6917
  msgid "Twitter Cards - full definition"
6918
  msgstr ""
6919
 
6920
+ #: models/focuspages/Snippet.php:153
6921
  #, php-format
6922
  msgid ""
6923
  "To turn this task to green, you can easily use the %sSnippet%s from Squirrly "
6927
  "that you won't miss a beat."
6928
  msgstr ""
6929
 
6930
+ #: models/focuspages/Snippet.php:156
6931
  msgid "JSON-LD definition"
6932
  msgstr ""
6933
 
6934
+ #: models/focuspages/Snippet.php:157
6935
  #, php-format
6936
  msgid ""
6937
  "To turn this task to green, you can easily use the JSON-LD section inside "
6942
  "%shttps://search.google.com/test/rich-results%s"
6943
  msgstr ""
6944
 
6945
+ #: models/focuspages/Snippet.php:160
6946
  msgid "Customized"
6947
  msgstr ""
6948
 
6949
+ #: models/focuspages/Snippet.php:161
6950
  #, php-format
6951
  msgid ""
6952
  "The Snippets of your most important pages should be customized. %s Use the "
6960
  "own custom snippet will be the one that gets displayed."
6961
  msgstr ""
6962
 
6963
+ #: models/focuspages/Snippet.php:256 models/focuspages/Snippet.php:278
6964
  msgid "Image"
6965
  msgstr ""
6966
 
7164
  msgid "No Squirrly SEO Robots found."
7165
  msgstr ""
7166
 
7167
+ #: view/Assistant/Assistant.php:16
7168
  msgid "Optimize with Squirrly Live Assistant"
7169
  msgstr ""
7170
 
7171
+ #: view/Assistant/Assistant.php:21
7172
  msgid ""
7173
  "Use Squirrly to optimize the content for your Posts, Pages, Products, Custom "
7174
  "Posts, etc."
7175
  msgstr ""
7176
 
7177
+ #: view/Assistant/Assistant.php:35
7178
  msgid "Practice/Test Round"
7179
  msgstr ""
7180
 
7181
+ #: view/Assistant/Assistant.php:44
7182
  msgid "Add New"
7183
  msgstr ""
7184
 
7185
+ #: view/Assistant/Assistant.php:64
7186
  msgid "Tips: How to use Squirrly Live Assistant?"
7187
  msgstr ""
7188
 
7189
+ #: view/Assistant/Assistant.php:66
7190
  msgid ""
7191
  "Create a new Post, Page or Product and the Live Assistant will load so you "
7192
  "can start optimize the content."
7193
  msgstr ""
7194
 
7195
+ #: view/Assistant/Assistant.php:67
7196
  msgid ""
7197
  "You can also optimize an existing one and update the content for better "
7198
  "ranking."
7199
  msgstr ""
7200
 
7201
+ #: view/Assistant/Assistant.php:68
7202
  msgid ""
7203
  "Make sure you optimize the lead pages for one or more keywords and monitor "
7204
  "them with Focus Pages."
7224
  msgid "Live Assistant Settings"
7225
  msgstr ""
7226
 
7227
+ #: view/Assistant/Settings.php:45
7228
  msgid "Squirrly Tooltips"
7229
  msgstr ""
7230
 
7231
+ #: view/Assistant/Settings.php:48
7232
  #, php-format
7233
  msgid ""
7234
  "Show %sSquirrly Tooltips%s when posting a new article (e.g. 'Enter a "
7235
  "keyword')."
7236
  msgstr ""
7237
 
7238
+ #: view/Assistant/Settings.php:58
7239
  msgid "Fetch Snippet on Social Media"
7240
  msgstr ""
7241
 
7242
+ #: view/Assistant/Settings.php:61
7243
  #, php-format
7244
  msgid ""
7245
  "Automatically fetch the Squirrly Snippet on %sFacebook Sharing Debugger%s "
7246
  "every time you update the content on a page."
7247
  msgstr ""
7248
 
7249
+ #: view/Assistant/Settings.php:71
7250
  msgid "Download Remote Images"
7251
  msgstr ""
7252
 
7253
+ #: view/Assistant/Settings.php:74
7254
  #, php-format
7255
  msgid "Download %sremote images%s in your %sMedia Library%s for the new posts."
7256
  msgstr ""
7257
 
7258
+ #: view/Assistant/Settings.php:75
7259
  msgid ""
7260
  "Prevent from losing the images you use in your articles in case the remote "
7261
  "images are deleted."
7262
  msgstr ""
7263
 
7264
+ #: view/Assistant/Settings.php:86
7265
  msgid "Show Copyright Free Images"
7266
  msgstr ""
7267
 
7268
+ #: view/Assistant/Settings.php:89
7269
  #, php-format
7270
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7271
  msgstr ""
7272
 
7273
+ #: view/Assistant/Settings.php:99
7274
  msgid "Live Assistant Type"
7275
  msgstr ""
7276
 
7277
+ #: view/Assistant/Settings.php:102
7278
  msgid "Select how you want Squirrly Live Assistant to load in editor."
7279
  msgstr ""
7280
 
7281
+ #: view/Assistant/Settings.php:106
7282
  msgid "Auto"
7283
  msgstr ""
7284
 
7285
+ #: view/Assistant/Settings.php:107
7286
  msgid "Integrated Box"
7287
  msgstr ""
7288
 
7289
+ #: view/Assistant/Settings.php:108
7290
  msgid "Floating Box"
7291
  msgstr ""
7292
 
7293
+ #: view/Assistant/Settings.php:121
7294
  msgid "Activate Live Assistant in Frontend"
7295
  msgstr ""
7296
 
7297
+ #: view/Assistant/Settings.php:124
7298
  msgid ""
7299
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7300
  "with Builders."
7301
  msgstr ""
7302
 
7303
+ #: view/Assistant/Settings.php:125
7304
  msgid "Currently supports the Elementor Builder plugin."
7305
  msgstr ""
7306
 
7307
+ #: view/Assistant/Settings.php:132
7308
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
7309
  msgstr ""
7310
 
7311
+ #: view/Assistant/Settings.php:138
7312
  msgid ""
7313
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
7314
  "post types."
7315
  msgstr ""
7316
 
7317
+ #: view/Assistant/Settings.php:144
7318
  msgid "Exclusions"
7319
  msgstr ""
7320
 
7321
+ #: view/Assistant/Settings.php:146
7322
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7323
  msgstr ""
7324
 
7325
+ #: view/Assistant/Settings.php:173 view/SeoSettings/Automation.php:566
7326
+ #: view/SeoSettings/Jsonld.php:476 view/SeoSettings/Metas.php:230
7327
+ #: view/SeoSettings/Sitemap.php:402 view/SeoSettings/Social.php:459
7328
  msgid "Show Advanced Options"
7329
  msgstr ""
7330
 
7331
+ #: view/Assistant/Settings.php:174 view/SeoSettings/Automation.php:567
7332
+ #: view/SeoSettings/Jsonld.php:477 view/SeoSettings/Metas.php:231
7333
+ #: view/SeoSettings/Sitemap.php:403 view/SeoSettings/Social.php:460
7334
  msgid "Hide Advanced Options"
7335
  msgstr ""
7336
 
7337
+ #: view/Assistant/Settings.php:177 view/Audits/Settings.php:65
7338
+ #: view/Ranking/Settings.php:351 view/SeoSettings/Advanced.php:104
7339
+ #: view/SeoSettings/Automation.php:570 view/SeoSettings/Automation.php:684
7340
+ #: view/SeoSettings/Favicon.php:116 view/SeoSettings/Jsonld.php:480
7341
+ #: view/SeoSettings/Links.php:120 view/SeoSettings/Metas.php:234
7342
+ #: view/SeoSettings/Robots.php:91 view/SeoSettings/Sitemap.php:406
7343
+ #: view/SeoSettings/Social.php:463 view/SeoSettings/Tracking.php:158
7344
+ #: view/SeoSettings/Webmaster.php:168
7345
  msgid "Save Settings"
7346
  msgstr ""
7347
 
7349
  msgid "Add a page in Audit"
7350
  msgstr ""
7351
 
7352
+ #: view/Audits/Addpage.php:28 view/Audits/Audit.php:30
7353
+ #: view/Audits/Audits.php:31 view/Audits/Compare.php:34
7354
  msgid ""
7355
  "Verifies the online presence of your website by knowing how your website is "
7356
  "performing in terms of Blogging, SEO, Social, Authority, Links, and Traffic"
7357
  msgstr ""
7358
 
7359
+ #: view/Audits/Addpage.php:96 view/BulkSeo/Bulkseo.php:101
7360
+ #: view/FocusPages/Addpage.php:96
7361
  msgid "Any status"
7362
  msgstr ""
7363
 
7364
+ #: view/Audits/Addpage.php:116 view/BulkSeo/Bulkseo.php:121
7365
+ #: view/FocusPages/Addpage.php:116 view/Research/Research.php:210
7366
  msgid "Search"
7367
  msgstr ""
7368
 
7369
+ #: view/Audits/Addpage.php:118 view/Audits/Audit.php:42
7370
+ #: view/Audits/Compare.php:49 view/BulkSeo/Bulkseo.php:123
7371
+ #: view/FocusPages/Addpage.php:118 view/FocusPages/FocusPages.php:7
7372
+ #: view/Ranking/Rankings.php:63 view/Research/Briefcase.php:39
7373
+ #: view/Research/Briefcase.php:68
7374
  msgid "Show All"
7375
  msgstr ""
7376
 
7377
+ #: view/Audits/Addpage.php:136 view/FocusPages/Addpage.php:137
7378
  msgid "Option"
7379
  msgstr ""
7380
 
7381
+ #: view/Audits/Addpage.php:178
7382
  msgid "Add Page to Audit"
7383
  msgstr ""
7384
 
7385
+ #: view/Audits/Addpage.php:182
7386
  msgid "See Audits"
7387
  msgstr ""
7388
 
7389
+ #: view/Audits/Addpage.php:196 view/BulkSeo/Bulkseo.php:198
7390
+ #: view/FocusPages/Addpage.php:200
7391
  msgid "Prev Page"
7392
  msgstr ""
7393
 
7394
+ #: view/Audits/Addpage.php:197 view/BulkSeo/Bulkseo.php:199
7395
+ #: view/FocusPages/Addpage.php:201
7396
  msgid "Next Page"
7397
  msgstr ""
7398
 
7399
+ #: view/Audits/Addpage.php:205 view/FocusPages/Addpage.php:209
7400
  msgid "No page found. Try other post types."
7401
  msgstr ""
7402
 
7404
  msgid "Audit Details"
7405
  msgstr ""
7406
 
7407
+ #: view/Audits/Audit.php:68
7408
  msgid "Audit Pages"
7409
  msgstr ""
7410
 
7411
+ #: view/Audits/Audit.php:91
7412
  msgid "Show Only Completed Tasks"
7413
  msgstr ""
7414
 
7415
+ #: view/Audits/Audit.php:96
7416
  msgid "Show Only Incompleted Tasks"
7417
  msgstr ""
7418
 
7439
  msgstr ""
7440
 
7441
  #: view/Audits/AuditPageRow.php:50 view/Audits/AuditPageRow.php:78
7442
+ #: view/FocusPages/FocusPageRow.php:114 view/FocusPages/FocusPageRow.php:198
7443
  msgid "Inspect URL"
7444
  msgstr ""
7445
 
7446
+ #: view/Audits/AuditPageRow.php:72 view/FocusPages/FocusPageRow.php:93
7447
+ #: view/FocusPages/FocusPageRow.php:192
7448
+ msgid "Request New Audit"
7449
+ msgstr ""
7450
+
7451
+ #: view/Audits/AuditPageRow.php:81
7452
  msgid "Do you want to delete the Audit Page?"
7453
  msgstr ""
7454
 
7455
+ #: view/Audits/AuditPageRow.php:87
7456
  msgid "Remove Page from Audit"
7457
  msgstr ""
7458
 
7470
  msgstr ""
7471
 
7472
  #: view/Audits/AuditPages.php:54
7473
+ msgid "Welcome to SEO Audits"
7474
  msgstr ""
7475
 
7476
  #: view/Audits/AuditPages.php:56
7478
  msgstr ""
7479
 
7480
  #: view/Audits/AuditPages.php:69 view/Errors/Error.php:21
7481
+ #: view/FocusPages/FocusPages.php:127 view/Ranking/Rankings.php:463
7482
  #, php-format
7483
  msgid ""
7484
  "There is a connection error with Squirrly Cloud. Please check the connection "
7499
  msgstr ""
7500
 
7501
  #: view/Audits/AuditStats.php:41 view/Audits/AuditStats.php:235
7502
+ #: view/Audits/Compare.php:78
7503
  msgid "Audit Score"
7504
  msgstr ""
7505
 
7532
  msgstr ""
7533
 
7534
  #: view/Audits/AuditStats.php:123 view/Audits/AuditStats.php:237
7535
+ #: view/Ranking/Rankings.php:415 view/Research/History.php:35
7536
  msgid "Date"
7537
  msgstr ""
7538
 
7549
  msgid "You've completed %s tasks from %s"
7550
  msgstr ""
7551
 
7552
+ #: view/Audits/AuditStats.php:170 view/Audits/Compare.php:59
7553
  msgid "Scores"
7554
  msgstr ""
7555
 
7559
  msgstr ""
7560
 
7561
  #: view/Audits/AuditStats.php:196 view/FocusPages/FocusPageStats.php:141
7562
+ #: view/Goals/CheckSeo.php:21 view/Ranking/Rankings.php:160
7563
  msgid "Progress & Achievements"
7564
  msgstr ""
7565
 
7569
  msgstr ""
7570
 
7571
  #: view/Audits/AuditStats.php:207 view/FocusPages/FocusPageStats.php:152
7572
+ #: view/Ranking/Rankings.php:189
7573
  msgid "No progress found yet"
7574
  msgstr ""
7575
 
7597
  msgid "Show Audit"
7598
  msgstr ""
7599
 
7600
+ #: view/Audits/Audits.php:71
 
 
 
 
7601
  #, php-format
7602
  msgid ""
7603
  "%sNote:%s remember that it takes anywhere between %s1 minute to 5 minutes%s "
7605
  "involved."
7606
  msgstr ""
7607
 
7608
+ #: view/Audits/Audits.php:78
7609
  #, php-format
7610
  msgid "Learn how to improve your SEO Audit score over time %sClick Here%s"
7611
  msgstr ""
7612
 
7613
+ #: view/Audits/Audits.php:97 view/FocusPages/Pagelist.php:96
7614
  msgid "Squirrly Inspect URL"
7615
  msgstr ""
7616
 
7618
  msgid "Audit Settings"
7619
  msgstr ""
7620
 
7621
+ #: view/Audits/Settings.php:48
7622
  msgid "Audit Email"
7623
  msgstr ""
7624
 
7625
+ #: view/Audits/Settings.php:49
7626
  msgid "Enter the email address on which you want to receive the weekly audits."
7627
  msgstr ""
7628
 
7673
  msgstr ""
7674
 
7675
  #: view/Blocks/Connect.php:31
7676
+ msgid "Let Squirrly Cloud connect to WordPress API"
7677
  msgstr ""
7678
 
7679
  #: view/Blocks/Connect.php:35
7727
  msgid "Boost your SEO with Bulk SEO"
7728
  msgstr ""
7729
 
7730
+ #: view/Blocks/Dashboard.php:136 view/Goals/CheckSeo.php:138
7731
  msgid "Checking the website ..."
7732
  msgstr ""
7733
 
7734
+ #: view/Blocks/Features.php:13
7735
+ msgid "Squirrly SEO Main Features"
7736
  msgstr ""
7737
 
7738
+ #: view/Blocks/Features.php:14
7739
+ msgid "Manage the features & access them directly from here."
7740
  msgstr ""
7741
 
7742
+ #: view/Blocks/Features.php:25
7743
  msgid "Search Feature"
7744
  msgstr ""
7745
 
7746
+ #: view/Blocks/Features.php:49 view/Blocks/Features.php:60
7747
+ #: view/Blocks/Features.php:71 view/Blocks/Features.php:82
7748
+ msgid "Click here if you want to see a comparison between them"
7749
+ msgstr ""
7750
+
7751
+ #: view/Blocks/Features.php:91
7752
+ msgid "Do you want to activate manual feature setup?"
7753
+ msgstr ""
7754
+
7755
+ #: view/Blocks/Features.php:134
7756
  msgid "start feature setup"
7757
  msgstr ""
7758
 
7759
+ #: view/Blocks/Features.php:138
7760
+ msgid "see feature"
7761
+ msgstr ""
7762
+
7763
+ #: view/Blocks/Features.php:160
7764
+ msgid "connect to cloud"
7765
+ msgstr ""
7766
+
7767
+ #: view/Blocks/Features.php:164
7768
+ msgid "already active"
7769
+ msgstr ""
7770
+
7771
+ #: view/Blocks/Features.php:168
7772
+ msgid "activate feature"
7773
+ msgstr ""
7774
+
7775
+ #: view/Blocks/Features.php:177
7776
+ msgid "help"
7777
+ msgstr ""
7778
+
7779
+ #: view/Blocks/Features.php:196
7780
+ msgid "Do you want to search in the 400 features list?"
7781
+ msgstr ""
7782
+
7783
+ #: view/Blocks/Features.php:198
7784
+ msgid "Do you want to see all 400 features list?"
7785
+ msgstr ""
7786
+
7787
  #: view/Blocks/Jorney.php:13 view/Blocks/Jorney.php:96
7788
  msgid "14 Days Journey Course"
7789
  msgstr ""
7838
  msgid "I'm ready to start the Journey To Better Ranking"
7839
  msgstr ""
7840
 
7841
+ #: view/Blocks/KnowledgeBase.php:8
7842
  msgid "Knowledge Base"
7843
  msgstr ""
7844
 
7879
  msgid "Waiting for your editor to load .."
7880
  msgstr ""
7881
 
 
 
 
 
 
 
7882
  #: view/Blocks/SLASearch.php:9
7883
  msgid "Click to Close Squirrly Live Assistant"
7884
  msgstr ""
7967
  msgid "Split Window"
7968
  msgstr ""
7969
 
7970
+ #: view/Blocks/Snippet.php:86
7971
  msgid "Meta Tags"
7972
  msgstr ""
7973
 
7974
+ #: view/Blocks/Snippet.php:113
7975
  #, php-format
7976
  msgid ""
7977
  "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
7978
  "will not load for this post type on the frontend"
7979
  msgstr ""
7980
 
7981
+ #: view/Blocks/Snippet.php:121 view/SeoSettings/Automation.php:216
7982
+ #: view/SeoSettings/Automation.php:245 view/SeoSettings/Automation.php:331
7983
  msgid "Activate Metas"
7984
  msgstr ""
7985
 
7986
+ #: view/Blocks/Snippet.php:130
7987
  msgid "How this page will appear on Search Engines"
7988
  msgstr ""
7989
 
7990
+ #: view/Blocks/Snippet.php:134 view/Blocks/Snippet.php:370
7991
+ #: view/Blocks/Snippet.php:629 view/Blocks/Snippet.php:895
7992
+ #: view/Blocks/Snippet.php:1125
7993
  msgid "Refresh"
7994
  msgstr ""
7995
 
7996
+ #: view/Blocks/Snippet.php:138 view/Blocks/Snippet.php:654
7997
+ #: view/Blocks/Snippet.php:922
7998
  msgid "AUTO-DRAFT"
7999
  msgstr ""
8000
 
8001
+ #: view/Blocks/Snippet.php:149 view/Blocks/Snippet.php:942
8002
  msgid "Please save the post first to be able to edit the Squirrly SEO Snippet"
8003
  msgstr ""
8004
 
8005
+ #: view/Blocks/Snippet.php:156 view/Blocks/Snippet.php:682
8006
+ #: view/Blocks/Snippet.php:949
8007
  msgid "Cancel"
8008
  msgstr ""
8009
 
8010
+ #: view/Blocks/Snippet.php:157 view/Blocks/Snippet.php:371
8011
+ #: view/Blocks/Snippet.php:683 view/Blocks/Snippet.php:950
8012
+ #: view/Blocks/Snippet.php:1126
8013
  msgid "Save"
8014
  msgstr ""
8015
 
8016
+ #: view/Blocks/Snippet.php:167
8017
  msgid "Activate Title"
8018
  msgstr ""
8019
 
8020
+ #: view/Blocks/Snippet.php:174 view/Blocks/Snippet.php:225
8021
+ #: view/Blocks/Snippet.php:716 view/Blocks/Snippet.php:759
8022
+ #: view/Blocks/Snippet.php:983 view/Blocks/Snippet.php:1026
8023
  #, php-format
8024
  msgid "Tips: Length %s-%s chars"
8025
  msgstr ""
8026
 
8027
+ #: view/Blocks/Snippet.php:177 view/Blocks/Snippet.php:201
8028
+ #: view/Blocks/Snippet.php:228 view/Blocks/Snippet.php:255
8029
+ #: view/Blocks/Snippet.php:719 view/Blocks/Snippet.php:743
8030
+ #: view/Blocks/Snippet.php:762 view/Blocks/Snippet.php:789
8031
+ #: view/Blocks/Snippet.php:986 view/Blocks/Snippet.php:1010
8032
+ #: view/Blocks/Snippet.php:1029 view/Blocks/Snippet.php:1056
8033
  msgid "Pattern"
8034
  msgstr ""
8035
 
8036
+ #: view/Blocks/Snippet.php:194 view/Blocks/Snippet.php:736
8037
+ #: view/Blocks/Snippet.php:1003
8038
  msgid "Default Title"
8039
  msgstr ""
8040
 
8041
+ #: view/Blocks/Snippet.php:218
8042
  msgid "Activate Description"
8043
  msgstr ""
8044
 
8045
+ #: view/Blocks/Snippet.php:224
8046
  msgid "Meta Description"
8047
  msgstr ""
8048
 
8049
+ #: view/Blocks/Snippet.php:248 view/Blocks/Snippet.php:782
8050
+ #: view/Blocks/Snippet.php:1049
8051
  msgid "Default Description"
8052
  msgstr ""
8053
 
8054
+ #: view/Blocks/Snippet.php:272
8055
  msgid "Activate Keywords"
8056
  msgstr ""
8057
 
8058
+ #: view/Blocks/Snippet.php:278
8059
  msgid "Meta Keywords"
8060
  msgstr ""
8061
 
8062
+ #: view/Blocks/Snippet.php:282
8063
  msgid "+ Add keyword"
8064
  msgstr ""
8065
 
8066
+ #: view/Blocks/Snippet.php:294
8067
  msgid "Activate Canonical"
8068
  msgstr ""
8069
 
8070
+ #: view/Blocks/Snippet.php:301
8071
  msgid "Leave it blank if you don't have an external canonical"
8072
  msgstr ""
8073
 
8074
+ #: view/Blocks/Snippet.php:304
8075
  msgid "Found"
8076
  msgstr ""
8077
 
8078
+ #: view/Blocks/Snippet.php:316
8079
  msgid "Default Link"
8080
  msgstr ""
8081
 
8082
+ #: view/Blocks/Snippet.php:338 view/Blocks/Snippet.php:595
8083
+ #: view/Blocks/Snippet.php:853 view/Blocks/Snippet.php:1097
8084
+ #: view/Blocks/Snippet.php:1250
8085
  msgid ""
8086
  "To edit the snippet, you have to activate Squirrly SEO for this page first"
8087
  msgstr ""
8088
 
8089
+ #: view/Blocks/Snippet.php:347
8090
  msgid "Activate Squirrly Snippet for this page"
8091
  msgstr ""
8092
 
8093
+ #: view/Blocks/Snippet.php:352 view/Blocks/Snippet.php:858
8094
+ #: view/Blocks/Snippet.php:1102
8095
  msgid "Post Type"
8096
  msgstr ""
8097
 
8098
+ #: view/Blocks/Snippet.php:354
8099
+ msgid "Term"
 
8100
  msgstr ""
8101
 
8102
+ #: view/Blocks/Snippet.php:356
8103
+ msgid "OG"
8104
+ msgstr ""
8105
+
8106
+ #: view/Blocks/Snippet.php:388
8107
  #, php-format
8108
  msgid ""
8109
  "JSON-LD is disable for this Post Type (%s). See %sSquirrly > SEO Settings > "
8110
  "Automation%s."
8111
  msgstr ""
8112
 
8113
+ #: view/Blocks/Snippet.php:418
8114
  msgid "JSON-LD Schema Types"
8115
  msgstr ""
8116
 
8117
+ #: view/Blocks/Snippet.php:419 view/SeoSettings/Automation.php:391
8118
  msgid "JSON-LD will load the Schema for the selected types."
8119
  msgstr ""
8120
 
8121
+ #: view/Blocks/Snippet.php:420
8122
  #, php-format
8123
  msgid "Setup JSON-LD for this Post Type by using %s SEO Automation %s"
8124
  msgstr ""
8125
 
8126
+ #: view/Blocks/Snippet.php:451
8127
  msgid "Hold Control key (or Command on Mac) to select multiple types."
8128
  msgstr ""
8129
 
8130
+ #: view/Blocks/Snippet.php:460
8131
  msgid "JSON-LD Breadcrumbs Schema"
8132
  msgstr ""
8133
 
8134
+ #: view/Blocks/Snippet.php:462
8135
  #, php-format
8136
  msgid "Manage BreadcrumbsList Schema from %s JSON-LD Settings %s."
8137
  msgstr ""
8138
 
8139
+ #: view/Blocks/Snippet.php:467 view/Blocks/Snippet.php:515
8140
+ #: view/Blocks/Snippet.php:535
8141
  msgid "Active"
8142
  msgstr ""
8143
 
8144
+ #: view/Blocks/Snippet.php:469 view/Blocks/Snippet.php:517
8145
+ #: view/Blocks/Snippet.php:537
8146
  msgid "Not Active"
8147
  msgstr ""
8148
 
8149
+ #: view/Blocks/Snippet.php:482
8150
+ msgid "Primary Category"
8151
+ msgstr ""
8152
+
8153
+ #: view/Blocks/Snippet.php:484
8154
+ msgid "Set the Primary Category for Breadcrumbs."
8155
+ msgstr ""
8156
+
8157
+ #: view/Blocks/Snippet.php:508
8158
  msgid "Woocommerce Product Support"
8159
  msgstr ""
8160
 
8161
+ #: view/Blocks/Snippet.php:510
8162
  #, php-format
8163
  msgid "Manage Woocommerce Support from %s JSON-LD Settings %s."
8164
  msgstr ""
8165
 
8166
+ #: view/Blocks/Snippet.php:528
8167
+ msgid "Remove other JSON-LD Schema"
8168
+ msgstr ""
8169
+
8170
+ #: view/Blocks/Snippet.php:530
8171
+ #, php-format
8172
+ msgid "Manage Duplicate Schema remover from %s JSON-LD Settings %s."
8173
+ msgstr ""
8174
+
8175
+ #: view/Blocks/Snippet.php:547
8176
  msgid "JSON-LD Code"
8177
  msgstr ""
8178
 
8179
+ #: view/Blocks/Snippet.php:548
8180
  msgid "Let Squirrly load the JSON-LD Schema for the selected types."
8181
  msgstr ""
8182
 
8183
+ #: view/Blocks/Snippet.php:552 view/Blocks/Snippet.php:830
8184
+ #: view/Blocks/Snippet.php:1077
8185
  msgid "(Auto)"
8186
  msgstr ""
8187
 
8188
+ #: view/Blocks/Snippet.php:553
8189
  msgid "Custom Code"
8190
  msgstr ""
8191
 
8192
+ #: view/Blocks/Snippet.php:555
8193
  #, php-format
8194
  msgid ""
8195
  "Use Advanced Custom Fields (ACF) plugin to add custom JSON-LD. %s Learn More "
8196
  "%s"
8197
  msgstr ""
8198
 
8199
+ #: view/Blocks/Snippet.php:564
8200
  msgid "Custom JSON-LD Code"
8201
  msgstr ""
8202
 
8203
+ #: view/Blocks/Snippet.php:565
8204
  #, php-format
8205
  msgid "Add JSON-LD code from %sSchema Generator Online%s."
8206
  msgstr ""
8207
 
8208
+ #: view/Blocks/Snippet.php:578
8209
  msgid "Validate JSON-LD"
8210
  msgstr ""
8211
 
8212
+ #: view/Blocks/Snippet.php:607 view/Blocks/Snippet.php:873
8213
  #, php-format
8214
  msgid ""
8215
  "Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
8216
  "will not load for this post type on the frontend."
8217
  msgstr ""
8218
 
8219
+ #: view/Blocks/Snippet.php:624
8220
  msgid "How this page appears on Facebook"
8221
  msgstr ""
8222
 
8223
+ #: view/Blocks/Snippet.php:630
8224
  msgid "Edit Open Graph"
8225
  msgstr ""
8226
 
8227
+ #: view/Blocks/Snippet.php:642 view/Blocks/Snippet.php:909
8228
  msgid "The image size must be at least 500 pixels wide"
8229
  msgstr ""
8230
 
8231
+ #: view/Blocks/Snippet.php:663 view/Blocks/Snippet.php:931
8232
  msgid ""
8233
  "This is the Featured Image. You can change it if you edit the snippet and "
8234
  "upload another image."
8235
  msgstr ""
8236
 
8237
+ #: view/Blocks/Snippet.php:675
8238
  msgid "Please save the post first to be able to edit the Squirrly SEO Snippet."
8239
  msgstr ""
8240
 
8241
+ #: view/Blocks/Snippet.php:692 view/Blocks/Snippet.php:959
8242
  msgid "Media Image"
8243
  msgstr ""
8244
 
8245
+ #: view/Blocks/Snippet.php:696 view/Blocks/Snippet.php:963
8246
+ #: view/Research/Briefcase.php:487 view/SeoSettings/Favicon.php:84
8247
  msgid "Upload"
8248
  msgstr ""
8249
 
8250
+ #: view/Blocks/Snippet.php:697 view/Blocks/Snippet.php:964
8251
  msgid "Image size must be at least 500 pixels wide"
8252
  msgstr ""
8253
 
8254
+ #: view/Blocks/Snippet.php:804
8255
  msgid "Author Link"
8256
  msgstr ""
8257
 
8258
+ #: view/Blocks/Snippet.php:805
8259
  msgid "For multiple authors, separate their Faceb