Version Description
- 02/22/2019 =
- SEO Update - Tested and Compatible with WordPress 5.1
Download this release
Release Info
Developer | cifi |
Plugin | SEO SQUIRRLY™ |
Version | 8.4.07 |
Comparing to | |
See all releases |
Code changes from version 8.3.12 to 8.4.07
- classes/Action.php +42 -50
- classes/BlockController.php +3 -1
- classes/DisplayController.php +15 -27
- classes/FrontController.php +0 -2
- classes/ObjController.php +26 -30
- classes/Tools.php +153 -35
- config/config.php +15 -1
- config/paths.php +9 -6
- controllers/Api.php +1 -1
- controllers/Frontend.php +8 -6
- controllers/Menu.php +78 -54
- controllers/Post.php +78 -113
- controllers/SerpChecker.php +40 -18
- controllers/Sitemaps.php +26 -6
- core/BlockBriefcaseKeywords.php +13 -5
- core/BlockImport.php +6 -4
- core/BlockPostsAnalytics.php +6 -3
- core/BlockSerpKeywords.php +2 -5
- core/BlockSettings.php +14 -3
- core/BlockSettingsSeo.php +28 -23
- core/BlockSupport.php +17 -17
- core/Blocklogin.php +2 -0
- core/Loading.php +8 -19
- core/config.json +225 -0
- core/config.xml +0 -224
- languages/squirrly-seo-cs_CZ.mo +0 -0
- languages/squirrly-seo-cs_CZ.po +4429 -0
- languages/squirrly-seo-de_DE.mo +0 -0
- languages/squirrly-seo-de_DE.po +760 -696
- languages/squirrly-seo-ro_RO.mo +0 -0
- languages/squirrly-seo-ro_RO.po +754 -693
- models/BlockSettingsSeo.php +0 -1
- models/Frontend.php +37 -12
- models/Post.php +41 -27
- models/SerpChecker.php +4 -10
- models/SerpCheckerTable.php +4 -4
- models/Sitemaps.php +88 -25
- models/abstract/Seo.php +20 -13
- models/domain/Patterns.php +127 -25
- models/domain/Sq.php +1 -9
- models/services/Analytics.php +6 -1
- models/services/JsonLD.php +131 -17
- models/services/Keywords.php +10 -3
- models/services/Noindex.php +2 -0
- models/services/OpenGraph.php +31 -17
- readme.txt +921 -359
- squirrly.php +5 -6
- view/BlockAccount.php +7 -2
- view/BlockAffiliate.php +2 -54
- view/BlockAnalytics.php +0 -15
- view/BlockAudit.php +4 -4
- view/BlockBriefcaseKeywords.php +309 -289
- view/BlockCustomerService.php +14 -1
- view/BlockDashboard.php +5 -2
- view/BlockImport.php +4 -1
- view/BlockKeywordResearch.php +34 -30
- view/BlockPatterns.php +7 -4
- view/BlockPostsAnalytics.php +1 -0
- view/BlockSerpKeywords.php +0 -6
- view/BlockSettings.php +24 -7
- view/BlockSettingsSeo.php +42 -19
- view/BlockSupport.php +102 -86
- view/Blocklogin.php +1 -1
- view/FrontMenu.php +19 -15
- view/css/blockaccount.css +1 -1
- view/css/blockaccount.min.css +1 -1
- view/css/blockkeywordresearch.css +1 -1
- view/css/blockkeywordresearch.min.css +1 -1
- view/css/blockresearch.css +4 -10
- view/css/blockresearch.min.css +1 -1
- view/css/blocksearch.css +27 -43
- view/css/blocksearch.min.css +1 -1
- view/css/blockseo.css +9 -0
- view/css/blockseo.min.css +1 -1
- view/css/blocksettings.css +1 -1
- view/css/blocksettings.min.css +1 -1
- view/css/blocksettingsseo.css +1 -1
- view/css/blocksettingsseo.min.css +1 -1
- view/css/bootstrap.css +1 -0
- view/css/bootstrap.min.css +1 -0
classes/Action.php
CHANGED
@@ -12,13 +12,8 @@ class SQ_Classes_Action extends SQ_Classes_FrontController {
|
|
12 |
private static $config;
|
13 |
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
if ($url && (strpos($url, str_replace(get_bloginfo('url'), '', admin_url('admin-ajax.php', 'relative'))) !== false)) {
|
18 |
-
return true;
|
19 |
-
}
|
20 |
-
|
21 |
-
return false;
|
22 |
}
|
23 |
|
24 |
/**
|
@@ -81,62 +76,58 @@ class SQ_Classes_Action extends SQ_Classes_FrontController {
|
|
81 |
}
|
82 |
|
83 |
/**
|
84 |
-
* Get all actions from config.
|
85 |
*
|
86 |
* @return void
|
87 |
*/
|
88 |
public function getActions($cur_action) {
|
89 |
-
|
90 |
-
|
91 |
-
if
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
return;
|
97 |
-
}
|
98 |
-
|
99 |
-
/* load configuration blocks data from core config files */
|
100 |
-
$data = file_get_contents($config_file);
|
101 |
-
self::$config = json_decode(json_encode((array)simplexml_load_string($data)), 1);
|
102 |
}
|
103 |
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
/* if there are more actions for the current block */
|
114 |
-
|
115 |
-
/* add the
|
116 |
-
if ($
|
117 |
$this->actions[] = array('class' => $block['name']);
|
118 |
-
} else {
|
119 |
-
/* if there are more actions for the current block */
|
120 |
-
foreach ($block['actions']['action'] as $action) {
|
121 |
-
/* add the actions in the actions array */
|
122 |
-
if ($action == $cur_action)
|
123 |
-
$this->actions[] = array('class' => $block['name']);
|
124 |
-
}
|
125 |
}
|
126 |
}
|
|
|
127 |
|
128 |
-
}
|
129 |
}
|
|
|
130 |
|
131 |
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
}
|
136 |
}
|
137 |
-
}else{
|
138 |
-
SQ_Classes_Error::setMessage(__('You need to activate the PHP simplexml_load_string extension for Squirrly SEO to work.', _SQ_PLUGIN_NAME_));
|
139 |
}
|
|
|
140 |
}
|
141 |
|
142 |
/**
|
@@ -153,7 +144,8 @@ class SQ_Classes_Action extends SQ_Classes_FrontController {
|
|
153 |
return false;
|
154 |
}
|
155 |
|
156 |
-
$extra = array(
|
|
|
157 |
'lang' => (defined('WPLANG') ? WPLANG : 'en_US'),
|
158 |
'versq' => SQ_VERSION_ID,
|
159 |
'verwp' => WP_VERSION_ID,
|
@@ -188,7 +180,7 @@ class SQ_Classes_Action extends SQ_Classes_FrontController {
|
|
188 |
try {
|
189 |
//echo $url;exit();
|
190 |
return SQ_Classes_Tools::sq_remote_get($url, array(), array('timeout' => $timeout));
|
191 |
-
}catch (Exception $e){
|
192 |
return '';
|
193 |
}
|
194 |
|
@@ -203,7 +195,7 @@ class SQ_Classes_Action extends SQ_Classes_FrontController {
|
|
203 |
return str_replace(array(' '), array('+'), $url);
|
204 |
}
|
205 |
|
206 |
-
public static function apiSaveSettings(){
|
207 |
self::apiCall('sq/user/settings', array('settings' => json_encode(SQ_Classes_Tools::getBriefOptions())), 10);
|
208 |
}
|
209 |
|
12 |
private static $config;
|
13 |
|
14 |
|
15 |
+
public function _isAjax() {
|
16 |
+
return (defined('DOING_AJAX') && DOING_AJAX);
|
|
|
|
|
|
|
|
|
|
|
17 |
}
|
18 |
|
19 |
/**
|
76 |
}
|
77 |
|
78 |
/**
|
79 |
+
* Get all actions from config.json in core directory and add them in the WP
|
80 |
*
|
81 |
* @return void
|
82 |
*/
|
83 |
public function getActions($cur_action) {
|
84 |
+
//Let only the logged users to access the actions
|
85 |
+
if (is_admin() || is_network_admin()) {
|
86 |
+
/* if config allready in cache */
|
87 |
+
if (!isset(self::$config)) {
|
88 |
+
$config_file = _SQ_CORE_DIR_ . 'config.json';
|
89 |
+
if (!file_exists($config_file)) {
|
90 |
+
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
}
|
92 |
|
93 |
+
/* load configuration blocks data from core config files */
|
94 |
+
self::$config = json_decode(file_get_contents($config_file), 1);
|
95 |
+
}
|
96 |
+
|
97 |
+
if (is_array(self::$config))
|
98 |
+
foreach (self::$config['blocks']['block'] as $block) {
|
99 |
+
if (isset($block['active']) && $block['active'] == 1) {
|
100 |
+
/* if there is a single action */
|
101 |
+
if (isset($block['actions']['action']))
|
102 |
+
if (isset($block['admin']) &&
|
103 |
+
(($block['admin'] == 1 && is_user_logged_in()) ||
|
104 |
+
$block['admin'] == 0)
|
105 |
+
) {
|
106 |
+
/* if there are more actions for the current block */
|
107 |
+
if (!is_array($block['actions']['action'])) {
|
108 |
+
/* add the action in the actions array */
|
109 |
+
if ($block['actions']['action'] == $cur_action)
|
110 |
+
$this->actions[] = array('class' => $block['name']);
|
111 |
+
} else {
|
112 |
/* if there are more actions for the current block */
|
113 |
+
foreach ($block['actions']['action'] as $action) {
|
114 |
+
/* add the actions in the actions array */
|
115 |
+
if ($action == $cur_action)
|
116 |
$this->actions[] = array('class' => $block['name']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
}
|
118 |
}
|
119 |
+
}
|
120 |
|
|
|
121 |
}
|
122 |
+
}
|
123 |
|
124 |
|
125 |
+
/* add the actions in WP */
|
126 |
+
foreach ($this->actions as $actions) {
|
127 |
+
SQ_Classes_ObjController::getClass($actions['class'])->action();
|
|
|
128 |
}
|
|
|
|
|
129 |
}
|
130 |
+
|
131 |
}
|
132 |
|
133 |
/**
|
144 |
return false;
|
145 |
}
|
146 |
|
147 |
+
$extra = array(
|
148 |
+
'user_url' => home_url(),
|
149 |
'lang' => (defined('WPLANG') ? WPLANG : 'en_US'),
|
150 |
'versq' => SQ_VERSION_ID,
|
151 |
'verwp' => WP_VERSION_ID,
|
180 |
try {
|
181 |
//echo $url;exit();
|
182 |
return SQ_Classes_Tools::sq_remote_get($url, array(), array('timeout' => $timeout));
|
183 |
+
} catch (Exception $e) {
|
184 |
return '';
|
185 |
}
|
186 |
|
195 |
return str_replace(array(' '), array('+'), $url);
|
196 |
}
|
197 |
|
198 |
+
public static function apiSaveSettings() {
|
199 |
self::apiCall('sq/user/settings', array('settings' => json_encode(SQ_Classes_Tools::getBriefOptions())), 10);
|
200 |
}
|
201 |
|
classes/BlockController.php
CHANGED
@@ -77,7 +77,8 @@ class SQ_Classes_BlockController {
|
|
77 |
|
78 |
|
79 |
public function preloadSettings() {
|
80 |
-
|
|
|
81 |
var __blog_url = "' . get_bloginfo('url') . '";
|
82 |
var __token = "' . SQ_Classes_Tools::getOption('sq_api') . '";
|
83 |
var __language = "' . get_bloginfo('language') . '";
|
@@ -86,6 +87,7 @@ class SQ_Classes_BlockController {
|
|
86 |
jQuery.sq_getHelp("' . str_replace(array("sq_core_block", "sq_controller_block_"), "", strtolower($this->name)) . '", "content");
|
87 |
});
|
88 |
</script>';
|
|
|
89 |
}
|
90 |
|
91 |
/**
|
77 |
|
78 |
|
79 |
public function preloadSettings() {
|
80 |
+
if(SQ_Classes_Tools::getOption('sq_api') <> '') {
|
81 |
+
echo '<script type="text/javascript">
|
82 |
var __blog_url = "' . get_bloginfo('url') . '";
|
83 |
var __token = "' . SQ_Classes_Tools::getOption('sq_api') . '";
|
84 |
var __language = "' . get_bloginfo('language') . '";
|
87 |
jQuery.sq_getHelp("' . str_replace(array("sq_core_block", "sq_controller_block_"), "", strtolower($this->name)) . '", "content");
|
88 |
});
|
89 |
</script>';
|
90 |
+
}
|
91 |
}
|
92 |
|
93 |
/**
|
classes/DisplayController.php
CHANGED
@@ -12,19 +12,6 @@ class SQ_Classes_DisplayController {
|
|
12 |
self::loadMedia('global');
|
13 |
}
|
14 |
|
15 |
-
/**
|
16 |
-
* Check if ajax
|
17 |
-
* @return bool
|
18 |
-
*/
|
19 |
-
private static function _isAjax() {
|
20 |
-
$url = (isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : false);
|
21 |
-
if ($url && (strpos($url, str_replace(get_bloginfo('url'), '', admin_url('admin-ajax.php', 'relative'))) !== false)) {
|
22 |
-
return true;
|
23 |
-
}
|
24 |
-
|
25 |
-
return false;
|
26 |
-
}
|
27 |
-
|
28 |
/**
|
29 |
* echo the css link from theme css directory
|
30 |
*
|
@@ -34,7 +21,7 @@ class SQ_Classes_DisplayController {
|
|
34 |
* @return string
|
35 |
*/
|
36 |
public static function loadMedia($uri = '', $params = array('trigger' => false, 'media' => 'all')) {
|
37 |
-
if (
|
38 |
return;
|
39 |
}
|
40 |
|
@@ -56,18 +43,18 @@ class SQ_Classes_DisplayController {
|
|
56 |
} else {
|
57 |
$name = strtolower(_SQ_NAMESPACE_ . $uri);
|
58 |
}
|
59 |
-
if (strpos($uri,'.css') !== false && file_exists(_SQ_THEME_DIR_ . 'css/' . strtolower($uri))) {
|
60 |
$css_uri = _SQ_THEME_URL_ . 'css/' . strtolower($uri);
|
61 |
}
|
62 |
-
if (strpos($uri,'.js') !== false && file_exists(_SQ_THEME_DIR_ . 'js/' . strtolower($uri))) {
|
63 |
$js_uri = _SQ_THEME_URL_ . 'js/' . strtolower($uri);
|
64 |
}
|
65 |
|
66 |
-
if (file_exists(_SQ_THEME_DIR_ . 'css/' . strtolower($uri) . '.css')) {
|
67 |
-
$css_uri = _SQ_THEME_URL_ . 'css/' . strtolower($uri) . '.css';
|
68 |
}
|
69 |
-
if (file_exists(_SQ_THEME_DIR_ . 'js/' . strtolower($uri) . '.js')) {
|
70 |
-
$js_uri = _SQ_THEME_URL_ . 'js/' . strtolower($uri) . '.js';
|
71 |
}
|
72 |
} else {
|
73 |
$name = strtolower(basename($uri));
|
@@ -82,19 +69,20 @@ class SQ_Classes_DisplayController {
|
|
82 |
if ($css_uri <> '') {
|
83 |
if (!wp_style_is($name)) {
|
84 |
wp_enqueue_style($name, $css_uri, null, SQ_VERSION_ID, $params['media']);
|
|
|
|
|
|
|
85 |
}
|
86 |
|
87 |
-
|
88 |
-
wp_print_styles(array($name));
|
89 |
-
}
|
90 |
}
|
91 |
|
92 |
if ($js_uri <> '') {
|
93 |
if (!wp_script_is($name)) {
|
94 |
-
wp_enqueue_script($name, $js_uri,
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
}
|
99 |
|
100 |
}
|
12 |
self::loadMedia('global');
|
13 |
}
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
/**
|
16 |
* echo the css link from theme css directory
|
17 |
*
|
21 |
* @return string
|
22 |
*/
|
23 |
public static function loadMedia($uri = '', $params = array('trigger' => false, 'media' => 'all')) {
|
24 |
+
if (SQ_Classes_ObjController::getClass('SQ_Classes_Action')->_isAjax()) {
|
25 |
return;
|
26 |
}
|
27 |
|
43 |
} else {
|
44 |
$name = strtolower(_SQ_NAMESPACE_ . $uri);
|
45 |
}
|
46 |
+
if (strpos($uri, '.css') !== false && file_exists(_SQ_THEME_DIR_ . 'css/' . strtolower($uri))) {
|
47 |
$css_uri = _SQ_THEME_URL_ . 'css/' . strtolower($uri);
|
48 |
}
|
49 |
+
if (strpos($uri, '.js') !== false && file_exists(_SQ_THEME_DIR_ . 'js/' . strtolower($uri))) {
|
50 |
$js_uri = _SQ_THEME_URL_ . 'js/' . strtolower($uri);
|
51 |
}
|
52 |
|
53 |
+
if (file_exists(_SQ_THEME_DIR_ . 'css/' . strtolower($uri) . (SQ_DEBUG ? '' : '.min') . '.css')) {
|
54 |
+
$css_uri = _SQ_THEME_URL_ . 'css/' . strtolower($uri) . (SQ_DEBUG ? '' : '.min') . '.css';
|
55 |
}
|
56 |
+
if (file_exists(_SQ_THEME_DIR_ . 'js/' . strtolower($uri) . (SQ_DEBUG ? '' : '.min') . '.js')) {
|
57 |
+
$js_uri = _SQ_THEME_URL_ . 'js/' . strtolower($uri) . (SQ_DEBUG ? '' : '.min') . '.js';
|
58 |
}
|
59 |
} else {
|
60 |
$name = strtolower(basename($uri));
|
69 |
if ($css_uri <> '') {
|
70 |
if (!wp_style_is($name)) {
|
71 |
wp_enqueue_style($name, $css_uri, null, SQ_VERSION_ID, $params['media']);
|
72 |
+
if (is_admin() || (isset($params['trigger']) && $params['trigger'] === true)) { //load CSS for admin or on triggered
|
73 |
+
wp_print_styles(array($name));
|
74 |
+
}
|
75 |
}
|
76 |
|
77 |
+
|
|
|
|
|
78 |
}
|
79 |
|
80 |
if ($js_uri <> '') {
|
81 |
if (!wp_script_is($name)) {
|
82 |
+
wp_enqueue_script($name, $js_uri, null, SQ_VERSION_ID);
|
83 |
+
if (is_admin() || isset($params['trigger']) && $params['trigger'] === true) {
|
84 |
+
wp_print_scripts(array($name));
|
85 |
+
}
|
86 |
}
|
87 |
|
88 |
}
|
classes/FrontController.php
CHANGED
@@ -19,13 +19,11 @@ class SQ_Classes_FrontController {
|
|
19 |
private $name;
|
20 |
|
21 |
public function __construct() {
|
22 |
-
|
23 |
/* Load error class */
|
24 |
SQ_Classes_ObjController::getClass('SQ_Classes_Error');
|
25 |
/* Load Tools */
|
26 |
SQ_Classes_ObjController::getClass('SQ_Classes_Tools');
|
27 |
|
28 |
-
|
29 |
/* get the name of the current class */
|
30 |
$this->name = get_class($this);
|
31 |
|
19 |
private $name;
|
20 |
|
21 |
public function __construct() {
|
|
|
22 |
/* Load error class */
|
23 |
SQ_Classes_ObjController::getClass('SQ_Classes_Error');
|
24 |
/* Load Tools */
|
25 |
SQ_Classes_ObjController::getClass('SQ_Classes_Tools');
|
26 |
|
|
|
27 |
/* get the name of the current class */
|
28 |
$this->name = get_class($this);
|
29 |
|
classes/ObjController.php
CHANGED
@@ -161,44 +161,40 @@ class SQ_Classes_ObjController {
|
|
161 |
}
|
162 |
|
163 |
/**
|
164 |
-
* Get all core classes from config.
|
165 |
* eg.SQ_Controllers_Post
|
166 |
* @param string $for
|
167 |
*/
|
168 |
public function getBlocks($for) {
|
169 |
-
if
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
if (
|
|
|
|
|
|
|
|
|
186 |
/* if the block should load for the current controller */
|
187 |
-
if ($for == $
|
188 |
SQ_Classes_ObjController::getClass($block['name'])->init();
|
189 |
}
|
190 |
-
} else {
|
191 |
-
foreach ($block['controllers']['controller'] as $controller) {
|
192 |
-
/* if the block should load for the current controller */
|
193 |
-
if ($for == $controller) {
|
194 |
-
SQ_Classes_ObjController::getClass($block['name'])->init();
|
195 |
-
}
|
196 |
-
}
|
197 |
}
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
}
|
202 |
}
|
203 |
|
204 |
}
|
161 |
}
|
162 |
|
163 |
/**
|
164 |
+
* Get all core classes from config.json in core directory
|
165 |
* eg.SQ_Controllers_Post
|
166 |
* @param string $for
|
167 |
*/
|
168 |
public function getBlocks($for) {
|
169 |
+
/* if config allready in cache */
|
170 |
+
if (!isset(self::$config)) {
|
171 |
+
$config_file = _SQ_CORE_DIR_ . 'config.json';
|
172 |
+
if (!file_exists($config_file))
|
173 |
+
return;
|
174 |
+
|
175 |
+
/* load configuration blocks data from core config files */
|
176 |
+
self::$config = json_decode(file_get_contents($config_file), 1);;
|
177 |
+
}
|
178 |
+
//print_r(self::$config);
|
179 |
+
if (is_array(self::$config))
|
180 |
+
foreach (self::$config['blocks']['block'] as $block) {
|
181 |
+
if ($block['active'] == 1)
|
182 |
+
if (isset($block['controllers']['controller']))
|
183 |
+
if (!is_array($block['controllers']['controller'])) {
|
184 |
+
/* if the block should load for the current controller */
|
185 |
+
if ($for == $block['controllers']['controller']) {
|
186 |
+
SQ_Classes_ObjController::getClass($block['name'])->init();
|
187 |
+
}
|
188 |
+
} else {
|
189 |
+
foreach ($block['controllers']['controller'] as $controller) {
|
190 |
/* if the block should load for the current controller */
|
191 |
+
if ($for == $controller) {
|
192 |
SQ_Classes_ObjController::getClass($block['name'])->init();
|
193 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
}
|
195 |
+
}
|
196 |
+
}
|
197 |
+
|
|
|
198 |
}
|
199 |
|
200 |
}
|
classes/Tools.php
CHANGED
@@ -7,10 +7,8 @@
|
|
7 |
*/
|
8 |
class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
9 |
|
10 |
-
/** @var array
|
11 |
-
public static $options = array();
|
12 |
-
public static $usermeta = array();
|
13 |
-
|
14 |
/** @var integer Count the errors in site */
|
15 |
static $errors_count;
|
16 |
|
@@ -20,30 +18,34 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
20 |
public static $is_ajax = null;
|
21 |
|
22 |
public function __construct() {
|
23 |
-
|
24 |
|
25 |
$maxmemory = self::getMaxMemory();
|
26 |
if ($maxmemory && $maxmemory < 60) {
|
27 |
@ini_set('memory_limit', apply_filters('admin_memory_limit', WP_MAX_MEMORY_LIMIT));
|
28 |
}
|
29 |
|
30 |
-
|
31 |
-
|
32 |
$this->checkDebug(); //dev mode
|
33 |
}
|
34 |
|
35 |
public static function getMaxMemory() {
|
36 |
try {
|
37 |
$memory_limit = @ini_get('memory_limit');
|
38 |
-
if((int)
|
39 |
if (preg_match('/^(\d+)(.)$/', $memory_limit, $matches)) {
|
40 |
-
if ($matches[2] == '
|
|
|
|
|
41 |
$memory_limit = $matches[1] * 1024 * 1024; // nnnM -> nnn MB
|
42 |
-
}
|
43 |
$memory_limit = $matches[1] * 1024; // nnnK -> nnn KB
|
44 |
}
|
45 |
}
|
46 |
-
|
|
|
|
|
|
|
47 |
}
|
48 |
} catch (Exception $e) {
|
49 |
}
|
@@ -56,23 +58,67 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
56 |
return number_format(memory_get_usage() / 1024 / 1024, 0);
|
57 |
}
|
58 |
|
59 |
-
public static function getUserID() {
|
60 |
-
global $current_user;
|
61 |
-
return $current_user->ID;
|
62 |
-
}
|
63 |
-
|
64 |
/**
|
65 |
* This hook will save the current version in database
|
66 |
*
|
67 |
* @return void
|
68 |
*/
|
69 |
function hookInit() {
|
70 |
-
|
71 |
-
|
72 |
$this->loadMultilanguage();
|
73 |
-
|
74 |
//add setting link in plugin
|
75 |
add_filter('plugin_action_links', array($this, 'hookActionlink'), 5, 2);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
}
|
77 |
|
78 |
/**
|
@@ -91,6 +137,36 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
91 |
return $links;
|
92 |
}
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
/**
|
95 |
* Load the Options from user option table in DB
|
96 |
*
|
@@ -99,8 +175,9 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
99 |
public static function getOptions($action = '') {
|
100 |
$default = array(
|
101 |
'sq_ver' => 0,
|
102 |
-
'sq_token' => md5(home_url() . date('d')), //daily token
|
103 |
'sq_api' => '',
|
|
|
|
|
104 |
'sq_checkedissues' => 0,
|
105 |
'sq_areissues' => 0,
|
106 |
'sq_use' => 1,
|
@@ -110,6 +187,7 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
110 |
'post', 'page', 'product', 'shopp_page_shopp-products'
|
111 |
),
|
112 |
'sq_exclude_post_types' => array(),
|
|
|
113 |
// --
|
114 |
'sq_auto_canonical' => 1,
|
115 |
'sq_auto_sitemap' => 0,
|
@@ -133,13 +211,14 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
133 |
'jobTitle' => '',
|
134 |
'description' => ''
|
135 |
)),
|
136 |
-
'sq_sitemap_ping' =>
|
137 |
'sq_sitemap_show' => array(
|
138 |
'images' => 1,
|
139 |
'videos' => 0,
|
140 |
),
|
141 |
'sq_sitemap_perpage' => 200,
|
142 |
'sq_sitemap_frequency' => 'weekly',
|
|
|
143 |
'sq_sitemap' => array(
|
144 |
'sitemap' => array('sitemap.xml', 1),
|
145 |
'sitemap-home' => array('sitemap-home.xml', 1),
|
@@ -153,6 +232,7 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
153 |
'sitemap-author' => array('sitemap-authors.xml', 0),
|
154 |
'sitemap-custom-tax' => array('sitemap-custom-taxonomies.xml', 0),
|
155 |
'sitemap-custom-post' => array('sitemap-custom-posts.xml', 0),
|
|
|
156 |
),
|
157 |
'sq_auto_robots' => 1,
|
158 |
'sq_robots_permission' => array(
|
@@ -180,6 +260,7 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
180 |
'sq_keyword_help' => 1,
|
181 |
'sq_keyword_information' => 0,
|
182 |
'sq_url_fix' => 1,
|
|
|
183 |
//Ranking Option
|
184 |
'sq_google_country' => 'com',
|
185 |
'sq_google_language' => 'en',
|
@@ -201,7 +282,15 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
201 |
//--
|
202 |
'sq_dashboard' => 0,
|
203 |
'sq_analytics' => 0,
|
204 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
'sq_metas' => array(
|
206 |
'title_maxlength' => 75,
|
207 |
'description_maxlength' => 320,
|
@@ -212,7 +301,6 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
212 |
'jsonld_title_maxlength' => 75,
|
213 |
'jsonld_description_maxlength' => 110,
|
214 |
),
|
215 |
-
|
216 |
'socials' => array(
|
217 |
'fb_admins' => array(),
|
218 |
'fbconnectkey' => "",
|
@@ -226,7 +314,6 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
226 |
'myspace_url' => "",
|
227 |
'pinterest_url' => "",
|
228 |
'youtube_url' => "",
|
229 |
-
'google_plus_url' => "",
|
230 |
'twitter_card_type' => "summary",
|
231 |
'plus_publisher' => ""
|
232 |
),
|
@@ -267,7 +354,7 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
267 |
),
|
268 |
'category' => array(
|
269 |
'sep' => '|',
|
270 |
-
'title' => '{{
|
271 |
'description' => '{{category_description}}',
|
272 |
'noindex' => 0,
|
273 |
'nofollow' => 0,
|
@@ -275,7 +362,7 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
275 |
),
|
276 |
'tag' => array(
|
277 |
'sep' => '|',
|
278 |
-
'title' => '{{
|
279 |
'description' => '{{excerpt}}',
|
280 |
'noindex' => 0,
|
281 |
'nofollow' => 0,
|
@@ -428,6 +515,14 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
428 |
return apply_filters('sq_option_' . $key, self::$options[$key]);
|
429 |
}
|
430 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
|
432 |
/**
|
433 |
* Get user metas
|
@@ -513,8 +608,8 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
513 |
return array(
|
514 |
'sq_version' => SQ_VERSION_ID,
|
515 |
'sq_use' => self::getOption('sq_use'),
|
516 |
-
'sq_token' => self::
|
517 |
-
'sq_rest' => rest_get_url_prefix(),
|
518 |
'sq_checkedissues' => self::getOption('sq_checkedissues'),
|
519 |
'sq_areissues' => self::getOption('sq_areissues'),
|
520 |
'sq_auto_canonical' => self::getOption('sq_auto_canonical'),
|
@@ -531,7 +626,6 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
531 |
'sq_auto_description' => (int)(SQ_Classes_Tools::getOption('sq_auto_description') == 1),
|
532 |
'sq_auto_keywords' => (int)(SQ_Classes_Tools::getOption('sq_auto_keywords') == 1),
|
533 |
'sq_auto_noindex' => (int)(SQ_Classes_Tools::getOption('sq_auto_noindex') == 1),
|
534 |
-
'sq_google_plus' => (int)($socials['google_plus_url'] <> ''),
|
535 |
'sq_google_wt' => (int)($codes['google_wt'] <> ''),
|
536 |
'sq_google_analytics' => (int)($codes['google_analytics'] <> ''),
|
537 |
'sq_google_serpsperhour' => (int)SQ_Classes_Tools::getOption('sq_google_serpsperhour'),
|
@@ -600,15 +694,21 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
600 |
*
|
601 |
* @param string $key Value key
|
602 |
* @param mixed $defaultValue (optional)
|
|
|
|
|
603 |
* @return mixed Value
|
604 |
*/
|
605 |
-
public static function getValue($key, $defaultValue = false, $
|
606 |
if (!isset($key) OR empty($key) OR !is_string($key))
|
607 |
return false;
|
608 |
-
$ret = (isset($_POST[$key]) ? (is_string($_POST[$key]) ?
|
609 |
|
610 |
-
if (is_string($ret) === true && $
|
611 |
-
$
|
|
|
|
|
|
|
|
|
612 |
}
|
613 |
|
614 |
return !is_string($ret) ? $ret : stripslashes($ret);
|
@@ -1322,7 +1422,7 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
1322 |
* Check if debug is called
|
1323 |
*/
|
1324 |
private function checkDebug() {
|
1325 |
-
|
1326 |
if (SQ_DEBUG && self::getIsset('sq_debug')) {
|
1327 |
if (self::getValue('sq_debug') === 'on') {
|
1328 |
if (function_exists('register_shutdown_function')) {
|
@@ -1394,6 +1494,17 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
1394 |
echo "Debug result: <br />" . '<div id="wpcontent">' . @implode('<br />', self::$debug) . '</div>';
|
1395 |
}
|
1396 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1397 |
public function sq_activate() {
|
1398 |
set_transient('sq_activate', true);
|
1399 |
set_transient('sq_rewrite', true);
|
@@ -1539,10 +1650,17 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
1539 |
|
1540 |
public static function getBusinessLink() {
|
1541 |
if (!self::getOption('sq_google_serp_active')) {
|
1542 |
-
return _SQ_DASH_URL_ . 'login/?token=' . self::
|
1543 |
} else {
|
1544 |
return admin_url('admin.php?page=sq_posts');
|
1545 |
}
|
1546 |
|
1547 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1548 |
}
|
7 |
*/
|
8 |
class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
9 |
|
10 |
+
/** @var array Options, User Metas, Package and Plugin details */
|
11 |
+
public static $options, $usermeta, $package, $plugin = array();
|
|
|
|
|
12 |
/** @var integer Count the errors in site */
|
13 |
static $errors_count;
|
14 |
|
18 |
public static $is_ajax = null;
|
19 |
|
20 |
public function __construct() {
|
21 |
+
self::$options = $this->getOptions();
|
22 |
|
23 |
$maxmemory = self::getMaxMemory();
|
24 |
if ($maxmemory && $maxmemory < 60) {
|
25 |
@ini_set('memory_limit', apply_filters('admin_memory_limit', WP_MAX_MEMORY_LIMIT));
|
26 |
}
|
27 |
|
28 |
+
SQ_Classes_ObjController::getClass('SQ_Classes_HookController')->setHooks($this);
|
|
|
29 |
$this->checkDebug(); //dev mode
|
30 |
}
|
31 |
|
32 |
public static function getMaxMemory() {
|
33 |
try {
|
34 |
$memory_limit = @ini_get('memory_limit');
|
35 |
+
if ((int)$memory_limit > 0) {
|
36 |
if (preg_match('/^(\d+)(.)$/', $memory_limit, $matches)) {
|
37 |
+
if ($matches[2] == 'G') {
|
38 |
+
$memory_limit = $matches[1] * 1024 * 1024 * 1024; // nnnM -> nnn MB
|
39 |
+
} elseif ($matches[2] == 'M') {
|
40 |
$memory_limit = $matches[1] * 1024 * 1024; // nnnM -> nnn MB
|
41 |
+
} elseif ($matches[2] == 'K') {
|
42 |
$memory_limit = $matches[1] * 1024; // nnnK -> nnn KB
|
43 |
}
|
44 |
}
|
45 |
+
|
46 |
+
if ((int)$memory_limit > 0) {
|
47 |
+
return number_format($memory_limit / 1024 / 1024, 0, '', '');
|
48 |
+
}
|
49 |
}
|
50 |
} catch (Exception $e) {
|
51 |
}
|
58 |
return number_format(memory_get_usage() / 1024 / 1024, 0);
|
59 |
}
|
60 |
|
|
|
|
|
|
|
|
|
|
|
61 |
/**
|
62 |
* This hook will save the current version in database
|
63 |
*
|
64 |
* @return void
|
65 |
*/
|
66 |
function hookInit() {
|
|
|
|
|
67 |
$this->loadMultilanguage();
|
68 |
+
add_filter("plugin_row_meta", array($this, 'hookExtraLinks'), 10, 4);
|
69 |
//add setting link in plugin
|
70 |
add_filter('plugin_action_links', array($this, 'hookActionlink'), 5, 2);
|
71 |
+
|
72 |
+
if (self::getOption('sq_name') <> '') {
|
73 |
+
if (isset($_SERVER['REQUEST_URI']) && function_exists('get_plugin_data')) {
|
74 |
+
if (strpos($_SERVER['REQUEST_URI'], '/plugins.php') !== false) {
|
75 |
+
$data = get_plugin_data(_SQ_ROOT_DIR_ . '/squirrly.php');
|
76 |
+
if (isset($data['Name'])) {
|
77 |
+
self::$plugin['name'] = $data['Name'];
|
78 |
+
add_filter('pre_kses', array('SQ_Classes_Tools', 'changeString'), 1, 1);
|
79 |
+
}
|
80 |
+
}
|
81 |
+
}
|
82 |
+
}
|
83 |
+
}
|
84 |
+
|
85 |
+
/**
|
86 |
+
* Check if Dev Kit is installed
|
87 |
+
* @return mixed|false
|
88 |
+
*/
|
89 |
+
public static function updatePluginData() {
|
90 |
+
$package_file = _SQ_ROOT_DIR_ . '/package.json';
|
91 |
+
if (!file_exists($package_file)) {
|
92 |
+
return false;
|
93 |
+
}
|
94 |
+
|
95 |
+
/* load configuration blocks data from core config files */
|
96 |
+
$config = json_decode(file_get_contents($package_file), 1);
|
97 |
+
if (isset($config['package'])) {
|
98 |
+
self::$package = $config['package'];
|
99 |
+
|
100 |
+
if (isset(self::$package['settings']) && !empty(self::$options)) {
|
101 |
+
self::$options = @array_merge(self::$options, self::$package['settings']);
|
102 |
+
|
103 |
+
if (isset(self::$package['name']) && self::$package['name'] <> '') {
|
104 |
+
self::$options['sq_name'] = self::$package['name'] . ' - Squirrly Special';
|
105 |
+
}
|
106 |
+
|
107 |
+
self::saveOptions();
|
108 |
+
wp_redirect(admin_url('admin.php?page=sq_dashboard'));
|
109 |
+
}
|
110 |
+
}
|
111 |
+
|
112 |
+
|
113 |
+
//remove the package after activation
|
114 |
+
@unlink($package_file);
|
115 |
+
}
|
116 |
+
|
117 |
+
public static function changeString($string) {
|
118 |
+
if (isset(self::$plugin['name']) && self::getOption('sq_name') <> '') {
|
119 |
+
return str_replace(self::$plugin['name'], self::getOption('sq_name'), $string);
|
120 |
+
}
|
121 |
+
return $string;
|
122 |
}
|
123 |
|
124 |
/**
|
137 |
return $links;
|
138 |
}
|
139 |
|
140 |
+
/**
|
141 |
+
* Adds extra links to plugin page
|
142 |
+
*/
|
143 |
+
public function hookExtraLinks($meta, $file, $data, $status) {
|
144 |
+
if ($file == _SQ_PLUGIN_NAME_ . '/squirrly.php') {
|
145 |
+
echo '<style>
|
146 |
+
.ml-stars{display:inline-block;color:#ffb900;position:relative;top:3px}
|
147 |
+
.ml-stars svg{fill:#ffb900}
|
148 |
+
.ml-stars svg:hover{fill:#ffb900}
|
149 |
+
.ml-stars svg:hover ~ svg{fill:none}
|
150 |
+
</style>';
|
151 |
+
|
152 |
+
$meta[] = "<a href='https://howto.squirrly.co/wordpress-seo/' target='_blank'>" . __('Documentation', _SQ_PLUGIN_NAME_) . "</a>";
|
153 |
+
$meta[] = "<a href='https://wordpress.org/support/plugin/squirrly-seo/reviews/#new-post' target='_blank' title='" . __('Leave a review', _SQ_PLUGIN_NAME_) . "'><i class='ml-stars'><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg></i></a>";
|
154 |
+
}
|
155 |
+
return $meta;
|
156 |
+
}
|
157 |
+
|
158 |
+
|
159 |
+
public static function getToken() {
|
160 |
+
if (get_transient('sq_token')) {
|
161 |
+
$token = get_transient('sq_token');
|
162 |
+
} else {
|
163 |
+
$token = md5(self::generatePassword(32));
|
164 |
+
set_transient('sq_token', md5($token));
|
165 |
+
}
|
166 |
+
|
167 |
+
return $token;
|
168 |
+
}
|
169 |
+
|
170 |
/**
|
171 |
* Load the Options from user option table in DB
|
172 |
*
|
175 |
public static function getOptions($action = '') {
|
176 |
$default = array(
|
177 |
'sq_ver' => 0,
|
|
|
178 |
'sq_api' => '',
|
179 |
+
'sq_logo' => _SQ_THEME_URL_ . 'img/settings/menu_icon_16.png',
|
180 |
+
'sq_name' => '',
|
181 |
'sq_checkedissues' => 0,
|
182 |
'sq_areissues' => 0,
|
183 |
'sq_use' => 1,
|
187 |
'post', 'page', 'product', 'shopp_page_shopp-products'
|
188 |
),
|
189 |
'sq_exclude_post_types' => array(),
|
190 |
+
'sq_support_email' => '',
|
191 |
// --
|
192 |
'sq_auto_canonical' => 1,
|
193 |
'sq_auto_sitemap' => 0,
|
211 |
'jobTitle' => '',
|
212 |
'description' => ''
|
213 |
)),
|
214 |
+
'sq_sitemap_ping' => 0,
|
215 |
'sq_sitemap_show' => array(
|
216 |
'images' => 1,
|
217 |
'videos' => 0,
|
218 |
),
|
219 |
'sq_sitemap_perpage' => 200,
|
220 |
'sq_sitemap_frequency' => 'weekly',
|
221 |
+
'sq_sitemap_combinelangs' => 1,
|
222 |
'sq_sitemap' => array(
|
223 |
'sitemap' => array('sitemap.xml', 1),
|
224 |
'sitemap-home' => array('sitemap-home.xml', 1),
|
232 |
'sitemap-author' => array('sitemap-authors.xml', 0),
|
233 |
'sitemap-custom-tax' => array('sitemap-custom-taxonomies.xml', 0),
|
234 |
'sitemap-custom-post' => array('sitemap-custom-posts.xml', 0),
|
235 |
+
'sitemap-attachment' => array('sitemap-attachment.xml', 0),
|
236 |
),
|
237 |
'sq_auto_robots' => 1,
|
238 |
'sq_robots_permission' => array(
|
260 |
'sq_keyword_help' => 1,
|
261 |
'sq_keyword_information' => 0,
|
262 |
'sq_url_fix' => 1,
|
263 |
+
'sq_img_licence' => 1,
|
264 |
//Ranking Option
|
265 |
'sq_google_country' => 'com',
|
266 |
'sq_google_language' => 'en',
|
282 |
//--
|
283 |
'sq_dashboard' => 0,
|
284 |
'sq_analytics' => 0,
|
285 |
+
'sq_analytics_google_js' => 'analytics',
|
286 |
+
'menu' => array(
|
287 |
+
'show_account_info' => 1,
|
288 |
+
'show_affiliate' => 1,
|
289 |
+
'show_panel' => 1,
|
290 |
+
'show_tutorial' => 1,
|
291 |
+
'show_audit' => 1,
|
292 |
+
'show_ads' => 1,
|
293 |
+
),
|
294 |
'sq_metas' => array(
|
295 |
'title_maxlength' => 75,
|
296 |
'description_maxlength' => 320,
|
301 |
'jsonld_title_maxlength' => 75,
|
302 |
'jsonld_description_maxlength' => 110,
|
303 |
),
|
|
|
304 |
'socials' => array(
|
305 |
'fb_admins' => array(),
|
306 |
'fbconnectkey' => "",
|
314 |
'myspace_url' => "",
|
315 |
'pinterest_url' => "",
|
316 |
'youtube_url' => "",
|
|
|
317 |
'twitter_card_type' => "summary",
|
318 |
'plus_publisher' => ""
|
319 |
),
|
354 |
),
|
355 |
'category' => array(
|
356 |
'sep' => '|',
|
357 |
+
'title' => '{{title}} {{page}} {{sep}} {{sitename}}',
|
358 |
'description' => '{{category_description}}',
|
359 |
'noindex' => 0,
|
360 |
'nofollow' => 0,
|
362 |
),
|
363 |
'tag' => array(
|
364 |
'sep' => '|',
|
365 |
+
'title' => '{{title}} {{page}} {{sep}} {{sitename}}',
|
366 |
'description' => '{{excerpt}}',
|
367 |
'noindex' => 0,
|
368 |
'nofollow' => 0,
|
515 |
return apply_filters('sq_option_' . $key, self::$options[$key]);
|
516 |
}
|
517 |
|
518 |
+
//Get the package info in case of custom details
|
519 |
+
public static function getPackageInfo($key) {
|
520 |
+
if (isset(self::$package[$key])) {
|
521 |
+
return self::$package[$key];
|
522 |
+
}
|
523 |
+
|
524 |
+
return false;
|
525 |
+
}
|
526 |
|
527 |
/**
|
528 |
* Get user metas
|
608 |
return array(
|
609 |
'sq_version' => SQ_VERSION_ID,
|
610 |
'sq_use' => self::getOption('sq_use'),
|
611 |
+
'sq_token' => self::getToken(),
|
612 |
+
'sq_rest' => (function_exists('rest_get_url_prefix') ? rest_get_url_prefix() : ''),
|
613 |
'sq_checkedissues' => self::getOption('sq_checkedissues'),
|
614 |
'sq_areissues' => self::getOption('sq_areissues'),
|
615 |
'sq_auto_canonical' => self::getOption('sq_auto_canonical'),
|
626 |
'sq_auto_description' => (int)(SQ_Classes_Tools::getOption('sq_auto_description') == 1),
|
627 |
'sq_auto_keywords' => (int)(SQ_Classes_Tools::getOption('sq_auto_keywords') == 1),
|
628 |
'sq_auto_noindex' => (int)(SQ_Classes_Tools::getOption('sq_auto_noindex') == 1),
|
|
|
629 |
'sq_google_wt' => (int)($codes['google_wt'] <> ''),
|
630 |
'sq_google_analytics' => (int)($codes['google_analytics'] <> ''),
|
631 |
'sq_google_serpsperhour' => (int)SQ_Classes_Tools::getOption('sq_google_serpsperhour'),
|
694 |
*
|
695 |
* @param string $key Value key
|
696 |
* @param mixed $defaultValue (optional)
|
697 |
+
* @param bool $htmlcode
|
698 |
+
* @param bool $keep_newlines
|
699 |
* @return mixed Value
|
700 |
*/
|
701 |
+
public static function getValue($key, $defaultValue = false, $htmlcode = false, $keep_newlines = false) {
|
702 |
if (!isset($key) OR empty($key) OR !is_string($key))
|
703 |
return false;
|
704 |
+
$ret = (isset($_POST[$key]) ? (is_string($_POST[$key]) ? rawurldecode($_POST[$key]) : $_POST[$key]) : (isset($_GET[$key]) ? (is_string($_GET[$key]) ? rawurldecode($_GET[$key]) : $_GET[$key]) : $defaultValue));
|
705 |
|
706 |
+
if (is_string($ret) === true && $htmlcode === false) {
|
707 |
+
if ($keep_newlines && function_exists('sanitize_textarea_field')) {
|
708 |
+
$ret = sanitize_textarea_field($ret);
|
709 |
+
} else {
|
710 |
+
$ret = sanitize_text_field($ret);
|
711 |
+
}
|
712 |
}
|
713 |
|
714 |
return !is_string($ret) ? $ret : stripslashes($ret);
|
1422 |
* Check if debug is called
|
1423 |
*/
|
1424 |
private function checkDebug() {
|
1425 |
+
//if debug is called
|
1426 |
if (SQ_DEBUG && self::getIsset('sq_debug')) {
|
1427 |
if (self::getValue('sq_debug') === 'on') {
|
1428 |
if (function_exists('register_shutdown_function')) {
|
1494 |
echo "Debug result: <br />" . '<div id="wpcontent">' . @implode('<br />', self::$debug) . '</div>';
|
1495 |
}
|
1496 |
|
1497 |
+
public static function generatePassword($length = 12) {
|
1498 |
+
$chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
|
1499 |
+
|
1500 |
+
$password = '';
|
1501 |
+
for ($i = 0; $i < $length; $i++) {
|
1502 |
+
$password .= substr($chars, mt_rand(0, strlen($chars) - 1), 1);
|
1503 |
+
}
|
1504 |
+
|
1505 |
+
return $password;
|
1506 |
+
}
|
1507 |
+
|
1508 |
public function sq_activate() {
|
1509 |
set_transient('sq_activate', true);
|
1510 |
set_transient('sq_rewrite', true);
|
1650 |
|
1651 |
public static function getBusinessLink() {
|
1652 |
if (!self::getOption('sq_google_serp_active')) {
|
1653 |
+
return _SQ_DASH_URL_ . 'login/?token=' . self::getToken() . '&redirect_to=' . _SQ_DASH_URL_ . 'user/plans?pid=31';
|
1654 |
} else {
|
1655 |
return admin_url('admin.php?page=sq_posts');
|
1656 |
}
|
1657 |
|
1658 |
}
|
1659 |
+
|
1660 |
+
public static function isGutenberg() {
|
1661 |
+
if (function_exists('is_gutenberg_page')) {
|
1662 |
+
return @is_gutenberg_page();
|
1663 |
+
}
|
1664 |
+
return false;
|
1665 |
+
}
|
1666 |
}
|
config/config.php
CHANGED
@@ -60,8 +60,11 @@ define('SQ_ALL_PATTERNS', json_encode(array(
|
|
60 |
'{{modified}}' => __("Replaces the publication date of a post/page with the modified one", _SQ_PLUGIN_NAME_),
|
61 |
'{{name}}' => __("Displays the author's nicename", _SQ_PLUGIN_NAME_),
|
62 |
'{{user_description}}' => __("Adds the author's biographical info to the post description", _SQ_PLUGIN_NAME_),
|
63 |
-
'{{currentdate}}' => __("Displays the current date
|
64 |
'{{keyword}}' => __("Adds the post's keyword to the post description", _SQ_PLUGIN_NAME_),
|
|
|
|
|
|
|
65 |
)));
|
66 |
|
67 |
|
@@ -80,3 +83,14 @@ define('SQ_ALL_SEP', json_encode(array(
|
|
80 |
'sc-lt' => '<',
|
81 |
'sc-gt' => '>',
|
82 |
)));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
'{{modified}}' => __("Replaces the publication date of a post/page with the modified one", _SQ_PLUGIN_NAME_),
|
61 |
'{{name}}' => __("Displays the author's nicename", _SQ_PLUGIN_NAME_),
|
62 |
'{{user_description}}' => __("Adds the author's biographical info to the post description", _SQ_PLUGIN_NAME_),
|
63 |
+
'{{currentdate}}' => __("Displays the current date", _SQ_PLUGIN_NAME_),
|
64 |
'{{keyword}}' => __("Adds the post's keyword to the post description", _SQ_PLUGIN_NAME_),
|
65 |
+
'{{currentday}}' => __("Adds the current day", _SQ_PLUGIN_NAME_),
|
66 |
+
'{{currentmonth}}' => __("Adds the current month", _SQ_PLUGIN_NAME_),
|
67 |
+
'{{currentyear}}' => __("Adds the current year", _SQ_PLUGIN_NAME_),
|
68 |
)));
|
69 |
|
70 |
|
83 |
'sc-lt' => '<',
|
84 |
'sc-gt' => '>',
|
85 |
)));
|
86 |
+
|
87 |
+
define('SQ_ALL_JSONLD_TYPES', json_encode(array(
|
88 |
+
'home' => 'website',
|
89 |
+
'profile' => 'profile',
|
90 |
+
'post' => 'article',
|
91 |
+
'page' => 'website',
|
92 |
+
'book' => 'book',
|
93 |
+
'music' => 'music',
|
94 |
+
'product' => 'product',
|
95 |
+
'video' => 'video'
|
96 |
+
)));
|
config/paths.php
CHANGED
@@ -14,7 +14,6 @@ defined('_SQ_API_URL_') || define('_SQ_API_URL_', '//api.squirrly.co/');
|
|
14 |
|
15 |
defined('_SQ_STATIC_API_URL_') || define('_SQ_STATIC_API_URL_', '//storage.googleapis.com/squirrly/');
|
16 |
defined('_SQ_SUPPORT_EMAIL_URL_') || define('_SQ_SUPPORT_EMAIL_URL_', 'http://plugin.squirrly.co/contact/');
|
17 |
-
defined('_SQ_SUPPORT_GOOGLE_URL_') || define('_SQ_SUPPORT_GOOGLE_URL_', 'https://plus.google.com/u/0/communities/104196720668136264985');
|
18 |
defined('_SQ_SUPPORT_FACEBOOK_URL_') || define('_SQ_SUPPORT_FACEBOOK_URL_', 'https://www.facebook.com/Squirrly.co');
|
19 |
defined('_SQ_SUPPORT_URL_') || define('_SQ_SUPPORT_URL_', _SQ_SUPPORT_FACEBOOK_URL_);
|
20 |
|
@@ -33,19 +32,23 @@ define('_SQ_URL_', plugins_url('', $currentDir));
|
|
33 |
define('_SQ_THEME_URL_', _SQ_URL_ . '/view/');
|
34 |
define('_SQ_THEME_RELATIVE_URL_', ltrim(parse_url(_SQ_THEME_URL_, PHP_URL_PATH), '/'));
|
35 |
|
|
|
|
|
|
|
36 |
|
37 |
-
$
|
38 |
if (is_dir($upload_dir['basedir'])) {
|
39 |
$upload_path = $upload_dir['basedir'] . '/' . _SQ_NAME_ . '/';
|
|
|
40 |
|
41 |
-
|
42 |
if (!is_dir($upload_path)) {
|
43 |
wp_mkdir_p($upload_path);
|
44 |
}
|
45 |
|
46 |
-
if (is_dir($upload_path) &&
|
47 |
-
define('_SQ_CACHE_DIR_', realpath($upload_path) . '/');
|
48 |
-
define('_SQ_CACHE_URL_', $upload_dir['baseurl'] . '/' . _SQ_NAME_ . '/');
|
49 |
}
|
50 |
}
|
51 |
|
14 |
|
15 |
defined('_SQ_STATIC_API_URL_') || define('_SQ_STATIC_API_URL_', '//storage.googleapis.com/squirrly/');
|
16 |
defined('_SQ_SUPPORT_EMAIL_URL_') || define('_SQ_SUPPORT_EMAIL_URL_', 'http://plugin.squirrly.co/contact/');
|
|
|
17 |
defined('_SQ_SUPPORT_FACEBOOK_URL_') || define('_SQ_SUPPORT_FACEBOOK_URL_', 'https://www.facebook.com/Squirrly.co');
|
18 |
defined('_SQ_SUPPORT_URL_') || define('_SQ_SUPPORT_URL_', _SQ_SUPPORT_FACEBOOK_URL_);
|
19 |
|
32 |
define('_SQ_THEME_URL_', _SQ_URL_ . '/view/');
|
33 |
define('_SQ_THEME_RELATIVE_URL_', ltrim(parse_url(_SQ_THEME_URL_, PHP_URL_PATH), '/'));
|
34 |
|
35 |
+
$upload_dir = array();
|
36 |
+
$upload_dir['baseurl'] = WP_CONTENT_URL . '/uploads';
|
37 |
+
$upload_dir['basedir'] = WP_CONTENT_DIR . '/uploads';
|
38 |
|
39 |
+
$upload_path = '';
|
40 |
if (is_dir($upload_dir['basedir'])) {
|
41 |
$upload_path = $upload_dir['basedir'] . '/' . _SQ_NAME_ . '/';
|
42 |
+
}
|
43 |
|
44 |
+
if ($upload_path <> '') {
|
45 |
if (!is_dir($upload_path)) {
|
46 |
wp_mkdir_p($upload_path);
|
47 |
}
|
48 |
|
49 |
+
if (is_dir($upload_path) && function_exists('wp_is_writable') && wp_is_writable($upload_path)) {
|
50 |
+
defined('_SQ_CACHE_DIR_') || define('_SQ_CACHE_DIR_', realpath($upload_path) . '/');
|
51 |
+
defined('_SQ_CACHE_URL_') || define('_SQ_CACHE_URL_', $upload_dir['baseurl'] . '/' . _SQ_NAME_ . '/');
|
52 |
}
|
53 |
}
|
54 |
|
controllers/Api.php
CHANGED
@@ -35,7 +35,7 @@ class SQ_Controllers_Api extends SQ_Classes_FrontController {
|
|
35 |
$token = sanitize_text_field($token);
|
36 |
}
|
37 |
|
38 |
-
if (SQ_Classes_Tools::
|
39 |
SQ_Classes_Action::apiSaveSettings();
|
40 |
exit(json_encode(array('error' => __('Connection expired. Please try again', _SQ_PLUGIN_NAME_))));
|
41 |
|
35 |
$token = sanitize_text_field($token);
|
36 |
}
|
37 |
|
38 |
+
if (SQ_Classes_Tools::getToken() <> $token) {
|
39 |
SQ_Classes_Action::apiSaveSettings();
|
40 |
exit(json_encode(array('error' => __('Connection expired. Please try again', _SQ_PLUGIN_NAME_))));
|
41 |
|
controllers/Frontend.php
CHANGED
@@ -8,19 +8,21 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
|
|
8 |
public function __construct() {
|
9 |
if (SQ_Classes_Tools::isAjax()) return;
|
10 |
parent::__construct();
|
11 |
-
|
12 |
//For favicon and Robots
|
13 |
$this->hookCheckFiles();
|
14 |
|
15 |
//Hook the buffer on both actions in case one fails
|
16 |
if (!defined('CE_FILE')) { //compatible with other cache plugins
|
17 |
-
add_action('plugins_loaded', array($this, 'hookBuffer'));
|
18 |
}
|
19 |
-
add_action('template_redirect', array($this, 'hookBuffer'));
|
20 |
|
21 |
//Set the post so that Squirrly will know which one to process
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
24 |
/* Check if sitemap is on and Load the Sitemap */
|
25 |
if (SQ_Classes_Tools::getOption('sq_auto_sitemap')) SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps');
|
26 |
|
@@ -38,7 +40,7 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
|
|
38 |
public function hookBuffer() {
|
39 |
//remove the action is already hocked in plugins_loaded
|
40 |
if (!did_action('template_redirect')) {
|
41 |
-
remove_action('template_redirect', array($this, 'hookBuffer'));
|
42 |
}
|
43 |
|
44 |
if ($this->isSquirrlySeoEnabled()) {
|
8 |
public function __construct() {
|
9 |
if (SQ_Classes_Tools::isAjax()) return;
|
10 |
parent::__construct();
|
|
|
11 |
//For favicon and Robots
|
12 |
$this->hookCheckFiles();
|
13 |
|
14 |
//Hook the buffer on both actions in case one fails
|
15 |
if (!defined('CE_FILE')) { //compatible with other cache plugins
|
16 |
+
add_action('plugins_loaded', array($this, 'hookBuffer'), 9);
|
17 |
}
|
18 |
+
add_action('template_redirect', array($this, 'hookBuffer'), 1);
|
19 |
|
20 |
//Set the post so that Squirrly will know which one to process
|
21 |
+
if(defined('BP_REQUIRED_PHP_VERSION')) {
|
22 |
+
add_action('template_redirect', array($this->model, 'setPost'), 10);
|
23 |
+
}else{
|
24 |
+
add_action('template_redirect', array($this->model, 'setPost'), 9);
|
25 |
+
}
|
26 |
/* Check if sitemap is on and Load the Sitemap */
|
27 |
if (SQ_Classes_Tools::getOption('sq_auto_sitemap')) SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps');
|
28 |
|
40 |
public function hookBuffer() {
|
41 |
//remove the action is already hocked in plugins_loaded
|
42 |
if (!did_action('template_redirect')) {
|
43 |
+
remove_action('template_redirect', array($this, 'hookBuffer'), 1);
|
44 |
}
|
45 |
|
46 |
if ($this->isSquirrlySeoEnabled()) {
|
controllers/Menu.php
CHANGED
@@ -11,6 +11,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
|
|
11 |
public function __construct() {
|
12 |
parent::__construct();
|
13 |
add_action('admin_bar_menu', array($this, 'hookTopmenu'), 999);
|
|
|
14 |
}
|
15 |
|
16 |
/**
|
@@ -69,12 +70,17 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
|
|
69 |
SQ_Classes_Error::setMessage(sprintf(__("An error occurred during activation. If this error persists, please contact us at: %s", _SQ_PLUGIN_NAME_), _SQ_SUPPORT_EMAIL_));
|
70 |
}
|
71 |
|
|
|
|
|
|
|
72 |
}
|
73 |
//activate the cron job if not exists
|
74 |
if (!wp_get_schedule('sq_processCron')) {
|
75 |
wp_schedule_event(time(), 'hourly', 'sq_processCron');
|
76 |
}
|
77 |
|
|
|
|
|
78 |
add_filter('rewrite_rules_array', array(SQ_Classes_ObjController::getClass('SQ_Core_BlockSettingsSeo'), 'rewrite_rules'), 999, 1);
|
79 |
}
|
80 |
|
@@ -97,6 +103,9 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
|
|
97 |
'href' => admin_url('admin.php?page=sq_posts'),
|
98 |
'parent' => false
|
99 |
));
|
|
|
|
|
|
|
100 |
}
|
101 |
|
102 |
if (is_admin()) {
|
@@ -118,8 +127,14 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
|
|
118 |
return;
|
119 |
}
|
120 |
|
121 |
-
|
122 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
} else {
|
124 |
//If user set not to load Squirrly in frontend
|
125 |
if (!SQ_Classes_Tools::getOption('sq_use_frontend')) {
|
@@ -176,6 +191,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
|
|
176 |
public function hookMenu() {
|
177 |
|
178 |
$this->post_type = SQ_Classes_Tools::getOption('sq_post_types');
|
|
|
179 |
|
180 |
//Push the Analytics Check
|
181 |
if (strpos($_SERVER['REQUEST_URI'], '?page=sq_dashboard') !== false) {
|
@@ -198,29 +214,15 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
|
|
198 |
}
|
199 |
}
|
200 |
|
201 |
-
|
202 |
-
//Show bar to go back and finish the help
|
203 |
-
if (current_user_can('manage_options') && ($this->is_page('edit') || strpos($_SERVER['REQUEST_URI'], '?page=sq_posts') !== false)) {
|
204 |
-
if (SQ_Classes_Tools::getOption('active_help') <> '' && !SQ_Classes_Tools::getOption('ignore_warn')) {
|
205 |
-
SQ_Classes_Error::setError(sprintf(__('Go back and complete the Squirrly Tasks for today %sContinue%s', _SQ_PLUGIN_NAME_), '<a href="admin.php?page=sq_' . SQ_Classes_Tools::getOption('active_help') . '" class="sq_button" title="Continue the Help">', '</a>'), 'helpnotice');
|
206 |
-
}
|
207 |
-
|
208 |
-
if (strpos($_SERVER['REQUEST_URI'], '?page=sq_posts') !== false) {
|
209 |
-
$analytics_alert = 0;
|
210 |
-
}
|
211 |
-
}
|
212 |
-
|
213 |
$dashboard_alert = (int)(SQ_Classes_Tools::getOption('sq_dashboard') == 0);
|
214 |
|
215 |
-
|
216 |
///////////////
|
217 |
-
|
218 |
$this->model->addMenu(array(ucfirst(_SQ_NAME_),
|
219 |
'Squirrly' . (($analytics_alert) ? SQ_Classes_Tools::showNotices($analytics_alert, 'errors_count') : ''),
|
220 |
'edit_posts',
|
221 |
'sq_dashboard',
|
222 |
null,
|
223 |
-
|
224 |
));
|
225 |
|
226 |
$this->model->addSubmenu(array('sq_dashboard',
|
@@ -281,7 +283,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
|
|
281 |
array(SQ_Classes_ObjController::getClass('SQ_Core_BlockCopyright'), 'init')
|
282 |
));
|
283 |
|
284 |
-
if (current_user_can('manage_options')) {
|
285 |
$this->model->addSubmenu(array('sq_dashboard',
|
286 |
ucfirst(_SQ_NAME_) . __(' SEO Audit', _SQ_PLUGIN_NAME_),
|
287 |
__('Site Audit', _SQ_PLUGIN_NAME_),
|
@@ -316,13 +318,15 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
|
|
316 |
array(SQ_Classes_ObjController::getClass('SQ_Core_BlockPatterns'), 'init')
|
317 |
));
|
318 |
|
319 |
-
$
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
|
|
|
|
326 |
|
327 |
$this->model->addSubmenu(array('sq_dashboard',
|
328 |
ucfirst(_SQ_NAME_) . __(' Support', _SQ_PLUGIN_NAME_),
|
@@ -332,56 +336,76 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
|
|
332 |
array(SQ_Classes_ObjController::getClass('SQ_Core_BlockCustomerService'), 'init')
|
333 |
));
|
334 |
|
335 |
-
$
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
|
|
|
|
342 |
|
343 |
if (current_user_can('manage_options')) {
|
344 |
$this->model->addSubmenu(array('sq_dashboard',
|
345 |
-
__('Import SEO
|
346 |
-
__('Import SEO', _SQ_PLUGIN_NAME_),
|
347 |
'edit_posts',
|
348 |
'sq_import',
|
349 |
array(SQ_Classes_ObjController::getClass('SQ_Core_BlockImport'), 'init')
|
350 |
));
|
351 |
}
|
352 |
|
353 |
-
|
354 |
-
foreach ($this->post_type as $type) {
|
355 |
-
$this->model->addMeta(array('post' . _SQ_NAME_,
|
356 |
-
ucfirst(_SQ_NAME_),
|
357 |
-
array(SQ_Classes_ObjController::getClass('SQ_Controllers_Post'), 'init'),
|
358 |
-
$type,
|
359 |
-
'side',
|
360 |
-
'high'
|
361 |
-
));
|
362 |
-
}
|
363 |
-
|
364 |
-
|
365 |
//Add the Rank in the Posts list
|
366 |
$postlist = SQ_Classes_ObjController::getClass('SQ_Controllers_PostsList');
|
367 |
if (is_object($postlist)) {
|
368 |
$postlist->init();
|
369 |
}
|
370 |
|
371 |
-
|
372 |
}
|
373 |
|
374 |
/**
|
375 |
* Add Post Editor Meta Box
|
376 |
*/
|
377 |
public function addMetabox() {
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
385 |
}
|
386 |
|
387 |
/**
|
11 |
public function __construct() {
|
12 |
parent::__construct();
|
13 |
add_action('admin_bar_menu', array($this, 'hookTopmenu'), 999);
|
14 |
+
add_action('do_meta_boxes', array($this, 'addMetabox'));
|
15 |
}
|
16 |
|
17 |
/**
|
70 |
SQ_Classes_Error::setMessage(sprintf(__("An error occurred during activation. If this error persists, please contact us at: %s", _SQ_PLUGIN_NAME_), _SQ_SUPPORT_EMAIL_));
|
71 |
}
|
72 |
|
73 |
+
//This option is use for custom Package details
|
74 |
+
SQ_Classes_Tools::updatePluginData(); //update text in case of devkit
|
75 |
+
|
76 |
}
|
77 |
//activate the cron job if not exists
|
78 |
if (!wp_get_schedule('sq_processCron')) {
|
79 |
wp_schedule_event(time(), 'hourly', 'sq_processCron');
|
80 |
}
|
81 |
|
82 |
+
//Hook the post save action
|
83 |
+
SQ_Classes_ObjController::getClass('SQ_Controllers_Post')->hookPost();
|
84 |
add_filter('rewrite_rules_array', array(SQ_Classes_ObjController::getClass('SQ_Core_BlockSettingsSeo'), 'rewrite_rules'), 999, 1);
|
85 |
}
|
86 |
|
103 |
'href' => admin_url('admin.php?page=sq_posts'),
|
104 |
'parent' => false
|
105 |
));
|
106 |
+
|
107 |
+
//Hood the TinyMCE editor andd add the H2 button
|
108 |
+
SQ_Classes_ObjController::getClass('SQ_Controllers_Post')->hookEditor();
|
109 |
}
|
110 |
|
111 |
if (is_admin()) {
|
127 |
return;
|
128 |
}
|
129 |
|
130 |
+
$this->model->addMeta(array('sq_blocksnippet',
|
131 |
+
ucfirst(_SQ_NAME_) . ' ' . __('SEO Snippet', _SQ_PLUGIN_NAME_),
|
132 |
+
array(SQ_Classes_ObjController::getClass('SQ_Controllers_FrontMenu'), 'show'),
|
133 |
+
null,
|
134 |
+
'normal',
|
135 |
+
'high'
|
136 |
+
));
|
137 |
+
|
138 |
} else {
|
139 |
//If user set not to load Squirrly in frontend
|
140 |
if (!SQ_Classes_Tools::getOption('sq_use_frontend')) {
|
191 |
public function hookMenu() {
|
192 |
|
193 |
$this->post_type = SQ_Classes_Tools::getOption('sq_post_types');
|
194 |
+
$menu = SQ_Classes_Tools::getOption('menu');
|
195 |
|
196 |
//Push the Analytics Check
|
197 |
if (strpos($_SERVER['REQUEST_URI'], '?page=sq_dashboard') !== false) {
|
214 |
}
|
215 |
}
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
$dashboard_alert = (int)(SQ_Classes_Tools::getOption('sq_dashboard') == 0);
|
218 |
|
|
|
219 |
///////////////
|
|
|
220 |
$this->model->addMenu(array(ucfirst(_SQ_NAME_),
|
221 |
'Squirrly' . (($analytics_alert) ? SQ_Classes_Tools::showNotices($analytics_alert, 'errors_count') : ''),
|
222 |
'edit_posts',
|
223 |
'sq_dashboard',
|
224 |
null,
|
225 |
+
SQ_Classes_Tools::getOption('sq_logo')
|
226 |
));
|
227 |
|
228 |
$this->model->addSubmenu(array('sq_dashboard',
|
283 |
array(SQ_Classes_ObjController::getClass('SQ_Core_BlockCopyright'), 'init')
|
284 |
));
|
285 |
|
286 |
+
if ($menu['show_audit'] && current_user_can('manage_options')) {
|
287 |
$this->model->addSubmenu(array('sq_dashboard',
|
288 |
ucfirst(_SQ_NAME_) . __(' SEO Audit', _SQ_PLUGIN_NAME_),
|
289 |
__('Site Audit', _SQ_PLUGIN_NAME_),
|
318 |
array(SQ_Classes_ObjController::getClass('SQ_Core_BlockPatterns'), 'init')
|
319 |
));
|
320 |
|
321 |
+
if ($menu['show_account_info']) {
|
322 |
+
$this->model->addSubmenu(array('sq_dashboard',
|
323 |
+
ucfirst(_SQ_NAME_) . __(' Account Info', _SQ_PLUGIN_NAME_),
|
324 |
+
__('Account Info', _SQ_PLUGIN_NAME_),
|
325 |
+
'manage_options',
|
326 |
+
'sq_account',
|
327 |
+
array(SQ_Classes_ObjController::getClass('SQ_Core_BlockAccount'), 'init')
|
328 |
+
));
|
329 |
+
}
|
330 |
|
331 |
$this->model->addSubmenu(array('sq_dashboard',
|
332 |
ucfirst(_SQ_NAME_) . __(' Support', _SQ_PLUGIN_NAME_),
|
336 |
array(SQ_Classes_ObjController::getClass('SQ_Core_BlockCustomerService'), 'init')
|
337 |
));
|
338 |
|
339 |
+
if ($menu['show_affiliate']) {
|
340 |
+
$this->model->addSubmenu(array('sq_dashboard',
|
341 |
+
__('Become an Affiliate with ', _SQ_PLUGIN_NAME_) . ucfirst(_SQ_NAME_),
|
342 |
+
__('Become an Affiliate', _SQ_PLUGIN_NAME_),
|
343 |
+
'edit_posts',
|
344 |
+
'sq_affiliate',
|
345 |
+
array(SQ_Classes_ObjController::getClass('SQ_Core_BlockAffiliate'), 'init')
|
346 |
+
));
|
347 |
+
}
|
348 |
|
349 |
if (current_user_can('manage_options')) {
|
350 |
$this->model->addSubmenu(array('sq_dashboard',
|
351 |
+
__('Import, Backup & Restore SEO', _SQ_PLUGIN_NAME_),
|
352 |
+
__('Import/Backup SEO', _SQ_PLUGIN_NAME_),
|
353 |
'edit_posts',
|
354 |
'sq_import',
|
355 |
array(SQ_Classes_ObjController::getClass('SQ_Core_BlockImport'), 'init')
|
356 |
));
|
357 |
}
|
358 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
//Add the Rank in the Posts list
|
360 |
$postlist = SQ_Classes_ObjController::getClass('SQ_Controllers_PostsList');
|
361 |
if (is_object($postlist)) {
|
362 |
$postlist->init();
|
363 |
}
|
364 |
|
|
|
365 |
}
|
366 |
|
367 |
/**
|
368 |
* Add Post Editor Meta Box
|
369 |
*/
|
370 |
public function addMetabox() {
|
371 |
+
//Move the Box is gutenberg is active
|
372 |
+
if(!empty($this->post_type)) {
|
373 |
+
foreach ($this->post_type as $type) {
|
374 |
+
if ($metabox = unserialize(SQ_Classes_Tools::getUserMeta('meta-box-order_' . $type))) {
|
375 |
+
extract($metabox);
|
376 |
+
|
377 |
+
if (isset($side) && isset($normal)) {
|
378 |
+
$side = explode(',', $side);
|
379 |
+
$normal = explode(',', $normal);
|
380 |
+
if (SQ_Classes_Tools::isGutenberg() && !in_array('post' . _SQ_NAME_, $normal)) {
|
381 |
+
$normal = array_merge(array('post' . _SQ_NAME_), $normal);
|
382 |
+
$metabox['normal'] = join(',', array_unique($normal));
|
383 |
+
|
384 |
+
$side = array_diff($side, array('post' . _SQ_NAME_));
|
385 |
+
$metabox['side'] = join(',', array_unique($side));
|
386 |
+
SQ_Classes_Tools::saveUserMeta('meta-box-order_' . $type, $metabox);
|
387 |
+
|
388 |
+
} elseif (!SQ_Classes_Tools::isGutenberg() && in_array('post' . _SQ_NAME_, $normal)) {
|
389 |
+
$side = array_merge(array('post' . _SQ_NAME_), $side);
|
390 |
+
$metabox['side'] = join(',', array_unique($side));
|
391 |
+
|
392 |
+
$normal = array_diff($normal, array('post' . _SQ_NAME_));
|
393 |
+
$metabox['normal'] = join(',', array_unique($normal));
|
394 |
+
SQ_Classes_Tools::saveUserMeta('meta-box-order_' . $type, $metabox);
|
395 |
+
}
|
396 |
+
}
|
397 |
+
}
|
398 |
+
|
399 |
+
$this->model->addMeta(array('post' . _SQ_NAME_,
|
400 |
+
ucfirst(_SQ_NAME_),
|
401 |
+
array(SQ_Classes_ObjController::getClass('SQ_Controllers_Post'), 'init'),
|
402 |
+
$type,
|
403 |
+
(SQ_Classes_Tools::isGutenberg() ? 'normal' : 'side'),
|
404 |
+
'high'
|
405 |
+
));
|
406 |
+
}
|
407 |
+
}
|
408 |
+
|
409 |
}
|
410 |
|
411 |
/**
|
controllers/Post.php
CHANGED
@@ -4,28 +4,41 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
|
|
4 |
|
5 |
public $saved;
|
6 |
|
|
|
|
|
|
|
|
|
|
|
7 |
/**
|
8 |
-
*
|
9 |
-
*
|
10 |
-
* @return void
|
11 |
*/
|
12 |
-
public function
|
13 |
-
$this->saved = array();
|
14 |
-
|
15 |
-
add_filter('tiny_mce_before_init', array($this->model, 'setCallback'));
|
16 |
-
add_filter('mce_external_plugins', array($this->model, 'addHeadingButton'));
|
17 |
-
add_filter('mce_buttons', array($this->model, 'registerButton'));
|
18 |
-
|
19 |
if (SQ_Classes_Tools::getOption('sq_api') == '')
|
20 |
return;
|
21 |
|
22 |
-
|
23 |
-
add_action('
|
24 |
-
|
|
|
|
|
25 |
|
26 |
if (SQ_Classes_Tools::getOption('sq_use') && SQ_Classes_Tools::getOption('sq_auto_sitemap')) {
|
27 |
add_action('transition_post_status', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps'), 'refreshSitemap'), 9999, 3);
|
28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
}
|
30 |
|
31 |
/**
|
@@ -54,90 +67,49 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
|
|
54 |
echo '<script type="text/javascript">(function($) {$.sq_tinymce = { callback: function () {}, setup: function(ed){} } })(jQuery);</script>';
|
55 |
}
|
56 |
|
57 |
-
/**
|
58 |
-
* Hook the Shopp plugin save product
|
59 |
-
*/
|
60 |
-
public function hookShopp($product) {
|
61 |
-
$this->checkSeo($product->id);
|
62 |
-
}
|
63 |
|
64 |
/**
|
65 |
-
*
|
66 |
-
* @param
|
|
|
|
|
67 |
*/
|
68 |
-
public function
|
69 |
-
|
70 |
-
|
71 |
-
$this->saved[$post_id] = false;
|
72 |
}
|
73 |
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
//If the post is a new or edited post
|
78 |
-
if ((SQ_Classes_Tools::getValue('action')) == 'editpost' &&
|
79 |
-
wp_is_post_autosave($post_id) == '' &&
|
80 |
-
get_post_status($post_id) != 'auto-draft' &&
|
81 |
-
get_post_status($post_id) != 'inherit' &&
|
82 |
-
SQ_Classes_Tools::getValue('autosave') == ''
|
83 |
-
) {
|
84 |
-
|
85 |
-
if ($this->saved[$post_id] === false) {
|
86 |
-
//check the SEO from Squirrly Live Assistant
|
87 |
-
$this->checkSeo($post_id, get_post_status($post_id));
|
88 |
-
//check the remote images
|
89 |
-
$this->checkImage($post_id);
|
90 |
-
//check sq mark remained
|
91 |
-
$this->removeHighlight($post_id);
|
92 |
-
}
|
93 |
-
$this->saved[$post_id] = true;
|
94 |
-
}
|
95 |
-
|
96 |
-
|
97 |
-
add_action('save_post', array($this, 'hookSavePost'), 99);
|
98 |
-
}
|
99 |
-
|
100 |
-
/**
|
101 |
-
* Remove the Squirrly Highlights in case there are some left
|
102 |
-
* @param $post_id
|
103 |
-
*/
|
104 |
-
public function removeHighlight($post_id) {
|
105 |
-
$content = SQ_Classes_Tools::getValue('post_content', '', true); //get the content in html format
|
106 |
-
|
107 |
-
if (strpos($content, '<mark') !== false) {
|
108 |
-
$content = preg_replace('/<mark[^>]*data-markjs="true"[^>]*>([^<]*)<\/mark>/i', '$1', $content);
|
109 |
-
wp_update_post(array(
|
110 |
-
'ID' => $post_id,
|
111 |
-
'post_content' => $content)
|
112 |
-
);
|
113 |
}
|
|
|
114 |
}
|
115 |
|
116 |
/**
|
117 |
* Check if the image is a remote image and save it locally
|
118 |
*
|
119 |
-
* @param
|
120 |
-
* @
|
|
|
121 |
*/
|
122 |
-
public function checkImage($
|
|
|
|
|
|
|
|
|
|
|
123 |
|
124 |
//if the option to save the images locally is set on
|
125 |
if (SQ_Classes_Tools::getOption('sq_local_images')) {
|
126 |
-
|
127 |
@set_time_limit(90);
|
128 |
-
$local_file = false;
|
129 |
|
130 |
-
$content = SQ_Classes_Tools::getValue('post_content', '', true); //get the content in html format
|
131 |
-
$tmpcontent = trim(html_entity_decode($content), "\n");
|
132 |
$urls = array();
|
133 |
-
|
134 |
if (function_exists('preg_match_all')) {
|
|
|
135 |
|
136 |
-
|
137 |
-
if (is_array($out)) {
|
138 |
-
|
139 |
if (!is_array($out[1]) || count($out[1]) == 0)
|
140 |
-
return;
|
141 |
|
142 |
if (get_bloginfo('wpurl') <> '') {
|
143 |
$domain = parse_url(get_bloginfo('wpurl'));
|
@@ -155,8 +127,9 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
|
|
155 |
}
|
156 |
}
|
157 |
|
158 |
-
if (!is_array($urls) || (is_array($urls) && count($urls) == 0))
|
159 |
-
return;
|
|
|
160 |
|
161 |
$urls = @array_unique($urls);
|
162 |
|
@@ -168,16 +141,16 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
|
|
168 |
|
169 |
$local_file = $file['url'];
|
170 |
if ($local_file !== false) {
|
171 |
-
$
|
172 |
|
173 |
-
if (!$this->model->findAttachmentByUrl(
|
174 |
$attach_id = wp_insert_attachment(array(
|
175 |
'post_mime_type' => $file['type'],
|
176 |
'post_title' => SQ_Classes_Tools::getValue('sq_keyword', preg_replace('/\.[^.]+$/', '', $file['filename'])),
|
177 |
'post_content' => '',
|
178 |
'post_status' => 'inherit',
|
179 |
'guid' => $local_file
|
180 |
-
), $file['file'], $
|
181 |
|
182 |
$attach_data = wp_generate_attachment_metadata($attach_id, $file['file']);
|
183 |
wp_update_attachment_metadata($attach_id, $attach_data);
|
@@ -186,44 +159,43 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
|
|
186 |
}
|
187 |
|
188 |
if (microtime(true) - $time >= 20) {
|
189 |
-
|
190 |
}
|
191 |
|
192 |
}
|
193 |
|
194 |
|
195 |
-
if ($local_file !== false) {
|
196 |
-
wp_update_post(array(
|
197 |
-
'ID' => $post_id,
|
198 |
-
'post_content' => $content)
|
199 |
-
);
|
200 |
-
}
|
201 |
}
|
|
|
|
|
202 |
}
|
203 |
|
204 |
|
205 |
/**
|
206 |
* Check the SEO from Squirrly Live Assistant
|
207 |
*
|
208 |
-
* @param
|
209 |
-
* @param
|
|
|
210 |
*/
|
211 |
-
public function checkSeo($
|
|
|
|
|
|
|
|
|
212 |
$args = array();
|
213 |
|
214 |
-
$seo = SQ_Classes_Tools::getValue('sq_seo');
|
215 |
|
216 |
if (is_array($seo) && count($seo) > 0)
|
217 |
$args['seo'] = implode(',', $seo);
|
218 |
|
219 |
-
$args['keyword'] = SQ_Classes_Tools::getValue('sq_keyword');
|
220 |
-
|
221 |
-
$args['status'] = $status;
|
222 |
-
$args['permalink'] = get_permalink($post_id);
|
223 |
-
$args['permalink'] = $this->getPaged($args['permalink']);
|
224 |
-
$args['author'] = (int)SQ_Classes_Tools::getUserID();
|
225 |
-
$args['post_id'] = $post_id;
|
226 |
|
|
|
|
|
|
|
|
|
227 |
|
228 |
if (SQ_Classes_Tools::getOption('sq_force_savepost')) {
|
229 |
SQ_Classes_Action::apiCall('sq/seo/post', $args, 10);
|
@@ -240,33 +212,26 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController {
|
|
240 |
wp_schedule_single_event(time(), 'sq_processApi');
|
241 |
|
242 |
//If the queue is too big ... means that the cron is not working
|
243 |
-
if(count($process) > 5)
|
244 |
-
SQ_Classes_Tools::saveOptions('sq_force_savepost',1);
|
245 |
-
}
|
246 |
}
|
247 |
|
248 |
//Save the keyword for this post
|
249 |
-
if ($json = $this->model->getKeyword($
|
250 |
$json->keyword = addslashes(SQ_Classes_Tools::getValue('sq_keyword'));
|
251 |
-
$this->model->saveKeyword($
|
252 |
} else {
|
253 |
$args = array();
|
254 |
$args['keyword'] = addslashes(SQ_Classes_Tools::getValue('sq_keyword'));
|
255 |
-
$this->model->saveKeyword($
|
256 |
}
|
257 |
|
258 |
//Save the snippet in case is edited in backend and not saved
|
259 |
SQ_Classes_ObjController::getClass('SQ_Controllers_FrontMenu')->saveSEO();
|
|
|
260 |
//check for custom SEO
|
261 |
-
$this->_checkBriefcaseKeywords($
|
262 |
-
}
|
263 |
|
264 |
-
|
265 |
-
$page = (int)get_query_var('paged');
|
266 |
-
if ($page && $page > 1) {
|
267 |
-
$link = trailingslashit($link) . "page/" . "$page" . '/';
|
268 |
-
}
|
269 |
-
return $link;
|
270 |
}
|
271 |
|
272 |
/**
|
4 |
|
5 |
public $saved;
|
6 |
|
7 |
+
public function init() {
|
8 |
+
parent::init();
|
9 |
+
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('post');
|
10 |
+
}
|
11 |
+
|
12 |
/**
|
13 |
+
* Hook the post save
|
|
|
|
|
14 |
*/
|
15 |
+
public function hookPost() {
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
if (SQ_Classes_Tools::getOption('sq_api') == '')
|
17 |
return;
|
18 |
|
19 |
+
//Hook and save the Snippet and Keywords
|
20 |
+
add_action('wp_insert_attachment_data', array($this, 'checkSeo'), 11, 2);
|
21 |
+
add_filter('wp_insert_post_data', array($this, 'checkSeo'), 11, 2);
|
22 |
+
add_filter('wp_insert_post_data', array($this, 'removeHighlight'), 12, 2);
|
23 |
+
add_filter('wp_insert_post_data', array($this, 'checkImage'), 13, 2);
|
24 |
|
25 |
if (SQ_Classes_Tools::getOption('sq_use') && SQ_Classes_Tools::getOption('sq_auto_sitemap')) {
|
26 |
add_action('transition_post_status', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps'), 'refreshSitemap'), 9999, 3);
|
27 |
}
|
28 |
+
|
29 |
+
}
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Initialize the TinyMCE editor for the current use
|
33 |
+
*
|
34 |
+
* @return void
|
35 |
+
*/
|
36 |
+
public function hookEditor() {
|
37 |
+
$this->saved = array();
|
38 |
+
|
39 |
+
//Add the H2 icon on visual editor
|
40 |
+
add_filter('mce_external_plugins', array($this->model, 'addHeadingButton'));
|
41 |
+
add_filter('mce_buttons', array($this->model, 'registerButton'));
|
42 |
}
|
43 |
|
44 |
/**
|
67 |
echo '<script type="text/javascript">(function($) {$.sq_tinymce = { callback: function () {}, setup: function(ed){} } })(jQuery);</script>';
|
68 |
}
|
69 |
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
/**
|
72 |
+
* Remove the Squirrly Highlights in case there are some left
|
73 |
+
* @param array $post_data
|
74 |
+
* @param array $postarr
|
75 |
+
* @return array
|
76 |
*/
|
77 |
+
public function removeHighlight($post_data, $postarr) {
|
78 |
+
if (!isset($post_data['post_content']) || !isset($postarr['ID'])) {
|
79 |
+
return $post_data;
|
|
|
80 |
}
|
81 |
|
82 |
+
if (strpos($post_data['post_content'], '<mark') !== false) {
|
83 |
+
$post_data['post_content'] = preg_replace('/<mark[^>]*(data-markjs|mark_counter)[^>]*>([^<]*)<\/mark>/i', '$2', $post_data['post_content']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
}
|
85 |
+
return $post_data;
|
86 |
}
|
87 |
|
88 |
/**
|
89 |
* Check if the image is a remote image and save it locally
|
90 |
*
|
91 |
+
* @param array $post_data
|
92 |
+
* @param array $postarr
|
93 |
+
* @return array
|
94 |
*/
|
95 |
+
public function checkImage($post_data, $postarr) {
|
96 |
+
if (!isset($post_data['post_content']) || !isset($postarr['ID'])) {
|
97 |
+
return $post_data;
|
98 |
+
}
|
99 |
+
|
100 |
+
require_once( ABSPATH . 'wp-admin/includes/image.php' );
|
101 |
|
102 |
//if the option to save the images locally is set on
|
103 |
if (SQ_Classes_Tools::getOption('sq_local_images')) {
|
|
|
104 |
@set_time_limit(90);
|
|
|
105 |
|
|
|
|
|
106 |
$urls = array();
|
|
|
107 |
if (function_exists('preg_match_all')) {
|
108 |
+
@preg_match_all('/<img[^>]*src=[\'"]([^\'"]+)[\'"][^>]*>/i', stripslashes($post_data['post_content']), $out);
|
109 |
|
110 |
+
if (!empty($out)) {
|
|
|
|
|
111 |
if (!is_array($out[1]) || count($out[1]) == 0)
|
112 |
+
return $post_data;
|
113 |
|
114 |
if (get_bloginfo('wpurl') <> '') {
|
115 |
$domain = parse_url(get_bloginfo('wpurl'));
|
127 |
}
|
128 |
}
|
129 |
|
130 |
+
if (!is_array($urls) || (is_array($urls) && count($urls) == 0)) {
|
131 |
+
return $post_data;
|
132 |
+
}
|
133 |
|
134 |
$urls = @array_unique($urls);
|
135 |
|
141 |
|
142 |
$local_file = $file['url'];
|
143 |
if ($local_file !== false) {
|
144 |
+
$post_data['post_content'] = str_replace($url, $local_file, $post_data['post_content']);
|
145 |
|
146 |
+
if (!$this->model->findAttachmentByUrl($local_file)) {
|
147 |
$attach_id = wp_insert_attachment(array(
|
148 |
'post_mime_type' => $file['type'],
|
149 |
'post_title' => SQ_Classes_Tools::getValue('sq_keyword', preg_replace('/\.[^.]+$/', '', $file['filename'])),
|
150 |
'post_content' => '',
|
151 |
'post_status' => 'inherit',
|
152 |
'guid' => $local_file
|
153 |
+
), $file['file'], $postarr['ID']);
|
154 |
|
155 |
$attach_data = wp_generate_attachment_metadata($attach_id, $file['file']);
|
156 |
wp_update_attachment_metadata($attach_id, $attach_data);
|
159 |
}
|
160 |
|
161 |
if (microtime(true) - $time >= 20) {
|
162 |
+
return $post_data;
|
163 |
}
|
164 |
|
165 |
}
|
166 |
|
167 |
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
}
|
169 |
+
|
170 |
+
return $post_data;
|
171 |
}
|
172 |
|
173 |
|
174 |
/**
|
175 |
* Check the SEO from Squirrly Live Assistant
|
176 |
*
|
177 |
+
* @param array $post_data
|
178 |
+
* @param array $postarr
|
179 |
+
* @return array
|
180 |
*/
|
181 |
+
public function checkSeo($post_data, $postarr) {
|
182 |
+
if (!isset($post_data['post_content']) || !isset($postarr['ID'])) {
|
183 |
+
return $post_data;
|
184 |
+
}
|
185 |
+
|
186 |
$args = array();
|
187 |
|
188 |
+
$seo = SQ_Classes_Tools::getValue('sq_seo', '');
|
189 |
|
190 |
if (is_array($seo) && count($seo) > 0)
|
191 |
$args['seo'] = implode(',', $seo);
|
192 |
|
193 |
+
$args['keyword'] = SQ_Classes_Tools::getValue('sq_keyword', '');
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
|
195 |
+
$args['status'] = $post_data['post_status'];
|
196 |
+
$args['permalink'] = get_permalink($postarr['ID']);
|
197 |
+
$args['author'] = $post_data['post_author'];
|
198 |
+
$args['post_id'] = $postarr['ID'];
|
199 |
|
200 |
if (SQ_Classes_Tools::getOption('sq_force_savepost')) {
|
201 |
SQ_Classes_Action::apiCall('sq/seo/post', $args, 10);
|
212 |
wp_schedule_single_event(time(), 'sq_processApi');
|
213 |
|
214 |
//If the queue is too big ... means that the cron is not working
|
215 |
+
if (count($process) > 5) SQ_Classes_Tools::saveOptions('sq_force_savepost', 1);
|
|
|
|
|
216 |
}
|
217 |
|
218 |
//Save the keyword for this post
|
219 |
+
if ($json = $this->model->getKeyword($postarr['ID'])) {
|
220 |
$json->keyword = addslashes(SQ_Classes_Tools::getValue('sq_keyword'));
|
221 |
+
$this->model->saveKeyword($postarr['ID'], $json);
|
222 |
} else {
|
223 |
$args = array();
|
224 |
$args['keyword'] = addslashes(SQ_Classes_Tools::getValue('sq_keyword'));
|
225 |
+
$this->model->saveKeyword($postarr['ID'], json_decode(json_encode($args)));
|
226 |
}
|
227 |
|
228 |
//Save the snippet in case is edited in backend and not saved
|
229 |
SQ_Classes_ObjController::getClass('SQ_Controllers_FrontMenu')->saveSEO();
|
230 |
+
|
231 |
//check for custom SEO
|
232 |
+
$this->_checkBriefcaseKeywords($postarr['ID']);
|
|
|
233 |
|
234 |
+
return $post_data;
|
|
|
|
|
|
|
|
|
|
|
235 |
}
|
236 |
|
237 |
/**
|
controllers/SerpChecker.php
CHANGED
@@ -39,8 +39,7 @@ 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('
|
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 <> '') {
|
@@ -305,7 +304,8 @@ class SQ_Controllers_SerpChecker extends SQ_Classes_FrontController {
|
|
305 |
/**
|
306 |
* Get all ranks from API Server
|
307 |
*/
|
308 |
-
public function getAllRanks($paged = 1, $per_page =
|
|
|
309 |
$args = array('paged' => $paged, 'per_page' => $per_page);
|
310 |
set_transient('sq_progress', $paged, 60);
|
311 |
|
@@ -313,24 +313,46 @@ class SQ_Controllers_SerpChecker extends SQ_Classes_FrontController {
|
|
313 |
if (isset($json->ranks)) {
|
314 |
if (!empty($json->ranks)) {
|
315 |
foreach ($json->ranks as $post_id => $rank) {
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
} else {
|
328 |
-
$
|
329 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
}
|
331 |
}
|
332 |
-
} else {
|
333 |
-
SQ_Classes_ObjController::getClass('SQ_Models_SerpChecker')->purgeAllMeta(array('key' => '_src_keyword'));
|
334 |
}
|
335 |
}
|
336 |
|
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('bootstrap');
|
|
|
43 |
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('serpchecker');
|
44 |
|
45 |
if ($this->_tab <> '') {
|
304 |
/**
|
305 |
* Get all ranks from API Server
|
306 |
*/
|
307 |
+
public function getAllRanks($paged = 1, $per_page = 20, $loop = true, $cnt = 0) {
|
308 |
+
set_time_limit(90);
|
309 |
$args = array('paged' => $paged, 'per_page' => $per_page);
|
310 |
set_transient('sq_progress', $paged, 60);
|
311 |
|
313 |
if (isset($json->ranks)) {
|
314 |
if (!empty($json->ranks)) {
|
315 |
foreach ($json->ranks as $post_id => $rank) {
|
316 |
+
if ($post_id == 0) {
|
317 |
+
foreach ($rank as $row) {
|
318 |
+
if($post_id = url_to_postid($row->permalink)) {
|
319 |
+
$status = get_post_status($post_id);
|
320 |
+
if ($status <> 'publish') {
|
321 |
+
//delete the records for this post to insert all the keywords fresh
|
322 |
+
$this->model->purgeMeta($post_id, array('key' => '_src_keyword'));
|
323 |
+
continue;
|
324 |
+
} else {
|
325 |
+
$this->model->saveKeyword($post_id, $rank);
|
326 |
+
}
|
327 |
+
}
|
328 |
+
//prevent timeout
|
329 |
+
if(number_format(microtime(true) - REQUEST_TIME, 0) >= 30){
|
330 |
+
$loop = false;
|
331 |
+
break;
|
332 |
+
}
|
333 |
+
}
|
334 |
} else {
|
335 |
+
$status = get_post_status($post_id);
|
336 |
+
if ($status <> 'publish') {
|
337 |
+
$args = array();
|
338 |
+
$args['status'] = ($status ? $status : 'deleted');
|
339 |
+
$args['post_id'] = $post_id;
|
340 |
+
//Make sure the API has the correct status of the post
|
341 |
+
SQ_Classes_Action::apiCall('sq/seo/update', $args, 10);
|
342 |
+
|
343 |
+
//delete the records for this post to insert all the keywords fresh
|
344 |
+
$this->model->purgeMeta($post_id, array('key' => '_src_keyword'));
|
345 |
+
continue;
|
346 |
+
} else {
|
347 |
+
$this->model->saveKeyword($post_id, $rank);
|
348 |
+
}
|
349 |
+
}
|
350 |
+
//prevent timeout
|
351 |
+
if(number_format(microtime(true) - REQUEST_TIME, 30) >= 85){
|
352 |
+
$loop = false;
|
353 |
+
break;
|
354 |
}
|
355 |
}
|
|
|
|
|
356 |
}
|
357 |
}
|
358 |
|
controllers/Sitemaps.php
CHANGED
@@ -14,9 +14,11 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
|
|
14 |
public function __construct() {
|
15 |
parent::__construct();
|
16 |
$this->posts_limit = SQ_Classes_Tools::getOption('sq_sitemap_perpage');
|
|
|
17 |
add_filter('template_redirect', array($this, 'hookPreventRedirect'), 0);
|
18 |
add_filter('user_trailingslashit', array($this, 'untrailingslashit'));
|
19 |
add_action('sq_processPing', array($this, 'processCron'));
|
|
|
20 |
}
|
21 |
|
22 |
public function hookPreventRedirect() {
|
@@ -134,12 +136,16 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
|
|
134 |
case 'sitemap-page':
|
135 |
$sq_query['post_type'] = array('page');
|
136 |
break;
|
|
|
|
|
|
|
|
|
137 |
case 'sitemap-author':
|
138 |
add_filter('sq-sitemap-authors', array($this, 'authorFilter'), 5);
|
139 |
break;
|
140 |
case 'sitemap-custom-post':
|
141 |
$types = get_post_types();
|
142 |
-
foreach (array('post', 'page', 'attachment', 'revision', 'nav_menu_item', 'product', 'wpsc-product') as $exclude) {
|
143 |
if (in_array($exclude, $types)) {
|
144 |
unset($types[$exclude]);
|
145 |
}
|
@@ -174,6 +180,10 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
|
|
174 |
|
175 |
}
|
176 |
|
|
|
|
|
|
|
|
|
177 |
/**
|
178 |
* Show the Sitemap Header
|
179 |
* @param array $include Include schema
|
@@ -185,7 +195,7 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
|
|
185 |
header('Content-Type: text/xml; charset=' . get_bloginfo('charset'), true);
|
186 |
//Generate header
|
187 |
echo '<?xml version="1.0" encoding="' . get_bloginfo('charset') . '"?>' . "\n";
|
188 |
-
echo
|
189 |
echo '<!-- generated-on="' . date('Y-m-d\TH:i:s+00:00') . '" -->' . "\n";
|
190 |
echo '<!-- generator="Squirrly SEO Sitemap" -->' . "\n";
|
191 |
echo '<!-- generator-url="https://wordpress.org/plugins/squirrly-seo/" -->' . "\n";
|
@@ -320,7 +330,9 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
|
|
320 |
case 'sitemap-archive':
|
321 |
$this->showPackXml($this->model->getListArchive());
|
322 |
break;
|
323 |
-
|
|
|
|
|
324 |
default:
|
325 |
$this->showPackXml($this->model->getListPosts());
|
326 |
break;
|
@@ -490,13 +502,21 @@ class SQ_Controllers_Sitemaps extends SQ_Classes_FrontController {
|
|
490 |
$query->set('tax_query', array());
|
491 |
}
|
492 |
|
493 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
494 |
global $wpdb;
|
495 |
-
|
496 |
$query[] = "(SELECT
|
497 |
UNIX_TIMESTAMP(MAX(p.post_date_gmt)) as _mod_date
|
498 |
FROM {$wpdb->posts} p, {$wpdb->term_relationships} r
|
499 |
-
WHERE p.ID = r.object_id
|
|
|
|
|
|
|
500 |
) as lastmod";
|
501 |
|
502 |
return $query;
|
14 |
public function __construct() {
|
15 |
parent::__construct();
|
16 |
$this->posts_limit = SQ_Classes_Tools::getOption('sq_sitemap_perpage');
|
17 |
+
add_filter('sq_sitemap_style', array($this, 'getFeedStyle'));
|
18 |
add_filter('template_redirect', array($this, 'hookPreventRedirect'), 0);
|
19 |
add_filter('user_trailingslashit', array($this, 'untrailingslashit'));
|
20 |
add_action('sq_processPing', array($this, 'processCron'));
|
21 |
+
|
22 |
}
|
23 |
|
24 |
public function hookPreventRedirect() {
|
136 |
case 'sitemap-page':
|
137 |
$sq_query['post_type'] = array('page');
|
138 |
break;
|
139 |
+
case 'sitemap-attachment':
|
140 |
+
$sq_query['post_type'] = array('attachment');
|
141 |
+
$sq_query['post_status'] = array('publish', 'inherit');
|
142 |
+
break;
|
143 |
case 'sitemap-author':
|
144 |
add_filter('sq-sitemap-authors', array($this, 'authorFilter'), 5);
|
145 |
break;
|
146 |
case 'sitemap-custom-post':
|
147 |
$types = get_post_types();
|
148 |
+
foreach (array('post', 'page', 'attachment', 'revision', 'nav_menu_item', 'product', 'wpsc-product', 'ngg_tag') as $exclude) {
|
149 |
if (in_array($exclude, $types)) {
|
150 |
unset($types[$exclude]);
|
151 |
}
|
180 |
|
181 |
}
|
182 |
|
183 |
+
public function getFeedStyle() {
|
184 |
+
return '<?xml-stylesheet type="text/xsl" href="/' . _SQ_THEME_RELATIVE_URL_ . 'css/sitemap' . ($this->model->type == 'sitemap' ? 'index' : '') . '.xsl"?>' . "\n";
|
185 |
+
}
|
186 |
+
|
187 |
/**
|
188 |
* Show the Sitemap Header
|
189 |
* @param array $include Include schema
|
195 |
header('Content-Type: text/xml; charset=' . get_bloginfo('charset'), true);
|
196 |
//Generate header
|
197 |
echo '<?xml version="1.0" encoding="' . get_bloginfo('charset') . '"?>' . "\n";
|
198 |
+
echo apply_filters('sq_sitemap_style', false);
|
199 |
echo '<!-- generated-on="' . date('Y-m-d\TH:i:s+00:00') . '" -->' . "\n";
|
200 |
echo '<!-- generator="Squirrly SEO Sitemap" -->' . "\n";
|
201 |
echo '<!-- generator-url="https://wordpress.org/plugins/squirrly-seo/" -->' . "\n";
|
330 |
case 'sitemap-archive':
|
331 |
$this->showPackXml($this->model->getListArchive());
|
332 |
break;
|
333 |
+
case 'sitemap-attachment':
|
334 |
+
$this->showPackXml($this->model->getListAttachments());
|
335 |
+
break;
|
336 |
default:
|
337 |
$this->showPackXml($this->model->getListPosts());
|
338 |
break;
|
502 |
$query->set('tax_query', array());
|
503 |
}
|
504 |
|
505 |
+
/**
|
506 |
+
* Filter the Custom Taxonomy
|
507 |
+
* @param $query
|
508 |
+
* @param $args
|
509 |
+
* @return array
|
510 |
+
*/
|
511 |
+
public function customTaxFilter($query, $args) {
|
512 |
global $wpdb;
|
|
|
513 |
$query[] = "(SELECT
|
514 |
UNIX_TIMESTAMP(MAX(p.post_date_gmt)) as _mod_date
|
515 |
FROM {$wpdb->posts} p, {$wpdb->term_relationships} r
|
516 |
+
WHERE p.ID = r.object_id
|
517 |
+
AND p.post_status = 'publish'
|
518 |
+
AND p.post_password = ''
|
519 |
+
AND r.term_taxonomy_id = tt.term_taxonomy_id
|
520 |
) as lastmod";
|
521 |
|
522 |
return $query;
|
core/BlockBriefcaseKeywords.php
CHANGED
@@ -21,6 +21,8 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
|
|
21 |
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('serpchecker.css');
|
22 |
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
|
23 |
|
|
|
|
|
24 |
//Not yet available
|
25 |
if (SQ_Classes_Tools::getOption('sq_google_serp_active') == 0) {
|
26 |
$this->checkin = json_decode(SQ_Classes_Action::apiCall('sq/rank-checker/checkin'));
|
@@ -33,7 +35,9 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
|
|
33 |
SQ_Classes_Tools::saveOptions('sq_google_serp_active', 1);
|
34 |
SQ_Classes_ObjController::getClass('SQ_Classes_Error')->setError(sprintf(__('%sYou activated the Business Plan with Advanced Analytics. %sStart Here%s %s'), '<strong style="font-size: 16px;">', '<a href="' . admin_url('admin.php?page=sq_posts') . '">', '</a>', '</strong>'), 'success');
|
35 |
} elseif (isset($this->checkin->error) && $this->checkin->error == "subscription_notfound" && !SQ_Classes_Tools::getOption('sq_google_serp_active')) {
|
36 |
-
|
|
|
|
|
37 |
}
|
38 |
}
|
39 |
|
@@ -61,17 +65,21 @@ class SQ_Core_BlockBriefcaseKeywords extends SQ_Classes_BlockController {
|
|
61 |
));
|
62 |
|
63 |
$this->index = (($paged - 1) * $per_page);
|
64 |
-
$this->labels = $json->labels;
|
65 |
$this->keywords = $json->keywords;
|
66 |
-
$this->countries = $json->countries;
|
67 |
} else {
|
68 |
$this->error = __('No keyword found in the briefcase.', _SQ_PLUGIN_NAME_);
|
69 |
}
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
wp_enqueue_style('wp-color-picker');
|
72 |
wp_enqueue_script('wp-color-picker');
|
73 |
-
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('
|
74 |
-
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('//storage.googleapis.com/squirrly/wp480/css/bootstrap.min.css');
|
75 |
SQ_Classes_ObjController::getClass('SQ_Classes_Error')->hookNotices();
|
76 |
|
77 |
return parent::init();
|
21 |
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('serpchecker.css');
|
22 |
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('switchery');
|
23 |
|
24 |
+
$menu = SQ_Classes_Tools::getOption('menu');
|
25 |
+
|
26 |
//Not yet available
|
27 |
if (SQ_Classes_Tools::getOption('sq_google_serp_active') == 0) {
|
28 |
$this->checkin = json_decode(SQ_Classes_Action::apiCall('sq/rank-checker/checkin'));
|
35 |
SQ_Classes_Tools::saveOptions('sq_google_serp_active', 1);
|
36 |
SQ_Classes_ObjController::getClass('SQ_Classes_Error')->setError(sprintf(__('%sYou activated the Business Plan with Advanced Analytics. %sStart Here%s %s'), '<strong style="font-size: 16px;">', '<a href="' . admin_url('admin.php?page=sq_posts') . '">', '</a>', '</strong>'), 'success');
|
37 |
} elseif (isset($this->checkin->error) && $this->checkin->error == "subscription_notfound" && !SQ_Classes_Tools::getOption('sq_google_serp_active')) {
|
38 |
+
if ($menu['show_ads']) {
|
39 |
+
SQ_Classes_ObjController::getClass('SQ_Classes_Error')->setError(sprintf(__('%sStart a FREE Trial of the Business Plan with Advanced Analytics for 7 days. No credit card required. %sSee details%s %s'), '<strong style="font-size: 16px;">', '<a href="' . _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Tools::getToken(). '&redirect_to=' . _SQ_DASH_URL_ . 'user/plans?pid=31" target="_blank">', '</a>', '</strong>'), 'trial');
|
40 |
+
}
|
41 |
}
|
42 |
}
|
43 |
|
65 |
));
|
66 |
|
67 |
$this->index = (($paged - 1) * $per_page);
|
|
|
68 |
$this->keywords = $json->keywords;
|
|
|
69 |
} else {
|
70 |
$this->error = __('No keyword found in the briefcase.', _SQ_PLUGIN_NAME_);
|
71 |
}
|
72 |
|
73 |
+
if (isset($json->labels)) {
|
74 |
+
$this->labels = $json->labels;
|
75 |
+
}
|
76 |
+
if (isset($json->countries)) {
|
77 |
+
$this->countries = $json->countries;
|
78 |
+
}
|
79 |
+
|
80 |
wp_enqueue_style('wp-color-picker');
|
81 |
wp_enqueue_script('wp-color-picker');
|
82 |
+
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('bootstrap');
|
|
|
83 |
SQ_Classes_ObjController::getClass('SQ_Classes_Error')->hookNotices();
|
84 |
|
85 |
return parent::init();
|
core/BlockImport.php
CHANGED
@@ -6,11 +6,13 @@
|
|
6 |
class SQ_Core_BlockImport extends SQ_Classes_BlockController {
|
7 |
|
8 |
function hookGetContent() {
|
9 |
-
|
10 |
-
|
|
|
11 |
|
12 |
-
|
13 |
-
|
|
|
14 |
}
|
15 |
|
16 |
/**
|
6 |
class SQ_Core_BlockImport extends SQ_Classes_BlockController {
|
7 |
|
8 |
function hookGetContent() {
|
9 |
+
if(SQ_Classes_Tools::getOption('sq_api') <> '') {
|
10 |
+
//Remove the notification is Inport Settings are shown
|
11 |
+
delete_transient('sq_import');
|
12 |
|
13 |
+
parent::preloadSettings();
|
14 |
+
SQ_Classes_ObjController::getClass('SQ_Classes_Error')->hookNotices();
|
15 |
+
}
|
16 |
}
|
17 |
|
18 |
/**
|
core/BlockPostsAnalytics.php
CHANGED
@@ -17,13 +17,16 @@ class SQ_Core_BlockPostsAnalytics extends SQ_Classes_BlockController {
|
|
17 |
if (isset($this->checkin->active) && $this->checkin->active) {
|
18 |
if (isset($this->checkin->trial) && $this->checkin->trial) {
|
19 |
SQ_Classes_Tools::saveOptions('sq_google_serp_trial', 1);
|
20 |
-
}else{
|
21 |
SQ_Classes_Tools::saveOptions('sq_google_serp_trial', 0);
|
22 |
}
|
23 |
SQ_Classes_Tools::saveOptions('sq_google_serp_active', 1);
|
24 |
-
SQ_Classes_ObjController::getClass('SQ_Classes_Error')->setError(sprintf(__('%sYou activated the Business Plan with Advanced Analytics. %sStart Here%s %s'), '<strong style="font-size: 16px;">', '<a href="' . admin_url('admin.php?page=sq_posts') . '">', '</a>', '</strong>'),'success');
|
25 |
} elseif (isset($this->checkin->error) && $this->checkin->error == "subscription_notfound" && !SQ_Classes_Tools::getOption('sq_google_serp_active')) {
|
26 |
-
|
|
|
|
|
|
|
27 |
} elseif (!SQ_Classes_Tools::getOption('sq_google_serp_active')) {
|
28 |
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');
|
29 |
}
|
17 |
if (isset($this->checkin->active) && $this->checkin->active) {
|
18 |
if (isset($this->checkin->trial) && $this->checkin->trial) {
|
19 |
SQ_Classes_Tools::saveOptions('sq_google_serp_trial', 1);
|
20 |
+
} else {
|
21 |
SQ_Classes_Tools::saveOptions('sq_google_serp_trial', 0);
|
22 |
}
|
23 |
SQ_Classes_Tools::saveOptions('sq_google_serp_active', 1);
|
24 |
+
SQ_Classes_ObjController::getClass('SQ_Classes_Error')->setError(sprintf(__('%sYou activated the Business Plan with Advanced Analytics. %sStart Here%s %s'), '<strong style="font-size: 16px;">', '<a href="' . admin_url('admin.php?page=sq_posts') . '">', '</a>', '</strong>'), 'success');
|
25 |
} elseif (isset($this->checkin->error) && $this->checkin->error == "subscription_notfound" && !SQ_Classes_Tools::getOption('sq_google_serp_active')) {
|
26 |
+
$menu = SQ_Classes_Tools::getOption('menu');
|
27 |
+
if ($menu['show_ads']) {
|
28 |
+
SQ_Classes_ObjController::getClass('SQ_Classes_Error')->setError(sprintf(__('%sStart a FREE Trial of the Business Plan with Advanced Analytics for 7 days. No credit card required. %sSee details%s %s'), '<strong style="font-size: 16px;">', '<a href="' . _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Tools::getToken() . '&redirect_to=' . _SQ_DASH_URL_ . 'user/plans?pid=31" target="_blank">', '</a>', '</strong>'), 'trial');
|
29 |
+
}
|
30 |
} elseif (!SQ_Classes_Tools::getOption('sq_google_serp_active')) {
|
31 |
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');
|
32 |
}
|
core/BlockSerpKeywords.php
CHANGED
@@ -116,13 +116,10 @@ class SQ_Core_BlockSerpKeywords extends SQ_Classes_BlockController {
|
|
116 |
|
117 |
case 'sq_serp_addkeyword':
|
118 |
$keyword = SQ_Classes_Tools::getValue('keyword', null);
|
119 |
-
$post_url = SQ_Classes_Tools::getValue('post_url', '');
|
120 |
-
$post_id = url_to_postid($post_url);
|
121 |
|
122 |
-
if (isset($keyword) &&
|
123 |
$args = array();
|
124 |
-
$args['
|
125 |
-
$args['permalink'] = get_permalink((int)$post_id);
|
126 |
$args['country'] = SQ_Classes_ObjController::getClass('SQ_Controllers_SerpChecker')->getCountry();
|
127 |
$args['language'] = SQ_Classes_ObjController::getClass('SQ_Controllers_SerpChecker')->getLanguage();
|
128 |
$args['keywords'] = json_encode(array($keyword));
|
116 |
|
117 |
case 'sq_serp_addkeyword':
|
118 |
$keyword = SQ_Classes_Tools::getValue('keyword', null);
|
|
|
|
|
119 |
|
120 |
+
if (isset($keyword) && $keyword <> '') {
|
121 |
$args = array();
|
122 |
+
$args['permalink'] = home_url();
|
|
|
123 |
$args['country'] = SQ_Classes_ObjController::getClass('SQ_Controllers_SerpChecker')->getCountry();
|
124 |
$args['language'] = SQ_Classes_ObjController::getClass('SQ_Controllers_SerpChecker')->getLanguage();
|
125 |
$args['keywords'] = json_encode(array($keyword));
|
core/BlockSettings.php
CHANGED
@@ -7,12 +7,15 @@ class SQ_Core_BlockSettings extends SQ_Classes_BlockController {
|
|
7 |
|
8 |
function hookGetContent() {
|
9 |
parent::preloadSettings();
|
10 |
-
|
11 |
-
|
|
|
|
|
12 |
jQuery(document).ready(function () {
|
13 |
jQuery("#sq_settings").find("select[name=sq_google_country]").val("' . SQ_Classes_Tools::getOption('sq_google_country') . '");
|
14 |
});
|
15 |
</script>';
|
|
|
16 |
}
|
17 |
|
18 |
/**
|
@@ -61,6 +64,7 @@ class SQ_Core_BlockSettings extends SQ_Classes_BlockController {
|
|
61 |
SQ_Classes_Tools::saveOptions('sq_sla', (int)SQ_Classes_Tools::getValue('sq_sla'));
|
62 |
SQ_Classes_Tools::saveOptions('sq_local_images', (int)SQ_Classes_Tools::getValue('sq_local_images'));
|
63 |
SQ_Classes_Tools::saveOptions('sq_url_fix', (int)SQ_Classes_Tools::getValue('sq_url_fix'));
|
|
|
64 |
|
65 |
//Save custom robots
|
66 |
$robots = SQ_Classes_Tools::getValue('sq_robots_permission', '', true);
|
@@ -73,7 +77,14 @@ class SQ_Core_BlockSettings extends SQ_Classes_BlockController {
|
|
73 |
}
|
74 |
|
75 |
SQ_Classes_Action::apiSaveSettings();
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
break;
|
78 |
}
|
79 |
}
|
7 |
|
8 |
function hookGetContent() {
|
9 |
parent::preloadSettings();
|
10 |
+
|
11 |
+
if(SQ_Classes_Tools::getOption('sq_api') <> '') {
|
12 |
+
SQ_Classes_ObjController::getClass('SQ_Classes_Error')->hookNotices();
|
13 |
+
echo '<script type="text/javascript">
|
14 |
jQuery(document).ready(function () {
|
15 |
jQuery("#sq_settings").find("select[name=sq_google_country]").val("' . SQ_Classes_Tools::getOption('sq_google_country') . '");
|
16 |
});
|
17 |
</script>';
|
18 |
+
}
|
19 |
}
|
20 |
|
21 |
/**
|
64 |
SQ_Classes_Tools::saveOptions('sq_sla', (int)SQ_Classes_Tools::getValue('sq_sla'));
|
65 |
SQ_Classes_Tools::saveOptions('sq_local_images', (int)SQ_Classes_Tools::getValue('sq_local_images'));
|
66 |
SQ_Classes_Tools::saveOptions('sq_url_fix', (int)SQ_Classes_Tools::getValue('sq_url_fix'));
|
67 |
+
SQ_Classes_Tools::saveOptions('sq_auto_robots', (int)SQ_Classes_Tools::getValue('sq_auto_robots'));
|
68 |
|
69 |
//Save custom robots
|
70 |
$robots = SQ_Classes_Tools::getValue('sq_robots_permission', '', true);
|
77 |
}
|
78 |
|
79 |
SQ_Classes_Action::apiSaveSettings();
|
80 |
+
|
81 |
+
if (SQ_Classes_Tools::isAjax()) {
|
82 |
+
SQ_Classes_Tools::setHeader('json');
|
83 |
+
echo json_encode(array('saved' => true));
|
84 |
+
exit();
|
85 |
+
} else {
|
86 |
+
SQ_Classes_Tools::emptyCache();
|
87 |
+
}
|
88 |
break;
|
89 |
}
|
90 |
}
|
core/BlockSettingsSeo.php
CHANGED
@@ -9,38 +9,41 @@ class SQ_Core_BlockSettingsSeo extends SQ_Classes_BlockController {
|
|
9 |
function hookGetContent() {
|
10 |
parent::preloadSettings();
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
$
|
|
|
|
|
22 |
}
|
23 |
-
}
|
24 |
|
25 |
-
|
26 |
-
|
|
|
27 |
}
|
28 |
}
|
29 |
-
}
|
30 |
|
31 |
-
//
|
32 |
-
|
33 |
-
|
|
|
34 |
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
var __snippetshort = "' . __('Too short', _SQ_PLUGIN_NAME_) . '";
|
39 |
var __snippetlong = "' . __('Too long', _SQ_PLUGIN_NAME_) . '";
|
40 |
jQuery(document).ready(function () {
|
41 |
jQuery("#sq_settings").find("select[name=sq_og_locale]").val("' . SQ_Classes_Tools::getOption('sq_og_locale') . '");
|
42 |
});
|
43 |
</script>';
|
|
|
44 |
|
45 |
}
|
46 |
|
@@ -93,7 +96,7 @@ class SQ_Core_BlockSettingsSeo extends SQ_Classes_BlockController {
|
|
93 |
foreach (SQ_Classes_Tools::getValue('sq_post_types') as $key) {
|
94 |
array_push(SQ_Classes_Tools::$options['sq_exclude_post_types'], $key);
|
95 |
}
|
96 |
-
}else{
|
97 |
SQ_Classes_Tools::$options['sq_exclude_post_types'] = array();
|
98 |
}
|
99 |
|
@@ -101,6 +104,8 @@ class SQ_Core_BlockSettingsSeo extends SQ_Classes_BlockController {
|
|
101 |
SQ_Classes_Tools::saveOptions('sq_auto_canonical', (int)SQ_Classes_Tools::getValue('sq_auto_canonical'));
|
102 |
SQ_Classes_Tools::saveOptions('sq_auto_noindex', (int)SQ_Classes_Tools::getValue('sq_auto_noindex'));
|
103 |
|
|
|
|
|
104 |
SQ_Classes_Tools::saveOptions('sq_auto_amp', (int)SQ_Classes_Tools::getValue('sq_auto_amp'));
|
105 |
|
106 |
SQ_Classes_Tools::saveOptions('sq_auto_meta', (int)SQ_Classes_Tools::getValue('sq_auto_meta'));
|
@@ -117,7 +122,6 @@ class SQ_Core_BlockSettingsSeo extends SQ_Classes_BlockController {
|
|
117 |
if (isset($socials['twitter_site'])) $socials['twitter_site'] = $this->model->checkTwitterAccount($socials['twitter_site']);
|
118 |
if (isset($socials['twitter_site'])) $socials['twitter'] = $this->model->checkTwitterAccountName($socials['twitter_site']);
|
119 |
if (isset($socials['facebook_site'])) $socials['facebook_site'] = $this->model->checkFacebookAccount($socials['facebook_site']);
|
120 |
-
if (isset($socials['google_plus_url'])) $socials['google_plus_url'] = $this->model->checkGoogleAccount($socials['google_plus_url']);
|
121 |
if (isset($socials['pinterest_url'])) $socials['pinterest_url'] = $this->model->checkPinterestAccount($socials['pinterest_url']);
|
122 |
if (isset($socials['instagram_url'])) $socials['instagram_url'] = $this->model->checkInstagramAccount($socials['instagram_url']);
|
123 |
if (isset($socials['linkedin_url'])) $socials['linkedin_url'] = $this->model->checkLinkeinAccount($socials['linkedin_url']);
|
@@ -180,6 +184,7 @@ class SQ_Core_BlockSettingsSeo extends SQ_Classes_BlockController {
|
|
180 |
SQ_Classes_Tools::saveOptions('sq_sitemap_frequency', SQ_Classes_Tools::getValue('sq_sitemap_frequency'));
|
181 |
SQ_Classes_Tools::saveOptions('sq_sitemap_ping', (int)SQ_Classes_Tools::getValue('sq_sitemap_ping'));
|
182 |
SQ_Classes_Tools::saveOptions('sq_sitemap_perpage', (int)SQ_Classes_Tools::getValue('sq_sitemap_perpage'));
|
|
|
183 |
|
184 |
|
185 |
foreach (SQ_Classes_Tools::$options['sq_sitemap'] as $key => $value) {
|
@@ -238,7 +243,7 @@ class SQ_Core_BlockSettingsSeo extends SQ_Classes_BlockController {
|
|
238 |
if (isset(SQ_Classes_Tools::$options['sq_jsonld'][SQ_Classes_Tools::getValue('sq_jsonld_type')]['telephone']) &&
|
239 |
SQ_Classes_Tools::$options['sq_jsonld'][SQ_Classes_Tools::getValue('sq_jsonld_type')]['telephone'] <> ''
|
240 |
) {
|
241 |
-
SQ_Classes_Tools::$options['sq_jsonld'][SQ_Classes_Tools::getValue('sq_jsonld_type')]['telephone'] = '+' . SQ_Classes_Tools::$options['sq_jsonld'][SQ_Classes_Tools::getValue('sq_jsonld_type')]['telephone'];
|
242 |
}
|
243 |
}
|
244 |
SQ_Classes_Tools::saveOptions('sq_jsonld_type', SQ_Classes_Tools::getValue('sq_jsonld_type'));
|
9 |
function hookGetContent() {
|
10 |
parent::preloadSettings();
|
11 |
|
12 |
+
if (SQ_Classes_Tools::getOption('sq_api') <> '') {
|
13 |
+
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('frontmenu.css');
|
14 |
+
|
15 |
+
//Show Import Settings after Install if needed
|
16 |
+
if (current_user_can('manage_options') && get_transient('sq_import')) {
|
17 |
+
$platforms = SQ_Classes_ObjController::getClass('SQ_Controllers_Menu')->getImportList();
|
18 |
+
$imports = array();
|
19 |
+
if (!empty($platforms)) {
|
20 |
+
foreach ($platforms as $path => $settings) {
|
21 |
+
if ($path !== 'squirrly-seo') {
|
22 |
+
$imports[] = ucfirst(SQ_Classes_ObjController::getClass('SQ_Models_BlockSettingsSeo')->getName($path));
|
23 |
+
}
|
24 |
}
|
|
|
25 |
|
26 |
+
if (!empty($imports)) {
|
27 |
+
SQ_Classes_Error::setError(sprintf(__('You can now import into Squirrly SEO all the SEO Settings from %s', _SQ_PLUGIN_NAME_), '<a href="' . admin_url('admin.php?page=sq_import#import') . '">' . join(', ', $imports) . '</a>'));
|
28 |
+
}
|
29 |
}
|
30 |
}
|
|
|
31 |
|
32 |
+
//Upgrade Sitemap List
|
33 |
+
$sitemap = SQ_Classes_Tools::getOption('sq_sitemap');
|
34 |
+
if (!isset($sitemap['sitemap-attachment'])) $sitemap['sitemap-attachment'] = array('sitemap-attachments.xml', 0);
|
35 |
+
SQ_Classes_Tools::saveOptions('sq_sitemap', $sitemap);
|
36 |
|
37 |
+
/* Force call of error display */
|
38 |
+
SQ_Classes_ObjController::getClass('SQ_Classes_Error')->hookNotices();
|
39 |
+
echo '<script type="text/javascript">
|
40 |
var __snippetshort = "' . __('Too short', _SQ_PLUGIN_NAME_) . '";
|
41 |
var __snippetlong = "' . __('Too long', _SQ_PLUGIN_NAME_) . '";
|
42 |
jQuery(document).ready(function () {
|
43 |
jQuery("#sq_settings").find("select[name=sq_og_locale]").val("' . SQ_Classes_Tools::getOption('sq_og_locale') . '");
|
44 |
});
|
45 |
</script>';
|
46 |
+
}
|
47 |
|
48 |
}
|
49 |
|
96 |
foreach (SQ_Classes_Tools::getValue('sq_post_types') as $key) {
|
97 |
array_push(SQ_Classes_Tools::$options['sq_exclude_post_types'], $key);
|
98 |
}
|
99 |
+
} else {
|
100 |
SQ_Classes_Tools::$options['sq_exclude_post_types'] = array();
|
101 |
}
|
102 |
|
104 |
SQ_Classes_Tools::saveOptions('sq_auto_canonical', (int)SQ_Classes_Tools::getValue('sq_auto_canonical'));
|
105 |
SQ_Classes_Tools::saveOptions('sq_auto_noindex', (int)SQ_Classes_Tools::getValue('sq_auto_noindex'));
|
106 |
|
107 |
+
|
108 |
+
SQ_Classes_Tools::saveOptions('sq_analytics_google_js', SQ_Classes_Tools::getValue('sq_analytics_google_js'));
|
109 |
SQ_Classes_Tools::saveOptions('sq_auto_amp', (int)SQ_Classes_Tools::getValue('sq_auto_amp'));
|
110 |
|
111 |
SQ_Classes_Tools::saveOptions('sq_auto_meta', (int)SQ_Classes_Tools::getValue('sq_auto_meta'));
|
122 |
if (isset($socials['twitter_site'])) $socials['twitter_site'] = $this->model->checkTwitterAccount($socials['twitter_site']);
|
123 |
if (isset($socials['twitter_site'])) $socials['twitter'] = $this->model->checkTwitterAccountName($socials['twitter_site']);
|
124 |
if (isset($socials['facebook_site'])) $socials['facebook_site'] = $this->model->checkFacebookAccount($socials['facebook_site']);
|
|
|
125 |
if (isset($socials['pinterest_url'])) $socials['pinterest_url'] = $this->model->checkPinterestAccount($socials['pinterest_url']);
|
126 |
if (isset($socials['instagram_url'])) $socials['instagram_url'] = $this->model->checkInstagramAccount($socials['instagram_url']);
|
127 |
if (isset($socials['linkedin_url'])) $socials['linkedin_url'] = $this->model->checkLinkeinAccount($socials['linkedin_url']);
|
184 |
SQ_Classes_Tools::saveOptions('sq_sitemap_frequency', SQ_Classes_Tools::getValue('sq_sitemap_frequency'));
|
185 |
SQ_Classes_Tools::saveOptions('sq_sitemap_ping', (int)SQ_Classes_Tools::getValue('sq_sitemap_ping'));
|
186 |
SQ_Classes_Tools::saveOptions('sq_sitemap_perpage', (int)SQ_Classes_Tools::getValue('sq_sitemap_perpage'));
|
187 |
+
SQ_Classes_Tools::saveOptions('sq_sitemap_combinelangs', (int)SQ_Classes_Tools::getValue('sq_sitemap_combinelangs'));
|
188 |
|
189 |
|
190 |
foreach (SQ_Classes_Tools::$options['sq_sitemap'] as $key => $value) {
|
243 |
if (isset(SQ_Classes_Tools::$options['sq_jsonld'][SQ_Classes_Tools::getValue('sq_jsonld_type')]['telephone']) &&
|
244 |
SQ_Classes_Tools::$options['sq_jsonld'][SQ_Classes_Tools::getValue('sq_jsonld_type')]['telephone'] <> ''
|
245 |
) {
|
246 |
+
SQ_Classes_Tools::$options['sq_jsonld'][SQ_Classes_Tools::getValue('sq_jsonld_type')]['telephone'] = '+' . str_replace('+', '', SQ_Classes_Tools::$options['sq_jsonld'][SQ_Classes_Tools::getValue('sq_jsonld_type')]['telephone']);
|
247 |
}
|
248 |
}
|
249 |
SQ_Classes_Tools::saveOptions('sq_jsonld_type', SQ_Classes_Tools::getValue('sq_jsonld_type'));
|
core/BlockSupport.php
CHANGED
@@ -9,21 +9,23 @@ class SQ_Core_BlockSupport extends SQ_Classes_BlockController {
|
|
9 |
*/
|
10 |
public function action() {
|
11 |
parent::action();
|
12 |
-
|
13 |
switch (SQ_Classes_Tools::getValue('action')) {
|
14 |
case 'sq_feedback':
|
15 |
-
global $current_user;
|
16 |
$return = array();
|
17 |
|
18 |
SQ_Classes_Tools::saveOptions('sq_feedback', 1);
|
19 |
|
20 |
$line = "\n" . "________________________________________" . "\n";
|
21 |
-
$from =
|
|
|
|
|
|
|
22 |
$subject = __('Plugin Feedback', _SQ_PLUGIN_NAME_);
|
23 |
$face = SQ_Classes_Tools::getValue('feedback');
|
24 |
$message = SQ_Classes_Tools::getValue('message');
|
25 |
|
26 |
-
if ($message <> '' || (int)
|
27 |
switch ($face) {
|
28 |
case 1:
|
29 |
$face = 'Angry';
|
@@ -50,17 +52,13 @@ class SQ_Core_BlockSupport extends SQ_Classes_BlockController {
|
|
50 |
}
|
51 |
|
52 |
|
53 |
-
|
54 |
-
$headers[] = 'From: ' . $current_user->display_name . ' <' . $from . '>';
|
55 |
|
56 |
//$this->error='buuum';
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
$return['message'] = __('Could not send the email...', _SQ_PLUGIN_NAME_);
|
62 |
-
$return['error'] = true;
|
63 |
-
}
|
64 |
} else {
|
65 |
$return['message'] = __('No message.', _SQ_PLUGIN_NAME_);
|
66 |
$return['error'] = true;
|
@@ -71,17 +69,19 @@ class SQ_Core_BlockSupport extends SQ_Classes_BlockController {
|
|
71 |
break;
|
72 |
|
73 |
case 'sq_support':
|
74 |
-
global $current_user;
|
75 |
$return = array();
|
76 |
$versions = '';
|
77 |
|
|
|
78 |
$versions .= 'Url:' . get_bloginfo('wpurl') . "\n";
|
79 |
$versions .= 'Squirrly version: ' . SQ_VERSION_ID . "\n";
|
80 |
$versions .= 'Wordpress version: ' . WP_VERSION_ID . "\n";
|
81 |
$versions .= 'PHP version: ' . PHP_VERSION_ID . "\n";
|
82 |
|
83 |
$line = "\n" . "________________________________________" . "\n";
|
84 |
-
$from = $current_user->user_email;
|
|
|
|
|
85 |
$subject = SQ_Classes_Tools::getValue('subject', __('Plugin Support', _SQ_PLUGIN_NAME_));
|
86 |
$message = SQ_Classes_Tools::getValue('message');
|
87 |
|
@@ -89,14 +89,14 @@ class SQ_Core_BlockSupport extends SQ_Classes_BlockController {
|
|
89 |
$message .= $line;
|
90 |
$message .= $versions;
|
91 |
|
92 |
-
$headers[] = 'From: ' . $
|
93 |
|
94 |
//$this->error='buuum';
|
95 |
if (wp_mail(_SQ_SUPPORT_EMAIL_, $subject, $message, $headers)) {
|
96 |
$return['message'] = __('Message sent. Thank you!', _SQ_PLUGIN_NAME_);
|
97 |
$return['success'] = true;
|
98 |
} else {
|
99 |
-
$return['message'] = __('Could not send the email
|
100 |
$return['error'] = true;
|
101 |
}
|
102 |
} else {
|
9 |
*/
|
10 |
public function action() {
|
11 |
parent::action();
|
12 |
+
global $current_user;
|
13 |
switch (SQ_Classes_Tools::getValue('action')) {
|
14 |
case 'sq_feedback':
|
|
|
15 |
$return = array();
|
16 |
|
17 |
SQ_Classes_Tools::saveOptions('sq_feedback', 1);
|
18 |
|
19 |
$line = "\n" . "________________________________________" . "\n";
|
20 |
+
$from = SQ_Classes_Tools::getOption('sq_support_email');
|
21 |
+
if ($from == '') {
|
22 |
+
$from = $current_user->user_email;
|
23 |
+
}
|
24 |
$subject = __('Plugin Feedback', _SQ_PLUGIN_NAME_);
|
25 |
$face = SQ_Classes_Tools::getValue('feedback');
|
26 |
$message = SQ_Classes_Tools::getValue('message');
|
27 |
|
28 |
+
if ($message <> '' || (int)$face > 0) {
|
29 |
switch ($face) {
|
30 |
case 1:
|
31 |
$face = 'Angry';
|
52 |
}
|
53 |
|
54 |
|
55 |
+
$headers[] = 'From: ' . $from . ' <' . $from . '>';
|
|
|
56 |
|
57 |
//$this->error='buuum';
|
58 |
+
wp_mail(_SQ_SUPPORT_EMAIL_, $subject, $message, $headers);
|
59 |
+
$return['message'] = __('Thank you for your feedback', _SQ_PLUGIN_NAME_);
|
60 |
+
$return['success'] = true;
|
61 |
+
|
|
|
|
|
|
|
62 |
} else {
|
63 |
$return['message'] = __('No message.', _SQ_PLUGIN_NAME_);
|
64 |
$return['error'] = true;
|
69 |
break;
|
70 |
|
71 |
case 'sq_support':
|
|
|
72 |
$return = array();
|
73 |
$versions = '';
|
74 |
|
75 |
+
|
76 |
$versions .= 'Url:' . get_bloginfo('wpurl') . "\n";
|
77 |
$versions .= 'Squirrly version: ' . SQ_VERSION_ID . "\n";
|
78 |
$versions .= 'Wordpress version: ' . WP_VERSION_ID . "\n";
|
79 |
$versions .= 'PHP version: ' . PHP_VERSION_ID . "\n";
|
80 |
|
81 |
$line = "\n" . "________________________________________" . "\n";
|
82 |
+
$from = SQ_Classes_Tools::getValue('sq_support_email', $current_user->user_email);
|
83 |
+
SQ_Classes_Tools::saveOptions('sq_support_email', $from);
|
84 |
+
|
85 |
$subject = SQ_Classes_Tools::getValue('subject', __('Plugin Support', _SQ_PLUGIN_NAME_));
|
86 |
$message = SQ_Classes_Tools::getValue('message');
|
87 |
|
89 |
$message .= $line;
|
90 |
$message .= $versions;
|
91 |
|
92 |
+
$headers[] = 'From: ' . $from . ' <' . $from . '>';
|
93 |
|
94 |
//$this->error='buuum';
|
95 |
if (wp_mail(_SQ_SUPPORT_EMAIL_, $subject, $message, $headers)) {
|
96 |
$return['message'] = __('Message sent. Thank you!', _SQ_PLUGIN_NAME_);
|
97 |
$return['success'] = true;
|
98 |
} else {
|
99 |
+
$return['message'] = __('Could not send the email. Make sure you can send emails from your blog.', _SQ_PLUGIN_NAME_);
|
100 |
$return['error'] = true;
|
101 |
}
|
102 |
} else {
|
core/Blocklogin.php
CHANGED
@@ -6,6 +6,8 @@ class SQ_Core_Blocklogin extends SQ_Classes_BlockController {
|
|
6 |
/* If logged in, then return */
|
7 |
if (SQ_Classes_Tools::getOption('sq_api') <> '')
|
8 |
return;
|
|
|
|
|
9 |
parent::init();
|
10 |
}
|
11 |
|
6 |
/* If logged in, then return */
|
7 |
if (SQ_Classes_Tools::getOption('sq_api') <> '')
|
8 |
return;
|
9 |
+
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('menu');
|
10 |
+
|
11 |
parent::init();
|
12 |
}
|
13 |
|
core/Loading.php
CHANGED
@@ -7,28 +7,18 @@ class SQ_Core_Loading extends SQ_Classes_BlockController {
|
|
7 |
$this->loadJsVars();
|
8 |
}
|
9 |
|
|
|
|
|
|
|
10 |
public function loadJsVars() {
|
11 |
global $sq_postID;
|
12 |
|
13 |
-
|
14 |
-
$browser = SQ_Classes_Tools::getBrowserInfo();
|
15 |
-
|
16 |
-
if ((isset($browser) && $browser != false && is_array($browser) && $browser['name'] == 'IE' && (int)$browser['version'] < 9 && (int)$browser['version'] > 0)) {
|
17 |
-
echo '<script type="text/javascript">
|
18 |
-
(function($){
|
19 |
-
$("#sq_preloading").removeClass("sq_loading");
|
20 |
-
$("#sq_preloading").addClass("sq_error")
|
21 |
-
$("#sq_preloading").html("' . __('For Squirrly to work properly you have to use a higher version of Internet Explorer. <br /> We recommend you to use Chrome or Mozilla.', _SQ_PLUGIN_NAME_) . '");
|
22 |
-
$("#sq_options").hide();
|
23 |
-
$("#sq_blocklogin").hide();
|
24 |
-
})(jQuery);
|
25 |
-
</script>';
|
26 |
-
} else {
|
27 |
-
echo '<script type="text/javascript">
|
28 |
var SQ_DEBUG = ' . (int)SQ_DEBUG . ';
|
29 |
(function($){
|
30 |
$.sq_config = {
|
31 |
sq_use: ' . (int)SQ_Classes_Tools::getOption('sq_use') . ',
|
|
|
32 |
user_url: "' . home_url() . '",
|
33 |
sq_baseurl: "' . _SQ_STATIC_API_URL_ . '",
|
34 |
sq_uri: "' . SQ_URI . '",
|
@@ -37,13 +27,13 @@ class SQ_Core_Loading extends SQ_Classes_BlockController {
|
|
37 |
sq_version: "' . SQ_VERSION_ID . '",
|
38 |
sq_wpversion: "' . WP_VERSION_ID . '",
|
39 |
sq_phpversion: "' . PHP_VERSION_ID . '",
|
40 |
-
sq_seoversion: "' . (SQ_Classes_Tools::getOption('sq_sla') + 1) . '",
|
41 |
keyword_information: ' . (int)SQ_Classes_Tools::getOption('sq_keyword_information') . ',
|
42 |
sq_keywordtag: ' . (int)SQ_Classes_Tools::getOption('sq_keywordtag') . ',
|
43 |
frontend_css: "' . _SQ_THEME_URL_ . 'css/frontend' . (SQ_DEBUG ? '' : '.min') . '.css",
|
44 |
postID: "' . $sq_postID . '",
|
45 |
prevNonce: "' . wp_create_nonce('post_preview_' . $sq_postID) . '",
|
46 |
-
|
47 |
__infotext: ["' . __('Recent discussions:', _SQ_PLUGIN_NAME_) . '", "' . __('SEO Search Volume:', _SQ_PLUGIN_NAME_) . '", "' . __('Competition:', _SQ_PLUGIN_NAME_) . '", "' . __('Trend:', _SQ_PLUGIN_NAME_) . '"],
|
48 |
__keyword: "' . __('Keyword:', _SQ_PLUGIN_NAME_) . '",
|
49 |
__date: "' . __('date', _SQ_PLUGIN_NAME_) . '",
|
@@ -85,7 +75,7 @@ class SQ_Core_Loading extends SQ_Classes_BlockController {
|
|
85 |
__add_to_briefcase: "' . __('Add to Briefcase', _SQ_PLUGIN_NAME_) . '",
|
86 |
__add_keyword_briefcase: "' . __('Add Keyword to Briefcase', _SQ_PLUGIN_NAME_) . '",
|
87 |
__usekeyword: "' . __('Use Keyword', _SQ_PLUGIN_NAME_) . '",
|
88 |
-
|
89 |
};
|
90 |
|
91 |
|
@@ -107,7 +97,6 @@ class SQ_Core_Loading extends SQ_Classes_BlockController {
|
|
107 |
|
108 |
</script>';
|
109 |
|
110 |
-
}
|
111 |
}
|
112 |
|
113 |
}
|
7 |
$this->loadJsVars();
|
8 |
}
|
9 |
|
10 |
+
/**
|
11 |
+
* Load the JS for API
|
12 |
+
*/
|
13 |
public function loadJsVars() {
|
14 |
global $sq_postID;
|
15 |
|
16 |
+
echo '<script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
var SQ_DEBUG = ' . (int)SQ_DEBUG . ';
|
18 |
(function($){
|
19 |
$.sq_config = {
|
20 |
sq_use: ' . (int)SQ_Classes_Tools::getOption('sq_use') . ',
|
21 |
+
token: "' . SQ_Classes_Tools::getOption('sq_api') . '",
|
22 |
user_url: "' . home_url() . '",
|
23 |
sq_baseurl: "' . _SQ_STATIC_API_URL_ . '",
|
24 |
sq_uri: "' . SQ_URI . '",
|
27 |
sq_version: "' . SQ_VERSION_ID . '",
|
28 |
sq_wpversion: "' . WP_VERSION_ID . '",
|
29 |
sq_phpversion: "' . PHP_VERSION_ID . '",
|
30 |
+
sq_seoversion: "' . ((int)SQ_Classes_Tools::getOption('sq_sla') + 1) . '",
|
31 |
keyword_information: ' . (int)SQ_Classes_Tools::getOption('sq_keyword_information') . ',
|
32 |
sq_keywordtag: ' . (int)SQ_Classes_Tools::getOption('sq_keywordtag') . ',
|
33 |
frontend_css: "' . _SQ_THEME_URL_ . 'css/frontend' . (SQ_DEBUG ? '' : '.min') . '.css",
|
34 |
postID: "' . $sq_postID . '",
|
35 |
prevNonce: "' . wp_create_nonce('post_preview_' . $sq_postID) . '",
|
36 |
+
is_gutenberg: "' . (SQ_Classes_Tools::isGutenberg() ? 1 : 0) . '",
|
37 |
__infotext: ["' . __('Recent discussions:', _SQ_PLUGIN_NAME_) . '", "' . __('SEO Search Volume:', _SQ_PLUGIN_NAME_) . '", "' . __('Competition:', _SQ_PLUGIN_NAME_) . '", "' . __('Trend:', _SQ_PLUGIN_NAME_) . '"],
|
38 |
__keyword: "' . __('Keyword:', _SQ_PLUGIN_NAME_) . '",
|
39 |
__date: "' . __('date', _SQ_PLUGIN_NAME_) . '",
|
75 |
__add_to_briefcase: "' . __('Add to Briefcase', _SQ_PLUGIN_NAME_) . '",
|
76 |
__add_keyword_briefcase: "' . __('Add Keyword to Briefcase', _SQ_PLUGIN_NAME_) . '",
|
77 |
__usekeyword: "' . __('Use Keyword', _SQ_PLUGIN_NAME_) . '",
|
78 |
+
__new_post_title: "' . __('Auto Draft') . '"
|
79 |
};
|
80 |
|
81 |
|
97 |
|
98 |
</script>';
|
99 |
|
|
|
100 |
}
|
101 |
|
102 |
}
|
core/config.json
ADDED
@@ -0,0 +1,225 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"blocks": {
|
3 |
+
"block": [
|
4 |
+
{
|
5 |
+
"name": "SQ_Controllers_Menu",
|
6 |
+
"description": "Loading the Menu in Admin and Frontend",
|
7 |
+
"actions": { "action": "sq_getfrontmenu" },
|
8 |
+
"active": "1",
|
9 |
+
"admin": "1"
|
10 |
+
},
|
11 |
+
{
|
12 |
+
"name": "SQ_Controllers_Post",
|
13 |
+
"description": "Post Page",
|
14 |
+
"actions": {
|
15 |
+
"action": [
|
16 |
+
"sq_save_ogimage",
|
17 |
+
"sq_get_keyword"
|
18 |
+
]
|
19 |
+
},
|
20 |
+
"active": "1",
|
21 |
+
"admin": "1"
|
22 |
+
},
|
23 |
+
{
|
24 |
+
"name": "SQ_Controllers_PostsList",
|
25 |
+
"description": "Posts List Page",
|
26 |
+
"actions": {
|
27 |
+
"action": [
|
28 |
+
"sq_posts_rank",
|
29 |
+
"sq_post_rank",
|
30 |
+
"sq_recheck",
|
31 |
+
"inline-save"
|
32 |
+
]
|
33 |
+
},
|
34 |
+
"active": "1",
|
35 |
+
"admin": "1"
|
36 |
+
},
|
37 |
+
{
|
38 |
+
"name": "SQ_Core_BlockSettingsSeo",
|
39 |
+
"description": "SEO Setting page",
|
40 |
+
"actions": {
|
41 |
+
"action": [
|
42 |
+
"sq_settingsseo_update",
|
43 |
+
"sq_settingsseo_option",
|
44 |
+
"sq_get_snippet",
|
45 |
+
"sq_checkissues",
|
46 |
+
"sq_setstickysla",
|
47 |
+
"sq_active_help",
|
48 |
+
"sq_fixautoseo",
|
49 |
+
"sq_fixpermalink",
|
50 |
+
"sq_fixprivate",
|
51 |
+
"sq_fixcomments",
|
52 |
+
"sq_fix_ogduplicate",
|
53 |
+
"sq_fix_tcduplicate",
|
54 |
+
"sq_fix_titleduplicate",
|
55 |
+
"sq_fix_descduplicate",
|
56 |
+
"sq_backup",
|
57 |
+
"sq_backup_sql",
|
58 |
+
"sq_restore",
|
59 |
+
"sq_restore_sql",
|
60 |
+
"sq_dataupgrade",
|
61 |
+
"sq_resetsettings",
|
62 |
+
"sq_warnings_off",
|
63 |
+
"sq_google_alert_trial",
|
64 |
+
"sq_copyright_agreement"
|
65 |
+
]
|
66 |
+
},
|
67 |
+
"active": "1",
|
68 |
+
"admin": "1"
|
69 |
+
},
|
70 |
+
{
|
71 |
+
"name": "SQ_Controllers_FrontMenu",
|
72 |
+
"description": "Front Menu page",
|
73 |
+
"actions": { "action": "sq_saveseo" },
|
74 |
+
"active": "1",
|
75 |
+
"admin": "1"
|
76 |
+
},
|
77 |
+
{
|
78 |
+
"name": "SQ_Core_BlockPatterns",
|
79 |
+
"description": "Setting page",
|
80 |
+
"actions": {
|
81 |
+
"action": [
|
82 |
+
"sq_savepatters",
|
83 |
+
"sq_savepatters_option"
|
84 |
+
]
|
85 |
+
},
|
86 |
+
"active": "1",
|
87 |
+
"admin": "1"
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"name": "SQ_Core_BlockSettings",
|
91 |
+
"description": "Setting page",
|
92 |
+
"actions": { "action": "sq_settings_update" },
|
93 |
+
"active": "1",
|
94 |
+
"admin": "1"
|
95 |
+
},
|
96 |
+
{
|
97 |
+
"name": "SQ_Core_BlockSupport",
|
98 |
+
"description": "The support",
|
99 |
+
"controllers": { "controller": "SQ_Controllers_Post" },
|
100 |
+
"actions": {
|
101 |
+
"action": [
|
102 |
+
"sq_feedback",
|
103 |
+
"sq_support"
|
104 |
+
]
|
105 |
+
},
|
106 |
+
"active": "1",
|
107 |
+
"admin": "1"
|
108 |
+
},
|
109 |
+
{
|
110 |
+
"name": "SQ_Core_Blocklogin",
|
111 |
+
"description": "Connect to Squirrly",
|
112 |
+
"controllers": { "controller": "SQ_Controllers_Post" },
|
113 |
+
"actions": {
|
114 |
+
"action": [
|
115 |
+
"sq_login",
|
116 |
+
"sq_register",
|
117 |
+
"sq_reset"
|
118 |
+
]
|
119 |
+
},
|
120 |
+
"active": "1",
|
121 |
+
"admin": "1"
|
122 |
+
},
|
123 |
+
{
|
124 |
+
"name": "SQ_Core_Blocksearch",
|
125 |
+
"description": "Inspiration box",
|
126 |
+
"controllers": { "controller": "SQ_Controllers_Post" },
|
127 |
+
"actions": {
|
128 |
+
"action": [
|
129 |
+
"sq_search_blog",
|
130 |
+
"sq_type_click"
|
131 |
+
]
|
132 |
+
},
|
133 |
+
"active": "1",
|
134 |
+
"admin": "1"
|
135 |
+
},
|
136 |
+
{
|
137 |
+
"name": "SQ_Core_Blockseo",
|
138 |
+
"description": "SEO Live assistant",
|
139 |
+
"controllers": { "controller": "SQ_Controllers_Post" },
|
140 |
+
"active": "1",
|
141 |
+
"admin": "1"
|
142 |
+
},
|
143 |
+
{
|
144 |
+
"name": "SQ_Core_Blockresearch",
|
145 |
+
"description": "Research block",
|
146 |
+
"controllers": { "controller": "SQ_Controllers_Post" },
|
147 |
+
"active": "1",
|
148 |
+
"admin": "1"
|
149 |
+
},
|
150 |
+
{
|
151 |
+
"name": "SQ_Core_BlockAffiliate",
|
152 |
+
"description": "Affiliate Page",
|
153 |
+
"actions": { "action": "sq_settings_affiliate" },
|
154 |
+
"active": "1",
|
155 |
+
"admin": "1"
|
156 |
+
},
|
157 |
+
{
|
158 |
+
"name": "SQ_Core_Loading",
|
159 |
+
"description": "Loading JS",
|
160 |
+
"controllers": { "controller": "SQ_Controllers_Post" },
|
161 |
+
"active": "1",
|
162 |
+
"admin": "1"
|
163 |
+
},
|
164 |
+
{
|
165 |
+
"name": "SQ_Core_BlockImport",
|
166 |
+
"description": "Import from other plugins",
|
167 |
+
"actions": {
|
168 |
+
"action": [
|
169 |
+
"sq_importseo",
|
170 |
+
"sq_importsettings"
|
171 |
+
]
|
172 |
+
},
|
173 |
+
"active": "1",
|
174 |
+
"admin": "1"
|
175 |
+
},
|
176 |
+
{
|
177 |
+
"name": "SQ_Controllers_SerpChecker",
|
178 |
+
"description": "Import from other plugins",
|
179 |
+
"actions": {
|
180 |
+
"action": [
|
181 |
+
"sq_serp_process",
|
182 |
+
"sq_serp_refresh",
|
183 |
+
"sq_serp_recheck",
|
184 |
+
"sq_serp_purgeall",
|
185 |
+
"sq_serp_refresh_post"
|
186 |
+
]
|
187 |
+
},
|
188 |
+
"active": "1",
|
189 |
+
"admin": "1"
|
190 |
+
},
|
191 |
+
{
|
192 |
+
"name": "SQ_Core_BlockSerpKeywords",
|
193 |
+
"description": "Use Advanced Analytics",
|
194 |
+
"actions": {
|
195 |
+
"action": [
|
196 |
+
"sq_serp_showignore",
|
197 |
+
"sq_serp_ignore",
|
198 |
+
"sq_serp_articlesearch",
|
199 |
+
"sq_serp_addkeyword"
|
200 |
+
]
|
201 |
+
},
|
202 |
+
"active": "1",
|
203 |
+
"admin": "1"
|
204 |
+
},
|
205 |
+
{
|
206 |
+
"name": "SQ_Core_BlockBriefcaseKeywords",
|
207 |
+
"description": "Squirrly Briefcase",
|
208 |
+
"actions": {
|
209 |
+
"action": [
|
210 |
+
"sq_briefcase_addkeyword",
|
211 |
+
"sq_briefcase_addlabel",
|
212 |
+
"sq_briefcase_editlabel",
|
213 |
+
"sq_briefcase_keywordlabel",
|
214 |
+
"sq_briefcase_article",
|
215 |
+
"sq_briefcase_doresearch",
|
216 |
+
"sq_briefcase_deletekeyword",
|
217 |
+
"sq_briefcase_deletelabel"
|
218 |
+
]
|
219 |
+
},
|
220 |
+
"active": "1",
|
221 |
+
"admin": "1"
|
222 |
+
}
|
223 |
+
]
|
224 |
+
}
|
225 |
+
}
|
core/config.xml
DELETED
@@ -1,224 +0,0 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<blocks>
|
3 |
-
<block>
|
4 |
-
<name>SQ_Controllers_Menu</name>
|
5 |
-
<description>Loading the Menu in Admin and Frontend</description>
|
6 |
-
<actions>
|
7 |
-
<action>sq_getfrontmenu</action>
|
8 |
-
</actions>
|
9 |
-
<active>1</active>
|
10 |
-
<admin>1</admin>
|
11 |
-
</block>
|
12 |
-
<block>
|
13 |
-
<name>SQ_Controllers_Post</name>
|
14 |
-
<description>Post Page</description>
|
15 |
-
<actions>
|
16 |
-
<action>sq_save_ogimage</action>
|
17 |
-
<action>sq_get_keyword</action>
|
18 |
-
</actions>
|
19 |
-
<active>1</active>
|
20 |
-
<admin>1</admin>
|
21 |
-
</block>
|
22 |
-
<block>
|
23 |
-
<name>SQ_Controllers_PostsList</name>
|
24 |
-
<description>Posts List Page</description>
|
25 |
-
<actions>
|
26 |
-
<action>sq_posts_rank</action>
|
27 |
-
<action>sq_post_rank</action>
|
28 |
-
<action>sq_recheck</action>
|
29 |
-
<action>inline-save</action>
|
30 |
-
</actions>
|
31 |
-
<active>1</active>
|
32 |
-
<admin>1</admin>
|
33 |
-
</block>
|
34 |
-
<block>
|
35 |
-
<name>SQ_Core_BlockSettingsSeo</name>
|
36 |
-
<description>SEO Setting page</description>
|
37 |
-
<actions>
|
38 |
-
<action>sq_settingsseo_update</action>
|
39 |
-
<action>sq_settingsseo_option</action>
|
40 |
-
<action>sq_get_snippet</action>
|
41 |
-
<action>sq_checkissues</action>
|
42 |
-
|
43 |
-
<action>sq_setstickysla</action>
|
44 |
-
<action>sq_active_help</action>
|
45 |
-
<action>sq_fixautoseo</action>
|
46 |
-
<action>sq_fixpermalink</action>
|
47 |
-
<action>sq_fixprivate</action>
|
48 |
-
<action>sq_fixcomments</action>
|
49 |
-
<action>sq_fix_ogduplicate</action>
|
50 |
-
<action>sq_fix_tcduplicate</action>
|
51 |
-
<action>sq_fix_titleduplicate</action>
|
52 |
-
<action>sq_fix_descduplicate</action>
|
53 |
-
<action>sq_backup</action>
|
54 |
-
<action>sq_backup_sql</action>
|
55 |
-
<action>sq_restore</action>
|
56 |
-
<action>sq_restore_sql</action>
|
57 |
-
<action>sq_dataupgrade</action>
|
58 |
-
<action>sq_resetsettings</action>
|
59 |
-
<action>sq_warnings_off</action>
|
60 |
-
<action>sq_google_alert_trial</action>
|
61 |
-
<action>sq_copyright_agreement</action>
|
62 |
-
</actions>
|
63 |
-
<active>1</active>
|
64 |
-
<admin>1</admin>
|
65 |
-
</block>
|
66 |
-
<block>
|
67 |
-
<name>SQ_Controllers_FrontMenu</name>
|
68 |
-
<description>Front Menu page</description>
|
69 |
-
<actions>
|
70 |
-
<action>sq_saveseo</action>
|
71 |
-
</actions>
|
72 |
-
<active>1</active>
|
73 |
-
<admin>1</admin>
|
74 |
-
</block>
|
75 |
-
<block>
|
76 |
-
<name>SQ_Core_BlockPatterns</name>
|
77 |
-
<description>Setting page</description>
|
78 |
-
<actions>
|
79 |
-
<action>sq_savepatters</action>
|
80 |
-
<action>sq_savepatters_option</action>
|
81 |
-
</actions>
|
82 |
-
<active>1</active>
|
83 |
-
<admin>1</admin>
|
84 |
-
</block>
|
85 |
-
<block>
|
86 |
-
<name>SQ_Core_BlockSettings</name>
|
87 |
-
<description>Setting page</description>
|
88 |
-
<actions>
|
89 |
-
<action>sq_settings_update</action>
|
90 |
-
</actions>
|
91 |
-
<active>1</active>
|
92 |
-
<admin>1</admin>
|
93 |
-
</block>
|
94 |
-
<block>
|
95 |
-
<name>SQ_Core_BlockSupport</name>
|
96 |
-
<description>The support</description>
|
97 |
-
<controllers>
|
98 |
-
<controller>SQ_Controllers_Post</controller>
|
99 |
-
</controllers>
|
100 |
-
<actions>
|
101 |
-
<action>sq_feedback</action>
|
102 |
-
<action>sq_support</action>
|
103 |
-
</actions>
|
104 |
-
<active>1</active>
|
105 |
-
<admin>1</admin>
|
106 |
-
</block>
|
107 |
-
<block>
|
108 |
-
<name>SQ_Core_Blocklogin</name>
|
109 |
-
<description>Connect to Squirrly</description>
|
110 |
-
<controllers>
|
111 |
-
<controller>SQ_Controllers_Post</controller>
|
112 |
-
</controllers>
|
113 |
-
<actions>
|
114 |
-
<action>sq_login</action>
|
115 |
-
<action>sq_register</action>
|
116 |
-
<action>sq_reset</action>
|
117 |
-
</actions>
|
118 |
-
<active>1</active>
|
119 |
-
<admin>1</admin>
|
120 |
-
</block>
|
121 |
-
<block>
|
122 |
-
<name>SQ_Core_Blocksearch</name>
|
123 |
-
<description>Inspiration box</description>
|
124 |
-
<controllers>
|
125 |
-
<controller>SQ_Controllers_Post</controller>
|
126 |
-
</controllers>
|
127 |
-
<actions>
|
128 |
-
<action>sq_search_blog</action>
|
129 |
-
<action>sq_type_click</action>
|
130 |
-
</actions>
|
131 |
-
<active>1</active>
|
132 |
-
<admin>1</admin>
|
133 |
-
</block>
|
134 |
-
<block>
|
135 |
-
<name>SQ_Core_Blockseo</name>
|
136 |
-
<description>SEO Live assistant</description>
|
137 |
-
<controllers>
|
138 |
-
<controller>SQ_Controllers_Post</controller>
|
139 |
-
</controllers>
|
140 |
-
<active>1</active>
|
141 |
-
<admin>1</admin>
|
142 |
-
</block>
|
143 |
-
<block>
|
144 |
-
<name>SQ_Core_Blockresearch</name>
|
145 |
-
<description>Research block</description>
|
146 |
-
<controllers>
|
147 |
-
<controller>SQ_Controllers_Post</controller>
|
148 |
-
</controllers>
|
149 |
-
<active>1</active>
|
150 |
-
<admin>1</admin>
|
151 |
-
</block>
|
152 |
-
<block>
|
153 |
-
<name>SQ_Core_BlockAffiliate</name>
|
154 |
-
<description>Affiliate Page</description>
|
155 |
-
<actions>
|
156 |
-
<action>sq_settings_affiliate</action>
|
157 |
-
</actions>
|
158 |
-
<active>1</active>
|
159 |
-
<admin>1</admin>
|
160 |
-
</block>
|
161 |
-
<block>
|
162 |
-
<name>SQ_Core_Loading</name>
|
163 |
-
<description>Loading JS</description>
|
164 |
-
<controllers>
|
165 |
-
<controller>SQ_Controllers_Post</controller>
|
166 |
-
</controllers>
|
167 |
-
<active>1</active>
|
168 |
-
<admin>1</admin>
|
169 |
-
</block>
|
170 |
-
|
171 |
-
<block>
|
172 |
-
<name>SQ_Core_BlockImport</name>
|
173 |
-
<description>Import from other plugins</description>
|
174 |
-
<actions>
|
175 |
-
<action>sq_importseo</action>
|
176 |
-
<action>sq_importsettings</action>
|
177 |
-
</actions>
|
178 |
-
<active>1</active>
|
179 |
-
<admin>1</admin>
|
180 |
-
</block>
|
181 |
-
|
182 |
-
<block>
|
183 |
-
<name>SQ_Controllers_SerpChecker</name>
|
184 |
-
<description>Import from other plugins</description>
|
185 |
-
<actions>
|
186 |
-
<action>sq_serp_process</action>
|
187 |
-
<action>sq_serp_refresh</action>
|
188 |
-
<action>sq_serp_recheck</action>
|
189 |
-
<action>sq_serp_purgeall</action>
|
190 |
-
<action>sq_serp_refresh_post</action>
|
191 |
-
</actions>
|
192 |
-
<active>1</active>
|
193 |
-
<admin>1</admin>
|
194 |
-
</block>
|
195 |
-
<block>
|
196 |
-
<name>SQ_Core_BlockSerpKeywords</name>
|
197 |
-
<description>Use Advanced Analytics</description>
|
198 |
-
<actions>
|
199 |
-
<action>sq_serp_showignore</action>
|
200 |
-
<action>sq_serp_ignore</action>
|
201 |
-
<action>sq_serp_articlesearch</action>
|
202 |
-
<action>sq_serp_addkeyword</action>
|
203 |
-
</actions>
|
204 |
-
<active>1</active>
|
205 |
-
<admin>1</admin>
|
206 |
-
</block>
|
207 |
-
<block>
|
208 |
-
<name>SQ_Core_BlockBriefcaseKeywords</name>
|
209 |
-
<description>Squirrly Briefcase</description>
|
210 |
-
<actions>
|
211 |
-
<action>sq_briefcase_addkeyword</action>
|
212 |
-
<action>sq_briefcase_addlabel</action>
|
213 |
-
<action>sq_briefcase_editlabel</action>
|
214 |
-
<action>sq_briefcase_keywordlabel</action>
|
215 |
-
<action>sq_briefcase_article</action>
|
216 |
-
<action>sq_briefcase_doresearch</action>
|
217 |
-
<action>sq_briefcase_deletekeyword</action>
|
218 |
-
<action>sq_briefcase_deletelabel</action>
|
219 |
-
</actions>
|
220 |
-
<active>1</active>
|
221 |
-
<admin>1</admin>
|
222 |
-
</block>
|
223 |
-
|
224 |
-
</blocks>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/squirrly-seo-cs_CZ.mo
ADDED
Binary file
|
languages/squirrly-seo-cs_CZ.po
ADDED
@@ -0,0 +1,4429 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Squirrly SEO Plugin\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-07-30 09:01+0300\n"
|
6 |
+
"PO-Revision-Date: 2018-07-30 09:02+0300\n"
|
7 |
+
"Last-Translator: Squirrly <contact@squirrly.co>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: cs_CZ\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
16 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
+
"X-Poedit-Basepath: ..\n"
|
18 |
+
"X-Textdomain-Support: yes\n"
|
19 |
+
"X-Generator: Poedit 2.0.5\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
|
22 |
+
# @ squirrly-seo
|
23 |
+
#: classes/Error.php:16
|
24 |
+
msgid ""
|
25 |
+
"Function get_class does not exists! Is required for Squirrly to work "
|
26 |
+
"properly."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
# @ squirrly-seo
|
30 |
+
#: classes/Error.php:19
|
31 |
+
msgid ""
|
32 |
+
"Function file_exists does not exists! Is required for Squirrly to work "
|
33 |
+
"properly."
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
# @ squirrly-seo
|
37 |
+
#: classes/Error.php:23
|
38 |
+
msgid "The home directory is not set!"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
# @ squirrly-seo
|
42 |
+
#: classes/Error.php:27
|
43 |
+
msgid "The PHP version has to be greater then 4.0"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: classes/Error.php:70 classes/Error.php:81
|
47 |
+
msgid "Don't bother me!"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: classes/Tools.php:129
|
51 |
+
msgid "Getting started"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: classes/Tools.php:349
|
55 |
+
msgid "Format"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: classes/Tools.php:357 classes/Tools.php:373
|
59 |
+
msgid "Category"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: classes/Tools.php:365 classes/Tools.php:381
|
63 |
+
msgid "Tag"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: classes/Tools.php:389
|
67 |
+
msgid "Shipping Option"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: classes/Tools.php:397
|
71 |
+
msgid "Author at"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: classes/Tools.php:429
|
75 |
+
msgid "You searched for"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: classes/Tools.php:445
|
79 |
+
msgid "Page not found"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
# @ squirrly-seo
|
83 |
+
#: classes/Tools.php:976
|
84 |
+
msgid "Fix it for me!"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: classes/Tools.php:982
|
88 |
+
msgid "Activate the Squirrly SEO for your blog (recommended)"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: classes/Tools.php:993
|
92 |
+
msgid ""
|
93 |
+
"You have META Title Duplicates. Disable the Squirrly Title Optimization or "
|
94 |
+
"disable the other SEO Plugins"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: classes/Tools.php:1001
|
98 |
+
msgid ""
|
99 |
+
"You have META Description Duplicates. Disable the Squirrly Description "
|
100 |
+
"Optimization or disable the other SEO Plugins"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: classes/Tools.php:1009
|
104 |
+
msgid ""
|
105 |
+
"You have Open Graph META Duplicates. Disable the Squirrly SEO Open Graph or "
|
106 |
+
"disable the other SEO Plugins"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: classes/Tools.php:1017
|
110 |
+
msgid ""
|
111 |
+
"You have Twitter Card META Duplicates. Disable the Squirrly SEO Twitter Card "
|
112 |
+
"or disable the other SEO Plugins"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
# @ squirrly-seo
|
116 |
+
#: classes/Tools.php:1026
|
117 |
+
msgid "You're blocking google from indexing your site!"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: classes/Tools.php:1033
|
121 |
+
msgid ""
|
122 |
+
"It is highly recommended that you include the %postname% variable in the "
|
123 |
+
"permalink structure. <br />Go to Settings > Permalinks and add /%postname%/ "
|
124 |
+
"in Custom Structure"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: classes/Tools.php:1040
|
128 |
+
msgid ""
|
129 |
+
"It is highly recommended to change or remove the default Wordpress Tagline. "
|
130 |
+
"<br />Go to Settings > General > Tagline"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: classes/Tools.php:1046
|
134 |
+
msgid "Great! We didn't find any issue in your site."
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: classes/Tools.php:1191
|
138 |
+
msgid "Just another WordPress site"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: config/config.php:43
|
142 |
+
msgid "Displays the date of the post/page once it's published"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: config/config.php:44
|
146 |
+
msgid "Adds the title of the post/page once it’s published"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: config/config.php:45
|
150 |
+
msgid "Displays the number of the current page (i.e. 1 of 6)"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: config/config.php:46
|
154 |
+
msgid "Adds the title of a page's parent page"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: config/config.php:47
|
158 |
+
msgid "Adds the site's name to the post description"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: config/config.php:48
|
162 |
+
msgid "Adds the tagline/description of your site"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: config/config.php:49
|
166 |
+
msgid ""
|
167 |
+
"Will display an excerpt from the post/page (if not customized, the excerpt "
|
168 |
+
"will be auto-generated)"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: config/config.php:50
|
172 |
+
msgid "Will display an excerpt from the post/page (no auto-generation)"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: config/config.php:51
|
176 |
+
msgid "Adds the current tag(s) to the post description"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: config/config.php:52
|
180 |
+
msgid "Adds the post category (several categories will be comma-separated)"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: config/config.php:53
|
184 |
+
msgid "Adds the primary category of the post/page"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: config/config.php:54
|
188 |
+
msgid "Adds the category description to the post description"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: config/config.php:55
|
192 |
+
msgid "Adds the tag description"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: config/config.php:56
|
196 |
+
msgid "Adds the term description"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: config/config.php:57
|
200 |
+
msgid "Adds the term name"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: config/config.php:58
|
204 |
+
msgid "Displays the search phrase (if it appears in the post)"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: config/config.php:59
|
208 |
+
msgid "Places a separator between the elements of the post description"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: config/config.php:60
|
212 |
+
msgid "Replaces the publication date of a post/page with the modified one"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: config/config.php:61
|
216 |
+
msgid "Displays the author's nicename"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: config/config.php:62
|
220 |
+
msgid "Adds the author's biographical info to the post description"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: config/config.php:63
|
224 |
+
msgid "Displays the current date"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: config/config.php:64
|
228 |
+
msgid "Adds the post's keyword to the post description"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: config/config.php:65
|
232 |
+
msgid "Adds the current day"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: config/config.php:66
|
236 |
+
msgid "Adds the current month"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: config/config.php:67
|
240 |
+
msgid "Adds the current year"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: controllers/Api.php:40
|
244 |
+
msgid "Connection expired. Please try again"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: controllers/Api.php:54 controllers/Api.php:57 controllers/Api.php:60
|
248 |
+
msgid "Author not found"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: controllers/FrontMenu.php:32
|
252 |
+
msgid "You don't have enough pemission to edit this article"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: controllers/Menu.php:38 controllers/Menu.php:49
|
256 |
+
#, php-format
|
257 |
+
msgid ""
|
258 |
+
"Good news, %s is integrated in Squirrly SEO now and you don't have to run 2 "
|
259 |
+
"plugins anymore"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: controllers/Menu.php:69
|
263 |
+
#, php-format
|
264 |
+
msgid ""
|
265 |
+
"An error occurred during activation. If this error persists, please contact "
|
266 |
+
"us at: %s"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: controllers/Menu.php:99
|
270 |
+
msgid "See Your Rank on Google"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: controllers/Menu.php:156
|
274 |
+
msgid "Custom SEO"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: controllers/Menu.php:200
|
278 |
+
#, php-format
|
279 |
+
msgid "Check out the Squirrly Analytics section. %sClick here%s"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: controllers/Menu.php:200 view/BlockPostsAnalytics.php:47
|
283 |
+
msgid "Squirrly Analytics"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: controllers/Menu.php:217
|
287 |
+
msgid " Dashboard"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: controllers/Menu.php:218
|
291 |
+
msgid "First Step"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: controllers/Menu.php:218
|
295 |
+
msgid "Dashboard"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: controllers/Menu.php:227
|
299 |
+
msgid " Advanced Analytics (Business Level)"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: controllers/Menu.php:228
|
303 |
+
msgid "Advanced Analytics"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: controllers/Menu.php:235
|
307 |
+
msgid " Performance Analytics"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: controllers/Menu.php:236
|
311 |
+
msgid "Performance <br />Analytics"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: controllers/Menu.php:244
|
315 |
+
msgid " Keyword Research"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: controllers/Menu.php:245 view/BlockBriefcaseKeywords.php:333
|
319 |
+
msgid "Keyword Research"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: controllers/Menu.php:252
|
323 |
+
msgid " Briefcase"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: controllers/Menu.php:253
|
327 |
+
msgid "Briefcase"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: controllers/Menu.php:260
|
331 |
+
msgid " Live Assistant"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: controllers/Menu.php:261
|
335 |
+
msgid "Live Assistant"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: controllers/Menu.php:267
|
339 |
+
msgid " Copywriting"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: controllers/Menu.php:268
|
343 |
+
msgid "Copywriting"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: controllers/Menu.php:276
|
347 |
+
msgid " SEO Audit"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: controllers/Menu.php:277
|
351 |
+
msgid "Site Audit"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: controllers/Menu.php:285
|
355 |
+
msgid " SEO Settings"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: controllers/Menu.php:286 view/BlockToolbar.php:4
|
359 |
+
msgid "SEO Settings"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: controllers/Menu.php:294
|
363 |
+
msgid " Advanced Settings"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: controllers/Menu.php:295 view/BlockSettings.php:22
|
367 |
+
msgid "Advanced Settings"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: controllers/Menu.php:302
|
371 |
+
msgid " SEO Patterns"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: controllers/Menu.php:303 view/BlockToolbar.php:14
|
375 |
+
msgid "Patterns"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: controllers/Menu.php:311
|
379 |
+
msgid " Account Info"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: controllers/Menu.php:312
|
383 |
+
msgid "Account Info"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: controllers/Menu.php:320
|
387 |
+
msgid " Support"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
# @ squirrly-seo
|
391 |
+
#: controllers/Menu.php:321 view/BlockSupport.php:22
|
392 |
+
msgid "Support"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: controllers/Menu.php:329
|
396 |
+
msgid "Become an Affiliate with "
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: controllers/Menu.php:330
|
400 |
+
msgid "Become an Affiliate"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: controllers/Menu.php:339
|
404 |
+
msgid "Import, Backup & Restore SEO"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: controllers/Menu.php:340
|
408 |
+
msgid "Import/Backup SEO"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: controllers/Menu.php:384
|
412 |
+
msgid "SEO Snippet"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: controllers/PostsList.php:81
|
416 |
+
msgid "Squirrly"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: controllers/PostsList.php:107
|
420 |
+
msgid "Custom description: "
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: controllers/PostsList.php:107
|
424 |
+
msgid "Custom title: "
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: controllers/PostsList.php:143
|
428 |
+
msgid "SEO Analytics, by Squirrly"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: controllers/PostsList.php:144 controllers/SerpChecker.php:174
|
432 |
+
#: models/SerpCheckerTable.php:646 view/Blockseo.php:10
|
433 |
+
msgid "Update"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: controllers/PostsList.php:148 controllers/SerpChecker.php:178
|
437 |
+
msgid "Not Public"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: controllers/PostsList.php:149 controllers/SerpChecker.php:179
|
441 |
+
msgid "Could not process"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: controllers/PostsList.php:314 controllers/PostsList.php:332
|
445 |
+
#, php-format
|
446 |
+
msgid "Not in top 100 for: %s"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: controllers/PostsList.php:316 controllers/PostsList.php:334
|
450 |
+
msgid "The URL is Indexed"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: controllers/PostsList.php:318 controllers/PostsList.php:336
|
454 |
+
#: models/BlockPostsAnalytics.php:438
|
455 |
+
#, php-format
|
456 |
+
msgid "%s"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: controllers/SerpChecker.php:23 core/BlockPostsAnalytics.php:31
|
460 |
+
#, php-format
|
461 |
+
msgid ""
|
462 |
+
"To get back to the Advanced Analytics and see rankings for all the keywords "
|
463 |
+
"in Briefcase upgrade to %sBusiness Plan%s."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: controllers/SerpChecker.php:77 controllers/SerpChecker.php:91
|
467 |
+
#: controllers/SerpChecker.php:134 core/BlockSerpKeywords.php:66
|
468 |
+
#: core/BlockSerpKeywords.php:74 core/BlockSerpKeywords.php:97
|
469 |
+
#: core/BlockSettingsSeo.php:69
|
470 |
+
msgid "You don't have enough pemission to activate this feature"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: controllers/SerpChecker.php:115 controllers/SerpChecker.php:125
|
474 |
+
#: core/BlockBriefcaseKeywords.php:194
|
475 |
+
msgid "Last checked"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: controllers/SerpChecker.php:129
|
479 |
+
msgid "Invalid Request"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: controllers/SerpChecker.php:142
|
483 |
+
msgid "Removed successfully! The ranks were updated from Squirry Server"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: core/BlockAffiliate.php:38
|
487 |
+
#, php-format
|
488 |
+
msgid "Error: %s"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: core/BlockAffiliate.php:41
|
492 |
+
msgid "An error occured. Mabe a network error :("
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: core/BlockBriefcaseKeywords.php:36 core/BlockPostsAnalytics.php:24
|
496 |
+
#, php-format
|
497 |
+
msgid ""
|
498 |
+
"%sYou activated the Business Plan with Advanced Analytics. %sStart Here%s %s"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: core/BlockBriefcaseKeywords.php:39 core/BlockPostsAnalytics.php:28
|
502 |
+
#, php-format
|
503 |
+
msgid ""
|
504 |
+
"%sStart a FREE Trial of the Business Plan with Advanced Analytics for 7 "
|
505 |
+
"days. No credit card required. %sSee details%s %s"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: core/BlockBriefcaseKeywords.php:70
|
509 |
+
msgid "No keyword found in the briefcase."
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: core/BlockBriefcaseKeywords.php:96 core/BlockBriefcaseKeywords.php:123
|
513 |
+
#: core/BlockBriefcaseKeywords.php:141 core/BlockBriefcaseKeywords.php:165
|
514 |
+
#: core/BlockBriefcaseKeywords.php:235 core/BlockBriefcaseKeywords.php:255
|
515 |
+
#: core/BlockBriefcaseKeywords.php:277 core/BlockBriefcaseKeywords.php:295
|
516 |
+
msgid "You don't have enough pemission to manage this feature"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: core/BlockBriefcaseKeywords.php:116 core/BlockBriefcaseKeywords.php:248
|
520 |
+
#: core/BlockBriefcaseKeywords.php:270 core/BlockBriefcaseKeywords.php:312
|
521 |
+
#: core/Loading.php:40 view/FrontMenu.php:45
|
522 |
+
msgid "Saved!"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: core/BlockBriefcaseKeywords.php:118 core/BlockBriefcaseKeywords.php:159
|
526 |
+
#: core/BlockBriefcaseKeywords.php:227 core/BlockBriefcaseKeywords.php:314
|
527 |
+
msgid "Invalid Keyword!"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: core/BlockBriefcaseKeywords.php:134 core/BlockBriefcaseKeywords.php:288
|
531 |
+
msgid "Deleted!"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: core/BlockBriefcaseKeywords.php:136 core/BlockBriefcaseKeywords.php:272
|
535 |
+
#: core/BlockBriefcaseKeywords.php:290
|
536 |
+
msgid "Invalid params!"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: core/BlockBriefcaseKeywords.php:155
|
540 |
+
msgid "Keyword Research limit exceeded."
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: core/BlockBriefcaseKeywords.php:155 core/Loading.php:61
|
544 |
+
msgid "Add 20 Keyword Researches"
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: core/BlockBriefcaseKeywords.php:186
|
548 |
+
msgid "Check Ranks"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: core/BlockBriefcaseKeywords.php:197 models/BlockPostsAnalytics.php:393
|
552 |
+
#: models/SerpCheckerTable.php:565
|
553 |
+
msgid "Edit"
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: core/BlockBriefcaseKeywords.php:198
|
557 |
+
msgid "Get Rank"
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: core/BlockBriefcaseKeywords.php:203
|
561 |
+
msgid "Deleted Post"
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
+
#: core/BlockBriefcaseKeywords.php:213
|
565 |
+
msgid "Article title"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: core/BlockBriefcaseKeywords.php:214 models/SerpCheckerTable.php:359
|
569 |
+
msgid "Google Rank"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: core/BlockBriefcaseKeywords.php:215 models/SerpCheckerTable.php:362
|
573 |
+
msgid "Optimized"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: core/BlockBriefcaseKeywords.php:216
|
577 |
+
msgid "Option"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: core/BlockBriefcaseKeywords.php:221
|
581 |
+
msgid "There are no articles found"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: core/BlockBriefcaseKeywords.php:250
|
585 |
+
msgid "Invalid Label or Color!"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: core/BlockImport.php:34
|
589 |
+
msgid "All the Plugin settings were imported successfuly!"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: core/BlockImport.php:36
|
593 |
+
msgid "No settings found for this plugin/theme."
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: core/BlockImport.php:58
|
597 |
+
#, php-format
|
598 |
+
msgid ""
|
599 |
+
"%s SEO records were imported successfuly! You can now deactivate the %s "
|
600 |
+
"plugin"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: core/BlockImport.php:60
|
604 |
+
#, php-format
|
605 |
+
msgid ""
|
606 |
+
"There are no SEO records with this plugin. You can now deactivate the %s "
|
607 |
+
"plugin"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: core/BlockSerpKeywords.php:46
|
611 |
+
msgid "No keyword found yet."
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#: core/BlockSerpKeywords.php:50
|
615 |
+
msgid "No connection with Squirrly Server"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: core/BlockSerpKeywords.php:132
|
619 |
+
msgid "Could not find the Article in your Website"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: core/BlockSettingsSeo.php:27
|
623 |
+
#, php-format
|
624 |
+
msgid "You can now import into Squirrly SEO all the SEO Settings from %s"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: core/BlockSettingsSeo.php:40 core/Blockseo.php:13
|
628 |
+
msgid "Too short"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: core/BlockSettingsSeo.php:41 core/Blockseo.php:14
|
632 |
+
msgid "Too long"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: core/BlockSettingsSeo.php:483
|
636 |
+
msgid "Great! The backup is restored."
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: core/BlockSettingsSeo.php:485 core/BlockSettingsSeo.php:488
|
640 |
+
#: core/BlockSettingsSeo.php:533 core/BlockSettingsSeo.php:536
|
641 |
+
msgid "Error! The backup is not valid."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: core/BlockSettingsSeo.php:491 core/BlockSettingsSeo.php:539
|
645 |
+
msgid "Error! You have to enter a previous saved backup file."
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: core/BlockSettingsSeo.php:530
|
649 |
+
msgid "Great! The SEO backup is restored."
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: core/BlockSettingsSeo.php:546
|
653 |
+
msgid "Great! Squirrly Data Settings is up to date now."
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
# @ squirrly-seo
|
657 |
+
#: core/BlockSupport.php:24
|
658 |
+
msgid "Plugin Feedback"
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
# @ squirrly-seo
|
662 |
+
#: core/BlockSupport.php:59
|
663 |
+
msgid "Thank you for your feedback"
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
# @ squirrly-seo
|
667 |
+
#: core/BlockSupport.php:63 core/BlockSupport.php:103
|
668 |
+
msgid "No message."
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
# @ squirrly-seo
|
672 |
+
#: core/BlockSupport.php:85
|
673 |
+
msgid "Plugin Support"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: core/BlockSupport.php:96
|
677 |
+
msgid "Message sent. Thank you!"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: core/BlockSupport.php:99
|
681 |
+
msgid "Could not send the email. Make sure you can send emails from your blog."
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
# @ squirrly-seo
|
685 |
+
#: core/Blocklogin.php:84
|
686 |
+
#, php-format
|
687 |
+
msgid ""
|
688 |
+
"We found your email, so it means you already have a Squirrly.co account. "
|
689 |
+
"Please login with your Squirrly Email. If you forgot your password click "
|
690 |
+
"%shere%s"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: core/Blocklogin.php:87
|
694 |
+
msgid "Your email is not valid. Please enter a valid email"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: core/Blocklogin.php:90
|
698 |
+
msgid "We could not create your account. Please enter a valid email "
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: core/Blocklogin.php:95
|
702 |
+
msgid ""
|
703 |
+
"Error: Couldn't connect to host :( . Please contact your site's webhost (or "
|
704 |
+
"webmaster) and request them to add http://api.squirrly.co/ to their IP "
|
705 |
+
"whitelist."
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
# @ squirrly-seo
|
709 |
+
#: core/Blocklogin.php:98
|
710 |
+
#, php-format
|
711 |
+
msgid ""
|
712 |
+
"Could not send your informations to squirrly. Please register %smanually%s."
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
# @ squirrly-seo
|
716 |
+
#: core/Blocklogin.php:139
|
717 |
+
msgid "Wrong email or password!"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
# @ squirrly-seo
|
721 |
+
#: core/Blocklogin.php:142
|
722 |
+
msgid "You can use this account only for the URL you registered first!"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
# @ squirrly-seo
|
726 |
+
#: core/Blocklogin.php:147
|
727 |
+
msgid "An error occured."
|
728 |
+
msgstr ""
|
729 |
+
|
730 |
+
# @ squirrly-seo
|
731 |
+
#: core/Blocklogin.php:149
|
732 |
+
msgid "Both fields are required."
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: core/Blockseo.php:15
|
736 |
+
msgid "snippet"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: core/Loading.php:37
|
740 |
+
msgid "Recent discussions:"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: core/Loading.php:37
|
744 |
+
msgid "SEO Search Volume:"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
# @ squirrly-seo
|
748 |
+
#: core/Loading.php:37
|
749 |
+
msgid "Competition:"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
# @ squirrly-seo
|
753 |
+
#: core/Loading.php:37
|
754 |
+
msgid "Trend:"
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
# @ squirrly-seo
|
758 |
+
#: core/Loading.php:38
|
759 |
+
msgid "Keyword:"
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
# @ squirrly-seo
|
763 |
+
#: core/Loading.php:39
|
764 |
+
msgid "date"
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
# @ squirrly-seo
|
768 |
+
#: core/Loading.php:41
|
769 |
+
msgid "Read it!"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
# @ squirrly-seo
|
773 |
+
#: core/Loading.php:42
|
774 |
+
msgid "Insert it!"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
# @ squirrly-seo
|
778 |
+
#: core/Loading.php:43
|
779 |
+
msgid "Reference"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
# @ squirrly-seo
|
783 |
+
#: core/Loading.php:44
|
784 |
+
msgid "Insert as box"
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: core/Loading.php:45
|
788 |
+
msgid "Insert Link"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
# @ squirrly-seo
|
792 |
+
#: core/Loading.php:46
|
793 |
+
msgid "Not relevant?"
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
# @ squirrly-seo
|
797 |
+
#: core/Loading.php:47
|
798 |
+
msgid "Insert in your article"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: core/Loading.php:48
|
802 |
+
msgid ":( An error occurred while processing your request. Please try again"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: core/Loading.php:49
|
806 |
+
msgid "Keyword Research takes too long to get the results. Click to try again"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
# @ squirrly-seo
|
810 |
+
#: core/Loading.php:50
|
811 |
+
msgid "No results found!"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: core/Loading.php:51
|
815 |
+
msgid "Enter one more word to find relevant results"
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
# @ squirrly-seo
|
819 |
+
#: core/Loading.php:52
|
820 |
+
msgid "Takes too long to check this keyword ..."
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
# @ squirrly-seo
|
824 |
+
#: core/Loading.php:53
|
825 |
+
msgid "Do a research!"
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
# @ squirrly-seo
|
829 |
+
#: core/Loading.php:54
|
830 |
+
msgid "Do more research!"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: core/Loading.php:55
|
834 |
+
#, php-format
|
835 |
+
msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: core/Loading.php:56
|
839 |
+
msgid "Has creative commons attributes"
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#: core/Loading.php:57
|
843 |
+
msgid "No known copyright restrictions"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: core/Loading.php:58
|
847 |
+
msgid ""
|
848 |
+
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
849 |
+
"optimize for a keyword before publishing?"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: core/Loading.php:59
|
853 |
+
msgid "Keyword Research limit exceeded"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: core/Loading.php:60
|
857 |
+
msgid "Your Subscription has Expired"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: core/Loading.php:62
|
861 |
+
msgid "There are no keywords saved in briefcase yet"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: core/Loading.php:63
|
865 |
+
#, php-format
|
866 |
+
msgid "Congratulations! Your article is 100% optimized!"
|
867 |
+
msgstr ""
|
868 |
+
|
869 |
+
#: core/Loading.php:64
|
870 |
+
#, php-format
|
871 |
+
msgid "appears too many times. Try to remove %s of them"
|
872 |
+
msgstr ""
|
873 |
+
|
874 |
+
#: core/Loading.php:65
|
875 |
+
#, php-format
|
876 |
+
msgid "write %s more words"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: core/Loading.php:66
|
880 |
+
#, php-format
|
881 |
+
msgid "Add the keyword in the %s of your article"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: core/Loading.php:67
|
885 |
+
msgid "Click to keep the highlight on"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: core/Loading.php:68
|
889 |
+
msgid "introduction"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: core/Loading.php:69
|
893 |
+
#, php-format
|
894 |
+
msgid "Write more words after the %s keyword"
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: core/Loading.php:70
|
898 |
+
msgid "or use synonyms"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: core/Loading.php:71
|
902 |
+
#, php-format
|
903 |
+
msgid "add %s more word(s)"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: core/Loading.php:72
|
907 |
+
#, php-format
|
908 |
+
msgid "or remove %s word(s)"
|
909 |
+
msgstr ""
|
910 |
+
|
911 |
+
#: core/Loading.php:73
|
912 |
+
#, php-format
|
913 |
+
msgid "add %s more keyword(s)"
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: core/Loading.php:74
|
917 |
+
#, php-format
|
918 |
+
msgid "write %s more words to start calculating"
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
#: core/Loading.php:75
|
922 |
+
msgid "Add to Briefcase"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: core/Loading.php:76
|
926 |
+
msgid "Add Keyword to Briefcase"
|
927 |
+
msgstr ""
|
928 |
+
|
929 |
+
#: core/Loading.php:77 view/BlockBriefcaseKeywords.php:304
|
930 |
+
msgid "Use Keyword"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: core/Loading.php:78
|
934 |
+
msgid "Auto Draft"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: models/BlockPostsAnalytics.php:290
|
938 |
+
msgctxt "column name"
|
939 |
+
msgid "Title"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: models/BlockPostsAnalytics.php:292 models/SerpCheckerTable.php:376
|
943 |
+
msgid "Type"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: models/BlockPostsAnalytics.php:295 models/SerpCheckerTable.php:374
|
947 |
+
#: view/FrontMenu.php:386
|
948 |
+
msgid "Author"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: models/BlockPostsAnalytics.php:298
|
952 |
+
msgid "Keywords"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: models/BlockPostsAnalytics.php:300
|
956 |
+
#, php-format
|
957 |
+
msgid "Google.%s Position"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: models/BlockPostsAnalytics.php:303 view/BlockAudit.php:48
|
961 |
+
msgid "Date"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: models/BlockPostsAnalytics.php:317
|
965 |
+
msgid "Reset Filters"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: models/BlockPostsAnalytics.php:322
|
969 |
+
msgid "Search Posts"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: models/BlockPostsAnalytics.php:390 models/SerpCheckerTable.php:562
|
973 |
+
#, php-format
|
974 |
+
msgid "Edit “%s”"
|
975 |
+
msgstr ""
|
976 |
+
|
977 |
+
#: models/BlockPostsAnalytics.php:393 models/SerpCheckerTable.php:565
|
978 |
+
msgid "Edit this item"
|
979 |
+
msgstr ""
|
980 |
+
|
981 |
+
#: models/BlockPostsAnalytics.php:398 models/SerpCheckerTable.php:570
|
982 |
+
#, php-format
|
983 |
+
msgid "Preview “%s”"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: models/BlockPostsAnalytics.php:398 models/SerpCheckerTable.php:570
|
987 |
+
msgid "Preview"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: models/BlockPostsAnalytics.php:400 models/SerpCheckerTable.php:572
|
991 |
+
#, php-format
|
992 |
+
msgid "View “%s”"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: models/BlockPostsAnalytics.php:400 models/SerpCheckerTable.php:572
|
996 |
+
msgid "View"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: models/BlockPostsAnalytics.php:422
|
1000 |
+
msgid "No Tags"
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: models/BlockPostsAnalytics.php:432
|
1004 |
+
msgid "Could not receive data from google (Err: blocked IP)"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: models/BlockPostsAnalytics.php:434
|
1008 |
+
msgid "Not in top 100 for: <br /> \""
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: models/BlockPostsAnalytics.php:436
|
1012 |
+
msgid "The URL is indexed"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: models/BlockPostsAnalytics.php:440
|
1016 |
+
msgid "Force recheck"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: models/BlockPostsAnalytics.php:442
|
1020 |
+
msgid "Not yet verified"
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: models/BlockPostsAnalytics.php:442
|
1024 |
+
msgid "Check now"
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: models/BlockPostsAnalytics.php:445
|
1028 |
+
#, php-format
|
1029 |
+
msgid "Enable Ranking in %sAdvanced Settings%s"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: models/BlockPostsAnalytics.php:457 models/SerpCheckerTable.php:654
|
1033 |
+
msgid "Unpublished"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: models/BlockPostsAnalytics.php:466 models/SerpCheckerTable.php:663
|
1037 |
+
#, php-format
|
1038 |
+
msgid "%s ago"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: models/BlockPostsAnalytics.php:468 models/SerpCheckerTable.php:665
|
1042 |
+
msgid "Y/m/d"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: models/BlockPostsAnalytics.php:473 models/SerpCheckerTable.php:670
|
1046 |
+
msgid "Published"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: models/BlockPostsAnalytics.php:476 models/SerpCheckerTable.php:673
|
1050 |
+
msgid "Missed schedule"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: models/BlockPostsAnalytics.php:478 models/SerpCheckerTable.php:675
|
1054 |
+
msgid "Scheduled"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: models/BlockPostsAnalytics.php:480 models/SerpCheckerTable.php:677
|
1058 |
+
msgid "Last Modified"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
# @ squirrly-seo
|
1062 |
+
#: models/BlockSettingsSeo.php:71
|
1063 |
+
msgid "The code for Google Webmaster Tool is incorrect."
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
# @ squirrly-seo
|
1067 |
+
#: models/BlockSettingsSeo.php:98
|
1068 |
+
msgid "The code for Google Analytics is incorrect."
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
# @ squirrly-seo
|
1072 |
+
#: models/BlockSettingsSeo.php:144
|
1073 |
+
msgid "The code for Facebook is incorrect."
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: models/BlockSettingsSeo.php:169
|
1077 |
+
msgid "The code for Pinterest is incorrect."
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
# @ squirrly-seo
|
1081 |
+
#: models/BlockSettingsSeo.php:194
|
1082 |
+
msgid "The code for Bing is incorrect."
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: models/BlockSettingsSeo.php:320
|
1086 |
+
msgid "File type error: Only ICO, JPEG, JPG, GIF or PNG files are allowed."
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
# @ squirrly-seo
|
1090 |
+
#: models/BlockSettingsSeo.php:326
|
1091 |
+
msgid "GD error: The GD library must be installed on your server."
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
# @ squirrly-seo
|
1095 |
+
#: models/BlockSettingsSeo.php:332
|
1096 |
+
msgid "Delete error: Could not delete the old favicon."
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
# @ squirrly-seo
|
1100 |
+
#: models/BlockSettingsSeo.php:339
|
1101 |
+
msgid "Upload error: Could not upload the favicon."
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
# @ squirrly-seo
|
1105 |
+
#: models/BlockSettingsSeo.php:345
|
1106 |
+
msgid "Permission error: Could not change the favicon permissions."
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
# @ squirrly-seo
|
1110 |
+
#: models/BlockSettingsSeo.php:367
|
1111 |
+
msgid ""
|
1112 |
+
"ICO Error: Could not create the ICO from file. Try with another file type."
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
# @ squirrly-seo
|
1116 |
+
#: models/BlockSettingsSeo.php:386
|
1117 |
+
msgid "The favicon has been updated."
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
# @ default
|
1121 |
+
#: models/Post.php:53
|
1122 |
+
msgid "Squirrly could not find any results for: "
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: models/Post.php:122
|
1126 |
+
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: models/Post.php:123
|
1130 |
+
msgid ""
|
1131 |
+
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
1132 |
+
"the HTML form."
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
+
#: models/Post.php:124
|
1136 |
+
msgid "The uploaded file was only partially uploaded."
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: models/Post.php:125
|
1140 |
+
msgid "No file was uploaded."
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: models/Post.php:127
|
1144 |
+
msgid "Missing a temporary folder."
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: models/Post.php:128
|
1148 |
+
msgid "Failed to write file to disk."
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: models/Post.php:129
|
1152 |
+
msgid "File upload stopped by extension."
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: models/Post.php:146
|
1156 |
+
msgid "Invalid form submission."
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: models/Post.php:156
|
1160 |
+
msgid "File is empty. Please upload something more substantial."
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: models/Post.php:158
|
1164 |
+
msgid ""
|
1165 |
+
"File is empty. Please upload something more substantial. This error could "
|
1166 |
+
"also be caused by uploads being disabled in your php.ini or by post_max_size "
|
1167 |
+
"being defined as smaller than upload_max_filesize in php.ini."
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: models/Post.php:164
|
1171 |
+
msgid "Specified file failed upload test."
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: models/Post.php:177
|
1175 |
+
msgid "Sorry, this file type is not permitted for security reasons."
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: models/Post.php:202
|
1179 |
+
#, php-format
|
1180 |
+
msgid "The uploaded file could not be moved to %s."
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: models/PostsList.php:27
|
1184 |
+
msgid "Optimized:"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: models/PostsList.php:28
|
1188 |
+
msgid "See Analytics"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: models/PostsList.php:30
|
1192 |
+
msgid "Optimize it with Squirrly to see the Analytics"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: models/PostsList.php:83
|
1196 |
+
msgid "This post's current position in Google"
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: models/PostsList.php:86
|
1200 |
+
msgid "The total traffic for the last 30 days, for the current post"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: models/PostsList.php:89
|
1204 |
+
msgid "The total number of shares on social media channels for this post"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: models/PostsList.php:92
|
1208 |
+
msgid "The total authority for this post"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: models/PostsList.php:95
|
1212 |
+
msgid "The total number of inbound links to this post"
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: models/SerpCheckerTable.php:353 view/BlockPatterns.php:102
|
1216 |
+
#: view/FrontMenu.php:156
|
1217 |
+
msgid "Title"
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#: models/SerpCheckerTable.php:356 view/BlockBriefcaseKeywords.php:76
|
1221 |
+
#: view/BlockBriefcaseKeywords.php:184 view/BlockSerpKeywords.php:31
|
1222 |
+
#: view/BlockSerpKeywords.php:63
|
1223 |
+
msgid "Keyword"
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: models/SerpCheckerTable.php:371
|
1227 |
+
msgid "Social Shares"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: models/SerpCheckerTable.php:378
|
1231 |
+
msgid "Post Date"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: models/SerpCheckerTable.php:399 view/BlockBriefcaseKeywords.php:46
|
1235 |
+
msgid "Search Keyword"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: models/SerpCheckerTable.php:599
|
1239 |
+
#, php-format
|
1240 |
+
msgid "Squirrly Optimization for: '%s'"
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: models/SerpCheckerTable.php:632
|
1244 |
+
msgid "Facebook"
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
# @ squirrly-seo
|
1248 |
+
#: models/SerpCheckerTable.php:633 view/Blocksearch.php:61
|
1249 |
+
msgid "Twitter"
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: models/SerpCheckerTable.php:636
|
1253 |
+
msgid "Reddit"
|
1254 |
+
msgstr ""
|
1255 |
+
|
1256 |
+
#: models/SerpCheckerTable.php:637
|
1257 |
+
msgid "Stumble"
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: models/SerpCheckerTable.php:638
|
1261 |
+
msgid "Pinterest"
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: models/SerpCheckerTable.php:642
|
1265 |
+
#, php-format
|
1266 |
+
msgid "Google Rank for keyword '%s' on '%s'"
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: models/SerpCheckerTable.php:702
|
1270 |
+
msgid "In queue"
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: models/SerpCheckerTable.php:705
|
1274 |
+
msgid "Not indexed"
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: models/domain/Patterns.php:240
|
1278 |
+
msgid "Page"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: models/domain/Patterns.php:241
|
1282 |
+
msgid "of"
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: models/services/Robots.php:13
|
1286 |
+
msgid "Squirrly SEO Robots"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: models/services/Robots.php:16
|
1290 |
+
msgid ""
|
1291 |
+
"Your blog is not public. Please see Site Visibility on Settings > Reading."
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: models/services/Robots.php:31
|
1295 |
+
msgid "No Squirrly SEO Robots found."
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
# @ squirrly-seo
|
1299 |
+
#: squirrly.php:75
|
1300 |
+
msgid ""
|
1301 |
+
"For Squirrly to work, the PHP version has to be equal or greater then 5.1"
|
1302 |
+
msgstr ""
|
1303 |
+
|
1304 |
+
#: view/BlockAccount.php:7 view/BlockAffiliate.php:7 view/BlockAudit.php:7
|
1305 |
+
#: view/BlockBriefcaseKeywords.php:7 view/BlockDashboard.php:6
|
1306 |
+
#: view/BlockImport.php:7 view/BlockKeywordResearch.php:7
|
1307 |
+
#: view/BlockPatterns.php:7 view/BlockPostsAnalytics.php:7
|
1308 |
+
#: view/BlockSettings.php:7 view/BlockSettingsSeo.php:7 view/SerpChecker.php:7
|
1309 |
+
msgid "Connect to Squirrly Data Cloud"
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: view/BlockAccount.php:13 view/BlockAffiliate.php:13 view/BlockAudit.php:13
|
1313 |
+
#: view/BlockBriefcaseKeywords.php:13 view/BlockDashboard.php:28
|
1314 |
+
#: view/BlockImport.php:13 view/BlockKeywordResearch.php:13
|
1315 |
+
#: view/BlockPatterns.php:13 view/BlockPostsAnalytics.php:12
|
1316 |
+
#: view/BlockSettings.php:13 view/BlockSettingsSeo.php:13
|
1317 |
+
#: view/Blocklogin.php:38 view/SerpChecker.php:13
|
1318 |
+
msgid "START HERE"
|
1319 |
+
msgstr ""
|
1320 |
+
|
1321 |
+
#: view/BlockAccount.php:23
|
1322 |
+
msgid "Squirrly account information"
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: view/BlockAccount.php:25 view/BlockAffiliate.php:23
|
1326 |
+
msgid "Go to dashboard"
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: view/BlockAccount.php:26
|
1330 |
+
msgid "See ALL of Your Activity so Far"
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: view/BlockAffiliate.php:21 view/BlockAffiliate.php:33
|
1334 |
+
msgid "Join our affiliate program"
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
+
#: view/BlockAffiliate.php:34
|
1338 |
+
#, php-format
|
1339 |
+
msgid "%sHow I Started Making Money With the Squirrly Affiliate Program%s"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: view/BlockAffiliate.php:37
|
1343 |
+
msgid "Affiliate Benefits"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: view/BlockAffiliate.php:42
|
1347 |
+
#, php-format
|
1348 |
+
msgid "- Up to recurring 45%s commission"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: view/BlockAffiliate.php:47
|
1352 |
+
msgid "- No cost"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: view/BlockAffiliate.php:52
|
1356 |
+
msgid "- Monthly payments in your Paypal account"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: view/BlockAffiliate.php:61
|
1360 |
+
#, php-format
|
1361 |
+
msgid ""
|
1362 |
+
"Before joining our affiliate program, please read the Terms of Use %shttps://"
|
1363 |
+
"www.squirrly.co/terms/%s."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: view/BlockAffiliate.php:69
|
1367 |
+
msgid ""
|
1368 |
+
"To redirect users to your site, just change \"squirrly.co\" with your domain."
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: view/BlockAffiliate.php:72
|
1372 |
+
msgid "Generate affiliate link"
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: view/BlockAffiliate.php:81
|
1376 |
+
msgid ""
|
1377 |
+
"Your affiliate account is set and ready to go. Above you have the affiliate "
|
1378 |
+
"link. "
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: view/BlockAffiliate.php:83
|
1382 |
+
#, php-format
|
1383 |
+
msgid "Check your affiliate page: %sAffiliate page%s"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: view/BlockAffiliate.php:86
|
1387 |
+
msgid ""
|
1388 |
+
"After you connect to Squirrly you can begin to use your free Squirrly "
|
1389 |
+
"affiliate link immediately!"
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: view/BlockAffiliate.php:96
|
1393 |
+
msgid "Squirrly banners you can use"
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: view/BlockAffiliate.php:121
|
1397 |
+
msgid "<< START HERE >>"
|
1398 |
+
msgstr ""
|
1399 |
+
|
1400 |
+
#: view/BlockAnalytics.php:55
|
1401 |
+
msgid "Moz Inbound Links"
|
1402 |
+
msgstr ""
|
1403 |
+
|
1404 |
+
#: view/BlockAnalytics.php:62
|
1405 |
+
msgid "Ahrefs Inbound Links"
|
1406 |
+
msgstr ""
|
1407 |
+
|
1408 |
+
#: view/BlockAnalytics.php:74
|
1409 |
+
msgid "Moz Authority"
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: view/BlockAnalytics.php:79
|
1413 |
+
msgid "Moz Rank"
|
1414 |
+
msgstr ""
|
1415 |
+
|
1416 |
+
#: view/BlockAnalytics.php:86
|
1417 |
+
msgid "Google Page Rank"
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: view/BlockAnalytics.php:92
|
1421 |
+
msgid "Ahrefs Rank"
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: view/BlockAnalytics.php:109
|
1425 |
+
msgid "Facebook shares"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: view/BlockAnalytics.php:114
|
1429 |
+
msgid "Twitter shares"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: view/BlockAnalytics.php:119
|
1433 |
+
msgid "StumbleUpon shares"
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: view/BlockAnalytics.php:124
|
1437 |
+
msgid "Reddit shares"
|
1438 |
+
msgstr ""
|
1439 |
+
|
1440 |
+
#: view/BlockAnalytics.php:129
|
1441 |
+
msgid "Pinterest shares"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: view/BlockAnalytics.php:161
|
1445 |
+
msgid "Nicely done! Now you can focus on the other tasks"
|
1446 |
+
msgstr ""
|
1447 |
+
|
1448 |
+
#: view/BlockAnalytics.php:161
|
1449 |
+
msgid ""
|
1450 |
+
"I know you can improve this. Please follow the documentation for a quicker "
|
1451 |
+
"progress"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: view/BlockAnalytics.php:234
|
1455 |
+
msgid "Visits"
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: view/BlockAnalytics.php:247
|
1459 |
+
msgid "Current: "
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: view/BlockAnalytics.php:248
|
1463 |
+
msgid "Lowest: "
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: view/BlockAnalytics.php:249
|
1467 |
+
msgid "Highest: "
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: view/BlockAnalytics.php:253
|
1471 |
+
msgid "last 30 days"
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: view/BlockAudit.php:24
|
1475 |
+
msgid "Squirrly Site Audit"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: view/BlockAudit.php:31
|
1479 |
+
msgid "What the Audit offers:"
|
1480 |
+
msgstr ""
|
1481 |
+
|
1482 |
+
#: view/BlockAudit.php:32
|
1483 |
+
#, php-format
|
1484 |
+
msgid ""
|
1485 |
+
"%sTracks all the areas of your Content Marketing Strategy:%s: Blogging, "
|
1486 |
+
"Traffic, SEO, Social Signals, Links, Authority. Every single week, you get a "
|
1487 |
+
"new report by email."
|
1488 |
+
msgstr ""
|
1489 |
+
|
1490 |
+
#: view/BlockAudit.php:33
|
1491 |
+
#, php-format
|
1492 |
+
msgid ""
|
1493 |
+
"%sIt gives you professional advice on how to fix issues in those 6 areas%s. "
|
1494 |
+
"You can easily find out how to improve your content marketing strategy."
|
1495 |
+
msgstr ""
|
1496 |
+
|
1497 |
+
#: view/BlockAudit.php:34
|
1498 |
+
#, php-format
|
1499 |
+
msgid ""
|
1500 |
+
"%sMonitors your progress, week by week.%s You’ll get to see if your site "
|
1501 |
+
"audit has improved since you last checked it. "
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: view/BlockAudit.php:35
|
1505 |
+
#, php-format
|
1506 |
+
msgid "%sAnalyze any single article.%s See how it improves over time."
|
1507 |
+
msgstr ""
|
1508 |
+
|
1509 |
+
#: view/BlockAudit.php:36
|
1510 |
+
#, php-format
|
1511 |
+
msgid "%sLearn More About The Site Audit%s"
|
1512 |
+
msgstr ""
|
1513 |
+
|
1514 |
+
#: view/BlockAudit.php:37
|
1515 |
+
#, php-format
|
1516 |
+
msgid "%sRequest an Audit Now%s"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: view/BlockAudit.php:43
|
1520 |
+
msgid "\"Your current site audit score:"
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: view/BlockAudit.php:47
|
1524 |
+
msgid "Score"
|
1525 |
+
msgstr ""
|
1526 |
+
|
1527 |
+
#: view/BlockAudit.php:50
|
1528 |
+
msgid "See the Audit"
|
1529 |
+
msgstr ""
|
1530 |
+
|
1531 |
+
#: view/BlockAudit.php:53
|
1532 |
+
msgid ""
|
1533 |
+
"It seems that no audit has been generated yet. You can request an audit down "
|
1534 |
+
"below. It should be ready in 5-10 minutes."
|
1535 |
+
msgstr ""
|
1536 |
+
|
1537 |
+
#: view/BlockAudit.php:55
|
1538 |
+
msgid "Request an Audit Now"
|
1539 |
+
msgstr ""
|
1540 |
+
|
1541 |
+
#: view/BlockAudit.php:62
|
1542 |
+
msgid "This is an example of a Site Audit"
|
1543 |
+
msgstr ""
|
1544 |
+
|
1545 |
+
#: view/BlockBriefcaseKeywords.php:25 view/SerpChecker.php:49
|
1546 |
+
msgid "Show All"
|
1547 |
+
msgstr ""
|
1548 |
+
|
1549 |
+
#: view/BlockBriefcaseKeywords.php:29
|
1550 |
+
msgid "Briefcase Keywords"
|
1551 |
+
msgstr ""
|
1552 |
+
|
1553 |
+
#: view/BlockBriefcaseKeywords.php:33
|
1554 |
+
msgid "See the Google Ranks for these Keywords"
|
1555 |
+
msgstr ""
|
1556 |
+
|
1557 |
+
#: view/BlockBriefcaseKeywords.php:36
|
1558 |
+
msgid "Go to Analytics"
|
1559 |
+
msgstr ""
|
1560 |
+
|
1561 |
+
#: view/BlockBriefcaseKeywords.php:48
|
1562 |
+
msgid "Filter by labels"
|
1563 |
+
msgstr ""
|
1564 |
+
|
1565 |
+
#: view/BlockBriefcaseKeywords.php:62 view/BlockSerpKeywords.php:12
|
1566 |
+
msgid "Add new keyword"
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#: view/BlockBriefcaseKeywords.php:63
|
1570 |
+
msgid "Manage Labels"
|
1571 |
+
msgstr ""
|
1572 |
+
|
1573 |
+
#: view/BlockBriefcaseKeywords.php:72 view/BlockSerpKeywords.php:27
|
1574 |
+
msgid "Add a new Keyword"
|
1575 |
+
msgstr ""
|
1576 |
+
|
1577 |
+
#: view/BlockBriefcaseKeywords.php:77 view/BlockSerpKeywords.php:32
|
1578 |
+
msgid "Enter a Keyword (2-4 words)"
|
1579 |
+
msgstr ""
|
1580 |
+
|
1581 |
+
#: view/BlockBriefcaseKeywords.php:80
|
1582 |
+
msgid "Select Labels"
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: view/BlockBriefcaseKeywords.php:89 view/BlockBriefcaseKeywords.php:234
|
1586 |
+
msgid "Add new Label"
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: view/BlockBriefcaseKeywords.php:96 view/BlockSerpKeywords.php:42
|
1590 |
+
msgid "Add Keyword"
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: view/BlockBriefcaseKeywords.php:107
|
1594 |
+
msgid "Add New Label"
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
+
#: view/BlockBriefcaseKeywords.php:111 view/BlockBriefcaseKeywords.php:156
|
1598 |
+
msgid "Label Name"
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: view/BlockBriefcaseKeywords.php:115 view/BlockBriefcaseKeywords.php:160
|
1602 |
+
msgid "Label Color"
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: view/BlockBriefcaseKeywords.php:122
|
1606 |
+
msgid "Add Label"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: view/BlockBriefcaseKeywords.php:125
|
1610 |
+
msgid "Your Labels"
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: view/BlockBriefcaseKeywords.php:152
|
1614 |
+
msgid "Edit Label"
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
#: view/BlockBriefcaseKeywords.php:166
|
1618 |
+
msgid "Save Label"
|
1619 |
+
msgstr ""
|
1620 |
+
|
1621 |
+
#: view/BlockBriefcaseKeywords.php:185
|
1622 |
+
msgid "Used"
|
1623 |
+
msgstr ""
|
1624 |
+
|
1625 |
+
#: view/BlockBriefcaseKeywords.php:186
|
1626 |
+
msgid "Data"
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: view/BlockBriefcaseKeywords.php:216
|
1630 |
+
msgid "Assign Labels to this Keyword"
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: view/BlockBriefcaseKeywords.php:222
|
1634 |
+
#, php-format
|
1635 |
+
msgid "Select Labels for: %s"
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: view/BlockBriefcaseKeywords.php:240
|
1639 |
+
msgid "Save Labels"
|
1640 |
+
msgstr ""
|
1641 |
+
|
1642 |
+
#: view/BlockBriefcaseKeywords.php:257 view/BlockBriefcaseKeywords.php:258
|
1643 |
+
msgid "Competition"
|
1644 |
+
msgstr ""
|
1645 |
+
|
1646 |
+
#: view/BlockBriefcaseKeywords.php:258 view/BlockBriefcaseKeywords.php:266
|
1647 |
+
#: view/BlockBriefcaseKeywords.php:274 view/BlockBriefcaseKeywords.php:282
|
1648 |
+
msgid "-"
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: view/BlockBriefcaseKeywords.php:265 view/BlockBriefcaseKeywords.php:266
|
1652 |
+
msgid "SEO Search Volume"
|
1653 |
+
msgstr ""
|
1654 |
+
|
1655 |
+
#: view/BlockBriefcaseKeywords.php:273 view/BlockBriefcaseKeywords.php:274
|
1656 |
+
msgid "Recent discussions"
|
1657 |
+
msgstr ""
|
1658 |
+
|
1659 |
+
#: view/BlockBriefcaseKeywords.php:281 view/BlockBriefcaseKeywords.php:282
|
1660 |
+
msgid "Trending"
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
# @ squirrly-seo
|
1664 |
+
#: view/BlockBriefcaseKeywords.php:290
|
1665 |
+
msgid "Refresh Keyword Research"
|
1666 |
+
msgstr ""
|
1667 |
+
|
1668 |
+
# @ squirrly-seo
|
1669 |
+
#: view/BlockBriefcaseKeywords.php:295 view/Blocksearch.php:48
|
1670 |
+
msgid "Do a research"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: view/BlockBriefcaseKeywords.php:307
|
1674 |
+
msgid "Delete"
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: view/BlockBriefcaseKeywords.php:338
|
1678 |
+
msgid "Select Country"
|
1679 |
+
msgstr ""
|
1680 |
+
|
1681 |
+
# @ squirrly-seo
|
1682 |
+
#: view/BlockBriefcaseKeywords.php:344
|
1683 |
+
msgid "Do Research"
|
1684 |
+
msgstr ""
|
1685 |
+
|
1686 |
+
#: view/BlockCopyright.php:9
|
1687 |
+
msgid "Squirrly Copywriting Options"
|
1688 |
+
msgstr ""
|
1689 |
+
|
1690 |
+
#: view/BlockCopyright.php:11
|
1691 |
+
msgid ""
|
1692 |
+
"Referencing other articles, ideas, and relevant Tweets adds value to your "
|
1693 |
+
"original content. This established journalist practice makes the content "
|
1694 |
+
"more trustworthy and helps readers shape a well-rounded understanding of the "
|
1695 |
+
"subject."
|
1696 |
+
msgstr ""
|
1697 |
+
|
1698 |
+
#: view/BlockCopyright.php:20
|
1699 |
+
msgid ""
|
1700 |
+
"The toolkit's intended purpose is to help you save time and find the best "
|
1701 |
+
"sources to include in your articles. "
|
1702 |
+
msgstr ""
|
1703 |
+
|
1704 |
+
#: view/BlockCopyright.php:24
|
1705 |
+
msgid ""
|
1706 |
+
"Squirrly has never encouraged and will never encourage users to create "
|
1707 |
+
"duplicate content."
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
#: view/BlockCopyright.php:25
|
1711 |
+
msgid ""
|
1712 |
+
"Squirrly will not take responsibility if an user copies an entire article "
|
1713 |
+
"from another source."
|
1714 |
+
msgstr ""
|
1715 |
+
|
1716 |
+
#: view/BlockCopyright.php:27
|
1717 |
+
msgid "Best Practices for Using the Inspiration Box from Squirrly: "
|
1718 |
+
msgstr ""
|
1719 |
+
|
1720 |
+
#: view/BlockCopyright.php:31
|
1721 |
+
msgid ""
|
1722 |
+
"Focus on creating original content. Citing sources should complement your "
|
1723 |
+
"original ideas"
|
1724 |
+
msgstr ""
|
1725 |
+
|
1726 |
+
#: view/BlockCopyright.php:32
|
1727 |
+
msgid "Try to limit yourself to 2 or 3 quotes per article"
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: view/BlockCopyright.php:33
|
1731 |
+
msgid "Always include a link to your sources"
|
1732 |
+
msgstr ""
|
1733 |
+
|
1734 |
+
#: view/BlockCopyright.php:39 view/BlockCopyright.php:50
|
1735 |
+
msgid "Use Squirrly's Inspiration box"
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: view/BlockCopyright.php:42 view/BlockCopyright.php:47
|
1739 |
+
msgid ""
|
1740 |
+
"I've read and understood how to correctly use the Inspiration Box from "
|
1741 |
+
"Squirrly."
|
1742 |
+
msgstr ""
|
1743 |
+
|
1744 |
+
#: view/BlockCustomerService.php:5
|
1745 |
+
msgid "Squirrly Customer Service"
|
1746 |
+
msgstr ""
|
1747 |
+
|
1748 |
+
#: view/BlockCustomerService.php:12
|
1749 |
+
msgid "Support Channels"
|
1750 |
+
msgstr ""
|
1751 |
+
|
1752 |
+
#: view/BlockCustomerService.php:13
|
1753 |
+
#, php-format
|
1754 |
+
msgid ""
|
1755 |
+
"%sHowto.squirrly.co%s > Knowledge Base. Find out how to get the most out of "
|
1756 |
+
"Squirrly SEO"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: view/BlockCustomerService.php:14
|
1760 |
+
#, php-format
|
1761 |
+
msgid ""
|
1762 |
+
"%sPlugin.squirrly.co%s >> Case studies, ideas on how to better use Squirrly "
|
1763 |
+
"SEO for Content Marketing"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: view/BlockCustomerService.php:15
|
1767 |
+
#, php-format
|
1768 |
+
msgid ""
|
1769 |
+
"%sFacebook page%s >> You can send us your support requests in private "
|
1770 |
+
"messages"
|
1771 |
+
msgstr ""
|
1772 |
+
|
1773 |
+
#: view/BlockCustomerService.php:16
|
1774 |
+
#, php-format
|
1775 |
+
msgid "%sSupport Community%s >> Join us on Google Plus"
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: view/BlockCustomerService.php:17
|
1779 |
+
#, php-format
|
1780 |
+
msgid "%sLive Chat%s >> on Youtube. Thursday 4 PM"
|
1781 |
+
msgstr ""
|
1782 |
+
|
1783 |
+
#: view/BlockCustomerService.php:18
|
1784 |
+
#, php-format
|
1785 |
+
msgid "%sNew Lessons%s >> Mon. and Tue. on Twitter"
|
1786 |
+
msgstr ""
|
1787 |
+
|
1788 |
+
#: view/BlockCustomerService.php:19
|
1789 |
+
#, php-format
|
1790 |
+
msgid "%sEmail Support%s >> 8 AM to 4 PM (London Time): Mon-Fri.."
|
1791 |
+
msgstr ""
|
1792 |
+
|
1793 |
+
# @ squirrly-seo
|
1794 |
+
#: view/BlockCustomerService.php:25 view/BlockSupport.php:25
|
1795 |
+
msgid "Need Help with Squirrly SEO?"
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: view/BlockCustomerService.php:31
|
1799 |
+
msgid "From"
|
1800 |
+
msgstr ""
|
1801 |
+
|
1802 |
+
# @ squirrly-seo
|
1803 |
+
#: view/BlockCustomerService.php:41 view/BlockSupport.php:38
|
1804 |
+
msgid "Send Question"
|
1805 |
+
msgstr ""
|
1806 |
+
|
1807 |
+
#: view/BlockCustomerService.php:45 view/BlockSupport.php:42
|
1808 |
+
#, php-format
|
1809 |
+
msgid "By clicking Send Question you're agreeing to %sSquirrly Terms%s"
|
1810 |
+
msgstr ""
|
1811 |
+
|
1812 |
+
#: view/BlockDashboard.php:11
|
1813 |
+
msgid "Restore Squirrly Settings"
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: view/BlockDashboard.php:16 view/BlockImport.php:113
|
1817 |
+
msgid "Upload the file with the saved Squirrly Settings"
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
#: view/BlockDashboard.php:21 view/BlockImport.php:118 view/BlockImport.php:140
|
1821 |
+
msgid "Restore Backup"
|
1822 |
+
msgstr ""
|
1823 |
+
|
1824 |
+
#: view/BlockDashboard.php:27
|
1825 |
+
msgid "Connect to Squirrly and start optimizing your site"
|
1826 |
+
msgstr ""
|
1827 |
+
|
1828 |
+
#: view/BlockDashboard.php:35
|
1829 |
+
msgid "Squirrly dashboard"
|
1830 |
+
msgstr ""
|
1831 |
+
|
1832 |
+
#: view/BlockDashboard.php:47
|
1833 |
+
#, php-format
|
1834 |
+
msgid ""
|
1835 |
+
"%sHelp Center%s - learn more about Squirrly SEO features and unhinge your "
|
1836 |
+
"SEO potential"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: view/BlockDashboard.php:50 view/BlockDashboard.php:153
|
1840 |
+
msgid "Next Feature"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: view/BlockDashboard.php:51 view/BlockDashboard.php:154
|
1844 |
+
msgid "Previous Feature"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: view/BlockImport.php:22 view/BlockPatterns.php:22
|
1848 |
+
msgid "SEO Patterns"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: view/BlockImport.php:37
|
1852 |
+
msgid "Import SEO settings from other SEO plugins or themes"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: view/BlockImport.php:38
|
1856 |
+
msgid ""
|
1857 |
+
"If you were already using an SEO plugin, then you can import all the SEO "
|
1858 |
+
"settings in Squirrly. Just follow the steps presented on the right side."
|
1859 |
+
msgstr ""
|
1860 |
+
|
1861 |
+
#: view/BlockImport.php:45
|
1862 |
+
msgid "Select the plugin or theme you want to import the Settings from."
|
1863 |
+
msgstr ""
|
1864 |
+
|
1865 |
+
#: view/BlockImport.php:59
|
1866 |
+
msgid "Import Settings"
|
1867 |
+
msgstr ""
|
1868 |
+
|
1869 |
+
#: view/BlockImport.php:61 view/BlockImport.php:82
|
1870 |
+
msgid "We couldn't find any SEO plugin or theme to import from."
|
1871 |
+
msgstr ""
|
1872 |
+
|
1873 |
+
#: view/BlockImport.php:68
|
1874 |
+
msgid "Select the plugin or theme you want to import the SEO settings from."
|
1875 |
+
msgstr ""
|
1876 |
+
|
1877 |
+
#: view/BlockImport.php:80
|
1878 |
+
msgid "Import SEO"
|
1879 |
+
msgstr ""
|
1880 |
+
|
1881 |
+
#: view/BlockImport.php:89
|
1882 |
+
msgid ""
|
1883 |
+
"Note! If you import the SEO settings from other plugins or themes, you will "
|
1884 |
+
"lose all the settings that you had in Squirrly SEO. Make sure you backup "
|
1885 |
+
"your settings from the panel below before you do this. "
|
1886 |
+
msgstr ""
|
1887 |
+
|
1888 |
+
#: view/BlockImport.php:94
|
1889 |
+
msgid "Backup & Restore Squirrly SEO Settings"
|
1890 |
+
msgstr ""
|
1891 |
+
|
1892 |
+
#: view/BlockImport.php:95
|
1893 |
+
msgid ""
|
1894 |
+
"You can now download your Squirrly settings in an sql file before you go "
|
1895 |
+
"ahead and import the SEO settings from another plugin. That way, you can "
|
1896 |
+
"always go back to your Squirrly settings. "
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: view/BlockImport.php:102
|
1900 |
+
msgid "Backup & Restore Squirrly Settings"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: view/BlockImport.php:106
|
1904 |
+
msgid "Backup Settings"
|
1905 |
+
msgstr ""
|
1906 |
+
|
1907 |
+
#: view/BlockImport.php:107
|
1908 |
+
msgid "Restore Settings"
|
1909 |
+
msgstr ""
|
1910 |
+
|
1911 |
+
#: view/BlockImport.php:118 view/BlockImport.php:140
|
1912 |
+
msgid "Are you sure you want to restore your settings?"
|
1913 |
+
msgstr ""
|
1914 |
+
|
1915 |
+
#: view/BlockImport.php:123
|
1916 |
+
msgid "Backup & Restore all the pages optimized with Squirrly SEO"
|
1917 |
+
msgstr ""
|
1918 |
+
|
1919 |
+
#: view/BlockImport.php:127
|
1920 |
+
msgid "Backup SEO"
|
1921 |
+
msgstr ""
|
1922 |
+
|
1923 |
+
#: view/BlockImport.php:128
|
1924 |
+
msgid "Restore SEO"
|
1925 |
+
msgstr ""
|
1926 |
+
|
1927 |
+
#: view/BlockImport.php:134
|
1928 |
+
msgid "Upload the file with the saved Squirrly SEO SQL file"
|
1929 |
+
msgstr ""
|
1930 |
+
|
1931 |
+
#: view/BlockImport.php:155
|
1932 |
+
msgid "Click to reset all the saved setting to default."
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: view/BlockImport.php:159
|
1936 |
+
msgid "Are you sure you want to remove all the saved settings?"
|
1937 |
+
msgstr ""
|
1938 |
+
|
1939 |
+
#: view/BlockImport.php:159
|
1940 |
+
msgid "Reset Settings"
|
1941 |
+
msgstr ""
|
1942 |
+
|
1943 |
+
#: view/BlockImport.php:165
|
1944 |
+
msgid ""
|
1945 |
+
"Note! Make sure you backup your data first in case you change your mind."
|
1946 |
+
msgstr ""
|
1947 |
+
|
1948 |
+
# @ squirrly-seo
|
1949 |
+
#: view/BlockKeywordResearch.php:27
|
1950 |
+
msgid "Squirrly Keyword Research"
|
1951 |
+
msgstr ""
|
1952 |
+
|
1953 |
+
#: view/BlockLiveAssistant.php:9 view/Blockseo.php:7
|
1954 |
+
msgid "Squirrly Live Assistant"
|
1955 |
+
msgstr ""
|
1956 |
+
|
1957 |
+
#: view/BlockLiveAssistant.php:11
|
1958 |
+
#, php-format
|
1959 |
+
msgid ""
|
1960 |
+
"Using the Live Assistant from Squirrly SEO is like having a consultant "
|
1961 |
+
"sitting right next to you. It helps you get a 100% optimized page for both "
|
1962 |
+
"Humans and Search Engines."
|
1963 |
+
msgstr ""
|
1964 |
+
|
1965 |
+
#: view/BlockLiveAssistant.php:20
|
1966 |
+
msgid ""
|
1967 |
+
"You just have to type in the keyword you want the page to be optimized for."
|
1968 |
+
msgstr ""
|
1969 |
+
|
1970 |
+
#: view/BlockLiveAssistant.php:25
|
1971 |
+
msgid "Use Squirrly Live Assistant"
|
1972 |
+
msgstr ""
|
1973 |
+
|
1974 |
+
#: view/BlockPatterns.php:39
|
1975 |
+
msgid "Use Squirrly Patterns"
|
1976 |
+
msgstr ""
|
1977 |
+
|
1978 |
+
# @ squirrly-seo
|
1979 |
+
#: view/BlockPatterns.php:43 view/BlockPatterns.php:134
|
1980 |
+
#: view/BlockPatterns.php:148 view/BlockPatterns.php:165
|
1981 |
+
#: view/BlockSettings.php:137 view/BlockSettings.php:148
|
1982 |
+
#: view/BlockSettings.php:159 view/BlockSettings.php:170
|
1983 |
+
#: view/BlockSettings.php:181 view/BlockSettings.php:193
|
1984 |
+
#: view/BlockSettings.php:361 view/BlockSettings.php:416
|
1985 |
+
#: view/BlockSettingsSeo.php:56 view/BlockSettingsSeo.php:98
|
1986 |
+
#: view/BlockSettingsSeo.php:115 view/BlockSettingsSeo.php:131
|
1987 |
+
#: view/BlockSettingsSeo.php:147 view/BlockSettingsSeo.php:163
|
1988 |
+
#: view/BlockSettingsSeo.php:179 view/BlockSettingsSeo.php:195
|
1989 |
+
#: view/BlockSettingsSeo.php:223 view/BlockSettingsSeo.php:239
|
1990 |
+
#: view/BlockSettingsSeo.php:255 view/BlockSettingsSeo.php:363
|
1991 |
+
#: view/BlockSettingsSeo.php:414 view/BlockSettingsSeo.php:606
|
1992 |
+
#: view/BlockSettingsSeo.php:638 view/BlockSettingsSeo.php:646
|
1993 |
+
#: view/BlockSettingsSeo.php:744 view/BlockSettingsSeo.php:755
|
1994 |
+
#: view/BlockSettingsSeo.php:1103 view/FrontMenu.php:71 view/FrontMenu.php:530
|
1995 |
+
#: view/FrontMenu.php:543 view/FrontMenu.php:556
|
1996 |
+
msgid "Yes"
|
1997 |
+
msgstr ""
|
1998 |
+
|
1999 |
+
# @ squirrly-seo
|
2000 |
+
#: view/BlockPatterns.php:45 view/BlockPatterns.php:136
|
2001 |
+
#: view/BlockPatterns.php:150 view/BlockPatterns.php:167
|
2002 |
+
#: view/BlockSettings.php:139 view/BlockSettings.php:150
|
2003 |
+
#: view/BlockSettings.php:161 view/BlockSettings.php:172
|
2004 |
+
#: view/BlockSettings.php:183 view/BlockSettings.php:195
|
2005 |
+
#: view/BlockSettings.php:363 view/BlockSettings.php:418
|
2006 |
+
#: view/BlockSettingsSeo.php:58 view/BlockSettingsSeo.php:100
|
2007 |
+
#: view/BlockSettingsSeo.php:117 view/BlockSettingsSeo.php:133
|
2008 |
+
#: view/BlockSettingsSeo.php:149 view/BlockSettingsSeo.php:165
|
2009 |
+
#: view/BlockSettingsSeo.php:181 view/BlockSettingsSeo.php:197
|
2010 |
+
#: view/BlockSettingsSeo.php:225 view/BlockSettingsSeo.php:241
|
2011 |
+
#: view/BlockSettingsSeo.php:257 view/BlockSettingsSeo.php:365
|
2012 |
+
#: view/BlockSettingsSeo.php:416 view/BlockSettingsSeo.php:608
|
2013 |
+
#: view/BlockSettingsSeo.php:640 view/BlockSettingsSeo.php:648
|
2014 |
+
#: view/BlockSettingsSeo.php:746 view/BlockSettingsSeo.php:757
|
2015 |
+
#: view/BlockSettingsSeo.php:1105 view/FrontMenu.php:73 view/FrontMenu.php:532
|
2016 |
+
#: view/FrontMenu.php:545 view/FrontMenu.php:558
|
2017 |
+
msgid "No"
|
2018 |
+
msgstr ""
|
2019 |
+
|
2020 |
+
#: view/BlockPatterns.php:51
|
2021 |
+
msgid ""
|
2022 |
+
"Control how post types are displayed on your site and within search engine "
|
2023 |
+
"results and social media feeds."
|
2024 |
+
msgstr ""
|
2025 |
+
|
2026 |
+
#: view/BlockPatterns.php:52
|
2027 |
+
msgid ""
|
2028 |
+
"In Squirrly, each post type in your site comes with a predefined posting "
|
2029 |
+
"pattern when displayed onto your website. However, based on your site's "
|
2030 |
+
"purpose and needs, you can also decide what information these patterns will "
|
2031 |
+
"include."
|
2032 |
+
msgstr ""
|
2033 |
+
|
2034 |
+
#: view/BlockPatterns.php:53
|
2035 |
+
msgid ""
|
2036 |
+
"Once you set up a pattern for a particular post type, only the content "
|
2037 |
+
"required by your custom sequence will be displayed."
|
2038 |
+
msgstr ""
|
2039 |
+
|
2040 |
+
#: view/BlockPatterns.php:54
|
2041 |
+
#, php-format
|
2042 |
+
msgid ""
|
2043 |
+
"Squirrly lets you see how the customized patterns will apply when posts/"
|
2044 |
+
"pages are shared across social media or search engine feeds. You just need "
|
2045 |
+
"to go to the %sSquirrly SEO Snippet%s box, press <strong>Edit Snippet</"
|
2046 |
+
"strong> and you'll get a live preview after you customize the meta "
|
2047 |
+
"information."
|
2048 |
+
msgstr ""
|
2049 |
+
|
2050 |
+
#: view/BlockPatterns.php:59
|
2051 |
+
msgid "Set the custom patterns for each post type"
|
2052 |
+
msgstr ""
|
2053 |
+
|
2054 |
+
#: view/BlockPatterns.php:67
|
2055 |
+
msgid "+ Add Post Type"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: view/BlockPatterns.php:67
|
2059 |
+
msgid "Add a post type from your Wordpress website"
|
2060 |
+
msgstr ""
|
2061 |
+
|
2062 |
+
#: view/BlockPatterns.php:70
|
2063 |
+
msgid "Add Post Type"
|
2064 |
+
msgstr ""
|
2065 |
+
|
2066 |
+
#: view/BlockPatterns.php:87
|
2067 |
+
msgid "Add"
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: view/BlockPatterns.php:97
|
2071 |
+
#, php-format
|
2072 |
+
msgid "Are you sure you want to remove the post type: %s"
|
2073 |
+
msgstr ""
|
2074 |
+
|
2075 |
+
#: view/BlockPatterns.php:97
|
2076 |
+
msgid "Remove Post Type"
|
2077 |
+
msgstr ""
|
2078 |
+
|
2079 |
+
#: view/BlockPatterns.php:108 view/FrontMenu.php:204
|
2080 |
+
msgid "Description"
|
2081 |
+
msgstr ""
|
2082 |
+
|
2083 |
+
#: view/BlockPatterns.php:114
|
2084 |
+
msgid "Separator"
|
2085 |
+
msgstr ""
|
2086 |
+
|
2087 |
+
#: view/BlockPatterns.php:129
|
2088 |
+
msgid "Let Google Index it"
|
2089 |
+
msgstr ""
|
2090 |
+
|
2091 |
+
#: view/BlockPatterns.php:143
|
2092 |
+
msgid "Pass Link Juice"
|
2093 |
+
msgstr ""
|
2094 |
+
|
2095 |
+
#: view/BlockPatterns.php:157
|
2096 |
+
msgid "Do SEO"
|
2097 |
+
msgstr ""
|
2098 |
+
|
2099 |
+
#: view/BlockPatterns.php:201 view/BlockSettingsSeo.php:29
|
2100 |
+
#: view/BlockSettingsSeo.php:1155
|
2101 |
+
msgid "Save SEO"
|
2102 |
+
msgstr ""
|
2103 |
+
|
2104 |
+
#: view/BlockPostsAnalytics.php:23
|
2105 |
+
#, php-format
|
2106 |
+
msgid ""
|
2107 |
+
"The IP %s is calling the rank too often and google stopped the calls for %s "
|
2108 |
+
"mins. Lower the Rank check rate in Squirrly > Advanced > Rank Option. %sMore "
|
2109 |
+
"details%s"
|
2110 |
+
msgstr ""
|
2111 |
+
|
2112 |
+
#: view/BlockPostsAnalytics.php:28
|
2113 |
+
#, php-format
|
2114 |
+
msgid ""
|
2115 |
+
"To be able to check the RANK please activate cURL for PHP on your server "
|
2116 |
+
"%sDetails%s"
|
2117 |
+
msgstr ""
|
2118 |
+
|
2119 |
+
#: view/BlockPostsAnalytics.php:32
|
2120 |
+
#, php-format
|
2121 |
+
msgid ""
|
2122 |
+
"To be able to check the RANK please set the \"open_basedir\" to NULL on your "
|
2123 |
+
"server %sDetails%s"
|
2124 |
+
msgstr ""
|
2125 |
+
|
2126 |
+
#: view/BlockPostsAnalytics.php:37
|
2127 |
+
#, php-format
|
2128 |
+
msgid ""
|
2129 |
+
"To see the Google Ranking for each article you need to select how many pages "
|
2130 |
+
"to be checked by google rank every hour from %sSquirrly > Advanced > Google "
|
2131 |
+
"Rank Option%s. "
|
2132 |
+
msgstr ""
|
2133 |
+
|
2134 |
+
#: view/BlockPostsAnalytics.php:48
|
2135 |
+
msgid ""
|
2136 |
+
"Don't see all your pages here? Make sure you optimize them with Squirrly, so "
|
2137 |
+
"that we can track them, and display you the analytics"
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: view/BlockSerpKeywords.php:7
|
2141 |
+
msgid "Advanced Analytics Keywords"
|
2142 |
+
msgstr ""
|
2143 |
+
|
2144 |
+
#: view/BlockSerpKeywords.php:13 view/Blocksearch.php:8
|
2145 |
+
msgid "Go to Analytics"
|
2146 |
+
msgstr ""
|
2147 |
+
|
2148 |
+
#: view/BlockSerpKeywords.php:35 view/FrontMenu.php:389
|
2149 |
+
msgid "Article"
|
2150 |
+
msgstr ""
|
2151 |
+
|
2152 |
+
#: view/BlockSerpKeywords.php:36
|
2153 |
+
msgid "Article URL ..."
|
2154 |
+
msgstr ""
|
2155 |
+
|
2156 |
+
#: view/BlockSerpKeywords.php:64
|
2157 |
+
msgid "Count"
|
2158 |
+
msgstr ""
|
2159 |
+
|
2160 |
+
#: view/BlockSerpKeywords.php:65
|
2161 |
+
msgid "Check the rank for it"
|
2162 |
+
msgstr ""
|
2163 |
+
|
2164 |
+
#: view/BlockSerpKeywords.php:113
|
2165 |
+
msgid "Save Keywords"
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#: view/BlockSerpKeywords.php:128
|
2169 |
+
msgid "Show ignored keywords"
|
2170 |
+
msgstr ""
|
2171 |
+
|
2172 |
+
#: view/BlockSerpKeywords.php:143
|
2173 |
+
msgid "Reload Google Ranks from Squirrly Server"
|
2174 |
+
msgstr ""
|
2175 |
+
|
2176 |
+
#: view/BlockSerpKeywords.php:155
|
2177 |
+
msgid "Remove Local Ranks"
|
2178 |
+
msgstr ""
|
2179 |
+
|
2180 |
+
# @ squirrly-seo
|
2181 |
+
#: view/BlockSettings.php:24 view/BlockSettings.php:454
|
2182 |
+
msgid "Save settings"
|
2183 |
+
msgstr ""
|
2184 |
+
|
2185 |
+
#: view/BlockSettings.php:43
|
2186 |
+
msgid "Post/Page Edit"
|
2187 |
+
msgstr ""
|
2188 |
+
|
2189 |
+
#: view/BlockSettings.php:44
|
2190 |
+
#, php-format
|
2191 |
+
msgid "%sThe right method in working with Squirrly, SEO plugin%s"
|
2192 |
+
msgstr ""
|
2193 |
+
|
2194 |
+
#: view/BlockSettings.php:45
|
2195 |
+
#, php-format
|
2196 |
+
msgid "%sGetting inspired with Squirrly WordPress SEO plugin%s"
|
2197 |
+
msgstr ""
|
2198 |
+
|
2199 |
+
#: view/BlockSettings.php:47
|
2200 |
+
#, php-format
|
2201 |
+
msgid "%sThere is a New SEO Live Assistant from Squirrly%s"
|
2202 |
+
msgstr ""
|
2203 |
+
|
2204 |
+
#: view/BlockSettings.php:48
|
2205 |
+
#, php-format
|
2206 |
+
msgid "%sHow to create Human friendly content with the WordPress SEO plugin?%s"
|
2207 |
+
msgstr ""
|
2208 |
+
|
2209 |
+
#: view/BlockSettings.php:54
|
2210 |
+
msgid "Inspiration Box G17"
|
2211 |
+
msgstr ""
|
2212 |
+
|
2213 |
+
#: view/BlockSettings.php:57 view/BlockSettings.php:58
|
2214 |
+
#: view/BlockSettings.php:71 view/BlockSettings.php:72
|
2215 |
+
#: view/BlockSettings.php:85 view/BlockSettings.php:86
|
2216 |
+
#: view/BlockSettingsSeo.php:69 view/BlockSettingsSeo.php:81
|
2217 |
+
#: view/BlockSettingsSeo.php:272 view/BlockSettingsSeo.php:586
|
2218 |
+
#: view/BlockSettingsSeo.php:918 view/BlockSettingsSeo.php:1012
|
2219 |
+
#: view/BlockSettingsSeo.php:1024 view/BlockSettingsSeo.php:1036
|
2220 |
+
msgid "see how this improved since 2016"
|
2221 |
+
msgstr ""
|
2222 |
+
|
2223 |
+
#: view/BlockSettings.php:68
|
2224 |
+
msgid "Keyword Research G17"
|
2225 |
+
msgstr ""
|
2226 |
+
|
2227 |
+
#: view/BlockSettings.php:82
|
2228 |
+
msgid "Inner Links G17"
|
2229 |
+
msgstr ""
|
2230 |
+
|
2231 |
+
#: view/BlockSettings.php:95
|
2232 |
+
msgid "Load Squirrly Live Assistant for"
|
2233 |
+
msgstr ""
|
2234 |
+
|
2235 |
+
#: view/BlockSettings.php:99 view/BlockSettingsSeo.php:380
|
2236 |
+
#: view/BlockSettingsSeo.php:783
|
2237 |
+
msgid "Posts"
|
2238 |
+
msgstr ""
|
2239 |
+
|
2240 |
+
#: view/BlockSettings.php:102 view/BlockSettingsSeo.php:383
|
2241 |
+
#: view/BlockSettingsSeo.php:814
|
2242 |
+
msgid "Pages"
|
2243 |
+
msgstr ""
|
2244 |
+
|
2245 |
+
#: view/BlockSettings.php:106 view/BlockSettingsSeo.php:387
|
2246 |
+
#: view/BlockSettingsSeo.php:799
|
2247 |
+
msgid "Products"
|
2248 |
+
msgstr ""
|
2249 |
+
|
2250 |
+
#: view/BlockSettings.php:142
|
2251 |
+
msgid ""
|
2252 |
+
"Show <strong>Squirrly Tooltips</strong> when posting a new article (e.g. "
|
2253 |
+
"\"Enter a keyword\")."
|
2254 |
+
msgstr ""
|
2255 |
+
|
2256 |
+
#: view/BlockSettings.php:153
|
2257 |
+
msgid ""
|
2258 |
+
"Always show <strong>Keyword Research</strong> about the selected keyword."
|
2259 |
+
msgstr ""
|
2260 |
+
|
2261 |
+
#: view/BlockSettings.php:164
|
2262 |
+
msgid ""
|
2263 |
+
"Send optimization data to Squirrly Cloud when the post is saved (don't use "
|
2264 |
+
"cron)"
|
2265 |
+
msgstr ""
|
2266 |
+
|
2267 |
+
#: view/BlockSettings.php:175
|
2268 |
+
msgid "Use <strong> the NEW version of the SEO Live Assistant</strong>."
|
2269 |
+
msgstr ""
|
2270 |
+
|
2271 |
+
#: view/BlockSettings.php:186
|
2272 |
+
msgid ""
|
2273 |
+
"Download <strong>remote images</strong> in your <strong>Media Library</"
|
2274 |
+
"strong> for the new posts."
|
2275 |
+
msgstr ""
|
2276 |
+
|
2277 |
+
#: view/BlockSettings.php:198
|
2278 |
+
msgid ""
|
2279 |
+
"Correct my <strong>feed links</strong> and <strong>images</strong> (convert "
|
2280 |
+
"from relative to absolute)."
|
2281 |
+
msgstr ""
|
2282 |
+
|
2283 |
+
#: view/BlockSettings.php:208
|
2284 |
+
msgid "Google Rank Options"
|
2285 |
+
msgstr ""
|
2286 |
+
|
2287 |
+
#: view/BlockSettings.php:209
|
2288 |
+
#, php-format
|
2289 |
+
msgid "%sCountry targeting%s"
|
2290 |
+
msgstr ""
|
2291 |
+
|
2292 |
+
#: view/BlockSettings.php:210
|
2293 |
+
#, php-format
|
2294 |
+
msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
|
2295 |
+
msgstr ""
|
2296 |
+
|
2297 |
+
#: view/BlockSettings.php:217
|
2298 |
+
msgid ""
|
2299 |
+
"Select the Google country for which Squirrly will check the Google rank."
|
2300 |
+
msgstr ""
|
2301 |
+
|
2302 |
+
#: view/BlockSettings.php:222
|
2303 |
+
msgid "Default"
|
2304 |
+
msgstr ""
|
2305 |
+
|
2306 |
+
#: view/BlockSettings.php:223
|
2307 |
+
msgid "American Samoa"
|
2308 |
+
msgstr ""
|
2309 |
+
|
2310 |
+
#: view/BlockSettings.php:224
|
2311 |
+
msgid "Anguilla"
|
2312 |
+
msgstr ""
|
2313 |
+
|
2314 |
+
#: view/BlockSettings.php:225
|
2315 |
+
msgid "Antigua and Barbuda"
|
2316 |
+
msgstr ""
|
2317 |
+
|
2318 |
+
#: view/BlockSettings.php:226
|
2319 |
+
msgid "Argentina"
|
2320 |
+
msgstr ""
|
2321 |
+
|
2322 |
+
#: view/BlockSettings.php:227
|
2323 |
+
msgid "Australia"
|
2324 |
+
msgstr ""
|
2325 |
+
|
2326 |
+
#: view/BlockSettings.php:228
|
2327 |
+
msgid "Austria"
|
2328 |
+
msgstr ""
|
2329 |
+
|
2330 |
+
#: view/BlockSettings.php:229
|
2331 |
+
msgid "Azerbaijan"
|
2332 |
+
msgstr ""
|
2333 |
+
|
2334 |
+
#: view/BlockSettings.php:230
|
2335 |
+
msgid "Belgium"
|
2336 |
+
msgstr ""
|
2337 |
+
|
2338 |
+
#: view/BlockSettings.php:231
|
2339 |
+
msgid "Brazil"
|
2340 |
+
msgstr ""
|
2341 |
+
|
2342 |
+
#: view/BlockSettings.php:232
|
2343 |
+
msgid "British Virgin Islands"
|
2344 |
+
msgstr ""
|
2345 |
+
|
2346 |
+
#: view/BlockSettings.php:233
|
2347 |
+
msgid "Burundi"
|
2348 |
+
msgstr ""
|
2349 |
+
|
2350 |
+
#: view/BlockSettings.php:234
|
2351 |
+
msgid "Bulgaria"
|
2352 |
+
msgstr ""
|
2353 |
+
|
2354 |
+
#: view/BlockSettings.php:235
|
2355 |
+
msgid "Canada"
|
2356 |
+
msgstr ""
|
2357 |
+
|
2358 |
+
#: view/BlockSettings.php:236
|
2359 |
+
msgid "Chad"
|
2360 |
+
msgstr ""
|
2361 |
+
|
2362 |
+
#: view/BlockSettings.php:237
|
2363 |
+
msgid "Chile"
|
2364 |
+
msgstr ""
|
2365 |
+
|
2366 |
+
#: view/BlockSettings.php:238
|
2367 |
+
msgid "Colombia"
|
2368 |
+
msgstr ""
|
2369 |
+
|
2370 |
+
#: view/BlockSettings.php:239
|
2371 |
+
msgid "Costa Rica"
|
2372 |
+
msgstr ""
|
2373 |
+
|
2374 |
+
#: view/BlockSettings.php:240
|
2375 |
+
msgid "Côte d'Ivoire"
|
2376 |
+
msgstr ""
|
2377 |
+
|
2378 |
+
#: view/BlockSettings.php:241
|
2379 |
+
msgid "Cuba"
|
2380 |
+
msgstr ""
|
2381 |
+
|
2382 |
+
#: view/BlockSettings.php:242
|
2383 |
+
msgid "Croatia"
|
2384 |
+
msgstr ""
|
2385 |
+
|
2386 |
+
#: view/BlockSettings.php:243
|
2387 |
+
msgid "Czech Republic"
|
2388 |
+
msgstr ""
|
2389 |
+
|
2390 |
+
#: view/BlockSettings.php:244
|
2391 |
+
msgid "Dem. Rep. of the Congo"
|
2392 |
+
msgstr ""
|
2393 |
+
|
2394 |
+
#: view/BlockSettings.php:245
|
2395 |
+
msgid "Denmark"
|
2396 |
+
msgstr ""
|
2397 |
+
|
2398 |
+
#: view/BlockSettings.php:246
|
2399 |
+
msgid "Djibouti"
|
2400 |
+
msgstr ""
|
2401 |
+
|
2402 |
+
#: view/BlockSettings.php:247
|
2403 |
+
msgid "Dominican Republic"
|
2404 |
+
msgstr ""
|
2405 |
+
|
2406 |
+
#: view/BlockSettings.php:248
|
2407 |
+
msgid "Ecuador"
|
2408 |
+
msgstr ""
|
2409 |
+
|
2410 |
+
#: view/BlockSettings.php:249
|
2411 |
+
msgid "El Salvador"
|
2412 |
+
msgstr ""
|
2413 |
+
|
2414 |
+
#: view/BlockSettings.php:250
|
2415 |
+
msgid "Estonia"
|
2416 |
+
msgstr ""
|
2417 |
+
|
2418 |
+
#: view/BlockSettings.php:251
|
2419 |
+
msgid "Federated States of Micronesia"
|
2420 |
+
msgstr ""
|
2421 |
+
|
2422 |
+
#: view/BlockSettings.php:252
|
2423 |
+
msgid "Fiji"
|
2424 |
+
msgstr ""
|
2425 |
+
|
2426 |
+
#: view/BlockSettings.php:253
|
2427 |
+
msgid "Finland"
|
2428 |
+
msgstr ""
|
2429 |
+
|
2430 |
+
#: view/BlockSettings.php:254
|
2431 |
+
msgid "France"
|
2432 |
+
msgstr ""
|
2433 |
+
|
2434 |
+
#: view/BlockSettings.php:255
|
2435 |
+
msgid "The Gambia"
|
2436 |
+
msgstr ""
|
2437 |
+
|
2438 |
+
#: view/BlockSettings.php:256
|
2439 |
+
msgid "Georgia"
|
2440 |
+
msgstr ""
|
2441 |
+
|
2442 |
+
#: view/BlockSettings.php:257
|
2443 |
+
msgid "Germany"
|
2444 |
+
msgstr ""
|
2445 |
+
|
2446 |
+
#: view/BlockSettings.php:258
|
2447 |
+
msgid "Ghana "
|
2448 |
+
msgstr ""
|
2449 |
+
|
2450 |
+
#: view/BlockSettings.php:259
|
2451 |
+
msgid "Gibraltar"
|
2452 |
+
msgstr ""
|
2453 |
+
|
2454 |
+
#: view/BlockSettings.php:260
|
2455 |
+
msgid "Greece"
|
2456 |
+
msgstr ""
|
2457 |
+
|
2458 |
+
#: view/BlockSettings.php:261
|
2459 |
+
msgid "Greenland"
|
2460 |
+
msgstr ""
|
2461 |
+
|
2462 |
+
#: view/BlockSettings.php:262
|
2463 |
+
msgid "Guernsey"
|
2464 |
+
msgstr ""
|
2465 |
+
|
2466 |
+
#: view/BlockSettings.php:263
|
2467 |
+
msgid "Honduras"
|
2468 |
+
msgstr ""
|
2469 |
+
|
2470 |
+
#: view/BlockSettings.php:264
|
2471 |
+
msgid "Hong Kong"
|
2472 |
+
msgstr ""
|
2473 |
+
|
2474 |
+
#: view/BlockSettings.php:265
|
2475 |
+
msgid "Hungary"
|
2476 |
+
msgstr ""
|
2477 |
+
|
2478 |
+
#: view/BlockSettings.php:266
|
2479 |
+
msgid "India"
|
2480 |
+
msgstr ""
|
2481 |
+
|
2482 |
+
#: view/BlockSettings.php:267
|
2483 |
+
msgid "Indonesia"
|
2484 |
+
msgstr ""
|
2485 |
+
|
2486 |
+
#: view/BlockSettings.php:268
|
2487 |
+
msgid "Ireland"
|
2488 |
+
msgstr ""
|
2489 |
+
|
2490 |
+
#: view/BlockSettings.php:269
|
2491 |
+
msgid "Isle of Man"
|
2492 |
+
msgstr ""
|
2493 |
+
|
2494 |
+
#: view/BlockSettings.php:270
|
2495 |
+
msgid "Israel"
|
2496 |
+
msgstr ""
|
2497 |
+
|
2498 |
+
#: view/BlockSettings.php:271
|
2499 |
+
msgid "Italy"
|
2500 |
+
msgstr ""
|
2501 |
+
|
2502 |
+
#: view/BlockSettings.php:272
|
2503 |
+
msgid "Jamaica"
|
2504 |
+
msgstr ""
|
2505 |
+
|
2506 |
+
#: view/BlockSettings.php:273
|
2507 |
+
msgid "Japan"
|
2508 |
+
msgstr ""
|
2509 |
+
|
2510 |
+
#: view/BlockSettings.php:274
|
2511 |
+
msgid "Jersey"
|
2512 |
+
msgstr ""
|
2513 |
+
|
2514 |
+
#: view/BlockSettings.php:275
|
2515 |
+
msgid "Kazakhstan"
|
2516 |
+
msgstr ""
|
2517 |
+
|
2518 |
+
#: view/BlockSettings.php:276
|
2519 |
+
msgid "Korea"
|
2520 |
+
msgstr ""
|
2521 |
+
|
2522 |
+
#: view/BlockSettings.php:277
|
2523 |
+
msgid "Latvia"
|
2524 |
+
msgstr ""
|
2525 |
+
|
2526 |
+
#: view/BlockSettings.php:278
|
2527 |
+
msgid "Lesotho"
|
2528 |
+
msgstr ""
|
2529 |
+
|
2530 |
+
#: view/BlockSettings.php:279
|
2531 |
+
msgid "Liechtenstein"
|
2532 |
+
msgstr ""
|
2533 |
+
|
2534 |
+
#: view/BlockSettings.php:280
|
2535 |
+
msgid "Lithuania"
|
2536 |
+
msgstr ""
|
2537 |
+
|
2538 |
+
#: view/BlockSettings.php:281
|
2539 |
+
msgid "Luxembourg"
|
2540 |
+
msgstr ""
|
2541 |
+
|
2542 |
+
#: view/BlockSettings.php:282
|
2543 |
+
msgid "Malawi"
|
2544 |
+
msgstr ""
|
2545 |
+
|
2546 |
+
#: view/BlockSettings.php:283
|
2547 |
+
msgid "Malaysia"
|
2548 |
+
msgstr ""
|
2549 |
+
|
2550 |
+
#: view/BlockSettings.php:284
|
2551 |
+
msgid "Malta"
|
2552 |
+
msgstr ""
|
2553 |
+
|
2554 |
+
#: view/BlockSettings.php:285
|
2555 |
+
msgid "Mauritius"
|
2556 |
+
msgstr ""
|
2557 |
+
|
2558 |
+
#: view/BlockSettings.php:286
|
2559 |
+
msgid "México"
|
2560 |
+
msgstr ""
|
2561 |
+
|
2562 |
+
#: view/BlockSettings.php:287
|
2563 |
+
msgid "Montserrat"
|
2564 |
+
msgstr ""
|
2565 |
+
|
2566 |
+
#: view/BlockSettings.php:288
|
2567 |
+
msgid "Namibia"
|
2568 |
+
msgstr ""
|
2569 |
+
|
2570 |
+
#: view/BlockSettings.php:289
|
2571 |
+
msgid "Nepal"
|
2572 |
+
msgstr ""
|
2573 |
+
|
2574 |
+
#: view/BlockSettings.php:290
|
2575 |
+
msgid "Netherlands"
|
2576 |
+
msgstr ""
|
2577 |
+
|
2578 |
+
#: view/BlockSettings.php:291
|
2579 |
+
msgid "New Zealand"
|
2580 |
+
msgstr ""
|
2581 |
+
|
2582 |
+
#: view/BlockSettings.php:292
|
2583 |
+
msgid "Nicaragua"
|
2584 |
+
msgstr ""
|
2585 |
+
|
2586 |
+
#: view/BlockSettings.php:293
|
2587 |
+
msgid "Nigeria"
|
2588 |
+
msgstr ""
|
2589 |
+
|
2590 |
+
#: view/BlockSettings.php:294
|
2591 |
+
msgid "Norfolk Island"
|
2592 |
+
msgstr ""
|
2593 |
+
|
2594 |
+
#: view/BlockSettings.php:295
|
2595 |
+
msgid "Norway"
|
2596 |
+
msgstr ""
|
2597 |
+
|
2598 |
+
#: view/BlockSettings.php:296
|
2599 |
+
msgid "Pakistan"
|
2600 |
+
msgstr ""
|
2601 |
+
|
2602 |
+
#: view/BlockSettings.php:297
|
2603 |
+
msgid "Panamá"
|
2604 |
+
msgstr ""
|
2605 |
+
|
2606 |
+
#: view/BlockSettings.php:298
|
2607 |
+
msgid "Paraguay"
|
2608 |
+
msgstr ""
|
2609 |
+
|
2610 |
+
#: view/BlockSettings.php:299
|
2611 |
+
msgid "Perú"
|
2612 |
+
msgstr ""
|
2613 |
+
|
2614 |
+
#: view/BlockSettings.php:300
|
2615 |
+
msgid "Philippines"
|
2616 |
+
msgstr ""
|
2617 |
+
|
2618 |
+
#: view/BlockSettings.php:301
|
2619 |
+
msgid "Pitcairn Islands"
|
2620 |
+
msgstr ""
|
2621 |
+
|
2622 |
+
#: view/BlockSettings.php:302
|
2623 |
+
msgid "Poland"
|
2624 |
+
msgstr ""
|
2625 |
+
|
2626 |
+
#: view/BlockSettings.php:303
|
2627 |
+
msgid "Portugal"
|
2628 |
+
msgstr ""
|
2629 |
+
|
2630 |
+
#: view/BlockSettings.php:304
|
2631 |
+
msgid "Puerto Rico"
|
2632 |
+
msgstr ""
|
2633 |
+
|
2634 |
+
#: view/BlockSettings.php:305
|
2635 |
+
msgid "Rep. of the Congo"
|
2636 |
+
msgstr ""
|
2637 |
+
|
2638 |
+
#: view/BlockSettings.php:306
|
2639 |
+
msgid "Romania"
|
2640 |
+
msgstr ""
|
2641 |
+
|
2642 |
+
#: view/BlockSettings.php:307
|
2643 |
+
msgid "Russia"
|
2644 |
+
msgstr ""
|
2645 |
+
|
2646 |
+
#: view/BlockSettings.php:308
|
2647 |
+
msgid "Rwanda"
|
2648 |
+
msgstr ""
|
2649 |
+
|
2650 |
+
#: view/BlockSettings.php:309
|
2651 |
+
msgid "Saint Helena"
|
2652 |
+
msgstr ""
|
2653 |
+
|
2654 |
+
#: view/BlockSettings.php:310
|
2655 |
+
msgid "San Marino"
|
2656 |
+
msgstr ""
|
2657 |
+
|
2658 |
+
#: view/BlockSettings.php:311
|
2659 |
+
msgid "Saudi Arabia"
|
2660 |
+
msgstr ""
|
2661 |
+
|
2662 |
+
#: view/BlockSettings.php:312
|
2663 |
+
msgid "Singapore"
|
2664 |
+
msgstr ""
|
2665 |
+
|
2666 |
+
#: view/BlockSettings.php:313
|
2667 |
+
msgid "Slovakia"
|
2668 |
+
msgstr ""
|
2669 |
+
|
2670 |
+
#: view/BlockSettings.php:314
|
2671 |
+
msgid "South Africa"
|
2672 |
+
msgstr ""
|
2673 |
+
|
2674 |
+
#: view/BlockSettings.php:315
|
2675 |
+
msgid "Spain"
|
2676 |
+
msgstr ""
|
2677 |
+
|
2678 |
+
#: view/BlockSettings.php:316
|
2679 |
+
msgid "Sri Lanka"
|
2680 |
+
msgstr ""
|
2681 |
+
|
2682 |
+
#: view/BlockSettings.php:317
|
2683 |
+
msgid "Sweden"
|
2684 |
+
msgstr ""
|
2685 |
+
|
2686 |
+
#: view/BlockSettings.php:318
|
2687 |
+
msgid "Switzerland"
|
2688 |
+
msgstr ""
|
2689 |
+
|
2690 |
+
#: view/BlockSettings.php:319
|
2691 |
+
msgid "Taiwan"
|
2692 |
+
msgstr ""
|
2693 |
+
|
2694 |
+
#: view/BlockSettings.php:320
|
2695 |
+
msgid "Thailand"
|
2696 |
+
msgstr ""
|
2697 |
+
|
2698 |
+
#: view/BlockSettings.php:321
|
2699 |
+
msgid "Trinidad and Tobago"
|
2700 |
+
msgstr ""
|
2701 |
+
|
2702 |
+
#: view/BlockSettings.php:322
|
2703 |
+
msgid "Turkey"
|
2704 |
+
msgstr ""
|
2705 |
+
|
2706 |
+
#: view/BlockSettings.php:323
|
2707 |
+
msgid "Ukraine"
|
2708 |
+
msgstr ""
|
2709 |
+
|
2710 |
+
#: view/BlockSettings.php:324
|
2711 |
+
msgid "United Arab Emirates"
|
2712 |
+
msgstr ""
|
2713 |
+
|
2714 |
+
#: view/BlockSettings.php:325
|
2715 |
+
msgid "United Kingdom"
|
2716 |
+
msgstr ""
|
2717 |
+
|
2718 |
+
#: view/BlockSettings.php:326
|
2719 |
+
msgid "United States"
|
2720 |
+
msgstr ""
|
2721 |
+
|
2722 |
+
#: view/BlockSettings.php:327
|
2723 |
+
msgid "Uruguay"
|
2724 |
+
msgstr ""
|
2725 |
+
|
2726 |
+
#: view/BlockSettings.php:328
|
2727 |
+
msgid "Uzbekistan"
|
2728 |
+
msgstr ""
|
2729 |
+
|
2730 |
+
#: view/BlockSettings.php:329
|
2731 |
+
msgid "Vanuatu"
|
2732 |
+
msgstr ""
|
2733 |
+
|
2734 |
+
#: view/BlockSettings.php:330
|
2735 |
+
msgid "Venezuela"
|
2736 |
+
msgstr ""
|
2737 |
+
|
2738 |
+
#: view/BlockSettings.php:331
|
2739 |
+
msgid "Vietnam"
|
2740 |
+
msgstr ""
|
2741 |
+
|
2742 |
+
#: view/BlockSettings.php:337
|
2743 |
+
#, php-format
|
2744 |
+
msgid ""
|
2745 |
+
"Select how many pages to be checked in the Performance Analytics section "
|
2746 |
+
"every hour. %s(not recommended for shared hosting plan)%s"
|
2747 |
+
msgstr ""
|
2748 |
+
|
2749 |
+
#: view/BlockSettings.php:344
|
2750 |
+
msgid "page"
|
2751 |
+
msgstr ""
|
2752 |
+
|
2753 |
+
#: view/BlockSettings.php:346
|
2754 |
+
msgid "pages"
|
2755 |
+
msgstr ""
|
2756 |
+
|
2757 |
+
#: view/BlockSettings.php:352
|
2758 |
+
msgid "h"
|
2759 |
+
msgstr ""
|
2760 |
+
|
2761 |
+
#: view/BlockSettings.php:366
|
2762 |
+
msgid ""
|
2763 |
+
"Restricts search results to results originating in the above particular "
|
2764 |
+
"country."
|
2765 |
+
msgstr ""
|
2766 |
+
|
2767 |
+
#: view/BlockSettings.php:372
|
2768 |
+
#, php-format
|
2769 |
+
msgid ""
|
2770 |
+
"You have the %sBusiness Plan%s active. Rankings are now checked by Squirrly "
|
2771 |
+
"Cloud and will be shown in %sAdvanced Analytics%s"
|
2772 |
+
msgstr ""
|
2773 |
+
|
2774 |
+
#: view/BlockSettings.php:376
|
2775 |
+
msgid "Select how many rank queries you want Squirrly to do every day. "
|
2776 |
+
msgstr ""
|
2777 |
+
|
2778 |
+
#: view/BlockSettings.php:381 view/BlockSettings.php:383
|
2779 |
+
#: view/BlockSettings.php:396
|
2780 |
+
msgid "queries"
|
2781 |
+
msgstr ""
|
2782 |
+
|
2783 |
+
#: view/BlockSettings.php:381 view/BlockSettings.php:383
|
2784 |
+
#: view/BlockSettings.php:396
|
2785 |
+
msgid "day"
|
2786 |
+
msgstr ""
|
2787 |
+
|
2788 |
+
#: view/BlockSettings.php:389
|
2789 |
+
msgid ""
|
2790 |
+
"Note: if you're on the free trial, you get 35 queries for the 7 days of "
|
2791 |
+
"trial."
|
2792 |
+
msgstr ""
|
2793 |
+
|
2794 |
+
#: view/BlockSettings.php:408
|
2795 |
+
msgid "Robots.txt Editor"
|
2796 |
+
msgstr ""
|
2797 |
+
|
2798 |
+
#: view/BlockSettings.php:409
|
2799 |
+
#, php-format
|
2800 |
+
msgid "%sLearn about robots.txt files%s"
|
2801 |
+
msgstr ""
|
2802 |
+
|
2803 |
+
#: view/BlockSettings.php:410
|
2804 |
+
#, php-format
|
2805 |
+
msgid "%sHow to use Robots.txt%s"
|
2806 |
+
msgstr ""
|
2807 |
+
|
2808 |
+
# @ squirrly-seo
|
2809 |
+
#: view/BlockSettings.php:412
|
2810 |
+
msgid "Use Squirrly Robots"
|
2811 |
+
msgstr ""
|
2812 |
+
|
2813 |
+
#: view/BlockSettings.php:427
|
2814 |
+
msgid "Edit the Robots.txt data"
|
2815 |
+
msgstr ""
|
2816 |
+
|
2817 |
+
#: view/BlockSettings.php:440
|
2818 |
+
msgid ""
|
2819 |
+
"Does not physically create the robots.txt file. The best option for "
|
2820 |
+
"Multisites."
|
2821 |
+
msgstr ""
|
2822 |
+
|
2823 |
+
#: view/BlockSettings.php:445
|
2824 |
+
msgid "Save Robots"
|
2825 |
+
msgstr ""
|
2826 |
+
|
2827 |
+
#: view/BlockSettingsSeo.php:27
|
2828 |
+
msgid "SEO"
|
2829 |
+
msgstr ""
|
2830 |
+
|
2831 |
+
#: view/BlockSettingsSeo.php:31 view/BlockSettingsSeo.php:207
|
2832 |
+
msgid "Check for SEO issues in your site"
|
2833 |
+
msgstr ""
|
2834 |
+
|
2835 |
+
#: view/BlockSettingsSeo.php:49
|
2836 |
+
msgid "Let Squirrly SEO Optimize This Blog"
|
2837 |
+
msgstr ""
|
2838 |
+
|
2839 |
+
#: view/BlockSettingsSeo.php:50
|
2840 |
+
#, php-format
|
2841 |
+
msgid "%sIs Squirrly SEO better than WordPress SEO by Yoast?%s"
|
2842 |
+
msgstr ""
|
2843 |
+
|
2844 |
+
#: view/BlockSettingsSeo.php:52
|
2845 |
+
msgid ""
|
2846 |
+
"Activate the built-in SEO settings from Squirrly by switching Yes below. "
|
2847 |
+
"<strong>Works well with Multisites and Ecommerce.</strong>"
|
2848 |
+
msgstr ""
|
2849 |
+
|
2850 |
+
#: view/BlockSettingsSeo.php:66
|
2851 |
+
msgid "New SEO Settings For Google 2017"
|
2852 |
+
msgstr ""
|
2853 |
+
|
2854 |
+
#: view/BlockSettingsSeo.php:78
|
2855 |
+
msgid "Fastest SEO Plugin in 2017"
|
2856 |
+
msgstr ""
|
2857 |
+
|
2858 |
+
# @ squirrly-seo
|
2859 |
+
#: view/BlockSettingsSeo.php:89
|
2860 |
+
msgid "What does Squirrly automatically do for SEO?"
|
2861 |
+
msgstr ""
|
2862 |
+
|
2863 |
+
#: view/BlockSettingsSeo.php:103
|
2864 |
+
#, php-format
|
2865 |
+
msgid ""
|
2866 |
+
"adds <strong>%scanonical link%s</strong>, <strong>%srel=\"prev\" and rel="
|
2867 |
+
"\"next\"%s</strong> metas in Header"
|
2868 |
+
msgstr ""
|
2869 |
+
|
2870 |
+
#: view/BlockSettingsSeo.php:120
|
2871 |
+
msgid "adds the required METAs (<strong>Dublin Core, Language</strong>, etc.)"
|
2872 |
+
msgstr ""
|
2873 |
+
|
2874 |
+
#: view/BlockSettingsSeo.php:136
|
2875 |
+
#, php-format
|
2876 |
+
msgid "adds the <strong>%sXML Sitemap%s</strong> for search engines: %s"
|
2877 |
+
msgstr ""
|
2878 |
+
|
2879 |
+
#: view/BlockSettingsSeo.php:152
|
2880 |
+
#, php-format
|
2881 |
+
msgid "adds <strong>Feed style</strong> to your blog feed (eg. %s/feed)"
|
2882 |
+
msgstr ""
|
2883 |
+
|
2884 |
+
#: view/BlockSettingsSeo.php:168
|
2885 |
+
#, php-format
|
2886 |
+
msgid ""
|
2887 |
+
"adds the <strong>%sfavicon.ico%s</strong> and the <strong>%sicons for "
|
2888 |
+
"tablets and smartphones%s</strong>"
|
2889 |
+
msgstr ""
|
2890 |
+
|
2891 |
+
#: view/BlockSettingsSeo.php:184
|
2892 |
+
#, php-format
|
2893 |
+
msgid "adds the <strong>%sJson-LD%s</strong> metas for Semantic SEO"
|
2894 |
+
msgstr ""
|
2895 |
+
|
2896 |
+
#: view/BlockSettingsSeo.php:200
|
2897 |
+
#, php-format
|
2898 |
+
msgid ""
|
2899 |
+
"adds the <strong>%sNoindex%s</strong>, <strong>%sNofollow%s</strong> metas "
|
2900 |
+
"for your desired pages"
|
2901 |
+
msgstr ""
|
2902 |
+
|
2903 |
+
#: view/BlockSettingsSeo.php:204
|
2904 |
+
msgid ""
|
2905 |
+
"Note! By switching the <strong>Json-LD</strong>, <strong>XML Sitemap</"
|
2906 |
+
"strong> and <strong>Favicon</strong> on, you open new options below"
|
2907 |
+
msgstr ""
|
2908 |
+
|
2909 |
+
#: view/BlockSettingsSeo.php:213
|
2910 |
+
msgid "First Page Optimization"
|
2911 |
+
msgstr ""
|
2912 |
+
|
2913 |
+
#: view/BlockSettingsSeo.php:214
|
2914 |
+
#, php-format
|
2915 |
+
msgid "%sThe best SEO approach to Meta information%s"
|
2916 |
+
msgstr ""
|
2917 |
+
|
2918 |
+
#: view/BlockSettingsSeo.php:215
|
2919 |
+
msgid "Optimize the <strong>Titles</strong>"
|
2920 |
+
msgstr ""
|
2921 |
+
|
2922 |
+
#: view/BlockSettingsSeo.php:230
|
2923 |
+
#, php-format
|
2924 |
+
msgid "Optimize %sDescriptions%s "
|
2925 |
+
msgstr ""
|
2926 |
+
|
2927 |
+
#: view/BlockSettingsSeo.php:246
|
2928 |
+
#, php-format
|
2929 |
+
msgid "Optimize %sKeywords%s "
|
2930 |
+
msgstr ""
|
2931 |
+
|
2932 |
+
#: view/BlockSettingsSeo.php:269
|
2933 |
+
msgid "Squirrly Snippet G17-True Render"
|
2934 |
+
msgstr ""
|
2935 |
+
|
2936 |
+
#: view/BlockSettingsSeo.php:293
|
2937 |
+
msgid "First Page Optimization:"
|
2938 |
+
msgstr ""
|
2939 |
+
|
2940 |
+
# @ squirrly-seo
|
2941 |
+
#: view/BlockSettingsSeo.php:299
|
2942 |
+
msgid "Title:"
|
2943 |
+
msgstr ""
|
2944 |
+
|
2945 |
+
#: view/BlockSettingsSeo.php:304
|
2946 |
+
msgid "Tips: Length 10-75 chars"
|
2947 |
+
msgstr ""
|
2948 |
+
|
2949 |
+
# @ squirrly-seo
|
2950 |
+
#: view/BlockSettingsSeo.php:308
|
2951 |
+
msgid "Description:"
|
2952 |
+
msgstr ""
|
2953 |
+
|
2954 |
+
#: view/BlockSettingsSeo.php:312
|
2955 |
+
msgid "Tips: Length 70-320 chars"
|
2956 |
+
msgstr ""
|
2957 |
+
|
2958 |
+
# @ squirrly-seo
|
2959 |
+
#: view/BlockSettingsSeo.php:315
|
2960 |
+
msgid "Keywords:"
|
2961 |
+
msgstr ""
|
2962 |
+
|
2963 |
+
#: view/BlockSettingsSeo.php:316
|
2964 |
+
msgid "Tips: use 2-4 keywords"
|
2965 |
+
msgstr ""
|
2966 |
+
|
2967 |
+
#: view/BlockSettingsSeo.php:319
|
2968 |
+
msgid "OG Image:"
|
2969 |
+
msgstr ""
|
2970 |
+
|
2971 |
+
#: view/BlockSettingsSeo.php:320
|
2972 |
+
msgid "Select Open Graph Image"
|
2973 |
+
msgstr ""
|
2974 |
+
|
2975 |
+
#: view/BlockSettingsSeo.php:325
|
2976 |
+
msgid "First Page Preview (Title, Description, Keywords)"
|
2977 |
+
msgstr ""
|
2978 |
+
|
2979 |
+
#: view/BlockSettingsSeo.php:327
|
2980 |
+
msgid "Squirrly Snippet"
|
2981 |
+
msgstr ""
|
2982 |
+
|
2983 |
+
#: view/BlockSettingsSeo.php:339
|
2984 |
+
msgid ""
|
2985 |
+
"If you don't see any changes in your Google snippet, check if other SEO "
|
2986 |
+
"themes or plugins affect Squirrly."
|
2987 |
+
msgstr ""
|
2988 |
+
|
2989 |
+
#: view/BlockSettingsSeo.php:343
|
2990 |
+
#, php-format
|
2991 |
+
msgid ""
|
2992 |
+
"Use the %s<strong>Squirrly Snippet Tool</strong>%s while editing a Post/Page "
|
2993 |
+
"to customize the Title and the Description."
|
2994 |
+
msgstr ""
|
2995 |
+
|
2996 |
+
#: view/BlockSettingsSeo.php:351
|
2997 |
+
msgid "SEO for all post/pages"
|
2998 |
+
msgstr ""
|
2999 |
+
|
3000 |
+
#: view/BlockSettingsSeo.php:352
|
3001 |
+
#, php-format
|
3002 |
+
msgid ""
|
3003 |
+
"To customize the Title and Description for all the Posts and Pages in your "
|
3004 |
+
"site use the %sSquirrly Snippet Tool%s"
|
3005 |
+
msgstr ""
|
3006 |
+
|
3007 |
+
#: view/BlockSettingsSeo.php:354
|
3008 |
+
msgid "Add the Post tags in <strong>Keyword META</strong>."
|
3009 |
+
msgstr ""
|
3010 |
+
|
3011 |
+
#: view/BlockSettingsSeo.php:376
|
3012 |
+
msgid "Exclude Squirrly from loading in these Post Types"
|
3013 |
+
msgstr ""
|
3014 |
+
|
3015 |
+
#: view/BlockSettingsSeo.php:377
|
3016 |
+
msgid ""
|
3017 |
+
"DO NOT CHECK any Post Type if you want Squirrly to load for all posts types. "
|
3018 |
+
msgstr ""
|
3019 |
+
|
3020 |
+
#: view/BlockSettingsSeo.php:419
|
3021 |
+
msgid "Load <strong>Squirrly SEO Snippet in Frontend</strong> too."
|
3022 |
+
msgstr ""
|
3023 |
+
|
3024 |
+
#: view/BlockSettingsSeo.php:427
|
3025 |
+
msgid "Social Media Options"
|
3026 |
+
msgstr ""
|
3027 |
+
|
3028 |
+
#: view/BlockSettingsSeo.php:429
|
3029 |
+
msgid "Select the language you're using on Social Media"
|
3030 |
+
msgstr ""
|
3031 |
+
|
3032 |
+
#: view/BlockSettingsSeo.php:575
|
3033 |
+
#, php-format
|
3034 |
+
msgid "%sHow to pop out in Social Media with your links%s"
|
3035 |
+
msgstr ""
|
3036 |
+
|
3037 |
+
#: view/BlockSettingsSeo.php:576
|
3038 |
+
#, php-format
|
3039 |
+
msgid "%sGet busy with Facebook’s new Search Engine functions%s"
|
3040 |
+
msgstr ""
|
3041 |
+
|
3042 |
+
#: view/BlockSettingsSeo.php:577
|
3043 |
+
#, php-format
|
3044 |
+
msgid ""
|
3045 |
+
"%sHow I Added Twitter Cards in My WordPress for Better Inbound Marketing%s"
|
3046 |
+
msgstr ""
|
3047 |
+
|
3048 |
+
#: view/BlockSettingsSeo.php:583
|
3049 |
+
msgid "Open Graph G17 - 2017 Settings"
|
3050 |
+
msgstr ""
|
3051 |
+
|
3052 |
+
#: view/BlockSettingsSeo.php:595
|
3053 |
+
msgid "Squirrly Adds the Best Codes for Open Graph and Twitter Cards"
|
3054 |
+
msgstr ""
|
3055 |
+
|
3056 |
+
#: view/BlockSettingsSeo.php:611
|
3057 |
+
#, php-format
|
3058 |
+
msgid ""
|
3059 |
+
"Add the Social Open Graph protocol so that your Facebook shares look good. "
|
3060 |
+
"%sCheck here%s. "
|
3061 |
+
msgstr ""
|
3062 |
+
|
3063 |
+
#: view/BlockSettingsSeo.php:615
|
3064 |
+
msgid "Facebook App ID"
|
3065 |
+
msgstr ""
|
3066 |
+
|
3067 |
+
#: view/BlockSettingsSeo.php:616
|
3068 |
+
#, php-format
|
3069 |
+
msgid "Add the %sFacebook App%s ID "
|
3070 |
+
msgstr ""
|
3071 |
+
|
3072 |
+
#: view/BlockSettingsSeo.php:633
|
3073 |
+
msgid "You need to add your <strong>Twitter account</strong> below"
|
3074 |
+
msgstr ""
|
3075 |
+
|
3076 |
+
#: view/BlockSettingsSeo.php:643
|
3077 |
+
msgid "Add the <strong>Twitter card</strong> in your tweets. "
|
3078 |
+
msgstr ""
|
3079 |
+
|
3080 |
+
#: view/BlockSettingsSeo.php:651
|
3081 |
+
#, php-format
|
3082 |
+
msgid ""
|
3083 |
+
"Use <strong>Twitter %ssummary_large_image%s</strong> for your Twitter Card. "
|
3084 |
+
msgstr ""
|
3085 |
+
|
3086 |
+
#: view/BlockSettingsSeo.php:663
|
3087 |
+
msgid "Social Media Accounts"
|
3088 |
+
msgstr ""
|
3089 |
+
|
3090 |
+
#: view/BlockSettingsSeo.php:664
|
3091 |
+
#, php-format
|
3092 |
+
msgid "%sLink your Google+ profile to the content you create%s"
|
3093 |
+
msgstr ""
|
3094 |
+
|
3095 |
+
#: view/BlockSettingsSeo.php:665
|
3096 |
+
#, php-format
|
3097 |
+
msgid ""
|
3098 |
+
"%sTwitter account is mandatory for <strong>Twitter Card Validation</strong>%s"
|
3099 |
+
msgstr ""
|
3100 |
+
|
3101 |
+
#: view/BlockSettingsSeo.php:666
|
3102 |
+
#, php-format
|
3103 |
+
msgid ""
|
3104 |
+
"%sAdd all your social accounts for <strong>JSON-LD Semantic SEO</strong>%s"
|
3105 |
+
msgstr ""
|
3106 |
+
|
3107 |
+
#: view/BlockSettingsSeo.php:667 view/BlockSettingsSeo.php:909
|
3108 |
+
#, php-format
|
3109 |
+
msgid "%sSpecify your social profiles to Google%s"
|
3110 |
+
msgstr ""
|
3111 |
+
|
3112 |
+
#: view/BlockSettingsSeo.php:675
|
3113 |
+
msgid "Your Twitter Account:"
|
3114 |
+
msgstr ""
|
3115 |
+
|
3116 |
+
#: view/BlockSettingsSeo.php:682
|
3117 |
+
msgid "Google Plus Profile:"
|
3118 |
+
msgstr ""
|
3119 |
+
|
3120 |
+
#: view/BlockSettingsSeo.php:689
|
3121 |
+
msgid "Facebook Profile:"
|
3122 |
+
msgstr ""
|
3123 |
+
|
3124 |
+
#: view/BlockSettingsSeo.php:696
|
3125 |
+
msgid "Linkedin Profile:"
|
3126 |
+
msgstr ""
|
3127 |
+
|
3128 |
+
#: view/BlockSettingsSeo.php:703
|
3129 |
+
msgid "Pinterest Profile:"
|
3130 |
+
msgstr ""
|
3131 |
+
|
3132 |
+
#: view/BlockSettingsSeo.php:710
|
3133 |
+
msgid "Instagram Profile:"
|
3134 |
+
msgstr ""
|
3135 |
+
|
3136 |
+
#: view/BlockSettingsSeo.php:717
|
3137 |
+
msgid "Youtube Profile:"
|
3138 |
+
msgstr ""
|
3139 |
+
|
3140 |
+
#: view/BlockSettingsSeo.php:727
|
3141 |
+
msgid "XML Sitemap for Google"
|
3142 |
+
msgstr ""
|
3143 |
+
|
3144 |
+
#: view/BlockSettingsSeo.php:728
|
3145 |
+
msgid ""
|
3146 |
+
"Squirrly Sitemap is the fastest way to tell Google about the pages on your "
|
3147 |
+
"site. <strong>Supports Multisites, Google News, Images, Videos, Custom Post "
|
3148 |
+
"Types, Custom Taxonomies and Ecommerce products</strong>"
|
3149 |
+
msgstr ""
|
3150 |
+
|
3151 |
+
#: view/BlockSettingsSeo.php:729
|
3152 |
+
#, php-format
|
3153 |
+
msgid "%sHow to submit your sitemap.xml in Google Webmaster Tool%s"
|
3154 |
+
msgstr ""
|
3155 |
+
|
3156 |
+
#: view/BlockSettingsSeo.php:730
|
3157 |
+
#, php-format
|
3158 |
+
msgid ""
|
3159 |
+
"%s10 Vital To Dos to Feed Your SEO Content Machine After You Post Articles%s"
|
3160 |
+
msgstr ""
|
3161 |
+
|
3162 |
+
#: view/BlockSettingsSeo.php:731
|
3163 |
+
#, php-format
|
3164 |
+
msgid ""
|
3165 |
+
"For Google News Sitemap, ensure that your site is included in %sGoogle News%s"
|
3166 |
+
msgstr ""
|
3167 |
+
|
3168 |
+
#: view/BlockSettingsSeo.php:740
|
3169 |
+
msgid "XML Sitemap Options"
|
3170 |
+
msgstr ""
|
3171 |
+
|
3172 |
+
#: view/BlockSettingsSeo.php:749
|
3173 |
+
msgid "Ping your sitemap to Google and Bing when a new post is published"
|
3174 |
+
msgstr ""
|
3175 |
+
|
3176 |
+
#: view/BlockSettingsSeo.php:760
|
3177 |
+
msgid "Add all languages in the same sitemap"
|
3178 |
+
msgstr ""
|
3179 |
+
|
3180 |
+
#: view/BlockSettingsSeo.php:767
|
3181 |
+
msgid "Build Sitemaps for"
|
3182 |
+
msgstr ""
|
3183 |
+
|
3184 |
+
#: view/BlockSettingsSeo.php:772
|
3185 |
+
msgid "Home Page"
|
3186 |
+
msgstr ""
|
3187 |
+
|
3188 |
+
#: view/BlockSettingsSeo.php:779
|
3189 |
+
msgid "Google News"
|
3190 |
+
msgstr ""
|
3191 |
+
|
3192 |
+
#: view/BlockSettingsSeo.php:787
|
3193 |
+
msgid "Attachments"
|
3194 |
+
msgstr ""
|
3195 |
+
|
3196 |
+
#: view/BlockSettingsSeo.php:793
|
3197 |
+
msgid "Categories"
|
3198 |
+
msgstr ""
|
3199 |
+
|
3200 |
+
#: view/BlockSettingsSeo.php:807
|
3201 |
+
msgid "Tags"
|
3202 |
+
msgstr ""
|
3203 |
+
|
3204 |
+
#: view/BlockSettingsSeo.php:819
|
3205 |
+
msgid "Archive"
|
3206 |
+
msgstr ""
|
3207 |
+
|
3208 |
+
#: view/BlockSettingsSeo.php:822
|
3209 |
+
msgid "Custom Taxonomies"
|
3210 |
+
msgstr ""
|
3211 |
+
|
3212 |
+
#: view/BlockSettingsSeo.php:825
|
3213 |
+
msgid "Custom Posts"
|
3214 |
+
msgstr ""
|
3215 |
+
|
3216 |
+
#: view/BlockSettingsSeo.php:828
|
3217 |
+
#, php-format
|
3218 |
+
msgid ""
|
3219 |
+
"Select only the Post Types that have links in them. Your sitemap will be %s"
|
3220 |
+
msgstr ""
|
3221 |
+
|
3222 |
+
#: view/BlockSettingsSeo.php:832
|
3223 |
+
msgid "Include in Sitemaps"
|
3224 |
+
msgstr ""
|
3225 |
+
|
3226 |
+
#: view/BlockSettingsSeo.php:835
|
3227 |
+
msgid "<strong>Images</strong> from posts/pages"
|
3228 |
+
msgstr ""
|
3229 |
+
|
3230 |
+
#: view/BlockSettingsSeo.php:838
|
3231 |
+
msgid "<strong>Videos</strong> (embeded and local media)"
|
3232 |
+
msgstr ""
|
3233 |
+
|
3234 |
+
#: view/BlockSettingsSeo.php:843
|
3235 |
+
msgid "How often do you update your site?"
|
3236 |
+
msgstr ""
|
3237 |
+
|
3238 |
+
#: view/BlockSettingsSeo.php:845
|
3239 |
+
msgid "every hour"
|
3240 |
+
msgstr ""
|
3241 |
+
|
3242 |
+
#: view/BlockSettingsSeo.php:846
|
3243 |
+
msgid "every day"
|
3244 |
+
msgstr ""
|
3245 |
+
|
3246 |
+
#: view/BlockSettingsSeo.php:847
|
3247 |
+
msgid "1-3 times per week"
|
3248 |
+
msgstr ""
|
3249 |
+
|
3250 |
+
#: view/BlockSettingsSeo.php:848
|
3251 |
+
msgid "1-3 times per month"
|
3252 |
+
msgstr ""
|
3253 |
+
|
3254 |
+
#: view/BlockSettingsSeo.php:849
|
3255 |
+
msgid "1-3 times per year"
|
3256 |
+
msgstr ""
|
3257 |
+
|
3258 |
+
#: view/BlockSettingsSeo.php:853
|
3259 |
+
msgid "Feed Pagination: How many Posts per page to show in sitemap?"
|
3260 |
+
msgstr ""
|
3261 |
+
|
3262 |
+
# @ squirrly-seo
|
3263 |
+
#: view/BlockSettingsSeo.php:868
|
3264 |
+
msgid "Change the Website Icon"
|
3265 |
+
msgstr ""
|
3266 |
+
|
3267 |
+
#: view/BlockSettingsSeo.php:869
|
3268 |
+
msgid ""
|
3269 |
+
"Now, even tablet & smartphone browsers make use of your icons. This makes "
|
3270 |
+
"having a good favicon even more important."
|
3271 |
+
msgstr ""
|
3272 |
+
|
3273 |
+
#: view/BlockSettingsSeo.php:870
|
3274 |
+
#, php-format
|
3275 |
+
msgid ""
|
3276 |
+
"You can use %shttp://convertico.com/%s to convert your photo to icon and "
|
3277 |
+
"upload it here after that."
|
3278 |
+
msgstr ""
|
3279 |
+
|
3280 |
+
# @ squirrly-seo
|
3281 |
+
#: view/BlockSettingsSeo.php:876
|
3282 |
+
msgid "Upload file:"
|
3283 |
+
msgstr ""
|
3284 |
+
|
3285 |
+
# @ squirrly-seo
|
3286 |
+
#: view/BlockSettingsSeo.php:889 view/FrontMenu.php:327 view/FrontMenu.php:468
|
3287 |
+
msgid "Upload"
|
3288 |
+
msgstr ""
|
3289 |
+
|
3290 |
+
# @ squirrly-seo
|
3291 |
+
#: view/BlockSettingsSeo.php:893
|
3292 |
+
msgid ""
|
3293 |
+
"If you don't see the new icon in your browser, empty the browser cache and "
|
3294 |
+
"refresh the page."
|
3295 |
+
msgstr ""
|
3296 |
+
|
3297 |
+
# @ squirrly-seo
|
3298 |
+
#: view/BlockSettingsSeo.php:895
|
3299 |
+
msgid "File types: JPG, JPEG, GIF and PNG."
|
3300 |
+
msgstr ""
|
3301 |
+
|
3302 |
+
#: view/BlockSettingsSeo.php:897
|
3303 |
+
msgid ""
|
3304 |
+
"Does not physically create the favicon.ico file. The best option for "
|
3305 |
+
"Multisites."
|
3306 |
+
msgstr ""
|
3307 |
+
|
3308 |
+
#: view/BlockSettingsSeo.php:905
|
3309 |
+
msgid "JSON-LD for Semantic SEO"
|
3310 |
+
msgstr ""
|
3311 |
+
|
3312 |
+
#: view/BlockSettingsSeo.php:906
|
3313 |
+
msgid ""
|
3314 |
+
"Squirrly will automatically add the JSON-LD Structured Data in your site."
|
3315 |
+
msgstr ""
|
3316 |
+
|
3317 |
+
#: view/BlockSettingsSeo.php:907
|
3318 |
+
#, php-format
|
3319 |
+
msgid "%sJSON-LD's Big Day at Google%s"
|
3320 |
+
msgstr ""
|
3321 |
+
|
3322 |
+
#: view/BlockSettingsSeo.php:908
|
3323 |
+
#, php-format
|
3324 |
+
msgid "%sGoogle Testing Tool%s"
|
3325 |
+
msgstr ""
|
3326 |
+
|
3327 |
+
#: view/BlockSettingsSeo.php:915
|
3328 |
+
msgid "JSON-LD G17 - 2x More Options"
|
3329 |
+
msgstr ""
|
3330 |
+
|
3331 |
+
#: view/BlockSettingsSeo.php:932
|
3332 |
+
msgid "Your site type:"
|
3333 |
+
msgstr ""
|
3334 |
+
|
3335 |
+
#: view/BlockSettingsSeo.php:934
|
3336 |
+
msgid "Organization"
|
3337 |
+
msgstr ""
|
3338 |
+
|
3339 |
+
#: view/BlockSettingsSeo.php:935
|
3340 |
+
msgid "Personal"
|
3341 |
+
msgstr ""
|
3342 |
+
|
3343 |
+
#: view/BlockSettingsSeo.php:941
|
3344 |
+
msgid "Your Organization Name:"
|
3345 |
+
msgstr ""
|
3346 |
+
|
3347 |
+
#: view/BlockSettingsSeo.php:942
|
3348 |
+
msgid "Your Name:"
|
3349 |
+
msgstr ""
|
3350 |
+
|
3351 |
+
#: view/BlockSettingsSeo.php:946
|
3352 |
+
msgid "Job Title:"
|
3353 |
+
msgstr ""
|
3354 |
+
|
3355 |
+
#: view/BlockSettingsSeo.php:950
|
3356 |
+
msgid "Logo Url:"
|
3357 |
+
msgstr ""
|
3358 |
+
|
3359 |
+
#: view/BlockSettingsSeo.php:951
|
3360 |
+
msgid "Image Url:"
|
3361 |
+
msgstr ""
|
3362 |
+
|
3363 |
+
#: view/BlockSettingsSeo.php:952
|
3364 |
+
msgid "Select Image"
|
3365 |
+
msgstr ""
|
3366 |
+
|
3367 |
+
#: view/BlockSettingsSeo.php:956
|
3368 |
+
msgid "Contact Phone:"
|
3369 |
+
msgstr ""
|
3370 |
+
|
3371 |
+
#: view/BlockSettingsSeo.php:960
|
3372 |
+
msgid "Contact Type:"
|
3373 |
+
msgstr ""
|
3374 |
+
|
3375 |
+
#: view/BlockSettingsSeo.php:962
|
3376 |
+
msgid "Customer Service"
|
3377 |
+
msgstr ""
|
3378 |
+
|
3379 |
+
#: view/BlockSettingsSeo.php:963
|
3380 |
+
msgid "Technical Support"
|
3381 |
+
msgstr ""
|
3382 |
+
|
3383 |
+
#: view/BlockSettingsSeo.php:964
|
3384 |
+
msgid "Billing Support"
|
3385 |
+
msgstr ""
|
3386 |
+
|
3387 |
+
#: view/BlockSettingsSeo.php:965
|
3388 |
+
msgid "Bill Payment"
|
3389 |
+
msgstr ""
|
3390 |
+
|
3391 |
+
#: view/BlockSettingsSeo.php:966
|
3392 |
+
msgid "Sales"
|
3393 |
+
msgstr ""
|
3394 |
+
|
3395 |
+
#: view/BlockSettingsSeo.php:967
|
3396 |
+
msgid "Reservations"
|
3397 |
+
msgstr ""
|
3398 |
+
|
3399 |
+
#: view/BlockSettingsSeo.php:968
|
3400 |
+
msgid "Credit Card Support"
|
3401 |
+
msgstr ""
|
3402 |
+
|
3403 |
+
#: view/BlockSettingsSeo.php:969
|
3404 |
+
msgid "Emergency"
|
3405 |
+
msgstr ""
|
3406 |
+
|
3407 |
+
#: view/BlockSettingsSeo.php:970
|
3408 |
+
msgid "Baggage Tracking"
|
3409 |
+
msgstr ""
|
3410 |
+
|
3411 |
+
#: view/BlockSettingsSeo.php:971
|
3412 |
+
msgid "Roadside Assistance"
|
3413 |
+
msgstr ""
|
3414 |
+
|
3415 |
+
#: view/BlockSettingsSeo.php:972
|
3416 |
+
msgid "Package Tracking"
|
3417 |
+
msgstr ""
|
3418 |
+
|
3419 |
+
#: view/BlockSettingsSeo.php:977
|
3420 |
+
msgid "Short Description:"
|
3421 |
+
msgstr ""
|
3422 |
+
|
3423 |
+
#: view/BlockSettingsSeo.php:985
|
3424 |
+
msgid "Add your social accounts for Json-LD"
|
3425 |
+
msgstr ""
|
3426 |
+
|
3427 |
+
#: view/BlockSettingsSeo.php:990
|
3428 |
+
msgid "How the search results will look like once Google grabs your data."
|
3429 |
+
msgstr ""
|
3430 |
+
|
3431 |
+
#: view/BlockSettingsSeo.php:999 view/BlockToolbar.php:8
|
3432 |
+
msgid "Tracking Tools"
|
3433 |
+
msgstr ""
|
3434 |
+
|
3435 |
+
#: view/BlockSettingsSeo.php:1000
|
3436 |
+
#, php-format
|
3437 |
+
msgid "%sHow to Get the Most Out of Google Analytics%s"
|
3438 |
+
msgstr ""
|
3439 |
+
|
3440 |
+
#: view/BlockSettingsSeo.php:1001
|
3441 |
+
#, php-format
|
3442 |
+
msgid "%sWhat is Facebook Pixel?%s"
|
3443 |
+
msgstr ""
|
3444 |
+
|
3445 |
+
#: view/BlockSettingsSeo.php:1002
|
3446 |
+
#, php-format
|
3447 |
+
msgid "%sA Beginner’s Guide to Facebook Insights%s"
|
3448 |
+
msgstr ""
|
3449 |
+
|
3450 |
+
#: view/BlockSettingsSeo.php:1009
|
3451 |
+
msgid "Google Tracking G17"
|
3452 |
+
msgstr ""
|
3453 |
+
|
3454 |
+
#: view/BlockSettingsSeo.php:1021
|
3455 |
+
msgid "Facebook Tracking G17"
|
3456 |
+
msgstr ""
|
3457 |
+
|
3458 |
+
#: view/BlockSettingsSeo.php:1033
|
3459 |
+
msgid "Rich Pins G17"
|
3460 |
+
msgstr ""
|
3461 |
+
|
3462 |
+
#: view/BlockSettingsSeo.php:1050 view/BlockSettingsSeo.php:1060
|
3463 |
+
#: view/BlockSettingsSeo.php:1073
|
3464 |
+
#, php-format
|
3465 |
+
msgid "Facebook Admin ID (for %sInsights%s ):"
|
3466 |
+
msgstr ""
|
3467 |
+
|
3468 |
+
#: view/BlockSettingsSeo.php:1053 view/BlockSettingsSeo.php:1063
|
3469 |
+
#: view/BlockSettingsSeo.php:1076
|
3470 |
+
msgid "Facebook ID or https://www.facebook.com/YourProfileName"
|
3471 |
+
msgstr ""
|
3472 |
+
|
3473 |
+
#: view/BlockSettingsSeo.php:1068
|
3474 |
+
msgid "Add more Facebook Admin IDs"
|
3475 |
+
msgstr ""
|
3476 |
+
|
3477 |
+
#: view/BlockSettingsSeo.php:1082
|
3478 |
+
#, php-format
|
3479 |
+
msgid "Google %sAnalytics ID%s:"
|
3480 |
+
msgstr ""
|
3481 |
+
|
3482 |
+
#: view/BlockSettingsSeo.php:1086
|
3483 |
+
msgid "Google Tracking Mode:"
|
3484 |
+
msgstr ""
|
3485 |
+
|
3486 |
+
#: view/BlockSettingsSeo.php:1088
|
3487 |
+
msgid "analytics.js"
|
3488 |
+
msgstr ""
|
3489 |
+
|
3490 |
+
#: view/BlockSettingsSeo.php:1089
|
3491 |
+
msgid "gtag.js"
|
3492 |
+
msgstr ""
|
3493 |
+
|
3494 |
+
#: view/BlockSettingsSeo.php:1095
|
3495 |
+
#, php-format
|
3496 |
+
msgid "Facebook %sPixel ID%s:"
|
3497 |
+
msgstr ""
|
3498 |
+
|
3499 |
+
#: view/BlockSettingsSeo.php:1108
|
3500 |
+
#, php-format
|
3501 |
+
msgid ""
|
3502 |
+
"Load <strong>%sGoogle Analytics AMP%s</strong> and <strong>%sFacebook Pixel "
|
3503 |
+
"AMP%s</strong> tracking%s(Warning! The tracking works only for AMP Themes.%s)"
|
3504 |
+
msgstr ""
|
3505 |
+
|
3506 |
+
#: view/BlockSettingsSeo.php:1115
|
3507 |
+
msgid "Measure Your Success"
|
3508 |
+
msgstr ""
|
3509 |
+
|
3510 |
+
#: view/BlockSettingsSeo.php:1116
|
3511 |
+
#, php-format
|
3512 |
+
msgid "%sHow to set the Google Webmaster Tool%s"
|
3513 |
+
msgstr ""
|
3514 |
+
|
3515 |
+
#: view/BlockSettingsSeo.php:1117
|
3516 |
+
#, php-format
|
3517 |
+
msgid "%sBest practices to help Google find, crawl, and index your site%s"
|
3518 |
+
msgstr ""
|
3519 |
+
|
3520 |
+
#: view/BlockSettingsSeo.php:1118
|
3521 |
+
#, php-format
|
3522 |
+
msgid "%sBing Webmaster Tools Help & How-To Center%s"
|
3523 |
+
msgstr ""
|
3524 |
+
|
3525 |
+
#: view/BlockSettingsSeo.php:1119
|
3526 |
+
#, php-format
|
3527 |
+
msgid "%sRich Pins Validator%s"
|
3528 |
+
msgstr ""
|
3529 |
+
|
3530 |
+
#: view/BlockSettingsSeo.php:1125
|
3531 |
+
#, php-format
|
3532 |
+
msgid "Google META verification code for %sWebmaster Tool%s:"
|
3533 |
+
msgstr ""
|
3534 |
+
|
3535 |
+
#: view/BlockSettingsSeo.php:1131
|
3536 |
+
#, php-format
|
3537 |
+
msgid "Bing META code (for %sWebmaster Tool%s ):"
|
3538 |
+
msgstr ""
|
3539 |
+
|
3540 |
+
#: view/BlockSettingsSeo.php:1138
|
3541 |
+
#, php-format
|
3542 |
+
msgid "Alexa META code (for %sAlexa Tool%s ):"
|
3543 |
+
msgstr ""
|
3544 |
+
|
3545 |
+
#: view/BlockSettingsSeo.php:1144
|
3546 |
+
#, php-format
|
3547 |
+
msgid "Pinterest Website Validator Code: (validate %sRich Pins%s )"
|
3548 |
+
msgstr ""
|
3549 |
+
|
3550 |
+
# @ squirrly-seo
|
3551 |
+
#: view/BlockSupport.php:11
|
3552 |
+
msgid "Go to Profile"
|
3553 |
+
msgstr ""
|
3554 |
+
|
3555 |
+
# @ squirrly-seo
|
3556 |
+
#: view/BlockSupport.php:11 view/BlockSupport.php:12
|
3557 |
+
msgid "Profile"
|
3558 |
+
msgstr ""
|
3559 |
+
|
3560 |
+
#: view/BlockSupport.php:47 view/BlockSupport.php:102
|
3561 |
+
msgid "For more support:"
|
3562 |
+
msgstr ""
|
3563 |
+
|
3564 |
+
#: view/BlockSupport.php:48 view/BlockSupport.php:103
|
3565 |
+
#, php-format
|
3566 |
+
msgid "10 AM to 4 PM (GMT): Mon-Fri %sby email%s."
|
3567 |
+
msgstr ""
|
3568 |
+
|
3569 |
+
#: view/BlockSupport.php:49 view/BlockSupport.php:105
|
3570 |
+
#, php-format
|
3571 |
+
msgid "%sLive Chat%s on Youtube. Thursday 4 PM."
|
3572 |
+
msgstr ""
|
3573 |
+
|
3574 |
+
#: view/BlockSupport.php:50 view/BlockSupport.php:106
|
3575 |
+
#, php-format
|
3576 |
+
msgid "Google Plus %sSupport Community%s."
|
3577 |
+
msgstr ""
|
3578 |
+
|
3579 |
+
#: view/BlockSupport.php:51 view/BlockSupport.php:107
|
3580 |
+
#, php-format
|
3581 |
+
msgid "New Lessons Mon. and Tue. on %sTwitter%s."
|
3582 |
+
msgstr ""
|
3583 |
+
|
3584 |
+
# @ squirrly-seo
|
3585 |
+
#: view/BlockSupport.php:63
|
3586 |
+
msgid "How was your Squirrly experience today?"
|
3587 |
+
msgstr ""
|
3588 |
+
|
3589 |
+
# @ squirrly-seo
|
3590 |
+
#: view/BlockSupport.php:72
|
3591 |
+
msgid "How was Squirrly today?"
|
3592 |
+
msgstr ""
|
3593 |
+
|
3594 |
+
#: view/BlockSupport.php:77
|
3595 |
+
msgid "Angry"
|
3596 |
+
msgstr ""
|
3597 |
+
|
3598 |
+
#: view/BlockSupport.php:77
|
3599 |
+
msgid "Annoying"
|
3600 |
+
msgstr ""
|
3601 |
+
|
3602 |
+
#: view/BlockSupport.php:80
|
3603 |
+
msgid "Sad"
|
3604 |
+
msgstr ""
|
3605 |
+
|
3606 |
+
#: view/BlockSupport.php:80
|
3607 |
+
msgid "Bad"
|
3608 |
+
msgstr ""
|
3609 |
+
|
3610 |
+
#: view/BlockSupport.php:83
|
3611 |
+
msgid "Happy"
|
3612 |
+
msgstr ""
|
3613 |
+
|
3614 |
+
#: view/BlockSupport.php:83
|
3615 |
+
msgid "Nice"
|
3616 |
+
msgstr ""
|
3617 |
+
|
3618 |
+
#: view/BlockSupport.php:86
|
3619 |
+
msgid "Excited"
|
3620 |
+
msgstr ""
|
3621 |
+
|
3622 |
+
#: view/BlockSupport.php:86
|
3623 |
+
msgid "Great"
|
3624 |
+
msgstr ""
|
3625 |
+
|
3626 |
+
#: view/BlockSupport.php:89
|
3627 |
+
msgid "Love it"
|
3628 |
+
msgstr ""
|
3629 |
+
|
3630 |
+
# @ squirrly-seo
|
3631 |
+
#: view/BlockSupport.php:95
|
3632 |
+
msgid "Please tell us why?"
|
3633 |
+
msgstr ""
|
3634 |
+
|
3635 |
+
# @ squirrly-seo
|
3636 |
+
#: view/BlockSupport.php:98
|
3637 |
+
msgid "Send feedback"
|
3638 |
+
msgstr ""
|
3639 |
+
|
3640 |
+
#: view/BlockSupport.php:104
|
3641 |
+
#, php-format
|
3642 |
+
msgid "%sSupport button%s here in WordPress (^^)"
|
3643 |
+
msgstr ""
|
3644 |
+
|
3645 |
+
# @ squirrly-seo
|
3646 |
+
#: view/BlockSupport.php:112
|
3647 |
+
msgid "Thank you! You can send us a happy face tomorow too."
|
3648 |
+
msgstr ""
|
3649 |
+
|
3650 |
+
#: view/BlockToolbar.php:5
|
3651 |
+
msgid "Structured Data"
|
3652 |
+
msgstr ""
|
3653 |
+
|
3654 |
+
#: view/BlockToolbar.php:6
|
3655 |
+
msgid "Social Media"
|
3656 |
+
msgstr ""
|
3657 |
+
|
3658 |
+
#: view/BlockToolbar.php:7
|
3659 |
+
msgid "Site Icon"
|
3660 |
+
msgstr ""
|
3661 |
+
|
3662 |
+
#: view/BlockToolbar.php:9
|
3663 |
+
msgid "Connections"
|
3664 |
+
msgstr ""
|
3665 |
+
|
3666 |
+
#: view/BlockToolbar.php:10
|
3667 |
+
msgid "Sitemap XML"
|
3668 |
+
msgstr ""
|
3669 |
+
|
3670 |
+
#: view/BlockToolbar.php:11
|
3671 |
+
msgid "Ranking Options"
|
3672 |
+
msgstr ""
|
3673 |
+
|
3674 |
+
#: view/BlockToolbar.php:12
|
3675 |
+
msgid "Advanced"
|
3676 |
+
msgstr ""
|
3677 |
+
|
3678 |
+
#: view/BlockToolbar.php:13
|
3679 |
+
msgid "Robots.txt"
|
3680 |
+
msgstr ""
|
3681 |
+
|
3682 |
+
#: view/BlockToolbar.php:15
|
3683 |
+
msgid "Import"
|
3684 |
+
msgstr ""
|
3685 |
+
|
3686 |
+
# @ squirrly-seo
|
3687 |
+
#: view/Blocklogin.php:2
|
3688 |
+
msgid "Squirrly.co Login"
|
3689 |
+
msgstr ""
|
3690 |
+
|
3691 |
+
# @ squirrly-seo
|
3692 |
+
#: view/Blocklogin.php:9
|
3693 |
+
msgid "Email:"
|
3694 |
+
msgstr ""
|
3695 |
+
|
3696 |
+
# @ squirrly-seo
|
3697 |
+
#: view/Blocklogin.php:11
|
3698 |
+
msgid "Password:"
|
3699 |
+
msgstr ""
|
3700 |
+
|
3701 |
+
# @ squirrly-seo
|
3702 |
+
#: view/Blocklogin.php:13
|
3703 |
+
msgid "Login"
|
3704 |
+
msgstr ""
|
3705 |
+
|
3706 |
+
# @ squirrly-seo
|
3707 |
+
#: view/Blocklogin.php:15
|
3708 |
+
msgid "Register"
|
3709 |
+
msgstr ""
|
3710 |
+
|
3711 |
+
# @ squirrly-seo
|
3712 |
+
#: view/Blocklogin.php:15
|
3713 |
+
msgid "Register to Squirrly.co"
|
3714 |
+
msgstr ""
|
3715 |
+
|
3716 |
+
# @ squirrly-seo
|
3717 |
+
#: view/Blocklogin.php:16
|
3718 |
+
msgid "Lost password?"
|
3719 |
+
msgstr ""
|
3720 |
+
|
3721 |
+
# @ squirrly-seo
|
3722 |
+
#: view/Blocklogin.php:16
|
3723 |
+
msgid "Lost password"
|
3724 |
+
msgstr ""
|
3725 |
+
|
3726 |
+
# @ squirrly-seo
|
3727 |
+
#: view/Blocklogin.php:21
|
3728 |
+
msgid "Enter your email"
|
3729 |
+
msgstr ""
|
3730 |
+
|
3731 |
+
#: view/Blocklogin.php:23
|
3732 |
+
msgid "Your Email:"
|
3733 |
+
msgstr ""
|
3734 |
+
|
3735 |
+
#: view/Blocklogin.php:31
|
3736 |
+
#, php-format
|
3737 |
+
msgid "I Agree with the Squirrly %sTerms of Use%s and %sPrivacy Policy%s"
|
3738 |
+
msgstr ""
|
3739 |
+
|
3740 |
+
#: view/Blocklogin.php:33
|
3741 |
+
msgid "Sign Up"
|
3742 |
+
msgstr ""
|
3743 |
+
|
3744 |
+
#: view/Blocklogin.php:34
|
3745 |
+
msgid "I already have an account"
|
3746 |
+
msgstr ""
|
3747 |
+
|
3748 |
+
#: view/Blocklogin.php:35
|
3749 |
+
msgid "This email connects you to Squirrly.co"
|
3750 |
+
msgstr ""
|
3751 |
+
|
3752 |
+
# @ squirrly-seo
|
3753 |
+
#: view/Blocklogin.php:46
|
3754 |
+
msgid "The email address is invalid!"
|
3755 |
+
msgstr ""
|
3756 |
+
|
3757 |
+
# @ squirrly-seo
|
3758 |
+
#: view/Blocklogin.php:47
|
3759 |
+
msgid "Click on Sign Up button and try again ..."
|
3760 |
+
msgstr ""
|
3761 |
+
|
3762 |
+
# @ squirrly-seo
|
3763 |
+
#: view/Blocklogin.php:48
|
3764 |
+
msgid "An error occured while logging in!"
|
3765 |
+
msgstr ""
|
3766 |
+
|
3767 |
+
# @ squirrly-seo
|
3768 |
+
#: view/Blocklogin.php:49
|
3769 |
+
msgid "Connecting ..."
|
3770 |
+
msgstr ""
|
3771 |
+
|
3772 |
+
#: view/Blocklogin.php:59
|
3773 |
+
msgid "Congratulations! You are ready to use all the features from Squirrly"
|
3774 |
+
msgstr ""
|
3775 |
+
|
3776 |
+
#: view/Blocksearch.php:2
|
3777 |
+
msgid "Waiting for your editor to load .. "
|
3778 |
+
msgstr ""
|
3779 |
+
|
3780 |
+
#: view/Blocksearch.php:3
|
3781 |
+
msgid ""
|
3782 |
+
"Javascript is disabled! You need to activate the javascript in order to use "
|
3783 |
+
"Squirrly SEO."
|
3784 |
+
msgstr ""
|
3785 |
+
|
3786 |
+
#: view/Blocksearch.php:6
|
3787 |
+
msgid "Optimize for Keyword"
|
3788 |
+
msgstr ""
|
3789 |
+
|
3790 |
+
#: view/Blocksearch.php:7 view/Blocksearch.php:15
|
3791 |
+
msgid "Squirrly Briefcase"
|
3792 |
+
msgstr ""
|
3793 |
+
|
3794 |
+
#: view/Blocksearch.php:9
|
3795 |
+
msgid "What is Briefcase?"
|
3796 |
+
msgstr ""
|
3797 |
+
|
3798 |
+
#: view/Blocksearch.php:16
|
3799 |
+
msgid "Refresh the keywords"
|
3800 |
+
msgstr ""
|
3801 |
+
|
3802 |
+
#: view/Blocksearch.php:18
|
3803 |
+
msgid "Search in Briefcase ..."
|
3804 |
+
msgstr ""
|
3805 |
+
|
3806 |
+
#: view/Blocksearch.php:20
|
3807 |
+
msgid "Go to Briefcase"
|
3808 |
+
msgstr ""
|
3809 |
+
|
3810 |
+
# @ squirrly-seo
|
3811 |
+
#: view/Blocksearch.php:32
|
3812 |
+
msgid "Enter a keyword"
|
3813 |
+
msgstr ""
|
3814 |
+
|
3815 |
+
# @ squirrly-seo
|
3816 |
+
#: view/Blocksearch.php:33
|
3817 |
+
msgid "for Squirrly Live SEO optimization"
|
3818 |
+
msgstr ""
|
3819 |
+
|
3820 |
+
# @ squirrly-seo
|
3821 |
+
#: view/Blocksearch.php:49
|
3822 |
+
msgid "Use this keyword"
|
3823 |
+
msgstr ""
|
3824 |
+
|
3825 |
+
# @ squirrly-seo
|
3826 |
+
#: view/Blocksearch.php:53
|
3827 |
+
msgid "Enter a keyword above!"
|
3828 |
+
msgstr ""
|
3829 |
+
|
3830 |
+
# @ squirrly-seo
|
3831 |
+
#: view/Blocksearch.php:54
|
3832 |
+
msgid "I have more then one keyword!"
|
3833 |
+
msgstr ""
|
3834 |
+
|
3835 |
+
# @ squirrly-seo
|
3836 |
+
#: view/Blocksearch.php:60
|
3837 |
+
msgid "Images"
|
3838 |
+
msgstr ""
|
3839 |
+
|
3840 |
+
# @ squirrly-seo
|
3841 |
+
#: view/Blocksearch.php:62
|
3842 |
+
msgid "Wiki"
|
3843 |
+
msgstr ""
|
3844 |
+
|
3845 |
+
# @ squirrly-seo
|
3846 |
+
#: view/Blocksearch.php:63
|
3847 |
+
msgid "Blogs"
|
3848 |
+
msgstr ""
|
3849 |
+
|
3850 |
+
# @ squirrly-seo
|
3851 |
+
#: view/Blocksearch.php:64
|
3852 |
+
msgid "My articles"
|
3853 |
+
msgstr ""
|
3854 |
+
|
3855 |
+
# @ squirrly-seo
|
3856 |
+
#: view/Blocksearch.php:72
|
3857 |
+
msgid "Show only Copyright Free images"
|
3858 |
+
msgstr ""
|
3859 |
+
|
3860 |
+
#: view/Blockseo.php:13
|
3861 |
+
msgid "Split Window"
|
3862 |
+
msgstr ""
|
3863 |
+
|
3864 |
+
#: view/FrontMenu.php:46
|
3865 |
+
msgid "Saved! This is how the preview looks like"
|
3866 |
+
msgstr ""
|
3867 |
+
|
3868 |
+
#: view/FrontMenu.php:63
|
3869 |
+
msgid "Activate Squirrly SEO for this page"
|
3870 |
+
msgstr ""
|
3871 |
+
|
3872 |
+
#: view/FrontMenu.php:65
|
3873 |
+
#, php-format
|
3874 |
+
msgid ""
|
3875 |
+
"Post Type (%s) was excluded from %sSquirrly > SEO Settings%s. Squirrly SEO "
|
3876 |
+
"will not load for this post type on the frontend"
|
3877 |
+
msgstr ""
|
3878 |
+
|
3879 |
+
#: view/FrontMenu.php:83
|
3880 |
+
msgid "META"
|
3881 |
+
msgstr ""
|
3882 |
+
|
3883 |
+
#: view/FrontMenu.php:86
|
3884 |
+
msgid "FACEBOOK"
|
3885 |
+
msgstr ""
|
3886 |
+
|
3887 |
+
#: view/FrontMenu.php:89
|
3888 |
+
msgid "TWITTER"
|
3889 |
+
msgstr ""
|
3890 |
+
|
3891 |
+
#: view/FrontMenu.php:92
|
3892 |
+
msgid "ADVANCED"
|
3893 |
+
msgstr ""
|
3894 |
+
|
3895 |
+
#: view/FrontMenu.php:105
|
3896 |
+
msgid "How this page will appear on Search Engines"
|
3897 |
+
msgstr ""
|
3898 |
+
|
3899 |
+
#: view/FrontMenu.php:110
|
3900 |
+
msgid "Edit Snippet"
|
3901 |
+
msgstr ""
|
3902 |
+
|
3903 |
+
#: view/FrontMenu.php:125 view/FrontMenu.php:316 view/FrontMenu.php:456
|
3904 |
+
msgid "Cancel"
|
3905 |
+
msgstr ""
|
3906 |
+
|
3907 |
+
#: view/FrontMenu.php:126 view/FrontMenu.php:317 view/FrontMenu.php:457
|
3908 |
+
#: view/FrontMenu.php:518
|
3909 |
+
msgid "Save"
|
3910 |
+
msgstr ""
|
3911 |
+
|
3912 |
+
#: view/FrontMenu.php:133
|
3913 |
+
msgid "SEO Title"
|
3914 |
+
msgstr ""
|
3915 |
+
|
3916 |
+
#: view/FrontMenu.php:136 view/FrontMenu.php:186
|
3917 |
+
msgid "Pattern: "
|
3918 |
+
msgstr ""
|
3919 |
+
|
3920 |
+
#: view/FrontMenu.php:141
|
3921 |
+
msgid "Current Title"
|
3922 |
+
msgstr ""
|
3923 |
+
|
3924 |
+
#: view/FrontMenu.php:146
|
3925 |
+
msgid "Default Title"
|
3926 |
+
msgstr ""
|
3927 |
+
|
3928 |
+
#: view/FrontMenu.php:166 view/FrontMenu.php:213
|
3929 |
+
msgid "Pattern"
|
3930 |
+
msgstr ""
|
3931 |
+
|
3932 |
+
#: view/FrontMenu.php:183
|
3933 |
+
msgid "META Description"
|
3934 |
+
msgstr ""
|
3935 |
+
|
3936 |
+
#: view/FrontMenu.php:190
|
3937 |
+
msgid "Current Description"
|
3938 |
+
msgstr ""
|
3939 |
+
|
3940 |
+
#: view/FrontMenu.php:195
|
3941 |
+
msgid "Default Description"
|
3942 |
+
msgstr ""
|
3943 |
+
|
3944 |
+
#: view/FrontMenu.php:229
|
3945 |
+
msgid "Meta Keywords"
|
3946 |
+
msgstr ""
|
3947 |
+
|
3948 |
+
# @ squirrly-seo
|
3949 |
+
#: view/FrontMenu.php:233
|
3950 |
+
msgid "+ Add keyword"
|
3951 |
+
msgstr ""
|
3952 |
+
|
3953 |
+
#: view/FrontMenu.php:241
|
3954 |
+
msgid "Canonical link"
|
3955 |
+
msgstr ""
|
3956 |
+
|
3957 |
+
#: view/FrontMenu.php:244
|
3958 |
+
msgid "Found: "
|
3959 |
+
msgstr ""
|
3960 |
+
|
3961 |
+
#: view/FrontMenu.php:250
|
3962 |
+
msgid "Current"
|
3963 |
+
msgstr ""
|
3964 |
+
|
3965 |
+
#: view/FrontMenu.php:256
|
3966 |
+
msgid "Default Link"
|
3967 |
+
msgstr ""
|
3968 |
+
|
3969 |
+
#: view/FrontMenu.php:267
|
3970 |
+
msgid ""
|
3971 |
+
"To edit the snippet, you have to activate Squirrly SEO for this page first"
|
3972 |
+
msgstr ""
|
3973 |
+
|
3974 |
+
#: view/FrontMenu.php:268 view/FrontMenu.php:411 view/FrontMenu.php:511
|
3975 |
+
#: view/FrontMenu.php:567
|
3976 |
+
msgid "or Click here"
|
3977 |
+
msgstr ""
|
3978 |
+
|
3979 |
+
#: view/FrontMenu.php:276
|
3980 |
+
msgid "How this page appears on Facebook"
|
3981 |
+
msgstr ""
|
3982 |
+
|
3983 |
+
#: view/FrontMenu.php:281
|
3984 |
+
msgid "Edit Open Graph"
|
3985 |
+
msgstr ""
|
3986 |
+
|
3987 |
+
#: view/FrontMenu.php:289 view/FrontMenu.php:430
|
3988 |
+
msgid "The image size must be at least 500 pixels wide"
|
3989 |
+
msgstr ""
|
3990 |
+
|
3991 |
+
#: view/FrontMenu.php:303 view/FrontMenu.php:444
|
3992 |
+
msgid ""
|
3993 |
+
"This is the Featured Image. You can changin it if you edit the snippet and "
|
3994 |
+
"upload anothe image."
|
3995 |
+
msgstr ""
|
3996 |
+
|
3997 |
+
#: view/FrontMenu.php:323
|
3998 |
+
msgid "Media Image"
|
3999 |
+
msgstr ""
|
4000 |
+
|
4001 |
+
#: view/FrontMenu.php:328 view/FrontMenu.php:469
|
4002 |
+
msgid "Image size must be at least 500 pixels wide"
|
4003 |
+
msgstr ""
|
4004 |
+
|
4005 |
+
#: view/FrontMenu.php:342
|
4006 |
+
msgid "OG Title"
|
4007 |
+
msgstr ""
|
4008 |
+
|
4009 |
+
#: view/FrontMenu.php:355
|
4010 |
+
msgid "OG Description"
|
4011 |
+
msgstr ""
|
4012 |
+
|
4013 |
+
#: view/FrontMenu.php:368
|
4014 |
+
msgid "Author Link"
|
4015 |
+
msgstr ""
|
4016 |
+
|
4017 |
+
#: view/FrontMenu.php:373
|
4018 |
+
msgid "if there are more authors, separate their facebook links with commas"
|
4019 |
+
msgstr ""
|
4020 |
+
|
4021 |
+
#: view/FrontMenu.php:379
|
4022 |
+
msgid "Page type"
|
4023 |
+
msgstr ""
|
4024 |
+
|
4025 |
+
#: view/FrontMenu.php:383
|
4026 |
+
msgid "Website"
|
4027 |
+
msgstr ""
|
4028 |
+
|
4029 |
+
#: view/FrontMenu.php:392
|
4030 |
+
msgid "Book"
|
4031 |
+
msgstr ""
|
4032 |
+
|
4033 |
+
#: view/FrontMenu.php:395
|
4034 |
+
msgid "Music"
|
4035 |
+
msgstr ""
|
4036 |
+
|
4037 |
+
#: view/FrontMenu.php:398
|
4038 |
+
msgid "Product"
|
4039 |
+
msgstr ""
|
4040 |
+
|
4041 |
+
#: view/FrontMenu.php:401
|
4042 |
+
msgid "Video"
|
4043 |
+
msgstr ""
|
4044 |
+
|
4045 |
+
#: view/FrontMenu.php:410
|
4046 |
+
msgid ""
|
4047 |
+
"To edit the Open Graph, you have to activate Squirrly SEO for this page first"
|
4048 |
+
msgstr ""
|
4049 |
+
|
4050 |
+
#: view/FrontMenu.php:419
|
4051 |
+
msgid "How this page appears on Twitter"
|
4052 |
+
msgstr ""
|
4053 |
+
|
4054 |
+
#: view/FrontMenu.php:422
|
4055 |
+
msgid "Edit Twitter Card"
|
4056 |
+
msgstr ""
|
4057 |
+
|
4058 |
+
#: view/FrontMenu.php:464
|
4059 |
+
msgid "Twitter Image"
|
4060 |
+
msgstr ""
|
4061 |
+
|
4062 |
+
#: view/FrontMenu.php:482
|
4063 |
+
msgid "Twitter Card Title"
|
4064 |
+
msgstr ""
|
4065 |
+
|
4066 |
+
#: view/FrontMenu.php:495
|
4067 |
+
msgid "Twitter Card Description"
|
4068 |
+
msgstr ""
|
4069 |
+
|
4070 |
+
#: view/FrontMenu.php:510
|
4071 |
+
msgid ""
|
4072 |
+
"To edit the Twitter Card, you have to activate Squirrly SEO for this page "
|
4073 |
+
"first"
|
4074 |
+
msgstr ""
|
4075 |
+
|
4076 |
+
#: view/FrontMenu.php:525
|
4077 |
+
msgid "Let Google Index This Page"
|
4078 |
+
msgstr ""
|
4079 |
+
|
4080 |
+
#: view/FrontMenu.php:538
|
4081 |
+
msgid "Pass Link Juice to This Page"
|
4082 |
+
msgstr ""
|
4083 |
+
|
4084 |
+
#: view/FrontMenu.php:551
|
4085 |
+
msgid "Show it in Sitemap.xml"
|
4086 |
+
msgstr ""
|
4087 |
+
|
4088 |
+
#: view/FrontMenu.php:566
|
4089 |
+
msgid "To edit, you have to activate Squirrly SEO for this page first."
|
4090 |
+
msgstr ""
|
4091 |
+
|
4092 |
+
#: view/FrontMenu.php:586
|
4093 |
+
msgid "post type"
|
4094 |
+
msgstr ""
|
4095 |
+
|
4096 |
+
#: view/FrontMenu.php:588
|
4097 |
+
msgid "og type"
|
4098 |
+
msgstr ""
|
4099 |
+
|
4100 |
+
#: view/FrontMenu.php:610
|
4101 |
+
msgid "Can't do Custom SEO for this URL"
|
4102 |
+
msgstr ""
|
4103 |
+
|
4104 |
+
#: view/FrontMenu.php:630
|
4105 |
+
msgid "Enable Squirrly SEO to load Squirrly Snippet"
|
4106 |
+
msgstr ""
|
4107 |
+
|
4108 |
+
#: view/FrontMenu.php:654
|
4109 |
+
#, php-format
|
4110 |
+
msgid "%sPlease connect to Squirrly first%s"
|
4111 |
+
msgstr ""
|
4112 |
+
|
4113 |
+
#: view/SerpChecker.php:32
|
4114 |
+
msgid "Settings"
|
4115 |
+
msgstr ""
|
4116 |
+
|
4117 |
+
#: view/SerpChecker.php:37
|
4118 |
+
msgid "Update ranks"
|
4119 |
+
msgstr ""
|
4120 |
+
|
4121 |
+
#: view/SerpChecker.php:54
|
4122 |
+
msgid "Advanced Analytics (Business Level)"
|
4123 |
+
msgstr ""
|
4124 |
+
|
4125 |
+
#: view/SerpChecker.php:77
|
4126 |
+
msgid "Get Ranks and found Keywords from Squirrly Cloud"
|
4127 |
+
msgstr ""
|
4128 |
+
|
4129 |
+
#: view/SerpChecker.php:81 view/SerpChecker.php:85
|
4130 |
+
msgid "Get Ranks from Squirrly Cloud"
|
4131 |
+
msgstr ""
|
4132 |
+
|
4133 |
+
#: view/SerpChecker.php:92
|
4134 |
+
msgid "Last Update"
|
4135 |
+
msgstr ""
|
4136 |
+
|
4137 |
+
#: view/SerpChecker.php:109 view/SerpChecker.php:113
|
4138 |
+
msgid "Found Keywords"
|
4139 |
+
msgstr ""
|
4140 |
+
|
4141 |
+
#: view/SerpChecker.php:118
|
4142 |
+
#, php-format
|
4143 |
+
msgid "Found Keywords (%sSee all keywords%s)"
|
4144 |
+
msgstr ""
|
4145 |
+
|
4146 |
+
#: view/SerpChecker.php:118
|
4147 |
+
msgid "Show the keywords found with Advanced Analytics"
|
4148 |
+
msgstr ""
|
4149 |
+
|
4150 |
+
#: view/SerpChecker.php:140
|
4151 |
+
msgid "Show only the ranked articles"
|
4152 |
+
msgstr ""
|
4153 |
+
|
4154 |
+
#: view/SerpChecker.php:145
|
4155 |
+
msgid "Today Avg. Ranking"
|
4156 |
+
msgstr ""
|
4157 |
+
|
4158 |
+
#: view/SerpChecker.php:175
|
4159 |
+
msgid "Show only the SERP changes"
|
4160 |
+
msgstr ""
|
4161 |
+
|
4162 |
+
#: view/SerpChecker.php:180
|
4163 |
+
msgid "Today SERP Changes"
|
4164 |
+
msgstr ""
|
4165 |
+
|
4166 |
+
# @ squirrly-seo
|
4167 |
+
#~ msgid "Could not send the email..."
|
4168 |
+
#~ msgstr "Konnte E-Mail nicht senden ..."
|
4169 |
+
|
4170 |
+
# @ squirrly-seo
|
4171 |
+
#~ msgid ""
|
4172 |
+
#~ "For Squirrly to work properly you have to use a higher version of "
|
4173 |
+
#~ "Internet Explorer. <br /> We recommend you to use Chrome or Mozilla."
|
4174 |
+
#~ msgstr ""
|
4175 |
+
#~ "Damit Squirrly ordnungsgemäß funktioniert, müssen Sie eine höhere Version "
|
4176 |
+
#~ "von Internet Explorer verwenden. <br /> Wir empfehlen, Chrome oder "
|
4177 |
+
#~ "Mozilla."
|
4178 |
+
|
4179 |
+
# @ squirrly-seo
|
4180 |
+
#~ msgid "Turn off warnings!"
|
4181 |
+
#~ msgstr "Warnungen ausschalten!"
|
4182 |
+
|
4183 |
+
# @ squirrly-seo
|
4184 |
+
#~ msgid "Exact search:"
|
4185 |
+
#~ msgstr "Exakte Suche:"
|
4186 |
+
|
4187 |
+
# @ squirrly-seo
|
4188 |
+
#~ msgid "For Squirrly to work, you have to have tinymce editor installed!"
|
4189 |
+
#~ msgstr "Damit Squirrly arbeitet, muss tinymce installiert sein!"
|
4190 |
+
|
4191 |
+
# @ squirrly-seo
|
4192 |
+
#~ msgid ":( I lost my squirrel. Please reload the page."
|
4193 |
+
#~ msgstr ":( Ich verlor meine Eichhörnchen. Laden Sie die Seite erneut."
|
4194 |
+
|
4195 |
+
# @ squirrly-seo
|
4196 |
+
#~ msgid "Switch to Visual editor!"
|
4197 |
+
#~ msgstr "Zum Visual Editor wechseln !"
|
4198 |
+
|
4199 |
+
# @ squirrly-seo
|
4200 |
+
#~ msgid "Tips: 2-4 keywords"
|
4201 |
+
#~ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
|
4202 |
+
|
4203 |
+
# @ squirrly-seo
|
4204 |
+
#~ msgid "Go to:"
|
4205 |
+
#~ msgstr "Gehe zu:"
|
4206 |
+
|
4207 |
+
# @ squirrly-seo
|
4208 |
+
#~ msgid "support page"
|
4209 |
+
#~ msgstr "Support Page"
|
4210 |
+
|
4211 |
+
# @ squirrly-seo
|
4212 |
+
#~ msgid "Clear"
|
4213 |
+
#~ msgstr "Löschen"
|
4214 |
+
|
4215 |
+
# @ squirrly-seo
|
4216 |
+
#~ msgid "Do the research"
|
4217 |
+
#~ msgstr "Recherchieren"
|
4218 |
+
|
4219 |
+
# @ squirrly-seo
|
4220 |
+
#~ msgid "Enter even more keywords."
|
4221 |
+
#~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
|
4222 |
+
|
4223 |
+
# @ squirrly-seo
|
4224 |
+
#~ msgid "Let some keywords for the next time as well!"
|
4225 |
+
#~ msgstr "Lassen Sie ein paar Schlüsselwörter auch für das nächste Mal!"
|
4226 |
+
|
4227 |
+
# @ squirrly-seo
|
4228 |
+
#~ msgid "News"
|
4229 |
+
#~ msgstr "News"
|
4230 |
+
|
4231 |
+
# @ squirrly-seo
|
4232 |
+
#~ msgid "Notice: "
|
4233 |
+
#~ msgstr "Hinweis: "
|
4234 |
+
|
4235 |
+
# @ squirrly-seo
|
4236 |
+
#~ msgid "Note: "
|
4237 |
+
#~ msgstr "Notiz: "
|
4238 |
+
|
4239 |
+
# @ squirrly-seo
|
4240 |
+
#~ msgid "Let Squirrly optimize your SEO automatically (recommended)"
|
4241 |
+
#~ msgstr "Lassen Sie Squirrly Ihr SEO automatisch optimieren (empfohlen)"
|
4242 |
+
|
4243 |
+
# @ squirrly-seo
|
4244 |
+
#~ msgid ""
|
4245 |
+
#~ "It is highly recommended that you include the %postname% variable in the "
|
4246 |
+
#~ "permalink structure."
|
4247 |
+
#~ msgstr ""
|
4248 |
+
#~ "Es wird stark empfohlen, dass Sie die %postname% Variable in der "
|
4249 |
+
#~ "Permalink-Struktur einschließen."
|
4250 |
+
|
4251 |
+
# @ squirrly-seo
|
4252 |
+
#~ msgid "For Squirrly to work, you have to have tinymce installed!"
|
4253 |
+
#~ msgstr "Damit Squirrly arbeiten kann, müssen Sie tinymce installiert haben!"
|
4254 |
+
|
4255 |
+
# @ squirrly-seo
|
4256 |
+
#~ msgid "Message sent..."
|
4257 |
+
#~ msgstr "Nachricht gesendet ..."
|
4258 |
+
|
4259 |
+
# @ squirrly-seo
|
4260 |
+
#~ msgid "Use more words in one keyword"
|
4261 |
+
#~ msgstr "Verwenden Sie mehrere Wörter in einem Schlüsselwort"
|
4262 |
+
|
4263 |
+
# @ squirrly-seo
|
4264 |
+
#~ msgid ""
|
4265 |
+
#~ "The system is acting Squirrly. I can not find the link to the server."
|
4266 |
+
#~ msgstr "Kann den Link auf den Server nicht finden."
|
4267 |
+
|
4268 |
+
# @ squirrly-seo
|
4269 |
+
#~ msgid "File type error: Only JPEG, JPG, GIF or PNG files are allowed."
|
4270 |
+
#~ msgstr "Dateityp Fehler: Nur JPEG, JPG, GIF oder PNG-Dateien sind erlaubt."
|
4271 |
+
|
4272 |
+
# @ squirrly-seo
|
4273 |
+
#~ msgid "Your E-mail:"
|
4274 |
+
#~ msgstr "Ihre E-Mail Adresse:"
|
4275 |
+
|
4276 |
+
# @ squirrly-seo
|
4277 |
+
#~ msgid "Squirrly LIVE SEO assistant"
|
4278 |
+
#~ msgstr "Squirrly LIVE SEO-Assistent"
|
4279 |
+
|
4280 |
+
# @ squirrly-seo
|
4281 |
+
#~ msgid ""
|
4282 |
+
#~ "With Squirrly SEO, your Wordpress will get Perfect SEO on each article "
|
4283 |
+
#~ "you write."
|
4284 |
+
#~ msgstr ""
|
4285 |
+
#~ "Mit Squirrly SEO wird jeder Ihrer Wordpress Artikel eine perfekte "
|
4286 |
+
#~ "Suchmaschinenoptimierung erhalten. "
|
4287 |
+
|
4288 |
+
# @ squirrly-seo
|
4289 |
+
#~ msgid "SEO Software"
|
4290 |
+
#~ msgstr "SEO Software"
|
4291 |
+
|
4292 |
+
# @ squirrly-seo
|
4293 |
+
#~ msgid ""
|
4294 |
+
#~ "delivered as a plugin for Wordpress. <br /><br />We connect your "
|
4295 |
+
#~ "wordpress with Squirrly, so that we can find the best SEO opportunities, "
|
4296 |
+
#~ "give you reports and analyse your competitors."
|
4297 |
+
#~ msgstr ""
|
4298 |
+
#~ "geliefert als Plugin für Wordpress. <br /> <br /> Wir verbinden Ihr "
|
4299 |
+
#~ "Wordpress mit Squirrly, so dass wir die besten SEO-Möglichkeiten finden, "
|
4300 |
+
#~ "erstatten Ihnen Bericht und analysieren Ihre Konkurrenz."
|
4301 |
+
|
4302 |
+
# @ squirrly-seo
|
4303 |
+
#~ msgid "Write a new post with Squirrly"
|
4304 |
+
#~ msgstr "Schreiben Sie einen neuen Beitrag mit Squirrly"
|
4305 |
+
|
4306 |
+
# @ squirrly-seo
|
4307 |
+
#~ msgid "Squirrly settings"
|
4308 |
+
#~ msgstr "Squirrly Einstellungen"
|
4309 |
+
|
4310 |
+
#~ msgid " API"
|
4311 |
+
#~ msgstr " API"
|
4312 |
+
|
4313 |
+
# @ squirrly-seo
|
4314 |
+
#~ msgid "API Key:"
|
4315 |
+
#~ msgstr "API Key:"
|
4316 |
+
|
4317 |
+
# @ squirrly-seo
|
4318 |
+
#~ msgid "Let Squirrly automatically optimize my blog"
|
4319 |
+
#~ msgstr "Lassen Sie Squirrly automatisch Ihren Blog optimieren"
|
4320 |
+
|
4321 |
+
# @ squirrly-seo
|
4322 |
+
#~ msgid "adds the correct <strong>title</strong> in the home page"
|
4323 |
+
#~ msgstr "fügt den richtigen <strong>Titel</strong> in die Startseite ein"
|
4324 |
+
|
4325 |
+
# @ squirrly-seo
|
4326 |
+
#~ msgid ""
|
4327 |
+
#~ "adds the correct <strong>description</strong> and <strong>keywords</"
|
4328 |
+
#~ "strong> in all pages"
|
4329 |
+
#~ msgstr ""
|
4330 |
+
#~ "fügt die richtige <strong>Beschreibung</strong> und "
|
4331 |
+
#~ "<strong>Schlüsselwörter</strong> auf allen Seiten ein"
|
4332 |
+
|
4333 |
+
# @ squirrly-seo
|
4334 |
+
#~ msgid "adds <strong>canonical</strong> link in home page"
|
4335 |
+
#~ msgstr "fügt den richtigen <strong>canonical</strong> in die Startseite ein"
|
4336 |
+
|
4337 |
+
# @ squirrly-seo
|
4338 |
+
#~ msgid "adds the <strong>XML Sitemap</strong> for search engines"
|
4339 |
+
#~ msgstr "fügt die <strong>XML Sitemap</strong> für Suchmaschinen ein"
|
4340 |
+
|
4341 |
+
# @ squirrly-seo
|
4342 |
+
#~ msgid ""
|
4343 |
+
#~ "adds the required METAs for home page (<strong>icon, author, language, dc "
|
4344 |
+
#~ "publisher</strong>, etc.)"
|
4345 |
+
#~ msgstr ""
|
4346 |
+
#~ "fügt die erforderlichen METAs für die Startseite (<strong> icon, Autor, "
|
4347 |
+
#~ "Sprache, dc Verlag </strong>, etc.) ein"
|
4348 |
+
|
4349 |
+
# @ squirrly-seo
|
4350 |
+
#~ msgid ""
|
4351 |
+
#~ "adds the <strong>favicon</strong> and the <strong>icon for Apple devices</"
|
4352 |
+
#~ "strong>."
|
4353 |
+
#~ msgstr ""
|
4354 |
+
#~ "fügt das <strong>favicon</strong> und die <strong>icon für Apple-Geräte</"
|
4355 |
+
#~ "strong> ein."
|
4356 |
+
|
4357 |
+
# @ squirrly-seo
|
4358 |
+
#~ msgid "Let Squirrly warn me if there are errors related to SEO settings"
|
4359 |
+
#~ msgstr ""
|
4360 |
+
#~ "Squirrly warnen lassen, wenn es Fehler im Zusammenhang mit den SEO-"
|
4361 |
+
#~ "Einstellungen gibt"
|
4362 |
+
|
4363 |
+
# @ squirrly-seo
|
4364 |
+
#~ msgid ""
|
4365 |
+
#~ "Show <strong>\"Enter a keyword\"</strong> bubble when posting a new "
|
4366 |
+
#~ "article."
|
4367 |
+
#~ msgstr ""
|
4368 |
+
#~ "Zeige <strong>\"Enter a keyword\"</ strong> Bubble, bei einem neuen "
|
4369 |
+
#~ "Artikel."
|
4370 |
+
|
4371 |
+
#~ msgid ""
|
4372 |
+
#~ "Always show <strong>Keyword Informations</strong> about the selected "
|
4373 |
+
#~ "keyword."
|
4374 |
+
#~ msgstr ""
|
4375 |
+
#~ "Always show <strong>Keyword Informations</strong> about the selected "
|
4376 |
+
#~ "keyword."
|
4377 |
+
|
4378 |
+
# @ squirrly-seo
|
4379 |
+
#~ msgid "First page optimization (Title, Description, Keywords)"
|
4380 |
+
#~ msgstr ""
|
4381 |
+
#~ " Optimierung der ersten Seite (Titel, Beschreibung, Schlüsselwörter)"
|
4382 |
+
|
4383 |
+
# @ squirrly-seo
|
4384 |
+
#~ msgid "Status:"
|
4385 |
+
#~ msgstr "Status:"
|
4386 |
+
|
4387 |
+
# @ squirrly-seo
|
4388 |
+
#~ msgid "automatically"
|
4389 |
+
#~ msgstr "automatisch"
|
4390 |
+
|
4391 |
+
# @ squirrly-seo
|
4392 |
+
#~ msgid "Change it >>"
|
4393 |
+
#~ msgstr "Ändern >>"
|
4394 |
+
|
4395 |
+
# @ squirrly-seo
|
4396 |
+
#~ msgid "Tips: Length 10-70 chars"
|
4397 |
+
#~ msgstr "Tipp: Länge 10-70 Charaktere"
|
4398 |
+
|
4399 |
+
# @ squirrly-seo
|
4400 |
+
#~ msgid "Tips: Length 70-255 chars"
|
4401 |
+
#~ msgstr "Tipp: Länge 70-255 Charaktere"
|
4402 |
+
|
4403 |
+
# @ squirrly-seo
|
4404 |
+
#~ msgid "<< Leave it automatically"
|
4405 |
+
#~ msgstr "<< Lass es automatisch"
|
4406 |
+
|
4407 |
+
# @ squirrly-seo
|
4408 |
+
#~ msgid "Tool for Search Engines"
|
4409 |
+
#~ msgstr "Tool für Suchmaschinen"
|
4410 |
+
|
4411 |
+
# @ squirrly-seo
|
4412 |
+
#~ msgid "Google Plus URL:"
|
4413 |
+
#~ msgstr "Google Plus URL:"
|
4414 |
+
|
4415 |
+
# @ squirrly-seo
|
4416 |
+
#~ msgid "Google META verification code for %sWebmaster Tool%s`:"
|
4417 |
+
#~ msgstr "Google META Bestätigungs-Code für %sWebmaster Tool%s`:"
|
4418 |
+
|
4419 |
+
# @ squirrly-seo
|
4420 |
+
#~ msgid "Google %sAnalytics ID%s`:"
|
4421 |
+
#~ msgstr "Google %sAnalytics ID%s`:"
|
4422 |
+
|
4423 |
+
# @ squirrly-seo
|
4424 |
+
#~ msgid "Facebook META code (for %sInsights%s )`:"
|
4425 |
+
#~ msgstr "Facebook META Code (für %sInsights%s )`:"
|
4426 |
+
|
4427 |
+
# @ squirrly-seo
|
4428 |
+
#~ msgid "Bing META code (for %sWebmaster Tool%s )`:"
|
4429 |
+
#~ msgstr "Bing META Code (für %sWebmaster Tool%s )`:"
|
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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: Squirrly <contact@squirrly.co>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
@@ -16,15 +16,9 @@ msgstr ""
|
|
16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
-
"X-Generator: Poedit
|
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,94 +51,94 @@ msgstr "Die PHP-Version muß größer als 4.0 sein"
|
|
57 |
msgid "Don't bother me!"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: classes/Tools.php:
|
61 |
msgid "Getting started"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: classes/Tools.php:
|
65 |
msgid "Format"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: classes/Tools.php:
|
69 |
msgid "Category"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: classes/Tools.php:
|
73 |
msgid "Tag"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: classes/Tools.php:
|
77 |
msgid "Shipping Option"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: classes/Tools.php:
|
81 |
msgid "Author at"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: classes/Tools.php:
|
85 |
msgid "You searched for"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: classes/Tools.php:
|
89 |
msgid "Page not found"
|
90 |
msgstr ""
|
91 |
|
92 |
# @ squirrly-seo
|
93 |
-
#: classes/Tools.php:
|
94 |
msgid "Fix it for me!"
|
95 |
msgstr "Beheben Sie es für mich!"
|
96 |
|
97 |
-
#: classes/Tools.php:
|
98 |
msgid "Activate the Squirrly SEO for your blog (recommended)"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: classes/Tools.php:
|
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:
|
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:
|
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:
|
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:
|
127 |
msgid "You're blocking google from indexing your site!"
|
128 |
msgstr "Sie blockieren Google zum Indizieren Ihrer Website!"
|
129 |
|
130 |
-
#: classes/Tools.php:
|
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:
|
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:
|
144 |
msgid "Great! We didn't find any issue in your site."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: classes/Tools.php:
|
148 |
msgid "Just another WordPress site"
|
149 |
msgstr ""
|
150 |
|
@@ -231,13 +225,25 @@ msgid "Adds the author's biographical info to the post description"
|
|
231 |
msgstr ""
|
232 |
|
233 |
#: config/config.php:63
|
234 |
-
msgid "Displays the current date
|
235 |
msgstr ""
|
236 |
|
237 |
#: config/config.php:64
|
238 |
msgid "Adds the post's keyword to the post description"
|
239 |
msgstr ""
|
240 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
#: controllers/Api.php:40
|
242 |
msgid "Connection expired. Please try again"
|
243 |
msgstr ""
|
@@ -264,154 +270,149 @@ msgid ""
|
|
264 |
"us at: %s"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: controllers/Menu.php:
|
268 |
msgid "See Your Rank on Google"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: controllers/Menu.php:
|
272 |
msgid "Custom SEO"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: controllers/Menu.php:
|
276 |
#, php-format
|
277 |
msgid "Check out the Squirrly Analytics section. %sClick here%s"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: controllers/Menu.php:
|
281 |
msgid "Squirrly Analytics"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: controllers/Menu.php:
|
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:
|
294 |
msgid "First Step"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: controllers/Menu.php:
|
298 |
msgid "Dashboard"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: controllers/Menu.php:
|
302 |
msgid " Advanced Analytics (Business Level)"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: controllers/Menu.php:
|
306 |
msgid "Advanced Analytics"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: controllers/Menu.php:
|
310 |
msgid " Performance Analytics"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: controllers/Menu.php:
|
314 |
msgid "Performance <br />Analytics"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: controllers/Menu.php:
|
318 |
msgid " Keyword Research"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: controllers/Menu.php:
|
322 |
msgid "Keyword Research"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: controllers/Menu.php:
|
326 |
msgid " Briefcase"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: controllers/Menu.php:
|
330 |
msgid "Briefcase"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: controllers/Menu.php:
|
334 |
msgid " Live Assistant"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: controllers/Menu.php:
|
338 |
msgid "Live Assistant"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: controllers/Menu.php:
|
342 |
msgid " Copywriting"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: controllers/Menu.php:
|
346 |
msgid "Copywriting"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: controllers/Menu.php:
|
350 |
msgid " SEO Audit"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: controllers/Menu.php:
|
354 |
msgid "Site Audit"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: controllers/Menu.php:
|
358 |
msgid " SEO Settings"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: controllers/Menu.php:
|
362 |
msgid "SEO Settings"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: controllers/Menu.php:
|
366 |
msgid " Advanced Settings"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: controllers/Menu.php:
|
370 |
msgid "Advanced Settings"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: controllers/Menu.php:
|
374 |
msgid " SEO Patterns"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: controllers/Menu.php:
|
378 |
msgid "Patterns"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: controllers/Menu.php:
|
382 |
msgid " Account Info"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: controllers/Menu.php:
|
386 |
msgid "Account Info"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: controllers/Menu.php:
|
390 |
msgid " Support"
|
391 |
msgstr ""
|
392 |
|
393 |
# @ squirrly-seo
|
394 |
-
#: controllers/Menu.php:
|
395 |
msgid "Support"
|
396 |
msgstr "Support"
|
397 |
|
398 |
-
#: controllers/Menu.php:
|
399 |
msgid "Become an Affiliate with "
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: controllers/Menu.php:
|
403 |
msgid "Become an Affiliate"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: controllers/Menu.php:
|
407 |
-
msgid "Import SEO
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: controllers/Menu.php:
|
411 |
-
msgid "Import SEO"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: controllers/Menu.php:
|
415 |
msgid "SEO Snippet"
|
416 |
msgstr ""
|
417 |
|
@@ -431,16 +432,16 @@ msgstr ""
|
|
431 |
msgid "SEO Analytics, by Squirrly"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: controllers/PostsList.php:144 controllers/SerpChecker.php:
|
435 |
#: models/SerpCheckerTable.php:646 view/Blockseo.php:10
|
436 |
msgid "Update"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: controllers/PostsList.php:148 controllers/SerpChecker.php:
|
440 |
msgid "Not Public"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: controllers/PostsList.php:149 controllers/SerpChecker.php:
|
444 |
msgid "Could not process"
|
445 |
msgstr ""
|
446 |
|
@@ -459,30 +460,30 @@ msgstr ""
|
|
459 |
msgid "%s"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: controllers/SerpChecker.php:23 core/BlockPostsAnalytics.php:
|
463 |
#, php-format
|
464 |
msgid ""
|
465 |
"To get back to the Advanced Analytics and see rankings for all the keywords "
|
466 |
"in Briefcase upgrade to %sBusiness Plan%s."
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: controllers/SerpChecker.php:
|
470 |
-
#: controllers/SerpChecker.php:
|
471 |
#: core/BlockSerpKeywords.php:74 core/BlockSerpKeywords.php:97
|
472 |
-
#: core/BlockSettingsSeo.php:
|
473 |
msgid "You don't have enough pemission to activate this feature"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: controllers/SerpChecker.php:
|
477 |
-
#: core/BlockBriefcaseKeywords.php:
|
478 |
msgid "Last checked"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: controllers/SerpChecker.php:
|
482 |
msgid "Invalid Request"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: controllers/SerpChecker.php:
|
486 |
msgid "Removed successfully! The ranks were updated from Squirry Server"
|
487 |
msgstr ""
|
488 |
|
@@ -495,115 +496,115 @@ msgstr ""
|
|
495 |
msgid "An error occured. Mabe a network error :("
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: core/BlockBriefcaseKeywords.php:
|
499 |
#, php-format
|
500 |
msgid ""
|
501 |
"%sYou activated the Business Plan with Advanced Analytics. %sStart Here%s %s"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: core/BlockBriefcaseKeywords.php:
|
505 |
#, php-format
|
506 |
msgid ""
|
507 |
"%sStart a FREE Trial of the Business Plan with Advanced Analytics for 7 "
|
508 |
"days. No credit card required. %sSee details%s %s"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: core/BlockBriefcaseKeywords.php:
|
512 |
msgid "No keyword found in the briefcase."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: core/BlockBriefcaseKeywords.php:
|
516 |
-
#: core/BlockBriefcaseKeywords.php:
|
517 |
-
#: core/BlockBriefcaseKeywords.php:
|
518 |
-
#: core/BlockBriefcaseKeywords.php:
|
519 |
msgid "You don't have enough pemission to manage this feature"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: core/BlockBriefcaseKeywords.php:
|
523 |
-
#: core/BlockBriefcaseKeywords.php:
|
524 |
-
#: core/Loading.php:
|
525 |
msgid "Saved!"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: core/BlockBriefcaseKeywords.php:
|
529 |
-
#: core/BlockBriefcaseKeywords.php:
|
530 |
msgid "Invalid Keyword!"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: core/BlockBriefcaseKeywords.php:
|
534 |
msgid "Deleted!"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: core/BlockBriefcaseKeywords.php:
|
538 |
-
#: core/BlockBriefcaseKeywords.php:
|
539 |
msgid "Invalid params!"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: core/BlockBriefcaseKeywords.php:
|
543 |
msgid "Keyword Research limit exceeded."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: core/BlockBriefcaseKeywords.php:
|
547 |
msgid "Add 20 Keyword Researches"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: core/BlockBriefcaseKeywords.php:
|
551 |
msgid "Check Ranks"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: core/BlockBriefcaseKeywords.php:
|
555 |
#: models/SerpCheckerTable.php:565
|
556 |
msgid "Edit"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: core/BlockBriefcaseKeywords.php:
|
560 |
msgid "Get Rank"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: core/BlockBriefcaseKeywords.php:
|
564 |
msgid "Deleted Post"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: core/BlockBriefcaseKeywords.php:
|
568 |
msgid "Article title"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: core/BlockBriefcaseKeywords.php:
|
572 |
msgid "Google Rank"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: core/BlockBriefcaseKeywords.php:
|
576 |
msgid "Optimized"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: core/BlockBriefcaseKeywords.php:
|
580 |
msgid "Option"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: core/BlockBriefcaseKeywords.php:
|
584 |
msgid "There are no articles found"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: core/BlockBriefcaseKeywords.php:
|
588 |
msgid "Invalid Label or Color!"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: core/BlockImport.php:
|
592 |
msgid "All the Plugin settings were imported successfuly!"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: core/BlockImport.php:
|
596 |
msgid "No settings found for this plugin/theme."
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: core/BlockImport.php:
|
600 |
#, php-format
|
601 |
msgid ""
|
602 |
"%s SEO records were imported successfuly! You can now deactivate the %s "
|
603 |
"plugin"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: core/BlockImport.php:
|
607 |
#, php-format
|
608 |
msgid ""
|
609 |
"There are no SEO records with this plugin. You can now deactivate the %s "
|
@@ -622,57 +623,52 @@ msgstr ""
|
|
622 |
msgid "Could not find the Article in your Website"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: core/BlockSettingsSeo.php:
|
626 |
#, php-format
|
627 |
msgid "You can now import into Squirrly SEO all the SEO Settings from %s"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: core/BlockSettingsSeo.php:
|
631 |
msgid "Too short"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: core/BlockSettingsSeo.php:
|
635 |
msgid "Too long"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: core/BlockSettingsSeo.php:
|
639 |
msgid "Great! The backup is restored."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: core/BlockSettingsSeo.php:
|
643 |
-
#: core/BlockSettingsSeo.php:
|
644 |
msgid "Error! The backup is not valid."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: core/BlockSettingsSeo.php:
|
648 |
msgid "Error! You have to enter a previous saved backup file."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: core/BlockSettingsSeo.php:
|
652 |
msgid "Great! The SEO backup is restored."
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: core/BlockSettingsSeo.php:
|
656 |
msgid "Great! Squirrly Data Settings is up to date now."
|
657 |
msgstr ""
|
658 |
|
659 |
# @ squirrly-seo
|
660 |
-
#: core/BlockSupport.php:
|
661 |
msgid "Plugin Feedback"
|
662 |
msgstr "Plugin Feedback"
|
663 |
|
664 |
# @ squirrly-seo
|
665 |
-
#: core/BlockSupport.php:
|
666 |
msgid "Thank you for your feedback"
|
667 |
msgstr "Vielen Dank für Ihre Feedback"
|
668 |
|
669 |
# @ squirrly-seo
|
670 |
-
#: core/BlockSupport.php:
|
671 |
-
msgid "Could not send the email..."
|
672 |
-
msgstr "Konnte E-Mail nicht senden ..."
|
673 |
-
|
674 |
-
# @ squirrly-seo
|
675 |
-
#: core/BlockSupport.php:65 core/BlockSupport.php:103
|
676 |
msgid "No message."
|
677 |
msgstr "Keine Nachricht."
|
678 |
|
@@ -685,8 +681,12 @@ msgstr "Plugin Support"
|
|
685 |
msgid "Message sent. Thank you!"
|
686 |
msgstr ""
|
687 |
|
|
|
|
|
|
|
|
|
688 |
# @ squirrly-seo
|
689 |
-
#: core/Blocklogin.php:
|
690 |
#, php-format
|
691 |
msgid ""
|
692 |
"We found your email, so it means you already have a Squirrly.co account. "
|
@@ -697,15 +697,15 @@ msgstr ""
|
|
697 |
"Sie sich mit Ihrer Squirrly-ID ein. Falls Sie Ihr Passwort vergessen haben, "
|
698 |
"klicken Sie %shier%s"
|
699 |
|
700 |
-
#: core/Blocklogin.php:
|
701 |
msgid "Your email is not valid. Please enter a valid email"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: core/Blocklogin.php:
|
705 |
msgid "We could not create your account. Please enter a valid email "
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: core/Blocklogin.php:
|
709 |
msgid ""
|
710 |
"Error: Couldn't connect to host :( . Please contact your site's webhost (or "
|
711 |
"webmaster) and request them to add http://api.squirrly.co/ to their IP "
|
@@ -713,7 +713,7 @@ msgid ""
|
|
713 |
msgstr ""
|
714 |
|
715 |
# @ squirrly-seo
|
716 |
-
#: core/Blocklogin.php:
|
717 |
#, php-format
|
718 |
msgid ""
|
719 |
"Could not send your informations to squirrly. Please register %smanually%s."
|
@@ -722,24 +722,24 @@ msgstr ""
|
|
722 |
"%smanually%s."
|
723 |
|
724 |
# @ squirrly-seo
|
725 |
-
#: core/Blocklogin.php:
|
726 |
msgid "Wrong email or password!"
|
727 |
msgstr "Benutzername oder Passwort falsch!"
|
728 |
|
729 |
# @ squirrly-seo
|
730 |
-
#: core/Blocklogin.php:
|
731 |
msgid "You can use this account only for the URL you registered first!"
|
732 |
msgstr ""
|
733 |
"Dieses Konto können Sie nur für die URL benutzen, die Sie zuerst registriert "
|
734 |
"haben!"
|
735 |
|
736 |
# @ squirrly-seo
|
737 |
-
#: core/Blocklogin.php:
|
738 |
msgid "An error occured."
|
739 |
msgstr "Ein Fehler ist aufgetreten."
|
740 |
|
741 |
# @ squirrly-seo
|
742 |
-
#: core/Blocklogin.php:
|
743 |
msgid "Both fields are required."
|
744 |
msgstr "Beide Felder sind Pflichtfelder."
|
745 |
|
@@ -747,123 +747,114 @@ msgstr "Beide Felder sind Pflichtfelder."
|
|
747 |
msgid "snippet"
|
748 |
msgstr ""
|
749 |
|
750 |
-
|
751 |
-
#: core/Loading.php:21
|
752 |
-
msgid ""
|
753 |
-
"For Squirrly to work properly you have to use a higher version of Internet "
|
754 |
-
"Explorer. <br /> We recommend you to use Chrome or Mozilla."
|
755 |
-
msgstr ""
|
756 |
-
"Damit Squirrly ordnungsgemäß funktioniert, müssen Sie eine höhere Version "
|
757 |
-
"von Internet Explorer verwenden. <br /> Wir empfehlen, Chrome oder Mozilla."
|
758 |
-
|
759 |
-
#: core/Loading.php:47
|
760 |
msgid "Recent discussions:"
|
761 |
msgstr "Bisherige Diskussionen:"
|
762 |
|
763 |
-
#: core/Loading.php:
|
764 |
msgid "SEO Search Volume:"
|
765 |
msgstr ""
|
766 |
|
767 |
# @ squirrly-seo
|
768 |
-
#: core/Loading.php:
|
769 |
msgid "Competition:"
|
770 |
msgstr "Wettbewerb:"
|
771 |
|
772 |
# @ squirrly-seo
|
773 |
-
#: core/Loading.php:
|
774 |
msgid "Trend:"
|
775 |
msgstr "Trend:"
|
776 |
|
777 |
# @ squirrly-seo
|
778 |
-
#: core/Loading.php:
|
779 |
msgid "Keyword:"
|
780 |
msgstr "Schlüsselwort:"
|
781 |
|
782 |
# @ squirrly-seo
|
783 |
-
#: core/Loading.php:
|
784 |
msgid "date"
|
785 |
msgstr "Datum"
|
786 |
|
787 |
# @ squirrly-seo
|
788 |
-
#: core/Loading.php:
|
789 |
msgid "Read it!"
|
790 |
msgstr "Lesen!"
|
791 |
|
792 |
# @ squirrly-seo
|
793 |
-
#: core/Loading.php:
|
794 |
msgid "Insert it!"
|
795 |
msgstr "Einfügen!"
|
796 |
|
797 |
# @ squirrly-seo
|
798 |
-
#: core/Loading.php:
|
799 |
msgid "Reference"
|
800 |
msgstr "Referenz"
|
801 |
|
802 |
# @ squirrly-seo
|
803 |
-
#: core/Loading.php:
|
804 |
msgid "Insert as box"
|
805 |
msgstr "Als Box einfügen"
|
806 |
|
807 |
-
#: core/Loading.php:
|
808 |
msgid "Insert Link"
|
809 |
msgstr ""
|
810 |
|
811 |
# @ squirrly-seo
|
812 |
-
#: core/Loading.php:
|
813 |
msgid "Not relevant?"
|
814 |
msgstr "Nicht relevant?"
|
815 |
|
816 |
# @ squirrly-seo
|
817 |
-
#: core/Loading.php:
|
818 |
msgid "Insert in your article"
|
819 |
msgstr "In Artikel einfügen"
|
820 |
|
821 |
-
#: core/Loading.php:
|
822 |
msgid ":( An error occurred while processing your request. Please try again"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: core/Loading.php:
|
826 |
msgid "Keyword Research takes too long to get the results. Click to try again"
|
827 |
msgstr ""
|
828 |
|
829 |
# @ squirrly-seo
|
830 |
-
#: core/Loading.php:
|
831 |
msgid "No results found!"
|
832 |
msgstr "Keine Ergebnisse gefunden!"
|
833 |
|
834 |
-
#: core/Loading.php:
|
835 |
msgid "Enter one more word to find relevant results"
|
836 |
msgstr ""
|
837 |
|
838 |
# @ squirrly-seo
|
839 |
-
#: core/Loading.php:
|
840 |
msgid "Takes too long to check this keyword ..."
|
841 |
msgstr "Dauert zu lange, um dieses Schlüsselwort zu überprüfen ..."
|
842 |
|
843 |
# @ squirrly-seo
|
844 |
-
#: core/Loading.php:
|
845 |
msgid "Do a research!"
|
846 |
msgstr "Erweiterte Suche!"
|
847 |
|
848 |
# @ squirrly-seo
|
849 |
-
#: core/Loading.php:
|
850 |
msgid "Do more research!"
|
851 |
msgstr "Erweiterte Suche!"
|
852 |
|
853 |
-
#: core/Loading.php:
|
854 |
#, php-format
|
855 |
msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: core/Loading.php:
|
859 |
msgid "Has creative commons attributes"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: core/Loading.php:
|
863 |
msgid "No known copyright restrictions"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: core/Loading.php:
|
867 |
msgid ""
|
868 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
869 |
"optimize for a keyword before publishing?"
|
@@ -871,87 +862,91 @@ msgstr ""
|
|
871 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
872 |
"optimize for a keyword before publishing?"
|
873 |
|
874 |
-
#: core/Loading.php:
|
875 |
msgid "Keyword Research limit exceeded"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: core/Loading.php:
|
879 |
msgid "Your Subscription has Expired"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: core/Loading.php:
|
883 |
msgid "There are no keywords saved in briefcase yet"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: core/Loading.php:
|
887 |
#, php-format
|
888 |
msgid "Congratulations! Your article is 100% optimized!"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: core/Loading.php:
|
892 |
#, php-format
|
893 |
msgid "appears too many times. Try to remove %s of them"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: core/Loading.php:
|
897 |
#, php-format
|
898 |
msgid "write %s more words"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: core/Loading.php:
|
902 |
#, php-format
|
903 |
msgid "Add the keyword in the %s of your article"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: core/Loading.php:
|
907 |
msgid "Click to keep the highlight on"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: core/Loading.php:
|
911 |
msgid "introduction"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: core/Loading.php:
|
915 |
#, php-format
|
916 |
msgid "Write more words after the %s keyword"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: core/Loading.php:
|
920 |
msgid "or use synonyms"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: core/Loading.php:
|
924 |
#, php-format
|
925 |
msgid "add %s more word(s)"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: core/Loading.php:
|
929 |
#, php-format
|
930 |
msgid "or remove %s word(s)"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: core/Loading.php:
|
934 |
#, php-format
|
935 |
msgid "add %s more keyword(s)"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: core/Loading.php:
|
939 |
#, php-format
|
940 |
msgid "write %s more words to start calculating"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: core/Loading.php:
|
944 |
msgid "Add to Briefcase"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: core/Loading.php:
|
948 |
msgid "Add Keyword to Briefcase"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: core/Loading.php:
|
952 |
msgid "Use Keyword"
|
953 |
msgstr ""
|
954 |
|
|
|
|
|
|
|
|
|
955 |
#: models/BlockPostsAnalytics.php:290
|
956 |
msgctxt "column name"
|
957 |
msgid "Title"
|
@@ -1138,64 +1133,64 @@ msgid "The favicon has been updated."
|
|
1138 |
msgstr "Das Favicon wurde aktualisiert."
|
1139 |
|
1140 |
# @ default
|
1141 |
-
#: models/Post.php:
|
1142 |
msgid "Squirrly could not find any results for: "
|
1143 |
msgstr "Squirly hat keine Suchergebnisse gefunden für:"
|
1144 |
|
1145 |
-
#: models/Post.php:
|
1146 |
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: models/Post.php:
|
1150 |
msgid ""
|
1151 |
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
1152 |
"the HTML form."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: models/Post.php:
|
1156 |
msgid "The uploaded file was only partially uploaded."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: models/Post.php:
|
1160 |
msgid "No file was uploaded."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: models/Post.php:
|
1164 |
msgid "Missing a temporary folder."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: models/Post.php:
|
1168 |
msgid "Failed to write file to disk."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: models/Post.php:
|
1172 |
msgid "File upload stopped by extension."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: models/Post.php:
|
1176 |
msgid "Invalid form submission."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: models/Post.php:
|
1180 |
msgid "File is empty. Please upload something more substantial."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: models/Post.php:
|
1184 |
msgid ""
|
1185 |
"File is empty. Please upload something more substantial. This error could "
|
1186 |
"also be caused by uploads being disabled in your php.ini or by post_max_size "
|
1187 |
"being defined as smaller than upload_max_filesize in php.ini."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: models/Post.php:
|
1191 |
msgid "Specified file failed upload test."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: models/Post.php:
|
1195 |
msgid "Sorry, this file type is not permitted for security reasons."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: models/Post.php:
|
1199 |
#, php-format
|
1200 |
msgid "The uploaded file could not be moved to %s."
|
1201 |
msgstr ""
|
@@ -1232,13 +1227,13 @@ msgstr ""
|
|
1232 |
msgid "The total number of inbound links to this post"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: models/SerpCheckerTable.php:353 view/BlockPatterns.php:
|
1236 |
#: view/FrontMenu.php:156
|
1237 |
msgid "Title"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: models/SerpCheckerTable.php:356 view/BlockBriefcaseKeywords.php:
|
1241 |
-
#: view/BlockBriefcaseKeywords.php:
|
1242 |
#: view/BlockSerpKeywords.php:63
|
1243 |
msgid "Keyword"
|
1244 |
msgstr ""
|
@@ -1251,7 +1246,7 @@ msgstr ""
|
|
1251 |
msgid "Post Date"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: models/SerpCheckerTable.php:399 view/BlockBriefcaseKeywords.php:
|
1255 |
msgid "Search Keyword"
|
1256 |
msgstr ""
|
1257 |
|
@@ -1269,14 +1264,6 @@ msgstr ""
|
|
1269 |
msgid "Twitter"
|
1270 |
msgstr "Twitter"
|
1271 |
|
1272 |
-
#: models/SerpCheckerTable.php:634
|
1273 |
-
msgid "Google+"
|
1274 |
-
msgstr ""
|
1275 |
-
|
1276 |
-
#: models/SerpCheckerTable.php:635
|
1277 |
-
msgid "LinkedIn"
|
1278 |
-
msgstr ""
|
1279 |
-
|
1280 |
#: models/SerpCheckerTable.php:636
|
1281 |
msgid "Reddit"
|
1282 |
msgstr ""
|
@@ -1302,11 +1289,11 @@ msgstr ""
|
|
1302 |
msgid "Not indexed"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: models/domain/Patterns.php:
|
1306 |
msgid "Page"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: models/domain/Patterns.php:
|
1310 |
msgid "of"
|
1311 |
msgstr ""
|
1312 |
|
@@ -1332,18 +1319,19 @@ msgstr ""
|
|
1332 |
"sein"
|
1333 |
|
1334 |
#: view/BlockAccount.php:7 view/BlockAffiliate.php:7 view/BlockAudit.php:7
|
1335 |
-
#: view/
|
1336 |
-
#: view/
|
1337 |
-
#: view/
|
1338 |
-
#: view/BlockSettingsSeo.php:7 view/SerpChecker.php:7
|
1339 |
msgid "Connect to Squirrly Data Cloud"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
#: view/BlockAccount.php:13 view/BlockAffiliate.php:13 view/BlockAudit.php:13
|
1343 |
-
#: view/
|
1344 |
-
#: view/
|
1345 |
-
#: view/
|
1346 |
-
#: view/
|
|
|
1347 |
msgid "START HERE"
|
1348 |
msgstr ""
|
1349 |
|
@@ -1455,60 +1443,48 @@ msgid "Facebook shares"
|
|
1455 |
msgstr ""
|
1456 |
|
1457 |
#: view/BlockAnalytics.php:114
|
1458 |
-
msgid "Facebook likes"
|
1459 |
-
msgstr ""
|
1460 |
-
|
1461 |
-
#: view/BlockAnalytics.php:119
|
1462 |
msgid "Twitter shares"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: view/BlockAnalytics.php:
|
1466 |
-
msgid "Google+ shares"
|
1467 |
-
msgstr ""
|
1468 |
-
|
1469 |
-
#: view/BlockAnalytics.php:129
|
1470 |
-
msgid "LinkedIn Shares"
|
1471 |
-
msgstr ""
|
1472 |
-
|
1473 |
-
#: view/BlockAnalytics.php:134
|
1474 |
msgid "StumbleUpon shares"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: view/BlockAnalytics.php:
|
1478 |
msgid "Reddit shares"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: view/BlockAnalytics.php:
|
1482 |
msgid "Pinterest shares"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: view/BlockAnalytics.php:
|
1486 |
msgid "Nicely done! Now you can focus on the other tasks"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: view/BlockAnalytics.php:
|
1490 |
msgid ""
|
1491 |
"I know you can improve this. Please follow the documentation for a quicker "
|
1492 |
"progress"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: view/BlockAnalytics.php:
|
1496 |
msgid "Visits"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: view/BlockAnalytics.php:
|
1500 |
msgid "Current: "
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: view/BlockAnalytics.php:
|
1504 |
msgid "Lowest: "
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: view/BlockAnalytics.php:
|
1508 |
msgid "Highest: "
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: view/BlockAnalytics.php:
|
1512 |
msgid "last 30 days"
|
1513 |
msgstr ""
|
1514 |
|
@@ -1583,133 +1559,151 @@ msgstr ""
|
|
1583 |
msgid "This is an example of a Site Audit"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: view/BlockBriefcaseKeywords.php:
|
1587 |
msgid "Show All"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: view/BlockBriefcaseKeywords.php:
|
1591 |
msgid "Briefcase Keywords"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: view/BlockBriefcaseKeywords.php:
|
1595 |
msgid "See the Google Ranks for these Keywords"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: view/BlockBriefcaseKeywords.php:
|
1599 |
msgid "Go to Analytics"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: view/BlockBriefcaseKeywords.php:
|
1603 |
msgid "Filter by labels"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: view/BlockBriefcaseKeywords.php:
|
1607 |
msgid "Add new keyword"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: view/BlockBriefcaseKeywords.php:
|
1611 |
msgid "Manage Labels"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: view/BlockBriefcaseKeywords.php:
|
1615 |
msgid "Add a new Keyword"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: view/BlockBriefcaseKeywords.php:
|
1619 |
msgid "Enter a Keyword (2-4 words)"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: view/BlockBriefcaseKeywords.php:
|
1623 |
msgid "Select Labels"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: view/BlockBriefcaseKeywords.php:
|
1627 |
msgid "Add new Label"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: view/BlockBriefcaseKeywords.php:
|
1631 |
msgid "Add Keyword"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: view/BlockBriefcaseKeywords.php:
|
1635 |
msgid "Add New Label"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: view/BlockBriefcaseKeywords.php:
|
1639 |
msgid "Label Name"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: view/BlockBriefcaseKeywords.php:
|
1643 |
msgid "Label Color"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: view/BlockBriefcaseKeywords.php:
|
1647 |
msgid "Add Label"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: view/BlockBriefcaseKeywords.php:
|
1651 |
msgid "Your Labels"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: view/BlockBriefcaseKeywords.php:
|
1655 |
msgid "Edit Label"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: view/BlockBriefcaseKeywords.php:
|
1659 |
msgid "Save Label"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: view/BlockBriefcaseKeywords.php:
|
1663 |
msgid "Used"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: view/BlockBriefcaseKeywords.php:
|
1667 |
msgid "Data"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: view/BlockBriefcaseKeywords.php:
|
1671 |
msgid "Assign Labels to this Keyword"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: view/BlockBriefcaseKeywords.php:
|
1675 |
#, php-format
|
1676 |
msgid "Select Labels for: %s"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: view/BlockBriefcaseKeywords.php:
|
1680 |
msgid "Save Labels"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: view/BlockBriefcaseKeywords.php:
|
1684 |
msgid "Competition"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: view/BlockBriefcaseKeywords.php:
|
1688 |
-
#: view/BlockBriefcaseKeywords.php:
|
1689 |
msgid "-"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: view/BlockBriefcaseKeywords.php:
|
1693 |
msgid "SEO Search Volume"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: view/BlockBriefcaseKeywords.php:
|
1697 |
msgid "Recent discussions"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: view/BlockBriefcaseKeywords.php:
|
1701 |
msgid "Trending"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
# @ squirrly-seo
|
1705 |
-
#: view/BlockBriefcaseKeywords.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1706 |
msgid "Do a research"
|
1707 |
msgstr "Recherchieren"
|
1708 |
|
1709 |
-
#: view/BlockBriefcaseKeywords.php:
|
1710 |
msgid "Delete"
|
1711 |
msgstr ""
|
1712 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1713 |
#: view/BlockCopyright.php:9
|
1714 |
msgid "Squirrly Copywriting Options"
|
1715 |
msgstr ""
|
@@ -1818,25 +1812,33 @@ msgid "%sEmail Support%s >> 8 AM to 4 PM (London Time): Mon-Fri.."
|
|
1818 |
msgstr ""
|
1819 |
|
1820 |
# @ squirrly-seo
|
1821 |
-
#: view/BlockCustomerService.php:25 view/BlockSupport.php:
|
1822 |
msgid "Need Help with Squirrly SEO?"
|
1823 |
msgstr "Brauchen Sie Hilfe mit Squirrly SEO?"
|
1824 |
|
|
|
|
|
|
|
|
|
1825 |
# @ squirrly-seo
|
1826 |
-
#: view/BlockCustomerService.php:
|
1827 |
msgid "Send Question"
|
1828 |
msgstr "Senden Sie Ihre Frage"
|
1829 |
|
|
|
|
|
|
|
|
|
|
|
1830 |
#: view/BlockDashboard.php:11
|
1831 |
msgid "Restore Squirrly Settings"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: view/BlockDashboard.php:16 view/BlockImport.php:
|
1835 |
msgid "Upload the file with the saved Squirrly Settings"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: view/BlockDashboard.php:21 view/BlockImport.php:
|
1839 |
-
#: view/BlockImport.php:137
|
1840 |
msgid "Restore Backup"
|
1841 |
msgstr ""
|
1842 |
|
@@ -1848,18 +1850,18 @@ msgstr ""
|
|
1848 |
msgid "Squirrly dashboard"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: view/BlockDashboard.php:
|
1852 |
#, php-format
|
1853 |
msgid ""
|
1854 |
"%sHelp Center%s - learn more about Squirrly SEO features and unhinge your "
|
1855 |
"SEO potential"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: view/BlockDashboard.php:
|
1859 |
msgid "Next Feature"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: view/BlockDashboard.php:
|
1863 |
msgid "Previous Feature"
|
1864 |
msgstr ""
|
1865 |
|
@@ -1867,95 +1869,99 @@ msgstr ""
|
|
1867 |
msgid "SEO Patterns"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: view/BlockImport.php:
|
1871 |
msgid "Import SEO settings from other SEO plugins or themes"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: view/BlockImport.php:
|
1875 |
msgid ""
|
1876 |
"If you were already using an SEO plugin, then you can import all the SEO "
|
1877 |
"settings in Squirrly. Just follow the steps presented on the right side."
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: view/BlockImport.php:
|
1881 |
msgid "Select the plugin or theme you want to import the Settings from."
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: view/BlockImport.php:
|
1885 |
msgid "Import Settings"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: view/BlockImport.php:
|
1889 |
msgid "We couldn't find any SEO plugin or theme to import from."
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: view/BlockImport.php:
|
1893 |
msgid "Select the plugin or theme you want to import the SEO settings from."
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: view/BlockImport.php:
|
|
|
|
|
|
|
|
|
1897 |
msgid ""
|
1898 |
"Note! If you import the SEO settings from other plugins or themes, you will "
|
1899 |
"lose all the settings that you had in Squirrly SEO. Make sure you backup "
|
1900 |
"your settings from the panel below before you do this. "
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: view/BlockImport.php:
|
1904 |
msgid "Backup & Restore Squirrly SEO Settings"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: view/BlockImport.php:
|
1908 |
msgid ""
|
1909 |
"You can now download your Squirrly settings in an sql file before you go "
|
1910 |
"ahead and import the SEO settings from another plugin. That way, you can "
|
1911 |
"always go back to your Squirrly settings. "
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: view/BlockImport.php:
|
1915 |
msgid "Backup & Restore Squirrly Settings"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: view/BlockImport.php:
|
1919 |
msgid "Backup Settings"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: view/BlockImport.php:
|
1923 |
msgid "Restore Settings"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: view/BlockImport.php:
|
1927 |
msgid "Are you sure you want to restore your settings?"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: view/BlockImport.php:
|
1931 |
msgid "Backup & Restore all the pages optimized with Squirrly SEO"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: view/BlockImport.php:
|
1935 |
msgid "Backup SEO"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: view/BlockImport.php:
|
1939 |
msgid "Restore SEO"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: view/BlockImport.php:
|
1943 |
msgid "Upload the file with the saved Squirrly SEO SQL file"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: view/BlockImport.php:
|
1947 |
msgid "Click to reset all the saved setting to default."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: view/BlockImport.php:
|
1951 |
msgid "Are you sure you want to remove all the saved settings?"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: view/BlockImport.php:
|
1955 |
msgid "Reset Settings"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: view/BlockImport.php:
|
1959 |
msgid ""
|
1960 |
"Note! Make sure you backup your data first in case you change your mind."
|
1961 |
msgstr ""
|
@@ -1986,57 +1992,59 @@ msgstr ""
|
|
1986 |
msgid "Use Squirrly Live Assistant"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: view/BlockPatterns.php:
|
1990 |
msgid "Use Squirrly Patterns"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
# @ squirrly-seo
|
1994 |
-
#: view/BlockPatterns.php:
|
1995 |
-
#: view/BlockPatterns.php:
|
1996 |
-
#: view/BlockSettings.php:
|
1997 |
-
#: view/BlockSettings.php:
|
1998 |
-
#: view/BlockSettings.php:
|
1999 |
-
#: view/BlockSettings.php:
|
2000 |
-
#: view/BlockSettingsSeo.php:
|
2001 |
-
#: view/BlockSettingsSeo.php:
|
2002 |
-
#: view/BlockSettingsSeo.php:
|
2003 |
-
#: view/BlockSettingsSeo.php:
|
2004 |
-
#: view/BlockSettingsSeo.php:
|
2005 |
-
#: view/BlockSettingsSeo.php:
|
2006 |
-
#: view/BlockSettingsSeo.php:
|
2007 |
-
#: view/BlockSettingsSeo.php:
|
2008 |
-
#: view/BlockSettingsSeo.php:
|
|
|
2009 |
#: view/FrontMenu.php:543 view/FrontMenu.php:556
|
2010 |
msgid "Yes"
|
2011 |
msgstr "Ja"
|
2012 |
|
2013 |
# @ squirrly-seo
|
2014 |
-
#: view/BlockPatterns.php:
|
2015 |
-
#: view/BlockPatterns.php:
|
2016 |
-
#: view/BlockSettings.php:
|
2017 |
-
#: view/BlockSettings.php:
|
2018 |
-
#: view/BlockSettings.php:
|
2019 |
-
#: view/BlockSettings.php:
|
2020 |
-
#: view/BlockSettingsSeo.php:
|
2021 |
-
#: view/BlockSettingsSeo.php:
|
2022 |
-
#: view/BlockSettingsSeo.php:
|
2023 |
-
#: view/BlockSettingsSeo.php:
|
2024 |
-
#: view/BlockSettingsSeo.php:
|
2025 |
-
#: view/BlockSettingsSeo.php:
|
2026 |
-
#: view/BlockSettingsSeo.php:
|
2027 |
-
#: view/BlockSettingsSeo.php:
|
2028 |
-
#: view/BlockSettingsSeo.php:
|
|
|
2029 |
#: view/FrontMenu.php:545 view/FrontMenu.php:558
|
2030 |
msgid "No"
|
2031 |
msgstr "Nein"
|
2032 |
|
2033 |
-
#: view/BlockPatterns.php:
|
2034 |
msgid ""
|
2035 |
"Control how post types are displayed on your site and within search engine "
|
2036 |
"results and social media feeds."
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: view/BlockPatterns.php:
|
2040 |
msgid ""
|
2041 |
"In Squirrly, each post type in your site comes with a predefined posting "
|
2042 |
"pattern when displayed onto your website. However, based on your site's "
|
@@ -2044,13 +2052,13 @@ msgid ""
|
|
2044 |
"include."
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: view/BlockPatterns.php:
|
2048 |
msgid ""
|
2049 |
"Once you set up a pattern for a particular post type, only the content "
|
2050 |
"required by your custom sequence will be displayed."
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: view/BlockPatterns.php:
|
2054 |
#, php-format
|
2055 |
msgid ""
|
2056 |
"Squirrly lets you see how the customized patterns will apply when posts/"
|
@@ -2060,57 +2068,57 @@ msgid ""
|
|
2060 |
"information."
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: view/BlockPatterns.php:
|
2064 |
msgid "Set the custom patterns for each post type"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: view/BlockPatterns.php:
|
2068 |
msgid "+ Add Post Type"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: view/BlockPatterns.php:
|
2072 |
msgid "Add a post type from your Wordpress website"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: view/BlockPatterns.php:
|
2076 |
msgid "Add Post Type"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: view/BlockPatterns.php:
|
2080 |
msgid "Add"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: view/BlockPatterns.php:
|
2084 |
#, php-format
|
2085 |
msgid "Are you sure you want to remove the post type: %s"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: view/BlockPatterns.php:
|
2089 |
msgid "Remove Post Type"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: view/BlockPatterns.php:
|
2093 |
msgid "Description"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: view/BlockPatterns.php:
|
2097 |
msgid "Separator"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: view/BlockPatterns.php:
|
2101 |
msgid "Let Google Index it"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: view/BlockPatterns.php:
|
2105 |
msgid "Pass Link Juice"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: view/BlockPatterns.php:
|
2109 |
msgid "Do SEO"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: view/BlockPatterns.php:
|
2113 |
-
#: view/BlockSettingsSeo.php:
|
2114 |
msgid "Save SEO"
|
2115 |
msgstr ""
|
2116 |
|
@@ -2144,7 +2152,7 @@ msgid ""
|
|
2144 |
"Rank Option%s. "
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: view/BlockPostsAnalytics.php:
|
2148 |
msgid ""
|
2149 |
"Don't see all your pages here? Make sure you optimize them with Squirrly, so "
|
2150 |
"that we can track them, and display you the analytics"
|
@@ -2191,632 +2199,651 @@ msgid "Remove Local Ranks"
|
|
2191 |
msgstr ""
|
2192 |
|
2193 |
# @ squirrly-seo
|
2194 |
-
#: view/BlockSettings.php:24 view/BlockSettings.php:
|
2195 |
msgid "Save settings"
|
2196 |
msgstr "Einstellungen speichern"
|
2197 |
|
2198 |
-
#: view/BlockSettings.php:
|
2199 |
msgid "Post/Page Edit"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: view/BlockSettings.php:
|
2203 |
#, php-format
|
2204 |
msgid "%sThe right method in working with Squirrly, SEO plugin%s"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: view/BlockSettings.php:
|
2208 |
#, php-format
|
2209 |
msgid "%sGetting inspired with Squirrly WordPress SEO plugin%s"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: view/BlockSettings.php:
|
2213 |
#, php-format
|
2214 |
msgid "%sThere is a New SEO Live Assistant from Squirrly%s"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: view/BlockSettings.php:
|
2218 |
#, php-format
|
2219 |
msgid "%sHow to create Human friendly content with the WordPress SEO plugin?%s"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: view/BlockSettings.php:
|
2223 |
msgid "Inspiration Box G17"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: view/BlockSettings.php:
|
2227 |
-
#: view/BlockSettings.php:
|
2228 |
-
#: view/BlockSettings.php:
|
2229 |
-
#: view/BlockSettingsSeo.php:
|
2230 |
-
#: view/BlockSettingsSeo.php:
|
2231 |
-
#: view/BlockSettingsSeo.php:
|
2232 |
-
#: view/BlockSettingsSeo.php:
|
2233 |
msgid "see how this improved since 2016"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: view/BlockSettings.php:
|
2237 |
msgid "Keyword Research G17"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: view/BlockSettings.php:
|
2241 |
msgid "Inner Links G17"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: view/BlockSettings.php:
|
2245 |
msgid "Load Squirrly Live Assistant for"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: view/BlockSettings.php:
|
2249 |
-
#: view/BlockSettingsSeo.php:
|
2250 |
msgid "Posts"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: view/BlockSettings.php:
|
2254 |
-
#: view/BlockSettingsSeo.php:
|
2255 |
msgid "Pages"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: view/BlockSettings.php:
|
2259 |
-
#: view/BlockSettingsSeo.php:
|
2260 |
msgid "Products"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: view/BlockSettings.php:
|
2264 |
msgid ""
|
2265 |
"Show <strong>Squirrly Tooltips</strong> when posting a new article (e.g. "
|
2266 |
"\"Enter a keyword\")."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: view/BlockSettings.php:
|
2270 |
msgid ""
|
2271 |
"Always show <strong>Keyword Research</strong> about the selected keyword."
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: view/BlockSettings.php:
|
2275 |
msgid ""
|
2276 |
"Send optimization data to Squirrly Cloud when the post is saved (don't use "
|
2277 |
"cron)"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: view/BlockSettings.php:
|
2281 |
msgid "Use <strong> the NEW version of the SEO Live Assistant</strong>."
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: view/BlockSettings.php:
|
2285 |
msgid ""
|
2286 |
"Download <strong>remote images</strong> in your <strong>Media Library</"
|
2287 |
"strong> for the new posts."
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: view/BlockSettings.php:
|
2291 |
msgid ""
|
2292 |
"Correct my <strong>feed links</strong> and <strong>images</strong> (convert "
|
2293 |
"from relative to absolute)."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: view/BlockSettings.php:
|
2297 |
msgid "Google Rank Options"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: view/BlockSettings.php:
|
2301 |
#, php-format
|
2302 |
msgid "%sCountry targeting%s"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: view/BlockSettings.php:
|
2306 |
#, php-format
|
2307 |
msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: view/BlockSettings.php:
|
2311 |
msgid ""
|
2312 |
"Select the Google country for which Squirrly will check the Google rank."
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: view/BlockSettings.php:
|
2316 |
msgid "Default"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: view/BlockSettings.php:
|
2320 |
msgid "American Samoa"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: view/BlockSettings.php:
|
2324 |
msgid "Anguilla"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: view/BlockSettings.php:
|
2328 |
msgid "Antigua and Barbuda"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: view/BlockSettings.php:
|
2332 |
msgid "Argentina"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: view/BlockSettings.php:
|
2336 |
msgid "Australia"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: view/BlockSettings.php:
|
2340 |
msgid "Austria"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: view/BlockSettings.php:
|
2344 |
msgid "Azerbaijan"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: view/BlockSettings.php:
|
2348 |
msgid "Belgium"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: view/BlockSettings.php:
|
2352 |
msgid "Brazil"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: view/BlockSettings.php:
|
2356 |
msgid "British Virgin Islands"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: view/BlockSettings.php:
|
2360 |
msgid "Burundi"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: view/BlockSettings.php:
|
2364 |
msgid "Bulgaria"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: view/BlockSettings.php:
|
2368 |
msgid "Canada"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: view/BlockSettings.php:
|
2372 |
msgid "Chad"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: view/BlockSettings.php:
|
2376 |
msgid "Chile"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: view/BlockSettings.php:
|
2380 |
msgid "Colombia"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: view/BlockSettings.php:
|
2384 |
msgid "Costa Rica"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: view/BlockSettings.php:
|
2388 |
msgid "Côte d'Ivoire"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: view/BlockSettings.php:
|
2392 |
msgid "Cuba"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: view/BlockSettings.php:
|
|
|
|
|
|
|
|
|
2396 |
msgid "Czech Republic"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: view/BlockSettings.php:
|
2400 |
msgid "Dem. Rep. of the Congo"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: view/BlockSettings.php:
|
2404 |
msgid "Denmark"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: view/BlockSettings.php:
|
2408 |
msgid "Djibouti"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: view/BlockSettings.php:
|
2412 |
msgid "Dominican Republic"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: view/BlockSettings.php:
|
2416 |
msgid "Ecuador"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: view/BlockSettings.php:
|
2420 |
msgid "El Salvador"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: view/BlockSettings.php:
|
2424 |
msgid "Estonia"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: view/BlockSettings.php:
|
2428 |
msgid "Federated States of Micronesia"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: view/BlockSettings.php:
|
2432 |
msgid "Fiji"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: view/BlockSettings.php:
|
2436 |
msgid "Finland"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: view/BlockSettings.php:
|
2440 |
msgid "France"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: view/BlockSettings.php:
|
2444 |
msgid "The Gambia"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: view/BlockSettings.php:
|
2448 |
msgid "Georgia"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: view/BlockSettings.php:
|
2452 |
msgid "Germany"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: view/BlockSettings.php:
|
|
|
|
|
|
|
|
|
2456 |
msgid "Gibraltar"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: view/BlockSettings.php:
|
2460 |
msgid "Greece"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: view/BlockSettings.php:
|
2464 |
msgid "Greenland"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: view/BlockSettings.php:
|
2468 |
msgid "Guernsey"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: view/BlockSettings.php:
|
2472 |
msgid "Honduras"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: view/BlockSettings.php:
|
2476 |
msgid "Hong Kong"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: view/BlockSettings.php:
|
2480 |
msgid "Hungary"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#: view/BlockSettings.php:
|
2484 |
msgid "India"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: view/BlockSettings.php:
|
2488 |
msgid "Indonesia"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: view/BlockSettings.php:
|
2492 |
msgid "Ireland"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: view/BlockSettings.php:
|
2496 |
msgid "Isle of Man"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: view/BlockSettings.php:
|
2500 |
msgid "Israel"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: view/BlockSettings.php:
|
2504 |
msgid "Italy"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: view/BlockSettings.php:
|
2508 |
msgid "Jamaica"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: view/BlockSettings.php:
|
2512 |
msgid "Japan"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: view/BlockSettings.php:
|
2516 |
msgid "Jersey"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: view/BlockSettings.php:
|
2520 |
msgid "Kazakhstan"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: view/BlockSettings.php:
|
2524 |
msgid "Korea"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: view/BlockSettings.php:
|
2528 |
msgid "Latvia"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: view/BlockSettings.php:
|
2532 |
msgid "Lesotho"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: view/BlockSettings.php:
|
2536 |
msgid "Liechtenstein"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: view/BlockSettings.php:
|
2540 |
msgid "Lithuania"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: view/BlockSettings.php:
|
2544 |
msgid "Luxembourg"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: view/BlockSettings.php:
|
2548 |
msgid "Malawi"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: view/BlockSettings.php:
|
2552 |
msgid "Malaysia"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: view/BlockSettings.php:
|
2556 |
msgid "Malta"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: view/BlockSettings.php:
|
2560 |
msgid "Mauritius"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: view/BlockSettings.php:
|
2564 |
msgid "México"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: view/BlockSettings.php:
|
2568 |
msgid "Montserrat"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: view/BlockSettings.php:
|
2572 |
msgid "Namibia"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: view/BlockSettings.php:
|
2576 |
msgid "Nepal"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: view/BlockSettings.php:
|
2580 |
msgid "Netherlands"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: view/BlockSettings.php:
|
2584 |
msgid "New Zealand"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: view/BlockSettings.php:
|
2588 |
msgid "Nicaragua"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: view/BlockSettings.php:
|
|
|
|
|
|
|
|
|
2592 |
msgid "Norfolk Island"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: view/BlockSettings.php:
|
2596 |
msgid "Norway"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: view/BlockSettings.php:
|
2600 |
msgid "Pakistan"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: view/BlockSettings.php:
|
2604 |
msgid "Panamá"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: view/BlockSettings.php:
|
2608 |
msgid "Paraguay"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: view/BlockSettings.php:
|
2612 |
msgid "Perú"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#: view/BlockSettings.php:
|
2616 |
msgid "Philippines"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: view/BlockSettings.php:
|
2620 |
msgid "Pitcairn Islands"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: view/BlockSettings.php:
|
2624 |
msgid "Poland"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: view/BlockSettings.php:
|
2628 |
msgid "Portugal"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: view/BlockSettings.php:
|
2632 |
msgid "Puerto Rico"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: view/BlockSettings.php:
|
2636 |
msgid "Rep. of the Congo"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: view/BlockSettings.php:
|
2640 |
msgid "Romania"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#: view/BlockSettings.php:
|
2644 |
msgid "Russia"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#: view/BlockSettings.php:
|
2648 |
msgid "Rwanda"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: view/BlockSettings.php:
|
2652 |
msgid "Saint Helena"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: view/BlockSettings.php:
|
2656 |
msgid "San Marino"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#: view/BlockSettings.php:
|
2660 |
msgid "Saudi Arabia"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#: view/BlockSettings.php:
|
2664 |
msgid "Singapore"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#: view/BlockSettings.php:
|
2668 |
msgid "Slovakia"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#: view/BlockSettings.php:
|
2672 |
msgid "South Africa"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#: view/BlockSettings.php:
|
2676 |
msgid "Spain"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: view/BlockSettings.php:
|
2680 |
msgid "Sri Lanka"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
-
#: view/BlockSettings.php:
|
2684 |
msgid "Sweden"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: view/BlockSettings.php:
|
2688 |
msgid "Switzerland"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
-
#: view/BlockSettings.php:
|
2692 |
msgid "Taiwan"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
-
#: view/BlockSettings.php:
|
2696 |
msgid "Thailand"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
-
#: view/BlockSettings.php:
|
2700 |
msgid "Trinidad and Tobago"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: view/BlockSettings.php:
|
2704 |
msgid "Turkey"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: view/BlockSettings.php:
|
2708 |
msgid "Ukraine"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
-
#: view/BlockSettings.php:
|
2712 |
msgid "United Arab Emirates"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
-
#: view/BlockSettings.php:
|
2716 |
msgid "United Kingdom"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
-
#: view/BlockSettings.php:
|
2720 |
msgid "United States"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
-
#: view/BlockSettings.php:
|
2724 |
msgid "Uruguay"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: view/BlockSettings.php:
|
2728 |
msgid "Uzbekistan"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: view/BlockSettings.php:
|
2732 |
msgid "Vanuatu"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: view/BlockSettings.php:
|
2736 |
msgid "Venezuela"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
-
#: view/BlockSettings.php:
|
2740 |
msgid "Vietnam"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: view/BlockSettings.php:
|
2744 |
#, php-format
|
2745 |
msgid ""
|
2746 |
"Select how many pages to be checked in the Performance Analytics section "
|
2747 |
"every hour. %s(not recommended for shared hosting plan)%s"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: view/BlockSettings.php:
|
2751 |
msgid "page"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: view/BlockSettings.php:
|
2755 |
msgid "pages"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: view/BlockSettings.php:
|
2759 |
msgid "h"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: view/BlockSettings.php:
|
2763 |
msgid ""
|
2764 |
"Restricts search results to results originating in the above particular "
|
2765 |
"country."
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: view/BlockSettings.php:
|
2769 |
#, php-format
|
2770 |
msgid ""
|
2771 |
"You have the %sBusiness Plan%s active. Rankings are now checked by Squirrly "
|
2772 |
"Cloud and will be shown in %sAdvanced Analytics%s"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#: view/BlockSettings.php:
|
2776 |
msgid "Select how many rank queries you want Squirrly to do every day. "
|
2777 |
msgstr ""
|
2778 |
|
2779 |
-
#: view/BlockSettings.php:
|
2780 |
-
#: view/BlockSettings.php:
|
2781 |
msgid "queries"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
-
#: view/BlockSettings.php:
|
2785 |
-
#: view/BlockSettings.php:
|
2786 |
msgid "day"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
#: view/BlockSettings.php:
|
2790 |
msgid ""
|
2791 |
"Note: if you're on the free trial, you get 35 queries for the 7 days of "
|
2792 |
"trial."
|
2793 |
msgstr ""
|
2794 |
|
2795 |
-
#: view/BlockSettings.php:
|
2796 |
msgid "Robots.txt Editor"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: view/BlockSettings.php:
|
2800 |
#, php-format
|
2801 |
msgid "%sLearn about robots.txt files%s"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: view/BlockSettings.php:
|
2805 |
#, php-format
|
2806 |
msgid "%sHow to use Robots.txt%s"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2810 |
msgid "Edit the Robots.txt data"
|
2811 |
msgstr ""
|
2812 |
|
2813 |
-
#: view/BlockSettings.php:
|
2814 |
msgid ""
|
2815 |
"Does not physically create the robots.txt file. The best option for "
|
2816 |
"Multisites."
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: view/BlockSettings.php:
|
2820 |
msgid "Save Robots"
|
2821 |
msgstr ""
|
2822 |
|
@@ -2824,433 +2851,449 @@ msgstr ""
|
|
2824 |
msgid "SEO"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: view/BlockSettingsSeo.php:31 view/BlockSettingsSeo.php:
|
2828 |
msgid "Check for SEO issues in your site"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: view/BlockSettingsSeo.php:
|
2832 |
msgid "Let Squirrly SEO Optimize This Blog"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: view/BlockSettingsSeo.php:
|
2836 |
#, php-format
|
2837 |
msgid "%sIs Squirrly SEO better than WordPress SEO by Yoast?%s"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: view/BlockSettingsSeo.php:
|
2841 |
msgid ""
|
2842 |
"Activate the built-in SEO settings from Squirrly by switching Yes below. "
|
2843 |
"<strong>Works well with Multisites and Ecommerce.</strong>"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: view/BlockSettingsSeo.php:
|
2847 |
msgid "New SEO Settings For Google 2017"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: view/BlockSettingsSeo.php:
|
2851 |
msgid "Fastest SEO Plugin in 2017"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
# @ squirrly-seo
|
2855 |
-
#: view/BlockSettingsSeo.php:
|
2856 |
msgid "What does Squirrly automatically do for SEO?"
|
2857 |
msgstr "Was tut Squirrly automatisch für SEO?"
|
2858 |
|
2859 |
-
#: view/BlockSettingsSeo.php:
|
2860 |
#, php-format
|
2861 |
msgid ""
|
2862 |
"adds <strong>%scanonical link%s</strong>, <strong>%srel=\"prev\" and rel="
|
2863 |
"\"next\"%s</strong> metas in Header"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: view/BlockSettingsSeo.php:
|
2867 |
msgid "adds the required METAs (<strong>Dublin Core, Language</strong>, etc.)"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: view/BlockSettingsSeo.php:
|
2871 |
#, php-format
|
2872 |
msgid "adds the <strong>%sXML Sitemap%s</strong> for search engines: %s"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: view/BlockSettingsSeo.php:
|
2876 |
#, php-format
|
2877 |
msgid "adds <strong>Feed style</strong> to your blog feed (eg. %s/feed)"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: view/BlockSettingsSeo.php:
|
2881 |
#, php-format
|
2882 |
msgid ""
|
2883 |
"adds the <strong>%sfavicon.ico%s</strong> and the <strong>%sicons for "
|
2884 |
"tablets and smartphones%s</strong>"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: view/BlockSettingsSeo.php:
|
2888 |
#, php-format
|
2889 |
msgid "adds the <strong>%sJson-LD%s</strong> metas for Semantic SEO"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
-
#: view/BlockSettingsSeo.php:
|
2893 |
#, php-format
|
2894 |
msgid ""
|
2895 |
"adds the <strong>%sNoindex%s</strong>, <strong>%sNofollow%s</strong> metas "
|
2896 |
"for your desired pages"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: view/BlockSettingsSeo.php:
|
2900 |
msgid ""
|
2901 |
"Note! By switching the <strong>Json-LD</strong>, <strong>XML Sitemap</"
|
2902 |
"strong> and <strong>Favicon</strong> on, you open new options below"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
-
#: view/BlockSettingsSeo.php:
|
2906 |
msgid "First Page Optimization"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: view/BlockSettingsSeo.php:
|
2910 |
#, php-format
|
2911 |
msgid "%sThe best SEO approach to Meta information%s"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: view/BlockSettingsSeo.php:
|
2915 |
msgid "Optimize the <strong>Titles</strong>"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: view/BlockSettingsSeo.php:
|
2919 |
#, php-format
|
2920 |
msgid "Optimize %sDescriptions%s "
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: view/BlockSettingsSeo.php:
|
2924 |
#, php-format
|
2925 |
msgid "Optimize %sKeywords%s "
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: view/BlockSettingsSeo.php:
|
2929 |
msgid "Squirrly Snippet G17-True Render"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: view/BlockSettingsSeo.php:
|
2933 |
msgid "First Page Optimization:"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
# @ squirrly-seo
|
2937 |
-
#: view/BlockSettingsSeo.php:
|
2938 |
msgid "Title:"
|
2939 |
msgstr "Titel:"
|
2940 |
|
2941 |
-
#: view/BlockSettingsSeo.php:
|
2942 |
msgid "Tips: Length 10-75 chars"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
# @ squirrly-seo
|
2946 |
-
#: view/BlockSettingsSeo.php:
|
2947 |
msgid "Description:"
|
2948 |
msgstr "Beschreibung:"
|
2949 |
|
2950 |
-
#: view/BlockSettingsSeo.php:
|
2951 |
msgid "Tips: Length 70-320 chars"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
# @ squirrly-seo
|
2955 |
-
#: view/BlockSettingsSeo.php:
|
2956 |
msgid "Keywords:"
|
2957 |
msgstr "Schlüsselwörter:"
|
2958 |
|
2959 |
-
#: view/BlockSettingsSeo.php:
|
2960 |
msgid "Tips: use 2-4 keywords"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: view/BlockSettingsSeo.php:
|
2964 |
msgid "OG Image:"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#: view/BlockSettingsSeo.php:
|
2968 |
msgid "Select Open Graph Image"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
#: view/BlockSettingsSeo.php:
|
2972 |
msgid "First Page Preview (Title, Description, Keywords)"
|
2973 |
msgstr ""
|
2974 |
|
2975 |
-
#: view/BlockSettingsSeo.php:
|
2976 |
msgid "Squirrly Snippet"
|
2977 |
msgstr ""
|
2978 |
|
2979 |
-
#: view/BlockSettingsSeo.php:
|
2980 |
msgid ""
|
2981 |
"If you don't see any changes in your Google snippet, check if other SEO "
|
2982 |
"themes or plugins affect Squirrly."
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: view/BlockSettingsSeo.php:
|
2986 |
#, php-format
|
2987 |
msgid ""
|
2988 |
"Use the %s<strong>Squirrly Snippet Tool</strong>%s while editing a Post/Page "
|
2989 |
"to customize the Title and the Description."
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: view/BlockSettingsSeo.php:
|
2993 |
msgid "SEO for all post/pages"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#: view/BlockSettingsSeo.php:
|
2997 |
#, php-format
|
2998 |
msgid ""
|
2999 |
"To customize the Title and Description for all the Posts and Pages in your "
|
3000 |
"site use the %sSquirrly Snippet Tool%s"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
-
#: view/BlockSettingsSeo.php:
|
3004 |
msgid "Add the Post tags in <strong>Keyword META</strong>."
|
3005 |
msgstr ""
|
3006 |
|
3007 |
-
#: view/BlockSettingsSeo.php:
|
3008 |
msgid "Exclude Squirrly from loading in these Post Types"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
-
#: view/BlockSettingsSeo.php:
|
3012 |
msgid ""
|
3013 |
"DO NOT CHECK any Post Type if you want Squirrly to load for all posts types. "
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: view/BlockSettingsSeo.php:
|
3017 |
msgid "Load <strong>Squirrly SEO Snippet in Frontend</strong> too."
|
3018 |
msgstr ""
|
3019 |
|
3020 |
-
#: view/BlockSettingsSeo.php:
|
3021 |
msgid "Social Media Options"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
-
#: view/BlockSettingsSeo.php:
|
3025 |
msgid "Select the language you're using on Social Media"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
-
#: view/BlockSettingsSeo.php:
|
3029 |
#, php-format
|
3030 |
msgid "%sHow to pop out in Social Media with your links%s"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: view/BlockSettingsSeo.php:
|
3034 |
#, php-format
|
3035 |
msgid "%sGet busy with Facebook’s new Search Engine functions%s"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: view/BlockSettingsSeo.php:
|
3039 |
#, php-format
|
3040 |
msgid ""
|
3041 |
"%sHow I Added Twitter Cards in My WordPress for Better Inbound Marketing%s"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#: view/BlockSettingsSeo.php:
|
3045 |
msgid "Open Graph G17 - 2017 Settings"
|
3046 |
msgstr ""
|
3047 |
|
3048 |
-
#: view/BlockSettingsSeo.php:
|
3049 |
msgid "Squirrly Adds the Best Codes for Open Graph and Twitter Cards"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
-
#: view/BlockSettingsSeo.php:
|
3053 |
#, php-format
|
3054 |
msgid ""
|
3055 |
"Add the Social Open Graph protocol so that your Facebook shares look good. "
|
3056 |
"%sCheck here%s. "
|
3057 |
msgstr ""
|
3058 |
|
3059 |
-
#: view/BlockSettingsSeo.php:
|
3060 |
msgid "Facebook App ID"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
-
#: view/BlockSettingsSeo.php:
|
3064 |
#, php-format
|
3065 |
msgid "Add the %sFacebook App%s ID "
|
3066 |
msgstr ""
|
3067 |
|
3068 |
-
#: view/BlockSettingsSeo.php:
|
3069 |
msgid "You need to add your <strong>Twitter account</strong> below"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
-
#: view/BlockSettingsSeo.php:
|
3073 |
msgid "Add the <strong>Twitter card</strong> in your tweets. "
|
3074 |
msgstr ""
|
3075 |
|
3076 |
-
#: view/BlockSettingsSeo.php:
|
3077 |
#, php-format
|
3078 |
msgid ""
|
3079 |
"Use <strong>Twitter %ssummary_large_image%s</strong> for your Twitter Card. "
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: view/BlockSettingsSeo.php:
|
3083 |
msgid "Social Media Accounts"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: view/BlockSettingsSeo.php:
|
3087 |
#, php-format
|
3088 |
msgid "%sLink your Google+ profile to the content you create%s"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
-
#: view/BlockSettingsSeo.php:
|
3092 |
#, php-format
|
3093 |
msgid ""
|
3094 |
"%sTwitter account is mandatory for <strong>Twitter Card Validation</strong>%s"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: view/BlockSettingsSeo.php:
|
3098 |
#, php-format
|
3099 |
msgid ""
|
3100 |
"%sAdd all your social accounts for <strong>JSON-LD Semantic SEO</strong>%s"
|
3101 |
msgstr ""
|
3102 |
|
3103 |
-
#: view/BlockSettingsSeo.php:
|
3104 |
#, php-format
|
3105 |
msgid "%sSpecify your social profiles to Google%s"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
-
#: view/BlockSettingsSeo.php:
|
3109 |
msgid "Your Twitter Account:"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: view/BlockSettingsSeo.php:
|
3113 |
msgid "Google Plus Profile:"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: view/BlockSettingsSeo.php:
|
3117 |
msgid "Facebook Profile:"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
-
#: view/BlockSettingsSeo.php:
|
3121 |
msgid "Linkedin Profile:"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
-
#: view/BlockSettingsSeo.php:
|
3125 |
msgid "Pinterest Profile:"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
-
#: view/BlockSettingsSeo.php:
|
3129 |
msgid "Instagram Profile:"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: view/BlockSettingsSeo.php:
|
3133 |
msgid "Youtube Profile:"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: view/BlockSettingsSeo.php:
|
3137 |
msgid "XML Sitemap for Google"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
-
#: view/BlockSettingsSeo.php:
|
3141 |
msgid ""
|
3142 |
"Squirrly Sitemap is the fastest way to tell Google about the pages on your "
|
3143 |
"site. <strong>Supports Multisites, Google News, Images, Videos, Custom Post "
|
3144 |
"Types, Custom Taxonomies and Ecommerce products</strong>"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
-
#: view/BlockSettingsSeo.php:
|
3148 |
#, php-format
|
3149 |
msgid "%sHow to submit your sitemap.xml in Google Webmaster Tool%s"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: view/BlockSettingsSeo.php:
|
3153 |
#, php-format
|
3154 |
msgid ""
|
3155 |
"%s10 Vital To Dos to Feed Your SEO Content Machine After You Post Articles%s"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: view/BlockSettingsSeo.php:
|
3159 |
#, php-format
|
3160 |
msgid ""
|
3161 |
"For Google News Sitemap, ensure that your site is included in %sGoogle News%s"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
-
#: view/BlockSettingsSeo.php:
|
3165 |
msgid "XML Sitemap Options"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
-
#: view/BlockSettingsSeo.php:
|
3169 |
msgid "Ping your sitemap to Google and Bing when a new post is published"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
-
#: view/BlockSettingsSeo.php:
|
|
|
|
|
|
|
|
|
3173 |
msgid "Build Sitemaps for"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: view/BlockSettingsSeo.php:
|
|
|
|
|
|
|
|
|
3177 |
msgid "Google News"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
-
#: view/BlockSettingsSeo.php:
|
|
|
|
|
|
|
|
|
3181 |
msgid "Categories"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
-
#: view/BlockSettingsSeo.php:
|
3185 |
msgid "Tags"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
-
#: view/BlockSettingsSeo.php:
|
3189 |
msgid "Archive"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
-
#: view/BlockSettingsSeo.php:
|
3193 |
msgid "Custom Taxonomies"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#: view/BlockSettingsSeo.php:
|
3197 |
msgid "Custom Posts"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#: view/BlockSettingsSeo.php:
|
3201 |
#, php-format
|
3202 |
msgid ""
|
3203 |
"Select only the Post Types that have links in them. Your sitemap will be %s"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: view/BlockSettingsSeo.php:
|
3207 |
msgid "Include in Sitemaps"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: view/BlockSettingsSeo.php:
|
3211 |
msgid "<strong>Images</strong> from posts/pages"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: view/BlockSettingsSeo.php:
|
3215 |
msgid "<strong>Videos</strong> (embeded and local media)"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: view/BlockSettingsSeo.php:
|
3219 |
msgid "How often do you update your site?"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: view/BlockSettingsSeo.php:
|
|
|
|
|
|
|
|
|
3223 |
msgid "every day"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: view/BlockSettingsSeo.php:
|
3227 |
msgid "1-3 times per week"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: view/BlockSettingsSeo.php:
|
3231 |
msgid "1-3 times per month"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: view/BlockSettingsSeo.php:
|
3235 |
msgid "1-3 times per year"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: view/BlockSettingsSeo.php:
|
3239 |
msgid "Feed Pagination: How many Posts per page to show in sitemap?"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
# @ squirrly-seo
|
3243 |
-
#: view/BlockSettingsSeo.php:
|
3244 |
msgid "Change the Website Icon"
|
3245 |
msgstr "Ändern Sie das Website-Symbol"
|
3246 |
|
3247 |
-
#: view/BlockSettingsSeo.php:
|
3248 |
msgid ""
|
3249 |
"Now, even tablet & smartphone browsers make use of your icons. This makes "
|
3250 |
"having a good favicon even more important."
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: view/BlockSettingsSeo.php:
|
3254 |
#, php-format
|
3255 |
msgid ""
|
3256 |
"You can use %shttp://convertico.com/%s to convert your photo to icon and "
|
@@ -3258,17 +3301,17 @@ msgid ""
|
|
3258 |
msgstr ""
|
3259 |
|
3260 |
# @ squirrly-seo
|
3261 |
-
#: view/BlockSettingsSeo.php:
|
3262 |
msgid "Upload file:"
|
3263 |
msgstr "Datei hochladen:"
|
3264 |
|
3265 |
# @ squirrly-seo
|
3266 |
-
#: view/BlockSettingsSeo.php:
|
3267 |
msgid "Upload"
|
3268 |
msgstr "Hochladen"
|
3269 |
|
3270 |
# @ squirrly-seo
|
3271 |
-
#: view/BlockSettingsSeo.php:
|
3272 |
msgid ""
|
3273 |
"If you don't see the new icon in your browser, empty the browser cache and "
|
3274 |
"refresh the page."
|
@@ -3277,343 +3320,355 @@ msgstr ""
|
|
3277 |
"Cache und aktualisieren Sie die Seite."
|
3278 |
|
3279 |
# @ squirrly-seo
|
3280 |
-
#: view/BlockSettingsSeo.php:
|
3281 |
msgid "File types: JPG, JPEG, GIF and PNG."
|
3282 |
msgstr "Dateitypen: JPG, JPEG, GIF und PNG."
|
3283 |
|
3284 |
-
#: view/BlockSettingsSeo.php:
|
3285 |
msgid ""
|
3286 |
"Does not physically create the favicon.ico file. The best option for "
|
3287 |
"Multisites."
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: view/BlockSettingsSeo.php:
|
3291 |
msgid "JSON-LD for Semantic SEO"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: view/BlockSettingsSeo.php:
|
3295 |
msgid ""
|
3296 |
"Squirrly will automatically add the JSON-LD Structured Data in your site."
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: view/BlockSettingsSeo.php:
|
3300 |
#, php-format
|
3301 |
msgid "%sJSON-LD's Big Day at Google%s"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: view/BlockSettingsSeo.php:
|
3305 |
#, php-format
|
3306 |
msgid "%sGoogle Testing Tool%s"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: view/BlockSettingsSeo.php:
|
3310 |
msgid "JSON-LD G17 - 2x More Options"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
-
#: view/BlockSettingsSeo.php:
|
3314 |
msgid "Your site type:"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: view/BlockSettingsSeo.php:
|
3318 |
msgid "Organization"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: view/BlockSettingsSeo.php:
|
3322 |
msgid "Personal"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: view/BlockSettingsSeo.php:
|
3326 |
msgid "Your Organization Name:"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: view/BlockSettingsSeo.php:
|
3330 |
msgid "Your Name:"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#: view/BlockSettingsSeo.php:
|
3334 |
msgid "Job Title:"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: view/BlockSettingsSeo.php:
|
3338 |
msgid "Logo Url:"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: view/BlockSettingsSeo.php:
|
3342 |
msgid "Image Url:"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: view/BlockSettingsSeo.php:
|
3346 |
msgid "Select Image"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
-
#: view/BlockSettingsSeo.php:
|
3350 |
msgid "Contact Phone:"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
#: view/BlockSettingsSeo.php:
|
3354 |
msgid "Contact Type:"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
-
#: view/BlockSettingsSeo.php:
|
3358 |
msgid "Customer Service"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
-
#: view/BlockSettingsSeo.php:
|
3362 |
msgid "Technical Support"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
-
#: view/BlockSettingsSeo.php:
|
3366 |
msgid "Billing Support"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
-
#: view/BlockSettingsSeo.php:
|
3370 |
msgid "Bill Payment"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
-
#: view/BlockSettingsSeo.php:
|
3374 |
msgid "Sales"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
-
#: view/BlockSettingsSeo.php:
|
3378 |
msgid "Reservations"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#: view/BlockSettingsSeo.php:
|
3382 |
msgid "Credit Card Support"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
-
#: view/BlockSettingsSeo.php:
|
3386 |
msgid "Emergency"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#: view/BlockSettingsSeo.php:
|
3390 |
msgid "Baggage Tracking"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#: view/BlockSettingsSeo.php:
|
3394 |
msgid "Roadside Assistance"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: view/BlockSettingsSeo.php:
|
3398 |
msgid "Package Tracking"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
-
#: view/BlockSettingsSeo.php:
|
3402 |
msgid "Short Description:"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
-
#: view/BlockSettingsSeo.php:
|
3406 |
msgid "Add your social accounts for Json-LD"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
-
#: view/BlockSettingsSeo.php:
|
3410 |
msgid "How the search results will look like once Google grabs your data."
|
3411 |
msgstr ""
|
3412 |
|
3413 |
-
#: view/BlockSettingsSeo.php:
|
3414 |
msgid "Tracking Tools"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
-
#: view/BlockSettingsSeo.php:
|
3418 |
#, php-format
|
3419 |
msgid "%sHow to Get the Most Out of Google Analytics%s"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: view/BlockSettingsSeo.php:
|
3423 |
#, php-format
|
3424 |
msgid "%sWhat is Facebook Pixel?%s"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
-
#: view/BlockSettingsSeo.php:
|
3428 |
#, php-format
|
3429 |
msgid "%sA Beginner’s Guide to Facebook Insights%s"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: view/BlockSettingsSeo.php:
|
3433 |
msgid "Google Tracking G17"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
-
#: view/BlockSettingsSeo.php:
|
3437 |
msgid "Facebook Tracking G17"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: view/BlockSettingsSeo.php:
|
3441 |
msgid "Rich Pins G17"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: view/BlockSettingsSeo.php:
|
3445 |
-
#: view/BlockSettingsSeo.php:
|
3446 |
#, php-format
|
3447 |
msgid "Facebook Admin ID (for %sInsights%s ):"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: view/BlockSettingsSeo.php:
|
3451 |
-
#: view/BlockSettingsSeo.php:
|
3452 |
msgid "Facebook ID or https://www.facebook.com/YourProfileName"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
-
#: view/BlockSettingsSeo.php:
|
3456 |
msgid "Add more Facebook Admin IDs"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
-
#: view/BlockSettingsSeo.php:
|
3460 |
#, php-format
|
3461 |
msgid "Google %sAnalytics ID%s:"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
-
#: view/BlockSettingsSeo.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3465 |
#, php-format
|
3466 |
msgid "Facebook %sPixel ID%s:"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
-
#: view/BlockSettingsSeo.php:
|
3470 |
#, php-format
|
3471 |
msgid ""
|
3472 |
"Load <strong>%sGoogle Analytics AMP%s</strong> and <strong>%sFacebook Pixel "
|
3473 |
"AMP%s</strong> tracking%s(Warning! The tracking works only for AMP Themes.%s)"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: view/BlockSettingsSeo.php:
|
3477 |
msgid "Measure Your Success"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: view/BlockSettingsSeo.php:
|
3481 |
#, php-format
|
3482 |
msgid "%sHow to set the Google Webmaster Tool%s"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#: view/BlockSettingsSeo.php:
|
3486 |
#, php-format
|
3487 |
msgid "%sBest practices to help Google find, crawl, and index your site%s"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: view/BlockSettingsSeo.php:
|
3491 |
#, php-format
|
3492 |
msgid "%sBing Webmaster Tools Help & How-To Center%s"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: view/BlockSettingsSeo.php:
|
3496 |
#, php-format
|
3497 |
msgid "%sRich Pins Validator%s"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: view/BlockSettingsSeo.php:
|
3501 |
#, php-format
|
3502 |
msgid "Google META verification code for %sWebmaster Tool%s:"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
-
#: view/BlockSettingsSeo.php:
|
3506 |
#, php-format
|
3507 |
msgid "Bing META code (for %sWebmaster Tool%s ):"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: view/BlockSettingsSeo.php:
|
3511 |
#, php-format
|
3512 |
msgid "Alexa META code (for %sAlexa Tool%s ):"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
-
#: view/BlockSettingsSeo.php:
|
3516 |
#, php-format
|
3517 |
msgid "Pinterest Website Validator Code: (validate %sRich Pins%s )"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
# @ squirrly-seo
|
3521 |
-
#: view/BlockSupport.php:
|
3522 |
msgid "Go to Profile"
|
3523 |
msgstr "Zum Profil"
|
3524 |
|
3525 |
# @ squirrly-seo
|
3526 |
-
#: view/BlockSupport.php:
|
3527 |
msgid "Profile"
|
3528 |
msgstr "Profil"
|
3529 |
|
3530 |
-
#: view/BlockSupport.php:
|
3531 |
msgid "For more support:"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: view/BlockSupport.php:
|
3535 |
#, php-format
|
3536 |
msgid "10 AM to 4 PM (GMT): Mon-Fri %sby email%s."
|
3537 |
msgstr ""
|
3538 |
|
3539 |
-
#: view/BlockSupport.php:
|
3540 |
#, php-format
|
3541 |
msgid "%sLive Chat%s on Youtube. Thursday 4 PM."
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: view/BlockSupport.php:
|
3545 |
#, php-format
|
3546 |
msgid "Google Plus %sSupport Community%s."
|
3547 |
msgstr ""
|
3548 |
|
3549 |
-
#: view/BlockSupport.php:
|
3550 |
#, php-format
|
3551 |
msgid "New Lessons Mon. and Tue. on %sTwitter%s."
|
3552 |
msgstr ""
|
3553 |
|
3554 |
# @ squirrly-seo
|
3555 |
-
#: view/BlockSupport.php:
|
3556 |
msgid "How was your Squirrly experience today?"
|
3557 |
msgstr "Wie war Ihre Squirrly Erfahrung heute?"
|
3558 |
|
3559 |
# @ squirrly-seo
|
3560 |
-
#: view/BlockSupport.php:
|
3561 |
msgid "How was Squirrly today?"
|
3562 |
msgstr "Wie war Squirrly heute?"
|
3563 |
|
3564 |
-
#: view/BlockSupport.php:
|
3565 |
msgid "Angry"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: view/BlockSupport.php:
|
3569 |
msgid "Annoying"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
#: view/BlockSupport.php:
|
3573 |
msgid "Sad"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: view/BlockSupport.php:
|
3577 |
msgid "Bad"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: view/BlockSupport.php:
|
3581 |
msgid "Happy"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
-
#: view/BlockSupport.php:
|
3585 |
msgid "Nice"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: view/BlockSupport.php:
|
3589 |
msgid "Excited"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
-
#: view/BlockSupport.php:
|
3593 |
msgid "Great"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
-
#: view/BlockSupport.php:
|
3597 |
msgid "Love it"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
# @ squirrly-seo
|
3601 |
-
#: view/BlockSupport.php:
|
3602 |
msgid "Please tell us why?"
|
3603 |
msgstr "Bitte sagen Sie uns, warum?"
|
3604 |
|
3605 |
# @ squirrly-seo
|
3606 |
-
#: view/BlockSupport.php:
|
3607 |
msgid "Send feedback"
|
3608 |
msgstr "Feedback senden"
|
3609 |
|
3610 |
-
#: view/BlockSupport.php:
|
3611 |
#, php-format
|
3612 |
msgid "%sSupport button%s here in WordPress (^^)"
|
3613 |
msgstr ""
|
3614 |
|
3615 |
# @ squirrly-seo
|
3616 |
-
#: view/BlockSupport.php:
|
3617 |
msgid "Thank you! You can send us a happy face tomorow too."
|
3618 |
msgstr "Danke! Sie können uns auch morgen ein fröhliches Gesicht senden."
|
3619 |
|
@@ -3704,7 +3759,7 @@ msgstr ""
|
|
3704 |
|
3705 |
#: view/Blocklogin.php:31
|
3706 |
#, php-format
|
3707 |
-
msgid "I Agree with the %
|
3708 |
msgstr ""
|
3709 |
|
3710 |
#: view/Blocklogin.php:33
|
@@ -4133,6 +4188,19 @@ msgstr ""
|
|
4133 |
msgid "Today SERP Changes"
|
4134 |
msgstr ""
|
4135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4136 |
# @ squirrly-seo
|
4137 |
#~ msgid "Turn off warnings!"
|
4138 |
#~ msgstr "Warnungen ausschalten!"
|
@@ -4317,10 +4385,6 @@ msgstr ""
|
|
4317 |
#~ "Squirrly warnen lassen, wenn es Fehler im Zusammenhang mit den SEO-"
|
4318 |
#~ "Einstellungen gibt"
|
4319 |
|
4320 |
-
# @ squirrly-seo
|
4321 |
-
#~ msgid "Squirrly Options"
|
4322 |
-
#~ msgstr "Squirrly Optionen"
|
4323 |
-
|
4324 |
# @ squirrly-seo
|
4325 |
#~ msgid ""
|
4326 |
#~ "Show <strong>\"Enter a keyword\"</strong> bubble when posting a new "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Squirrly SEO Plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-07-30 08:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2018-07-30 08:57+0300\n"
|
7 |
"Last-Translator: Squirrly <contact@squirrly.co>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
16 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
+
"X-Generator: Poedit 2.0.5\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
# @ squirrly-seo
|
23 |
#: classes/Error.php:16
|
24 |
msgid ""
|
51 |
msgid "Don't bother me!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: classes/Tools.php:129
|
55 |
msgid "Getting started"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: classes/Tools.php:349
|
59 |
msgid "Format"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: classes/Tools.php:357 classes/Tools.php:373
|
63 |
msgid "Category"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: classes/Tools.php:365 classes/Tools.php:381
|
67 |
msgid "Tag"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: classes/Tools.php:389
|
71 |
msgid "Shipping Option"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: classes/Tools.php:397
|
75 |
msgid "Author at"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: classes/Tools.php:429
|
79 |
msgid "You searched for"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: classes/Tools.php:445
|
83 |
msgid "Page not found"
|
84 |
msgstr ""
|
85 |
|
86 |
# @ squirrly-seo
|
87 |
+
#: classes/Tools.php:976
|
88 |
msgid "Fix it for me!"
|
89 |
msgstr "Beheben Sie es für mich!"
|
90 |
|
91 |
+
#: classes/Tools.php:982
|
92 |
msgid "Activate the Squirrly SEO for your blog (recommended)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: classes/Tools.php:993
|
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:1001
|
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:1009
|
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:1017
|
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:1026
|
121 |
msgid "You're blocking google from indexing your site!"
|
122 |
msgstr "Sie blockieren Google zum Indizieren Ihrer Website!"
|
123 |
|
124 |
+
#: classes/Tools.php:1033
|
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:1040
|
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:1046
|
138 |
msgid "Great! We didn't find any issue in your site."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: classes/Tools.php:1191
|
142 |
msgid "Just another WordPress site"
|
143 |
msgstr ""
|
144 |
|
225 |
msgstr ""
|
226 |
|
227 |
#: config/config.php:63
|
228 |
+
msgid "Displays the current date"
|
229 |
msgstr ""
|
230 |
|
231 |
#: config/config.php:64
|
232 |
msgid "Adds the post's keyword to the post description"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: config/config.php:65
|
236 |
+
msgid "Adds the current day"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: config/config.php:66
|
240 |
+
msgid "Adds the current month"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: config/config.php:67
|
244 |
+
msgid "Adds the current year"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
#: controllers/Api.php:40
|
248 |
msgid "Connection expired. Please try again"
|
249 |
msgstr ""
|
270 |
"us at: %s"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: controllers/Menu.php:99
|
274 |
msgid "See Your Rank on Google"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: controllers/Menu.php:156
|
278 |
msgid "Custom SEO"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: controllers/Menu.php:200
|
282 |
#, php-format
|
283 |
msgid "Check out the Squirrly Analytics section. %sClick here%s"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: controllers/Menu.php:200 view/BlockPostsAnalytics.php:47
|
287 |
msgid "Squirrly Analytics"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: controllers/Menu.php:217
|
|
|
|
|
|
|
|
|
|
|
291 |
msgid " Dashboard"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: controllers/Menu.php:218
|
295 |
msgid "First Step"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: controllers/Menu.php:218
|
299 |
msgid "Dashboard"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: controllers/Menu.php:227
|
303 |
msgid " Advanced Analytics (Business Level)"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: controllers/Menu.php:228
|
307 |
msgid "Advanced Analytics"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: controllers/Menu.php:235
|
311 |
msgid " Performance Analytics"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: controllers/Menu.php:236
|
315 |
msgid "Performance <br />Analytics"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: controllers/Menu.php:244
|
319 |
msgid " Keyword Research"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: controllers/Menu.php:245 view/BlockBriefcaseKeywords.php:333
|
323 |
msgid "Keyword Research"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: controllers/Menu.php:252
|
327 |
msgid " Briefcase"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: controllers/Menu.php:253
|
331 |
msgid "Briefcase"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: controllers/Menu.php:260
|
335 |
msgid " Live Assistant"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: controllers/Menu.php:261
|
339 |
msgid "Live Assistant"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: controllers/Menu.php:267
|
343 |
msgid " Copywriting"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: controllers/Menu.php:268
|
347 |
msgid "Copywriting"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: controllers/Menu.php:276
|
351 |
msgid " SEO Audit"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: controllers/Menu.php:277
|
355 |
msgid "Site Audit"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: controllers/Menu.php:285
|
359 |
msgid " SEO Settings"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: controllers/Menu.php:286 view/BlockToolbar.php:4
|
363 |
msgid "SEO Settings"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: controllers/Menu.php:294
|
367 |
msgid " Advanced Settings"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: controllers/Menu.php:295 view/BlockSettings.php:22
|
371 |
msgid "Advanced Settings"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: controllers/Menu.php:302
|
375 |
msgid " SEO Patterns"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: controllers/Menu.php:303 view/BlockToolbar.php:14
|
379 |
msgid "Patterns"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: controllers/Menu.php:311
|
383 |
msgid " Account Info"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: controllers/Menu.php:312
|
387 |
msgid "Account Info"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: controllers/Menu.php:320
|
391 |
msgid " Support"
|
392 |
msgstr ""
|
393 |
|
394 |
# @ squirrly-seo
|
395 |
+
#: controllers/Menu.php:321 view/BlockSupport.php:22
|
396 |
msgid "Support"
|
397 |
msgstr "Support"
|
398 |
|
399 |
+
#: controllers/Menu.php:329
|
400 |
msgid "Become an Affiliate with "
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: controllers/Menu.php:330
|
404 |
msgid "Become an Affiliate"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: controllers/Menu.php:339
|
408 |
+
msgid "Import, Backup & Restore SEO"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: controllers/Menu.php:340
|
412 |
+
msgid "Import/Backup SEO"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: controllers/Menu.php:384
|
416 |
msgid "SEO Snippet"
|
417 |
msgstr ""
|
418 |
|
432 |
msgid "SEO Analytics, by Squirrly"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: controllers/PostsList.php:144 controllers/SerpChecker.php:174
|
436 |
#: models/SerpCheckerTable.php:646 view/Blockseo.php:10
|
437 |
msgid "Update"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: controllers/PostsList.php:148 controllers/SerpChecker.php:178
|
441 |
msgid "Not Public"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: controllers/PostsList.php:149 controllers/SerpChecker.php:179
|
445 |
msgid "Could not process"
|
446 |
msgstr ""
|
447 |
|
460 |
msgid "%s"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: controllers/SerpChecker.php:23 core/BlockPostsAnalytics.php:31
|
464 |
#, php-format
|
465 |
msgid ""
|
466 |
"To get back to the Advanced Analytics and see rankings for all the keywords "
|
467 |
"in Briefcase upgrade to %sBusiness Plan%s."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: controllers/SerpChecker.php:77 controllers/SerpChecker.php:91
|
471 |
+
#: controllers/SerpChecker.php:134 core/BlockSerpKeywords.php:66
|
472 |
#: core/BlockSerpKeywords.php:74 core/BlockSerpKeywords.php:97
|
473 |
+
#: core/BlockSettingsSeo.php:69
|
474 |
msgid "You don't have enough pemission to activate this feature"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: controllers/SerpChecker.php:115 controllers/SerpChecker.php:125
|
478 |
+
#: core/BlockBriefcaseKeywords.php:194
|
479 |
msgid "Last checked"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: controllers/SerpChecker.php:129
|
483 |
msgid "Invalid Request"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: controllers/SerpChecker.php:142
|
487 |
msgid "Removed successfully! The ranks were updated from Squirry Server"
|
488 |
msgstr ""
|
489 |
|
496 |
msgid "An error occured. Mabe a network error :("
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: core/BlockBriefcaseKeywords.php:36 core/BlockPostsAnalytics.php:24
|
500 |
#, php-format
|
501 |
msgid ""
|
502 |
"%sYou activated the Business Plan with Advanced Analytics. %sStart Here%s %s"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: core/BlockBriefcaseKeywords.php:39 core/BlockPostsAnalytics.php:28
|
506 |
#, php-format
|
507 |
msgid ""
|
508 |
"%sStart a FREE Trial of the Business Plan with Advanced Analytics for 7 "
|
509 |
"days. No credit card required. %sSee details%s %s"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: core/BlockBriefcaseKeywords.php:70
|
513 |
msgid "No keyword found in the briefcase."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: core/BlockBriefcaseKeywords.php:96 core/BlockBriefcaseKeywords.php:123
|
517 |
+
#: core/BlockBriefcaseKeywords.php:141 core/BlockBriefcaseKeywords.php:165
|
518 |
+
#: core/BlockBriefcaseKeywords.php:235 core/BlockBriefcaseKeywords.php:255
|
519 |
+
#: core/BlockBriefcaseKeywords.php:277 core/BlockBriefcaseKeywords.php:295
|
520 |
msgid "You don't have enough pemission to manage this feature"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: core/BlockBriefcaseKeywords.php:116 core/BlockBriefcaseKeywords.php:248
|
524 |
+
#: core/BlockBriefcaseKeywords.php:270 core/BlockBriefcaseKeywords.php:312
|
525 |
+
#: core/Loading.php:40 view/FrontMenu.php:45
|
526 |
msgid "Saved!"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: core/BlockBriefcaseKeywords.php:118 core/BlockBriefcaseKeywords.php:159
|
530 |
+
#: core/BlockBriefcaseKeywords.php:227 core/BlockBriefcaseKeywords.php:314
|
531 |
msgid "Invalid Keyword!"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: core/BlockBriefcaseKeywords.php:134 core/BlockBriefcaseKeywords.php:288
|
535 |
msgid "Deleted!"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: core/BlockBriefcaseKeywords.php:136 core/BlockBriefcaseKeywords.php:272
|
539 |
+
#: core/BlockBriefcaseKeywords.php:290
|
540 |
msgid "Invalid params!"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: core/BlockBriefcaseKeywords.php:155
|
544 |
msgid "Keyword Research limit exceeded."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: core/BlockBriefcaseKeywords.php:155 core/Loading.php:61
|
548 |
msgid "Add 20 Keyword Researches"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: core/BlockBriefcaseKeywords.php:186
|
552 |
msgid "Check Ranks"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: core/BlockBriefcaseKeywords.php:197 models/BlockPostsAnalytics.php:393
|
556 |
#: models/SerpCheckerTable.php:565
|
557 |
msgid "Edit"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: core/BlockBriefcaseKeywords.php:198
|
561 |
msgid "Get Rank"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: core/BlockBriefcaseKeywords.php:203
|
565 |
msgid "Deleted Post"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: core/BlockBriefcaseKeywords.php:213
|
569 |
msgid "Article title"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: core/BlockBriefcaseKeywords.php:214 models/SerpCheckerTable.php:359
|
573 |
msgid "Google Rank"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: core/BlockBriefcaseKeywords.php:215 models/SerpCheckerTable.php:362
|
577 |
msgid "Optimized"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: core/BlockBriefcaseKeywords.php:216
|
581 |
msgid "Option"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: core/BlockBriefcaseKeywords.php:221
|
585 |
msgid "There are no articles found"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: core/BlockBriefcaseKeywords.php:250
|
589 |
msgid "Invalid Label or Color!"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: core/BlockImport.php:34
|
593 |
msgid "All the Plugin settings were imported successfuly!"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: core/BlockImport.php:36
|
597 |
msgid "No settings found for this plugin/theme."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: core/BlockImport.php:58
|
601 |
#, php-format
|
602 |
msgid ""
|
603 |
"%s SEO records were imported successfuly! You can now deactivate the %s "
|
604 |
"plugin"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: core/BlockImport.php:60
|
608 |
#, php-format
|
609 |
msgid ""
|
610 |
"There are no SEO records with this plugin. You can now deactivate the %s "
|
623 |
msgid "Could not find the Article in your Website"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: core/BlockSettingsSeo.php:27
|
627 |
#, php-format
|
628 |
msgid "You can now import into Squirrly SEO all the SEO Settings from %s"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: core/BlockSettingsSeo.php:40 core/Blockseo.php:13
|
632 |
msgid "Too short"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: core/BlockSettingsSeo.php:41 core/Blockseo.php:14
|
636 |
msgid "Too long"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: core/BlockSettingsSeo.php:483
|
640 |
msgid "Great! The backup is restored."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: core/BlockSettingsSeo.php:485 core/BlockSettingsSeo.php:488
|
644 |
+
#: core/BlockSettingsSeo.php:533 core/BlockSettingsSeo.php:536
|
645 |
msgid "Error! The backup is not valid."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: core/BlockSettingsSeo.php:491 core/BlockSettingsSeo.php:539
|
649 |
msgid "Error! You have to enter a previous saved backup file."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: core/BlockSettingsSeo.php:530
|
653 |
msgid "Great! The SEO backup is restored."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: core/BlockSettingsSeo.php:546
|
657 |
msgid "Great! Squirrly Data Settings is up to date now."
|
658 |
msgstr ""
|
659 |
|
660 |
# @ squirrly-seo
|
661 |
+
#: core/BlockSupport.php:24
|
662 |
msgid "Plugin Feedback"
|
663 |
msgstr "Plugin Feedback"
|
664 |
|
665 |
# @ squirrly-seo
|
666 |
+
#: core/BlockSupport.php:59
|
667 |
msgid "Thank you for your feedback"
|
668 |
msgstr "Vielen Dank für Ihre Feedback"
|
669 |
|
670 |
# @ squirrly-seo
|
671 |
+
#: core/BlockSupport.php:63 core/BlockSupport.php:103
|
|
|
|
|
|
|
|
|
|
|
672 |
msgid "No message."
|
673 |
msgstr "Keine Nachricht."
|
674 |
|
681 |
msgid "Message sent. Thank you!"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: core/BlockSupport.php:99
|
685 |
+
msgid "Could not send the email. Make sure you can send emails from your blog."
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
# @ squirrly-seo
|
689 |
+
#: core/Blocklogin.php:84
|
690 |
#, php-format
|
691 |
msgid ""
|
692 |
"We found your email, so it means you already have a Squirrly.co account. "
|
697 |
"Sie sich mit Ihrer Squirrly-ID ein. Falls Sie Ihr Passwort vergessen haben, "
|
698 |
"klicken Sie %shier%s"
|
699 |
|
700 |
+
#: core/Blocklogin.php:87
|
701 |
msgid "Your email is not valid. Please enter a valid email"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: core/Blocklogin.php:90
|
705 |
msgid "We could not create your account. Please enter a valid email "
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: core/Blocklogin.php:95
|
709 |
msgid ""
|
710 |
"Error: Couldn't connect to host :( . Please contact your site's webhost (or "
|
711 |
"webmaster) and request them to add http://api.squirrly.co/ to their IP "
|
713 |
msgstr ""
|
714 |
|
715 |
# @ squirrly-seo
|
716 |
+
#: core/Blocklogin.php:98
|
717 |
#, php-format
|
718 |
msgid ""
|
719 |
"Could not send your informations to squirrly. Please register %smanually%s."
|
722 |
"%smanually%s."
|
723 |
|
724 |
# @ squirrly-seo
|
725 |
+
#: core/Blocklogin.php:139
|
726 |
msgid "Wrong email or password!"
|
727 |
msgstr "Benutzername oder Passwort falsch!"
|
728 |
|
729 |
# @ squirrly-seo
|
730 |
+
#: core/Blocklogin.php:142
|
731 |
msgid "You can use this account only for the URL you registered first!"
|
732 |
msgstr ""
|
733 |
"Dieses Konto können Sie nur für die URL benutzen, die Sie zuerst registriert "
|
734 |
"haben!"
|
735 |
|
736 |
# @ squirrly-seo
|
737 |
+
#: core/Blocklogin.php:147
|
738 |
msgid "An error occured."
|
739 |
msgstr "Ein Fehler ist aufgetreten."
|
740 |
|
741 |
# @ squirrly-seo
|
742 |
+
#: core/Blocklogin.php:149
|
743 |
msgid "Both fields are required."
|
744 |
msgstr "Beide Felder sind Pflichtfelder."
|
745 |
|
747 |
msgid "snippet"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: core/Loading.php:37
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
751 |
msgid "Recent discussions:"
|
752 |
msgstr "Bisherige Diskussionen:"
|
753 |
|
754 |
+
#: core/Loading.php:37
|
755 |
msgid "SEO Search Volume:"
|
756 |
msgstr ""
|
757 |
|
758 |
# @ squirrly-seo
|
759 |
+
#: core/Loading.php:37
|
760 |
msgid "Competition:"
|
761 |
msgstr "Wettbewerb:"
|
762 |
|
763 |
# @ squirrly-seo
|
764 |
+
#: core/Loading.php:37
|
765 |
msgid "Trend:"
|
766 |
msgstr "Trend:"
|
767 |
|
768 |
# @ squirrly-seo
|
769 |
+
#: core/Loading.php:38
|
770 |
msgid "Keyword:"
|
771 |
msgstr "Schlüsselwort:"
|
772 |
|
773 |
# @ squirrly-seo
|
774 |
+
#: core/Loading.php:39
|
775 |
msgid "date"
|
776 |
msgstr "Datum"
|
777 |
|
778 |
# @ squirrly-seo
|
779 |
+
#: core/Loading.php:41
|
780 |
msgid "Read it!"
|
781 |
msgstr "Lesen!"
|
782 |
|
783 |
# @ squirrly-seo
|
784 |
+
#: core/Loading.php:42
|
785 |
msgid "Insert it!"
|
786 |
msgstr "Einfügen!"
|
787 |
|
788 |
# @ squirrly-seo
|
789 |
+
#: core/Loading.php:43
|
790 |
msgid "Reference"
|
791 |
msgstr "Referenz"
|
792 |
|
793 |
# @ squirrly-seo
|
794 |
+
#: core/Loading.php:44
|
795 |
msgid "Insert as box"
|
796 |
msgstr "Als Box einfügen"
|
797 |
|
798 |
+
#: core/Loading.php:45
|
799 |
msgid "Insert Link"
|
800 |
msgstr ""
|
801 |
|
802 |
# @ squirrly-seo
|
803 |
+
#: core/Loading.php:46
|
804 |
msgid "Not relevant?"
|
805 |
msgstr "Nicht relevant?"
|
806 |
|
807 |
# @ squirrly-seo
|
808 |
+
#: core/Loading.php:47
|
809 |
msgid "Insert in your article"
|
810 |
msgstr "In Artikel einfügen"
|
811 |
|
812 |
+
#: core/Loading.php:48
|
813 |
msgid ":( An error occurred while processing your request. Please try again"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: core/Loading.php:49
|
817 |
msgid "Keyword Research takes too long to get the results. Click to try again"
|
818 |
msgstr ""
|
819 |
|
820 |
# @ squirrly-seo
|
821 |
+
#: core/Loading.php:50
|
822 |
msgid "No results found!"
|
823 |
msgstr "Keine Ergebnisse gefunden!"
|
824 |
|
825 |
+
#: core/Loading.php:51
|
826 |
msgid "Enter one more word to find relevant results"
|
827 |
msgstr ""
|
828 |
|
829 |
# @ squirrly-seo
|
830 |
+
#: core/Loading.php:52
|
831 |
msgid "Takes too long to check this keyword ..."
|
832 |
msgstr "Dauert zu lange, um dieses Schlüsselwort zu überprüfen ..."
|
833 |
|
834 |
# @ squirrly-seo
|
835 |
+
#: core/Loading.php:53
|
836 |
msgid "Do a research!"
|
837 |
msgstr "Erweiterte Suche!"
|
838 |
|
839 |
# @ squirrly-seo
|
840 |
+
#: core/Loading.php:54
|
841 |
msgid "Do more research!"
|
842 |
msgstr "Erweiterte Suche!"
|
843 |
|
844 |
+
#: core/Loading.php:55
|
845 |
#, php-format
|
846 |
msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: core/Loading.php:56
|
850 |
msgid "Has creative commons attributes"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: core/Loading.php:57
|
854 |
msgid "No known copyright restrictions"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: core/Loading.php:58
|
858 |
msgid ""
|
859 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
860 |
"optimize for a keyword before publishing?"
|
862 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
863 |
"optimize for a keyword before publishing?"
|
864 |
|
865 |
+
#: core/Loading.php:59
|
866 |
msgid "Keyword Research limit exceeded"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: core/Loading.php:60
|
870 |
msgid "Your Subscription has Expired"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: core/Loading.php:62
|
874 |
msgid "There are no keywords saved in briefcase yet"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: core/Loading.php:63
|
878 |
#, php-format
|
879 |
msgid "Congratulations! Your article is 100% optimized!"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: core/Loading.php:64
|
883 |
#, php-format
|
884 |
msgid "appears too many times. Try to remove %s of them"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: core/Loading.php:65
|
888 |
#, php-format
|
889 |
msgid "write %s more words"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: core/Loading.php:66
|
893 |
#, php-format
|
894 |
msgid "Add the keyword in the %s of your article"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: core/Loading.php:67
|
898 |
msgid "Click to keep the highlight on"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: core/Loading.php:68
|
902 |
msgid "introduction"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: core/Loading.php:69
|
906 |
#, php-format
|
907 |
msgid "Write more words after the %s keyword"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: core/Loading.php:70
|
911 |
msgid "or use synonyms"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: core/Loading.php:71
|
915 |
#, php-format
|
916 |
msgid "add %s more word(s)"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: core/Loading.php:72
|
920 |
#, php-format
|
921 |
msgid "or remove %s word(s)"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: core/Loading.php:73
|
925 |
#, php-format
|
926 |
msgid "add %s more keyword(s)"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: core/Loading.php:74
|
930 |
#, php-format
|
931 |
msgid "write %s more words to start calculating"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: core/Loading.php:75
|
935 |
msgid "Add to Briefcase"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: core/Loading.php:76
|
939 |
msgid "Add Keyword to Briefcase"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: core/Loading.php:77 view/BlockBriefcaseKeywords.php:304
|
943 |
msgid "Use Keyword"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: core/Loading.php:78
|
947 |
+
msgid "Auto Draft"
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
#: models/BlockPostsAnalytics.php:290
|
951 |
msgctxt "column name"
|
952 |
msgid "Title"
|
1133 |
msgstr "Das Favicon wurde aktualisiert."
|
1134 |
|
1135 |
# @ default
|
1136 |
+
#: models/Post.php:53
|
1137 |
msgid "Squirrly could not find any results for: "
|
1138 |
msgstr "Squirly hat keine Suchergebnisse gefunden für:"
|
1139 |
|
1140 |
+
#: models/Post.php:122
|
1141 |
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: models/Post.php:123
|
1145 |
msgid ""
|
1146 |
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
1147 |
"the HTML form."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: models/Post.php:124
|
1151 |
msgid "The uploaded file was only partially uploaded."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: models/Post.php:125
|
1155 |
msgid "No file was uploaded."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: models/Post.php:127
|
1159 |
msgid "Missing a temporary folder."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: models/Post.php:128
|
1163 |
msgid "Failed to write file to disk."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: models/Post.php:129
|
1167 |
msgid "File upload stopped by extension."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: models/Post.php:146
|
1171 |
msgid "Invalid form submission."
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: models/Post.php:156
|
1175 |
msgid "File is empty. Please upload something more substantial."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: models/Post.php:158
|
1179 |
msgid ""
|
1180 |
"File is empty. Please upload something more substantial. This error could "
|
1181 |
"also be caused by uploads being disabled in your php.ini or by post_max_size "
|
1182 |
"being defined as smaller than upload_max_filesize in php.ini."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: models/Post.php:164
|
1186 |
msgid "Specified file failed upload test."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: models/Post.php:177
|
1190 |
msgid "Sorry, this file type is not permitted for security reasons."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: models/Post.php:202
|
1194 |
#, php-format
|
1195 |
msgid "The uploaded file could not be moved to %s."
|
1196 |
msgstr ""
|
1227 |
msgid "The total number of inbound links to this post"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: models/SerpCheckerTable.php:353 view/BlockPatterns.php:102
|
1231 |
#: view/FrontMenu.php:156
|
1232 |
msgid "Title"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: models/SerpCheckerTable.php:356 view/BlockBriefcaseKeywords.php:76
|
1236 |
+
#: view/BlockBriefcaseKeywords.php:184 view/BlockSerpKeywords.php:31
|
1237 |
#: view/BlockSerpKeywords.php:63
|
1238 |
msgid "Keyword"
|
1239 |
msgstr ""
|
1246 |
msgid "Post Date"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: models/SerpCheckerTable.php:399 view/BlockBriefcaseKeywords.php:46
|
1250 |
msgid "Search Keyword"
|
1251 |
msgstr ""
|
1252 |
|
1264 |
msgid "Twitter"
|
1265 |
msgstr "Twitter"
|
1266 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1267 |
#: models/SerpCheckerTable.php:636
|
1268 |
msgid "Reddit"
|
1269 |
msgstr ""
|
1289 |
msgid "Not indexed"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: models/domain/Patterns.php:240
|
1293 |
msgid "Page"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: models/domain/Patterns.php:241
|
1297 |
msgid "of"
|
1298 |
msgstr ""
|
1299 |
|
1319 |
"sein"
|
1320 |
|
1321 |
#: view/BlockAccount.php:7 view/BlockAffiliate.php:7 view/BlockAudit.php:7
|
1322 |
+
#: view/BlockBriefcaseKeywords.php:7 view/BlockDashboard.php:6
|
1323 |
+
#: view/BlockImport.php:7 view/BlockKeywordResearch.php:7
|
1324 |
+
#: view/BlockPatterns.php:7 view/BlockPostsAnalytics.php:7
|
1325 |
+
#: view/BlockSettings.php:7 view/BlockSettingsSeo.php:7 view/SerpChecker.php:7
|
1326 |
msgid "Connect to Squirrly Data Cloud"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
#: view/BlockAccount.php:13 view/BlockAffiliate.php:13 view/BlockAudit.php:13
|
1330 |
+
#: view/BlockBriefcaseKeywords.php:13 view/BlockDashboard.php:28
|
1331 |
+
#: view/BlockImport.php:13 view/BlockKeywordResearch.php:13
|
1332 |
+
#: view/BlockPatterns.php:13 view/BlockPostsAnalytics.php:12
|
1333 |
+
#: view/BlockSettings.php:13 view/BlockSettingsSeo.php:13
|
1334 |
+
#: view/Blocklogin.php:38 view/SerpChecker.php:13
|
1335 |
msgid "START HERE"
|
1336 |
msgstr ""
|
1337 |
|
1443 |
msgstr ""
|
1444 |
|
1445 |
#: view/BlockAnalytics.php:114
|
|
|
|
|
|
|
|
|
1446 |
msgid "Twitter shares"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: view/BlockAnalytics.php:119
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1450 |
msgid "StumbleUpon shares"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: view/BlockAnalytics.php:124
|
1454 |
msgid "Reddit shares"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: view/BlockAnalytics.php:129
|
1458 |
msgid "Pinterest shares"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: view/BlockAnalytics.php:161
|
1462 |
msgid "Nicely done! Now you can focus on the other tasks"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: view/BlockAnalytics.php:161
|
1466 |
msgid ""
|
1467 |
"I know you can improve this. Please follow the documentation for a quicker "
|
1468 |
"progress"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: view/BlockAnalytics.php:234
|
1472 |
msgid "Visits"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: view/BlockAnalytics.php:247
|
1476 |
msgid "Current: "
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: view/BlockAnalytics.php:248
|
1480 |
msgid "Lowest: "
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: view/BlockAnalytics.php:249
|
1484 |
msgid "Highest: "
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: view/BlockAnalytics.php:253
|
1488 |
msgid "last 30 days"
|
1489 |
msgstr ""
|
1490 |
|
1559 |
msgid "This is an example of a Site Audit"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: view/BlockBriefcaseKeywords.php:25 view/SerpChecker.php:49
|
1563 |
msgid "Show All"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: view/BlockBriefcaseKeywords.php:29
|
1567 |
msgid "Briefcase Keywords"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: view/BlockBriefcaseKeywords.php:33
|
1571 |
msgid "See the Google Ranks for these Keywords"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: view/BlockBriefcaseKeywords.php:36
|
1575 |
msgid "Go to Analytics"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: view/BlockBriefcaseKeywords.php:48
|
1579 |
msgid "Filter by labels"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: view/BlockBriefcaseKeywords.php:62 view/BlockSerpKeywords.php:12
|
1583 |
msgid "Add new keyword"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: view/BlockBriefcaseKeywords.php:63
|
1587 |
msgid "Manage Labels"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: view/BlockBriefcaseKeywords.php:72 view/BlockSerpKeywords.php:27
|
1591 |
msgid "Add a new Keyword"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: view/BlockBriefcaseKeywords.php:77 view/BlockSerpKeywords.php:32
|
1595 |
msgid "Enter a Keyword (2-4 words)"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: view/BlockBriefcaseKeywords.php:80
|
1599 |
msgid "Select Labels"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: view/BlockBriefcaseKeywords.php:89 view/BlockBriefcaseKeywords.php:234
|
1603 |
msgid "Add new Label"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: view/BlockBriefcaseKeywords.php:96 view/BlockSerpKeywords.php:42
|
1607 |
msgid "Add Keyword"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: view/BlockBriefcaseKeywords.php:107
|
1611 |
msgid "Add New Label"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: view/BlockBriefcaseKeywords.php:111 view/BlockBriefcaseKeywords.php:156
|
1615 |
msgid "Label Name"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: view/BlockBriefcaseKeywords.php:115 view/BlockBriefcaseKeywords.php:160
|
1619 |
msgid "Label Color"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: view/BlockBriefcaseKeywords.php:122
|
1623 |
msgid "Add Label"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: view/BlockBriefcaseKeywords.php:125
|
1627 |
msgid "Your Labels"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: view/BlockBriefcaseKeywords.php:152
|
1631 |
msgid "Edit Label"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: view/BlockBriefcaseKeywords.php:166
|
1635 |
msgid "Save Label"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: view/BlockBriefcaseKeywords.php:185
|
1639 |
msgid "Used"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: view/BlockBriefcaseKeywords.php:186
|
1643 |
msgid "Data"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: view/BlockBriefcaseKeywords.php:216
|
1647 |
msgid "Assign Labels to this Keyword"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: view/BlockBriefcaseKeywords.php:222
|
1651 |
#, php-format
|
1652 |
msgid "Select Labels for: %s"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: view/BlockBriefcaseKeywords.php:240
|
1656 |
msgid "Save Labels"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: view/BlockBriefcaseKeywords.php:257 view/BlockBriefcaseKeywords.php:258
|
1660 |
msgid "Competition"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: view/BlockBriefcaseKeywords.php:258 view/BlockBriefcaseKeywords.php:266
|
1664 |
+
#: view/BlockBriefcaseKeywords.php:274 view/BlockBriefcaseKeywords.php:282
|
1665 |
msgid "-"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: view/BlockBriefcaseKeywords.php:265 view/BlockBriefcaseKeywords.php:266
|
1669 |
msgid "SEO Search Volume"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: view/BlockBriefcaseKeywords.php:273 view/BlockBriefcaseKeywords.php:274
|
1673 |
msgid "Recent discussions"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: view/BlockBriefcaseKeywords.php:281 view/BlockBriefcaseKeywords.php:282
|
1677 |
msgid "Trending"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
# @ squirrly-seo
|
1681 |
+
#: view/BlockBriefcaseKeywords.php:290
|
1682 |
+
#, fuzzy
|
1683 |
+
#| msgid "Squirrly Keyword Research"
|
1684 |
+
msgid "Refresh Keyword Research"
|
1685 |
+
msgstr "Squirrly Erweiterte Suche!"
|
1686 |
+
|
1687 |
+
# @ squirrly-seo
|
1688 |
+
#: view/BlockBriefcaseKeywords.php:295 view/Blocksearch.php:48
|
1689 |
msgid "Do a research"
|
1690 |
msgstr "Recherchieren"
|
1691 |
|
1692 |
+
#: view/BlockBriefcaseKeywords.php:307
|
1693 |
msgid "Delete"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: view/BlockBriefcaseKeywords.php:338
|
1697 |
+
msgid "Select Country"
|
1698 |
+
msgstr ""
|
1699 |
+
|
1700 |
+
# @ squirrly-seo
|
1701 |
+
#: view/BlockBriefcaseKeywords.php:344
|
1702 |
+
#, fuzzy
|
1703 |
+
#| msgid "Do a research"
|
1704 |
+
msgid "Do Research"
|
1705 |
+
msgstr "Recherchieren"
|
1706 |
+
|
1707 |
#: view/BlockCopyright.php:9
|
1708 |
msgid "Squirrly Copywriting Options"
|
1709 |
msgstr ""
|
1812 |
msgstr ""
|
1813 |
|
1814 |
# @ squirrly-seo
|
1815 |
+
#: view/BlockCustomerService.php:25 view/BlockSupport.php:25
|
1816 |
msgid "Need Help with Squirrly SEO?"
|
1817 |
msgstr "Brauchen Sie Hilfe mit Squirrly SEO?"
|
1818 |
|
1819 |
+
#: view/BlockCustomerService.php:31
|
1820 |
+
msgid "From"
|
1821 |
+
msgstr ""
|
1822 |
+
|
1823 |
# @ squirrly-seo
|
1824 |
+
#: view/BlockCustomerService.php:41 view/BlockSupport.php:38
|
1825 |
msgid "Send Question"
|
1826 |
msgstr "Senden Sie Ihre Frage"
|
1827 |
|
1828 |
+
#: view/BlockCustomerService.php:45 view/BlockSupport.php:42
|
1829 |
+
#, php-format
|
1830 |
+
msgid "By clicking Send Question you're agreeing to %sSquirrly Terms%s"
|
1831 |
+
msgstr ""
|
1832 |
+
|
1833 |
#: view/BlockDashboard.php:11
|
1834 |
msgid "Restore Squirrly Settings"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: view/BlockDashboard.php:16 view/BlockImport.php:113
|
1838 |
msgid "Upload the file with the saved Squirrly Settings"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: view/BlockDashboard.php:21 view/BlockImport.php:118 view/BlockImport.php:140
|
|
|
1842 |
msgid "Restore Backup"
|
1843 |
msgstr ""
|
1844 |
|
1850 |
msgid "Squirrly dashboard"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: view/BlockDashboard.php:47
|
1854 |
#, php-format
|
1855 |
msgid ""
|
1856 |
"%sHelp Center%s - learn more about Squirrly SEO features and unhinge your "
|
1857 |
"SEO potential"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: view/BlockDashboard.php:50 view/BlockDashboard.php:153
|
1861 |
msgid "Next Feature"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: view/BlockDashboard.php:51 view/BlockDashboard.php:154
|
1865 |
msgid "Previous Feature"
|
1866 |
msgstr ""
|
1867 |
|
1869 |
msgid "SEO Patterns"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: view/BlockImport.php:37
|
1873 |
msgid "Import SEO settings from other SEO plugins or themes"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: view/BlockImport.php:38
|
1877 |
msgid ""
|
1878 |
"If you were already using an SEO plugin, then you can import all the SEO "
|
1879 |
"settings in Squirrly. Just follow the steps presented on the right side."
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: view/BlockImport.php:45
|
1883 |
msgid "Select the plugin or theme you want to import the Settings from."
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: view/BlockImport.php:59
|
1887 |
msgid "Import Settings"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: view/BlockImport.php:61 view/BlockImport.php:82
|
1891 |
msgid "We couldn't find any SEO plugin or theme to import from."
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: view/BlockImport.php:68
|
1895 |
msgid "Select the plugin or theme you want to import the SEO settings from."
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: view/BlockImport.php:80
|
1899 |
+
msgid "Import SEO"
|
1900 |
+
msgstr ""
|
1901 |
+
|
1902 |
+
#: view/BlockImport.php:89
|
1903 |
msgid ""
|
1904 |
"Note! If you import the SEO settings from other plugins or themes, you will "
|
1905 |
"lose all the settings that you had in Squirrly SEO. Make sure you backup "
|
1906 |
"your settings from the panel below before you do this. "
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: view/BlockImport.php:94
|
1910 |
msgid "Backup & Restore Squirrly SEO Settings"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: view/BlockImport.php:95
|
1914 |
msgid ""
|
1915 |
"You can now download your Squirrly settings in an sql file before you go "
|
1916 |
"ahead and import the SEO settings from another plugin. That way, you can "
|
1917 |
"always go back to your Squirrly settings. "
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: view/BlockImport.php:102
|
1921 |
msgid "Backup & Restore Squirrly Settings"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: view/BlockImport.php:106
|
1925 |
msgid "Backup Settings"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: view/BlockImport.php:107
|
1929 |
msgid "Restore Settings"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: view/BlockImport.php:118 view/BlockImport.php:140
|
1933 |
msgid "Are you sure you want to restore your settings?"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: view/BlockImport.php:123
|
1937 |
msgid "Backup & Restore all the pages optimized with Squirrly SEO"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: view/BlockImport.php:127
|
1941 |
msgid "Backup SEO"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: view/BlockImport.php:128
|
1945 |
msgid "Restore SEO"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: view/BlockImport.php:134
|
1949 |
msgid "Upload the file with the saved Squirrly SEO SQL file"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: view/BlockImport.php:155
|
1953 |
msgid "Click to reset all the saved setting to default."
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: view/BlockImport.php:159
|
1957 |
msgid "Are you sure you want to remove all the saved settings?"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: view/BlockImport.php:159
|
1961 |
msgid "Reset Settings"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: view/BlockImport.php:165
|
1965 |
msgid ""
|
1966 |
"Note! Make sure you backup your data first in case you change your mind."
|
1967 |
msgstr ""
|
1992 |
msgid "Use Squirrly Live Assistant"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: view/BlockPatterns.php:39
|
1996 |
msgid "Use Squirrly Patterns"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
# @ squirrly-seo
|
2000 |
+
#: view/BlockPatterns.php:43 view/BlockPatterns.php:134
|
2001 |
+
#: view/BlockPatterns.php:148 view/BlockPatterns.php:165
|
2002 |
+
#: view/BlockSettings.php:137 view/BlockSettings.php:148
|
2003 |
+
#: view/BlockSettings.php:159 view/BlockSettings.php:170
|
2004 |
+
#: view/BlockSettings.php:181 view/BlockSettings.php:193
|
2005 |
+
#: view/BlockSettings.php:361 view/BlockSettings.php:416
|
2006 |
+
#: view/BlockSettingsSeo.php:56 view/BlockSettingsSeo.php:98
|
2007 |
+
#: view/BlockSettingsSeo.php:115 view/BlockSettingsSeo.php:131
|
2008 |
+
#: view/BlockSettingsSeo.php:147 view/BlockSettingsSeo.php:163
|
2009 |
+
#: view/BlockSettingsSeo.php:179 view/BlockSettingsSeo.php:195
|
2010 |
+
#: view/BlockSettingsSeo.php:223 view/BlockSettingsSeo.php:239
|
2011 |
+
#: view/BlockSettingsSeo.php:255 view/BlockSettingsSeo.php:363
|
2012 |
+
#: view/BlockSettingsSeo.php:414 view/BlockSettingsSeo.php:606
|
2013 |
+
#: view/BlockSettingsSeo.php:638 view/BlockSettingsSeo.php:646
|
2014 |
+
#: view/BlockSettingsSeo.php:744 view/BlockSettingsSeo.php:755
|
2015 |
+
#: view/BlockSettingsSeo.php:1103 view/FrontMenu.php:71 view/FrontMenu.php:530
|
2016 |
#: view/FrontMenu.php:543 view/FrontMenu.php:556
|
2017 |
msgid "Yes"
|
2018 |
msgstr "Ja"
|
2019 |
|
2020 |
# @ squirrly-seo
|
2021 |
+
#: view/BlockPatterns.php:45 view/BlockPatterns.php:136
|
2022 |
+
#: view/BlockPatterns.php:150 view/BlockPatterns.php:167
|
2023 |
+
#: view/BlockSettings.php:139 view/BlockSettings.php:150
|
2024 |
+
#: view/BlockSettings.php:161 view/BlockSettings.php:172
|
2025 |
+
#: view/BlockSettings.php:183 view/BlockSettings.php:195
|
2026 |
+
#: view/BlockSettings.php:363 view/BlockSettings.php:418
|
2027 |
+
#: view/BlockSettingsSeo.php:58 view/BlockSettingsSeo.php:100
|
2028 |
+
#: view/BlockSettingsSeo.php:117 view/BlockSettingsSeo.php:133
|
2029 |
+
#: view/BlockSettingsSeo.php:149 view/BlockSettingsSeo.php:165
|
2030 |
+
#: view/BlockSettingsSeo.php:181 view/BlockSettingsSeo.php:197
|
2031 |
+
#: view/BlockSettingsSeo.php:225 view/BlockSettingsSeo.php:241
|
2032 |
+
#: view/BlockSettingsSeo.php:257 view/BlockSettingsSeo.php:365
|
2033 |
+
#: view/BlockSettingsSeo.php:416 view/BlockSettingsSeo.php:608
|
2034 |
+
#: view/BlockSettingsSeo.php:640 view/BlockSettingsSeo.php:648
|
2035 |
+
#: view/BlockSettingsSeo.php:746 view/BlockSettingsSeo.php:757
|
2036 |
+
#: view/BlockSettingsSeo.php:1105 view/FrontMenu.php:73 view/FrontMenu.php:532
|
2037 |
#: view/FrontMenu.php:545 view/FrontMenu.php:558
|
2038 |
msgid "No"
|
2039 |
msgstr "Nein"
|
2040 |
|
2041 |
+
#: view/BlockPatterns.php:51
|
2042 |
msgid ""
|
2043 |
"Control how post types are displayed on your site and within search engine "
|
2044 |
"results and social media feeds."
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: view/BlockPatterns.php:52
|
2048 |
msgid ""
|
2049 |
"In Squirrly, each post type in your site comes with a predefined posting "
|
2050 |
"pattern when displayed onto your website. However, based on your site's "
|
2052 |
"include."
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: view/BlockPatterns.php:53
|
2056 |
msgid ""
|
2057 |
"Once you set up a pattern for a particular post type, only the content "
|
2058 |
"required by your custom sequence will be displayed."
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#: view/BlockPatterns.php:54
|
2062 |
#, php-format
|
2063 |
msgid ""
|
2064 |
"Squirrly lets you see how the customized patterns will apply when posts/"
|
2068 |
"information."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: view/BlockPatterns.php:59
|
2072 |
msgid "Set the custom patterns for each post type"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: view/BlockPatterns.php:67
|
2076 |
msgid "+ Add Post Type"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: view/BlockPatterns.php:67
|
2080 |
msgid "Add a post type from your Wordpress website"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: view/BlockPatterns.php:70
|
2084 |
msgid "Add Post Type"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: view/BlockPatterns.php:87
|
2088 |
msgid "Add"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: view/BlockPatterns.php:97
|
2092 |
#, php-format
|
2093 |
msgid "Are you sure you want to remove the post type: %s"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: view/BlockPatterns.php:97
|
2097 |
msgid "Remove Post Type"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: view/BlockPatterns.php:108 view/FrontMenu.php:204
|
2101 |
msgid "Description"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: view/BlockPatterns.php:114
|
2105 |
msgid "Separator"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: view/BlockPatterns.php:129
|
2109 |
msgid "Let Google Index it"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: view/BlockPatterns.php:143
|
2113 |
msgid "Pass Link Juice"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: view/BlockPatterns.php:157
|
2117 |
msgid "Do SEO"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: view/BlockPatterns.php:201 view/BlockSettingsSeo.php:29
|
2121 |
+
#: view/BlockSettingsSeo.php:1155
|
2122 |
msgid "Save SEO"
|
2123 |
msgstr ""
|
2124 |
|
2152 |
"Rank Option%s. "
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: view/BlockPostsAnalytics.php:48
|
2156 |
msgid ""
|
2157 |
"Don't see all your pages here? Make sure you optimize them with Squirrly, so "
|
2158 |
"that we can track them, and display you the analytics"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
# @ squirrly-seo
|
2202 |
+
#: view/BlockSettings.php:24 view/BlockSettings.php:454
|
2203 |
msgid "Save settings"
|
2204 |
msgstr "Einstellungen speichern"
|
2205 |
|
2206 |
+
#: view/BlockSettings.php:43
|
2207 |
msgid "Post/Page Edit"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: view/BlockSettings.php:44
|
2211 |
#, php-format
|
2212 |
msgid "%sThe right method in working with Squirrly, SEO plugin%s"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: view/BlockSettings.php:45
|
2216 |
#, php-format
|
2217 |
msgid "%sGetting inspired with Squirrly WordPress SEO plugin%s"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: view/BlockSettings.php:47
|
2221 |
#, php-format
|
2222 |
msgid "%sThere is a New SEO Live Assistant from Squirrly%s"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: view/BlockSettings.php:48
|
2226 |
#, php-format
|
2227 |
msgid "%sHow to create Human friendly content with the WordPress SEO plugin?%s"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: view/BlockSettings.php:54
|
2231 |
msgid "Inspiration Box G17"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: view/BlockSettings.php:57 view/BlockSettings.php:58
|
2235 |
+
#: view/BlockSettings.php:71 view/BlockSettings.php:72
|
2236 |
+
#: view/BlockSettings.php:85 view/BlockSettings.php:86
|
2237 |
+
#: view/BlockSettingsSeo.php:69 view/BlockSettingsSeo.php:81
|
2238 |
+
#: view/BlockSettingsSeo.php:272 view/BlockSettingsSeo.php:586
|
2239 |
+
#: view/BlockSettingsSeo.php:918 view/BlockSettingsSeo.php:1012
|
2240 |
+
#: view/BlockSettingsSeo.php:1024 view/BlockSettingsSeo.php:1036
|
2241 |
msgid "see how this improved since 2016"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: view/BlockSettings.php:68
|
2245 |
msgid "Keyword Research G17"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: view/BlockSettings.php:82
|
2249 |
msgid "Inner Links G17"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: view/BlockSettings.php:95
|
2253 |
msgid "Load Squirrly Live Assistant for"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: view/BlockSettings.php:99 view/BlockSettingsSeo.php:380
|
2257 |
+
#: view/BlockSettingsSeo.php:783
|
2258 |
msgid "Posts"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: view/BlockSettings.php:102 view/BlockSettingsSeo.php:383
|
2262 |
+
#: view/BlockSettingsSeo.php:814
|
2263 |
msgid "Pages"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: view/BlockSettings.php:106 view/BlockSettingsSeo.php:387
|
2267 |
+
#: view/BlockSettingsSeo.php:799
|
2268 |
msgid "Products"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: view/BlockSettings.php:142
|
2272 |
msgid ""
|
2273 |
"Show <strong>Squirrly Tooltips</strong> when posting a new article (e.g. "
|
2274 |
"\"Enter a keyword\")."
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: view/BlockSettings.php:153
|
2278 |
msgid ""
|
2279 |
"Always show <strong>Keyword Research</strong> about the selected keyword."
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: view/BlockSettings.php:164
|
2283 |
msgid ""
|
2284 |
"Send optimization data to Squirrly Cloud when the post is saved (don't use "
|
2285 |
"cron)"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: view/BlockSettings.php:175
|
2289 |
msgid "Use <strong> the NEW version of the SEO Live Assistant</strong>."
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: view/BlockSettings.php:186
|
2293 |
msgid ""
|
2294 |
"Download <strong>remote images</strong> in your <strong>Media Library</"
|
2295 |
"strong> for the new posts."
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: view/BlockSettings.php:198
|
2299 |
msgid ""
|
2300 |
"Correct my <strong>feed links</strong> and <strong>images</strong> (convert "
|
2301 |
"from relative to absolute)."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: view/BlockSettings.php:208
|
2305 |
msgid "Google Rank Options"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: view/BlockSettings.php:209
|
2309 |
#, php-format
|
2310 |
msgid "%sCountry targeting%s"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
+
#: view/BlockSettings.php:210
|
2314 |
#, php-format
|
2315 |
msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: view/BlockSettings.php:217
|
2319 |
msgid ""
|
2320 |
"Select the Google country for which Squirrly will check the Google rank."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: view/BlockSettings.php:222
|
2324 |
msgid "Default"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: view/BlockSettings.php:223
|
2328 |
msgid "American Samoa"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: view/BlockSettings.php:224
|
2332 |
msgid "Anguilla"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: view/BlockSettings.php:225
|
2336 |
msgid "Antigua and Barbuda"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: view/BlockSettings.php:226
|
2340 |
msgid "Argentina"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: view/BlockSettings.php:227
|
2344 |
msgid "Australia"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: view/BlockSettings.php:228
|
2348 |
msgid "Austria"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: view/BlockSettings.php:229
|
2352 |
msgid "Azerbaijan"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: view/BlockSettings.php:230
|
2356 |
msgid "Belgium"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: view/BlockSettings.php:231
|
2360 |
msgid "Brazil"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: view/BlockSettings.php:232
|
2364 |
msgid "British Virgin Islands"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: view/BlockSettings.php:233
|
2368 |
msgid "Burundi"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: view/BlockSettings.php:234
|
2372 |
msgid "Bulgaria"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: view/BlockSettings.php:235
|
2376 |
msgid "Canada"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: view/BlockSettings.php:236
|
2380 |
msgid "Chad"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: view/BlockSettings.php:237
|
2384 |
msgid "Chile"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: view/BlockSettings.php:238
|
2388 |
msgid "Colombia"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: view/BlockSettings.php:239
|
2392 |
msgid "Costa Rica"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: view/BlockSettings.php:240
|
2396 |
msgid "Côte d'Ivoire"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: view/BlockSettings.php:241
|
2400 |
msgid "Cuba"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: view/BlockSettings.php:242
|
2404 |
+
msgid "Croatia"
|
2405 |
+
msgstr ""
|
2406 |
+
|
2407 |
+
#: view/BlockSettings.php:243
|
2408 |
msgid "Czech Republic"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: view/BlockSettings.php:244
|
2412 |
msgid "Dem. Rep. of the Congo"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
+
#: view/BlockSettings.php:245
|
2416 |
msgid "Denmark"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: view/BlockSettings.php:246
|
2420 |
msgid "Djibouti"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: view/BlockSettings.php:247
|
2424 |
msgid "Dominican Republic"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: view/BlockSettings.php:248
|
2428 |
msgid "Ecuador"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: view/BlockSettings.php:249
|
2432 |
msgid "El Salvador"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: view/BlockSettings.php:250
|
2436 |
msgid "Estonia"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: view/BlockSettings.php:251
|
2440 |
msgid "Federated States of Micronesia"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: view/BlockSettings.php:252
|
2444 |
msgid "Fiji"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: view/BlockSettings.php:253
|
2448 |
msgid "Finland"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: view/BlockSettings.php:254
|
2452 |
msgid "France"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: view/BlockSettings.php:255
|
2456 |
msgid "The Gambia"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: view/BlockSettings.php:256
|
2460 |
msgid "Georgia"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: view/BlockSettings.php:257
|
2464 |
msgid "Germany"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: view/BlockSettings.php:258
|
2468 |
+
msgid "Ghana "
|
2469 |
+
msgstr ""
|
2470 |
+
|
2471 |
+
#: view/BlockSettings.php:259
|
2472 |
msgid "Gibraltar"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: view/BlockSettings.php:260
|
2476 |
msgid "Greece"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: view/BlockSettings.php:261
|
2480 |
msgid "Greenland"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: view/BlockSettings.php:262
|
2484 |
msgid "Guernsey"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: view/BlockSettings.php:263
|
2488 |
msgid "Honduras"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: view/BlockSettings.php:264
|
2492 |
msgid "Hong Kong"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: view/BlockSettings.php:265
|
2496 |
msgid "Hungary"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: view/BlockSettings.php:266
|
2500 |
msgid "India"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: view/BlockSettings.php:267
|
2504 |
msgid "Indonesia"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: view/BlockSettings.php:268
|
2508 |
msgid "Ireland"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: view/BlockSettings.php:269
|
2512 |
msgid "Isle of Man"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: view/BlockSettings.php:270
|
2516 |
msgid "Israel"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: view/BlockSettings.php:271
|
2520 |
msgid "Italy"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: view/BlockSettings.php:272
|
2524 |
msgid "Jamaica"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: view/BlockSettings.php:273
|
2528 |
msgid "Japan"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: view/BlockSettings.php:274
|
2532 |
msgid "Jersey"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: view/BlockSettings.php:275
|
2536 |
msgid "Kazakhstan"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: view/BlockSettings.php:276
|
2540 |
msgid "Korea"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: view/BlockSettings.php:277
|
2544 |
msgid "Latvia"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: view/BlockSettings.php:278
|
2548 |
msgid "Lesotho"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: view/BlockSettings.php:279
|
2552 |
msgid "Liechtenstein"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: view/BlockSettings.php:280
|
2556 |
msgid "Lithuania"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: view/BlockSettings.php:281
|
2560 |
msgid "Luxembourg"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
#: view/BlockSettings.php:282
|
2564 |
msgid "Malawi"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: view/BlockSettings.php:283
|
2568 |
msgid "Malaysia"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: view/BlockSettings.php:284
|
2572 |
msgid "Malta"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: view/BlockSettings.php:285
|
2576 |
msgid "Mauritius"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: view/BlockSettings.php:286
|
2580 |
msgid "México"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: view/BlockSettings.php:287
|
2584 |
msgid "Montserrat"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: view/BlockSettings.php:288
|
2588 |
msgid "Namibia"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: view/BlockSettings.php:289
|
2592 |
msgid "Nepal"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: view/BlockSettings.php:290
|
2596 |
msgid "Netherlands"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: view/BlockSettings.php:291
|
2600 |
msgid "New Zealand"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: view/BlockSettings.php:292
|
2604 |
msgid "Nicaragua"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: view/BlockSettings.php:293
|
2608 |
+
msgid "Nigeria"
|
2609 |
+
msgstr ""
|
2610 |
+
|
2611 |
+
#: view/BlockSettings.php:294
|
2612 |
msgid "Norfolk Island"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: view/BlockSettings.php:295
|
2616 |
msgid "Norway"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: view/BlockSettings.php:296
|
2620 |
msgid "Pakistan"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: view/BlockSettings.php:297
|
2624 |
msgid "Panamá"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: view/BlockSettings.php:298
|
2628 |
msgid "Paraguay"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: view/BlockSettings.php:299
|
2632 |
msgid "Perú"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: view/BlockSettings.php:300
|
2636 |
msgid "Philippines"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: view/BlockSettings.php:301
|
2640 |
msgid "Pitcairn Islands"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
+
#: view/BlockSettings.php:302
|
2644 |
msgid "Poland"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: view/BlockSettings.php:303
|
2648 |
msgid "Portugal"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: view/BlockSettings.php:304
|
2652 |
msgid "Puerto Rico"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: view/BlockSettings.php:305
|
2656 |
msgid "Rep. of the Congo"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: view/BlockSettings.php:306
|
2660 |
msgid "Romania"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: view/BlockSettings.php:307
|
2664 |
msgid "Russia"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: view/BlockSettings.php:308
|
2668 |
msgid "Rwanda"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: view/BlockSettings.php:309
|
2672 |
msgid "Saint Helena"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: view/BlockSettings.php:310
|
2676 |
msgid "San Marino"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: view/BlockSettings.php:311
|
2680 |
msgid "Saudi Arabia"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: view/BlockSettings.php:312
|
2684 |
msgid "Singapore"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: view/BlockSettings.php:313
|
2688 |
msgid "Slovakia"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: view/BlockSettings.php:314
|
2692 |
msgid "South Africa"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: view/BlockSettings.php:315
|
2696 |
msgid "Spain"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: view/BlockSettings.php:316
|
2700 |
msgid "Sri Lanka"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: view/BlockSettings.php:317
|
2704 |
msgid "Sweden"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: view/BlockSettings.php:318
|
2708 |
msgid "Switzerland"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: view/BlockSettings.php:319
|
2712 |
msgid "Taiwan"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: view/BlockSettings.php:320
|
2716 |
msgid "Thailand"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: view/BlockSettings.php:321
|
2720 |
msgid "Trinidad and Tobago"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: view/BlockSettings.php:322
|
2724 |
msgid "Turkey"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: view/BlockSettings.php:323
|
2728 |
msgid "Ukraine"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: view/BlockSettings.php:324
|
2732 |
msgid "United Arab Emirates"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: view/BlockSettings.php:325
|
2736 |
msgid "United Kingdom"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: view/BlockSettings.php:326
|
2740 |
msgid "United States"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: view/BlockSettings.php:327
|
2744 |
msgid "Uruguay"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: view/BlockSettings.php:328
|
2748 |
msgid "Uzbekistan"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: view/BlockSettings.php:329
|
2752 |
msgid "Vanuatu"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: view/BlockSettings.php:330
|
2756 |
msgid "Venezuela"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: view/BlockSettings.php:331
|
2760 |
msgid "Vietnam"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
+
#: view/BlockSettings.php:337
|
2764 |
#, php-format
|
2765 |
msgid ""
|
2766 |
"Select how many pages to be checked in the Performance Analytics section "
|
2767 |
"every hour. %s(not recommended for shared hosting plan)%s"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: view/BlockSettings.php:344
|
2771 |
msgid "page"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: view/BlockSettings.php:346
|
2775 |
msgid "pages"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: view/BlockSettings.php:352
|
2779 |
msgid "h"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: view/BlockSettings.php:366
|
2783 |
msgid ""
|
2784 |
"Restricts search results to results originating in the above particular "
|
2785 |
"country."
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: view/BlockSettings.php:372
|
2789 |
#, php-format
|
2790 |
msgid ""
|
2791 |
"You have the %sBusiness Plan%s active. Rankings are now checked by Squirrly "
|
2792 |
"Cloud and will be shown in %sAdvanced Analytics%s"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
+
#: view/BlockSettings.php:376
|
2796 |
msgid "Select how many rank queries you want Squirrly to do every day. "
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: view/BlockSettings.php:381 view/BlockSettings.php:383
|
2800 |
+
#: view/BlockSettings.php:396
|
2801 |
msgid "queries"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: view/BlockSettings.php:381 view/BlockSettings.php:383
|
2805 |
+
#: view/BlockSettings.php:396
|
2806 |
msgid "day"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
+
#: view/BlockSettings.php:389
|
2810 |
msgid ""
|
2811 |
"Note: if you're on the free trial, you get 35 queries for the 7 days of "
|
2812 |
"trial."
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: view/BlockSettings.php:408
|
2816 |
msgid "Robots.txt Editor"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: view/BlockSettings.php:409
|
2820 |
#, php-format
|
2821 |
msgid "%sLearn about robots.txt files%s"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: view/BlockSettings.php:410
|
2825 |
#, php-format
|
2826 |
msgid "%sHow to use Robots.txt%s"
|
2827 |
msgstr ""
|
2828 |
|
2829 |
+
# @ squirrly-seo
|
2830 |
+
#: view/BlockSettings.php:412
|
2831 |
+
#, fuzzy
|
2832 |
+
#| msgid "Squirrly Options"
|
2833 |
+
msgid "Use Squirrly Robots"
|
2834 |
+
msgstr "Squirrly Optionen"
|
2835 |
+
|
2836 |
+
#: view/BlockSettings.php:427
|
2837 |
msgid "Edit the Robots.txt data"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: view/BlockSettings.php:440
|
2841 |
msgid ""
|
2842 |
"Does not physically create the robots.txt file. The best option for "
|
2843 |
"Multisites."
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: view/BlockSettings.php:445
|
2847 |
msgid "Save Robots"
|
2848 |
msgstr ""
|
2849 |
|
2851 |
msgid "SEO"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: view/BlockSettingsSeo.php:31 view/BlockSettingsSeo.php:207
|
2855 |
msgid "Check for SEO issues in your site"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: view/BlockSettingsSeo.php:49
|
2859 |
msgid "Let Squirrly SEO Optimize This Blog"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: view/BlockSettingsSeo.php:50
|
2863 |
#, php-format
|
2864 |
msgid "%sIs Squirrly SEO better than WordPress SEO by Yoast?%s"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
+
#: view/BlockSettingsSeo.php:52
|
2868 |
msgid ""
|
2869 |
"Activate the built-in SEO settings from Squirrly by switching Yes below. "
|
2870 |
"<strong>Works well with Multisites and Ecommerce.</strong>"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
+
#: view/BlockSettingsSeo.php:66
|
2874 |
msgid "New SEO Settings For Google 2017"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
+
#: view/BlockSettingsSeo.php:78
|
2878 |
msgid "Fastest SEO Plugin in 2017"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
# @ squirrly-seo
|
2882 |
+
#: view/BlockSettingsSeo.php:89
|
2883 |
msgid "What does Squirrly automatically do for SEO?"
|
2884 |
msgstr "Was tut Squirrly automatisch für SEO?"
|
2885 |
|
2886 |
+
#: view/BlockSettingsSeo.php:103
|
2887 |
#, php-format
|
2888 |
msgid ""
|
2889 |
"adds <strong>%scanonical link%s</strong>, <strong>%srel=\"prev\" and rel="
|
2890 |
"\"next\"%s</strong> metas in Header"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
+
#: view/BlockSettingsSeo.php:120
|
2894 |
msgid "adds the required METAs (<strong>Dublin Core, Language</strong>, etc.)"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: view/BlockSettingsSeo.php:136
|
2898 |
#, php-format
|
2899 |
msgid "adds the <strong>%sXML Sitemap%s</strong> for search engines: %s"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: view/BlockSettingsSeo.php:152
|
2903 |
#, php-format
|
2904 |
msgid "adds <strong>Feed style</strong> to your blog feed (eg. %s/feed)"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: view/BlockSettingsSeo.php:168
|
2908 |
#, php-format
|
2909 |
msgid ""
|
2910 |
"adds the <strong>%sfavicon.ico%s</strong> and the <strong>%sicons for "
|
2911 |
"tablets and smartphones%s</strong>"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: view/BlockSettingsSeo.php:184
|
2915 |
#, php-format
|
2916 |
msgid "adds the <strong>%sJson-LD%s</strong> metas for Semantic SEO"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: view/BlockSettingsSeo.php:200
|
2920 |
#, php-format
|
2921 |
msgid ""
|
2922 |
"adds the <strong>%sNoindex%s</strong>, <strong>%sNofollow%s</strong> metas "
|
2923 |
"for your desired pages"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: view/BlockSettingsSeo.php:204
|
2927 |
msgid ""
|
2928 |
"Note! By switching the <strong>Json-LD</strong>, <strong>XML Sitemap</"
|
2929 |
"strong> and <strong>Favicon</strong> on, you open new options below"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: view/BlockSettingsSeo.php:213
|
2933 |
msgid "First Page Optimization"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: view/BlockSettingsSeo.php:214
|
2937 |
#, php-format
|
2938 |
msgid "%sThe best SEO approach to Meta information%s"
|
2939 |
msgstr ""
|
2940 |
|
2941 |
+
#: view/BlockSettingsSeo.php:215
|
2942 |
msgid "Optimize the <strong>Titles</strong>"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
+
#: view/BlockSettingsSeo.php:230
|
2946 |
#, php-format
|
2947 |
msgid "Optimize %sDescriptions%s "
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: view/BlockSettingsSeo.php:246
|
2951 |
#, php-format
|
2952 |
msgid "Optimize %sKeywords%s "
|
2953 |
msgstr ""
|
2954 |
|
2955 |
+
#: view/BlockSettingsSeo.php:269
|
2956 |
msgid "Squirrly Snippet G17-True Render"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
+
#: view/BlockSettingsSeo.php:293
|
2960 |
msgid "First Page Optimization:"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
# @ squirrly-seo
|
2964 |
+
#: view/BlockSettingsSeo.php:299
|
2965 |
msgid "Title:"
|
2966 |
msgstr "Titel:"
|
2967 |
|
2968 |
+
#: view/BlockSettingsSeo.php:304
|
2969 |
msgid "Tips: Length 10-75 chars"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
# @ squirrly-seo
|
2973 |
+
#: view/BlockSettingsSeo.php:308
|
2974 |
msgid "Description:"
|
2975 |
msgstr "Beschreibung:"
|
2976 |
|
2977 |
+
#: view/BlockSettingsSeo.php:312
|
2978 |
msgid "Tips: Length 70-320 chars"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
# @ squirrly-seo
|
2982 |
+
#: view/BlockSettingsSeo.php:315
|
2983 |
msgid "Keywords:"
|
2984 |
msgstr "Schlüsselwörter:"
|
2985 |
|
2986 |
+
#: view/BlockSettingsSeo.php:316
|
2987 |
msgid "Tips: use 2-4 keywords"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: view/BlockSettingsSeo.php:319
|
2991 |
msgid "OG Image:"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: view/BlockSettingsSeo.php:320
|
2995 |
msgid "Select Open Graph Image"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: view/BlockSettingsSeo.php:325
|
2999 |
msgid "First Page Preview (Title, Description, Keywords)"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: view/BlockSettingsSeo.php:327
|
3003 |
msgid "Squirrly Snippet"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: view/BlockSettingsSeo.php:339
|
3007 |
msgid ""
|
3008 |
"If you don't see any changes in your Google snippet, check if other SEO "
|
3009 |
"themes or plugins affect Squirrly."
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: view/BlockSettingsSeo.php:343
|
3013 |
#, php-format
|
3014 |
msgid ""
|
3015 |
"Use the %s<strong>Squirrly Snippet Tool</strong>%s while editing a Post/Page "
|
3016 |
"to customize the Title and the Description."
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
#: view/BlockSettingsSeo.php:351
|
3020 |
msgid "SEO for all post/pages"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
#: view/BlockSettingsSeo.php:352
|
3024 |
#, php-format
|
3025 |
msgid ""
|
3026 |
"To customize the Title and Description for all the Posts and Pages in your "
|
3027 |
"site use the %sSquirrly Snippet Tool%s"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: view/BlockSettingsSeo.php:354
|
3031 |
msgid "Add the Post tags in <strong>Keyword META</strong>."
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: view/BlockSettingsSeo.php:376
|
3035 |
msgid "Exclude Squirrly from loading in these Post Types"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: view/BlockSettingsSeo.php:377
|
3039 |
msgid ""
|
3040 |
"DO NOT CHECK any Post Type if you want Squirrly to load for all posts types. "
|
3041 |
msgstr ""
|
3042 |
|
3043 |
+
#: view/BlockSettingsSeo.php:419
|
3044 |
msgid "Load <strong>Squirrly SEO Snippet in Frontend</strong> too."
|
3045 |
msgstr ""
|
3046 |
|
3047 |
+
#: view/BlockSettingsSeo.php:427
|
3048 |
msgid "Social Media Options"
|
3049 |
msgstr ""
|
3050 |
|
3051 |
+
#: view/BlockSettingsSeo.php:429
|
3052 |
msgid "Select the language you're using on Social Media"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
+
#: view/BlockSettingsSeo.php:575
|
3056 |
#, php-format
|
3057 |
msgid "%sHow to pop out in Social Media with your links%s"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: view/BlockSettingsSeo.php:576
|
3061 |
#, php-format
|
3062 |
msgid "%sGet busy with Facebook’s new Search Engine functions%s"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
+
#: view/BlockSettingsSeo.php:577
|
3066 |
#, php-format
|
3067 |
msgid ""
|
3068 |
"%sHow I Added Twitter Cards in My WordPress for Better Inbound Marketing%s"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
+
#: view/BlockSettingsSeo.php:583
|
3072 |
msgid "Open Graph G17 - 2017 Settings"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
+
#: view/BlockSettingsSeo.php:595
|
3076 |
msgid "Squirrly Adds the Best Codes for Open Graph and Twitter Cards"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
+
#: view/BlockSettingsSeo.php:611
|
3080 |
#, php-format
|
3081 |
msgid ""
|
3082 |
"Add the Social Open Graph protocol so that your Facebook shares look good. "
|
3083 |
"%sCheck here%s. "
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: view/BlockSettingsSeo.php:615
|
3087 |
msgid "Facebook App ID"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: view/BlockSettingsSeo.php:616
|
3091 |
#, php-format
|
3092 |
msgid "Add the %sFacebook App%s ID "
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: view/BlockSettingsSeo.php:633
|
3096 |
msgid "You need to add your <strong>Twitter account</strong> below"
|
3097 |
msgstr ""
|
3098 |
|
3099 |
+
#: view/BlockSettingsSeo.php:643
|
3100 |
msgid "Add the <strong>Twitter card</strong> in your tweets. "
|
3101 |
msgstr ""
|
3102 |
|
3103 |
+
#: view/BlockSettingsSeo.php:651
|
3104 |
#, php-format
|
3105 |
msgid ""
|
3106 |
"Use <strong>Twitter %ssummary_large_image%s</strong> for your Twitter Card. "
|
3107 |
msgstr ""
|
3108 |
|
3109 |
+
#: view/BlockSettingsSeo.php:663
|
3110 |
msgid "Social Media Accounts"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
+
#: view/BlockSettingsSeo.php:664
|
3114 |
#, php-format
|
3115 |
msgid "%sLink your Google+ profile to the content you create%s"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: view/BlockSettingsSeo.php:665
|
3119 |
#, php-format
|
3120 |
msgid ""
|
3121 |
"%sTwitter account is mandatory for <strong>Twitter Card Validation</strong>%s"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: view/BlockSettingsSeo.php:666
|
3125 |
#, php-format
|
3126 |
msgid ""
|
3127 |
"%sAdd all your social accounts for <strong>JSON-LD Semantic SEO</strong>%s"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: view/BlockSettingsSeo.php:667 view/BlockSettingsSeo.php:909
|
3131 |
#, php-format
|
3132 |
msgid "%sSpecify your social profiles to Google%s"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: view/BlockSettingsSeo.php:675
|
3136 |
msgid "Your Twitter Account:"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: view/BlockSettingsSeo.php:682
|
3140 |
msgid "Google Plus Profile:"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
+
#: view/BlockSettingsSeo.php:689
|
3144 |
msgid "Facebook Profile:"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
+
#: view/BlockSettingsSeo.php:696
|
3148 |
msgid "Linkedin Profile:"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
+
#: view/BlockSettingsSeo.php:703
|
3152 |
msgid "Pinterest Profile:"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
+
#: view/BlockSettingsSeo.php:710
|
3156 |
msgid "Instagram Profile:"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
+
#: view/BlockSettingsSeo.php:717
|
3160 |
msgid "Youtube Profile:"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
+
#: view/BlockSettingsSeo.php:727
|
3164 |
msgid "XML Sitemap for Google"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: view/BlockSettingsSeo.php:728
|
3168 |
msgid ""
|
3169 |
"Squirrly Sitemap is the fastest way to tell Google about the pages on your "
|
3170 |
"site. <strong>Supports Multisites, Google News, Images, Videos, Custom Post "
|
3171 |
"Types, Custom Taxonomies and Ecommerce products</strong>"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: view/BlockSettingsSeo.php:729
|
3175 |
#, php-format
|
3176 |
msgid "%sHow to submit your sitemap.xml in Google Webmaster Tool%s"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: view/BlockSettingsSeo.php:730
|
3180 |
#, php-format
|
3181 |
msgid ""
|
3182 |
"%s10 Vital To Dos to Feed Your SEO Content Machine After You Post Articles%s"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: view/BlockSettingsSeo.php:731
|
3186 |
#, php-format
|
3187 |
msgid ""
|
3188 |
"For Google News Sitemap, ensure that your site is included in %sGoogle News%s"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
+
#: view/BlockSettingsSeo.php:740
|
3192 |
msgid "XML Sitemap Options"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
+
#: view/BlockSettingsSeo.php:749
|
3196 |
msgid "Ping your sitemap to Google and Bing when a new post is published"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
+
#: view/BlockSettingsSeo.php:760
|
3200 |
+
msgid "Add all languages in the same sitemap"
|
3201 |
+
msgstr ""
|
3202 |
+
|
3203 |
+
#: view/BlockSettingsSeo.php:767
|
3204 |
msgid "Build Sitemaps for"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: view/BlockSettingsSeo.php:772
|
3208 |
+
msgid "Home Page"
|
3209 |
+
msgstr ""
|
3210 |
+
|
3211 |
+
#: view/BlockSettingsSeo.php:779
|
3212 |
msgid "Google News"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: view/BlockSettingsSeo.php:787
|
3216 |
+
msgid "Attachments"
|
3217 |
+
msgstr ""
|
3218 |
+
|
3219 |
+
#: view/BlockSettingsSeo.php:793
|
3220 |
msgid "Categories"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
+
#: view/BlockSettingsSeo.php:807
|
3224 |
msgid "Tags"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
+
#: view/BlockSettingsSeo.php:819
|
3228 |
msgid "Archive"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: view/BlockSettingsSeo.php:822
|
3232 |
msgid "Custom Taxonomies"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
+
#: view/BlockSettingsSeo.php:825
|
3236 |
msgid "Custom Posts"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
+
#: view/BlockSettingsSeo.php:828
|
3240 |
#, php-format
|
3241 |
msgid ""
|
3242 |
"Select only the Post Types that have links in them. Your sitemap will be %s"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
+
#: view/BlockSettingsSeo.php:832
|
3246 |
msgid "Include in Sitemaps"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
+
#: view/BlockSettingsSeo.php:835
|
3250 |
msgid "<strong>Images</strong> from posts/pages"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: view/BlockSettingsSeo.php:838
|
3254 |
msgid "<strong>Videos</strong> (embeded and local media)"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
+
#: view/BlockSettingsSeo.php:843
|
3258 |
msgid "How often do you update your site?"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: view/BlockSettingsSeo.php:845
|
3262 |
+
msgid "every hour"
|
3263 |
+
msgstr ""
|
3264 |
+
|
3265 |
+
#: view/BlockSettingsSeo.php:846
|
3266 |
msgid "every day"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
+
#: view/BlockSettingsSeo.php:847
|
3270 |
msgid "1-3 times per week"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
+
#: view/BlockSettingsSeo.php:848
|
3274 |
msgid "1-3 times per month"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
+
#: view/BlockSettingsSeo.php:849
|
3278 |
msgid "1-3 times per year"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
+
#: view/BlockSettingsSeo.php:853
|
3282 |
msgid "Feed Pagination: How many Posts per page to show in sitemap?"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
# @ squirrly-seo
|
3286 |
+
#: view/BlockSettingsSeo.php:868
|
3287 |
msgid "Change the Website Icon"
|
3288 |
msgstr "Ändern Sie das Website-Symbol"
|
3289 |
|
3290 |
+
#: view/BlockSettingsSeo.php:869
|
3291 |
msgid ""
|
3292 |
"Now, even tablet & smartphone browsers make use of your icons. This makes "
|
3293 |
"having a good favicon even more important."
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: view/BlockSettingsSeo.php:870
|
3297 |
#, php-format
|
3298 |
msgid ""
|
3299 |
"You can use %shttp://convertico.com/%s to convert your photo to icon and "
|
3301 |
msgstr ""
|
3302 |
|
3303 |
# @ squirrly-seo
|
3304 |
+
#: view/BlockSettingsSeo.php:876
|
3305 |
msgid "Upload file:"
|
3306 |
msgstr "Datei hochladen:"
|
3307 |
|
3308 |
# @ squirrly-seo
|
3309 |
+
#: view/BlockSettingsSeo.php:889 view/FrontMenu.php:327 view/FrontMenu.php:468
|
3310 |
msgid "Upload"
|
3311 |
msgstr "Hochladen"
|
3312 |
|
3313 |
# @ squirrly-seo
|
3314 |
+
#: view/BlockSettingsSeo.php:893
|
3315 |
msgid ""
|
3316 |
"If you don't see the new icon in your browser, empty the browser cache and "
|
3317 |
"refresh the page."
|
3320 |
"Cache und aktualisieren Sie die Seite."
|
3321 |
|
3322 |
# @ squirrly-seo
|
3323 |
+
#: view/BlockSettingsSeo.php:895
|
3324 |
msgid "File types: JPG, JPEG, GIF and PNG."
|
3325 |
msgstr "Dateitypen: JPG, JPEG, GIF und PNG."
|
3326 |
|
3327 |
+
#: view/BlockSettingsSeo.php:897
|
3328 |
msgid ""
|
3329 |
"Does not physically create the favicon.ico file. The best option for "
|
3330 |
"Multisites."
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: view/BlockSettingsSeo.php:905
|
3334 |
msgid "JSON-LD for Semantic SEO"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
+
#: view/BlockSettingsSeo.php:906
|
3338 |
msgid ""
|
3339 |
"Squirrly will automatically add the JSON-LD Structured Data in your site."
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: view/BlockSettingsSeo.php:907
|
3343 |
#, php-format
|
3344 |
msgid "%sJSON-LD's Big Day at Google%s"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: view/BlockSettingsSeo.php:908
|
3348 |
#, php-format
|
3349 |
msgid "%sGoogle Testing Tool%s"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: view/BlockSettingsSeo.php:915
|
3353 |
msgid "JSON-LD G17 - 2x More Options"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: view/BlockSettingsSeo.php:932
|
3357 |
msgid "Your site type:"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: view/BlockSettingsSeo.php:934
|
3361 |
msgid "Organization"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: view/BlockSettingsSeo.php:935
|
3365 |
msgid "Personal"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: view/BlockSettingsSeo.php:941
|
3369 |
msgid "Your Organization Name:"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: view/BlockSettingsSeo.php:942
|
3373 |
msgid "Your Name:"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: view/BlockSettingsSeo.php:946
|
3377 |
msgid "Job Title:"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: view/BlockSettingsSeo.php:950
|
3381 |
msgid "Logo Url:"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
+
#: view/BlockSettingsSeo.php:951
|
3385 |
msgid "Image Url:"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: view/BlockSettingsSeo.php:952
|
3389 |
msgid "Select Image"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: view/BlockSettingsSeo.php:956
|
3393 |
msgid "Contact Phone:"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: view/BlockSettingsSeo.php:960
|
3397 |
msgid "Contact Type:"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: view/BlockSettingsSeo.php:962
|
3401 |
msgid "Customer Service"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: view/BlockSettingsSeo.php:963
|
3405 |
msgid "Technical Support"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: view/BlockSettingsSeo.php:964
|
3409 |
msgid "Billing Support"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: view/BlockSettingsSeo.php:965
|
3413 |
msgid "Bill Payment"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: view/BlockSettingsSeo.php:966
|
3417 |
msgid "Sales"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
+
#: view/BlockSettingsSeo.php:967
|
3421 |
msgid "Reservations"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: view/BlockSettingsSeo.php:968
|
3425 |
msgid "Credit Card Support"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: view/BlockSettingsSeo.php:969
|
3429 |
msgid "Emergency"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: view/BlockSettingsSeo.php:970
|
3433 |
msgid "Baggage Tracking"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: view/BlockSettingsSeo.php:971
|
3437 |
msgid "Roadside Assistance"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: view/BlockSettingsSeo.php:972
|
3441 |
msgid "Package Tracking"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: view/BlockSettingsSeo.php:977
|
3445 |
msgid "Short Description:"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: view/BlockSettingsSeo.php:985
|
3449 |
msgid "Add your social accounts for Json-LD"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: view/BlockSettingsSeo.php:990
|
3453 |
msgid "How the search results will look like once Google grabs your data."
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: view/BlockSettingsSeo.php:999 view/BlockToolbar.php:8
|
3457 |
msgid "Tracking Tools"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: view/BlockSettingsSeo.php:1000
|
3461 |
#, php-format
|
3462 |
msgid "%sHow to Get the Most Out of Google Analytics%s"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
+
#: view/BlockSettingsSeo.php:1001
|
3466 |
#, php-format
|
3467 |
msgid "%sWhat is Facebook Pixel?%s"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
+
#: view/BlockSettingsSeo.php:1002
|
3471 |
#, php-format
|
3472 |
msgid "%sA Beginner’s Guide to Facebook Insights%s"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
+
#: view/BlockSettingsSeo.php:1009
|
3476 |
msgid "Google Tracking G17"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
+
#: view/BlockSettingsSeo.php:1021
|
3480 |
msgid "Facebook Tracking G17"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
+
#: view/BlockSettingsSeo.php:1033
|
3484 |
msgid "Rich Pins G17"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: view/BlockSettingsSeo.php:1050 view/BlockSettingsSeo.php:1060
|
3488 |
+
#: view/BlockSettingsSeo.php:1073
|
3489 |
#, php-format
|
3490 |
msgid "Facebook Admin ID (for %sInsights%s ):"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: view/BlockSettingsSeo.php:1053 view/BlockSettingsSeo.php:1063
|
3494 |
+
#: view/BlockSettingsSeo.php:1076
|
3495 |
msgid "Facebook ID or https://www.facebook.com/YourProfileName"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
+
#: view/BlockSettingsSeo.php:1068
|
3499 |
msgid "Add more Facebook Admin IDs"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
+
#: view/BlockSettingsSeo.php:1082
|
3503 |
#, php-format
|
3504 |
msgid "Google %sAnalytics ID%s:"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#: view/BlockSettingsSeo.php:1086
|
3508 |
+
msgid "Google Tracking Mode:"
|
3509 |
+
msgstr ""
|
3510 |
+
|
3511 |
+
#: view/BlockSettingsSeo.php:1088
|
3512 |
+
msgid "analytics.js"
|
3513 |
+
msgstr ""
|
3514 |
+
|
3515 |
+
#: view/BlockSettingsSeo.php:1089
|
3516 |
+
msgid "gtag.js"
|
3517 |
+
msgstr ""
|
3518 |
+
|
3519 |
+
#: view/BlockSettingsSeo.php:1095
|
3520 |
#, php-format
|
3521 |
msgid "Facebook %sPixel ID%s:"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: view/BlockSettingsSeo.php:1108
|
3525 |
#, php-format
|
3526 |
msgid ""
|
3527 |
"Load <strong>%sGoogle Analytics AMP%s</strong> and <strong>%sFacebook Pixel "
|
3528 |
"AMP%s</strong> tracking%s(Warning! The tracking works only for AMP Themes.%s)"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
+
#: view/BlockSettingsSeo.php:1115
|
3532 |
msgid "Measure Your Success"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: view/BlockSettingsSeo.php:1116
|
3536 |
#, php-format
|
3537 |
msgid "%sHow to set the Google Webmaster Tool%s"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: view/BlockSettingsSeo.php:1117
|
3541 |
#, php-format
|
3542 |
msgid "%sBest practices to help Google find, crawl, and index your site%s"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
+
#: view/BlockSettingsSeo.php:1118
|
3546 |
#, php-format
|
3547 |
msgid "%sBing Webmaster Tools Help & How-To Center%s"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
+
#: view/BlockSettingsSeo.php:1119
|
3551 |
#, php-format
|
3552 |
msgid "%sRich Pins Validator%s"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: view/BlockSettingsSeo.php:1125
|
3556 |
#, php-format
|
3557 |
msgid "Google META verification code for %sWebmaster Tool%s:"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: view/BlockSettingsSeo.php:1131
|
3561 |
#, php-format
|
3562 |
msgid "Bing META code (for %sWebmaster Tool%s ):"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: view/BlockSettingsSeo.php:1138
|
3566 |
#, php-format
|
3567 |
msgid "Alexa META code (for %sAlexa Tool%s ):"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
+
#: view/BlockSettingsSeo.php:1144
|
3571 |
#, php-format
|
3572 |
msgid "Pinterest Website Validator Code: (validate %sRich Pins%s )"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
# @ squirrly-seo
|
3576 |
+
#: view/BlockSupport.php:11
|
3577 |
msgid "Go to Profile"
|
3578 |
msgstr "Zum Profil"
|
3579 |
|
3580 |
# @ squirrly-seo
|
3581 |
+
#: view/BlockSupport.php:11 view/BlockSupport.php:12
|
3582 |
msgid "Profile"
|
3583 |
msgstr "Profil"
|
3584 |
|
3585 |
+
#: view/BlockSupport.php:47 view/BlockSupport.php:102
|
3586 |
msgid "For more support:"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
+
#: view/BlockSupport.php:48 view/BlockSupport.php:103
|
3590 |
#, php-format
|
3591 |
msgid "10 AM to 4 PM (GMT): Mon-Fri %sby email%s."
|
3592 |
msgstr ""
|
3593 |
|
3594 |
+
#: view/BlockSupport.php:49 view/BlockSupport.php:105
|
3595 |
#, php-format
|
3596 |
msgid "%sLive Chat%s on Youtube. Thursday 4 PM."
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: view/BlockSupport.php:50 view/BlockSupport.php:106
|
3600 |
#, php-format
|
3601 |
msgid "Google Plus %sSupport Community%s."
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: view/BlockSupport.php:51 view/BlockSupport.php:107
|
3605 |
#, php-format
|
3606 |
msgid "New Lessons Mon. and Tue. on %sTwitter%s."
|
3607 |
msgstr ""
|
3608 |
|
3609 |
# @ squirrly-seo
|
3610 |
+
#: view/BlockSupport.php:63
|
3611 |
msgid "How was your Squirrly experience today?"
|
3612 |
msgstr "Wie war Ihre Squirrly Erfahrung heute?"
|
3613 |
|
3614 |
# @ squirrly-seo
|
3615 |
+
#: view/BlockSupport.php:72
|
3616 |
msgid "How was Squirrly today?"
|
3617 |
msgstr "Wie war Squirrly heute?"
|
3618 |
|
3619 |
+
#: view/BlockSupport.php:77
|
3620 |
msgid "Angry"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: view/BlockSupport.php:77
|
3624 |
msgid "Annoying"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: view/BlockSupport.php:80
|
3628 |
msgid "Sad"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: view/BlockSupport.php:80
|
3632 |
msgid "Bad"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: view/BlockSupport.php:83
|
3636 |
msgid "Happy"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: view/BlockSupport.php:83
|
3640 |
msgid "Nice"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: view/BlockSupport.php:86
|
3644 |
msgid "Excited"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
+
#: view/BlockSupport.php:86
|
3648 |
msgid "Great"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
+
#: view/BlockSupport.php:89
|
3652 |
msgid "Love it"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
# @ squirrly-seo
|
3656 |
+
#: view/BlockSupport.php:95
|
3657 |
msgid "Please tell us why?"
|
3658 |
msgstr "Bitte sagen Sie uns, warum?"
|
3659 |
|
3660 |
# @ squirrly-seo
|
3661 |
+
#: view/BlockSupport.php:98
|
3662 |
msgid "Send feedback"
|
3663 |
msgstr "Feedback senden"
|
3664 |
|
3665 |
+
#: view/BlockSupport.php:104
|
3666 |
#, php-format
|
3667 |
msgid "%sSupport button%s here in WordPress (^^)"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
# @ squirrly-seo
|
3671 |
+
#: view/BlockSupport.php:112
|
3672 |
msgid "Thank you! You can send us a happy face tomorow too."
|
3673 |
msgstr "Danke! Sie können uns auch morgen ein fröhliches Gesicht senden."
|
3674 |
|
3759 |
|
3760 |
#: view/Blocklogin.php:31
|
3761 |
#, php-format
|
3762 |
+
msgid "I Agree with the Squirrly %sTerms of Use%s and %sPrivacy Policy%s"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
#: view/Blocklogin.php:33
|
4188 |
msgid "Today SERP Changes"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
+
# @ squirrly-seo
|
4192 |
+
#~ msgid "Could not send the email..."
|
4193 |
+
#~ msgstr "Konnte E-Mail nicht senden ..."
|
4194 |
+
|
4195 |
+
# @ squirrly-seo
|
4196 |
+
#~ msgid ""
|
4197 |
+
#~ "For Squirrly to work properly you have to use a higher version of "
|
4198 |
+
#~ "Internet Explorer. <br /> We recommend you to use Chrome or Mozilla."
|
4199 |
+
#~ msgstr ""
|
4200 |
+
#~ "Damit Squirrly ordnungsgemäß funktioniert, müssen Sie eine höhere Version "
|
4201 |
+
#~ "von Internet Explorer verwenden. <br /> Wir empfehlen, Chrome oder "
|
4202 |
+
#~ "Mozilla."
|
4203 |
+
|
4204 |
# @ squirrly-seo
|
4205 |
#~ msgid "Turn off warnings!"
|
4206 |
#~ msgstr "Warnungen ausschalten!"
|
4385 |
#~ "Squirrly warnen lassen, wenn es Fehler im Zusammenhang mit den SEO-"
|
4386 |
#~ "Einstellungen gibt"
|
4387 |
|
|
|
|
|
|
|
|
|
4388 |
# @ squirrly-seo
|
4389 |
#~ msgid ""
|
4390 |
#~ "Show <strong>\"Enter a keyword\"</strong> bubble when posting a new "
|
languages/squirrly-seo-ro_RO.mo
CHANGED
Binary file
|
languages/squirrly-seo-ro_RO.po
CHANGED
@@ -1,27 +1,21 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: squirrly_seo\n"
|
4 |
-
"POT-Creation-Date: 2018-
|
5 |
-
"PO-Revision-Date: 2018-
|
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
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: d:/Work/localhost/wordpress/wp/wp-content/plugins/"
|
15 |
"squirrly-seo\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: classes/Action.php:138 classes/ObjController.php:200
|
20 |
-
msgid ""
|
21 |
-
"You need to activate the PHP simplexml_load_string extension for Squirrly "
|
22 |
-
"SEO to work."
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
#: classes/Error.php:16
|
26 |
msgid ""
|
27 |
"Function get_class does not exists! Is required for Squirrly to work "
|
@@ -50,59 +44,59 @@ msgstr "Versiunea PHP trebuie sa fie mai mare de 4.0"
|
|
50 |
msgid "Don't bother me!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: classes/Tools.php:
|
54 |
msgid "Getting started"
|
55 |
msgstr "Ajutor"
|
56 |
|
57 |
-
#: classes/Tools.php:
|
58 |
msgid "Format"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: classes/Tools.php:
|
62 |
msgid "Category"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: classes/Tools.php:
|
66 |
msgid "Tag"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: classes/Tools.php:
|
70 |
msgid "Shipping Option"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: classes/Tools.php:
|
74 |
msgid "Author at"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: classes/Tools.php:
|
78 |
msgid "You searched for"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: classes/Tools.php:
|
82 |
msgid "Page not found"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: classes/Tools.php:
|
86 |
msgid "Fix it for me!"
|
87 |
msgstr "Repara-l"
|
88 |
|
89 |
-
#: classes/Tools.php:
|
90 |
msgid "Activate the Squirrly SEO for your blog (recommended)"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: classes/Tools.php:
|
94 |
msgid ""
|
95 |
"You have META Title Duplicates. Disable the Squirrly Title Optimization or "
|
96 |
"disable the other SEO Plugins"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: classes/Tools.php:
|
100 |
msgid ""
|
101 |
"You have META Description Duplicates. Disable the Squirrly Description "
|
102 |
"Optimization or disable the other SEO Plugins"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: classes/Tools.php:
|
106 |
msgid ""
|
107 |
"You have Open Graph META Duplicates. Disable the Squirrly SEO Open Graph or "
|
108 |
"disable the other SEO Plugins"
|
@@ -110,7 +104,7 @@ msgstr ""
|
|
110 |
"Aveti duplicate in META Open Graph. Opriti Squirrly Seo Open Graph sau "
|
111 |
"dezactivati alte plugin-uri de SEO"
|
112 |
|
113 |
-
#: classes/Tools.php:
|
114 |
msgid ""
|
115 |
"You have Twitter Card META Duplicates. Disable the Squirrly SEO Twitter Card "
|
116 |
"or disable the other SEO Plugins"
|
@@ -118,11 +112,11 @@ msgstr ""
|
|
118 |
"Aveti duplicate in META Twitter Card. Opriti Squirrly Seo Twitter Card sau "
|
119 |
"dezactivati alte plugin-uri de SEO"
|
120 |
|
121 |
-
#: classes/Tools.php:
|
122 |
msgid "You're blocking google from indexing your site!"
|
123 |
msgstr "Blochezi accesul la google spre indexarea site-ului"
|
124 |
|
125 |
-
#: classes/Tools.php:
|
126 |
msgid ""
|
127 |
"It is highly recommended that you include the %postname% variable in the "
|
128 |
"permalink structure. <br />Go to Settings > Permalinks and add /%postname%/ "
|
@@ -132,17 +126,17 @@ msgstr ""
|
|
132 |
">Mergi la Setari > Legaturi permanente si adauga /%postname%/ in campul "
|
133 |
"Structură personalizată"
|
134 |
|
135 |
-
#: classes/Tools.php:
|
136 |
msgid ""
|
137 |
"It is highly recommended to change or remove the default Wordpress Tagline. "
|
138 |
"<br />Go to Settings > General > Tagline"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: classes/Tools.php:
|
142 |
msgid "Great! We didn't find any issue in your site."
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: classes/Tools.php:
|
146 |
msgid "Just another WordPress site"
|
147 |
msgstr ""
|
148 |
|
@@ -229,13 +223,25 @@ msgid "Adds the author's biographical info to the post description"
|
|
229 |
msgstr ""
|
230 |
|
231 |
#: config/config.php:63
|
232 |
-
msgid "Displays the current date
|
233 |
msgstr ""
|
234 |
|
235 |
#: config/config.php:64
|
236 |
msgid "Adds the post's keyword to the post description"
|
237 |
msgstr ""
|
238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
#: controllers/Api.php:40
|
240 |
msgid "Connection expired. Please try again"
|
241 |
msgstr ""
|
@@ -262,155 +268,150 @@ msgid ""
|
|
262 |
"us at: %s"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: controllers/Menu.php:
|
266 |
msgid "See Your Rank on Google"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: controllers/Menu.php:
|
270 |
msgid "Custom SEO"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: controllers/Menu.php:
|
274 |
#, php-format
|
275 |
msgid "Check out the Squirrly Analytics section. %sClick here%s"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: controllers/Menu.php:
|
279 |
#, fuzzy
|
280 |
msgid "Squirrly Analytics"
|
281 |
msgstr "Optiuni Squirrly"
|
282 |
|
283 |
-
#: controllers/Menu.php:
|
284 |
-
#, php-format
|
285 |
-
msgid "Go back and complete the Squirrly Tasks for today %sContinue%s"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: controllers/Menu.php:227
|
289 |
msgid " Dashboard"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: controllers/Menu.php:
|
293 |
msgid "First Step"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: controllers/Menu.php:
|
297 |
msgid "Dashboard"
|
298 |
msgstr "Dashboard"
|
299 |
|
300 |
-
#: controllers/Menu.php:
|
301 |
msgid " Advanced Analytics (Business Level)"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: controllers/Menu.php:
|
305 |
msgid "Advanced Analytics"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: controllers/Menu.php:
|
309 |
msgid " Performance Analytics"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: controllers/Menu.php:
|
313 |
msgid "Performance <br />Analytics"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: controllers/Menu.php:
|
317 |
msgid " Keyword Research"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: controllers/Menu.php:
|
321 |
msgid "Keyword Research"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: controllers/Menu.php:
|
325 |
msgid " Briefcase"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: controllers/Menu.php:
|
329 |
msgid "Briefcase"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: controllers/Menu.php:
|
333 |
msgid " Live Assistant"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: controllers/Menu.php:
|
337 |
msgid "Live Assistant"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: controllers/Menu.php:
|
341 |
msgid " Copywriting"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: controllers/Menu.php:
|
345 |
msgid "Copywriting"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: controllers/Menu.php:
|
349 |
msgid " SEO Audit"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: controllers/Menu.php:
|
353 |
msgid "Site Audit"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: controllers/Menu.php:
|
357 |
msgid " SEO Settings"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: controllers/Menu.php:
|
361 |
#, fuzzy
|
362 |
msgid "SEO Settings"
|
363 |
msgstr "Setari"
|
364 |
|
365 |
-
#: controllers/Menu.php:
|
366 |
msgid " Advanced Settings"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: controllers/Menu.php:
|
370 |
msgid "Advanced Settings"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: controllers/Menu.php:
|
374 |
msgid " SEO Patterns"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: controllers/Menu.php:
|
378 |
msgid "Patterns"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: controllers/Menu.php:
|
382 |
msgid " Account Info"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: controllers/Menu.php:
|
386 |
msgid "Account Info"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: controllers/Menu.php:
|
390 |
msgid " Support"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: controllers/Menu.php:
|
394 |
msgid "Support"
|
395 |
msgstr "Suport"
|
396 |
|
397 |
-
#: controllers/Menu.php:
|
398 |
msgid "Become an Affiliate with "
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: controllers/Menu.php:
|
402 |
msgid "Become an Affiliate"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: controllers/Menu.php:
|
406 |
-
msgid "Import SEO
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: controllers/Menu.php:
|
410 |
-
msgid "Import SEO"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: controllers/Menu.php:
|
414 |
msgid "SEO Snippet"
|
415 |
msgstr ""
|
416 |
|
@@ -430,16 +431,16 @@ msgstr "Titlul"
|
|
430 |
msgid "SEO Analytics, by Squirrly"
|
431 |
msgstr "SEO Analytics, de la Squirrly"
|
432 |
|
433 |
-
#: controllers/PostsList.php:144 controllers/SerpChecker.php:
|
434 |
#: models/SerpCheckerTable.php:646 view/Blockseo.php:10
|
435 |
msgid "Update"
|
436 |
msgstr "Update"
|
437 |
|
438 |
-
#: controllers/PostsList.php:148 controllers/SerpChecker.php:
|
439 |
msgid "Not Public"
|
440 |
msgstr "Ciorna"
|
441 |
|
442 |
-
#: controllers/PostsList.php:149 controllers/SerpChecker.php:
|
443 |
msgid "Could not process"
|
444 |
msgstr "Nu s-a putut verifica"
|
445 |
|
@@ -458,30 +459,30 @@ msgstr ""
|
|
458 |
msgid "%s"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: controllers/SerpChecker.php:23 core/BlockPostsAnalytics.php:
|
462 |
#, php-format
|
463 |
msgid ""
|
464 |
"To get back to the Advanced Analytics and see rankings for all the keywords "
|
465 |
"in Briefcase upgrade to %sBusiness Plan%s."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: controllers/SerpChecker.php:
|
469 |
-
#: controllers/SerpChecker.php:
|
470 |
#: core/BlockSerpKeywords.php:74 core/BlockSerpKeywords.php:97
|
471 |
-
#: core/BlockSettingsSeo.php:
|
472 |
msgid "You don't have enough pemission to activate this feature"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: controllers/SerpChecker.php:
|
476 |
-
#: core/BlockBriefcaseKeywords.php:
|
477 |
msgid "Last checked"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: controllers/SerpChecker.php:
|
481 |
msgid "Invalid Request"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: controllers/SerpChecker.php:
|
485 |
msgid "Removed successfully! The ranks were updated from Squirry Server"
|
486 |
msgstr ""
|
487 |
|
@@ -494,115 +495,115 @@ msgstr "Eroare: %s"
|
|
494 |
msgid "An error occured. Mabe a network error :("
|
495 |
msgstr "A aparut o eroare. Probabil o eroare de retea :("
|
496 |
|
497 |
-
#: core/BlockBriefcaseKeywords.php:
|
498 |
#, php-format
|
499 |
msgid ""
|
500 |
"%sYou activated the Business Plan with Advanced Analytics. %sStart Here%s %s"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: core/BlockBriefcaseKeywords.php:
|
504 |
#, php-format
|
505 |
msgid ""
|
506 |
"%sStart a FREE Trial of the Business Plan with Advanced Analytics for 7 "
|
507 |
"days. No credit card required. %sSee details%s %s"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: core/BlockBriefcaseKeywords.php:
|
511 |
msgid "No keyword found in the briefcase."
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: core/BlockBriefcaseKeywords.php:
|
515 |
-
#: core/BlockBriefcaseKeywords.php:
|
516 |
-
#: core/BlockBriefcaseKeywords.php:
|
517 |
-
#: core/BlockBriefcaseKeywords.php:
|
518 |
msgid "You don't have enough pemission to manage this feature"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: core/BlockBriefcaseKeywords.php:
|
522 |
-
#: core/BlockBriefcaseKeywords.php:
|
523 |
-
#: core/Loading.php:
|
524 |
msgid "Saved!"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: core/BlockBriefcaseKeywords.php:
|
528 |
-
#: core/BlockBriefcaseKeywords.php:
|
529 |
msgid "Invalid Keyword!"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: core/BlockBriefcaseKeywords.php:
|
533 |
msgid "Deleted!"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: core/BlockBriefcaseKeywords.php:
|
537 |
-
#: core/BlockBriefcaseKeywords.php:
|
538 |
msgid "Invalid params!"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: core/BlockBriefcaseKeywords.php:
|
542 |
msgid "Keyword Research limit exceeded."
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: core/BlockBriefcaseKeywords.php:
|
546 |
msgid "Add 20 Keyword Researches"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: core/BlockBriefcaseKeywords.php:
|
550 |
msgid "Check Ranks"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: core/BlockBriefcaseKeywords.php:
|
554 |
#: models/SerpCheckerTable.php:565
|
555 |
msgid "Edit"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: core/BlockBriefcaseKeywords.php:
|
559 |
msgid "Get Rank"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: core/BlockBriefcaseKeywords.php:
|
563 |
msgid "Deleted Post"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: core/BlockBriefcaseKeywords.php:
|
567 |
msgid "Article title"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: core/BlockBriefcaseKeywords.php:
|
571 |
msgid "Google Rank"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: core/BlockBriefcaseKeywords.php:
|
575 |
msgid "Optimized"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: core/BlockBriefcaseKeywords.php:
|
579 |
msgid "Option"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: core/BlockBriefcaseKeywords.php:
|
583 |
msgid "There are no articles found"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: core/BlockBriefcaseKeywords.php:
|
587 |
msgid "Invalid Label or Color!"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: core/BlockImport.php:
|
591 |
msgid "All the Plugin settings were imported successfuly!"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: core/BlockImport.php:
|
595 |
msgid "No settings found for this plugin/theme."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: core/BlockImport.php:
|
599 |
#, php-format
|
600 |
msgid ""
|
601 |
"%s SEO records were imported successfuly! You can now deactivate the %s "
|
602 |
"plugin"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: core/BlockImport.php:
|
606 |
#, php-format
|
607 |
msgid ""
|
608 |
"There are no SEO records with this plugin. You can now deactivate the %s "
|
@@ -621,53 +622,49 @@ msgstr ""
|
|
621 |
msgid "Could not find the Article in your Website"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: core/BlockSettingsSeo.php:
|
625 |
#, php-format
|
626 |
msgid "You can now import into Squirrly SEO all the SEO Settings from %s"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: core/BlockSettingsSeo.php:
|
630 |
msgid "Too short"
|
631 |
msgstr "Prea scurt"
|
632 |
|
633 |
-
#: core/BlockSettingsSeo.php:
|
634 |
msgid "Too long"
|
635 |
msgstr "Prea lung"
|
636 |
|
637 |
-
#: core/BlockSettingsSeo.php:
|
638 |
msgid "Great! The backup is restored."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: core/BlockSettingsSeo.php:
|
642 |
-
#: core/BlockSettingsSeo.php:
|
643 |
msgid "Error! The backup is not valid."
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: core/BlockSettingsSeo.php:
|
647 |
msgid "Error! You have to enter a previous saved backup file."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: core/BlockSettingsSeo.php:
|
651 |
msgid "Great! The SEO backup is restored."
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: core/BlockSettingsSeo.php:
|
655 |
msgid "Great! Squirrly Data Settings is up to date now."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: core/BlockSupport.php:
|
659 |
msgid "Plugin Feedback"
|
660 |
msgstr "Feedback Squirrly"
|
661 |
|
662 |
-
#: core/BlockSupport.php:
|
663 |
msgid "Thank you for your feedback"
|
664 |
msgstr "Multumesc pentru feedback"
|
665 |
|
666 |
-
#: core/BlockSupport.php:
|
667 |
-
msgid "Could not send the email..."
|
668 |
-
msgstr "Nu s-a putut trimite email ..."
|
669 |
-
|
670 |
-
#: core/BlockSupport.php:65 core/BlockSupport.php:103
|
671 |
msgid "No message."
|
672 |
msgstr "Nici un mesaj."
|
673 |
|
@@ -679,7 +676,11 @@ msgstr "Suport la plugin"
|
|
679 |
msgid "Message sent. Thank you!"
|
680 |
msgstr "Mesajul a fost trimis..."
|
681 |
|
682 |
-
#: core/
|
|
|
|
|
|
|
|
|
683 |
#, php-format
|
684 |
msgid ""
|
685 |
"We found your email, so it means you already have a Squirrly.co account. "
|
@@ -690,41 +691,41 @@ msgstr ""
|
|
690 |
"Conecteaza-te cu contul tau de Squirrly. Daca ai uitat parola atunci apasa "
|
691 |
"%saici%s"
|
692 |
|
693 |
-
#: core/Blocklogin.php:
|
694 |
msgid "Your email is not valid. Please enter a valid email"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: core/Blocklogin.php:
|
698 |
msgid "We could not create your account. Please enter a valid email "
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: core/Blocklogin.php:
|
702 |
msgid ""
|
703 |
"Error: Couldn't connect to host :( . Please contact your site's webhost (or "
|
704 |
"webmaster) and request them to add http://api.squirrly.co/ to their IP "
|
705 |
"whitelist."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: core/Blocklogin.php:
|
709 |
#, php-format
|
710 |
msgid ""
|
711 |
"Could not send your informations to squirrly. Please register %smanually%s."
|
712 |
msgstr ""
|
713 |
"Nu s-a putut trimite informatia la Squirrly. Inregistreaza-te %smanual%s."
|
714 |
|
715 |
-
#: core/Blocklogin.php:
|
716 |
msgid "Wrong email or password!"
|
717 |
msgstr "Email sau Parola gresita!"
|
718 |
|
719 |
-
#: core/Blocklogin.php:
|
720 |
msgid "You can use this account only for the URL you registered first!"
|
721 |
msgstr "Poti folosi acest cont doar pentru URL-ul inregistrat la inceput!"
|
722 |
|
723 |
-
#: core/Blocklogin.php:
|
724 |
msgid "An error occured."
|
725 |
msgstr "A aparut o eroare."
|
726 |
|
727 |
-
#: core/Blocklogin.php:
|
728 |
msgid "Both fields are required."
|
729 |
msgstr "Ambele campuri sunt obligatorii!"
|
730 |
|
@@ -732,110 +733,102 @@ msgstr "Ambele campuri sunt obligatorii!"
|
|
732 |
msgid "snippet"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: core/Loading.php:
|
736 |
-
msgid ""
|
737 |
-
"For Squirrly to work properly you have to use a higher version of Internet "
|
738 |
-
"Explorer. <br /> We recommend you to use Chrome or Mozilla."
|
739 |
-
msgstr ""
|
740 |
-
"Pentru a functiona Squirrly, trebui sa folosesti o versiune mai noua de "
|
741 |
-
"Internet explorer. <br /> Recomandam sa folosesti Chrome sau Mozilla."
|
742 |
-
|
743 |
-
#: core/Loading.php:47
|
744 |
msgid "Recent discussions:"
|
745 |
msgstr "Discutii recente:"
|
746 |
|
747 |
-
#: core/Loading.php:
|
748 |
msgid "SEO Search Volume:"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: core/Loading.php:
|
752 |
msgid "Competition:"
|
753 |
msgstr "Competitia:"
|
754 |
|
755 |
-
#: core/Loading.php:
|
756 |
msgid "Trend:"
|
757 |
msgstr "Trend:"
|
758 |
|
759 |
-
#: core/Loading.php:
|
760 |
msgid "Keyword:"
|
761 |
msgstr "Cuvant cheie:"
|
762 |
|
763 |
-
#: core/Loading.php:
|
764 |
msgid "date"
|
765 |
msgstr "data"
|
766 |
|
767 |
-
#: core/Loading.php:
|
768 |
msgid "Read it!"
|
769 |
msgstr "Citeste!"
|
770 |
|
771 |
-
#: core/Loading.php:
|
772 |
msgid "Insert it!"
|
773 |
msgstr "Adauga!"
|
774 |
|
775 |
-
#: core/Loading.php:
|
776 |
msgid "Reference"
|
777 |
msgstr "Referinta"
|
778 |
|
779 |
-
#: core/Loading.php:
|
780 |
msgid "Insert as box"
|
781 |
msgstr "Adauga"
|
782 |
|
783 |
-
#: core/Loading.php:
|
784 |
msgid "Insert Link"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: core/Loading.php:
|
788 |
msgid "Not relevant?"
|
789 |
msgstr "Nu e ce doresti?"
|
790 |
|
791 |
-
#: core/Loading.php:
|
792 |
msgid "Insert in your article"
|
793 |
msgstr "Adauga paragraf in articol"
|
794 |
|
795 |
-
#: core/Loading.php:
|
796 |
msgid ":( An error occurred while processing your request. Please try again"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: core/Loading.php:
|
800 |
msgid "Keyword Research takes too long to get the results. Click to try again"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: core/Loading.php:
|
804 |
msgid "No results found!"
|
805 |
msgstr "Nu s-a gasit nimic ..."
|
806 |
|
807 |
-
#: core/Loading.php:
|
808 |
msgid "Enter one more word to find relevant results"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: core/Loading.php:
|
812 |
msgid "Takes too long to check this keyword ..."
|
813 |
msgstr "Ia prea mult timp sa verifice cuvantul ..."
|
814 |
|
815 |
-
#: core/Loading.php:
|
816 |
msgid "Do a research!"
|
817 |
msgstr "Mai multe detalii!"
|
818 |
|
819 |
-
#: core/Loading.php:
|
820 |
msgid "Do more research!"
|
821 |
msgstr "Mai multe detalii!"
|
822 |
|
823 |
-
#: core/Loading.php:
|
824 |
#, php-format
|
825 |
msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
|
826 |
msgstr ""
|
827 |
"[ ATTRIBUTE: Verificati: %s pentru a vedea conditile de atribuire a "
|
828 |
"imaginii ]"
|
829 |
|
830 |
-
#: core/Loading.php:
|
831 |
msgid "Has creative commons attributes"
|
832 |
msgstr "Are conditii de atribuire"
|
833 |
|
834 |
-
#: core/Loading.php:
|
835 |
msgid "No known copyright restrictions"
|
836 |
msgstr "Nu sunt restrictii de copyright cunoscute"
|
837 |
|
838 |
-
#: core/Loading.php:
|
839 |
msgid ""
|
840 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
841 |
"optimize for a keyword before publishing?"
|
@@ -843,87 +836,91 @@ msgstr ""
|
|
843 |
"Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa il "
|
844 |
"optimizezi inainte de publicare?"
|
845 |
|
846 |
-
#: core/Loading.php:
|
847 |
msgid "Keyword Research limit exceeded"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: core/Loading.php:
|
851 |
msgid "Your Subscription has Expired"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: core/Loading.php:
|
855 |
msgid "There are no keywords saved in briefcase yet"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: core/Loading.php:
|
859 |
#, php-format
|
860 |
msgid "Congratulations! Your article is 100% optimized!"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: core/Loading.php:
|
864 |
#, php-format
|
865 |
msgid "appears too many times. Try to remove %s of them"
|
866 |
msgstr "apare de prea multe ori. Sterge %s cuvint(e) cheie"
|
867 |
|
868 |
-
#: core/Loading.php:
|
869 |
#, php-format
|
870 |
msgid "write %s more words"
|
871 |
msgstr "mai adauga %s cuvinte"
|
872 |
|
873 |
-
#: core/Loading.php:
|
874 |
#, php-format
|
875 |
msgid "Add the keyword in the %s of your article"
|
876 |
msgstr "Adauga cuvantul cheie la %s articolului"
|
877 |
|
878 |
-
#: core/Loading.php:
|
879 |
msgid "Click to keep the highlight on"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: core/Loading.php:
|
883 |
msgid "introduction"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: core/Loading.php:
|
887 |
#, php-format
|
888 |
msgid "Write more words after the %s keyword"
|
889 |
msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
|
890 |
|
891 |
-
#: core/Loading.php:
|
892 |
msgid "or use synonyms"
|
893 |
msgstr "sau foloseste sinonime"
|
894 |
|
895 |
-
#: core/Loading.php:
|
896 |
#, php-format
|
897 |
msgid "add %s more word(s)"
|
898 |
msgstr "Mai adauga %s cuvinte"
|
899 |
|
900 |
-
#: core/Loading.php:
|
901 |
#, php-format
|
902 |
msgid "or remove %s word(s)"
|
903 |
msgstr "sau sterge %s cuvinte"
|
904 |
|
905 |
-
#: core/Loading.php:
|
906 |
#, php-format
|
907 |
msgid "add %s more keyword(s)"
|
908 |
msgstr "mai adauga %s cuvint(e) cheie"
|
909 |
|
910 |
-
#: core/Loading.php:
|
911 |
#, php-format
|
912 |
msgid "write %s more words to start calculating"
|
913 |
msgstr "Scrie %s cuvinte pentru a se putea verifica"
|
914 |
|
915 |
-
#: core/Loading.php:
|
916 |
msgid "Add to Briefcase"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: core/Loading.php:
|
920 |
msgid "Add Keyword to Briefcase"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: core/Loading.php:
|
924 |
msgid "Use Keyword"
|
925 |
msgstr ""
|
926 |
|
|
|
|
|
|
|
|
|
927 |
#: models/BlockPostsAnalytics.php:292 models/SerpCheckerTable.php:376
|
928 |
msgid "Type"
|
929 |
msgstr ""
|
@@ -1094,64 +1091,64 @@ msgstr "Eroare ICO: Nu se poate transforma imaginea in fisier ICO"
|
|
1094 |
msgid "The favicon has been updated."
|
1095 |
msgstr "Icoana a fost adaugata pe server"
|
1096 |
|
1097 |
-
#: models/Post.php:
|
1098 |
msgid "Squirrly could not find any results for: "
|
1099 |
msgstr "Squirrly nu a putut gasi rezultate pentru: "
|
1100 |
|
1101 |
-
#: models/Post.php:
|
1102 |
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: models/Post.php:
|
1106 |
msgid ""
|
1107 |
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
1108 |
"the HTML form."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: models/Post.php:
|
1112 |
msgid "The uploaded file was only partially uploaded."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: models/Post.php:
|
1116 |
msgid "No file was uploaded."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: models/Post.php:
|
1120 |
msgid "Missing a temporary folder."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: models/Post.php:
|
1124 |
msgid "Failed to write file to disk."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: models/Post.php:
|
1128 |
msgid "File upload stopped by extension."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: models/Post.php:
|
1132 |
msgid "Invalid form submission."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: models/Post.php:
|
1136 |
msgid "File is empty. Please upload something more substantial."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: models/Post.php:
|
1140 |
msgid ""
|
1141 |
"File is empty. Please upload something more substantial. This error could "
|
1142 |
"also be caused by uploads being disabled in your php.ini or by post_max_size "
|
1143 |
"being defined as smaller than upload_max_filesize in php.ini."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: models/Post.php:
|
1147 |
msgid "Specified file failed upload test."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: models/Post.php:
|
1151 |
msgid "Sorry, this file type is not permitted for security reasons."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: models/Post.php:
|
1155 |
#, php-format
|
1156 |
msgid "The uploaded file could not be moved to %s."
|
1157 |
msgstr ""
|
@@ -1188,13 +1185,13 @@ msgstr "Nu sunt suficiente informatii pentru acest post"
|
|
1188 |
msgid "The total number of inbound links to this post"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: models/SerpCheckerTable.php:353 view/BlockPatterns.php:
|
1192 |
#: view/FrontMenu.php:156
|
1193 |
msgid "Title"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: models/SerpCheckerTable.php:356 view/BlockBriefcaseKeywords.php:
|
1197 |
-
#: view/BlockBriefcaseKeywords.php:
|
1198 |
#: view/BlockSerpKeywords.php:63
|
1199 |
msgid "Keyword"
|
1200 |
msgstr "Cuvant cheie:"
|
@@ -1207,7 +1204,7 @@ msgstr ""
|
|
1207 |
msgid "Post Date"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: models/SerpCheckerTable.php:399 view/BlockBriefcaseKeywords.php:
|
1211 |
msgid "Search Keyword"
|
1212 |
msgstr ""
|
1213 |
|
@@ -1224,14 +1221,6 @@ msgstr ""
|
|
1224 |
msgid "Twitter"
|
1225 |
msgstr "Twitter"
|
1226 |
|
1227 |
-
#: models/SerpCheckerTable.php:634
|
1228 |
-
msgid "Google+"
|
1229 |
-
msgstr ""
|
1230 |
-
|
1231 |
-
#: models/SerpCheckerTable.php:635
|
1232 |
-
msgid "LinkedIn"
|
1233 |
-
msgstr ""
|
1234 |
-
|
1235 |
#: models/SerpCheckerTable.php:636
|
1236 |
msgid "Reddit"
|
1237 |
msgstr ""
|
@@ -1257,11 +1246,11 @@ msgstr ""
|
|
1257 |
msgid "Not indexed"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: models/domain/Patterns.php:
|
1261 |
msgid "Page"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: models/domain/Patterns.php:
|
1265 |
msgid "of"
|
1266 |
msgstr ""
|
1267 |
|
@@ -1284,18 +1273,19 @@ msgid ""
|
|
1284 |
msgstr "Versiunea PHP trebuie sa fie mai mare de 5.1"
|
1285 |
|
1286 |
#: view/BlockAccount.php:7 view/BlockAffiliate.php:7 view/BlockAudit.php:7
|
1287 |
-
#: view/
|
1288 |
-
#: view/
|
1289 |
-
#: view/
|
1290 |
-
#: view/BlockSettingsSeo.php:7 view/SerpChecker.php:7
|
1291 |
msgid "Connect to Squirrly Data Cloud"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
#: view/BlockAccount.php:13 view/BlockAffiliate.php:13 view/BlockAudit.php:13
|
1295 |
-
#: view/
|
1296 |
-
#: view/
|
1297 |
-
#: view/
|
1298 |
-
#: view/
|
|
|
1299 |
msgid "START HERE"
|
1300 |
msgstr ""
|
1301 |
|
@@ -1412,60 +1402,48 @@ msgid "Facebook shares"
|
|
1412 |
msgstr ""
|
1413 |
|
1414 |
#: view/BlockAnalytics.php:114
|
1415 |
-
msgid "Facebook likes"
|
1416 |
-
msgstr ""
|
1417 |
-
|
1418 |
-
#: view/BlockAnalytics.php:119
|
1419 |
msgid "Twitter shares"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: view/BlockAnalytics.php:
|
1423 |
-
msgid "Google+ shares"
|
1424 |
-
msgstr ""
|
1425 |
-
|
1426 |
-
#: view/BlockAnalytics.php:129
|
1427 |
-
msgid "LinkedIn Shares"
|
1428 |
-
msgstr ""
|
1429 |
-
|
1430 |
-
#: view/BlockAnalytics.php:134
|
1431 |
msgid "StumbleUpon shares"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: view/BlockAnalytics.php:
|
1435 |
msgid "Reddit shares"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: view/BlockAnalytics.php:
|
1439 |
msgid "Pinterest shares"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: view/BlockAnalytics.php:
|
1443 |
msgid "Nicely done! Now you can focus on the other tasks"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: view/BlockAnalytics.php:
|
1447 |
msgid ""
|
1448 |
"I know you can improve this. Please follow the documentation for a quicker "
|
1449 |
"progress"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: view/BlockAnalytics.php:
|
1453 |
msgid "Visits"
|
1454 |
msgstr "Vizite"
|
1455 |
|
1456 |
-
#: view/BlockAnalytics.php:
|
1457 |
msgid "Current: "
|
1458 |
msgstr "Pozitia curenta"
|
1459 |
|
1460 |
-
#: view/BlockAnalytics.php:
|
1461 |
msgid "Lowest: "
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: view/BlockAnalytics.php:
|
1465 |
msgid "Highest: "
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: view/BlockAnalytics.php:
|
1469 |
msgid "last 30 days"
|
1470 |
msgstr "Ultimele 30 zile"
|
1471 |
|
@@ -1540,132 +1518,148 @@ msgstr ""
|
|
1540 |
msgid "This is an example of a Site Audit"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: view/BlockBriefcaseKeywords.php:
|
1544 |
msgid "Show All"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: view/BlockBriefcaseKeywords.php:
|
1548 |
msgid "Briefcase Keywords"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: view/BlockBriefcaseKeywords.php:
|
1552 |
msgid "See the Google Ranks for these Keywords"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: view/BlockBriefcaseKeywords.php:
|
1556 |
msgid "Go to Analytics"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: view/BlockBriefcaseKeywords.php:
|
1560 |
msgid "Filter by labels"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: view/BlockBriefcaseKeywords.php:
|
1564 |
msgid "Add new keyword"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: view/BlockBriefcaseKeywords.php:
|
1568 |
msgid "Manage Labels"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: view/BlockBriefcaseKeywords.php:
|
1572 |
msgid "Add a new Keyword"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: view/BlockBriefcaseKeywords.php:
|
1576 |
msgid "Enter a Keyword (2-4 words)"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: view/BlockBriefcaseKeywords.php:
|
1580 |
msgid "Select Labels"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: view/BlockBriefcaseKeywords.php:
|
1584 |
msgid "Add new Label"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: view/BlockBriefcaseKeywords.php:
|
1588 |
msgid "Add Keyword"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: view/BlockBriefcaseKeywords.php:
|
1592 |
msgid "Add New Label"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: view/BlockBriefcaseKeywords.php:
|
1596 |
msgid "Label Name"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: view/BlockBriefcaseKeywords.php:
|
1600 |
msgid "Label Color"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: view/BlockBriefcaseKeywords.php:
|
1604 |
msgid "Add Label"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: view/BlockBriefcaseKeywords.php:
|
1608 |
msgid "Your Labels"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: view/BlockBriefcaseKeywords.php:
|
1612 |
msgid "Edit Label"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: view/BlockBriefcaseKeywords.php:
|
1616 |
msgid "Save Label"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: view/BlockBriefcaseKeywords.php:
|
1620 |
msgid "Used"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: view/BlockBriefcaseKeywords.php:
|
1624 |
msgid "Data"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: view/BlockBriefcaseKeywords.php:
|
1628 |
msgid "Assign Labels to this Keyword"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: view/BlockBriefcaseKeywords.php:
|
1632 |
#, php-format
|
1633 |
msgid "Select Labels for: %s"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: view/BlockBriefcaseKeywords.php:
|
1637 |
msgid "Save Labels"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: view/BlockBriefcaseKeywords.php:
|
1641 |
msgid "Competition"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: view/BlockBriefcaseKeywords.php:
|
1645 |
-
#: view/BlockBriefcaseKeywords.php:
|
1646 |
msgid "-"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: view/BlockBriefcaseKeywords.php:
|
1650 |
msgid "SEO Search Volume"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: view/BlockBriefcaseKeywords.php:
|
1654 |
msgid "Recent discussions"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: view/BlockBriefcaseKeywords.php:
|
1658 |
msgid "Trending"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: view/BlockBriefcaseKeywords.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1662 |
msgid "Do a research"
|
1663 |
msgstr "Mai multe detalii"
|
1664 |
|
1665 |
-
#: view/BlockBriefcaseKeywords.php:
|
1666 |
msgid "Delete"
|
1667 |
msgstr ""
|
1668 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1669 |
#: view/BlockCopyright.php:9
|
1670 |
msgid "Squirrly Copywriting Options"
|
1671 |
msgstr ""
|
@@ -1773,24 +1767,32 @@ msgstr ""
|
|
1773 |
msgid "%sEmail Support%s >> 8 AM to 4 PM (London Time): Mon-Fri.."
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: view/BlockCustomerService.php:25 view/BlockSupport.php:
|
1777 |
msgid "Need Help with Squirrly SEO?"
|
1778 |
msgstr "Ai nevoie de ajutor cu Squirrly SEO?"
|
1779 |
|
1780 |
-
#: view/BlockCustomerService.php:
|
|
|
|
|
|
|
|
|
1781 |
msgid "Send Question"
|
1782 |
msgstr "Trimite"
|
1783 |
|
|
|
|
|
|
|
|
|
|
|
1784 |
#: view/BlockDashboard.php:11
|
1785 |
msgid "Restore Squirrly Settings"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: view/BlockDashboard.php:16 view/BlockImport.php:
|
1789 |
msgid "Upload the file with the saved Squirrly Settings"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: view/BlockDashboard.php:21 view/BlockImport.php:
|
1793 |
-
#: view/BlockImport.php:137
|
1794 |
msgid "Restore Backup"
|
1795 |
msgstr ""
|
1796 |
|
@@ -1802,18 +1804,18 @@ msgstr ""
|
|
1802 |
msgid "Squirrly dashboard"
|
1803 |
msgstr "Dashboard Squirrly"
|
1804 |
|
1805 |
-
#: view/BlockDashboard.php:
|
1806 |
#, php-format
|
1807 |
msgid ""
|
1808 |
"%sHelp Center%s - learn more about Squirrly SEO features and unhinge your "
|
1809 |
"SEO potential"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: view/BlockDashboard.php:
|
1813 |
msgid "Next Feature"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: view/BlockDashboard.php:
|
1817 |
msgid "Previous Feature"
|
1818 |
msgstr ""
|
1819 |
|
@@ -1821,95 +1823,99 @@ msgstr ""
|
|
1821 |
msgid "SEO Patterns"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: view/BlockImport.php:
|
1825 |
msgid "Import SEO settings from other SEO plugins or themes"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: view/BlockImport.php:
|
1829 |
msgid ""
|
1830 |
"If you were already using an SEO plugin, then you can import all the SEO "
|
1831 |
"settings in Squirrly. Just follow the steps presented on the right side."
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: view/BlockImport.php:
|
1835 |
msgid "Select the plugin or theme you want to import the Settings from."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: view/BlockImport.php:
|
1839 |
msgid "Import Settings"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: view/BlockImport.php:
|
1843 |
msgid "We couldn't find any SEO plugin or theme to import from."
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: view/BlockImport.php:
|
1847 |
msgid "Select the plugin or theme you want to import the SEO settings from."
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: view/BlockImport.php:
|
|
|
|
|
|
|
|
|
1851 |
msgid ""
|
1852 |
"Note! If you import the SEO settings from other plugins or themes, you will "
|
1853 |
"lose all the settings that you had in Squirrly SEO. Make sure you backup "
|
1854 |
"your settings from the panel below before you do this. "
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: view/BlockImport.php:
|
1858 |
msgid "Backup & Restore Squirrly SEO Settings"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: view/BlockImport.php:
|
1862 |
msgid ""
|
1863 |
"You can now download your Squirrly settings in an sql file before you go "
|
1864 |
"ahead and import the SEO settings from another plugin. That way, you can "
|
1865 |
"always go back to your Squirrly settings. "
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: view/BlockImport.php:
|
1869 |
msgid "Backup & Restore Squirrly Settings"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: view/BlockImport.php:
|
1873 |
msgid "Backup Settings"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: view/BlockImport.php:
|
1877 |
msgid "Restore Settings"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: view/BlockImport.php:
|
1881 |
msgid "Are you sure you want to restore your settings?"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: view/BlockImport.php:
|
1885 |
msgid "Backup & Restore all the pages optimized with Squirrly SEO"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: view/BlockImport.php:
|
1889 |
msgid "Backup SEO"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: view/BlockImport.php:
|
1893 |
msgid "Restore SEO"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: view/BlockImport.php:
|
1897 |
msgid "Upload the file with the saved Squirrly SEO SQL file"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: view/BlockImport.php:
|
1901 |
msgid "Click to reset all the saved setting to default."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: view/BlockImport.php:
|
1905 |
msgid "Are you sure you want to remove all the saved settings?"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: view/BlockImport.php:
|
1909 |
msgid "Reset Settings"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: view/BlockImport.php:
|
1913 |
msgid ""
|
1914 |
"Note! Make sure you backup your data first in case you change your mind."
|
1915 |
msgstr ""
|
@@ -1939,55 +1945,57 @@ msgstr ""
|
|
1939 |
msgid "Use Squirrly Live Assistant"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: view/BlockPatterns.php:
|
1943 |
msgid "Use Squirrly Patterns"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: view/BlockPatterns.php:
|
1947 |
-
#: view/BlockPatterns.php:
|
1948 |
-
#: view/BlockSettings.php:
|
1949 |
-
#: view/BlockSettings.php:
|
1950 |
-
#: view/BlockSettings.php:
|
1951 |
-
#: view/BlockSettings.php:
|
1952 |
-
#: view/BlockSettingsSeo.php:
|
1953 |
-
#: view/BlockSettingsSeo.php:
|
1954 |
-
#: view/BlockSettingsSeo.php:
|
1955 |
-
#: view/BlockSettingsSeo.php:
|
1956 |
-
#: view/BlockSettingsSeo.php:
|
1957 |
-
#: view/BlockSettingsSeo.php:
|
1958 |
-
#: view/BlockSettingsSeo.php:
|
1959 |
-
#: view/BlockSettingsSeo.php:
|
1960 |
-
#: view/BlockSettingsSeo.php:
|
|
|
1961 |
#: view/FrontMenu.php:543 view/FrontMenu.php:556
|
1962 |
msgid "Yes"
|
1963 |
msgstr "Da"
|
1964 |
|
1965 |
-
#: view/BlockPatterns.php:
|
1966 |
-
#: view/BlockPatterns.php:
|
1967 |
-
#: view/BlockSettings.php:
|
1968 |
-
#: view/BlockSettings.php:
|
1969 |
-
#: view/BlockSettings.php:
|
1970 |
-
#: view/BlockSettings.php:
|
1971 |
-
#: view/BlockSettingsSeo.php:
|
1972 |
-
#: view/BlockSettingsSeo.php:
|
1973 |
-
#: view/BlockSettingsSeo.php:
|
1974 |
-
#: view/BlockSettingsSeo.php:
|
1975 |
-
#: view/BlockSettingsSeo.php:
|
1976 |
-
#: view/BlockSettingsSeo.php:
|
1977 |
-
#: view/BlockSettingsSeo.php:
|
1978 |
-
#: view/BlockSettingsSeo.php:
|
1979 |
-
#: view/BlockSettingsSeo.php:
|
|
|
1980 |
#: view/FrontMenu.php:545 view/FrontMenu.php:558
|
1981 |
msgid "No"
|
1982 |
msgstr "Nu"
|
1983 |
|
1984 |
-
#: view/BlockPatterns.php:
|
1985 |
msgid ""
|
1986 |
"Control how post types are displayed on your site and within search engine "
|
1987 |
"results and social media feeds."
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: view/BlockPatterns.php:
|
1991 |
msgid ""
|
1992 |
"In Squirrly, each post type in your site comes with a predefined posting "
|
1993 |
"pattern when displayed onto your website. However, based on your site's "
|
@@ -1995,13 +2003,13 @@ msgid ""
|
|
1995 |
"include."
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: view/BlockPatterns.php:
|
1999 |
msgid ""
|
2000 |
"Once you set up a pattern for a particular post type, only the content "
|
2001 |
"required by your custom sequence will be displayed."
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: view/BlockPatterns.php:
|
2005 |
#, php-format
|
2006 |
msgid ""
|
2007 |
"Squirrly lets you see how the customized patterns will apply when posts/"
|
@@ -2011,57 +2019,57 @@ msgid ""
|
|
2011 |
"information."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: view/BlockPatterns.php:
|
2015 |
msgid "Set the custom patterns for each post type"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: view/BlockPatterns.php:
|
2019 |
msgid "+ Add Post Type"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: view/BlockPatterns.php:
|
2023 |
msgid "Add a post type from your Wordpress website"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: view/BlockPatterns.php:
|
2027 |
msgid "Add Post Type"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: view/BlockPatterns.php:
|
2031 |
msgid "Add"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: view/BlockPatterns.php:
|
2035 |
#, php-format
|
2036 |
msgid "Are you sure you want to remove the post type: %s"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: view/BlockPatterns.php:
|
2040 |
msgid "Remove Post Type"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: view/BlockPatterns.php:
|
2044 |
msgid "Description"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: view/BlockPatterns.php:
|
2048 |
msgid "Separator"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: view/BlockPatterns.php:
|
2052 |
msgid "Let Google Index it"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: view/BlockPatterns.php:
|
2056 |
msgid "Pass Link Juice"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: view/BlockPatterns.php:
|
2060 |
msgid "Do SEO"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: view/BlockPatterns.php:
|
2064 |
-
#: view/BlockSettingsSeo.php:
|
2065 |
msgid "Save SEO"
|
2066 |
msgstr ""
|
2067 |
|
@@ -2095,7 +2103,7 @@ msgid ""
|
|
2095 |
"Rank Option%s. "
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: view/BlockPostsAnalytics.php:
|
2099 |
msgid ""
|
2100 |
"Don't see all your pages here? Make sure you optimize them with Squirrly, so "
|
2101 |
"that we can track them, and display you the analytics"
|
@@ -2141,633 +2149,651 @@ msgstr ""
|
|
2141 |
msgid "Remove Local Ranks"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: view/BlockSettings.php:24 view/BlockSettings.php:
|
2145 |
msgid "Save settings"
|
2146 |
msgstr "Salveaza setari"
|
2147 |
|
2148 |
-
#: view/BlockSettings.php:
|
2149 |
msgid "Post/Page Edit"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: view/BlockSettings.php:
|
2153 |
#, php-format
|
2154 |
msgid "%sThe right method in working with Squirrly, SEO plugin%s"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#: view/BlockSettings.php:
|
2158 |
#, php-format
|
2159 |
msgid "%sGetting inspired with Squirrly WordPress SEO plugin%s"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: view/BlockSettings.php:
|
2163 |
#, php-format
|
2164 |
msgid "%sThere is a New SEO Live Assistant from Squirrly%s"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: view/BlockSettings.php:
|
2168 |
#, php-format
|
2169 |
msgid "%sHow to create Human friendly content with the WordPress SEO plugin?%s"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: view/BlockSettings.php:
|
2173 |
msgid "Inspiration Box G17"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: view/BlockSettings.php:
|
2177 |
-
#: view/BlockSettings.php:
|
2178 |
-
#: view/BlockSettings.php:
|
2179 |
-
#: view/BlockSettingsSeo.php:
|
2180 |
-
#: view/BlockSettingsSeo.php:
|
2181 |
-
#: view/BlockSettingsSeo.php:
|
2182 |
-
#: view/BlockSettingsSeo.php:
|
2183 |
msgid "see how this improved since 2016"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: view/BlockSettings.php:
|
2187 |
msgid "Keyword Research G17"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: view/BlockSettings.php:
|
2191 |
msgid "Inner Links G17"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: view/BlockSettings.php:
|
2195 |
msgid "Load Squirrly Live Assistant for"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: view/BlockSettings.php:
|
2199 |
-
#: view/BlockSettingsSeo.php:
|
2200 |
msgid "Posts"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: view/BlockSettings.php:
|
2204 |
-
#: view/BlockSettingsSeo.php:
|
2205 |
msgid "Pages"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: view/BlockSettings.php:
|
2209 |
-
#: view/BlockSettingsSeo.php:
|
2210 |
msgid "Products"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: view/BlockSettings.php:
|
2214 |
msgid ""
|
2215 |
"Show <strong>Squirrly Tooltips</strong> when posting a new article (e.g. "
|
2216 |
"\"Enter a keyword\")."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: view/BlockSettings.php:
|
2220 |
msgid ""
|
2221 |
"Always show <strong>Keyword Research</strong> about the selected keyword."
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: view/BlockSettings.php:
|
2225 |
msgid ""
|
2226 |
"Send optimization data to Squirrly Cloud when the post is saved (don't use "
|
2227 |
"cron)"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: view/BlockSettings.php:
|
2231 |
msgid "Use <strong> the NEW version of the SEO Live Assistant</strong>."
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: view/BlockSettings.php:
|
2235 |
msgid ""
|
2236 |
"Download <strong>remote images</strong> in your <strong>Media Library</"
|
2237 |
"strong> for the new posts."
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: view/BlockSettings.php:
|
2241 |
msgid ""
|
2242 |
"Correct my <strong>feed links</strong> and <strong>images</strong> (convert "
|
2243 |
"from relative to absolute)."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: view/BlockSettings.php:
|
2247 |
msgid "Google Rank Options"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: view/BlockSettings.php:
|
2251 |
#, php-format
|
2252 |
msgid "%sCountry targeting%s"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: view/BlockSettings.php:
|
2256 |
#, php-format
|
2257 |
msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: view/BlockSettings.php:
|
2261 |
msgid ""
|
2262 |
"Select the Google country for which Squirrly will check the Google rank."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: view/BlockSettings.php:
|
2266 |
msgid "Default"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: view/BlockSettings.php:
|
2270 |
msgid "American Samoa"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: view/BlockSettings.php:
|
2274 |
msgid "Anguilla"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: view/BlockSettings.php:
|
2278 |
msgid "Antigua and Barbuda"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: view/BlockSettings.php:
|
2282 |
msgid "Argentina"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: view/BlockSettings.php:
|
2286 |
msgid "Australia"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#: view/BlockSettings.php:
|
2290 |
msgid "Austria"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#: view/BlockSettings.php:
|
2294 |
msgid "Azerbaijan"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: view/BlockSettings.php:
|
2298 |
msgid "Belgium"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: view/BlockSettings.php:
|
2302 |
msgid "Brazil"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: view/BlockSettings.php:
|
2306 |
msgid "British Virgin Islands"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: view/BlockSettings.php:
|
2310 |
msgid "Burundi"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: view/BlockSettings.php:
|
2314 |
msgid "Bulgaria"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: view/BlockSettings.php:
|
2318 |
msgid "Canada"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: view/BlockSettings.php:
|
2322 |
msgid "Chad"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
-
#: view/BlockSettings.php:
|
2326 |
msgid "Chile"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#: view/BlockSettings.php:
|
2330 |
msgid "Colombia"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: view/BlockSettings.php:
|
2334 |
msgid "Costa Rica"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: view/BlockSettings.php:
|
2338 |
msgid "Côte d'Ivoire"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: view/BlockSettings.php:
|
2342 |
msgid "Cuba"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: view/BlockSettings.php:
|
|
|
|
|
|
|
|
|
2346 |
msgid "Czech Republic"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: view/BlockSettings.php:
|
2350 |
msgid "Dem. Rep. of the Congo"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: view/BlockSettings.php:
|
2354 |
msgid "Denmark"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: view/BlockSettings.php:
|
2358 |
msgid "Djibouti"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: view/BlockSettings.php:
|
2362 |
msgid "Dominican Republic"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: view/BlockSettings.php:
|
2366 |
msgid "Ecuador"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: view/BlockSettings.php:
|
2370 |
msgid "El Salvador"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: view/BlockSettings.php:
|
2374 |
msgid "Estonia"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: view/BlockSettings.php:
|
2378 |
msgid "Federated States of Micronesia"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: view/BlockSettings.php:
|
2382 |
msgid "Fiji"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: view/BlockSettings.php:
|
2386 |
msgid "Finland"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: view/BlockSettings.php:
|
2390 |
#, fuzzy
|
2391 |
msgid "France"
|
2392 |
msgstr "Renunta"
|
2393 |
|
2394 |
-
#: view/BlockSettings.php:
|
2395 |
msgid "The Gambia"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: view/BlockSettings.php:
|
2399 |
msgid "Georgia"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: view/BlockSettings.php:
|
2403 |
msgid "Germany"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: view/BlockSettings.php:
|
|
|
|
|
|
|
|
|
2407 |
msgid "Gibraltar"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: view/BlockSettings.php:
|
2411 |
msgid "Greece"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: view/BlockSettings.php:
|
2415 |
msgid "Greenland"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: view/BlockSettings.php:
|
2419 |
msgid "Guernsey"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: view/BlockSettings.php:
|
2423 |
msgid "Honduras"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: view/BlockSettings.php:
|
2427 |
msgid "Hong Kong"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: view/BlockSettings.php:
|
2431 |
msgid "Hungary"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: view/BlockSettings.php:
|
2435 |
msgid "India"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: view/BlockSettings.php:
|
2439 |
msgid "Indonesia"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: view/BlockSettings.php:
|
2443 |
msgid "Ireland"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: view/BlockSettings.php:
|
2447 |
msgid "Isle of Man"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: view/BlockSettings.php:
|
2451 |
msgid "Israel"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: view/BlockSettings.php:
|
2455 |
msgid "Italy"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: view/BlockSettings.php:
|
2459 |
msgid "Jamaica"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: view/BlockSettings.php:
|
2463 |
msgid "Japan"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: view/BlockSettings.php:
|
2467 |
msgid "Jersey"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: view/BlockSettings.php:
|
2471 |
msgid "Kazakhstan"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: view/BlockSettings.php:
|
2475 |
msgid "Korea"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: view/BlockSettings.php:
|
2479 |
msgid "Latvia"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: view/BlockSettings.php:
|
2483 |
msgid "Lesotho"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: view/BlockSettings.php:
|
2487 |
msgid "Liechtenstein"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: view/BlockSettings.php:
|
2491 |
msgid "Lithuania"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: view/BlockSettings.php:
|
2495 |
msgid "Luxembourg"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: view/BlockSettings.php:
|
2499 |
msgid "Malawi"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: view/BlockSettings.php:
|
2503 |
msgid "Malaysia"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: view/BlockSettings.php:
|
2507 |
msgid "Malta"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: view/BlockSettings.php:
|
2511 |
msgid "Mauritius"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: view/BlockSettings.php:
|
2515 |
msgid "México"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: view/BlockSettings.php:
|
2519 |
msgid "Montserrat"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: view/BlockSettings.php:
|
2523 |
msgid "Namibia"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: view/BlockSettings.php:
|
2527 |
msgid "Nepal"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: view/BlockSettings.php:
|
2531 |
msgid "Netherlands"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: view/BlockSettings.php:
|
2535 |
msgid "New Zealand"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: view/BlockSettings.php:
|
2539 |
msgid "Nicaragua"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: view/BlockSettings.php:
|
|
|
|
|
|
|
|
|
2543 |
msgid "Norfolk Island"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: view/BlockSettings.php:
|
2547 |
msgid "Norway"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: view/BlockSettings.php:
|
2551 |
msgid "Pakistan"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: view/BlockSettings.php:
|
2555 |
msgid "Panamá"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: view/BlockSettings.php:
|
2559 |
msgid "Paraguay"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: view/BlockSettings.php:
|
2563 |
msgid "Perú"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: view/BlockSettings.php:
|
2567 |
msgid "Philippines"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: view/BlockSettings.php:
|
2571 |
msgid "Pitcairn Islands"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: view/BlockSettings.php:
|
2575 |
msgid "Poland"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: view/BlockSettings.php:
|
2579 |
msgid "Portugal"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: view/BlockSettings.php:
|
2583 |
msgid "Puerto Rico"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: view/BlockSettings.php:
|
2587 |
msgid "Rep. of the Congo"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: view/BlockSettings.php:
|
2591 |
msgid "Romania"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: view/BlockSettings.php:
|
2595 |
msgid "Russia"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: view/BlockSettings.php:
|
2599 |
msgid "Rwanda"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: view/BlockSettings.php:
|
2603 |
msgid "Saint Helena"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: view/BlockSettings.php:
|
2607 |
msgid "San Marino"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: view/BlockSettings.php:
|
2611 |
msgid "Saudi Arabia"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: view/BlockSettings.php:
|
2615 |
msgid "Singapore"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: view/BlockSettings.php:
|
2619 |
msgid "Slovakia"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: view/BlockSettings.php:
|
2623 |
msgid "South Africa"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: view/BlockSettings.php:
|
2627 |
msgid "Spain"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: view/BlockSettings.php:
|
2631 |
msgid "Sri Lanka"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: view/BlockSettings.php:
|
2635 |
msgid "Sweden"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: view/BlockSettings.php:
|
2639 |
msgid "Switzerland"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: view/BlockSettings.php:
|
2643 |
msgid "Taiwan"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: view/BlockSettings.php:
|
2647 |
msgid "Thailand"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: view/BlockSettings.php:
|
2651 |
msgid "Trinidad and Tobago"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: view/BlockSettings.php:
|
2655 |
msgid "Turkey"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: view/BlockSettings.php:
|
2659 |
msgid "Ukraine"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: view/BlockSettings.php:
|
2663 |
msgid "United Arab Emirates"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: view/BlockSettings.php:
|
2667 |
msgid "United Kingdom"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: view/BlockSettings.php:
|
2671 |
msgid "United States"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: view/BlockSettings.php:
|
2675 |
msgid "Uruguay"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: view/BlockSettings.php:
|
2679 |
msgid "Uzbekistan"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: view/BlockSettings.php:
|
2683 |
msgid "Vanuatu"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: view/BlockSettings.php:
|
2687 |
msgid "Venezuela"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: view/BlockSettings.php:
|
2691 |
msgid "Vietnam"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: view/BlockSettings.php:
|
2695 |
#, php-format
|
2696 |
msgid ""
|
2697 |
"Select how many pages to be checked in the Performance Analytics section "
|
2698 |
"every hour. %s(not recommended for shared hosting plan)%s"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: view/BlockSettings.php:
|
2702 |
msgid "page"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
-
#: view/BlockSettings.php:
|
2706 |
msgid "pages"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
-
#: view/BlockSettings.php:
|
2710 |
msgid "h"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
#: view/BlockSettings.php:
|
2714 |
msgid ""
|
2715 |
"Restricts search results to results originating in the above particular "
|
2716 |
"country."
|
2717 |
msgstr ""
|
2718 |
|
2719 |
-
#: view/BlockSettings.php:
|
2720 |
#, php-format
|
2721 |
msgid ""
|
2722 |
"You have the %sBusiness Plan%s active. Rankings are now checked by Squirrly "
|
2723 |
"Cloud and will be shown in %sAdvanced Analytics%s"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: view/BlockSettings.php:
|
2727 |
msgid "Select how many rank queries you want Squirrly to do every day. "
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: view/BlockSettings.php:
|
2731 |
-
#: view/BlockSettings.php:
|
2732 |
msgid "queries"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: view/BlockSettings.php:
|
2736 |
-
#: view/BlockSettings.php:
|
2737 |
msgid "day"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: view/BlockSettings.php:
|
2741 |
msgid ""
|
2742 |
"Note: if you're on the free trial, you get 35 queries for the 7 days of "
|
2743 |
"trial."
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#: view/BlockSettings.php:
|
2747 |
msgid "Robots.txt Editor"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: view/BlockSettings.php:
|
2751 |
#, php-format
|
2752 |
msgid "%sLearn about robots.txt files%s"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: view/BlockSettings.php:
|
2756 |
#, php-format
|
2757 |
msgid "%sHow to use Robots.txt%s"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: view/BlockSettings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2761 |
msgid "Edit the Robots.txt data"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: view/BlockSettings.php:
|
2765 |
msgid ""
|
2766 |
"Does not physically create the robots.txt file. The best option for "
|
2767 |
"Multisites."
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: view/BlockSettings.php:
|
2771 |
msgid "Save Robots"
|
2772 |
msgstr ""
|
2773 |
|
@@ -2775,428 +2801,444 @@ msgstr ""
|
|
2775 |
msgid "SEO"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: view/BlockSettingsSeo.php:31 view/BlockSettingsSeo.php:
|
2779 |
msgid "Check for SEO issues in your site"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: view/BlockSettingsSeo.php:
|
2783 |
msgid "Let Squirrly SEO Optimize This Blog"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: view/BlockSettingsSeo.php:
|
2787 |
#, php-format
|
2788 |
msgid "%sIs Squirrly SEO better than WordPress SEO by Yoast?%s"
|
2789 |
msgstr ""
|
2790 |
|
2791 |
-
#: view/BlockSettingsSeo.php:
|
2792 |
msgid ""
|
2793 |
"Activate the built-in SEO settings from Squirrly by switching Yes below. "
|
2794 |
"<strong>Works well with Multisites and Ecommerce.</strong>"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#: view/BlockSettingsSeo.php:
|
2798 |
msgid "New SEO Settings For Google 2017"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
-
#: view/BlockSettingsSeo.php:
|
2802 |
msgid "Fastest SEO Plugin in 2017"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
-
#: view/BlockSettingsSeo.php:
|
2806 |
msgid "What does Squirrly automatically do for SEO?"
|
2807 |
msgstr "Ce face Squirrly in mod automat pentru SEO?"
|
2808 |
|
2809 |
-
#: view/BlockSettingsSeo.php:
|
2810 |
#, php-format
|
2811 |
msgid ""
|
2812 |
"adds <strong>%scanonical link%s</strong>, <strong>%srel=\"prev\" and rel="
|
2813 |
"\"next\"%s</strong> metas in Header"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: view/BlockSettingsSeo.php:
|
2817 |
msgid "adds the required METAs (<strong>Dublin Core, Language</strong>, etc.)"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: view/BlockSettingsSeo.php:
|
2821 |
#, php-format
|
2822 |
msgid "adds the <strong>%sXML Sitemap%s</strong> for search engines: %s"
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#: view/BlockSettingsSeo.php:
|
2826 |
#, php-format
|
2827 |
msgid "adds <strong>Feed style</strong> to your blog feed (eg. %s/feed)"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: view/BlockSettingsSeo.php:
|
2831 |
#, php-format
|
2832 |
msgid ""
|
2833 |
"adds the <strong>%sfavicon.ico%s</strong> and the <strong>%sicons for "
|
2834 |
"tablets and smartphones%s</strong>"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: view/BlockSettingsSeo.php:
|
2838 |
#, php-format
|
2839 |
msgid "adds the <strong>%sJson-LD%s</strong> metas for Semantic SEO"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: view/BlockSettingsSeo.php:
|
2843 |
#, php-format
|
2844 |
msgid ""
|
2845 |
"adds the <strong>%sNoindex%s</strong>, <strong>%sNofollow%s</strong> metas "
|
2846 |
"for your desired pages"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: view/BlockSettingsSeo.php:
|
2850 |
msgid ""
|
2851 |
"Note! By switching the <strong>Json-LD</strong>, <strong>XML Sitemap</"
|
2852 |
"strong> and <strong>Favicon</strong> on, you open new options below"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: view/BlockSettingsSeo.php:
|
2856 |
msgid "First Page Optimization"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: view/BlockSettingsSeo.php:
|
2860 |
#, php-format
|
2861 |
msgid "%sThe best SEO approach to Meta information%s"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
-
#: view/BlockSettingsSeo.php:
|
2865 |
msgid "Optimize the <strong>Titles</strong>"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
-
#: view/BlockSettingsSeo.php:
|
2869 |
#, php-format
|
2870 |
msgid "Optimize %sDescriptions%s "
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: view/BlockSettingsSeo.php:
|
2874 |
#, php-format
|
2875 |
msgid "Optimize %sKeywords%s "
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: view/BlockSettingsSeo.php:
|
2879 |
msgid "Squirrly Snippet G17-True Render"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: view/BlockSettingsSeo.php:
|
2883 |
msgid "First Page Optimization:"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: view/BlockSettingsSeo.php:
|
2887 |
msgid "Title:"
|
2888 |
msgstr "Titlu:"
|
2889 |
|
2890 |
-
#: view/BlockSettingsSeo.php:
|
2891 |
msgid "Tips: Length 10-75 chars"
|
2892 |
msgstr "Atentie: Lungimea 10-75 caractere"
|
2893 |
|
2894 |
-
#: view/BlockSettingsSeo.php:
|
2895 |
msgid "Description:"
|
2896 |
msgstr "Descrierea:"
|
2897 |
|
2898 |
-
#: view/BlockSettingsSeo.php:
|
2899 |
msgid "Tips: Length 70-320 chars"
|
2900 |
msgstr "Atentie: Lungimea 70-320 caractere"
|
2901 |
|
2902 |
-
#: view/BlockSettingsSeo.php:
|
2903 |
msgid "Keywords:"
|
2904 |
msgstr "Cuvinte cheie:"
|
2905 |
|
2906 |
-
#: view/BlockSettingsSeo.php:
|
2907 |
msgid "Tips: use 2-4 keywords"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: view/BlockSettingsSeo.php:
|
2911 |
msgid "OG Image:"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: view/BlockSettingsSeo.php:
|
2915 |
msgid "Select Open Graph Image"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: view/BlockSettingsSeo.php:
|
2919 |
msgid "First Page Preview (Title, Description, Keywords)"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: view/BlockSettingsSeo.php:
|
2923 |
msgid "Squirrly Snippet"
|
2924 |
msgstr "Snipet Squirrly"
|
2925 |
|
2926 |
-
#: view/BlockSettingsSeo.php:
|
2927 |
msgid ""
|
2928 |
"If you don't see any changes in your Google snippet, check if other SEO "
|
2929 |
"themes or plugins affect Squirrly."
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: view/BlockSettingsSeo.php:
|
2933 |
#, php-format
|
2934 |
msgid ""
|
2935 |
"Use the %s<strong>Squirrly Snippet Tool</strong>%s while editing a Post/Page "
|
2936 |
"to customize the Title and the Description."
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: view/BlockSettingsSeo.php:
|
2940 |
msgid "SEO for all post/pages"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#: view/BlockSettingsSeo.php:
|
2944 |
#, php-format
|
2945 |
msgid ""
|
2946 |
"To customize the Title and Description for all the Posts and Pages in your "
|
2947 |
"site use the %sSquirrly Snippet Tool%s"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: view/BlockSettingsSeo.php:
|
2951 |
msgid "Add the Post tags in <strong>Keyword META</strong>."
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: view/BlockSettingsSeo.php:
|
2955 |
msgid "Exclude Squirrly from loading in these Post Types"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: view/BlockSettingsSeo.php:
|
2959 |
msgid ""
|
2960 |
"DO NOT CHECK any Post Type if you want Squirrly to load for all posts types. "
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: view/BlockSettingsSeo.php:
|
2964 |
msgid "Load <strong>Squirrly SEO Snippet in Frontend</strong> too."
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#: view/BlockSettingsSeo.php:
|
2968 |
msgid "Social Media Options"
|
2969 |
msgstr "Optiuni Social Media"
|
2970 |
|
2971 |
-
#: view/BlockSettingsSeo.php:
|
2972 |
msgid "Select the language you're using on Social Media"
|
2973 |
msgstr ""
|
2974 |
|
2975 |
-
#: view/BlockSettingsSeo.php:
|
2976 |
#, php-format
|
2977 |
msgid "%sHow to pop out in Social Media with your links%s"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
-
#: view/BlockSettingsSeo.php:
|
2981 |
#, php-format
|
2982 |
msgid "%sGet busy with Facebook’s new Search Engine functions%s"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: view/BlockSettingsSeo.php:
|
2986 |
#, php-format
|
2987 |
msgid ""
|
2988 |
"%sHow I Added Twitter Cards in My WordPress for Better Inbound Marketing%s"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: view/BlockSettingsSeo.php:
|
2992 |
msgid "Open Graph G17 - 2017 Settings"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: view/BlockSettingsSeo.php:
|
2996 |
msgid "Squirrly Adds the Best Codes for Open Graph and Twitter Cards"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
-
#: view/BlockSettingsSeo.php:
|
3000 |
#, php-format
|
3001 |
msgid ""
|
3002 |
"Add the Social Open Graph protocol so that your Facebook shares look good. "
|
3003 |
"%sCheck here%s. "
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: view/BlockSettingsSeo.php:
|
3007 |
msgid "Facebook App ID"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: view/BlockSettingsSeo.php:
|
3011 |
#, php-format
|
3012 |
msgid "Add the %sFacebook App%s ID "
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: view/BlockSettingsSeo.php:
|
3016 |
msgid "You need to add your <strong>Twitter account</strong> below"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: view/BlockSettingsSeo.php:
|
3020 |
msgid "Add the <strong>Twitter card</strong> in your tweets. "
|
3021 |
msgstr "Adauga <strong>titlul</strong> corect in pagina acasa"
|
3022 |
|
3023 |
-
#: view/BlockSettingsSeo.php:
|
3024 |
#, php-format
|
3025 |
msgid ""
|
3026 |
"Use <strong>Twitter %ssummary_large_image%s</strong> for your Twitter Card. "
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: view/BlockSettingsSeo.php:
|
3030 |
msgid "Social Media Accounts"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: view/BlockSettingsSeo.php:
|
3034 |
#, php-format
|
3035 |
msgid "%sLink your Google+ profile to the content you create%s"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: view/BlockSettingsSeo.php:
|
3039 |
#, php-format
|
3040 |
msgid ""
|
3041 |
"%sTwitter account is mandatory for <strong>Twitter Card Validation</strong>%s"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#: view/BlockSettingsSeo.php:
|
3045 |
#, php-format
|
3046 |
msgid ""
|
3047 |
"%sAdd all your social accounts for <strong>JSON-LD Semantic SEO</strong>%s"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: view/BlockSettingsSeo.php:
|
3051 |
#, php-format
|
3052 |
msgid "%sSpecify your social profiles to Google%s"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
-
#: view/BlockSettingsSeo.php:
|
3056 |
msgid "Your Twitter Account:"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
-
#: view/BlockSettingsSeo.php:
|
3060 |
msgid "Google Plus Profile:"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
-
#: view/BlockSettingsSeo.php:
|
3064 |
msgid "Facebook Profile:"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
-
#: view/BlockSettingsSeo.php:
|
3068 |
msgid "Linkedin Profile:"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
-
#: view/BlockSettingsSeo.php:
|
3072 |
msgid "Pinterest Profile:"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
-
#: view/BlockSettingsSeo.php:
|
3076 |
msgid "Instagram Profile:"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
-
#: view/BlockSettingsSeo.php:
|
3080 |
msgid "Youtube Profile:"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
-
#: view/BlockSettingsSeo.php:
|
3084 |
msgid "XML Sitemap for Google"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
-
#: view/BlockSettingsSeo.php:
|
3088 |
msgid ""
|
3089 |
"Squirrly Sitemap is the fastest way to tell Google about the pages on your "
|
3090 |
"site. <strong>Supports Multisites, Google News, Images, Videos, Custom Post "
|
3091 |
"Types, Custom Taxonomies and Ecommerce products</strong>"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: view/BlockSettingsSeo.php:
|
3095 |
#, php-format
|
3096 |
msgid "%sHow to submit your sitemap.xml in Google Webmaster Tool%s"
|
3097 |
msgstr ""
|
3098 |
|
3099 |
-
#: view/BlockSettingsSeo.php:
|
3100 |
#, php-format
|
3101 |
msgid ""
|
3102 |
"%s10 Vital To Dos to Feed Your SEO Content Machine After You Post Articles%s"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: view/BlockSettingsSeo.php:
|
3106 |
#, php-format
|
3107 |
msgid ""
|
3108 |
"For Google News Sitemap, ensure that your site is included in %sGoogle News%s"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
-
#: view/BlockSettingsSeo.php:
|
3112 |
msgid "XML Sitemap Options"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
-
#: view/BlockSettingsSeo.php:
|
3116 |
msgid "Ping your sitemap to Google and Bing when a new post is published"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
-
#: view/BlockSettingsSeo.php:
|
|
|
|
|
|
|
|
|
3120 |
msgid "Build Sitemaps for"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: view/BlockSettingsSeo.php:
|
|
|
|
|
|
|
|
|
3124 |
msgid "Google News"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
-
#: view/BlockSettingsSeo.php:
|
|
|
|
|
|
|
|
|
3128 |
msgid "Categories"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
-
#: view/BlockSettingsSeo.php:
|
3132 |
msgid "Tags"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
-
#: view/BlockSettingsSeo.php:
|
3136 |
msgid "Archive"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
-
#: view/BlockSettingsSeo.php:
|
3140 |
msgid "Custom Taxonomies"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
-
#: view/BlockSettingsSeo.php:
|
3144 |
msgid "Custom Posts"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
-
#: view/BlockSettingsSeo.php:
|
3148 |
#, php-format
|
3149 |
msgid ""
|
3150 |
"Select only the Post Types that have links in them. Your sitemap will be %s"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: view/BlockSettingsSeo.php:
|
3154 |
msgid "Include in Sitemaps"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: view/BlockSettingsSeo.php:
|
3158 |
msgid "<strong>Images</strong> from posts/pages"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: view/BlockSettingsSeo.php:
|
3162 |
msgid "<strong>Videos</strong> (embeded and local media)"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: view/BlockSettingsSeo.php:
|
3166 |
msgid "How often do you update your site?"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: view/BlockSettingsSeo.php:
|
|
|
|
|
|
|
|
|
3170 |
msgid "every day"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: view/BlockSettingsSeo.php:
|
3174 |
msgid "1-3 times per week"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
-
#: view/BlockSettingsSeo.php:
|
3178 |
msgid "1-3 times per month"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
-
#: view/BlockSettingsSeo.php:
|
3182 |
msgid "1-3 times per year"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
-
#: view/BlockSettingsSeo.php:
|
3186 |
msgid "Feed Pagination: How many Posts per page to show in sitemap?"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
-
#: view/BlockSettingsSeo.php:
|
3190 |
msgid "Change the Website Icon"
|
3191 |
msgstr "Schimba icoana site-ului"
|
3192 |
|
3193 |
-
#: view/BlockSettingsSeo.php:
|
3194 |
msgid ""
|
3195 |
"Now, even tablet & smartphone browsers make use of your icons. This makes "
|
3196 |
"having a good favicon even more important."
|
3197 |
msgstr ""
|
3198 |
|
3199 |
-
#: view/BlockSettingsSeo.php:
|
3200 |
#, php-format
|
3201 |
msgid ""
|
3202 |
"You can use %shttp://convertico.com/%s to convert your photo to icon and "
|
@@ -3205,15 +3247,15 @@ msgstr ""
|
|
3205 |
"Poti folosi %shttp://convertico.com/%s pentru a converti imaginea in icoana "
|
3206 |
"si poti incarca icoana aici"
|
3207 |
|
3208 |
-
#: view/BlockSettingsSeo.php:
|
3209 |
msgid "Upload file:"
|
3210 |
msgstr "Urca fisier:"
|
3211 |
|
3212 |
-
#: view/BlockSettingsSeo.php:
|
3213 |
msgid "Upload"
|
3214 |
msgstr "Upload"
|
3215 |
|
3216 |
-
#: view/BlockSettingsSeo.php:
|
3217 |
msgid ""
|
3218 |
"If you don't see the new icon in your browser, empty the browser cache and "
|
3219 |
"refresh the page."
|
@@ -3221,336 +3263,348 @@ msgstr ""
|
|
3221 |
"Daca nu vezi noua icoana in browser, goleste cache-ul din browser si da "
|
3222 |
"refresh la pagina."
|
3223 |
|
3224 |
-
#: view/BlockSettingsSeo.php:
|
3225 |
msgid "File types: JPG, JPEG, GIF and PNG."
|
3226 |
msgstr "Tip fisiere JPEG,JPG,GIF sau PNG "
|
3227 |
|
3228 |
-
#: view/BlockSettingsSeo.php:
|
3229 |
msgid ""
|
3230 |
"Does not physically create the favicon.ico file. The best option for "
|
3231 |
"Multisites."
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: view/BlockSettingsSeo.php:
|
3235 |
msgid "JSON-LD for Semantic SEO"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: view/BlockSettingsSeo.php:
|
3239 |
msgid ""
|
3240 |
"Squirrly will automatically add the JSON-LD Structured Data in your site."
|
3241 |
msgstr ""
|
3242 |
|
3243 |
-
#: view/BlockSettingsSeo.php:
|
3244 |
#, php-format
|
3245 |
msgid "%sJSON-LD's Big Day at Google%s"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: view/BlockSettingsSeo.php:
|
3249 |
#, php-format
|
3250 |
msgid "%sGoogle Testing Tool%s"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: view/BlockSettingsSeo.php:
|
3254 |
msgid "JSON-LD G17 - 2x More Options"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: view/BlockSettingsSeo.php:
|
3258 |
msgid "Your site type:"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: view/BlockSettingsSeo.php:
|
3262 |
msgid "Organization"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: view/BlockSettingsSeo.php:
|
3266 |
msgid "Personal"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#: view/BlockSettingsSeo.php:
|
3270 |
msgid "Your Organization Name:"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: view/BlockSettingsSeo.php:
|
3274 |
msgid "Your Name:"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: view/BlockSettingsSeo.php:
|
3278 |
msgid "Job Title:"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: view/BlockSettingsSeo.php:
|
3282 |
msgid "Logo Url:"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: view/BlockSettingsSeo.php:
|
3286 |
msgid "Image Url:"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: view/BlockSettingsSeo.php:
|
3290 |
msgid "Select Image"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: view/BlockSettingsSeo.php:
|
3294 |
msgid "Contact Phone:"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: view/BlockSettingsSeo.php:
|
3298 |
msgid "Contact Type:"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: view/BlockSettingsSeo.php:
|
3302 |
msgid "Customer Service"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: view/BlockSettingsSeo.php:
|
3306 |
msgid "Technical Support"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: view/BlockSettingsSeo.php:
|
3310 |
msgid "Billing Support"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
-
#: view/BlockSettingsSeo.php:
|
3314 |
msgid "Bill Payment"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: view/BlockSettingsSeo.php:
|
3318 |
msgid "Sales"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: view/BlockSettingsSeo.php:
|
3322 |
msgid "Reservations"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: view/BlockSettingsSeo.php:
|
3326 |
msgid "Credit Card Support"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: view/BlockSettingsSeo.php:
|
3330 |
msgid "Emergency"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#: view/BlockSettingsSeo.php:
|
3334 |
msgid "Baggage Tracking"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: view/BlockSettingsSeo.php:
|
3338 |
msgid "Roadside Assistance"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: view/BlockSettingsSeo.php:
|
3342 |
msgid "Package Tracking"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: view/BlockSettingsSeo.php:
|
3346 |
msgid "Short Description:"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
-
#: view/BlockSettingsSeo.php:
|
3350 |
msgid "Add your social accounts for Json-LD"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
#: view/BlockSettingsSeo.php:
|
3354 |
msgid "How the search results will look like once Google grabs your data."
|
3355 |
msgstr ""
|
3356 |
|
3357 |
-
#: view/BlockSettingsSeo.php:
|
3358 |
msgid "Tracking Tools"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
-
#: view/BlockSettingsSeo.php:
|
3362 |
#, php-format
|
3363 |
msgid "%sHow to Get the Most Out of Google Analytics%s"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: view/BlockSettingsSeo.php:
|
3367 |
#, php-format
|
3368 |
msgid "%sWhat is Facebook Pixel?%s"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: view/BlockSettingsSeo.php:
|
3372 |
#, php-format
|
3373 |
msgid "%sA Beginner’s Guide to Facebook Insights%s"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
#: view/BlockSettingsSeo.php:
|
3377 |
msgid "Google Tracking G17"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
-
#: view/BlockSettingsSeo.php:
|
3381 |
msgid "Facebook Tracking G17"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
-
#: view/BlockSettingsSeo.php:
|
3385 |
msgid "Rich Pins G17"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
-
#: view/BlockSettingsSeo.php:
|
3389 |
-
#: view/BlockSettingsSeo.php:
|
3390 |
#, php-format
|
3391 |
msgid "Facebook Admin ID (for %sInsights%s ):"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: view/BlockSettingsSeo.php:
|
3395 |
-
#: view/BlockSettingsSeo.php:
|
3396 |
msgid "Facebook ID or https://www.facebook.com/YourProfileName"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
-
#: view/BlockSettingsSeo.php:
|
3400 |
msgid "Add more Facebook Admin IDs"
|
3401 |
msgstr ""
|
3402 |
|
3403 |
-
#: view/BlockSettingsSeo.php:
|
3404 |
#, php-format
|
3405 |
msgid "Google %sAnalytics ID%s:"
|
3406 |
msgstr "Google %sAnalytics ID%s:"
|
3407 |
|
3408 |
-
#: view/BlockSettingsSeo.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3409 |
#, php-format
|
3410 |
msgid "Facebook %sPixel ID%s:"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
-
#: view/BlockSettingsSeo.php:
|
3414 |
#, php-format
|
3415 |
msgid ""
|
3416 |
"Load <strong>%sGoogle Analytics AMP%s</strong> and <strong>%sFacebook Pixel "
|
3417 |
"AMP%s</strong> tracking%s(Warning! The tracking works only for AMP Themes.%s)"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
-
#: view/BlockSettingsSeo.php:
|
3421 |
msgid "Measure Your Success"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: view/BlockSettingsSeo.php:
|
3425 |
#, php-format
|
3426 |
msgid "%sHow to set the Google Webmaster Tool%s"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
-
#: view/BlockSettingsSeo.php:
|
3430 |
#, php-format
|
3431 |
msgid "%sBest practices to help Google find, crawl, and index your site%s"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: view/BlockSettingsSeo.php:
|
3435 |
#, php-format
|
3436 |
msgid "%sBing Webmaster Tools Help & How-To Center%s"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
-
#: view/BlockSettingsSeo.php:
|
3440 |
#, php-format
|
3441 |
msgid "%sRich Pins Validator%s"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: view/BlockSettingsSeo.php:
|
3445 |
#, php-format
|
3446 |
msgid "Google META verification code for %sWebmaster Tool%s:"
|
3447 |
msgstr "Cod META pentru %sGoogle Webmaster Tool%s"
|
3448 |
|
3449 |
-
#: view/BlockSettingsSeo.php:
|
3450 |
#, php-format
|
3451 |
msgid "Bing META code (for %sWebmaster Tool%s ):"
|
3452 |
msgstr "Bing META code (pentru %sWebmaster Tool%s):"
|
3453 |
|
3454 |
-
#: view/BlockSettingsSeo.php:
|
3455 |
#, php-format
|
3456 |
msgid "Alexa META code (for %sAlexa Tool%s ):"
|
3457 |
msgstr "Alexa META code (pentru %sWebmaster Tool%s):"
|
3458 |
|
3459 |
-
#: view/BlockSettingsSeo.php:
|
3460 |
#, php-format
|
3461 |
msgid "Pinterest Website Validator Code: (validate %sRich Pins%s )"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
-
#: view/BlockSupport.php:
|
3465 |
msgid "Go to Profile"
|
3466 |
msgstr "Profilul tau din Squirrly"
|
3467 |
|
3468 |
-
#: view/BlockSupport.php:
|
3469 |
msgid "Profile"
|
3470 |
msgstr "Profil"
|
3471 |
|
3472 |
-
#: view/BlockSupport.php:
|
3473 |
msgid "For more support:"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: view/BlockSupport.php:
|
3477 |
#, php-format
|
3478 |
msgid "10 AM to 4 PM (GMT): Mon-Fri %sby email%s."
|
3479 |
msgstr ""
|
3480 |
|
3481 |
-
#: view/BlockSupport.php:
|
3482 |
#, php-format
|
3483 |
msgid "%sLive Chat%s on Youtube. Thursday 4 PM."
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: view/BlockSupport.php:
|
3487 |
#, php-format
|
3488 |
msgid "Google Plus %sSupport Community%s."
|
3489 |
msgstr ""
|
3490 |
|
3491 |
-
#: view/BlockSupport.php:
|
3492 |
#, php-format
|
3493 |
msgid "New Lessons Mon. and Tue. on %sTwitter%s."
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#: view/BlockSupport.php:
|
3497 |
msgid "How was your Squirrly experience today?"
|
3498 |
msgstr "Cum a fost experienta de azi cu Squirrly?"
|
3499 |
|
3500 |
-
#: view/BlockSupport.php:
|
3501 |
msgid "How was Squirrly today?"
|
3502 |
msgstr "Cum a fost Squirrly azi?"
|
3503 |
|
3504 |
-
#: view/BlockSupport.php:
|
3505 |
msgid "Angry"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: view/BlockSupport.php:
|
3509 |
msgid "Annoying"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#: view/BlockSupport.php:
|
3513 |
msgid "Sad"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
-
#: view/BlockSupport.php:
|
3517 |
msgid "Bad"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
-
#: view/BlockSupport.php:
|
3521 |
msgid "Happy"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
-
#: view/BlockSupport.php:
|
3525 |
msgid "Nice"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
-
#: view/BlockSupport.php:
|
3529 |
msgid "Excited"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#: view/BlockSupport.php:
|
3533 |
msgid "Great"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: view/BlockSupport.php:
|
3537 |
msgid "Love it"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: view/BlockSupport.php:
|
3541 |
msgid "Please tell us why?"
|
3542 |
msgstr "De ce?"
|
3543 |
|
3544 |
-
#: view/BlockSupport.php:
|
3545 |
msgid "Send feedback"
|
3546 |
msgstr "Trimite"
|
3547 |
|
3548 |
-
#: view/BlockSupport.php:
|
3549 |
#, php-format
|
3550 |
msgid "%sSupport button%s here in WordPress (^^)"
|
3551 |
msgstr ""
|
3552 |
|
3553 |
-
#: view/BlockSupport.php:
|
3554 |
msgid "Thank you! You can send us a happy face tomorow too."
|
3555 |
msgstr "Multumim! Ne poti trimite o fata vesela si maine."
|
3556 |
|
@@ -3632,7 +3686,7 @@ msgstr ""
|
|
3632 |
|
3633 |
#: view/Blocklogin.php:31
|
3634 |
#, php-format
|
3635 |
-
msgid "I Agree with the %
|
3636 |
msgstr ""
|
3637 |
|
3638 |
#: view/Blocklogin.php:33
|
@@ -4046,6 +4100,16 @@ msgstr ""
|
|
4046 |
msgid "Today SERP Changes"
|
4047 |
msgstr ""
|
4048 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4049 |
#~ msgid "Turn off warnings!"
|
4050 |
#~ msgstr "Opreste avertizarile"
|
4051 |
|
@@ -4265,9 +4329,6 @@ msgstr ""
|
|
4265 |
#~ msgid "Check with google ..."
|
4266 |
#~ msgstr "Verificat cu google ..."
|
4267 |
|
4268 |
-
#~ msgid "Squirrly Options"
|
4269 |
-
#~ msgstr "Optiuni Squirrly"
|
4270 |
-
|
4271 |
#~ msgid "Let Squirrly warn me if there are errors related to SEO settings"
|
4272 |
#~ msgstr "Lasa Squirrly sa ma anunte daca sunt erori SEO in setari"
|
4273 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: squirrly_seo\n"
|
4 |
+
"POT-Creation-Date: 2018-07-30 08:57+0300\n"
|
5 |
+
"PO-Revision-Date: 2018-07-30 08:57+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.0.5\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: d:/Work/localhost/wordpress/wp/wp-content/plugins/"
|
15 |
"squirrly-seo\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
#: classes/Error.php:16
|
20 |
msgid ""
|
21 |
"Function get_class does not exists! Is required for Squirrly to work "
|
44 |
msgid "Don't bother me!"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: classes/Tools.php:129
|
48 |
msgid "Getting started"
|
49 |
msgstr "Ajutor"
|
50 |
|
51 |
+
#: classes/Tools.php:349
|
52 |
msgid "Format"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: classes/Tools.php:357 classes/Tools.php:373
|
56 |
msgid "Category"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: classes/Tools.php:365 classes/Tools.php:381
|
60 |
msgid "Tag"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: classes/Tools.php:389
|
64 |
msgid "Shipping Option"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: classes/Tools.php:397
|
68 |
msgid "Author at"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: classes/Tools.php:429
|
72 |
msgid "You searched for"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: classes/Tools.php:445
|
76 |
msgid "Page not found"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Tools.php:976
|
80 |
msgid "Fix it for me!"
|
81 |
msgstr "Repara-l"
|
82 |
|
83 |
+
#: classes/Tools.php:982
|
84 |
msgid "Activate the Squirrly SEO for your blog (recommended)"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: classes/Tools.php:993
|
88 |
msgid ""
|
89 |
"You have META Title Duplicates. Disable the Squirrly Title Optimization or "
|
90 |
"disable the other SEO Plugins"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: classes/Tools.php:1001
|
94 |
msgid ""
|
95 |
"You have META Description Duplicates. Disable the Squirrly Description "
|
96 |
"Optimization or disable the other SEO Plugins"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: classes/Tools.php:1009
|
100 |
msgid ""
|
101 |
"You have Open Graph META Duplicates. Disable the Squirrly SEO Open Graph or "
|
102 |
"disable the other SEO Plugins"
|
104 |
"Aveti duplicate in META Open Graph. Opriti Squirrly Seo Open Graph sau "
|
105 |
"dezactivati alte plugin-uri de SEO"
|
106 |
|
107 |
+
#: classes/Tools.php:1017
|
108 |
msgid ""
|
109 |
"You have Twitter Card META Duplicates. Disable the Squirrly SEO Twitter Card "
|
110 |
"or disable the other SEO Plugins"
|
112 |
"Aveti duplicate in META Twitter Card. Opriti Squirrly Seo Twitter Card sau "
|
113 |
"dezactivati alte plugin-uri de SEO"
|
114 |
|
115 |
+
#: classes/Tools.php:1026
|
116 |
msgid "You're blocking google from indexing your site!"
|
117 |
msgstr "Blochezi accesul la google spre indexarea site-ului"
|
118 |
|
119 |
+
#: classes/Tools.php:1033
|
120 |
msgid ""
|
121 |
"It is highly recommended that you include the %postname% variable in the "
|
122 |
"permalink structure. <br />Go to Settings > Permalinks and add /%postname%/ "
|
126 |
">Mergi la Setari > Legaturi permanente si adauga /%postname%/ in campul "
|
127 |
"Structură personalizată"
|
128 |
|
129 |
+
#: classes/Tools.php:1040
|
130 |
msgid ""
|
131 |
"It is highly recommended to change or remove the default Wordpress Tagline. "
|
132 |
"<br />Go to Settings > General > Tagline"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: classes/Tools.php:1046
|
136 |
msgid "Great! We didn't find any issue in your site."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Tools.php:1191
|
140 |
msgid "Just another WordPress site"
|
141 |
msgstr ""
|
142 |
|
223 |
msgstr ""
|
224 |
|
225 |
#: config/config.php:63
|
226 |
+
msgid "Displays the current date"
|
227 |
msgstr ""
|
228 |
|
229 |
#: config/config.php:64
|
230 |
msgid "Adds the post's keyword to the post description"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: config/config.php:65
|
234 |
+
msgid "Adds the current day"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: config/config.php:66
|
238 |
+
msgid "Adds the current month"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: config/config.php:67
|
242 |
+
msgid "Adds the current year"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
#: controllers/Api.php:40
|
246 |
msgid "Connection expired. Please try again"
|
247 |
msgstr ""
|
268 |
"us at: %s"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: controllers/Menu.php:99
|
272 |
msgid "See Your Rank on Google"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: controllers/Menu.php:156
|
276 |
msgid "Custom SEO"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: controllers/Menu.php:200
|
280 |
#, php-format
|
281 |
msgid "Check out the Squirrly Analytics section. %sClick here%s"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: controllers/Menu.php:200 view/BlockPostsAnalytics.php:47
|
285 |
#, fuzzy
|
286 |
msgid "Squirrly Analytics"
|
287 |
msgstr "Optiuni Squirrly"
|
288 |
|
289 |
+
#: controllers/Menu.php:217
|
|
|
|
|
|
|
|
|
|
|
290 |
msgid " Dashboard"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: controllers/Menu.php:218
|
294 |
msgid "First Step"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: controllers/Menu.php:218
|
298 |
msgid "Dashboard"
|
299 |
msgstr "Dashboard"
|
300 |
|
301 |
+
#: controllers/Menu.php:227
|
302 |
msgid " Advanced Analytics (Business Level)"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: controllers/Menu.php:228
|
306 |
msgid "Advanced Analytics"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: controllers/Menu.php:235
|
310 |
msgid " Performance Analytics"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: controllers/Menu.php:236
|
314 |
msgid "Performance <br />Analytics"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: controllers/Menu.php:244
|
318 |
msgid " Keyword Research"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: controllers/Menu.php:245 view/BlockBriefcaseKeywords.php:333
|
322 |
msgid "Keyword Research"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: controllers/Menu.php:252
|
326 |
msgid " Briefcase"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: controllers/Menu.php:253
|
330 |
msgid "Briefcase"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: controllers/Menu.php:260
|
334 |
msgid " Live Assistant"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: controllers/Menu.php:261
|
338 |
msgid "Live Assistant"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: controllers/Menu.php:267
|
342 |
msgid " Copywriting"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: controllers/Menu.php:268
|
346 |
msgid "Copywriting"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: controllers/Menu.php:276
|
350 |
msgid " SEO Audit"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: controllers/Menu.php:277
|
354 |
msgid "Site Audit"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: controllers/Menu.php:285
|
358 |
msgid " SEO Settings"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: controllers/Menu.php:286 view/BlockToolbar.php:4
|
362 |
#, fuzzy
|
363 |
msgid "SEO Settings"
|
364 |
msgstr "Setari"
|
365 |
|
366 |
+
#: controllers/Menu.php:294
|
367 |
msgid " Advanced Settings"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: controllers/Menu.php:295 view/BlockSettings.php:22
|
371 |
msgid "Advanced Settings"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: controllers/Menu.php:302
|
375 |
msgid " SEO Patterns"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: controllers/Menu.php:303 view/BlockToolbar.php:14
|
379 |
msgid "Patterns"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: controllers/Menu.php:311
|
383 |
msgid " Account Info"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: controllers/Menu.php:312
|
387 |
msgid "Account Info"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: controllers/Menu.php:320
|
391 |
msgid " Support"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: controllers/Menu.php:321 view/BlockSupport.php:22
|
395 |
msgid "Support"
|
396 |
msgstr "Suport"
|
397 |
|
398 |
+
#: controllers/Menu.php:329
|
399 |
msgid "Become an Affiliate with "
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: controllers/Menu.php:330
|
403 |
msgid "Become an Affiliate"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: controllers/Menu.php:339
|
407 |
+
msgid "Import, Backup & Restore SEO"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: controllers/Menu.php:340
|
411 |
+
msgid "Import/Backup SEO"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: controllers/Menu.php:384
|
415 |
msgid "SEO Snippet"
|
416 |
msgstr ""
|
417 |
|
431 |
msgid "SEO Analytics, by Squirrly"
|
432 |
msgstr "SEO Analytics, de la Squirrly"
|
433 |
|
434 |
+
#: controllers/PostsList.php:144 controllers/SerpChecker.php:174
|
435 |
#: models/SerpCheckerTable.php:646 view/Blockseo.php:10
|
436 |
msgid "Update"
|
437 |
msgstr "Update"
|
438 |
|
439 |
+
#: controllers/PostsList.php:148 controllers/SerpChecker.php:178
|
440 |
msgid "Not Public"
|
441 |
msgstr "Ciorna"
|
442 |
|
443 |
+
#: controllers/PostsList.php:149 controllers/SerpChecker.php:179
|
444 |
msgid "Could not process"
|
445 |
msgstr "Nu s-a putut verifica"
|
446 |
|
459 |
msgid "%s"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: controllers/SerpChecker.php:23 core/BlockPostsAnalytics.php:31
|
463 |
#, php-format
|
464 |
msgid ""
|
465 |
"To get back to the Advanced Analytics and see rankings for all the keywords "
|
466 |
"in Briefcase upgrade to %sBusiness Plan%s."
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: controllers/SerpChecker.php:77 controllers/SerpChecker.php:91
|
470 |
+
#: controllers/SerpChecker.php:134 core/BlockSerpKeywords.php:66
|
471 |
#: core/BlockSerpKeywords.php:74 core/BlockSerpKeywords.php:97
|
472 |
+
#: core/BlockSettingsSeo.php:69
|
473 |
msgid "You don't have enough pemission to activate this feature"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: controllers/SerpChecker.php:115 controllers/SerpChecker.php:125
|
477 |
+
#: core/BlockBriefcaseKeywords.php:194
|
478 |
msgid "Last checked"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: controllers/SerpChecker.php:129
|
482 |
msgid "Invalid Request"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: controllers/SerpChecker.php:142
|
486 |
msgid "Removed successfully! The ranks were updated from Squirry Server"
|
487 |
msgstr ""
|
488 |
|
495 |
msgid "An error occured. Mabe a network error :("
|
496 |
msgstr "A aparut o eroare. Probabil o eroare de retea :("
|
497 |
|
498 |
+
#: core/BlockBriefcaseKeywords.php:36 core/BlockPostsAnalytics.php:24
|
499 |
#, php-format
|
500 |
msgid ""
|
501 |
"%sYou activated the Business Plan with Advanced Analytics. %sStart Here%s %s"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: core/BlockBriefcaseKeywords.php:39 core/BlockPostsAnalytics.php:28
|
505 |
#, php-format
|
506 |
msgid ""
|
507 |
"%sStart a FREE Trial of the Business Plan with Advanced Analytics for 7 "
|
508 |
"days. No credit card required. %sSee details%s %s"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: core/BlockBriefcaseKeywords.php:70
|
512 |
msgid "No keyword found in the briefcase."
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: core/BlockBriefcaseKeywords.php:96 core/BlockBriefcaseKeywords.php:123
|
516 |
+
#: core/BlockBriefcaseKeywords.php:141 core/BlockBriefcaseKeywords.php:165
|
517 |
+
#: core/BlockBriefcaseKeywords.php:235 core/BlockBriefcaseKeywords.php:255
|
518 |
+
#: core/BlockBriefcaseKeywords.php:277 core/BlockBriefcaseKeywords.php:295
|
519 |
msgid "You don't have enough pemission to manage this feature"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: core/BlockBriefcaseKeywords.php:116 core/BlockBriefcaseKeywords.php:248
|
523 |
+
#: core/BlockBriefcaseKeywords.php:270 core/BlockBriefcaseKeywords.php:312
|
524 |
+
#: core/Loading.php:40 view/FrontMenu.php:45
|
525 |
msgid "Saved!"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: core/BlockBriefcaseKeywords.php:118 core/BlockBriefcaseKeywords.php:159
|
529 |
+
#: core/BlockBriefcaseKeywords.php:227 core/BlockBriefcaseKeywords.php:314
|
530 |
msgid "Invalid Keyword!"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: core/BlockBriefcaseKeywords.php:134 core/BlockBriefcaseKeywords.php:288
|
534 |
msgid "Deleted!"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: core/BlockBriefcaseKeywords.php:136 core/BlockBriefcaseKeywords.php:272
|
538 |
+
#: core/BlockBriefcaseKeywords.php:290
|
539 |
msgid "Invalid params!"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: core/BlockBriefcaseKeywords.php:155
|
543 |
msgid "Keyword Research limit exceeded."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: core/BlockBriefcaseKeywords.php:155 core/Loading.php:61
|
547 |
msgid "Add 20 Keyword Researches"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: core/BlockBriefcaseKeywords.php:186
|
551 |
msgid "Check Ranks"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: core/BlockBriefcaseKeywords.php:197 models/BlockPostsAnalytics.php:393
|
555 |
#: models/SerpCheckerTable.php:565
|
556 |
msgid "Edit"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: core/BlockBriefcaseKeywords.php:198
|
560 |
msgid "Get Rank"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: core/BlockBriefcaseKeywords.php:203
|
564 |
msgid "Deleted Post"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: core/BlockBriefcaseKeywords.php:213
|
568 |
msgid "Article title"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: core/BlockBriefcaseKeywords.php:214 models/SerpCheckerTable.php:359
|
572 |
msgid "Google Rank"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: core/BlockBriefcaseKeywords.php:215 models/SerpCheckerTable.php:362
|
576 |
msgid "Optimized"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: core/BlockBriefcaseKeywords.php:216
|
580 |
msgid "Option"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: core/BlockBriefcaseKeywords.php:221
|
584 |
msgid "There are no articles found"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: core/BlockBriefcaseKeywords.php:250
|
588 |
msgid "Invalid Label or Color!"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: core/BlockImport.php:34
|
592 |
msgid "All the Plugin settings were imported successfuly!"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: core/BlockImport.php:36
|
596 |
msgid "No settings found for this plugin/theme."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: core/BlockImport.php:58
|
600 |
#, php-format
|
601 |
msgid ""
|
602 |
"%s SEO records were imported successfuly! You can now deactivate the %s "
|
603 |
"plugin"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: core/BlockImport.php:60
|
607 |
#, php-format
|
608 |
msgid ""
|
609 |
"There are no SEO records with this plugin. You can now deactivate the %s "
|
622 |
msgid "Could not find the Article in your Website"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: core/BlockSettingsSeo.php:27
|
626 |
#, php-format
|
627 |
msgid "You can now import into Squirrly SEO all the SEO Settings from %s"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: core/BlockSettingsSeo.php:40 core/Blockseo.php:13
|
631 |
msgid "Too short"
|
632 |
msgstr "Prea scurt"
|
633 |
|
634 |
+
#: core/BlockSettingsSeo.php:41 core/Blockseo.php:14
|
635 |
msgid "Too long"
|
636 |
msgstr "Prea lung"
|
637 |
|
638 |
+
#: core/BlockSettingsSeo.php:483
|
639 |
msgid "Great! The backup is restored."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: core/BlockSettingsSeo.php:485 core/BlockSettingsSeo.php:488
|
643 |
+
#: core/BlockSettingsSeo.php:533 core/BlockSettingsSeo.php:536
|
644 |
msgid "Error! The backup is not valid."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: core/BlockSettingsSeo.php:491 core/BlockSettingsSeo.php:539
|
648 |
msgid "Error! You have to enter a previous saved backup file."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: core/BlockSettingsSeo.php:530
|
652 |
msgid "Great! The SEO backup is restored."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: core/BlockSettingsSeo.php:546
|
656 |
msgid "Great! Squirrly Data Settings is up to date now."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: core/BlockSupport.php:24
|
660 |
msgid "Plugin Feedback"
|
661 |
msgstr "Feedback Squirrly"
|
662 |
|
663 |
+
#: core/BlockSupport.php:59
|
664 |
msgid "Thank you for your feedback"
|
665 |
msgstr "Multumesc pentru feedback"
|
666 |
|
667 |
+
#: core/BlockSupport.php:63 core/BlockSupport.php:103
|
|
|
|
|
|
|
|
|
668 |
msgid "No message."
|
669 |
msgstr "Nici un mesaj."
|
670 |
|
676 |
msgid "Message sent. Thank you!"
|
677 |
msgstr "Mesajul a fost trimis..."
|
678 |
|
679 |
+
#: core/BlockSupport.php:99
|
680 |
+
msgid "Could not send the email. Make sure you can send emails from your blog."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: core/Blocklogin.php:84
|
684 |
#, php-format
|
685 |
msgid ""
|
686 |
"We found your email, so it means you already have a Squirrly.co account. "
|
691 |
"Conecteaza-te cu contul tau de Squirrly. Daca ai uitat parola atunci apasa "
|
692 |
"%saici%s"
|
693 |
|
694 |
+
#: core/Blocklogin.php:87
|
695 |
msgid "Your email is not valid. Please enter a valid email"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: core/Blocklogin.php:90
|
699 |
msgid "We could not create your account. Please enter a valid email "
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: core/Blocklogin.php:95
|
703 |
msgid ""
|
704 |
"Error: Couldn't connect to host :( . Please contact your site's webhost (or "
|
705 |
"webmaster) and request them to add http://api.squirrly.co/ to their IP "
|
706 |
"whitelist."
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: core/Blocklogin.php:98
|
710 |
#, php-format
|
711 |
msgid ""
|
712 |
"Could not send your informations to squirrly. Please register %smanually%s."
|
713 |
msgstr ""
|
714 |
"Nu s-a putut trimite informatia la Squirrly. Inregistreaza-te %smanual%s."
|
715 |
|
716 |
+
#: core/Blocklogin.php:139
|
717 |
msgid "Wrong email or password!"
|
718 |
msgstr "Email sau Parola gresita!"
|
719 |
|
720 |
+
#: core/Blocklogin.php:142
|
721 |
msgid "You can use this account only for the URL you registered first!"
|
722 |
msgstr "Poti folosi acest cont doar pentru URL-ul inregistrat la inceput!"
|
723 |
|
724 |
+
#: core/Blocklogin.php:147
|
725 |
msgid "An error occured."
|
726 |
msgstr "A aparut o eroare."
|
727 |
|
728 |
+
#: core/Blocklogin.php:149
|
729 |
msgid "Both fields are required."
|
730 |
msgstr "Ambele campuri sunt obligatorii!"
|
731 |
|
733 |
msgid "snippet"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: core/Loading.php:37
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
msgid "Recent discussions:"
|
738 |
msgstr "Discutii recente:"
|
739 |
|
740 |
+
#: core/Loading.php:37
|
741 |
msgid "SEO Search Volume:"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: core/Loading.php:37
|
745 |
msgid "Competition:"
|
746 |
msgstr "Competitia:"
|
747 |
|
748 |
+
#: core/Loading.php:37
|
749 |
msgid "Trend:"
|
750 |
msgstr "Trend:"
|
751 |
|
752 |
+
#: core/Loading.php:38
|
753 |
msgid "Keyword:"
|
754 |
msgstr "Cuvant cheie:"
|
755 |
|
756 |
+
#: core/Loading.php:39
|
757 |
msgid "date"
|
758 |
msgstr "data"
|
759 |
|
760 |
+
#: core/Loading.php:41
|
761 |
msgid "Read it!"
|
762 |
msgstr "Citeste!"
|
763 |
|
764 |
+
#: core/Loading.php:42
|
765 |
msgid "Insert it!"
|
766 |
msgstr "Adauga!"
|
767 |
|
768 |
+
#: core/Loading.php:43
|
769 |
msgid "Reference"
|
770 |
msgstr "Referinta"
|
771 |
|
772 |
+
#: core/Loading.php:44
|
773 |
msgid "Insert as box"
|
774 |
msgstr "Adauga"
|
775 |
|
776 |
+
#: core/Loading.php:45
|
777 |
msgid "Insert Link"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: core/Loading.php:46
|
781 |
msgid "Not relevant?"
|
782 |
msgstr "Nu e ce doresti?"
|
783 |
|
784 |
+
#: core/Loading.php:47
|
785 |
msgid "Insert in your article"
|
786 |
msgstr "Adauga paragraf in articol"
|
787 |
|
788 |
+
#: core/Loading.php:48
|
789 |
msgid ":( An error occurred while processing your request. Please try again"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: core/Loading.php:49
|
793 |
msgid "Keyword Research takes too long to get the results. Click to try again"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: core/Loading.php:50
|
797 |
msgid "No results found!"
|
798 |
msgstr "Nu s-a gasit nimic ..."
|
799 |
|
800 |
+
#: core/Loading.php:51
|
801 |
msgid "Enter one more word to find relevant results"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: core/Loading.php:52
|
805 |
msgid "Takes too long to check this keyword ..."
|
806 |
msgstr "Ia prea mult timp sa verifice cuvantul ..."
|
807 |
|
808 |
+
#: core/Loading.php:53
|
809 |
msgid "Do a research!"
|
810 |
msgstr "Mai multe detalii!"
|
811 |
|
812 |
+
#: core/Loading.php:54
|
813 |
msgid "Do more research!"
|
814 |
msgstr "Mai multe detalii!"
|
815 |
|
816 |
+
#: core/Loading.php:55
|
817 |
#, php-format
|
818 |
msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
|
819 |
msgstr ""
|
820 |
"[ ATTRIBUTE: Verificati: %s pentru a vedea conditile de atribuire a "
|
821 |
"imaginii ]"
|
822 |
|
823 |
+
#: core/Loading.php:56
|
824 |
msgid "Has creative commons attributes"
|
825 |
msgstr "Are conditii de atribuire"
|
826 |
|
827 |
+
#: core/Loading.php:57
|
828 |
msgid "No known copyright restrictions"
|
829 |
msgstr "Nu sunt restrictii de copyright cunoscute"
|
830 |
|
831 |
+
#: core/Loading.php:58
|
832 |
msgid ""
|
833 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
834 |
"optimize for a keyword before publishing?"
|
836 |
"Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa il "
|
837 |
"optimizezi inainte de publicare?"
|
838 |
|
839 |
+
#: core/Loading.php:59
|
840 |
msgid "Keyword Research limit exceeded"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: core/Loading.php:60
|
844 |
msgid "Your Subscription has Expired"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: core/Loading.php:62
|
848 |
msgid "There are no keywords saved in briefcase yet"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: core/Loading.php:63
|
852 |
#, php-format
|
853 |
msgid "Congratulations! Your article is 100% optimized!"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: core/Loading.php:64
|
857 |
#, php-format
|
858 |
msgid "appears too many times. Try to remove %s of them"
|
859 |
msgstr "apare de prea multe ori. Sterge %s cuvint(e) cheie"
|
860 |
|
861 |
+
#: core/Loading.php:65
|
862 |
#, php-format
|
863 |
msgid "write %s more words"
|
864 |
msgstr "mai adauga %s cuvinte"
|
865 |
|
866 |
+
#: core/Loading.php:66
|
867 |
#, php-format
|
868 |
msgid "Add the keyword in the %s of your article"
|
869 |
msgstr "Adauga cuvantul cheie la %s articolului"
|
870 |
|
871 |
+
#: core/Loading.php:67
|
872 |
msgid "Click to keep the highlight on"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: core/Loading.php:68
|
876 |
msgid "introduction"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: core/Loading.php:69
|
880 |
#, php-format
|
881 |
msgid "Write more words after the %s keyword"
|
882 |
msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
|
883 |
|
884 |
+
#: core/Loading.php:70
|
885 |
msgid "or use synonyms"
|
886 |
msgstr "sau foloseste sinonime"
|
887 |
|
888 |
+
#: core/Loading.php:71
|
889 |
#, php-format
|
890 |
msgid "add %s more word(s)"
|
891 |
msgstr "Mai adauga %s cuvinte"
|
892 |
|
893 |
+
#: core/Loading.php:72
|
894 |
#, php-format
|
895 |
msgid "or remove %s word(s)"
|
896 |
msgstr "sau sterge %s cuvinte"
|
897 |
|
898 |
+
#: core/Loading.php:73
|
899 |
#, php-format
|
900 |
msgid "add %s more keyword(s)"
|
901 |
msgstr "mai adauga %s cuvint(e) cheie"
|
902 |
|
903 |
+
#: core/Loading.php:74
|
904 |
#, php-format
|
905 |
msgid "write %s more words to start calculating"
|
906 |
msgstr "Scrie %s cuvinte pentru a se putea verifica"
|
907 |
|
908 |
+
#: core/Loading.php:75
|
909 |
msgid "Add to Briefcase"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: core/Loading.php:76
|
913 |
msgid "Add Keyword to Briefcase"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: core/Loading.php:77 view/BlockBriefcaseKeywords.php:304
|
917 |
msgid "Use Keyword"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: core/Loading.php:78
|
921 |
+
msgid "Auto Draft"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
#: models/BlockPostsAnalytics.php:292 models/SerpCheckerTable.php:376
|
925 |
msgid "Type"
|
926 |
msgstr ""
|
1091 |
msgid "The favicon has been updated."
|
1092 |
msgstr "Icoana a fost adaugata pe server"
|
1093 |
|
1094 |
+
#: models/Post.php:53
|
1095 |
msgid "Squirrly could not find any results for: "
|
1096 |
msgstr "Squirrly nu a putut gasi rezultate pentru: "
|
1097 |
|
1098 |
+
#: models/Post.php:122
|
1099 |
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: models/Post.php:123
|
1103 |
msgid ""
|
1104 |
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
1105 |
"the HTML form."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: models/Post.php:124
|
1109 |
msgid "The uploaded file was only partially uploaded."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: models/Post.php:125
|
1113 |
msgid "No file was uploaded."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: models/Post.php:127
|
1117 |
msgid "Missing a temporary folder."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: models/Post.php:128
|
1121 |
msgid "Failed to write file to disk."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: models/Post.php:129
|
1125 |
msgid "File upload stopped by extension."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: models/Post.php:146
|
1129 |
msgid "Invalid form submission."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: models/Post.php:156
|
1133 |
msgid "File is empty. Please upload something more substantial."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: models/Post.php:158
|
1137 |
msgid ""
|
1138 |
"File is empty. Please upload something more substantial. This error could "
|
1139 |
"also be caused by uploads being disabled in your php.ini or by post_max_size "
|
1140 |
"being defined as smaller than upload_max_filesize in php.ini."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: models/Post.php:164
|
1144 |
msgid "Specified file failed upload test."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: models/Post.php:177
|
1148 |
msgid "Sorry, this file type is not permitted for security reasons."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: models/Post.php:202
|
1152 |
#, php-format
|
1153 |
msgid "The uploaded file could not be moved to %s."
|
1154 |
msgstr ""
|
1185 |
msgid "The total number of inbound links to this post"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: models/SerpCheckerTable.php:353 view/BlockPatterns.php:102
|
1189 |
#: view/FrontMenu.php:156
|
1190 |
msgid "Title"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: models/SerpCheckerTable.php:356 view/BlockBriefcaseKeywords.php:76
|
1194 |
+
#: view/BlockBriefcaseKeywords.php:184 view/BlockSerpKeywords.php:31
|
1195 |
#: view/BlockSerpKeywords.php:63
|
1196 |
msgid "Keyword"
|
1197 |
msgstr "Cuvant cheie:"
|
1204 |
msgid "Post Date"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: models/SerpCheckerTable.php:399 view/BlockBriefcaseKeywords.php:46
|
1208 |
msgid "Search Keyword"
|
1209 |
msgstr ""
|
1210 |
|
1221 |
msgid "Twitter"
|
1222 |
msgstr "Twitter"
|
1223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1224 |
#: models/SerpCheckerTable.php:636
|
1225 |
msgid "Reddit"
|
1226 |
msgstr ""
|
1246 |
msgid "Not indexed"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: models/domain/Patterns.php:240
|
1250 |
msgid "Page"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: models/domain/Patterns.php:241
|
1254 |
msgid "of"
|
1255 |
msgstr ""
|
1256 |
|
1273 |
msgstr "Versiunea PHP trebuie sa fie mai mare de 5.1"
|
1274 |
|
1275 |
#: view/BlockAccount.php:7 view/BlockAffiliate.php:7 view/BlockAudit.php:7
|
1276 |
+
#: view/BlockBriefcaseKeywords.php:7 view/BlockDashboard.php:6
|
1277 |
+
#: view/BlockImport.php:7 view/BlockKeywordResearch.php:7
|
1278 |
+
#: view/BlockPatterns.php:7 view/BlockPostsAnalytics.php:7
|
1279 |
+
#: view/BlockSettings.php:7 view/BlockSettingsSeo.php:7 view/SerpChecker.php:7
|
1280 |
msgid "Connect to Squirrly Data Cloud"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
#: view/BlockAccount.php:13 view/BlockAffiliate.php:13 view/BlockAudit.php:13
|
1284 |
+
#: view/BlockBriefcaseKeywords.php:13 view/BlockDashboard.php:28
|
1285 |
+
#: view/BlockImport.php:13 view/BlockKeywordResearch.php:13
|
1286 |
+
#: view/BlockPatterns.php:13 view/BlockPostsAnalytics.php:12
|
1287 |
+
#: view/BlockSettings.php:13 view/BlockSettingsSeo.php:13
|
1288 |
+
#: view/Blocklogin.php:38 view/SerpChecker.php:13
|
1289 |
msgid "START HERE"
|
1290 |
msgstr ""
|
1291 |
|
1402 |
msgstr ""
|
1403 |
|
1404 |
#: view/BlockAnalytics.php:114
|
|
|
|
|
|
|
|
|
1405 |
msgid "Twitter shares"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: view/BlockAnalytics.php:119
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1409 |
msgid "StumbleUpon shares"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: view/BlockAnalytics.php:124
|
1413 |
msgid "Reddit shares"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: view/BlockAnalytics.php:129
|
1417 |
msgid "Pinterest shares"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: view/BlockAnalytics.php:161
|
1421 |
msgid "Nicely done! Now you can focus on the other tasks"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: view/BlockAnalytics.php:161
|
1425 |
msgid ""
|
1426 |
"I know you can improve this. Please follow the documentation for a quicker "
|
1427 |
"progress"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: view/BlockAnalytics.php:234
|
1431 |
msgid "Visits"
|
1432 |
msgstr "Vizite"
|
1433 |
|
1434 |
+
#: view/BlockAnalytics.php:247
|
1435 |
msgid "Current: "
|
1436 |
msgstr "Pozitia curenta"
|
1437 |
|
1438 |
+
#: view/BlockAnalytics.php:248
|
1439 |
msgid "Lowest: "
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: view/BlockAnalytics.php:249
|
1443 |
msgid "Highest: "
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: view/BlockAnalytics.php:253
|
1447 |
msgid "last 30 days"
|
1448 |
msgstr "Ultimele 30 zile"
|
1449 |
|
1518 |
msgid "This is an example of a Site Audit"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: view/BlockBriefcaseKeywords.php:25 view/SerpChecker.php:49
|
1522 |
msgid "Show All"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: view/BlockBriefcaseKeywords.php:29
|
1526 |
msgid "Briefcase Keywords"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: view/BlockBriefcaseKeywords.php:33
|
1530 |
msgid "See the Google Ranks for these Keywords"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: view/BlockBriefcaseKeywords.php:36
|
1534 |
msgid "Go to Analytics"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: view/BlockBriefcaseKeywords.php:48
|
1538 |
msgid "Filter by labels"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: view/BlockBriefcaseKeywords.php:62 view/BlockSerpKeywords.php:12
|
1542 |
msgid "Add new keyword"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: view/BlockBriefcaseKeywords.php:63
|
1546 |
msgid "Manage Labels"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: view/BlockBriefcaseKeywords.php:72 view/BlockSerpKeywords.php:27
|
1550 |
msgid "Add a new Keyword"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: view/BlockBriefcaseKeywords.php:77 view/BlockSerpKeywords.php:32
|
1554 |
msgid "Enter a Keyword (2-4 words)"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: view/BlockBriefcaseKeywords.php:80
|
1558 |
msgid "Select Labels"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: view/BlockBriefcaseKeywords.php:89 view/BlockBriefcaseKeywords.php:234
|
1562 |
msgid "Add new Label"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: view/BlockBriefcaseKeywords.php:96 view/BlockSerpKeywords.php:42
|
1566 |
msgid "Add Keyword"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: view/BlockBriefcaseKeywords.php:107
|
1570 |
msgid "Add New Label"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: view/BlockBriefcaseKeywords.php:111 view/BlockBriefcaseKeywords.php:156
|
1574 |
msgid "Label Name"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: view/BlockBriefcaseKeywords.php:115 view/BlockBriefcaseKeywords.php:160
|
1578 |
msgid "Label Color"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: view/BlockBriefcaseKeywords.php:122
|
1582 |
msgid "Add Label"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: view/BlockBriefcaseKeywords.php:125
|
1586 |
msgid "Your Labels"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: view/BlockBriefcaseKeywords.php:152
|
1590 |
msgid "Edit Label"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: view/BlockBriefcaseKeywords.php:166
|
1594 |
msgid "Save Label"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: view/BlockBriefcaseKeywords.php:185
|
1598 |
msgid "Used"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: view/BlockBriefcaseKeywords.php:186
|
1602 |
msgid "Data"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: view/BlockBriefcaseKeywords.php:216
|
1606 |
msgid "Assign Labels to this Keyword"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: view/BlockBriefcaseKeywords.php:222
|
1610 |
#, php-format
|
1611 |
msgid "Select Labels for: %s"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: view/BlockBriefcaseKeywords.php:240
|
1615 |
msgid "Save Labels"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: view/BlockBriefcaseKeywords.php:257 view/BlockBriefcaseKeywords.php:258
|
1619 |
msgid "Competition"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: view/BlockBriefcaseKeywords.php:258 view/BlockBriefcaseKeywords.php:266
|
1623 |
+
#: view/BlockBriefcaseKeywords.php:274 view/BlockBriefcaseKeywords.php:282
|
1624 |
msgid "-"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: view/BlockBriefcaseKeywords.php:265 view/BlockBriefcaseKeywords.php:266
|
1628 |
msgid "SEO Search Volume"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: view/BlockBriefcaseKeywords.php:273 view/BlockBriefcaseKeywords.php:274
|
1632 |
msgid "Recent discussions"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: view/BlockBriefcaseKeywords.php:281 view/BlockBriefcaseKeywords.php:282
|
1636 |
msgid "Trending"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: view/BlockBriefcaseKeywords.php:290
|
1640 |
+
#, fuzzy
|
1641 |
+
#| msgid "Squirrly Keyword Research"
|
1642 |
+
msgid "Refresh Keyword Research"
|
1643 |
+
msgstr " Cercetare cuvinte cheie"
|
1644 |
+
|
1645 |
+
#: view/BlockBriefcaseKeywords.php:295 view/Blocksearch.php:48
|
1646 |
msgid "Do a research"
|
1647 |
msgstr "Mai multe detalii"
|
1648 |
|
1649 |
+
#: view/BlockBriefcaseKeywords.php:307
|
1650 |
msgid "Delete"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: view/BlockBriefcaseKeywords.php:338
|
1654 |
+
msgid "Select Country"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: view/BlockBriefcaseKeywords.php:344
|
1658 |
+
#, fuzzy
|
1659 |
+
#| msgid "Do a research"
|
1660 |
+
msgid "Do Research"
|
1661 |
+
msgstr "Mai multe detalii"
|
1662 |
+
|
1663 |
#: view/BlockCopyright.php:9
|
1664 |
msgid "Squirrly Copywriting Options"
|
1665 |
msgstr ""
|
1767 |
msgid "%sEmail Support%s >> 8 AM to 4 PM (London Time): Mon-Fri.."
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: view/BlockCustomerService.php:25 view/BlockSupport.php:25
|
1771 |
msgid "Need Help with Squirrly SEO?"
|
1772 |
msgstr "Ai nevoie de ajutor cu Squirrly SEO?"
|
1773 |
|
1774 |
+
#: view/BlockCustomerService.php:31
|
1775 |
+
msgid "From"
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: view/BlockCustomerService.php:41 view/BlockSupport.php:38
|
1779 |
msgid "Send Question"
|
1780 |
msgstr "Trimite"
|
1781 |
|
1782 |
+
#: view/BlockCustomerService.php:45 view/BlockSupport.php:42
|
1783 |
+
#, php-format
|
1784 |
+
msgid "By clicking Send Question you're agreeing to %sSquirrly Terms%s"
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
#: view/BlockDashboard.php:11
|
1788 |
msgid "Restore Squirrly Settings"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: view/BlockDashboard.php:16 view/BlockImport.php:113
|
1792 |
msgid "Upload the file with the saved Squirrly Settings"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: view/BlockDashboard.php:21 view/BlockImport.php:118 view/BlockImport.php:140
|
|
|
1796 |
msgid "Restore Backup"
|
1797 |
msgstr ""
|
1798 |
|
1804 |
msgid "Squirrly dashboard"
|
1805 |
msgstr "Dashboard Squirrly"
|
1806 |
|
1807 |
+
#: view/BlockDashboard.php:47
|
1808 |
#, php-format
|
1809 |
msgid ""
|
1810 |
"%sHelp Center%s - learn more about Squirrly SEO features and unhinge your "
|
1811 |
"SEO potential"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: view/BlockDashboard.php:50 view/BlockDashboard.php:153
|
1815 |
msgid "Next Feature"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: view/BlockDashboard.php:51 view/BlockDashboard.php:154
|
1819 |
msgid "Previous Feature"
|
1820 |
msgstr ""
|
1821 |
|
1823 |
msgid "SEO Patterns"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: view/BlockImport.php:37
|
1827 |
msgid "Import SEO settings from other SEO plugins or themes"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: view/BlockImport.php:38
|
1831 |
msgid ""
|
1832 |
"If you were already using an SEO plugin, then you can import all the SEO "
|
1833 |
"settings in Squirrly. Just follow the steps presented on the right side."
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: view/BlockImport.php:45
|
1837 |
msgid "Select the plugin or theme you want to import the Settings from."
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: view/BlockImport.php:59
|
1841 |
msgid "Import Settings"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: view/BlockImport.php:61 view/BlockImport.php:82
|
1845 |
msgid "We couldn't find any SEO plugin or theme to import from."
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: view/BlockImport.php:68
|
1849 |
msgid "Select the plugin or theme you want to import the SEO settings from."
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: view/BlockImport.php:80
|
1853 |
+
msgid "Import SEO"
|
1854 |
+
msgstr ""
|
1855 |
+
|
1856 |
+
#: view/BlockImport.php:89
|
1857 |
msgid ""
|
1858 |
"Note! If you import the SEO settings from other plugins or themes, you will "
|
1859 |
"lose all the settings that you had in Squirrly SEO. Make sure you backup "
|
1860 |
"your settings from the panel below before you do this. "
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: view/BlockImport.php:94
|
1864 |
msgid "Backup & Restore Squirrly SEO Settings"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: view/BlockImport.php:95
|
1868 |
msgid ""
|
1869 |
"You can now download your Squirrly settings in an sql file before you go "
|
1870 |
"ahead and import the SEO settings from another plugin. That way, you can "
|
1871 |
"always go back to your Squirrly settings. "
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: view/BlockImport.php:102
|
1875 |
msgid "Backup & Restore Squirrly Settings"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: view/BlockImport.php:106
|
1879 |
msgid "Backup Settings"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: view/BlockImport.php:107
|
1883 |
msgid "Restore Settings"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: view/BlockImport.php:118 view/BlockImport.php:140
|
1887 |
msgid "Are you sure you want to restore your settings?"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: view/BlockImport.php:123
|
1891 |
msgid "Backup & Restore all the pages optimized with Squirrly SEO"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: view/BlockImport.php:127
|
1895 |
msgid "Backup SEO"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: view/BlockImport.php:128
|
1899 |
msgid "Restore SEO"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: view/BlockImport.php:134
|
1903 |
msgid "Upload the file with the saved Squirrly SEO SQL file"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: view/BlockImport.php:155
|
1907 |
msgid "Click to reset all the saved setting to default."
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: view/BlockImport.php:159
|
1911 |
msgid "Are you sure you want to remove all the saved settings?"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: view/BlockImport.php:159
|
1915 |
msgid "Reset Settings"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: view/BlockImport.php:165
|
1919 |
msgid ""
|
1920 |
"Note! Make sure you backup your data first in case you change your mind."
|
1921 |
msgstr ""
|
1945 |
msgid "Use Squirrly Live Assistant"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: view/BlockPatterns.php:39
|
1949 |
msgid "Use Squirrly Patterns"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: view/BlockPatterns.php:43 view/BlockPatterns.php:134
|
1953 |
+
#: view/BlockPatterns.php:148 view/BlockPatterns.php:165
|
1954 |
+
#: view/BlockSettings.php:137 view/BlockSettings.php:148
|
1955 |
+
#: view/BlockSettings.php:159 view/BlockSettings.php:170
|
1956 |
+
#: view/BlockSettings.php:181 view/BlockSettings.php:193
|
1957 |
+
#: view/BlockSettings.php:361 view/BlockSettings.php:416
|
1958 |
+
#: view/BlockSettingsSeo.php:56 view/BlockSettingsSeo.php:98
|
1959 |
+
#: view/BlockSettingsSeo.php:115 view/BlockSettingsSeo.php:131
|
1960 |
+
#: view/BlockSettingsSeo.php:147 view/BlockSettingsSeo.php:163
|
1961 |
+
#: view/BlockSettingsSeo.php:179 view/BlockSettingsSeo.php:195
|
1962 |
+
#: view/BlockSettingsSeo.php:223 view/BlockSettingsSeo.php:239
|
1963 |
+
#: view/BlockSettingsSeo.php:255 view/BlockSettingsSeo.php:363
|
1964 |
+
#: view/BlockSettingsSeo.php:414 view/BlockSettingsSeo.php:606
|
1965 |
+
#: view/BlockSettingsSeo.php:638 view/BlockSettingsSeo.php:646
|
1966 |
+
#: view/BlockSettingsSeo.php:744 view/BlockSettingsSeo.php:755
|
1967 |
+
#: view/BlockSettingsSeo.php:1103 view/FrontMenu.php:71 view/FrontMenu.php:530
|
1968 |
#: view/FrontMenu.php:543 view/FrontMenu.php:556
|
1969 |
msgid "Yes"
|
1970 |
msgstr "Da"
|
1971 |
|
1972 |
+
#: view/BlockPatterns.php:45 view/BlockPatterns.php:136
|
1973 |
+
#: view/BlockPatterns.php:150 view/BlockPatterns.php:167
|
1974 |
+
#: view/BlockSettings.php:139 view/BlockSettings.php:150
|
1975 |
+
#: view/BlockSettings.php:161 view/BlockSettings.php:172
|
1976 |
+
#: view/BlockSettings.php:183 view/BlockSettings.php:195
|
1977 |
+
#: view/BlockSettings.php:363 view/BlockSettings.php:418
|
1978 |
+
#: view/BlockSettingsSeo.php:58 view/BlockSettingsSeo.php:100
|
1979 |
+
#: view/BlockSettingsSeo.php:117 view/BlockSettingsSeo.php:133
|
1980 |
+
#: view/BlockSettingsSeo.php:149 view/BlockSettingsSeo.php:165
|
1981 |
+
#: view/BlockSettingsSeo.php:181 view/BlockSettingsSeo.php:197
|
1982 |
+
#: view/BlockSettingsSeo.php:225 view/BlockSettingsSeo.php:241
|
1983 |
+
#: view/BlockSettingsSeo.php:257 view/BlockSettingsSeo.php:365
|
1984 |
+
#: view/BlockSettingsSeo.php:416 view/BlockSettingsSeo.php:608
|
1985 |
+
#: view/BlockSettingsSeo.php:640 view/BlockSettingsSeo.php:648
|
1986 |
+
#: view/BlockSettingsSeo.php:746 view/BlockSettingsSeo.php:757
|
1987 |
+
#: view/BlockSettingsSeo.php:1105 view/FrontMenu.php:73 view/FrontMenu.php:532
|
1988 |
#: view/FrontMenu.php:545 view/FrontMenu.php:558
|
1989 |
msgid "No"
|
1990 |
msgstr "Nu"
|
1991 |
|
1992 |
+
#: view/BlockPatterns.php:51
|
1993 |
msgid ""
|
1994 |
"Control how post types are displayed on your site and within search engine "
|
1995 |
"results and social media feeds."
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: view/BlockPatterns.php:52
|
1999 |
msgid ""
|
2000 |
"In Squirrly, each post type in your site comes with a predefined posting "
|
2001 |
"pattern when displayed onto your website. However, based on your site's "
|
2003 |
"include."
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: view/BlockPatterns.php:53
|
2007 |
msgid ""
|
2008 |
"Once you set up a pattern for a particular post type, only the content "
|
2009 |
"required by your custom sequence will be displayed."
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: view/BlockPatterns.php:54
|
2013 |
#, php-format
|
2014 |
msgid ""
|
2015 |
"Squirrly lets you see how the customized patterns will apply when posts/"
|
2019 |
"information."
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: view/BlockPatterns.php:59
|
2023 |
msgid "Set the custom patterns for each post type"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: view/BlockPatterns.php:67
|
2027 |
msgid "+ Add Post Type"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: view/BlockPatterns.php:67
|
2031 |
msgid "Add a post type from your Wordpress website"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: view/BlockPatterns.php:70
|
2035 |
msgid "Add Post Type"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: view/BlockPatterns.php:87
|
2039 |
msgid "Add"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: view/BlockPatterns.php:97
|
2043 |
#, php-format
|
2044 |
msgid "Are you sure you want to remove the post type: %s"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: view/BlockPatterns.php:97
|
2048 |
msgid "Remove Post Type"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: view/BlockPatterns.php:108 view/FrontMenu.php:204
|
2052 |
msgid "Description"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: view/BlockPatterns.php:114
|
2056 |
msgid "Separator"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: view/BlockPatterns.php:129
|
2060 |
msgid "Let Google Index it"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: view/BlockPatterns.php:143
|
2064 |
msgid "Pass Link Juice"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: view/BlockPatterns.php:157
|
2068 |
msgid "Do SEO"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: view/BlockPatterns.php:201 view/BlockSettingsSeo.php:29
|
2072 |
+
#: view/BlockSettingsSeo.php:1155
|
2073 |
msgid "Save SEO"
|
2074 |
msgstr ""
|
2075 |
|
2103 |
"Rank Option%s. "
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: view/BlockPostsAnalytics.php:48
|
2107 |
msgid ""
|
2108 |
"Don't see all your pages here? Make sure you optimize them with Squirrly, so "
|
2109 |
"that we can track them, and display you the analytics"
|
2149 |
msgid "Remove Local Ranks"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: view/BlockSettings.php:24 view/BlockSettings.php:454
|
2153 |
msgid "Save settings"
|
2154 |
msgstr "Salveaza setari"
|
2155 |
|
2156 |
+
#: view/BlockSettings.php:43
|
2157 |
msgid "Post/Page Edit"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: view/BlockSettings.php:44
|
2161 |
#, php-format
|
2162 |
msgid "%sThe right method in working with Squirrly, SEO plugin%s"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
+
#: view/BlockSettings.php:45
|
2166 |
#, php-format
|
2167 |
msgid "%sGetting inspired with Squirrly WordPress SEO plugin%s"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: view/BlockSettings.php:47
|
2171 |
#, php-format
|
2172 |
msgid "%sThere is a New SEO Live Assistant from Squirrly%s"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
+
#: view/BlockSettings.php:48
|
2176 |
#, php-format
|
2177 |
msgid "%sHow to create Human friendly content with the WordPress SEO plugin?%s"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: view/BlockSettings.php:54
|
2181 |
msgid "Inspiration Box G17"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: view/BlockSettings.php:57 view/BlockSettings.php:58
|
2185 |
+
#: view/BlockSettings.php:71 view/BlockSettings.php:72
|
2186 |
+
#: view/BlockSettings.php:85 view/BlockSettings.php:86
|
2187 |
+
#: view/BlockSettingsSeo.php:69 view/BlockSettingsSeo.php:81
|
2188 |
+
#: view/BlockSettingsSeo.php:272 view/BlockSettingsSeo.php:586
|
2189 |
+
#: view/BlockSettingsSeo.php:918 view/BlockSettingsSeo.php:1012
|
2190 |
+
#: view/BlockSettingsSeo.php:1024 view/BlockSettingsSeo.php:1036
|
2191 |
msgid "see how this improved since 2016"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: view/BlockSettings.php:68
|
2195 |
msgid "Keyword Research G17"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: view/BlockSettings.php:82
|
2199 |
msgid "Inner Links G17"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: view/BlockSettings.php:95
|
2203 |
msgid "Load Squirrly Live Assistant for"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: view/BlockSettings.php:99 view/BlockSettingsSeo.php:380
|
2207 |
+
#: view/BlockSettingsSeo.php:783
|
2208 |
msgid "Posts"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: view/BlockSettings.php:102 view/BlockSettingsSeo.php:383
|
2212 |
+
#: view/BlockSettingsSeo.php:814
|
2213 |
msgid "Pages"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: view/BlockSettings.php:106 view/BlockSettingsSeo.php:387
|
2217 |
+
#: view/BlockSettingsSeo.php:799
|
2218 |
msgid "Products"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: view/BlockSettings.php:142
|
2222 |
msgid ""
|
2223 |
"Show <strong>Squirrly Tooltips</strong> when posting a new article (e.g. "
|
2224 |
"\"Enter a keyword\")."
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: view/BlockSettings.php:153
|
2228 |
msgid ""
|
2229 |
"Always show <strong>Keyword Research</strong> about the selected keyword."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: view/BlockSettings.php:164
|
2233 |
msgid ""
|
2234 |
"Send optimization data to Squirrly Cloud when the post is saved (don't use "
|
2235 |
"cron)"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: view/BlockSettings.php:175
|
2239 |
msgid "Use <strong> the NEW version of the SEO Live Assistant</strong>."
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: view/BlockSettings.php:186
|
2243 |
msgid ""
|
2244 |
"Download <strong>remote images</strong> in your <strong>Media Library</"
|
2245 |
"strong> for the new posts."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: view/BlockSettings.php:198
|
2249 |
msgid ""
|
2250 |
"Correct my <strong>feed links</strong> and <strong>images</strong> (convert "
|
2251 |
"from relative to absolute)."
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: view/BlockSettings.php:208
|
2255 |
msgid "Google Rank Options"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: view/BlockSettings.php:209
|
2259 |
#, php-format
|
2260 |
msgid "%sCountry targeting%s"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
+
#: view/BlockSettings.php:210
|
2264 |
#, php-format
|
2265 |
msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: view/BlockSettings.php:217
|
2269 |
msgid ""
|
2270 |
"Select the Google country for which Squirrly will check the Google rank."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: view/BlockSettings.php:222
|
2274 |
msgid "Default"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: view/BlockSettings.php:223
|
2278 |
msgid "American Samoa"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: view/BlockSettings.php:224
|
2282 |
msgid "Anguilla"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: view/BlockSettings.php:225
|
2286 |
msgid "Antigua and Barbuda"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: view/BlockSettings.php:226
|
2290 |
msgid "Argentina"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: view/BlockSettings.php:227
|
2294 |
msgid "Australia"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: view/BlockSettings.php:228
|
2298 |
msgid "Austria"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: view/BlockSettings.php:229
|
2302 |
msgid "Azerbaijan"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: view/BlockSettings.php:230
|
2306 |
msgid "Belgium"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: view/BlockSettings.php:231
|
2310 |
msgid "Brazil"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
+
#: view/BlockSettings.php:232
|
2314 |
msgid "British Virgin Islands"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: view/BlockSettings.php:233
|
2318 |
msgid "Burundi"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: view/BlockSettings.php:234
|
2322 |
msgid "Bulgaria"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
+
#: view/BlockSettings.php:235
|
2326 |
msgid "Canada"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: view/BlockSettings.php:236
|
2330 |
msgid "Chad"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: view/BlockSettings.php:237
|
2334 |
msgid "Chile"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: view/BlockSettings.php:238
|
2338 |
msgid "Colombia"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: view/BlockSettings.php:239
|
2342 |
msgid "Costa Rica"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: view/BlockSettings.php:240
|
2346 |
msgid "Côte d'Ivoire"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: view/BlockSettings.php:241
|
2350 |
msgid "Cuba"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: view/BlockSettings.php:242
|
2354 |
+
msgid "Croatia"
|
2355 |
+
msgstr ""
|
2356 |
+
|
2357 |
+
#: view/BlockSettings.php:243
|
2358 |
msgid "Czech Republic"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: view/BlockSettings.php:244
|
2362 |
msgid "Dem. Rep. of the Congo"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: view/BlockSettings.php:245
|
2366 |
msgid "Denmark"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: view/BlockSettings.php:246
|
2370 |
msgid "Djibouti"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: view/BlockSettings.php:247
|
2374 |
msgid "Dominican Republic"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: view/BlockSettings.php:248
|
2378 |
msgid "Ecuador"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: view/BlockSettings.php:249
|
2382 |
msgid "El Salvador"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: view/BlockSettings.php:250
|
2386 |
msgid "Estonia"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: view/BlockSettings.php:251
|
2390 |
msgid "Federated States of Micronesia"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: view/BlockSettings.php:252
|
2394 |
msgid "Fiji"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: view/BlockSettings.php:253
|
2398 |
msgid "Finland"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: view/BlockSettings.php:254
|
2402 |
#, fuzzy
|
2403 |
msgid "France"
|
2404 |
msgstr "Renunta"
|
2405 |
|
2406 |
+
#: view/BlockSettings.php:255
|
2407 |
msgid "The Gambia"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: view/BlockSettings.php:256
|
2411 |
msgid "Georgia"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: view/BlockSettings.php:257
|
2415 |
msgid "Germany"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: view/BlockSettings.php:258
|
2419 |
+
msgid "Ghana "
|
2420 |
+
msgstr ""
|
2421 |
+
|
2422 |
+
#: view/BlockSettings.php:259
|
2423 |
msgid "Gibraltar"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: view/BlockSettings.php:260
|
2427 |
msgid "Greece"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: view/BlockSettings.php:261
|
2431 |
msgid "Greenland"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: view/BlockSettings.php:262
|
2435 |
msgid "Guernsey"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: view/BlockSettings.php:263
|
2439 |
msgid "Honduras"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: view/BlockSettings.php:264
|
2443 |
msgid "Hong Kong"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: view/BlockSettings.php:265
|
2447 |
msgid "Hungary"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: view/BlockSettings.php:266
|
2451 |
msgid "India"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: view/BlockSettings.php:267
|
2455 |
msgid "Indonesia"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: view/BlockSettings.php:268
|
2459 |
msgid "Ireland"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: view/BlockSettings.php:269
|
2463 |
msgid "Isle of Man"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: view/BlockSettings.php:270
|
2467 |
msgid "Israel"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: view/BlockSettings.php:271
|
2471 |
msgid "Italy"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: view/BlockSettings.php:272
|
2475 |
msgid "Jamaica"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: view/BlockSettings.php:273
|
2479 |
msgid "Japan"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: view/BlockSettings.php:274
|
2483 |
msgid "Jersey"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: view/BlockSettings.php:275
|
2487 |
msgid "Kazakhstan"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: view/BlockSettings.php:276
|
2491 |
msgid "Korea"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: view/BlockSettings.php:277
|
2495 |
msgid "Latvia"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: view/BlockSettings.php:278
|
2499 |
msgid "Lesotho"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: view/BlockSettings.php:279
|
2503 |
msgid "Liechtenstein"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: view/BlockSettings.php:280
|
2507 |
msgid "Lithuania"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: view/BlockSettings.php:281
|
2511 |
msgid "Luxembourg"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: view/BlockSettings.php:282
|
2515 |
msgid "Malawi"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: view/BlockSettings.php:283
|
2519 |
msgid "Malaysia"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: view/BlockSettings.php:284
|
2523 |
msgid "Malta"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: view/BlockSettings.php:285
|
2527 |
msgid "Mauritius"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: view/BlockSettings.php:286
|
2531 |
msgid "México"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: view/BlockSettings.php:287
|
2535 |
msgid "Montserrat"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: view/BlockSettings.php:288
|
2539 |
msgid "Namibia"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: view/BlockSettings.php:289
|
2543 |
msgid "Nepal"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: view/BlockSettings.php:290
|
2547 |
msgid "Netherlands"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: view/BlockSettings.php:291
|
2551 |
msgid "New Zealand"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: view/BlockSettings.php:292
|
2555 |
msgid "Nicaragua"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: view/BlockSettings.php:293
|
2559 |
+
msgid "Nigeria"
|
2560 |
+
msgstr ""
|
2561 |
+
|
2562 |
+
#: view/BlockSettings.php:294
|
2563 |
msgid "Norfolk Island"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: view/BlockSettings.php:295
|
2567 |
msgid "Norway"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: view/BlockSettings.php:296
|
2571 |
msgid "Pakistan"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: view/BlockSettings.php:297
|
2575 |
msgid "Panamá"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: view/BlockSettings.php:298
|
2579 |
msgid "Paraguay"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: view/BlockSettings.php:299
|
2583 |
msgid "Perú"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: view/BlockSettings.php:300
|
2587 |
msgid "Philippines"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: view/BlockSettings.php:301
|
2591 |
msgid "Pitcairn Islands"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: view/BlockSettings.php:302
|
2595 |
msgid "Poland"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: view/BlockSettings.php:303
|
2599 |
msgid "Portugal"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: view/BlockSettings.php:304
|
2603 |
msgid "Puerto Rico"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: view/BlockSettings.php:305
|
2607 |
msgid "Rep. of the Congo"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: view/BlockSettings.php:306
|
2611 |
msgid "Romania"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: view/BlockSettings.php:307
|
2615 |
msgid "Russia"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: view/BlockSettings.php:308
|
2619 |
msgid "Rwanda"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: view/BlockSettings.php:309
|
2623 |
msgid "Saint Helena"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: view/BlockSettings.php:310
|
2627 |
msgid "San Marino"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: view/BlockSettings.php:311
|
2631 |
msgid "Saudi Arabia"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: view/BlockSettings.php:312
|
2635 |
msgid "Singapore"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: view/BlockSettings.php:313
|
2639 |
msgid "Slovakia"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: view/BlockSettings.php:314
|
2643 |
msgid "South Africa"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: view/BlockSettings.php:315
|
2647 |
msgid "Spain"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: view/BlockSettings.php:316
|
2651 |
msgid "Sri Lanka"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: view/BlockSettings.php:317
|
2655 |
msgid "Sweden"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: view/BlockSettings.php:318
|
2659 |
msgid "Switzerland"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: view/BlockSettings.php:319
|
2663 |
msgid "Taiwan"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: view/BlockSettings.php:320
|
2667 |
msgid "Thailand"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: view/BlockSettings.php:321
|
2671 |
msgid "Trinidad and Tobago"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: view/BlockSettings.php:322
|
2675 |
msgid "Turkey"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: view/BlockSettings.php:323
|
2679 |
msgid "Ukraine"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: view/BlockSettings.php:324
|
2683 |
msgid "United Arab Emirates"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: view/BlockSettings.php:325
|
2687 |
msgid "United Kingdom"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: view/BlockSettings.php:326
|
2691 |
msgid "United States"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: view/BlockSettings.php:327
|
2695 |
msgid "Uruguay"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
+
#: view/BlockSettings.php:328
|
2699 |
msgid "Uzbekistan"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: view/BlockSettings.php:329
|
2703 |
msgid "Vanuatu"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: view/BlockSettings.php:330
|
2707 |
msgid "Venezuela"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: view/BlockSettings.php:331
|
2711 |
msgid "Vietnam"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: view/BlockSettings.php:337
|
2715 |
#, php-format
|
2716 |
msgid ""
|
2717 |
"Select how many pages to be checked in the Performance Analytics section "
|
2718 |
"every hour. %s(not recommended for shared hosting plan)%s"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
+
#: view/BlockSettings.php:344
|
2722 |
msgid "page"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
+
#: view/BlockSettings.php:346
|
2726 |
msgid "pages"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: view/BlockSettings.php:352
|
2730 |
msgid "h"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: view/BlockSettings.php:366
|
2734 |
msgid ""
|
2735 |
"Restricts search results to results originating in the above particular "
|
2736 |
"country."
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: view/BlockSettings.php:372
|
2740 |
#, php-format
|
2741 |
msgid ""
|
2742 |
"You have the %sBusiness Plan%s active. Rankings are now checked by Squirrly "
|
2743 |
"Cloud and will be shown in %sAdvanced Analytics%s"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: view/BlockSettings.php:376
|
2747 |
msgid "Select how many rank queries you want Squirrly to do every day. "
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: view/BlockSettings.php:381 view/BlockSettings.php:383
|
2751 |
+
#: view/BlockSettings.php:396
|
2752 |
msgid "queries"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: view/BlockSettings.php:381 view/BlockSettings.php:383
|
2756 |
+
#: view/BlockSettings.php:396
|
2757 |
msgid "day"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: view/BlockSettings.php:389
|
2761 |
msgid ""
|
2762 |
"Note: if you're on the free trial, you get 35 queries for the 7 days of "
|
2763 |
"trial."
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: view/BlockSettings.php:408
|
2767 |
msgid "Robots.txt Editor"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: view/BlockSettings.php:409
|
2771 |
#, php-format
|
2772 |
msgid "%sLearn about robots.txt files%s"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
+
#: view/BlockSettings.php:410
|
2776 |
#, php-format
|
2777 |
msgid "%sHow to use Robots.txt%s"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: view/BlockSettings.php:412
|
2781 |
+
#, fuzzy
|
2782 |
+
#| msgid "Squirrly Options"
|
2783 |
+
msgid "Use Squirrly Robots"
|
2784 |
+
msgstr "Optiuni Squirrly"
|
2785 |
+
|
2786 |
+
#: view/BlockSettings.php:427
|
2787 |
msgid "Edit the Robots.txt data"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: view/BlockSettings.php:440
|
2791 |
msgid ""
|
2792 |
"Does not physically create the robots.txt file. The best option for "
|
2793 |
"Multisites."
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: view/BlockSettings.php:445
|
2797 |
msgid "Save Robots"
|
2798 |
msgstr ""
|
2799 |
|
2801 |
msgid "SEO"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: view/BlockSettingsSeo.php:31 view/BlockSettingsSeo.php:207
|
2805 |
msgid "Check for SEO issues in your site"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: view/BlockSettingsSeo.php:49
|
2809 |
msgid "Let Squirrly SEO Optimize This Blog"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: view/BlockSettingsSeo.php:50
|
2813 |
#, php-format
|
2814 |
msgid "%sIs Squirrly SEO better than WordPress SEO by Yoast?%s"
|
2815 |
msgstr ""
|
2816 |
|
2817 |
+
#: view/BlockSettingsSeo.php:52
|
2818 |
msgid ""
|
2819 |
"Activate the built-in SEO settings from Squirrly by switching Yes below. "
|
2820 |
"<strong>Works well with Multisites and Ecommerce.</strong>"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: view/BlockSettingsSeo.php:66
|
2824 |
msgid "New SEO Settings For Google 2017"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
#: view/BlockSettingsSeo.php:78
|
2828 |
msgid "Fastest SEO Plugin in 2017"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: view/BlockSettingsSeo.php:89
|
2832 |
msgid "What does Squirrly automatically do for SEO?"
|
2833 |
msgstr "Ce face Squirrly in mod automat pentru SEO?"
|
2834 |
|
2835 |
+
#: view/BlockSettingsSeo.php:103
|
2836 |
#, php-format
|
2837 |
msgid ""
|
2838 |
"adds <strong>%scanonical link%s</strong>, <strong>%srel=\"prev\" and rel="
|
2839 |
"\"next\"%s</strong> metas in Header"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: view/BlockSettingsSeo.php:120
|
2843 |
msgid "adds the required METAs (<strong>Dublin Core, Language</strong>, etc.)"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: view/BlockSettingsSeo.php:136
|
2847 |
#, php-format
|
2848 |
msgid "adds the <strong>%sXML Sitemap%s</strong> for search engines: %s"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: view/BlockSettingsSeo.php:152
|
2852 |
#, php-format
|
2853 |
msgid "adds <strong>Feed style</strong> to your blog feed (eg. %s/feed)"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
+
#: view/BlockSettingsSeo.php:168
|
2857 |
#, php-format
|
2858 |
msgid ""
|
2859 |
"adds the <strong>%sfavicon.ico%s</strong> and the <strong>%sicons for "
|
2860 |
"tablets and smartphones%s</strong>"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
+
#: view/BlockSettingsSeo.php:184
|
2864 |
#, php-format
|
2865 |
msgid "adds the <strong>%sJson-LD%s</strong> metas for Semantic SEO"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
#: view/BlockSettingsSeo.php:200
|
2869 |
#, php-format
|
2870 |
msgid ""
|
2871 |
"adds the <strong>%sNoindex%s</strong>, <strong>%sNofollow%s</strong> metas "
|
2872 |
"for your desired pages"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
+
#: view/BlockSettingsSeo.php:204
|
2876 |
msgid ""
|
2877 |
"Note! By switching the <strong>Json-LD</strong>, <strong>XML Sitemap</"
|
2878 |
"strong> and <strong>Favicon</strong> on, you open new options below"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
+
#: view/BlockSettingsSeo.php:213
|
2882 |
msgid "First Page Optimization"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: view/BlockSettingsSeo.php:214
|
2886 |
#, php-format
|
2887 |
msgid "%sThe best SEO approach to Meta information%s"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: view/BlockSettingsSeo.php:215
|
2891 |
msgid "Optimize the <strong>Titles</strong>"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: view/BlockSettingsSeo.php:230
|
2895 |
#, php-format
|
2896 |
msgid "Optimize %sDescriptions%s "
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: view/BlockSettingsSeo.php:246
|
2900 |
#, php-format
|
2901 |
msgid "Optimize %sKeywords%s "
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: view/BlockSettingsSeo.php:269
|
2905 |
msgid "Squirrly Snippet G17-True Render"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: view/BlockSettingsSeo.php:293
|
2909 |
msgid "First Page Optimization:"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: view/BlockSettingsSeo.php:299
|
2913 |
msgid "Title:"
|
2914 |
msgstr "Titlu:"
|
2915 |
|
2916 |
+
#: view/BlockSettingsSeo.php:304
|
2917 |
msgid "Tips: Length 10-75 chars"
|
2918 |
msgstr "Atentie: Lungimea 10-75 caractere"
|
2919 |
|
2920 |
+
#: view/BlockSettingsSeo.php:308
|
2921 |
msgid "Description:"
|
2922 |
msgstr "Descrierea:"
|
2923 |
|
2924 |
+
#: view/BlockSettingsSeo.php:312
|
2925 |
msgid "Tips: Length 70-320 chars"
|
2926 |
msgstr "Atentie: Lungimea 70-320 caractere"
|
2927 |
|
2928 |
+
#: view/BlockSettingsSeo.php:315
|
2929 |
msgid "Keywords:"
|
2930 |
msgstr "Cuvinte cheie:"
|
2931 |
|
2932 |
+
#: view/BlockSettingsSeo.php:316
|
2933 |
msgid "Tips: use 2-4 keywords"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: view/BlockSettingsSeo.php:319
|
2937 |
msgid "OG Image:"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: view/BlockSettingsSeo.php:320
|
2941 |
msgid "Select Open Graph Image"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: view/BlockSettingsSeo.php:325
|
2945 |
msgid "First Page Preview (Title, Description, Keywords)"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: view/BlockSettingsSeo.php:327
|
2949 |
msgid "Squirrly Snippet"
|
2950 |
msgstr "Snipet Squirrly"
|
2951 |
|
2952 |
+
#: view/BlockSettingsSeo.php:339
|
2953 |
msgid ""
|
2954 |
"If you don't see any changes in your Google snippet, check if other SEO "
|
2955 |
"themes or plugins affect Squirrly."
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: view/BlockSettingsSeo.php:343
|
2959 |
#, php-format
|
2960 |
msgid ""
|
2961 |
"Use the %s<strong>Squirrly Snippet Tool</strong>%s while editing a Post/Page "
|
2962 |
"to customize the Title and the Description."
|
2963 |
msgstr ""
|
2964 |
|
2965 |
+
#: view/BlockSettingsSeo.php:351
|
2966 |
msgid "SEO for all post/pages"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
+
#: view/BlockSettingsSeo.php:352
|
2970 |
#, php-format
|
2971 |
msgid ""
|
2972 |
"To customize the Title and Description for all the Posts and Pages in your "
|
2973 |
"site use the %sSquirrly Snippet Tool%s"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: view/BlockSettingsSeo.php:354
|
2977 |
msgid "Add the Post tags in <strong>Keyword META</strong>."
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: view/BlockSettingsSeo.php:376
|
2981 |
msgid "Exclude Squirrly from loading in these Post Types"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: view/BlockSettingsSeo.php:377
|
2985 |
msgid ""
|
2986 |
"DO NOT CHECK any Post Type if you want Squirrly to load for all posts types. "
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#: view/BlockSettingsSeo.php:419
|
2990 |
msgid "Load <strong>Squirrly SEO Snippet in Frontend</strong> too."
|
2991 |
msgstr ""
|
2992 |
|
2993 |
+
#: view/BlockSettingsSeo.php:427
|
2994 |
msgid "Social Media Options"
|
2995 |
msgstr "Optiuni Social Media"
|
2996 |
|
2997 |
+
#: view/BlockSettingsSeo.php:429
|
2998 |
msgid "Select the language you're using on Social Media"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: view/BlockSettingsSeo.php:575
|
3002 |
#, php-format
|
3003 |
msgid "%sHow to pop out in Social Media with your links%s"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: view/BlockSettingsSeo.php:576
|
3007 |
#, php-format
|
3008 |
msgid "%sGet busy with Facebook’s new Search Engine functions%s"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: view/BlockSettingsSeo.php:577
|
3012 |
#, php-format
|
3013 |
msgid ""
|
3014 |
"%sHow I Added Twitter Cards in My WordPress for Better Inbound Marketing%s"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: view/BlockSettingsSeo.php:583
|
3018 |
msgid "Open Graph G17 - 2017 Settings"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: view/BlockSettingsSeo.php:595
|
3022 |
msgid "Squirrly Adds the Best Codes for Open Graph and Twitter Cards"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
+
#: view/BlockSettingsSeo.php:611
|
3026 |
#, php-format
|
3027 |
msgid ""
|
3028 |
"Add the Social Open Graph protocol so that your Facebook shares look good. "
|
3029 |
"%sCheck here%s. "
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: view/BlockSettingsSeo.php:615
|
3033 |
msgid "Facebook App ID"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: view/BlockSettingsSeo.php:616
|
3037 |
#, php-format
|
3038 |
msgid "Add the %sFacebook App%s ID "
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: view/BlockSettingsSeo.php:633
|
3042 |
msgid "You need to add your <strong>Twitter account</strong> below"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: view/BlockSettingsSeo.php:643
|
3046 |
msgid "Add the <strong>Twitter card</strong> in your tweets. "
|
3047 |
msgstr "Adauga <strong>titlul</strong> corect in pagina acasa"
|
3048 |
|
3049 |
+
#: view/BlockSettingsSeo.php:651
|
3050 |
#, php-format
|
3051 |
msgid ""
|
3052 |
"Use <strong>Twitter %ssummary_large_image%s</strong> for your Twitter Card. "
|
3053 |
msgstr ""
|
3054 |
|
3055 |
+
#: view/BlockSettingsSeo.php:663
|
3056 |
msgid "Social Media Accounts"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
+
#: view/BlockSettingsSeo.php:664
|
3060 |
#, php-format
|
3061 |
msgid "%sLink your Google+ profile to the content you create%s"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: view/BlockSettingsSeo.php:665
|
3065 |
#, php-format
|
3066 |
msgid ""
|
3067 |
"%sTwitter account is mandatory for <strong>Twitter Card Validation</strong>%s"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: view/BlockSettingsSeo.php:666
|
3071 |
#, php-format
|
3072 |
msgid ""
|
3073 |
"%sAdd all your social accounts for <strong>JSON-LD Semantic SEO</strong>%s"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: view/BlockSettingsSeo.php:667 view/BlockSettingsSeo.php:909
|
3077 |
#, php-format
|
3078 |
msgid "%sSpecify your social profiles to Google%s"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
+
#: view/BlockSettingsSeo.php:675
|
3082 |
msgid "Your Twitter Account:"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
+
#: view/BlockSettingsSeo.php:682
|
3086 |
msgid "Google Plus Profile:"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
+
#: view/BlockSettingsSeo.php:689
|
3090 |
msgid "Facebook Profile:"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: view/BlockSettingsSeo.php:696
|
3094 |
msgid "Linkedin Profile:"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: view/BlockSettingsSeo.php:703
|
3098 |
msgid "Pinterest Profile:"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: view/BlockSettingsSeo.php:710
|
3102 |
msgid "Instagram Profile:"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
#: view/BlockSettingsSeo.php:717
|
3106 |
msgid "Youtube Profile:"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
+
#: view/BlockSettingsSeo.php:727
|
3110 |
msgid "XML Sitemap for Google"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
+
#: view/BlockSettingsSeo.php:728
|
3114 |
msgid ""
|
3115 |
"Squirrly Sitemap is the fastest way to tell Google about the pages on your "
|
3116 |
"site. <strong>Supports Multisites, Google News, Images, Videos, Custom Post "
|
3117 |
"Types, Custom Taxonomies and Ecommerce products</strong>"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: view/BlockSettingsSeo.php:729
|
3121 |
#, php-format
|
3122 |
msgid "%sHow to submit your sitemap.xml in Google Webmaster Tool%s"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
+
#: view/BlockSettingsSeo.php:730
|
3126 |
#, php-format
|
3127 |
msgid ""
|
3128 |
"%s10 Vital To Dos to Feed Your SEO Content Machine After You Post Articles%s"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
+
#: view/BlockSettingsSeo.php:731
|
3132 |
#, php-format
|
3133 |
msgid ""
|
3134 |
"For Google News Sitemap, ensure that your site is included in %sGoogle News%s"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
+
#: view/BlockSettingsSeo.php:740
|
3138 |
msgid "XML Sitemap Options"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
+
#: view/BlockSettingsSeo.php:749
|
3142 |
msgid "Ping your sitemap to Google and Bing when a new post is published"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: view/BlockSettingsSeo.php:760
|
3146 |
+
msgid "Add all languages in the same sitemap"
|
3147 |
+
msgstr ""
|
3148 |
+
|
3149 |
+
#: view/BlockSettingsSeo.php:767
|
3150 |
msgid "Build Sitemaps for"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
+
#: view/BlockSettingsSeo.php:772
|
3154 |
+
msgid "Home Page"
|
3155 |
+
msgstr ""
|
3156 |
+
|
3157 |
+
#: view/BlockSettingsSeo.php:779
|
3158 |
msgid "Google News"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
+
#: view/BlockSettingsSeo.php:787
|
3162 |
+
msgid "Attachments"
|
3163 |
+
msgstr ""
|
3164 |
+
|
3165 |
+
#: view/BlockSettingsSeo.php:793
|
3166 |
msgid "Categories"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
+
#: view/BlockSettingsSeo.php:807
|
3170 |
msgid "Tags"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
+
#: view/BlockSettingsSeo.php:819
|
3174 |
msgid "Archive"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
+
#: view/BlockSettingsSeo.php:822
|
3178 |
msgid "Custom Taxonomies"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: view/BlockSettingsSeo.php:825
|
3182 |
msgid "Custom Posts"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: view/BlockSettingsSeo.php:828
|
3186 |
#, php-format
|
3187 |
msgid ""
|
3188 |
"Select only the Post Types that have links in them. Your sitemap will be %s"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
+
#: view/BlockSettingsSeo.php:832
|
3192 |
msgid "Include in Sitemaps"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
+
#: view/BlockSettingsSeo.php:835
|
3196 |
msgid "<strong>Images</strong> from posts/pages"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
+
#: view/BlockSettingsSeo.php:838
|
3200 |
msgid "<strong>Videos</strong> (embeded and local media)"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: view/BlockSettingsSeo.php:843
|
3204 |
msgid "How often do you update your site?"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: view/BlockSettingsSeo.php:845
|
3208 |
+
msgid "every hour"
|
3209 |
+
msgstr ""
|
3210 |
+
|
3211 |
+
#: view/BlockSettingsSeo.php:846
|
3212 |
msgid "every day"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: view/BlockSettingsSeo.php:847
|
3216 |
msgid "1-3 times per week"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
+
#: view/BlockSettingsSeo.php:848
|
3220 |
msgid "1-3 times per month"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
+
#: view/BlockSettingsSeo.php:849
|
3224 |
msgid "1-3 times per year"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
+
#: view/BlockSettingsSeo.php:853
|
3228 |
msgid "Feed Pagination: How many Posts per page to show in sitemap?"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: view/BlockSettingsSeo.php:868
|
3232 |
msgid "Change the Website Icon"
|
3233 |
msgstr "Schimba icoana site-ului"
|
3234 |
|
3235 |
+
#: view/BlockSettingsSeo.php:869
|
3236 |
msgid ""
|
3237 |
"Now, even tablet & smartphone browsers make use of your icons. This makes "
|
3238 |
"having a good favicon even more important."
|
3239 |
msgstr ""
|
3240 |
|
3241 |
+
#: view/BlockSettingsSeo.php:870
|
3242 |
#, php-format
|
3243 |
msgid ""
|
3244 |
"You can use %shttp://convertico.com/%s to convert your photo to icon and "
|
3247 |
"Poti folosi %shttp://convertico.com/%s pentru a converti imaginea in icoana "
|
3248 |
"si poti incarca icoana aici"
|
3249 |
|
3250 |
+
#: view/BlockSettingsSeo.php:876
|
3251 |
msgid "Upload file:"
|
3252 |
msgstr "Urca fisier:"
|
3253 |
|
3254 |
+
#: view/BlockSettingsSeo.php:889 view/FrontMenu.php:327 view/FrontMenu.php:468
|
3255 |
msgid "Upload"
|
3256 |
msgstr "Upload"
|
3257 |
|
3258 |
+
#: view/BlockSettingsSeo.php:893
|
3259 |
msgid ""
|
3260 |
"If you don't see the new icon in your browser, empty the browser cache and "
|
3261 |
"refresh the page."
|
3263 |
"Daca nu vezi noua icoana in browser, goleste cache-ul din browser si da "
|
3264 |
"refresh la pagina."
|
3265 |
|
3266 |
+
#: view/BlockSettingsSeo.php:895
|
3267 |
msgid "File types: JPG, JPEG, GIF and PNG."
|
3268 |
msgstr "Tip fisiere JPEG,JPG,GIF sau PNG "
|
3269 |
|
3270 |
+
#: view/BlockSettingsSeo.php:897
|
3271 |
msgid ""
|
3272 |
"Does not physically create the favicon.ico file. The best option for "
|
3273 |
"Multisites."
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: view/BlockSettingsSeo.php:905
|
3277 |
msgid "JSON-LD for Semantic SEO"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: view/BlockSettingsSeo.php:906
|
3281 |
msgid ""
|
3282 |
"Squirrly will automatically add the JSON-LD Structured Data in your site."
|
3283 |
msgstr ""
|
3284 |
|
3285 |
+
#: view/BlockSettingsSeo.php:907
|
3286 |
#, php-format
|
3287 |
msgid "%sJSON-LD's Big Day at Google%s"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: view/BlockSettingsSeo.php:908
|
3291 |
#, php-format
|
3292 |
msgid "%sGoogle Testing Tool%s"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
+
#: view/BlockSettingsSeo.php:915
|
3296 |
msgid "JSON-LD G17 - 2x More Options"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
+
#: view/BlockSettingsSeo.php:932
|
3300 |
msgid "Your site type:"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
+
#: view/BlockSettingsSeo.php:934
|
3304 |
msgid "Organization"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
+
#: view/BlockSettingsSeo.php:935
|
3308 |
msgid "Personal"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: view/BlockSettingsSeo.php:941
|
3312 |
msgid "Your Organization Name:"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
+
#: view/BlockSettingsSeo.php:942
|
3316 |
msgid "Your Name:"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: view/BlockSettingsSeo.php:946
|
3320 |
msgid "Job Title:"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
+
#: view/BlockSettingsSeo.php:950
|
3324 |
msgid "Logo Url:"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
+
#: view/BlockSettingsSeo.php:951
|
3328 |
msgid "Image Url:"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
+
#: view/BlockSettingsSeo.php:952
|
3332 |
msgid "Select Image"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: view/BlockSettingsSeo.php:956
|
3336 |
msgid "Contact Phone:"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: view/BlockSettingsSeo.php:960
|
3340 |
msgid "Contact Type:"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: view/BlockSettingsSeo.php:962
|
3344 |
msgid "Customer Service"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: view/BlockSettingsSeo.php:963
|
3348 |
msgid "Technical Support"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
+
#: view/BlockSettingsSeo.php:964
|
3352 |
msgid "Billing Support"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
+
#: view/BlockSettingsSeo.php:965
|
3356 |
msgid "Bill Payment"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
+
#: view/BlockSettingsSeo.php:966
|
3360 |
msgid "Sales"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: view/BlockSettingsSeo.php:967
|
3364 |
msgid "Reservations"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
+
#: view/BlockSettingsSeo.php:968
|
3368 |
msgid "Credit Card Support"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: view/BlockSettingsSeo.php:969
|
3372 |
msgid "Emergency"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: view/BlockSettingsSeo.php:970
|
3376 |
msgid "Baggage Tracking"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: view/BlockSettingsSeo.php:971
|
3380 |
msgid "Roadside Assistance"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
#: view/BlockSettingsSeo.php:972
|
3384 |
msgid "Package Tracking"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: view/BlockSettingsSeo.php:977
|
3388 |
msgid "Short Description:"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: view/BlockSettingsSeo.php:985
|
3392 |
msgid "Add your social accounts for Json-LD"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: view/BlockSettingsSeo.php:990
|
3396 |
msgid "How the search results will look like once Google grabs your data."
|
3397 |
msgstr ""
|
3398 |
|
3399 |
+
#: view/BlockSettingsSeo.php:999 view/BlockToolbar.php:8
|
3400 |
msgid "Tracking Tools"
|
3401 |
msgstr ""
|
3402 |
|
3403 |
+
#: view/BlockSettingsSeo.php:1000
|
3404 |
#, php-format
|
3405 |
msgid "%sHow to Get the Most Out of Google Analytics%s"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: view/BlockSettingsSeo.php:1001
|
3409 |
#, php-format
|
3410 |
msgid "%sWhat is Facebook Pixel?%s"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
+
#: view/BlockSettingsSeo.php:1002
|
3414 |
#, php-format
|
3415 |
msgid "%sA Beginner’s Guide to Facebook Insights%s"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: view/BlockSettingsSeo.php:1009
|
3419 |
msgid "Google Tracking G17"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: view/BlockSettingsSeo.php:1021
|
3423 |
msgid "Facebook Tracking G17"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
+
#: view/BlockSettingsSeo.php:1033
|
3427 |
msgid "Rich Pins G17"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
+
#: view/BlockSettingsSeo.php:1050 view/BlockSettingsSeo.php:1060
|
3431 |
+
#: view/BlockSettingsSeo.php:1073
|
3432 |
#, php-format
|
3433 |
msgid "Facebook Admin ID (for %sInsights%s ):"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: view/BlockSettingsSeo.php:1053 view/BlockSettingsSeo.php:1063
|
3437 |
+
#: view/BlockSettingsSeo.php:1076
|
3438 |
msgid "Facebook ID or https://www.facebook.com/YourProfileName"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: view/BlockSettingsSeo.php:1068
|
3442 |
msgid "Add more Facebook Admin IDs"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
+
#: view/BlockSettingsSeo.php:1082
|
3446 |
#, php-format
|
3447 |
msgid "Google %sAnalytics ID%s:"
|
3448 |
msgstr "Google %sAnalytics ID%s:"
|
3449 |
|
3450 |
+
#: view/BlockSettingsSeo.php:1086
|
3451 |
+
msgid "Google Tracking Mode:"
|
3452 |
+
msgstr ""
|
3453 |
+
|
3454 |
+
#: view/BlockSettingsSeo.php:1088
|
3455 |
+
msgid "analytics.js"
|
3456 |
+
msgstr ""
|
3457 |
+
|
3458 |
+
#: view/BlockSettingsSeo.php:1089
|
3459 |
+
msgid "gtag.js"
|
3460 |
+
msgstr ""
|
3461 |
+
|
3462 |
+
#: view/BlockSettingsSeo.php:1095
|
3463 |
#, php-format
|
3464 |
msgid "Facebook %sPixel ID%s:"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
+
#: view/BlockSettingsSeo.php:1108
|
3468 |
#, php-format
|
3469 |
msgid ""
|
3470 |
"Load <strong>%sGoogle Analytics AMP%s</strong> and <strong>%sFacebook Pixel "
|
3471 |
"AMP%s</strong> tracking%s(Warning! The tracking works only for AMP Themes.%s)"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
+
#: view/BlockSettingsSeo.php:1115
|
3475 |
msgid "Measure Your Success"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
+
#: view/BlockSettingsSeo.php:1116
|
3479 |
#, php-format
|
3480 |
msgid "%sHow to set the Google Webmaster Tool%s"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
+
#: view/BlockSettingsSeo.php:1117
|
3484 |
#, php-format
|
3485 |
msgid "%sBest practices to help Google find, crawl, and index your site%s"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: view/BlockSettingsSeo.php:1118
|
3489 |
#, php-format
|
3490 |
msgid "%sBing Webmaster Tools Help & How-To Center%s"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: view/BlockSettingsSeo.php:1119
|
3494 |
#, php-format
|
3495 |
msgid "%sRich Pins Validator%s"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
+
#: view/BlockSettingsSeo.php:1125
|
3499 |
#, php-format
|
3500 |
msgid "Google META verification code for %sWebmaster Tool%s:"
|
3501 |
msgstr "Cod META pentru %sGoogle Webmaster Tool%s"
|
3502 |
|
3503 |
+
#: view/BlockSettingsSeo.php:1131
|
3504 |
#, php-format
|
3505 |
msgid "Bing META code (for %sWebmaster Tool%s ):"
|
3506 |
msgstr "Bing META code (pentru %sWebmaster Tool%s):"
|
3507 |
|
3508 |
+
#: view/BlockSettingsSeo.php:1138
|
3509 |
#, php-format
|
3510 |
msgid "Alexa META code (for %sAlexa Tool%s ):"
|
3511 |
msgstr "Alexa META code (pentru %sWebmaster Tool%s):"
|
3512 |
|
3513 |
+
#: view/BlockSettingsSeo.php:1144
|
3514 |
#, php-format
|
3515 |
msgid "Pinterest Website Validator Code: (validate %sRich Pins%s )"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: view/BlockSupport.php:11
|
3519 |
msgid "Go to Profile"
|
3520 |
msgstr "Profilul tau din Squirrly"
|
3521 |
|
3522 |
+
#: view/BlockSupport.php:11 view/BlockSupport.php:12
|
3523 |
msgid "Profile"
|
3524 |
msgstr "Profil"
|
3525 |
|
3526 |
+
#: view/BlockSupport.php:47 view/BlockSupport.php:102
|
3527 |
msgid "For more support:"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
+
#: view/BlockSupport.php:48 view/BlockSupport.php:103
|
3531 |
#, php-format
|
3532 |
msgid "10 AM to 4 PM (GMT): Mon-Fri %sby email%s."
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: view/BlockSupport.php:49 view/BlockSupport.php:105
|
3536 |
#, php-format
|
3537 |
msgid "%sLive Chat%s on Youtube. Thursday 4 PM."
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: view/BlockSupport.php:50 view/BlockSupport.php:106
|
3541 |
#, php-format
|
3542 |
msgid "Google Plus %sSupport Community%s."
|
3543 |
msgstr ""
|
3544 |
|
3545 |
+
#: view/BlockSupport.php:51 view/BlockSupport.php:107
|
3546 |
#, php-format
|
3547 |
msgid "New Lessons Mon. and Tue. on %sTwitter%s."
|
3548 |
msgstr ""
|
3549 |
|
3550 |
+
#: view/BlockSupport.php:63
|
3551 |
msgid "How was your Squirrly experience today?"
|
3552 |
msgstr "Cum a fost experienta de azi cu Squirrly?"
|
3553 |
|
3554 |
+
#: view/BlockSupport.php:72
|
3555 |
msgid "How was Squirrly today?"
|
3556 |
msgstr "Cum a fost Squirrly azi?"
|
3557 |
|
3558 |
+
#: view/BlockSupport.php:77
|
3559 |
msgid "Angry"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: view/BlockSupport.php:77
|
3563 |
msgid "Annoying"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
+
#: view/BlockSupport.php:80
|
3567 |
msgid "Sad"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
+
#: view/BlockSupport.php:80
|
3571 |
msgid "Bad"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
+
#: view/BlockSupport.php:83
|
3575 |
msgid "Happy"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
+
#: view/BlockSupport.php:83
|
3579 |
msgid "Nice"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
+
#: view/BlockSupport.php:86
|
3583 |
msgid "Excited"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
+
#: view/BlockSupport.php:86
|
3587 |
msgid "Great"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
+
#: view/BlockSupport.php:89
|
3591 |
msgid "Love it"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
+
#: view/BlockSupport.php:95
|
3595 |
msgid "Please tell us why?"
|
3596 |
msgstr "De ce?"
|
3597 |
|
3598 |
+
#: view/BlockSupport.php:98
|
3599 |
msgid "Send feedback"
|
3600 |
msgstr "Trimite"
|
3601 |
|
3602 |
+
#: view/BlockSupport.php:104
|
3603 |
#, php-format
|
3604 |
msgid "%sSupport button%s here in WordPress (^^)"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: view/BlockSupport.php:112
|
3608 |
msgid "Thank you! You can send us a happy face tomorow too."
|
3609 |
msgstr "Multumim! Ne poti trimite o fata vesela si maine."
|
3610 |
|
3686 |
|
3687 |
#: view/Blocklogin.php:31
|
3688 |
#, php-format
|
3689 |
+
msgid "I Agree with the Squirrly %sTerms of Use%s and %sPrivacy Policy%s"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
#: view/Blocklogin.php:33
|
4100 |
msgid "Today SERP Changes"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
+
#~ msgid "Could not send the email..."
|
4104 |
+
#~ msgstr "Nu s-a putut trimite email ..."
|
4105 |
+
|
4106 |
+
#~ msgid ""
|
4107 |
+
#~ "For Squirrly to work properly you have to use a higher version of "
|
4108 |
+
#~ "Internet Explorer. <br /> We recommend you to use Chrome or Mozilla."
|
4109 |
+
#~ msgstr ""
|
4110 |
+
#~ "Pentru a functiona Squirrly, trebui sa folosesti o versiune mai noua de "
|
4111 |
+
#~ "Internet explorer. <br /> Recomandam sa folosesti Chrome sau Mozilla."
|
4112 |
+
|
4113 |
#~ msgid "Turn off warnings!"
|
4114 |
#~ msgstr "Opreste avertizarile"
|
4115 |
|
4329 |
#~ msgid "Check with google ..."
|
4330 |
#~ msgstr "Verificat cu google ..."
|
4331 |
|
|
|
|
|
|
|
4332 |
#~ msgid "Let Squirrly warn me if there are errors related to SEO settings"
|
4333 |
#~ msgstr "Lasa Squirrly sa ma anunte daca sunt erori SEO in setari"
|
4334 |
|
models/BlockSettingsSeo.php
CHANGED
@@ -676,7 +676,6 @@ class SQ_Models_BlockSettingsSeo {
|
|
676 |
if (isset($options['sq_instagram_account']) && $options['sq_instagram_account'] <> '') $socials['instagram_url'] = $options['sq_instagram_account'];
|
677 |
if (isset($options['sq_linkedin_account']) && $options['sq_linkedin_account'] <> '') $socials['linkedin_url'] = $options['sq_linkedin_account'];
|
678 |
if (isset($options['sq_pinterest_account']) && $options['sq_pinterest_account'] <> '') $socials['pinterest_url'] = $options['sq_pinterest_account'];
|
679 |
-
if (isset($options['sq_google_plus']) && $options['sq_google_plus'] <> '') $socials['google_plus_url'] = $options['sq_google_plus'];
|
680 |
if (isset($options['sq_auto_twittersize']) && $options['sq_auto_twittersize'] <> '') $socials['twitter_card_type'] = ($options['sq_auto_twittersize'] == 0) ? 'summary' : 'summary_large_image';
|
681 |
|
682 |
SQ_Classes_Tools::saveOptions('socials', $socials);
|
676 |
if (isset($options['sq_instagram_account']) && $options['sq_instagram_account'] <> '') $socials['instagram_url'] = $options['sq_instagram_account'];
|
677 |
if (isset($options['sq_linkedin_account']) && $options['sq_linkedin_account'] <> '') $socials['linkedin_url'] = $options['sq_linkedin_account'];
|
678 |
if (isset($options['sq_pinterest_account']) && $options['sq_pinterest_account'] <> '') $socials['pinterest_url'] = $options['sq_pinterest_account'];
|
|
|
679 |
if (isset($options['sq_auto_twittersize']) && $options['sq_auto_twittersize'] <> '') $socials['twitter_card_type'] = ($options['sq_auto_twittersize'] == 0) ? 'summary' : 'summary_large_image';
|
680 |
|
681 |
SQ_Classes_Tools::saveOptions('socials', $socials);
|
models/Frontend.php
CHANGED
@@ -99,11 +99,12 @@ class SQ_Models_Frontend {
|
|
99 |
if (isset($header['sq_twitter_card']) && $header['sq_twitter_card'] <> '' && SQ_Classes_Tools::getOption('sq_auto_twitter')) {
|
100 |
$buffer = @preg_replace('/<meta[^>]*(name|property)=["\'](twitter:)[^"\'>]+["\'][^>]*content=["\'][^"\'>]+["\'][^>]*>[\n\r]*/si', '', $buffer, -1);
|
101 |
}
|
102 |
-
if (isset($header['sq_json_ld']) && $header['sq_json_ld'] <> '' && SQ_Classes_Tools::getOption('sq_auto_jsonld')) {
|
103 |
-
$buffer = @preg_replace('/<script[^>]*type=["\']application\/ld\+json["\'][^>]*>[^>]*<\/script>[\n\r]*/si', '', $buffer, -1);
|
104 |
-
}
|
105 |
if (isset($header['sq_favicon']) && $header['sq_favicon'] <> '' && SQ_Classes_Tools::getOption('sq_auto_favicon')) {
|
106 |
-
$buffer = @preg_replace('/<link[^>]*rel=["\']
|
|
|
107 |
}
|
108 |
$buffer = @preg_replace('/(<html(\s[^>]*|))/si', sprintf("$1%s", apply_filters('sq_html_prefix', false)), $buffer, 1);
|
109 |
|
@@ -255,6 +256,11 @@ class SQ_Models_Frontend {
|
|
255 |
$this->loadSeoLibrary();
|
256 |
}
|
257 |
|
|
|
|
|
|
|
|
|
|
|
258 |
return $this;
|
259 |
}
|
260 |
|
@@ -272,8 +278,7 @@ class SQ_Models_Frontend {
|
|
272 |
* @return WP_Post
|
273 |
*/
|
274 |
public function getWpPost($current_post) {
|
275 |
-
global $post;
|
276 |
-
|
277 |
if ($current_post instanceof WP_Post) {
|
278 |
$post = $current_post;
|
279 |
} else {
|
@@ -286,6 +291,23 @@ class SQ_Models_Frontend {
|
|
286 |
|
287 |
$current_post = apply_filters('sq_current_post', $current_post);
|
288 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
return $current_post;
|
290 |
}
|
291 |
|
@@ -310,6 +332,11 @@ class SQ_Models_Frontend {
|
|
310 |
$patterns->sep = $value;
|
311 |
}
|
312 |
|
|
|
|
|
|
|
|
|
|
|
313 |
if (strpos($value, '{{') !== false && strpos($value, '}}') !== false) {
|
314 |
$sq_with_patterns[$name] = $value;
|
315 |
}
|
@@ -324,7 +351,7 @@ class SQ_Models_Frontend {
|
|
324 |
}
|
325 |
}
|
326 |
}
|
327 |
-
|
328 |
return $post;
|
329 |
}
|
330 |
}
|
@@ -350,10 +377,7 @@ class SQ_Models_Frontend {
|
|
350 |
$post->hash = md5($post->ID);
|
351 |
$post->url = home_url();
|
352 |
return $post;
|
353 |
-
}
|
354 |
-
|
355 |
-
//If it's front post
|
356 |
-
if ($post->ID == get_option('page_for_posts')) {
|
357 |
$post->debug = 'page_for_posts:' . $post->ID;
|
358 |
$post->post_type = 'home';
|
359 |
$post->hash = md5($post->ID);
|
@@ -446,6 +470,7 @@ class SQ_Models_Frontend {
|
|
446 |
$post->post_type = 'tag';
|
447 |
if (isset($tag->term_id)) {
|
448 |
$post->post_title = $tag->name;
|
|
|
449 |
$post->url = get_tag_link($tag->term_id);
|
450 |
$post->debug = 'is_tag:' . $post->post_type . $tag->term_id;
|
451 |
$post->hash = md5($post->post_type . $tag->term_id);
|
@@ -700,7 +725,7 @@ class SQ_Models_Frontend {
|
|
700 |
$term = false;
|
701 |
|
702 |
if ($id = get_queried_object_id()) {
|
703 |
-
$term = get_term($id);
|
704 |
}
|
705 |
return $term;
|
706 |
}
|
99 |
if (isset($header['sq_twitter_card']) && $header['sq_twitter_card'] <> '' && SQ_Classes_Tools::getOption('sq_auto_twitter')) {
|
100 |
$buffer = @preg_replace('/<meta[^>]*(name|property)=["\'](twitter:)[^"\'>]+["\'][^>]*content=["\'][^"\'>]+["\'][^>]*>[\n\r]*/si', '', $buffer, -1);
|
101 |
}
|
102 |
+
// if (isset($header['sq_json_ld']) && $header['sq_json_ld'] <> '' && SQ_Classes_Tools::getOption('sq_auto_jsonld')) {
|
103 |
+
// $buffer = @preg_replace('/<script[^>]*type=["\']application\/ld\+json["\'][^>]*>[^>]*<\/script>[\n\r]*/si', '', $buffer, -1);
|
104 |
+
// }
|
105 |
if (isset($header['sq_favicon']) && $header['sq_favicon'] <> '' && SQ_Classes_Tools::getOption('sq_auto_favicon')) {
|
106 |
+
$buffer = @preg_replace('/<link[^>]*rel=["\']shortcut icon["\'][^>]*>[\n\r]*/si', '', $buffer, -1);
|
107 |
+
$buffer = @preg_replace('/<link[^>]*rel=["\']icon["\'][^>]*>[\n\r]*/si', '', $buffer, -1);
|
108 |
}
|
109 |
$buffer = @preg_replace('/(<html(\s[^>]*|))/si', sprintf("$1%s", apply_filters('sq_html_prefix', false)), $buffer, 1);
|
110 |
|
256 |
$this->loadSeoLibrary();
|
257 |
}
|
258 |
|
259 |
+
// if(SQ_DEBUG){
|
260 |
+
// global $wp_query;
|
261 |
+
// SQ_Classes_Tools::dump($wp_query);
|
262 |
+
// }
|
263 |
+
|
264 |
return $this;
|
265 |
}
|
266 |
|
278 |
* @return WP_Post
|
279 |
*/
|
280 |
public function getWpPost($current_post) {
|
281 |
+
global $post, $wp;
|
|
|
282 |
if ($current_post instanceof WP_Post) {
|
283 |
$post = $current_post;
|
284 |
} else {
|
291 |
|
292 |
$current_post = apply_filters('sq_current_post', $current_post);
|
293 |
|
294 |
+
if (empty($current_post) && isset($wp->request)) {
|
295 |
+
$current_url = home_url($wp->request);
|
296 |
+
|
297 |
+
if (get_option('page_for_posts') > 0) {
|
298 |
+
$posts_url = get_permalink(get_option('page_for_posts'));
|
299 |
+
if (rtrim($posts_url, '/') == rtrim($current_url, '/')) {
|
300 |
+
$current_post = get_post(get_option('page_for_posts'));
|
301 |
+
}
|
302 |
+
} elseif (get_option('page_on_front') > 0) {
|
303 |
+
$posts_url = get_permalink(get_option('page_on_front'));
|
304 |
+
if (rtrim($posts_url, '/') == rtrim($current_url, '/')) {
|
305 |
+
$current_post = get_post(get_option('page_on_front'));
|
306 |
+
}
|
307 |
+
}
|
308 |
+
|
309 |
+
// SQ_Classes_Tools::dump($posts_url, $current_url, $current_post);
|
310 |
+
}
|
311 |
return $current_post;
|
312 |
}
|
313 |
|
332 |
$patterns->sep = $value;
|
333 |
}
|
334 |
|
335 |
+
if (strpos($value, '%%') !== false) { //in case there are still patterns from Yoast
|
336 |
+
$value = preg_replace('/%%([^\%]+)%%/s', '{{$1}}', $value);
|
337 |
+
$post->sq->$name = preg_replace('/%%([^\%]+)%%/s', '{{$1}}', $post->sq->$name);
|
338 |
+
}
|
339 |
+
|
340 |
if (strpos($value, '{{') !== false && strpos($value, '}}') !== false) {
|
341 |
$sq_with_patterns[$name] = $value;
|
342 |
}
|
351 |
}
|
352 |
}
|
353 |
}
|
354 |
+
//SQ_Classes_Tools::dump($post->post_type, $post->sq, $post);
|
355 |
return $post;
|
356 |
}
|
357 |
}
|
377 |
$post->hash = md5($post->ID);
|
378 |
$post->url = home_url();
|
379 |
return $post;
|
380 |
+
}elseif ($post->ID == get_option('page_for_posts')) { //If it's front post
|
|
|
|
|
|
|
381 |
$post->debug = 'page_for_posts:' . $post->ID;
|
382 |
$post->post_type = 'home';
|
383 |
$post->hash = md5($post->ID);
|
470 |
$post->post_type = 'tag';
|
471 |
if (isset($tag->term_id)) {
|
472 |
$post->post_title = $tag->name;
|
473 |
+
$post->post_excerpt = $tag->description;
|
474 |
$post->url = get_tag_link($tag->term_id);
|
475 |
$post->debug = 'is_tag:' . $post->post_type . $tag->term_id;
|
476 |
$post->hash = md5($post->post_type . $tag->term_id);
|
725 |
$term = false;
|
726 |
|
727 |
if ($id = get_queried_object_id()) {
|
728 |
+
$term = get_term($id, '');
|
729 |
}
|
730 |
return $term;
|
731 |
}
|
models/Post.php
CHANGED
@@ -6,22 +6,6 @@
|
|
6 |
*/
|
7 |
class SQ_Models_Post {
|
8 |
|
9 |
-
/**
|
10 |
-
* Set the callback to tinymce with javascript SQ_eventChange function call on event
|
11 |
-
* @param string $init
|
12 |
-
* @return string
|
13 |
-
*/
|
14 |
-
public function setCallback($init) {
|
15 |
-
|
16 |
-
if (wp_default_editor() == 'tinymce') {
|
17 |
-
$init['setup'] = 'jQuery.sq_tinymce.setup';
|
18 |
-
$init['onchange_callback'] = 'jQuery.sq_tinymce.callback';
|
19 |
-
$init['content_css'] = ((isset($init['content_css']) && $init['content_css'] <> '') ? $init['content_css'] . ',' : '') . _SQ_THEME_URL_ . 'css/frontend' . (SQ_DEBUG ? '' : '.min') . '.css?ver=' . SQ_VERSION_ID;
|
20 |
-
}
|
21 |
-
|
22 |
-
return $init;
|
23 |
-
}
|
24 |
-
|
25 |
/**
|
26 |
* Register a button in tinymce editor
|
27 |
*/
|
@@ -252,25 +236,55 @@ class SQ_Models_Post {
|
|
252 |
* Add configuration page
|
253 |
*/
|
254 |
public function upload_image($url) {
|
255 |
-
$
|
256 |
-
$file = array();
|
257 |
-
|
258 |
-
if (strpos($url, 'http') === false) {
|
259 |
$url = 'http:' . $url;
|
260 |
}
|
261 |
|
|
|
262 |
$response = wp_remote_get($url, array('timeout' => 15));
|
263 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
|
265 |
-
|
|
|
266 |
|
267 |
-
if (
|
268 |
-
if (isset($file['url']) && $file['url'] <> '') {
|
269 |
-
$file['filename'] = basename($file['url']);
|
270 |
|
271 |
-
|
272 |
-
}
|
273 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
return false;
|
275 |
}
|
276 |
|
6 |
*/
|
7 |
class SQ_Models_Post {
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
/**
|
10 |
* Register a button in tinymce editor
|
11 |
*/
|
236 |
* Add configuration page
|
237 |
*/
|
238 |
public function upload_image($url) {
|
239 |
+
if (strpos($url, 'http') === false && strpos($url, '//') !== false) {
|
|
|
|
|
|
|
240 |
$url = 'http:' . $url;
|
241 |
}
|
242 |
|
243 |
+
$filename = false;
|
244 |
$response = wp_remote_get($url, array('timeout' => 15));
|
245 |
+
$body = wp_remote_retrieve_body($response);
|
246 |
+
$type = wp_remote_retrieve_header($response, 'content-type');
|
247 |
+
|
248 |
+
$extension = pathinfo($url, PATHINFO_EXTENSION);
|
249 |
+
$mimes = get_allowed_mime_types();
|
250 |
+
foreach ($mimes as $extensions => $mime) {
|
251 |
+
if (in_array($extension, explode('|', $extensions))) {
|
252 |
+
$filename = md5(basename($url)) . '.' . $extension;
|
253 |
+
break;
|
254 |
+
}
|
255 |
+
}
|
256 |
+
if (!$filename) {
|
257 |
+
foreach ($mimes as $extensions => $mime) {
|
258 |
+
if ($mime == $type) {
|
259 |
+
$filename = md5(basename($url)) . '.' . current(explode('|', $extensions));
|
260 |
+
break;
|
261 |
+
}
|
262 |
+
}
|
263 |
+
}
|
264 |
|
265 |
+
if (!$filename) return false;
|
266 |
+
$upload = wp_upload_dir();
|
267 |
|
268 |
+
if ($upload['error'] !== false) return false;
|
|
|
|
|
269 |
|
270 |
+
if (file_exists($upload['path'] . "/$filename")) {
|
|
|
271 |
|
272 |
+
return array(
|
273 |
+
'url' => $upload['url'] . "/$filename",
|
274 |
+
'file' => $upload['path'] . "/$filename",
|
275 |
+
'filename' => $filename,
|
276 |
+
'type' => $type,
|
277 |
+
);
|
278 |
+
} else {
|
279 |
+
$file = wp_upload_bits($filename, '', $body, null);
|
280 |
+
|
281 |
+
if (!isset($file['error']) || $file['error'] == '')
|
282 |
+
if (isset($file['url']) && $file['url'] <> '') {
|
283 |
+
$file['filename'] = $filename;
|
284 |
+
$file['type'] = $type;
|
285 |
+
return $file;
|
286 |
+
}
|
287 |
+
}
|
288 |
return false;
|
289 |
}
|
290 |
|
models/SerpChecker.php
CHANGED
@@ -447,14 +447,12 @@ class SQ_Models_SerpChecker {
|
|
447 |
if ((int)$post_id == 0 || empty($args))
|
448 |
return false;
|
449 |
|
450 |
-
SQ_Classes_Tools::dump($post_id,$args);
|
451 |
foreach ($args as $serp) {
|
452 |
$keyword = (isset($serp->keyword) ? $serp->keyword : '');
|
453 |
|
454 |
if ($serp->change > 0 && SQ_Classes_Tools::getOption('sq_analytics')) {
|
455 |
SQ_Classes_Tools::saveOptions('sq_analytics', 0); //set analytics to not viewed yet and show notification
|
456 |
}
|
457 |
-
SQ_Classes_Tools::dump($keyword);
|
458 |
if ($keyword <> '') {
|
459 |
$sql = "SELECT `meta_id`, `meta_value`
|
460 |
FROM `" . $wpdb->postmeta . "`
|
@@ -469,24 +467,20 @@ class SQ_Models_SerpChecker {
|
|
469 |
$dbkeyword = $json->keyword;
|
470 |
}
|
471 |
}
|
472 |
-
SQ_Classes_Tools::dump($dbkeyword);
|
473 |
|
474 |
if ($keyword == $dbkeyword) {
|
475 |
-
|
476 |
-
|
477 |
-
$sql = "UPDATE `" . $wpdb->postmeta . "`
|
478 |
SET `meta_value` = '" . addslashes(json_encode($serp)) . "'
|
479 |
WHERE `meta_id` = '" . $record->meta_id . "'";
|
480 |
|
481 |
-
|
|
|
482 |
|
483 |
-
SQ_Classes_Tools::dump('continue to next keyword');
|
484 |
continue 2; //go to the next keyword
|
485 |
}
|
486 |
}
|
487 |
}
|
488 |
-
SQ_Classes_Tools::dump('Insert Keyword: ' . $keyword);
|
489 |
-
|
490 |
$sql = "INSERT INTO `" . $wpdb->postmeta . "`
|
491 |
(`post_id`,`meta_key`,`meta_value`)
|
492 |
VALUES (" . (int)$post_id . ",'_src_keyword','" . addslashes(json_encode($serp)) . "')";
|
447 |
if ((int)$post_id == 0 || empty($args))
|
448 |
return false;
|
449 |
|
|
|
450 |
foreach ($args as $serp) {
|
451 |
$keyword = (isset($serp->keyword) ? $serp->keyword : '');
|
452 |
|
453 |
if ($serp->change > 0 && SQ_Classes_Tools::getOption('sq_analytics')) {
|
454 |
SQ_Classes_Tools::saveOptions('sq_analytics', 0); //set analytics to not viewed yet and show notification
|
455 |
}
|
|
|
456 |
if ($keyword <> '') {
|
457 |
$sql = "SELECT `meta_id`, `meta_value`
|
458 |
FROM `" . $wpdb->postmeta . "`
|
467 |
$dbkeyword = $json->keyword;
|
468 |
}
|
469 |
}
|
|
|
470 |
|
471 |
if ($keyword == $dbkeyword) {
|
472 |
+
if($json->datetime < date('Y-m-d 00:00:00')) {
|
473 |
+
$sql = "UPDATE `" . $wpdb->postmeta . "`
|
|
|
474 |
SET `meta_value` = '" . addslashes(json_encode($serp)) . "'
|
475 |
WHERE `meta_id` = '" . $record->meta_id . "'";
|
476 |
|
477 |
+
$wpdb->query($sql);
|
478 |
+
}
|
479 |
|
|
|
480 |
continue 2; //go to the next keyword
|
481 |
}
|
482 |
}
|
483 |
}
|
|
|
|
|
484 |
$sql = "INSERT INTO `" . $wpdb->postmeta . "`
|
485 |
(`post_id`,`meta_key`,`meta_value`)
|
486 |
VALUES (" . (int)$post_id . ",'_src_keyword','" . addslashes(json_encode($serp)) . "')";
|
models/SerpCheckerTable.php
CHANGED
@@ -623,16 +623,16 @@ class SQ_Models_SerpCheckerTable extends WP_List_Table {
|
|
623 |
break;
|
624 |
case 'shares':
|
625 |
$value = $post->meta_value->facebook +
|
626 |
-
$post->meta_value->plus +
|
627 |
-
$post->meta_value->linkedin +
|
628 |
$post->meta_value->reddit +
|
629 |
$post->meta_value->stumble +
|
630 |
$post->meta_value->twitter +
|
631 |
$post->meta_value->pinterest;
|
632 |
$title = __("Facebook", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->facebook . "\n";
|
633 |
$title .= __("Twitter", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->twitter . "\n";
|
634 |
-
|
635 |
-
|
636 |
$title .= __("Reddit", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->reddit . "\n";
|
637 |
$title .= __("Stumble", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->stumble . "\n";
|
638 |
$title .= __("Pinterest", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->pinterest . "\n";
|
623 |
break;
|
624 |
case 'shares':
|
625 |
$value = $post->meta_value->facebook +
|
626 |
+
// $post->meta_value->plus +
|
627 |
+
// $post->meta_value->linkedin +
|
628 |
$post->meta_value->reddit +
|
629 |
$post->meta_value->stumble +
|
630 |
$post->meta_value->twitter +
|
631 |
$post->meta_value->pinterest;
|
632 |
$title = __("Facebook", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->facebook . "\n";
|
633 |
$title .= __("Twitter", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->twitter . "\n";
|
634 |
+
//$title .= __("Google+", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->plus . "\n";
|
635 |
+
//$title .= __("LinkedIn", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->linkedin . "\n";
|
636 |
$title .= __("Reddit", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->reddit . "\n";
|
637 |
$title .= __("Stumble", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->stumble . "\n";
|
638 |
$title .= __("Pinterest", _SQ_PLUGIN_NAME_) . ": " . $post->meta_value->pinterest . "\n";
|
models/Sitemaps.php
CHANGED
@@ -9,9 +9,10 @@
|
|
9 |
*/
|
10 |
class SQ_Models_Sitemaps extends SQ_Models_Abstract_Seo {
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
15 |
|
16 |
public function __construct() {
|
17 |
//parent::__construct();
|
@@ -19,10 +20,11 @@ class SQ_Models_Sitemaps extends SQ_Models_Abstract_Seo {
|
|
19 |
$this->args['timeout'] = 5;
|
20 |
|
21 |
$this->frequency = array();
|
22 |
-
$this->frequency['
|
23 |
-
$this->frequency['
|
24 |
-
$this->frequency['
|
25 |
-
$this->frequency['
|
|
|
26 |
}
|
27 |
|
28 |
/**
|
@@ -35,11 +37,11 @@ class SQ_Models_Sitemaps extends SQ_Models_Abstract_Seo {
|
|
35 |
$homes['contains'] = array();
|
36 |
global $polylang;
|
37 |
|
38 |
-
if (isset($polylang)) {
|
39 |
foreach ($polylang->get_languages_list() as $term) {
|
40 |
$xml = array();
|
41 |
$xml['loc'] = esc_url($polylang->get_home_url($term));
|
42 |
-
$xml['lastmod'] = trim(mysql2date('Y-m-d\TH:i:s+00:00',
|
43 |
$xml['changefreq'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')]['sitemap-home'][1];
|
44 |
$xml['priority'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')]['sitemap-home'][0];
|
45 |
$homes[] = $xml;
|
@@ -47,7 +49,7 @@ class SQ_Models_Sitemaps extends SQ_Models_Abstract_Seo {
|
|
47 |
} else {
|
48 |
$xml = array();
|
49 |
$xml['loc'] = home_url();
|
50 |
-
$xml['lastmod'] = trim(mysql2date('Y-m-d\TH:i:s+00:00',
|
51 |
$xml['changefreq'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')]['sitemap-home'][1];
|
52 |
$xml['priority'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')]['sitemap-home'][0];
|
53 |
if ($post_id = get_option('page_on_front')) {
|
@@ -96,22 +98,24 @@ class SQ_Models_Sitemaps extends SQ_Models_Abstract_Seo {
|
|
96 |
continue;
|
97 |
}
|
98 |
|
99 |
-
if (
|
100 |
-
|
|
|
101 |
|
102 |
-
|
103 |
-
|
104 |
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
|
110 |
-
|
|
|
111 |
}
|
|
|
|
|
112 |
}
|
113 |
-
//the polylang has both posts so continue
|
114 |
-
continue;
|
115 |
}
|
116 |
}
|
117 |
|
@@ -139,6 +143,48 @@ class SQ_Models_Sitemaps extends SQ_Models_Abstract_Seo {
|
|
139 |
return $posts;
|
140 |
}
|
141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
private function _getPostXml($post) {
|
143 |
$xml = array();
|
144 |
$xml['loc'] = esc_url(get_permalink());
|
@@ -295,10 +341,24 @@ class SQ_Models_Sitemaps extends SQ_Models_Abstract_Seo {
|
|
295 |
$type = $this->type;
|
296 |
}
|
297 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
$terms = $array = array();
|
299 |
$array['contains'] = array();
|
300 |
if ($type == 'sitemap-custom-tax') {
|
301 |
-
$
|
|
|
|
|
|
|
|
|
|
|
302 |
if (!empty($taxonomies)) {
|
303 |
$taxonomies = array_unique($taxonomies);
|
304 |
}
|
@@ -320,8 +380,11 @@ class SQ_Models_Sitemaps extends SQ_Models_Abstract_Seo {
|
|
320 |
if (!isset($term->taxonomy)) {
|
321 |
continue;
|
322 |
}
|
|
|
|
|
|
|
323 |
$term->lastmod = (isset($term->lastmod) ? $term->lastmod : time());
|
324 |
-
$xml['loc'] =
|
325 |
$xml['lastmod'] = date('Y-m-d\TH:i:s+00:00', $term->lastmod);
|
326 |
$xml['changefreq'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')][$type][1];
|
327 |
$xml['priority'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')][$type][0];
|
@@ -396,7 +459,6 @@ class SQ_Models_Sitemaps extends SQ_Models_Abstract_Seo {
|
|
396 |
*/
|
397 |
public function lastModified($sitemap = 'post_type', $term = '') {
|
398 |
if ('post_type' == $sitemap) :
|
399 |
-
|
400 |
global $post;
|
401 |
|
402 |
if (isset($post->ID)) {
|
@@ -417,9 +479,10 @@ class SQ_Models_Sitemaps extends SQ_Models_Abstract_Seo {
|
|
417 |
|
418 |
$this->postmodified[$post->ID] = $postmodified;
|
419 |
}
|
|
|
420 |
}
|
421 |
-
return $this->postmodified[$post->ID];
|
422 |
|
|
|
423 |
elseif (!empty($term)) :
|
424 |
|
425 |
if (is_object($term)) {
|
9 |
*/
|
10 |
class SQ_Models_Sitemaps extends SQ_Models_Abstract_Seo {
|
11 |
|
12 |
+
public $args = array();
|
13 |
+
public $frequency;
|
14 |
+
public $type;
|
15 |
+
protected $postmodified;
|
16 |
|
17 |
public function __construct() {
|
18 |
//parent::__construct();
|
20 |
$this->args['timeout'] = 5;
|
21 |
|
22 |
$this->frequency = array();
|
23 |
+
$this->frequency['hourly'] = array('sitemap-home' => array(1, 'hourly'), 'sitemap-product' => array(1, 'hourly'), 'sitemap-post' => array(1, 'hourly'), 'sitemap-page' => array(0.6, 'hourly'), 'sitemap-category' => array(0.5, 'daily'), 'sitemap-post_tag' => array(0.5, 'daily'), 'sitemap-archive' => array(0.3, 'monthly'), 'sitemap-author' => array(0.3, 'daily'), 'sitemap-custom-tax' => array(0.3, 'hourly'), 'sitemap-custom-post' => array(1, 'hourly'), 'sitemap-attachment' => array(0.3, 'hourly'));
|
24 |
+
$this->frequency['daily'] = array('sitemap-home' => array(1, 'daily'), 'sitemap-product' => array(0.8, 'daily'), 'sitemap-post' => array(0.8, 'daily'), 'sitemap-page' => array(0.6, 'weekly'), 'sitemap-category' => array(0.5, 'weekly'), 'sitemap-post_tag' => array(0.5, 'daily'), 'sitemap-archive' => array(0.3, 'monthly'), 'sitemap-author' => array(0.3, 'weekly'), 'sitemap-custom-tax' => array(0.3, 'weekly'), 'sitemap-custom-post' => array(0.8, 'daily'), 'sitemap-attachment' => array(0.3, 'weekly'));
|
25 |
+
$this->frequency['weekly'] = array('sitemap-home' => array(1, 'weekly'), 'sitemap-product' => array(0.8, 'weekly'), 'sitemap-post' => array(0.8, 'weekly'), 'sitemap-page' => array(0.6, 'monthly'), 'sitemap-category' => array(0.3, 'monthly'), 'sitemap-post_tag' => array(0.5, 'weekly'), 'sitemap-archive' => array(0.3, 'monthly'), 'sitemap-author' => array(0.3, 'weekly'), 'sitemap-custom-tax' => array(0.3, 'weekly'), 'sitemap-custom-post' => array(0.8, 'weekly'), 'sitemap-attachment' => array(0.3, 'monthly'));
|
26 |
+
$this->frequency['monthly'] = array('sitemap-home' => array(1, 'monthly'), 'sitemap-product' => array(0.8, 'weekly'), 'sitemap-post' => array(0.8, 'monthly'), 'sitemap-page' => array(0.6, 'monthly'), 'sitemap-category' => array(0.3, 'monthly'), 'sitemap-post_tag' => array(0.5, 'monthly'), 'sitemap-archive' => array(0.3, 'monthly'), 'sitemap-author' => array(0.3, 'monthly'), 'sitemap-custom-tax' => array(0.3, 'monthly'), 'sitemap-custom-post' => array(0.8, 'monthly'), 'sitemap-attachment' => array(0.3, 'monthly'));
|
27 |
+
$this->frequency['yearly'] = array('sitemap-home' => array(1, 'monthly'), 'sitemap-product' => array(0.8, 'weekly'), 'sitemap-post' => array(0.8, 'monthly'), 'sitemap-page' => array(0.6, 'yearly'), 'sitemap-category' => array(0.3, 'yearly'), 'sitemap-post_tag' => array(0.5, 'monthly'), 'sitemap-archive' => array(0.3, 'yearly'), 'sitemap-author' => array(0.3, 'yearly'), 'sitemap-custom-tax' => array(0.3, 'yearly'), 'sitemap-custom-post' => array(0.8, 'monthly'), 'sitemap-attachment' => array(0.3, 'monthly'));
|
28 |
}
|
29 |
|
30 |
/**
|
37 |
$homes['contains'] = array();
|
38 |
global $polylang;
|
39 |
|
40 |
+
if (isset($polylang) && method_exists($polylang, 'get_languages_list') && method_exists($polylang, 'get_home_url') && SQ_Classes_Tools::getOption('sq_sitemap_combinelangs')) {
|
41 |
foreach ($polylang->get_languages_list() as $term) {
|
42 |
$xml = array();
|
43 |
$xml['loc'] = esc_url($polylang->get_home_url($term));
|
44 |
+
$xml['lastmod'] = trim(mysql2date('Y-m-d\TH:i:s+00:00', date('Y-m-d', strtotime(get_lastpostmodified('gmt'))), false));
|
45 |
$xml['changefreq'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')]['sitemap-home'][1];
|
46 |
$xml['priority'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')]['sitemap-home'][0];
|
47 |
$homes[] = $xml;
|
49 |
} else {
|
50 |
$xml = array();
|
51 |
$xml['loc'] = home_url();
|
52 |
+
$xml['lastmod'] = trim(mysql2date('Y-m-d\TH:i:s+00:00', date('Y-m-d', strtotime(get_lastpostmodified('gmt'))), false));
|
53 |
$xml['changefreq'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')]['sitemap-home'][1];
|
54 |
$xml['priority'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')]['sitemap-home'][0];
|
55 |
if ($post_id = get_option('page_on_front')) {
|
98 |
continue;
|
99 |
}
|
100 |
|
101 |
+
if (SQ_Classes_Tools::getOption('sq_sitemap_combinelangs')) {
|
102 |
+
if (function_exists('pll_get_post_translations')) {
|
103 |
+
$translates = pll_get_post_translations(get_post()->ID);
|
104 |
|
105 |
+
if (!empty($translates)) {
|
106 |
+
foreach ($translates as $post_id) {
|
107 |
|
108 |
+
if ($post = SQ_Classes_ObjController::getClass('SQ_Controllers_Menu')->setPostByID(get_post($post_id))) {
|
109 |
+
if ($post->sq->nositemap) {
|
110 |
+
continue;
|
111 |
+
}
|
112 |
|
113 |
+
$posts[] = $this->_getPostXml($post);
|
114 |
+
}
|
115 |
}
|
116 |
+
//the polylang has both posts so continue
|
117 |
+
continue;
|
118 |
}
|
|
|
|
|
119 |
}
|
120 |
}
|
121 |
|
143 |
return $posts;
|
144 |
}
|
145 |
|
146 |
+
public function getListAttachments() {
|
147 |
+
global $wp_query, $sq_query;
|
148 |
+
|
149 |
+
$wp_query = new WP_Query($sq_query);
|
150 |
+
$posts = array();
|
151 |
+
$posts['contains'] = array();
|
152 |
+
if (have_posts()) {
|
153 |
+
while (have_posts()) {
|
154 |
+
the_post();
|
155 |
+
|
156 |
+
//do not incude password protected pages in sitemap
|
157 |
+
if (post_password_required()) {
|
158 |
+
continue;
|
159 |
+
}
|
160 |
+
|
161 |
+
if ($post = SQ_Classes_ObjController::getClass('SQ_Controllers_Menu')->setPostByID(get_post())) {
|
162 |
+
if ($post->sq->nositemap) {
|
163 |
+
continue;
|
164 |
+
}
|
165 |
+
$xml = $this->_getPostXml($post);
|
166 |
+
if (strpos($xml['loc'], '?') !== false) {
|
167 |
+
$xml['loc'] = wp_get_attachment_url($post->ID);
|
168 |
+
}
|
169 |
+
$posts[] = $xml;
|
170 |
+
}
|
171 |
+
|
172 |
+
|
173 |
+
}
|
174 |
+
}
|
175 |
+
|
176 |
+
foreach ($posts as $post) {
|
177 |
+
if (array_key_exists('image:image', $post)) {
|
178 |
+
array_push($posts['contains'], 'image');
|
179 |
+
}
|
180 |
+
if (array_key_exists('video:video', $post)) {
|
181 |
+
array_push($posts['contains'], 'video');
|
182 |
+
}
|
183 |
+
}
|
184 |
+
|
185 |
+
return $posts;
|
186 |
+
}
|
187 |
+
|
188 |
private function _getPostXml($post) {
|
189 |
$xml = array();
|
190 |
$xml['loc'] = esc_url(get_permalink());
|
341 |
$type = $this->type;
|
342 |
}
|
343 |
|
344 |
+
$excludelist = array(
|
345 |
+
'category',
|
346 |
+
'post_tag',
|
347 |
+
'nav_menu',
|
348 |
+
'link_category',
|
349 |
+
'post_format',
|
350 |
+
'ngg_tag',
|
351 |
+
);
|
352 |
+
|
353 |
$terms = $array = array();
|
354 |
$array['contains'] = array();
|
355 |
if ($type == 'sitemap-custom-tax') {
|
356 |
+
$args = array(
|
357 |
+
'public' => true,
|
358 |
+
'_builtin' => false
|
359 |
+
);
|
360 |
+
|
361 |
+
$taxonomies = $this->excludeTypes(get_taxonomies($args), $excludelist);
|
362 |
if (!empty($taxonomies)) {
|
363 |
$taxonomies = array_unique($taxonomies);
|
364 |
}
|
380 |
if (!isset($term->taxonomy)) {
|
381 |
continue;
|
382 |
}
|
383 |
+
|
384 |
+
$termlink = esc_url(get_term_link($term, $term->taxonomy));
|
385 |
+
|
386 |
$term->lastmod = (isset($term->lastmod) ? $term->lastmod : time());
|
387 |
+
$xml['loc'] = $termlink;
|
388 |
$xml['lastmod'] = date('Y-m-d\TH:i:s+00:00', $term->lastmod);
|
389 |
$xml['changefreq'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')][$type][1];
|
390 |
$xml['priority'] = $this->frequency[SQ_Classes_Tools::getOption('sq_sitemap_frequency')][$type][0];
|
459 |
*/
|
460 |
public function lastModified($sitemap = 'post_type', $term = '') {
|
461 |
if ('post_type' == $sitemap) :
|
|
|
462 |
global $post;
|
463 |
|
464 |
if (isset($post->ID)) {
|
479 |
|
480 |
$this->postmodified[$post->ID] = $postmodified;
|
481 |
}
|
482 |
+
return $this->postmodified[$post->ID];
|
483 |
}
|
|
|
484 |
|
485 |
+
return '0000-00-00 00:00:00';
|
486 |
elseif (!empty($term)) :
|
487 |
|
488 |
if (is_object($term)) {
|
models/abstract/Seo.php
CHANGED
@@ -61,19 +61,26 @@ abstract class SQ_Models_Abstract_Seo {
|
|
61 |
return $images;
|
62 |
}
|
63 |
|
64 |
-
if (
|
|
|
|
|
|
|
|
|
65 |
$attachment = get_post(get_post_thumbnail_id($this->_post->ID));
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
)
|
76 |
-
|
|
|
|
|
|
|
77 |
}
|
78 |
|
79 |
if ($all || empty($images)) {
|
@@ -107,7 +114,7 @@ abstract class SQ_Models_Abstract_Seo {
|
|
107 |
*/
|
108 |
public function getImageType($url = '') {
|
109 |
|
110 |
-
if($url == '' || strpos($url,'.') === false){
|
111 |
return false;
|
112 |
}
|
113 |
|
61 |
return $images;
|
62 |
}
|
63 |
|
64 |
+
if (wp_attachment_is_image($this->_post->ID)) {
|
65 |
+
$attachment = get_post($this->_post->ID);
|
66 |
+
$this->_post->post_title = ((isset($attachment->post_title) && strlen($attachment->post_title) > 10) ? $attachment->post_title : '');
|
67 |
+
$this->_post->post_excerpt = (isset($attachment->post_excerpt) ? $attachment->post_excerpt : isset($attachment->post_content) ? $attachment->post_content : '');
|
68 |
+
} elseif (has_post_thumbnail($this->_post->ID)) {
|
69 |
$attachment = get_post(get_post_thumbnail_id($this->_post->ID));
|
70 |
+
$this->_post->post_title = ((isset($attachment->post_title) && strlen($attachment->post_title) > 10) ? $attachment->post_title : '');
|
71 |
+
$this->_post->post_excerpt = (isset($attachment->post_excerpt) ? $attachment->post_excerpt : isset($attachment->post_content) ? $attachment->post_content : '');
|
72 |
+
}
|
73 |
+
|
74 |
+
if (isset($attachment->ID)) {
|
75 |
+
$url = wp_get_attachment_image_src($attachment->ID, 'full');
|
76 |
+
|
77 |
+
$images[] = array(
|
78 |
+
'src' => esc_url($url[0]),
|
79 |
+
'title' => $this->clearTitle($this->_post->post_title),
|
80 |
+
'description' => $this->clearDescription($this->_post->post_excerpt),
|
81 |
+
'width' => $url[1],
|
82 |
+
'height' => $url[2],
|
83 |
+
);
|
84 |
}
|
85 |
|
86 |
if ($all || empty($images)) {
|
114 |
*/
|
115 |
public function getImageType($url = '') {
|
116 |
|
117 |
+
if ($url == '' || strpos($url, '.') === false) {
|
118 |
return false;
|
119 |
}
|
120 |
|
models/domain/Patterns.php
CHANGED
@@ -83,6 +83,19 @@ class SQ_Models_Domain_Patterns extends SQ_Models_Abstract_Domain {
|
|
83 |
return $this->_excerpt;
|
84 |
}
|
85 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
protected $_excerpt_only; //Replaced with the post/page excerpt (without auto-generation)
|
87 |
|
88 |
public function getExcerpt_only() {
|
@@ -101,33 +114,62 @@ class SQ_Models_Domain_Patterns extends SQ_Models_Abstract_Domain {
|
|
101 |
protected $_category; //Replaced with the post categories (comma separated)
|
102 |
|
103 |
public function getCategory() {
|
104 |
-
if (!isset($this->_category)) {
|
105 |
$this->_category = $this->_title;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
}
|
107 |
return $this->_category;
|
108 |
}
|
109 |
|
110 |
protected $_primary_category; //Replaced with the primary category of the post/page
|
|
|
111 |
|
112 |
public function getPrimary_category() {
|
113 |
if (!isset($this->_primary_category)) {
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
}
|
128 |
}
|
129 |
}
|
130 |
-
|
131 |
}
|
132 |
return $this->_primary_category;
|
133 |
}
|
@@ -136,18 +178,36 @@ class SQ_Models_Domain_Patterns extends SQ_Models_Abstract_Domain {
|
|
136 |
protected $_category_description; //Replaced with the category description
|
137 |
|
138 |
public function getCategory_description() {
|
139 |
-
if (!isset($this->_category_description)) {
|
140 |
$this->_category_description = $this->_excerpt;
|
141 |
-
}
|
142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
return $this->truncate($this->_category_description, 100, $this->getDescription_maxlength());
|
144 |
}
|
145 |
|
146 |
protected $_tag; //Replaced with the current tag/tags
|
147 |
|
148 |
public function getTag() {
|
149 |
-
if (!isset($this->_tag)) {
|
150 |
$this->_tag = $this->_title;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
}
|
152 |
return $this->_tag;
|
153 |
}
|
@@ -155,8 +215,17 @@ class SQ_Models_Domain_Patterns extends SQ_Models_Abstract_Domain {
|
|
155 |
protected $_tag_description; //Replaced with the tag description
|
156 |
|
157 |
public function getTag_description() {
|
158 |
-
if (!isset($this->_tag_description)) {
|
159 |
-
$this->_tag_description = $this->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
}
|
161 |
|
162 |
return $this->truncate($this->_tag_description, 100, $this->getDescription_maxlength());
|
@@ -267,7 +336,11 @@ class SQ_Models_Domain_Patterns extends SQ_Models_Abstract_Domain {
|
|
267 |
|
268 |
public function setPost_author($value) {
|
269 |
if ($value <> '') {
|
270 |
-
$
|
|
|
|
|
|
|
|
|
271 |
}
|
272 |
}
|
273 |
|
@@ -303,18 +376,47 @@ class SQ_Models_Domain_Patterns extends SQ_Models_Abstract_Domain {
|
|
303 |
protected $_currentmonth; //Replaced with the current month
|
304 |
|
305 |
public function getCurrentmonth() {
|
306 |
-
return date('
|
307 |
}
|
308 |
|
309 |
protected $_currentyear; //Replaced with the current year
|
310 |
|
311 |
public function getCurrentyear() {
|
312 |
-
return date('
|
313 |
}
|
314 |
|
315 |
protected $_caption; //Attachment caption
|
316 |
protected $_keyword; //Replaced with the posts focus keyword
|
317 |
protected $_focuskw; //Same as keyword
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
protected $_term404; //Replaced with the slug which caused the 404
|
319 |
/*********************************************************************************/
|
320 |
|
@@ -373,12 +475,12 @@ class SQ_Models_Domain_Patterns extends SQ_Models_Abstract_Domain {
|
|
373 |
return $text;
|
374 |
}
|
375 |
|
376 |
-
public function getTitle_maxlength(){
|
377 |
$metas = SQ_Classes_Tools::getOption('sq_metas');
|
378 |
return $metas['title_maxlength'];
|
379 |
}
|
380 |
|
381 |
-
public function getDescription_maxlength(){
|
382 |
$metas = SQ_Classes_Tools::getOption('sq_metas');
|
383 |
return $metas['description_maxlength'];
|
384 |
}
|
83 |
return $this->_excerpt;
|
84 |
}
|
85 |
|
86 |
+
protected $_post_description; //Replaced with the post/page content description (or auto-generated if it does not exist)
|
87 |
+
|
88 |
+
public function getPost_description() {
|
89 |
+
if ($post = $this->currentpost) {
|
90 |
+
SQ_Classes_Tools::dump($post);
|
91 |
+
|
92 |
+
if ($post->post_content <> '') {
|
93 |
+
$this->_excerpt = $this->truncate($post->post_content, 100, $this->getDescription_maxlength());
|
94 |
+
}
|
95 |
+
}
|
96 |
+
return $this->_excerpt;
|
97 |
+
}
|
98 |
+
|
99 |
protected $_excerpt_only; //Replaced with the post/page excerpt (without auto-generation)
|
100 |
|
101 |
public function getExcerpt_only() {
|
114 |
protected $_category; //Replaced with the post categories (comma separated)
|
115 |
|
116 |
public function getCategory() {
|
117 |
+
if (!isset($this->_category) || $this->_category == '') {
|
118 |
$this->_category = $this->_title;
|
119 |
+
|
120 |
+
//change category title if article
|
121 |
+
$categories = get_the_category($this->_id);
|
122 |
+
if (!empty($categories)) {
|
123 |
+
$this->_category = '';
|
124 |
+
foreach ($categories as $category) {
|
125 |
+
$this->_category .= ($this->_category <> '' ? ', ' : '') . $category->name;
|
126 |
+
}
|
127 |
+
}
|
128 |
}
|
129 |
return $this->_category;
|
130 |
}
|
131 |
|
132 |
protected $_primary_category; //Replaced with the primary category of the post/page
|
133 |
+
protected $_primary_category_id;
|
134 |
|
135 |
public function getPrimary_category() {
|
136 |
if (!isset($this->_primary_category)) {
|
137 |
+
$this->_primary_category = $this->_title;
|
138 |
+
|
139 |
+
if($this->_post_type == 'category') {
|
140 |
+
if ($category = get_category_by_slug($this->_guid)) {
|
141 |
+
$args = array(
|
142 |
+
'type' => 'post',
|
143 |
+
'child_of' => $category->term_id,
|
144 |
+
'orderby' => 'name',
|
145 |
+
'order' => 'ASC', // or any order you like
|
146 |
+
'hide_empty' => FALSE,
|
147 |
+
'hierarchical' => 1,
|
148 |
+
'taxonomy' => 'category',
|
149 |
+
);
|
150 |
+
if ($child_categories = get_categories($args)) {
|
151 |
+
if (!empty($child_categories)) {
|
152 |
+
$this->_primary_category = $child_categories[0]->name;
|
153 |
+
}
|
154 |
+
}
|
155 |
+
}
|
156 |
+
}else {
|
157 |
+
//If the primary category is set in postmeta
|
158 |
+
if ($primary_term_category = get_post_meta($this->_id, '_primary_term_category', true)) {
|
159 |
+
$this->_primary_category_id = (int)$primary_term_category;
|
160 |
+
$this->_primary_category = get_the_category_by_ID((int)$primary_term_category);
|
161 |
+
} else {
|
162 |
+
$categories = get_the_category($this->_id);
|
163 |
+
|
164 |
+
if (!empty($categories)) {
|
165 |
+
foreach ($categories as $category) {
|
166 |
+
$this->_primary_category_id = (int)$category->id;
|
167 |
+
$this->_primary_category = $category->name;
|
168 |
+
break;
|
169 |
+
}
|
170 |
}
|
171 |
}
|
172 |
}
|
|
|
173 |
}
|
174 |
return $this->_primary_category;
|
175 |
}
|
178 |
protected $_category_description; //Replaced with the category description
|
179 |
|
180 |
public function getCategory_description() {
|
181 |
+
if (!isset($this->_category_description) || $this->_category_description == '') {
|
182 |
$this->_category_description = $this->_excerpt;
|
|
|
183 |
|
184 |
+
//Change category description if article
|
185 |
+
$this->getPrimary_category();
|
186 |
+
if ($this->_primary_category_id > 0) {
|
187 |
+
if ($category = get_term($this->_primary_category_id, 'category')) {
|
188 |
+
$this->_category_description = $category->description;
|
189 |
+
}
|
190 |
+
}
|
191 |
+
|
192 |
+
}
|
193 |
return $this->truncate($this->_category_description, 100, $this->getDescription_maxlength());
|
194 |
}
|
195 |
|
196 |
protected $_tag; //Replaced with the current tag/tags
|
197 |
|
198 |
public function getTag() {
|
199 |
+
if (!isset($this->_tag) || $this->_tag == '') {
|
200 |
$this->_tag = $this->_title;
|
201 |
+
|
202 |
+
//change the tag title if article
|
203 |
+
$tags = wp_get_post_tags($this->_id);
|
204 |
+
if (!empty($tags)) {
|
205 |
+
$this->_tag = '';
|
206 |
+
foreach ($tags as $tag) {
|
207 |
+
$this->_tag .= ($this->_tag <> '' ? ',' : '') . $tag->name;
|
208 |
+
}
|
209 |
+
}
|
210 |
+
|
211 |
}
|
212 |
return $this->_tag;
|
213 |
}
|
215 |
protected $_tag_description; //Replaced with the tag description
|
216 |
|
217 |
public function getTag_description() {
|
218 |
+
if (!isset($this->_tag_description) || $this->_tag_description == '') {
|
219 |
+
$this->_tag_description = $this->_description;
|
220 |
+
|
221 |
+
//change the tag description if article
|
222 |
+
$tags = wp_get_post_tags($this->_id);
|
223 |
+
if (!empty($tags)) {
|
224 |
+
foreach ($tags as $tag) {
|
225 |
+
$this->_tag_description = $tag->description;
|
226 |
+
break;
|
227 |
+
}
|
228 |
+
}
|
229 |
}
|
230 |
|
231 |
return $this->truncate($this->_tag_description, 100, $this->getDescription_maxlength());
|
336 |
|
337 |
public function setPost_author($value) {
|
338 |
if ($value <> '') {
|
339 |
+
if(is_numeric($value)){
|
340 |
+
$this->_name = get_the_author_meta('nickname', (int)$value);
|
341 |
+
}else {
|
342 |
+
$this->_name = $value;
|
343 |
+
}
|
344 |
}
|
345 |
}
|
346 |
|
376 |
protected $_currentmonth; //Replaced with the current month
|
377 |
|
378 |
public function getCurrentmonth() {
|
379 |
+
return date('F');
|
380 |
}
|
381 |
|
382 |
protected $_currentyear; //Replaced with the current year
|
383 |
|
384 |
public function getCurrentyear() {
|
385 |
+
return date('Y');
|
386 |
}
|
387 |
|
388 |
protected $_caption; //Attachment caption
|
389 |
protected $_keyword; //Replaced with the posts focus keyword
|
390 |
protected $_focuskw; //Same as keyword
|
391 |
+
|
392 |
+
public function getKeyword() {
|
393 |
+
if (!isset($this->_keyword)) {
|
394 |
+
if (isset($this->id) && (int)$this->id > 0) {
|
395 |
+
if ($json = SQ_Classes_ObjController::getClass('SQ_Models_Post')->getKeyword($this->id)) {
|
396 |
+
$this->_focuskw = $this->_keyword = SQ_Classes_Tools::i18n($json->keyword);
|
397 |
+
return $this->_keyword;
|
398 |
+
}
|
399 |
+
}
|
400 |
+
$this->_keyword = '';
|
401 |
+
}
|
402 |
+
|
403 |
+
return $this->_keyword;
|
404 |
+
}
|
405 |
+
|
406 |
+
public function getFocuskw() {
|
407 |
+
if (!isset($this->_focuskw)) {
|
408 |
+
if (isset($this->id) && (int)$this->id > 0) {
|
409 |
+
if ($json = SQ_Classes_ObjController::getClass('SQ_Models_Post')->getKeyword($this->id)) {
|
410 |
+
$this->_focuskw = $this->_keyword = SQ_Classes_Tools::i18n($json->keyword);
|
411 |
+
return $this->_focuskw;
|
412 |
+
}
|
413 |
+
}
|
414 |
+
$this->_focuskw = '';
|
415 |
+
}
|
416 |
+
|
417 |
+
return $this->_focuskw;
|
418 |
+
}
|
419 |
+
|
420 |
protected $_term404; //Replaced with the slug which caused the 404
|
421 |
/*********************************************************************************/
|
422 |
|
475 |
return $text;
|
476 |
}
|
477 |
|
478 |
+
public function getTitle_maxlength() {
|
479 |
$metas = SQ_Classes_Tools::getOption('sq_metas');
|
480 |
return $metas['title_maxlength'];
|
481 |
}
|
482 |
|
483 |
+
public function getDescription_maxlength() {
|
484 |
$metas = SQ_Classes_Tools::getOption('sq_metas');
|
485 |
return $metas['description_maxlength'];
|
486 |
}
|
models/domain/Sq.php
CHANGED
@@ -132,15 +132,7 @@ class SQ_Models_Domain_Sq extends SQ_Models_Abstract_Domain {
|
|
132 |
|
133 |
|
134 |
public function getPostType($type) {
|
135 |
-
$types =
|
136 |
-
'home' => 'website',
|
137 |
-
'profile' => 'profile',
|
138 |
-
'post' => 'article',
|
139 |
-
'page' => 'article',
|
140 |
-
'book' => 'book',
|
141 |
-
'music' => 'music',
|
142 |
-
'product' => 'product',
|
143 |
-
'video' => 'video');
|
144 |
|
145 |
if (in_array($type, array_keys($types))) {
|
146 |
return $types[$type];
|
132 |
|
133 |
|
134 |
public function getPostType($type) {
|
135 |
+
$types = json_decode(SQ_ALL_JSONLD_TYPES,true);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
if (in_array($type, array_keys($types))) {
|
138 |
return $types[$type];
|
models/services/Analytics.php
CHANGED
@@ -31,7 +31,12 @@ class SQ_Models_Services_Analytics extends SQ_Models_Abstract_Seo {
|
|
31 |
|
32 |
public function packGoogleAnalytics($track = '') {
|
33 |
if ($track <> '') {
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
35 |
}
|
36 |
|
37 |
return false;
|
31 |
|
32 |
public function packGoogleAnalytics($track = '') {
|
33 |
if ($track <> '') {
|
34 |
+
switch (SQ_Classes_Tools::getOption('sq_analytics_google_js')){
|
35 |
+
case 'analytics':
|
36 |
+
return sprintf("<script async src='https://www.google-analytics.com/analytics.js'></script><script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', '%s', 'auto');ga('send', 'pageview');</script>", $track);
|
37 |
+
case 'gtag':
|
38 |
+
return sprintf("<script async src='https://www.googletagmanager.com/gtag/js?id=%s'></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', '%s');</script>", $track, $track);
|
39 |
+
}
|
40 |
}
|
41 |
|
42 |
return false;
|
models/services/JsonLD.php
CHANGED
@@ -8,6 +8,13 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
8 |
public function __construct() {
|
9 |
parent::__construct();
|
10 |
if ($this->_post->sq->doseo) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
if (class_exists('WooCommerce')) {
|
12 |
// Generate structured data for Woocommerce 3.
|
13 |
add_action('woocommerce_before_main_content', array($this, 'generate_website_data'), 31);
|
@@ -28,6 +35,8 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
28 |
} else {
|
29 |
add_filter('sq_json_ld', array($this, 'returnFalse'));
|
30 |
}
|
|
|
|
|
31 |
}
|
32 |
|
33 |
|
@@ -156,7 +165,7 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
156 |
$jsonld_type = SQ_Classes_Tools::getOption('sq_jsonld_type');
|
157 |
$socials = SQ_Classes_Tools::getOption('socials');
|
158 |
|
159 |
-
if ($this->_post->post_type == 'home') {
|
160 |
$markup['@type'] = $jsonld_type;
|
161 |
$markup['@id'] = $this->_post->url;
|
162 |
$markup['url'] = $this->_post->url;
|
@@ -218,9 +227,6 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
218 |
if (isset($socials['youtube_url']) && $socials['youtube_url'] <> '') {
|
219 |
$jsonld_socials[] = $socials['youtube_url'];
|
220 |
}
|
221 |
-
if (isset($socials['google_plus_url']) && $socials['google_plus_url'] <> '') {
|
222 |
-
$jsonld_socials[] = $socials['google_plus_url'];
|
223 |
-
}
|
224 |
|
225 |
$markup['potentialAction'] = array(
|
226 |
'@type' => 'SearchAction',
|
@@ -234,9 +240,16 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
234 |
}
|
235 |
//add current markup
|
236 |
$this->set_data($markup);
|
237 |
-
} elseif (
|
|
|
|
|
|
|
|
|
238 |
|
239 |
-
|
|
|
|
|
|
|
240 |
$markup['@id'] = $this->_post->url;
|
241 |
$markup['url'] = $this->_post->url;
|
242 |
|
@@ -273,12 +286,15 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
273 |
$this->_setMedia($markup);
|
274 |
}
|
275 |
|
276 |
-
$
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
|
|
|
|
|
|
282 |
|
283 |
if ($jsonld_type == 'Organization' && isset($jsonld[$jsonld_type])) {
|
284 |
$markup['publisher'] = array(
|
@@ -311,12 +327,110 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
311 |
}
|
312 |
//add current markup
|
313 |
$this->set_data($markup);
|
314 |
-
}
|
315 |
-
$markup['@type'] = '
|
316 |
-
$markup['@id'] = $this->
|
317 |
-
$markup['url'] = $this->
|
318 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
//add current markup
|
321 |
$this->set_data($markup);
|
322 |
}
|
8 |
public function __construct() {
|
9 |
parent::__construct();
|
10 |
if ($this->_post->sq->doseo) {
|
11 |
+
if (function_exists('is_tag')) {
|
12 |
+
if (is_tag()) return;
|
13 |
+
}
|
14 |
+
if (function_exists('is_category')) {
|
15 |
+
if (is_category()) return;
|
16 |
+
}
|
17 |
+
|
18 |
if (class_exists('WooCommerce')) {
|
19 |
// Generate structured data for Woocommerce 3.
|
20 |
add_action('woocommerce_before_main_content', array($this, 'generate_website_data'), 31);
|
35 |
} else {
|
36 |
add_filter('sq_json_ld', array($this, 'returnFalse'));
|
37 |
}
|
38 |
+
|
39 |
+
|
40 |
}
|
41 |
|
42 |
|
165 |
$jsonld_type = SQ_Classes_Tools::getOption('sq_jsonld_type');
|
166 |
$socials = SQ_Classes_Tools::getOption('socials');
|
167 |
|
168 |
+
if (is_home() || $this->_post->post_type == 'home') {
|
169 |
$markup['@type'] = $jsonld_type;
|
170 |
$markup['@id'] = $this->_post->url;
|
171 |
$markup['url'] = $this->_post->url;
|
227 |
if (isset($socials['youtube_url']) && $socials['youtube_url'] <> '') {
|
228 |
$jsonld_socials[] = $socials['youtube_url'];
|
229 |
}
|
|
|
|
|
|
|
230 |
|
231 |
$markup['potentialAction'] = array(
|
232 |
'@type' => 'SearchAction',
|
240 |
}
|
241 |
//add current markup
|
242 |
$this->set_data($markup);
|
243 |
+
} elseif (is_author()) {
|
244 |
+
$markup['@type'] = 'Person';
|
245 |
+
$markup['@id'] = $this->getAuthor('user_url');
|
246 |
+
$markup['url'] = $this->getAuthor('user_url');
|
247 |
+
$markup['name'] = $this->getAuthor('display_name');
|
248 |
|
249 |
+
//add current markup
|
250 |
+
$this->set_data($markup);
|
251 |
+
} elseif ($this->_post->sq->og_type == 'website') {
|
252 |
+
$markup['@type'] = 'Website';
|
253 |
$markup['@id'] = $this->_post->url;
|
254 |
$markup['url'] = $this->_post->url;
|
255 |
|
286 |
$this->_setMedia($markup);
|
287 |
}
|
288 |
|
289 |
+
$user_url = $this->getAuthor('user_url');
|
290 |
+
$display_name = $this->getAuthor('display_name');
|
291 |
+
if ($user_url <> '' && $display_name <> '') {
|
292 |
+
$markup['author'] = array(
|
293 |
+
"@type" => "Person",
|
294 |
+
"url" => $user_url,
|
295 |
+
"name" => $display_name,
|
296 |
+
);
|
297 |
+
}
|
298 |
|
299 |
if ($jsonld_type == 'Organization' && isset($jsonld[$jsonld_type])) {
|
300 |
$markup['publisher'] = array(
|
327 |
}
|
328 |
//add current markup
|
329 |
$this->set_data($markup);
|
330 |
+
}elseif ($this->_post->post_type == 'post' || $this->_post->sq->og_type == 'article') {
|
331 |
+
$markup['@type'] = 'Article';
|
332 |
+
$markup['@id'] = $this->_post->url;
|
333 |
+
$markup['url'] = $this->_post->url;
|
334 |
+
|
335 |
+
if (isset($this->_post->sq->title)) {
|
336 |
+
$markup['name'] = $this->truncate($this->_post->sq->title, 0, $this->_post->sq->jsonld_title_maxlength);
|
337 |
+
}
|
338 |
+
|
339 |
+
if (isset($this->_post->sq->description)) {
|
340 |
+
$markup['headline'] = $this->truncate($this->_post->sq->description, 0, $this->_post->sq->jsonld_description_maxlength);
|
341 |
+
}
|
342 |
+
$markup['mainEntityOfPage'] = array(
|
343 |
+
'@type' => 'WebPage',
|
344 |
+
'url' => $this->_post->url
|
345 |
+
);
|
346 |
+
|
347 |
+
if ($this->_post->sq->og_media <> '') {
|
348 |
+
$markup['thumbnailUrl'] = $this->_post->sq->og_media;
|
349 |
+
}
|
350 |
+
if (isset($this->_post->post_date)) {
|
351 |
+
$markup['datePublished'] = date('c', strtotime($this->_post->post_date));
|
352 |
+
}
|
353 |
+
if (isset($this->_post->post_modified)) {
|
354 |
+
$markup['dateModified'] = date('c', strtotime($this->_post->post_modified));
|
355 |
+
}
|
356 |
+
|
357 |
+
if ($this->_post->sq->og_media <> '') {
|
358 |
+
$markup['image'] = array(
|
359 |
+
"@type" => "ImageObject",
|
360 |
+
"url" => $this->_post->sq->og_media,
|
361 |
+
"height" => 500,
|
362 |
+
"width" => 700,
|
363 |
+
);
|
364 |
+
} else {
|
365 |
+
$this->_setMedia($markup);
|
366 |
+
}
|
367 |
+
|
368 |
+
$user_url = $this->getAuthor('user_url');
|
369 |
+
$display_name = $this->getAuthor('display_name');
|
370 |
+
if ($user_url <> '' && $display_name <> '') {
|
371 |
+
$markup['author'] = array(
|
372 |
+
"@type" => "Person",
|
373 |
+
"url" => $user_url,
|
374 |
+
"name" => $display_name,
|
375 |
+
);
|
376 |
+
//
|
377 |
+
// if(isset($jsonld[$jsonld_type]['logo']) && $jsonld[$jsonld_type]['logo'] <> '') {
|
378 |
+
// $markup['author']['image'] = array(
|
379 |
+
// '@type' => 'ImageObject',
|
380 |
+
// 'url' => $jsonld[$jsonld_type]['logo'],
|
381 |
+
// );
|
382 |
+
// }
|
383 |
+
}
|
384 |
|
385 |
+
if ($jsonld_type == 'Organization' && isset($jsonld[$jsonld_type])) {
|
386 |
+
$markup['publisher'] = array(
|
387 |
+
"@type" => $jsonld_type,
|
388 |
+
"url" => $this->_post->url,
|
389 |
+
"name" => $this->getAuthor('display_name'),
|
390 |
+
);
|
391 |
+
|
392 |
+
foreach ($jsonld[$jsonld_type] as $key => $value) {
|
393 |
+
if ($value <> '') {
|
394 |
+
if ($key == 'contactType' || $key == 'telephone' || $key == 'jobTitle') {
|
395 |
+
continue;
|
396 |
+
}
|
397 |
+
|
398 |
+
if ($key == 'logo') {
|
399 |
+
$markup['publisher']['logo'] = array(
|
400 |
+
"@type" => "ImageObject",
|
401 |
+
"url" => $value
|
402 |
+
);
|
403 |
+
|
404 |
+
} else {
|
405 |
+
$markup['publisher'][$key] = $value;
|
406 |
+
}
|
407 |
+
}
|
408 |
+
}
|
409 |
+
}elseif ($jsonld_type == 'Person' && isset($jsonld[$jsonld_type])) {
|
410 |
+
$markup['publisher'] = array(
|
411 |
+
"@type" => $jsonld_type,
|
412 |
+
"name" => $this->getAuthor('display_name'),
|
413 |
+
);
|
414 |
+
|
415 |
+
foreach ($jsonld[$jsonld_type] as $key => $value) {
|
416 |
+
if ($value <> '') {
|
417 |
+
|
418 |
+
if ($key == 'logo') {
|
419 |
+
$markup['publisher']['image'] = array(
|
420 |
+
"@type" => "ImageObject",
|
421 |
+
"url" => $value
|
422 |
+
);
|
423 |
+
|
424 |
+
} else {
|
425 |
+
$markup['publisher'][$key] = $value;
|
426 |
+
}
|
427 |
+
}
|
428 |
+
}
|
429 |
+
}
|
430 |
+
|
431 |
+
if ($this->_post->sq->keywords <> '') {
|
432 |
+
$markup['keywords'] = $this->_post->sq->keywords;
|
433 |
+
}
|
434 |
//add current markup
|
435 |
$this->set_data($markup);
|
436 |
}
|
models/services/Keywords.php
CHANGED
@@ -7,6 +7,7 @@ class SQ_Models_Services_Keywords extends SQ_Models_Abstract_Seo {
|
|
7 |
parent::__construct();
|
8 |
if ($this->_post->sq->doseo) {
|
9 |
add_filter('sq_keywords', array($this, 'generateKeywords'));
|
|
|
10 |
add_filter('sq_keywords', array($this, 'clearKeywords'), 98);
|
11 |
add_filter('sq_keywords', array($this, 'packKeywords'), 99);
|
12 |
} else {
|
@@ -20,13 +21,19 @@ class SQ_Models_Services_Keywords extends SQ_Models_Abstract_Seo {
|
|
20 |
$keywords = $this->_post->sq->keywords;
|
21 |
}
|
22 |
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
$posttags = get_the_tags($this->_post->post_id);
|
25 |
if (!empty($posttags)) {
|
26 |
-
foreach($posttags as $tag) {
|
27 |
$tags[] = $tag->name;
|
28 |
}
|
29 |
-
$keywords
|
30 |
}
|
31 |
}
|
32 |
|
7 |
parent::__construct();
|
8 |
if ($this->_post->sq->doseo) {
|
9 |
add_filter('sq_keywords', array($this, 'generateKeywords'));
|
10 |
+
add_filter('sq_keywords', array($this, 'generateTags'),20);
|
11 |
add_filter('sq_keywords', array($this, 'clearKeywords'), 98);
|
12 |
add_filter('sq_keywords', array($this, 'packKeywords'), 99);
|
13 |
} else {
|
21 |
$keywords = $this->_post->sq->keywords;
|
22 |
}
|
23 |
|
24 |
+
return $keywords;
|
25 |
+
}
|
26 |
+
|
27 |
+
public function generateTags($keywords = '') {
|
28 |
+
|
29 |
+
if (SQ_Classes_Tools::getOption('sq_keywordtag')) {
|
30 |
+
|
31 |
$posttags = get_the_tags($this->_post->post_id);
|
32 |
if (!empty($posttags)) {
|
33 |
+
foreach ($posttags as $tag) {
|
34 |
$tags[] = $tag->name;
|
35 |
}
|
36 |
+
$keywords .= ($keywords <> '' ? ',' : '') . join(',', $tags);
|
37 |
}
|
38 |
}
|
39 |
|
models/services/Noindex.php
CHANGED
@@ -15,6 +15,8 @@ class SQ_Models_Services_Noindex extends SQ_Models_Abstract_Seo {
|
|
15 |
public function generateNoindex($robots = array()) {
|
16 |
if ((int)$this->_post->sq->noindex == 1) {
|
17 |
$robots[] = 'noindex';
|
|
|
|
|
18 |
}
|
19 |
if ((int)$this->_post->sq->nofollow == 1) {
|
20 |
$robots[] = 'nofollow';
|
15 |
public function generateNoindex($robots = array()) {
|
16 |
if ((int)$this->_post->sq->noindex == 1) {
|
17 |
$robots[] = 'noindex';
|
18 |
+
}else{
|
19 |
+
$robots[] = 'index';
|
20 |
}
|
21 |
if ((int)$this->_post->sq->nofollow == 1) {
|
22 |
$robots[] = 'nofollow';
|
models/services/OpenGraph.php
CHANGED
@@ -51,22 +51,20 @@ class SQ_Models_Services_OpenGraph extends SQ_Models_Abstract_Seo {
|
|
51 |
$og['og:type'] = 'website';
|
52 |
}
|
53 |
|
54 |
-
if (
|
55 |
-
|
56 |
-
|
57 |
-
$og['og:image:width'] = '500';
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
|
64 |
-
|
65 |
-
$this->_setMedia($og);
|
66 |
-
}
|
67 |
-
} else {
|
68 |
$this->_setMedia($og);
|
69 |
}
|
|
|
|
|
70 |
}
|
71 |
|
72 |
$og['og:site_name'] = get_bloginfo('title');
|
@@ -107,6 +105,16 @@ class SQ_Models_Services_OpenGraph extends SQ_Models_Abstract_Seo {
|
|
107 |
$og['article:tag'][] = $keyword;
|
108 |
}
|
109 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
} elseif ($this->_post->post_type == 'profile' && $this->_post->post_author <> '') {
|
111 |
if (strpos($this->_post->post_author, " ") !== false) {
|
112 |
$author = explode(" ", $this->_post->post_author);
|
@@ -133,6 +141,12 @@ class SQ_Models_Services_OpenGraph extends SQ_Models_Abstract_Seo {
|
|
133 |
if ($sale_price > 0 && method_exists($product, 'get_date_on_sale_from')) {
|
134 |
$sales_price_from = $product->get_date_on_sale_from();
|
135 |
$sale_price = $product->get_date_on_sale_from();
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
}
|
137 |
}
|
138 |
if (method_exists($product, 'get_price')) {
|
@@ -194,10 +208,10 @@ class SQ_Models_Services_OpenGraph extends SQ_Models_Abstract_Seo {
|
|
194 |
if (isset($image['src'])) {
|
195 |
$og['og:image'] = $image['src'];
|
196 |
if (isset($image['width'])) {
|
197 |
-
$og['og:image:width'] = $image['width'];
|
198 |
}
|
199 |
if (isset($image['height'])) {
|
200 |
-
$og['og:image:height'] = $image['height'];
|
201 |
}
|
202 |
|
203 |
$imagetype = $this->getImageType($image['src']);
|
@@ -224,13 +238,13 @@ class SQ_Models_Services_OpenGraph extends SQ_Models_Abstract_Seo {
|
|
224 |
public function packOpenGraph($og = array()) {
|
225 |
if (!empty($og)) {
|
226 |
foreach ($og as $key => &$value) {
|
227 |
-
if (is_array($value)){
|
228 |
$str = '';
|
229 |
-
foreach ($value as $subvalue){
|
230 |
$str .= '<meta property="' . $key . '" content="' . $subvalue . '" />' . ((count($value) > 1) ? "\n" : '');
|
231 |
}
|
232 |
$value = $str;
|
233 |
-
}else {
|
234 |
$value = '<meta property="' . $key . '" content="' . $value . '" />';
|
235 |
}
|
236 |
}
|
51 |
$og['og:type'] = 'website';
|
52 |
}
|
53 |
|
54 |
+
if ($this->_post->sq->og_media <> '') {
|
55 |
+
$og['og:image'] = $this->_post->sq->og_media;
|
56 |
+
$og['og:image:width'] = '500';
|
|
|
57 |
|
58 |
+
$imagetype = $this->getImageType($this->_post->sq->og_media);
|
59 |
+
if ($imagetype) {
|
60 |
+
$og['og:image:type'] = $imagetype;
|
61 |
+
}
|
62 |
|
63 |
+
if ($og['og:type'] == 'video') {
|
|
|
|
|
|
|
64 |
$this->_setMedia($og);
|
65 |
}
|
66 |
+
} else {
|
67 |
+
$this->_setMedia($og);
|
68 |
}
|
69 |
|
70 |
$og['og:site_name'] = get_bloginfo('title');
|
105 |
$og['article:tag'][] = $keyword;
|
106 |
}
|
107 |
}
|
108 |
+
|
109 |
+
if (SQ_Classes_Tools::getOption('sq_keywordtag')) {
|
110 |
+
$posttags = get_the_tags($this->_post->post_id);
|
111 |
+
if (!empty($posttags)) {
|
112 |
+
foreach ($posttags as $tag) {
|
113 |
+
$og['article:tag'][] = $tag->name;
|
114 |
+
}
|
115 |
+
}
|
116 |
+
}
|
117 |
+
|
118 |
} elseif ($this->_post->post_type == 'profile' && $this->_post->post_author <> '') {
|
119 |
if (strpos($this->_post->post_author, " ") !== false) {
|
120 |
$author = explode(" ", $this->_post->post_author);
|
141 |
if ($sale_price > 0 && method_exists($product, 'get_date_on_sale_from')) {
|
142 |
$sales_price_from = $product->get_date_on_sale_from();
|
143 |
$sale_price = $product->get_date_on_sale_from();
|
144 |
+
if(is_a($sales_price_from, 'WC_DateTime')){
|
145 |
+
$sales_price_from = $sales_price_from->getTimestamp();
|
146 |
+
}
|
147 |
+
if(is_a($sale_price, 'WC_DateTime')){
|
148 |
+
$sale_price = $sale_price->getTimestamp();
|
149 |
+
}
|
150 |
}
|
151 |
}
|
152 |
if (method_exists($product, 'get_price')) {
|
208 |
if (isset($image['src'])) {
|
209 |
$og['og:image'] = $image['src'];
|
210 |
if (isset($image['width'])) {
|
211 |
+
$og['og:image:width'] = ((int)$image['width'] > 0 ? (int)$image['width'] : 500);
|
212 |
}
|
213 |
if (isset($image['height'])) {
|
214 |
+
$og['og:image:height'] = ((int)$image['height'] > 0 ? (int)$image['height'] : 280);
|
215 |
}
|
216 |
|
217 |
$imagetype = $this->getImageType($image['src']);
|
238 |
public function packOpenGraph($og = array()) {
|
239 |
if (!empty($og)) {
|
240 |
foreach ($og as $key => &$value) {
|
241 |
+
if (is_array($value)) {
|
242 |
$str = '';
|
243 |
+
foreach ($value as $subvalue) {
|
244 |
$str .= '<meta property="' . $key . '" content="' . $subvalue . '" />' . ((count($value) > 1) ? "\n" : '');
|
245 |
}
|
246 |
$value = $str;
|
247 |
+
} else {
|
248 |
$value = '<meta property="' . $key . '" content="' . $value . '" />';
|
249 |
}
|
250 |
}
|
readme.txt
CHANGED
@@ -1,101 +1,430 @@
|
|
1 |
-
===SEO
|
2 |
Contributors: cifi, calinvingan, florinmuresan, nagy.sorel
|
3 |
Tags: seo, wordpress seo, seo plugin, seo optimization, seo content, seo meta, open graph, e-commerce, plugins, content, marketing, ecommerce, keyword research, content seo, yoast, all in one seo, search engine optimization, XML sitemap for google, multisite SEO, squirrly, meta title, meta description, favicon, mobile, canonical, seo correction, seo title, twitter, woocommerce, feeds, social media, blogging, google-analytics, tracking, best seo tools audit website, content audit tool, ecommerce seo strategy, marketing research tools, research tools for writers, seo audit tool, SEO keyword research tool,duplicate removal tool, ecommerce SEO, facebook open graph wordpress, google keyword planner alternative, Google ranking, how to install facebook pixel on wordpress, JSON-LD structure, Live Assistant, meta duplicate removal, open graph generator, pinterest rich pin validator, related links
|
4 |
Requires at least: 4.0
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
|
11 |
-
|
12 |
-
**Squirrly SEO** is for the **NON-SEO experts**. Get Excellent SEO with Better Content, Ranking and Analytics. For Both Humans and Search Bots.
|
13 |
|
14 |
-
|
|
|
15 |
|
16 |
-
|
17 |
|
18 |
-
|
19 |
|
20 |
-
|
21 |
|
22 |
-
|
23 |
|
24 |
-
|
25 |
|
26 |
-
|
27 |
|
28 |
-
|
29 |
|
30 |
-
|
31 |
|
32 |
-
|
33 |
|
34 |
-
|
35 |
|
36 |
-
|
37 |
|
38 |
-
|
39 |
|
40 |
-
Squirrly SEO
|
41 |
|
42 |
-
|
43 |
|
44 |
-
|
45 |
|
46 |
-
|
47 |
|
48 |
-
|
49 |
-
- **Gives You SEO Advice as you're typing your articles.** Squirrly SEO helps you in real time to optimize your articles to 100%, while you are writing or editing them.
|
50 |
-
- **Optimized articles get +285% traffic,** on average (real statistics from over 16,500 people who participated in the survey).
|
51 |
-
- **SEO Settings remain**. If you already made your search engine optimization settings for WordPress with other plugins, you can keep using those and Squirrly won't override them. No need to start all over. We'd hate to have you do that.
|
52 |
-
- **Finds you Keywords and Topics that your Customers actively search for** and which will help you out-rank your competitors, not just follow them around the SERPS.
|
53 |
-
- **Green lights turn on every time you do something right.** When all the lights turn green, you can publish or schedule the article because it has excellent seo.
|
54 |
-
- **The algorithm for SEO Keyword Research tool** takes into accounts elements that will help you find suitable keywords for content optimization: for Humans and for Search Engines. It's even better than Google Keyword Planner for ranking.
|
55 |
-
- **Tracks all the aspects of your Content Marketing Strategy**The best seo tools audit website focus on Blogging, Traffic, SEO, Social Signals, Links, Authority. Every single week you get a new report by email.
|
56 |
-
- **Analyze any single page. See how it improves over time.**
|
57 |
-
- **Send the Audit report by email** to your content writer, SEO person, developers, or to your boss.
|
58 |
-
- **It Gives You Professional Advice on How To Fix** any of those areas that it helps track, so you can easily find out how to improve. Content from SEO Moz (recently just MOZ), Google, Authority Labs, etc.
|
59 |
-
- **Copyright-Free Images That You Can Use.**
|
60 |
-
- **Monitors Your Progress, week by week.** You'll get interesting data about the historical performance of each article you write and find out how to improve its seo ranking.
|
61 |
-
- **Social Intelligence through the Inspiration Box, **to help you write better content. Shows you, recent tweets about the subject you write about. All of this in your "Add New Post" interface.
|
62 |
-
- **Optimize Your Content for Humans.** We've recently added tools and lessons (free of charge) that will help you optimize all of your Content for Humans, not just for search engines.
|
63 |
-
- **Focus on your Ecommerce SEO strategy with just a few clicks in this WordPress SEO Plugin.**
|
64 |
-
- **Control how your Site looks in Google. With the JSON-LD structure** and the Squirrly SEO Snipet you can control the information and how it looks when someone is find your site or searching for your business.
|
65 |
-
- **Write Better Content.** We help you build up SEO content that is also great-to-read for Human readers and helps you build up some valuable and subtle SEO. Use the plugin as a marketing research tools and add the best resources directly in your article.
|
66 |
-
- **Squirrly SEO generates your site's XML Sitemap for Google and Bing.**
|
67 |
-
- **Stay up to date with your SEO and Social Signals, with our Email Alerts**. We send out email alerts if something on your Wordpress site needs immediate attention so that you can act upon it and save your business the trouble.
|
68 |
-
- **Offers you related links that you can include in your article. **
|
69 |
-
- **Including research tools for writers in the Inspiration box feature.** You can read, integrate and quote articles with related links, from other journalists and blogger without leaving your WP dashboard.
|
70 |
-
- **The open graph generator will add the OG protocol to your articles.** This means **IMAGES and VIDEOS** can be preview when you share your articles on Facebook.
|
71 |
-
- **Integrated Pinterest Rich Pin Validator.** This will add extra details when your site is pinned. Users will know if the image refers to an article, a product, an app or a recipe.
|
72 |
-
- **Makes sure that your meta information is in check** with the meta duplicate removal.
|
73 |
|
74 |
-
|
75 |
|
76 |
-
|
77 |
|
78 |
-
|
79 |
|
80 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
|
82 |
<h3>Top Reviews</h3>
|
83 |
* <em>"Wow, I've been using your tool for a week now and one of my blog ranked no1 out of a million for its key word... amazing"</em>
|
84 |
-
* <em>" I use Squirrly SEO every time I
|
85 |
-
* <em>"Cool Feature: Squirrly SEO comes packed with a nice keyword research tool that works within the WordPress editor. In addition to the usual metrics (like search volume), it also shows you if that keyword is a hot topic of conversion online. The tool also shows you the stability of that keyword’s search volume over time."</em> -
|
86 |
* <em>"It’ll give you a helpful snapshot of how your content is performing."</em> - <a href="https://www.searchenginejournal.com/">**Search Engine Journal**</a>
|
87 |
|
88 |
**You can read more reviews from Internet Marketing experts on <a href="https://howto.squirrly.co/testimonials/">https://howto.squirrly.co/testimonials/</a>**
|
89 |
|
90 |
We have over 2,350,000 Downloads!
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
Our startup consists of 15 content marketing professionals dedicated to making Squirrly SEO an amazing piece of software and writing great training materials to help you be successful and stay successful.
|
93 |
|
94 |
Over 1000 Content Marketing Experts have reviewed our Wordpress SEO plugin and loved it.
|
95 |
|
96 |
Over 2580 students to our $147 Content Marketing Training on Udemy. Part of that training you'll be receiving for free when signing up for this Wordpress seo plugin.
|
97 |
|
98 |
-
Over +285% increase in traffic to over
|
99 |
|
100 |
More than helping you with your internet marketing efforts, we strive to offer Excellence in Customer Service.
|
101 |
|
@@ -105,12 +434,32 @@ More than helping you with your internet marketing efforts, we strive to offer E
|
|
105 |
|
106 |
We're passionate about seeing you get a great and happy experience, so we'll do our best to fix anything that may come up very fast.
|
107 |
|
108 |
-
From the Live Assistant to the
|
109 |
|
110 |
See all the Features of our product on the <a title="Squirrly WordPress SEO" href="https://howto.squirrly.co/kb/slides/">All Squirrly SEO Features </a>.
|
111 |
|
112 |
<a title="Squirrly SEO Plugin" href="/extend/plugins/squirrly-seo/screenshots/">Check our screenshots</a>| <a title="Squirrly SEO" href="https://www.squirrly.co/wordpress-seo-by-squirrly" target="_blank">Go to our official site</a> | Free Version (if you install from the WP directory) OR <a title="See Pricing" href="https://plugin.squirrly.co/squirrly-pricing-plans/" target="_blank">Pricing Plans</a>
|
113 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
== Installation ==
|
115 |
|
116 |
= MANUALLY =
|
@@ -125,7 +474,7 @@ Check the visual presentation of the <a href="https://howto.squirrly.co/wordpres
|
|
125 |
6. Upload the "squirrly-seo.zip" file by clicking the "Choose File" button.
|
126 |
7. Click on the "Install Now" Button.
|
127 |
8. After the upload is finished, click Activate Plugin.
|
128 |
-
9. Now enter your email and click "Sign Up"10.Done! Start
|
129 |
|
130 |
=FROM YOUR WORDPRESS DASHBOARD=
|
131 |
|
@@ -135,7 +484,7 @@ Check the visual presentation of the <a href="https://howto.squirrly.co/wordpres
|
|
135 |
4. Click on the "Install Now" button next to the plugin.
|
136 |
5. After the Installation is done click "Activate".
|
137 |
6.Now enter your email and click "Sign Up".
|
138 |
-
7. Done! Start
|
139 |
8. You'll start receiving email lessons to help you become a great content marketer. All for free.
|
140 |
Type a keyword to the right of the screen and start using Squirrly Seo. Enjoy!
|
141 |
|
@@ -149,468 +498,683 @@ Type a keyword to the right of the screen and start using Squirrly Seo. Enjoy!
|
|
149 |
5. Wp Seo - Monitor your success with the Performance Analytics
|
150 |
6. Wp Seo - Let Squirrly SEO do the SEO Settings that your blog needs
|
151 |
7. Wp Seo - Check your Weekly Site Audit and improve to get higher scores
|
152 |
-
8. Wp Seo - Use the
|
153 |
|
154 |
== Upgrade Notice ==
|
155 |
Squirrly SEO 8.3.01 it's a stable version of Squirrly SEO and has all the SEO requirements by Search Engines
|
156 |
|
157 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
= 8.3.12 - 02/23/2018 =
|
159 |
-
* Update - Added Select Country in Briefcase for Keyword Research
|
160 |
-
* Fix - wpml_get_language_information WP_error conflict with other plugins.
|
161 |
-
* Fix - Sitemap XSL style for domains with both www and root access.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
|
163 |
= 8.3.11 - 02/23/2018 =
|
164 |
-
* Fix - Correct the separator to show on custom patterns
|
165 |
-
* Fix - Show Title and Excerpt when Pattern option is off
|
166 |
-
* Fix - Save Pattern option on Switch click
|
167 |
-
* Fix - Show Save Message on Snippet save
|
168 |
-
* Fix - Fixed the _sq Object notification in Patterns Domain
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
|
170 |
= 8.3.10 - 02/21/2018 =
|
171 |
-
* Update - Launching the Squirrly SEO Briefcase Labels
|
172 |
-
* Update - Changed New Meta Lengths for all articles
|
173 |
-
* Update - Added Briefcase Labels Filter in Editor Posts
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
|
175 |
= 8.3.08 - 02/15/2018 =
|
176 |
-
* Update - Update the article:tag Meta for Facebook Open Graph (SEO update)
|
177 |
* Squirrly SEO is compatible with Cache Enabler plugin
|
178 |
-
* Update - Show canonical link for Draft Posts in Squirrly SEO Snippet
|
179 |
-
* Fix - Fixed the invalid email issue for longer domain extensions when connecting the blog with Squirrly SEO
|
180 |
-
* Fix - Removed the Memory Filter from Frontend (SEO update)
|
181 |
-
* Fix - Removed the deprecate PHP 7.2 functions
|
182 |
|
183 |
= 8.3.07 - 02/12/2018 =
|
184 |
-
* Fix - Fixed the login error "Both fields are required."
|
185 |
-
* Fix - Fixed deprecate call "create_function" for 7.2 or grater
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
|
187 |
= 8.3.06 - 02/09/2018 =
|
188 |
-
* Update - Launching Squirrly SEO 2018 Briefcase
|
189 |
-
* Fix - Fixed css and js loading when multiple jquerys are loaded
|
190 |
-
* Fix - Fixed compatibility with Wordpress SEO Yoast and All In One SEO
|
191 |
-
* Fix - Fixed compatibility with Thrive Architect
|
192 |
* Squirrly SEO is compatible with WP 4.9.4
|
193 |
|
194 |
= 8.3.05 - 01/18/2018 =
|
195 |
-
* Update - Changed Briefcase BETA to Production
|
196 |
-
* Fix - Fixed sitemap.xml compatibility with more themes
|
197 |
-
* Fix - Fixed memory loading limit and white screens
|
198 |
* Squirrly SEO is compatible with WP 4.9.2
|
199 |
|
200 |
= 8.3.04 - 01/15/2018 =
|
201 |
-
* Update - Update the Description Meta patterns excerpt to work if shortcodes are included in description
|
202 |
-
* Update - Ignore URL prefix when checking the keyword in Ranking Option
|
203 |
-
* Update - Change schema.org prefix to https in jsonld
|
204 |
-
* Update - Update SEO for JsonLD and Open Graph
|
205 |
-
* Update - Update the Squirrly SEO Briefcase to show all the optimized keywords
|
206 |
-
* Fix - Fixed the Dollar Sign issue in Meta Title and Description
|
207 |
-
* Fix - Fixed small bugs
|
208 |
|
209 |
= 8.3.03 - 01/10/2018 =
|
210 |
-
* Update - Remove the fontend.css from meta with the command define('SQ_NOCSS',true); in wp-config.php
|
211 |
-
* Fix - Squirrly SEO SLA Images and News search
|
212 |
|
213 |
= 8.3.02 - 12/18/2017 =
|
214 |
-
* Update - The hreflang Meta removal
|
215 |
-
* Update - Remove WP notifications
|
216 |
-
* Update - Added option to close top notifications
|
217 |
-
* Update - Added option to disable the auto patterns
|
218 |
-
* Update - Added option to exclude post types from frontend SEO
|
219 |
-
* Update - Prevent from adding broken link canonical
|
220 |
-
* Update - Increased the Max Description Meta to 320 chars for new posts
|
221 |
* Squirrly SEO is now compatible with WP 4.9.1 and more Cache Plugins
|
222 |
|
223 |
= 8.3.01 - 12/12/2017 =
|
224 |
-
* Update - Added the Briefcase Beta version
|
225 |
-
* Update - Added the Briefcase Keywords Section
|
226 |
-
* Update - Added the Advanced Analytics section for Business Subscription
|
227 |
-
* Update - Show the custom post types without feed in sitemap.xml
|
228 |
-
* Update - Remove custom posts without publicly_queryable from sitemap.xml
|
229 |
-
* Update - Remove the extra notifications in Advanced Analytics
|
230 |
-
* Update - Optimize the Squirrly Live Assistant loading speed when the network is slow
|
231 |
|
232 |
= 8.2.29 - 12/06/2017 =
|
233 |
-
* Fix - Json-LD clean text function
|
234 |
-
* Fix - Fixed the Support Page
|
235 |
|
236 |
= 8.2.28 - 11/28/2017 =
|
237 |
-
* Update - Added Pinterest Social Shares in Analytics
|
238 |
-
* Fix - Fixed Json-LD for Woocommerce to remove duplicate declarations
|
239 |
* Squirrly SEO is now compatible with Woocommerce 3.2
|
240 |
* Squirrly SEO is now compatible with WP 4.9
|
241 |
|
242 |
= 8.2.27 - 11/27/2017 =
|
243 |
-
* Fix - Fixed Sitemap for WP Multiste with subdirectories
|
244 |
-
* Fix - Fixed Backup & Restore for Squirrly SEO
|
245 |
-
* Fix - Fixed broken URL to Performance Analytics if the user doesn't have enough rights to view it
|
246 |
-
* Fix - Fixed Save Post Keywords while in cron mode
|
247 |
-
* Fix - Fixed small bugs
|
248 |
|
249 |
= 8.2.26 - 11/17/2017 =
|
250 |
-
* Update - Update the Sitemap XML Custom post types in Admin Settings
|
251 |
-
* Update - Added image Object in Json-LD if the post has featured image
|
252 |
-
* Fix - Prevent Crons from loading if not necessary
|
253 |
-
* Fix - Fixed Facebook Admin ID duplicates
|
254 |
-
* Fix - Prevent 404 page in BudyPress user activity page
|
255 |
|
256 |
|
257 |
= 8.2.24 - 11/10/2017 =
|
258 |
-
* Update - Update SLA to work whn other plugins have javascript errors in Edit Post
|
259 |
-
* Update - Increased the connection wait time to prevent the error message from showing on low connectivity
|
260 |
-
* Update - Update Frontend to work with WP-Rocket plugin
|
261 |
-
* Fix - Fixed Typos and Broken links
|
262 |
|
263 |
= 8.2.23 - 11/07/2017 =
|
264 |
-
* Update - Update Squirrly SEO Snippet Frontend is optional in Squirrly > SEO Settings Advanced
|
265 |
-
* Fix - Fixed the SEO METAs in frontend for some theme
|
266 |
-
* Fix - Fixed the SEO METAs for Wp Super cache and other cache plugins
|
267 |
-
* Fix - Fixed the Sitemap to load for all subdirectories
|
268 |
-
* Fix - Fixed compatibility issues with other plugins
|
269 |
|
270 |
|
271 |
= 8.2.21 - 11/04/2017 =
|
272 |
-
* Update - Update Frontend to load with the known cache plugins
|
273 |
-
* Update - Updated the SLA to recognize more languages and keywords with special chars
|
274 |
-
* Update - Remove the Mark tag on save in case it passes javascript
|
275 |
-
* Fix - Fixed the SLA mark option to remain active on click
|
276 |
-
* Fix - Fixed the SLA to recognize the Squirrly Snippet when loaded
|
277 |
-
* Fix - Fixed the Doublin Core name error on line 29
|
278 |
* Squirrly SEO is now compatible with WP 4.8.3
|
279 |
|
280 |
= 8.2.20 – 11/02/2017 =
|
281 |
-
* Fix - Fixed the Excerpt Only patterh
|
282 |
-
* Fix - Fixed Squirrly Snippet in case is empty or has special chars
|
283 |
|
284 |
= 8.2.19 – 10/30/2017 =
|
285 |
-
* Update - Update Squirrly Live Assistant to use less resources and work faster
|
286 |
-
* Update - Added the Post Publish option in Squirrly Split Window
|
287 |
-
* Fix - Fixed Greeck keywords optimization fixed
|
288 |
-
* Fix - Fixed the Keyword Research not to display the error message and to be able to redo the search
|
289 |
-
* Fix - Fixed the Squirrly Snippet's Title snd Description when using special chars
|
290 |
|
291 |
= 8.2.18 – 10/27/2017 =
|
292 |
-
* Update - Update compatibility with Polylang plugin
|
293 |
-
* Fix - Increased connection time with out API in case of slow internet access
|
294 |
-
* Fix - Fixed the yellow highlight in frontend
|
295 |
-
* Fix - Fixed Squirrly SLA loading in post edit
|
296 |
-
* Fix - Fixed small bugs with article optimization in my.squirrly.co
|
297 |
|
298 |
= 8.2.17 – 10/24/2017 =
|
299 |
-
* Fix - Fixed the SLA loading issue for older WP versions
|
300 |
-
* Fix - Fixed the Keyword one letter when loading a new post/page
|
301 |
-
* Fix - Corrected the Facebook App ID
|
302 |
|
303 |
= 8.2.15 – 10/18/2017 =
|
304 |
-
* Update - Increased the loading speed for favicon.icon and robots.txt
|
305 |
-
* Update - Update the SEO Audit with the latest METAs
|
306 |
-
* Update - Register the Subservers for WP Multisite
|
307 |
-
* Fix - Fixed the import process when the tables have different encoding
|
308 |
-
* Fix - Fixed the Squirrly Snippet in frontend in case the js and css are not loading
|
309 |
-
* Fix - Show error message in case SLA is not loading
|
310 |
|
311 |
= 8.2.14 – 10/12/2017 =
|
312 |
-
* Fix - Fixed compatibility with Beaver Builder
|
313 |
-
* Fix - Increased security on SEO restore in Import SEO section
|
314 |
|
315 |
= 8.2.13 – 10/11/2017 =
|
316 |
-
* Fix - Fixed the snippet preview in case some features are disabled
|
317 |
-
* Fix - Fixed the Title and Description Lenght in Frontend
|
318 |
-
* Fix - Added the option to import the old SEO settings from Squirrly SEO
|
319 |
|
320 |
= 8.2.11 – 10/10/2017 =
|
321 |
-
* Fix - Fixed remove meta from Elementor
|
322 |
-
* Fix - Fixed small bugs for Squirrly Split Window
|
323 |
|
324 |
= 8.2.10 – 10/10/2017 =
|
325 |
-
* Update - Launching Squirrly 2018 Steve
|
326 |
* See all the new features here: https://howto.squirrly.co/kb/slides/
|
327 |
|
328 |
= 8.0.5 – 08/14/2017 =
|
329 |
-
* Fix - Fixed HTTPS jquery load in sitemap.xml
|
330 |
* SEO Squirrly is compatible with WP 4.8.1
|
331 |
|
332 |
= 8.0.4 – 07/24/2017 =
|
333 |
-
* Fix - Fixed minor bugs
|
334 |
-
* Fix - Fixed loading https classes in SSL backend
|
335 |
|
336 |
= 8.0.2 – 05/20/2017 =
|
337 |
-
* Update - Update the Json-LD with the last update from google
|
338 |
* Squirrly SEO is compatible with WP 4.8
|
339 |
|
340 |
= 8.0.1 - 05/08/2017 =
|
341 |
-
* Update - Made the XML Sitemap for Google Compatible with more Wordpress Themes
|
342 |
-
* Update - Update the validation link for Twitter
|
343 |
|
344 |
= 8.0.0 - 05/01/2017 =
|
345 |
-
* Update - Squirrly SEO 2018 version
|
346 |
|
347 |
= 7.0.6 - 04/15/2017 =
|
348 |
-
* Update - Add Facebook Publisher in Meta
|
349 |
-
* Fix - Fixed Duplicate Head tag
|
350 |
-
* Fix - Fixed Facebook Admin ID
|
351 |
|
352 |
= 7.0.5 - 04/04/2017 =
|
353 |
-
* Update - Squirrly removes Title Tag Duplicates with the meta duplicate removal tool
|
354 |
-
* Update - Increase loading speed
|
355 |
-
* Fix - Don't Load Squirrly for 404 pages
|
356 |
* Squirrly SEO is Compatible with WP 4.7.4
|
357 |
|
358 |
= 7.0.4 - 03/20/2017 =
|
359 |
-
* Update - Removed the filter with private IP check in Squirrly SEO Performance Analytics
|
360 |
-
* Update - Updated the Squirrly SEO Live Assistant for Media Library
|
361 |
-
* Update - Added Site SEO Audit Tool Progress in https://my.squirrly.co for each blog
|
362 |
-
* Fix - Fixed small bugs
|
363 |
|
364 |
= 7.0.3 - 03/19/2017 =
|
365 |
-
* Update - Updated the Json LD for Woocommerce 3.0
|
366 |
-
* Fix - Fixed bugs from the New SEO Keyword Research tool
|
367 |
-
* Fix - Fixed Headline for Google Structured Tool
|
368 |
-
* Fix - Fixed creating the new blogs on our server
|
369 |
-
* Fix - Fixed the sitemap with the same image in case you set a front-end image
|
370 |
|
371 |
= 7.0.1 - 03/01/2017 =
|
372 |
-
* Fix - Fixed the localhost verification for Performance Analytics
|
373 |
-
* Fix - Remove sitemap comments and white spaces from cache plugins
|
374 |
|
375 |
= 7.0.0 - 02/10/2017 =
|
376 |
-
* Update - Includes the Squirrly 2017 features and updates
|
377 |
-
* Update - Updates in Keyword Research algorithm for
|
378 |
-
* Update - Updates in Squirrly Live Assistant
|
379 |
-
* Update - Updates in
|
380 |
-
* Update - Updates for Copyright Free Images in the Inspiration box feature
|
381 |
-
* Update - Updates in Squirrly SEO Advanced Settings
|
382 |
-
* Update - Updates in the Squirrly Admin Menu
|
383 |
-
* Update - Updates in https://my.squirrly.co panel
|
384 |
-
* Update - Made all the Changes to G17 features. We announced them last week
|
385 |
|
386 |
= 6.3.1 =
|
387 |
-
* Update - Inform users with multiple active subscriptions
|
388 |
-
* Update - Updated terms and conditions
|
389 |
-
* Update - Added more channels for support in the Feedback and Support sections
|
390 |
-
* Update - Fixed Facebook Admin ID for Profile and Pages
|
391 |
-
* Update - Changed the Theme for Squirrly SEO Settings and Advanced sections
|
392 |
-
* Update - Fixed Typos and Broken Links
|
393 |
-
* Update - Updated the SEO Keyword Research tool for Long Tail Keyword
|
394 |
-
* Update - Optimized the loading speed in case of poor connection with the API
|
395 |
-
* Update - Pass the SSL issue for API calls
|
396 |
-
* Update - Fixed the Squirrly SEO audit tool for free users
|
397 |
-
* Update - Fixed Pay With a Tweet button
|
398 |
-
* Update - Added google.us in Ranking Options
|
399 |
-
* Update - Updated settings for ecommerce seo strategy for product category pages
|
400 |
|
401 |
= 6.3.0 =
|
402 |
-
* Update - Updated the Facebook and google tracking code
|
403 |
-
* Update - Improved the Facebook Pixel Feature to work with Woocommerce
|
404 |
-
* Update - Corrected the google tracking code
|
405 |
-
* Update - Improved the communication with the API server
|
406 |
|
407 |
= 6.2.8 =
|
408 |
-
* Update - Added forced keyword update in Squirrly SEO Settings
|
409 |
-
* Update - Added a new Country in the Rank Options section
|
410 |
-
* Fix - Fixed the Canonical link for some WP Themes
|
411 |
|
412 |
= 6.2.6 =
|
413 |
-
* Fix - Fixed Canonical link for Facebook Open Graph Wordpress
|
414 |
-
* Fix - Don’t show the Canonical Link if Squirrly SEO is off
|
415 |
-
* Fix - Fixed keyword saving on post update
|
416 |
* Happy New Year!
|
417 |
|
418 |
= 6.2.5 =
|
419 |
* SEO Update - Added Instagram and Pinterest in Social Json-LD
|
420 |
-
* Fix - Fixed the connection issue in some cases when a keyword is modified
|
421 |
-
* Fix - Fixed memory load when not using Squirrly SEO
|
422 |
|
423 |
= 6.2.4 =
|
424 |
-
* Fix - Fixed bug for Google Analytics AMP version
|
425 |
-
* Fix - Fixed both title and description when including price value
|
426 |
* Squirrly SEO is Compatible with WP 4.7
|
427 |
|
428 |
= 6.2.3 =
|
429 |
-
* Update - Added Facebook Open Graph Wordpress Image for First Page when the first page is a blog feed
|
430 |
-
* Update - Added AMP Analytics from Google
|
431 |
-
* Fix - Fixed small CSS issues in post editor
|
432 |
-
* Fix - Fixed duplicate title removal in the meta duplicate removal tool
|
433 |
|
434 |
= 6.2.2 =
|
435 |
-
* Update - Update SEO features
|
436 |
-
* Fix - Fixed SEO Page Optimization for Post Feed Page and Home Page
|
437 |
* Squirrly SEO is Compatible with WP 4.6.1
|
438 |
|
439 |
= 6.2.0 =
|
440 |
-
* Update - Added Facebook Pixel Tracking Code in Squirrly > SEO > Tracking Tools
|
441 |
-
* Update - Added more Copyright Free images in Squirrly SEO Live Assistant.
|
442 |
-
* Update - Added the Pixabay.com library to the Inspiration Box
|
443 |
-
* Update - Added the Unsplash.com library to the Copyright free image resource
|
444 |
-
* Update - Added the Pexels.com library so you can have more Copyright free images
|
445 |
-
* Fix - Fixed loading the Seo Live Assistant when a page is not optimized for a keyword
|
446 |
-
* Fix - Fixed the connection issues between the plugin and API when a post is saved
|
447 |
-
* Fix - Fixed the Squirrly Snippet when connected as Editor or Author
|
448 |
|
449 |
= 6.1.6 =
|
450 |
-
* Update - Added custom title and description for the Posts Page in Settings > Reading > Posts page
|
451 |
-
* Fix - Fixed the JSONLD phone and prefix information
|
452 |
-
* Fix - Fixed typos
|
453 |
|
454 |
= 6.1.5 =
|
455 |
-
* Update - July 2016 Security updates.
|
456 |
-
* Update - Added google.co.id in Google Ranking Options
|
457 |
-
* Fix - Fixed vulnerabilities between users who have rights in your site
|
458 |
-
* Fix - Fixed some Squirrly SEO Snippet issues on first save
|
459 |
|
460 |
= 6.1.3 =
|
461 |
-
* Update - Added Pinterest Rich Pin Validator for Woocommerce Products
|
462 |
-
* Fix - Pinterest Rich Pin Validator Option
|
463 |
|
464 |
= 6.1.2 =
|
465 |
-
* Update - We moved js files on cloud for faster loading
|
466 |
-
* Fix - Update - Update Rank Check to the latest Google Requirements
|
467 |
-
* Fix - Fixed the google profile link
|
468 |
-
* Fix - Corrected some old related links
|
469 |
* Squirrly SEO is Compatible with WP 4.5.3
|
470 |
|
471 |
= 6.1.0 =
|
472 |
-
* Fix - Fixed the Front Page SEO to work with more WP themes
|
473 |
-
* Fix - Fixed compatibility with PolyLang plugin
|
474 |
-
* Fix - Fixed compatibility with Customizr theme
|
475 |
-
* Fix - Fixed Squirrly SEO Snippet for Arabic language
|
476 |
* Squirrly SEO is Compatible with WP 4.5.2
|
477 |
|
478 |
= 6.0.9 =
|
479 |
-
* Fix - Fixed Squirrly Analytics in Performance Analytics
|
480 |
* Squirrly SEO is Compatible with WP 4.5
|
481 |
|
482 |
= 6.0.6 =
|
483 |
-
* Update - Added dateModified, ImageObject, mainEntityOfPage, publisher
|
484 |
-
* Update - Update the Squirrly SEO Snippet
|
485 |
-
* Fix - Fixed the JSON AMP for articles
|
486 |
|
487 |
= 6.0.4 =
|
488 |
-
* Fix - Fixed the snippet to save long text
|
489 |
-
* Fix - Fixed the woocommerce title and description for a category
|
490 |
-
* Fix - Fix the SEO for more themes
|
491 |
|
492 |
= 6.0.3 =
|
493 |
-
* Fix - Fixed compatibility with NextGen Gallery plugin
|
494 |
* Squirrly SEO is Compatible with Wordpress 4.4.3
|
495 |
|
496 |
= 6.0.2 =
|
497 |
-
* Update - Added style for the site feed in Squirrly > SEO
|
498 |
-
* Fix - Fixed the hook for feed when Squirrly SEO sitemap is active
|
499 |
-
* Fix - Fixed the SEO for more WP themes
|
500 |
|
501 |
= 6.0.0 =
|
502 |
-
* Update - The last stable version of Squirrly with all the features included:
|
503 |
-
* Update - Squirrly SEO is compatible with more WP themes
|
504 |
-
* Update - Twitter Card latest updates (summary and summary_large_image)
|
505 |
-
* Update - Facebook Open Graph Wordpress updates (multiple images, videos)
|
506 |
-
* Update - Sitemap with more videos like Wistia.com, FLV
|
507 |
-
* Update - External Canonical Link
|
508 |
-
* Update - Woocommerce & Instapage compatibility
|
509 |
* Squirrly SEO is Compatible with WP 4.4.1
|
510 |
|
511 |
= 5.3.1 =
|
512 |
-
* Update - Added the Twitter Summary Type option in Squirrly > SEO > Twitter Card
|
513 |
-
* Fix - Fixed the same Title SEO issues for some WP themes
|
514 |
-
* Fix - Fixed small bugs
|
515 |
-
* Fix - Changed broken link in Content Audit tool
|
516 |
|
517 |
= 5.2.9 =
|
518 |
-
* Update - Optimized the way SEO is loading in every page
|
519 |
-
* Update - Optimized SEO for Instapage Plugin
|
520 |
-
* Update - Updated the Google Analytics Tracking code
|
521 |
-
* Fix - Fixed the compatibility issue in Performance Analytics
|
522 |
-
* Fix - Added twitter summary for large images
|
523 |
|
524 |
= 5.2.7 =
|
525 |
-
* Update - Added Squirrly SEO Canonical Link in Post Edit page
|
526 |
-
* Update - Added Norway in Google Rank Option
|
527 |
-
* Update - Set the Squirrly SEO Snippet OG image as shared image
|
528 |
-
* Update - Set Squirrly SEO Live Assistant to work with more multilanguage plugins
|
529 |
-
* Fix - Fixed the image section in Squirrly Inspiration Box to improve the
|
530 |
|
531 |
= 5.2.6 =
|
532 |
-
* Update - Compatible with Smart Security Tools plugin
|
533 |
-
* Update - Added the google.ee in Squirrly Rank Option
|
534 |
-
* Fix - Fixed the Squirrly SEO Keyword not to be added in Tags if is switched off in Squirrly > Settings
|
535 |
|
536 |
= 5.2.5 =
|
537 |
-
* Update - Improved the Squirrly SEO Keyword Research from the
|
538 |
-
* Fix - Fixed the sitemap.xml with videos included
|
539 |
-
* Fix - Changed to relative URL in sitemap.xml for multisites
|
540 |
|
541 |
= 5.2.3 =
|
542 |
-
* Update - Updated to the last on-page SEO requirements
|
543 |
-
* Update - Increased the Squirrly speed in post editor
|
544 |
-
* Fix - Fixed the Seo Live Assistant to verify keywords with commas
|
545 |
-
* Fix - Fixed the Seo Live Assistant to work with HTTPS dashboard for Wikis and Keyword suggestion
|
546 |
-
* Fix - Fixed the OG:image:width issue when the width is null
|
547 |
-
* Fix - Fixed the HTTPS connection when the general settings are not set correctly
|
548 |
-
* Fix - Fixed minor bugs
|
549 |
* Squirrly SEO is Compatible with WordPress 4.3.1
|
550 |
|
551 |
= 5.2.2 =
|
552 |
-
* Update - Add the last google updates for JSON-LD Structured Data
|
553 |
-
* Update - Make XML Sitemap for Google work for a large number of articles
|
554 |
|
555 |
= 5.2.1 =
|
556 |
-
* Fix - Fixed the Head Buffer for some themes
|
557 |
* Squirrly SEO is Compatible with WordPress 4.3
|
558 |
|
559 |
= 5.2.0 =
|
560 |
-
* Update - Added 17 more languages in Squirrly SEO Keyword Research Tool to improve the
|
561 |
-
* Update - Added the focused language for Social Media in Squirrly > SEO
|
562 |
-
* Update - Added Squirrly SEO Performance Analytics in custom post types selected from Squirrly SEO > Settings
|
563 |
-
* Update - Add top menu link for Rank check
|
564 |
* Squirrly SEO is Compatible with WordPress 4.2.4
|
565 |
|
566 |
= 5.1.6 =
|
567 |
-
* Update - Improved the rank check to prevent Google temporary IP block
|
568 |
-
* Update - Improved the plugin speed in backend
|
569 |
-
* Update - Add the optimization progress bar in the post/page list
|
570 |
-
* Fix - Fixed the Incorrect Hreflang META implementation
|
571 |
-
* Fix - Fixed the restore the settings from backup validator
|
572 |
* Squirrly SEO is Compatible with WP 4.2.3
|
573 |
|
574 |
= 5.1.2 =
|
575 |
-
* Update - Added new features in Open Graph Generator for the Posts/Pages
|
576 |
-
* Update - Added the SEO Settings Backup and Restore
|
577 |
-
* Update - Improved the SEO Live Assistant to recognize more languages and characters
|
578 |
-
* Update - Improved the communication with the API Server
|
579 |
-
* Update - Added the custom size image for Open Graph Generator in Squirrly SEO Snippet
|
580 |
-
* Fix - Fixed the Analytics notification bar
|
581 |
-
* Fix - Fixed the wp_is_writable for older wp versions
|
582 |
-
* Fix - Fixed the Open Graph Generator not to include non-embed videos in meta
|
583 |
-
* Fix - Fixed the Sitemap Ping option to remain switched on when is selected
|
584 |
|
585 |
= 5.0.3 =
|
586 |
-
* Update - Prevent canonical, prev, next meta duplicate inserted by other SEO plugins with the meta duplicate removal tool
|
587 |
-
* Fix - Fixed snippet custom title and description to change when other SEO plugins are installed
|
588 |
-
* Fix - Fixed javascript issue in login page
|
589 |
|
590 |
= 5.0.0 =
|
591 |
-
* Update - Changed Squirrly SEO look
|
592 |
-
* Update - Compatible with WP eCommerce plugin
|
593 |
-
* Update - Made SEO improvements for Woocommerce plugin
|
594 |
-
* Update - Interactive learning for the entire Squirrly SEO plugin
|
595 |
-
* Update - Faster post save for long text and remote images
|
596 |
-
* Update - Settings and SEO check improved
|
597 |
-
* Update - Added robots.txt for multisites with security
|
598 |
-
* Update - Added sitemap for multisite SEO
|
599 |
-
* Update - Added sitemap for images and videos for each article
|
600 |
-
* Update - Added the Json LD in Structured Data META
|
601 |
-
* Update - Added the social linked Data for Json-LD and publisher
|
602 |
-
* Update - Added the favicon.ico for multisites
|
603 |
-
* Update - Added the icons for apple devices
|
604 |
-
* Update - Added the SEO progress in post editor
|
605 |
-
* Update - Added the SEO Star option in Dashboard
|
606 |
-
* Fix - Fixed bugs for multisites and made it compatible with WP 4.2
|
607 |
-
* Fix - Fixed the snippet title and description special chars
|
608 |
-
* Fix - Fixed the custom fields variable in post editor
|
609 |
-
* Fix - Fixed the site icon and added the site icon for multisites
|
610 |
-
* Fix - Fixed Sitemap for default permalink option
|
611 |
-
* Fix - Fixed the SEO Analytics and the Rank updates
|
612 |
-
* Fix - Fixed the SEO for First Page if the Home Page is not a static page
|
613 |
-
* Fix - Fixed the SEO for the First Page when it starts with woocommerce shop
|
614 |
|
615 |
* Changelog Archive: <a href="https://plugin.squirrly.co/squirrly-seo-changelog/">https://plugin.squirrly.co/squirrly-seo-changelog/</a>
|
616 |
|
@@ -625,9 +1189,7 @@ Squirrly SEO 8.3.01 it's a stable version of Squirrly SEO and has all the SEO re
|
|
625 |
* Irina Pogor - Content Writer
|
626 |
* Ana Darstaru - Chief of Customer Service
|
627 |
* Lucian Nertan - VP of Agency
|
628 |
-
*
|
629 |
-
* Adi Bot - Content Writer
|
630 |
-
* Rares Papita - CHO
|
631 |
|
632 |
== Investors ==
|
633 |
* Ibrahim Evsan, serial entrepreneur, one of the best known bloggers in Germany
|
@@ -715,9 +1277,9 @@ We have a community of 20,000 blogs that all used our SEO techniques, and they h
|
|
715 |
- For advanced users, you can fine-tune everything.
|
716 |
- You can override any title and set any META description and any META keywords you want.
|
717 |
- Real Time Snippet Preview (checks the frontend of each article, not just a preview)
|
718 |
-
- Integrated with other Ecommerce Plugins like WooCommerce, WP Ecommerce, MarketPress, Ready!, Shopp for your
|
719 |
- Compatibility with all the other plugins, like Auto Meta, Ultimate Tag Warrior and others.
|
720 |
-
- Works best with multisite
|
721 |
- SEO error check and fix the META duplicates with the duplicate removal tool
|
722 |
|
723 |
And the best ones that we have (and the others don't):
|
@@ -740,12 +1302,12 @@ Yes, you can use the tweets and the paragraphs in your articles. They contain re
|
|
740 |
|
741 |
As for the images, you find in the Inspiration Box, you can use **the Copyright-Free images that we offer**, to make sure you will not have any legal problems. Follow the license-compliance guidance we offer for each of them.
|
742 |
= How to install Facebook Pixel on Wordpress ? =
|
743 |
-
If you plan on tracking your action from Facebook ad campaigns what you have to is first install
|
744 |
You'll find it in your dashboard in Squirrly>>SEO Settings>> Tracking Tools at the bottom of the page.
|
745 |
-
You can check the integration to your site has been done properly with the <a href="https://chrome.google.com/webstore/detail/facebook-pixel-helper/fdgfkebogiimcoedlicjlajpkdmockpc?hl=en">Chrome extension from Facebook.
|
746 |
|
747 |
= How can Squirrly help me with the JSON-LD structure ?=
|
748 |
-
In the Squirrly dashboard
|
749 |
|
750 |
= Can I use Squirrly seo on mobile? =
|
751 |
Yes, on IOS and ANDROID, it works both through the browser and Wordpress app
|
@@ -763,7 +1325,7 @@ Most of our users and customer use Squirrly for everything related to SEO: from
|
|
763 |
|
764 |
But it all depends on how you have setup your Wordpress until now. Some people use Squirrly seo plugin only for the Content Optimization with the Live Assistant part, some use it to check their SEO stats and see where they need to improve their Wordpress seo.
|
765 |
|
766 |
-
= Why is Squirrly Keyword Research better than Google Keyword Planner for SEO strategies?
|
767 |
|
768 |
Because our tool focuses on the information your need to better rank on Google not to get your Ads in front of more people. Google Keyword Planner is a great research tool if you are creating Adwords campaigns. For SEO our keyword generator tool is better.
|
769 |
|
1 |
+
===Squirrly SEO plugin - Advanced WordPress and WooCommerce for NON-SEOs===
|
2 |
Contributors: cifi, calinvingan, florinmuresan, nagy.sorel
|
3 |
Tags: seo, wordpress seo, seo plugin, seo optimization, seo content, seo meta, open graph, e-commerce, plugins, content, marketing, ecommerce, keyword research, content seo, yoast, all in one seo, search engine optimization, XML sitemap for google, multisite SEO, squirrly, meta title, meta description, favicon, mobile, canonical, seo correction, seo title, twitter, woocommerce, feeds, social media, blogging, google-analytics, tracking, best seo tools audit website, content audit tool, ecommerce seo strategy, marketing research tools, research tools for writers, seo audit tool, SEO keyword research tool,duplicate removal tool, ecommerce SEO, facebook open graph wordpress, google keyword planner alternative, Google ranking, how to install facebook pixel on wordpress, JSON-LD structure, Live Assistant, meta duplicate removal, open graph generator, pinterest rich pin validator, related links
|
4 |
Requires at least: 4.0
|
5 |
+
Requires PHP: 5.1
|
6 |
+
Tested up to: 5.1
|
7 |
+
Stable tag: trunk
|
8 |
+
License: GPLv2 or later
|
9 |
+
Donate link: https://plugin.squirrly.co/wordpress/seo
|
10 |
|
11 |
+
Non-SEO Experts will boost their WP sites just like the experts do. Assisted WordPress SEO that even SEO Experts need.
|
|
|
12 |
|
13 |
+
== Description ==
|
14 |
+
Get Excellent SEO on all your Articles, Pages and WooCommerce products. For both Humans and Search Engines.
|
15 |
|
16 |
+
All White-hat and up-to-date. Customer Service included on the free plans.
|
17 |
|
18 |
+
The only WordPress SEO plugin that offers Assisted SEO and all the on-page tools you need to take your site from “Never Found” to Always Found on search engines like Google and Bing.
|
19 |
|
20 |
+
While Assistant Technology like: Intelligent Parking Assist helps you park your car safely, Squirrly SEO helps you place your pages safely in top positions.
|
21 |
|
22 |
+
More than that, some of the Assisted SEO features we have on-board actually help you find spots on search engines, where you’ll easily park your pages and nobody will bother you (because the competition will be low, even though these spots could earn you many organic visits).
|
23 |
|
24 |
+
<a title=“WordPress SEO Plugin” href="https://plugin.squirrly.co/wordpress/seo“>Facts and Testimonials for this Plugin for WordPress SEO can be found here</a>.
|
25 |
|
26 |
+
Could you ever dream your way to the Top positions on search engines? Let’s see how this WordPress plugin will help:
|
27 |
|
28 |
+
**Bring a CoPilot Onboard to Accelerate Your SEO Strategy and Keep Ranking**
|
29 |
|
30 |
+
Everyone who's been in this industry for a hot second knows that competing for the top rankings in Google can feel a lot like racing. Racing in a super fast, insanely crowded, car race where you're competing with bigger, faster, more expensive cars all the time. Everyone's trying to get in front, stand out and smoke the car behind them.
|
31 |
|
32 |
+
And if Search Engine Optimization is a car race, your website is your race car.
|
33 |
|
34 |
+
And let’s put it this way: As things stand right now, you could be blindfolded, driving a car not optimized for the race on uncertain track conditions.
|
35 |
|
36 |
+
But what if you could look to your right and have someone there you can genuinely trust, someone knowledgeable enough to guide and assist you in this race you're competing in every single day as a site owner?
|
37 |
|
38 |
+
I'm talking about someone whose primary concern is to make your job easier and help you SUCCEED.
|
39 |
|
40 |
+
That's Squirrly SEO for you.
|
41 |
|
42 |
+
Squirrly SEO gives you the Knowledge + Tools + Guidance you need to shift your SEO Results into top Gear:
|
43 |
|
44 |
+
* The Knowledge to take the blindfold off and maximize your level of SEO awareness. Step-by-step process with learning on the way, which makes it great for those who are not SEO experts. You'll get free coaching sessions to master the basics of SEO and conquer the advanced tactics.
|
45 |
|
46 |
+
* The Tools you need to successfully implement the best SEO tactics. Top automation features to work smarter and more efficient, from Keyword Research, On-Page Optimization, to a Weekly SEO Audit and everything in between.
|
47 |
|
48 |
+
* The Guidance to keep you focused and always moving forward through changing SEO scenery, Google updates and more. You'll benefit from constant in-plugin guidance and Assistants, as well as the fact that we're continually adding new features to meet your evolving needs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
+
It's this combination of tools and guidance that helped our users rank their sites on the 1st Page of Google and grow their organic traffic by at least +285%. (You can get MORE <a href="https://squirrly.co/facts">facts here</a>)
|
51 |
|
52 |
+
[youtube https://www.youtube.com/watch?v=YWMq5xR6Uxg]
|
53 |
|
54 |
+
**Squirrly SEO doesn't push you out of the driver's seat.**
|
55 |
|
56 |
+
Other plugins promise you a way to put your site on AutoPilot. But why risk being on autopilot inside a car that’s on the wrong path? Why give up that level of control when you can choose otherwise?
|
57 |
+
|
58 |
+
Squirrly SEO doesn't push you out of the driver's seat. Instead, it fills the role of a savvy SEO ADVISOR to help your rise to the top of SERPs.
|
59 |
+
|
60 |
+
And one of the ways it does this is through a set of powerful features. You've guessed it; it's time to see what's under the hood of Squirrly SEO.
|
61 |
+
|
62 |
+
**Keyword Research**
|
63 |
+
|
64 |
+
Discover long-tail keyword suggestions your site can rank for on the first page of Google directly from your Dashboard. Relevant for the country you want to rank for.
|
65 |
+
|
66 |
+
Long-tail keywords have less competition, which means you don't have to go against SEO mammoths, the industry-leading sites which typically populate the 1st page of Google. So you'll have a real chance of making your way to the top of SERPs.
|
67 |
+
|
68 |
+
Squirrly's SEO advanced algorithms will reveal top keyword opportunities and feed valuable associated data. This up-to-date information will help you assess keywords' potential; so that you can pick the right ones:
|
69 |
+
|
70 |
+
* Discussion. Shows you how popular a topic is on social media.
|
71 |
+
* Search Volume. Allows you to know what Keywords and Topics your Customers actively search for on Google.
|
72 |
+
* Competition. Tells you whether you can rank your pages for specific keywords. You'll STOP Wasting your resources creating content blindly and going after keywords your site can't rank for. It will all finally make sense.
|
73 |
+
* Trend. Shows you the direction in which the interest for a certain topic is heading so that you can be on time with the content you create. Optimizing content for Keywords that have a "steady" or a "going up" trend has the potential to bring you traffic for years to come.
|
74 |
+
|
75 |
+
Another cool thing about this feature is that it lets you play with three levels of complexity: Fast, Normal, Complex when conducting a Keyword Research.
|
76 |
+
|
77 |
+
**You control your keyword research experience.**
|
78 |
+
|
79 |
+
The Fast option will reveal around 10 results while the complex one can deliver around 50 results at once - that's up to 50 new ideas for creating relevant content that has the highest potential for achieving top rankings
|
80 |
+
|
81 |
+
What's more, the industry you’re in will be constantly monitored. This allows Squirrly to suggest new topic ideas you can pursue, even if you're not actively doing keyword research.
|
82 |
+
|
83 |
+
This way, you can be sure that you're not missing out on any incredible keyword opportunity.
|
84 |
+
|
85 |
+
**SEO Live Assistant**
|
86 |
+
|
87 |
+
This is your GPS for perfect on-page SEO for every article or page you Publish. Get higher rankings for keywords connected to your brand and outrank your competition.
|
88 |
+
|
89 |
+
We built the SEO Live Assistant so that you no longer have to rely on guesswork to make sure you have 100% SEO on your blog posts, your product pages or landing pages.
|
90 |
+
|
91 |
+
The Assistant looks at the topic you're writing about and gives you the coordinates for perfect on-page SEO by providing you with as-you-type advice, right inside your WordPress Dashboard.
|
92 |
+
|
93 |
+
This saves a lot of time for content creation and it helps with quality assurance as well.
|
94 |
+
Write with both your audience and search engines in mind.
|
95 |
+
|
96 |
+
* Real-time SEO tips
|
97 |
+
* Makes it clear when you over or under optimize
|
98 |
+
* Helps you identify and avoid annoying repetitions
|
99 |
+
* It checks if you have a strong introduction and conclusion for your article, in which you specify the topic you’re writing about.
|
100 |
+
|
101 |
+
With the SEO Live Assistant, you can optimize a page or article for multiple keywords. (in order to improve your Rank Brain ratings)
|
102 |
+
|
103 |
+
You can also re-optimize existing pages in your site.
|
104 |
+
|
105 |
+
But the part you'll love most?
|
106 |
+
|
107 |
+
The SEO Live Assistant is fun to use thanks to the gamification elements that make you feel like a champion every time you do something right, and a section in the Assistant turns Green.
|
108 |
+
|
109 |
+
When all the boxes check green, your article is fully optimized and ready to be Published.
|
110 |
+
|
111 |
+
**Audit Suite**
|
112 |
+
|
113 |
+
Just as any race car needs constant maintenance, your site and strategy need to be constantly tracked, tweaked, and improved. From time to time, there will be stuff you need to fix, things you'll add or replace.
|
114 |
+
|
115 |
+
If you don’t stick with it, you’re going to fall behind.
|
116 |
+
|
117 |
+
Squirrly's Audit Suite monitors all essential aspects of your content marketing strategy and gives you an overall score to note its performance. To do so, it takes six main areas into account:
|
118 |
+
|
119 |
+
* Blogging,
|
120 |
+
* Traffic,
|
121 |
+
* Social Media,
|
122 |
+
* SEO,
|
123 |
+
* Links,
|
124 |
+
* Authority.
|
125 |
+
|
126 |
+
By looking at this data, as a site owner, you'll always know how things stand, whether your efforts are paying off, and which areas need more work. You will no longer have to rely on others' theories and opinions to make decisions.
|
127 |
+
|
128 |
+
The way in which the Audit was developed ensures you'll be guided towards the actions you should take to improve your score week after week.
|
129 |
+
|
130 |
+
It also makes it easy to share the information with others on your team who have the authority and the knowledge to act on it.
|
131 |
+
|
132 |
+
For instance, if you see the blogging frequency decrease in the Audit, you can send that information to your content strategist so that you can get things back on track.
|
133 |
+
|
134 |
+
All you have to do is press a button, and the information gets sent via email.
|
135 |
+
|
136 |
+
In many ways, the Audit represents the spirit behind Squirrly SEO the best, as it's a clear representation of the vision that has been with us since day one; and that is to guide users towards taking the best actions using the most efficient tools.
|
137 |
+
|
138 |
+
**Briefcase, Keyword Strategy Assistant**
|
139 |
+
|
140 |
+
How many times has this happened to you? You've started researching ideas for keywords you could use in your posts. After a while, the process became so complex, that you lost count and forgot what was the keyword you began with.
|
141 |
+
|
142 |
+
It would be a pity to overlook great keyword opportunities because you don't have an efficient way to stay organized.
|
143 |
+
|
144 |
+
The Briefcase feature provides a simple way to keep your best keyword opportunities in a dedicated, single place and build a strategy around your main keywords.
|
145 |
+
|
146 |
+
You can Color-Categorize your keywords based on your needs and stay on track with your campaigns.
|
147 |
+
|
148 |
+
You choose the label you assign to each keyword in Briefcase.
|
149 |
+
|
150 |
+
For instance, you can label them based on the customer journey you want to use them for, such as "awareness stage" or "strong buyer intent."
|
151 |
+
|
152 |
+
Everyone on your team will know what they need to work on in order to enhance your Authority on your main keywords. No more losing focus.
|
153 |
+
|
154 |
+
**Of Course, Squirrly SEO Helps You with Everything Else as well**
|
155 |
+
|
156 |
+
Features that work behind the scenes to help you build a strong Social Media AND SEO Presence
|
157 |
+
|
158 |
+
* Twitter Cards
|
159 |
+
* Facebook Open Graph support for both Images and Videos
|
160 |
+
* LinkedIN titles, images and description for better sharing
|
161 |
+
* Rich Pins for Pinterest
|
162 |
+
* Snippet Preview
|
163 |
+
* Customize Meta Title and Description
|
164 |
+
* Patterns
|
165 |
+
* Sitemap
|
166 |
+
* Blog feeds
|
167 |
+
* SEO settings
|
168 |
+
* Performance Analytics with Google Rank Checker that lets you keep a close eye on your rankings and social media metrics.
|
169 |
+
* Works with multisites.
|
170 |
+
|
171 |
+
**Research Tool for writers (Blogging Assistant) to keep readers on the Page for longer**
|
172 |
+
|
173 |
+
* Find and Insert Copyright Free Images right from your Dashboard (via Squirrly's Inspiration Box)
|
174 |
+
* Find and Insert Tweets and Wikis to validate your ideas and create well-researched content that includes trending information and expert input
|
175 |
+
* Link to other articles in your site connected to that topic
|
176 |
+
* Cite Sources and prove authority for the blog posts you create. It’s a confirmed ranking factor for Google.
|
177 |
+
|
178 |
+
You don't have to be an expert to make the most of all these features. Squirrly SEO has a 'Take you by the hand approach" that works to your benefit even if you are an apprentice when it comes to SEO.
|
179 |
+
|
180 |
+
**Satisfies Your Need for Speed**
|
181 |
+
|
182 |
+
Squirrly SEO is one of the fastest plugins out there. Despite being incredibly complex, it will not slow down your site. This is something that sets Squirrly apart from other plugins, a benefit that many of our current users and developer partners have repeatedly said they appreciate.
|
183 |
+
|
184 |
+
**Compatibility**
|
185 |
+
|
186 |
+
Squirrly SEO works well with WordPress sites that already have other popular plugins installed, such as Yoast or All in One SEO. You can opt-in to keep the settings you've previously made for your site so that you're not forced to start over again with Squirrly :-)
|
187 |
+
|
188 |
+
Again, the goal is to make your job easier.
|
189 |
+
|
190 |
+
**Priceless Customer Service, for Free**
|
191 |
+
|
192 |
+
Squirrly SEO comes with priceless customer service - that you get for free.
|
193 |
+
|
194 |
+
We've always provided excellent, friendly customer service on all the Squirrly Plans. And we'll continue to do so whether you're a paying user or only have the free version installed.
|
195 |
+
|
196 |
+
You can reach our support team on various channels, and we'll make sure that your question or request receives a quick, insightful reply that doesn't leave you feeling bamboozled or frustrated. That's just annoying.
|
197 |
+
|
198 |
+
**3, 2, 1: GO**
|
199 |
+
|
200 |
+
Squirrly SEO is a freemium model, which means you can install the Free Versions. If you have small content marketing needs (about one article posted per week, some keywords that you want to analyze), then it's the perfect plan for you.
|
201 |
+
|
202 |
+
Once you start having more significant content marketing and SEO needs, you can upgrade to the PRO version.
|
203 |
+
|
204 |
+
So do you want to compete in the race? Then, go ahead and install Squirrly SEO.
|
205 |
+
|
206 |
+
You can grab your copy of Squirrly SEO today from the WordPress Plugins Directory. Just hit that download button and start installing it.
|
207 |
+
|
208 |
+
We provide you with a couple of details on installing it: in the Installation Tab.
|
209 |
+
|
210 |
+
**You're getting many Assistants (software powered helpers inside your WP)** that help you overcome your SEO and marketing challenges. It will feel like you're getting a full marketing team behind you, without any of the associated costs. With all the Assistants, you'll be able to do everything on your own.
|
211 |
+
|
212 |
+
These Assistants will help you make great use of all the tools Squirrly provides you inside your WordPress SEO Plugin.
|
213 |
+
|
214 |
+
More Assistants are making their way into Squirrly SEO this year: <a href="https://www.producthunt.com/upcoming/backlinks-assistant-by-squirrly">Meet the BackLinks Assistant</a> | and | <a href="https://www.producthunt.com/upcoming/strategy-assistant-by-squirrly">Meet the Strategy Assistant.</a>
|
215 |
+
|
216 |
+
<a href="https://plugin.squirrly.co/squirrly-seo-pricing/">Over 200 Tools and Features</a> help you find your way to a winning SEO Strategy by giving you search trend information, competition authority information (Powered by Squirrly's Market Intelligence features), competition volume, social media and forum discussion intelligence.
|
217 |
+
|
218 |
+
You'll be able to find the right Keywords which you can optimize or re-optimize your whole WordPress site for.
|
219 |
+
|
220 |
+
**Using SEO Automation features from Squirrly, you can re-optimize a 2,000 products WooCommerce store in a couple of minutes. That's amazing WooCommerce SEO value!**
|
221 |
+
|
222 |
+
Then, once you've established your winning opportunities, place them in Briefcase, so that your team, writers, collaborators will know exactly what they need to work on in order to enhance your Authority on your main keywords.
|
223 |
+
|
224 |
+
You'll easily make any edits you need to your pages, articles, products by using Copyright Free images and other benefits offered to you by the Blogging Assistant inside Squirrly SEO.
|
225 |
+
|
226 |
+
Your pages will be 100% Optimized before you even hit "Save Draft", or "Publish" inside WordPress. The SEO Live Assistant will offer you as-you-type SEO advice to bring your page's content to perfect optimization. This helps you optimize for both Humans and Search Engines. It's an Excellent balance.
|
227 |
+
|
228 |
+
The market you're in will be constantly monitored, in order for Squirrly to suggest you new content ideas you can pursue. (This is handled by the Research Assistant)
|
229 |
+
|
230 |
+
An Audit Suite will be ready for you every single week, to show you where you can improve your Marketing and your Website: blogging audit, social media audit, web authority audit, SEO audit, Traffic Audit.
|
231 |
+
|
232 |
+
You'll never have to doubt your results, because you'll get to see how well your pages are ranking in Google. Best of all: you'll see the real, objective data. You'll see what your potential customers will see when searching for keywords related to your site.
|
233 |
+
|
234 |
+
You can be from any one of the 140 countries we support for Keyword Research and SERP Checking (Google Rank Tracking)
|
235 |
+
|
236 |
+
You can make a decision right now, to get Squirrly WordPress SEO Plugin into your site right away, or to continue your journey of optimizing WordPress sites with the rest of the Wordpress SEO Plugins.
|
237 |
+
|
238 |
+
**If you choose any plugin other than Squirrly, you will soon realize that:**
|
239 |
+
|
240 |
+
- you haven’t chosen the proper keywords. That’s why your WordPress SEO Plugin doesn’t catapult you to that first page of Google search, no matter which plugin you choose.
|
241 |
+
|
242 |
+
- you can end up being #1 on Google for keywords that nobody ever searches for, which means zero search traffic for your WordPress site or WooCommerce store.
|
243 |
+
|
244 |
+
- you don’t know if you manage to rank your pages. The other WordPress SEO plugins won’t show you if they help you reach search engine success.
|
245 |
+
|
246 |
+
- you’ve got no proper way of knowing if the work you do with the other plugins actually makes a difference for the overall WordPress SEO of your site.
|
247 |
+
|
248 |
+
- you won’t be able to manage your strategy. You’ll keep creating content blindly, while losing focus of your overall strategy. Especially if you have a team of writers, this will go south very fast.
|
249 |
+
|
250 |
+
- you'll never know if the work you've done last week brought an improvement in the quality of your site and content.
|
251 |
+
|
252 |
+
**There is only one SEO tool (part software in the Cloud, part delivered inside your very own WordPress) to help you with all of this: Squirrly SEO. It's Everything You’ll Ever Need.**
|
253 |
+
|
254 |
+
And you’re reading about it on this very page. Yes, Squirrly SEO. Current Edition: Squirrly SEO 2018: Briefcase. (began with version 8.3.07)
|
255 |
+
|
256 |
+
Download and start using it now.
|
257 |
+
|
258 |
+
Or wait and see why even Earth’s mightiest SEO Experts use this one tool, that was initially fully designed only for NON-SEOs.
|
259 |
+
|
260 |
+
There are lots of features currently in it which are super praised by experts. The details to which you can take your Squirrly are phenomenal.
|
261 |
+
|
262 |
+
[youtube https://www.youtube.com/watch?v=gNhK-y34wtw]
|
263 |
+
|
264 |
+
We have reviews from some of the world's biggest Experts in SEO and Marketing: Neil Patel, Search Engine Journal, Brian Dean, Search Engine Watch and over 1,000 other media outlets and blogs.
|
265 |
|
266 |
<h3>Top Reviews</h3>
|
267 |
* <em>"Wow, I've been using your tool for a week now and one of my blog ranked no1 out of a million for its key word... amazing"</em>
|
268 |
+
* <em>" I use Squirrly SEO every time I create a new post."</em> - **Neil Patel**, co-founder of KissMetrics
|
269 |
+
* <em>"Cool Feature: Squirrly SEO comes packed with a nice keyword research tool that works within the WordPress editor. In addition to the usual metrics (like search volume), it also shows you if that keyword is a hot topic of conversion online. The tool also shows you the stability of that keyword’s search volume over time."</em> - <a href="http://backlinko.com/seo-tools" target="_blank" rel="nofollow">**Brian Dean**</a>, founder of Backlinko
|
270 |
* <em>"It’ll give you a helpful snapshot of how your content is performing."</em> - <a href="https://www.searchenginejournal.com/">**Search Engine Journal**</a>
|
271 |
|
272 |
**You can read more reviews from Internet Marketing experts on <a href="https://howto.squirrly.co/testimonials/">https://howto.squirrly.co/testimonials/</a>**
|
273 |
|
274 |
We have over 2,350,000 Downloads!
|
275 |
|
276 |
+
**Our Technology is used by Microsoft teams across Europe, BBC, SeedCamp, CyberGhost, and many others.**
|
277 |
+
|
278 |
+
**Here are some of the Assistants you get out-of-the-box when you install Squirrly SEO:**
|
279 |
+
|
280 |
+
Blogging Assistant
|
281 |
+
|
282 |
+
SEO Live Assistant
|
283 |
+
|
284 |
+
Settings Assistant
|
285 |
+
|
286 |
+
Keyword Opportunity Assistant
|
287 |
+
|
288 |
+
SEO Automations Assistant
|
289 |
+
|
290 |
+
Up-Coming Assistants:
|
291 |
+
|
292 |
+
Strategy Assistant
|
293 |
+
|
294 |
+
Backlinks Assistant
|
295 |
+
|
296 |
+
**Squirrly SEO is a Freemium software, like MailChimp.**
|
297 |
+
|
298 |
+
You’ll start with the free version of Squirrly SEO. It will help you if you have small content marketing needs, such as 5 articles published / month, 5 keyword analysis and a weekly SEO audit tool report. When you'll require more, you can pay for the PRO Plan.
|
299 |
+
|
300 |
+
You'll only start paying once you need to do a lot of work within the plugin.
|
301 |
+
|
302 |
+
**All of the following are for free and included in the Free Plan:**
|
303 |
+
|
304 |
+
**Free Access to our Support team:**
|
305 |
+
|
306 |
+
via email, youtube live chat, twitter, facebook messages, in-plugin support options (so you don't even have to leave WordPress to write to us), Google Plus Community.
|
307 |
+
|
308 |
+
**Amazing Speed:**
|
309 |
+
|
310 |
+
Runs ~4 times faster than Yoast SEO and ~8 times faster than All In One SEO.
|
311 |
+
|
312 |
+
**Uncanny Power:**
|
313 |
+
|
314 |
+
Gives you 10 times more features than any other SEO plugin out there.
|
315 |
+
|
316 |
+
It's the reason why Assistants who guide were imperative to our design.
|
317 |
+
|
318 |
+
**Keyword optimizations**
|
319 |
+
|
320 |
+
Up to 5 keywords for each page.
|
321 |
+
|
322 |
+
**Semantic SEO Data and Contextual Keywords:**
|
323 |
+
|
324 |
+
Up to 5 keywords for each page
|
325 |
+
|
326 |
+
**Customer Journey and Buying Stages**
|
327 |
+
|
328 |
+
Model advanced paths from Visit to Purchase for your potential customers.
|
329 |
+
|
330 |
+
**Marketing Clarity Assistant**
|
331 |
+
|
332 |
+
Up to 5 keywords for each page, to help you place in all the keywords that you want to convey for your overall marketing/branding message.
|
333 |
+
|
334 |
+
|
335 |
+
**Preview of your page - see exactly how your page will look on:**
|
336 |
+
|
337 |
+
- Google
|
338 |
+
|
339 |
+
- Facebook
|
340 |
+
|
341 |
+
- Twitter
|
342 |
+
|
343 |
+
**Readability Check and Human Friendly Optimization:**
|
344 |
+
|
345 |
+
We analyze your written text to make sure it will sound really good for your Human readers. This will help boost engagement on the page, as well as time on page.
|
346 |
+
|
347 |
+
**No Duplicate Content - Squirrly SEO is the only plugin that handles all the following aspects:**
|
348 |
+
|
349 |
+
- Avoid confusing Google with duplicate content, by setting canonical URLs.
|
350 |
+
|
351 |
+
- Avoid repetitions of the same pieces of code inside the source code of any page on your site. Google penalizes for that. With the Duplicate Remover from Squirrly, this will never be a problem for you. It's performed automatically if you have the setting activated.
|
352 |
+
|
353 |
+
- Avoid duplicate content across multiple pages from your website. The SEO Audit from Squirrly SEO will help you clean all those duplicate pieces of content.
|
354 |
+
|
355 |
+
**Keyword Research and Planning Tool: (for 140 countries)**
|
356 |
+
|
357 |
+
You'll finally find keywords worth pursuing.
|
358 |
+
|
359 |
+
Built 100% for SEO, unlike the Keyword Planner from Google, which is built for Advertising purposes. <a href="https://howto.squirrly.co/wordpress-seo/can-i-use-the-keyword-planner-tool-from-google-for-seo/">Read here about it</a>
|
360 |
+
|
361 |
+
**Briefcase:**
|
362 |
+
|
363 |
+
Organize your SEO Strategy and ALL Your focus keywords in one place, so that you and all collaborators can be on the same page.
|
364 |
+
|
365 |
+
**Audit Suite (Lite)**
|
366 |
+
|
367 |
+
- SEO Audit
|
368 |
+
|
369 |
+
- Blogging Audit
|
370 |
+
|
371 |
+
- Traffic Audit
|
372 |
+
|
373 |
+
- Social Media Audit
|
374 |
+
|
375 |
+
- Links Audit (powered by MOZ)
|
376 |
+
|
377 |
+
- Authority Audit
|
378 |
+
|
379 |
+
**Google Ranking Checkers (for 140 countries)**
|
380 |
+
|
381 |
+
See your Google Rank for the pages you've optimized.
|
382 |
+
|
383 |
+
**Technical SEO - you won't have to know anything about it, because Squirrly runs it in the background for you**
|
384 |
+
|
385 |
+
It doesn’t matter whether you know about robots.txt, .htaccess files, clean permalink URLs or sitemaps – Squirrly SEO makes sure your technical configuration meets the expectations of all search engines.
|
386 |
+
|
387 |
+
**BackUps and Imports:**
|
388 |
+
|
389 |
+
Professional grade backup and importing system, to keep all your sites and all your optimizations safe and sound.
|
390 |
+
|
391 |
+
**User Roles and Permissions:**
|
392 |
+
|
393 |
+
Squirrly SEO Plugin is used by many professional teams in over 90 Countries. It's why we offer them amazing details in how they can setup permissions for their team members.
|
394 |
+
|
395 |
+
**SEO Automation Assistant:**
|
396 |
+
|
397 |
+
Helps you optimize 20, 200 or even 20,000 pages in a couple of minutes. It's the easiest way to get all your pages boosted very fast.
|
398 |
+
|
399 |
+
- Complete with rules for Json-LD, Open Graph, Twitter Cards, Rich Pins, SEO Title, SEO Description.
|
400 |
+
|
401 |
+
**Over 200 Tools and Features**
|
402 |
+
|
403 |
+
See more on our Pricing Page, to learn more about ALL the features included in the Free Version.
|
404 |
+
|
405 |
+
Scroll down to the second section to get the detailed overview!
|
406 |
+
|
407 |
+
**Principles for our Designs:**
|
408 |
+
|
409 |
+
"Offer the most value, with the least friction possible. Build a software that grows around the user, and not the other way around." These are our guiding principles in all the new versions and product releases we make for Squirrly SEO.
|
410 |
+
|
411 |
+
You can start using Squirrly SEO when you have very basic SEO needs, and then grow as much as you want when you start needing super advanced tech at your disposal.
|
412 |
+
|
413 |
+
We offer amazing Customer Service because it help you be happy and be successful! There's also another reason: every customer interaction helps us take this product to the next level. We're in love with the power that Customer Service has in building ground-breaking products.
|
414 |
+
|
415 |
+
We're doing our best to be great listeners and understand the underlying problems of our users and customers.
|
416 |
+
|
417 |
+
We focus a lot on making the next version the best version! And we're also trying to launch as many useful updates as possible.
|
418 |
+
|
419 |
+
There are many good reasons for you to get a monthly or yearly subscription. <a href="https://www.squirrly.co/3_reasons_why_a_subscription_based_payment_makes_sense_for_you-pagblog-article_id62166-html/">Here are some of the best reasons.</a>
|
420 |
+
|
421 |
Our startup consists of 15 content marketing professionals dedicated to making Squirrly SEO an amazing piece of software and writing great training materials to help you be successful and stay successful.
|
422 |
|
423 |
Over 1000 Content Marketing Experts have reviewed our Wordpress SEO plugin and loved it.
|
424 |
|
425 |
Over 2580 students to our $147 Content Marketing Training on Udemy. Part of that training you'll be receiving for free when signing up for this Wordpress seo plugin.
|
426 |
|
427 |
+
Over +285% increase in traffic to over 49,000 study participants. (who optimized to at least 50% with Squirrly SEO)
|
428 |
|
429 |
More than helping you with your internet marketing efforts, we strive to offer Excellence in Customer Service.
|
430 |
|
434 |
|
435 |
We're passionate about seeing you get a great and happy experience, so we'll do our best to fix anything that may come up very fast.
|
436 |
|
437 |
+
From the Live Assistant to the best SEO tools for website audit, you'll get access to all of them by installing only this plugin. Exactly the zip that you find here on the WordPress plugins directory.
|
438 |
|
439 |
See all the Features of our product on the <a title="Squirrly WordPress SEO" href="https://howto.squirrly.co/kb/slides/">All Squirrly SEO Features </a>.
|
440 |
|
441 |
<a title="Squirrly SEO Plugin" href="/extend/plugins/squirrly-seo/screenshots/">Check our screenshots</a>| <a title="Squirrly SEO" href="https://www.squirrly.co/wordpress-seo-by-squirrly" target="_blank">Go to our official site</a> | Free Version (if you install from the WP directory) OR <a title="See Pricing" href="https://plugin.squirrly.co/squirrly-pricing-plans/" target="_blank">Pricing Plans</a>
|
442 |
|
443 |
+
<h3>Documentation and Notes</h3>
|
444 |
+
|
445 |
+
* [Does Squirrly SEO work on WP Multisites](https://howto.squirrly.co/wordpress-seo/squirrly-blogs-limit-reached/)
|
446 |
+
* [How can I use Squirrly to tell search engines that I’ve published a new post?](https://howto.squirrly.co/wordpress-seo/how-can-i-use-squirrly-to-tell-search-engines-that-ive-published-a-new-post/)
|
447 |
+
* [Can Squirrly Send All My Posts Over to Social Media?](https://www.squirrly.co/social-media/tools-for-digital-marketing/)
|
448 |
+
* [How To Exclude Custom Post Types From The Sitemap.xml](https://howto.squirrly.co/wordpress-seo/how-to-exclude-custom-post-types-from-sitemap-xml/)
|
449 |
+
* [Please help me wrap all your services under one short list, so I’ll know how to use them all](https://howto.squirrly.co/wordpress-seo/please-help-me-wrap-all-your-services-under-one-short-list-so-ill-know-how-to-use-them-all/)
|
450 |
+
* [Does Squirrly SEO work with WordPress SEO by Yoast?](https://howto.squirrly.co/wordpress-seo/does-squirrly-seo-work-with-wordpress-seo-by-yoast/)
|
451 |
+
* [How to Submit Your sitemap.xml](https://howto.squirrly.co/wordpress-seo/how-to-submit-your-sitemap-xml-in-google-sitemap/)
|
452 |
+
* [Does Squirrly SEO Plugin Have All the Google SEO Requirements?](https://howto.squirrly.co/wordpress-seo/does-squirrly-seo-have-all-the-seo-requirements/)
|
453 |
+
* [How to add multiple tags-keywords in my blog](https://howto.squirrly.co/wordpress-seo/how-to-add-multiple-tags-keywords-in-blog/)
|
454 |
+
* [What does the new SEO Live Assistant from Squirrly offer?](https://howto.squirrly.co/wordpress-seo/what-does-the-new-seo-live-assistant-from-squirrly/)
|
455 |
+
* [My article doesn’t appear as optimized in Performance Analytics](https://howto.squirrly.co/wordpress-seo/my-articles-doesnt-appear-as-optimized-in-performance-analytics/)
|
456 |
+
* [100% green in Squirrly Live Assistant but I’m not getting traffic](https://howto.squirrly.co/wordpress-seo/100-green-in-squirrly-live-assistant-but-im-not-getting-traffic/)
|
457 |
+
* [What are the things I need to do to become Number 1 on Google? (Short answer is: WORK)](https://howto.squirrly.co/wordpress-seo/step-2-preparing-to-work-on-higher-rankings/)
|
458 |
+
* [How do you calculate the search volume reported in keyword research?](https://howto.squirrly.co/wordpress-seo/how-do-you-calculate-the-search-volume-reported-in-keyword-research/)
|
459 |
+
* [Can I use the Keyword Planner tool from Google for SEO?](https://howto.squirrly.co/wordpress-seo/can-i-use-the-keyword-planner-tool-from-google-for-seo/)
|
460 |
+
* [Does Google Still Take Keywords Into Account When Displaying Search Results?](https://howto.squirrly.co/wordpress-seo/does-google-still-take-keywords-into-account-when-displaying-search-results/)
|
461 |
+
* [How Can I Make My Site Stand Out In Search Results?](https://howto.squirrly.co/wordpress-seo/how-can-i-make-my-site-stand-out-in-search-results/)
|
462 |
+
|
463 |
== Installation ==
|
464 |
|
465 |
= MANUALLY =
|
474 |
6. Upload the "squirrly-seo.zip" file by clicking the "Choose File" button.
|
475 |
7. Click on the "Install Now" Button.
|
476 |
8. After the upload is finished, click Activate Plugin.
|
477 |
+
9. Now enter your email and click "Sign Up"10.Done! Start getting Excellent SEO on Wordpress11. You'll start receiving email lessons to help you become a great content marketer. All for free.
|
478 |
|
479 |
=FROM YOUR WORDPRESS DASHBOARD=
|
480 |
|
484 |
4. Click on the "Install Now" button next to the plugin.
|
485 |
5. After the Installation is done click "Activate".
|
486 |
6.Now enter your email and click "Sign Up".
|
487 |
+
7. Done! Start getting Excellent SEO on Wordpress.
|
488 |
8. You'll start receiving email lessons to help you become a great content marketer. All for free.
|
489 |
Type a keyword to the right of the screen and start using Squirrly Seo. Enjoy!
|
490 |
|
498 |
5. Wp Seo - Monitor your success with the Performance Analytics
|
499 |
6. Wp Seo - Let Squirrly SEO do the SEO Settings that your blog needs
|
500 |
7. Wp Seo - Check your Weekly Site Audit and improve to get higher scores
|
501 |
+
8. Wp Seo - Use the research tools for writers from the Inspiration box.
|
502 |
|
503 |
== Upgrade Notice ==
|
504 |
Squirrly SEO 8.3.01 it's a stable version of Squirrly SEO and has all the SEO requirements by Search Engines
|
505 |
|
506 |
== Changelog ==
|
507 |
+
= 8.4.07 - 02/22/2019 =
|
508 |
+
* SEO Update - Tested and Compatible with WordPress 5.1
|
509 |
+
|
510 |
+
= 8.4.06 - 01/03/2019 =
|
511 |
+
* SEO Update - Compatible with WordPress 5.0.2
|
512 |
+
* SEO Update - Update to the latest Google requirements
|
513 |
+
* SEO Fix - Replace the %% patterns to Squirrly in case they still exist after the import
|
514 |
+
* SEO Fix - Remove other robots meta when Squirrly Index, Follow is activated
|
515 |
+
|
516 |
+
= 8.4.04 - 12/10/2018 =
|
517 |
+
* SEO Update - Compatible with WordPress 5.0
|
518 |
+
* SEO Fix - Prevent from saving the same image in media library multiple times
|
519 |
+
* SEO Fix - Prevent image width and height value to be equal with 0 in Open Graph
|
520 |
+
|
521 |
+
= 8.4.03 - 11/26/2018 =
|
522 |
+
* SEO Fix - Showing Sqirrly in the right side when Gutenberg is not active
|
523 |
+
* SEO Fix - Loading Squirrly Live Assistant issue
|
524 |
+
|
525 |
+
= 8.4.02 - 11/23/2018 =
|
526 |
+
* SEO Update - Added the box move option in Squirrly Live Assistance
|
527 |
+
* SEO Fix - Keyword Research timout when searching multiple keywords
|
528 |
+
* SEO Fix - Keyword Information Search Volume
|
529 |
+
* SEO Fix - SEO updates in Json-LD
|
530 |
+
|
531 |
+
= 8.4.01 - 11/15/2018 =
|
532 |
+
* SEO Fix - Excluded unused tags from sitemap in sitemap-taxonomy
|
533 |
+
* SEO Fix - Fixed the Briefcase warning in case there are no labels set
|
534 |
+
|
535 |
+
= 8.4.00 - 11/13/2018 =
|
536 |
+
* SEO Update - Fetch new data in Facebook on post save
|
537 |
+
* SEO Update - Set URL ping to false by default and encourage the Google Search Console fetch
|
538 |
+
* SEO Fix - Keyword research search volume showing 0
|
539 |
+
* SEO Fix - COmpatibility with other plugins
|
540 |
+
|
541 |
+
= 8.3.39 - 10/10/2018 =
|
542 |
+
* SEO Update - Morocco added in Google Ranking Option
|
543 |
+
* SEO Update - SEO Compatibility with WordPress 5
|
544 |
+
* SEO Fix - The overlay in Gutemberg 4.1.1 when Yoast is installed
|
545 |
+
* SEO Fix - Briefcase Search Volum info
|
546 |
+
|
547 |
+
= 8.3.38 - 10/10/2018 =
|
548 |
+
* SEO Fix - Memory limit check in case the memory limit is over 1G
|
549 |
+
* SEO Fix - Set attachment sitemap as uncheck by default
|
550 |
+
* SEO Fix - Lower the attachment sitemap priority to prevent indexing the images before the articles
|
551 |
+
* SEO Fix - On multisite network there was an error at line squirrly-seo/controllers/Menu.php on line 372
|
552 |
+
|
553 |
+
= 8.3.37 - 10/01/2018 =
|
554 |
+
* SEO Update - Compatibility with Gutenberg 3.9
|
555 |
+
* SEO Update - Compatibility with BuddyPress 3.2
|
556 |
+
* SEO Fix - Attachment URL linked to image URL when the attachment page is missing
|
557 |
+
|
558 |
+
= 8.3.36 - 09/19/2018 =
|
559 |
+
* SEO Update - Compatibility with Gutenberg 3.8
|
560 |
+
* SEO Update - Compatibility with Woocommerce 3.4.5
|
561 |
+
* SEO Fix - Corrected the Json-LD for Posts and Pages
|
562 |
+
|
563 |
+
= 8.3.35 - 08/23/2018 =
|
564 |
+
* SEO Fix - Corrected the CSV export on Keyword Research
|
565 |
+
* SEO Fix - Corrected the Json-LD for Author pages
|
566 |
+
|
567 |
+
= 8.3.34 - 08/16/2018 =
|
568 |
+
* SEO Update - Compatibility with Gutenberg 3.5
|
569 |
+
* SEO Update - Compatibility with Woocommerce 3.4.4
|
570 |
+
* SEO Fix - Removed Json-LD from tags and categories to prevent Structured Data Inconsistency
|
571 |
+
* SEO Fix - Prevent Squirrly Snippet from showing in Wordpress Dashboard pages
|
572 |
+
|
573 |
+
= 8.3.33 - 08/11/2018 =
|
574 |
+
* SEO Fix - Save the Keyword in Post Edit
|
575 |
+
* SEO Fix - Save the image when edit with Gutenberg plugin
|
576 |
+
|
577 |
+
= 8.3.32 - 08/06/2018 =
|
578 |
+
* SEO Update - Added support for more frontend builders
|
579 |
+
* SEO Update - Updated the Google Analytics Code for gtag
|
580 |
+
* SEO Update - Squirrly Live Assistant compatibility with Gutenberg
|
581 |
+
* Squirrly SEO is compatible with WP 4.9.8
|
582 |
+
|
583 |
+
= 8.3.31 - 07/25/2018 =
|
584 |
+
* SEO Fix - Loading duplicate CSS and JS from Squirrly
|
585 |
+
* Settings Fix - Save the custom email on Squirrly Support section
|
586 |
+
* SEO Fix - Corrected the overlaps in Squirrly SEO Live Assistant when Gutenberg is not activated
|
587 |
+
|
588 |
+
= 8.3.30 - 07/23/2018 =
|
589 |
+
* SEO Update - Squirrly SEO Live Assistant is compatible with Gutenberg plugin
|
590 |
+
* SEO Update - Added Image and HTML Support for Gutenberg editor
|
591 |
+
* SEO Fix - Scroll to Squirrly block when Gutenberg is activated
|
592 |
+
|
593 |
+
= 8.3.23 - 07/16/2018 =
|
594 |
+
* Squirrly SEO is compatible with WP 4.9.7
|
595 |
+
* Settings Fix - Corrected the js if it's not loading every time
|
596 |
+
* SEO Fix - Prevent timput on Google Ranking updated from Squirrly Cloud
|
597 |
+
|
598 |
+
= 8.3.22 - 07/12/2018 =
|
599 |
+
* SEO Fix - Correct patterns {{focuskw}} and {{keyword}}
|
600 |
+
* SEO Fix - Show labels in Briefcase is no keyword is added
|
601 |
+
|
602 |
+
= 8.3.21 - 07/04/2018 =
|
603 |
+
* SEO Fix - Get all URLs in Advanced Analytics and link them with the local posts
|
604 |
+
* SEO Update - Added Gutenberg support
|
605 |
+
|
606 |
+
= 8.3.20 - 06/19/2018 =
|
607 |
+
* SEO Update - Add the Media sitemap with all the attachments
|
608 |
+
* SEO Update - Better filter to save optimized articles and Squirrly Snippet
|
609 |
+
* SEO Update - Ecommerce update for sitemap hourly and daily changes options
|
610 |
+
* SEO Fix - Better filter to remove the highlight in Squirrly SEO Live Assistant
|
611 |
+
* SEO Fix - Download images locally even if they don't have a URL extension
|
612 |
+
|
613 |
+
= 8.3.19 - 06/10/2018 =
|
614 |
+
* SEO Update - Update the Social Media Shares. Removed the inactive once: linkedIn and Google Plus
|
615 |
+
* SEO Fix - Remove SimpleXML check
|
616 |
+
* Squirrly SEO is compatible with WP 4.9.6
|
617 |
+
|
618 |
+
= 8.3.18 - 05/16/2018 =
|
619 |
+
* Update - GDPR Compliant
|
620 |
+
* SEO Update - Google Croatia in Rank Option and Keyword Research
|
621 |
+
* SEO Fix - Prevent removing the Json-LD from oter plugins
|
622 |
+
* SEO Fix - Prevent from showing Squirrly Settings when the user is not yet connected to Squirrly Cloud
|
623 |
+
* SEO Fix - Google Plus and LinkedIn discontinued their support for share counts
|
624 |
+
|
625 |
+
|
626 |
+
= 8.3.17 - 04/25/2018 =
|
627 |
+
* SEO Update - Google Nigeria was added in Google Ranking Option
|
628 |
+
* SEO Update - Google SEO updated for April 2018
|
629 |
+
* SEO Fix - Prevent the Plus Sign from being translated into space
|
630 |
+
* SEO Fix - Title and Description METAs for Posts page for the last version ot WP
|
631 |
+
* Squirrly SEO is compatible with WP 4.9.5
|
632 |
+
|
633 |
+
= 8.3.16 - 03/27/2018 =
|
634 |
+
* SEO Update - Google Ghana was added in Google Ranking Option
|
635 |
+
* SEO Update - Google Analytics code update
|
636 |
+
* SEO Update - Added new patterns {{currentday}} {{currentmonth}} {{currentyear}}
|
637 |
+
|
638 |
+
= 8.3.15 - 03/22/2018 =
|
639 |
+
* SEO Fix - Don't display Json-LD author for pages without authors
|
640 |
+
* SEO Fix - Include the Home Page sitemap in sitemap.xml
|
641 |
+
* SEO Update - better Yoast wordpress seo plugin alternative compatibility
|
642 |
+
* SEO Update - worked more on compatibility with All in One SEO
|
643 |
+
* SEO Update - added more compatibility between Squirrly SEO and SEO Framework plugin
|
644 |
+
* SEO Update - compatibility updates for Monster Insights
|
645 |
+
* SEO Update - backups from Yoast focus keywords now available
|
646 |
+
* SEO Update - WooCommerce SEO modules all fully included in Squirrly SEO
|
647 |
+
* SEO Update - MOZ compatibility and API updates
|
648 |
+
* SEO Update - SEMrush data reduced for better analysis
|
649 |
+
* SEO Update - Market Samurai keyword compatibility
|
650 |
+
* SEO Update - Ubersuggest keywords can be used with Keyword Research from Squirrly
|
651 |
+
* SEO Update - Keyword Planner tools from Google described for SEO purposes in db
|
652 |
+
* SEO Update - Google Ranking checker improved and better Google SERP Checker
|
653 |
+
* SEO Update - Hubspot SEO checks requests from users
|
654 |
+
* SEO Update - Majestic SEO compatibility updated for SEO Audit
|
655 |
+
* SEO Update - Google Analytics for WordPress codes updated
|
656 |
+
* SEO Update - Search Console integration prepared in my.squirrly
|
657 |
+
* SEO Update - Facebook Pixel amazing updates to control, tracking, and event-based actions
|
658 |
+
* SEO Update - Rich Pins updates for WooCommerce based Pinterest profiles and Pinterest posts
|
659 |
+
* SEO Update - more schema and json-ld updates
|
660 |
+
* SEO Update - Custom Sidebars – Dynamic Widget Area Manager compatibility
|
661 |
+
|
662 |
+
= 8.3.14 - 03/19/2018 =
|
663 |
+
* SEO Update - Add a new pattern {{post_description}} to get only the description from Post Content
|
664 |
+
* SEO Fix - Compatibility with Woozone Plugin
|
665 |
+
* SEO Fix - Fatal error: Call to undefined function rest_get_url_prefix() on Tools.php on line 518
|
666 |
+
* SEO Fix - Missing argument 2 for get_term() on Frontend.php on line 703
|
667 |
+
* SEO Fix - Site Icon remove from Genesis framework when the Site Icon is loaded in Squirrly
|
668 |
+
|
669 |
+
= 8.3.13 - 03/05/2018 =
|
670 |
+
* SEO Update - Added option in sitemap to add all languages in the same sitemap
|
671 |
+
* SEO Update - Changed the connection to my.squirrly.co to load for https websites
|
672 |
+
* SEO Fixed - Corrected the Current Month and Current Year Patterns
|
673 |
+
* SEO Update - Q2W3 Fixed Widget compatibility with this wordpress seo plugin
|
674 |
+
* SEO Update - WooCommerce Services works awesome with this WooCommerce SEO plugin
|
675 |
+
* SEO Update - YITH WooCommerce Wishlist compatibility
|
676 |
+
* SEO Update - works now with WooCommerce PDF Invoices & Packing Slips
|
677 |
+
* SEO Update - good with Shapely Companion
|
678 |
+
* SEO Update - works with Mollie Payments for WooCommerce
|
679 |
+
* SEO Update - compatible with Optimize Database after Deleting Revisions
|
680 |
+
* SEO Update - Custom Post Type UI compatible
|
681 |
+
* SEO Update - Header and Footer Scripts full compatibility
|
682 |
+
|
683 |
= 8.3.12 - 02/23/2018 =
|
684 |
+
* SEO Update - Added Select Country in Briefcase for Keyword Research
|
685 |
+
* SEO Fix - wpml_get_language_information WP_error conflict with other plugins.
|
686 |
+
* SEO Fix - Sitemap XSL style for domains with both www and root access.
|
687 |
+
* SEO Update - Post Type Switcher working
|
688 |
+
* SEO Update - PS Auto Sitemap compatible
|
689 |
+
* SEO Update - Posts in Sidebar compatibility works
|
690 |
+
* SEO Update - Redux Framework compatible
|
691 |
+
* SEO Update - Orbit Fox by ThemeIsle compatible
|
692 |
+
* SEO Update - WP Maintenance Mode in
|
693 |
+
* SEO Update - Google XML Sitemaps compatible
|
694 |
+
* SEO Update - W3 Total Cache total compatibility
|
695 |
+
* SEO Update - MetaSlider ensure works together with SQ
|
696 |
+
* SEO Update - Redirection compatible
|
697 |
+
* SEO Update - Glue for Yoast SEO & AMP compatible
|
698 |
|
699 |
= 8.3.11 - 02/23/2018 =
|
700 |
+
* SEO Fix - Correct the separator to show on custom patterns
|
701 |
+
* SEO Fix - Show Title and Excerpt when Pattern option is off
|
702 |
+
* SEO Fix - Save Pattern option on Switch click
|
703 |
+
* SEO Fix - Show Save Message on Snippet save
|
704 |
+
* SEO Fix - Fixed the _sq Object notification in Patterns Domain
|
705 |
+
* SEO Update - The SEO Framework import SEO data into Squirrly SEO
|
706 |
+
* SEO Update - SEOPress compatible
|
707 |
+
* SEO Update - Cloudflare compatibility works
|
708 |
+
* SEO Update - Link Checker works to improve compatibility
|
709 |
+
* SEO Update - Open Graph for Facebook, Google+ and Twitter Card Tags
|
710 |
+
* SEO Update - Open Graph for Facebook, Google+ and Twitter Card Tags plugin works
|
711 |
+
* SEO Update - WordPress Share Buttons Plugin – AddThis compatiblity
|
712 |
+
* SEO Update - Social Media Share Buttons & Social Sharing Icons works
|
713 |
+
* SEO Update - AddToAny Share Buttons compatibility
|
714 |
|
715 |
= 8.3.10 - 02/21/2018 =
|
716 |
+
* SEO Update - Launching the Squirrly SEO Briefcase Labels
|
717 |
+
* SEO Update - Changed New Meta Lengths for all articles
|
718 |
+
* SEO Update - Added Briefcase Labels Filter in Editor Posts
|
719 |
+
* SEO Update - Wise Chat improve
|
720 |
+
* SEO Update - Contact Widgets works
|
721 |
+
* SEO Update - Social Icons compatible
|
722 |
+
* SEO Update - OG
|
723 |
+
* SEO Update - Wordfence Security – Firewall & Malware Scan compatible
|
724 |
+
* SEO Update - Google Analytics Dashboard for WP (GADWP) compatible
|
725 |
+
* SEO Update - Jetpack by WordPress.com backups and imports
|
726 |
+
* SEO Update - Elementor Page Builder compatible
|
727 |
+
* SEO Update - Elementor Page Builder SEO Live Assistant now checks it better
|
728 |
+
* SEO Update - Ninja Forms – The Easy and Powerful Forms Builder compatibility
|
729 |
|
730 |
= 8.3.08 - 02/15/2018 =
|
731 |
+
* SEO Update - Update the article:tag Meta for Facebook Open Graph (SEO update)
|
732 |
* Squirrly SEO is compatible with Cache Enabler plugin
|
733 |
+
* SEO Update - Show canonical link for Draft Posts in Squirrly SEO Snippet
|
734 |
+
* SEO Fix - Fixed the invalid email issue for longer domain extensions when connecting the blog with Squirrly SEO
|
735 |
+
* SEO Fix - Removed the Memory Filter from Frontend (SEO update)
|
736 |
+
* SEO Fix - Removed the deprecate PHP 7.2 functions
|
737 |
|
738 |
= 8.3.07 - 02/12/2018 =
|
739 |
+
* SEO Fix - Fixed the login error "Both fields are required."
|
740 |
+
* SEO Fix - Fixed deprecate call "create_function" for 7.2 or grater
|
741 |
+
* SEO Update - All-in-One WP Migration compatible
|
742 |
+
* SEO Update - WP-Optimize compatible
|
743 |
+
* SEO Update - Page Builder by SiteOrigin works with it
|
744 |
+
* SEO Update - WP Super Cache ensure working plugins
|
745 |
+
* SEO Update - WooCommerce PayPal Express Checkout Payment Gateway compatible
|
746 |
+
* SEO Update - All In One SEO Pack backup data and imports
|
747 |
+
* SEO Update - Nextend Social Login and Register (Facebook, Google, Twitter) compatible
|
748 |
+
* SEO Update - Revive Old Posts – Auto Post to Social Media compatible
|
749 |
+
* SEO Update - WP to Twitter
|
750 |
|
751 |
= 8.3.06 - 02/09/2018 =
|
752 |
+
* SEO Update - Launching Squirrly SEO 2018 Briefcase
|
753 |
+
* SEO Fix - Fixed css and js loading when multiple jquerys are loaded
|
754 |
+
* SEO Fix - Fixed compatibility with Wordpress SEO Yoast and All In One SEO
|
755 |
+
* SEO Fix - Fixed compatibility with Thrive Architect
|
756 |
* Squirrly SEO is compatible with WP 4.9.4
|
757 |
|
758 |
= 8.3.05 - 01/18/2018 =
|
759 |
+
* SEO Update - Changed Briefcase BETA to Production
|
760 |
+
* SEO Fix - Fixed sitemap.xml compatibility with more themes
|
761 |
+
* SEO Fix - Fixed memory loading limit and white screens
|
762 |
* Squirrly SEO is compatible with WP 4.9.2
|
763 |
|
764 |
= 8.3.04 - 01/15/2018 =
|
765 |
+
* SEO Update - Update the Description Meta patterns excerpt to work if shortcodes are included in description
|
766 |
+
* SEO Update - Ignore URL prefix when checking the keyword in Ranking Option
|
767 |
+
* SEO Update - Change schema.org prefix to https in jsonld
|
768 |
+
* SEO Update - Update SEO for JsonLD and Open Graph
|
769 |
+
* SEO Update - Update the Squirrly SEO Briefcase to show all the optimized keywords
|
770 |
+
* SEO Fix - Fixed the Dollar Sign issue in Meta Title and Description
|
771 |
+
* SEO Fix - Fixed small bugs
|
772 |
|
773 |
= 8.3.03 - 01/10/2018 =
|
774 |
+
* SEO Update - Remove the fontend.css from meta with the command define('SQ_NOCSS',true); in wp-config.php
|
775 |
+
* SEO Fix - Squirrly SEO SLA Images and News search
|
776 |
|
777 |
= 8.3.02 - 12/18/2017 =
|
778 |
+
* SEO Update - The hreflang Meta removal
|
779 |
+
* SEO Update - Remove WP notifications
|
780 |
+
* SEO Update - Added option to close top notifications
|
781 |
+
* SEO Update - Added option to disable the auto patterns
|
782 |
+
* SEO Update - Added option to exclude post types from frontend SEO
|
783 |
+
* SEO Update - Prevent from adding broken link canonical
|
784 |
+
* SEO Update - Increased the Max Description Meta to 320 chars for new posts
|
785 |
* Squirrly SEO is now compatible with WP 4.9.1 and more Cache Plugins
|
786 |
|
787 |
= 8.3.01 - 12/12/2017 =
|
788 |
+
* SEO Update - Added the Briefcase Beta version
|
789 |
+
* SEO Update - Added the Briefcase Keywords Section
|
790 |
+
* SEO Update - Added the Advanced Analytics section for Business Subscription
|
791 |
+
* SEO Update - Show the custom post types without feed in sitemap.xml
|
792 |
+
* SEO Update - Remove custom posts without publicly_queryable from sitemap.xml
|
793 |
+
* SEO Update - Remove the extra notifications in Advanced Analytics
|
794 |
+
* SEO Update - Optimize the Squirrly Live Assistant loading speed when the network is slow
|
795 |
|
796 |
= 8.2.29 - 12/06/2017 =
|
797 |
+
* SEO Fix - Json-LD clean text function
|
798 |
+
* SEO Fix - Fixed the Support Page
|
799 |
|
800 |
= 8.2.28 - 11/28/2017 =
|
801 |
+
* SEO Update - Added Pinterest Social Shares in Analytics
|
802 |
+
* SEO Fix - Fixed Json-LD for Woocommerce to remove duplicate declarations
|
803 |
* Squirrly SEO is now compatible with Woocommerce 3.2
|
804 |
* Squirrly SEO is now compatible with WP 4.9
|
805 |
|
806 |
= 8.2.27 - 11/27/2017 =
|
807 |
+
* SEO Fix - Fixed Sitemap for WP Multiste with subdirectories
|
808 |
+
* SEO Fix - Fixed Backup & Restore for Squirrly SEO
|
809 |
+
* SEO Fix - Fixed broken URL to Performance Analytics if the user doesn't have enough rights to view it
|
810 |
+
* SEO Fix - Fixed Save Post Keywords while in cron mode
|
811 |
+
* SEO Fix - Fixed small bugs
|
812 |
|
813 |
= 8.2.26 - 11/17/2017 =
|
814 |
+
* SEO Update - Update the Sitemap XML Custom post types in Admin Settings
|
815 |
+
* SEO Update - Added image Object in Json-LD if the post has featured image
|
816 |
+
* SEO Fix - Prevent Crons from loading if not necessary
|
817 |
+
* SEO Fix - Fixed Facebook Admin ID duplicates
|
818 |
+
* SEO Fix - Prevent 404 page in BudyPress user activity page
|
819 |
|
820 |
|
821 |
= 8.2.24 - 11/10/2017 =
|
822 |
+
* SEO Update - Update SLA to work whn other plugins have javascript errors in Edit Post
|
823 |
+
* SEO Update - Increased the connection wait time to prevent the error message from showing on low connectivity
|
824 |
+
* SEO Update - Update Frontend to work with WP-Rocket plugin
|
825 |
+
* SEO Fix - Fixed Typos and Broken links
|
826 |
|
827 |
= 8.2.23 - 11/07/2017 =
|
828 |
+
* SEO Update - Update Squirrly SEO Snippet Frontend is optional in Squirrly > SEO Settings Advanced
|
829 |
+
* SEO Fix - Fixed the SEO METAs in frontend for some theme
|
830 |
+
* SEO Fix - Fixed the SEO METAs for Wp Super cache and other cache plugins
|
831 |
+
* SEO Fix - Fixed the Sitemap to load for all subdirectories
|
832 |
+
* SEO Fix - Fixed compatibility issues with other plugins
|
833 |
|
834 |
|
835 |
= 8.2.21 - 11/04/2017 =
|
836 |
+
* SEO Update - Update Frontend to load with the known cache plugins
|
837 |
+
* SEO Update - Updated the SLA to recognize more languages and keywords with special chars
|
838 |
+
* SEO Update - Remove the Mark tag on save in case it passes javascript
|
839 |
+
* SEO Fix - Fixed the SLA mark option to remain active on click
|
840 |
+
* SEO Fix - Fixed the SLA to recognize the Squirrly Snippet when loaded
|
841 |
+
* SEO Fix - Fixed the Doublin Core name error on line 29
|
842 |
* Squirrly SEO is now compatible with WP 4.8.3
|
843 |
|
844 |
= 8.2.20 – 11/02/2017 =
|
845 |
+
* SEO Fix - Fixed the Excerpt Only patterh
|
846 |
+
* SEO Fix - Fixed Squirrly Snippet in case is empty or has special chars
|
847 |
|
848 |
= 8.2.19 – 10/30/2017 =
|
849 |
+
* SEO Update - Update Squirrly Live Assistant to use less resources and work faster
|
850 |
+
* SEO Update - Added the Post Publish option in Squirrly Split Window
|
851 |
+
* SEO Fix - Fixed Greeck keywords optimization fixed
|
852 |
+
* SEO Fix - Fixed the Keyword Research not to display the error message and to be able to redo the search
|
853 |
+
* SEO Fix - Fixed the Squirrly Snippet's Title snd Description when using special chars
|
854 |
|
855 |
= 8.2.18 – 10/27/2017 =
|
856 |
+
* SEO Update - Update compatibility with Polylang plugin
|
857 |
+
* SEO Fix - Increased connection time with out API in case of slow internet access
|
858 |
+
* SEO Fix - Fixed the yellow highlight in frontend
|
859 |
+
* SEO Fix - Fixed Squirrly SLA loading in post edit
|
860 |
+
* SEO Fix - Fixed small bugs with article optimization in my.squirrly.co
|
861 |
|
862 |
= 8.2.17 – 10/24/2017 =
|
863 |
+
* SEO Fix - Fixed the SLA loading issue for older WP versions
|
864 |
+
* SEO Fix - Fixed the Keyword one letter when loading a new post/page
|
865 |
+
* SEO Fix - Corrected the Facebook App ID
|
866 |
|
867 |
= 8.2.15 – 10/18/2017 =
|
868 |
+
* SEO Update - Increased the loading speed for favicon.icon and robots.txt
|
869 |
+
* SEO Update - Update the SEO Audit with the latest METAs
|
870 |
+
* SEO Update - Register the Subservers for WP Multisite
|
871 |
+
* SEO Fix - Fixed the import process when the tables have different encoding
|
872 |
+
* SEO Fix - Fixed the Squirrly Snippet in frontend in case the js and css are not loading
|
873 |
+
* SEO Fix - Show error message in case SLA is not loading
|
874 |
|
875 |
= 8.2.14 – 10/12/2017 =
|
876 |
+
* SEO Fix - Fixed compatibility with Beaver Builder
|
877 |
+
* SEO Fix - Increased security on SEO restore in Import SEO section
|
878 |
|
879 |
= 8.2.13 – 10/11/2017 =
|
880 |
+
* SEO Fix - Fixed the snippet preview in case some features are disabled
|
881 |
+
* SEO Fix - Fixed the Title and Description Lenght in Frontend
|
882 |
+
* SEO Fix - Added the option to import the old SEO settings from Squirrly SEO
|
883 |
|
884 |
= 8.2.11 – 10/10/2017 =
|
885 |
+
* SEO Fix - Fixed remove meta from Elementor
|
886 |
+
* SEO Fix - Fixed small bugs for Squirrly Split Window
|
887 |
|
888 |
= 8.2.10 – 10/10/2017 =
|
889 |
+
* SEO Update - Launching Squirrly 2018 Steve
|
890 |
* See all the new features here: https://howto.squirrly.co/kb/slides/
|
891 |
|
892 |
= 8.0.5 – 08/14/2017 =
|
893 |
+
* SEO Fix - Fixed HTTPS jquery load in sitemap.xml
|
894 |
* SEO Squirrly is compatible with WP 4.8.1
|
895 |
|
896 |
= 8.0.4 – 07/24/2017 =
|
897 |
+
* SEO Fix - Fixed minor bugs
|
898 |
+
* SEO Fix - Fixed loading https classes in SSL backend
|
899 |
|
900 |
= 8.0.2 – 05/20/2017 =
|
901 |
+
* SEO Update - Update the Json-LD with the last update from google
|
902 |
* Squirrly SEO is compatible with WP 4.8
|
903 |
|
904 |
= 8.0.1 - 05/08/2017 =
|
905 |
+
* SEO Update - Made the XML Sitemap for Google Compatible with more Wordpress Themes
|
906 |
+
* SEO Update - Update the validation link for Twitter
|
907 |
|
908 |
= 8.0.0 - 05/01/2017 =
|
909 |
+
* SEO Update - Squirrly SEO 2018 version
|
910 |
|
911 |
= 7.0.6 - 04/15/2017 =
|
912 |
+
* SEO Update - Add Facebook Publisher in Meta
|
913 |
+
* SEO Fix - Fixed Duplicate Head tag
|
914 |
+
* SEO Fix - Fixed Facebook Admin ID
|
915 |
|
916 |
= 7.0.5 - 04/04/2017 =
|
917 |
+
* SEO Update - Squirrly removes Title Tag Duplicates with the meta duplicate removal tool
|
918 |
+
* SEO Update - Increase loading speed
|
919 |
+
* SEO Fix - Don't Load Squirrly for 404 pages
|
920 |
* Squirrly SEO is Compatible with WP 4.7.4
|
921 |
|
922 |
= 7.0.4 - 03/20/2017 =
|
923 |
+
* SEO Update - Removed the filter with private IP check in Squirrly SEO Performance Analytics
|
924 |
+
* SEO Update - Updated the Squirrly SEO Live Assistant for Media Library
|
925 |
+
* SEO Update - Added Site SEO Audit Tool Progress in https://my.squirrly.co for each blog
|
926 |
+
* SEO Fix - Fixed small bugs
|
927 |
|
928 |
= 7.0.3 - 03/19/2017 =
|
929 |
+
* SEO Update - Updated the Json LD for Woocommerce 3.0
|
930 |
+
* SEO Fix - Fixed bugs from the New SEO Keyword Research tool
|
931 |
+
* SEO Fix - Fixed Headline for Google Structured Tool
|
932 |
+
* SEO Fix - Fixed creating the new blogs on our server
|
933 |
+
* SEO Fix - Fixed the sitemap with the same image in case you set a front-end image
|
934 |
|
935 |
= 7.0.1 - 03/01/2017 =
|
936 |
+
* SEO Fix - Fixed the localhost verification for Performance Analytics
|
937 |
+
* SEO Fix - Remove sitemap comments and white spaces from cache plugins
|
938 |
|
939 |
= 7.0.0 - 02/10/2017 =
|
940 |
+
* SEO Update - Includes the Squirrly 2017 features and updates
|
941 |
+
* SEO Update - Updates in Keyword Research algorithm for marketing research tools
|
942 |
+
* SEO Update - Updates in Squirrly Live Assistant
|
943 |
+
* SEO Update - Updates in search engine optimization for 2017
|
944 |
+
* SEO Update - Updates for Copyright Free Images in the Inspiration box feature
|
945 |
+
* SEO Update - Updates in Squirrly SEO Advanced Settings
|
946 |
+
* SEO Update - Updates in the Squirrly Admin Menu
|
947 |
+
* SEO Update - Updates in https://my.squirrly.co panel
|
948 |
+
* SEO Update - Made all the Changes to G17 features. We announced them last week
|
949 |
|
950 |
= 6.3.1 =
|
951 |
+
* SEO Update - Inform users with multiple active subscriptions
|
952 |
+
* SEO Update - Updated terms and conditions
|
953 |
+
* SEO Update - Added more channels for support in the Feedback and Support sections
|
954 |
+
* SEO Update - Fixed Facebook Admin ID for Profile and Pages
|
955 |
+
* SEO Update - Changed the Theme for Squirrly SEO Settings and Advanced sections
|
956 |
+
* SEO Update - Fixed Typos and Broken Links
|
957 |
+
* SEO Update - Updated the SEO Keyword Research tool for Long Tail Keyword
|
958 |
+
* SEO Update - Optimized the loading speed in case of poor connection with the API
|
959 |
+
* SEO Update - Pass the SSL issue for API calls
|
960 |
+
* SEO Update - Fixed the Squirrly SEO audit tool for free users
|
961 |
+
* SEO Update - Fixed Pay With a Tweet button
|
962 |
+
* SEO Update - Added google.us in Ranking Options
|
963 |
+
* SEO Update - Updated settings for ecommerce seo strategy for product category pages
|
964 |
|
965 |
= 6.3.0 =
|
966 |
+
* SEO Update - Updated the Facebook and google tracking code
|
967 |
+
* SEO Update - Improved the Facebook Pixel Feature to work with Woocommerce
|
968 |
+
* SEO Update - Corrected the google tracking code
|
969 |
+
* SEO Update - Improved the communication with the API server
|
970 |
|
971 |
= 6.2.8 =
|
972 |
+
* SEO Update - Added forced keyword update in Squirrly SEO Settings
|
973 |
+
* SEO Update - Added a new Country in the Rank Options section
|
974 |
+
* SEO Fix - Fixed the Canonical link for some WP Themes
|
975 |
|
976 |
= 6.2.6 =
|
977 |
+
* SEO Fix - Fixed Canonical link for Facebook Open Graph Wordpress
|
978 |
+
* SEO Fix - Don’t show the Canonical Link if Squirrly SEO is off
|
979 |
+
* SEO Fix - Fixed keyword saving on post update
|
980 |
* Happy New Year!
|
981 |
|
982 |
= 6.2.5 =
|
983 |
* SEO Update - Added Instagram and Pinterest in Social Json-LD
|
984 |
+
* SEO Fix - Fixed the connection issue in some cases when a keyword is modified
|
985 |
+
* SEO Fix - Fixed memory load when not using Squirrly SEO
|
986 |
|
987 |
= 6.2.4 =
|
988 |
+
* SEO Fix - Fixed bug for Google Analytics AMP version
|
989 |
+
* SEO Fix - Fixed both title and description when including price value
|
990 |
* Squirrly SEO is Compatible with WP 4.7
|
991 |
|
992 |
= 6.2.3 =
|
993 |
+
* SEO Update - Added Facebook Open Graph Wordpress Image for First Page when the first page is a blog feed
|
994 |
+
* SEO Update - Added AMP Analytics from Google
|
995 |
+
* SEO Fix - Fixed small CSS issues in post editor
|
996 |
+
* SEO Fix - Fixed duplicate title removal in the meta duplicate removal tool
|
997 |
|
998 |
= 6.2.2 =
|
999 |
+
* SEO Update - Update SEO features
|
1000 |
+
* SEO Fix - Fixed SEO Page Optimization for Post Feed Page and Home Page
|
1001 |
* Squirrly SEO is Compatible with WP 4.6.1
|
1002 |
|
1003 |
= 6.2.0 =
|
1004 |
+
* SEO Update - Added Facebook Pixel Tracking Code in Squirrly > SEO > Tracking Tools
|
1005 |
+
* SEO Update - Added more Copyright Free images in Squirrly SEO Live Assistant.
|
1006 |
+
* SEO Update - Added the Pixabay.com library to the Inspiration Box
|
1007 |
+
* SEO Update - Added the Unsplash.com library to the Copyright free image resource
|
1008 |
+
* SEO Update - Added the Pexels.com library so you can have more Copyright free images
|
1009 |
+
* SEO Fix - Fixed loading the Seo Live Assistant when a page is not optimized for a keyword
|
1010 |
+
* SEO Fix - Fixed the connection issues between the plugin and API when a post is saved
|
1011 |
+
* SEO Fix - Fixed the Squirrly Snippet when connected as Editor or Author
|
1012 |
|
1013 |
= 6.1.6 =
|
1014 |
+
* SEO Update - Added custom title and description for the Posts Page in Settings > Reading > Posts page
|
1015 |
+
* SEO Fix - Fixed the JSONLD phone and prefix information
|
1016 |
+
* SEO Fix - Fixed typos
|
1017 |
|
1018 |
= 6.1.5 =
|
1019 |
+
* SEO Update - July 2016 Security updates.
|
1020 |
+
* SEO Update - Added google.co.id in Google Ranking Options
|
1021 |
+
* SEO Fix - Fixed vulnerabilities between users who have rights in your site
|
1022 |
+
* SEO Fix - Fixed some Squirrly SEO Snippet issues on first save
|
1023 |
|
1024 |
= 6.1.3 =
|
1025 |
+
* SEO Update - Added Pinterest Rich Pin Validator for Woocommerce Products
|
1026 |
+
* SEO Fix - Pinterest Rich Pin Validator Option
|
1027 |
|
1028 |
= 6.1.2 =
|
1029 |
+
* SEO Update - We moved js files on cloud for faster loading
|
1030 |
+
* SEO Fix - Update - Update Rank Check to the latest Google Requirements
|
1031 |
+
* SEO Fix - Fixed the google profile link
|
1032 |
+
* SEO Fix - Corrected some old related links
|
1033 |
* Squirrly SEO is Compatible with WP 4.5.3
|
1034 |
|
1035 |
= 6.1.0 =
|
1036 |
+
* SEO Fix - Fixed the Front Page SEO to work with more WP themes
|
1037 |
+
* SEO Fix - Fixed compatibility with PolyLang plugin
|
1038 |
+
* SEO Fix - Fixed compatibility with Customizr theme
|
1039 |
+
* SEO Fix - Fixed Squirrly SEO Snippet for Arabic language
|
1040 |
* Squirrly SEO is Compatible with WP 4.5.2
|
1041 |
|
1042 |
= 6.0.9 =
|
1043 |
+
* SEO Fix - Fixed Squirrly Analytics in Performance Analytics
|
1044 |
* Squirrly SEO is Compatible with WP 4.5
|
1045 |
|
1046 |
= 6.0.6 =
|
1047 |
+
* SEO Update - Added dateModified, ImageObject, mainEntityOfPage, publisher
|
1048 |
+
* SEO Update - Update the Squirrly SEO Snippet
|
1049 |
+
* SEO Fix - Fixed the JSON AMP for articles
|
1050 |
|
1051 |
= 6.0.4 =
|
1052 |
+
* SEO Fix - Fixed the snippet to save long text
|
1053 |
+
* SEO Fix - Fixed the woocommerce title and description for a category
|
1054 |
+
* SEO Fix - Fix the SEO for more themes
|
1055 |
|
1056 |
= 6.0.3 =
|
1057 |
+
* SEO Fix - Fixed compatibility with NextGen Gallery plugin
|
1058 |
* Squirrly SEO is Compatible with Wordpress 4.4.3
|
1059 |
|
1060 |
= 6.0.2 =
|
1061 |
+
* SEO Update - Added style for the site feed in Squirrly > SEO
|
1062 |
+
* SEO Fix - Fixed the hook for feed when Squirrly SEO sitemap is active
|
1063 |
+
* SEO Fix - Fixed the SEO for more WP themes
|
1064 |
|
1065 |
= 6.0.0 =
|
1066 |
+
* SEO Update - The last stable version of Squirrly with all the features included:
|
1067 |
+
* SEO Update - Squirrly SEO is compatible with more WP themes
|
1068 |
+
* SEO Update - Twitter Card latest updates (summary and summary_large_image)
|
1069 |
+
* SEO Update - Facebook Open Graph Wordpress updates (multiple images, videos)
|
1070 |
+
* SEO Update - Sitemap with more videos like Wistia.com, FLV
|
1071 |
+
* SEO Update - External Canonical Link
|
1072 |
+
* SEO Update - Woocommerce & Instapage compatibility
|
1073 |
* Squirrly SEO is Compatible with WP 4.4.1
|
1074 |
|
1075 |
= 5.3.1 =
|
1076 |
+
* SEO Update - Added the Twitter Summary Type option in Squirrly > SEO > Twitter Card
|
1077 |
+
* SEO Fix - Fixed the same Title SEO issues for some WP themes
|
1078 |
+
* SEO Fix - Fixed small bugs
|
1079 |
+
* SEO Fix - Changed broken link in Content Audit tool
|
1080 |
|
1081 |
= 5.2.9 =
|
1082 |
+
* SEO Update - Optimized the way SEO is loading in every page
|
1083 |
+
* SEO Update - Optimized SEO for Instapage Plugin
|
1084 |
+
* SEO Update - Updated the Google Analytics Tracking code
|
1085 |
+
* SEO Fix - Fixed the compatibility issue in Performance Analytics
|
1086 |
+
* SEO Fix - Added twitter summary for large images
|
1087 |
|
1088 |
= 5.2.7 =
|
1089 |
+
* SEO Update - Added Squirrly SEO Canonical Link in Post Edit page
|
1090 |
+
* SEO Update - Added Norway in Google Rank Option
|
1091 |
+
* SEO Update - Set the Squirrly SEO Snippet OG image as shared image
|
1092 |
+
* SEO Update - Set Squirrly SEO Live Assistant to work with more multilanguage plugins
|
1093 |
+
* SEO Fix - Fixed the image section in Squirrly Inspiration Box to improve the research tools for writers
|
1094 |
|
1095 |
= 5.2.6 =
|
1096 |
+
* SEO Update - Compatible with Smart Security Tools plugin
|
1097 |
+
* SEO Update - Added the google.ee in Squirrly Rank Option
|
1098 |
+
* SEO Fix - Fixed the Squirrly SEO Keyword not to be added in Tags if is switched off in Squirrly > Settings
|
1099 |
|
1100 |
= 5.2.5 =
|
1101 |
+
* SEO Update - Improved the Squirrly SEO Keyword Research from the marketing research tools
|
1102 |
+
* SEO Fix - Fixed the sitemap.xml with videos included
|
1103 |
+
* SEO Fix - Changed to relative URL in sitemap.xml for multisites
|
1104 |
|
1105 |
= 5.2.3 =
|
1106 |
+
* SEO Update - Updated to the last on-page SEO requirements
|
1107 |
+
* SEO Update - Increased the Squirrly speed in post editor
|
1108 |
+
* SEO Fix - Fixed the Seo Live Assistant to verify keywords with commas
|
1109 |
+
* SEO Fix - Fixed the Seo Live Assistant to work with HTTPS dashboard for Wikis and Keyword suggestion
|
1110 |
+
* SEO Fix - Fixed the OG:image:width issue when the width is null
|
1111 |
+
* SEO Fix - Fixed the HTTPS connection when the general settings are not set correctly
|
1112 |
+
* SEO Fix - Fixed minor bugs
|
1113 |
* Squirrly SEO is Compatible with WordPress 4.3.1
|
1114 |
|
1115 |
= 5.2.2 =
|
1116 |
+
* SEO Update - Add the last google updates for JSON-LD Structured Data
|
1117 |
+
* SEO Update - Make XML Sitemap for Google work for a large number of articles
|
1118 |
|
1119 |
= 5.2.1 =
|
1120 |
+
* SEO Fix - Fixed the Head Buffer for some themes
|
1121 |
* Squirrly SEO is Compatible with WordPress 4.3
|
1122 |
|
1123 |
= 5.2.0 =
|
1124 |
+
* SEO Update - Added 17 more languages in Squirrly SEO Keyword Research Tool to improve the research tools for writers
|
1125 |
+
* SEO Update - Added the focused language for Social Media in Squirrly > SEO
|
1126 |
+
* SEO Update - Added Squirrly SEO Performance Analytics in custom post types selected from Squirrly SEO > Settings
|
1127 |
+
* SEO Update - Add top menu link for Rank check
|
1128 |
* Squirrly SEO is Compatible with WordPress 4.2.4
|
1129 |
|
1130 |
= 5.1.6 =
|
1131 |
+
* SEO Update - Improved the rank check to prevent Google temporary IP block
|
1132 |
+
* SEO Update - Improved the plugin speed in backend
|
1133 |
+
* SEO Update - Add the optimization progress bar in the post/page list
|
1134 |
+
* SEO Fix - Fixed the Incorrect Hreflang META implementation
|
1135 |
+
* SEO Fix - Fixed the restore the settings from backup validator
|
1136 |
* Squirrly SEO is Compatible with WP 4.2.3
|
1137 |
|
1138 |
= 5.1.2 =
|
1139 |
+
* SEO Update - Added new features in Open Graph Generator for the Posts/Pages
|
1140 |
+
* SEO Update - Added the SEO Settings Backup and Restore
|
1141 |
+
* SEO Update - Improved the SEO Live Assistant to recognize more languages and characters
|
1142 |
+
* SEO Update - Improved the communication with the API Server
|
1143 |
+
* SEO Update - Added the custom size image for Open Graph Generator in Squirrly SEO Snippet
|
1144 |
+
* SEO Fix - Fixed the Analytics notification bar
|
1145 |
+
* SEO Fix - Fixed the wp_is_writable for older wp versions
|
1146 |
+
* SEO Fix - Fixed the Open Graph Generator not to include non-embed videos in meta
|
1147 |
+
* SEO Fix - Fixed the Sitemap Ping option to remain switched on when is selected
|
1148 |
|
1149 |
= 5.0.3 =
|
1150 |
+
* SEO Update - Prevent canonical, prev, next meta duplicate inserted by other SEO plugins with the meta duplicate removal tool
|
1151 |
+
* SEO Fix - Fixed snippet custom title and description to change when other SEO plugins are installed
|
1152 |
+
* SEO Fix - Fixed javascript issue in login page
|
1153 |
|
1154 |
= 5.0.0 =
|
1155 |
+
* SEO Update - Changed Squirrly SEO look
|
1156 |
+
* SEO Update - Compatible with WP eCommerce plugin
|
1157 |
+
* SEO Update - Made SEO improvements for Woocommerce plugin
|
1158 |
+
* SEO Update - Interactive learning for the entire Squirrly SEO plugin
|
1159 |
+
* SEO Update - Faster post save for long text and remote images
|
1160 |
+
* SEO Update - Settings and SEO check improved
|
1161 |
+
* SEO Update - Added robots.txt for multisites with security
|
1162 |
+
* SEO Update - Added sitemap for multisite SEO
|
1163 |
+
* SEO Update - Added sitemap for images and videos for each article
|
1164 |
+
* SEO Update - Added the Json LD in Structured Data META
|
1165 |
+
* SEO Update - Added the social linked Data for Json-LD and publisher
|
1166 |
+
* SEO Update - Added the favicon.ico for multisites SEO
|
1167 |
+
* SEO Update - Added the icons for apple devices
|
1168 |
+
* SEO Update - Added the SEO progress in post editor
|
1169 |
+
* SEO Update - Added the SEO Star option in Dashboard
|
1170 |
+
* SEO Fix - Fixed bugs for multisites and made it compatible with WP 4.2
|
1171 |
+
* SEO Fix - Fixed the snippet title and description special chars
|
1172 |
+
* SEO Fix - Fixed the custom fields variable in post editor
|
1173 |
+
* SEO Fix - Fixed the site icon and added the site icon for multisites SEO
|
1174 |
+
* SEO Fix - Fixed Sitemap for default permalink option
|
1175 |
+
* SEO Fix - Fixed the SEO Analytics and the Rank updates
|
1176 |
+
* SEO Fix - Fixed the SEO for First Page if the Home Page is not a static page
|
1177 |
+
* SEO Fix - Fixed the SEO for the First Page when it starts with woocommerce shop
|
1178 |
|
1179 |
* Changelog Archive: <a href="https://plugin.squirrly.co/squirrly-seo-changelog/">https://plugin.squirrly.co/squirrly-seo-changelog/</a>
|
1180 |
|
1189 |
* Irina Pogor - Content Writer
|
1190 |
* Ana Darstaru - Chief of Customer Service
|
1191 |
* Lucian Nertan - VP of Agency
|
1192 |
+
* Rares Papita - CHO
|
|
|
|
|
1193 |
|
1194 |
== Investors ==
|
1195 |
* Ibrahim Evsan, serial entrepreneur, one of the best known bloggers in Germany
|
1277 |
- For advanced users, you can fine-tune everything.
|
1278 |
- You can override any title and set any META description and any META keywords you want.
|
1279 |
- Real Time Snippet Preview (checks the frontend of each article, not just a preview)
|
1280 |
+
- Integrated with other Ecommerce Plugins like WooCommerce, WP Ecommerce, MarketPress, Ready!, Shopp for your ecommerce seo strategy
|
1281 |
- Compatibility with all the other plugins, like Auto Meta, Ultimate Tag Warrior and others.
|
1282 |
+
- Works best with multisite SEO
|
1283 |
- SEO error check and fix the META duplicates with the duplicate removal tool
|
1284 |
|
1285 |
And the best ones that we have (and the others don't):
|
1302 |
|
1303 |
As for the images, you find in the Inspiration Box, you can use **the Copyright-Free images that we offer**, to make sure you will not have any legal problems. Follow the license-compliance guidance we offer for each of them.
|
1304 |
= How to install Facebook Pixel on Wordpress ? =
|
1305 |
+
If you plan on tracking your action from Facebook ad campaigns what you have to is first install Squirrly. Then how to install Facebook Pixel on Wordpress is resumed to adding your Pixel ID in the plugin.
|
1306 |
You'll find it in your dashboard in Squirrly>>SEO Settings>> Tracking Tools at the bottom of the page.
|
1307 |
+
You can check the integration to your site has been done properly with the <a href="https://chrome.google.com/webstore/detail/facebook-pixel-helper/fdgfkebogiimcoedlicjlajpkdmockpc?hl=en">Chrome extension from Facebook. </a>
|
1308 |
|
1309 |
= How can Squirrly help me with the JSON-LD structure ?=
|
1310 |
+
In the Squirrly dashboard you can set and personalize the information that appear in Google when people search for your organisation.
|
1311 |
|
1312 |
= Can I use Squirrly seo on mobile? =
|
1313 |
Yes, on IOS and ANDROID, it works both through the browser and Wordpress app
|
1325 |
|
1326 |
But it all depends on how you have setup your Wordpress until now. Some people use Squirrly seo plugin only for the Content Optimization with the Live Assistant part, some use it to check their SEO stats and see where they need to improve their Wordpress seo.
|
1327 |
|
1328 |
+
= Why is Squirrly Keyword Research better than Google Keyword Planner for SEO strategies? =
|
1329 |
|
1330 |
Because our tool focuses on the information your need to better rank on Google not to get your Ads in front of more people. Google Keyword Planner is a great research tool if you are creating Adwords campaigns. For SEO our keyword generator tool is better.
|
1331 |
|
squirrly.php
CHANGED
@@ -1,19 +1,19 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
Copyright (c) 2012-
|
5 |
The copyrights to the software code in this file are licensed under the (revised) BSD open source license.
|
6 |
|
7 |
Plugin Name: Squirrly SEO 2018 (Briefcase)
|
8 |
-
Plugin URI:
|
9 |
Description: SEO By Squirrly is for the NON-SEO experts. Get Excellent Seo with Better Content, Ranking and Analytics. For Both Humans and Search Bots.<BR> <a href="http://my.squirrly.co/user" target="_blank"><strong>Check your profile</strong></a>
|
10 |
Author: Squirrly SEO
|
11 |
-
Version: 8.
|
12 |
-
Author URI:
|
13 |
*/
|
14 |
|
15 |
/* SET THE CURRENT VERSION ABOVE AND BELOW */
|
16 |
-
define('SQ_VERSION', '8.
|
17 |
|
18 |
/* Call config files */
|
19 |
if (file_exists(dirname(__FILE__) . '/config/config.php')) {
|
@@ -26,7 +26,6 @@ if (file_exists(dirname(__FILE__) . '/config/config.php')) {
|
|
26 |
require_once(_SQ_CLASSES_DIR_ . 'BlockController.php');
|
27 |
|
28 |
SQ_Classes_ObjController::getClass('SQ_Classes_FrontController');
|
29 |
-
SQ_Classes_ObjController::getClass('SQ_Classes_Tools');
|
30 |
|
31 |
if (is_admin() || is_network_admin()) {
|
32 |
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
Copyright (c) 2012-2019, SEO Squirrly.
|
5 |
The copyrights to the software code in this file are licensed under the (revised) BSD open source license.
|
6 |
|
7 |
Plugin Name: Squirrly SEO 2018 (Briefcase)
|
8 |
+
Plugin URI: https://www.squirrly.co
|
9 |
Description: SEO By Squirrly is for the NON-SEO experts. Get Excellent Seo with Better Content, Ranking and Analytics. For Both Humans and Search Bots.<BR> <a href="http://my.squirrly.co/user" target="_blank"><strong>Check your profile</strong></a>
|
10 |
Author: Squirrly SEO
|
11 |
+
Version: 8.4.07
|
12 |
+
Author URI: https://www.squirrly.co
|
13 |
*/
|
14 |
|
15 |
/* SET THE CURRENT VERSION ABOVE AND BELOW */
|
16 |
+
define('SQ_VERSION', '8.4.07');
|
17 |
|
18 |
/* Call config files */
|
19 |
if (file_exists(dirname(__FILE__) . '/config/config.php')) {
|
26 |
require_once(_SQ_CLASSES_DIR_ . 'BlockController.php');
|
27 |
|
28 |
SQ_Classes_ObjController::getClass('SQ_Classes_FrontController');
|
|
|
29 |
|
30 |
if (is_admin() || is_network_admin()) {
|
31 |
|
view/BlockAccount.php
CHANGED
@@ -23,12 +23,17 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
23 |
<div id="sq_settings_title"><?php _e('Squirrly account information', _SQ_PLUGIN_NAME_); ?> </div>
|
24 |
<div id="sq_settings_title" style="text-align: right">
|
25 |
<input id="sq_goto_dashboard" class="sq_goto_dashboard" type="button" value="<?php _e('Go to dashboard', _SQ_PLUGIN_NAME_) ?> »"/>
|
26 |
-
<a href="<?php echo _SQ_DASH_URL_ ?>login/?token=<?php echo SQ_Classes_Tools::
|
27 |
<br style="clear: both;">
|
28 |
</div>
|
29 |
</div>
|
30 |
<?php } ?>
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
32 |
<div id="sq_left">
|
33 |
|
34 |
<?php if (SQ_Classes_Tools::getOption('sq_api') <> '') { ?>
|
23 |
<div id="sq_settings_title"><?php _e('Squirrly account information', _SQ_PLUGIN_NAME_); ?> </div>
|
24 |
<div id="sq_settings_title" style="text-align: right">
|
25 |
<input id="sq_goto_dashboard" class="sq_goto_dashboard" type="button" value="<?php _e('Go to dashboard', _SQ_PLUGIN_NAME_) ?> »"/>
|
26 |
+
<a href="<?php echo _SQ_DASH_URL_ ?>login/?token=<?php echo SQ_Classes_Tools::getToken() ?>&redirect_to=<?php echo _SQ_DASH_URL_ ?>user/dashboard" target="_blank" type="button" title="<?php _e('See ALL of Your Activity so Far', _SQ_PLUGIN_NAME_) ?>"><?php _e('See ALL of Your Activity so Far', _SQ_PLUGIN_NAME_) ?> »</a>
|
27 |
<br style="clear: both;">
|
28 |
</div>
|
29 |
</div>
|
30 |
<?php } ?>
|
31 |
+
|
32 |
+
<?php $menu = SQ_Classes_Tools::getOption('menu');
|
33 |
+
if ($menu['show_tutorial']) { ?>
|
34 |
+
<div id="sq_helpaccountside" class="sq_helpside"></div>
|
35 |
+
<?php } ?>
|
36 |
+
|
37 |
<div id="sq_left">
|
38 |
|
39 |
<?php if (SQ_Classes_Tools::getOption('sq_api') <> '') { ?>
|
view/BlockAffiliate.php
CHANGED
@@ -39,7 +39,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
39 |
<ul class="sq_settings_affiliate_info">
|
40 |
<li>
|
41 |
<div>
|
42 |
-
<span><?php echo sprintf(__('- Up to
|
43 |
</div>
|
44 |
</li>
|
45 |
<li>
|
@@ -57,64 +57,12 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
57 |
|
58 |
</legend>
|
59 |
<div>
|
60 |
-
<p style="text-align: center">
|
61 |
-
<?php echo sprintf(__('Before joining our affiliate program, please read the Terms of Use %shttps://www.squirrly.co/terms/%s.', _SQ_PLUGIN_NAME_),'<a href="https://www.squirrly.co/terms/" target="_blank">','</a>'); ?>
|
62 |
-
</p>
|
63 |
-
|
64 |
<p class="sq_settings_affiliate_bigbutton" style="margin-bottom:35px;">
|
65 |
-
|
66 |
-
if (SQ_Classes_Tools::getOption('sq_api') <> '') {
|
67 |
-
if (SQ_Classes_Tools::getOption('sq_affiliate_link') <> '') {
|
68 |
-
echo '<span>' . SQ_Classes_Tools::getOption('sq_affiliate_link') . '</span>';
|
69 |
-
echo '<span class="sq_settings_info">' . __('To redirect users to your site, just change "squirrly.co" with your domain.', _SQ_PLUGIN_NAME_) . '</span>';
|
70 |
-
} else {
|
71 |
-
?>
|
72 |
-
<input type="submit" name="sq_affiliate_link" value="<?php _e('Generate affiliate link', _SQ_PLUGIN_NAME_) ?> »" /><?php
|
73 |
-
}
|
74 |
-
}
|
75 |
-
?>
|
76 |
</p>
|
77 |
-
|
78 |
-
<?php
|
79 |
-
if (SQ_Classes_Tools::getOption('sq_api') <> '') {
|
80 |
-
if (SQ_Classes_Tools::getOption('sq_affiliate_link') <> '') {
|
81 |
-
echo __('Your affiliate account is set and ready to go. Above you have the affiliate link. ', _SQ_PLUGIN_NAME_);
|
82 |
-
echo '<br />';
|
83 |
-
echo sprintf(__('Check your affiliate page: %sAffiliate page%s', _SQ_PLUGIN_NAME_), '<a href="' . _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Tools::getOption('sq_api') . '&redirect_to=' . _SQ_DASH_URL_ . 'user/affiliate' . '" target="_blank" style="font-weight:bold">', '</a>');
|
84 |
-
}
|
85 |
-
} else {
|
86 |
-
echo __('After you connect to Squirrly you can begin to use your free Squirrly affiliate link immediately!', _SQ_PLUGIN_NAME_);
|
87 |
-
}
|
88 |
-
?>
|
89 |
-
|
90 |
</div>
|
91 |
-
|
92 |
</fieldset>
|
93 |
-
<?php if (SQ_Classes_Tools::getOption('sq_affiliate_link') <> '') { ?>
|
94 |
-
<fieldset>
|
95 |
-
<legend>
|
96 |
-
<span class="sq_legend_title"><?php _e('Squirrly banners you can use', _SQ_PLUGIN_NAME_); ?></span>
|
97 |
-
</legend>
|
98 |
-
<div>
|
99 |
-
<ul class="sq_settings_affiliate_info">
|
100 |
-
<?php
|
101 |
-
$sq_affiliate_images[] = _SQ_THEME_URL_ . 'img/banners/banner1.jpg';
|
102 |
-
$sq_affiliate_images[] = _SQ_THEME_URL_ . 'img/banners/banner1.png';
|
103 |
-
$sq_affiliate_images[] = _SQ_THEME_URL_ . 'img/banners/banner2.jpg';
|
104 |
-
$sq_affiliate_images[] = _SQ_THEME_URL_ . 'img/banners/banner2.png';
|
105 |
-
|
106 |
-
foreach ($sq_affiliate_images as $sq_affiliate_image) {
|
107 |
-
echo '<li><a href="' . SQ_Classes_Tools::getOption('sq_affiliate_link') . '" target="_blank"><img src="' . $sq_affiliate_image . '" alt="Seo Plugin by Squirrly" /></a>';
|
108 |
-
echo '<span class="sq_affiliate_banner" >';
|
109 |
-
echo '<textarea style="width: 500px; height: 45px;" onclick="this.focus(); this.select();"><a href="' . SQ_Classes_Tools::getOption('sq_affiliate_link') . '" target="_blank" title="Seo Plugin by Squirrly"><img src="' . $sq_affiliate_image . '" /></a></textarea>';
|
110 |
-
echo '</span></li>';
|
111 |
-
}
|
112 |
-
?>
|
113 |
-
</ul>
|
114 |
-
</div>
|
115 |
|
116 |
-
</fieldset>
|
117 |
-
<?php } ?>
|
118 |
</div>
|
119 |
<br style="clear: both;"/>
|
120 |
<div id="sq_settings_title" style="text-align: right">
|
39 |
<ul class="sq_settings_affiliate_info">
|
40 |
<li>
|
41 |
<div>
|
42 |
+
<span><?php echo sprintf(__('- Up to 30%s recurring commission', _SQ_PLUGIN_NAME_), '%'); ?></span>
|
43 |
</div>
|
44 |
</li>
|
45 |
<li>
|
57 |
|
58 |
</legend>
|
59 |
<div>
|
|
|
|
|
|
|
|
|
60 |
<p class="sq_settings_affiliate_bigbutton" style="margin-bottom:35px;">
|
61 |
+
<span><a href="https://squirrly.idevaffiliate.com" target="_blank">https://squirrly.idevaffiliate.com</a></span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
</div>
|
|
|
64 |
</fieldset>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
|
|
|
|
66 |
</div>
|
67 |
<br style="clear: both;"/>
|
68 |
<div id="sq_settings_title" style="text-align: right">
|
view/BlockAnalytics.php
CHANGED
@@ -110,26 +110,11 @@
|
|
110 |
<div class="sq_analytics_values_value">' . $task->value->facebookShare . '</div>
|
111 |
<div class="sq_rank_sprite sq_rank_flag_facebook"></div>
|
112 |
</li>
|
113 |
-
<li>
|
114 |
-
<div class="sq_analytics_values_title">' . __('Facebook likes') . '</div>
|
115 |
-
<div class="sq_analytics_values_value">' . $task->value->facebookLike . '</div>
|
116 |
-
<div class="sq_rank_sprite sq_rank_flag_facebook_like"></div>
|
117 |
-
</li>
|
118 |
<li>
|
119 |
<div class="sq_analytics_values_title">' . __('Twitter shares') . '</div>
|
120 |
<div class="sq_analytics_values_value">' . $task->value->twitterShare . '</div>
|
121 |
<div class="sq_rank_sprite sq_rank_flag_twitter"></div>
|
122 |
</li>
|
123 |
-
<li>
|
124 |
-
<div class="sq_analytics_values_title">' . __('Google+ shares') . '</div>
|
125 |
-
<div class="sq_analytics_values_value">' . $task->value->plusShare . '</div>
|
126 |
-
<div class="sq_rank_sprite sq_rank_flag_googleplus"></div>
|
127 |
-
</li>
|
128 |
-
<li>
|
129 |
-
<div class="sq_analytics_values_title">' . __('LinkedIn Shares') . '</div>
|
130 |
-
<div class="sq_analytics_values_value">' . $task->value->linkedinShare . '</div>
|
131 |
-
<div class="sq_rank_sprite sq_rank_flag_linkedin"></div>
|
132 |
-
</li>
|
133 |
<li>
|
134 |
<div class="sq_analytics_values_title">' . __('StumbleUpon shares') . '</div>
|
135 |
<div class="sq_analytics_values_value">' . $task->value->stumbleShare . '</div>
|
110 |
<div class="sq_analytics_values_value">' . $task->value->facebookShare . '</div>
|
111 |
<div class="sq_rank_sprite sq_rank_flag_facebook"></div>
|
112 |
</li>
|
|
|
|
|
|
|
|
|
|
|
113 |
<li>
|
114 |
<div class="sq_analytics_values_title">' . __('Twitter shares') . '</div>
|
115 |
<div class="sq_analytics_values_value">' . $task->value->twitterShare . '</div>
|
116 |
<div class="sq_rank_sprite sq_rank_flag_twitter"></div>
|
117 |
</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
<li>
|
119 |
<div class="sq_analytics_values_title">' . __('StumbleUpon shares') . '</div>
|
120 |
<div class="sq_analytics_values_value">' . $task->value->stumbleShare . '</div>
|
view/BlockAudit.php
CHANGED
@@ -34,7 +34,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
34 |
<span><?php echo sprintf(__('%sMonitors your progress, week by week.%s You’ll get to see if your site audit has improved since you last checked it. ', _SQ_PLUGIN_NAME_), '<strong>', '</strong>'); ?></span>
|
35 |
<span><?php echo sprintf(__('%sAnalyze any single article.%s See how it improves over time.', _SQ_PLUGIN_NAME_), '<strong>', '</strong>'); ?></span>
|
36 |
<span><?php echo sprintf(__('%sLearn More About The Site Audit%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/site-seo-audit-tool" target="_blank">', '</a>'); ?></span>
|
37 |
-
<span><?php echo sprintf(__('%sRequest an Audit Now%s', _SQ_PLUGIN_NAME_), '<a href="' . _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Tools::
|
38 |
|
39 |
</legend>
|
40 |
|
@@ -47,12 +47,12 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
47 |
<p class="sq_audit_score"><?php echo __('Score', _SQ_PLUGIN_NAME_) . ': <span>' . $view->blog->score . '/100</span>'; ?></p>
|
48 |
<p class="sq_audit_date"><?php echo __('Date', _SQ_PLUGIN_NAME_) . ': <span>' . date(get_option('date_format'), strtotime($view->blog->datetime)) . '</span>'; ?></p>
|
49 |
<p class="sq_settings_bigbutton" style="margin-bottom:35px;">
|
50 |
-
<a href="<?php echo _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Tools::
|
51 |
</p>
|
52 |
<?php } else { ?>
|
53 |
<p><?php _e('It seems that no audit has been generated yet. You can request an audit down below. It should be ready in 5-10 minutes.', _SQ_PLUGIN_NAME_); ?>:</p>
|
54 |
<p class="sq_settings_bigbutton" style="margin-bottom:35px;">
|
55 |
-
<a href="<?php echo _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Tools::
|
56 |
</p>
|
57 |
<?php } ?>
|
58 |
</li>
|
@@ -62,7 +62,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
62 |
<?php _e('This is an example of a Site Audit', _SQ_PLUGIN_NAME_); ?>:
|
63 |
</p>
|
64 |
<p>
|
65 |
-
<a href="<?php echo _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Tools::
|
66 |
<img src="https://ps.w.org/squirrly-seo/trunk/screenshot-7.png" alt="" style="max-width: 520px">
|
67 |
</a>
|
68 |
</p>
|
34 |
<span><?php echo sprintf(__('%sMonitors your progress, week by week.%s You’ll get to see if your site audit has improved since you last checked it. ', _SQ_PLUGIN_NAME_), '<strong>', '</strong>'); ?></span>
|
35 |
<span><?php echo sprintf(__('%sAnalyze any single article.%s See how it improves over time.', _SQ_PLUGIN_NAME_), '<strong>', '</strong>'); ?></span>
|
36 |
<span><?php echo sprintf(__('%sLearn More About The Site Audit%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/site-seo-audit-tool" target="_blank">', '</a>'); ?></span>
|
37 |
+
<span><?php echo sprintf(__('%sRequest an Audit Now%s', _SQ_PLUGIN_NAME_), '<a href="' . _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Tools::getToken() . '" target="_blank">', '</a>'); ?></span>
|
38 |
|
39 |
</legend>
|
40 |
|
47 |
<p class="sq_audit_score"><?php echo __('Score', _SQ_PLUGIN_NAME_) . ': <span>' . $view->blog->score . '/100</span>'; ?></p>
|
48 |
<p class="sq_audit_date"><?php echo __('Date', _SQ_PLUGIN_NAME_) . ': <span>' . date(get_option('date_format'), strtotime($view->blog->datetime)) . '</span>'; ?></p>
|
49 |
<p class="sq_settings_bigbutton" style="margin-bottom:35px;">
|
50 |
+
<a href="<?php echo _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Tools::getToken() ?>" target="_blank"><?php _e('See the Audit', _SQ_PLUGIN_NAME_) ?> »</a>
|
51 |
</p>
|
52 |
<?php } else { ?>
|
53 |
<p><?php _e('It seems that no audit has been generated yet. You can request an audit down below. It should be ready in 5-10 minutes.', _SQ_PLUGIN_NAME_); ?>:</p>
|
54 |
<p class="sq_settings_bigbutton" style="margin-bottom:35px;">
|
55 |
+
<a href="<?php echo _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Tools::getToken() ?>" target="_blank"><?php _e('Request an Audit Now', _SQ_PLUGIN_NAME_) ?> »</a>
|
56 |
</p>
|
57 |
<?php } ?>
|
58 |
</li>
|
62 |
<?php _e('This is an example of a Site Audit', _SQ_PLUGIN_NAME_); ?>:
|
63 |
</p>
|
64 |
<p>
|
65 |
+
<a href="<?php echo _SQ_DASH_URL_ . 'login/?token=' . SQ_Classes_Tools::getToken() ?>" target="_blank">
|
66 |
<img src="https://ps.w.org/squirrly-seo/trunk/screenshot-7.png" alt="" style="max-width: 520px">
|
67 |
</a>
|
68 |
</p>
|
view/BlockBriefcaseKeywords.php
CHANGED
@@ -1,348 +1,368 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
<?php } ?>
|
12 |
|
13 |
-
<?php _e('Briefcase Keywords', _SQ_PLUGIN_NAME_); ?>
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
<?php } ?>
|
19 |
-
<?php } else { ?>
|
20 |
-
<a href="?page=sq_posts" class="btn btn-default"><?php _e('Go to Analytics', _SQ_PLUGIN_NAME_); ?></a>
|
21 |
-
<?php } ?>
|
22 |
-
</div>
|
23 |
-
</div>
|
24 |
-
<div class="panel-body">
|
25 |
-
|
26 |
-
<div class="col-md-12">
|
27 |
-
<form method="get" style="float: right">
|
28 |
-
<input type="search" id="post-search-input" autofocus name="skeyword" value="<?php echo htmlspecialchars(SQ_Classes_Tools::getValue('skeyword')) ?>"/>
|
29 |
-
<input type="hidden" name="page" value="<?php echo SQ_Classes_Tools::getValue('page', 'sq_briefcase') ?>"/>
|
30 |
-
<input type="submit" class="button" value="<?php echo __('Search Keyword', _SQ_PLUGIN_NAME_) ?>"/>
|
31 |
-
<div class="sq_filter_label" style="clear: both; margin: 3px 0; max-width: 400px;">
|
32 |
-
<span style="float: left;font-size: 11px;margin-right: 5px; line-height: 22px; cursor: pointer" onclick="jQuery('.sq_add_labels_dialog').modal('show')"><?php echo __('Filter by labels', _SQ_PLUGIN_NAME_) ?>:</span>
|
33 |
-
<?php if (isset($view->labels) && !empty($view->labels)) {
|
34 |
-
$keyword_labels = SQ_Classes_Tools::getValue('slabel', array());
|
35 |
-
foreach ($view->labels as $label) {
|
36 |
-
?>
|
37 |
-
<input type="checkbox" name="slabel[]" id="search_checkbox_<?php echo $label->id ?>" style="display: none;" value="<?php echo $label->id ?>" <?php echo(in_array($label->id, $keyword_labels) ? 'checked' : '') ?> />
|
38 |
-
<label for="search_checkbox_<?php echo $label->id ?>" class="sq_circle_label fa <?php echo(in_array($label->id, $keyword_labels) ? 'sq_active' : '') ?>" data-id="<?php echo $label->id ?>" style="background-color: <?php echo $label->color ?>" title="<?php echo $label->name ?>"></label>
|
39 |
-
<?php
|
40 |
-
|
41 |
-
}
|
42 |
-
} ?>
|
43 |
-
</div>
|
44 |
-
</form>
|
45 |
|
46 |
-
|
47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
<div class="modal-header">
|
55 |
-
<button type="button" class="close" data-dismiss="modal">×</button>
|
56 |
-
<h4 class="modal-title"><?php _e('Add a new Keyword', _SQ_PLUGIN_NAME_); ?></h4>
|
57 |
-
</div>
|
58 |
-
<div class="modal-body">
|
59 |
-
<div class="form-group">
|
60 |
-
<label for="sq_keyword"><?php _e('Keyword', _SQ_PLUGIN_NAME_); ?></label>
|
61 |
-
<input type="text" class="form-control" id="sq_keyword" placeholder="<?php echo __('Enter a Keyword (2-4 words)', _SQ_PLUGIN_NAME_) ?>"/>
|
62 |
-
</div>
|
63 |
-
<div class="form-group m-t-md">
|
64 |
-
<label style="display: block; margin-right: 5px;line-height: 25px;"><?php _e('Select Labels', _SQ_PLUGIN_NAME_); ?></label>
|
65 |
-
<?php if (isset($view->labels) && !empty($view->labels)) {
|
66 |
-
foreach ($view->labels as $label) {
|
67 |
-
?>
|
68 |
-
<input type="checkbox" name="sq_labels" id="checkbox_<?php echo $label->id ?>" style="display: none;" value="<?php echo $label->id ?>"/>
|
69 |
-
<label for="checkbox_<?php echo $label->id ?>" class="sq_checkbox_label fa" data-id="<?php echo $label->id ?>" style="background-color: <?php echo $label->color ?>" title="<?php echo $label->name ?>"><?php echo $label->name ?></label>
|
70 |
-
<?php
|
71 |
-
}
|
72 |
-
} else { ?>
|
73 |
-
<button class="btn btn-warning" onclick="jQuery('.sq_add_labels_dialog').modal('show')"><?php _e('Add new Label', _SQ_PLUGIN_NAME_); ?></button>
|
74 |
|
75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
-
|
79 |
-
|
80 |
-
|
|
|
81 |
</div>
|
82 |
</div>
|
83 |
</div>
|
84 |
-
</div>
|
85 |
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
</div>
|
93 |
-
<div class="modal-body">
|
94 |
-
<div class="form-group">
|
95 |
-
<label for="sq_labelname"><?php _e('Label Name', _SQ_PLUGIN_NAME_); ?></label>
|
96 |
-
<input type="text" class="form-control" id="sq_labelname" maxlength="35"/>
|
97 |
-
</div>
|
98 |
-
<div class="form-group">
|
99 |
-
<label for="sq_labelcolor" style="display: block;"><?php _e('Label Color', _SQ_PLUGIN_NAME_); ?></label>
|
100 |
-
<input type="text" id="sq_labelcolor"/>
|
101 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
|
103 |
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
|
126 |
|
|
|
127 |
</div>
|
128 |
</div>
|
129 |
-
</div>
|
130 |
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
</div>
|
138 |
-
<div class="modal-body">
|
139 |
-
<div class="form-group">
|
140 |
-
<label for="sq_labelname"><?php _e('Label Name', _SQ_PLUGIN_NAME_); ?></label>
|
141 |
-
<input type="text" class="form-control" id="sq_labelname" maxlength="35"/>
|
142 |
</div>
|
143 |
-
<div class="
|
144 |
-
<
|
145 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
</div>
|
147 |
-
</div>
|
148 |
-
<div class="modal-footer">
|
149 |
-
<input type="hidden" id="sq_labelid"/>
|
150 |
-
<button type="button" id="sq_save_label" class="btn btn-success"><?php _e('Save Label', _SQ_PLUGIN_NAME_); ?></button>
|
151 |
</div>
|
152 |
</div>
|
153 |
</div>
|
154 |
-
</div>
|
155 |
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
|
161 |
-
<div class="panel-body">
|
162 |
-
<?php if (isset($view->keywords) && !empty($view->keywords)) { ?>
|
163 |
|
164 |
-
|
165 |
-
<thead>
|
166 |
-
<tr>
|
167 |
-
<th style="width: 5%;">#</th>
|
168 |
-
<th style="width: 40%;"><?php echo __('Keyword', _SQ_PLUGIN_NAME_) ?></th>
|
169 |
-
<th style="width: 5%;" align="right"><?php echo __('Used', _SQ_PLUGIN_NAME_) ?></th>
|
170 |
-
<th style="width: 37%;"><?php echo __('Data', _SQ_PLUGIN_NAME_) ?></th>
|
171 |
-
<th style="width: 8%;"></th>
|
172 |
-
<th style="width: 2%;"></th>
|
173 |
-
</tr>
|
174 |
-
</thead>
|
175 |
-
<tbody>
|
176 |
-
<?php
|
177 |
-
|
178 |
-
|
179 |
-
foreach ($view->keywords as $key => $row) {
|
180 |
-
|
181 |
-
$research = '';
|
182 |
-
$keyword_labels = array();
|
183 |
-
if ($row->research <> '') {
|
184 |
-
$research = json_decode($row->research);
|
185 |
-
}
|
186 |
-
?>
|
187 |
-
<tr id="sq_row_<?php echo $row->id ?>">
|
188 |
-
<td scope="row"><?php echo($view->index + $key + 1) ?></td>
|
189 |
-
<td>
|
190 |
-
<?php if (!empty($row->labels)) {
|
191 |
-
foreach ($row->labels as $label) {
|
192 |
-
$keyword_labels[] = $label->lid;
|
193 |
-
?>
|
194 |
-
<span class="sq_circle_label fa" style="background-color: <?php echo $label->color ?>" data-id="<?php echo $label->lid ?>" title="<?php echo $label->name ?>"></span>
|
195 |
-
<?php
|
196 |
-
}
|
197 |
-
} ?>
|
198 |
-
<span style="display: block; clear: left; float: left"><?php echo $row->keyword ?></span>
|
199 |
-
|
200 |
-
<span onclick="jQuery('#sq_label_manage_popup<?php echo $key ?>').modal('show')" title="<?php _e('Assign Labels to this Keyword', _SQ_PLUGIN_NAME_); ?>" class="sq_label_manage fa fa-plus-square"></span>
|
201 |
-
<div id="sq_label_manage_popup<?php echo $key ?>" class="sq_label_manage_popup modal fade" role="dialog">
|
202 |
-
<div class="modal-dialog" style="width: 600px;">
|
203 |
-
<div class="modal-content">
|
204 |
-
<div class="modal-header m-b-md">
|
205 |
-
<button type="button" class="close" data-dismiss="modal">×</button>
|
206 |
-
<h4 class="modal-title"><?php echo sprintf(__('Select Labels for: %s', _SQ_PLUGIN_NAME_), '<strong style="font-size: 115%">' . $row->keyword . '</strong>'); ?></h4>
|
207 |
-
</div>
|
208 |
-
<div class="modal-body" style="min-height: 50px; display: table; margin: 0 20px 10px 20px;">
|
209 |
-
<?php if (isset($view->labels) && !empty($view->labels)) {
|
210 |
-
foreach ($view->labels as $label) {
|
211 |
-
?>
|
212 |
-
<input type="checkbox" name="sq_labels" id="popup_checkbox_<?php echo $key ?>_<?php echo $label->id ?>" style="display: none;" value="<?php echo $label->id ?>" <?php echo(in_array($label->id, $keyword_labels) ? 'checked' : '') ?> />
|
213 |
-
<label for="popup_checkbox_<?php echo $key ?>_<?php echo $label->id ?>" class="sq_checkbox_label fa <?php echo(in_array($label->id, $keyword_labels) ? 'sq_active' : '') ?>" style="background-color: <?php echo $label->color ?>" title="<?php echo $label->name ?>"><?php echo $label->name ?></label>
|
214 |
-
<?php
|
215 |
-
}
|
216 |
-
|
217 |
-
} else { ?>
|
218 |
-
<button class="btn btn-warning" onclick="jQuery('.sq_add_labels_dialog').modal('show')" data-dismiss="modal"><?php _e('Add new Label', _SQ_PLUGIN_NAME_); ?></button>
|
219 |
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
</div>
|
226 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
|
|
|
228 |
</div>
|
229 |
-
</div>
|
230 |
|
231 |
-
|
232 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
|
234 |
-
<td class="sq_open_subrow" align="right" style="cursor: pointer" data-id="<?php echo $row->id ?>" data-keyword="<?php echo htmlspecialchars($row->keyword) ?>"><?php echo($row->count > 0 ? $row->count . ' <i class="fa fa-sort-desc fa_showmore" style="color: rgb(88, 158, 228)"></i>' : '0') ?> </td>
|
235 |
-
<td>
|
236 |
-
<ul class="sq_row_stats"><?php
|
237 |
-
if ($research <> '') {
|
238 |
-
if ($research->sc) {
|
239 |
?>
|
|
|
240 |
<li>
|
241 |
-
<i class="fa fa-
|
242 |
-
<span style="color: <?php echo $research->sc->color ?>" title="<?php echo __('Competition', _SQ_PLUGIN_NAME_) ?>"><?php echo($research->sc->text <> '' ? $research->sc->text : __('-', _SQ_PLUGIN_NAME_)) ?></span>
|
243 |
</li>
|
244 |
-
|
245 |
-
}
|
246 |
-
if ($research->sv) {
|
247 |
-
?>
|
248 |
-
<li>
|
249 |
-
<i class="fa fa-search" style="color: <?php echo $research->sv->color ?>" title="<?php echo __('SEO Search Volume', _SQ_PLUGIN_NAME_) ?>"></i>
|
250 |
-
<span style="color: <?php echo $research->sv->color ?>" title="<?php echo __('SEO Search Volume', _SQ_PLUGIN_NAME_) ?>"><?php echo($research->sv->text <> '' ? $research->sv->text : __('-', _SQ_PLUGIN_NAME_)) ?></span>
|
251 |
-
</li>
|
252 |
-
<?php
|
253 |
-
}
|
254 |
-
if ($research->tw) {
|
255 |
-
?>
|
256 |
-
<li>
|
257 |
-
<i class="fa fa-comments-o" style="color: <?php echo $research->tw->color ?>" title="<?php echo __('Recent discussions', _SQ_PLUGIN_NAME_) ?>"></i>
|
258 |
-
<span style="color: <?php echo $research->tw->color ?>" title="<?php echo __('Recent discussions', _SQ_PLUGIN_NAME_) ?>"><?php echo($research->tw->text <> '' ? $research->tw->text : __('-', _SQ_PLUGIN_NAME_)) ?></span>
|
259 |
-
</li>
|
260 |
-
<?php
|
261 |
-
}
|
262 |
-
if ($research->td) {
|
263 |
-
?>
|
264 |
<li>
|
265 |
-
<
|
266 |
-
<span style="color: <?php echo $research->td->color ?>" title="<?php echo __('Trending', _SQ_PLUGIN_NAME_) ?>"><?php echo($research->td->text <> '' ? $research->td->text : __('-', _SQ_PLUGIN_NAME_)) ?></span>
|
267 |
</li>
|
268 |
<?php
|
269 |
}
|
270 |
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
<td>
|
288 |
-
<button class="btn btn-info sq_research_selectit" data-post="<?php echo admin_url('post-new.php') ?>" data-keyword="<?php echo htmlspecialchars($row->keyword) ?>"><?php echo __('Use Keyword', _SQ_PLUGIN_NAME_) ?></button>
|
289 |
-
</td>
|
290 |
-
<td style="position: relative">
|
291 |
-
<button type="button" class="btn btn-default sq_delete_keyword" style="position: absolute; left: -10px;" data-id="<?php echo $row->id ?>" title="<?php _e('Delete', _SQ_PLUGIN_NAME_); ?>">x</button>
|
292 |
-
</td>
|
293 |
-
</tr>
|
294 |
-
<tr id="sq_subrow_<?php echo $row->id ?>" class="sq_subrow" style="display: none">
|
295 |
-
<td colspan="6" style="padding: 0 !important;"></td>
|
296 |
-
</tr>
|
297 |
-
<?php
|
298 |
-
}
|
299 |
-
?>
|
300 |
|
301 |
-
|
302 |
-
|
303 |
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
|
|
331 |
</div>
|
332 |
</div>
|
333 |
</div>
|
334 |
</div>
|
335 |
</div>
|
336 |
-
|
337 |
-
|
338 |
-
|
|
|
339 |
</div>
|
340 |
|
341 |
</div>
|
342 |
-
|
343 |
</div>
|
|
|
344 |
</div>
|
345 |
|
346 |
</div>
|
347 |
-
|
348 |
-
</div>
|
1 |
+
<?php
|
2 |
+
if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
3 |
+
?>
|
4 |
+
<div id="sq_settings">
|
5 |
+
<span class="sq_icon"></span>
|
6 |
+
|
7 |
+
<div id="sq_settings_title"><?php _e('Connect to Squirrly Data Cloud', _SQ_PLUGIN_NAME_); ?> </div>
|
8 |
+
<div id="sq_settings_login">
|
9 |
+
<?php SQ_Classes_ObjController::getClass('SQ_Core_Blocklogin')->init(); ?>
|
10 |
+
</div>
|
|
|
11 |
|
|
|
12 |
|
13 |
+
<input id="sq_goto_dashboard" class="sq_goto_dashboard" style="display:none; margin: 0 auto; width: 500px; padding: 0px 10px;" type="button" value="«<?php _e('START HERE', _SQ_PLUGIN_NAME_) ?> »"/>
|
14 |
+
</div>
|
15 |
+
<?php
|
16 |
+
} else { ?>
|
17 |
+
<div id="sq_settings">
|
18 |
+
<div class="col-md-12 no-t-m m-b-lg no-p">
|
19 |
+
<div class="panel panel-transparent">
|
20 |
+
<div class="panel-heading">
|
21 |
+
<span class="sq_briefcase_icon"></span>
|
22 |
+
<div id="sq_posts_title">
|
23 |
+
<?php if (SQ_Classes_Tools::getIsset('skeyword')) { ?>
|
24 |
+
<div class="sq_serp_settings_button m-t-sm" style="float: right; margin-right: 10px;">
|
25 |
+
<button type="button" class="btn btn-info p-v-xs" onclick="location.href = '?page=sq_briefcase';" style="cursor: pointer"><?php echo __('Show All') ?></button>
|
26 |
+
</div>
|
27 |
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
+
<?php _e('Briefcase Keywords', _SQ_PLUGIN_NAME_); ?>
|
30 |
+
|
31 |
+
<?php if (!SQ_Classes_Tools::getOption('sq_google_serp_active')) { ?>
|
32 |
+
<?php if (isset($view->keywords) && !empty($view->keywords)) { ?>
|
33 |
+
<a href="<?php echo SQ_Classes_Tools::getBusinessLink() ?>" class="btn btn-warning"><?php _e('See the Google Ranks for these Keywords', _SQ_PLUGIN_NAME_); ?></a>
|
34 |
+
<?php } ?>
|
35 |
+
<?php } else { ?>
|
36 |
+
<a href="?page=sq_posts" class="btn btn-default"><?php _e('Go to Analytics', _SQ_PLUGIN_NAME_); ?></a>
|
37 |
+
<?php } ?>
|
38 |
+
</div>
|
39 |
</div>
|
40 |
+
<div class="panel-body">
|
41 |
+
|
42 |
+
<div class="col-md-12">
|
43 |
+
<form method="get" style="float: right">
|
44 |
+
<input type="search" id="post-search-input" autofocus name="skeyword" value="<?php echo htmlspecialchars(SQ_Classes_Tools::getValue('skeyword')) ?>"/>
|
45 |
+
<input type="hidden" name="page" value="<?php echo SQ_Classes_Tools::getValue('page', 'sq_briefcase') ?>"/>
|
46 |
+
<input type="submit" class="button" value="<?php echo __('Search Keyword', _SQ_PLUGIN_NAME_) ?>"/>
|
47 |
+
<div class="sq_filter_label" style="clear: both; margin: 3px 0; max-width: 400px;">
|
48 |
+
<span style="float: left;font-size: 11px;margin-right: 5px; line-height: 22px; cursor: pointer" onclick="jQuery('.sq_add_labels_dialog').modal('show')"><?php echo __('Filter by labels', _SQ_PLUGIN_NAME_) ?>:</span>
|
49 |
+
<?php if (isset($view->labels) && !empty($view->labels)) {
|
50 |
+
$keyword_labels = SQ_Classes_Tools::getValue('slabel', array());
|
51 |
+
foreach ($view->labels as $label) {
|
52 |
+
?>
|
53 |
+
<input type="checkbox" name="slabel[]" id="search_checkbox_<?php echo $label->id ?>" style="display: none;" value="<?php echo $label->id ?>" <?php echo(in_array($label->id, $keyword_labels) ? 'checked' : '') ?> />
|
54 |
+
<label for="search_checkbox_<?php echo $label->id ?>" class="sq_circle_label fa <?php echo(in_array($label->id, $keyword_labels) ? 'sq_active' : '') ?>" data-id="<?php echo $label->id ?>" style="background-color: <?php echo $label->color ?>" title="<?php echo $label->name ?>"></label>
|
55 |
+
<?php
|
56 |
|
57 |
+
}
|
58 |
+
} ?>
|
59 |
+
</div>
|
60 |
+
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
|
62 |
+
<button class="btn btn-success" onclick="jQuery('.sq_add_keyword_dialog').modal('show')"><?php _e('Add new keyword', _SQ_PLUGIN_NAME_); ?></button>
|
63 |
+
<button class="btn btn-warning" onclick="jQuery('.sq_add_labels_dialog').modal('show')"><?php _e('Manage Labels', _SQ_PLUGIN_NAME_); ?></button>
|
64 |
+
</div>
|
65 |
+
|
66 |
+
<div class="col-md-12 m-b-lg">
|
67 |
+
<div class="sq_add_keyword_dialog modal fade" role="dialog">
|
68 |
+
<div class="modal-dialog">
|
69 |
+
<div class="modal-content">
|
70 |
+
<div class="modal-header">
|
71 |
+
<button type="button" class="close" data-dismiss="modal">×</button>
|
72 |
+
<h4 class="modal-title"><?php _e('Add a new Keyword', _SQ_PLUGIN_NAME_); ?></h4>
|
73 |
</div>
|
74 |
+
<div class="modal-body">
|
75 |
+
<div class="form-group">
|
76 |
+
<label for="sq_keyword"><?php _e('Keyword', _SQ_PLUGIN_NAME_); ?></label>
|
77 |
+
<input type="text" class="form-control" id="sq_keyword" placeholder="<?php echo __('Enter a Keyword (2-4 words)', _SQ_PLUGIN_NAME_) ?>"/>
|
78 |
+
</div>
|
79 |
+
<div class="form-group m-t-md">
|
80 |
+
<label style="display: block; margin-right: 5px;line-height: 25px;"><?php _e('Select Labels', _SQ_PLUGIN_NAME_); ?></label>
|
81 |
+
<?php if (isset($view->labels) && !empty($view->labels)) {
|
82 |
+
foreach ($view->labels as $label) {
|
83 |
+
?>
|
84 |
+
<input type="checkbox" name="sq_labels" id="checkbox_<?php echo $label->id ?>" style="display: none;" value="<?php echo $label->id ?>"/>
|
85 |
+
<label for="checkbox_<?php echo $label->id ?>" class="sq_checkbox_label fa" data-id="<?php echo $label->id ?>" style="background-color: <?php echo $label->color ?>" title="<?php echo $label->name ?>"><?php echo $label->name ?></label>
|
86 |
+
<?php
|
87 |
+
}
|
88 |
+
} else { ?>
|
89 |
+
<button class="btn btn-warning" onclick="jQuery('.sq_add_labels_dialog').modal('show')"><?php _e('Add new Label', _SQ_PLUGIN_NAME_); ?></button>
|
90 |
+
|
91 |
+
<?php } ?>
|
92 |
+
</div>
|
93 |
|
94 |
+
</div>
|
95 |
+
<div class="modal-footer">
|
96 |
+
<button type="button" id="sq_save_keyword" class="btn btn-success"><?php _e('Add Keyword', _SQ_PLUGIN_NAME_); ?></button>
|
97 |
+
</div>
|
98 |
</div>
|
99 |
</div>
|
100 |
</div>
|
|
|
101 |
|
102 |
+
<div class="sq_add_labels_dialog modal fade" role="dialog">
|
103 |
+
<div class="modal-dialog">
|
104 |
+
<div class="modal-content">
|
105 |
+
<div class="modal-header">
|
106 |
+
<button type="button" class="close" data-dismiss="modal">×</button>
|
107 |
+
<h4 class="modal-title"><?php _e('Add New Label', _SQ_PLUGIN_NAME_); ?></h4>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
</div>
|
109 |
+
<div class="modal-body">
|
110 |
+
<div class="form-group">
|
111 |
+
<label for="sq_labelname"><?php _e('Label Name', _SQ_PLUGIN_NAME_); ?></label>
|
112 |
+
<input type="text" class="form-control" id="sq_labelname" maxlength="35"/>
|
113 |
+
</div>
|
114 |
+
<div class="form-group">
|
115 |
+
<label for="sq_labelcolor" style="display: block;"><?php _e('Label Color', _SQ_PLUGIN_NAME_); ?></label>
|
116 |
+
<input type="text" id="sq_labelcolor"/>
|
117 |
+
</div>
|
118 |
|
119 |
|
120 |
+
</div>
|
121 |
+
<div class="modal-footer" style="border-bottom: 1px solid #ddd;">
|
122 |
+
<button type="button" id="sq_save_label" class="btn btn-success"><?php _e('Add Label', _SQ_PLUGIN_NAME_); ?></button>
|
123 |
+
</div>
|
124 |
+
<div class="modal-header">
|
125 |
+
<h4 class="modal-title"><?php _e('Your Labels', _SQ_PLUGIN_NAME_); ?></h4>
|
126 |
+
</div>
|
127 |
+
<div class="modal-body" style="min-height: 50px; display: table; width: 100%;">
|
128 |
+
<?php if (isset($view->labels) && !empty($view->labels)) {
|
129 |
+
foreach ($view->labels as $label) {
|
130 |
+
?>
|
131 |
+
<div class="sq_saved_label" style="background-color: <?php echo $label->color ?>" title="<?php echo $label->name ?>">
|
132 |
+
<span class="sq_delete_label fa fa-remove" data-id="<?php echo $label->id ?>"></span>
|
133 |
+
<span class="sq_edit_label fa fa-pencil" data-id="<?php echo $label->id ?>" data-name="<?php echo $label->name ?>" data-color="<?php echo $label->color ?>"></span>
|
134 |
+
<span class="sq_saved_label_name"><?php echo $label->name ?></span>
|
135 |
|
136 |
+
</div>
|
137 |
+
<?php
|
138 |
+
}
|
139 |
+
} ?>
|
140 |
+
</div>
|
141 |
|
142 |
|
143 |
+
</div>
|
144 |
</div>
|
145 |
</div>
|
|
|
146 |
|
147 |
+
<div class="sq_edit_label_dialog modal fade" role="dialog">
|
148 |
+
<div class="modal-dialog">
|
149 |
+
<div class="modal-content">
|
150 |
+
<div class="modal-header">
|
151 |
+
<button type="button" class="close" data-dismiss="modal">×</button>
|
152 |
+
<h4 class="modal-title"><?php _e('Edit Label', _SQ_PLUGIN_NAME_); ?></h4>
|
|
|
|
|
|
|
|
|
|
|
153 |
</div>
|
154 |
+
<div class="modal-body">
|
155 |
+
<div class="form-group">
|
156 |
+
<label for="sq_labelname"><?php _e('Label Name', _SQ_PLUGIN_NAME_); ?></label>
|
157 |
+
<input type="text" class="form-control" id="sq_labelname" maxlength="35"/>
|
158 |
+
</div>
|
159 |
+
<div class="form-group">
|
160 |
+
<label for="sq_labelcolor"><?php _e('Label Color', _SQ_PLUGIN_NAME_); ?></label>
|
161 |
+
<input type="text" id="sq_labelcolor"/>
|
162 |
+
</div>
|
163 |
+
</div>
|
164 |
+
<div class="modal-footer">
|
165 |
+
<input type="hidden" id="sq_labelid"/>
|
166 |
+
<button type="button" id="sq_save_label" class="btn btn-success"><?php _e('Save Label', _SQ_PLUGIN_NAME_); ?></button>
|
167 |
</div>
|
|
|
|
|
|
|
|
|
168 |
</div>
|
169 |
</div>
|
170 |
</div>
|
|
|
171 |
|
172 |
+
<div class="tablenav top">
|
173 |
+
<?php echo $view->listTable->pagination('top') ?>
|
174 |
+
</div>
|
175 |
+
<div class="panel panel-white">
|
176 |
+
|
177 |
+
<div class="panel-body">
|
178 |
+
<?php if (isset($view->keywords) && !empty($view->keywords)) { ?>
|
179 |
+
|
180 |
+
<table class="table">
|
181 |
+
<thead>
|
182 |
+
<tr>
|
183 |
+
<th style="width: 5%;">#</th>
|
184 |
+
<th style="width: 40%;"><?php echo __('Keyword', _SQ_PLUGIN_NAME_) ?></th>
|
185 |
+
<th style="width: 5%;" align="right"><?php echo __('Used', _SQ_PLUGIN_NAME_) ?></th>
|
186 |
+
<th style="width: 37%;"><?php echo __('Data', _SQ_PLUGIN_NAME_) ?></th>
|
187 |
+
<th style="width: 8%;"></th>
|
188 |
+
<th style="width: 2%;"></th>
|
189 |
+
</tr>
|
190 |
+
</thead>
|
191 |
+
<tbody>
|
192 |
+
<?php
|
193 |
|
|
|
|
|
194 |
|
195 |
+
foreach ($view->keywords as $key => $row) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
|
197 |
+
$research = '';
|
198 |
+
$keyword_labels = array();
|
199 |
+
if ($row->research <> '') {
|
200 |
+
$research = json_decode($row->research);
|
201 |
+
}
|
202 |
+
?>
|
203 |
+
<tr id="sq_row_<?php echo $row->id ?>">
|
204 |
+
<td scope="row"><?php echo($view->index + $key + 1) ?></td>
|
205 |
+
<td>
|
206 |
+
<?php if (!empty($row->labels)) {
|
207 |
+
foreach ($row->labels as $label) {
|
208 |
+
$keyword_labels[] = $label->lid;
|
209 |
+
?>
|
210 |
+
<span class="sq_circle_label fa" style="background-color: <?php echo $label->color ?>" data-id="<?php echo $label->lid ?>" title="<?php echo $label->name ?>"></span>
|
211 |
+
<?php
|
212 |
+
}
|
213 |
+
} ?>
|
214 |
+
<span style="display: block; clear: left; float: left"><?php echo $row->keyword ?></span>
|
215 |
+
|
216 |
+
<span onclick="jQuery('#sq_label_manage_popup<?php echo $key ?>').modal('show')" title="<?php _e('Assign Labels to this Keyword', _SQ_PLUGIN_NAME_); ?>" class="sq_label_manage fa fa-plus-square"></span>
|
217 |
+
<div id="sq_label_manage_popup<?php echo $key ?>" class="sq_label_manage_popup modal fade" role="dialog">
|
218 |
+
<div class="modal-dialog" style="width: 600px;">
|
219 |
+
<div class="modal-content">
|
220 |
+
<div class="modal-header m-b-md">
|
221 |
+
<button type="button" class="close" data-dismiss="modal">×</button>
|
222 |
+
<h4 class="modal-title"><?php echo sprintf(__('Select Labels for: %s', _SQ_PLUGIN_NAME_), '<strong style="font-size: 115%">' . $row->keyword . '</strong>'); ?></h4>
|
223 |
</div>
|
224 |
+
<div class="modal-body" style="min-height: 50px; display: table; margin: 0 20px 10px 20px;">
|
225 |
+
<?php if (isset($view->labels) && !empty($view->labels)) {
|
226 |
+
foreach ($view->labels as $label) {
|
227 |
+
?>
|
228 |
+
<input type="checkbox" name="sq_labels" id="popup_checkbox_<?php echo $key ?>_<?php echo $label->id ?>" style="display: none;" value="<?php echo $label->id ?>" <?php echo(in_array($label->id, $keyword_labels) ? 'checked' : '') ?> />
|
229 |
+
<label for="popup_checkbox_<?php echo $key ?>_<?php echo $label->id ?>" class="sq_checkbox_label fa <?php echo(in_array($label->id, $keyword_labels) ? 'sq_active' : '') ?>" style="background-color: <?php echo $label->color ?>" title="<?php echo $label->name ?>"><?php echo $label->name ?></label>
|
230 |
+
<?php
|
231 |
+
}
|
232 |
+
|
233 |
+
} else { ?>
|
234 |
+
<button class="btn btn-warning" onclick="jQuery('.sq_add_labels_dialog').modal('show')" data-dismiss="modal"><?php _e('Add new Label', _SQ_PLUGIN_NAME_); ?></button>
|
235 |
+
|
236 |
+
<?php } ?>
|
237 |
+
</div>
|
238 |
+
<?php if (isset($view->labels) && !empty($view->labels)) { ?>
|
239 |
+
<div class="modal-footer">
|
240 |
+
<button data-id="<?php echo $row->id ?>" class="sq_save_keyword_labels btn btn-success"><?php _e('Save Labels', _SQ_PLUGIN_NAME_); ?></button>
|
241 |
+
</div>
|
242 |
+
<?php } ?>
|
243 |
|
244 |
+
</div>
|
245 |
</div>
|
|
|
246 |
|
247 |
+
</div>
|
248 |
+
</td>
|
249 |
+
|
250 |
+
<td class="sq_open_subrow" align="right" style="cursor: pointer" data-id="<?php echo $row->id ?>" data-keyword="<?php echo htmlspecialchars($row->keyword) ?>"><?php echo($row->count > 0 ? $row->count . ' <i class="fa fa-sort-desc fa_showmore" style="color: rgb(88, 158, 228)"></i>' : '0') ?> </td>
|
251 |
+
<td>
|
252 |
+
<ul class="sq_row_stats"><?php
|
253 |
+
if ($research <> '') {
|
254 |
+
if ($research->sc) {
|
255 |
+
?>
|
256 |
+
<li>
|
257 |
+
<i class="fa fa-users" style="color: <?php echo $research->sc->color ?>" title="<?php echo __('Competition', _SQ_PLUGIN_NAME_) ?>"></i>
|
258 |
+
<span style="color: <?php echo $research->sc->color ?>" title="<?php echo __('Competition', _SQ_PLUGIN_NAME_) ?>"><?php echo($research->sc->text <> '' ? $research->sc->text : __('-', _SQ_PLUGIN_NAME_)) ?></span>
|
259 |
+
</li>
|
260 |
+
<?php
|
261 |
+
}
|
262 |
+
if ($research->sv) {
|
263 |
+
if (isset($research->sv->absolute) && is_numeric($research->sv->absolute)) {
|
264 |
+
$research->sv->absolute = number_format($research->sv->absolute, 0, '', '.');
|
265 |
+
}
|
266 |
+
?>
|
267 |
+
<li>
|
268 |
+
<i class="fa fa-search" style="color: <?php echo $research->sv->color ?>" title="<?php echo __('SEO Search Volume', _SQ_PLUGIN_NAME_) ?>"></i>
|
269 |
+
<span style="color: <?php echo $research->sv->color ?>" title="<?php echo __('SEO Search Volume', _SQ_PLUGIN_NAME_) ?>"><?php echo(isset($research->sv->absolute) ? $research->sv->absolute : __('-', _SQ_PLUGIN_NAME_)) ?></span>
|
270 |
+
</li>
|
271 |
+
<?php
|
272 |
+
}
|
273 |
+
if ($research->tw) {
|
274 |
+
?>
|
275 |
+
<li>
|
276 |
+
<i class="fa fa-comments-o" style="color: <?php echo $research->tw->color ?>" title="<?php echo __('Recent discussions', _SQ_PLUGIN_NAME_) ?>"></i>
|
277 |
+
<span style="color: <?php echo $research->tw->color ?>" title="<?php echo __('Recent discussions', _SQ_PLUGIN_NAME_) ?>"><?php echo($research->tw->text <> '' ? $research->tw->text : __('-', _SQ_PLUGIN_NAME_)) ?></span>
|
278 |
+
</li>
|
279 |
+
<?php
|
280 |
+
}
|
281 |
+
if ($research->td) {
|
282 |
+
?>
|
283 |
+
<li>
|
284 |
+
<i class="fa fa-bar-chart" style="color: <?php echo $research->td->color ?>" title="<?php echo __('Trending', _SQ_PLUGIN_NAME_) ?>"></i>
|
285 |
+
<span style="color: <?php echo $research->td->color ?>" title="<?php echo __('Trending', _SQ_PLUGIN_NAME_) ?>"><?php echo($research->td->text <> '' ? $research->td->text : __('-', _SQ_PLUGIN_NAME_)) ?></span>
|
286 |
+
</li>
|
287 |
+
<?php
|
288 |
+
}
|
289 |
|
|
|
|
|
|
|
|
|
|
|
290 |
?>
|
291 |
+
<li>(<?php echo($row->country ? $row->country : 'us') ?>)</li>
|
292 |
<li>
|
293 |
+
<i class="fa fa-refresh" style="cursor: pointer" onclick="jQuery('.sq_kr_countries').modal('show'); jQuery('#sq_kr_keyword').html(jQuery(this).data('keyword')); jQuery('input[name=sq_kr_keyword]').val(jQuery(this).data('keyword'));" data-dismiss="modal" data-keyword="<?php echo htmlspecialchars($row->keyword) ?>" title="<?php echo __('Refresh Keyword Research', _SQ_PLUGIN_NAME_); ?>"></i>
|
|
|
294 |
</li>
|
295 |
+
|
296 |
+
<?php } else { ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
<li>
|
298 |
+
<button class="btn btn-success" onclick="jQuery('.sq_kr_countries').modal('show'); jQuery('#sq_kr_keyword').html(jQuery(this).data('keyword')); jQuery('input[name=sq_kr_keyword]').val(jQuery(this).data('keyword'));" data-dismiss="modal" data-keyword="<?php echo htmlspecialchars($row->keyword) ?>"><?php echo __('Do a research', _SQ_PLUGIN_NAME_); ?></button>
|
|
|
299 |
</li>
|
300 |
<?php
|
301 |
}
|
302 |
|
303 |
+
//echo $row->research
|
304 |
+
?></ul>
|
305 |
+
</td>
|
306 |
+
<td>
|
307 |
+
<button class="btn btn-info sq_research_selectit" data-post="<?php echo admin_url('post-new.php') ?>" data-keyword="<?php echo htmlspecialchars($row->keyword) ?>"><?php echo __('Use Keyword', _SQ_PLUGIN_NAME_) ?></button>
|
308 |
+
</td>
|
309 |
+
<td style="position: relative">
|
310 |
+
<button type="button" class="btn btn-default sq_delete_keyword" style="position: absolute; left: -10px;" data-id="<?php echo $row->id ?>" title="<?php _e('Delete', _SQ_PLUGIN_NAME_); ?>">x</button>
|
311 |
+
</td>
|
312 |
+
</tr>
|
313 |
+
<tr id="sq_subrow_<?php echo $row->id ?>" class="sq_subrow" style="display: none">
|
314 |
+
<td colspan="6" style="padding: 0 !important;"></td>
|
315 |
+
</tr>
|
316 |
+
<?php
|
317 |
+
}
|
318 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
319 |
|
320 |
+
</tbody>
|
321 |
+
</table>
|
322 |
|
323 |
+
<?php } else { ?>
|
324 |
+
<div class="panel-body">
|
325 |
+
<h3 class="text-center"><?php echo $view->error; ?></h3>
|
326 |
|
327 |
+
<div class="col-md-9 m-b-lg"></div>
|
328 |
+
</div>
|
329 |
+
<?php } ?>
|
330 |
+
|
331 |
+
<div class="sq_kr_countries modal fade" role="dialog">
|
332 |
+
<div class="modal-dialog">
|
333 |
+
<div class="modal-content">
|
334 |
+
<div class="modal-header">
|
335 |
+
<button type="button" class="close" data-dismiss="modal">×</button>
|
336 |
+
<h4 class="modal-title"><?php _e('Keyword Research', _SQ_PLUGIN_NAME_); ?>:
|
337 |
+
<span style="font-weight: bold; font-size: 110%" id="sq_kr_keyword"></span>
|
338 |
+
</h4>
|
339 |
+
</div>
|
340 |
+
<div class="modal-body">
|
341 |
+
<label for="sq_kr_countries_list"><?php _e('Select Country', _SQ_PLUGIN_NAME_); ?></label>
|
342 |
+
<ul id="sq_kr_countries_list" class="sq_research_lang">
|
343 |
+
<?php echo $view->countries ?>
|
344 |
+
</ul>
|
345 |
+
</div>
|
346 |
+
<div class="modal-footer">
|
347 |
+
<button type="button" id="sq_doresearch" class="btn btn-success "><?php _e('Do Research', _SQ_PLUGIN_NAME_); ?></button>
|
348 |
+
<input type="hidden" name="sq_kr_keyword">
|
349 |
+
<input type="hidden" name="sq_kr_country">
|
350 |
+
</div>
|
351 |
</div>
|
352 |
</div>
|
353 |
</div>
|
354 |
</div>
|
355 |
</div>
|
356 |
+
<div class="tablenav bottom">
|
357 |
+
<?php echo $view->listTable->pagination('bottom') ?>
|
358 |
+
</div>
|
359 |
+
|
360 |
</div>
|
361 |
|
362 |
</div>
|
|
|
363 |
</div>
|
364 |
+
|
365 |
</div>
|
366 |
|
367 |
</div>
|
368 |
+
<?php } ?>
|
|
view/BlockCustomerService.php
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
<span><?php echo sprintf(__('%sHowto.squirrly.co%s > Knowledge Base. Find out how to get the most out of Squirrly SEO', _SQ_PLUGIN_NAME_), '<a href="https://howto.squirrly.co/wordpress-seo" target="_blank">', '</a>'); ?></span>
|
14 |
<span><?php echo sprintf(__('%sPlugin.squirrly.co%s >> Case studies, ideas on how to better use Squirrly SEO for Content Marketing', _SQ_PLUGIN_NAME_), '<a href="https://plugin.squirrly.co" target="_blank">', '</a>'); ?></span>
|
15 |
<span><?php echo sprintf(__('%sFacebook page%s >> You can send us your support requests in private messages', _SQ_PLUGIN_NAME_), '<a href="https://www.facebook.com/Squirrly.co" target="_blank">', '</a>'); ?></span>
|
16 |
-
<span><?php echo sprintf(__('%sSupport Community%s >> Join us on
|
17 |
<span><?php echo sprintf(__('%sLive Chat%s >> on Youtube. Thursday 4 PM', _SQ_PLUGIN_NAME_), '<a href="https://www.youtube.com/c/GetGrowthTV/live" target="_blank">', '</a>'); ?></span>
|
18 |
<span><?php echo sprintf(__('%sNew Lessons%s >> Mon. and Tue. on Twitter', _SQ_PLUGIN_NAME_), '<a href="https://twitter.com/squirrlyhq" target="_blank">', '</a>'); ?></span>
|
19 |
<span><?php echo sprintf(__('%sEmail Support%s >> 8 AM to 4 PM (London Time): Mon-Fri..', _SQ_PLUGIN_NAME_), '<a href="mailto:' . _SQ_SUPPORT_EMAIL_ . '" target="_blank">', '</a>'); ?></span>
|
@@ -24,14 +24,27 @@
|
|
24 |
<div id="sq_post_type_option" class="withborder">
|
25 |
<p style="font-weight: bold;"><?php _e('Need Help with Squirrly SEO?', _SQ_PLUGIN_NAME_); ?>:</p>
|
26 |
<ul class="sq_options_support_popup">
|
|
|
27 |
<li>
|
28 |
<div class="withborder">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
<p id="sq_support_msg">
|
30 |
<textarea class="sq_big_input" name="sq_support_message"></textarea></p>
|
31 |
<div id="sq_options_support_error"></div>
|
32 |
<p>
|
33 |
<input id="sq_support_submit" type="button" value="<?php _e('Send Question', _SQ_PLUGIN_NAME_) ?>" style="padding: 9px 30px;background-color: #589ee4;color: white;text-shadow: 1px 1px #333;font-size: 14px; cursor: pointer;">
|
34 |
</p>
|
|
|
|
|
|
|
|
|
|
|
35 |
</div>
|
36 |
</li>
|
37 |
<li>
|
13 |
<span><?php echo sprintf(__('%sHowto.squirrly.co%s > Knowledge Base. Find out how to get the most out of Squirrly SEO', _SQ_PLUGIN_NAME_), '<a href="https://howto.squirrly.co/wordpress-seo" target="_blank">', '</a>'); ?></span>
|
14 |
<span><?php echo sprintf(__('%sPlugin.squirrly.co%s >> Case studies, ideas on how to better use Squirrly SEO for Content Marketing', _SQ_PLUGIN_NAME_), '<a href="https://plugin.squirrly.co" target="_blank">', '</a>'); ?></span>
|
15 |
<span><?php echo sprintf(__('%sFacebook page%s >> You can send us your support requests in private messages', _SQ_PLUGIN_NAME_), '<a href="https://www.facebook.com/Squirrly.co" target="_blank">', '</a>'); ?></span>
|
16 |
+
<span><?php echo sprintf(__('%sSupport Community%s >> Join us on Facebook', _SQ_PLUGIN_NAME_), '<a href="https://www.facebook.com/groups/SquirrlySEOCustomerService/" target="_blank">', '</a>'); ?></span>
|
17 |
<span><?php echo sprintf(__('%sLive Chat%s >> on Youtube. Thursday 4 PM', _SQ_PLUGIN_NAME_), '<a href="https://www.youtube.com/c/GetGrowthTV/live" target="_blank">', '</a>'); ?></span>
|
18 |
<span><?php echo sprintf(__('%sNew Lessons%s >> Mon. and Tue. on Twitter', _SQ_PLUGIN_NAME_), '<a href="https://twitter.com/squirrlyhq" target="_blank">', '</a>'); ?></span>
|
19 |
<span><?php echo sprintf(__('%sEmail Support%s >> 8 AM to 4 PM (London Time): Mon-Fri..', _SQ_PLUGIN_NAME_), '<a href="mailto:' . _SQ_SUPPORT_EMAIL_ . '" target="_blank">', '</a>'); ?></span>
|
24 |
<div id="sq_post_type_option" class="withborder">
|
25 |
<p style="font-weight: bold;"><?php _e('Need Help with Squirrly SEO?', _SQ_PLUGIN_NAME_); ?>:</p>
|
26 |
<ul class="sq_options_support_popup">
|
27 |
+
|
28 |
<li>
|
29 |
<div class="withborder">
|
30 |
+
<p id="sq_support_msg">
|
31 |
+
<span style="margin-left: 15px"><?php echo __('From')?>:</span>
|
32 |
+
<input class="sq_small_input" name="sq_support_email" value="<?php
|
33 |
+
$current_user = wp_get_current_user();
|
34 |
+
echo (SQ_Classes_Tools::getOption('sq_support_email') <> '' ? SQ_Classes_Tools::getOption('sq_support_email') : $current_user->user_email) ;
|
35 |
+
?>"/>
|
36 |
+
</p>
|
37 |
<p id="sq_support_msg">
|
38 |
<textarea class="sq_big_input" name="sq_support_message"></textarea></p>
|
39 |
<div id="sq_options_support_error"></div>
|
40 |
<p>
|
41 |
<input id="sq_support_submit" type="button" value="<?php _e('Send Question', _SQ_PLUGIN_NAME_) ?>" style="padding: 9px 30px;background-color: #589ee4;color: white;text-shadow: 1px 1px #333;font-size: 14px; cursor: pointer;">
|
42 |
</p>
|
43 |
+
<p >
|
44 |
+
<span style="margin-left: 15px">
|
45 |
+
<?php echo sprintf(__("By clicking Send Question you're agreeing to %sSquirrly Terms%s", _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/terms-of-use#page-block-lvtsrakgujgzxgvi" target="_blank" >', '</a>'); ?>
|
46 |
+
</span>
|
47 |
+
</p>
|
48 |
</div>
|
49 |
</li>
|
50 |
<li>
|
view/BlockDashboard.php
CHANGED
@@ -34,9 +34,12 @@
|
|
34 |
<span class="sq_icon"></span>
|
35 |
<div id="sq_settings_title"><?php _e('Squirrly dashboard', _SQ_PLUGIN_NAME_); ?> </div>
|
36 |
</div>
|
37 |
-
<div id="sq_helpdashboardside" class="sq_helpside"></div>
|
38 |
-
<div id="sq_helpdashboardcontent" class="sq_helpcontent"></div>
|
39 |
|
|
|
|
|
|
|
|
|
|
|
40 |
<?php } ?>
|
41 |
|
42 |
<div class="sq_helpcontent" style="display: none; clear: left; <?php echo (SQ_Classes_Tools::getOption('sq_api') == '') ? 'text-align: center;' : '' ?>">
|
34 |
<span class="sq_icon"></span>
|
35 |
<div id="sq_settings_title"><?php _e('Squirrly dashboard', _SQ_PLUGIN_NAME_); ?> </div>
|
36 |
</div>
|
|
|
|
|
37 |
|
38 |
+
<?php $menu = SQ_Classes_Tools::getOption('menu');
|
39 |
+
if ($menu['show_tutorial']) { ?>
|
40 |
+
<div id="sq_helpdashboardside" class="sq_helpside"></div>
|
41 |
+
<div id="sq_helpdashboardcontent" class="sq_helpcontent"></div>
|
42 |
+
<?php } ?>
|
43 |
<?php } ?>
|
44 |
|
45 |
<div class="sq_helpcontent" style="display: none; clear: left; <?php echo (SQ_Classes_Tools::getOption('sq_api') == '') ? 'text-align: center;' : '' ?>">
|
view/BlockImport.php
CHANGED
@@ -24,7 +24,10 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
24 |
|
25 |
<?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
|
26 |
|
27 |
-
|
|
|
|
|
|
|
28 |
|
29 |
<div id="sq_left">
|
30 |
<form name="settings" action="" method="post" enctype="multipart/form-data">
|
24 |
|
25 |
<?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
|
26 |
|
27 |
+
<?php $menu = SQ_Classes_Tools::getOption('menu');
|
28 |
+
if ($menu['show_tutorial']) { ?>
|
29 |
+
<div id="sq_helpimportside" class="sq_helpside"></div>
|
30 |
+
<?php } ?>
|
31 |
|
32 |
<div id="sq_left">
|
33 |
<form name="settings" action="" method="post" enctype="multipart/form-data">
|
view/BlockKeywordResearch.php
CHANGED
@@ -16,40 +16,44 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
16 |
} else {
|
17 |
?>
|
18 |
<div id="sq_settings">
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
30 |
</div>
|
31 |
-
</div>
|
32 |
-
<div id="sq_helpkeywordresearchside" class="sq_helpside"></div>
|
33 |
-
<div id="sq_left">
|
34 |
-
<?php if (SQ_Classes_Tools::getOption('sq_api') <> '') { ?>
|
35 |
-
<div id="sq_settings_body">
|
36 |
-
|
37 |
-
<?php if (SQ_Classes_Tools::getOption('sq_api') <> '') { ?>
|
38 |
-
<fieldset style="background: none !important; box-shadow: none;">
|
39 |
-
<div id="sq_krinfo" class="sq_loading"></div>
|
40 |
-
</fieldset>
|
41 |
-
<script type="text/javascript">
|
42 |
-
jQuery(document).ready(function () {
|
43 |
-
jQuery('#sq_settings').sq_getKR();
|
44 |
-
});
|
45 |
-
</script>
|
46 |
-
<?php } ?>
|
47 |
|
48 |
-
|
49 |
|
50 |
-
|
|
|
|
|
51 |
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
|
54 |
</div>
|
55 |
<?php
|
16 |
} else {
|
17 |
?>
|
18 |
<div id="sq_settings">
|
19 |
+
<div class="sq_message sq_error" style="display: none"></div>
|
20 |
+
|
21 |
+
<?php
|
22 |
+
SQ_Classes_ObjController::getClass('SQ_Core_BlockSupport')->init();
|
23 |
+
SQ_Classes_ObjController::getClass('SQ_Core_Loading')->loadJsVars();
|
24 |
+
?>
|
25 |
+
<div>
|
26 |
+
<span class="sq_icon"></span>
|
27 |
+
<div id="sq_settings_title"><?php _e('Squirrly Keyword Research', _SQ_PLUGIN_NAME_); ?> </div>
|
28 |
+
<div class="sq_subtitles">
|
29 |
+
<p>You can now find <strong>long-tail keywords</strong> that are easy to rank for. Get personalized
|
30 |
+
<strong>competition data</strong> for each keyword you research, thanks to
|
31 |
+
<strong>Squirrly's Market Intelligence Features</strong>.</p>
|
32 |
+
</div>
|
33 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
+
<div id="sq_helpkeywordresearchside" class="sq_helpside"></div>
|
36 |
|
37 |
+
<div id="sq_left">
|
38 |
+
<?php if (SQ_Classes_Tools::getOption('sq_api') <> '') { ?>
|
39 |
+
<div id="sq_settings_body">
|
40 |
|
41 |
+
<?php if (SQ_Classes_Tools::getOption('sq_api') <> '') { ?>
|
42 |
+
<fieldset style="background: none !important; box-shadow: none; border: none; padding: 0 20px;">
|
43 |
+
<div id="sq_krinfo" class="sq_loading"></div>
|
44 |
+
</fieldset>
|
45 |
+
<script type="text/javascript">
|
46 |
+
jQuery(document).ready(function () {
|
47 |
+
jQuery('#sq_settings').sq_getKR();
|
48 |
+
});
|
49 |
+
</script>
|
50 |
+
<?php } ?>
|
51 |
+
|
52 |
+
</div>
|
53 |
+
|
54 |
+
<?php } ?>
|
55 |
+
|
56 |
+
</div>
|
57 |
|
58 |
</div>
|
59 |
<?php
|
view/BlockPatterns.php
CHANGED
@@ -24,11 +24,14 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
24 |
|
25 |
<?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
|
26 |
|
27 |
-
|
|
|
|
|
|
|
28 |
|
29 |
<div id="sq_left">
|
30 |
<form name="settings" action="" method="post" enctype="multipart/form-data">
|
31 |
-
<div id="sq_settings_body"
|
32 |
|
33 |
<fieldset id="sq_auto_pattern" style="background-color: rgb(35, 40, 45);" class="<?php echo((!SQ_Classes_Tools::getOption('sq_auto_pattern')) ? 'deactivated' : ''); ?>">
|
34 |
<legend id="sq_enable">
|
@@ -48,10 +51,10 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
48 |
<span><?php echo __("Control how post types are displayed on your site and within search engine results and social media feeds.", _SQ_PLUGIN_NAME_); ?></span>
|
49 |
<span><?php echo __("In Squirrly, each post type in your site comes with a predefined posting pattern when displayed onto your website. However, based on your site's purpose and needs, you can also decide what information these patterns will include.", _SQ_PLUGIN_NAME_); ?></span>
|
50 |
<span><?php echo __("Once you set up a pattern for a particular post type, only the content required by your custom sequence will be displayed.", _SQ_PLUGIN_NAME_); ?></span>
|
51 |
-
<span><?php echo sprintf(__("Squirrly lets you see how the customized patterns will apply when posts/pages are shared across social media or search engine feeds. You just need to go to the %sSquirrly SEO Snippet%s box, press <strong>Edit Snippet</strong> and you'll get a live preview after you customize the meta information.", _SQ_PLUGIN_NAME_),'<a href="http://howto.squirrly.co/sides/squirrly-snippet-tool/" target="_blank">','</a>'); ?></span>
|
52 |
|
53 |
</legend>
|
54 |
-
<div id="sq_field_options"
|
55 |
<ul class="sq_settings_info">
|
56 |
<span><?php _e('Set the custom patterns for each post type', _SQ_PLUGIN_NAME_) ?></span>
|
57 |
|
24 |
|
25 |
<?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
|
26 |
|
27 |
+
<?php $menu = SQ_Classes_Tools::getOption('menu');
|
28 |
+
if ($menu['show_tutorial']) { ?>
|
29 |
+
<div id="sq_helppatternsside" class="sq_helpside"></div>
|
30 |
+
<?php } ?>
|
31 |
|
32 |
<div id="sq_left">
|
33 |
<form name="settings" action="" method="post" enctype="multipart/form-data">
|
34 |
+
<div id="sq_settings_body">
|
35 |
|
36 |
<fieldset id="sq_auto_pattern" style="background-color: rgb(35, 40, 45);" class="<?php echo((!SQ_Classes_Tools::getOption('sq_auto_pattern')) ? 'deactivated' : ''); ?>">
|
37 |
<legend id="sq_enable">
|
51 |
<span><?php echo __("Control how post types are displayed on your site and within search engine results and social media feeds.", _SQ_PLUGIN_NAME_); ?></span>
|
52 |
<span><?php echo __("In Squirrly, each post type in your site comes with a predefined posting pattern when displayed onto your website. However, based on your site's purpose and needs, you can also decide what information these patterns will include.", _SQ_PLUGIN_NAME_); ?></span>
|
53 |
<span><?php echo __("Once you set up a pattern for a particular post type, only the content required by your custom sequence will be displayed.", _SQ_PLUGIN_NAME_); ?></span>
|
54 |
+
<span><?php echo sprintf(__("Squirrly lets you see how the customized patterns will apply when posts/pages are shared across social media or search engine feeds. You just need to go to the %sSquirrly SEO Snippet%s box, press <strong>Edit Snippet</strong> and you'll get a live preview after you customize the meta information.", _SQ_PLUGIN_NAME_), '<a href="http://howto.squirrly.co/sides/squirrly-snippet-tool/" target="_blank">', '</a>'); ?></span>
|
55 |
|
56 |
</legend>
|
57 |
+
<div id="sq_field_options">
|
58 |
<ul class="sq_settings_info">
|
59 |
<span><?php _e('Set the custom patterns for each post type', _SQ_PLUGIN_NAME_) ?></span>
|
60 |
|
view/BlockPostsAnalytics.php
CHANGED
@@ -38,6 +38,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
38 |
echo '</p></div>';
|
39 |
|
40 |
}
|
|
|
41 |
?>
|
42 |
<div id="sq_posts">
|
43 |
<span class="sq_icon"></span>
|
38 |
echo '</p></div>';
|
39 |
|
40 |
}
|
41 |
+
|
42 |
?>
|
43 |
<div id="sq_posts">
|
44 |
<span class="sq_icon"></span>
|
view/BlockSerpKeywords.php
CHANGED
@@ -31,12 +31,6 @@
|
|
31 |
<label for="sq_keyword"><?php _e('Keyword', _SQ_PLUGIN_NAME_); ?></label>
|
32 |
<input type="text" required="required" class="form-control" id="sq_keyword" name="keyword" placeholder="<?php echo __('Enter a Keyword (2-4 words)', _SQ_PLUGIN_NAME_) ?>">
|
33 |
</div>
|
34 |
-
<div class="form-group">
|
35 |
-
<label for="sq_article"><?php _e('Article', _SQ_PLUGIN_NAME_); ?></label>
|
36 |
-
<input type="text" required="required" class="form-control" id="sq_article" name="article" placeholder="<?php echo __('Article URL ...', _SQ_PLUGIN_NAME_) ?>">
|
37 |
-
</div>
|
38 |
-
|
39 |
-
|
40 |
</div>
|
41 |
<div class="modal-footer">
|
42 |
<button type="button" id="sq_save_keyword" class="btn btn-success"><?php _e('Add Keyword', _SQ_PLUGIN_NAME_); ?></button>
|
31 |
<label for="sq_keyword"><?php _e('Keyword', _SQ_PLUGIN_NAME_); ?></label>
|
32 |
<input type="text" required="required" class="form-control" id="sq_keyword" name="keyword" placeholder="<?php echo __('Enter a Keyword (2-4 words)', _SQ_PLUGIN_NAME_) ?>">
|
33 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
</div>
|
35 |
<div class="modal-footer">
|
36 |
<button type="button" id="sq_save_keyword" class="btn btn-success"><?php _e('Add Keyword', _SQ_PLUGIN_NAME_); ?></button>
|
view/BlockSettings.php
CHANGED
@@ -26,9 +26,11 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
26 |
</div>
|
27 |
|
28 |
<?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
|
29 |
-
|
30 |
-
|
31 |
-
|
|
|
|
|
32 |
|
33 |
<div id="sq_left">
|
34 |
<form id="sq_settings_form" name="settings" action="" method="post" enctype="multipart/form-data">
|
@@ -39,11 +41,11 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
39 |
<fieldset class="sq_advanced">
|
40 |
<legend>
|
41 |
<span class="sq_legend_title"><?php _e('Post/Page Edit', _SQ_PLUGIN_NAME_); ?></span>
|
42 |
-
<span><?php echo sprintf(__('%sThe right method in working with Squirrly, SEO plugin%s', _SQ_PLUGIN_NAME_), '<a href="
|
43 |
<span><?php echo sprintf(__('%sGetting inspired with Squirrly WordPress SEO plugin%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/how-your-writing-life-will-change-with-the-writing-inspiration-box-from-squirrly-seo/" target="_blank">', '</a>'); ?></span>
|
44 |
|
45 |
-
<span><?php echo sprintf(__('%sThere is a New SEO Live Assistant from Squirrly%s', _SQ_PLUGIN_NAME_), '<a href="
|
46 |
-
<span><?php echo sprintf(__('%sHow to create Human friendly content with the WordPress SEO plugin?%s', _SQ_PLUGIN_NAME_), '<a href="
|
47 |
|
48 |
<div class="sq_badge_google">
|
49 |
<div class="sq_badge-image"></div>
|
@@ -205,7 +207,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
205 |
<legend>
|
206 |
<span class="sq_legend_title"><?php _e('Google Rank Options', _SQ_PLUGIN_NAME_); ?></span>
|
207 |
<span><?php echo sprintf(__('%sCountry targeting%s', _SQ_PLUGIN_NAME_), '<a href="https://support.google.com/webmasters/answer/62399?hl=en" target="_blank">', '</a>'); ?></span>
|
208 |
-
<span><?php echo sprintf(__('%sPowerful SEO Tool For Strong Google Rankings%s', _SQ_PLUGIN_NAME_), '<a href="
|
209 |
|
210 |
|
211 |
</legend>
|
@@ -237,6 +239,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
237 |
<option value="co.cr"><?php _e('Costa Rica', _SQ_PLUGIN_NAME_); ?> (http://www.google.co.cr/)</option>
|
238 |
<option value="ci"><?php _e('Côte d\'Ivoire', _SQ_PLUGIN_NAME_); ?> (http://www.google.ci/)</option>
|
239 |
<option value="com.cu"><?php _e('Cuba', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.cu/)</option>
|
|
|
240 |
<option value="cz"><?php _e('Czech Republic', _SQ_PLUGIN_NAME_); ?> (http://www.google.cz/)</option>
|
241 |
<option value="cd"><?php _e('Dem. Rep. of the Congo', _SQ_PLUGIN_NAME_); ?> (http://www.google.cd/)</option>
|
242 |
<option value="dk"><?php _e('Denmark', _SQ_PLUGIN_NAME_); ?> (http://www.google.dk/)</option>
|
@@ -252,6 +255,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
252 |
<option value="gm"><?php _e('The Gambia', _SQ_PLUGIN_NAME_); ?> (http://www.google.gm/)</option>
|
253 |
<option value="ge"><?php _e('Georgia', _SQ_PLUGIN_NAME_); ?> (http://www.google.ge/)</option>
|
254 |
<option value="de"><?php _e('Germany', _SQ_PLUGIN_NAME_); ?> (http://www.google.de/)</option>
|
|
|
255 |
<option value="com.gi"><?php _e('Gibraltar', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.gi/)</option>
|
256 |
<option value="com.gr"><?php _e('Greece', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.gr/)</option>
|
257 |
<option value="gl"><?php _e('Greenland', _SQ_PLUGIN_NAME_); ?> (http://www.google.gl/)</option>
|
@@ -281,11 +285,13 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
281 |
<option value="mu"><?php _e('Mauritius', _SQ_PLUGIN_NAME_); ?> (http://www.google.mu/)</option>
|
282 |
<option value="com.mx"><?php _e('México', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.mx/)</option>
|
283 |
<option value="ms"><?php _e('Montserrat', _SQ_PLUGIN_NAME_); ?> (http://www.google.ms/)</option>
|
|
|
284 |
<option value="com.na"><?php _e('Namibia', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.na/)</option>
|
285 |
<option value="com.np"><?php _e('Nepal', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.np/)</option>
|
286 |
<option value="nl"><?php _e('Netherlands', _SQ_PLUGIN_NAME_); ?> (http://www.google.nl/)</option>
|
287 |
<option value="co.nz"><?php _e('New Zealand', _SQ_PLUGIN_NAME_); ?> (http://www.google.co.nz/)</option>
|
288 |
<option value="com.ni"><?php _e('Nicaragua', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.ni/)</option>
|
|
|
289 |
<option value="com.nf"><?php _e('Norfolk Island', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.nf/)</option>
|
290 |
<option value="no"><?php _e('Norway', _SQ_PLUGIN_NAME_); ?> (http://www.google.no/)</option>
|
291 |
<option value="com.pk"><?php _e('Pakistan', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.pk/)</option>
|
@@ -404,6 +410,17 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
404 |
<span><?php echo sprintf(__('%sLearn about robots.txt files%s', _SQ_PLUGIN_NAME_), '<a href="https://support.google.com/webmasters/answer/6062608?hl=en" target="_blank">', '</a>'); ?></span>
|
405 |
<span><?php echo sprintf(__('%sHow to use Robots.txt%s', _SQ_PLUGIN_NAME_), '<a href="https://moz.com/learn/seo/robotstxt" target="_blank">', '</a>'); ?></span>
|
406 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
407 |
</legend>
|
408 |
|
409 |
<div>
|
26 |
</div>
|
27 |
|
28 |
<?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
|
29 |
+
<?php $menu = SQ_Classes_Tools::getOption('menu');
|
30 |
+
if ($menu['show_tutorial']) { ?>
|
31 |
+
<div id="sq_helpsettingscontent" class="sq_helpcontent"></div>
|
32 |
+
<div id="sq_helpsettingsside" class="sq_helpside"></div>
|
33 |
+
<?php } ?>
|
34 |
|
35 |
<div id="sq_left">
|
36 |
<form id="sq_settings_form" name="settings" action="" method="post" enctype="multipart/form-data">
|
41 |
<fieldset class="sq_advanced">
|
42 |
<legend>
|
43 |
<span class="sq_legend_title"><?php _e('Post/Page Edit', _SQ_PLUGIN_NAME_); ?></span>
|
44 |
+
<span><?php echo sprintf(__('%sThe right method in working with Squirrly, SEO plugin%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/the-right-premises-in-working-with-squirrly-wordpress-seo-plugin" target="_blank">', '</a>'); ?></span>
|
45 |
<span><?php echo sprintf(__('%sGetting inspired with Squirrly WordPress SEO plugin%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/how-your-writing-life-will-change-with-the-writing-inspiration-box-from-squirrly-seo/" target="_blank">', '</a>'); ?></span>
|
46 |
|
47 |
+
<span><?php echo sprintf(__('%sThere is a New SEO Live Assistant from Squirrly%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/there-is-a-new-seo-live-assistant-from-squirrly" target="_blank">', '</a>'); ?></span>
|
48 |
+
<span><?php echo sprintf(__('%sHow to create Human friendly content with the WordPress SEO plugin?%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/how-to-create-human-friendly-content-with-the-a-wordpress-seo-plugin" target="_blank">', '</a>'); ?></span>
|
49 |
|
50 |
<div class="sq_badge_google">
|
51 |
<div class="sq_badge-image"></div>
|
207 |
<legend>
|
208 |
<span class="sq_legend_title"><?php _e('Google Rank Options', _SQ_PLUGIN_NAME_); ?></span>
|
209 |
<span><?php echo sprintf(__('%sCountry targeting%s', _SQ_PLUGIN_NAME_), '<a href="https://support.google.com/webmasters/answer/62399?hl=en" target="_blank">', '</a>'); ?></span>
|
210 |
+
<span><?php echo sprintf(__('%sPowerful SEO Tool For Strong Google Rankings%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/serp-checker" target="_blank">', '</a>'); ?></span>
|
211 |
|
212 |
|
213 |
</legend>
|
239 |
<option value="co.cr"><?php _e('Costa Rica', _SQ_PLUGIN_NAME_); ?> (http://www.google.co.cr/)</option>
|
240 |
<option value="ci"><?php _e('Côte d\'Ivoire', _SQ_PLUGIN_NAME_); ?> (http://www.google.ci/)</option>
|
241 |
<option value="com.cu"><?php _e('Cuba', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.cu/)</option>
|
242 |
+
<option value="hr"><?php _e('Croatia', _SQ_PLUGIN_NAME_); ?> (http://www.google.hr/)</option>
|
243 |
<option value="cz"><?php _e('Czech Republic', _SQ_PLUGIN_NAME_); ?> (http://www.google.cz/)</option>
|
244 |
<option value="cd"><?php _e('Dem. Rep. of the Congo', _SQ_PLUGIN_NAME_); ?> (http://www.google.cd/)</option>
|
245 |
<option value="dk"><?php _e('Denmark', _SQ_PLUGIN_NAME_); ?> (http://www.google.dk/)</option>
|
255 |
<option value="gm"><?php _e('The Gambia', _SQ_PLUGIN_NAME_); ?> (http://www.google.gm/)</option>
|
256 |
<option value="ge"><?php _e('Georgia', _SQ_PLUGIN_NAME_); ?> (http://www.google.ge/)</option>
|
257 |
<option value="de"><?php _e('Germany', _SQ_PLUGIN_NAME_); ?> (http://www.google.de/)</option>
|
258 |
+
<option value="com.gh"><?php _e('Ghana ', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.gh/)</option>
|
259 |
<option value="com.gi"><?php _e('Gibraltar', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.gi/)</option>
|
260 |
<option value="com.gr"><?php _e('Greece', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.gr/)</option>
|
261 |
<option value="gl"><?php _e('Greenland', _SQ_PLUGIN_NAME_); ?> (http://www.google.gl/)</option>
|
285 |
<option value="mu"><?php _e('Mauritius', _SQ_PLUGIN_NAME_); ?> (http://www.google.mu/)</option>
|
286 |
<option value="com.mx"><?php _e('México', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.mx/)</option>
|
287 |
<option value="ms"><?php _e('Montserrat', _SQ_PLUGIN_NAME_); ?> (http://www.google.ms/)</option>
|
288 |
+
<option value="co.ma"><?php _e('Morocco', _SQ_PLUGIN_NAME_); ?> (http://www.google.co.ma/)</option>
|
289 |
<option value="com.na"><?php _e('Namibia', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.na/)</option>
|
290 |
<option value="com.np"><?php _e('Nepal', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.np/)</option>
|
291 |
<option value="nl"><?php _e('Netherlands', _SQ_PLUGIN_NAME_); ?> (http://www.google.nl/)</option>
|
292 |
<option value="co.nz"><?php _e('New Zealand', _SQ_PLUGIN_NAME_); ?> (http://www.google.co.nz/)</option>
|
293 |
<option value="com.ni"><?php _e('Nicaragua', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.ni/)</option>
|
294 |
+
<option value="com.ng"><?php _e('Nigeria', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.ng/)</option>
|
295 |
<option value="com.nf"><?php _e('Norfolk Island', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.nf/)</option>
|
296 |
<option value="no"><?php _e('Norway', _SQ_PLUGIN_NAME_); ?> (http://www.google.no/)</option>
|
297 |
<option value="com.pk"><?php _e('Pakistan', _SQ_PLUGIN_NAME_); ?> (http://www.google.com.pk/)</option>
|
410 |
<span><?php echo sprintf(__('%sLearn about robots.txt files%s', _SQ_PLUGIN_NAME_), '<a href="https://support.google.com/webmasters/answer/6062608?hl=en" target="_blank">', '</a>'); ?></span>
|
411 |
<span><?php echo sprintf(__('%sHow to use Robots.txt%s', _SQ_PLUGIN_NAME_), '<a href="https://moz.com/learn/seo/robotstxt" target="_blank">', '</a>'); ?></span>
|
412 |
|
413 |
+
<span><?php _e('Use Squirrly Robots', _SQ_PLUGIN_NAME_); ?></span>
|
414 |
+
<div class="sq_option_content">
|
415 |
+
<div class="sq_switch">
|
416 |
+
<input id="sq_auto_robots_on" type="radio" class="sq_switch-input" name="sq_auto_robots" value="1" <?php echo((SQ_Classes_Tools::getOption('sq_auto_robots') == 1) ? "checked" : '') ?> />
|
417 |
+
<label for="sq_auto_robots_on" class="sq_switch-label sq_switch-label-off"><?php _e('Yes', _SQ_PLUGIN_NAME_); ?></label>
|
418 |
+
<input id="sq_auto_robots_off" type="radio" class="sq_switch-input" name="sq_auto_robots" value="0" <?php echo((!SQ_Classes_Tools::getOption('sq_auto_robots')) ? "checked" : '') ?> />
|
419 |
+
<label for="sq_auto_robots_off" class="sq_switch-label sq_switch-label-on"><?php _e('No', _SQ_PLUGIN_NAME_); ?></label>
|
420 |
+
<span class="sq_switch-selection"></span>
|
421 |
+
</div>
|
422 |
+
</div>
|
423 |
+
<br/>
|
424 |
</legend>
|
425 |
|
426 |
<div>
|
view/BlockSettingsSeo.php
CHANGED
@@ -35,8 +35,11 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
35 |
|
36 |
<?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
|
37 |
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
40 |
|
41 |
<div id="sq_left">
|
42 |
<form id="sq_settings_form" name="settings" action="" method="post" enctype="multipart/form-data">
|
@@ -44,7 +47,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
44 |
<fieldset class="sq_seo">
|
45 |
<legend>
|
46 |
<span class="sq_legend_title"><?php _e('Let Squirrly SEO Optimize This Blog', _SQ_PLUGIN_NAME_); ?></span>
|
47 |
-
<span><?php echo sprintf(__('%sIs Squirrly SEO better than WordPress SEO by Yoast?%s', _SQ_PLUGIN_NAME_), '<a href="
|
48 |
|
49 |
<span><?php _e('Activate the built-in SEO settings from Squirrly by switching Yes below. <strong>Works well with Multisites and Ecommerce.</strong>', _SQ_PLUGIN_NAME_); ?></span><br/>
|
50 |
<div class="sq_option_content">
|
@@ -208,7 +211,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
208 |
<fieldset id="sq_title_description_keywords" class="sq_seo <?php echo((!SQ_Classes_Tools::getOption('sq_use')) ? 'deactivated' : ''); ?>">
|
209 |
<legend>
|
210 |
<span class="sq_legend_title"><?php _e('First Page Optimization', _SQ_PLUGIN_NAME_); ?></span>
|
211 |
-
<span><?php echo sprintf(__('%sThe best SEO approach to Meta information%s', _SQ_PLUGIN_NAME_), '<a href="
|
212 |
<span><?php _e('Optimize the <strong>Titles</strong>', _SQ_PLUGIN_NAME_); ?></span>
|
213 |
<?php
|
214 |
$auto_option = false;
|
@@ -386,7 +389,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
386 |
<?php } ?>
|
387 |
<?php
|
388 |
$types = get_post_types();
|
389 |
-
foreach (array('post', 'page', 'revision', 'nav_menu_item','shop_order', 'shop_coupon') as $exclude) {
|
390 |
if (in_array($exclude, $types)) {
|
391 |
unset($types[$exclude]);
|
392 |
}
|
@@ -402,8 +405,8 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
402 |
?>
|
403 |
</ul>
|
404 |
|
405 |
-
<br
|
406 |
-
<br
|
407 |
|
408 |
<div class="sq_option_content withborder">
|
409 |
<div class="sq_switch">
|
@@ -569,9 +572,9 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
569 |
|
570 |
</div>
|
571 |
<br/>
|
572 |
-
<span><?php echo sprintf(__('%sHow to pop out in Social Media with your links%s', _SQ_PLUGIN_NAME_), '<a href="
|
573 |
-
<span><?php echo sprintf(__('%sGet busy with Facebook’s new Search Engine functions%s', _SQ_PLUGIN_NAME_), '<a href="
|
574 |
-
<span><?php echo sprintf(__('%sHow I Added Twitter Cards in My WordPress for Better Inbound Marketing%s', _SQ_PLUGIN_NAME_), '<a href="
|
575 |
|
576 |
<div class="sq_badge_google">
|
577 |
<div class="sq_badge-image"></div>
|
@@ -673,13 +676,6 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
673 |
<br/><strong><input type="text" class="sq_socials" name="sq_socials[twitter_site]" value="<?php echo((isset($socials->twitter_site)) ? $socials->twitter_site : '') ?>" size="60" placeholder="https://twitter.com/"/> (e.g. https://twitter.com/XXXXXXXXXXXXXXXXXX)</strong>
|
674 |
</p>
|
675 |
</li>
|
676 |
-
<li>
|
677 |
-
<p class="withborder withcode">
|
678 |
-
<span class="sq_icon sq_icon_googleplus"></span>
|
679 |
-
<?php _e('Google Plus Profile:', _SQ_PLUGIN_NAME_); ?>
|
680 |
-
<br/><strong><input type="text" class="sq_socials" name="sq_socials[google_plus_url]" value="<?php echo((isset($socials->google_plus_url)) ? $socials->google_plus_url : '') ?>" size="60" placeholder="https://plus.google.com/"/> (e.g. https://plus.google.com/+XXXXXXXXXXXXXXXXXX)</strong>
|
681 |
-
</p>
|
682 |
-
</li>
|
683 |
<li>
|
684 |
<p class="withborder withcode">
|
685 |
<span class="sq_icon sq_icon_facebook"></span>
|
@@ -724,7 +720,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
724 |
<span class="sq_legend_title"><?php _e('XML Sitemap for Google', _SQ_PLUGIN_NAME_); ?></span>
|
725 |
<span><?php echo __('Squirrly Sitemap is the fastest way to tell Google about the pages on your site. <strong>Supports Multisites, Google News, Images, Videos, Custom Post Types, Custom Taxonomies and Ecommerce products</strong>', _SQ_PLUGIN_NAME_) ?></span>
|
726 |
<span><?php echo sprintf(__('%sHow to submit your sitemap.xml in Google Webmaster Tool%s', _SQ_PLUGIN_NAME_), '<a href="http://howto.squirrly.co/wordpress-seo/how-to-submit-your-sitemap-xml-in-google-sitemap/" target="_blank">', '</a>'); ?></span>
|
727 |
-
<span><?php echo sprintf(__('%s10 Vital To Dos to Feed Your SEO Content Machine After You Post Articles%s', _SQ_PLUGIN_NAME_), '<a href="
|
728 |
<span><?php echo sprintf(__('For Google News Sitemap, ensure that your site is included in %sGoogle News%s', _SQ_PLUGIN_NAME_), '<a href="https://partnerdash.google.com/partnerdash/d/news" target="_blank">', '</a>'); ?></span>
|
729 |
</legend>
|
730 |
|
@@ -745,6 +741,18 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
745 |
</div>
|
746 |
<span><?php echo __('Ping your sitemap to Google and Bing when a new post is published', _SQ_PLUGIN_NAME_); ?></span>
|
747 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
748 |
<li>
|
749 |
<?php
|
750 |
$sitemap = SQ_Classes_Tools::getOption('sq_sitemap');
|
@@ -753,6 +761,10 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
753 |
<ul id="sq_sitemap_buid">
|
754 |
<li class="sq_selectall"><input type="checkbox" id="sq_selectall"/>Select All
|
755 |
</li>
|
|
|
|
|
|
|
|
|
756 |
<?php
|
757 |
$count_posts = wp_count_posts();
|
758 |
if (isset($count_posts->publish) && $count_posts->publish > 0) { ?>
|
@@ -764,7 +776,9 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
764 |
<input type="checkbox" class="sq_sitemap" name="sq_sitemap[]" value="sitemap-post" <?php echo(($sitemap['sitemap-post'][1] == 1) ? 'checked="checked"' : ''); ?>><?php _e('Posts', _SQ_PLUGIN_NAME_); ?>
|
765 |
</li>
|
766 |
<?php } ?>
|
767 |
-
|
|
|
|
|
768 |
<?php
|
769 |
$sitemap_category = SQ_Classes_ObjController::getClass('SQ_Models_Sitemaps')->getListTerms('sitemap-category');
|
770 |
if (count($sitemap_category) > 1) { ?>
|
@@ -821,6 +835,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
821 |
<li>
|
822 |
<p><?php _e('How often do you update your site?', _SQ_PLUGIN_NAME_); ?></p>
|
823 |
<select name="sq_sitemap_frequency">
|
|
|
824 |
<option value="daily" <?php echo((SQ_Classes_Tools::getOption('sq_sitemap_frequency') == 'daily') ? 'selected="selected"' : ''); ?>><?php _e('every day', _SQ_PLUGIN_NAME_); ?></option>
|
825 |
<option value="weekly" <?php echo((SQ_Classes_Tools::getOption('sq_sitemap_frequency') == 'weekly') ? 'selected="selected"' : ''); ?>><?php _e('1-3 times per week', _SQ_PLUGIN_NAME_); ?></option>
|
826 |
<option value="monthly" <?php echo((SQ_Classes_Tools::getOption('sq_sitemap_frequency') == 'monthly') ? 'selected="selected"' : ''); ?>><?php _e('1-3 times per month', _SQ_PLUGIN_NAME_); ?></option>
|
@@ -1059,6 +1074,14 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
1059 |
<span class="sq_icon sq_icon_googleanalytics"></span>
|
1060 |
<?php echo sprintf(__('Google %sAnalytics ID%s:', _SQ_PLUGIN_NAME_), '<a href="https://analytics.google.com/analytics/web/" target="_blank">', '</a>'); ?>
|
1061 |
<br><strong><input type="text" class="sq_codes" name="sq_codes[google_analytics]" value="<?php echo((isset($codes->google_analytics)) ? $codes->google_analytics : '') ?>" size="15" placeholder="UA-XXXXXXX-XX"/> (e.g. UA-XXXXXXX-XX)</strong>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1062 |
</p>
|
1063 |
<p class="withborder withcode">
|
1064 |
<span class="sq_icon sq_icon_facebookpixel"></span>
|
35 |
|
36 |
<?php SQ_Classes_ObjController::getClass('SQ_Core_BlockToolbar')->init(); ?>
|
37 |
|
38 |
+
<?php $menu = SQ_Classes_Tools::getOption('menu');
|
39 |
+
if ($menu['show_tutorial']) { ?>
|
40 |
+
<div id="sq_helpsettingsseocontent" class="sq_helpcontent"></div>
|
41 |
+
<div id="sq_helpsettingsseoside" class="sq_helpside"></div>
|
42 |
+
<?php } ?>
|
43 |
|
44 |
<div id="sq_left">
|
45 |
<form id="sq_settings_form" name="settings" action="" method="post" enctype="multipart/form-data">
|
47 |
<fieldset class="sq_seo">
|
48 |
<legend>
|
49 |
<span class="sq_legend_title"><?php _e('Let Squirrly SEO Optimize This Blog', _SQ_PLUGIN_NAME_); ?></span>
|
50 |
+
<span><?php echo sprintf(__('%sIs Squirrly SEO better than WordPress SEO by Yoast?%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/why_is_squirrly_seo_better_then_wordpress_seo_by_yoast-pagblog-article_id61980-html" target="_blank">', '</a>'); ?></span>
|
51 |
|
52 |
<span><?php _e('Activate the built-in SEO settings from Squirrly by switching Yes below. <strong>Works well with Multisites and Ecommerce.</strong>', _SQ_PLUGIN_NAME_); ?></span><br/>
|
53 |
<div class="sq_option_content">
|
211 |
<fieldset id="sq_title_description_keywords" class="sq_seo <?php echo((!SQ_Classes_Tools::getOption('sq_use')) ? 'deactivated' : ''); ?>">
|
212 |
<legend>
|
213 |
<span class="sq_legend_title"><?php _e('First Page Optimization', _SQ_PLUGIN_NAME_); ?></span>
|
214 |
+
<span><?php echo sprintf(__('%sThe best SEO approach to Meta information%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/the-best-seo-approach-to-meta-information" target="_blank">', '</a>'); ?></span>
|
215 |
<span><?php _e('Optimize the <strong>Titles</strong>', _SQ_PLUGIN_NAME_); ?></span>
|
216 |
<?php
|
217 |
$auto_option = false;
|
389 |
<?php } ?>
|
390 |
<?php
|
391 |
$types = get_post_types();
|
392 |
+
foreach (array('post', 'page', 'revision', 'nav_menu_item', 'shop_order', 'shop_coupon') as $exclude) {
|
393 |
if (in_array($exclude, $types)) {
|
394 |
unset($types[$exclude]);
|
395 |
}
|
405 |
?>
|
406 |
</ul>
|
407 |
|
408 |
+
<br/>
|
409 |
+
<br/>
|
410 |
|
411 |
<div class="sq_option_content withborder">
|
412 |
<div class="sq_switch">
|
572 |
|
573 |
</div>
|
574 |
<br/>
|
575 |
+
<span><?php echo sprintf(__('%sHow to pop out in Social Media with your links%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/how-to-pop-out-in-social-media-with-your-links." target="_blank">', '</a>'); ?></span>
|
576 |
+
<span><?php echo sprintf(__('%sGet busy with Facebook’s new Search Engine functions%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/get-busy-with-facebooks-new-search-engine-functions" target="_blank">', '</a>'); ?></span>
|
577 |
+
<span><?php echo sprintf(__('%sHow I Added Twitter Cards in My WordPress for Better Inbound Marketing%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/inbound_marketing_twitter_cards-pagblog-article_id62232.html" target="_blank">', '</a>'); ?></span>
|
578 |
|
579 |
<div class="sq_badge_google">
|
580 |
<div class="sq_badge-image"></div>
|
676 |
<br/><strong><input type="text" class="sq_socials" name="sq_socials[twitter_site]" value="<?php echo((isset($socials->twitter_site)) ? $socials->twitter_site : '') ?>" size="60" placeholder="https://twitter.com/"/> (e.g. https://twitter.com/XXXXXXXXXXXXXXXXXX)</strong>
|
677 |
</p>
|
678 |
</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
679 |
<li>
|
680 |
<p class="withborder withcode">
|
681 |
<span class="sq_icon sq_icon_facebook"></span>
|
720 |
<span class="sq_legend_title"><?php _e('XML Sitemap for Google', _SQ_PLUGIN_NAME_); ?></span>
|
721 |
<span><?php echo __('Squirrly Sitemap is the fastest way to tell Google about the pages on your site. <strong>Supports Multisites, Google News, Images, Videos, Custom Post Types, Custom Taxonomies and Ecommerce products</strong>', _SQ_PLUGIN_NAME_) ?></span>
|
722 |
<span><?php echo sprintf(__('%sHow to submit your sitemap.xml in Google Webmaster Tool%s', _SQ_PLUGIN_NAME_), '<a href="http://howto.squirrly.co/wordpress-seo/how-to-submit-your-sitemap-xml-in-google-sitemap/" target="_blank">', '</a>'); ?></span>
|
723 |
+
<span><?php echo sprintf(__('%s10 Vital To Dos to Feed Your SEO Content Machine After You Post Articles%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/10_vital_to_dos_to_feed_your_seo_content_machine_after_you_post_articles-pagblog-article_id62194-html" target="_blank">', '</a>'); ?></span>
|
724 |
<span><?php echo sprintf(__('For Google News Sitemap, ensure that your site is included in %sGoogle News%s', _SQ_PLUGIN_NAME_), '<a href="https://partnerdash.google.com/partnerdash/d/news" target="_blank">', '</a>'); ?></span>
|
725 |
</legend>
|
726 |
|
741 |
</div>
|
742 |
<span><?php echo __('Ping your sitemap to Google and Bing when a new post is published', _SQ_PLUGIN_NAME_); ?></span>
|
743 |
</div>
|
744 |
+
<?php if (function_exists('pll_get_post_translations')) { ?>
|
745 |
+
<div class="sq_option_content sq_option_content_small">
|
746 |
+
<div class="sq_switch sq_seo_switch_condition" style="<?php echo((!SQ_Classes_Tools::getOption('sq_use')) ? 'display:none;' : ''); ?>">
|
747 |
+
<input id="sq_sitemap_combinelangs1" type="radio" class="sq_switch-input" name="sq_sitemap_combinelangs" value="1" <?php echo(SQ_Classes_Tools::getOption('sq_sitemap_combinelangs') ? "checked" : '') ?> />
|
748 |
+
<label for="sq_sitemap_combinelangs1" class="sq_switch-label sq_switch-label-off"><?php _e('Yes', _SQ_PLUGIN_NAME_); ?></label>
|
749 |
+
<input id="sq_sitemap_combinelangs0" type="radio" class="sq_switch-input" name="sq_sitemap_combinelangs" value="0" <?php echo(!SQ_Classes_Tools::getOption('sq_sitemap_combinelangs') ? "checked" : '') ?> />
|
750 |
+
<label for="sq_sitemap_combinelangs0" class="sq_switch-label sq_switch-label-on"><?php _e('No', _SQ_PLUGIN_NAME_); ?></label>
|
751 |
+
<span class="sq_switch-selection"></span>
|
752 |
+
</div>
|
753 |
+
<span><?php echo __('Add all languages in the same sitemap', _SQ_PLUGIN_NAME_); ?></span>
|
754 |
+
</div>
|
755 |
+
<?php } ?>
|
756 |
<li>
|
757 |
<?php
|
758 |
$sitemap = SQ_Classes_Tools::getOption('sq_sitemap');
|
761 |
<ul id="sq_sitemap_buid">
|
762 |
<li class="sq_selectall"><input type="checkbox" id="sq_selectall"/>Select All
|
763 |
</li>
|
764 |
+
<li>
|
765 |
+
<input type="checkbox" class="sq_sitemap" name="sq_sitemap[]" value="sitemap-home" <?php echo(($sitemap['sitemap-home'][1] == 1) ? 'checked="checked"' : ''); ?>><?php _e('Home Page', _SQ_PLUGIN_NAME_); ?>
|
766 |
+
</li>
|
767 |
+
|
768 |
<?php
|
769 |
$count_posts = wp_count_posts();
|
770 |
if (isset($count_posts->publish) && $count_posts->publish > 0) { ?>
|
776 |
<input type="checkbox" class="sq_sitemap" name="sq_sitemap[]" value="sitemap-post" <?php echo(($sitemap['sitemap-post'][1] == 1) ? 'checked="checked"' : ''); ?>><?php _e('Posts', _SQ_PLUGIN_NAME_); ?>
|
777 |
</li>
|
778 |
<?php } ?>
|
779 |
+
<li>
|
780 |
+
<input type="checkbox" class="sq_sitemap" name="sq_sitemap[]" value="sitemap-attachment" <?php echo(($sitemap['sitemap-attachment'][1] == 1) ? 'checked="checked"' : ''); ?>><?php _e('Attachments', _SQ_PLUGIN_NAME_); ?>
|
781 |
+
</li>
|
782 |
<?php
|
783 |
$sitemap_category = SQ_Classes_ObjController::getClass('SQ_Models_Sitemaps')->getListTerms('sitemap-category');
|
784 |
if (count($sitemap_category) > 1) { ?>
|
835 |
<li>
|
836 |
<p><?php _e('How often do you update your site?', _SQ_PLUGIN_NAME_); ?></p>
|
837 |
<select name="sq_sitemap_frequency">
|
838 |
+
<option value="hourly" <?php echo((SQ_Classes_Tools::getOption('sq_sitemap_frequency') == 'hourly') ? 'selected="selected"' : ''); ?>><?php _e('every hour', _SQ_PLUGIN_NAME_); ?></option>
|
839 |
<option value="daily" <?php echo((SQ_Classes_Tools::getOption('sq_sitemap_frequency') == 'daily') ? 'selected="selected"' : ''); ?>><?php _e('every day', _SQ_PLUGIN_NAME_); ?></option>
|
840 |
<option value="weekly" <?php echo((SQ_Classes_Tools::getOption('sq_sitemap_frequency') == 'weekly') ? 'selected="selected"' : ''); ?>><?php _e('1-3 times per week', _SQ_PLUGIN_NAME_); ?></option>
|
841 |
<option value="monthly" <?php echo((SQ_Classes_Tools::getOption('sq_sitemap_frequency') == 'monthly') ? 'selected="selected"' : ''); ?>><?php _e('1-3 times per month', _SQ_PLUGIN_NAME_); ?></option>
|
1074 |
<span class="sq_icon sq_icon_googleanalytics"></span>
|
1075 |
<?php echo sprintf(__('Google %sAnalytics ID%s:', _SQ_PLUGIN_NAME_), '<a href="https://analytics.google.com/analytics/web/" target="_blank">', '</a>'); ?>
|
1076 |
<br><strong><input type="text" class="sq_codes" name="sq_codes[google_analytics]" value="<?php echo((isset($codes->google_analytics)) ? $codes->google_analytics : '') ?>" size="15" placeholder="UA-XXXXXXX-XX"/> (e.g. UA-XXXXXXX-XX)</strong>
|
1077 |
+
|
1078 |
+
<span style="display: block; margin-left: 65px">
|
1079 |
+
<?php echo __('Google Tracking Mode:', _SQ_PLUGIN_NAME_); ?>
|
1080 |
+
<select name="sq_analytics_google_js">
|
1081 |
+
<option value="analytics" <?php echo((SQ_Classes_Tools::getOption('sq_analytics_google_js') == 'analytics') ? 'selected="selected"' : ''); ?>><?php _e('analytics.js', _SQ_PLUGIN_NAME_); ?></option>
|
1082 |
+
<option value="gtag" <?php echo((SQ_Classes_Tools::getOption('sq_analytics_google_js') == 'gtag') ? 'selected="selected"' : ''); ?>><?php _e('gtag.js', _SQ_PLUGIN_NAME_); ?></option>
|
1083 |
+
</select>
|
1084 |
+
</span>
|
1085 |
</p>
|
1086 |
<p class="withborder withcode">
|
1087 |
<span class="sq_icon sq_icon_facebookpixel"></span>
|
view/BlockSupport.php
CHANGED
@@ -1,43 +1,58 @@
|
|
1 |
-
|
2 |
-
|
|
|
|
|
|
|
3 |
|
4 |
-
<li id="sq_options_dasboard">
|
5 |
-
<?php if (current_user_can('manage_options')) { ?>
|
6 |
-
<span class="sq_push" style="display:none;">1</span>
|
7 |
-
<span class="sq_text"><a href="<?php echo _SQ_DASH_URL_ ?>login/?token=<?php echo SQ_Classes_Tools::getOption('sq_api') ?>&redirect_to=<?php echo _SQ_DASH_URL_ ?>user/dashboard" title="<?php _e('Go to Profile', _SQ_PLUGIN_NAME_) ?>" target="_blank"><span><?php _e('Profile', _SQ_PLUGIN_NAME_) ?></span></a></span>
|
8 |
-
<a href="<?php echo _SQ_DASH_URL_ ?>user/" title="<?php _e('Profile', _SQ_PLUGIN_NAME_) ?>" target="_blank"><span class="sq_icon"></span></a>
|
9 |
-
<?php
|
10 |
-
} else {
|
11 |
-
echo ' ';
|
12 |
-
}
|
13 |
-
?>
|
14 |
-
</li>
|
15 |
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
<
|
19 |
-
<ul class="sq_options_support_popup" style="display: none;">
|
20 |
-
<div id="sq_options_close">x</div>
|
21 |
-
<li><?php echo __('Need Help with Squirrly SEO?', _SQ_PLUGIN_NAME_) ?></li>
|
22 |
-
<li>
|
23 |
-
<p id="sq_support_msg">
|
24 |
-
<textarea class="sq_small_input" name="sq_support_message" cols="30" rows="5"></textarea></p>
|
25 |
-
<div id="sq_options_support_error"></div>
|
26 |
-
<p>
|
27 |
-
<input id="sq_support_submit" type="button" value="<?php _e('Send Question', _SQ_PLUGIN_NAME_) ?>">
|
28 |
-
</p>
|
29 |
|
30 |
-
|
31 |
-
<
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
|
42 |
<span class="sq_icon <?php
|
43 |
if (isset($_COOKIE['sq_feedback_face']) && (int)$_COOKIE['sq_feedback_face'] > 0) {
|
@@ -48,56 +63,57 @@
|
|
48 |
echo 'title="' . __('How was your Squirrly experience today?', _SQ_PLUGIN_NAME_) . '"';
|
49 |
}
|
50 |
?>></span>
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
|
102 |
-
|
103 |
-
</div>
|
|
1 |
+
<?php
|
2 |
+
$menu = SQ_Classes_Tools::getOption('menu');
|
3 |
+
if ($menu['show_panel']) { ?>
|
4 |
+
<div id="sq_options">
|
5 |
+
<ul>
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
+
<li id="sq_options_dasboard">
|
9 |
+
<?php if (current_user_can('manage_options')) { ?>
|
10 |
+
<span class="sq_push" style="display:none;">1</span>
|
11 |
+
<span class="sq_text"><a href="<?php echo _SQ_DASH_URL_ ?>login/?token=<?php echo SQ_Classes_Tools::getToken() ?>&redirect_to=<?php echo _SQ_DASH_URL_ ?>user/dashboard" title="<?php _e('Go to Profile', _SQ_PLUGIN_NAME_) ?>" target="_blank"><span><?php _e('Profile', _SQ_PLUGIN_NAME_) ?></span></a></span>
|
12 |
+
<a href="<?php echo _SQ_DASH_URL_ ?>login/?token=<?php echo SQ_Classes_Tools::getToken() ?>&redirect_to=<?php echo _SQ_DASH_URL_ ?>user/dashboard" title="<?php _e('Profile', _SQ_PLUGIN_NAME_) ?>" target="_blank"><span class="sq_icon"></span></a>
|
13 |
+
<?php
|
14 |
+
} else {
|
15 |
+
echo ' ';
|
16 |
+
}
|
17 |
+
?>
|
18 |
+
</li>
|
19 |
|
20 |
+
<li id="sq_options_support">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
+
<span class="sq_text"><?php _e('Support', _SQ_PLUGIN_NAME_) ?></span><span class="sq_icon"></span>
|
23 |
+
<ul class="sq_options_support_popup" style="display: none;">
|
24 |
+
<div id="sq_options_close">x</div>
|
25 |
+
<li><?php echo __('Need Help with Squirrly SEO?', _SQ_PLUGIN_NAME_) ?></li>
|
26 |
+
<li>
|
27 |
+
<p id="sq_support_email">
|
28 |
+
<input class="sq_small_input" name="sq_support_email" value="<?php
|
29 |
+
$current_user = wp_get_current_user();
|
30 |
+
echo(SQ_Classes_Tools::getOption('sq_support_email') <> '' ? SQ_Classes_Tools::getOption('sq_support_email') : $current_user->user_email);
|
31 |
+
?>"/>
|
32 |
+
</p>
|
33 |
+
<p id="sq_support_msg">
|
34 |
+
<textarea class="sq_small_input" name="sq_support_message" cols="30" rows="5"></textarea>
|
35 |
+
</p>
|
36 |
+
<div id="sq_options_support_error"></div>
|
37 |
+
<p>
|
38 |
+
<input id="sq_support_submit" type="button" value="<?php _e('Send Question', _SQ_PLUGIN_NAME_) ?>">
|
39 |
+
</p>
|
40 |
+
<p>
|
41 |
+
<span>
|
42 |
+
<?php echo sprintf(__("By clicking Send Question you're agreeing to %sSquirrly Terms%s", _SQ_PLUGIN_NAME_), '<br/><a href="https://www.squirrly.co/terms-of-use#page-block-lvtsrakgujgzxgvi" target="_blank" >', '</a>'); ?>
|
43 |
+
</span>
|
44 |
+
</p>
|
45 |
+
</li>
|
46 |
+
<hr/>
|
47 |
+
<li><?php _e('For more support:', _SQ_PLUGIN_NAME_) ?> </li>
|
48 |
+
<li> - <?php echo sprintf(__('10 AM to 4 PM (GMT): Mon-Fri %sby email%s.', _SQ_PLUGIN_NAME_), '<a href="mailto:' . _SQ_SUPPORT_EMAIL_ . '">', '</a>') ?> </li>
|
49 |
+
<li> - <?php echo sprintf(__('%sLive Chat%s on Youtube. Thursday 4 PM.', _SQ_PLUGIN_NAME_), '<a href="https://www.youtube.com/c/GetGrowthTV/live" target="_blank">', '</a>') ?> </li>
|
50 |
+
<li> - <?php echo sprintf(__('Facebook %sSupport Community%s.', _SQ_PLUGIN_NAME_), '<a href="https://www.facebook.com/groups/SquirrlySEOCustomerService/" target="_blank">', '</a>') ?> </li>
|
51 |
+
<li> - <?php echo sprintf(__('New Lessons Mon. and Tue. on %sTwitter%s.', _SQ_PLUGIN_NAME_), '<a href="https://twitter.com/squirrlyhq" target="_blank">', '</a>') ?> </li>
|
52 |
|
53 |
+
</ul>
|
54 |
+
</li>
|
55 |
+
<li id="sq_options_feedback">
|
56 |
|
57 |
<span class="sq_icon <?php
|
58 |
if (isset($_COOKIE['sq_feedback_face']) && (int)$_COOKIE['sq_feedback_face'] > 0) {
|
63 |
echo 'title="' . __('How was your Squirrly experience today?', _SQ_PLUGIN_NAME_) . '"';
|
64 |
}
|
65 |
?>></span>
|
66 |
+
<?php if (!isset($_COOKIE['sq_feedback_face']) || (isset($_COOKIE['sq_feedback_face']) && (int)$_COOKIE['sq_feedback_face'] < 3)) { ?>
|
67 |
+
<?php if (SQ_Classes_Tools::getOption('sq_feedback')) { ?>
|
68 |
+
<span class="sq_push">1</span>
|
69 |
+
<?php } ?>
|
70 |
+
<ul class="sq_options_feedback_popup" style="display: none;">
|
71 |
+
<div id="sq_options_feedback_close">x</div>
|
72 |
+
<li><?php echo __('How was Squirrly today?', _SQ_PLUGIN_NAME_) ?></li>
|
73 |
+
<li>
|
74 |
+
<table width="100%" cellpadding="2" cellspacing="0" border="0">
|
75 |
+
<tr>
|
76 |
+
<td>
|
77 |
+
<label class="sq_label_feedback_smiley sq_label_feedback_0" for="sq_feedback_0"></label><input class="sq_feedback_smiley" type="radio" name="sq_feedback_face" id="sq_feedback_0" value="1" title="<?php _e('Angry', _SQ_PLUGIN_NAME_) ?>"/><?php _e("Annoying", _SQ_PLUGIN_NAME_) ?>
|
78 |
+
</td>
|
79 |
+
<td>
|
80 |
+
<label class="sq_label_feedback_smiley sq_label_feedback_1" for="sq_feedback_1"></label><input class="sq_feedback_smiley" type="radio" name="sq_feedback_face" id="sq_feedback_1" value="2" title="<?php _e('Sad', _SQ_PLUGIN_NAME_) ?>"/><?php _e("Bad", _SQ_PLUGIN_NAME_) ?>
|
81 |
+
</td>
|
82 |
+
<td>
|
83 |
+
<label class="sq_label_feedback_smiley sq_label_feedback_2" for="sq_feedback_2"></label><input class="sq_feedback_smiley" type="radio" name="sq_feedback_face" id="sq_feedback_2" value="3" title="<?php _e('Happy', _SQ_PLUGIN_NAME_) ?>"/><?php _e("Nice", _SQ_PLUGIN_NAME_) ?>
|
84 |
+
</td>
|
85 |
+
<td>
|
86 |
+
<label class="sq_label_feedback_smiley sq_label_feedback_3" for="sq_feedback_3"></label><input class="sq_feedback_smiley" type="radio" name="sq_feedback_face" id="sq_feedback_3" value="4" title="<?php _e('Excited', _SQ_PLUGIN_NAME_) ?>"/><?php _e("Great", _SQ_PLUGIN_NAME_) ?>
|
87 |
+
</td>
|
88 |
+
<td>
|
89 |
+
<label class="sq_label_feedback_smiley sq_label_feedback_4" for="sq_feedback_4"></label><input class="sq_feedback_smiley" type="radio" name="sq_feedback_face" id="sq_feedback_4" value="5" title="<?php _e('Love it', _SQ_PLUGIN_NAME_) ?>"/><?php _e("Love it", _SQ_PLUGIN_NAME_) ?>
|
90 |
+
</td>
|
91 |
+
</tr>
|
92 |
+
</table>
|
93 |
+
<div id="sq_options_feedback_error"></div>
|
94 |
+
<p id="sq_feedback_msg" style="display: none;">
|
95 |
+
<?php echo __('Please tell us why?', _SQ_PLUGIN_NAME_) ?>
|
96 |
+
<textarea class="sq_small_input" name="sq_feedback_message" cols="30" rows="2"></textarea>
|
97 |
+
<br/>
|
98 |
+
<input id="sq_feedback_submit" type="button" value="<?php _e('Send feedback', _SQ_PLUGIN_NAME_) ?>">
|
99 |
+
</p>
|
100 |
|
101 |
+
</li>
|
102 |
+
<li style="margin-top: 10px;"><?php _e('For more support:', _SQ_PLUGIN_NAME_) ?> </li>
|
103 |
+
<li> - <?php echo sprintf(__('10 AM to 4 PM (GMT): Mon-Fri %sby email%s.', _SQ_PLUGIN_NAME_), '<a href="mailto:' . _SQ_SUPPORT_EMAIL_ . '">', '</a>') ?> </li>
|
104 |
+
<li> - <?php echo sprintf(__('%sSupport button%s here in WordPress (^^)', _SQ_PLUGIN_NAME_), '<a href="javascript:void(0);" onclick="jQuery(\'#sq_options_support\').find(\'span\').trigger(\'click\')" target="_blank">', '</a>') ?> </li>
|
105 |
+
<li> - <?php echo sprintf(__('%sLive Chat%s on Youtube. Thursday 4 PM.', _SQ_PLUGIN_NAME_), '<a href="https://www.youtube.com/c/GetGrowthTV/live" target="_blank">', '</a>') ?> </li>
|
106 |
+
<li> - <?php echo sprintf(__('Facebook %sSupport Community%s.', _SQ_PLUGIN_NAME_), '<a href="https://www.facebook.com/groups/SquirrlySEOCustomerService/" target="_blank">', '</a>') ?> </li>
|
107 |
+
<li> - <?php echo sprintf(__('New Lessons Mon. and Tue. on %sTwitter%s.', _SQ_PLUGIN_NAME_), '<a href="https://twitter.com/squirrlyhq" target="_blank">', '</a>') ?> </li>
|
108 |
+
</ul>
|
109 |
+
<?php } else { ?>
|
110 |
+
<ul class="sq_options_feedback_popup" style="display: none;">
|
111 |
+
<div id="sq_options_feedback_close">x</div>
|
112 |
+
<li><?php echo __('Thank you! You can send us a happy face tomorow too.', _SQ_PLUGIN_NAME_) ?></li>
|
113 |
+
</ul>
|
114 |
+
<?php } ?>
|
115 |
+
</li>
|
116 |
|
117 |
+
</ul>
|
118 |
+
</div>
|
119 |
+
<?php } ?>
|
view/Blocklogin.php
CHANGED
@@ -28,7 +28,7 @@
|
|
28 |
|
29 |
</div>
|
30 |
<div id="sq_termsdiv">
|
31 |
-
<input type="checkbox" id="sq_terms" style="height: 18px;width: 18px; margin: 0 10px;"/><?php echo sprintf(__('I Agree with the %
|
32 |
</div>
|
33 |
<div id="sq_loginimage" style="opacity: 0.4"><?php _e('Sign Up', _SQ_PLUGIN_NAME_); ?></div>
|
34 |
<div id="sq_signin"><?php _e('I already have an account', _SQ_PLUGIN_NAME_); ?></div>
|
28 |
|
29 |
</div>
|
30 |
<div id="sq_termsdiv">
|
31 |
+
<input type="checkbox" id="sq_terms" style="height: 18px;width: 18px; margin: 0 10px;"/><?php echo sprintf(__('I Agree with the Squirrly %sTerms of Use%s and %sPrivacy Policy%s', _SQ_PLUGIN_NAME_), '<a href="https://www.squirrly.co/terms-of-use" target="_blank" >', '</a>', '<a href="https://www.squirrly.co/privacy-policy" target="_blank" >', '</a>'); ?>
|
32 |
</div>
|
33 |
<div id="sq_loginimage" style="opacity: 0.4"><?php _e('Sign Up', _SQ_PLUGIN_NAME_); ?></div>
|
34 |
<div id="sq_signin"><?php _e('I already have an account', _SQ_PLUGIN_NAME_); ?></div>
|
view/FrontMenu.php
CHANGED
@@ -25,7 +25,7 @@ if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
|
25 |
$view->post->sq->title = $view->post->sq->getClearedTitle();
|
26 |
$view->post->sq->description = $view->post->sq->getClearedDescription();
|
27 |
|
28 |
-
if($view->post->ID > 0 && function_exists('get_sample_permalink')) {
|
29 |
list($permalink, $post_name) = get_sample_permalink($view->post->ID);
|
30 |
if (strpos($permalink, '%postname%') !== false || strpos($permalink, '%pagename%') !== false) {
|
31 |
$view->post->url = str_replace(array('%pagename%', '%postname%'), esc_html($post_name), esc_html(urldecode($permalink)));
|
@@ -110,14 +110,18 @@ if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
|
110 |
<input type="button" class="sq_button sq_edit" value="<?php _e('Edit Snippet', _SQ_PLUGIN_NAME_) ?>"/>
|
111 |
</div>
|
112 |
</div>
|
113 |
-
|
114 |
-
<
|
115 |
-
<
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
|
|
|
|
|
|
|
|
121 |
</div>
|
122 |
<div class="sq_tab_edit">
|
123 |
<div class="row b-b m-b-md ">
|
@@ -132,7 +136,7 @@ if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
|
132 |
<div class="row">
|
133 |
<div class="three columns sq_text"><?php _e('SEO Title', _SQ_PLUGIN_NAME_) ?>:</div>
|
134 |
<div class="nine columns">
|
135 |
-
<div class="input-group <?php echo
|
136 |
<input type="text" autocomplete="off" id="sq_title" name="sq_title" class="form-control input-lg sq-toggle" value="<?php echo SQ_Classes_Tools::clearTitle($view->post->sq_adm->title) ?>" placeholder="<?php echo(SQ_Classes_Tools::getOption('sq_auto_pattern') ? __('Pattern: ', _SQ_PLUGIN_NAME_) . $view->post->sq_adm->patterns->title : '') ?>"/>
|
137 |
<input type="hidden" id="sq_title_preview" name="sq_title_preview" value="<?php echo $view->post->sq->title ?>">
|
138 |
<div class="sq-actions">
|
@@ -182,7 +186,7 @@ if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
|
182 |
<div class="row">
|
183 |
<div class="three columns sq_text"><?php _e('META Description', _SQ_PLUGIN_NAME_) ?>:</div>
|
184 |
<div class="nine columns">
|
185 |
-
<div class="input-group <?php echo
|
186 |
<textarea style="color: black;" class="form-control sq-toggle" name="sq_description" id="sq_description" placeholder="<?php echo(SQ_Classes_Tools::getOption('sq_auto_pattern') ? __('Pattern: ', _SQ_PLUGIN_NAME_) . $view->post->sq_adm->patterns->description : '') ?>"><?php echo SQ_Classes_Tools::clearDescription($view->post->sq_adm->description) ?></textarea>
|
187 |
<div class="sq-actions">
|
188 |
<div class="sq-action">
|
@@ -341,7 +345,7 @@ if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
|
341 |
<div class="row">
|
342 |
<div class="three columns sq_text"><?php _e('OG Title', _SQ_PLUGIN_NAME_) ?>:</div>
|
343 |
<div class="nine columns">
|
344 |
-
<div class="<?php echo
|
345 |
<input type="text" autocomplete="off" name="sq_og_title" id="sq_og_title" value="<?php echo SQ_Classes_Tools::clearTitle($view->post->sq_adm->og_title) ?>"/>
|
346 |
</div>
|
347 |
<div class="row">
|
@@ -354,7 +358,7 @@ if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
|
354 |
<div class="row">
|
355 |
<div class="three columns sq_text"><?php _e('OG Description', _SQ_PLUGIN_NAME_) ?>:</div>
|
356 |
<div class="nine columns">
|
357 |
-
<div class="<?php echo
|
358 |
<textarea style="color: black;" name="sq_og_description" id="sq_og_description"><?php echo SQ_Classes_Tools::clearDescription($view->post->sq_adm->og_description) ?></textarea>
|
359 |
</div>
|
360 |
<div class="row">
|
@@ -481,7 +485,7 @@ if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
|
481 |
<div class="row">
|
482 |
<div class="three columns sq_text"><?php _e('Twitter Card Title', _SQ_PLUGIN_NAME_) ?></div>
|
483 |
<div class="nine columns">
|
484 |
-
<div class="<?php echo
|
485 |
<input type="text" autocomplete="off" name="sq_tw_title" id="sq_tw_title" value="<?php echo SQ_Classes_Tools::clearTitle($view->post->sq_adm->tw_title) ?>"/>
|
486 |
</div>
|
487 |
<div class="row">
|
@@ -494,7 +498,7 @@ if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
|
494 |
<div class="row">
|
495 |
<div class="three columns sq_text"><?php _e('Twitter Card Description', _SQ_PLUGIN_NAME_) ?></div>
|
496 |
<div class="nine columns">
|
497 |
-
<div class="<?php echo
|
498 |
<textarea style="color: black;" name="sq_tw_description" id="sq_tw_description"><?php echo SQ_Classes_Tools::clearDescription($view->post->sq_adm->tw_description) ?></textarea>
|
499 |
</div>
|
500 |
<div class="row">
|
25 |
$view->post->sq->title = $view->post->sq->getClearedTitle();
|
26 |
$view->post->sq->description = $view->post->sq->getClearedDescription();
|
27 |
|
28 |
+
if ($view->post->ID > 0 && function_exists('get_sample_permalink')) {
|
29 |
list($permalink, $post_name) = get_sample_permalink($view->post->ID);
|
30 |
if (strpos($permalink, '%postname%') !== false || strpos($permalink, '%pagename%') !== false) {
|
31 |
$view->post->url = str_replace(array('%pagename%', '%postname%'), esc_html($post_name), esc_html(urldecode($permalink)));
|
110 |
<input type="button" class="sq_button sq_edit" value="<?php _e('Edit Snippet', _SQ_PLUGIN_NAME_) ?>"/>
|
111 |
</div>
|
112 |
</div>
|
113 |
+
<?php if ($preview_title <> __('Auto Draft')) { ?>
|
114 |
+
<div id="sq_snippet">
|
115 |
+
<ul id="sq_snippet_ul">
|
116 |
+
<li id="sq_snippet_title" title="<?php echo $preview_title ?>"><?php echo $preview_title ?></li>
|
117 |
+
<li id="sq_snippet_url" title="<?php echo urldecode($view->post->url) ?>"><?php echo urldecode($view->post->url) ?></li>
|
118 |
+
<li id="sq_snippet_description" title="<?php echo $preview_description ?>"><?php echo $preview_description ?></li>
|
119 |
+
<li id="sq_snippet_keywords"><?php echo $preview_keywords ?></li>
|
120 |
+
</ul>
|
121 |
+
</div>
|
122 |
+
<?php }else{ ?>
|
123 |
+
<div id="sq_snippet" ><div style="padding: 20px"><?php echo __('Please save the post first to be able to edit the Squirrly SEO Snippet',_SQ_PLUGIN_NAME_) ?></div></div>
|
124 |
+
<?php } ?>
|
125 |
</div>
|
126 |
<div class="sq_tab_edit">
|
127 |
<div class="row b-b m-b-md ">
|
136 |
<div class="row">
|
137 |
<div class="three columns sq_text"><?php _e('SEO Title', _SQ_PLUGIN_NAME_) ?>:</div>
|
138 |
<div class="nine columns">
|
139 |
+
<div class="input-group <?php echo(SQ_Classes_Tools::getOption('sq_auto_pattern') ? 'sq_pattern_field' : '') ?>">
|
140 |
<input type="text" autocomplete="off" id="sq_title" name="sq_title" class="form-control input-lg sq-toggle" value="<?php echo SQ_Classes_Tools::clearTitle($view->post->sq_adm->title) ?>" placeholder="<?php echo(SQ_Classes_Tools::getOption('sq_auto_pattern') ? __('Pattern: ', _SQ_PLUGIN_NAME_) . $view->post->sq_adm->patterns->title : '') ?>"/>
|
141 |
<input type="hidden" id="sq_title_preview" name="sq_title_preview" value="<?php echo $view->post->sq->title ?>">
|
142 |
<div class="sq-actions">
|
186 |
<div class="row">
|
187 |
<div class="three columns sq_text"><?php _e('META Description', _SQ_PLUGIN_NAME_) ?>:</div>
|
188 |
<div class="nine columns">
|
189 |
+
<div class="input-group <?php echo(SQ_Classes_Tools::getOption('sq_auto_pattern') ? 'sq_pattern_field' : '') ?>">
|
190 |
<textarea style="color: black;" class="form-control sq-toggle" name="sq_description" id="sq_description" placeholder="<?php echo(SQ_Classes_Tools::getOption('sq_auto_pattern') ? __('Pattern: ', _SQ_PLUGIN_NAME_) . $view->post->sq_adm->patterns->description : '') ?>"><?php echo SQ_Classes_Tools::clearDescription($view->post->sq_adm->description) ?></textarea>
|
191 |
<div class="sq-actions">
|
192 |
<div class="sq-action">
|
345 |
<div class="row">
|
346 |
<div class="three columns sq_text"><?php _e('OG Title', _SQ_PLUGIN_NAME_) ?>:</div>
|
347 |
<div class="nine columns">
|
348 |
+
<div class="<?php echo(SQ_Classes_Tools::getOption('sq_auto_pattern') ? 'sq_pattern_field' : '') ?>">
|
349 |
<input type="text" autocomplete="off" name="sq_og_title" id="sq_og_title" value="<?php echo SQ_Classes_Tools::clearTitle($view->post->sq_adm->og_title) ?>"/>
|
350 |
</div>
|
351 |
<div class="row">
|
358 |
<div class="row">
|
359 |
<div class="three columns sq_text"><?php _e('OG Description', _SQ_PLUGIN_NAME_) ?>:</div>
|
360 |
<div class="nine columns">
|
361 |
+
<div class="<?php echo(SQ_Classes_Tools::getOption('sq_auto_pattern') ? 'sq_pattern_field' : '') ?>">
|
362 |
<textarea style="color: black;" name="sq_og_description" id="sq_og_description"><?php echo SQ_Classes_Tools::clearDescription($view->post->sq_adm->og_description) ?></textarea>
|
363 |
</div>
|
364 |
<div class="row">
|
485 |
<div class="row">
|
486 |
<div class="three columns sq_text"><?php _e('Twitter Card Title', _SQ_PLUGIN_NAME_) ?></div>
|
487 |
<div class="nine columns">
|
488 |
+
<div class="<?php echo(SQ_Classes_Tools::getOption('sq_auto_pattern') ? 'sq_pattern_field' : '') ?>">
|
489 |
<input type="text" autocomplete="off" name="sq_tw_title" id="sq_tw_title" value="<?php echo SQ_Classes_Tools::clearTitle($view->post->sq_adm->tw_title) ?>"/>
|
490 |
</div>
|
491 |
<div class="row">
|
498 |
<div class="row">
|
499 |
<div class="three columns sq_text"><?php _e('Twitter Card Description', _SQ_PLUGIN_NAME_) ?></div>
|
500 |
<div class="nine columns">
|
501 |
+
<div class="<?php echo(SQ_Classes_Tools::getOption('sq_auto_pattern') ? 'sq_pattern_field' : '') ?>">
|
502 |
<textarea style="color: black;" name="sq_tw_description" id="sq_tw_description"><?php echo SQ_Classes_Tools::clearDescription($view->post->sq_adm->tw_description) ?></textarea>
|
503 |
</div>
|
504 |
<div class="row">
|
view/css/blockaccount.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
#update-nag, .notice-error, .update-nag, .updated, .show-settings, .screen-meta-toggle{
|
2 |
display: none !important;
|
3 |
}
|
4 |
|
1 |
+
#update-nag, .notice-error, .update-nag, .updated, .show-settings, .screen-meta-toggle, .error{
|
2 |
display: none !important;
|
3 |
}
|
4 |
|
view/css/blockaccount.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#update-nag,.notice-error,.update-nag,.updated,.show-settings,.screen-meta-toggle{display:none !important}@media only screen and (max-width:1030px){.sq_helpside{clear:both;float:left;width:808px;height:275px;margin:0;padding:0}.sq_helpside>div{float:left;width:175px;border:1px solid #ccc;background-color:#fcfcfc;padding:10px;margin:10px 5px 10px 0;height:240px}}
|
1 |
+
#update-nag,.notice-error,.update-nag,.updated,.show-settings,.screen-meta-toggle,.error{display:none !important}@media only screen and (max-width:1030px){.sq_helpside{clear:both;float:left;width:808px;height:275px;margin:0;padding:0}.sq_helpside>div{float:left;width:175px;border:1px solid #ccc;background-color:#fcfcfc;padding:10px;margin:10px 5px 10px 0;height:240px}}
|
view/css/blockkeywordresearch.css
CHANGED
@@ -254,7 +254,7 @@
|
|
254 |
text-align: left;
|
255 |
padding: 8px;
|
256 |
line-height: 1.42857143;
|
257 |
-
vertical-align:
|
258 |
border-top: 1px solid #ddd;
|
259 |
}
|
260 |
|
254 |
text-align: left;
|
255 |
padding: 8px;
|
256 |
line-height: 1.42857143;
|
257 |
+
vertical-align: middle;
|
258 |
border-top: 1px solid #ddd;
|
259 |
}
|
260 |
|
view/css/blockkeywordresearch.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#update-nag,.notice-error,.update-nag,.updated,.show-settings,.screen-meta-toggle{display:none !important}#sq_settings .sq_subtitles p{margin:5px 45px 40px 45px}#sq_settings_body fieldset{width:800px}#sq_helpkeywordresearchcontent{float:left;width:900px}.sq_beta{display:none !important}.sq_limit_exceeded{clear:both !important;margin:0 auto;text-align:center}.sq_limit_exceeded a{text-decoration:none;display:block;width:200px;clear:both;background-color:#1cab09;font-size:15px;font-weight:bold;color:white;margin:10px auto 0 auto;padding:11px;position:relative;text-shadow:1px 1px #555;cursor:pointer}#sq_research{margin:0}#sq_research ul.sq_research_complexity{right:195px}#sq_research ul.sq_research_lang{right:55px;top:17px}#sq_kr_history #sq_kr_history_title{font-size:23px;margin:40px 0 20px}#sq_kr_history .panel{margin-top:10px}#sq_kr_history .sq_kr_history_head td{padding:6px}#sq_kr_history .sq_kr_history_td{padding:13px 5px;line-height:25px;font-size:16px;max-width:590px;text-overflow:ellipsis;overflow:hidden}#sq_kr_history tr.sq_kr_history_row{cursor:pointer}#sq_kr_history tr.sq_kr_history_row.sq_tr_odd{background:#f4f4f4}#sq_kr_history tr.sq_kr_history_row.sq_tr_even{background:#FFF}#sq_kr_history .sq_kr_history_td span{font-size:14px;cursor:pointer}#sq_kr_history .sq_kr_history_row_detail{display:none;background:white}#sq_kr_history .sq_top_keywords{clear:both !important;float:none !important;width:100%;margin:0 auto !important;padding:0}#sq_kr_history .sq_top_keywords table{border-collapse:collapse}#sq_kr_history .sq_top_keywords>table{position:relative;background-color:#f7f7f7;width:100%}#sq_kr_history .sq_top_keywords>table{border:1px solid #eee}#sq_kr_history .sq_top_keywords>table>tbody>tr{background-color:#fff}#sq_kr_history .sq_top_keywords>table>tr>th,#sq_kr_history .sq_top_keywords>table>tbody>tr>th,#sq_kr_history .sq_top_keywords>table>tr>td,#sq_kr_history .sq_top_keywords>table>tbody>tr>td{border:1px dashed #f1f1f1;padding:3px 10px;color:#414141;font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:1.4em;max-width:350px;white-space:normal;overflow:hidden;text-overflow:ellipsis}#sq_kr_history .sq_top_keywords>table>tbody>tr>th{background-color:#8684a4;color:#fff;text-shadow:none}#sq_kr_history .sq_top_keywords>table>tr>th{text-align:center;font-weight:bold;color:#ccc}#sq_kr_history .sq_keywords_research{padding:0;margin:0}#sq_kr_history .sq_top_keywords_rank{font-size:14px;font-weight:bold;margin-left:5px}#sq_kr_history .sq_top_keywords_rank strong{font-family:'Megalopolis',Arial,Helvetica,sans-serif;font-size:14px;margin:0 5px;border:1px solid red;background-color:white;border-radius:50px;-webkit-border-radius:50px;-moz-border-radius:50px;padding:3px 7px;text-shadow:1px 1px white;color:red;text-align:center}#sq_kr_history .sq_research_showinfo:hover{background-position:0 -71px}#sq_kr_history .sq_top_keywords_info{padding:5px}#sq_kr_history .sq_to_keywords_info table{margin:0 auto}#sq_kr_history .sq_top_keywords_info td{border-bottom:1px dashed #d8d8d8;padding:4px 10px;color:#414141;text-align:left;font-size:12px}#sq_kr_history .sq_top_keywords_info td .sq_top_keywords_rank{font-size:12px;font-weight:normal}#sq_kr_history .sq_input_noback{background:transparent;border:0}#sq_kr_history .sq_research_selectit{padding:4px 11px;font-size:12px;font-weight:500;color:white;cursor:pointer;background-color:#589ee4;text-shadow:1px 1px #777;border:1px solid white}#sq_kr_history .sq_research_addbriefcase{display:block;padding:4px 11px;font-size:12px;font-weight:500;color:white;cursor:pointer;background-color:#d86525;text-shadow:1px 1px #777;border:1px solid white}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{text-align:left;padding:8px;line-height:1.42857143;vertical-align:
|
1 |
+
#update-nag,.notice-error,.update-nag,.updated,.show-settings,.screen-meta-toggle{display:none !important}#sq_settings .sq_subtitles p{margin:5px 45px 40px 45px}#sq_settings_body fieldset{width:800px}#sq_helpkeywordresearchcontent{float:left;width:900px}.sq_beta{display:none !important}.sq_limit_exceeded{clear:both !important;margin:0 auto;text-align:center}.sq_limit_exceeded a{text-decoration:none;display:block;width:200px;clear:both;background-color:#1cab09;font-size:15px;font-weight:bold;color:white;margin:10px auto 0 auto;padding:11px;position:relative;text-shadow:1px 1px #555;cursor:pointer}#sq_research{margin:0}#sq_research ul.sq_research_complexity{right:195px}#sq_research ul.sq_research_lang{right:55px;top:17px}#sq_kr_history #sq_kr_history_title{font-size:23px;margin:40px 0 20px}#sq_kr_history .panel{margin-top:10px}#sq_kr_history .sq_kr_history_head td{padding:6px}#sq_kr_history .sq_kr_history_td{padding:13px 5px;line-height:25px;font-size:16px;max-width:590px;text-overflow:ellipsis;overflow:hidden}#sq_kr_history tr.sq_kr_history_row{cursor:pointer}#sq_kr_history tr.sq_kr_history_row.sq_tr_odd{background:#f4f4f4}#sq_kr_history tr.sq_kr_history_row.sq_tr_even{background:#FFF}#sq_kr_history .sq_kr_history_td span{font-size:14px;cursor:pointer}#sq_kr_history .sq_kr_history_row_detail{display:none;background:white}#sq_kr_history .sq_top_keywords{clear:both !important;float:none !important;width:100%;margin:0 auto !important;padding:0}#sq_kr_history .sq_top_keywords table{border-collapse:collapse}#sq_kr_history .sq_top_keywords>table{position:relative;background-color:#f7f7f7;width:100%}#sq_kr_history .sq_top_keywords>table{border:1px solid #eee}#sq_kr_history .sq_top_keywords>table>tbody>tr{background-color:#fff}#sq_kr_history .sq_top_keywords>table>tr>th,#sq_kr_history .sq_top_keywords>table>tbody>tr>th,#sq_kr_history .sq_top_keywords>table>tr>td,#sq_kr_history .sq_top_keywords>table>tbody>tr>td{border:1px dashed #f1f1f1;padding:3px 10px;color:#414141;font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:1.4em;max-width:350px;white-space:normal;overflow:hidden;text-overflow:ellipsis}#sq_kr_history .sq_top_keywords>table>tbody>tr>th{background-color:#8684a4;color:#fff;text-shadow:none}#sq_kr_history .sq_top_keywords>table>tr>th{text-align:center;font-weight:bold;color:#ccc}#sq_kr_history .sq_keywords_research{padding:0;margin:0}#sq_kr_history .sq_top_keywords_rank{font-size:14px;font-weight:bold;margin-left:5px}#sq_kr_history .sq_top_keywords_rank strong{font-family:'Megalopolis',Arial,Helvetica,sans-serif;font-size:14px;margin:0 5px;border:1px solid red;background-color:white;border-radius:50px;-webkit-border-radius:50px;-moz-border-radius:50px;padding:3px 7px;text-shadow:1px 1px white;color:red;text-align:center}#sq_kr_history .sq_research_showinfo:hover{background-position:0 -71px}#sq_kr_history .sq_top_keywords_info{padding:5px}#sq_kr_history .sq_to_keywords_info table{margin:0 auto}#sq_kr_history .sq_top_keywords_info td{border-bottom:1px dashed #d8d8d8;padding:4px 10px;color:#414141;text-align:left;font-size:12px}#sq_kr_history .sq_top_keywords_info td .sq_top_keywords_rank{font-size:12px;font-weight:normal}#sq_kr_history .sq_input_noback{background:transparent;border:0}#sq_kr_history .sq_research_selectit{padding:4px 11px;font-size:12px;font-weight:500;color:white;cursor:pointer;background-color:#589ee4;text-shadow:1px 1px #777;border:1px solid white}#sq_kr_history .sq_research_addbriefcase{display:block;padding:4px 11px;font-size:12px;font-weight:500;color:white;cursor:pointer;background-color:#d86525;text-shadow:1px 1px #777;border:1px solid white}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{text-align:left;padding:8px;line-height:1.42857143;vertical-align:middle;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{position:static;display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}#sq_kr_history table.table td{font-size:15px}#sq_kr_history table.table tr .sq_delete_keyword{display:none}#sq_kr_history table.table tr:hover{background-color:#fafafa}#sq_kr_history table.table tr:hover .sq_delete_keyword{display:block}#sq_kr_history .subtable{width:100%;background-color:#f9fafc;border:1px solid #e8ebf0}#sq_kr_history .subtable td,#sq_kr_history .subtable th{padding:6px 13px}#sq_kr_history table.subtable td{font-size:13px;padding:5px 13px !important}#sq_kr_history .subtable td .btn{padding:1px 12px}#sq_kr_history table.subtable tr:hover{background-color:#f2f6fe}@media only screen and (max-width:1024px){#sq_helpkeywordresearchcontent{width:800px}}@media only screen and (max-width:1320px){.sq_helpside{clear:both;float:left;width:808px;height:275px;margin:0;padding:0}}
|
view/css/blockresearch.css
CHANGED
@@ -68,7 +68,8 @@
|
|
68 |
|
69 |
|
70 |
#sq_research {
|
71 |
-
position: relative;
|
|
|
72 |
padding: 0;
|
73 |
margin: 15px 0;
|
74 |
background-color: #fcfcfc;
|
@@ -103,8 +104,7 @@
|
|
103 |
color: #999;
|
104 |
border-bottom: 1px dashed #d1d1d1;
|
105 |
margin: 0 0 10px 0;
|
106 |
-
padding: 10px 0
|
107 |
-
height: 16px;
|
108 |
}
|
109 |
|
110 |
#sq_research:hover #sq_research_title{
|
@@ -371,7 +371,7 @@
|
|
371 |
padding: 3px 10px;
|
372 |
color: #414141;
|
373 |
font-family: Arial, Helvetica, sans-serif;
|
374 |
-
font-size:
|
375 |
line-height: 1.4em;
|
376 |
max-width: 350px;
|
377 |
white-space: normal;
|
@@ -385,12 +385,6 @@
|
|
385 |
color: #ccc;
|
386 |
}
|
387 |
|
388 |
-
#sq_research_body .sq_top_keywords_rank {
|
389 |
-
font-size: 14px;
|
390 |
-
font-weight: bold;
|
391 |
-
margin-left: 5px;
|
392 |
-
}
|
393 |
-
|
394 |
#sq_research_body .sq_top_keywords_rank strong {
|
395 |
font-family: 'Megalopolis', Arial, Helvetica, sans-serif;
|
396 |
font-size: 14px;
|
68 |
|
69 |
|
70 |
#sq_research {
|
71 |
+
position: relative !important;
|
72 |
+
max-width: 100% !important;
|
73 |
padding: 0;
|
74 |
margin: 15px 0;
|
75 |
background-color: #fcfcfc;
|
104 |
color: #999;
|
105 |
border-bottom: 1px dashed #d1d1d1;
|
106 |
margin: 0 0 10px 0;
|
107 |
+
padding: 10px 0 10px 10px;
|
|
|
108 |
}
|
109 |
|
110 |
#sq_research:hover #sq_research_title{
|
371 |
padding: 3px 10px;
|
372 |
color: #414141;
|
373 |
font-family: Arial, Helvetica, sans-serif;
|
374 |
+
font-size: 13px;
|
375 |
line-height: 1.4em;
|
376 |
max-width: 350px;
|
377 |
white-space: normal;
|
385 |
color: #ccc;
|
386 |
}
|
387 |
|
|
|
|
|
|
|
|
|
|
|
|
|
388 |
#sq_research_body .sq_top_keywords_rank strong {
|
389 |
font-family: 'Megalopolis', Arial, Helvetica, sans-serif;
|
390 |
font-size: 14px;
|
view/css/blockresearch.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.sq_beta{display:none !important}.sq_limit_exceeded{clear:both !important;margin:0 auto;text-align:center}.sq_limit_exceeded a{text-decoration:none;display:block;width:200px;clear:both;background-color:#1cab09;font-size:15px;font-weight:bold;color:white;margin:10px auto 0 auto;padding:11px;position:relative;text-shadow:1px 1px #555;cursor:pointer}.sq_notice.sq_fixed{position:fixed;z-index:10000}.sq_notice{top:28px;text-align:center;width:100%}.sq_notice.sq_notice>div{display:block;margin:0 !important;width:100% !important;line-height:40px;background-color:lightgoldenrodyellow}.sq_notice.sq_notice>div.sq_success{background-color:#20bc49}#sq_research:before{display:block;border:0;content:" ";background:transparent url('../img/sprite.png') repeat-x 0 -360px;width:100%;height:5px;border-radius:2px 2px 0 0;opacity:.3}#sq_research:hover:before{opacity:.8}#sq_research{position:relative;padding:0;margin:15px 0;background-color:#fcfcfc;min-width:460px;box-shadow:0 1px 2px -1px #444;-moz-box-shadow:0 1px 2px -1px #444;-webkit-box-shadow:0 1px 2px -1px #444}.sq_arrow_down{background:transparent url('../img/sprite.png?rev=1') no-repeat -221px -50px !important}.sq_arrow_up{float:right;width:35px;height:20px;margin-top:14px;margin-right:10px;background:transparent url('../img/sprite.png?rev=1') no-repeat -262px -50px;cursor:pointer}#sq_research #sq_research_title{display:block;text-align:left;font-size:18px;font-weight:normal;line-height:30px;color:#999;border-bottom:1px dashed #d1d1d1;margin:0 0 10px 0;padding:10px 0
|
1 |
+
.sq_beta{display:none !important}.sq_limit_exceeded{clear:both !important;margin:0 auto;text-align:center}.sq_limit_exceeded a{text-decoration:none;display:block;width:200px;clear:both;background-color:#1cab09;font-size:15px;font-weight:bold;color:white;margin:10px auto 0 auto;padding:11px;position:relative;text-shadow:1px 1px #555;cursor:pointer}.sq_notice.sq_fixed{position:fixed;z-index:10000}.sq_notice{top:28px;text-align:center;width:100%}.sq_notice.sq_notice>div{display:block;margin:0 !important;width:100% !important;line-height:40px;background-color:lightgoldenrodyellow}.sq_notice.sq_notice>div.sq_success{background-color:#20bc49}#sq_research:before{display:block;border:0;content:" ";background:transparent url('../img/sprite.png') repeat-x 0 -360px;width:100%;height:5px;border-radius:2px 2px 0 0;opacity:.3}#sq_research:hover:before{opacity:.8}#sq_research{position:relative !important;max-width:100% !important;padding:0;margin:15px 0;background-color:#fcfcfc;min-width:460px;box-shadow:0 1px 2px -1px #444;-moz-box-shadow:0 1px 2px -1px #444;-webkit-box-shadow:0 1px 2px -1px #444}.sq_arrow_down{background:transparent url('../img/sprite.png?rev=1') no-repeat -221px -50px !important}.sq_arrow_up{float:right;width:35px;height:20px;margin-top:14px;margin-right:10px;background:transparent url('../img/sprite.png?rev=1') no-repeat -262px -50px;cursor:pointer}#sq_research #sq_research_title{display:block;text-align:left;font-size:18px;font-weight:normal;line-height:30px;color:#999;border-bottom:1px dashed #d1d1d1;margin:0 0 10px 0;padding:10px 0 10px 10px}#sq_research:hover #sq_research_title{color:#444}#sq_research #sq_research_body{display:block;font-size:12px;color:#333;line-height:16px;text-align:left;padding:10px 0 2px 10px}#sq_research .sq_keywords_research_add{background-color:transparent;color:#589ee4;font-size:12px;font-weight:bold;text-shadow:1px 1px white;box-shadow:1px 1px 0 0 white;border:1px solid #589ee4;padding:5px 6px;margin-left:0;margin-top:0;cursor:pointer}#sq_research .sq_keywords_research_submit{background-color:#589ee4;color:white;font-size:12px;font-weight:bold;text-shadow:1px 1px #333;box-shadow:1px 1px 0 0 white;border:1px solid #589ee4;padding:5px 6px;margin-left:10px;margin-top:0;cursor:pointer}#sq_research .sq_keywords_research_clear{background-color:transparent;color:#589ee4;font-size:11px;font-weight:bold;text-shadow:1px 1px white;box-shadow:1px 1px 0 0 white;border:1px solid #589ee4;padding:4px 5px;margin-left:15px;margin-top:0;cursor:pointer}#sq_research .sq_keywords_research_export,#sq_research .sq_keywords_research_export_xls{display:none;background-color:#ece8d2;color:#ae6e1c;font-size:11px;font-weight:600;text-shadow:1px 1px #fff;box-shadow:1px 1px 0 0 white;border:1px solid #d1a25e;padding:6px 10px;margin-right:21px;margin-top:2px;cursor:pointer;float:right}#sq_research .sq_keywords_research_export_xls{margin-right:5px}#sq_research .sq_research_addbriefcase{display:block;padding:7px 7px;margin:2px 0;font-size:12px;font-weight:500;color:white;cursor:pointer;background-color:#d86525;text-shadow:1px 1px #777;border:0;border-top:1px solid white}#sq_research .sq_research_selectit{padding:7px 11px;font-size:12px;font-weight:500;color:white;cursor:pointer;background-color:#589ee4;text-shadow:1px 1px #777;border:0}#sq_research .sq_keywords_research_clear{float:right;margin-right:10px;margin-top:2px;line-height:16px}#sq_research .sq_keyword_research{float:left;width:390px;margin-top:2px;line-height:24px;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;padding:5px;font-size:14px;font-weight:bold;color:#15b14a}#sq_research_body #sq_keywords_research{display:table;width:100%}#sq_research_body #sq_keywords_research>li{display:table;width:100%;border-bottom:1px solid #dedede;padding-bottom:13px;margin-bottom:10px}#sq_research_body .sq_searching,#sq_research_body .sq_minloading{clear:both;width:96% !important;height:10px;margin-top:10px;background-color:#eee}#sq_research_body .sq_searching .sq_progress{width:1%;height:16px;font-size:9px;color:white;padding-left:5px;text-shadow:1px 1px #333;background-color:green}#sq_research_body #sq_keywords_research>li>div{float:left}#sq_research_body #sq_keywords_research>li>div:first-child{margin-top:7px;margin-right:5px;font-size:17px;font-weight:500;line-height:26px;color:#999}#sq_research_body ul.sq_progressbar li{float:left;padding:0 2px}#sq_research_body input[type=text]{float:left;width:350px;padding:10px 5px;font-size:14px;font-weight:bold;color:#333;background-color:#e2ffd6}#sq_research_body input[type=text]::-moz-placeholder,#sq_research_body input[type=text]::-webkit-input-placeholder,#sq_research_body input[type=text]:-ms-input-placeholder{color:#d1d1d1}#sq_research_body .sq_research_selectit{float:left}#sq_research_body .sq_keywords_info{margin-left:10px;display:table;width:230px}#sq_research_body .sq_addkeyword_close{font-size:15px;display:inline-block;padding:12px;cursor:pointer}#sq_research_body #sq_research_help{clear:both}#sq_research #sq_research_close{position:absolute;background-color:#e5d8cd;right:-6px;top:-3px;font-size:13px;font-weight:bold;color:#333;width:8px;line-height:16px;padding:0 5px 3px;border-radius:10px;-webkit-border-radius:10px;-moz-border-radius:10px;border:1px solid darkOliveGreen;cursor:pointer;z-index:2}#sq_research_body .sq_top_keywords{clear:both !important;float:none !important;width:calc(100% - 40px) !important;margin:0 auto !important;padding-top:15px}#sq_research_body .sq_top_keywords table{border-collapse:collapse}#sq_research_body .sq_top_keywords>table{position:relative;background-color:#f7f7f7;width:100%}#sq_research_body .sq_top_keywords>table{border:1px solid #eee}#sq_research_body .sq_top_keywords>table>tbody>tr{background-color:#fff}#sq_research_body .sq_top_keywords>table>tr>th,#sq_research_body .sq_top_keywords>table>tbody>tr>th,#sq_research_body .sq_top_keywords>table>tr>td,#sq_research_body .sq_top_keywords>table>tbody>tr>td{border:1px dashed #f1f1f1;padding:3px 10px;color:#414141;font-family:Arial,Helvetica,sans-serif;font-size:13px;line-height:1.4em;max-width:350px;white-space:normal;overflow:hidden;text-overflow:ellipsis}#sq_research_body .sq_top_keywords>table>tr>th{text-align:center;font-weight:bold;color:#ccc}#sq_research_body .sq_top_keywords_rank strong{font-family:'Megalopolis',Arial,Helvetica,sans-serif;font-size:14px;margin:0 5px;border:1px solid red;background-color:white;border-radius:50px;-webkit-border-radius:50px;-moz-border-radius:50px;padding:3px 7px;text-shadow:1px 1px white;color:red;text-align:center}#sq_research_body .sq_research_showinfo:hover{background-position:0 -71px}#sq_research_body .sq_top_keywords_info{padding:5px}#sq_research_body .sq_to_keywords_info table{margin:0 auto}#sq_research_body .sq_top_keywords_info td{border-bottom:1px dashed #d8d8d8;padding:4px 10px;color:#414141;text-align:left;font-size:12px}#sq_research_body .sq_top_keywords_info td .sq_top_keywords_rank{font-size:12px;font-weight:normal}#sq_research_body .sq_input_noback{background:transparent;border:0}ul.sq_research_lang,ul.sq_research_complexity{position:absolute;background-color:#fcfcfc;border:0;font-size:13px;display:block;top:17px;right:100px;width:135px;height:27px;margin:0;padding:0;overflow:hidden;max-height:300px}ul.sq_research_complexity{right:242px;width:140px}ul.sq_research_lang:hover,ul.sq_research_complexity:hover{box-shadow:0 0 10px 0 #333;height:auto;overflow-y:auto;z-index:9999}ul.sq_research_lang>li:before{display:inline-block;content:" ";background:transparent url('../img/flags.png') no-repeat 0 -2541px;border:1px solid white;width:16px;height:11px;cursor:pointer;margin:0 5px -2px 0;padding:0}ul.sq_research_lang>li,ul.sq_research_complexity>li{margin:0 0 5px 0;padding:0 2px;line-height:24px;cursor:pointer}ul.sq_research_lang li.sq_research_first,ul.sq_research_complexity li.sq_complexity_first{border:1px solid #589ee4;color:#589ee4}ul.sq_research_lang li.selected,ul.sq_research_complexity li.selected{background-color:lightgray}
|
view/css/blocksearch.css
CHANGED
@@ -51,7 +51,11 @@
|
|
51 |
text-align: center;
|
52 |
height: auto;
|
53 |
width: 100%;
|
54 |
-
z-index:
|
|
|
|
|
|
|
|
|
55 |
}
|
56 |
|
57 |
#sq_blocksearch .sq_keyword #sq_keyword_help {
|
@@ -106,6 +110,11 @@
|
|
106 |
color: #15b14a;
|
107 |
}
|
108 |
|
|
|
|
|
|
|
|
|
|
|
109 |
#sq_blocksearch #sq_keyword_second {
|
110 |
}
|
111 |
|
@@ -385,6 +394,7 @@
|
|
385 |
|
386 |
#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item .sq_briefcase_item_percent {
|
387 |
width: 11%;
|
|
|
388 |
display: inline-block;
|
389 |
padding: 5px 2px 0 2px;
|
390 |
text-align: right;
|
@@ -459,13 +469,13 @@
|
|
459 |
display: none;
|
460 |
float: right;
|
461 |
font-family: Arial, sans-serif;
|
462 |
-
right: 3px;
|
463 |
font-size: 13px;
|
464 |
font-weight: bold;
|
465 |
color: #999;
|
466 |
height: 20px;
|
467 |
width: 10px;
|
468 |
text-align: center;
|
|
|
469 |
padding: 5px 4px 2px;
|
470 |
border: none;
|
471 |
cursor: pointer;
|
@@ -518,7 +528,7 @@
|
|
518 |
/***************** FOR SEARCH TYPES ****************/
|
519 |
#sq_blocksearch #sq_types {
|
520 |
display: none;
|
521 |
-
height:
|
522 |
padding: 5px 0;
|
523 |
background-color: #fcfcfc;
|
524 |
box-shadow: 0 1px 3px -2px #888;
|
@@ -650,7 +660,7 @@
|
|
650 |
#sq_blocksearch .sq_search li.sq_search_li .sq_attribution > ul {
|
651 |
display: none;
|
652 |
background-color: #F1F1F1;
|
653 |
-
height:
|
654 |
|
655 |
padding: 2px 2px;
|
656 |
margin: 0;
|
@@ -666,7 +676,7 @@
|
|
666 |
color: brown;
|
667 |
|
668 |
float: left;
|
669 |
-
width:
|
670 |
|
671 |
margin-right: 5px;
|
672 |
padding-right: 5px;
|
@@ -708,8 +718,8 @@
|
|
708 |
float: left;
|
709 |
|
710 |
background-color: white;
|
711 |
-
width:
|
712 |
-
height:
|
713 |
|
714 |
padding: 2px;
|
715 |
margin: 0 3px 6px 0;
|
@@ -739,17 +749,17 @@
|
|
739 |
}
|
740 |
|
741 |
#sq_blocksearch .sq_search ul li.sq_search_img_li > img {
|
742 |
-
clip: rect(
|
743 |
position: absolute;
|
744 |
-
margin-top: -
|
745 |
-
margin-left: -
|
746 |
-
max-height:
|
|
|
747 |
}
|
748 |
|
749 |
#sq_blocksearch #sq_search_img_filter {
|
750 |
width: 100%;
|
751 |
background-color: #fcfcfc;
|
752 |
-
height: 22px;
|
753 |
text-align: center;
|
754 |
padding: 4px 0;
|
755 |
border-top: 1px solid #ccc;
|
@@ -1107,11 +1117,6 @@
|
|
1107 |
margin-left: 5px;
|
1108 |
}
|
1109 |
|
1110 |
-
#sq_blocksearch #sq_suggestion_help {
|
1111 |
-
|
1112 |
-
height: 60px;
|
1113 |
-
}
|
1114 |
-
|
1115 |
#sq_blocksearch #sq_suggestion_help ul li {
|
1116 |
height: 20px;
|
1117 |
text-align: center;
|
@@ -1222,32 +1227,12 @@
|
|
1222 |
|
1223 |
/**** CLOSE BUTTONS ****/
|
1224 |
#sq_blocksearch #sq_search_close,
|
1225 |
-
#sq_blog_preview #sq_blog_preview_close
|
1226 |
-
position: absolute;
|
1227 |
-
font-family: Arial, sans-serif;
|
1228 |
-
background-color: #8684a4;
|
1229 |
-
right: -6px;
|
1230 |
-
top: -3px;
|
1231 |
-
font-size: 12px;
|
1232 |
-
font-weight: bold;
|
1233 |
-
color: #fff;
|
1234 |
-
width: 10px;
|
1235 |
-
line-height: 16px;
|
1236 |
-
text-align: center;
|
1237 |
-
padding: 0 4px 2px;
|
1238 |
-
border-radius: 10px;
|
1239 |
-
-webkit-border-radius: 10px;
|
1240 |
-
-moz-border-radius: 10px;
|
1241 |
-
border: 1px solid darkOliveGreen;
|
1242 |
-
cursor: pointer;
|
1243 |
-
z-index: 2;
|
1244 |
-
}
|
1245 |
-
|
1246 |
#sq_blocksearch #sq_suggestion_close,
|
1247 |
-
#sq_blocksearch #sq_briefcase_list_close
|
1248 |
position: absolute;
|
1249 |
font-family: Arial, sans-serif;
|
1250 |
-
right:
|
1251 |
top: 0;
|
1252 |
font-size: 13px;
|
1253 |
font-weight: bold;
|
@@ -1256,13 +1241,13 @@
|
|
1256 |
line-height: 16px;
|
1257 |
text-align: center;
|
1258 |
padding: 0 4px 2px;
|
1259 |
-
border:
|
1260 |
cursor: pointer;
|
1261 |
z-index: 2;
|
1262 |
}
|
1263 |
|
1264 |
#sq_blocksearch #sq_search_close {
|
1265 |
-
top: -
|
1266 |
}
|
1267 |
|
1268 |
#sq_blocksearch .sq_show_mgs {
|
@@ -1356,7 +1341,6 @@
|
|
1356 |
clear: both;
|
1357 |
position: relative;
|
1358 |
width: 100%;
|
1359 |
-
height: 17px;
|
1360 |
text-align: center;
|
1361 |
padding: 0;
|
1362 |
margin: 0 0 5px 0;
|
51 |
text-align: center;
|
52 |
height: auto;
|
53 |
width: 100%;
|
54 |
+
z-index:11;
|
55 |
+
}
|
56 |
+
|
57 |
+
#side-sortables #sq_blocksearch .sq_keyword{
|
58 |
+
z-index:1001;
|
59 |
}
|
60 |
|
61 |
#sq_blocksearch .sq_keyword #sq_keyword_help {
|
110 |
color: #15b14a;
|
111 |
}
|
112 |
|
113 |
+
#normal-sortables #sq_blocksearch #sq_keyword,
|
114 |
+
#normal-sortables #sq_blocksearch #sq_keyword_second {
|
115 |
+
width: 91%;
|
116 |
+
}
|
117 |
+
|
118 |
#sq_blocksearch #sq_keyword_second {
|
119 |
}
|
120 |
|
394 |
|
395 |
#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item .sq_briefcase_item_percent {
|
396 |
width: 11%;
|
397 |
+
max-width: 40px;
|
398 |
display: inline-block;
|
399 |
padding: 5px 2px 0 2px;
|
400 |
text-align: right;
|
469 |
display: none;
|
470 |
float: right;
|
471 |
font-family: Arial, sans-serif;
|
|
|
472 |
font-size: 13px;
|
473 |
font-weight: bold;
|
474 |
color: #999;
|
475 |
height: 20px;
|
476 |
width: 10px;
|
477 |
text-align: center;
|
478 |
+
margin-right: 8px;
|
479 |
padding: 5px 4px 2px;
|
480 |
border: none;
|
481 |
cursor: pointer;
|
528 |
/***************** FOR SEARCH TYPES ****************/
|
529 |
#sq_blocksearch #sq_types {
|
530 |
display: none;
|
531 |
+
height: 35px;
|
532 |
padding: 5px 0;
|
533 |
background-color: #fcfcfc;
|
534 |
box-shadow: 0 1px 3px -2px #888;
|
660 |
#sq_blocksearch .sq_search li.sq_search_li .sq_attribution > ul {
|
661 |
display: none;
|
662 |
background-color: #F1F1F1;
|
663 |
+
height: 20px;
|
664 |
|
665 |
padding: 2px 2px;
|
666 |
margin: 0;
|
676 |
color: brown;
|
677 |
|
678 |
float: left;
|
679 |
+
width: 70px;
|
680 |
|
681 |
margin-right: 5px;
|
682 |
padding-right: 5px;
|
718 |
float: left;
|
719 |
|
720 |
background-color: white;
|
721 |
+
width: 75px;
|
722 |
+
height: 56px;
|
723 |
|
724 |
padding: 2px;
|
725 |
margin: 0 3px 6px 0;
|
749 |
}
|
750 |
|
751 |
#sq_blocksearch .sq_search ul li.sq_search_img_li > img {
|
752 |
+
clip: rect(3px, 80px, 55px, 9px);
|
753 |
position: absolute;
|
754 |
+
margin-top: -4px;
|
755 |
+
margin-left: -10px;
|
756 |
+
max-height: 90px;
|
757 |
+
max-width: 90px;
|
758 |
}
|
759 |
|
760 |
#sq_blocksearch #sq_search_img_filter {
|
761 |
width: 100%;
|
762 |
background-color: #fcfcfc;
|
|
|
763 |
text-align: center;
|
764 |
padding: 4px 0;
|
765 |
border-top: 1px solid #ccc;
|
1117 |
margin-left: 5px;
|
1118 |
}
|
1119 |
|
|
|
|
|
|
|
|
|
|
|
1120 |
#sq_blocksearch #sq_suggestion_help ul li {
|
1121 |
height: 20px;
|
1122 |
text-align: center;
|
1227 |
|
1228 |
/**** CLOSE BUTTONS ****/
|
1229 |
#sq_blocksearch #sq_search_close,
|
1230 |
+
#sq_blog_preview #sq_blog_preview_close,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1231 |
#sq_blocksearch #sq_suggestion_close,
|
1232 |
+
#sq_blocksearch #sq_briefcase_list_close{
|
1233 |
position: absolute;
|
1234 |
font-family: Arial, sans-serif;
|
1235 |
+
right: 8px;
|
1236 |
top: 0;
|
1237 |
font-size: 13px;
|
1238 |
font-weight: bold;
|
1241 |
line-height: 16px;
|
1242 |
text-align: center;
|
1243 |
padding: 0 4px 2px;
|
1244 |
+
border-radius: 10px;
|
1245 |
cursor: pointer;
|
1246 |
z-index: 2;
|
1247 |
}
|
1248 |
|
1249 |
#sq_blocksearch #sq_search_close {
|
1250 |
+
top: -24px;
|
1251 |
}
|
1252 |
|
1253 |
#sq_blocksearch .sq_show_mgs {
|
1341 |
clear: both;
|
1342 |
position: relative;
|
1343 |
width: 100%;
|
|
|
1344 |
text-align: center;
|
1345 |
padding: 0;
|
1346 |
margin: 0 0 5px 0;
|
view/css/blocksearch.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#sq_blocksearch input,#sq_blocksearch textarea,#sq_blocksearch{font-family:Arial,Helvetica,sans-serif}#sq_tinymce_inactive{padding:20px !important;font-size:16px}#sq_blocksearch ::-webkit-scrollbar{width:18px;height:15px}#sq_blocksearch ::-webkit-scrollbar-button:start:decrement,#sq_blocksearch ::-webkit-scrollbar-button:end:increment{height:1px;display:block;background-color:#eff7ff}#sq_blocksearch ::-webkit-scrollbar-track{border-left:6px solid transparent;border-right:1px solid transparent;background-clip:padding-box}#sq_blocksearch ::-webkit-scrollbar-thumb:vertical{min-height:28px;padding-top:100px;border-left:6px solid transparent;border-right:1px solid transparent;border-top:0 solid transparent;border-bottom:0 solid transparent;background-clip:padding-box;background-color:rgba(0,0,0,0.2);-webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,0.1),inset 0 -1px 0 rgba(0,0,0,0.07)}#sq_search_second{text-align:center}#sq_blocksearch .sq_keyword{background-color:#8684a4;position:relative;text-align:center;height:auto;width:100%;z-index:1001}#sq_blocksearch .sq_keyword #sq_keyword_help{position:absolute;background-color:brown;font-size:24px;font-weight:bold;color:white;top:-24px;left:-238px;width:204px;height:auto;padding:20px 10px;line-height:22px;border-radius:1px;-webkit-border-radius:1px;-moz-border-radius:1px;box-shadow:0 0 9px 0 #000;-moz-box-shadow:0 0 9px 0 #000;-webkit-box-shadow:0 0 9px 0 #000}#sq_blocksearch .sq_keyword #sq_keyword_help span{position:absolute;right:-25px;top:34px;width:0;height:0;border-top:13px solid transparent;border-bottom:9px solid transparent;border-left:25px solid brown}#sq_blocksearch .sq_keyword #sq_keyword_help p{line-height:13px;margin-top:5px;font-size:11px;color:#d1d1d1}#sq_blocksearch #sq_keyword,#sq_blocksearch #sq_keyword_second{display:inline-block;margin:16px 2px;width:85%;line-height:26px;height:30px;padding:0 5px;font-size:15px;font-weight:bold;background-color:#f9f9f9;color:#15b14a}#sq_blocksearch #sq_keyword_check,#sq_blocksearch #sq_keyword_second_check{display:inline-block;line-height:26px;width:26px;height:28px;background-color:#589ee4;font-size:15px;font-weight:bold;color:white;margin:0;padding:0;border:1px solid white;cursor:pointer}#sq_blocksearch .sq_search_notrelevant{line-height:30px;width:125px}.sq_search>a{display:block;width:100%;text-align:center;margin:4px auto 0 auto;padding:0;text-decoration:underline;font-size:14px;color:#21759b}#postsquirrly #sq_briefcase_icon,#postsquirrly #sq_briefcase_analytics,#postsquirrly #sq_briefcase_help{float:right;background:transparent url(../img/sprite.png) no-repeat -432px -50px;margin:0;cursor:pointer;font-weight:bold;color:brown;width:26px;height:22px}#postsquirrly .sq_briefcase_smallicon{display:block;float:left;margin:1px 7px 0 0;height:20px;width:20px;background:transparent url('../img/briefcase.png') no-repeat;background-size:100%}#postsquirrly #sq_briefcase_analytics{background-position:-434px -23px}#postsquirrly #sq_briefcase_help{background-position:-28px -50px}#postsquirrly #sq_briefcase_refresh{float:right;background:transparent url(../img/sprite.png) no-repeat -435px -74px;width:22px;height:22px;line-height:22px;text-align:center;font-size:12px;font-weight:bold;color:white;margin:-1px 0 0 4px;padding:0;border:0;cursor:pointer}#sq_blocksearch #sq_briefcase_list{clear:both;display:table;position:relative;background-color:white;width:100% !important;min-height:75px;padding:0 !important;margin:0 !important;border-bottom:1px solid #aaa}#sq_blocksearch #sq_briefcase_bottom{background-color:#f1f1f1;height:20px;margin:2px -1px 0 -1px;border-top:1px solid #ddd}#sq_blocksearch #sq_briefcase_list #sq_briefcase_keyword{display:inline-block;margin:2px 4px 0 4px;width:97%;line-height:26px;height:30px;padding:0 5px;font-size:13px;font-weight:normal;background-color:#e2ffd6;color:#333}#sq_blocksearch #sq_briefcase_list #sq_briefcase_keyword_check{display:inline-block;line-height:26px;width:26px;height:28px;background-color:#589ee4;font-size:15px;font-weight:bold;color:white;margin:0;padding:0;border:1px solid white;cursor:pointer}#sq_blocksearch #sq_briefcase_content ul{overflow-y:auto;margin:5px 0 2px 0}#sq_blocksearch #sq_briefcase_content ul.sq_briefcase_item_notused{max-height:150px}#sq_blocksearch #sq_briefcase_content.sq_error{margin:15px 0 !important}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item{position:relative;color:#4f1440;padding:0;text-align:left;font-size:13px;margin:0 0 0 1px}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_item_percent{width:11%;display:inline-block;padding:5px 2px 0 2px;text-align:right;font-weight:bold;cursor:pointer}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item_used .sq_briefcase_value{cursor:pointer}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_value{width:70%;max-width:245px;display:inline-block;padding:5px;white-space:nowrap;text-overflow:ellipsis;overflow-x:hidden;vertical-align:top}#sq_blocksearch #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item{padding:5px}#sq_blocksearch #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item .sq_briefcase_value{padding:0;display:block;clear:left}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_addbriefcase{font-size:10px;position:absolute;color:darkred;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_optimize{font-size:10px;position:absolute;color:darkred;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_optimize{display:block}#sq_blocksearch #sq_briefcase_content .sq_briefcase_empty{color:green;font-weight:bold;text-align:center;padding:5px}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_addbriefcase{display:block}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item_used .sq_briefcase_value{width:75%;max-width:190px}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_separator{height:3px;background-color:white;box-shadow:0 1px 4px -1px #333}#sq_blocksearch #sq_briefcase_content li .sq_briefcase_item_delete{display:none;float:right;font-family:Arial,sans-serif;right:3px;font-size:13px;font-weight:bold;color:#999;height:20px;width:10px;text-align:center;padding:5px 4px 2px;border:0;cursor:pointer;z-index:2}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover{background-color:#e2ffd6}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_item_delete{display:block}#sq_blocksearch #sq_briefcase_topcontent>ul{margin:0}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item{position:relative;color:#4f1440;padding:0 0 5px 0;text-align:left;font-size:13px;margin:0 0 0 1px;line-height:20px}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item .sq_briefcase_item_percent{width:11%;display:inline-block;padding:5px 2px 0 2px;text-align:right;font-weight:bold;cursor:pointer}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item_used .sq_briefcase_value{cursor:pointer}#sq_blocksearch #sq_briefcase_topcontent .sq_briefcase_empty{color:green;font-weight:bold;text-align:center;padding:5px}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover .sq_briefcase_addbriefcase{display:none}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item .sq_briefcase_optimize{font-size:10px;position:absolute;color:darkred;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_blocksearch #sq_briefcase_topcontent .sq_briefcase_empty{color:green;font-weight:bold;text-align:center;padding:5px;margin:auto;cursor:pointer}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover .sq_briefcase_optimize{display:block}#sq_blocksearch #sq_briefcase_topcontent #sq_briefcase_keyword{display:inline-block;margin:0 4px 0 4px;width:97%;line-height:26px;height:30px;padding:0 5px;font-size:13px;font-weight:normal;background-color:#e2ffd6;color:#333}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item_used .sq_briefcase_value{width:75%;max-width:190px}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_separator{display:none}#sq_blocksearch #sq_briefcase_topcontent li .sq_briefcase_item_delete{display:none;float:right;font-family:Arial,sans-serif;right:3px;font-size:13px;font-weight:bold;color:#999;height:20px;width:10px;text-align:center;padding:5px 4px 2px;border:0;cursor:pointer;z-index:2}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover{background-color:#e2ffd6}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover .sq_briefcase_item_delete{display:block}#sq_blocksearch .sq_briefcase_item .sq_briefcase_item_circle{display:block;float:left;width:13px;height:3px;margin:0 2px 0 0}#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle{display:block;float:left;width:20px;height:10px;margin:5px 3px 0 3px;cursor:pointer}#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle:before{content:" ";display:block;height:100%;width:100%;margin:-2px 0 2px 0}#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle.sq_active:before{display:block;font-size:11px;line-height:14px;text-align:center;margin:-2px 0 2px 0;content:"\f00c";color:#fff;text-shadow:1px 0 #555}#sq_blocksearch #sq_types{display:none;height:26px;padding:5px 0;background-color:#fcfcfc;box-shadow:0 1px 3px -2px #888;-moz-box-shadow:0 1px 3px -2px #888;-webkit-box-shadow:0 1px 3px -2px #888}#sq_blocksearch #sq_types ul{margin:0}#sq_blocksearch #sq_types ul li{float:left;background:transparent url('../img/sprite.png') no-repeat;margin:0 0 0 17px;cursor:pointer;font-weight:bold;color:brown;width:26px;height:25px}#sq_blocksearch #sq_types #sq_type_img{background-position:0 0}#sq_blocksearch #sq_types #sq_type_twitter{background-position:-27px 0}#sq_blocksearch #sq_types #sq_type_news{background-position:-137px 0}#sq_blocksearch #sq_types #sq_type_blog{background-position:-54px 0}#sq_blocksearch #sq_types #sq_type_wiki{background-position:-84px 0}#sq_blocksearch #sq_types #sq_type_local{background-position:-164px 0}#sq_blocksearch #sq_types #sq_type_img:hover{background-position:0 -25px}#sq_blocksearch #sq_types #sq_type_twitter:hover{background-position:-27px -25px}#sq_blocksearch #sq_types #sq_type_news:hover{background-position:-137px -24px}#sq_blocksearch #sq_types #sq_type_blog:hover{background-position:-54px -25px}#sq_blocksearch #sq_types #sq_type_wiki:hover{background-position:-84px -25px}#sq_blocksearch #sq_types #sq_type_local:hover{background-position:-164px -25px}#sq_blocksearch .sq_search{display:block;overflow-y:auto;max-height:310px;overflow-x:hidden;padding:0 !important;margin:0 !important;width:100% !important;clear:both}#sq_blocksearch .sq_search ul{padding:0 0 0 4px;margin:0;list-style:none;clear:both}#sq_blocksearch .sq_search ul li.sq_search_li{display:block;width:95%;font-size:12px;font-weight:normal;padding:5px 5px;margin:7px auto;background-color:#FFF;border:1px solid #DDD;border-radius:1px;-webkit-border-radius:1px;-moz-border-radius:1px;box-shadow:0 1px 0 #a8a8a8;-webkit-box-shadow:0 1px 0 #a8a8a8;-moz-box-shadow:0 1px 0 #a8a8a8}#sq_blocksearch .sq_search .sq_attribution{clear:both;margin:0;text-shadow:1px 1px white;height:25px}#sq_blocksearch .sq_search ul li.sq_search_li:hover .sq_attribution>ul{display:block}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul{display:none;background-color:#f1f1f1;height:17px;padding:2px 2px;margin:0;text-align:center;text-shadow:1px 1px white}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul>li{font-size:11px;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;font-weight:normal;color:brown;float:left;width:66px;margin-right:5px;padding-right:5px;border-right:1px solid #CCC;cursor:pointer}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul>li:last-child{border-right:0 !important}#sq_blocksearch .sq_search ul .sq_info{clear:both;font-size:10px;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;color:#AAA;padding:3px 0 0;float:right}#sq_blocksearch .sq_search .sq_info ul li{float:left;margin-right:5px;padding-right:5px;border-right:1px solid #CCC}#sq_blocksearch .sq_search .sq_info ul li:last-child{border-right-width:0 !important}#sq_blocksearch .sq_search ul li.sq_search_img_li{position:relative;float:left;background-color:white;width:54px;height:54px;padding:2px;margin:0 3px 6px 0;border:1px solid #BBB;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-shadow:0 0 4px #CCC;-moz-box-shadow:0 0 4px #CCC;-webkit-box-shadow:0 0 4px #CCC;transition-property:border-color;transition-duration:.33s;-moz-transition-property:border-color;-moz-transition-duration:.33s;-webkit-transition-property:border-color;-webkit-transition-duration:.33s;cursor:pointer}#sq_blocksearch .sq_search ul li.sq_search_img_li:hover{border-color:#333}#sq_blocksearch .sq_search ul li.sq_search_img_li>img{clip:rect(7px,75px,63px,19px);position:absolute;margin-top:-8px;margin-left:-20px;max-height:75px}#sq_blocksearch #sq_search_img_filter{width:100%;background-color:#fcfcfc;height:22px;text-align:center;padding:4px 0;border-top:1px solid #ccc}#sq_blocksearch #sq_search_img_filter label#sq_search_img_nolicence_label{position:relative;font-size:13px;color:#333;text-shadow:1px 1px white}#sq_blocksearch #sq_search_img_filter label span{position:absolute;display:block;width:28px;height:25px;left:-29px;top:-4px;background:transparent url('../img/sprite.png') no-repeat -166px -47px}#sq_blocksearch #sq_search_img_filter label.checked span{background-position:-190px -47px}.sq_zoomImg_img{width:auto;height:54px}.sq_zoomImg{position:absolute;visibility:visible}.sq_zoomImg_Inner{background-color:#fff;border:1px solid #d9d9d9;-moz-box-shadow:0 4px 16px rgba(0,0,0,0.2);-webkit-box-shadow:0 4px 16px rgba(0,0,0,0.2);box-shadow:0 4px 16px rgba(0,0,0,0.2);color:#555;padding:5px;position:relative}.sq_zoomImg_frame img{border:1px solid #d9d9d9;display:block;margin:auto;max-width:115px;max-height:115px}#sq_blocksearch .sq_search li.sq_search_img_li .sq_attribute{position:absolute;font-family:Arial,sans-serif;font-size:8px;color:#999;bottom:-3px;right:-3px;background:white;border:grey;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;z-index:1;padding:0 5px}#sq_blocksearch .sq_search ul li.search_category{clear:both;font-size:14px;color:#464646;width:100%;height:16px;border:0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_avatar{float:left;width:36px;height:36px;margin:3px 10px 0 0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_content{font-size:10px;margin-left:46px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_author{color:#555;font-size:12px;line-height:15px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_name{line-height:17px;margin-right:5px;color:#555;font-size:12px;font-weight:normal;text-align:left}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_text{margin-left:0}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_title{font-size:12px;font-weight:700;color:#333;line-height:18px;margin:0 0 5px 0}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_text{font-size:12px;color:#333;line-height:15px;text-align:left}#sq_blog_preview{position:relative;border:1px solid #e5e5e5;padding:0;margin-bottom:15px;background-color:#fcfcfc}#sq_blog_preview:before{display:block;border:0;content:" ";background:transparent url('../img/sprite.png') repeat-x 0 -361px;width:100%;height:5px;border-radius:2px 2px 0 0;opacity:.3}#sq_blog_preview #sq_blog_preview_partner{position:absolute;top:15px;right:20px}#sq_blog_preview #sq_blog_preview_partner a{background-color:#333;text-decoration:none;color:white;font-size:22px;font-weight:bold;margin-left:5px;padding:0 3px;border:1px solid #333}#sq_blog_preview #sq_blog_preview_title{display:block;font-size:18px;font-weight:normal;line-height:30px;color:#333;border-bottom:1px dashed #d1d1d1;margin:0 0 10px 0;padding:10px 0 20px 10px}#sq_blog_preview #sq_blog_preview_body{display:block;font-size:12px;color:#333;line-height:16px;text-align:left;padding:0 0 0 10px;max-height:300px;overflow-y:auto;overflow-x:hidden}#sq_blog_preview #sq_blog_preview_body p{position:relative;background-color:transparent;font-family:'Open Sans',Arial,Helvetica,sans-serif;font-size:14px;font-weight:normal;line-height:24px;padding:0;margin:0 0 16px 0;text-align:left;white-space:normal;color:#333}#sq_blog_preview #sq_blog_preview_body .sq_mark{background-color:#ffed5f;color:black;padding:0 3px 0;font-size:14px;line-height:20px;box-shadow:0 0 5px #fff6ac;-moz-box-shadow:0 0 5px #fff6ac;-webkit-box-shadow:0 0 5px #fff6ac}#sq_blog_preview #sq_blog_preview_body .sq_blog_option{position:absolute;display:none;background-color:#f5f5f5;font-size:11px;color:red;bottom:0;right:5px;cursor:pointer;z-index:1}#sq_blog_preview #sq_blog_preview_body p:hover{background-color:#f5f5f5}#sq_blog_preview #sq_blog_preview_body p:hover .sq_blog_option{display:block;-webkit-animation:fadeIn .3s;-moz-animation:fadeIn .3s;animation:fadeIn .3s}#sq_blocksearch{position:relative}#sq_blocksearch .sq_search ul li.sq_search_wiki_li .sq_wiki_title{font-size:12px;font-weight:700;color:#333;line-height:18px;margin:0 0 5px 0}#sq_blocksearch .sq_search ul li.sq_search_local_li .sq_local_title{font-size:12px;font-weight:700;color:#333;line-height:18px;margin:0 0 5px 0}#sq_blocksearch #sq_suggestion,#sq_blocksearch #sq_suggestion_help{clear:both;display:table;position:relative;background-color:white;width:100% !important;height:75px;padding:10px 0 10px 0 !important;margin:0 0 5px 0 !important}#sq_blocksearch .sq_gsuggestion_height{height:175px !important}#sq_blocksearch #sq_suggestion .sq_gsuggestion{margin:0;padding:0}#sq_blocksearch #sq_suggestion .sq_gsuggestion .sq_item_gsuggestion{clear:both;float:none;height:auto;line-height:13px;font-size:12px;font-weight:bold;color:#2c6e2c;text-align:left;cursor:pointer;margin:0;padding:6px 12px}#sq_blocksearch #sq_suggestion .sq_gsuggestion .sq_item_active{background-color:#f1f1f1}#sq_blocksearch #sq_suggestion ul li{height:20px;font-size:13px;float:left;text-align:center}#sq_blocksearch #sq_suggestion input#sq_selectit{width:200px;background-color:#589ee4;font-size:12px;font-weight:bold;line-height:19px;color:white;margin:10px auto 0 auto;padding:5px;position:relative;text-shadow:1px 1px #555;cursor:pointer;border:0}#sq_blocksearch #sq_suggestion ul li span{display:inline-block;height:20px;font-weight:bold;margin-left:5px}#sq_blocksearch #sq_suggestion_help{height:60px}#sq_blocksearch #sq_suggestion_help ul li{height:20px;text-align:center;color:darkGreen;font-size:14px;font-weight:bold}#sq_blocksearch #sq_suggestion_help ul li.sq_research_link,#sq_suggestion .sq_research_link{font-size:13px;font-weight:bold;color:#21759b;margin-top:10px;text-align:center;cursor:pointer;text-decoration:none}#sq_blocksearch .sq_keyword #sq_suggestion_rank{margin-top:-5px}#sq_blocksearch #sq_suggestion ul.sq_progressbar{height:15px;line-height:18px;padding:0;margin:0 auto;width:250px}#sq_blocksearch #sq_suggestion ul.sq_progressbar li:nth-child(1n){width:50px;text-align:right;color:red}#sq_blocksearch #sq_suggestion ul.sq_progressbar li:nth-child(2n){width:132px}#sq_blocksearch #sq_suggestion ul.sq_progressbar li:nth-child(3n){width:50px;text-align:left;color:darkgreen}#sq_blocksearch #sq_suggestion ul.sq_smalldetails{clear:both;width:220px;margin:0 auto 10px auto}#sq_blocksearch #sq_suggestion ul.sq_smalldetails li{height:15px;font-size:10px;color:gray;margin:0 4px;padding:0;float:none}#sq_blocksearch #sq_suggestion div.sq_smalldetails{width:240px;margin:0 auto;font-size:11px;font-weight:bold;color:brown;text-align:center}#sq_blocksearch #sq_suggestion .sq_keywords_info{display:table;width:230px}#sq_blocksearch #sq_suggestion .sq_keywords_info{clear:both;width:190px;z-index:1;background-color:#f7f7f7;border:1px solid #CCC;padding:5px;margin:0 auto;text-align:center;border-radius:1px;-webkit-border-radius:1px;-moz-border-radius:1px}#sq_blocksearch #sq_suggestion .sq_keywords_info table{margin:0 auto}#sq_blocksearch #sq_suggestion .sq_keywords_info td{border-bottom:1px dashed #d8d8d8;padding:4px 10px;color:#414141;font-family:Arial,Helvetica,sans-serif;font-size:12px;text-align:left;line-height:1.4em}#sq_blocksearch #sq_search_close,#sq_blog_preview #sq_blog_preview_close{position:absolute;font-family:Arial,sans-serif;background-color:#8684a4;right:-6px;top:-3px;font-size:12px;font-weight:bold;color:#fff;width:10px;line-height:16px;text-align:center;padding:0 4px 2px;border-radius:10px;-webkit-border-radius:10px;-moz-border-radius:10px;border:1px solid darkOliveGreen;cursor:pointer;z-index:2}#sq_blocksearch #sq_suggestion_close,#sq_blocksearch #sq_briefcase_list_close{position:absolute;font-family:Arial,sans-serif;right:0;top:0;font-size:13px;font-weight:bold;color:#999;width:10px;line-height:16px;text-align:center;padding:0 4px 2px;border:0;cursor:pointer;z-index:2}#sq_blocksearch #sq_search_close{top:-13px}#sq_blocksearch .sq_show_mgs{clear:both;display:block;padding:7px;margin-top:10px;border-top:1px dashed #d1d1d1}#sq_suggestion .sq_show_mgs{max-width:200px;margin:20px auto 0 auto;border-top:0}@-webkit-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-moz-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-ms-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-o-keyframes play{from{background-position:0 0}to{background-position:-400px}}@keyframes play{from{background-position:0 0}to{background-position:-400px}}#sq_blog_preview.sq_minloading,#sq_blocksearch .sq_minloading{position:relative;opacity:.5;min-height:40px}#sq_blog_preview.sq_minloading:before,#sq_blocksearch .sq_minloading:before{position:absolute;right:calc(50% - 10px);top:calc(50% - 8px);display:block;float:right;line-height:30px;content:"";padding:0;margin:0 0 0 5px;height:16px;width:20px;background:transparent url('../img/minloading.png') no-repeat;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}#sq_blocksearch .sq_more{clear:both;position:relative;width:100%;height:17px;text-align:center;padding:0;margin:0 0 5px 0}#sq_blocksearch .sq_more span{display:block;width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:12px solid #589ee4;padding:0;margin:0 auto;cursor:pointer}#publishing-action{float:left !important;width:100%}#sq_publish_alert{text-align:left;font-size:12px;font-weight:bold;color:red;text-shadow:1px 1px white;margin:0 0 5px 0;padding:0}#sq_publish_alert #sq_publish_alert_yes{display:block;float:left;clear:both;margin:2px 0 0 8px;padding:0 35px;line-height:29px;font-size:14px;font-weight:bold;color:white;cursor:pointer;background-color:#589ee4;text-shadow:1px 1px #777;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}#sq_publish_alert #sq_publish_alert_yes:hover{background-color:#4f8dca}#sq_subscription{font-size:13px;font-weight:bold;color:red;padding:0 !important;text-align:center;width:275px;margin:0 auto 15px auto;background-color:#fff;box-shadow:0 0 6px 0 #888;-moz-box-shadow:0 0 6px 0 #888;-webkit-box-shadow:0 0 6px 0 #888}#sq_subscription .sq_renew{padding:10px;line-height:20px}#sq_subscription .sq_renew a{display:block;font-size:16px;background-color:#589ee4;color:white;font-weight:bold;margin:10px;padding:6px;text-decoration:none;border-radius:7px}#sq_subscription>a{display:block;margin:0;padding:0;height:300px}#sq_options_feedback .sq_options_feedback_popup li{clear:both}#sq_facebook_b{padding:6px 0;clear:both}#sq_facebook_b>span{display:block;float:left;font-weight:bold;color:darkgreen}#sq_facebook_b .sq_facebook_title{width:100%;font-size:16px;text-align:center;margin:5px auto}#sq_facebook_b .sq_facebook_image{width:100px;margin:3px 7px 5px 24px}#sq_facebook_b .sq_facebook_image img{width:100px}#sq_facebook_b .sq_facebook_frame{margin-top:35px}#sq_coupon{position:relative;background-image:none;background-color:#f3f8fd;border:2px solid #f1f2f4;border-radius:5px;padding:0;margin:0 0 10px 0;height:auto;width:100%}#sq_coupon #sq_coupon_close{position:absolute;background-color:#e5d8cd;right:-6px;top:-3px;font-size:13px;font-weight:bold;color:#333;line-height:16px;width:8px;height:12px;padding:0 5px 6px;border-radius:10px;border:1px solid darkOliveGreen;cursor:pointer;z-index:2}.sq_notice.sq_fixed{position:fixed;z-index:10000}.sq_notice{top:28px;text-align:center;width:100%}.sq_notice.sq_notice>div{display:block;margin:0 !important;width:100% !important;line-height:40px;background-color:lightgoldenrodyellow}.sq_notice.sq_notice>div.sq_success{background-color:#20bc49}
|
1 |
+
#sq_blocksearch input,#sq_blocksearch textarea,#sq_blocksearch{font-family:Arial,Helvetica,sans-serif}#sq_tinymce_inactive{padding:20px !important;font-size:16px}#sq_blocksearch ::-webkit-scrollbar{width:18px;height:15px}#sq_blocksearch ::-webkit-scrollbar-button:start:decrement,#sq_blocksearch ::-webkit-scrollbar-button:end:increment{height:1px;display:block;background-color:#eff7ff}#sq_blocksearch ::-webkit-scrollbar-track{border-left:6px solid transparent;border-right:1px solid transparent;background-clip:padding-box}#sq_blocksearch ::-webkit-scrollbar-thumb:vertical{min-height:28px;padding-top:100px;border-left:6px solid transparent;border-right:1px solid transparent;border-top:0 solid transparent;border-bottom:0 solid transparent;background-clip:padding-box;background-color:rgba(0,0,0,0.2);-webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,0.1),inset 0 -1px 0 rgba(0,0,0,0.07)}#sq_search_second{text-align:center}#sq_blocksearch .sq_keyword{background-color:#8684a4;position:relative;text-align:center;height:auto;width:100%;z-index:11}#side-sortables #sq_blocksearch .sq_keyword{z-index:1001}#sq_blocksearch .sq_keyword #sq_keyword_help{position:absolute;background-color:brown;font-size:24px;font-weight:bold;color:white;top:-24px;left:-238px;width:204px;height:auto;padding:20px 10px;line-height:22px;border-radius:1px;-webkit-border-radius:1px;-moz-border-radius:1px;box-shadow:0 0 9px 0 #000;-moz-box-shadow:0 0 9px 0 #000;-webkit-box-shadow:0 0 9px 0 #000}#sq_blocksearch .sq_keyword #sq_keyword_help span{position:absolute;right:-25px;top:34px;width:0;height:0;border-top:13px solid transparent;border-bottom:9px solid transparent;border-left:25px solid brown}#sq_blocksearch .sq_keyword #sq_keyword_help p{line-height:13px;margin-top:5px;font-size:11px;color:#d1d1d1}#sq_blocksearch #sq_keyword,#sq_blocksearch #sq_keyword_second{display:inline-block;margin:16px 2px;width:85%;line-height:26px;height:30px;padding:0 5px;font-size:15px;font-weight:bold;background-color:#f9f9f9;color:#15b14a}#normal-sortables #sq_blocksearch #sq_keyword,#normal-sortables #sq_blocksearch #sq_keyword_second{width:91%}#sq_blocksearch #sq_keyword_check,#sq_blocksearch #sq_keyword_second_check{display:inline-block;line-height:26px;width:26px;height:28px;background-color:#589ee4;font-size:15px;font-weight:bold;color:white;margin:0;padding:0;border:1px solid white;cursor:pointer}#sq_blocksearch .sq_search_notrelevant{line-height:30px;width:125px}.sq_search>a{display:block;width:100%;text-align:center;margin:4px auto 0 auto;padding:0;text-decoration:underline;font-size:14px;color:#21759b}#postsquirrly #sq_briefcase_icon,#postsquirrly #sq_briefcase_analytics,#postsquirrly #sq_briefcase_help{float:right;background:transparent url(../img/sprite.png) no-repeat -432px -50px;margin:0;cursor:pointer;font-weight:bold;color:brown;width:26px;height:22px}#postsquirrly .sq_briefcase_smallicon{display:block;float:left;margin:1px 7px 0 0;height:20px;width:20px;background:transparent url('../img/briefcase.png') no-repeat;background-size:100%}#postsquirrly #sq_briefcase_analytics{background-position:-434px -23px}#postsquirrly #sq_briefcase_help{background-position:-28px -50px}#postsquirrly #sq_briefcase_refresh{float:right;background:transparent url(../img/sprite.png) no-repeat -435px -74px;width:22px;height:22px;line-height:22px;text-align:center;font-size:12px;font-weight:bold;color:white;margin:-1px 0 0 4px;padding:0;border:0;cursor:pointer}#sq_blocksearch #sq_briefcase_list{clear:both;display:table;position:relative;background-color:white;width:100% !important;min-height:75px;padding:0 !important;margin:0 !important;border-bottom:1px solid #aaa}#sq_blocksearch #sq_briefcase_bottom{background-color:#f1f1f1;height:20px;margin:2px -1px 0 -1px;border-top:1px solid #ddd}#sq_blocksearch #sq_briefcase_list #sq_briefcase_keyword{display:inline-block;margin:2px 4px 0 4px;width:97%;line-height:26px;height:30px;padding:0 5px;font-size:13px;font-weight:normal;background-color:#e2ffd6;color:#333}#sq_blocksearch #sq_briefcase_list #sq_briefcase_keyword_check{display:inline-block;line-height:26px;width:26px;height:28px;background-color:#589ee4;font-size:15px;font-weight:bold;color:white;margin:0;padding:0;border:1px solid white;cursor:pointer}#sq_blocksearch #sq_briefcase_content ul{overflow-y:auto;margin:5px 0 2px 0}#sq_blocksearch #sq_briefcase_content ul.sq_briefcase_item_notused{max-height:150px}#sq_blocksearch #sq_briefcase_content.sq_error{margin:15px 0 !important}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item{position:relative;color:#4f1440;padding:0;text-align:left;font-size:13px;margin:0 0 0 1px}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_item_percent{width:11%;display:inline-block;padding:5px 2px 0 2px;text-align:right;font-weight:bold;cursor:pointer}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item_used .sq_briefcase_value{cursor:pointer}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_value{width:70%;max-width:245px;display:inline-block;padding:5px;white-space:nowrap;text-overflow:ellipsis;overflow-x:hidden;vertical-align:top}#sq_blocksearch #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item{padding:5px}#sq_blocksearch #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item .sq_briefcase_value{padding:0;display:block;clear:left}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_addbriefcase{font-size:10px;position:absolute;color:darkred;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_optimize{font-size:10px;position:absolute;color:darkred;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_optimize{display:block}#sq_blocksearch #sq_briefcase_content .sq_briefcase_empty{color:green;font-weight:bold;text-align:center;padding:5px}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_addbriefcase{display:block}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item_used .sq_briefcase_value{width:75%;max-width:190px}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_separator{height:3px;background-color:white;box-shadow:0 1px 4px -1px #333}#sq_blocksearch #sq_briefcase_content li .sq_briefcase_item_delete{display:none;float:right;font-family:Arial,sans-serif;right:3px;font-size:13px;font-weight:bold;color:#999;height:20px;width:10px;text-align:center;padding:5px 4px 2px;border:0;cursor:pointer;z-index:2}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover{background-color:#e2ffd6}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_item_delete{display:block}#sq_blocksearch #sq_briefcase_topcontent>ul{margin:0}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item{position:relative;color:#4f1440;padding:0 0 5px 0;text-align:left;font-size:13px;margin:0 0 0 1px;line-height:20px}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item .sq_briefcase_item_percent{width:11%;max-width:40px;display:inline-block;padding:5px 2px 0 2px;text-align:right;font-weight:bold;cursor:pointer}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item_used .sq_briefcase_value{cursor:pointer}#sq_blocksearch #sq_briefcase_topcontent .sq_briefcase_empty{color:green;font-weight:bold;text-align:center;padding:5px}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover .sq_briefcase_addbriefcase{display:none}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item .sq_briefcase_optimize{font-size:10px;position:absolute;color:darkred;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_blocksearch #sq_briefcase_topcontent .sq_briefcase_empty{color:green;font-weight:bold;text-align:center;padding:5px;margin:auto;cursor:pointer}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover .sq_briefcase_optimize{display:block}#sq_blocksearch #sq_briefcase_topcontent #sq_briefcase_keyword{display:inline-block;margin:0 4px 0 4px;width:97%;line-height:26px;height:30px;padding:0 5px;font-size:13px;font-weight:normal;background-color:#e2ffd6;color:#333}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item_used .sq_briefcase_value{width:75%;max-width:190px}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_separator{display:none}#sq_blocksearch #sq_briefcase_topcontent li .sq_briefcase_item_delete{display:none;float:right;font-family:Arial,sans-serif;font-size:13px;font-weight:bold;color:#999;height:20px;width:10px;text-align:center;margin-right:8px;padding:5px 4px 2px;border:0;cursor:pointer;z-index:2}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover{background-color:#e2ffd6}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover .sq_briefcase_item_delete{display:block}#sq_blocksearch .sq_briefcase_item .sq_briefcase_item_circle{display:block;float:left;width:13px;height:3px;margin:0 2px 0 0}#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle{display:block;float:left;width:20px;height:10px;margin:5px 3px 0 3px;cursor:pointer}#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle:before{content:" ";display:block;height:100%;width:100%;margin:-2px 0 2px 0}#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle.sq_active:before{display:block;font-size:11px;line-height:14px;text-align:center;margin:-2px 0 2px 0;content:"\f00c";color:#fff;text-shadow:1px 0 #555}#sq_blocksearch #sq_types{display:none;height:35px;padding:5px 0;background-color:#fcfcfc;box-shadow:0 1px 3px -2px #888;-moz-box-shadow:0 1px 3px -2px #888;-webkit-box-shadow:0 1px 3px -2px #888}#sq_blocksearch #sq_types ul{margin:0}#sq_blocksearch #sq_types ul li{float:left;background:transparent url('../img/sprite.png') no-repeat;margin:0 0 0 17px;cursor:pointer;font-weight:bold;color:brown;width:26px;height:25px}#sq_blocksearch #sq_types #sq_type_img{background-position:0 0}#sq_blocksearch #sq_types #sq_type_twitter{background-position:-27px 0}#sq_blocksearch #sq_types #sq_type_news{background-position:-137px 0}#sq_blocksearch #sq_types #sq_type_blog{background-position:-54px 0}#sq_blocksearch #sq_types #sq_type_wiki{background-position:-84px 0}#sq_blocksearch #sq_types #sq_type_local{background-position:-164px 0}#sq_blocksearch #sq_types #sq_type_img:hover{background-position:0 -25px}#sq_blocksearch #sq_types #sq_type_twitter:hover{background-position:-27px -25px}#sq_blocksearch #sq_types #sq_type_news:hover{background-position:-137px -24px}#sq_blocksearch #sq_types #sq_type_blog:hover{background-position:-54px -25px}#sq_blocksearch #sq_types #sq_type_wiki:hover{background-position:-84px -25px}#sq_blocksearch #sq_types #sq_type_local:hover{background-position:-164px -25px}#sq_blocksearch .sq_search{display:block;overflow-y:auto;max-height:310px;overflow-x:hidden;padding:0 !important;margin:0 !important;width:100% !important;clear:both}#sq_blocksearch .sq_search ul{padding:0 0 0 4px;margin:0;list-style:none;clear:both}#sq_blocksearch .sq_search ul li.sq_search_li{display:block;width:95%;font-size:12px;font-weight:normal;padding:5px 5px;margin:7px auto;background-color:#FFF;border:1px solid #DDD;border-radius:1px;-webkit-border-radius:1px;-moz-border-radius:1px;box-shadow:0 1px 0 #a8a8a8;-webkit-box-shadow:0 1px 0 #a8a8a8;-moz-box-shadow:0 1px 0 #a8a8a8}#sq_blocksearch .sq_search .sq_attribution{clear:both;margin:0;text-shadow:1px 1px white;height:25px}#sq_blocksearch .sq_search ul li.sq_search_li:hover .sq_attribution>ul{display:block}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul{display:none;background-color:#f1f1f1;height:20px;padding:2px 2px;margin:0;text-align:center;text-shadow:1px 1px white}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul>li{font-size:11px;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;font-weight:normal;color:brown;float:left;width:70px;margin-right:5px;padding-right:5px;border-right:1px solid #CCC;cursor:pointer}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul>li:last-child{border-right:0 !important}#sq_blocksearch .sq_search ul .sq_info{clear:both;font-size:10px;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;color:#AAA;padding:3px 0 0;float:right}#sq_blocksearch .sq_search .sq_info ul li{float:left;margin-right:5px;padding-right:5px;border-right:1px solid #CCC}#sq_blocksearch .sq_search .sq_info ul li:last-child{border-right-width:0 !important}#sq_blocksearch .sq_search ul li.sq_search_img_li{position:relative;float:left;background-color:white;width:75px;height:56px;padding:2px;margin:0 3px 6px 0;border:1px solid #BBB;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-shadow:0 0 4px #CCC;-moz-box-shadow:0 0 4px #CCC;-webkit-box-shadow:0 0 4px #CCC;transition-property:border-color;transition-duration:.33s;-moz-transition-property:border-color;-moz-transition-duration:.33s;-webkit-transition-property:border-color;-webkit-transition-duration:.33s;cursor:pointer}#sq_blocksearch .sq_search ul li.sq_search_img_li:hover{border-color:#333}#sq_blocksearch .sq_search ul li.sq_search_img_li>img{clip:rect(3px,80px,55px,9px);position:absolute;margin-top:-4px;margin-left:-10px;max-height:90px;max-width:90px}#sq_blocksearch #sq_search_img_filter{width:100%;background-color:#fcfcfc;text-align:center;padding:4px 0;border-top:1px solid #ccc}#sq_blocksearch #sq_search_img_filter label#sq_search_img_nolicence_label{position:relative;font-size:13px;color:#333;text-shadow:1px 1px white}#sq_blocksearch #sq_search_img_filter label span{position:absolute;display:block;width:28px;height:25px;left:-29px;top:-4px;background:transparent url('../img/sprite.png') no-repeat -166px -47px}#sq_blocksearch #sq_search_img_filter label.checked span{background-position:-190px -47px}.sq_zoomImg_img{width:auto;height:54px}.sq_zoomImg{position:absolute;visibility:visible}.sq_zoomImg_Inner{background-color:#fff;border:1px solid #d9d9d9;-moz-box-shadow:0 4px 16px rgba(0,0,0,0.2);-webkit-box-shadow:0 4px 16px rgba(0,0,0,0.2);box-shadow:0 4px 16px rgba(0,0,0,0.2);color:#555;padding:5px;position:relative}.sq_zoomImg_frame img{border:1px solid #d9d9d9;display:block;margin:auto;max-width:115px;max-height:115px}#sq_blocksearch .sq_search li.sq_search_img_li .sq_attribute{position:absolute;font-family:Arial,sans-serif;font-size:8px;color:#999;bottom:-3px;right:-3px;background:white;border:grey;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;z-index:1;padding:0 5px}#sq_blocksearch .sq_search ul li.search_category{clear:both;font-size:14px;color:#464646;width:100%;height:16px;border:0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_avatar{float:left;width:36px;height:36px;margin:3px 10px 0 0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_content{font-size:10px;margin-left:46px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_author{color:#555;font-size:12px;line-height:15px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_name{line-height:17px;margin-right:5px;color:#555;font-size:12px;font-weight:normal;text-align:left}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_text{margin-left:0}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_title{font-size:12px;font-weight:700;color:#333;line-height:18px;margin:0 0 5px 0}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_text{font-size:12px;color:#333;line-height:15px;text-align:left}#sq_blog_preview{position:relative;border:1px solid #e5e5e5;padding:0;margin-bottom:15px;background-color:#fcfcfc}#sq_blog_preview:before{display:block;border:0;content:" ";background:transparent url('../img/sprite.png') repeat-x 0 -361px;width:100%;height:5px;border-radius:2px 2px 0 0;opacity:.3}#sq_blog_preview #sq_blog_preview_partner{position:absolute;top:15px;right:20px}#sq_blog_preview #sq_blog_preview_partner a{background-color:#333;text-decoration:none;color:white;font-size:22px;font-weight:bold;margin-left:5px;padding:0 3px;border:1px solid #333}#sq_blog_preview #sq_blog_preview_title{display:block;font-size:18px;font-weight:normal;line-height:30px;color:#333;border-bottom:1px dashed #d1d1d1;margin:0 0 10px 0;padding:10px 0 20px 10px}#sq_blog_preview #sq_blog_preview_body{display:block;font-size:12px;color:#333;line-height:16px;text-align:left;padding:0 0 0 10px;max-height:300px;overflow-y:auto;overflow-x:hidden}#sq_blog_preview #sq_blog_preview_body p{position:relative;background-color:transparent;font-family:'Open Sans',Arial,Helvetica,sans-serif;font-size:14px;font-weight:normal;line-height:24px;padding:0;margin:0 0 16px 0;text-align:left;white-space:normal;color:#333}#sq_blog_preview #sq_blog_preview_body .sq_mark{background-color:#ffed5f;color:black;padding:0 3px 0;font-size:14px;line-height:20px;box-shadow:0 0 5px #fff6ac;-moz-box-shadow:0 0 5px #fff6ac;-webkit-box-shadow:0 0 5px #fff6ac}#sq_blog_preview #sq_blog_preview_body .sq_blog_option{position:absolute;display:none;background-color:#f5f5f5;font-size:11px;color:red;bottom:0;right:5px;cursor:pointer;z-index:1}#sq_blog_preview #sq_blog_preview_body p:hover{background-color:#f5f5f5}#sq_blog_preview #sq_blog_preview_body p:hover .sq_blog_option{display:block;-webkit-animation:fadeIn .3s;-moz-animation:fadeIn .3s;animation:fadeIn .3s}#sq_blocksearch{position:relative}#sq_blocksearch .sq_search ul li.sq_search_wiki_li .sq_wiki_title{font-size:12px;font-weight:700;color:#333;line-height:18px;margin:0 0 5px 0}#sq_blocksearch .sq_search ul li.sq_search_local_li .sq_local_title{font-size:12px;font-weight:700;color:#333;line-height:18px;margin:0 0 5px 0}#sq_blocksearch #sq_suggestion,#sq_blocksearch #sq_suggestion_help{clear:both;display:table;position:relative;background-color:white;width:100% !important;height:75px;padding:10px 0 10px 0 !important;margin:0 0 5px 0 !important}#sq_blocksearch .sq_gsuggestion_height{height:175px !important}#sq_blocksearch #sq_suggestion .sq_gsuggestion{margin:0;padding:0}#sq_blocksearch #sq_suggestion .sq_gsuggestion .sq_item_gsuggestion{clear:both;float:none;height:auto;line-height:13px;font-size:12px;font-weight:bold;color:#2c6e2c;text-align:left;cursor:pointer;margin:0;padding:6px 12px}#sq_blocksearch #sq_suggestion .sq_gsuggestion .sq_item_active{background-color:#f1f1f1}#sq_blocksearch #sq_suggestion ul li{height:20px;font-size:13px;float:left;text-align:center}#sq_blocksearch #sq_suggestion input#sq_selectit{width:200px;background-color:#589ee4;font-size:12px;font-weight:bold;line-height:19px;color:white;margin:10px auto 0 auto;padding:5px;position:relative;text-shadow:1px 1px #555;cursor:pointer;border:0}#sq_blocksearch #sq_suggestion ul li span{display:inline-block;height:20px;font-weight:bold;margin-left:5px}#sq_blocksearch #sq_suggestion_help ul li{height:20px;text-align:center;color:darkGreen;font-size:14px;font-weight:bold}#sq_blocksearch #sq_suggestion_help ul li.sq_research_link,#sq_suggestion .sq_research_link{font-size:13px;font-weight:bold;color:#21759b;margin-top:10px;text-align:center;cursor:pointer;text-decoration:none}#sq_blocksearch .sq_keyword #sq_suggestion_rank{margin-top:-5px}#sq_blocksearch #sq_suggestion ul.sq_progressbar{height:15px;line-height:18px;padding:0;margin:0 auto;width:250px}#sq_blocksearch #sq_suggestion ul.sq_progressbar li:nth-child(1n){width:50px;text-align:right;color:red}#sq_blocksearch #sq_suggestion ul.sq_progressbar li:nth-child(2n){width:132px}#sq_blocksearch #sq_suggestion ul.sq_progressbar li:nth-child(3n){width:50px;text-align:left;color:darkgreen}#sq_blocksearch #sq_suggestion ul.sq_smalldetails{clear:both;width:220px;margin:0 auto 10px auto}#sq_blocksearch #sq_suggestion ul.sq_smalldetails li{height:15px;font-size:10px;color:gray;margin:0 4px;padding:0;float:none}#sq_blocksearch #sq_suggestion div.sq_smalldetails{width:240px;margin:0 auto;font-size:11px;font-weight:bold;color:brown;text-align:center}#sq_blocksearch #sq_suggestion .sq_keywords_info{display:table;width:230px}#sq_blocksearch #sq_suggestion .sq_keywords_info{clear:both;width:190px;z-index:1;background-color:#f7f7f7;border:1px solid #CCC;padding:5px;margin:0 auto;text-align:center;border-radius:1px;-webkit-border-radius:1px;-moz-border-radius:1px}#sq_blocksearch #sq_suggestion .sq_keywords_info table{margin:0 auto}#sq_blocksearch #sq_suggestion .sq_keywords_info td{border-bottom:1px dashed #d8d8d8;padding:4px 10px;color:#414141;font-family:Arial,Helvetica,sans-serif;font-size:12px;text-align:left;line-height:1.4em}#sq_blocksearch #sq_search_close,#sq_blog_preview #sq_blog_preview_close,#sq_blocksearch #sq_suggestion_close,#sq_blocksearch #sq_briefcase_list_close{position:absolute;font-family:Arial,sans-serif;right:8px;top:0;font-size:13px;font-weight:bold;color:#999;width:10px;line-height:16px;text-align:center;padding:0 4px 2px;border-radius:10px;cursor:pointer;z-index:2}#sq_blocksearch #sq_search_close{top:-24px}#sq_blocksearch .sq_show_mgs{clear:both;display:block;padding:7px;margin-top:10px;border-top:1px dashed #d1d1d1}#sq_suggestion .sq_show_mgs{max-width:200px;margin:20px auto 0 auto;border-top:0}@-webkit-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-moz-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-ms-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-o-keyframes play{from{background-position:0 0}to{background-position:-400px}}@keyframes play{from{background-position:0 0}to{background-position:-400px}}#sq_blog_preview.sq_minloading,#sq_blocksearch .sq_minloading{position:relative;opacity:.5;min-height:40px}#sq_blog_preview.sq_minloading:before,#sq_blocksearch .sq_minloading:before{position:absolute;right:calc(50% - 10px);top:calc(50% - 8px);display:block;float:right;line-height:30px;content:"";padding:0;margin:0 0 0 5px;height:16px;width:20px;background:transparent url('../img/minloading.png') no-repeat;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}#sq_blocksearch .sq_more{clear:both;position:relative;width:100%;text-align:center;padding:0;margin:0 0 5px 0}#sq_blocksearch .sq_more span{display:block;width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:12px solid #589ee4;padding:0;margin:0 auto;cursor:pointer}#publishing-action{float:left !important;width:100%}#sq_publish_alert{text-align:left;font-size:12px;font-weight:bold;color:red;text-shadow:1px 1px white;margin:0 0 5px 0;padding:0}#sq_publish_alert #sq_publish_alert_yes{display:block;float:left;clear:both;margin:2px 0 0 8px;padding:0 35px;line-height:29px;font-size:14px;font-weight:bold;color:white;cursor:pointer;background-color:#589ee4;text-shadow:1px 1px #777;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}#sq_publish_alert #sq_publish_alert_yes:hover{background-color:#4f8dca}#sq_subscription{font-size:13px;font-weight:bold;color:red;padding:0 !important;text-align:center;width:275px;margin:0 auto 15px auto;background-color:#fff;box-shadow:0 0 6px 0 #888;-moz-box-shadow:0 0 6px 0 #888;-webkit-box-shadow:0 0 6px 0 #888}#sq_subscription .sq_renew{padding:10px;line-height:20px}#sq_subscription .sq_renew a{display:block;font-size:16px;background-color:#589ee4;color:white;font-weight:bold;margin:10px;padding:6px;text-decoration:none;border-radius:7px}#sq_subscription>a{display:block;margin:0;padding:0;height:300px}#sq_options_feedback .sq_options_feedback_popup li{clear:both}#sq_facebook_b{padding:6px 0;clear:both}#sq_facebook_b>span{display:block;float:left;font-weight:bold;color:darkgreen}#sq_facebook_b .sq_facebook_title{width:100%;font-size:16px;text-align:center;margin:5px auto}#sq_facebook_b .sq_facebook_image{width:100px;margin:3px 7px 5px 24px}#sq_facebook_b .sq_facebook_image img{width:100px}#sq_facebook_b .sq_facebook_frame{margin-top:35px}#sq_coupon{position:relative;background-image:none;background-color:#f3f8fd;border:2px solid #f1f2f4;border-radius:5px;padding:0;margin:0 0 10px 0;height:auto;width:100%}#sq_coupon #sq_coupon_close{position:absolute;background-color:#e5d8cd;right:-6px;top:-3px;font-size:13px;font-weight:bold;color:#333;line-height:16px;width:8px;height:12px;padding:0 5px 6px;border-radius:10px;border:1px solid darkOliveGreen;cursor:pointer;z-index:2}.sq_notice.sq_fixed{position:fixed;z-index:10000}.sq_notice{top:28px;text-align:center;width:100%}.sq_notice.sq_notice>div{display:block;margin:0 !important;width:100% !important;line-height:40px;background-color:lightgoldenrodyellow}.sq_notice.sq_notice>div.sq_success{background-color:#20bc49}
|
view/css/blockseo.css
CHANGED
@@ -3,6 +3,10 @@
|
|
3 |
min-height: 110px;
|
4 |
}
|
5 |
|
|
|
|
|
|
|
|
|
6 |
#sq_blockseo .sq_auto_sticky input {
|
7 |
display: none;
|
8 |
}
|
@@ -119,6 +123,11 @@ progress.sq_blockseo_progress::-webkit-progress-value {
|
|
119 |
background-image: linear-gradient(90deg, red 0%, orange 30%, orange 60%, #20bc49 100%);
|
120 |
}
|
121 |
|
|
|
|
|
|
|
|
|
|
|
122 |
progress.sq_blockseo_topprogress::-webkit-progress-value {
|
123 |
background-color: #5ba4cf;
|
124 |
border-radius: 0;
|
3 |
min-height: 110px;
|
4 |
}
|
5 |
|
6 |
+
#normal-sortables #sq_blockseo .sq_auto_sticky {
|
7 |
+
display: none !important;
|
8 |
+
}
|
9 |
+
|
10 |
#sq_blockseo .sq_auto_sticky input {
|
11 |
display: none;
|
12 |
}
|
123 |
background-image: linear-gradient(90deg, red 0%, orange 30%, orange 60%, #20bc49 100%);
|
124 |
}
|
125 |
|
126 |
+
#normal-sortables progress.sq_blockseo_progress::-webkit-progress-value{
|
127 |
+
background-size: 490px;
|
128 |
+
|
129 |
+
}
|
130 |
+
|
131 |
progress.sq_blockseo_topprogress::-webkit-progress-value {
|
132 |
background-color: #5ba4cf;
|
133 |
border-radius: 0;
|
view/css/blockseo.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#sq_blockseo{position:relative;min-height:110px}#sq_blockseo .sq_auto_sticky input{display:none}#sq_blockseo .sq_sticky_keyword{margin:9px -7px -4px -7px;padding:7px;display:block;border-top:1px solid #ddd;background-color:#8684a4;color:#ccc}#sq_blockseo .sq_sticky_keyword span{color:#fff;font-weight:bold}#sq_blockseo .sq_auto_sticky label span{display:block;height:20px;width:19px;margin:0 3px 0 0;background:transparent url(../img/sprite.png) no-repeat -407px -51px;border:0;cursor:pointer}#sq_blockseo .sq_auto_sticky input:checked+label span.sq_switch_img{background-position:-407px -76px}#sq_blockseo .sq_overlay:before{content:"Enter a keyword above and press ENTER";font-size:19px;line-height:30px;position:absolute;display:block;text-align:center;width:100%;z-index:9999;color:white;top:calc(50% - 20px);cursor:pointer;text-shadow:1px 1px #333}#sq_blockseo .sq_overlay{position:absolute;width:100%;background-color:#333;text-align:center;margin-bottom:0;vertical-align:middle;opacity:.7;z-index:2;line-height:0;bottom:0;top:1px;text-shadow:2px 2px black;cursor:pointer}#sq_blockseo .sq_header #sq_seo_refresh{float:right;line-height:22px;text-align:center;width:64px;height:22px;background-color:#f7681a !important;font-size:12px;font-weight:bold;color:white;margin:-2px 0;padding:0;border:0;border-radius:2px !important;cursor:pointer}progress.sq_blockseo_progress,progress.sq_blockseo_topprogress{width:100%;height:4px;margin:0;padding:0;display:block;-webkit-appearance:none;border:0;box-shadow:none}progress.sq_blockseo_topprogress{position:fixed;top:0;z-index:100003}progress.sq_blockseo_progress::-webkit-progress-bar,progress.sq_blockseo_topprogress::-webkit-progress-bar{background:transparent;border-radius:0}progress.sq_blockseo_progress::-webkit-progress-value{background-color:#20bc49;border-radius:0;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,0.4);background-size:276px;-webkit-animation:move 5s linear infinite;animation:move 5s linear infinite;background-image:linear-gradient(90deg,red 0,orange 30%,orange 60%,#20bc49 100%)}progress.sq_blockseo_topprogress::-webkit-progress-value{background-color:#5ba4cf;border-radius:0;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,0.4);background-size:100%;-webkit-animation:move 5s linear infinite;animation:move 5s linear infinite}progress.sq_blockseo_100progress::-webkit-progress-value{background-color:#20bc49}@keyframes move{0{background-position:0 0,0 0,0 0}100%{background-position:-100px 0,0 0,0 0}}@-webkit-keyframes move{0{background-position:0 0,0 0,0 0}100%{background-position:-100px 0,0 0,0 0}}#sq_blockseo input,#sq_blockseo textarea,#sq_blockseo{font-family:Arial,Helvetica,sans-serif}#sq_blockseo .sq_tasks{padding:2px 0}#sq_blockseo .sq_tasks .sq_help{display:none}#sq_blockseo .sq_tasks ul li{position:relative;display:block;background-color:#fff;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;font-size:11px;font-weight:normal;padding:5px 40px 5px 5px;margin:5px 7px;box-shadow:0 0 2px 0 #888;-moz-box-shadow:0 0 2px 0 #888;-webkit-box-shadow:0 0 2px 0 #888}#sq_blockseo .sq_tasks ul li.sq_tasks_category{color:#999;background-color:transparent;padding:0;margin:13px 0 0 5px;border:0 !important;box-shadow:none !important;-moz-box-shadow:none !important;-webkit-box-shadow:none !important}#sq_blockseo .sq_tasks .sq_fp_title_task{color:#589ee4}#sq_blockseo .sq_tasks ul li.checked .sq_fp_title_task{color:white}#sq_blockseo .sq_tasks ul li.checked{background-color:#20bc49;color:white;text-shadow:1px 1px #777}#sq_blockseo .sq_tasks ul li .sq_seo_priority{display:none;position:absolute;height:25px;width:30px;right:23px;top:4px}#sq_blockseo .sq_tasks ul li .sq_seo_locked{background:transparent url(../img/sprite.png) no-repeat -87px -50px;display:block;position:absolute;height:20px;width:20px;right:23px;top:4px;cursor:pointer}#sq_blockseo .sq_tasks ul li .sq_seo_priority_essential{background:transparent url(../img/sprite.png) no-repeat -45px -49px;cursor:pointer}#sq_blockseo .sq_tasks ul li .arrow:after{content:none;background-color:transparent}#sq_blockseo .sq_tasks ul li .arrow{display:block;position:absolute;background:transparent url(../img/sprite.png) no-repeat -146px -76px;right:5px;top:6px;bottom:auto;left:auto;height:16px;width:16px;overflow:visible;z-index:1;cursor:pointer}#sq_blockseo .sq_tasks ul li.checked .arrow{background-position:-121px -76px}#sq_blockseo .sq_tasks ul li .arrow:hover{background-position:-146px -76px;z-index:2}#sq_blockseo .sq_tasks ul li .arrow:hover .sq_help{display:table;position:absolute;background:#737373;font-weight:normal;font-size:12px;color:#f9f9f9;left:-240px;top:28px;height:50px;width:250px;padding:10px 5px;overflow:hidden;z-index:5;border:1px solid #CCC;border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;text-shadow:1px 1px black}#sq_blockseo .sq_tasks ul li.sq_density_high,#sq_blockseo .sq_tasks ul li.sq_density_title_high,#sq_blockseo .sq_tasks ul li.sq_over_density_high{background-color:red !important;color:white !important}#sq_blockseo .sq_tasks ul li.sq_locked{color:lightgray;background-color:#f8f8f8}#sq_blockseo .sq_error{padding:15px}body ul.sq_notification{position:fixed;background-color:#20bc49;text-align:center;width:100%;height:auto;top:28px;padding:0;margin:0;list-style:none !important;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100001}body ul.sq_notification_front{z-index:100002}body ul.sq_density_high,body ul.sq_density_title_high{background-color:red !important}body ul.sq_density_high li,body ul.sq_density_title_high li{color:white !important}body ul.sq_density_low,body ul.sq_density_title_low{background-color:red !important}body ul.sq_density_low li,body ul.sq_density_title_low li{color:white !important}body ul.sq_notification li{position:relative;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;font-size:15px;font-weight:normal;color:white;text-shadow:1px 1px #777;line-height:16px;list-style:none !important;width:380px;height:auto;margin:0 auto;padding:10px 0 10px 0;text-align:left}body ul.sq_notification li .arrow{position:absolute;top:8px;left:-33px;width:25px;height:25px;float:left;margin:0 10px 0 0;background:transparent url('../img/sprite.png') no-repeat -140px -49px}body ul.sq_notification li .arrow::after{background-color:transparent !important}body ul.sq_complete{position:fixed;background-color:#20bc49;text-align:center;width:100%;height:auto;top:28px;padding:0;margin:0;list-style:none !important;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100000003}body ul.sq_complete li{position:relative;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;font-size:15px;font-weight:normal;color:white;text-shadow:1px 1px #777;line-height:16px;list-style:none !important;width:336px;height:auto;margin:0 auto;padding:22px 0;text-align:left}body ul.sq_complete li span{background:transparent url('../img/editor/complete.png') no-repeat;background-size:45px;position:absolute;top:0;left:-75px;width:50px;height:59px;float:left;margin:4px 5px 0 0}@media only screen and (max-width:850px){#postsquirrly .sq_box.sq_sticky{position:inherit}#sq_blocksearch .sq_search ul li.sq_search_img_li{margin:0 2px 9px 20px;padding:6px}progress.sq_blockseo_progress::-webkit-progress-value{background-size:705px}}@media only screen and (max-width:500px){progress.sq_blockseo_progress::-webkit-progress-value{background-size:460px}}.sq_request_synonyms{color:lightcoral;text-decoration:underline;cursor:pointer}.sq_request_synonyms_oo{color:lightcyan;text-decoration:underline;cursor:pointer}#titlediv #sq_wp_title_suggestion:before{display:block;content:" ";background:transparent url('../img/sprite.png') repeat-x 0 -360px;width:100%;height:5px;border-radius:2px 2px 0 0;opacity:.3}#titlediv #sq_wp_title_suggestion:hover:before{opacity:.8}#titlediv #sq_wp_title_suggestion,#titlediv #sq_wp_title_suggestion_help{clear:both;display:table;position:relative;background-color:white;width:100%;height:50px;padding:0;margin:9px 0 0 0}#titlediv #sq_wp_title_suggestion #sq_wp_title_name{position:absolute;right:20px;top:-8px;background-color:linen;border:1px solid #ddd;font-size:10px;padding:0 10px}#titlediv .sq_gsuggestion_height{height:175px !important}#titlediv #sq_wp_title_suggestion .sq_show_mgs{display:block;line-height:50px}#titlediv #sq_wp_title_suggestion .sq_gsuggestion{margin:5px 0;padding:0}#titlediv #sq_wp_title_suggestion .sq_gsuggestion .sq_item_gsuggestion{clear:both;float:none;height:auto;line-height:20px;font-size:14px;font-weight:bold;color:#999;text-align:left;cursor:pointer;margin:0;padding:6px 12px}#titlediv #sq_wp_title_suggestion .sq_gsuggestion .sq_item_active{background-color:#f1f1f1}#titlediv #sq_wp_title_suggestion ul li{height:20px;font-size:13px;float:left;text-align:center}#titlediv #sq_wp_title_suggestion input#sq_selectit{width:200px;background-color:#1cab09;font-size:12px;font-weight:bold;color:white;margin:10px auto 0 auto;padding:5px;position:relative;text-shadow:1px 1px #555;cursor:pointer}#titlediv #sq_wp_title_suggestion ul li span{display:inline-block;height:20px;font-weight:bold;margin-left:5px}#titlediv #sq_wp_title_suggestion #sq_title_suggestion_close{position:absolute;background-color:#f1f1f1;right:-6px;top:-6px;font-size:13px;font-weight:bold;color:#333;width:8px;line-height:16px;padding:0 5px 3px;border-radius:10px;-webkit-border-radius:10px;-moz-border-radius:10px;border:1px solid darkOliveGreen;cursor:pointer;z-index:2}#titlediv #sq_canonical{font-weight:bold;clear:both;height:35px;margin-left:10px}#titlediv #sq_canonical div{float:left;line-height:29px;margin-right:5px;opacity:.5}#titlediv #sq_canonical div.sq_canonical_input{width:50%}#titlediv #sq_canonical div.sq_canonical_input input{color:darkblue;font-size:13px;font-style:italic;padding:5px;width:100%;height:30px;line-height:20px}
|
1 |
+
#sq_blockseo{position:relative;min-height:110px}#normal-sortables #sq_blockseo .sq_auto_sticky{display:none !important}#sq_blockseo .sq_auto_sticky input{display:none}#sq_blockseo .sq_sticky_keyword{margin:9px -7px -4px -7px;padding:7px;display:block;border-top:1px solid #ddd;background-color:#8684a4;color:#ccc}#sq_blockseo .sq_sticky_keyword span{color:#fff;font-weight:bold}#sq_blockseo .sq_auto_sticky label span{display:block;height:20px;width:19px;margin:0 3px 0 0;background:transparent url(../img/sprite.png) no-repeat -407px -51px;border:0;cursor:pointer}#sq_blockseo .sq_auto_sticky input:checked+label span.sq_switch_img{background-position:-407px -76px}#sq_blockseo .sq_overlay:before{content:"Enter a keyword above and press ENTER";font-size:19px;line-height:30px;position:absolute;display:block;text-align:center;width:100%;z-index:9999;color:white;top:calc(50% - 20px);cursor:pointer;text-shadow:1px 1px #333}#sq_blockseo .sq_overlay{position:absolute;width:100%;background-color:#333;text-align:center;margin-bottom:0;vertical-align:middle;opacity:.7;z-index:2;line-height:0;bottom:0;top:1px;text-shadow:2px 2px black;cursor:pointer}#sq_blockseo .sq_header #sq_seo_refresh{float:right;line-height:22px;text-align:center;width:64px;height:22px;background-color:#f7681a !important;font-size:12px;font-weight:bold;color:white;margin:-2px 0;padding:0;border:0;border-radius:2px !important;cursor:pointer}progress.sq_blockseo_progress,progress.sq_blockseo_topprogress{width:100%;height:4px;margin:0;padding:0;display:block;-webkit-appearance:none;border:0;box-shadow:none}progress.sq_blockseo_topprogress{position:fixed;top:0;z-index:100003}progress.sq_blockseo_progress::-webkit-progress-bar,progress.sq_blockseo_topprogress::-webkit-progress-bar{background:transparent;border-radius:0}progress.sq_blockseo_progress::-webkit-progress-value{background-color:#20bc49;border-radius:0;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,0.4);background-size:276px;-webkit-animation:move 5s linear infinite;animation:move 5s linear infinite;background-image:linear-gradient(90deg,red 0,orange 30%,orange 60%,#20bc49 100%)}#normal-sortables progress.sq_blockseo_progress::-webkit-progress-value{background-size:490px}progress.sq_blockseo_topprogress::-webkit-progress-value{background-color:#5ba4cf;border-radius:0;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,0.4);background-size:100%;-webkit-animation:move 5s linear infinite;animation:move 5s linear infinite}progress.sq_blockseo_100progress::-webkit-progress-value{background-color:#20bc49}@keyframes move{0{background-position:0 0,0 0,0 0}100%{background-position:-100px 0,0 0,0 0}}@-webkit-keyframes move{0{background-position:0 0,0 0,0 0}100%{background-position:-100px 0,0 0,0 0}}#sq_blockseo input,#sq_blockseo textarea,#sq_blockseo{font-family:Arial,Helvetica,sans-serif}#sq_blockseo .sq_tasks{padding:2px 0}#sq_blockseo .sq_tasks .sq_help{display:none}#sq_blockseo .sq_tasks ul li{position:relative;display:block;background-color:#fff;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;font-size:11px;font-weight:normal;padding:5px 40px 5px 5px;margin:5px 7px;box-shadow:0 0 2px 0 #888;-moz-box-shadow:0 0 2px 0 #888;-webkit-box-shadow:0 0 2px 0 #888}#sq_blockseo .sq_tasks ul li.sq_tasks_category{color:#999;background-color:transparent;padding:0;margin:13px 0 0 5px;border:0 !important;box-shadow:none !important;-moz-box-shadow:none !important;-webkit-box-shadow:none !important}#sq_blockseo .sq_tasks .sq_fp_title_task{color:#589ee4}#sq_blockseo .sq_tasks ul li.checked .sq_fp_title_task{color:white}#sq_blockseo .sq_tasks ul li.checked{background-color:#20bc49;color:white;text-shadow:1px 1px #777}#sq_blockseo .sq_tasks ul li .sq_seo_priority{display:none;position:absolute;height:25px;width:30px;right:23px;top:4px}#sq_blockseo .sq_tasks ul li .sq_seo_locked{background:transparent url(../img/sprite.png) no-repeat -87px -50px;display:block;position:absolute;height:20px;width:20px;right:23px;top:4px;cursor:pointer}#sq_blockseo .sq_tasks ul li .sq_seo_priority_essential{background:transparent url(../img/sprite.png) no-repeat -45px -49px;cursor:pointer}#sq_blockseo .sq_tasks ul li .arrow:after{content:none;background-color:transparent}#sq_blockseo .sq_tasks ul li .arrow{display:block;position:absolute;background:transparent url(../img/sprite.png) no-repeat -146px -76px;right:5px;top:6px;bottom:auto;left:auto;height:16px;width:16px;overflow:visible;z-index:1;cursor:pointer}#sq_blockseo .sq_tasks ul li.checked .arrow{background-position:-121px -76px}#sq_blockseo .sq_tasks ul li .arrow:hover{background-position:-146px -76px;z-index:2}#sq_blockseo .sq_tasks ul li .arrow:hover .sq_help{display:table;position:absolute;background:#737373;font-weight:normal;font-size:12px;color:#f9f9f9;left:-240px;top:28px;height:50px;width:250px;padding:10px 5px;overflow:hidden;z-index:5;border:1px solid #CCC;border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;text-shadow:1px 1px black}#sq_blockseo .sq_tasks ul li.sq_density_high,#sq_blockseo .sq_tasks ul li.sq_density_title_high,#sq_blockseo .sq_tasks ul li.sq_over_density_high{background-color:red !important;color:white !important}#sq_blockseo .sq_tasks ul li.sq_locked{color:lightgray;background-color:#f8f8f8}#sq_blockseo .sq_error{padding:15px}body ul.sq_notification{position:fixed;background-color:#20bc49;text-align:center;width:100%;height:auto;top:28px;padding:0;margin:0;list-style:none !important;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100001}body ul.sq_notification_front{z-index:100002}body ul.sq_density_high,body ul.sq_density_title_high{background-color:red !important}body ul.sq_density_high li,body ul.sq_density_title_high li{color:white !important}body ul.sq_density_low,body ul.sq_density_title_low{background-color:red !important}body ul.sq_density_low li,body ul.sq_density_title_low li{color:white !important}body ul.sq_notification li{position:relative;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;font-size:15px;font-weight:normal;color:white;text-shadow:1px 1px #777;line-height:16px;list-style:none !important;width:380px;height:auto;margin:0 auto;padding:10px 0 10px 0;text-align:left}body ul.sq_notification li .arrow{position:absolute;top:8px;left:-33px;width:25px;height:25px;float:left;margin:0 10px 0 0;background:transparent url('../img/sprite.png') no-repeat -140px -49px}body ul.sq_notification li .arrow::after{background-color:transparent !important}body ul.sq_complete{position:fixed;background-color:#20bc49;text-align:center;width:100%;height:auto;top:28px;padding:0;margin:0;list-style:none !important;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100000003}body ul.sq_complete li{position:relative;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;font-size:15px;font-weight:normal;color:white;text-shadow:1px 1px #777;line-height:16px;list-style:none !important;width:336px;height:auto;margin:0 auto;padding:22px 0;text-align:left}body ul.sq_complete li span{background:transparent url('../img/editor/complete.png') no-repeat;background-size:45px;position:absolute;top:0;left:-75px;width:50px;height:59px;float:left;margin:4px 5px 0 0}@media only screen and (max-width:850px){#postsquirrly .sq_box.sq_sticky{position:inherit}#sq_blocksearch .sq_search ul li.sq_search_img_li{margin:0 2px 9px 20px;padding:6px}progress.sq_blockseo_progress::-webkit-progress-value{background-size:705px}}@media only screen and (max-width:500px){progress.sq_blockseo_progress::-webkit-progress-value{background-size:460px}}.sq_request_synonyms{color:lightcoral;text-decoration:underline;cursor:pointer}.sq_request_synonyms_oo{color:lightcyan;text-decoration:underline;cursor:pointer}#titlediv #sq_wp_title_suggestion:before{display:block;content:" ";background:transparent url('../img/sprite.png') repeat-x 0 -360px;width:100%;height:5px;border-radius:2px 2px 0 0;opacity:.3}#titlediv #sq_wp_title_suggestion:hover:before{opacity:.8}#titlediv #sq_wp_title_suggestion,#titlediv #sq_wp_title_suggestion_help{clear:both;display:table;position:relative;background-color:white;width:100%;height:50px;padding:0;margin:9px 0 0 0}#titlediv #sq_wp_title_suggestion #sq_wp_title_name{position:absolute;right:20px;top:-8px;background-color:linen;border:1px solid #ddd;font-size:10px;padding:0 10px}#titlediv .sq_gsuggestion_height{height:175px !important}#titlediv #sq_wp_title_suggestion .sq_show_mgs{display:block;line-height:50px}#titlediv #sq_wp_title_suggestion .sq_gsuggestion{margin:5px 0;padding:0}#titlediv #sq_wp_title_suggestion .sq_gsuggestion .sq_item_gsuggestion{clear:both;float:none;height:auto;line-height:20px;font-size:14px;font-weight:bold;color:#999;text-align:left;cursor:pointer;margin:0;padding:6px 12px}#titlediv #sq_wp_title_suggestion .sq_gsuggestion .sq_item_active{background-color:#f1f1f1}#titlediv #sq_wp_title_suggestion ul li{height:20px;font-size:13px;float:left;text-align:center}#titlediv #sq_wp_title_suggestion input#sq_selectit{width:200px;background-color:#1cab09;font-size:12px;font-weight:bold;color:white;margin:10px auto 0 auto;padding:5px;position:relative;text-shadow:1px 1px #555;cursor:pointer}#titlediv #sq_wp_title_suggestion ul li span{display:inline-block;height:20px;font-weight:bold;margin-left:5px}#titlediv #sq_wp_title_suggestion #sq_title_suggestion_close{position:absolute;background-color:#f1f1f1;right:-6px;top:-6px;font-size:13px;font-weight:bold;color:#333;width:8px;line-height:16px;padding:0 5px 3px;border-radius:10px;-webkit-border-radius:10px;-moz-border-radius:10px;border:1px solid darkOliveGreen;cursor:pointer;z-index:2}#titlediv #sq_canonical{font-weight:bold;clear:both;height:35px;margin-left:10px}#titlediv #sq_canonical div{float:left;line-height:29px;margin-right:5px;opacity:.5}#titlediv #sq_canonical div.sq_canonical_input{width:50%}#titlediv #sq_canonical div.sq_canonical_input input{color:darkblue;font-size:13px;font-style:italic;padding:5px;width:100%;height:30px;line-height:20px}
|
view/css/blocksettings.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
#update-nag, .notice-error, .update-nag, .updated, .show-settings, .screen-meta-toggle{
|
2 |
display: none !important;
|
3 |
}
|
4 |
|
1 |
+
#update-nag, .notice-error, .update-nag, .updated, .show-settings, .screen-meta-toggle, .error{
|
2 |
display: none !important;
|
3 |
}
|
4 |
|
view/css/blocksettings.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#update-nag,.notice-error,.update-nag,.updated,.show-settings,.screen-meta-toggle{display:none !important}#sq_helpsettingscontent{float:left;clear:left;width:550px}.sq_helpside>div .sq_title{font-weight:bold;font-size:15px;line-height:35px}#sq_settings #sq_post_type_option{margin:0}#sq_settings #sq_post_types{width:98%;margin:0;padding:10px 0 5px 10px;display:table;border:1px solid #e1e1e1;background-color:#fbfbde}#sq_settings #sq_post_types li{float:left;margin-right:12px;width:46%}#sq_settings #sq_post_types li.sq_selectall{float:none;font-weight:bold;margin-bottom:15px}
|
1 |
+
#update-nag,.notice-error,.update-nag,.updated,.show-settings,.screen-meta-toggle,.error{display:none !important}#sq_helpsettingscontent{float:left;clear:left;width:550px}.sq_helpside>div .sq_title{font-weight:bold;font-size:15px;line-height:35px}#sq_settings #sq_post_type_option{margin:0}#sq_settings #sq_post_types{width:98%;margin:0;padding:10px 0 5px 10px;display:table;border:1px solid #e1e1e1;background-color:#fbfbde}#sq_settings #sq_post_types li{float:left;margin-right:12px;width:46%}#sq_settings #sq_post_types li.sq_selectall{float:none;font-weight:bold;margin-bottom:15px}
|
view/css/blocksettingsseo.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
#update-nag, .notice-error, .update-nag, .updated, .show-settings, .screen-meta-toggle{
|
2 |
display: none !important;
|
3 |
}
|
4 |
|
1 |
+
#update-nag, .notice-error, .update-nag, .updated, .show-settings, .screen-meta-toggle, .error{
|
2 |
display: none !important;
|
3 |
}
|
4 |
|
view/css/blocksettingsseo.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#update-nag,.notice-error,.update-nag,.updated,.show-settings,.screen-meta-toggle{display:none !important}#sq_helpsettingsseocontent{float:left;clear:left;width:550px}.sq_checkissues{display:inline-block;background-color:#ff9b00;line-height:37px;color:white;font-size:17px;text-shadow:.1em .1em #ff9b00;cursor:pointer;border:1px solid #f7a504;font-weight:bold;padding:0 10px;margin:18px auto 30px;min-width:170px;height:39px;text-align:center;text-decoration:none;box-shadow:1px 1px 1px 0 #777}.sq_helpside>div{min-height:241px}#sq_settings #sq_settings_title .sq_checkissues{display:block;float:left;line-height:25px;padding:5px 10px;margin:6px 0 0 10px;height:25px}#sq_settings .sq_option_img{float:left;vertical-align:middle;margin:0 10px 15px 0;width:200px;cursor:pointer}#sq_settings #sq_option_facebook,#sq_settings #sq_option_twitter{position:relative;display:table;clear:both}#sq_settings #sq_option_facebook .sq_option_img{background:transparent url('../img/settings/facebook_tmb.png') no-repeat;height:170px}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}#sq_settings #sq_option_facebook .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .5s ease;-webkit-transition:display .5s ease;content:"";top:-150px;left:-57%;position:absolute;width:520px;height:520px;background:transparent url('../img/settings/facebook.png') no-repeat;z-index:100}#sq_settings #sq_option_facebook .sq_option_content{clear:none;float:left;max-width:57%;margin-top:9%}#sq_settings #sq_option_twitter .sq_option_img{background:transparent url('../img/settings/twitter_tmb.png') no-repeat;height:128px}#sq_settings #sq_option_twitter .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .2s ease;-webkit-transition:display .2s ease;content:"";top:-150px;left:-57%;position:absolute;width:520px;height:334px;background:transparent url('../img/settings/twitter.png') no-repeat;z-index:100}#sq_settings #sq_option_twitter .sq_option_content{clear:none;float:left;max-width:57%}#sq_settings #sq_option_twitter .sq_option_account{float:left;width:57%;margin-top:22px}#sq_settings #sq_sitemap_option{margin:0}#sq_settings #sq_sitemap_buid,#sq_settings #sq_sitemap_include{width:98%;margin:0;padding:10px 0 5px 10px;display:table;border:1px solid #e1e1e1}#sq_settings #sq_sitemap_buid li,#sq_settings #sq_sitemap_include li{float:left;margin-right:12px;width:46%}#sq_settings #sq_sitemap_buid li.sq_selectall,#sq_settings #sq_sitemap_include li.sq_selectall{float:none;font-weight:bold;margin-bottom:15px}#sq_settings #sq_jsonld_option .sq_option_img{background:transparent url('../img/settings/googlejsonld_tmb.png') no-repeat;height:128px}#sq_settings #sq_jsonld_option .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .2s ease;-webkit-transition:display .2s ease;content:"";top:-100px;left:0;border:1px solid #ddd;position:absolute;width:520px;height:276px;background:transparent url('../img/settings/googlejsonld.png') no-repeat;z-index:100}#sq_settings div.sq_select_ogimage_preview{position:relative;display:table}#sq_settings div.sq_fp_ogimage img{max-width:470px;max-height:470px;overflow:hidden;text-align:center}#sq_settings div.sq_fp_ogimage_close{position:absolute;right:-8px;top:-8px;border:1px #ccc;background:#ddd;border-radius:50%;width:20px;line-height:20px;text-align:center;cursor:pointer}#sq_settings .add_facebook_id{position:relative;margin:0 auto;width:50%;text-align:center;display:block;margin-top:-50px}#sq_settings .add_facebook_id input,#sq_settings #sq_fp_imageselect,#sq_settings #sq_json_imageselect{background-color:#589ee4;color:white;font-size:12px;font-weight:bold;text-shadow:1px 1px #333;box-shadow:1px 1px 0 0 white;line-height:20px;border:1px solid #589ee4;padding:3px 6px;margin-left:10px;margin-top:0;cursor:pointer}#sq_settings #sq_fp_imageselect{padding:2px 28px}#sq_settings .facebook_app_close{float:right;margin:0 10px auto auto;padding:0 5px;font-size:15px;cursor:pointer;color:#555}#sq_settings #sq_post_types{width:98%;margin:0;padding:10px 0 5px 10px;display:table;border:1px solid #e1e1e1;background-color:#fbfbde}#sq_settings #sq_post_types li{float:left;margin-right:12px;width:46%}#sq_settings #sq_post_types li.sq_selectall{float:none;font-weight:bold;margin-bottom:15px}
|
1 |
+
#update-nag,.notice-error,.update-nag,.updated,.show-settings,.screen-meta-toggle,.error{display:none !important}#sq_helpsettingsseocontent{float:left;clear:left;width:550px}.sq_checkissues{display:inline-block;background-color:#ff9b00;line-height:37px;color:white;font-size:17px;text-shadow:.1em .1em #ff9b00;cursor:pointer;border:1px solid #f7a504;font-weight:bold;padding:0 10px;margin:18px auto 30px;min-width:170px;height:39px;text-align:center;text-decoration:none;box-shadow:1px 1px 1px 0 #777}.sq_helpside>div{min-height:241px}#sq_settings #sq_settings_title .sq_checkissues{display:block;float:left;line-height:25px;padding:5px 10px;margin:6px 0 0 10px;height:25px}#sq_settings .sq_option_img{float:left;vertical-align:middle;margin:0 10px 15px 0;width:200px;cursor:pointer}#sq_settings #sq_option_facebook,#sq_settings #sq_option_twitter{position:relative;display:table;clear:both}#sq_settings #sq_option_facebook .sq_option_img{background:transparent url('../img/settings/facebook_tmb.png') no-repeat;height:170px}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}#sq_settings #sq_option_facebook .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .5s ease;-webkit-transition:display .5s ease;content:"";top:-150px;left:-57%;position:absolute;width:520px;height:520px;background:transparent url('../img/settings/facebook.png') no-repeat;z-index:100}#sq_settings #sq_option_facebook .sq_option_content{clear:none;float:left;max-width:57%;margin-top:9%}#sq_settings #sq_option_twitter .sq_option_img{background:transparent url('../img/settings/twitter_tmb.png') no-repeat;height:128px}#sq_settings #sq_option_twitter .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .2s ease;-webkit-transition:display .2s ease;content:"";top:-150px;left:-57%;position:absolute;width:520px;height:334px;background:transparent url('../img/settings/twitter.png') no-repeat;z-index:100}#sq_settings #sq_option_twitter .sq_option_content{clear:none;float:left;max-width:57%}#sq_settings #sq_option_twitter .sq_option_account{float:left;width:57%;margin-top:22px}#sq_settings #sq_sitemap_option{margin:0}#sq_settings #sq_sitemap_buid,#sq_settings #sq_sitemap_include{width:98%;margin:0;padding:10px 0 5px 10px;display:table;border:1px solid #e1e1e1}#sq_settings #sq_sitemap_buid li,#sq_settings #sq_sitemap_include li{float:left;margin-right:12px;width:46%}#sq_settings #sq_sitemap_buid li.sq_selectall,#sq_settings #sq_sitemap_include li.sq_selectall{float:none;font-weight:bold;margin-bottom:15px}#sq_settings #sq_jsonld_option .sq_option_img{background:transparent url('../img/settings/googlejsonld_tmb.png') no-repeat;height:128px}#sq_settings #sq_jsonld_option .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .2s ease;-webkit-transition:display .2s ease;content:"";top:-100px;left:0;border:1px solid #ddd;position:absolute;width:520px;height:276px;background:transparent url('../img/settings/googlejsonld.png') no-repeat;z-index:100}#sq_settings div.sq_select_ogimage_preview{position:relative;display:table}#sq_settings div.sq_fp_ogimage img{max-width:470px;max-height:470px;overflow:hidden;text-align:center}#sq_settings div.sq_fp_ogimage_close{position:absolute;right:-8px;top:-8px;border:1px #ccc;background:#ddd;border-radius:50%;width:20px;line-height:20px;text-align:center;cursor:pointer}#sq_settings .add_facebook_id{position:relative;margin:0 auto;width:50%;text-align:center;display:block;margin-top:-50px}#sq_settings .add_facebook_id input,#sq_settings #sq_fp_imageselect,#sq_settings #sq_json_imageselect{background-color:#589ee4;color:white;font-size:12px;font-weight:bold;text-shadow:1px 1px #333;box-shadow:1px 1px 0 0 white;line-height:20px;border:1px solid #589ee4;padding:3px 6px;margin-left:10px;margin-top:0;cursor:pointer}#sq_settings #sq_fp_imageselect{padding:2px 28px}#sq_settings .facebook_app_close{float:right;margin:0 10px auto auto;padding:0 5px;font-size:15px;cursor:pointer;color:#555}#sq_settings #sq_post_types{width:98%;margin:0;padding:10px 0 5px 10px;display:table;border:1px solid #e1e1e1;background-color:#fbfbde}#sq_settings #sq_post_types li{float:left;margin-right:12px;width:46%}#sq_settings #sq_post_types li.sq_selectall{float:none;font-weight:bold;margin-bottom:15px}
|
view/css/bootstrap.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0,0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.sq_success{color:white !important;background-color:#20bc49 !important}.sq_success p{line-height:30px !important;text-align:center;font-size:16px !important;font-weight:bold;position:relative;margin:5px 0 !important;padding:0 !important}.sq_message{line-height:19px;width:calc(100% - 22px) !important;margin:-1px 0;padding:0;font-size:13px;text-align:center;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background-color:#fffbcc;border-color:#e6db55}.sq_error{color:red;font-size:14px;line-height:30px}.sq_notices{font-size:13px;color:#555}.sq_absolute{position:fixed;top:2px;z-index:10000;text-align:center}.sq_savenotice{width:70%}.sq_absolute span{width:100% !important;display:inline-block}.sq_error strong{line-height:25px}#wpcontent{background:#f9f9f9}.sq_notice{background-color:yellow;padding:10px;margin:5px 15px 10px 0;border:0}.sq_logout{display:inline-block;margin-left:10px}@-webkit-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-moz-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-ms-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-o-keyframes play{from{background-position:0 0}to{background-position:-400px}}@keyframes play{from{background-position:0 0}to{background-position:-400px}}.sq_minloading{position:relative;opacity:.5}.sq_minloading:before{position:absolute;right:calc(50% - 10px);top:calc(50% - 8px);display:block;float:right;line-height:30px;content:"";padding:0;margin:0 0 0 5px;height:16px;width:20px;background:transparent url('../img/minloading.png') no-repeat;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-ms-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}.nav-tab{margin-left:0;margin-right:3px;border:1px solid #ddd;border-bottom:0;position:relative;z-index:1}.nav-tab-active{background-color:#f5f5f5}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{position:static;display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}#src_settings{margin:0 10px 0 0;padding:0}#src_settings>div{background-color:#f5f5f5;border:1px solid #ddd;margin-top:-1px}#src_settings .tablenav .actions{padding:0}#sq_settings .form-control,#src_settings .form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;font-weight:bold;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}#sq_settings .form-control:focus,#src_settings .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}#sq_settings .form-control::-moz-placeholder,#src_settings .form-control::-moz-placeholder{color:#999;opacity:1}#sq_settings .form-control:-ms-input-placeholder,#src_settings .form-control:-ms-input-placeholder{color:#999}#sq_settings .form-control::-webkit-input-placeholder,#src_settings .form-control::-webkit-input-placeholder{color:#999}#src_settings .form-control[disabled],#src_settings .form-control[readonly],fieldset[disabled] #src_settings .form-control{background-color:#eee;opacity:1}#src_settings .form-control[disabled],fieldset[disabled] #src_settings .form-control{cursor:not-allowed}textarea#src_settings .form-control{height:auto}textarea#src_settings .form-control{width:100%}input[type="search"]{-webkit-appearance:none;padding:5px;min-width:300px}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"]#src_settings .form-control,input[type="time"]#src_settings .form-control,input[type="datetime-local"]#src_settings .form-control,input[type="month"]#src_settings .form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}#src_settings .form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}#src_settings .form-control-static.input-lg,#src_settings .form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm #src_settings .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select#src_settings .form-control{height:30px;line-height:30px}.form-group-sm textarea#src_settings .form-control,.form-group-sm select[multiple]#src_settings .form-control{height:auto}.form-group-sm #src_settings .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg #src_settings .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select#src_settings .form-control{height:46px;line-height:46px}.form-group-lg textarea#src_settings .form-control,.form-group-lg select[multiple]#src_settings .form-control{height:auto}.form-group-lg #src_settings .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback #src_settings .form-control{padding-right:42.5px}#src_settings .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+#src_settings .form-control-feedback,.input-group-lg+#src_settings .form-control-feedback,.form-group-lg #src_settings .form-control+#src_settings .form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+#src_settings .form-control-feedback,.input-group-sm+#src_settings .form-control-feedback,.form-group-sm #src_settings .form-control+#src_settings .form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success #src_settings .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success #src_settings .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success #src_settings .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning #src_settings .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning #src_settings .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning #src_settings .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error #src_settings .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error #src_settings .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error #src_settings .form-control-feedback{color:#a94442}.has-feedback label ~ #src_settings .form-control-feedback{top:25px}.has-feedback label.sr-only ~ #src_settings .form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline #src_settings .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline #src_settings .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group #src_settings .form-control{width:auto}.form-inline .input-group>#src_settings .form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback #src_settings .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback #src_settings .form-control-feedback{right:15px}@media(min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.333333px;font-size:18px}}@media(min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#3971aa;border-color:#3971aa}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:normal;color:#337ab7;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group #src_settings .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>#src_settings .form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>#src_settings .form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>#src_settings .form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>#src_settings .form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>#src_settings .form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>#src_settings .form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>#src_settings .form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>#src_settings .form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group #src_settings .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group #src_settings .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group #src_settings .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group #src_settings .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media(min-width:768px){.navbar{border-radius:4px}}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media(max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media(min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form #src_settings .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form #src_settings .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group #src_settings .form-control{width:auto}.navbar-form .input-group>#src_settings .form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback #src_settings .form-control-feedback{top:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media(min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right ~ .navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:3;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-right:15px;padding-left:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:transparent;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.42857143px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media(min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:normal;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip-inner{white-space:pre;max-width:none;padding:10px}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:normal;line-height:1.42857143;text-align:left;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{display:table;content:" "}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media(max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media(max-width:767px){.visible-xs-block{display:block !important}}@media(max-width:767px){.visible-xs-inline{display:inline !important}}@media(max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media(min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media(min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media(min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media(min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media(min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media(min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media(min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media(min-width:1200px){.visible-lg-block{display:block !important}}@media(min-width:1200px){.visible-lg-inline{display:inline !important}}@media(min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media(max-width:767px){.hidden-xs{display:none !important}}@media(min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media(min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media(min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}*:hover,*:active,*:focus{outline:none !important}p{display:block;font-size:13px;font-weight:normal;letter-spacing:normal;line-height:22px;margin:0 0 10px 0;font-style:normal;white-space:normal}h1,h2,h3,h4,h5,h6{font-weight:300}h1{font-size:30px}h2{font-size:24px}h3{font-size:16px}h4{font-size:14px}h5{font-size:12px}h6{font-size:10px}h3,h4,h5{font-weight:600}.f-thin{font-weight:300}.f-normal{font-weight:normal}.f-bold{font-weight:600}.f-s-10{font-size:10px}.f-s-11{font-size:11px}.f-s-12{font-size:12px}.f-s-13{font-size:13px}.f-s-14{font-size:14px}.f-s-15{font-size:15px}.f-s-16{font-size:16px}.f-s-17{font-size:17px}.f-s-18{font-size:18px}.f-s-20{font-size:20px}.f-s-22{font-size:22px}.f-s-24{font-size:24px}.f-s-26{font-size:26px}.f-s-28{font-size:28px}.f-s-30{font-size:30px}.f-s-32{font-size:32px}.text-xs{font-size:10px}.text-sm{font-size:12px}.text-md{font-size:16px}.text-lg{font-size:32px}.text-xl{font-size:52px}.text-xxl{font-size:80px}.f-white{color:#fff}.f-gray{color:#ccc}.f-gray-dark{color:#a2a2a2}.f-black{color:#333}.f-green{color:green}.f-blue{color:#127acb}.f-lblue{color:#12afcb}.f-purple{color:#7a6fbe}.f-red{color:#f25656}.f-yellow{color:#f6d433}.f-orange{color:#e79b2f}.text-default{color:#ccc}.text-primary{color:#7a6fbe}.text-success{color:green}.text-info{color:#12afcb}.text-warning{color:#f6d433}.text-danger{color:#f25656}.icon-xs{font-size:12px}.icon-sm{font-size:14px}.icon-md{font-size:16px}.icon-lg{font-size:18px}.icon-state-default{color:#ccc}.icon-state-primary{color:#7a6fbe}.icon-state-success{color:green}.icon-state-info{color:#12afcb}.icon-state-warning{color:#f6d433}.icon-state-danger{color:#f25656}.alert{border-radius:0;padding-top:10px;padding-bottom:10px;border:0}.alert-success{background:#e5f3df}.alert-info{background:#d3e6f0}.alert-warning{background:#f6f2dd}.alert-danger{background:#f1d9d9}.badge{-webkit-border-radius:12px !important;-moz-border-radius:12px !important;border-radius:12px !important;border-radius:0;font-weight:300;font-size:11px !important;text-align:center;vertical-align:middle;line-height:11px !important;height:18px;padding:3px 6px 3px 6px;text-shadow:none !important}.badge.badge-roundless{-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.badge.badge-default{background:#f1f1f1;color:#aaa}.badge.badge-primary{background:#7a6fbe;color:#FFF}.badge.badge-info{background:#12afcb;color:#FFF}.badge.badge-success{background:green;color:#FFF}.badge.badge-danger{background:#f25656;color:#FFF}.badge.badge-warning{background:#f6d433;color:#FFF}.switch-sm .switchery{height:15px;width:25px}.switch-sm .switchery>small{height:15px;width:15px}.switch-md .switchery{height:20px;width:35px}.switch-md .switchery>small{height:20px;width:20px}.switch-lg .switchery{height:25px;width:40px}.switch-lg .switchery>small{height:25px;width:25px}.no-s{margin:0 !important;padding:0 !important}.no-m{margin:0}.no-p{padding:0}.m{margin:15px}.m-t-xxs{margin-top:5px}.m-r-xxs{margin-right:5px}.m-b-xxs{margin-bottom:5px}.m-l-xxs{margin-left:5px}.m-t-xs{margin-top:10px}.m-r-xs{margin-right:10px}.m-b-xs{margin-bottom:10px}.m-l-xs{margin-left:10px}.m-t-sm{margin-top:15px}.m-r-sm{margin-right:15px}.m-b-sm{margin-bottom:15px}.m-l-sm{margin-left:15px}.m-t-md{margin-top:20px}.m-r-md{margin-right:20px}.m-b-md{margin-bottom:20px}.m-l-md{margin-left:20px}.m-t-lg{margin-top:25px}.m-r-lg{margin-right:25px}.m-b-lg{margin-bottom:25px}.m-l-lg{margin-left:25px}.m-t-xxl{margin-top:30px}.m-r-xxl{margin-right:30px}.m-b-xxl{margin-bottom:30px}.m-l-xxl{margin-left:30px}.m-t-n-xxs{margin-top:-5px}.m-r-n-xxs{margin-right:-5px}.m-b-n-xxs{margin-bottom:-5px}.m-l-n-xxs{margin-left:-5px}.m-t-n-xs{margin-top:-10px}.m-r-n-xs{margin-right:-10px}.m-b-n-xs{margin-bottom:-10px}.m-l-n-xs{margin-left:-10px}.m-t-n-sm{margin-top:-15px}.m-r-n-sm{margin-right:-15px}.m-b-n-sm{margin-bottom:-15px}.m-l-n-sm{margin-left:-15px}.m-t-n-md{margin-top:-20px}.m-r-n-md{margin-right:-20px}.m-b-n-md{margin-bottom:-20px}.m-l-n-md{margin-left:-20px}.m-t-n-lg{margin-top:-25px}.m-r-n-lg{margin-right:-25px}.m-b-n-lg{margin-bottom:-25px}.m-l-n-lg{margin-left:-25px}.m-t-n-xxl{margin-top:-30px}.m-r-n-xxl{margin-right:-30px}.m-b-n-xxl{margin-bottom:-30px}.m-l-n-xxl{margin-left:-30px}.p{padding:15px}.p-h-xxs{padding-left:5px;padding-right:5px}.p-h-xs{padding-left:10px;padding-right:10px}.p-h-sm{padding-left:15px;padding-right:15px}.no-p-h{padding-left:0;padding-right:0}.no-p-v{padding-top:0;padding-bottom:0}.p-h-md{padding-left:20px;padding-right:20px}.p-h-lg{padding-left:25px;padding-right:25px}.p-h-xxl{padding-left:30px;padding-right:30px}.p-v-xxs{padding-top:5px;padding-bottom:5px}.p-v-xs{padding-top:10px;padding-bottom:10px}.p-v-sm{padding-top:15px;padding-bottom:15px}.p-v-md{padding-top:20px;padding-bottom:20px}.p-v-lg{padding-top:25px;padding-bottom:25px}.p-v-xxl{padding-top:30px;padding-bottom:30px}.no-b{border:0 !important}.b{border:1px solid #f1f1f1}.b-t{border-top:1px solid #f1f1f1}.b-r{border-right:1px solid #f1f1f1}.b-b{border-bottom:1px solid #f1f1f1}.b-l{border-left:1px solid #f1f1f1}.b-default{border-color:#f1f1f1}.b-primary{border-color:#7a6fbe}.b-info{border-color:#12afcb}.b-success{border-color:green}.b-warning{border-color:#f6d433}.b-danger{border-color:#f25656}.b-2{border-size:2px}.b-3{border-size:3px}.b-4{border-size:4px}.b-n-t{border-top:0}.b-n-r{border-right:0}.b-n-b{border-bottom:0}.b-n-l{border-left:0}.no-r{border-radius:0 !important}.r{border-radius:2px}.r-t-l{border-top-left-radius:2px}.r-t-r{border-top-right-radius:2px}.r-b-l{border-bottom-left-radius:2px}.r-b-r{border-bottom-right-radius:2px}.no-r-t-l{border-top-left-radius:0 !important}.no-r-t-r{border-top-right-radius:0 !important}.no-r-b-l{border-bottom-left-radius:0 !important}.no-r-b-r{border-bottom-right-radius:0 !important}.bg-n{background:transparent !important}.bg-primary{background-color:#7a6fbe;color:#fff}.bg-primary.dark{background-color:#6e63b4;color:#fff}.bg-primary.light{background-color:#877cc7;color:#fff}.bg-success{background-color:green;color:#fff}.bg-success.dark{background-color:#1da890;color:#fff}.bg-success.light{background-color:#32c6ad;color:#fff}.bg-info{background-color:#12afcb;color:#fff}.bg-info.dark{background-color:#0ba0bb;color:#fff}.bg-info.light{background-color:#20beda;color:#fff}.bg-warning{background-color:#f6d433;color:#fff}.bg-warning.dark{background-color:#f1ca11;color:#fff}.bg-warning.light{background-color:#fada44;color:#fff}.bg-danger{background-color:#f25656;color:#fff}.bg-danger.dark{background-color:#e54f4f;color:#fff}.bg-danger.light{background-color:#f66d6d;color:#fff}.bg-dark{background-color:#333;color:#fff}.bg-dark.dark{background-color:#2b2b2b;color:#fff}.bg-dark.light{background-color:#3b3b3b;color:#fff}.bg-light{background-color:#f1f1f1}.bg-light.dark{background-color:#e5e5e5}.bg-light.light{background-color:#f9f9f9}.bg-gray{background-color:#ccc}.bg-gray.dark{background-color:#b9b9b9}.bg-gray.light{background-color:#d7d7d7}.btn{font-size:13px;border:1px solid transparent;border-radius:0;outline:none !important}.btn-addon i{position:relative;float:left;width:35px;height:35px;margin:-7px -13px;margin-right:12px;line-height:34px;text-align:center;border-top-left-radius:2px;border-bottom-left-radius:2px;background-color:rgba(0,0,0,0.1)}.btn-rounded.btn-addon i{margin:-7px -16px;margin-right:15px;border-radius:50px}.btn-rounded.btn-addon.btn-sm i{margin:-7px -16px;margin-right:10px;border-radius:50px}.btn-lg{line-height:inherit}.btn-lg.btn-addon i{width:45px;height:45px;margin:-11px -17px;margin-right:16px;line-height:45px}.btn-sm.btn-addon i{width:30px;height:30px;margin:-6px -11px;margin-right:10px;line-height:30px}.btn-xs.btn-addon i{width:22px;height:22px;margin:-2px -6px;margin-right:5px;line-height:22px;font-size:10px}.btn-rounded{padding-left:15px;padding-right:15px;border-radius:50px}.btn-group.open .dropdown-toggle{box-shadow:none}.btn-default{background-color:#fff;color:#333;border:1px solid #e5e5e5}.btn-default:focus,.btn-default.focus{color:#333;background-color:#f1f1f1;border-color:#e5e5e5}.btn-default:hover{color:#333;background-color:#f1f1f1;border-color:#e5e5e5}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#f1f1f1;border-color:#e5e5e5}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#f1f1f1;border-color:#e5e5e5}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#7a6fbe;border-color:transparent}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#6a5fac;border-color:transparent}.btn-primary:hover{color:#fff;background-color:#6a5fac;border-color:transparent}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#6a5fac;border-color:transparent}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#6a5fac;border-color:transparent}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#6a5fac;border-color:transparent}.btn-primary .badge{color:#6a5fac;background-color:#fff}.btn-success{color:#fff;background-color:#589ee4;border-color:transparent}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#589ee4;border-color:transparent}.btn-success:hover{color:#fff;background-color:#458ae4;border-color:transparent}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#3971aa;border-color:transparent}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#3971aa;border-color:transparent}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:green;border-color:transparent}.btn-success .badge{color:green;background-color:#fff}.btn-info{color:#fff;background-color:#12afcb;border-color:transparent}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#08a7c3;border-color:transparent}.btn-info:hover{color:#fff;background-color:#08a7c3;border-color:transparent}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#08a7c3;border-color:transparent}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#08a7c3;border-color:transparent}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#08a7c3;border-color:transparent}.btn-info .badge{color:#12afcb;background-color:#fff}.btn-warning{color:#fff;background-color:#f2ca4c;border-color:transparent}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#e8bf40;border-color:transparent}.btn-warning:hover{color:#fff;background-color:#e8bf40;border-color:transparent}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#e8bf40;border-color:transparent}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#e8bf40;border-color:transparent}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#e8bf40;border-color:transparent}.btn-warning .badge{color:#f2ca4c;background-color:#fff}.btn-danger{color:#fff;background-color:#f25656;border-color:transparent}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#e14444;border-color:transparent}.btn-danger:hover{color:#fff;background-color:#e14444;border-color:transparent}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#e14444;border-color:transparent}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#e14444;border-color:transparent}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#e14444;border-color:transparent}.btn-danger .badge{color:#f25656;background-color:#fff}.btn-facebook{background:#627aac;color:#fff}.btn-facebook:hover,.btn-facebook:focus,.btn-facebook:active{background:#3b5998;color:#fff}.btn-twitter{background:#33bbf3;color:#fff}.btn-twitter:hover,.btn-twitter:focus,.btn-twitter:active{background:#00abf0;color:#fff}.btn-google{background:#e0745b;color:#fff}.btn-google:hover,.btn-google:focus,.btn-google:active{background:#d95232;color:#fff}.btn-youtube{background:#d6464b;color:#fff}.btn-youtube:hover,.btn-youtube:focus,.btn-youtube:active{background:#cc181e;color:#fff}.btn-vimeo{background:#69c8ff;color:#fff}.btn-vimeo:hover,.btn-vimeo:focus,.btn-vimeo:active{background:#4bf;color:#fff}.btn-dribbble{background:#e094b7;color:#fff}.btn-dribbble:hover,.btn-dribbble:focus,.btn-dribbble:active{background:#d97aa5;color:#fff}.btn-github{background:#848484;color:#fff}.btn-github:hover,.btn-github:focus,.btn-github:active{background:#666;color:#fff}.btn-instagram{background:#658eaf;color:#fff}.btn-instagram:hover,.btn-instagram:focus,.btn-instagram:active{background:#3f729b;color:#fff}.btn-pinterest{background:#be464b;color:#fff}.btn-pinterest:hover,.btn-pinterest:focus,.btn-pinterest:active{background:#ae181f;color:#fff}.btn-vk{background:#7d9bbb;color:#fff}.btn-vk:hover,.btn-vk:focus,.btn-vk:active{background:#5d83aa;color:#fff}.btn-rss{background:#f19958;color:#fff}.btn-rss:hover,.btn-rss:focus,.btn-rss:active{background:#ee802f;color:#fff}.btn-flickr{background:#3395c4;color:#fff}.btn-flickr:hover,.btn-flickr:focus,.btn-flickr:active{background:#007bb6;color:#fff}.bs-n{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.bs-dark{-webkit-box-shadow:0 0 3px rgba(0,0,0,.6);-moz-box-shadow:0 0 3px rgba(0,0,0,.6);box-shadow:0 0 3px rgba(0,0,0,.6)}.bs-light{-webkit-box-shadow:0 0 3px rgba(0,0,0,.3);-moz-box-shadow:0 0 3px rgba(0,0,0,.3);box-shadow:0 0 3px rgba(0,0,0,.3)}.bs-t{-webkit-box-shadow:0 -1px 1px rgba(0,0,0,.05);-moz-box-shadow:0 -1px 1px rgba(0,0,0,.05);box-shadow:0 -1px 1px rgba(0,0,0,.05)}.bs-r{-webkit-box-shadow:1px 0 1px rgba(0,0,0,.05);-moz-box-shadow:1px 0 1px rgba(0,0,0,.05);box-shadow:1px 0 1px rgba(0,0,0,.05)}.bs-b{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.bs-l{-webkit-box-shadow:-1px 0 1px rgba(0,0,0,.05);-moz-box-shadow:-1px 0 1px rgba(0,0,0,.05);box-shadow:-1px 0 1px rgba(0,0,0,.05)}.full-height{height:100% !important}.full-width{width:100% !important}.w-xxs{width:50px}.w-xs{width:90px}.w-sm{width:140px}.w{width:200px}.w-md{width:240px}.w-lg{width:280px}.w-xl{width:330px}.w-xxl{width:370px}.w-auto{width:auto}.h-auto{height:auto}.tooltip-inner{border-radius:0}.panel{-webkit-box-shadow:0 5px 5px -5px rgba(0,0,0,0.1);-moz-box-shadow:0 5px 5px -5px rgba(0,0,0,0.1);box-shadow:0 5px 5px -5px rgba(0,0,0,0.1);border:0 !important;margin-bottom:25px;border-radius:0}@media(min-width:768px){.panel>.row>div:first-child{padding-left:15px;padding-right:0}.panel>.row>div:last-child{padding-left:0;padding-right:15px}}.panel .panel-heading{padding:20px 20px 20px 20px;overflow:hidden;border-top-left-radius:0;border-top-right-radius:0;border:0 !important;font-size:14px;font-weight:600}.panel .panel-heading .panel-title{font-size:14px;float:left;margin:0;padding:0;font-weight:600}.panel .panel-heading .panel-title small{font-size:80%}.panel .panel-heading .panel-control{float:right;height:auto}.panel .panel-heading .panel-control a{text-decoration:none;color:#ccc;margin-left:5px;font-size:14px;float:left}.panel .panel-heading .panel-control a:hover{color:#a2a2a2}.panel .panel-body{position:relative;padding:10px 5px;border-bottom-left-radius:0;border-bottom-right-radius:0}.info-box.panel .panel-body{padding:20px;box-shadow:1px 1px 3px 0 #ddd}.panel-default .panel-heading{background:#f1f1f1;border-color:#e7e7e7}.panel-default .panel-heading .panel-control a{color:#bbb}.panel-default .panel-heading .panel-control a:hover{color:#a2a2a2}.panel-primary .panel-heading{background:#7a6fbe;color:#fff}.panel-primary .panel-heading .panel-control a{color:#fff}.panel-primary .panel-heading .panel-control a:hover{color:#f1f1f1}.panel-success .panel-heading{background:green;color:#fff}.panel-success .panel-heading .panel-control a{color:#fff}.panel-success .panel-heading .panel-control a:hover{color:#f1f1f1}.panel-info .panel-heading{background:#12afcb;color:#fff}.panel-info .panel-heading .panel-control a{color:#fff}.panel-info .panel-heading .panel-control a:hover{color:#f1f1f1}.panel-warning .panel-heading{background:#f6d433;color:#fff}.panel-warning .panel-heading .panel-control a{color:#fff}.panel-warning .panel-heading .panel-control a:hover{color:#f1f1f1}.panel-danger .panel-heading{background:#f25656;color:#fff}.panel-danger .panel-heading .panel-control a{color:#fff}.panel-danger .panel-heading .panel-control a:hover{color:#f1f1f1}.panel-transparent{background:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.panel-transparent .panel-heading .panel-control a{color:#ccc}.panel-transparent .panel-heading .panel-control a:hover{color:#a2a2a2}.panel-white{background:#fff}.panel-white .panel-heading .panel-control a{color:#ccc}.panel-white .panel-heading .panel-control a:hover{color:#a2a2a2}.panel-gray{background:#f9f9f9;border:1px solid #ddd !important}.panel-gray .panel-heading .panel-control a{color:#ccc}.panel-gray .panel-heading .panel-control a:hover{color:#a2a2a2}.panel-purple{background:#7a6fbe}.panel-purple .panel-heading{color:#fff}.panel-purple .panel-body{color:#fff}.panel-purple .panel-heading .panel-control a{color:#fff}.panel-purple .panel-heading .panel-control a:hover{color:#f1f1f1}.panel-green{background:green}.panel-green .panel-heading{color:#fff}.panel-green .panel-body{color:#fff}.panel-green .panel-heading .panel-control a{color:#fff}.panel-green .panel-heading .panel-control a:hover{color:#f1f1f1}.panel-blue{background:#12afcb}.panel-blue .panel-heading{color:#fff}.panel-blue .panel-body{color:#fff}.panel-blue .panel-heading .panel-control a{color:#fff}.panel-blue .panel-heading .panel-control a:hover{color:#f1f1f1}.panel-yellow{background:#f6d433}.panel-yellow .panel-heading{color:#fff}.panel-yellow .panel-body{color:#fff}.panel-yellow .panel-heading .panel-control a{color:#fff}.panel-yellow .panel-heading .panel-control a:hover{color:#f1f1f1}.panel-red{background:#f25656}.panel-red .panel-heading{color:#fff}.panel-red .panel-body{color:#fff}.panel-red .panel-heading .panel-control a{color:#fff}.panel-red .panel-heading .panel-control a:hover{color:#f1f1f1}.panel-placeholder{border:2px dashed #ddd;margin-bottom:20px}.well{border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background-color:#f6f6f6;border:0}.modal{z-index:9999}.modal-content{-webkit-box-shadow:0 5px 5px -5px rgba(0,0,0,0.1);-moz-box-shadow:0 5px 5px -5px rgba(0,0,0,0.1);box-shadow:0 5px 5px -5px rgba(0,0,0,0.1);border:0;border-radius:0}.modal-content>.close{padding:10px}.modal-header{padding:20px 20px 20px 20px;overflow:hidden;border-top-left-radius:0;border-top-right-radius:0;border:0 !important;height:55px;font-size:14px;font-weight:600}.modal-content .modal-image{float:left;padding:20px 10px}.modal-body{position:relative;padding:20px;border-bottom-left-radius:0;border-bottom-right-radius:0}.modal_float_left{float:left;max-width:65%}.modal-body .modal-title{margin:0 0 20px 0;line-height:25px;font-size:26px}.modal-body .modal-price{font-size:15px;font-weight:bold;margin-top:15px}.modal-footer{position:relative;padding:20px;border-bottom-left-radius:0;border-bottom-right-radius:0;border:0}.modal-header+.modal-body{padding:0 20px 20px 20px;min-height:140px}.modal-body+.modal-footer{padding:0 20px 20px 20px}.modal-open{overflow-y:auto !important}.modal-open{padding:0 !important}.modal-backdrop{z-index:999}.pagination>li>a{color:#5b5b5b}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{background:green;border-color:green}.progress{border-radius:2px}.progress-squared{border-radius:0}.progress-xs{height:5px}.progress-sm{height:10px}.progress-md{height:15px}.progress-lg{height:25px}.progress-bar{background-color:#7a6fbe}.progress-bar-success{background-color:green}.progress-bar-info{background-color:#12afcb}.progress-bar-warning{background-color:#f6d433}.progress-bar-danger{background-color:#f25656}.tab-content{padding:15px;background:#fff}.nav-tabs>li>a{border-radius:0 !important;color:#777;border-bottom:1px solid #ddd}.nav-tabs>li>a:hover{background:#f1f1f1}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border-bottom-color:#fff}.nav-pills>li>a{color:#777;border-radius:0 !important}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#7a6fbe}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #ddd}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-top-color:#ddd;border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:#fff #ddd #ddd #ddd}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;border-bottom:0}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;border-right-color:#fff;border-bottom:1px solid #ddd}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;border-left-color:#fff;border-bottom:1px solid #ddd}.panel-group .panel-heading .panel-title>a{font-size:14px}.panel-group .panel-heading{font-size:14px;height:auto !important}.panel-group .panel-heading .panel-title>a{text-decoration:none}.panel-group .panel-heading{border-bottom:0 !important}.panel>.panel-heading+.panel-collapse>.panel-body{border-top-color:transparent}.panel-group .panel-heading .panel-title{position:relative;width:100%}.jstree-default .jstree-clicked{background:#f1f1f1;border-radius:0;box-shadow:inset 0 0 1px #999}.jstree-default li a:hover{background:#f1f1f1;border-radius:0;box-shadow:inset 0 0 1px #999}.label.label-default{background:#fff;border:1px solid #e5e5e5}.label.label-success{background:green}.label.label-primary{background:#1ab394}.label.label-info{background:#12afcb}.label.label-danger{background:#f25656}.label.label-warning{background:#f6d433}label{font-size:13px;font-weight:normal}.controls label{display:block}.form-control{background:#fff;border-radius:0;border:1px solid #dce1e4;box-shadow:none !important;font-size:13px;padding:6px 10px !important;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}input[disabled]{background:#f7f7f7;border-color:#d2d7db}.form-control:focus{border:1px solid #bdc5c9;background:#fff}.help-block{margin-bottom:5px}.form-group.has-success .form-control,.form-group.has-warning .form-control,.form-group.has-error .form-control{box-shadow:none}.form-group.has-success .form-control:focus{border:1px solid green;background:#fff}.form-group.has-warning .form-control:focus{border:1px solid #f6d433;background:#fff}.form-group.has-error .form-control:focus{border:1px solid #f25656;background:#fff}.form-group.has-success label{color:green}.form-group.has-warning label{color:#f6d433}.form-group.has-error label{color:#f25656}label.error{color:#a94442;font-weight:bold;margin-top:5px;float:left;font-size:12px}input.form-control.input-rounded{border-radius:30px}.input-group .btn{padding:7px 12px}ol.linenums{margin:0}.select2-selection{background:#fff !important;border-radius:0 !important;border:1px solid #dce1e4 !important;box-shadow:none !important;font-size:13px !important;padding:6px 10px !important;height:34px !important;-webkit-transition:all .2s ease-in-out !important;-moz-transition:all .2s ease-in-out !important;-o-transition:all .2s ease-in-out !important;transition:all .2s ease-in-out !important}.select2-dropdown{background:#fff;border-radius:0;border:1px solid #dce1e4;border-top:0;box-shadow:none !important;font-size:13px;padding:6px 10px !important;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;z-index:9999}.select2-dropdown.select2-dropdown--above{border:1px solid #dce1e4;border-bottom:0}.select2-selection--multiple .select2-selection__choice{background:#f1f1f1 !important;border-radius:0 !important;border:1px solid #ccc !important}.select2-container--default .select2-selection--single .select2-selection__rendered,.select2-container--default .select2-selection--multiple .select2-selection__rendered{line-height:inherit !important;padding:0 !important}.select2-container--default .select2-selection--multiple .select2-selection__choice,.select2-container .select2-search--inline .select2-search__field{margin-top:0 !important}.popover{border:1px solid #ebebeb;border-radius:0;box-shadow:none;padding:0}.popover-title{border-radius:0}.popover.top>.arrow{border-top-color:#ebebeb}.popover.left>.arrow{border-left-color:#ebebeb}.popover.right>.arrow{border-right-color:#ebebeb}.popover.bottom>.arrow{border-bottom-color:#ebebeb}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{border-radius:0 !important}.bootstrap-tagsinput{background:#fff;border-radius:0;border:1px solid #dce1e4;box-shadow:none !important;font-size:13px;padding:6px 10px !important;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:100%;margin:0}.bootstrap-tagsinput .tag{line-height:inherit}.input-group-addon{border-radius:0 !important;background:#f1f1f1;border-color:#dce1e4}.bootstrap-timepicker-widget input{background:#fff;border-radius:0;border:1px solid #dce1e4;box-shadow:none !important;font-size:13px;padding:6px 10px !important;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:45px !important}.bootstrap-timepicker-widget input:focus{border:1px solid #bdc5c9;background:#fff}.bootstrap-timepicker-widget .icon-chevron-up:before{font-family:FontAwesome;content:"\f106";font-style:normal}.bootstrap-timepicker-widget .icon-chevron-down:before{font-family:FontAwesome;content:"\f107";font-style:normal}.bootstrap-timepicker-widget a{text-decoration:none}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th,.table td{padding:20px 15px 10px 15px !important;line-height:30px}.dataTables_wrapper .dataTables_filter input,.dataTables_wrapper .dataTables_length select{background:#fff;border-radius:0;border:1px solid #dce1e4;box-shadow:none !important;font-size:13px;padding:6px 10px !important;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.dataTables_wrapper .dataTables_filter input:focus{border:1px solid #bdc5c9;background:#fff;outline:0}.dataTables_wrapper .dataTables_length select:focus{outline:0}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#5f5f5f !important;border:1px solid #ebebeb;background:#f1f1f1 !important}.dataTables_wrapper .dataTables_paginate .paginate_button:hover,.dataTables_wrapper .dataTables_paginate .paginate_button:active,.dataTables_wrapper .dataTables_paginate .paginate_button:focus{color:#5f5f5f !important;border:1px solid transparent;background:#f7f7f7 !important;box-shadow:none}tr.group,tr.group:hover{background-color:#ddd !important}.note-editor{border:1px solid #dce1e4;border-radius:0}.note-dialog .note-modal-form{margin:0 15px 0 15px}.note-editor .note-toolbar{border-bottom:0;background:#fff;padding:10px}.note-popover .popover .popover-content>.btn-group,.note-toolbar>.btn-group{margin-top:0}.note-editor .note-editable{padding:15px;padding-top:10px;overflow:auto;outline:0}.note-editor .note-statusbar{background:transparent}.note-editor .note-statusbar .note-resizebar{border:0}.center{margin:0 auto;float:none !important;display:block}.display-block{display:block}.display-inline{display:inline-block}.box-middle{position:absolute;height:400px;width:400px;top:50%;left:50%;margin-left:-200px !important;margin-top:-200px !important}.datepicker{padding:10px !important;border:1px solid #e0e0e0 !important;border-radius:0 !important;-webkit-box-shadow:0 5px 5px -5px rgba(0,0,0,0.1) !important;-moz-box-shadow:0 5px 5px -5px rgba(0,0,0,0.1) !important;box-shadow:0 5px 5px -5px rgba(0,0,0,0.1) !important}.datepicker table tr td,.datepicker table tr th,.datepicker table tr td span{border-radius:0 !important}.datepicker table tr td.active:hover,.datepicker table tr td.active:hover:hover,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active:focus,.datepicker table tr td.active:hover:focus,.datepicker table tr td.active.disabled:focus,.datepicker table tr td.active.disabled:hover:focus,.datepicker table tr td.active:active,.datepicker table tr td.active:hover:active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:hover.active,.open .dropdown-toggle.datepicker table tr td.active,.open .dropdown-toggle.datepicker table tr td.active:hover,.open .dropdown-toggle.datepicker table tr td.active.disabled,.open .dropdown-toggle.datepicker table tr td.active.disabled:hover{color:#fff;background-color:#7a6fbe;border:0}.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active:focus,.datepicker table tr td span.active:hover:focus,.datepicker table tr td span.active.disabled:focus,.datepicker table tr td span.active.disabled:hover:focus,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:hover.active,.open .dropdown-toggle.datepicker table tr td span.active,.open .dropdown-toggle.datepicker table tr td span.active:hover,.open .dropdown-toggle.datepicker table tr td span.active.disabled,.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover{color:#fff;background-color:#7a6fbe;border:0}.colorpicker{padding:10px !important}.dropzone{border:1px solid #f1f1f1;border-radius:0;background:#f9f9f9}.img-preview{height:150px;width:220px;overflow:hidden;text-align:center}.jqstooltip{box-sizing:content-box}#flot1{width:100%;height:250px}#flot2{width:100%;height:250px}#flot3{margin:0 auto;width:250px;height:250px}#flot3 .pie-chart-legend{padding:5px}#flot4{width:100%;height:250px}#flotTip{border-radius:0;background:rgba(51,51,51,0.8);color:#fff;padding:5px;font-size:13px !important}.jqvmap-zoomin,.jqvmap-zoomout{background-color:#7a6fbe;color:#fff;border:1px solid transparent;font-size:13px;border-radius:0;outline:none !important;padding:3px 5px;height:auto;width:auto;margin-left:7px}.jqvmap-zoomin:hover,.jqvmap-zoomin:focus,.jqvmap-zoomin:active,.jqvmap-zoomout:hover,.jqvmap-zoomout:focus,.jqvmap-zoomout:active{background-color:#6a5fac;border:1px solid transparent}.gritter-item{font-size:13px;background:rgba(0,0,0,0.7);background-image:none !important;padding:15px}.gritter-top{background:none !important}.gritter-bottom{background:none !important}.gritter-close{top:15px;left:auto;right:5px}.gritter-image{width:50px;height:50px;border-radius:100%}.gritter-with-image{padding-left:10px}.fc button{height:auto;padding:6px 12px;font-size:13px}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid}.fc-state-default.fc-corner-left{border-top-left-radius:2px;border-bottom-left-radius:2px}.fc-state-default.fc-corner-right{border-top-right-radius:2px;border-bottom-right-radius:2px}.fc-state-default{background-color:#fff;background-image:none;border-color:#e5e5e5;color:#333;text-shadow:none;box-shadow:none;outline:0 !important}.fc-state-hover,.fc-state-down,.fc-state-active,.fc-state-disabled{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.fc-state-down,.fc-state-active{background-color:#f1f1f1;border:1px solid #e5e5e5;box-shadow:none !important}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);box-shadow:none}.fc-day-grid-event{padding:5px;background:green;border:0}.list-group-item.active{background:#f1f1f1;border-color:#ddd;color:#333}.list-group-item.active:hover{background:#e7e7e7;border-color:#ddd;color:#333}.navbar{border:0;background:#FFF;padding:0;height:60px;z-index:999;border-radius:0;margin:auto;position:relative;-webkit-box-shadow:0 5px 5px -5px rgba(0,0,0,0.1);-moz-box-shadow:0 5px 5px -5px rgba(0,0,0,0.1);box-shadow:0 5px 5px -5px rgba(0,0,0,0.1)}.page-header-fixed .navbar{position:fixed;right:0;left:0}@media(min-width:768px){.page-content.container .navbar{width:750px}}@media(min-width:992px){.page-content.container .navbar{width:970px}}@media(min-width:1200px){.page-content.container .navbar{width:1170px}}.topmenu-outer{height:60px;background:#fff;margin-left:160px}.small-sidebar .topmenu-outer{margin-left:65px}.pace .pace-progress{background:green}.pace .pace-progress-inner{box-shadow:0 0 10px green,0 0 5px green}.pace .pace-activity{border-top-color:green;border-left-color:green;margin-top:60px}.navbar .logo-box{position:relative;width:160px;height:60px;float:left;display:table}.navbar .logo-box .logo-text{font-size:20px;font-weight:bold;line-height:60px;padding:0 15px 0 15px;vertical-align:middle;display:table-cell;text-align:center}.navbar .logo-box a:hover,.navbar .logo-box a:focus{text-decoration:none}.navbar .logo-box a{margin:0 auto}.small-sidebar .navbar .logo-box{width:65px}.small-sidebar .navbar .logo-box span{width:13px;overflow:hidden;display:block;margin:0 auto}.navbar-nav.navbar-right{margin-right:0}.top-menu .navbar-nav>li{height:49px}.top-menu .navbar-nav>li>a{display:block;padding:20px 18px;color:#5f5f5f;border:0;position:relative;line-height:20px}.top-menu .nav>li>a:hover,.top-menu .nav>li>a:focus,.top-menu .nav>li>a:active,.top-menu .nav .open>a,.top-menu .nav .open>a:hover,.top-menu .nav .open>a:focus{background:transparent}.top-menu .nav .open>a,.top-menu .nav .open>a:hover,.top-menu .nav .open>a:focus{background:transparent;border-color:transparent}.top-menu .navbar-nav>li>a>i{font-size:14px}.top-menu .navbar-nav>li>a>.badge{font-family:"Open Sans",sans-serif;position:absolute;top:12px;right:7px;padding:3px 6px;font-size:11px;text-shadow:0 1px 0 rgba(0,0,0,0.3)}.top-menu .navbar-nav>li>a>.user-name{padding:0 10px 0 0;line-height:20px}.top-menu .navbar-nav>li>a>.user-name{padding:0 10px 0 0;line-height:20px}@media(max-width:991px){.top-menu .navbar-nav>li>a>.user-name{display:none}}.top-menu .navbar-nav>li>a>.user-name>i{margin-left:5px}.avatar{padding:0;margin:-19px 0 -15px 0;position:relative;display:inline-block}.dropdown-menu{position:absolute;top:100%;z-index:1000;display:none;float:left;list-style:none;text-shadow:none;padding:0;margin:10px 0 0 0;background-color:white;border:1px solid #d8dee4;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;-webkit-box-shadow:0 5px 5px -5px rgba(0,0,0,0.1);-moz-box-shadow:0 5px 5px -5px rgba(0,0,0,0.1);box-shadow:0 5px 5px -5px rgba(0,0,0,0.1)}.dropdown-menu li{font-size:13px}.dropdown-menu li a:hover{background:#f7f7f7}.navbar-nav>li>.dropdown-menu{margin-top:25px !important}.dropdown-menu:before{position:absolute;top:-8px;left:9px;right:auto;display:inline-block !important;border-right:8px solid transparent;border-bottom:8px solid #d8dee4;border-left:8px solid transparent;content:''}.dropdown-menu:after{position:absolute;top:-7px;left:10px;right:auto;display:inline-block !important;border-right:7px solid transparent;border-bottom:7px solid #fff;border-left:7px solid transparent;content:''}.dropdown.dropup>.dropdown-menu:after,.dropdown.dropup>.dropdown-menu:before,.btn-group.dropup>.dropdown-menu:after,.btn-group.dropup>.dropdown-menu:before,.dropdown-toggle.dropup>.dropdown-menu:after,.dropdown-toggle.dropup>.dropdown-menu:before{display:none !important}.navbar-left .dropdown-menu:before,.dropdown-menu.dropdown-menu-left:before{left:16px;right:auto}.navbar-left .dropdown-menu:after,.dropdown-menu.dropdown-menu-left:after{left:17px;right:auto}.navbar-right .dropdown-menu:before,.dropdown-menu.dropdown-menu-right:before{right:16px;left:auto}.navbar-right .dropdown-menu:after,.dropdown-menu.dropdown-menu-right:after{right:17px;left:auto}.dropdown-menu.title-caret:after{border-bottom:7px solid #fff}.dropdown-menu>li.active>a:hover,.dropdown-menu>li.active>a:focus,.dropdown-menu>li.active>a:active,.dropdown-menu>li.active>a,.dropdown-menu>li.active>a:hover,.dropdown-menu>li.active>a:focus{background:#f7f7f7;color:#333}.drop-title{display:block;border-bottom:1px solid #f3f3f3;font-size:14px;background:#fff;padding:12px;color:#6a6a6a;margin:0}.dropdown-menu li.drop-all a{padding:10px;color:#707070;background:#FFF;font-size:14px}.dropdown-menu li.drop-all a:hover{background:#f7f7f7}.dropdown-sm{width:190px}.dropdown-md{width:230px}.dropdown-lg{width:280px}.dropdown-menu li a{padding:7px 10px 7px 10px;color:#5f5f5f;font-size:13px}.dropdown-menu li a i{margin-right:10px}.dropdown-menu li.no-link{padding:7px 10px 7px 10px}.dropdown-menu li.li-group{border-bottom:1px solid #f1f1f1;padding:5px 0 5px 0}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:transparent}.navbar .dropdown .dropdown-menu{display:block;visibility:hidden;opacity:0;transition:all 300ms ease;-moz-transition:all 300ms ease;-webkit-transition:all 300ms ease;-o-transition:all 300ms ease;-ms-transition:all 300ms ease;margin-top:40px !important}.navbar .open .dropdown-menu{visibility:visible;opacity:1;margin-top:25px !important}.navbar .dropdown{display:inline-block}.messages{max-height:300px}.messages li a{color:#bababa;font-size:13px;padding-left:15px;text-decoration:none;display:block;padding-top:8px;padding-bottom:8px;position:relative}.messages li a:hover{background:#f7f7f7}.messages li{border-bottom:1px solid #f3f3f3}.messages li a .msg-img{height:100%;display:block;float:left;position:relative}.online{position:absolute;top:1px;right:1px;display:block;width:10px;height:10px;border-radius:50%;border:2px solid #FFF;background:#ccc}.online.on{background:#44aea1}.online.off{background:#f3565d}.messages li a img{width:40px;height:40px}.messages li a .msg-name{display:block;font-size:14px;color:#707070;padding:0 0 0 10px;margin:0;float:left}.messages li a .msg-text{display:block;width:210px;text-overflow:ellipsis;white-space:nowrap;color:#a0a0a0;margin:0;float:left;padding:0 0 0 10px}.messages li a .msg-time{font-size:11px;display:block;width:210px;padding:0 4px 0 8px;margin:0;float:right}.tasks{max-height:300px}.tasks li a{color:#bababa;font-size:13px;padding-left:15px;text-decoration:none;display:block;padding-top:10px;padding-bottom:10px;position:relative}.tasks li{border-bottom:1px solid #f3f3f3}.tasks li a:hover{background:#f7f7f7}.task-icon.badge{height:25px;width:25px;display:block;float:left;position:relative;margin-right:10px;padding-top:6px}.task-icon i{text-align:center;font-size:12px}.tasks li a .task-details{display:block;font-size:13px;color:#868686;padding:3px 0 0 0;margin:0;float:left;width:148px}.tasks li a .badge{margin:0;margin-right:5px;max-width:85px}.page-content{-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,0.3);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,0.3);box-shadow:0 0 10px 0 rgba(0,0,0,0.3);background:#f7f8f8;min-height:100%}.page-content.container{padding-left:0;padding-right:0}.page-sidebar{width:160px;display:block;z-index:998;float:left;height:auto !important;overflow:visible !important}.sidebar .sidebar-title{display:block;margin:0 0 10px 0}.page-sidebar-fixed:not(.page-header-fixed) .logo-box{position:fixed;display:block}.page-sidebar-fixed:not(.page-header-fixed) .topmenu-outer{margin-left:160px}.small-sidebar.page-sidebar-fixed:not(.page-header-fixed) .topmenu-outer{margin-left:65px}.page-header-fixed .page-sidebar{padding-top:60px}.page-sidebar-fixed .sidebar{position:fixed;top:0;bottom:0;padding-top:60px}.page-sidebar-fixed .page-sidebar-inner{height:100%}.page-sidebar .page-sidebar-inner{height:100% !important}.small-sidebar .page-sidebar{width:65px}.small-sidebar .page-sidebar-inner{overflow:visible !important}.sidebar-header{overflow:hidden;clear:both;position:relative;padding:20px}.sidebar-profile-image{display:block}.sidebar-profile{overflow:hidden;position:relative;display:block}.sidebar-profile a{text-decoration:none}.sidebar-profile img{width:60px;display:block;margin:0 auto}.sidebar-profile span{color:#fff;font-weight:600;display:block;padding:8px 0 0 0;text-align:center}.sidebar-profile span small{color:#90999c;padding:5px 0}.profile{line-height:60px;margin-left:5px;font-size:14px}.small-sidebar .sidebar-header,.page-horizontal-bar .sidebar-header{display:none}.horizontal-bar{width:100%;display:block;z-index:9998;float:none;height:auto !important;left:0;right:0;bottom:0;height:74px}@media(min-width:768px){.page-sidebar-fixed.page-horizontal-bar .sidebar{position:fixed;top:0;bottom:auto;padding-top:60px}}.small-sidebar .horizontal-bar .slimScrollDiv{overflow:visible !important}.page-horizontal-bar.page-header-fixed .horizontal-bar{padding-top:60px}.page-horizontal-bar.page-sidebar-fixed .navbar{z-index:9999}@media(min-width:768px){.page-horizontal-bar.page-sidebar-fixed .page-content.container .horizontal-bar{width:750px;margin:0 auto}}@media(min-width:992px){.page-horizontal-bar.page-sidebar-fixed .page-content.container .horizontal-bar{width:970px;margin:0 auto}}@media(min-width:1200px){.page-horizontal-bar.page-sidebar-fixed .page-content.container .horizontal-bar{width:1170px;margin:0 auto}}@media(max-width:1200px){.horizontal-bar .accordion-menu>li>a>p{display:none}.compact-menu .horizontal-bar .accordion-menu>li>a>p{display:none !important}body:not(.small-sidebar) .horizontal-bar .accordion-menu>li>a>.menu-icon{float:none !important;margin:0 !important}.horizontal-bar .accordion-menu ul{top:50px !important}}.horizontal-bar .page-sidebar-inner{overflow:visible !important}.horizontal-bar .accordion-menu{text-align:center;font-size:0;width:100% !important;overflow:visible !important}.horizontal-bar .accordion-menu li{display:inline-block;margin:0 !important;padding:0 !important;position:relative}.small-sidebar.page-horizontal-bar .horizontal-bar .accordion-menu>li>a,.horizontal-bar .accordion-menu>li>a{padding:16px !important}.small-sidebar .horizontal-bar .accordion-menu li a span.menu-icon{font-size:15px}.horizontal-bar .accordion-menu>li>a>p{font-size:13px}.compact-menu .horizontal-bar .accordion-menu li a p{display:inline}.horizontal-bar .accordion-menu .sub-menu li a{font-size:13px;padding:10px;padding-left:15px;padding-right:15px}.page-horizontal-bar.small-sidebar:not(.page-sidebar-fixed) .accordion-menu>li>a{width:auto}.horizontal-bar .accordion-menu>li>a>span.arrow:before{display:none}body:not(.small-sidebar) .horizontal-bar .menu.accordion-menu>li>a>.menu-icon{font-size:14px}.small-sidebar.page-horizontal-bar .menu.accordion-menu>li>a>span.menu-icon{margin:0 !important}.horizontal-bar .accordion-menu>li>ul{left:0 !important;top:74px;width:200px;position:absolute}.horizontal-bar .accordion-menu ul li{display:block;text-align:left}.horizontal-bar .accordion-menu li.menu-title{display:none}.small-sidebar .horizontal-bar .accordion-menu>li>a>p{display:none !important}.small-sidebar .horizontal-bar .accordion-menu>li>ul{top:44px !important}.small-sidebar.page-horizontal-bar.page-sidebar-fixed .page-inner{padding-left:0}.small-sidebar.page-sidebar-fixed.page-header-fixed.page-horizontal-bar .page-inner{padding:110px 0 50px 0}.small-sidebar.page-sidebar-fixed.page-header-fixed .page-inner{padding:60px 0 50px 65px}.small-sidebar.page-sidebar-fixed:not(.page-header-fixed) .page-inner{padding:0 0 50px 65px}.small-sidebar.page-header-fixed.page-horizontal-bar:not(.page-sidebar-fixed) .page-inner{padding:0 0 50px 0}.page-horizontal-bar:not(.page-sidebar-fixed) .checkout{top:0}.page-horizontal-bar.page-sidebar-fixed:not(.compact-menu) .checkout{top:134px}.page-horizontal-bar.page-sidebar-fixed.compact-menu .checkout{top:111px}.search-form{display:block;width:100%;height:60px;z-index:99999;position:fixed;background:#fff;margin-top:-60px;transition:all .3s ease;-moz-transition:all .3s ease;-webkit-transition:all .3s ease;-o-transition:all .3s ease;-ms-transition:all .3s ease}.search-form .input-group{height:60px}.search-form .input-group input{color:#5f5f5f;border:0;box-shadow:none;border-radius:0;background:0;height:60px;line-height:60px;font-size:16px;padding:0 20px !important}.search-form .input-group button,.search-form .input-group button:hover,.search-form .input-group button:focus{background:0;box-shadow:none;border:0;outline:0;color:#5f5f5f;font-size:20px;padding-left:20px;padding-right:20px;line-height:46px}.menu li a .badge{margin-left:10px}.menu.accordion-menu{padding:0;margin:0;width:160px;color:white;position:relative;display:block}.menu.accordion-menu a{display:block;padding:15px;padding-left:18px;padding-right:18px;background:transparent;text-decoration:none;font-size:13px}.menu.accordion-menu>li>a{text-align:center}body:not(.page-horizontal-bar):not(.small-sidebar) .menu.accordion-menu a{text-align:center}.menu.accordion-menu a p{line-height:1.42857143 !important;margin:0}.menu.accordion-menu a span.menu-icon{display:inline-block;font-size:20px;margin-bottom:10px}.menu.accordion-menu li>a>.arrow:before{width:10px;float:right;display:block;margin-top:-20px;font-size:16px;font-family:FontAwesome;height:auto;content:"\f104";font-weight:300}.menu.accordion-menu>li>a>.arrow:before{margin-top:-39px}.menu.accordion-menu li.open>a>.arrow:before{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-o-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.menu.accordion-menu li{list-style-type:none}.menu.accordion-menu li a .badge{float:right;margin-top:1px;margin-right:0;margin-left:0;display:block}.menu.accordion-menu ul{z-index:9999}.menu.accordion-menu ul li a{display:block;padding:10px;background:transparent;text-decoration:none;font-size:13px}.menu.accordion-menu ul li ul{padding:2px 0 2px 0}.compact-menu .menu.accordion-menu .sub-menu li .sub-menu li a,.hover-menu .menu.accordion-menu .sub-menu li .sub-menu li a,.page-horizontal-bar .menu.accordion-menu .sub-menu li .sub-menu li a{padding-left:26px}.compact-menu .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li a,.hover-menu .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li a,.page-horizontal-bar .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li a{padding-left:31px}.compact-menu .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li .sub-menu li a,.hover-menu .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li .sub-menu li a,.page-horizontal-bar .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li .sub-menu li a{padding-left:36px}.menu ul{padding:10px;z-index:99}.compact-menu:not(.small-sidebar) .menu.accordion-menu li a{text-align:left !important}.compact-menu:not(.page-horizontal-bar) .menu.accordion-menu>li>a>p{display:inline !important}.compact-menu .menu.accordion-menu a span.menu-icon{display:inline-block !important;font-size:14px !important;margin-bottom:0 !important;margin-right:10px !important}.compact-menu .menu.accordion-menu li a .arrow:before{margin-top:-2px}.page-horizontal-bar.compact-menu .menu.accordion-menu ul{top:50px}.page-horizontal-bar.compact-menu.small-sidebar .menu.accordion-menu ul{top:46px !important}.hover-menu:not(.page-horizontal-bar) .menu.accordion-menu>li>a>span.arrow{display:none}.hover-menu .menu.accordion-menu>li:hover>ul,.hover-menu .menu.accordion-menu>li.open:hover>ul{display:inline-block !important}.hover-menu .accordion-menu li{position:relative}.hover-menu .accordion-menu>li>ul{position:absolute;left:160px;width:200px}.hover-menu:not(.page-horizontal-bar) .accordion-menu>li>ul{position:absolute;top:0;left:160px;width:200px}.hover-menu .sidebar,.hover-menu .sidebar .page-sidebar-inner,.hover-menu .sidebar .menu,.hover-menu .sidebar .slimScrollDiv{overflow:visible !important}.hover-menu .accordion-menu ul li a{text-align:left !important}.compact-menu .accordion-menu li a p{display:inline}.hover-menu .sidebar .slimScrollBar,.hover-menu .slimScrollBar{display:none !important}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu{width:65px}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .page-sidebar-inner{overflow:hidden !important}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover,.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu{width:160px !important}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu>li>a{padding:15px;text-align:center}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu>li>a{padding:15px;padding-left:18px;padding-right:18px}.compact-menu.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu>li>a{text-align:left}.compact-menu.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu>li>a>.menu-icon{margin-right:10px !important}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu ul li a{text-align:center}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li a .menu-icon{float:none;margin:0 !important;font-size:14px}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li a .menu-icon{font-size:20px}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li a p,.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li a .arrow,.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li.menu-title,.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li a .badge{display:none !important}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li a p{margin:0}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li.open .sub-menu{visibility:hidden;height:0 !important;padding:0}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .sidebar-widget,.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .sidebar-header{display:block !important}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li a p,.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li.menu-title{display:block !important}.compact-menu.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li a p,.compact-menu.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li.menu-title{display:inline !important}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li.open .sub-menu{visibility:visible;height:auto !important;padding:10px}.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li a .arrow{display:block !important;float:right}.small-sidebar:not(.page-sidebar-fixed) .sidebar,.small-sidebar:not(.page-sidebar-fixed) .sidebar>*,.horizontal-bar,.horizontal-bar>*{overflow:visible !important}.small-sidebar:not(.page-sidebar-fixed) .sidebar .slimScrollBar,.horizontal-bar .slimScrollBar{display:none !important}.small-sidebar:not(.page-sidebar-fixed) .menu.accordion-menu{width:auto;oveflow:visible !important}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu,.small-sidebar:not(.page-sidebar-fixed) .accordion-menu li{padding:0;margin:0}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu li{list-style:none;position:relative;width:auto}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu li a{text-decoration:none;display:block}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu>li>a{padding:15px 25px 15px 25px;text-align:center;position:relative;width:265px}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu li a span.menu-icon{font-size:14px;margin:0 50px 0 0 !important;float:left}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu li a p{margin:0;float:left}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu li a .arrow:before{width:10px;float:right;margin-left:15px;margin-top:-2px;display:inline;font-size:16px;font-family:FontAwesome;height:18px;content:"\f104";font-weight:300}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu li:hover>a{z-index:999}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu>li>ul{position:absolute;left:65px;top:48px;width:200px}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu ul li a{display:block;padding:10px !important;padding-left:15px !important;padding-right:15px !important;background:transparent;font-size:13px}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu ul li span.menu-icon{margin-right:15px}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu>li>a>span.arrow{display:none}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu li a p{display:block;text-align:left}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu li.menu-title{display:none}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu>li:hover>ul,.small-sidebar:not(.page-sidebar-fixed) .accordion-menu>li.open:hover>ul{display:inline-block !important}.page-horizontal-bar .accordion-menu>li:hover>ul,.page-horizontal-bar .accordion-menu>li.open:hover>ul{display:inline-block !important}.small-sidebar:not(.page-sidebar-fixed) .accordion-menu>li.open>ul{display:none !important}.page-horizontal-bar .accordion-menu>li.open>ul{display:none !important}.page-inner{padding:0 0 50px 0;background:#f1f4f9;position:relative}.page-header-fixed:not(.page-sidebar-fixed):not(.page-horizontal-bar) .page-inner{padding:60px 0 50px 0}.page-sidebar-fixed.page-header-fixed .page-inner{padding:60px 0 50px 160px}.page-horizontal-bar.page-sidebar-fixed.page-header-fixed .page-inner{padding:134px 0 50px 0}.page-horizontal-bar.page-sidebar-fixed.page-header-fixed.compact-menu .page-inner{padding:111px 0 50px 0}.page-sidebar-fixed:not(.page-header-fixed) .page-inner{padding:0 0 50px 160px}.small-sidebar.page-sidebar-fixed.page-header-fixed .page-inner{padding:60px 0 50px 65px}.small-sidebar.page-sidebar-fixed:not(.page-header-fixed) .page-inner{padding:0 0 50px 65px}.small-sidebar.page-header-fixed:not(.page-sidebar-fixed) .page-inner{padding:60px 0 50px 0}.page-title{padding:20px;background:#e9edf2;border-bottom:1px solid #dee2e8}.page-title h3{font-size:24px;font-weight:300;color:#74767d;padding:0;margin:0 0 4px 0}.page-breadcrumb .breadcrumb{float:left;background:transparent;padding:0;margin-top:30px}.page-breadcrumb ol.breadcrumb{margin:0}.page-breadcrumb ol.breadcrumb li a{font-size:13px;color:#90999c}.page-breadcrumb ol.breadcrumb li.active{font-size:13px;color:#90999c}.page-breadcrumb ul{margin:0}.page-breadcrumb ul li{float:left;display:inline}.page-breadcrumb ul li a{font-size:13px;color:#90999c}#main-wrapper{margin:20px;padding:0}.page-footer{background:#fff;width:100%;display:block;position:absolute;bottom:0;padding-left:25px;padding-right:25px;padding-top:19px;padding-bottom:19px}.sidebar-pusher{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);z-index:9999;display:none}.push-sidebar{display:inline-block !important;padding:20px 18px;color:#5f5f5f;border:0;position:relative;line-height:20px;float:left;font-size:17px;text-decoration:none}.push-sidebar:hover{color:#5f5f5f}.search-button{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);z-index:9999;display:none;right:0}.search-button a{display:inline-block !important;padding:20px 18px;color:#5f5f5f;border:0;position:relative;line-height:20px;float:right;font-size:17px;text-decoration:none}.fontawesome-icon-list .fa-item{padding:10px 20px 10px 20px;color:#333}.fontawesome-icon-list .fa-item i{margin-right:5px}.fontawesome-icon-list .fa-item:hover{background:#f1f1f1}.line-icons .line-icon-item{padding:10px 20px 10px 20px;color:#333;display:block}.line-icons .line-icon-item:hover{background:#f1f1f1}.calendar-event{padding:7px 10px;color:#5b5b5b;background:#fcf8e3;margin-bottom:5px;overflow:hidden}.calendar-event p{float:left;margin:0}.calendar-event .remove-calendar-event{float:right;color:#5b5b5b}.faq-link:hover{text-decoration:none}.faq-popular{padding:0}.faq-popular li a{padding:8px 10px;font-size:14px;display:inline-block}.todo-nav{margin-top:10px}.todo-list .todo-item{padding:10px;margin:5px 0;border:1px solid #e9e9e9;background:#f9f9f9}.todo-list{margin:10px 0}.todo-list.only-active .todo-item.complete{display:none}.todo-list.only-active .todo-item:not(.complete){display:block}.todo-list.only-complete .todo-item:not(.complete){display:none}.todo-list.only-complete .todo-item.complete{display:block}.todo-list .todo-item.complete span{text-decoration:line-through}.remove-todo-item{color:#ccc;visibility:hidden}.remove-todo-item:hover{color:#5f5f5f}.todo-item:hover .remove-todo-item{visibility:visible}#uniform-all-complete{margin-left:11px}.info-box .progress{margin:0}.info-box .info-box-icon{float:right}.info-box .info-box-icon i{font-size:31px;color:#b0b0b0}.info-box .info-box-stats{margin-top:5px}.info-box .info-box-stats p{font-size:28px;line-height:28px;margin-bottom:14px;color:#374051;font-weight:300}.info-box .info-box-stats span.info-box-title{display:block;font-size:13px;margin-bottom:10px;color:#b0b0b0}.info-box .info-box-progress{clear:both}@media(min-width:768px){.visitors-chart{border-right:1px solid #eee}}.stats-info ul{margin:0}.stats-info ul li{border-bottom:1px solid #eee;padding:12px 0}.stats-info ul li:last-child{border-bottom:0}.stats-info ul li i{margin-left:5px}#flotchart1{height:340px;width:100%}#flotchart2{height:278px;width:100%}#flotchart3{height:200px;width:100%}.server-load>.server-stat{display:inline-block;margin-right:5px;margin-bottom:20px}.server-load .server-stat span{font-size:11px;margin-bottom:3px}.server-load .server-stat p{font-weight:600;font-size:16px;margin-bottom:3px}.weather-current{overflow:hidden}.weather-current p{font-size:12px;margin:5px 0 0 0;float:left;color:#8e8e8e}.weather-current p span{font-size:42px;clear:both;margin-top:15px;display:block;color:#4e5e6a;font-weight:300}.weather-current p span sup{font-size:25px}.weather-current .weather-icon{font-size:40px;display:block;float:left;margin:15px 15px 0 0}.weather-day{margin:0;font-weight:600;text-align:right;font-size:22px}.weather-day small{font-size:11px;color:#8e8e8e;margin:0}.weather-info{width:100%;display:block;overflow:hidden}.weather-info li{padding:8px 0}.weather-top{border-bottom:1px solid #f1f1f1;overflow:hidden;padding:0 0 15px 0;margin:0 0 15px 0}.weather-days{margin:15px 0 0 0;padding:15px 0 0 0;border-top:1px solid #f1f1f1}.weather-days li span{display:block;text-align:center}.weather-days li i{display:block;font-size:22px;text-align:center;margin:10px 0 10px 0}@media(max-width:768px){.weather-days li{margin-bottom:15px}}.live-tile{width:100%;margin:0;height:155.5px}.twitter-box{background:#5ea9dd}.facebook-box{background:#3b5998}.twitter-box i,.facebook-box i{position:absolute;right:10px;bottom:0;font-size:50px;color:rgba(255,255,255,0.3)}.tile-date{display:block;margin-top:15px;color:rgba(255,255,255,0.7)}.inbox-widget{height:341px !important}.inbox-widget a{display:block;overflow:hidden;text-decoration:none}.inbox-widget .inbox-item{padding:10px 0;border-bottom:1px solid #f1f1f1;overflow:hidden;position:relative}.inbox-widget a:last-child>.inbox-item{border-bottom:0}.inbox-widget .inbox-item .inbox-item-img{float:left;width:40px;display:block;margin-right:15px}.inbox-widget .inbox-item img{width:40px}.inbox-widget .inbox-item .inbox-item-author{color:#333;font-weight:600;display:block;margin:0}.inbox-widget .inbox-item .inbox-item-text{color:#a0a0a0;display:block;margin:0;font-size:11px}.inbox-widget .inbox-item .inbox-item-date{position:absolute;top:2px;right:7px;color:#a9a9a9;font-size:11px}#rickshaw-chart{margin:0 -22px -25px -20px;height:100px}.sq_info{font-size:13px;line-height:20px;color:#999;font-style:italic;font-weight:normal}.label{background-color:#d1dade;font-family:'Open Sans',Arial,sans-serif;font-size:70%;font-weight:700;text-shadow:none;display:inline-block;padding:4px;margin:0 2px;line-height:5px;color:#fff;text-align:center;white-space:nowrap;vertical-align:top;border-radius:.25em}.label-danger,.badge-danger{background-color:#ed5565;color:#fff}
|
view/css/bootstrap.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0,0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.sq_success{color:white !important;background-color:#20bc49 !important}.sq_success p{line-height:30px !important;text-align:center;font-size:16px !important;font-weight:bold;position:relative;margin:5px 0 !important;padding:0 !important}.sq_message{line-height:19px;width:calc(100% - 22px) !important;margin:-1px 0;padding:0;font-size:13px;text-align:center;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background-color:#fffbcc;border-color:#e6db55}.sq_error{color:red;font-size:14px;line-height:30px}.sq_notices{font-size:13px;color:#555}.sq_absolute{position:fixed;top:2px;z-index:10000;text-align:center}.sq_savenotice{width:70%}.sq_absolute span{width:100% !important;display:inline-block}.sq_error strong{line-height:25px}#wpcontent{background:#f9f9f9}.sq_notice{background-color:yellow;padding:10px;margin:5px 15px 10px 0;border:0}.sq_logout{display:inline-block;margin-left:10px}@-webkit-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-moz-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-ms-keyframes play{from{background-position:0 0}to{background-position:-400px}}@-o-keyframes play{from{background-position:0 0}to{background-position:-400px}}@keyframes play{from{background-position:0 0}to{background-position:-400px}}.sq_minloading{position:relative;opacity:.5}.sq_minloading:before{position:absolute;right:calc(50% - 10px);top:calc(50% - 8px);display:block;float:right;line-height:30px;content:"";padding:0;margin:0 0 0 5px;height:16px;width:20px;background:transparent url('../img/minloading.png') no-repeat;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-ms-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}.nav-tab{margin-left:0;margin-right:3px;border:1px solid #ddd;border-bottom:0;position:relative;z-index:1}.nav-tab-active{background-color:#f5f5f5}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{position:static;display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}#src_settings{margin:0 10px 0 0;padding:0}#src_settings>div{background-color:#f5f5f5;border:1px solid #ddd;margin-top:-1px}#src_settings .tablenav .actions{padding:0}#sq_settings .form-control,#src_settings .form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;font-weight:bold;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}#sq_settings .form-control:focus,#src_settings .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}#sq_settings .form-control::-moz-placeholder,#src_settings .form-control::-moz-placeholder{color:#999;opacity:1}#sq_settings .form-control:-ms-input-placeholder,#src_settings .form-control:-ms-input-placeholder{color:#999}#sq_settings .form-control::-webkit-input-placeholder,#src_settings .form-control::-webkit-input-placeholder{color:#999}#src_settings .form-control[disabled],#src_settings .form-control[readonly],fieldset[disabled] #src_settings .form-control{background-color:#eee;opacity:1}#src_settings .form-control[disabled],fieldset[disabled] #src_settings .form-control{cursor:not-allowed}textarea#src_settings .form-control{height:auto}textarea#src_settings .form-control{width:100%}input[type="search"]{-webkit-appearance:none;padding:5px;min-width:300px}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"]#src_settings .form-control,input[type="time"]#src_settings .form-control,input[type="datetime-local"]#src_settings .form-control,input[type="month"]#src_settings .form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}#src_settings .form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}#src_settings .form-control-static.input-lg,#src_settings .form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm #src_settings .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select#src_settings .form-control{height:30px;line-height:30px}.form-group-sm textarea#src_settings .form-control,.form-group-sm select[multiple]#src_settings .form-control{height:auto}.form-group-sm #src_settings .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg #src_settings .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select#src_settings .form-control{height:46px;line-height:46px}.form-group-lg textarea#src_settings .form-control,.form-group-lg select[multiple]#src_settings .form-control{height:auto}.form-group-lg #src_settings .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback #src_settings .form-control{padding-right:42.5px}#src_settings .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+#src_settings .form-control-feedback,.input-group-lg+#src_settings .form-control-feedback,.form-group-lg #src_settings .form-control+#src_settings .form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+#src_settings .form-control-feedback,.input-group-sm+#src_settings .form-control-feedback,.form-group-sm #src_settings .form-control+#src_settings .form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success #src_settings .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success #src_settings .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success #src_settings .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning #src_settings .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning #src_settings .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning #src_settings .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error #src_settings .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error #src_settings .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error #src_settings .form-control-feedback{color:#a94442}.has-feedback label ~ #src_settings .form-control-feedback{top:25px}.has-feedback label.sr-only ~ #src_settings .form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline #src_settings .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline #src_settings .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group #src_settings .form-control{width:auto}.form-inline .input-group>#src_settings .form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback #src_settings .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback #src_settings .form-control-feedback{right:15px}@media(min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.333333px;font-size:18px}}@media(min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#3971aa;border-color:#3971aa}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:normal;color:#337ab7;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right
|