SEO Ultimate - Version 7.6.5.4

Version Description

Download this release

Release Info

Developer SEO Design Solutions
Plugin Icon 128x128 SEO Ultimate
Version 7.6.5.4
Comparing to
See all releases

Code changes from version 7.6.5.3 to 7.6.5.4

modules/settings/global-settings.php CHANGED
@@ -22,6 +22,7 @@ class SU_GlobalSettings extends SU_Module {
22
  'attribution_link' => false
23
  , 'mark_code' => true
24
  , 'sdf_theme' => true
 
25
  );
26
  }
27
 
@@ -40,6 +41,7 @@ class SU_GlobalSettings extends SU_Module {
40
  $checkboxes = array(
41
  'mark_code' => __('Identify the plugin’s HTML code insertions with HTML comment tags', 'seo-ultimate')
42
  , 'sdf_theme' => __('Show the promo slider for SEO Design Framework on plugin pages', 'seo-ultimate')
 
43
  //, 'attribution_link' => __('Enable nofollow’d attribution link on my site', 'seo-ultimate')
44
  //, 'attribution_link_css' => array('description' => __('Add CSS styles to the attribution link', 'seo-ultimate'), 'indent' => true)
45
  );
22
  'attribution_link' => false
23
  , 'mark_code' => true
24
  , 'sdf_theme' => true
25
+ , 'seo_toolbar_menu' => true
26
  );
27
  }
28
 
41
  $checkboxes = array(
42
  'mark_code' => __('Identify the plugin’s HTML code insertions with HTML comment tags', 'seo-ultimate')
43
  , 'sdf_theme' => __('Show the promo slider for SEO Design Framework on plugin pages', 'seo-ultimate')
44
+ , 'seo_toolbar_menu' => __('Show "SEO" Menu in admin toolbar', 'seo-ultimate')
45
  //, 'attribution_link' => __('Enable nofollow’d attribution link on my site', 'seo-ultimate')
46
  //, 'attribution_link_css' => array('description' => __('Add CSS styles to the attribution link', 'seo-ultimate'), 'indent' => true)
47
  );
plugin/class.seo-ultimate.php CHANGED
@@ -497,8 +497,11 @@ class SEO_Ultimate {
497
  else
498
  $module_disabled = (isset($oldmodules[$module]) && $oldmodules[$module] == SU_MODULE_DISABLED);
499
 
500
- if (!isset($oldmodules[$module]) && call_user_func(array($class, 'get_default_status')) == SU_MODULE_DISABLED)
501
- $module_disabled = true;
 
 
 
502
 
503
  if (in_array($module, $this->get_invincible_modules())) {
504
  $module_disabled = false;
497
  else
498
  $module_disabled = (isset($oldmodules[$module]) && $oldmodules[$module] == SU_MODULE_DISABLED);
499
 
500
+ //if (!isset($oldmodules[$module]) && call_user_func(array($class, 'get_default_status')) == SU_MODULE_DISABLED)
501
+ //$module_disabled = true;
502
+
503
+ if (!isset($oldmodules[$module]) && call_user_func(array($class, 'get_default_status') == SU_MODULE_DISABLED));
504
+ $module_disabled = false;
505
 
506
  if (in_array($module, $this->get_invincible_modules())) {
507
  $module_disabled = false;
plugin/su-functions.php CHANGED
@@ -1,314 +1,317 @@
1
- <?php
2
- /**
3
- * Non-class functions.
4
- */
5
-
6
- /********** INDEPENDENTLY-OPERABLE FUNCTIONS **********/
7
-
8
- /**
9
- * Returns the plugin's User-Agent value.
10
- * Can be used as a WordPress filter.
11
- *
12
- * @since 0.1
13
- * @uses SU_USER_AGENT
14
- *
15
- * @return string The user agent.
16
- */
17
- function su_get_user_agent() {
18
- return SU_USER_AGENT;
19
- }
20
-
21
- /**
22
- * Records an event in the debug log file.
23
- * Usage: su_debug_log(__FILE__, __CLASS__, __FUNCTION__, __LINE__, "Message");
24
- *
25
- * @since 0.1
26
- * @uses SU_VERSION
27
- *
28
- * @param string $file The value of __FILE__
29
- * @param string $class The value of __CLASS__
30
- * @param string $function The value of __FUNCTION__
31
- * @param string $line The value of __LINE__
32
- * @param string $message The message to log.
33
- */
34
- function su_debug_log($file, $class, $function, $line, $message) {
35
- global $seo_ultimate;
36
- if (isset($seo_ultimate->modules['settings']) && $seo_ultimate->modules['settings']->get_setting('debug_mode') === true) {
37
-
38
- $date = date("Y-m-d H:i:s");
39
- $version = SU_VERSION;
40
- $message = str_replace("\r\n", "\n", $message);
41
- $message = str_replace("\n", "\r\n", $message);
42
-
43
- $log = "Date: $date\r\nVersion: $version\r\nFile: $file\r\nClass: $class\r\nFunction: $function\r\nLine: $line\r\nMessage: $message\r\n\r\n";
44
- $logfile = trailingslashit(dirname(__FILE__))."seo-ultimate.log";
45
-
46
- @error_log($log, 3, $logfile);
47
- }
48
- }
49
-
50
- /**
51
- * Joins strings into a natural-language list.
52
- * Can be internationalized with gettext or the su_lang_implode filter.
53
- *
54
- * @since 1.1
55
- *
56
- * @param array $items The strings (or objects with $var child strings) to join.
57
- * @param string|false $var The name of the items' object variables whose values should be imploded into a list.
58
- If false, the items themselves will be used.
59
- * @param bool $ucwords Whether or not to capitalize the first letter of every word in the list.
60
- * @return string|array The items in a natural-language list.
61
- */
62
- function su_lang_implode($items, $var=false, $ucwords=false) {
63
-
64
- if (is_array($items) ) {
65
-
66
- if (strlen($var)) {
67
- $_items = array();
68
- foreach ($items as $item) $_items[] = $item->$var;
69
- $items = $_items;
70
- }
71
-
72
- if ($ucwords) $items = array_map('ucwords', $items);
73
-
74
- switch (count($items)) {
75
- case 0: $list = ''; break;
76
- case 1: $list = $items[0]; break;
77
- case 2: $list = sprintf(__('%s and %s', 'seo-ultimate'), $items[0], $items[1]); break;
78
- default:
79
- $last = array_pop($items);
80
- $list = implode(__(', ', 'seo-ultimate'), $items);
81
- $list = sprintf(__('%s, and %s', 'seo-ultimate'), $list, $last);
82
- break;
83
- }
84
-
85
- return apply_filters('su_lang_implode', $list, $items);
86
- }
87
-
88
- return $items;
89
- }
90
-
91
- /**
92
- * Escapes an attribute value and removes unwanted characters.
93
- *
94
- * @since 0.8
95
- *
96
- * @param string $str The attribute value.
97
- * @return string The filtered attribute value.
98
- */
99
- function su_esc_attr($str) {
100
- if (!is_string($str)) return $str;
101
- $str = str_replace(array("\t", "\r\n", "\n"), ' ', $str);
102
- $str = esc_attr($str);
103
- return $str;
104
- }
105
-
106
- /**
107
- * Escapes HTML.
108
- *
109
- * @since 2.1
110
- */
111
- function su_esc_html($str) {
112
- return esc_html($str);
113
- }
114
-
115
- /**
116
- * Escapes HTML. Double-encodes existing entities (ideal for editable HTML).
117
- *
118
- * @since 1.5
119
- *
120
- * @param string $str The string that potentially contains HTML.
121
- * @return string The filtered string.
122
- */
123
- function su_esc_editable_html($str) {
124
- return _wp_specialchars($str, ENT_QUOTES, false, true);
125
- }
126
-
127
-
128
-
129
- // Add a parent shortcut link for admin toolbar
130
- function custom_toolbar_link($wp_admin_bar) {
131
- $args = array(
132
- 'id' => 'seo-ultimate',
133
- 'title' => 'SEO',
134
- 'href' => self_admin_url( 'admin.php?page=seo' ),
135
- 'meta' => array(
136
- 'class' => 'seo-ultimate',
137
- 'title' => 'SEO'
138
- )
139
- );
140
- $wp_admin_bar->add_node($args);
141
-
142
- // Add the child link for admin toolbar
143
- $args = array(
144
- 'id' => 'su-moduels',
145
- 'title' => 'Modules',
146
- 'href' => self_admin_url( 'admin.php?page=seo' ),
147
- 'parent' => 'seo-ultimate',
148
- 'meta' => array(
149
- 'class' => 'su-moduels',
150
- 'title' => 'Modules'
151
- )
152
- );
153
- $wp_admin_bar->add_node($args);
154
-
155
- $args = array(
156
- 'id' => 'su-fofs',
157
- 'title' => '404 Monitor',
158
- 'href' => self_admin_url( 'admin.php?page=su-fofs' ),
159
- 'parent' => 'seo-ultimate',
160
- 'meta' => array(
161
- 'class' => 'su-fofs',
162
- 'title' => '404 Monitor'
163
- )
164
- );
165
- $wp_admin_bar->add_node($args);
166
-
167
- $args = array(
168
- 'id' => 'su-user-code',
169
- 'title' => 'Code Inserter',
170
- 'href' => self_admin_url( 'admin.php?page=su-user-code' ),
171
- 'parent' => 'seo-ultimate',
172
- 'meta' => array(
173
- 'class' => 'su-user-code',
174
- 'title' => 'Code Inserter'
175
- )
176
- );
177
- $wp_admin_bar->add_node($args);
178
-
179
- $args = array(
180
- 'id' => 'su-autolinks',
181
- 'title' => 'Deeplink Juggernaut',
182
- 'href' => self_admin_url( 'admin.php?page=su-autolinks' ),
183
- 'parent' => 'seo-ultimate',
184
- 'meta' => array(
185
- 'class' => 'su-autolinks',
186
- 'title' => 'Deeplink Juggernaut'
187
- )
188
- );
189
- $wp_admin_bar->add_node($args);
190
-
191
- $args = array(
192
- 'id' => 'su-files',
193
- 'title' => 'File Editor',
194
- 'href' => self_admin_url( 'admin.php?page=su-files' ),
195
- 'parent' => 'seo-ultimate',
196
- 'meta' => array(
197
- 'class' => 'su-files',
198
- 'title' => 'File Editor'
199
- )
200
- );
201
- $wp_admin_bar->add_node($args);
202
-
203
- $args = array(
204
- 'id' => 'su-internal-link-aliases',
205
- 'title' => 'Link Mask Generator',
206
- 'href' => self_admin_url( 'admin.php?page=su-internal-link-aliases' ),
207
- 'parent' => 'seo-ultimate',
208
- 'meta' => array(
209
- 'class' => 'su-internal-link-aliases',
210
- 'title' => 'Link Mask Generator'
211
- )
212
- );
213
- $wp_admin_bar->add_node($args);
214
-
215
- $args = array(
216
- 'id' => 'su-meta-descriptions',
217
- 'title' => 'Meta Description',
218
- 'href' => self_admin_url( 'admin.php?page=su-meta-descriptions' ),
219
- 'parent' => 'seo-ultimate',
220
- 'meta' => array(
221
- 'class' => 'su-meta-descriptions',
222
- 'title' => 'Meta Description'
223
- )
224
- );
225
- $wp_admin_bar->add_node($args);
226
-
227
- $args = array(
228
- 'id' => 'su-meta-keywords',
229
- 'title' => 'Meta Keywords',
230
- 'href' => self_admin_url( 'admin.php?page=su-meta-keywords' ),
231
- 'parent' => 'seo-ultimate',
232
- 'meta' => array(
233
- 'class' => 'su-meta-keywords',
234
- 'title' => 'Meta Keywords'
235
- )
236
- );
237
- $wp_admin_bar->add_node($args);
238
-
239
- $args = array(
240
- 'id' => 'su-meta-robots',
241
- 'title' => 'Meta Robot Tags',
242
- 'href' => self_admin_url( 'admin.php?page=su-meta-robots' ),
243
- 'parent' => 'seo-ultimate',
244
- 'meta' => array(
245
- 'class' => 'su-meta-robots',
246
- 'title' => 'Meta Robot Tags'
247
- )
248
- );
249
- $wp_admin_bar->add_node($args);
250
-
251
- $args = array(
252
- 'id' => 'su-opengraph',
253
- 'title' => 'Open Graph',
254
- 'href' => self_admin_url( 'admin.php?page=su-opengraph' ),
255
- 'parent' => 'seo-ultimate',
256
- 'meta' => array(
257
- 'class' => 'su-opengraph',
258
- 'title' => 'Open Graph'
259
- )
260
- );
261
- $wp_admin_bar->add_node($args);
262
-
263
- $args = array(
264
- 'id' => 'su-wp-settings',
265
- 'title' => 'Settings Monitor',
266
- 'href' => self_admin_url( 'admin.php?page=su-wp-settings' ),
267
- 'parent' => 'seo-ultimate',
268
- 'meta' => array(
269
- 'class' => 'su-wp-settings',
270
- 'title' => 'Settings Monitor'
271
- )
272
- );
273
- $wp_admin_bar->add_node($args);
274
-
275
- $args = array(
276
- 'id' => 'su-titles',
277
- 'title' => 'Title Tag Rewriter',
278
- 'href' => self_admin_url( 'admin.php?page=su-titles' ),
279
- 'parent' => 'seo-ultimate',
280
- 'meta' => array(
281
- 'class' => 'su-titles',
282
- 'title' => 'Title Tag Rewriter'
283
- )
284
- );
285
- $wp_admin_bar->add_node($args);
286
-
287
- $args = array(
288
- 'id' => 'su-sds-blog',
289
- 'title' => 'Whitepapers',
290
- 'href' => self_admin_url( 'admin.php?page=su-sds-blog' ),
291
- 'parent' => 'seo-ultimate',
292
- 'meta' => array(
293
- 'class' => 'su-sds-blog',
294
- 'title' => 'Whitepapers'
295
- )
296
- );
297
- $wp_admin_bar->add_node($args);
298
-
299
- $args = array(
300
- 'id' => 'su-misc',
301
- 'title' => 'Miscellaneous',
302
- 'href' => self_admin_url( 'admin.php?page=su-misc' ),
303
- 'parent' => 'seo-ultimate',
304
- 'meta' => array(
305
- 'class' => 'su-misc',
306
- 'title' => 'Miscellaneous'
307
- )
308
- );
309
- $wp_admin_bar->add_node($args);
310
-
311
- }
312
- add_action('admin_bar_menu', 'custom_toolbar_link', 95);
313
-
 
 
 
314
  ?>
1
+ <?php
2
+ /**
3
+ * Non-class functions.
4
+ */
5
+
6
+ /********** INDEPENDENTLY-OPERABLE FUNCTIONS **********/
7
+
8
+ /**
9
+ * Returns the plugin's User-Agent value.
10
+ * Can be used as a WordPress filter.
11
+ *
12
+ * @since 0.1
13
+ * @uses SU_USER_AGENT
14
+ *
15
+ * @return string The user agent.
16
+ */
17
+ function su_get_user_agent() {
18
+ return SU_USER_AGENT;
19
+ }
20
+
21
+ /**
22
+ * Records an event in the debug log file.
23
+ * Usage: su_debug_log(__FILE__, __CLASS__, __FUNCTION__, __LINE__, "Message");
24
+ *
25
+ * @since 0.1
26
+ * @uses SU_VERSION
27
+ *
28
+ * @param string $file The value of __FILE__
29
+ * @param string $class The value of __CLASS__
30
+ * @param string $function The value of __FUNCTION__
31
+ * @param string $line The value of __LINE__
32
+ * @param string $message The message to log.
33
+ */
34
+ function su_debug_log($file, $class, $function, $line, $message) {
35
+ global $seo_ultimate;
36
+ if (isset($seo_ultimate->modules['settings']) && $seo_ultimate->modules['settings']->get_setting('debug_mode') === true) {
37
+
38
+ $date = date("Y-m-d H:i:s");
39
+ $version = SU_VERSION;
40
+ $message = str_replace("\r\n", "\n", $message);
41
+ $message = str_replace("\n", "\r\n", $message);
42
+
43
+ $log = "Date: $date\r\nVersion: $version\r\nFile: $file\r\nClass: $class\r\nFunction: $function\r\nLine: $line\r\nMessage: $message\r\n\r\n";
44
+ $logfile = trailingslashit(dirname(__FILE__))."seo-ultimate.log";
45
+
46
+ @error_log($log, 3, $logfile);
47
+ }
48
+ }
49
+
50
+ /**
51
+ * Joins strings into a natural-language list.
52
+ * Can be internationalized with gettext or the su_lang_implode filter.
53
+ *
54
+ * @since 1.1
55
+ *
56
+ * @param array $items The strings (or objects with $var child strings) to join.
57
+ * @param string|false $var The name of the items' object variables whose values should be imploded into a list.
58
+ If false, the items themselves will be used.
59
+ * @param bool $ucwords Whether or not to capitalize the first letter of every word in the list.
60
+ * @return string|array The items in a natural-language list.
61
+ */
62
+ function su_lang_implode($items, $var=false, $ucwords=false) {
63
+
64
+ if (is_array($items) ) {
65
+
66
+ if (strlen($var)) {
67
+ $_items = array();
68
+ foreach ($items as $item) $_items[] = $item->$var;
69
+ $items = $_items;
70
+ }
71
+
72
+ if ($ucwords) $items = array_map('ucwords', $items);
73
+
74
+ switch (count($items)) {
75
+ case 0: $list = ''; break;
76
+ case 1: $list = $items[0]; break;
77
+ case 2: $list = sprintf(__('%s and %s', 'seo-ultimate'), $items[0], $items[1]); break;
78
+ default:
79
+ $last = array_pop($items);
80
+ $list = implode(__(', ', 'seo-ultimate'), $items);
81
+ $list = sprintf(__('%s, and %s', 'seo-ultimate'), $list, $last);
82
+ break;
83
+ }
84
+
85
+ return apply_filters('su_lang_implode', $list, $items);
86
+ }
87
+
88
+ return $items;
89
+ }
90
+
91
+ /**
92
+ * Escapes an attribute value and removes unwanted characters.
93
+ *
94
+ * @since 0.8
95
+ *
96
+ * @param string $str The attribute value.
97
+ * @return string The filtered attribute value.
98
+ */
99
+ function su_esc_attr($str) {
100
+ if (!is_string($str)) return $str;
101
+ $str = str_replace(array("\t", "\r\n", "\n"), ' ', $str);
102
+ $str = esc_attr($str);
103
+ return $str;
104
+ }
105
+
106
+ /**
107
+ * Escapes HTML.
108
+ *
109
+ * @since 2.1
110
+ */
111
+ function su_esc_html($str) {
112
+ return esc_html($str);
113
+ }
114
+
115
+ /**
116
+ * Escapes HTML. Double-encodes existing entities (ideal for editable HTML).
117
+ *
118
+ * @since 1.5
119
+ *
120
+ * @param string $str The string that potentially contains HTML.
121
+ * @return string The filtered string.
122
+ */
123
+ function su_esc_editable_html($str) {
124
+ return _wp_specialchars($str, ENT_QUOTES, false, true);
125
+ }
126
+
127
+ // Add a parent shortcut link for admin toolbar
128
+ function seo_ultimate_admin_bar_menu( $meta = true ) {
129
+ global $wp_admin_bar, $seo_ultimate;
130
+ if ( !is_user_logged_in() ) { return; }
131
+ if ( !is_super_admin() || !is_admin_bar_showing() ) { return; }
132
+ if (isset($seo_ultimate->modules['settings']) && $seo_ultimate->modules['settings']->get_setting('seo_toolbar_menu') === false) { return; }
133
+
134
+ // Add the parent link for admin toolbar
135
+ $args = array(
136
+ 'id' => 'seo-ultimate',
137
+ 'title' => 'SEO',
138
+ 'href' => self_admin_url( 'admin.php?page=seo' ),
139
+ 'meta' => array(
140
+ 'class' => 'seo-ultimate',
141
+ 'title' => 'SEO'
142
+ )
143
+ );
144
+ $wp_admin_bar->add_node($args);
145
+
146
+ // Add the child link for admin toolbar
147
+ $args = array(
148
+ 'id' => 'su-moduels',
149
+ 'title' => 'Modules',
150
+ 'href' => self_admin_url( 'admin.php?page=seo' ),
151
+ 'parent' => 'seo-ultimate',
152
+ 'meta' => array(
153
+ 'class' => 'su-moduels',
154
+ 'title' => 'Modules'
155
+ )
156
+ );
157
+ $wp_admin_bar->add_node($args);
158
+
159
+ $args = array(
160
+ 'id' => 'su-fofs',
161
+ 'title' => '404 Monitor',
162
+ 'href' => self_admin_url( 'admin.php?page=su-fofs' ),
163
+ 'parent' => 'seo-ultimate',
164
+ 'meta' => array(
165
+ 'class' => 'su-fofs',
166
+ 'title' => '404 Monitor'
167
+ )
168
+ );
169
+ $wp_admin_bar->add_node($args);
170
+
171
+ $args = array(
172
+ 'id' => 'su-user-code',
173
+ 'title' => 'Code Inserter',
174
+ 'href' => self_admin_url( 'admin.php?page=su-user-code' ),
175
+ 'parent' => 'seo-ultimate',
176
+ 'meta' => array(
177
+ 'class' => 'su-user-code',
178
+ 'title' => 'Code Inserter'
179
+ )
180
+ );
181
+ $wp_admin_bar->add_node($args);
182
+
183
+ $args = array(
184
+ 'id' => 'su-autolinks',
185
+ 'title' => 'Deeplink Juggernaut',
186
+ 'href' => self_admin_url( 'admin.php?page=su-autolinks' ),
187
+ 'parent' => 'seo-ultimate',
188
+ 'meta' => array(
189
+ 'class' => 'su-autolinks',
190
+ 'title' => 'Deeplink Juggernaut'
191
+ )
192
+ );
193
+ $wp_admin_bar->add_node($args);
194
+
195
+ $args = array(
196
+ 'id' => 'su-files',
197
+ 'title' => 'File Editor',
198
+ 'href' => self_admin_url( 'admin.php?page=su-files' ),
199
+ 'parent' => 'seo-ultimate',
200
+ 'meta' => array(
201
+ 'class' => 'su-files',
202
+ 'title' => 'File Editor'
203
+ )
204
+ );
205
+ $wp_admin_bar->add_node($args);
206
+
207
+ $args = array(
208
+ 'id' => 'su-internal-link-aliases',
209
+ 'title' => 'Link Mask Generator',
210
+ 'href' => self_admin_url( 'admin.php?page=su-internal-link-aliases' ),
211
+ 'parent' => 'seo-ultimate',
212
+ 'meta' => array(
213
+ 'class' => 'su-internal-link-aliases',
214
+ 'title' => 'Link Mask Generator'
215
+ )
216
+ );
217
+ $wp_admin_bar->add_node($args);
218
+
219
+ $args = array(
220
+ 'id' => 'su-meta-descriptions',
221
+ 'title' => 'Meta Description',
222
+ 'href' => self_admin_url( 'admin.php?page=su-meta-descriptions' ),
223
+ 'parent' => 'seo-ultimate',
224
+ 'meta' => array(
225
+ 'class' => 'su-meta-descriptions',
226
+ 'title' => 'Meta Description'
227
+ )
228
+ );
229
+ $wp_admin_bar->add_node($args);
230
+
231
+ $args = array(
232
+ 'id' => 'su-meta-keywords',
233
+ 'title' => 'Meta Keywords',
234
+ 'href' => self_admin_url( 'admin.php?page=su-meta-keywords' ),
235
+ 'parent' => 'seo-ultimate',
236
+ 'meta' => array(
237
+ 'class' => 'su-meta-keywords',
238
+ 'title' => 'Meta Keywords'
239
+ )
240
+ );
241
+ $wp_admin_bar->add_node($args);
242
+
243
+ $args = array(
244
+ 'id' => 'su-meta-robots',
245
+ 'title' => 'Meta Robot Tags',
246
+ 'href' => self_admin_url( 'admin.php?page=su-meta-robots' ),
247
+ 'parent' => 'seo-ultimate',
248
+ 'meta' => array(
249
+ 'class' => 'su-meta-robots',
250
+ 'title' => 'Meta Robot Tags'
251
+ )
252
+ );
253
+ $wp_admin_bar->add_node($args);
254
+
255
+ $args = array(
256
+ 'id' => 'su-opengraph',
257
+ 'title' => 'Open Graph',
258
+ 'href' => self_admin_url( 'admin.php?page=su-opengraph' ),
259
+ 'parent' => 'seo-ultimate',
260
+ 'meta' => array(
261
+ 'class' => 'su-opengraph',
262
+ 'title' => 'Open Graph'
263
+ )
264
+ );
265
+ $wp_admin_bar->add_node($args);
266
+
267
+ $args = array(
268
+ 'id' => 'su-wp-settings',
269
+ 'title' => 'Settings Monitor',
270
+ 'href' => self_admin_url( 'admin.php?page=su-wp-settings' ),
271
+ 'parent' => 'seo-ultimate',
272
+ 'meta' => array(
273
+ 'class' => 'su-wp-settings',
274
+ 'title' => 'Settings Monitor'
275
+ )
276
+ );
277
+ $wp_admin_bar->add_node($args);
278
+
279
+ $args = array(
280
+ 'id' => 'su-titles',
281
+ 'title' => 'Title Tag Rewriter',
282
+ 'href' => self_admin_url( 'admin.php?page=su-titles' ),
283
+ 'parent' => 'seo-ultimate',
284
+ 'meta' => array(
285
+ 'class' => 'su-titles',
286
+ 'title' => 'Title Tag Rewriter'
287
+ )
288
+ );
289
+ $wp_admin_bar->add_node($args);
290
+
291
+ $args = array(
292
+ 'id' => 'su-sds-blog',
293
+ 'title' => 'Whitepapers',
294
+ 'href' => self_admin_url( 'admin.php?page=su-sds-blog' ),
295
+ 'parent' => 'seo-ultimate',
296
+ 'meta' => array(
297
+ 'class' => 'su-sds-blog',
298
+ 'title' => 'Whitepapers'
299
+ )
300
+ );
301
+ $wp_admin_bar->add_node($args);
302
+
303
+ $args = array(
304
+ 'id' => 'su-misc',
305
+ 'title' => 'Miscellaneous',
306
+ 'href' => self_admin_url( 'admin.php?page=su-misc' ),
307
+ 'parent' => 'seo-ultimate',
308
+ 'meta' => array(
309
+ 'class' => 'su-misc',
310
+ 'title' => 'Miscellaneous'
311
+ )
312
+ );
313
+ $wp_admin_bar->add_node($args);
314
+
315
+ }
316
+ add_action('admin_bar_menu', 'seo_ultimate_admin_bar_menu', 95);
317
  ?>
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky, djalexandar, M Rub Shuvo
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate, Open Graph, og, microdata, Facebook, Twitter, Schema.org
4
  Requires at least: 3.9
5
  Tested up to: 4.2.1
6
- Stable tag: 7.6.5.3
7
 
8
  This all-in-one SEO plugin gives you control over meta titles & descriptions, open graph, auto-linking, rich-snippets, 404 monitoring, siloing & more.
9
 
@@ -248,6 +248,9 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
248
 
249
  == Changelog ==
250
 
 
 
 
251
  = Version 7.6.5.3 (April 29, 2015) =
252
  * Bugfix: Fixing add_query_arg() and remove_query_arg() usage
253
  * Bugfix: Fixed Strict Standards & Warning Error While Enable or Disable Any Modules From Module Manager
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate, Open Graph, og, microdata, Facebook, Twitter, Schema.org
4
  Requires at least: 3.9
5
  Tested up to: 4.2.1
6
+ Stable tag: 7.6.5.4
7
 
8
  This all-in-one SEO plugin gives you control over meta titles & descriptions, open graph, auto-linking, rich-snippets, 404 monitoring, siloing & more.
9
 
248
 
249
  == Changelog ==
250
 
251
+ = Version 7.6.5.4 (May 7, 2015) =
252
+ * Bugfix: Toggle for "SEO" Menu in admin toolbar
253
+
254
  = Version 7.6.5.3 (April 29, 2015) =
255
  * Bugfix: Fixing add_query_arg() and remove_query_arg() usage
256
  * Bugfix: Fixed Strict Standards & Warning Error While Enable or Disable Any Modules From Module Manager
seo-ultimate.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over meta titles & descriptions, open graph, auto-linking, rich-snippets, 404 monitoring, siloing & more.
6
- Version: 7.6.5.3
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
- * @version 7.6.5.3
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -48,10 +48,10 @@ define('SU_MINIMUM_WP_VER', '3.9');
48
  //Reading plugin info from constants is faster than trying to parse it from the header above.
49
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
50
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
51
- define('SU_VERSION', '7.6.5.3');
52
  define('SU_AUTHOR', 'SEO Design Solutions');
53
  define('SU_AUTHOR_URI', 'http://www.seodesignframework.com/');
54
- define('SU_USER_AGENT', 'SeoUltimate/7.6.5.3');
55
 
56
  /********** INCLUDES **********/
57
 
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over meta titles & descriptions, open graph, auto-linking, rich-snippets, 404 monitoring, siloing & more.
6
+ Version: 7.6.5.4
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
+ * @version 7.6.5.4
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
48
  //Reading plugin info from constants is faster than trying to parse it from the header above.
49
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
50
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
51
+ define('SU_VERSION', '7.6.5.4');
52
  define('SU_AUTHOR', 'SEO Design Solutions');
53
  define('SU_AUTHOR_URI', 'http://www.seodesignframework.com/');
54
+ define('SU_USER_AGENT', 'SeoUltimate/7.6.5.4');
55
 
56
  /********** INCLUDES **********/
57
 
translations/seo-ultimate-en_US.mo CHANGED
Binary file
translations/seo-ultimate-en_US.po CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: SEO Ultimate v7.6.5.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2015-04-28 17:50+0100\n"
8
- "PO-Revision-Date: 2015-04-28 17:50+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: SEO Design Solutions <support@seodesignsolutions.com>\n"
11
  "Language: en_US\n"
@@ -1218,11 +1218,11 @@ msgstr ""
1218
 
1219
  #: modules/class.su-module.php:2801 modules/meta/meta-descriptions.php:31
1220
  #: modules/meta/meta-keywords.php:40 modules/opengraph/opengraph.php:352
1221
- #: plugin/class.seo-ultimate.php:1876
1222
  msgid "Blog Homepage"
1223
  msgstr ""
1224
 
1225
- #: modules/class.su-module.php:2806 plugin/class.seo-ultimate.php:1952
1226
  msgid "Author"
1227
  msgstr ""
1228
 
@@ -1230,7 +1230,7 @@ msgstr ""
1230
  msgid "A Deleted User"
1231
  msgstr ""
1232
 
1233
- #: modules/class.su-module.php:2823 plugin/class.seo-ultimate.php:1982
1234
  msgid "Link Mask"
1235
  msgstr ""
1236
 
@@ -2165,7 +2165,7 @@ msgid ""
2165
  msgstr ""
2166
 
2167
  #: modules/misc/misc.php:11 modules/misc/misc.php:12
2168
- #: plugin/class.seo-ultimate.php:1586
2169
  msgid "Miscellaneous"
2170
  msgstr ""
2171
 
@@ -3111,14 +3111,18 @@ msgstr ""
3111
  msgid "Global Settings"
3112
  msgstr ""
3113
 
3114
- #: modules/settings/global-settings.php:41
3115
  msgid "Identify the plugin&#8217;s HTML code insertions with HTML comment tags"
3116
  msgstr ""
3117
 
3118
- #: modules/settings/global-settings.php:42
3119
  msgid "Show the promo slider for SEO Design Framework on plugin pages"
3120
  msgstr ""
3121
 
 
 
 
 
3122
  #: modules/settings/install.php:18
3123
  msgid "Upgrade/Downgrade/Reinstall"
3124
  msgstr ""
@@ -3410,7 +3414,7 @@ msgstr ""
3410
  msgid "SEO Ultimate Plugin Settings"
3411
  msgstr ""
3412
 
3413
- #: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:854
3414
  msgid "SEO Ultimate"
3415
  msgstr ""
3416
 
@@ -3462,7 +3466,7 @@ msgid "Uninstaller"
3462
  msgstr ""
3463
 
3464
  #: modules/settings/uninstall.php:18 modules/settings/uninstall.php:22
3465
- #: plugin/class.seo-ultimate.php:1414
3466
  msgid "Uninstall"
3467
  msgstr ""
3468
 
@@ -4195,102 +4199,102 @@ msgstr ""
4195
  msgid "Go to setting &raquo;"
4196
  msgstr ""
4197
 
4198
- #: plugin/class.seo-ultimate.php:854
4199
  msgid "SEO"
4200
  msgstr ""
4201
 
4202
- #: plugin/class.seo-ultimate.php:1135
4203
  msgid ""
4204
  "It looks like you made changes to the settings of this SEO Ultimate module. "
4205
  "If you leave before saving, those changes will be lost."
4206
  msgstr ""
4207
 
4208
- #: plugin/class.seo-ultimate.php:1230 plugin/class.seo-ultimate.php:1656
4209
  msgid "SEO Settings"
4210
  msgstr ""
4211
 
4212
- #: plugin/class.seo-ultimate.php:1269
4213
  #, php-format
4214
  msgid ""
4215
  "%1$s is known to cause conflicts with SEO Ultimate. Please deactivate %1$s "
4216
  "if you wish to continue using SEO Ultimate."
4217
  msgstr ""
4218
 
4219
- #: plugin/class.seo-ultimate.php:1313
4220
  msgid "new module"
4221
  msgstr ""
4222
 
4223
- #: plugin/class.seo-ultimate.php:1313
4224
  msgid "new modules"
4225
  msgstr ""
4226
 
4227
- #: plugin/class.seo-ultimate.php:1314
4228
  msgid "new feature"
4229
  msgstr ""
4230
 
4231
- #: plugin/class.seo-ultimate.php:1314
4232
  msgid "new features"
4233
  msgstr ""
4234
 
4235
- #: plugin/class.seo-ultimate.php:1315
4236
  msgid "bugfix"
4237
  msgstr ""
4238
 
4239
- #: plugin/class.seo-ultimate.php:1315
4240
  msgid "bugfixes"
4241
  msgstr ""
4242
 
4243
- #: plugin/class.seo-ultimate.php:1316
4244
  msgid "improvement"
4245
  msgstr ""
4246
 
4247
- #: plugin/class.seo-ultimate.php:1316
4248
  msgid "improvements"
4249
  msgstr ""
4250
 
4251
- #: plugin/class.seo-ultimate.php:1317
4252
  msgid "security fix"
4253
  msgstr ""
4254
 
4255
- #: plugin/class.seo-ultimate.php:1317
4256
  msgid "security fixes"
4257
  msgstr ""
4258
 
4259
- #: plugin/class.seo-ultimate.php:1318
4260
  msgid "new language pack"
4261
  msgstr ""
4262
 
4263
- #: plugin/class.seo-ultimate.php:1318
4264
  msgid "new language packs"
4265
  msgstr ""
4266
 
4267
- #: plugin/class.seo-ultimate.php:1319
4268
  msgid "language pack update"
4269
  msgstr ""
4270
 
4271
- #: plugin/class.seo-ultimate.php:1319
4272
  msgid "language pack updates"
4273
  msgstr ""
4274
 
4275
- #: plugin/class.seo-ultimate.php:1350
4276
  #, php-format
4277
  msgid "%d %s"
4278
  msgstr ""
4279
 
4280
- #: plugin/class.seo-ultimate.php:1356
4281
  #, php-format
4282
  msgid "Upgrade now to get %s. %s."
4283
  msgstr ""
4284
 
4285
- #: plugin/class.seo-ultimate.php:1358
4286
  msgid "View changelog"
4287
  msgstr ""
4288
 
4289
- #: plugin/class.seo-ultimate.php:1435
4290
  msgid "Active Modules: "
4291
  msgstr ""
4292
 
4293
- #: plugin/class.seo-ultimate.php:1502
4294
  msgid ""
4295
  "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
4296
  "search engine spiders. To resolve this, <a href=\"options-reading.php\" "
@@ -4298,32 +4302,32 @@ msgid ""
4298
  "discourage search engines&#8221; option."
4299
  msgstr ""
4300
 
4301
- #: plugin/class.seo-ultimate.php:1583
4302
  msgid "Search Engine Listing"
4303
  msgstr ""
4304
 
4305
- #: plugin/class.seo-ultimate.php:1584
4306
  msgid "Social Networks Listing"
4307
  msgstr ""
4308
 
4309
- #: plugin/class.seo-ultimate.php:1585
4310
  msgid "Links"
4311
  msgstr ""
4312
 
4313
- #: plugin/class.seo-ultimate.php:1687
4314
  #, php-format
4315
  msgid "%1$s %2$s by %3$s"
4316
  msgstr ""
4317
 
4318
- #: plugin/class.seo-ultimate.php:1875
4319
  msgid "Home"
4320
  msgstr ""
4321
 
4322
- #: plugin/class.seo-ultimate.php:1946
4323
  msgid "Author Archives"
4324
  msgstr ""
4325
 
4326
- #: plugin/class.seo-ultimate.php:1975
4327
  msgid "Link Masks"
4328
  msgstr ""
4329
 
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEO Ultimate v7.6.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2015-05-07 19:21+0100\n"
8
+ "PO-Revision-Date: 2015-05-07 19:21+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: SEO Design Solutions <support@seodesignsolutions.com>\n"
11
  "Language: en_US\n"
1218
 
1219
  #: modules/class.su-module.php:2801 modules/meta/meta-descriptions.php:31
1220
  #: modules/meta/meta-keywords.php:40 modules/opengraph/opengraph.php:352
1221
+ #: plugin/class.seo-ultimate.php:1879
1222
  msgid "Blog Homepage"
1223
  msgstr ""
1224
 
1225
+ #: modules/class.su-module.php:2806 plugin/class.seo-ultimate.php:1955
1226
  msgid "Author"
1227
  msgstr ""
1228
 
1230
  msgid "A Deleted User"
1231
  msgstr ""
1232
 
1233
+ #: modules/class.su-module.php:2823 plugin/class.seo-ultimate.php:1985
1234
  msgid "Link Mask"
1235
  msgstr ""
1236
 
2165
  msgstr ""
2166
 
2167
  #: modules/misc/misc.php:11 modules/misc/misc.php:12
2168
+ #: plugin/class.seo-ultimate.php:1589
2169
  msgid "Miscellaneous"
2170
  msgstr ""
2171
 
3111
  msgid "Global Settings"
3112
  msgstr ""
3113
 
3114
+ #: modules/settings/global-settings.php:42
3115
  msgid "Identify the plugin&#8217;s HTML code insertions with HTML comment tags"
3116
  msgstr ""
3117
 
3118
+ #: modules/settings/global-settings.php:43
3119
  msgid "Show the promo slider for SEO Design Framework on plugin pages"
3120
  msgstr ""
3121
 
3122
+ #: modules/settings/global-settings.php:44
3123
+ msgid "Show \"SEO\" Menu in admin toolbar"
3124
+ msgstr ""
3125
+
3126
  #: modules/settings/install.php:18
3127
  msgid "Upgrade/Downgrade/Reinstall"
3128
  msgstr ""
3414
  msgid "SEO Ultimate Plugin Settings"
3415
  msgstr ""
3416
 
3417
+ #: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:857
3418
  msgid "SEO Ultimate"
3419
  msgstr ""
3420
 
3466
  msgstr ""
3467
 
3468
  #: modules/settings/uninstall.php:18 modules/settings/uninstall.php:22
3469
+ #: plugin/class.seo-ultimate.php:1417
3470
  msgid "Uninstall"
3471
  msgstr ""
3472
 
4199
  msgid "Go to setting &raquo;"
4200
  msgstr ""
4201
 
4202
+ #: plugin/class.seo-ultimate.php:857
4203
  msgid "SEO"
4204
  msgstr ""
4205
 
4206
+ #: plugin/class.seo-ultimate.php:1138
4207
  msgid ""
4208
  "It looks like you made changes to the settings of this SEO Ultimate module. "
4209
  "If you leave before saving, those changes will be lost."
4210
  msgstr ""
4211
 
4212
+ #: plugin/class.seo-ultimate.php:1233 plugin/class.seo-ultimate.php:1659
4213
  msgid "SEO Settings"
4214
  msgstr ""
4215
 
4216
+ #: plugin/class.seo-ultimate.php:1272
4217
  #, php-format
4218
  msgid ""
4219
  "%1$s is known to cause conflicts with SEO Ultimate. Please deactivate %1$s "
4220
  "if you wish to continue using SEO Ultimate."
4221
  msgstr ""
4222
 
4223
+ #: plugin/class.seo-ultimate.php:1316
4224
  msgid "new module"
4225
  msgstr ""
4226
 
4227
+ #: plugin/class.seo-ultimate.php:1316
4228
  msgid "new modules"
4229
  msgstr ""
4230
 
4231
+ #: plugin/class.seo-ultimate.php:1317
4232
  msgid "new feature"
4233
  msgstr ""
4234
 
4235
+ #: plugin/class.seo-ultimate.php:1317
4236
  msgid "new features"
4237
  msgstr ""
4238
 
4239
+ #: plugin/class.seo-ultimate.php:1318
4240
  msgid "bugfix"
4241
  msgstr ""
4242
 
4243
+ #: plugin/class.seo-ultimate.php:1318
4244
  msgid "bugfixes"
4245
  msgstr ""
4246
 
4247
+ #: plugin/class.seo-ultimate.php:1319
4248
  msgid "improvement"
4249
  msgstr ""
4250
 
4251
+ #: plugin/class.seo-ultimate.php:1319
4252
  msgid "improvements"
4253
  msgstr ""
4254
 
4255
+ #: plugin/class.seo-ultimate.php:1320
4256
  msgid "security fix"
4257
  msgstr ""
4258
 
4259
+ #: plugin/class.seo-ultimate.php:1320
4260
  msgid "security fixes"
4261
  msgstr ""
4262
 
4263
+ #: plugin/class.seo-ultimate.php:1321
4264
  msgid "new language pack"
4265
  msgstr ""
4266
 
4267
+ #: plugin/class.seo-ultimate.php:1321
4268
  msgid "new language packs"
4269
  msgstr ""
4270
 
4271
+ #: plugin/class.seo-ultimate.php:1322
4272
  msgid "language pack update"
4273
  msgstr ""
4274
 
4275
+ #: plugin/class.seo-ultimate.php:1322
4276
  msgid "language pack updates"
4277
  msgstr ""
4278
 
4279
+ #: plugin/class.seo-ultimate.php:1353
4280
  #, php-format
4281
  msgid "%d %s"
4282
  msgstr ""
4283
 
4284
+ #: plugin/class.seo-ultimate.php:1359
4285
  #, php-format
4286
  msgid "Upgrade now to get %s. %s."
4287
  msgstr ""
4288
 
4289
+ #: plugin/class.seo-ultimate.php:1361
4290
  msgid "View changelog"
4291
  msgstr ""
4292
 
4293
+ #: plugin/class.seo-ultimate.php:1438
4294
  msgid "Active Modules: "
4295
  msgstr ""
4296
 
4297
+ #: plugin/class.seo-ultimate.php:1505
4298
  msgid ""
4299
  "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
4300
  "search engine spiders. To resolve this, <a href=\"options-reading.php\" "
4302
  "discourage search engines&#8221; option."
4303
  msgstr ""
4304
 
4305
+ #: plugin/class.seo-ultimate.php:1586
4306
  msgid "Search Engine Listing"
4307
  msgstr ""
4308
 
4309
+ #: plugin/class.seo-ultimate.php:1587
4310
  msgid "Social Networks Listing"
4311
  msgstr ""
4312
 
4313
+ #: plugin/class.seo-ultimate.php:1588
4314
  msgid "Links"
4315
  msgstr ""
4316
 
4317
+ #: plugin/class.seo-ultimate.php:1690
4318
  #, php-format
4319
  msgid "%1$s %2$s by %3$s"
4320
  msgstr ""
4321
 
4322
+ #: plugin/class.seo-ultimate.php:1878
4323
  msgid "Home"
4324
  msgstr ""
4325
 
4326
+ #: plugin/class.seo-ultimate.php:1949
4327
  msgid "Author Archives"
4328
  msgstr ""
4329
 
4330
+ #: plugin/class.seo-ultimate.php:1978
4331
  msgid "Link Masks"
4332
  msgstr ""
4333
 
translations/seo-ultimate.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: SEO Ultimate v7.6.5.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
- "POT-Creation-Date: 2015-04-28 17:50+0100\n"
8
- "PO-Revision-Date: 2015-04-28 17:50+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: SEO Design Solutions <support@seodesignsolutions.com>\n"
11
  "Language: en_US\n"
@@ -1218,11 +1218,11 @@ msgstr ""
1218
 
1219
  #: modules/class.su-module.php:2801 modules/meta/meta-descriptions.php:31
1220
  #: modules/meta/meta-keywords.php:40 modules/opengraph/opengraph.php:352
1221
- #: plugin/class.seo-ultimate.php:1876
1222
  msgid "Blog Homepage"
1223
  msgstr ""
1224
 
1225
- #: modules/class.su-module.php:2806 plugin/class.seo-ultimate.php:1952
1226
  msgid "Author"
1227
  msgstr ""
1228
 
@@ -1230,7 +1230,7 @@ msgstr ""
1230
  msgid "A Deleted User"
1231
  msgstr ""
1232
 
1233
- #: modules/class.su-module.php:2823 plugin/class.seo-ultimate.php:1982
1234
  msgid "Link Mask"
1235
  msgstr ""
1236
 
@@ -2165,7 +2165,7 @@ msgid ""
2165
  msgstr ""
2166
 
2167
  #: modules/misc/misc.php:11 modules/misc/misc.php:12
2168
- #: plugin/class.seo-ultimate.php:1586
2169
  msgid "Miscellaneous"
2170
  msgstr ""
2171
 
@@ -3111,14 +3111,18 @@ msgstr ""
3111
  msgid "Global Settings"
3112
  msgstr ""
3113
 
3114
- #: modules/settings/global-settings.php:41
3115
  msgid "Identify the plugin&#8217;s HTML code insertions with HTML comment tags"
3116
  msgstr ""
3117
 
3118
- #: modules/settings/global-settings.php:42
3119
  msgid "Show the promo slider for SEO Design Framework on plugin pages"
3120
  msgstr ""
3121
 
 
 
 
 
3122
  #: modules/settings/install.php:18
3123
  msgid "Upgrade/Downgrade/Reinstall"
3124
  msgstr ""
@@ -3410,7 +3414,7 @@ msgstr ""
3410
  msgid "SEO Ultimate Plugin Settings"
3411
  msgstr ""
3412
 
3413
- #: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:854
3414
  msgid "SEO Ultimate"
3415
  msgstr ""
3416
 
@@ -3462,7 +3466,7 @@ msgid "Uninstaller"
3462
  msgstr ""
3463
 
3464
  #: modules/settings/uninstall.php:18 modules/settings/uninstall.php:22
3465
- #: plugin/class.seo-ultimate.php:1414
3466
  msgid "Uninstall"
3467
  msgstr ""
3468
 
@@ -4195,102 +4199,102 @@ msgstr ""
4195
  msgid "Go to setting &raquo;"
4196
  msgstr ""
4197
 
4198
- #: plugin/class.seo-ultimate.php:854
4199
  msgid "SEO"
4200
  msgstr ""
4201
 
4202
- #: plugin/class.seo-ultimate.php:1135
4203
  msgid ""
4204
  "It looks like you made changes to the settings of this SEO Ultimate module. "
4205
  "If you leave before saving, those changes will be lost."
4206
  msgstr ""
4207
 
4208
- #: plugin/class.seo-ultimate.php:1230 plugin/class.seo-ultimate.php:1656
4209
  msgid "SEO Settings"
4210
  msgstr ""
4211
 
4212
- #: plugin/class.seo-ultimate.php:1269
4213
  #, php-format
4214
  msgid ""
4215
  "%1$s is known to cause conflicts with SEO Ultimate. Please deactivate %1$s "
4216
  "if you wish to continue using SEO Ultimate."
4217
  msgstr ""
4218
 
4219
- #: plugin/class.seo-ultimate.php:1313
4220
  msgid "new module"
4221
  msgstr ""
4222
 
4223
- #: plugin/class.seo-ultimate.php:1313
4224
  msgid "new modules"
4225
  msgstr ""
4226
 
4227
- #: plugin/class.seo-ultimate.php:1314
4228
  msgid "new feature"
4229
  msgstr ""
4230
 
4231
- #: plugin/class.seo-ultimate.php:1314
4232
  msgid "new features"
4233
  msgstr ""
4234
 
4235
- #: plugin/class.seo-ultimate.php:1315
4236
  msgid "bugfix"
4237
  msgstr ""
4238
 
4239
- #: plugin/class.seo-ultimate.php:1315
4240
  msgid "bugfixes"
4241
  msgstr ""
4242
 
4243
- #: plugin/class.seo-ultimate.php:1316
4244
  msgid "improvement"
4245
  msgstr ""
4246
 
4247
- #: plugin/class.seo-ultimate.php:1316
4248
  msgid "improvements"
4249
  msgstr ""
4250
 
4251
- #: plugin/class.seo-ultimate.php:1317
4252
  msgid "security fix"
4253
  msgstr ""
4254
 
4255
- #: plugin/class.seo-ultimate.php:1317
4256
  msgid "security fixes"
4257
  msgstr ""
4258
 
4259
- #: plugin/class.seo-ultimate.php:1318
4260
  msgid "new language pack"
4261
  msgstr ""
4262
 
4263
- #: plugin/class.seo-ultimate.php:1318
4264
  msgid "new language packs"
4265
  msgstr ""
4266
 
4267
- #: plugin/class.seo-ultimate.php:1319
4268
  msgid "language pack update"
4269
  msgstr ""
4270
 
4271
- #: plugin/class.seo-ultimate.php:1319
4272
  msgid "language pack updates"
4273
  msgstr ""
4274
 
4275
- #: plugin/class.seo-ultimate.php:1350
4276
  #, php-format
4277
  msgid "%d %s"
4278
  msgstr ""
4279
 
4280
- #: plugin/class.seo-ultimate.php:1356
4281
  #, php-format
4282
  msgid "Upgrade now to get %s. %s."
4283
  msgstr ""
4284
 
4285
- #: plugin/class.seo-ultimate.php:1358
4286
  msgid "View changelog"
4287
  msgstr ""
4288
 
4289
- #: plugin/class.seo-ultimate.php:1435
4290
  msgid "Active Modules: "
4291
  msgstr ""
4292
 
4293
- #: plugin/class.seo-ultimate.php:1502
4294
  msgid ""
4295
  "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
4296
  "search engine spiders. To resolve this, <a href=\"options-reading.php\" "
@@ -4298,32 +4302,32 @@ msgid ""
4298
  "discourage search engines&#8221; option."
4299
  msgstr ""
4300
 
4301
- #: plugin/class.seo-ultimate.php:1583
4302
  msgid "Search Engine Listing"
4303
  msgstr ""
4304
 
4305
- #: plugin/class.seo-ultimate.php:1584
4306
  msgid "Social Networks Listing"
4307
  msgstr ""
4308
 
4309
- #: plugin/class.seo-ultimate.php:1585
4310
  msgid "Links"
4311
  msgstr ""
4312
 
4313
- #: plugin/class.seo-ultimate.php:1687
4314
  #, php-format
4315
  msgid "%1$s %2$s by %3$s"
4316
  msgstr ""
4317
 
4318
- #: plugin/class.seo-ultimate.php:1875
4319
  msgid "Home"
4320
  msgstr ""
4321
 
4322
- #: plugin/class.seo-ultimate.php:1946
4323
  msgid "Author Archives"
4324
  msgstr ""
4325
 
4326
- #: plugin/class.seo-ultimate.php:1975
4327
  msgid "Link Masks"
4328
  msgstr ""
4329
 
2
  # This file is distributed under the same license as the SEO Ultimate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEO Ultimate v7.6.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
7
+ "POT-Creation-Date: 2015-05-07 19:21+0100\n"
8
+ "PO-Revision-Date: 2015-05-07 19:21+0100\n"
9
  "Last-Translator: \n"
10
  "Language-Team: SEO Design Solutions <support@seodesignsolutions.com>\n"
11
  "Language: en_US\n"
1218
 
1219
  #: modules/class.su-module.php:2801 modules/meta/meta-descriptions.php:31
1220
  #: modules/meta/meta-keywords.php:40 modules/opengraph/opengraph.php:352
1221
+ #: plugin/class.seo-ultimate.php:1879
1222
  msgid "Blog Homepage"
1223
  msgstr ""
1224
 
1225
+ #: modules/class.su-module.php:2806 plugin/class.seo-ultimate.php:1955
1226
  msgid "Author"
1227
  msgstr ""
1228
 
1230
  msgid "A Deleted User"
1231
  msgstr ""
1232
 
1233
+ #: modules/class.su-module.php:2823 plugin/class.seo-ultimate.php:1985
1234
  msgid "Link Mask"
1235
  msgstr ""
1236
 
2165
  msgstr ""
2166
 
2167
  #: modules/misc/misc.php:11 modules/misc/misc.php:12
2168
+ #: plugin/class.seo-ultimate.php:1589
2169
  msgid "Miscellaneous"
2170
  msgstr ""
2171
 
3111
  msgid "Global Settings"
3112
  msgstr ""
3113
 
3114
+ #: modules/settings/global-settings.php:42
3115
  msgid "Identify the plugin&#8217;s HTML code insertions with HTML comment tags"
3116
  msgstr ""
3117
 
3118
+ #: modules/settings/global-settings.php:43
3119
  msgid "Show the promo slider for SEO Design Framework on plugin pages"
3120
  msgstr ""
3121
 
3122
+ #: modules/settings/global-settings.php:44
3123
+ msgid "Show \"SEO\" Menu in admin toolbar"
3124
+ msgstr ""
3125
+
3126
  #: modules/settings/install.php:18
3127
  msgid "Upgrade/Downgrade/Reinstall"
3128
  msgstr ""
3414
  msgid "SEO Ultimate Plugin Settings"
3415
  msgstr ""
3416
 
3417
+ #: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:857
3418
  msgid "SEO Ultimate"
3419
  msgstr ""
3420
 
3466
  msgstr ""
3467
 
3468
  #: modules/settings/uninstall.php:18 modules/settings/uninstall.php:22
3469
+ #: plugin/class.seo-ultimate.php:1417
3470
  msgid "Uninstall"
3471
  msgstr ""
3472
 
4199
  msgid "Go to setting &raquo;"
4200
  msgstr ""
4201
 
4202
+ #: plugin/class.seo-ultimate.php:857
4203
  msgid "SEO"
4204
  msgstr ""
4205
 
4206
+ #: plugin/class.seo-ultimate.php:1138
4207
  msgid ""
4208
  "It looks like you made changes to the settings of this SEO Ultimate module. "
4209
  "If you leave before saving, those changes will be lost."
4210
  msgstr ""
4211
 
4212
+ #: plugin/class.seo-ultimate.php:1233 plugin/class.seo-ultimate.php:1659
4213
  msgid "SEO Settings"
4214
  msgstr ""
4215
 
4216
+ #: plugin/class.seo-ultimate.php:1272
4217
  #, php-format
4218
  msgid ""
4219
  "%1$s is known to cause conflicts with SEO Ultimate. Please deactivate %1$s "
4220
  "if you wish to continue using SEO Ultimate."
4221
  msgstr ""
4222
 
4223
+ #: plugin/class.seo-ultimate.php:1316
4224
  msgid "new module"
4225
  msgstr ""
4226
 
4227
+ #: plugin/class.seo-ultimate.php:1316
4228
  msgid "new modules"
4229
  msgstr ""
4230
 
4231
+ #: plugin/class.seo-ultimate.php:1317
4232
  msgid "new feature"
4233
  msgstr ""
4234
 
4235
+ #: plugin/class.seo-ultimate.php:1317
4236
  msgid "new features"
4237
  msgstr ""
4238
 
4239
+ #: plugin/class.seo-ultimate.php:1318
4240
  msgid "bugfix"
4241
  msgstr ""
4242
 
4243
+ #: plugin/class.seo-ultimate.php:1318
4244
  msgid "bugfixes"
4245
  msgstr ""
4246
 
4247
+ #: plugin/class.seo-ultimate.php:1319
4248
  msgid "improvement"
4249
  msgstr ""
4250
 
4251
+ #: plugin/class.seo-ultimate.php:1319
4252
  msgid "improvements"
4253
  msgstr ""
4254
 
4255
+ #: plugin/class.seo-ultimate.php:1320
4256
  msgid "security fix"
4257
  msgstr ""
4258
 
4259
+ #: plugin/class.seo-ultimate.php:1320
4260
  msgid "security fixes"
4261
  msgstr ""
4262
 
4263
+ #: plugin/class.seo-ultimate.php:1321
4264
  msgid "new language pack"
4265
  msgstr ""
4266
 
4267
+ #: plugin/class.seo-ultimate.php:1321
4268
  msgid "new language packs"
4269
  msgstr ""
4270
 
4271
+ #: plugin/class.seo-ultimate.php:1322
4272
  msgid "language pack update"
4273
  msgstr ""
4274
 
4275
+ #: plugin/class.seo-ultimate.php:1322
4276
  msgid "language pack updates"
4277
  msgstr ""
4278
 
4279
+ #: plugin/class.seo-ultimate.php:1353
4280
  #, php-format
4281
  msgid "%d %s"
4282
  msgstr ""
4283
 
4284
+ #: plugin/class.seo-ultimate.php:1359
4285
  #, php-format
4286
  msgid "Upgrade now to get %s. %s."
4287
  msgstr ""
4288
 
4289
+ #: plugin/class.seo-ultimate.php:1361
4290
  msgid "View changelog"
4291
  msgstr ""
4292
 
4293
+ #: plugin/class.seo-ultimate.php:1438
4294
  msgid "Active Modules: "
4295
  msgstr ""
4296
 
4297
+ #: plugin/class.seo-ultimate.php:1505
4298
  msgid ""
4299
  "<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
4300
  "search engine spiders. To resolve this, <a href=\"options-reading.php\" "
4302
  "discourage search engines&#8221; option."
4303
  msgstr ""
4304
 
4305
+ #: plugin/class.seo-ultimate.php:1586
4306
  msgid "Search Engine Listing"
4307
  msgstr ""
4308
 
4309
+ #: plugin/class.seo-ultimate.php:1587
4310
  msgid "Social Networks Listing"
4311
  msgstr ""
4312
 
4313
+ #: plugin/class.seo-ultimate.php:1588
4314
  msgid "Links"
4315
  msgstr ""
4316
 
4317
+ #: plugin/class.seo-ultimate.php:1690
4318
  #, php-format
4319
  msgid "%1$s %2$s by %3$s"
4320
  msgstr ""
4321
 
4322
+ #: plugin/class.seo-ultimate.php:1878
4323
  msgid "Home"
4324
  msgstr ""
4325
 
4326
+ #: plugin/class.seo-ultimate.php:1949
4327
  msgid "Author Archives"
4328
  msgstr ""
4329
 
4330
+ #: plugin/class.seo-ultimate.php:1978
4331
  msgid "Link Masks"
4332
  msgstr ""
4333