SEO SQUIRRLY™ - Version 8.3.10

Version Description

  • 02/21/2018 =
  • Update - Launching the Squirrly SEO Briefcase Labels
  • Update - Changed New Meta Lengths for all articles
  • Update - Added Briefcase Labels Filter in Editor Posts
Download this release

Release Info

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

Code changes from version 8.3.08 to 8.3.10

classes/Action.php CHANGED
@@ -140,7 +140,7 @@ class SQ_Classes_Action extends SQ_Classes_FrontController {
140
  }
141
 
142
  /**
143
- * Call the Squirrly Api Server
144
  * @param string $module
145
  * @param array $args
146
  * @return json | string
140
  }
141
 
142
  /**
143
+ * Call the Squirrly Cloud Server
144
  * @param string $module
145
  * @param array $args
146
  * @return json | string
classes/DisplayController.php CHANGED
@@ -84,7 +84,7 @@ class SQ_Classes_DisplayController {
84
  wp_enqueue_style($name, $css_uri, null, SQ_VERSION_ID, $params['media']);
85
  }
86
 
87
- if (isset($params['trigger']) && $params['trigger'] === true) {
88
  wp_print_styles(array($name));
89
  }
90
  }
84
  wp_enqueue_style($name, $css_uri, null, SQ_VERSION_ID, $params['media']);
85
  }
86
 
87
+ if(is_admin() || (isset($params['trigger']) && $params['trigger'] === true)){ //load CSS for admin or on triggered
88
  wp_print_styles(array($name));
89
  }
90
  }
classes/Tools.php CHANGED
@@ -202,6 +202,17 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
202
  'sq_dashboard' => 0,
203
  'sq_analytics' => 0,
204
 
 
 
 
 
 
 
 
 
 
 
 
205
  'socials' => array(
206
  'fb_admins' => array(),
207
  'fbconnectkey' => "",
@@ -219,7 +230,6 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
219
  'twitter_card_type' => "summary",
220
  'plus_publisher' => ""
221
  ),
222
-
223
  'codes' => array(
224
  'google_wt' => "",
225
  'google_analytics' => "",
202
  'sq_dashboard' => 0,
203
  'sq_analytics' => 0,
204
 
205
+ 'sq_metas' => array(
206
+ 'title_maxlength' => 75,
207
+ 'description_maxlength' => 320,
208
+ 'og_title_maxlength' => 75,
209
+ 'og_description_maxlength' => 110,
210
+ 'tw_title_maxlength' => 75,
211
+ 'tw_description_maxlength' => 280,
212
+ 'jsonld_title_maxlength' => 75,
213
+ 'jsonld_description_maxlength' => 110,
214
+ ),
215
+
216
  'socials' => array(
217
  'fb_admins' => array(),
218
  'fbconnectkey' => "",
230
  'twitter_card_type' => "summary",
231
  'plus_publisher' => ""
232
  ),
 
233
  'codes' => array(
234
  'google_wt' => "",
235
  'google_analytics' => "",
controllers/SerpChecker.php CHANGED
@@ -21,10 +21,10 @@ class SQ_Controllers_SerpChecker extends SQ_Classes_FrontController {
21
  if (isset($this->checkin->error)) {
22
  SQ_Classes_Tools::saveOptions('sq_google_serp_active', 0);
23
  SQ_Classes_ObjController::getClass('SQ_Classes_Error')->setError(sprintf(__('To get back to the Advanced Analytics and see rankings for all the keywords in Briefcase upgrade to %sBusiness Plan%s.'), '<a href="' . SQ_Classes_Tools::getBusinessLink() . '" target="_blank">', '</a>'), 'error');
24
- }else{
25
  if (isset($this->checkin->trial) && $this->checkin->trial) {
26
  SQ_Classes_Tools::saveOptions('sq_google_serp_trial', 1);
27
- }else{
28
  SQ_Classes_Tools::saveOptions('sq_google_serp_trial', 0);
29
  }
30
  }
@@ -39,7 +39,8 @@ class SQ_Controllers_SerpChecker extends SQ_Classes_FrontController {
39
  $this->_tabs['keywords'] = 'Top Keywords';
40
  $this->_tab = SQ_Classes_Tools::getValue('tab', false);
41
 
42
- //SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('//storage.googleapis.com/squirrly/wp480/js/bootstrap.min.js');
 
43
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('serpchecker');
44
 
45
  if ($this->_tab <> '') {
21
  if (isset($this->checkin->error)) {
22
  SQ_Classes_Tools::saveOptions('sq_google_serp_active', 0);
23
  SQ_Classes_ObjController::getClass('SQ_Classes_Error')->setError(sprintf(__('To get back to the Advanced Analytics and see rankings for all the keywords in Briefcase upgrade to %sBusiness Plan%s.'), '<a href="' . SQ_Classes_Tools::getBusinessLink() . '" target="_blank">', '</a>'), 'error');
24
+ } else {
25
  if (isset($this->checkin->trial) && $this->checkin->trial) {
26
  SQ_Classes_Tools::saveOptions('sq_google_serp_trial', 1);
27
+ } else {
28
  SQ_Classes_Tools::saveOptions('sq_google_serp_trial', 0);
29
  }
30
  }
39
  $this->_tabs['keywords'] = 'Top Keywords';
40
  $this->_tab = SQ_Classes_Tools::getValue('tab', false);
41
 
42
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('//storage.googleapis.com/squirrly/wp480/js/bootstrap.min.js');
43
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('//storage.googleapis.com/squirrly/wp480/css/bootstrap.min.css');
44
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('serpchecker');
45
 
46
  if ($this->_tab <> '') {
core/BlockBriefcaseKeywords.php CHANGED
@@ -7,6 +7,7 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
7
 
8
  public $tabs;
9
  public $keywords = array();
 
10
  public $index;
11
  public $error;
12
  /** @var SQ_Models_SerpCheckerTable */
@@ -19,7 +20,7 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
19
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
20
 
21
  //Not yet available
22
- if(SQ_Classes_Tools::getOption('sq_google_serp_active') == 0) {
23
  $this->checkin = json_decode(SQ_Classes_Action::apiCall('sq/rank-checker/checkin'));
24
  if (isset($this->checkin->active) && $this->checkin->active) {
25
  if (isset($this->checkin->trial) && $this->checkin->trial) {
@@ -38,11 +39,15 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
38
  $per_page = $this->listTable->get_items_per_page('edit_post_per_page');
39
  $paged = (int)SQ_Classes_Tools::getValue('paged', 1);
40
  $search = (string)SQ_Classes_Tools::getValue('skeyword', '');
 
41
 
42
  $args = array();
43
  $args['json'] = true;
44
  $args['paged'] = $paged;
45
  $args['search'] = $search;
 
 
 
46
  $args['per_page'] = $per_page;
47
  $json = json_decode(SQ_Classes_Action::apiCall('sq/briefcase/get', $args));
48
 
@@ -54,11 +59,16 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
54
  ));
55
 
56
  $this->index = (($paged - 1) * $per_page);
 
57
  $this->keywords = $json->keywords;
58
  } else {
59
  $this->error = __('No keyword found in the briefcase.', _SQ_PLUGIN_NAME_);
60
  }
61
 
 
 
 
 
62
  SQ_Classes_ObjController::getClass('SQ_Classes_Error')->hookNotices();
63
 
64
  return parent::init();
@@ -76,16 +86,25 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
76
  switch (SQ_Classes_Tools::getValue('action')) {
77
  case 'sq_briefcase_addkeyword':
78
  if (!current_user_can('edit_posts')) {
79
- echo json_encode(array('error' => __("You don't have enough pemission to activate this feature", _SQ_PLUGIN_NAME_)));
80
  exit();
81
  }
82
 
83
  $keyword = (string)SQ_Classes_Tools::getValue('keyword', '');
 
84
 
85
  if ($keyword <> '') {
86
  $args = array();
87
  $args['keyword'] = $keyword;
88
- SQ_Classes_Action::apiCall('sq/briefcase/add', $args);
 
 
 
 
 
 
 
 
89
 
90
  echo json_encode(array('saved' => __('Saved!', _SQ_PLUGIN_NAME_)));
91
  } else {
@@ -94,7 +113,7 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
94
  break;
95
  case 'sq_briefcase_deletekeyword':
96
  if (!current_user_can('edit_posts')) {
97
- echo json_encode(array('error' => __("You don't have enough pemission to activate this feature", _SQ_PLUGIN_NAME_)));
98
  exit();
99
  }
100
 
@@ -112,7 +131,7 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
112
  break;
113
  case 'sq_briefcase_doresearch':
114
  if (!current_user_can('edit_posts')) {
115
- echo json_encode(array('error' => __("You don't have enough pemission to activate this feature", _SQ_PLUGIN_NAME_)));
116
  exit();
117
  }
118
 
@@ -135,7 +154,7 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
135
  case 'sq_briefcase_article':
136
 
137
  if (!current_user_can('edit_posts')) {
138
- echo json_encode(array('error' => __("You don't have enough pemission to activate this feature", _SQ_PLUGIN_NAME_)));
139
  exit();
140
  }
141
 
@@ -168,7 +187,7 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
168
  <td align="right">' . (int)$article->optimized . '%' . '</td>
169
  <td align="center">
170
  <button class="btn btn-default sq_research_selectit" onclick="location.href = \'' . admin_url('post.php?post=' . $post->ID . '&action=edit') . '\'">' . __('Edit', _SQ_PLUGIN_NAME_) . '</button>
171
- ' . sprintf('<button class="btn btn-default sq_rank_refresh" data-id="' . $post->ID . '" data-keyword="' . htmlspecialchars($keyword) . '">%s</button>', __('Update', _SQ_PLUGIN_NAME_)) . '
172
  </td>
173
  </tr>';
174
  } else {
@@ -200,6 +219,94 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
200
  echo json_encode(array('error' => __('Invalid Keyword!', _SQ_PLUGIN_NAME_)));
201
  }
202
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  }
204
 
205
  exit();
7
 
8
  public $tabs;
9
  public $keywords = array();
10
+ public $labels = array();
11
  public $index;
12
  public $error;
13
  /** @var SQ_Models_SerpCheckerTable */
20
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
21
 
22
  //Not yet available
23
+ if (SQ_Classes_Tools::getOption('sq_google_serp_active') == 0) {
24
  $this->checkin = json_decode(SQ_Classes_Action::apiCall('sq/rank-checker/checkin'));
25
  if (isset($this->checkin->active) && $this->checkin->active) {
26
  if (isset($this->checkin->trial) && $this->checkin->trial) {
39
  $per_page = $this->listTable->get_items_per_page('edit_post_per_page');
40
  $paged = (int)SQ_Classes_Tools::getValue('paged', 1);
41
  $search = (string)SQ_Classes_Tools::getValue('skeyword', '');
42
+ $labels = SQ_Classes_Tools::getValue('slabel', array());
43
 
44
  $args = array();
45
  $args['json'] = true;
46
  $args['paged'] = $paged;
47
  $args['search'] = $search;
48
+ if(!empty($labels)) {
49
+ $args['label'] = join(',', $labels);
50
+ }
51
  $args['per_page'] = $per_page;
52
  $json = json_decode(SQ_Classes_Action::apiCall('sq/briefcase/get', $args));
53
 
59
  ));
60
 
61
  $this->index = (($paged - 1) * $per_page);
62
+ $this->labels = $json->labels;
63
  $this->keywords = $json->keywords;
64
  } else {
65
  $this->error = __('No keyword found in the briefcase.', _SQ_PLUGIN_NAME_);
66
  }
67
 
68
+ wp_enqueue_style('wp-color-picker');
69
+ wp_enqueue_script('wp-color-picker');
70
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('//storage.googleapis.com/squirrly/wp480/js/bootstrap.min.js');
71
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('//storage.googleapis.com/squirrly/wp480/css/bootstrap.min.css');
72
  SQ_Classes_ObjController::getClass('SQ_Classes_Error')->hookNotices();
73
 
74
  return parent::init();
86
  switch (SQ_Classes_Tools::getValue('action')) {
87
  case 'sq_briefcase_addkeyword':
88
  if (!current_user_can('edit_posts')) {
89
+ echo json_encode(array('error' => __("You don't have enough pemission to manage this feature", _SQ_PLUGIN_NAME_)));
90
  exit();
91
  }
92
 
93
  $keyword = (string)SQ_Classes_Tools::getValue('keyword', '');
94
+ $labels = SQ_Classes_Tools::getValue('labels', array());
95
 
96
  if ($keyword <> '') {
97
  $args = array();
98
  $args['keyword'] = $keyword;
99
+ if (!empty($labels)) {
100
+ foreach ($labels as $label) {
101
+ $args['label'] = $label;
102
+ SQ_Classes_Action::apiCall('sq/briefcase/add', $args);
103
+ }
104
+ } else {
105
+ SQ_Classes_Action::apiCall('sq/briefcase/add', $args);
106
+
107
+ }
108
 
109
  echo json_encode(array('saved' => __('Saved!', _SQ_PLUGIN_NAME_)));
110
  } else {
113
  break;
114
  case 'sq_briefcase_deletekeyword':
115
  if (!current_user_can('edit_posts')) {
116
+ echo json_encode(array('error' => __("You don't have enough pemission to manage this feature", _SQ_PLUGIN_NAME_)));
117
  exit();
118
  }
119
 
131
  break;
132
  case 'sq_briefcase_doresearch':
133
  if (!current_user_can('edit_posts')) {
134
+ echo json_encode(array('error' => __("You don't have enough pemission to manage this feature", _SQ_PLUGIN_NAME_)));
135
  exit();
136
  }
137
 
154
  case 'sq_briefcase_article':
155
 
156
  if (!current_user_can('edit_posts')) {
157
+ echo json_encode(array('error' => __("You don't have enough pemission to manage this feature", _SQ_PLUGIN_NAME_)));
158
  exit();
159
  }
160
 
187
  <td align="right">' . (int)$article->optimized . '%' . '</td>
188
  <td align="center">
189
  <button class="btn btn-default sq_research_selectit" onclick="location.href = \'' . admin_url('post.php?post=' . $post->ID . '&action=edit') . '\'">' . __('Edit', _SQ_PLUGIN_NAME_) . '</button>
190
+ ' . sprintf('<button class="btn btn-default sq_rank_refresh" data-id="' . $post->ID . '" data-keyword="' . htmlspecialchars($keyword) . '">%s</button>', __('Get Rank', _SQ_PLUGIN_NAME_)) . '
191
  </td>
192
  </tr>';
193
  } else {
219
  echo json_encode(array('error' => __('Invalid Keyword!', _SQ_PLUGIN_NAME_)));
220
  }
221
  break;
222
+
223
+ /*****************************/
224
+
225
+ case 'sq_briefcase_addlabel':
226
+ if (!current_user_can('edit_posts')) {
227
+ echo json_encode(array('error' => __("You don't have enough pemission to manage this feature", _SQ_PLUGIN_NAME_)));
228
+ exit();
229
+ }
230
+
231
+ $name = (string)SQ_Classes_Tools::getValue('name', 0);
232
+ $color = (string)SQ_Classes_Tools::getValue('color', '#ffffff');
233
+
234
+ if ($name <> '' && $color <> '') {
235
+ $args = array();
236
+ $args['name'] = $name;
237
+ $args['color'] = $color;
238
+ SQ_Classes_Action::apiCall('sq/briefcase/add-label', $args);
239
+
240
+ echo json_encode(array('saved' => __('Saved!', _SQ_PLUGIN_NAME_)));
241
+ } else {
242
+ echo json_encode(array('error' => __('Invalid Label or Color!', _SQ_PLUGIN_NAME_)));
243
+ }
244
+ break;
245
+ case 'sq_briefcase_editlabel':
246
+ if (!current_user_can('edit_posts')) {
247
+ echo json_encode(array('error' => __("You don't have enough pemission to manage this feature", _SQ_PLUGIN_NAME_)));
248
+ exit();
249
+ }
250
+
251
+ $id = (string)SQ_Classes_Tools::getValue('id', 0);
252
+ $name = (string)SQ_Classes_Tools::getValue('name', 0);
253
+ $color = (string)SQ_Classes_Tools::getValue('color', '#ffffff');
254
+
255
+ if ((int)$id > 0 && $name <> '' && $color <> '') {
256
+ $args = array();
257
+ $args['id'] = $id;
258
+ $args['name'] = $name;
259
+ $args['color'] = $color;
260
+ SQ_Classes_Action::apiCall('sq/briefcase/edit-label', $args);
261
+
262
+ echo json_encode(array('saved' => __('Saved!', _SQ_PLUGIN_NAME_)));
263
+ } else {
264
+ echo json_encode(array('error' => __('Invalid params!', _SQ_PLUGIN_NAME_)));
265
+ }
266
+ break;
267
+ case 'sq_briefcase_deletelabel':
268
+ if (!current_user_can('edit_posts')) {
269
+ echo json_encode(array('error' => __("You don't have enough pemission to manage this feature", _SQ_PLUGIN_NAME_)));
270
+ exit();
271
+ }
272
+
273
+ $id = (int)SQ_Classes_Tools::getValue('id', 0);
274
+
275
+ if ($id > 0) {
276
+ //set ignore on API
277
+ $args = array();
278
+ $args['id'] = $id;
279
+ SQ_Classes_Action::apiCall('sq/briefcase/delete-label', $args);
280
+ echo json_encode(array('deleted' => __('Deleted!', _SQ_PLUGIN_NAME_)));
281
+ } else {
282
+ echo json_encode(array('error' => __('Invalid params!', _SQ_PLUGIN_NAME_)));
283
+ }
284
+ break;
285
+ case 'sq_briefcase_keywordlabel':
286
+ if (!current_user_can('edit_posts')) {
287
+ echo json_encode(array('error' => __("You don't have enough pemission to manage this feature", _SQ_PLUGIN_NAME_)));
288
+ exit();
289
+ }
290
+
291
+ $keyword_id = SQ_Classes_Tools::getValue('keyword_id', 0);
292
+ $labels = SQ_Classes_Tools::getValue('labels', array());
293
+
294
+ if ((int)$keyword_id > 0) {
295
+ $args = array();
296
+ $args['id'] = $keyword_id;
297
+ if(is_array($labels) && !empty($labels)) {
298
+ $args['labels'] = join(',', $labels);
299
+ SQ_Classes_Action::apiCall('sq/briefcase/add-briefcase-labels', $args);
300
+ }else{
301
+ SQ_Classes_Action::apiCall('sq/briefcase/delete-briefcase-labels', $args);
302
+
303
+ }
304
+ echo json_encode(array('saved' => __('Saved!', _SQ_PLUGIN_NAME_)));
305
+ } else {
306
+ echo json_encode(array('error' => __('Invalid Keyword!', _SQ_PLUGIN_NAME_)));
307
+ }
308
+ break;
309
+
310
  }
311
 
312
  exit();
core/config.xml CHANGED
@@ -208,9 +208,13 @@
208
  <description>Squirrly Briefcase</description>
209
  <actions>
210
  <action>sq_briefcase_addkeyword</action>
 
 
 
211
  <action>sq_briefcase_article</action>
212
  <action>sq_briefcase_doresearch</action>
213
  <action>sq_briefcase_deletekeyword</action>
 
214
  </actions>
215
  <active>1</active>
216
  <admin>1</admin>
208
  <description>Squirrly Briefcase</description>
209
  <actions>
210
  <action>sq_briefcase_addkeyword</action>
211
+ <action>sq_briefcase_addlabel</action>
212
+ <action>sq_briefcase_editlabel</action>
213
+ <action>sq_briefcase_keywordlabel</action>
214
  <action>sq_briefcase_article</action>
215
  <action>sq_briefcase_doresearch</action>
216
  <action>sq_briefcase_deletekeyword</action>
217
+ <action>sq_briefcase_deletelabel</action>
218
  </actions>
219
  <active>1</active>
220
  <admin>1</admin>
languages/squirrly-seo-de_DE.mo CHANGED
Binary file
languages/squirrly-seo-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-12-16 14:55+0200\n"
6
- "PO-Revision-Date: 2017-12-16 14:55+0200\n"
7
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
@@ -19,6 +19,12 @@ msgstr ""
19
  "X-Generator: Poedit 1.8.2\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
 
 
 
 
 
 
22
  # @ squirrly-seo
23
  #: classes/Error.php:16
24
  msgid ""
@@ -51,94 +57,94 @@ msgstr "Die PHP-Version muß größer als 4.0 sein"
51
  msgid "Don't bother me!"
52
  msgstr ""
53
 
54
- #: classes/Tools.php:59
55
  msgid "Getting started"
56
  msgstr ""
57
 
58
- #: classes/Tools.php:247
59
  msgid "Format"
60
  msgstr ""
61
 
62
- #: classes/Tools.php:255 classes/Tools.php:271
63
  msgid "Category"
64
  msgstr ""
65
 
66
- #: classes/Tools.php:263 classes/Tools.php:279
67
  msgid "Tag"
68
  msgstr ""
69
 
70
- #: classes/Tools.php:287
71
  msgid "Shipping Option"
72
  msgstr ""
73
 
74
- #: classes/Tools.php:295
75
  msgid "Author at"
76
  msgstr ""
77
 
78
- #: classes/Tools.php:327
79
  msgid "You searched for"
80
  msgstr ""
81
 
82
- #: classes/Tools.php:343
83
  msgid "Page not found"
84
  msgstr ""
85
 
86
  # @ squirrly-seo
87
- #: classes/Tools.php:868
88
  msgid "Fix it for me!"
89
  msgstr "Beheben Sie es für mich!"
90
 
91
- #: classes/Tools.php:874
92
  msgid "Activate the Squirrly SEO for your blog (recommended)"
93
  msgstr ""
94
 
95
- #: classes/Tools.php:885
96
  msgid ""
97
  "You have META Title Duplicates. Disable the Squirrly Title Optimization or "
98
  "disable the other SEO Plugins"
99
  msgstr ""
100
 
101
- #: classes/Tools.php:893
102
  msgid ""
103
  "You have META Description Duplicates. Disable the Squirrly Description "
104
  "Optimization or disable the other SEO Plugins"
105
  msgstr ""
106
 
107
- #: classes/Tools.php:901
108
  msgid ""
109
  "You have Open Graph META Duplicates. Disable the Squirrly SEO Open Graph or "
110
  "disable the other SEO Plugins"
111
  msgstr ""
112
 
113
- #: classes/Tools.php:909
114
  msgid ""
115
  "You have Twitter Card META Duplicates. Disable the Squirrly SEO Twitter Card "
116
  "or disable the other SEO Plugins"
117
  msgstr ""
118
 
119
  # @ squirrly-seo
120
- #: classes/Tools.php:918
121
  msgid "You're blocking google from indexing your site!"
122
  msgstr "Sie blockieren Google zum Indizieren Ihrer Website!"
123
 
124
- #: classes/Tools.php:925
125
  msgid ""
126
  "It is highly recommended that you include the %postname% variable in the "
127
  "permalink structure. <br />Go to Settings > Permalinks and add /%postname%/ "
128
  "in Custom Structure"
129
  msgstr ""
130
 
131
- #: classes/Tools.php:932
132
  msgid ""
133
  "It is highly recommended to change or remove the default Wordpress Tagline. "
134
  "<br />Go to Settings > General > Tagline"
135
  msgstr ""
136
 
137
- #: classes/Tools.php:938
138
  msgid "Great! We didn't find any issue in your site."
139
  msgstr ""
140
 
141
- #: classes/Tools.php:1083
142
  msgid "Just another WordPress site"
143
  msgstr ""
144
 
@@ -244,161 +250,168 @@ msgstr ""
244
  msgid "You don't have enough pemission to edit this article"
245
  msgstr ""
246
 
247
- #: controllers/Menu.php:41 controllers/Menu.php:52
248
  #, php-format
249
  msgid ""
250
  "Good news, %s is integrated in Squirrly SEO now and you don't have to run 2 "
251
  "plugins anymore"
252
  msgstr ""
253
 
254
- #: controllers/Menu.php:97
 
 
 
 
 
 
 
255
  msgid "See Your Rank on Google"
256
  msgstr ""
257
 
258
- #: controllers/Menu.php:156
259
  msgid "Custom SEO"
260
  msgstr ""
261
 
262
- #: controllers/Menu.php:199
263
  #, php-format
264
  msgid "Check out the Squirrly Analytics section. %sClick here%s"
265
  msgstr ""
266
 
267
- #: controllers/Menu.php:199 view/BlockPostsAnalytics.php:46
268
  msgid "Squirrly Analytics"
269
  msgstr ""
270
 
271
- #: controllers/Menu.php:208
272
  #, php-format
273
  msgid "Go back and complete the Squirrly Tasks for today %sContinue%s"
274
  msgstr ""
275
 
276
- #: controllers/Menu.php:230
277
  msgid " Dashboard"
278
  msgstr ""
279
 
280
- #: controllers/Menu.php:231
281
  msgid "First Step"
282
  msgstr ""
283
 
284
- #: controllers/Menu.php:231
285
  msgid "Dashboard"
286
  msgstr ""
287
 
288
- #: controllers/Menu.php:240
289
  msgid " Advanced Analytics (Business Level)"
290
  msgstr ""
291
 
292
- #: controllers/Menu.php:241
293
  msgid "Advanced Analytics"
294
  msgstr ""
295
 
296
- #: controllers/Menu.php:248
297
  msgid " Performance Analytics"
298
  msgstr ""
299
 
300
- #: controllers/Menu.php:249
301
  msgid "Performance <br />Analytics"
302
  msgstr ""
303
 
304
- #: controllers/Menu.php:257
305
  msgid " Keyword Research"
306
  msgstr ""
307
 
308
- #: controllers/Menu.php:258
309
  msgid "Keyword Research"
310
  msgstr ""
311
 
312
- #: controllers/Menu.php:265
313
  msgid " Briefcase"
314
  msgstr ""
315
 
316
- #: controllers/Menu.php:266
317
  msgid "Briefcase"
318
  msgstr ""
319
 
320
- #: controllers/Menu.php:273
321
  msgid " Live Assistant"
322
  msgstr ""
323
 
324
- #: controllers/Menu.php:274
325
  msgid "Live Assistant"
326
  msgstr ""
327
 
328
- #: controllers/Menu.php:280
329
  msgid " Copywriting"
330
  msgstr ""
331
 
332
- #: controllers/Menu.php:281
333
  msgid "Copywriting"
334
  msgstr ""
335
 
336
- #: controllers/Menu.php:289
337
  msgid " SEO Audit"
338
  msgstr ""
339
 
340
- #: controllers/Menu.php:290
341
  msgid "Site Audit"
342
  msgstr ""
343
 
344
- #: controllers/Menu.php:298
345
  msgid " SEO Settings"
346
  msgstr ""
347
 
348
- #: controllers/Menu.php:299 view/BlockToolbar.php:4
349
  msgid "SEO Settings"
350
  msgstr ""
351
 
352
- #: controllers/Menu.php:307
353
  msgid " Advanced Settings"
354
  msgstr ""
355
 
356
- #: controllers/Menu.php:308 view/BlockSettings.php:22
357
  msgid "Advanced Settings"
358
  msgstr ""
359
 
360
- #: controllers/Menu.php:315
361
  msgid " SEO Patterns"
362
  msgstr ""
363
 
364
- #: controllers/Menu.php:316 view/BlockToolbar.php:14
365
  msgid "Patterns"
366
  msgstr ""
367
 
368
- #: controllers/Menu.php:323
369
  msgid " Account Info"
370
  msgstr ""
371
 
372
- #: controllers/Menu.php:324
373
  msgid "Account Info"
374
  msgstr ""
375
 
376
- #: controllers/Menu.php:331
377
  msgid " Support"
378
  msgstr ""
379
 
380
  # @ squirrly-seo
381
- #: controllers/Menu.php:332 view/BlockSupport.php:18
382
  msgid "Support"
383
  msgstr "Support"
384
 
385
- #: controllers/Menu.php:339
386
  msgid "Become an Affiliate with "
387
  msgstr ""
388
 
389
- #: controllers/Menu.php:340
390
  msgid "Become an Affiliate"
391
  msgstr ""
392
 
393
- #: controllers/Menu.php:348
394
  msgid "Import SEO "
395
  msgstr ""
396
 
397
- #: controllers/Menu.php:349 view/BlockImport.php:77
398
  msgid "Import SEO"
399
  msgstr ""
400
 
401
- #: controllers/Menu.php:383
402
  msgid "SEO Snippet"
403
  msgstr ""
404
 
@@ -418,17 +431,16 @@ msgstr ""
418
  msgid "SEO Analytics, by Squirrly"
419
  msgstr ""
420
 
421
- #: controllers/PostsList.php:144 controllers/SerpChecker.php:174
422
- #: core/BlockBriefcaseKeywords.php:173 models/SerpCheckerTable.php:646
423
- #: view/Blockseo.php:10
424
  msgid "Update"
425
  msgstr ""
426
 
427
- #: controllers/PostsList.php:148 controllers/SerpChecker.php:178
428
  msgid "Not Public"
429
  msgstr ""
430
 
431
- #: controllers/PostsList.php:149 controllers/SerpChecker.php:179
432
  msgid "Could not process"
433
  msgstr ""
434
 
@@ -454,25 +466,23 @@ msgid ""
454
  "in Briefcase upgrade to %sBusiness Plan%s."
455
  msgstr ""
456
 
457
- #: controllers/SerpChecker.php:77 controllers/SerpChecker.php:91
458
- #: controllers/SerpChecker.php:134 core/BlockBriefcaseKeywords.php:79
459
- #: core/BlockBriefcaseKeywords.php:98 core/BlockBriefcaseKeywords.php:116
460
- #: core/BlockBriefcaseKeywords.php:140 core/BlockSerpKeywords.php:66
461
  #: core/BlockSerpKeywords.php:74 core/BlockSerpKeywords.php:97
462
- #: core/BlockSettingsSeo.php:63
463
  msgid "You don't have enough pemission to activate this feature"
464
  msgstr ""
465
 
466
- #: controllers/SerpChecker.php:115 controllers/SerpChecker.php:125
467
- #: core/BlockBriefcaseKeywords.php:169
468
  msgid "Last checked"
469
  msgstr ""
470
 
471
- #: controllers/SerpChecker.php:129
472
  msgid "Invalid Request"
473
  msgstr ""
474
 
475
- #: controllers/SerpChecker.php:142
476
  msgid "Removed successfully! The ranks were updated from Squirry Server"
477
  msgstr ""
478
 
@@ -485,82 +495,99 @@ msgstr ""
485
  msgid "An error occured. Mabe a network error :("
486
  msgstr ""
487
 
488
- #: core/BlockBriefcaseKeywords.php:31 core/BlockPostsAnalytics.php:24
489
  #, php-format
490
  msgid ""
491
  "%sYou activated the Business Plan with Advanced Analytics. %sStart Here%s %s"
492
  msgstr ""
493
 
494
- #: core/BlockBriefcaseKeywords.php:33 core/BlockPostsAnalytics.php:26
495
  #, php-format
496
  msgid ""
497
  "%sStart a FREE Trial of the Business Plan with Advanced Analytics for 7 "
498
  "days. No credit card required. %sSee details%s %s"
499
  msgstr ""
500
 
501
- #: core/BlockBriefcaseKeywords.php:59
502
  msgid "No keyword found in the briefcase."
503
  msgstr ""
504
 
505
- #: core/BlockBriefcaseKeywords.php:90 core/Loading.php:50
506
- #: view/FrontMenu.php:38
 
 
 
 
 
 
 
 
507
  msgid "Saved!"
508
  msgstr ""
509
 
510
- #: core/BlockBriefcaseKeywords.php:92 core/BlockBriefcaseKeywords.php:133
511
- #: core/BlockBriefcaseKeywords.php:202
512
  msgid "Invalid Keyword!"
513
  msgstr ""
514
 
515
- #: core/BlockBriefcaseKeywords.php:109
516
  msgid "Deleted!"
517
  msgstr ""
518
 
519
- #: core/BlockBriefcaseKeywords.php:111
 
520
  msgid "Invalid params!"
521
  msgstr ""
522
 
523
- #: core/BlockBriefcaseKeywords.php:129
524
  msgid "Keyword Research limit exceeded."
525
  msgstr ""
526
 
527
- #: core/BlockBriefcaseKeywords.php:129 core/Loading.php:71
528
  msgid "Add 20 Keyword Researches"
529
  msgstr ""
530
 
531
- #: core/BlockBriefcaseKeywords.php:161
532
  msgid "Check Ranks"
533
  msgstr ""
534
 
535
- #: core/BlockBriefcaseKeywords.php:172 models/BlockPostsAnalytics.php:393
536
  #: models/SerpCheckerTable.php:565
537
  msgid "Edit"
538
  msgstr ""
539
 
540
- #: core/BlockBriefcaseKeywords.php:178
 
 
 
 
541
  msgid "Deleted Post"
542
  msgstr ""
543
 
544
- #: core/BlockBriefcaseKeywords.php:188
545
  msgid "Article title"
546
  msgstr ""
547
 
548
- #: core/BlockBriefcaseKeywords.php:189 models/SerpCheckerTable.php:359
549
  msgid "Google Rank"
550
  msgstr ""
551
 
552
- #: core/BlockBriefcaseKeywords.php:190 models/SerpCheckerTable.php:362
553
  msgid "Optimized"
554
  msgstr ""
555
 
556
- #: core/BlockBriefcaseKeywords.php:191
557
  msgid "Option"
558
  msgstr ""
559
 
560
- #: core/BlockBriefcaseKeywords.php:196
561
  msgid "There are no articles found"
562
  msgstr ""
563
 
 
 
 
 
564
  #: core/BlockImport.php:32
565
  msgid "All the Plugin settings were imported successfuly!"
566
  msgstr ""
@@ -600,32 +627,32 @@ msgstr ""
600
  msgid "You can now import into Squirrly SEO all the SEO Settings from %s"
601
  msgstr ""
602
 
603
- #: core/BlockSettingsSeo.php:35 core/Blockseo.php:13
604
  msgid "Too short"
605
  msgstr ""
606
 
607
- #: core/BlockSettingsSeo.php:36 core/Blockseo.php:14
608
  msgid "Too long"
609
  msgstr ""
610
 
611
- #: core/BlockSettingsSeo.php:462
612
  msgid "Great! The backup is restored."
613
  msgstr ""
614
 
615
- #: core/BlockSettingsSeo.php:464 core/BlockSettingsSeo.php:467
616
- #: core/BlockSettingsSeo.php:512 core/BlockSettingsSeo.php:515
617
  msgid "Error! The backup is not valid."
618
  msgstr ""
619
 
620
- #: core/BlockSettingsSeo.php:470 core/BlockSettingsSeo.php:518
621
  msgid "Error! You have to enter a previous saved backup file."
622
  msgstr ""
623
 
624
- #: core/BlockSettingsSeo.php:509
625
  msgid "Great! The SEO backup is restored."
626
  msgstr ""
627
 
628
- #: core/BlockSettingsSeo.php:525
629
  msgid "Great! Squirrly Data Settings is up to date now."
630
  msgstr ""
631
 
@@ -921,7 +948,7 @@ msgstr ""
921
  msgid "Add Keyword to Briefcase"
922
  msgstr ""
923
 
924
- #: core/Loading.php:87 view/BlockBriefcaseKeywords.php:132
925
  msgid "Use Keyword"
926
  msgstr ""
927
 
@@ -935,7 +962,7 @@ msgid "Type"
935
  msgstr ""
936
 
937
  #: models/BlockPostsAnalytics.php:295 models/SerpCheckerTable.php:374
938
- #: view/FrontMenu.php:364
939
  msgid "Author"
940
  msgstr ""
941
 
@@ -1205,14 +1232,14 @@ msgstr ""
1205
  msgid "The total number of inbound links to this post"
1206
  msgstr ""
1207
 
1208
- #: models/SerpCheckerTable.php:353 view/BlockPatterns.php:86
1209
- #: view/FrontMenu.php:134
1210
  msgid "Title"
1211
  msgstr ""
1212
 
1213
- #: models/SerpCheckerTable.php:356 view/BlockBriefcaseKeywords.php:41
1214
- #: view/BlockBriefcaseKeywords.php:60 view/BlockSerpKeywords.php:25
1215
- #: view/BlockSerpKeywords.php:53
1216
  msgid "Keyword"
1217
  msgstr ""
1218
 
@@ -1224,7 +1251,7 @@ msgstr ""
1224
  msgid "Post Date"
1225
  msgstr ""
1226
 
1227
- #: models/SerpCheckerTable.php:399 view/BlockBriefcaseKeywords.php:21
1228
  msgid "Search Keyword"
1229
  msgstr ""
1230
 
@@ -1275,11 +1302,11 @@ msgstr ""
1275
  msgid "Not indexed"
1276
  msgstr ""
1277
 
1278
- #: models/domain/Patterns.php:214
1279
  msgid "Page"
1280
  msgstr ""
1281
 
1282
- #: models/domain/Patterns.php:215
1283
  msgid "of"
1284
  msgstr ""
1285
 
@@ -1561,64 +1588,125 @@ msgid "Show All"
1561
  msgstr ""
1562
 
1563
  #: view/BlockBriefcaseKeywords.php:13
1564
- msgid "Briefcase Keywords (Beta)"
 
 
 
 
1565
  msgstr ""
1566
 
1567
- #: view/BlockBriefcaseKeywords.php:24 view/BlockSerpKeywords.php:12
 
 
 
 
 
 
 
 
1568
  msgid "Add new keyword"
1569
  msgstr ""
1570
 
1571
- #: view/BlockBriefcaseKeywords.php:27
1572
- msgid "See the Google Ranks for these Keywords"
1573
  msgstr ""
1574
 
1575
- #: view/BlockBriefcaseKeywords.php:30
1576
- msgid "Go to Analytics"
1577
  msgstr ""
1578
 
1579
- #: view/BlockBriefcaseKeywords.php:42 view/BlockSerpKeywords.php:26
1580
  msgid "Enter a Keyword (2-4 words)"
1581
  msgstr ""
1582
 
1583
- #: view/BlockBriefcaseKeywords.php:44 view/BlockSerpKeywords.php:34
 
 
 
 
 
 
 
 
1584
  msgid "Add Keyword"
1585
  msgstr ""
1586
 
1587
- #: view/BlockBriefcaseKeywords.php:61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1588
  msgid "Used"
1589
  msgstr ""
1590
 
1591
- #: view/BlockBriefcaseKeywords.php:62
1592
  msgid "Data"
1593
  msgstr ""
1594
 
1595
- #: view/BlockBriefcaseKeywords.php:89 view/BlockBriefcaseKeywords.php:90
 
 
 
 
 
 
 
 
 
 
 
 
 
1596
  msgid "Competition"
1597
  msgstr ""
1598
 
1599
- #: view/BlockBriefcaseKeywords.php:90 view/BlockBriefcaseKeywords.php:98
1600
- #: view/BlockBriefcaseKeywords.php:106 view/BlockBriefcaseKeywords.php:114
1601
  msgid "-"
1602
  msgstr ""
1603
 
1604
- #: view/BlockBriefcaseKeywords.php:97 view/BlockBriefcaseKeywords.php:98
1605
  msgid "SEO Search Volume"
1606
  msgstr ""
1607
 
1608
- #: view/BlockBriefcaseKeywords.php:105 view/BlockBriefcaseKeywords.php:106
1609
  msgid "Recent discussions"
1610
  msgstr ""
1611
 
1612
- #: view/BlockBriefcaseKeywords.php:113 view/BlockBriefcaseKeywords.php:114
1613
  msgid "Trending"
1614
  msgstr ""
1615
 
1616
  # @ squirrly-seo
1617
- #: view/BlockBriefcaseKeywords.php:123 view/Blocksearch.php:48
1618
  msgid "Do a research"
1619
  msgstr "Recherchieren"
1620
 
1621
- #: view/BlockBriefcaseKeywords.php:135
1622
  msgid "Delete"
1623
  msgstr ""
1624
 
@@ -1899,12 +1987,56 @@ msgid "Use Squirrly Live Assistant"
1899
  msgstr ""
1900
 
1901
  #: view/BlockPatterns.php:36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1902
  msgid ""
1903
  "Control how post types are displayed on your site and within search engine "
1904
  "results and social media feeds."
1905
  msgstr ""
1906
 
1907
- #: view/BlockPatterns.php:37
1908
  msgid ""
1909
  "In Squirrly, each post type in your site comes with a predefined posting "
1910
  "pattern when displayed onto your website. However, based on your site's "
@@ -1912,13 +2044,13 @@ msgid ""
1912
  "include."
1913
  msgstr ""
1914
 
1915
- #: view/BlockPatterns.php:38
1916
  msgid ""
1917
  "Once you set up a pattern for a particular post type, only the content "
1918
  "required by your custom sequence will be displayed."
1919
  msgstr ""
1920
 
1921
- #: view/BlockPatterns.php:39
1922
  #, php-format
1923
  msgid ""
1924
  "Squirrly lets you see how the customized patterns will apply when posts/"
@@ -1928,97 +2060,57 @@ msgid ""
1928
  "information."
1929
  msgstr ""
1930
 
1931
- #: view/BlockPatterns.php:43
1932
  msgid "Set the custom patterns for each post type"
1933
  msgstr ""
1934
 
1935
- #: view/BlockPatterns.php:51
1936
  msgid "+ Add Post Type"
1937
  msgstr ""
1938
 
1939
- #: view/BlockPatterns.php:51
1940
  msgid "Add a post type from your Wordpress website"
1941
  msgstr ""
1942
 
1943
- #: view/BlockPatterns.php:54
1944
  msgid "Add Post Type"
1945
  msgstr ""
1946
 
1947
- #: view/BlockPatterns.php:71
1948
  msgid "Add"
1949
  msgstr ""
1950
 
1951
- #: view/BlockPatterns.php:81
1952
  #, php-format
1953
  msgid "Are you sure you want to remove the post type: %s"
1954
  msgstr ""
1955
 
1956
- #: view/BlockPatterns.php:81
1957
  msgid "Remove Post Type"
1958
  msgstr ""
1959
 
1960
- #: view/BlockPatterns.php:92 view/FrontMenu.php:182
1961
  msgid "Description"
1962
  msgstr ""
1963
 
1964
- #: view/BlockPatterns.php:98
1965
  msgid "Separator"
1966
  msgstr ""
1967
 
1968
- #: view/BlockPatterns.php:113
1969
  msgid "Let Google Index it"
1970
  msgstr ""
1971
 
1972
- # @ squirrly-seo
1973
- #: view/BlockPatterns.php:118 view/BlockPatterns.php:132
1974
- #: view/BlockPatterns.php:149 view/BlockSettings.php:135
1975
- #: view/BlockSettings.php:146 view/BlockSettings.php:157
1976
- #: view/BlockSettings.php:168 view/BlockSettings.php:179
1977
- #: view/BlockSettings.php:191 view/BlockSettings.php:203
1978
- #: view/BlockSettings.php:368 view/BlockSettingsSeo.php:53
1979
- #: view/BlockSettingsSeo.php:95 view/BlockSettingsSeo.php:112
1980
- #: view/BlockSettingsSeo.php:128 view/BlockSettingsSeo.php:144
1981
- #: view/BlockSettingsSeo.php:160 view/BlockSettingsSeo.php:176
1982
- #: view/BlockSettingsSeo.php:192 view/BlockSettingsSeo.php:220
1983
- #: view/BlockSettingsSeo.php:236 view/BlockSettingsSeo.php:252
1984
- #: view/BlockSettingsSeo.php:271 view/BlockSettingsSeo.php:546
1985
- #: view/BlockSettingsSeo.php:578 view/BlockSettingsSeo.php:586
1986
- #: view/BlockSettingsSeo.php:684 view/BlockSettingsSeo.php:1016
1987
- #: view/FrontMenu.php:49 view/FrontMenu.php:508 view/FrontMenu.php:521
1988
- #: view/FrontMenu.php:534
1989
- msgid "Yes"
1990
- msgstr "Ja"
1991
-
1992
- # @ squirrly-seo
1993
- #: view/BlockPatterns.php:120 view/BlockPatterns.php:134
1994
- #: view/BlockPatterns.php:151 view/BlockSettings.php:137
1995
- #: view/BlockSettings.php:148 view/BlockSettings.php:159
1996
- #: view/BlockSettings.php:170 view/BlockSettings.php:181
1997
- #: view/BlockSettings.php:193 view/BlockSettings.php:205
1998
- #: view/BlockSettings.php:370 view/BlockSettingsSeo.php:55
1999
- #: view/BlockSettingsSeo.php:97 view/BlockSettingsSeo.php:114
2000
- #: view/BlockSettingsSeo.php:130 view/BlockSettingsSeo.php:146
2001
- #: view/BlockSettingsSeo.php:162 view/BlockSettingsSeo.php:178
2002
- #: view/BlockSettingsSeo.php:194 view/BlockSettingsSeo.php:222
2003
- #: view/BlockSettingsSeo.php:238 view/BlockSettingsSeo.php:254
2004
- #: view/BlockSettingsSeo.php:273 view/BlockSettingsSeo.php:548
2005
- #: view/BlockSettingsSeo.php:580 view/BlockSettingsSeo.php:588
2006
- #: view/BlockSettingsSeo.php:686 view/BlockSettingsSeo.php:1018
2007
- #: view/FrontMenu.php:51 view/FrontMenu.php:510 view/FrontMenu.php:523
2008
- #: view/FrontMenu.php:536
2009
- msgid "No"
2010
- msgstr "Nein"
2011
-
2012
- #: view/BlockPatterns.php:127
2013
  msgid "Pass Link Juice"
2014
  msgstr ""
2015
 
2016
- #: view/BlockPatterns.php:141
2017
  msgid "Do SEO"
2018
  msgstr ""
2019
 
2020
- #: view/BlockPatterns.php:185 view/BlockSettingsSeo.php:29
2021
- #: view/BlockSettingsSeo.php:1068
2022
  msgid "Save SEO"
2023
  msgstr ""
2024
 
@@ -2066,40 +2158,40 @@ msgstr ""
2066
  msgid "Go to Analytics"
2067
  msgstr ""
2068
 
2069
- #: view/BlockSerpKeywords.php:29 view/FrontMenu.php:367
2070
  msgid "Article"
2071
  msgstr ""
2072
 
2073
- #: view/BlockSerpKeywords.php:31
2074
  msgid "Article URL ..."
2075
  msgstr ""
2076
 
2077
- #: view/BlockSerpKeywords.php:54
2078
  msgid "Count"
2079
  msgstr ""
2080
 
2081
- #: view/BlockSerpKeywords.php:55
2082
  msgid "Check the rank for it"
2083
  msgstr ""
2084
 
2085
- #: view/BlockSerpKeywords.php:103
2086
  msgid "Save Keywords"
2087
  msgstr ""
2088
 
2089
- #: view/BlockSerpKeywords.php:118
2090
  msgid "Show ignored keywords"
2091
  msgstr ""
2092
 
2093
- #: view/BlockSerpKeywords.php:133
2094
  msgid "Reload Google Ranks from Squirrly Server"
2095
  msgstr ""
2096
 
2097
- #: view/BlockSerpKeywords.php:145
2098
  msgid "Remove Local Ranks"
2099
  msgstr ""
2100
 
2101
  # @ squirrly-seo
2102
- #: view/BlockSettings.php:24 view/BlockSettings.php:450
2103
  msgid "Save settings"
2104
  msgstr "Einstellungen speichern"
2105
 
@@ -2135,9 +2227,9 @@ msgstr ""
2135
  #: view/BlockSettings.php:69 view/BlockSettings.php:70
2136
  #: view/BlockSettings.php:83 view/BlockSettings.php:84
2137
  #: view/BlockSettingsSeo.php:66 view/BlockSettingsSeo.php:78
2138
- #: view/BlockSettingsSeo.php:287 view/BlockSettingsSeo.php:526
2139
- #: view/BlockSettingsSeo.php:839 view/BlockSettingsSeo.php:933
2140
- #: view/BlockSettingsSeo.php:945 view/BlockSettingsSeo.php:957
2141
  msgid "see how this improved since 2016"
2142
  msgstr ""
2143
 
@@ -2153,15 +2245,18 @@ msgstr ""
2153
  msgid "Load Squirrly Live Assistant for"
2154
  msgstr ""
2155
 
2156
- #: view/BlockSettings.php:97 view/BlockSettingsSeo.php:707
 
2157
  msgid "Posts"
2158
  msgstr ""
2159
 
2160
- #: view/BlockSettings.php:100 view/BlockSettingsSeo.php:736
 
2161
  msgid "Pages"
2162
  msgstr ""
2163
 
2164
- #: view/BlockSettings.php:104 view/BlockSettingsSeo.php:721
 
2165
  msgid "Products"
2166
  msgstr ""
2167
 
@@ -2178,7 +2273,7 @@ msgstr ""
2178
 
2179
  #: view/BlockSettings.php:162
2180
  msgid ""
2181
- "Send optimization data to Squirrly API when the post is saved (don't use "
2182
  "cron)"
2183
  msgstr ""
2184
 
@@ -2187,545 +2282,541 @@ msgid "Use <strong> the NEW version of the SEO Live Assistant</strong>."
2187
  msgstr ""
2188
 
2189
  #: view/BlockSettings.php:184
2190
- msgid "Load <strong>Squirrly SEO Snippet in Frontend</strong> too."
2191
- msgstr ""
2192
-
2193
- #: view/BlockSettings.php:196
2194
  msgid ""
2195
  "Download <strong>remote images</strong> in your <strong>Media Library</"
2196
  "strong> for the new posts."
2197
  msgstr ""
2198
 
2199
- #: view/BlockSettings.php:208
2200
  msgid ""
2201
  "Correct my <strong>feed links</strong> and <strong>images</strong> (convert "
2202
  "from relative to absolute)."
2203
  msgstr ""
2204
 
2205
- #: view/BlockSettings.php:218
2206
  msgid "Google Rank Options"
2207
  msgstr ""
2208
 
2209
- #: view/BlockSettings.php:219
2210
  #, php-format
2211
  msgid "%sCountry targeting%s"
2212
  msgstr ""
2213
 
2214
- #: view/BlockSettings.php:220
2215
  #, php-format
2216
  msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
2217
  msgstr ""
2218
 
2219
- #: view/BlockSettings.php:227
2220
  msgid ""
2221
  "Select the Google country for which Squirrly will check the Google rank."
2222
  msgstr ""
2223
 
2224
- #: view/BlockSettings.php:232
2225
  msgid "Default"
2226
  msgstr ""
2227
 
2228
- #: view/BlockSettings.php:233
2229
  msgid "American Samoa"
2230
  msgstr ""
2231
 
2232
- #: view/BlockSettings.php:234
2233
  msgid "Anguilla"
2234
  msgstr ""
2235
 
2236
- #: view/BlockSettings.php:235
2237
  msgid "Antigua and Barbuda"
2238
  msgstr ""
2239
 
2240
- #: view/BlockSettings.php:236
2241
  msgid "Argentina"
2242
  msgstr ""
2243
 
2244
- #: view/BlockSettings.php:237
2245
  msgid "Australia"
2246
  msgstr ""
2247
 
2248
- #: view/BlockSettings.php:238
2249
  msgid "Austria"
2250
  msgstr ""
2251
 
2252
- #: view/BlockSettings.php:239
2253
  msgid "Azerbaijan"
2254
  msgstr ""
2255
 
2256
- #: view/BlockSettings.php:240
2257
  msgid "Belgium"
2258
  msgstr ""
2259
 
2260
- #: view/BlockSettings.php:241
2261
  msgid "Brazil"
2262
  msgstr ""
2263
 
2264
- #: view/BlockSettings.php:242
2265
  msgid "British Virgin Islands"
2266
  msgstr ""
2267
 
2268
- #: view/BlockSettings.php:243
2269
  msgid "Burundi"
2270
  msgstr ""
2271
 
2272
- #: view/BlockSettings.php:244
2273
  msgid "Bulgaria"
2274
  msgstr ""
2275
 
2276
- #: view/BlockSettings.php:245
2277
  msgid "Canada"
2278
  msgstr ""
2279
 
2280
- #: view/BlockSettings.php:246
2281
  msgid "Chad"
2282
  msgstr ""
2283
 
2284
- #: view/BlockSettings.php:247
2285
  msgid "Chile"
2286
  msgstr ""
2287
 
2288
- #: view/BlockSettings.php:248
2289
  msgid "Colombia"
2290
  msgstr ""
2291
 
2292
- #: view/BlockSettings.php:249
2293
  msgid "Costa Rica"
2294
  msgstr ""
2295
 
2296
- #: view/BlockSettings.php:250
2297
  msgid "Côte d'Ivoire"
2298
  msgstr ""
2299
 
2300
- #: view/BlockSettings.php:251
2301
  msgid "Cuba"
2302
  msgstr ""
2303
 
2304
- #: view/BlockSettings.php:252
2305
  msgid "Czech Republic"
2306
  msgstr ""
2307
 
2308
- #: view/BlockSettings.php:253
2309
  msgid "Dem. Rep. of the Congo"
2310
  msgstr ""
2311
 
2312
- #: view/BlockSettings.php:254
2313
  msgid "Denmark"
2314
  msgstr ""
2315
 
2316
- #: view/BlockSettings.php:255
2317
  msgid "Djibouti"
2318
  msgstr ""
2319
 
2320
- #: view/BlockSettings.php:256
2321
  msgid "Dominican Republic"
2322
  msgstr ""
2323
 
2324
- #: view/BlockSettings.php:257
2325
  msgid "Ecuador"
2326
  msgstr ""
2327
 
2328
- #: view/BlockSettings.php:258
2329
  msgid "El Salvador"
2330
  msgstr ""
2331
 
2332
- #: view/BlockSettings.php:259
2333
  msgid "Estonia"
2334
  msgstr ""
2335
 
2336
- #: view/BlockSettings.php:260
2337
  msgid "Federated States of Micronesia"
2338
  msgstr ""
2339
 
2340
- #: view/BlockSettings.php:261
2341
  msgid "Fiji"
2342
  msgstr ""
2343
 
2344
- #: view/BlockSettings.php:262
2345
  msgid "Finland"
2346
  msgstr ""
2347
 
2348
- #: view/BlockSettings.php:263
2349
  msgid "France"
2350
  msgstr ""
2351
 
2352
- #: view/BlockSettings.php:264
2353
  msgid "The Gambia"
2354
  msgstr ""
2355
 
2356
- #: view/BlockSettings.php:265
2357
  msgid "Georgia"
2358
  msgstr ""
2359
 
2360
- #: view/BlockSettings.php:266
2361
  msgid "Germany"
2362
  msgstr ""
2363
 
2364
- #: view/BlockSettings.php:267
2365
  msgid "Gibraltar"
2366
  msgstr ""
2367
 
2368
- #: view/BlockSettings.php:268
2369
  msgid "Greece"
2370
  msgstr ""
2371
 
2372
- #: view/BlockSettings.php:269
2373
  msgid "Greenland"
2374
  msgstr ""
2375
 
2376
- #: view/BlockSettings.php:270
2377
  msgid "Guernsey"
2378
  msgstr ""
2379
 
2380
- #: view/BlockSettings.php:271
2381
  msgid "Honduras"
2382
  msgstr ""
2383
 
2384
- #: view/BlockSettings.php:272
2385
  msgid "Hong Kong"
2386
  msgstr ""
2387
 
2388
- #: view/BlockSettings.php:273
2389
  msgid "Hungary"
2390
  msgstr ""
2391
 
2392
- #: view/BlockSettings.php:274
2393
  msgid "India"
2394
  msgstr ""
2395
 
2396
- #: view/BlockSettings.php:275
2397
  msgid "Indonesia"
2398
  msgstr ""
2399
 
2400
- #: view/BlockSettings.php:276
2401
  msgid "Ireland"
2402
  msgstr ""
2403
 
2404
- #: view/BlockSettings.php:277
2405
  msgid "Isle of Man"
2406
  msgstr ""
2407
 
2408
- #: view/BlockSettings.php:278
2409
  msgid "Israel"
2410
  msgstr ""
2411
 
2412
- #: view/BlockSettings.php:279
2413
  msgid "Italy"
2414
  msgstr ""
2415
 
2416
- #: view/BlockSettings.php:280
2417
  msgid "Jamaica"
2418
  msgstr ""
2419
 
2420
- #: view/BlockSettings.php:281
2421
  msgid "Japan"
2422
  msgstr ""
2423
 
2424
- #: view/BlockSettings.php:282
2425
  msgid "Jersey"
2426
  msgstr ""
2427
 
2428
- #: view/BlockSettings.php:283
2429
  msgid "Kazakhstan"
2430
  msgstr ""
2431
 
2432
- #: view/BlockSettings.php:284
2433
  msgid "Korea"
2434
  msgstr ""
2435
 
2436
- #: view/BlockSettings.php:285
2437
  msgid "Latvia"
2438
  msgstr ""
2439
 
2440
- #: view/BlockSettings.php:286
2441
  msgid "Lesotho"
2442
  msgstr ""
2443
 
2444
- #: view/BlockSettings.php:287
2445
  msgid "Liechtenstein"
2446
  msgstr ""
2447
 
2448
- #: view/BlockSettings.php:288
2449
  msgid "Lithuania"
2450
  msgstr ""
2451
 
2452
- #: view/BlockSettings.php:289
2453
  msgid "Luxembourg"
2454
  msgstr ""
2455
 
2456
- #: view/BlockSettings.php:290
2457
  msgid "Malawi"
2458
  msgstr ""
2459
 
2460
- #: view/BlockSettings.php:291
2461
  msgid "Malaysia"
2462
  msgstr ""
2463
 
2464
- #: view/BlockSettings.php:292
2465
  msgid "Malta"
2466
  msgstr ""
2467
 
2468
- #: view/BlockSettings.php:293
2469
  msgid "Mauritius"
2470
  msgstr ""
2471
 
2472
- #: view/BlockSettings.php:294
2473
  msgid "México"
2474
  msgstr ""
2475
 
2476
- #: view/BlockSettings.php:295
2477
  msgid "Montserrat"
2478
  msgstr ""
2479
 
2480
- #: view/BlockSettings.php:296
2481
  msgid "Namibia"
2482
  msgstr ""
2483
 
2484
- #: view/BlockSettings.php:297
2485
  msgid "Nepal"
2486
  msgstr ""
2487
 
2488
- #: view/BlockSettings.php:298
2489
  msgid "Netherlands"
2490
  msgstr ""
2491
 
2492
- #: view/BlockSettings.php:299
2493
  msgid "New Zealand"
2494
  msgstr ""
2495
 
2496
- #: view/BlockSettings.php:300
2497
  msgid "Nicaragua"
2498
  msgstr ""
2499
 
2500
- #: view/BlockSettings.php:301
2501
  msgid "Norfolk Island"
2502
  msgstr ""
2503
 
2504
- #: view/BlockSettings.php:302
2505
  msgid "Norway"
2506
  msgstr ""
2507
 
2508
- #: view/BlockSettings.php:303
2509
  msgid "Pakistan"
2510
  msgstr ""
2511
 
2512
- #: view/BlockSettings.php:304
2513
  msgid "Panamá"
2514
  msgstr ""
2515
 
2516
- #: view/BlockSettings.php:305
2517
  msgid "Paraguay"
2518
  msgstr ""
2519
 
2520
- #: view/BlockSettings.php:306
2521
  msgid "Perú"
2522
  msgstr ""
2523
 
2524
- #: view/BlockSettings.php:307
2525
  msgid "Philippines"
2526
  msgstr ""
2527
 
2528
- #: view/BlockSettings.php:308
2529
  msgid "Pitcairn Islands"
2530
  msgstr ""
2531
 
2532
- #: view/BlockSettings.php:309
2533
  msgid "Poland"
2534
  msgstr ""
2535
 
2536
- #: view/BlockSettings.php:310
2537
  msgid "Portugal"
2538
  msgstr ""
2539
 
2540
- #: view/BlockSettings.php:311
2541
  msgid "Puerto Rico"
2542
  msgstr ""
2543
 
2544
- #: view/BlockSettings.php:312
2545
  msgid "Rep. of the Congo"
2546
  msgstr ""
2547
 
2548
- #: view/BlockSettings.php:313
2549
  msgid "Romania"
2550
  msgstr ""
2551
 
2552
- #: view/BlockSettings.php:314
2553
  msgid "Russia"
2554
  msgstr ""
2555
 
2556
- #: view/BlockSettings.php:315
2557
  msgid "Rwanda"
2558
  msgstr ""
2559
 
2560
- #: view/BlockSettings.php:316
2561
  msgid "Saint Helena"
2562
  msgstr ""
2563
 
2564
- #: view/BlockSettings.php:317
2565
  msgid "San Marino"
2566
  msgstr ""
2567
 
2568
- #: view/BlockSettings.php:318
2569
  msgid "Saudi Arabia"
2570
  msgstr ""
2571
 
2572
- #: view/BlockSettings.php:319
2573
  msgid "Singapore"
2574
  msgstr ""
2575
 
2576
- #: view/BlockSettings.php:320
2577
  msgid "Slovakia"
2578
  msgstr ""
2579
 
2580
- #: view/BlockSettings.php:321
2581
  msgid "South Africa"
2582
  msgstr ""
2583
 
2584
- #: view/BlockSettings.php:322
2585
  msgid "Spain"
2586
  msgstr ""
2587
 
2588
- #: view/BlockSettings.php:323
2589
  msgid "Sri Lanka"
2590
  msgstr ""
2591
 
2592
- #: view/BlockSettings.php:324
2593
  msgid "Sweden"
2594
  msgstr ""
2595
 
2596
- #: view/BlockSettings.php:325
2597
  msgid "Switzerland"
2598
  msgstr ""
2599
 
2600
- #: view/BlockSettings.php:326
2601
  msgid "Taiwan"
2602
  msgstr ""
2603
 
2604
- #: view/BlockSettings.php:327
2605
  msgid "Thailand"
2606
  msgstr ""
2607
 
2608
- #: view/BlockSettings.php:328
2609
  msgid "Trinidad and Tobago"
2610
  msgstr ""
2611
 
2612
- #: view/BlockSettings.php:329
2613
  msgid "Turkey"
2614
  msgstr ""
2615
 
2616
- #: view/BlockSettings.php:330
2617
  msgid "Ukraine"
2618
  msgstr ""
2619
 
2620
- #: view/BlockSettings.php:331
2621
  msgid "United Arab Emirates"
2622
  msgstr ""
2623
 
2624
- #: view/BlockSettings.php:332
2625
  msgid "United Kingdom"
2626
  msgstr ""
2627
 
2628
- #: view/BlockSettings.php:333
2629
  msgid "United States"
2630
  msgstr ""
2631
 
2632
- #: view/BlockSettings.php:334
2633
  msgid "Uruguay"
2634
  msgstr ""
2635
 
2636
- #: view/BlockSettings.php:335
2637
  msgid "Uzbekistan"
2638
  msgstr ""
2639
 
2640
- #: view/BlockSettings.php:336
2641
  msgid "Vanuatu"
2642
  msgstr ""
2643
 
2644
- #: view/BlockSettings.php:337
2645
  msgid "Venezuela"
2646
  msgstr ""
2647
 
2648
- #: view/BlockSettings.php:338
2649
  msgid "Vietnam"
2650
  msgstr ""
2651
 
2652
- #: view/BlockSettings.php:344
2653
  #, php-format
2654
  msgid ""
2655
  "Select how many pages to be checked in the Performance Analytics section "
2656
  "every hour. %s(not recommended for shared hosting plan)%s"
2657
  msgstr ""
2658
 
2659
- #: view/BlockSettings.php:351
2660
  msgid "page"
2661
  msgstr ""
2662
 
2663
- #: view/BlockSettings.php:353
2664
  msgid "pages"
2665
  msgstr ""
2666
 
2667
- #: view/BlockSettings.php:359
2668
  msgid "h"
2669
  msgstr ""
2670
 
2671
- #: view/BlockSettings.php:373
2672
  msgid ""
2673
  "Restricts search results to results originating in the above particular "
2674
  "country."
2675
  msgstr ""
2676
 
2677
- #: view/BlockSettings.php:379
2678
  #, php-format
2679
  msgid ""
2680
  "You have the %sBusiness Plan%s active. Rankings are now checked by Squirrly "
2681
- "API and will be shown in %sAdvanced Analytics%s"
2682
  msgstr ""
2683
 
2684
- #: view/BlockSettings.php:383
2685
  msgid "Select how many rank queries you want Squirrly to do every day. "
2686
  msgstr ""
2687
 
2688
- #: view/BlockSettings.php:388 view/BlockSettings.php:390
2689
- #: view/BlockSettings.php:403
2690
  msgid "queries"
2691
  msgstr ""
2692
 
2693
- #: view/BlockSettings.php:388 view/BlockSettings.php:390
2694
- #: view/BlockSettings.php:403
2695
  msgid "day"
2696
  msgstr ""
2697
 
2698
- #: view/BlockSettings.php:396
2699
  msgid ""
2700
  "Note: if you're on the free trial, you get 35 queries for the 7 days of "
2701
  "trial."
2702
  msgstr ""
2703
 
2704
- #: view/BlockSettings.php:415
2705
  msgid "Robots.txt Editor"
2706
  msgstr ""
2707
 
2708
- #: view/BlockSettings.php:416
2709
  #, php-format
2710
  msgid "%sLearn about robots.txt files%s"
2711
  msgstr ""
2712
 
2713
- #: view/BlockSettings.php:417
2714
  #, php-format
2715
  msgid "%sHow to use Robots.txt%s"
2716
  msgstr ""
2717
 
2718
- #: view/BlockSettings.php:423
2719
  msgid "Edit the Robots.txt data"
2720
  msgstr ""
2721
 
2722
- #: view/BlockSettings.php:436
2723
  msgid ""
2724
  "Does not physically create the robots.txt file. The best option for "
2725
  "Multisites."
2726
  msgstr ""
2727
 
2728
- #: view/BlockSettings.php:441
2729
  msgid "Save Robots"
2730
  msgstr ""
2731
 
@@ -2834,319 +2925,332 @@ msgstr ""
2834
  msgid "Optimize %sKeywords%s "
2835
  msgstr ""
2836
 
2837
- #: view/BlockSettingsSeo.php:259
2838
- msgid "SEO for all post/pages"
2839
- msgstr ""
2840
-
2841
- #: view/BlockSettingsSeo.php:260
2842
- #, php-format
2843
- msgid ""
2844
- "To customize the Title and Description for all the Posts and Pages in your "
2845
- "site use the %sSquirrly Snippet Tool%s"
2846
- msgstr ""
2847
-
2848
- #: view/BlockSettingsSeo.php:262
2849
- msgid "Add the Post tags in <strong>Keyword META</strong>."
2850
- msgstr ""
2851
-
2852
- #: view/BlockSettingsSeo.php:284
2853
  msgid "Squirrly Snippet G17-True Render"
2854
  msgstr ""
2855
 
2856
- #: view/BlockSettingsSeo.php:308
2857
  msgid "First Page Optimization:"
2858
  msgstr ""
2859
 
2860
  # @ squirrly-seo
2861
- #: view/BlockSettingsSeo.php:314
2862
  msgid "Title:"
2863
  msgstr "Titel:"
2864
 
2865
- #: view/BlockSettingsSeo.php:319
2866
  msgid "Tips: Length 10-75 chars"
2867
  msgstr ""
2868
 
2869
  # @ squirrly-seo
2870
- #: view/BlockSettingsSeo.php:323
2871
  msgid "Description:"
2872
  msgstr "Beschreibung:"
2873
 
2874
- #: view/BlockSettingsSeo.php:327
2875
  msgid "Tips: Length 70-320 chars"
2876
  msgstr ""
2877
 
2878
  # @ squirrly-seo
2879
- #: view/BlockSettingsSeo.php:330
2880
  msgid "Keywords:"
2881
  msgstr "Schlüsselwörter:"
2882
 
2883
- #: view/BlockSettingsSeo.php:331
2884
  msgid "Tips: use 2-4 keywords"
2885
  msgstr ""
2886
 
2887
- #: view/BlockSettingsSeo.php:334
2888
  msgid "OG Image:"
2889
  msgstr ""
2890
 
2891
- #: view/BlockSettingsSeo.php:335
2892
  msgid "Select Open Graph Image"
2893
  msgstr ""
2894
 
2895
- #: view/BlockSettingsSeo.php:340
2896
  msgid "First Page Preview (Title, Description, Keywords)"
2897
  msgstr ""
2898
 
2899
- #: view/BlockSettingsSeo.php:342
2900
  msgid "Squirrly Snippet"
2901
  msgstr ""
2902
 
2903
- #: view/BlockSettingsSeo.php:354
2904
  msgid ""
2905
  "If you don't see any changes in your Google snippet, check if other SEO "
2906
  "themes or plugins affect Squirrly."
2907
  msgstr ""
2908
 
2909
- #: view/BlockSettingsSeo.php:358
2910
  #, php-format
2911
  msgid ""
2912
  "Use the %s<strong>Squirrly Snippet Tool</strong>%s while editing a Post/Page "
2913
  "to customize the Title and the Description."
2914
  msgstr ""
2915
 
2916
- #: view/BlockSettingsSeo.php:367
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2917
  msgid "Social Media Options"
2918
  msgstr ""
2919
 
2920
- #: view/BlockSettingsSeo.php:369
2921
  msgid "Select the language you're using on Social Media"
2922
  msgstr ""
2923
 
2924
- #: view/BlockSettingsSeo.php:515
2925
  #, php-format
2926
  msgid "%sHow to pop out in Social Media with your links%s"
2927
  msgstr ""
2928
 
2929
- #: view/BlockSettingsSeo.php:516
2930
  #, php-format
2931
  msgid "%sGet busy with Facebook’s new Search Engine functions%s"
2932
  msgstr ""
2933
 
2934
- #: view/BlockSettingsSeo.php:517
2935
  #, php-format
2936
  msgid ""
2937
  "%sHow I Added Twitter Cards in My WordPress for Better Inbound Marketing%s"
2938
  msgstr ""
2939
 
2940
- #: view/BlockSettingsSeo.php:523
2941
  msgid "Open Graph G17 - 2017 Settings"
2942
  msgstr ""
2943
 
2944
- #: view/BlockSettingsSeo.php:535
2945
  msgid "Squirrly Adds the Best Codes for Open Graph and Twitter Cards"
2946
  msgstr ""
2947
 
2948
- #: view/BlockSettingsSeo.php:551
2949
  #, php-format
2950
  msgid ""
2951
  "Add the Social Open Graph protocol so that your Facebook shares look good. "
2952
  "%sCheck here%s. "
2953
  msgstr ""
2954
 
2955
- #: view/BlockSettingsSeo.php:555
2956
  msgid "Facebook App ID"
2957
  msgstr ""
2958
 
2959
- #: view/BlockSettingsSeo.php:556
2960
  #, php-format
2961
  msgid "Add the %sFacebook App%s ID "
2962
  msgstr ""
2963
 
2964
- #: view/BlockSettingsSeo.php:573
2965
  msgid "You need to add your <strong>Twitter account</strong> below"
2966
  msgstr ""
2967
 
2968
- #: view/BlockSettingsSeo.php:583
2969
  msgid "Add the <strong>Twitter card</strong> in your tweets. "
2970
  msgstr ""
2971
 
2972
- #: view/BlockSettingsSeo.php:591
2973
  #, php-format
2974
  msgid ""
2975
  "Use <strong>Twitter %ssummary_large_image%s</strong> for your Twitter Card. "
2976
  msgstr ""
2977
 
2978
- #: view/BlockSettingsSeo.php:603
2979
  msgid "Social Media Accounts"
2980
  msgstr ""
2981
 
2982
- #: view/BlockSettingsSeo.php:604
2983
  #, php-format
2984
  msgid "%sLink your Google+ profile to the content you create%s"
2985
  msgstr ""
2986
 
2987
- #: view/BlockSettingsSeo.php:605
2988
  #, php-format
2989
  msgid ""
2990
  "%sTwitter account is mandatory for <strong>Twitter Card Validation</strong>%s"
2991
  msgstr ""
2992
 
2993
- #: view/BlockSettingsSeo.php:606
2994
  #, php-format
2995
  msgid ""
2996
  "%sAdd all your social accounts for <strong>JSON-LD Semantic SEO</strong>%s"
2997
  msgstr ""
2998
 
2999
- #: view/BlockSettingsSeo.php:607 view/BlockSettingsSeo.php:830
3000
  #, php-format
3001
  msgid "%sSpecify your social profiles to Google%s"
3002
  msgstr ""
3003
 
3004
- #: view/BlockSettingsSeo.php:615
3005
  msgid "Your Twitter Account:"
3006
  msgstr ""
3007
 
3008
- #: view/BlockSettingsSeo.php:622
3009
  msgid "Google Plus Profile:"
3010
  msgstr ""
3011
 
3012
- #: view/BlockSettingsSeo.php:629
3013
  msgid "Facebook Profile:"
3014
  msgstr ""
3015
 
3016
- #: view/BlockSettingsSeo.php:636
3017
  msgid "Linkedin Profile:"
3018
  msgstr ""
3019
 
3020
- #: view/BlockSettingsSeo.php:643
3021
  msgid "Pinterest Profile:"
3022
  msgstr ""
3023
 
3024
- #: view/BlockSettingsSeo.php:650
3025
  msgid "Instagram Profile:"
3026
  msgstr ""
3027
 
3028
- #: view/BlockSettingsSeo.php:657
3029
  msgid "Youtube Profile:"
3030
  msgstr ""
3031
 
3032
- #: view/BlockSettingsSeo.php:667
3033
  msgid "XML Sitemap for Google"
3034
  msgstr ""
3035
 
3036
- #: view/BlockSettingsSeo.php:668
3037
  msgid ""
3038
  "Squirrly Sitemap is the fastest way to tell Google about the pages on your "
3039
  "site. <strong>Supports Multisites, Google News, Images, Videos, Custom Post "
3040
  "Types, Custom Taxonomies and Ecommerce products</strong>"
3041
  msgstr ""
3042
 
3043
- #: view/BlockSettingsSeo.php:669
3044
  #, php-format
3045
  msgid "%sHow to submit your sitemap.xml in Google Webmaster Tool%s"
3046
  msgstr ""
3047
 
3048
- #: view/BlockSettingsSeo.php:670
3049
  #, php-format
3050
  msgid ""
3051
  "%s10 Vital To Dos to Feed Your SEO Content Machine After You Post Articles%s"
3052
  msgstr ""
3053
 
3054
- #: view/BlockSettingsSeo.php:671
3055
  #, php-format
3056
  msgid ""
3057
  "For Google News Sitemap, ensure that your site is included in %sGoogle News%s"
3058
  msgstr ""
3059
 
3060
- #: view/BlockSettingsSeo.php:680
3061
  msgid "XML Sitemap Options"
3062
  msgstr ""
3063
 
3064
- #: view/BlockSettingsSeo.php:689
3065
  msgid "Ping your sitemap to Google and Bing when a new post is published"
3066
  msgstr ""
3067
 
3068
- #: view/BlockSettingsSeo.php:695
3069
  msgid "Build Sitemaps for"
3070
  msgstr ""
3071
 
3072
- #: view/BlockSettingsSeo.php:703
3073
  msgid "Google News"
3074
  msgstr ""
3075
 
3076
- #: view/BlockSettingsSeo.php:715
3077
  msgid "Categories"
3078
  msgstr ""
3079
 
3080
- #: view/BlockSettingsSeo.php:729
3081
  msgid "Tags"
3082
  msgstr ""
3083
 
3084
- #: view/BlockSettingsSeo.php:741
3085
  msgid "Archive"
3086
  msgstr ""
3087
 
3088
- #: view/BlockSettingsSeo.php:744
3089
  msgid "Custom Taxonomies"
3090
  msgstr ""
3091
 
3092
- #: view/BlockSettingsSeo.php:747
3093
  msgid "Custom Posts"
3094
  msgstr ""
3095
 
3096
- #: view/BlockSettingsSeo.php:750
3097
  #, php-format
3098
  msgid ""
3099
  "Select only the Post Types that have links in them. Your sitemap will be %s"
3100
  msgstr ""
3101
 
3102
- #: view/BlockSettingsSeo.php:754
3103
  msgid "Include in Sitemaps"
3104
  msgstr ""
3105
 
3106
- #: view/BlockSettingsSeo.php:757
3107
  msgid "<strong>Images</strong> from posts/pages"
3108
  msgstr ""
3109
 
3110
- #: view/BlockSettingsSeo.php:760
3111
  msgid "<strong>Videos</strong> (embeded and local media)"
3112
  msgstr ""
3113
 
3114
- #: view/BlockSettingsSeo.php:765
3115
  msgid "How often do you update your site?"
3116
  msgstr ""
3117
 
3118
- #: view/BlockSettingsSeo.php:767
3119
  msgid "every day"
3120
  msgstr ""
3121
 
3122
- #: view/BlockSettingsSeo.php:768
3123
  msgid "1-3 times per week"
3124
  msgstr ""
3125
 
3126
- #: view/BlockSettingsSeo.php:769
3127
  msgid "1-3 times per month"
3128
  msgstr ""
3129
 
3130
- #: view/BlockSettingsSeo.php:770
3131
  msgid "1-3 times per year"
3132
  msgstr ""
3133
 
3134
- #: view/BlockSettingsSeo.php:774
3135
  msgid "Feed Pagination: How many Posts per page to show in sitemap?"
3136
  msgstr ""
3137
 
3138
  # @ squirrly-seo
3139
- #: view/BlockSettingsSeo.php:789
3140
  msgid "Change the Website Icon"
3141
  msgstr "Ändern Sie das Website-Symbol"
3142
 
3143
- #: view/BlockSettingsSeo.php:790
3144
  msgid ""
3145
  "Now, even tablet & smartphone browsers make use of your icons. This makes "
3146
  "having a good favicon even more important."
3147
  msgstr ""
3148
 
3149
- #: view/BlockSettingsSeo.php:791
3150
  #, php-format
3151
  msgid ""
3152
  "You can use %shttp://convertico.com/%s to convert your photo to icon and "
@@ -3154,17 +3258,17 @@ msgid ""
3154
  msgstr ""
3155
 
3156
  # @ squirrly-seo
3157
- #: view/BlockSettingsSeo.php:797
3158
  msgid "Upload file:"
3159
  msgstr "Datei hochladen:"
3160
 
3161
  # @ squirrly-seo
3162
- #: view/BlockSettingsSeo.php:810 view/FrontMenu.php:305 view/FrontMenu.php:446
3163
  msgid "Upload"
3164
  msgstr "Hochladen"
3165
 
3166
  # @ squirrly-seo
3167
- #: view/BlockSettingsSeo.php:814
3168
  msgid ""
3169
  "If you don't see the new icon in your browser, empty the browser cache and "
3170
  "refresh the page."
@@ -3173,242 +3277,242 @@ msgstr ""
3173
  "Cache und aktualisieren Sie die Seite."
3174
 
3175
  # @ squirrly-seo
3176
- #: view/BlockSettingsSeo.php:816
3177
  msgid "File types: JPG, JPEG, GIF and PNG."
3178
  msgstr "Dateitypen: JPG, JPEG, GIF und PNG."
3179
 
3180
- #: view/BlockSettingsSeo.php:818
3181
  msgid ""
3182
  "Does not physically create the favicon.ico file. The best option for "
3183
  "Multisites."
3184
  msgstr ""
3185
 
3186
- #: view/BlockSettingsSeo.php:826
3187
  msgid "JSON-LD for Semantic SEO"
3188
  msgstr ""
3189
 
3190
- #: view/BlockSettingsSeo.php:827
3191
  msgid ""
3192
  "Squirrly will automatically add the JSON-LD Structured Data in your site."
3193
  msgstr ""
3194
 
3195
- #: view/BlockSettingsSeo.php:828
3196
  #, php-format
3197
  msgid "%sJSON-LD's Big Day at Google%s"
3198
  msgstr ""
3199
 
3200
- #: view/BlockSettingsSeo.php:829
3201
  #, php-format
3202
  msgid "%sGoogle Testing Tool%s"
3203
  msgstr ""
3204
 
3205
- #: view/BlockSettingsSeo.php:836
3206
  msgid "JSON-LD G17 - 2x More Options"
3207
  msgstr ""
3208
 
3209
- #: view/BlockSettingsSeo.php:853
3210
  msgid "Your site type:"
3211
  msgstr ""
3212
 
3213
- #: view/BlockSettingsSeo.php:855
3214
  msgid "Organization"
3215
  msgstr ""
3216
 
3217
- #: view/BlockSettingsSeo.php:856
3218
  msgid "Personal"
3219
  msgstr ""
3220
 
3221
- #: view/BlockSettingsSeo.php:862
3222
  msgid "Your Organization Name:"
3223
  msgstr ""
3224
 
3225
- #: view/BlockSettingsSeo.php:863
3226
  msgid "Your Name:"
3227
  msgstr ""
3228
 
3229
- #: view/BlockSettingsSeo.php:867
3230
  msgid "Job Title:"
3231
  msgstr ""
3232
 
3233
- #: view/BlockSettingsSeo.php:871
3234
  msgid "Logo Url:"
3235
  msgstr ""
3236
 
3237
- #: view/BlockSettingsSeo.php:872
3238
  msgid "Image Url:"
3239
  msgstr ""
3240
 
3241
- #: view/BlockSettingsSeo.php:873
3242
  msgid "Select Image"
3243
  msgstr ""
3244
 
3245
- #: view/BlockSettingsSeo.php:877
3246
  msgid "Contact Phone:"
3247
  msgstr ""
3248
 
3249
- #: view/BlockSettingsSeo.php:881
3250
  msgid "Contact Type:"
3251
  msgstr ""
3252
 
3253
- #: view/BlockSettingsSeo.php:883
3254
  msgid "Customer Service"
3255
  msgstr ""
3256
 
3257
- #: view/BlockSettingsSeo.php:884
3258
  msgid "Technical Support"
3259
  msgstr ""
3260
 
3261
- #: view/BlockSettingsSeo.php:885
3262
  msgid "Billing Support"
3263
  msgstr ""
3264
 
3265
- #: view/BlockSettingsSeo.php:886
3266
  msgid "Bill Payment"
3267
  msgstr ""
3268
 
3269
- #: view/BlockSettingsSeo.php:887
3270
  msgid "Sales"
3271
  msgstr ""
3272
 
3273
- #: view/BlockSettingsSeo.php:888
3274
  msgid "Reservations"
3275
  msgstr ""
3276
 
3277
- #: view/BlockSettingsSeo.php:889
3278
  msgid "Credit Card Support"
3279
  msgstr ""
3280
 
3281
- #: view/BlockSettingsSeo.php:890
3282
  msgid "Emergency"
3283
  msgstr ""
3284
 
3285
- #: view/BlockSettingsSeo.php:891
3286
  msgid "Baggage Tracking"
3287
  msgstr ""
3288
 
3289
- #: view/BlockSettingsSeo.php:892
3290
  msgid "Roadside Assistance"
3291
  msgstr ""
3292
 
3293
- #: view/BlockSettingsSeo.php:893
3294
  msgid "Package Tracking"
3295
  msgstr ""
3296
 
3297
- #: view/BlockSettingsSeo.php:898
3298
  msgid "Short Description:"
3299
  msgstr ""
3300
 
3301
- #: view/BlockSettingsSeo.php:906
3302
  msgid "Add your social accounts for Json-LD"
3303
  msgstr ""
3304
 
3305
- #: view/BlockSettingsSeo.php:911
3306
  msgid "How the search results will look like once Google grabs your data."
3307
  msgstr ""
3308
 
3309
- #: view/BlockSettingsSeo.php:920 view/BlockToolbar.php:8
3310
  msgid "Tracking Tools"
3311
  msgstr ""
3312
 
3313
- #: view/BlockSettingsSeo.php:921
3314
  #, php-format
3315
  msgid "%sHow to Get the Most Out of Google Analytics%s"
3316
  msgstr ""
3317
 
3318
- #: view/BlockSettingsSeo.php:922
3319
  #, php-format
3320
  msgid "%sWhat is Facebook Pixel?%s"
3321
  msgstr ""
3322
 
3323
- #: view/BlockSettingsSeo.php:923
3324
  #, php-format
3325
  msgid "%sA Beginner’s Guide to Facebook Insights%s"
3326
  msgstr ""
3327
 
3328
- #: view/BlockSettingsSeo.php:930
3329
  msgid "Google Tracking G17"
3330
  msgstr ""
3331
 
3332
- #: view/BlockSettingsSeo.php:942
3333
  msgid "Facebook Tracking G17"
3334
  msgstr ""
3335
 
3336
- #: view/BlockSettingsSeo.php:954
3337
  msgid "Rich Pins G17"
3338
  msgstr ""
3339
 
3340
- #: view/BlockSettingsSeo.php:971 view/BlockSettingsSeo.php:981
3341
- #: view/BlockSettingsSeo.php:994
3342
  #, php-format
3343
  msgid "Facebook Admin ID (for %sInsights%s ):"
3344
  msgstr ""
3345
 
3346
- #: view/BlockSettingsSeo.php:974 view/BlockSettingsSeo.php:984
3347
- #: view/BlockSettingsSeo.php:997
3348
  msgid "Facebook ID or https://www.facebook.com/YourProfileName"
3349
  msgstr ""
3350
 
3351
- #: view/BlockSettingsSeo.php:989
3352
  msgid "Add more Facebook Admin IDs"
3353
  msgstr ""
3354
 
3355
- #: view/BlockSettingsSeo.php:1003
3356
  #, php-format
3357
  msgid "Google %sAnalytics ID%s:"
3358
  msgstr ""
3359
 
3360
- #: view/BlockSettingsSeo.php:1008
3361
  #, php-format
3362
  msgid "Facebook %sPixel ID%s:"
3363
  msgstr ""
3364
 
3365
- #: view/BlockSettingsSeo.php:1021
3366
  #, php-format
3367
  msgid ""
3368
  "Load <strong>%sGoogle Analytics AMP%s</strong> and <strong>%sFacebook Pixel "
3369
  "AMP%s</strong> tracking%s(Warning! The tracking works only for AMP Themes.%s)"
3370
  msgstr ""
3371
 
3372
- #: view/BlockSettingsSeo.php:1028
3373
  msgid "Measure Your Success"
3374
  msgstr ""
3375
 
3376
- #: view/BlockSettingsSeo.php:1029
3377
  #, php-format
3378
  msgid "%sHow to set the Google Webmaster Tool%s"
3379
  msgstr ""
3380
 
3381
- #: view/BlockSettingsSeo.php:1030
3382
  #, php-format
3383
  msgid "%sBest practices to help Google find, crawl, and index your site%s"
3384
  msgstr ""
3385
 
3386
- #: view/BlockSettingsSeo.php:1031
3387
  #, php-format
3388
  msgid "%sBing Webmaster Tools Help & How-To Center%s"
3389
  msgstr ""
3390
 
3391
- #: view/BlockSettingsSeo.php:1032
3392
  #, php-format
3393
  msgid "%sRich Pins Validator%s"
3394
  msgstr ""
3395
 
3396
- #: view/BlockSettingsSeo.php:1038
3397
  #, php-format
3398
  msgid "Google META verification code for %sWebmaster Tool%s:"
3399
  msgstr ""
3400
 
3401
- #: view/BlockSettingsSeo.php:1044
3402
  #, php-format
3403
  msgid "Bing META code (for %sWebmaster Tool%s ):"
3404
  msgstr ""
3405
 
3406
- #: view/BlockSettingsSeo.php:1051
3407
  #, php-format
3408
  msgid "Alexa META code (for %sAlexa Tool%s ):"
3409
  msgstr ""
3410
 
3411
- #: view/BlockSettingsSeo.php:1057
3412
  #, php-format
3413
  msgid "Pinterest Website Validator Code: (validate %sRich Pins%s )"
3414
  msgstr ""
@@ -3653,18 +3757,14 @@ msgstr ""
3653
  msgid "Optimize for Keyword"
3654
  msgstr "Schlüsselwort optimieren"
3655
 
3656
- #: view/Blocksearch.php:7
3657
- msgid "Squirrly Briefcase (Beta)"
3658
  msgstr ""
3659
 
3660
  #: view/Blocksearch.php:9
3661
  msgid "What is Briefcase?"
3662
  msgstr ""
3663
 
3664
- #: view/Blocksearch.php:15
3665
- msgid "Squirrly Briefcase"
3666
- msgstr ""
3667
-
3668
  #: view/Blocksearch.php:16
3669
  msgid "Refresh the keywords"
3670
  msgstr ""
@@ -3731,244 +3831,251 @@ msgstr "Nur urheberrechtfreie Bilder zeigen"
3731
  msgid "Split Window"
3732
  msgstr ""
3733
 
3734
- #: view/FrontMenu.php:39
3735
  msgid "Saved! This is how the preview looks like"
3736
  msgstr ""
3737
 
3738
- #: view/FrontMenu.php:45
3739
  msgid "Activate Squirrly SEO for this page"
3740
  msgstr ""
3741
 
3742
- #: view/FrontMenu.php:61
 
 
 
 
 
 
 
3743
  msgid "META"
3744
  msgstr ""
3745
 
3746
- #: view/FrontMenu.php:64
3747
  msgid "FACEBOOK"
3748
  msgstr ""
3749
 
3750
- #: view/FrontMenu.php:67
3751
  msgid "TWITTER"
3752
  msgstr ""
3753
 
3754
- #: view/FrontMenu.php:70
3755
  msgid "ADVANCED"
3756
  msgstr ""
3757
 
3758
- #: view/FrontMenu.php:83
3759
  msgid "How this page will appear on Search Engines"
3760
  msgstr ""
3761
 
3762
- #: view/FrontMenu.php:88
3763
  msgid "Edit Snippet"
3764
  msgstr ""
3765
 
3766
- #: view/FrontMenu.php:103 view/FrontMenu.php:294 view/FrontMenu.php:434
3767
  msgid "Cancel"
3768
  msgstr ""
3769
 
3770
- #: view/FrontMenu.php:104 view/FrontMenu.php:295 view/FrontMenu.php:435
3771
- #: view/FrontMenu.php:496
3772
  msgid "Save"
3773
  msgstr ""
3774
 
3775
- #: view/FrontMenu.php:111
3776
  msgid "SEO Title"
3777
  msgstr ""
3778
 
3779
- #: view/FrontMenu.php:114 view/FrontMenu.php:164
3780
  msgid "Pattern: "
3781
  msgstr ""
3782
 
3783
- #: view/FrontMenu.php:119
3784
  msgid "Current Title"
3785
  msgstr ""
3786
 
3787
- #: view/FrontMenu.php:124
3788
  msgid "Default Title"
3789
  msgstr ""
3790
 
3791
- #: view/FrontMenu.php:144 view/FrontMenu.php:191
3792
  msgid "Pattern"
3793
  msgstr ""
3794
 
3795
- #: view/FrontMenu.php:161
3796
  msgid "META Description"
3797
  msgstr ""
3798
 
3799
- #: view/FrontMenu.php:168
3800
  msgid "Current Description"
3801
  msgstr ""
3802
 
3803
- #: view/FrontMenu.php:173
3804
  msgid "Default Description"
3805
  msgstr ""
3806
 
3807
- #: view/FrontMenu.php:207
3808
  msgid "Meta Keywords"
3809
  msgstr ""
3810
 
3811
  # @ squirrly-seo
3812
- #: view/FrontMenu.php:211
3813
  msgid "+ Add keyword"
3814
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
3815
 
3816
- #: view/FrontMenu.php:219
3817
  msgid "Canonical link"
3818
  msgstr ""
3819
 
3820
- #: view/FrontMenu.php:222
3821
  msgid "Found: "
3822
  msgstr ""
3823
 
3824
- #: view/FrontMenu.php:228
3825
  msgid "Current"
3826
  msgstr ""
3827
 
3828
- #: view/FrontMenu.php:234
3829
  msgid "Default Link"
3830
  msgstr ""
3831
 
3832
- #: view/FrontMenu.php:245
3833
  msgid ""
3834
  "To edit the snippet, you have to activate Squirrly SEO for this page first"
3835
  msgstr ""
3836
 
3837
- #: view/FrontMenu.php:246 view/FrontMenu.php:389 view/FrontMenu.php:489
3838
- #: view/FrontMenu.php:545
3839
  msgid "or Click here"
3840
  msgstr ""
3841
 
3842
- #: view/FrontMenu.php:254
3843
  msgid "How this page appears on Facebook"
3844
  msgstr ""
3845
 
3846
- #: view/FrontMenu.php:259
3847
  msgid "Edit Open Graph"
3848
  msgstr ""
3849
 
3850
- #: view/FrontMenu.php:267 view/FrontMenu.php:408
3851
  msgid "The image size must be at least 500 pixels wide"
3852
  msgstr ""
3853
 
3854
- #: view/FrontMenu.php:281 view/FrontMenu.php:422
3855
  msgid ""
3856
  "This is the Featured Image. You can changin it if you edit the snippet and "
3857
  "upload anothe image."
3858
  msgstr ""
3859
 
3860
- #: view/FrontMenu.php:301
3861
  msgid "Media Image"
3862
  msgstr ""
3863
 
3864
- #: view/FrontMenu.php:306 view/FrontMenu.php:447
3865
  msgid "Image size must be at least 500 pixels wide"
3866
  msgstr ""
3867
 
3868
- #: view/FrontMenu.php:320
3869
  msgid "OG Title"
3870
  msgstr ""
3871
 
3872
- #: view/FrontMenu.php:333
3873
  msgid "OG Description"
3874
  msgstr ""
3875
 
3876
- #: view/FrontMenu.php:346
3877
  msgid "Author Link"
3878
  msgstr ""
3879
 
3880
- #: view/FrontMenu.php:351
3881
  msgid "if there are more authors, separate their facebook links with commas"
3882
  msgstr ""
3883
 
3884
- #: view/FrontMenu.php:357
3885
  msgid "Page type"
3886
  msgstr ""
3887
 
3888
- #: view/FrontMenu.php:361
3889
  msgid "Website"
3890
  msgstr ""
3891
 
3892
- #: view/FrontMenu.php:370
3893
  msgid "Book"
3894
  msgstr ""
3895
 
3896
- #: view/FrontMenu.php:373
3897
  msgid "Music"
3898
  msgstr ""
3899
 
3900
- #: view/FrontMenu.php:376
3901
  msgid "Product"
3902
  msgstr ""
3903
 
3904
- #: view/FrontMenu.php:379
3905
  msgid "Video"
3906
  msgstr ""
3907
 
3908
- #: view/FrontMenu.php:388
3909
  msgid ""
3910
  "To edit the Open Graph, you have to activate Squirrly SEO for this page first"
3911
  msgstr ""
3912
 
3913
- #: view/FrontMenu.php:397
3914
  msgid "How this page appears on Twitter"
3915
  msgstr ""
3916
 
3917
- #: view/FrontMenu.php:400
3918
  msgid "Edit Twitter Card"
3919
  msgstr ""
3920
 
3921
- #: view/FrontMenu.php:442
3922
  msgid "Twitter Image"
3923
  msgstr ""
3924
 
3925
- #: view/FrontMenu.php:460
3926
  msgid "Twitter Card Title"
3927
  msgstr ""
3928
 
3929
- #: view/FrontMenu.php:473
3930
  msgid "Twitter Card Description"
3931
  msgstr ""
3932
 
3933
- #: view/FrontMenu.php:488
3934
  msgid ""
3935
  "To edit the Twitter Card, you have to activate Squirrly SEO for this page "
3936
  "first"
3937
  msgstr ""
3938
 
3939
- #: view/FrontMenu.php:503
3940
  msgid "Let Google Index This Page"
3941
  msgstr ""
3942
 
3943
- #: view/FrontMenu.php:516
3944
  msgid "Pass Link Juice to This Page"
3945
  msgstr ""
3946
 
3947
- #: view/FrontMenu.php:529
3948
  msgid "Show it in Sitemap.xml"
3949
  msgstr ""
3950
 
3951
- #: view/FrontMenu.php:544
3952
  msgid "To edit, you have to activate Squirrly SEO for this page first."
3953
  msgstr ""
3954
 
3955
- #: view/FrontMenu.php:564
3956
  msgid "post type"
3957
  msgstr ""
3958
 
3959
- #: view/FrontMenu.php:566
3960
  msgid "og type"
3961
  msgstr ""
3962
 
3963
- #: view/FrontMenu.php:588
3964
  msgid "Can't do Custom SEO for this URL"
3965
  msgstr ""
3966
 
3967
- #: view/FrontMenu.php:608
3968
  msgid "Enable Squirrly SEO to load Squirrly Snippet"
3969
  msgstr ""
3970
 
3971
- #: view/FrontMenu.php:632
3972
  #, php-format
3973
  msgid "%sPlease connect to Squirrly first%s"
3974
  msgstr ""
@@ -3986,11 +4093,11 @@ msgid "Advanced Analytics (Business Level)"
3986
  msgstr ""
3987
 
3988
  #: view/SerpChecker.php:77
3989
- msgid "Get Ranks and found Keywords from Squirrly API"
3990
  msgstr ""
3991
 
3992
  #: view/SerpChecker.php:81 view/SerpChecker.php:85
3993
- msgid "Get Ranks from Squirrly API"
3994
  msgstr ""
3995
 
3996
  #: view/SerpChecker.php:92
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-02-21 10:04+0200\n"
6
+ "PO-Revision-Date: 2018-02-21 10:04+0200\n"
7
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
19
  "X-Generator: Poedit 1.8.2\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ #: classes/Action.php:138 classes/ObjController.php:200
23
+ msgid ""
24
+ "You need to activate the PHP simplexml_load_string extension for Squirrly "
25
+ "SEO to work."
26
+ msgstr ""
27
+
28
  # @ squirrly-seo
29
  #: classes/Error.php:16
30
  msgid ""
57
  msgid "Don't bother me!"
58
  msgstr ""
59
 
60
+ #: classes/Tools.php:87
61
  msgid "Getting started"
62
  msgstr ""
63
 
64
+ #: classes/Tools.php:276
65
  msgid "Format"
66
  msgstr ""
67
 
68
+ #: classes/Tools.php:284 classes/Tools.php:300
69
  msgid "Category"
70
  msgstr ""
71
 
72
+ #: classes/Tools.php:292 classes/Tools.php:308
73
  msgid "Tag"
74
  msgstr ""
75
 
76
+ #: classes/Tools.php:316
77
  msgid "Shipping Option"
78
  msgstr ""
79
 
80
+ #: classes/Tools.php:324
81
  msgid "Author at"
82
  msgstr ""
83
 
84
+ #: classes/Tools.php:356
85
  msgid "You searched for"
86
  msgstr ""
87
 
88
+ #: classes/Tools.php:372
89
  msgid "Page not found"
90
  msgstr ""
91
 
92
  # @ squirrly-seo
93
+ #: classes/Tools.php:889
94
  msgid "Fix it for me!"
95
  msgstr "Beheben Sie es für mich!"
96
 
97
+ #: classes/Tools.php:895
98
  msgid "Activate the Squirrly SEO for your blog (recommended)"
99
  msgstr ""
100
 
101
+ #: classes/Tools.php:906
102
  msgid ""
103
  "You have META Title Duplicates. Disable the Squirrly Title Optimization or "
104
  "disable the other SEO Plugins"
105
  msgstr ""
106
 
107
+ #: classes/Tools.php:914
108
  msgid ""
109
  "You have META Description Duplicates. Disable the Squirrly Description "
110
  "Optimization or disable the other SEO Plugins"
111
  msgstr ""
112
 
113
+ #: classes/Tools.php:922
114
  msgid ""
115
  "You have Open Graph META Duplicates. Disable the Squirrly SEO Open Graph or "
116
  "disable the other SEO Plugins"
117
  msgstr ""
118
 
119
+ #: classes/Tools.php:930
120
  msgid ""
121
  "You have Twitter Card META Duplicates. Disable the Squirrly SEO Twitter Card "
122
  "or disable the other SEO Plugins"
123
  msgstr ""
124
 
125
  # @ squirrly-seo
126
+ #: classes/Tools.php:939
127
  msgid "You're blocking google from indexing your site!"
128
  msgstr "Sie blockieren Google zum Indizieren Ihrer Website!"
129
 
130
+ #: classes/Tools.php:946
131
  msgid ""
132
  "It is highly recommended that you include the %postname% variable in the "
133
  "permalink structure. <br />Go to Settings > Permalinks and add /%postname%/ "
134
  "in Custom Structure"
135
  msgstr ""
136
 
137
+ #: classes/Tools.php:953
138
  msgid ""
139
  "It is highly recommended to change or remove the default Wordpress Tagline. "
140
  "<br />Go to Settings > General > Tagline"
141
  msgstr ""
142
 
143
+ #: classes/Tools.php:959
144
  msgid "Great! We didn't find any issue in your site."
145
  msgstr ""
146
 
147
+ #: classes/Tools.php:1104
148
  msgid "Just another WordPress site"
149
  msgstr ""
150
 
250
  msgid "You don't have enough pemission to edit this article"
251
  msgstr ""
252
 
253
+ #: controllers/Menu.php:38 controllers/Menu.php:49
254
  #, php-format
255
  msgid ""
256
  "Good news, %s is integrated in Squirrly SEO now and you don't have to run 2 "
257
  "plugins anymore"
258
  msgstr ""
259
 
260
+ #: controllers/Menu.php:69
261
+ #, php-format
262
+ msgid ""
263
+ "An error occurred during activation. If this error persists, please contact "
264
+ "us at: %s"
265
+ msgstr ""
266
+
267
+ #: controllers/Menu.php:96
268
  msgid "See Your Rank on Google"
269
  msgstr ""
270
 
271
+ #: controllers/Menu.php:153
272
  msgid "Custom SEO"
273
  msgstr ""
274
 
275
+ #: controllers/Menu.php:196
276
  #, php-format
277
  msgid "Check out the Squirrly Analytics section. %sClick here%s"
278
  msgstr ""
279
 
280
+ #: controllers/Menu.php:196 view/BlockPostsAnalytics.php:46
281
  msgid "Squirrly Analytics"
282
  msgstr ""
283
 
284
+ #: controllers/Menu.php:205
285
  #, php-format
286
  msgid "Go back and complete the Squirrly Tasks for today %sContinue%s"
287
  msgstr ""
288
 
289
+ #: controllers/Menu.php:227
290
  msgid " Dashboard"
291
  msgstr ""
292
 
293
+ #: controllers/Menu.php:228
294
  msgid "First Step"
295
  msgstr ""
296
 
297
+ #: controllers/Menu.php:228
298
  msgid "Dashboard"
299
  msgstr ""
300
 
301
+ #: controllers/Menu.php:237
302
  msgid " Advanced Analytics (Business Level)"
303
  msgstr ""
304
 
305
+ #: controllers/Menu.php:238
306
  msgid "Advanced Analytics"
307
  msgstr ""
308
 
309
+ #: controllers/Menu.php:245
310
  msgid " Performance Analytics"
311
  msgstr ""
312
 
313
+ #: controllers/Menu.php:246
314
  msgid "Performance <br />Analytics"
315
  msgstr ""
316
 
317
+ #: controllers/Menu.php:254
318
  msgid " Keyword Research"
319
  msgstr ""
320
 
321
+ #: controllers/Menu.php:255
322
  msgid "Keyword Research"
323
  msgstr ""
324
 
325
+ #: controllers/Menu.php:262
326
  msgid " Briefcase"
327