Version Description
Download this release
Release Info
Developer | SEO Design Solutions |
Plugin | SEO Ultimate |
Version | 7.6.2 |
Comparing to | |
See all releases |
Code changes from version 7.6.1 to 7.6.2
- includes/jlfunctions/arr.php +12 -12
- includes/jlfunctions/html.php +1 -1
- includes/jlfunctions/io.php +7 -7
- includes/jlfunctions/num.php +3 -2
- includes/jlfunctions/str.php +22 -22
- includes/jlfunctions/url.php +3 -3
- includes/jlfunctions/web.php +1 -1
- includes/jlsuggest/jlsuggest.css +1 -1
- includes/jlsuggest/jlsuggest.js +1 -1
- includes/jlwp/functions.php +14 -14
- modules/404s/fofs-log.php +12 -12
- modules/404s/fofs-settings.php +5 -4
- modules/404s/fofs.php +21 -3
- modules/author-links/author-links.php +1 -1
- modules/autolinks/autolinks.php +2 -1
- modules/autolinks/content-autolinks-settings.php +4 -4
- modules/autolinks/content-autolinks.php +22 -6
- modules/autolinks/footer-autolinks-settings.php +4 -4
- modules/autolinks/footer-autolinks.php +4 -4
- modules/canonical/canonical.php +2 -2
- modules/class.su-module.php +235 -74
- modules/files/files.php +15 -1
- modules/import-aiosp/import-aiosp.php +2 -2
- modules/internal-link-aliases/internal-link-aliases.php +5 -3
- modules/link-nofollow/link-nofollow.php +2 -2
- modules/linkbox/linkbox.php +2 -2
- modules/meta/meta-descriptions.php +7 -8
- modules/meta/meta-keywords.php +3 -3
- modules/meta/meta-robots.php +2 -2
- modules/meta/webmaster-verify.php +3 -3
- modules/misc/misc.php +20 -2
- modules/modules.css +39 -46
- modules/modules.js +22 -15
- modules/modules/modules.css +7 -40
- modules/modules/modules.js +3 -2
- modules/modules/modules.php +55 -34
- modules/more-links/more-links.php +2 -2
- modules/noindex/noindex.php +4 -4
- modules/opengraph/opengraph.php +101 -7
- modules/permalinks/permalinks.php +2 -3
- modules/rich-snippets/rich-snippets.php +4 -5
- modules/sdf-ads.css +72 -0
- modules/sdf-ads.js +64 -0
- modules/sds-blog/sds-blog.css +1 -1
- modules/sds-blog/sds-blog.php +121 -8
- modules/settings/global-settings.php +12 -12
- modules/settings/install.php +5 -5
- modules/settings/settings-data.php +4 -4
- modules/settings/settings.php +2 -2
- modules/settings/uninstall.php +4 -4
- modules/sharing-buttons/sharing-buttons.php +2 -2
- modules/slugs/slugs.php +4 -3
- modules/titles/titles.php +10 -11
- modules/user-code/user-code.php +18 -16
- modules/widgets/widgets.php +2 -2
- modules/wp-settings/wp-settings.php +16 -2
- plugin/class.seo-ultimate.php +125 -45
- plugin/global.css +5 -5
- plugin/global.js +2 -2
- plugin/images/page_seo.png +0 -0
- plugin/sdf/bootstrap/css/bootstrap-theme.admin.css +386 -0
- plugin/sdf/bootstrap/css/bootstrap.admin.css +5551 -0
- plugin/sdf/bootstrap/css/font-awesome.min.css +4 -0
- plugin/sdf/bootstrap/fonts/FontAwesome.otf +0 -0
- plugin/sdf/bootstrap/fonts/fontawesome-webfont.eot +0 -0
- plugin/sdf/bootstrap/fonts/fontawesome-webfont.svg +414 -0
- plugin/sdf/bootstrap/fonts/fontawesome-webfont.ttf +0 -0
- plugin/sdf/bootstrap/fonts/fontawesome-webfont.woff +0 -0
- plugin/sdf/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
- plugin/sdf/bootstrap/fonts/glyphicons-halflings-regular.svg +229 -0
- plugin/sdf/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
- plugin/sdf/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
- plugin/sdf/bootstrap/img/alpha.png +0 -0
- plugin/sdf/bootstrap/img/glyphicons-halflings-white.png +0 -0
- plugin/sdf/bootstrap/img/glyphicons-halflings.png +0 -0
- plugin/sdf/bootstrap/img/hue.png +0 -0
- plugin/sdf/bootstrap/img/saturation.png +0 -0
- plugin/sdf/bootstrap/js/bootstrap.min.js +7 -0
- plugin/sdf/bootstrap/js/modernizr-2.6.2-respond-1.1.0.min.js +11 -0
- plugin/sdf/sdf.admin.css +1050 -0
- plugin/sdf/sdf.wp-color.css +3 -0
- plugin/sdf/sdf.wp.css +4 -0
- plugin/seo_ultimate_banners_jsonp.json +15 -0
- readme.txt +6 -2
- seo-ultimate.php +6 -6
- translations/seo-ultimate-en_US.mo +0 -0
- translations/seo-ultimate-en_US.po +4406 -0
- translations/seo-ultimate-it_IT.mo +0 -0
- translations/seo-ultimate-it_IT.po +3404 -1152
includes/jlfunctions/arr.php
CHANGED
@@ -14,7 +14,7 @@ class suarr {
|
|
14 |
* @param array $array The array whose keys/values should be formatted.
|
15 |
* @return array The array with the key/value formats applied.
|
16 |
*/
|
17 |
-
function aprintf($keyformat, $valueformat, $array) {
|
18 |
$newarray = array();
|
19 |
foreach ($array as $key => $value) {
|
20 |
if ($keyformat) {
|
@@ -33,7 +33,7 @@ class suarr {
|
|
33 |
* @param array $array Passed by reference.
|
34 |
* @param mixed $value The value to remove.
|
35 |
*/
|
36 |
-
function remove_value(&$array, $value) {
|
37 |
$index = array_search($value, $array);
|
38 |
if ($index !== false)
|
39 |
unset($array[$index]);
|
@@ -46,7 +46,7 @@ class suarr {
|
|
46 |
*
|
47 |
* @return array
|
48 |
*/
|
49 |
-
function explode_lines($lines) {
|
50 |
$lines = explode("\n", $lines);
|
51 |
$lines = array_map('trim', $lines); //Remove any \r's
|
52 |
return $lines;
|
@@ -59,7 +59,7 @@ class suarr {
|
|
59 |
* @param array $arr Passed by reference
|
60 |
* @param string $valuekey The array key used to access the string values by which the arrays in $arr are to be sorted
|
61 |
*/
|
62 |
-
function vksort(&$arr, $valuekey) {
|
63 |
$valuekey = sustr::preg_filter('A-Za-z0-9 ', $valuekey);
|
64 |
uasort($arr, create_function('$a,$b', 'return strcasecmp($a["'.$valuekey.'"], $b["'.$valuekey.'"]);'));
|
65 |
}
|
@@ -71,7 +71,7 @@ class suarr {
|
|
71 |
* @param array $arr Passed by reference
|
72 |
* @param string $valuekey The array key used to access the string values by which the arrays in $arr are to be sorted
|
73 |
*/
|
74 |
-
function vklrsort(&$arr, $valuekey) {
|
75 |
$valuekey = sustr::preg_filter('A-Za-z0-9 ', $valuekey);
|
76 |
uasort($arr, create_function('$a,$b', 'return strlen($b["'.$valuekey.'"]) - strlen($a["'.$valuekey.'"]);'));
|
77 |
}
|
@@ -93,13 +93,13 @@ class suarr {
|
|
93 |
*
|
94 |
* @return array The flattened array
|
95 |
*/
|
96 |
-
function flatten_values($arr, $value_keys, $use_default_if_empty=false, $default='') {
|
97 |
foreach ((array)$value_keys as $key)
|
98 |
$arr = suarr::_flatten_values($arr, $key, $use_default_if_empty, $default);
|
99 |
return $arr;
|
100 |
}
|
101 |
|
102 |
-
function _flatten_values($arr, $value_key = 0, $use_default_if_empty=false, $default='') {
|
103 |
if (!is_array($arr) || !count($arr)) return array();
|
104 |
$newarr = array();
|
105 |
foreach ($arr as $key => $array_value) {
|
@@ -133,7 +133,7 @@ class suarr {
|
|
133 |
*
|
134 |
* @return array
|
135 |
*/
|
136 |
-
function key_replace($array, $key_changes, $recursive = true, $return_replaced_only = false) {
|
137 |
$newarray = array();
|
138 |
foreach ($array as $key => $value) {
|
139 |
$changed = false;
|
@@ -164,7 +164,7 @@ class suarr {
|
|
164 |
*
|
165 |
* @return array
|
166 |
*/
|
167 |
-
function value_replace($array, $value_changes, $recursive = true, $return_replaced_only = false) {
|
168 |
$newarray = array();
|
169 |
|
170 |
foreach ((array)$array as $key => $value) {
|
@@ -194,14 +194,14 @@ class suarr {
|
|
194 |
*
|
195 |
* @return array
|
196 |
*/
|
197 |
-
function simplify($arr, $keyloc, $valloc, $use_default_if_empty=false, $default='') {
|
198 |
$keys = suarr::flatten_values($arr, $keyloc, $use_default_if_empty, $default);
|
199 |
$values = suarr::flatten_values($arr, $valloc, $use_default_if_empty, $default);
|
200 |
return array_combine($keys, $values);
|
201 |
}
|
202 |
|
203 |
//Function based on http://php.net/manual/en/function.array-unique.php#82508
|
204 |
-
function in_array_i($str, $a) {
|
205 |
foreach($a as $v){
|
206 |
if (strcasecmp($str, $v)==0)
|
207 |
return true;
|
@@ -210,7 +210,7 @@ class suarr {
|
|
210 |
}
|
211 |
|
212 |
//Function based on http://php.net/manual/en/function.array-unique.php#82508
|
213 |
-
function array_unique_i($a) {
|
214 |
$n = array();
|
215 |
foreach($a as $k=>$v) {
|
216 |
if (!suarr::in_array_i($v, $n))
|
14 |
* @param array $array The array whose keys/values should be formatted.
|
15 |
* @return array The array with the key/value formats applied.
|
16 |
*/
|
17 |
+
static function aprintf($keyformat, $valueformat, $array) {
|
18 |
$newarray = array();
|
19 |
foreach ($array as $key => $value) {
|
20 |
if ($keyformat) {
|
33 |
* @param array $array Passed by reference.
|
34 |
* @param mixed $value The value to remove.
|
35 |
*/
|
36 |
+
static function remove_value(&$array, $value) {
|
37 |
$index = array_search($value, $array);
|
38 |
if ($index !== false)
|
39 |
unset($array[$index]);
|
46 |
*
|
47 |
* @return array
|
48 |
*/
|
49 |
+
static function explode_lines($lines) {
|
50 |
$lines = explode("\n", $lines);
|
51 |
$lines = array_map('trim', $lines); //Remove any \r's
|
52 |
return $lines;
|
59 |
* @param array $arr Passed by reference
|
60 |
* @param string $valuekey The array key used to access the string values by which the arrays in $arr are to be sorted
|
61 |
*/
|
62 |
+
static function vksort(&$arr, $valuekey) {
|
63 |
$valuekey = sustr::preg_filter('A-Za-z0-9 ', $valuekey);
|
64 |
uasort($arr, create_function('$a,$b', 'return strcasecmp($a["'.$valuekey.'"], $b["'.$valuekey.'"]);'));
|
65 |
}
|
71 |
* @param array $arr Passed by reference
|
72 |
* @param string $valuekey The array key used to access the string values by which the arrays in $arr are to be sorted
|
73 |
*/
|
74 |
+
static function vklrsort(&$arr, $valuekey) {
|
75 |
$valuekey = sustr::preg_filter('A-Za-z0-9 ', $valuekey);
|
76 |
uasort($arr, create_function('$a,$b', 'return strlen($b["'.$valuekey.'"]) - strlen($a["'.$valuekey.'"]);'));
|
77 |
}
|
93 |
*
|
94 |
* @return array The flattened array
|
95 |
*/
|
96 |
+
static function flatten_values($arr, $value_keys, $use_default_if_empty=false, $default='') {
|
97 |
foreach ((array)$value_keys as $key)
|
98 |
$arr = suarr::_flatten_values($arr, $key, $use_default_if_empty, $default);
|
99 |
return $arr;
|
100 |
}
|
101 |
|
102 |
+
static function _flatten_values($arr, $value_key = 0, $use_default_if_empty=false, $default='') {
|
103 |
if (!is_array($arr) || !count($arr)) return array();
|
104 |
$newarr = array();
|
105 |
foreach ($arr as $key => $array_value) {
|
133 |
*
|
134 |
* @return array
|
135 |
*/
|
136 |
+
static function key_replace($array, $key_changes, $recursive = true, $return_replaced_only = false) {
|
137 |
$newarray = array();
|
138 |
foreach ($array as $key => $value) {
|
139 |
$changed = false;
|
164 |
*
|
165 |
* @return array
|
166 |
*/
|
167 |
+
static function value_replace($array, $value_changes, $recursive = true, $return_replaced_only = false) {
|
168 |
$newarray = array();
|
169 |
|
170 |
foreach ((array)$array as $key => $value) {
|
194 |
*
|
195 |
* @return array
|
196 |
*/
|
197 |
+
static function simplify($arr, $keyloc, $valloc, $use_default_if_empty=false, $default='') {
|
198 |
$keys = suarr::flatten_values($arr, $keyloc, $use_default_if_empty, $default);
|
199 |
$values = suarr::flatten_values($arr, $valloc, $use_default_if_empty, $default);
|
200 |
return array_combine($keys, $values);
|
201 |
}
|
202 |
|
203 |
//Function based on http://php.net/manual/en/function.array-unique.php#82508
|
204 |
+
static function in_array_i($str, $a) {
|
205 |
foreach($a as $v){
|
206 |
if (strcasecmp($str, $v)==0)
|
207 |
return true;
|
210 |
}
|
211 |
|
212 |
//Function based on http://php.net/manual/en/function.array-unique.php#82508
|
213 |
+
static function array_unique_i($a) {
|
214 |
$n = array();
|
215 |
foreach($a as $k=>$v) {
|
216 |
if (!suarr::in_array_i($v, $n))
|
includes/jlfunctions/html.php
CHANGED
@@ -14,7 +14,7 @@ class suhtml {
|
|
14 |
*
|
15 |
* @return string
|
16 |
*/
|
17 |
-
function option_tags($options, $current) {
|
18 |
$html = '';
|
19 |
foreach ($options as $value => $label) {
|
20 |
if (is_array($label)) {
|
14 |
*
|
15 |
* @return string
|
16 |
*/
|
17 |
+
static function option_tags($options, $current) {
|
18 |
$html = '';
|
19 |
foreach ($options as $value => $label) {
|
20 |
if (is_array($label)) {
|
includes/jlfunctions/io.php
CHANGED
@@ -15,7 +15,7 @@ class suio {
|
|
15 |
*
|
16 |
* @return bool
|
17 |
*/
|
18 |
-
function is_file($filename, $path, $ext=false) {
|
19 |
$is_ext = strlen($ext) ? sustr::endswith($filename, '.'.ltrim($ext, '*.')) : true;
|
20 |
return is_file(suio::tslash($path).$filename) && $is_ext;
|
21 |
}
|
@@ -29,7 +29,7 @@ class suio {
|
|
29 |
*
|
30 |
* @return bool
|
31 |
*/
|
32 |
-
function is_dir($name, $path) {
|
33 |
return $name != '.' && $name != '..' && is_dir(suio::tslash($path).$name);
|
34 |
}
|
35 |
|
@@ -40,7 +40,7 @@ class suio {
|
|
40 |
*
|
41 |
* @return string
|
42 |
*/
|
43 |
-
function tslash($path) {
|
44 |
return suio::untslash($path).'/';
|
45 |
}
|
46 |
|
@@ -51,7 +51,7 @@ class suio {
|
|
51 |
*
|
52 |
* @return string
|
53 |
*/
|
54 |
-
function untslash($path) {
|
55 |
return rtrim($path, '/');
|
56 |
}
|
57 |
|
@@ -63,7 +63,7 @@ class suio {
|
|
63 |
*
|
64 |
* @return array An array of arrays which represent rows of the file.
|
65 |
*/
|
66 |
-
function import_csv($path) {
|
67 |
if (!is_readable($path)) return false;
|
68 |
|
69 |
$result = array();
|
@@ -107,7 +107,7 @@ class suio {
|
|
107 |
*
|
108 |
* @return false Returns a value only if conversion failed
|
109 |
*/
|
110 |
-
function export_csv($csv) {
|
111 |
header("Content-Type: text/csv");
|
112 |
$result = suio::print_csv($csv);
|
113 |
if ($result) die(); else return false;
|
@@ -120,7 +120,7 @@ class suio {
|
|
120 |
*
|
121 |
* @return bool Whether or not the conversion was successful
|
122 |
*/
|
123 |
-
function print_csv($csv) {
|
124 |
if (!is_array($csv) || !count($csv) || !is_array($csv[0])) return false;
|
125 |
|
126 |
$headers = array_keys($csv[0]);
|
15 |
*
|
16 |
* @return bool
|
17 |
*/
|
18 |
+
static function is_file($filename, $path, $ext=false) {
|
19 |
$is_ext = strlen($ext) ? sustr::endswith($filename, '.'.ltrim($ext, '*.')) : true;
|
20 |
return is_file(suio::tslash($path).$filename) && $is_ext;
|
21 |
}
|
29 |
*
|
30 |
* @return bool
|
31 |
*/
|
32 |
+
static function is_dir($name, $path) {
|
33 |
return $name != '.' && $name != '..' && is_dir(suio::tslash($path).$name);
|
34 |
}
|
35 |
|
40 |
*
|
41 |
* @return string
|
42 |
*/
|
43 |
+
static function tslash($path) {
|
44 |
return suio::untslash($path).'/';
|
45 |
}
|
46 |
|
51 |
*
|
52 |
* @return string
|
53 |
*/
|
54 |
+
static function untslash($path) {
|
55 |
return rtrim($path, '/');
|
56 |
}
|
57 |
|
63 |
*
|
64 |
* @return array An array of arrays which represent rows of the file.
|
65 |
*/
|
66 |
+
static function import_csv($path) {
|
67 |
if (!is_readable($path)) return false;
|
68 |
|
69 |
$result = array();
|
107 |
*
|
108 |
* @return false Returns a value only if conversion failed
|
109 |
*/
|
110 |
+
static function export_csv($csv) {
|
111 |
header("Content-Type: text/csv");
|
112 |
$result = suio::print_csv($csv);
|
113 |
if ($result) die(); else return false;
|
120 |
*
|
121 |
* @return bool Whether or not the conversion was successful
|
122 |
*/
|
123 |
+
static function print_csv($csv) {
|
124 |
if (!is_array($csv) || !count($csv) || !is_array($csv[0])) return false;
|
125 |
|
126 |
$headers = array_keys($csv[0]);
|
includes/jlfunctions/num.php
CHANGED
@@ -13,7 +13,7 @@ class sunum {
|
|
13 |
*
|
14 |
* @return int The lowest of the numbers.
|
15 |
*/
|
16 |
-
function lowest() {
|
17 |
$numbers = func_get_args();
|
18 |
$numbers = array_values($numbers);
|
19 |
|
@@ -29,4 +29,5 @@ class sunum {
|
|
29 |
}
|
30 |
return false;
|
31 |
}
|
32 |
-
}
|
|
13 |
*
|
14 |
* @return int The lowest of the numbers.
|
15 |
*/
|
16 |
+
static function lowest() {
|
17 |
$numbers = func_get_args();
|
18 |
$numbers = array_values($numbers);
|
19 |
|
29 |
}
|
30 |
return false;
|
31 |
}
|
32 |
+
}
|
33 |
+
?>
|
includes/jlfunctions/str.php
CHANGED
@@ -13,7 +13,7 @@ class sustr {
|
|
13 |
* @param string $sub The "needle" string.
|
14 |
* @return bool Whether or not $str starts with $sub.
|
15 |
*/
|
16 |
-
function startswith( $str, $sub ) {
|
17 |
return ( substr( $str, 0, strlen( $sub ) ) === $sub );
|
18 |
}
|
19 |
|
@@ -24,7 +24,7 @@ class sustr {
|
|
24 |
* @param string $sub The "needle" string.
|
25 |
* @return bool Whether or not $str ends with $sub.
|
26 |
*/
|
27 |
-
function endswith( $str, $sub ) {
|
28 |
return ( substr( $str, strlen( $str ) - strlen( $sub ) ) === $sub );
|
29 |
}
|
30 |
|
@@ -36,7 +36,7 @@ class sustr {
|
|
36 |
*
|
37 |
* @return string The string with $start at the beginning
|
38 |
*/
|
39 |
-
function startwith( $str, $start ) {
|
40 |
if (!sustr::startswith($str, $start))
|
41 |
return $start.$str;
|
42 |
else
|
@@ -51,7 +51,7 @@ class sustr {
|
|
51 |
*
|
52 |
* @return string The string with $end at the end
|
53 |
*/
|
54 |
-
function endwith( $str, $end ) {
|
55 |
if (!sustr::endswith($str, $end))
|
56 |
return $str.$end;
|
57 |
else
|
@@ -65,7 +65,7 @@ class sustr {
|
|
65 |
* @param string $sub
|
66 |
* @return bool
|
67 |
*/
|
68 |
-
function has($str, $sub) {
|
69 |
return (strpos($str, $sub) !== false);
|
70 |
}
|
71 |
|
@@ -76,7 +76,7 @@ class sustr {
|
|
76 |
* @param string $sub
|
77 |
* @return bool
|
78 |
*/
|
79 |
-
function ihas($str, $sub) {
|
80 |
$str = strtolower($str);
|
81 |
$sub = strtolower($sub);
|
82 |
return (strpos($str, $sub) !== false);
|
@@ -90,7 +90,7 @@ class sustr {
|
|
90 |
* @param string $truncate The string that should be added to the end of a truncated string.
|
91 |
* @return string
|
92 |
*/
|
93 |
-
function truncate( $str, $maxlen, $truncate = '...', $maintain_words=false ) {
|
94 |
|
95 |
if ( strlen($str) > $maxlen ) {
|
96 |
$str = substr( $str, 0, $maxlen - strlen($truncate) );
|
@@ -108,7 +108,7 @@ class sustr {
|
|
108 |
* @param string $sub
|
109 |
* @return string
|
110 |
*/
|
111 |
-
function upto($str, $sub) {
|
112 |
$end = strpos($str, $sub);
|
113 |
if ($end === false)
|
114 |
return $str;
|
@@ -126,7 +126,7 @@ class sustr {
|
|
126 |
* @param bool $ucwords Whether or not to capitalize the first letter of every word in the list.
|
127 |
* @return string|array The items in a natural-language list.
|
128 |
*/
|
129 |
-
function nl_implode($items, $var=false, $ucwords=false) {
|
130 |
|
131 |
if (is_array($items) ) {
|
132 |
|
@@ -162,7 +162,7 @@ class sustr {
|
|
162 |
* @param string $totrim The suffix that should be trimmed if found.
|
163 |
* @return string The possibly-trimmed string.
|
164 |
*/
|
165 |
-
function rtrim_str($str, $totrim) {
|
166 |
if (strlen($str) > strlen($totrim) && sustr::endswith($str, $totrim))
|
167 |
return substr($str, 0, -strlen($totrim));
|
168 |
|
@@ -176,7 +176,7 @@ class sustr {
|
|
176 |
* @param string $totrim The suffix that should be trimmed if it or a portion of it is found.
|
177 |
* @return string The possibly-trimmed string.
|
178 |
*/
|
179 |
-
function rtrim_substr($str, $totrim) {
|
180 |
for ($i = strlen($totrim); $i > 0; $i--) {
|
181 |
$totrimsub = substr($totrim, 0, $i);
|
182 |
if (sustr::endswith($str, $totrimsub))
|
@@ -193,14 +193,14 @@ class sustr {
|
|
193 |
* @param string $totrim The prefix that should be trimmed if found.
|
194 |
* @return string The possibly-trimmed string.
|
195 |
*/
|
196 |
-
function ltrim_str($str, $totrim) {
|
197 |
if (strlen($str) > strlen($totrim) && sustr::startswith($str, $totrim))
|
198 |
return substr($str, strlen($totrim));
|
199 |
|
200 |
return $str;
|
201 |
}
|
202 |
|
203 |
-
function batch_replace($search, $replace, $subjects) {
|
204 |
$subjects = array_unique((array)$subjects);
|
205 |
$results = array();
|
206 |
foreach ($subjects as $subject) {
|
@@ -209,16 +209,16 @@ class sustr {
|
|
209 |
return $results;
|
210 |
}
|
211 |
|
212 |
-
function to_int($str) {
|
213 |
return intval(sustr::preg_filter('0-9', strval($str)));
|
214 |
}
|
215 |
|
216 |
-
function preg_filter($filter, $str) {
|
217 |
$filter = str_replace('/', '\\/', $filter);
|
218 |
return preg_replace("/[^{$filter}]/", '', $str);
|
219 |
}
|
220 |
|
221 |
-
function preg_escape($str, $delim='%') {
|
222 |
$chars = "\ ^ . $ | ( ) [ ] * + ? { } , ".$delim;
|
223 |
$chars = explode(' ', $chars);
|
224 |
foreach ($chars as $char)
|
@@ -226,12 +226,12 @@ class sustr {
|
|
226 |
return $str;
|
227 |
}
|
228 |
|
229 |
-
function htmlsafe_str_replace($search, $replace, $subject, $limit, &$count, $exclude_tags = false) {
|
230 |
$search = sustr::preg_escape($search, '');
|
231 |
return sustr::htmlsafe_preg_replace($search, $replace, $subject, $limit, $count, $exclude_tags);
|
232 |
}
|
233 |
|
234 |
-
function htmlsafe_preg_replace($search, $replace, $subject, $limit, &$count, $exclude_tags = false) {
|
235 |
|
236 |
if (!$exclude_tags || !is_array($exclude_tags)) $exclude_tags = array('a', 'pre', 'code', 'kbd');
|
237 |
if (count($exclude_tags) > 1)
|
@@ -248,7 +248,7 @@ class sustr {
|
|
248 |
return preg_replace($search_regex, $replace, $subject, $limit, $count);
|
249 |
}
|
250 |
|
251 |
-
function tclcwords($str) {
|
252 |
$words = explode(' ', $str);
|
253 |
$new_words = array();
|
254 |
foreach ($words as $word) {
|
@@ -260,7 +260,7 @@ class sustr {
|
|
260 |
return implode(' ', $new_words);
|
261 |
}
|
262 |
|
263 |
-
function camel_case($string) {
|
264 |
$string = strtolower($string);
|
265 |
$string = preg_replace('@[^a-z0-9]@', ' ', $string);
|
266 |
$words = array_filter(explode(' ', $string));
|
@@ -271,7 +271,7 @@ class sustr {
|
|
271 |
return $string;
|
272 |
}
|
273 |
|
274 |
-
function wildcards_to_regex($wcstr) {
|
275 |
$wcstr = sustr::preg_escape($wcstr, '@');
|
276 |
$wcstr = str_replace('\\*', '.*', $wcstr);
|
277 |
$regex = "@^$wcstr$@i";
|
@@ -279,7 +279,7 @@ class sustr {
|
|
279 |
return $regex;
|
280 |
}
|
281 |
|
282 |
-
function tolower($str) {
|
283 |
if (function_exists('mb_strtolower'))
|
284 |
return mb_strtolower($str);
|
285 |
|
13 |
* @param string $sub The "needle" string.
|
14 |
* @return bool Whether or not $str starts with $sub.
|
15 |
*/
|
16 |
+
static function startswith( $str, $sub ) {
|
17 |
return ( substr( $str, 0, strlen( $sub ) ) === $sub );
|
18 |
}
|
19 |
|
24 |
* @param string $sub The "needle" string.
|
25 |
* @return bool Whether or not $str ends with $sub.
|
26 |
*/
|
27 |
+
static function endswith( $str, $sub ) {
|
28 |
return ( substr( $str, strlen( $str ) - strlen( $sub ) ) === $sub );
|
29 |
}
|
30 |
|
36 |
*
|
37 |
* @return string The string with $start at the beginning
|
38 |
*/
|
39 |
+
static function startwith( $str, $start ) {
|
40 |
if (!sustr::startswith($str, $start))
|
41 |
return $start.$str;
|
42 |
else
|
51 |
*
|
52 |
* @return string The string with $end at the end
|
53 |
*/
|
54 |
+
static function endwith( $str, $end ) {
|
55 |
if (!sustr::endswith($str, $end))
|
56 |
return $str.$end;
|
57 |
else
|
65 |
* @param string $sub
|
66 |
* @return bool
|
67 |
*/
|
68 |
+
static function has($str, $sub) {
|
69 |
return (strpos($str, $sub) !== false);
|
70 |
}
|
71 |
|
76 |
* @param string $sub
|
77 |
* @return bool
|
78 |
*/
|
79 |
+
static function ihas($str, $sub) {
|
80 |
$str = strtolower($str);
|
81 |
$sub = strtolower($sub);
|
82 |
return (strpos($str, $sub) !== false);
|
90 |
* @param string $truncate The string that should be added to the end of a truncated string.
|
91 |
* @return string
|
92 |
*/
|
93 |
+
static function truncate( $str, $maxlen, $truncate = '...', $maintain_words=false ) {
|
94 |
|
95 |
if ( strlen($str) > $maxlen ) {
|
96 |
$str = substr( $str, 0, $maxlen - strlen($truncate) );
|
108 |
* @param string $sub
|
109 |
* @return string
|
110 |
*/
|
111 |
+
static function upto($str, $sub) {
|
112 |
$end = strpos($str, $sub);
|
113 |
if ($end === false)
|
114 |
return $str;
|
126 |
* @param bool $ucwords Whether or not to capitalize the first letter of every word in the list.
|
127 |
* @return string|array The items in a natural-language list.
|
128 |
*/
|
129 |
+
static function nl_implode($items, $var=false, $ucwords=false) {
|
130 |
|
131 |
if (is_array($items) ) {
|
132 |
|
162 |
* @param string $totrim The suffix that should be trimmed if found.
|
163 |
* @return string The possibly-trimmed string.
|
164 |
*/
|
165 |
+
static function rtrim_str($str, $totrim) {
|
166 |
if (strlen($str) > strlen($totrim) && sustr::endswith($str, $totrim))
|
167 |
return substr($str, 0, -strlen($totrim));
|
168 |
|
176 |
* @param string $totrim The suffix that should be trimmed if it or a portion of it is found.
|
177 |
* @return string The possibly-trimmed string.
|
178 |
*/
|
179 |
+
static function rtrim_substr($str, $totrim) {
|
180 |
for ($i = strlen($totrim); $i > 0; $i--) {
|
181 |
$totrimsub = substr($totrim, 0, $i);
|
182 |
if (sustr::endswith($str, $totrimsub))
|
193 |
* @param string $totrim The prefix that should be trimmed if found.
|
194 |
* @return string The possibly-trimmed string.
|
195 |
*/
|
196 |
+
static function ltrim_str($str, $totrim) {
|
197 |
if (strlen($str) > strlen($totrim) && sustr::startswith($str, $totrim))
|
198 |
return substr($str, strlen($totrim));
|
199 |
|
200 |
return $str;
|
201 |
}
|
202 |
|
203 |
+
static function batch_replace($search, $replace, $subjects) {
|
204 |
$subjects = array_unique((array)$subjects);
|
205 |
$results = array();
|
206 |
foreach ($subjects as $subject) {
|
209 |
return $results;
|
210 |
}
|
211 |
|
212 |
+
static function to_int($str) {
|
213 |
return intval(sustr::preg_filter('0-9', strval($str)));
|
214 |
}
|
215 |
|
216 |
+
static function preg_filter($filter, $str) {
|
217 |
$filter = str_replace('/', '\\/', $filter);
|
218 |
return preg_replace("/[^{$filter}]/", '', $str);
|
219 |
}
|
220 |
|
221 |
+
static function preg_escape($str, $delim='%') {
|
222 |
$chars = "\ ^ . $ | ( ) [ ] * + ? { } , ".$delim;
|
223 |
$chars = explode(' ', $chars);
|
224 |
foreach ($chars as $char)
|
226 |
return $str;
|
227 |
}
|
228 |
|
229 |
+
static function htmlsafe_str_replace($search, $replace, $subject, $limit, &$count, $exclude_tags = false) {
|
230 |
$search = sustr::preg_escape($search, '');
|
231 |
return sustr::htmlsafe_preg_replace($search, $replace, $subject, $limit, $count, $exclude_tags);
|
232 |
}
|
233 |
|
234 |
+
static function htmlsafe_preg_replace($search, $replace, $subject, $limit, &$count, $exclude_tags = false) {
|
235 |
|
236 |
if (!$exclude_tags || !is_array($exclude_tags)) $exclude_tags = array('a', 'pre', 'code', 'kbd');
|
237 |
if (count($exclude_tags) > 1)
|
248 |
return preg_replace($search_regex, $replace, $subject, $limit, $count);
|
249 |
}
|
250 |
|
251 |
+
static function tclcwords($str) {
|
252 |
$words = explode(' ', $str);
|
253 |
$new_words = array();
|
254 |
foreach ($words as $word) {
|
260 |
return implode(' ', $new_words);
|
261 |
}
|
262 |
|
263 |
+
static function camel_case($string) {
|
264 |
$string = strtolower($string);
|
265 |
$string = preg_replace('@[^a-z0-9]@', ' ', $string);
|
266 |
$words = array_filter(explode(' ', $string));
|
271 |
return $string;
|
272 |
}
|
273 |
|
274 |
+
static function wildcards_to_regex($wcstr) {
|
275 |
$wcstr = sustr::preg_escape($wcstr, '@');
|
276 |
$wcstr = str_replace('\\*', '.*', $wcstr);
|
277 |
$regex = "@^$wcstr$@i";
|
279 |
return $regex;
|
280 |
}
|
281 |
|
282 |
+
static function tolower($str) {
|
283 |
if (function_exists('mb_strtolower'))
|
284 |
return mb_strtolower($str);
|
285 |
|
includes/jlfunctions/url.php
CHANGED
@@ -11,7 +11,7 @@ class suurl {
|
|
11 |
*
|
12 |
* @return string The current URL.
|
13 |
*/
|
14 |
-
function current() {
|
15 |
$url = 'http';
|
16 |
if (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on") $url .= "s";
|
17 |
$url .= "://";
|
@@ -29,7 +29,7 @@ class suurl {
|
|
29 |
* @param string $url2
|
30 |
* @return bool
|
31 |
*/
|
32 |
-
function equal($url1, $url2) {
|
33 |
|
34 |
if (($url1parts = parse_url($url1)) && isset($url1parts['host'])) {
|
35 |
$url1parts['host'] = strtolower($url1parts['host']);
|
@@ -50,7 +50,7 @@ class suurl {
|
|
50 |
* @param array $parts
|
51 |
* @return string
|
52 |
*/
|
53 |
-
function build($parts) {
|
54 |
|
55 |
$url = '';
|
56 |
|
11 |
*
|
12 |
* @return string The current URL.
|
13 |
*/
|
14 |
+
static function current() {
|
15 |
$url = 'http';
|
16 |
if (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on") $url .= "s";
|
17 |
$url .= "://";
|
29 |
* @param string $url2
|
30 |
* @return bool
|
31 |
*/
|
32 |
+
static function equal($url1, $url2) {
|
33 |
|
34 |
if (($url1parts = parse_url($url1)) && isset($url1parts['host'])) {
|
35 |
$url1parts['host'] = strtolower($url1parts['host']);
|
50 |
* @param array $parts
|
51 |
* @return string
|
52 |
*/
|
53 |
+
static function build($parts) {
|
54 |
|
55 |
$url = '';
|
56 |
|
includes/jlfunctions/web.php
CHANGED
@@ -6,7 +6,7 @@ Copyright (c)2010 John Lamansky
|
|
6 |
|
7 |
class suweb {
|
8 |
|
9 |
-
function is_search_engine_ua($user_agent) {
|
10 |
$ua_keywords = array(
|
11 |
'Googlebot' //Google
|
12 |
, 'Yahoo', 'Y!' //Yahoo
|
6 |
|
7 |
class suweb {
|
8 |
|
9 |
+
static function is_search_engine_ua($user_agent) {
|
10 |
$ua_keywords = array(
|
11 |
'Googlebot' //Google
|
12 |
, 'Yahoo', 'Y!' //Yahoo
|
includes/jlsuggest/jlsuggest.css
CHANGED
@@ -5,7 +5,7 @@ input.jlsuggest,
|
|
5 |
}
|
6 |
|
7 |
input.jls_loading {
|
8 |
-
background-image: url(loading.gif);
|
9 |
background-repeat: no-repeat;
|
10 |
background-position: 98% center;
|
11 |
}
|
5 |
}
|
6 |
|
7 |
input.jls_loading {
|
8 |
+
background-image: url(loading.gif) !important;
|
9 |
background-repeat: no-repeat;
|
10 |
background-position: 98% center;
|
11 |
}
|
includes/jlsuggest/jlsuggest.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
jQuery(document).ready( function($) {
|
2 |
-
$('input.jlsuggest', '.
|
3 |
var params = $(this).attr('su:params') ? '&' + $(this).attr('su:params') : '';
|
4 |
$(this).jlsuggest(ajaxurl + '?action=su-jlsuggest-autocomplete' + params,
|
5 |
{ delay: 500, minchars: 2, multiple: false, textDest: true, noUrls: true } );
|
1 |
jQuery(document).ready( function($) {
|
2 |
+
$('input.jlsuggest', '.sdf-admin,#su-postmeta-box').each(function() {
|
3 |
var params = $(this).attr('su:params') ? '&' + $(this).attr('su:params') : '';
|
4 |
$(this).jlsuggest(ajaxurl + '?action=su-jlsuggest-autocomplete' + params,
|
5 |
{ delay: 500, minchars: 2, multiple: false, textDest: true, noUrls: true } );
|
includes/jlwp/functions.php
CHANGED
@@ -12,7 +12,7 @@ class suwp {
|
|
12 |
*
|
13 |
* @return int|false The ID of the current post, or false on failure.
|
14 |
*/
|
15 |
-
function get_post_id() {
|
16 |
if (is_admin()) {
|
17 |
if (!empty($_REQUEST['post']))
|
18 |
return intval($_REQUEST['post']);
|
@@ -30,7 +30,7 @@ class suwp {
|
|
30 |
return false;
|
31 |
}
|
32 |
|
33 |
-
function is_tax($taxonomy='', $term='') {
|
34 |
if ($taxonomy) {
|
35 |
switch ($taxonomy) {
|
36 |
case 'category': return is_category($term); break;
|
@@ -42,18 +42,18 @@ class suwp {
|
|
42 |
}
|
43 |
}
|
44 |
|
45 |
-
function get_taxonomies() {
|
46 |
$taxonomies = get_taxonomies(array('public' => true), 'objects');
|
47 |
if (isset($taxonomies['post_format']) && $taxonomies['post_format']->labels->name == _x( 'Format', 'post format' ))
|
48 |
$taxonomies['post_format']->labels->name = __('Post Format Archives', 'seo-ultimate');
|
49 |
return $taxonomies;
|
50 |
}
|
51 |
|
52 |
-
function get_taxonomy_names() {
|
53 |
return get_taxonomies(array('public' => true), 'names');
|
54 |
}
|
55 |
|
56 |
-
function get_object_taxonomies($post_type) {
|
57 |
$taxonomies = get_object_taxonomies($post_type, 'objects');
|
58 |
$taxonomies = wp_filter_object_list($taxonomies, array('public' => true, 'show_ui' => true));
|
59 |
return $taxonomies;
|
@@ -72,12 +72,12 @@ class suwp {
|
|
72 |
* @param callback $ua The user agent to use.
|
73 |
* @return object $rss The RSS object.
|
74 |
*/
|
75 |
-
function load_rss($url, $ua) {
|
76 |
$ua = addslashes($ua);
|
77 |
$uafunc = create_function('', "return '$ua';");
|
78 |
add_filter('http_headers_useragent', $uafunc);
|
79 |
-
require_once (ABSPATH . WPINC . '/
|
80 |
-
$rss =
|
81 |
remove_filter('http_headers_useragent', $uafunc);
|
82 |
return $rss;
|
83 |
}
|
@@ -85,7 +85,7 @@ class suwp {
|
|
85 |
/**
|
86 |
* @return string
|
87 |
*/
|
88 |
-
function add_backup_url($text) {
|
89 |
$anchor = __('backup your database', 'seo-ultimate');
|
90 |
return str_replace($anchor, '<a href="'.suwp::get_backup_url().'" target="_blank">'.$anchor.'</a>', $text);
|
91 |
}
|
@@ -93,14 +93,14 @@ class suwp {
|
|
93 |
/**
|
94 |
* @return string
|
95 |
*/
|
96 |
-
function get_backup_url() {
|
97 |
if (is_plugin_active('wp-db-backup/wp-db-backup.php'))
|
98 |
return admin_url('tools.php?page=wp-db-backup');
|
99 |
else
|
100 |
return 'http://codex.wordpress.org/Backing_Up_Your_Database';
|
101 |
}
|
102 |
|
103 |
-
function get_edit_term_link($id, $taxonomy) {
|
104 |
$tax_obj = get_taxonomy($taxonomy);
|
105 |
if ($tax_obj->show_ui)
|
106 |
return get_edit_term_link($id, $taxonomy);
|
@@ -131,7 +131,7 @@ class suwp {
|
|
131 |
return $term_slug;
|
132 |
}
|
133 |
|
134 |
-
function permalink_mode() {
|
135 |
if (strlen($struct = get_option('permalink_structure'))) {
|
136 |
if (sustr::startswith($struct, '/index.php/'))
|
137 |
return SUWP_INDEX_PERMALINKS;
|
@@ -141,14 +141,14 @@ class suwp {
|
|
141 |
return SUWP_QUERY_PERMALINKS;
|
142 |
}
|
143 |
|
144 |
-
function get_blog_home_url() {
|
145 |
if ('page' == get_option('show_on_front') && $page_id = (int)get_option('page_for_posts'))
|
146 |
return get_permalink($page_id);
|
147 |
|
148 |
return home_url('/');
|
149 |
}
|
150 |
|
151 |
-
function get_admin_scope() {
|
152 |
if (is_blog_admin())
|
153 |
return 'blog';
|
154 |
|
12 |
*
|
13 |
* @return int|false The ID of the current post, or false on failure.
|
14 |
*/
|
15 |
+
static function get_post_id() {
|
16 |
if (is_admin()) {
|
17 |
if (!empty($_REQUEST['post']))
|
18 |
return intval($_REQUEST['post']);
|
30 |
return false;
|
31 |
}
|
32 |
|
33 |
+
static function is_tax($taxonomy='', $term='') {
|
34 |
if ($taxonomy) {
|
35 |
switch ($taxonomy) {
|
36 |
case 'category': return is_category($term); break;
|
42 |
}
|
43 |
}
|
44 |
|
45 |
+
static function get_taxonomies() {
|
46 |
$taxonomies = get_taxonomies(array('public' => true), 'objects');
|
47 |
if (isset($taxonomies['post_format']) && $taxonomies['post_format']->labels->name == _x( 'Format', 'post format' ))
|
48 |
$taxonomies['post_format']->labels->name = __('Post Format Archives', 'seo-ultimate');
|
49 |
return $taxonomies;
|
50 |
}
|
51 |
|
52 |
+
static function get_taxonomy_names() {
|
53 |
return get_taxonomies(array('public' => true), 'names');
|
54 |
}
|
55 |
|
56 |
+
static function get_object_taxonomies($post_type) {
|
57 |
$taxonomies = get_object_taxonomies($post_type, 'objects');
|
58 |
$taxonomies = wp_filter_object_list($taxonomies, array('public' => true, 'show_ui' => true));
|
59 |
return $taxonomies;
|
72 |
* @param callback $ua The user agent to use.
|
73 |
* @return object $rss The RSS object.
|
74 |
*/
|
75 |
+
static function load_rss($url, $ua) {
|
76 |
$ua = addslashes($ua);
|
77 |
$uafunc = create_function('', "return '$ua';");
|
78 |
add_filter('http_headers_useragent', $uafunc);
|
79 |
+
require_once (ABSPATH . WPINC . '/class-simplepie.php');
|
80 |
+
$rss = fetch_feed($url);
|
81 |
remove_filter('http_headers_useragent', $uafunc);
|
82 |
return $rss;
|
83 |
}
|
85 |
/**
|
86 |
* @return string
|
87 |
*/
|
88 |
+
static function add_backup_url($text) {
|
89 |
$anchor = __('backup your database', 'seo-ultimate');
|
90 |
return str_replace($anchor, '<a href="'.suwp::get_backup_url().'" target="_blank">'.$anchor.'</a>', $text);
|
91 |
}
|
93 |
/**
|
94 |
* @return string
|
95 |
*/
|
96 |
+
static function get_backup_url() {
|
97 |
if (is_plugin_active('wp-db-backup/wp-db-backup.php'))
|
98 |
return admin_url('tools.php?page=wp-db-backup');
|
99 |
else
|
100 |
return 'http://codex.wordpress.org/Backing_Up_Your_Database';
|
101 |
}
|
102 |
|
103 |
+
static function get_edit_term_link($id, $taxonomy) {
|
104 |
$tax_obj = get_taxonomy($taxonomy);
|
105 |
if ($tax_obj->show_ui)
|
106 |
return get_edit_term_link($id, $taxonomy);
|
131 |
return $term_slug;
|
132 |
}
|
133 |
|
134 |
+
static function permalink_mode() {
|
135 |
if (strlen($struct = get_option('permalink_structure'))) {
|
136 |
if (sustr::startswith($struct, '/index.php/'))
|
137 |
return SUWP_INDEX_PERMALINKS;
|
141 |
return SUWP_QUERY_PERMALINKS;
|
142 |
}
|
143 |
|
144 |
+
static function get_blog_home_url() {
|
145 |
if ('page' == get_option('show_on_front') && $page_id = (int)get_option('page_for_posts'))
|
146 |
return get_permalink($page_id);
|
147 |
|
148 |
return home_url('/');
|
149 |
}
|
150 |
|
151 |
+
static function get_admin_scope() {
|
152 |
if (is_blog_admin())
|
153 |
return 'blog';
|
154 |
|
modules/404s/fofs-log.php
CHANGED
@@ -15,14 +15,14 @@ add_filter('su_settings_export_array', 'su_fofs_log_export_filter');
|
|
15 |
|
16 |
class SU_FofsLog extends SU_Module {
|
17 |
|
18 |
-
function get_parent_module() { return 'fofs'; }
|
19 |
-
function get_child_order() { return 10; }
|
20 |
-
function is_independent_module() { return false; }
|
21 |
|
22 |
-
function get_module_title() { return __('404 Monitor Log', 'seo-ultimate'); }
|
23 |
function get_module_subtitle() { return __('Log', 'seo-ultimate'); }
|
24 |
|
25 |
-
function has_menu_count() { return true; }
|
26 |
function get_settings_key() { return '404s'; }
|
27 |
|
28 |
function get_menu_count() {
|
@@ -64,7 +64,7 @@ class SU_FofsLog extends SU_Module {
|
|
64 |
}
|
65 |
|
66 |
function queue_admin_scripts() {
|
67 |
-
if ($this->is_module_admin_page()) wp_enqueue_script('scriptaculous-effects');
|
68 |
}
|
69 |
|
70 |
function log_hit($hit) {
|
@@ -192,8 +192,8 @@ class SU_FofsLog extends SU_Module {
|
|
192 |
, date_i18n(get_option('date_format'), $data['last_hit_time'])
|
193 |
, date_i18n(get_option('time_format'), $data['last_hit_time'])
|
194 |
)
|
195 |
-
, 'referers' => number_format_i18n(count($data['referers'])) . (count($data['referers']) ? " <a href='#'
|
196 |
-
, 'user-agents' => number_format_i18n(count($data['user_agents'])) . (count($data['user_agents']) ? " <a href='#'
|
197 |
));
|
198 |
|
199 |
echo "\t</tr>\n";
|
@@ -202,9 +202,9 @@ class SU_FofsLog extends SU_Module {
|
|
202 |
|
203 |
if (count($data['referers'])) {
|
204 |
|
205 |
-
echo "<div id='su-404s-hit-$md5url-referers' class='su-404s-hit-referers-list' style='display:
|
206 |
echo "\t\t\t<div><strong>".__('Referring URLs', 'seo-ultimate')."</strong> — ";
|
207 |
-
echo "<a href='#'
|
208 |
echo "</div>\n";
|
209 |
echo "\t\t\t<ul>\n";
|
210 |
|
@@ -223,9 +223,9 @@ class SU_FofsLog extends SU_Module {
|
|
223 |
echo "\t<tr class='su-404s-hit-user-agents$new'>\n\t\t<td colspan='".count($headers)."'>";
|
224 |
|
225 |
if (count($data['user_agents'])) {
|
226 |
-
echo "<div id='su-404s-hit-$md5url-user-agents' class='su-404s-hit-user-agents-list'
|
227 |
echo "\t\t\t<div><strong>".__('User Agents', 'seo-ultimate')."</strong> — ";
|
228 |
-
echo "<a href='#'
|
229 |
echo "</div>\n";
|
230 |
echo "\t\t\t<ul>\n";
|
231 |
|
15 |
|
16 |
class SU_FofsLog extends SU_Module {
|
17 |
|
18 |
+
static function get_parent_module() { return 'fofs'; }
|
19 |
+
static function get_child_order() { return 10; }
|
20 |
+
static function is_independent_module() { return false; }
|
21 |
|
22 |
+
static function get_module_title() { return __('404 Monitor Log', 'seo-ultimate'); }
|
23 |
function get_module_subtitle() { return __('Log', 'seo-ultimate'); }
|
24 |
|
25 |
+
static function has_menu_count() { return true; }
|
26 |
function get_settings_key() { return '404s'; }
|
27 |
|
28 |
function get_menu_count() {
|
64 |
}
|
65 |
|
66 |
function queue_admin_scripts() {
|
67 |
+
//if ($this->is_module_admin_page()) wp_enqueue_script('scriptaculous-effects');
|
68 |
}
|
69 |
|
70 |
function log_hit($hit) {
|
192 |
, date_i18n(get_option('date_format'), $data['last_hit_time'])
|
193 |
, date_i18n(get_option('time_format'), $data['last_hit_time'])
|
194 |
)
|
195 |
+
, 'referers' => number_format_i18n(count($data['referers'])) . (count($data['referers']) ? " <a href='#' class='su_toggle_hide' data-toggle='su-404s-hit-$md5url-referers'><img src='{$this->module_dir_url}hit-details.png' title='".__('View list of referring URLs', 'seo-ultimate')."' /></a>" : '')
|
196 |
+
, 'user-agents' => number_format_i18n(count($data['user_agents'])) . (count($data['user_agents']) ? " <a href='#' class='su_toggle_hide' data-toggle='su-404s-hit-$md5url-user-agents'><img src='{$this->module_dir_url}hit-details.png' title='".__('View list of user agents', 'seo-ultimate')."' /></a>" : '')
|
197 |
));
|
198 |
|
199 |
echo "\t</tr>\n";
|
202 |
|
203 |
if (count($data['referers'])) {
|
204 |
|
205 |
+
echo "<div id='su-404s-hit-$md5url-referers' class='su-404s-hit-referers-list' style='display:none;'>\n";
|
206 |
echo "\t\t\t<div><strong>".__('Referring URLs', 'seo-ultimate')."</strong> — ";
|
207 |
+
echo "<a href='#' class='su_toggle_up' data-toggle='su-404s-hit-$md5url-referers'>".__('Hide list', 'seo-ultimate')."</a>";
|
208 |
echo "</div>\n";
|
209 |
echo "\t\t\t<ul>\n";
|
210 |
|
223 |
echo "\t<tr class='su-404s-hit-user-agents$new'>\n\t\t<td colspan='".count($headers)."'>";
|
224 |
|
225 |
if (count($data['user_agents'])) {
|
226 |
+
echo "<div id='su-404s-hit-$md5url-user-agents' class='su-404s-hit-user-agents-list' style='display:none;'>\n";
|
227 |
echo "\t\t\t<div><strong>".__('User Agents', 'seo-ultimate')."</strong> — ";
|
228 |
+
echo "<a href='#' class='su_toggle_up' data-toggle='su-404s-hit-$md5url-user-agents'>".__('Hide list', 'seo-ultimate')."</a>";
|
229 |
echo "</div>\n";
|
230 |
echo "\t\t\t<ul>\n";
|
231 |
|
modules/404s/fofs-settings.php
CHANGED
@@ -9,11 +9,11 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_FofsSettings extends SU_Module {
|
11 |
|
12 |
-
function get_parent_module() { return 'fofs'; }
|
13 |
-
function get_child_order() { return 20; }
|
14 |
-
function is_independent_module() { return false; }
|
15 |
|
16 |
-
function get_module_title() { return __('404 Monitor Settings', 'seo-ultimate'); }
|
17 |
function get_module_subtitle() { return __('Settings', 'seo-ultimate'); }
|
18 |
function get_settings_key() { return '404s'; }
|
19 |
|
@@ -33,6 +33,7 @@ class SU_FofsSettings extends SU_Module {
|
|
33 |
}
|
34 |
|
35 |
function admin_page_contents() {
|
|
|
36 |
$this->admin_form_start();
|
37 |
$this->checkbox('log_enabled', __('Continue monitoring for new 404 errors', 'seo-ultimate'), __('Monitoring Settings', 'seo-ultimate'));
|
38 |
$this->checkboxes(array(
|
9 |
|
10 |
class SU_FofsSettings extends SU_Module {
|
11 |
|
12 |
+
static function get_parent_module() { return 'fofs'; }
|
13 |
+
static function get_child_order() { return 20; }
|
14 |
+
static function is_independent_module() { return false; }
|
15 |
|
16 |
+
static function get_module_title() { return __('404 Monitor Settings', 'seo-ultimate'); }
|
17 |
function get_module_subtitle() { return __('Settings', 'seo-ultimate'); }
|
18 |
function get_settings_key() { return '404s'; }
|
19 |
|
33 |
}
|
34 |
|
35 |
function admin_page_contents() {
|
36 |
+
|
37 |
$this->admin_form_start();
|
38 |
$this->checkbox('log_enabled', __('Continue monitoring for new 404 errors', 'seo-ultimate'), __('Monitoring Settings', 'seo-ultimate'));
|
39 |
$this->checkboxes(array(
|
modules/404s/fofs.php
CHANGED
@@ -8,9 +8,27 @@
|
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
class SU_Fofs extends SU_Module {
|
11 |
-
function get_module_title() { return __('404 Monitor', 'seo-ultimate'); }
|
12 |
-
function
|
13 |
-
function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
function add_help_tabs($screen) {
|
16 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
class SU_Fofs extends SU_Module {
|
11 |
+
static function get_module_title() { return __('404 Monitor', 'seo-ultimate'); }
|
12 |
+
static function get_menu_title() { return __('404 Monitor', 'seo-ultimate'); }
|
13 |
+
static function has_menu_count() { return true; }
|
14 |
+
function admin_page_contents() {
|
15 |
+
|
16 |
+
if ($this->should_show_sdf_theme_promo()) {
|
17 |
+
echo "\n\n<div class='row'>\n";
|
18 |
+
echo "\n\n<div class='col-sm-8 col-md-9'>\n";
|
19 |
+
}
|
20 |
+
|
21 |
+
$this->children_admin_page_tabs();
|
22 |
+
|
23 |
+
if ($this->should_show_sdf_theme_promo()) {
|
24 |
+
echo "\n\n</div>\n";
|
25 |
+
echo "\n\n<div class='col-sm-4 col-md-3'>\n";
|
26 |
+
$this->promo_sdf_banners();
|
27 |
+
echo "\n\n</div>\n";
|
28 |
+
echo "\n\n</div>\n";
|
29 |
+
}
|
30 |
+
|
31 |
+
}
|
32 |
|
33 |
function add_help_tabs($screen) {
|
34 |
|
modules/author-links/author-links.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php
|
2 |
* Author Highlighter Module
|
3 |
*
|
4 |
* @since 7.4
|
5 |
*/
|
|
|
6 |
* Author Highlighter Module
|
7 |
*
|
8 |
* @since 7.4
|
9 |
*/
|
|
|
1 |
* Author Highlighter Module
|
2 |
*
|
3 |
* @since 7.4
|
4 |
*/
|
5 |
+
<?php
|
6 |
* Author Highlighter Module
|
7 |
*
|
8 |
* @since 7.4
|
9 |
*/
|
modules/autolinks/autolinks.php
CHANGED
@@ -8,7 +8,8 @@
|
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
class SU_Autolinks extends SU_Module {
|
11 |
-
function get_module_title() { return __('Deeplink Juggernaut', 'seo-ultimate'); }
|
|
|
12 |
|
13 |
function add_help_tabs($screen) {
|
14 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
class SU_Autolinks extends SU_Module {
|
11 |
+
static function get_module_title() { return __('Deeplink Juggernaut', 'seo-ultimate'); }
|
12 |
+
static function get_menu_title() { return __('Deeplink Juggernaut', 'seo-ultimate'); }
|
13 |
|
14 |
function add_help_tabs($screen) {
|
15 |
|
modules/autolinks/content-autolinks-settings.php
CHANGED
@@ -9,11 +9,11 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_ContentAutolinksSettings extends SU_Module {
|
11 |
|
12 |
-
function get_parent_module() { return 'autolinks'; }
|
13 |
-
function get_child_order() { return 20; }
|
14 |
-
function is_independent_module() { return false; }
|
15 |
|
16 |
-
function get_module_title() { return __('Content Deeplink Juggernaut Settings', 'seo-ultimate'); }
|
17 |
function get_module_subtitle() { return __('Content Link Settings', 'seo-ultimate'); }
|
18 |
|
19 |
function get_default_settings() {
|
9 |
|
10 |
class SU_ContentAutolinksSettings extends SU_Module {
|
11 |
|
12 |
+
static function get_parent_module() { return 'autolinks'; }
|
13 |
+
static function get_child_order() { return 20; }
|
14 |
+
static function is_independent_module() { return false; }
|
15 |
|
16 |
+
static function get_module_title() { return __('Content Deeplink Juggernaut Settings', 'seo-ultimate'); }
|
17 |
function get_module_subtitle() { return __('Content Link Settings', 'seo-ultimate'); }
|
18 |
|
19 |
function get_default_settings() {
|
modules/autolinks/content-autolinks.php
CHANGED
@@ -11,15 +11,15 @@ class SU_ContentAutolinks extends SU_Module {
|
|
11 |
|
12 |
var $legacy_sitewide_lpa_in_use = false;
|
13 |
|
14 |
-
function get_parent_module() { return 'autolinks'; }
|
15 |
-
function get_child_order() { return 10; }
|
16 |
-
function is_independent_module() { return false; }
|
17 |
|
18 |
-
function get_module_title() { return __('Content Deeplink Juggernaut', 'seo-ultimate'); }
|
19 |
function get_module_subtitle() { return __('Content Links', 'seo-ultimate'); }
|
20 |
|
21 |
function init() {
|
22 |
-
add_filter('the_content', array(&$this, 'autolink_content'));
|
23 |
|
24 |
add_filter('su_postmeta_help', array(&$this, 'postmeta_help'), 35);
|
25 |
add_filter('su_get_postmeta-autolinks', array(&$this, 'get_post_autolinks'), 10, 3);
|
@@ -29,6 +29,22 @@ class SU_ContentAutolinks extends SU_Module {
|
|
29 |
add_filter('su_get_setting-autolinks-dampen_sitewide_lpa_value', array(&$this, 'filter_dampen_sitewide_lpa_value'));
|
30 |
}
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
function filter_linkfree_tags($tags) {
|
33 |
return sustr::preg_filter('a-z0-9,', strtolower($tags));
|
34 |
}
|
@@ -449,7 +465,7 @@ class SU_ContentAutolinks extends SU_Module {
|
|
449 |
return true;
|
450 |
}
|
451 |
|
452 |
-
function postmeta_fields($fields) {
|
453 |
$id = suwp::get_post_id();
|
454 |
|
455 |
if ($id)
|
11 |
|
12 |
var $legacy_sitewide_lpa_in_use = false;
|
13 |
|
14 |
+
static function get_parent_module() { return 'autolinks'; }
|
15 |
+
static function get_child_order() { return 10; }
|
16 |
+
static function is_independent_module() { return false; }
|
17 |
|
18 |
+
static function get_module_title() { return __('Content Deeplink Juggernaut', 'seo-ultimate'); }
|
19 |
function get_module_subtitle() { return __('Content Links', 'seo-ultimate'); }
|
20 |
|
21 |
function init() {
|
22 |
+
add_filter('the_content', array(&$this, 'autolink_content'), self::filter_autolink_content_priority());
|
23 |
|
24 |
add_filter('su_postmeta_help', array(&$this, 'postmeta_help'), 35);
|
25 |
add_filter('su_get_postmeta-autolinks', array(&$this, 'get_post_autolinks'), 10, 3);
|
29 |
add_filter('su_get_setting-autolinks-dampen_sitewide_lpa_value', array(&$this, 'filter_dampen_sitewide_lpa_value'));
|
30 |
}
|
31 |
|
32 |
+
static function filter_autolink_content_priority() {
|
33 |
+
|
34 |
+
//A workaround for WP-Syntax. Running our callback slightly earlier than WP-Syntax's
|
35 |
+
$wp_syntax_priority = has_filter('the_content', 'wp_syntax_after_filter');
|
36 |
+
if ( $wp_syntax_priority === false && class_exists('WP_Syntax') ) {
|
37 |
+
//Newer versions of WP-Syntax use a class with static methods instead of plain functions.
|
38 |
+
$wp_syntax_priority = has_filter('the_content', array('WP_Syntax', 'afterFilter'));
|
39 |
+
}
|
40 |
+
if ( $wp_syntax_priority !== false ) {
|
41 |
+
$autolink_content_priority = $wp_syntax_priority - 1;
|
42 |
+
} else {
|
43 |
+
$autolink_content_priority = 1002;
|
44 |
+
}
|
45 |
+
return $autolink_content_priority;
|
46 |
+
}
|
47 |
+
|
48 |
function filter_linkfree_tags($tags) {
|
49 |
return sustr::preg_filter('a-z0-9,', strtolower($tags));
|
50 |
}
|
465 |
return true;
|
466 |
}
|
467 |
|
468 |
+
function postmeta_fields($fields, $screen) {
|
469 |
$id = suwp::get_post_id();
|
470 |
|
471 |
if ($id)
|
modules/autolinks/footer-autolinks-settings.php
CHANGED
@@ -9,11 +9,11 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_FooterAutolinksSettings extends SU_Module {
|
11 |
|
12 |
-
function get_parent_module() { return 'autolinks'; }
|
13 |
-
function get_child_order() { return 40; }
|
14 |
-
function is_independent_module() { return false; }
|
15 |
|
16 |
-
function get_module_title() { return __('Footer Deeplink Juggernaut Settings', 'seo-ultimate'); }
|
17 |
function get_module_subtitle() { return __('Footer Link Settings', 'seo-ultimate'); }
|
18 |
|
19 |
function get_default_settings() {
|
9 |
|
10 |
class SU_FooterAutolinksSettings extends SU_Module {
|
11 |
|
12 |
+
static function get_parent_module() { return 'autolinks'; }
|
13 |
+
static function get_child_order() { return 40; }
|
14 |
+
static function is_independent_module() { return false; }
|
15 |
|
16 |
+
static function get_module_title() { return __('Footer Deeplink Juggernaut Settings', 'seo-ultimate'); }
|
17 |
function get_module_subtitle() { return __('Footer Link Settings', 'seo-ultimate'); }
|
18 |
|
19 |
function get_default_settings() {
|
modules/autolinks/footer-autolinks.php
CHANGED
@@ -9,11 +9,11 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_FooterAutolinks extends SU_Module {
|
11 |
|
12 |
-
function get_parent_module() { return 'autolinks'; }
|
13 |
-
function get_child_order() { return 30; }
|
14 |
-
function is_independent_module() { return false; }
|
15 |
|
16 |
-
function get_module_title() { return __('Footer Deeplink Juggernaut', 'seo-ultimate'); }
|
17 |
function get_module_subtitle() { return __('Footer Links', 'seo-ultimate'); }
|
18 |
|
19 |
var $already_outputted = false;
|
9 |
|
10 |
class SU_FooterAutolinks extends SU_Module {
|
11 |
|
12 |
+
static function get_parent_module() { return 'autolinks'; }
|
13 |
+
static function get_child_order() { return 30; }
|
14 |
+
static function is_independent_module() { return false; }
|
15 |
|
16 |
+
static function get_module_title() { return __('Footer Deeplink Juggernaut', 'seo-ultimate'); }
|
17 |
function get_module_subtitle() { return __('Footer Links', 'seo-ultimate'); }
|
18 |
|
19 |
var $already_outputted = false;
|
modules/canonical/canonical.php
CHANGED
@@ -9,9 +9,9 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_Canonical extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() { return __('Canonicalizer', 'seo-ultimate'); }
|
13 |
|
14 |
-
function get_parent_module() { return 'misc'; }
|
15 |
function get_settings_key() { return 'canonical'; }
|
16 |
|
17 |
function init() {
|
9 |
|
10 |
class SU_Canonical extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() { return __('Canonicalizer', 'seo-ultimate'); }
|
13 |
|
14 |
+
static function get_parent_module() { return 'misc'; }
|
15 |
function get_settings_key() { return 'canonical'; }
|
16 |
|
17 |
function init() {
|
modules/class.su-module.php
CHANGED
@@ -96,9 +96,9 @@ class SU_Module {
|
|
96 |
* @since 0.1
|
97 |
* @uses __construct()
|
98 |
*/
|
99 |
-
function SU_Module() {
|
100 |
$this->__construct();
|
101 |
-
}
|
102 |
|
103 |
|
104 |
/********** PSEUDO-ABSTRACT FUNCTIONS **********/
|
@@ -117,7 +117,7 @@ class SU_Module {
|
|
117 |
*
|
118 |
* @return string
|
119 |
*/
|
120 |
-
function get_module_title() { return ''; }
|
121 |
|
122 |
/**
|
123 |
* The title to be used by parent modules.
|
@@ -145,7 +145,8 @@ class SU_Module {
|
|
145 |
*
|
146 |
* @return string The title shown on the admin menu.
|
147 |
*/
|
148 |
-
|
|
|
149 |
|
150 |
/**
|
151 |
* Determines where this module's admin page should appear relative to those of other modules.
|
@@ -155,7 +156,7 @@ class SU_Module {
|
|
155 |
*
|
156 |
* @return int The menu position index.
|
157 |
*/
|
158 |
-
function get_menu_pos() { return 10; }
|
159 |
|
160 |
/**
|
161 |
* Determines where this module's admin contents should appear on the parent page relative to those of other sibling modules.
|
@@ -165,7 +166,7 @@ class SU_Module {
|
|
165 |
*
|
166 |
* @return int The child order index.
|
167 |
*/
|
168 |
-
function get_child_order() { return 999; }
|
169 |
|
170 |
/**
|
171 |
* The number that should be displayed in a bubble next to the module's menu title.
|
@@ -190,7 +191,7 @@ class SU_Module {
|
|
190 |
*
|
191 |
* @return boolean
|
192 |
*/
|
193 |
-
function has_menu_count() { return false; }
|
194 |
|
195 |
/**
|
196 |
* A descriptive label of the menu count.
|
@@ -257,7 +258,7 @@ class SU_Module {
|
|
257 |
*
|
258 |
* @return string|bool
|
259 |
*/
|
260 |
-
function get_parent_module() { return false; }
|
261 |
|
262 |
/**
|
263 |
* Returns an array of admin page tabs; the label is the key and the callback is the value.
|
@@ -276,7 +277,7 @@ class SU_Module {
|
|
276 |
*
|
277 |
* @return bool
|
278 |
*/
|
279 |
-
function is_independent_module() {
|
280 |
return true;
|
281 |
}
|
282 |
|
@@ -292,7 +293,12 @@ class SU_Module {
|
|
292 |
if (strlen($parent = $this->get_parent_module()) && !$this->is_independent_module())
|
293 |
return $this->plugin->modules[$parent]->get_settings_key();
|
294 |
else
|
295 |
-
|
|
|
|
|
|
|
|
|
|
|
296 |
} else {
|
297 |
if (strlen($parent = self::get_parent_module()) && !self::is_independent_module()) {
|
298 |
global $seo_ultimate;
|
@@ -423,7 +429,7 @@ class SU_Module {
|
|
423 |
* @param array $fields The fields array.
|
424 |
* @return array The updated fields array.
|
425 |
*/
|
426 |
-
function postmeta_fields($fields) { return $fields; }
|
427 |
|
428 |
/********** INITIALIZATION FUNCTIONALITY **********/
|
429 |
|
@@ -666,9 +672,18 @@ class SU_Module {
|
|
666 |
*/
|
667 |
function children_admin_page_tabs_form() {
|
668 |
if (count($tabs = $this->get_children_admin_page_tabs())) {
|
|
|
|
|
|
|
669 |
$this->admin_form_start(false, false);
|
670 |
$this->admin_page_tabs($tabs);
|
671 |
$this->admin_form_end(null, false);
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
}
|
673 |
}
|
674 |
|
@@ -879,7 +894,7 @@ class SU_Module {
|
|
879 |
else
|
880 |
$class = '';
|
881 |
|
882 |
-
echo "<div id=\"su-".su_esc_attr($this->get_module_key())."\" class=\"
|
883 |
screen_icon($icon);
|
884 |
echo "\n<h2>".$this->get_page_title()."</h2>\n";
|
885 |
}
|
@@ -1262,11 +1277,11 @@ class SU_Module {
|
|
1262 |
case 'textbox':
|
1263 |
$value = su_esc_editable_html($value);
|
1264 |
$placeholder = $extra ? " placeholder='" . su_esc_attr($extra) . "'" : '';
|
1265 |
-
return "<input name='$name'$inputid value='$value'$placeholder type='text' class='textbox regular-text' />";
|
1266 |
break;
|
1267 |
case 'textarea':
|
1268 |
$value = su_esc_editable_html($value);
|
1269 |
-
return "<textarea name='$name'$inputid type='text' rows='3' cols='50' class='textarea regular-text'>$value</textarea>";
|
1270 |
break;
|
1271 |
case 'checkbox':
|
1272 |
$checked = $value ? " checked='checked'" : '';
|
@@ -1365,12 +1380,12 @@ class SU_Module {
|
|
1365 |
if ($form) {
|
1366 |
$hook = $this->plugin->key_to_hook($this->get_module_or_parent_key());
|
1367 |
if ($this->is_action('update')) $this->print_message('success', __('Settings updated.', 'seo-ultimate'));
|
1368 |
-
echo "<form id='su-admin-form' method='post' action='?page=$hook'>\n";
|
1369 |
settings_fields($hook);
|
1370 |
}
|
1371 |
|
1372 |
echo "\n";
|
1373 |
-
if ($table) echo "<table class='form-table'>\n";
|
1374 |
}
|
1375 |
|
1376 |
/**
|
@@ -1386,7 +1401,7 @@ class SU_Module {
|
|
1386 |
function admin_form_end($button = null, $table = true) {
|
1387 |
|
1388 |
if ($button === null) $button = __('Save Changes'); //This string is used in normal WP, so we don't need a textdomain
|
1389 |
-
if ($table) echo "</table>\n";
|
1390 |
|
1391 |
if ($button !== false) {
|
1392 |
?>
|
@@ -1404,7 +1419,7 @@ class SU_Module {
|
|
1404 |
* @since 1.5
|
1405 |
*/
|
1406 |
function admin_form_table_start() {
|
1407 |
-
echo "<table class='form-table'>\n";
|
1408 |
}
|
1409 |
|
1410 |
/**
|
@@ -1413,7 +1428,7 @@ class SU_Module {
|
|
1413 |
* @since 1.5
|
1414 |
*/
|
1415 |
function admin_form_table_end() {
|
1416 |
-
echo "</table>\n";
|
1417 |
}
|
1418 |
|
1419 |
/**
|
@@ -1532,9 +1547,7 @@ class SU_Module {
|
|
1532 |
* @param bool $newtable Whether to open a new <table> element.
|
1533 |
*/
|
1534 |
function admin_form_group_start($title, $newtable=true) {
|
1535 |
-
|
1536 |
-
echo "<tr valign='top'$class>\n<th scope='row'>$title</th>\n<td><fieldset><legend class='hidden'>$title</legend>\n";
|
1537 |
-
if ($newtable) echo "<table>\n";
|
1538 |
}
|
1539 |
|
1540 |
/**
|
@@ -1545,16 +1558,15 @@ class SU_Module {
|
|
1545 |
* @param bool $newtable Whether to close a <table> element.
|
1546 |
*/
|
1547 |
function admin_form_group_end($newtable=true) {
|
1548 |
-
|
1549 |
-
echo "</fieldset>\n</td>\n</tr>\n";
|
1550 |
}
|
1551 |
|
1552 |
function admin_form_indent_start() {
|
1553 |
-
echo "<
|
1554 |
}
|
1555 |
|
1556 |
function admin_form_indent_end() {
|
1557 |
-
echo "</
|
1558 |
}
|
1559 |
|
1560 |
/**
|
@@ -1565,9 +1577,9 @@ class SU_Module {
|
|
1565 |
* @param string $text
|
1566 |
*/
|
1567 |
function textblock($text) {
|
1568 |
-
echo "<
|
1569 |
echo $text;
|
1570 |
-
echo "\n</
|
1571 |
}
|
1572 |
|
1573 |
/**
|
@@ -1613,7 +1625,7 @@ class SU_Module {
|
|
1613 |
if ($grouptext)
|
1614 |
$this->admin_form_group_start($grouptext, false);
|
1615 |
elseif ($output_tr)
|
1616 |
-
echo "<
|
1617 |
|
1618 |
if (is_array($checkboxes)) {
|
1619 |
foreach ($checkboxes as $name => $desc) {
|
@@ -1638,24 +1650,23 @@ class SU_Module {
|
|
1638 |
$int_var_name = $name.'_value';
|
1639 |
$int_var_value = sustr::to_int($this->get_setting($int_var_name));
|
1640 |
if ($this->get_setting($name) === true) $sfdisabled = ''; else $sfdisabled = "readonly='readonly' ";
|
1641 |
-
$desc = str_replace('%d', "</label><input name='$int_var_name' id='$int_var_name' type='text' value='$int_var_value' size='2' maxlength='3' $sfdisabled/><label for='$name'>", $desc);
|
1642 |
$desc = str_replace("<label for='$name'></label>", '', $desc);
|
1643 |
$onclick = " onclick=\"javascript:document.getElementById('$int_var_name').readOnly=!this.checked;\"";
|
1644 |
}
|
1645 |
|
1646 |
if ($indent) $labelclass = " class='su-indent'"; else $labelclass = '';
|
1647 |
-
echo "<label for='$name'$labelclass><input name='$name' id='$name' type='checkbox' value='1'";
|
1648 |
if ($checked !== false && ($checked === true || $this->get_setting($name) === true)) echo " checked='checked'";
|
1649 |
if ($disabled) echo " disabled='disabled'";
|
1650 |
-
echo "$onclick /> $desc</label
|
1651 |
}
|
1652 |
}
|
1653 |
|
1654 |
if ($grouptext) {
|
1655 |
-
echo "</fieldset>";
|
1656 |
$this->admin_form_group_end(false);
|
1657 |
} elseif ($output_tr) {
|
1658 |
-
echo "</
|
1659 |
}
|
1660 |
}
|
1661 |
|
@@ -1719,7 +1730,7 @@ class SU_Module {
|
|
1719 |
|
1720 |
extract($this->insert_subfield_textboxes($name, $desc));
|
1721 |
|
1722 |
-
echo "<div><label for='$id'$class><input name='$name' id='$id' type='radio' value='$value'";
|
1723 |
if ($current) echo " checked='checked'";
|
1724 |
echo " /> $label";
|
1725 |
|
@@ -1728,8 +1739,8 @@ class SU_Module {
|
|
1728 |
}
|
1729 |
}
|
1730 |
|
1731 |
-
if ($grouptext)
|
1732 |
-
|
1733 |
}
|
1734 |
|
1735 |
/**
|
@@ -1759,7 +1770,7 @@ class SU_Module {
|
|
1759 |
if ($grouptext)
|
1760 |
$this->admin_form_group_start($grouptext, false);
|
1761 |
elseif ($in_table)
|
1762 |
-
echo "<
|
1763 |
|
1764 |
if (is_array($values)) {
|
1765 |
|
@@ -1775,7 +1786,7 @@ class SU_Module {
|
|
1775 |
if ($grouptext)
|
1776 |
$this->admin_form_group_end();
|
1777 |
elseif ($in_table)
|
1778 |
-
echo "</
|
1779 |
}
|
1780 |
|
1781 |
/**
|
@@ -1806,7 +1817,7 @@ class SU_Module {
|
|
1806 |
if ($enabled) $disabled = ''; else $disabled = " readonly='readonly'";
|
1807 |
|
1808 |
$esfvalue = su_esc_attr($sfvalue);
|
1809 |
-
$field_html = "</label><input class='textbox subfield' name='$sfname' id='$sfname' type='text' value='$esfvalue'$disabled";
|
1810 |
if ($is_int_field) $field_html .= " size='2' maxlength='3'";
|
1811 |
$field_html .= " /><label for='$name'>";
|
1812 |
|
@@ -1841,6 +1852,8 @@ class SU_Module {
|
|
1841 |
$tree_level = isset($args['tree_level']) ? $args['tree_level'] : false;
|
1842 |
$disabled = isset($args['disabled']) ? $args['disabled'] : false;
|
1843 |
$in_table = isset($args['in_table']) ? $args['in_table'] : true;
|
|
|
|
|
1844 |
|
1845 |
if (!$disabled && $this->is_action('update')) {
|
1846 |
foreach ($textboxes as $id => $title) {
|
@@ -1876,16 +1889,19 @@ class SU_Module {
|
|
1876 |
$id = su_esc_attr($id);
|
1877 |
$resetmessage = su_esc_attr(__('Are you sure you want to replace the textbox contents with this default value?', 'seo-ultimate'));
|
1878 |
|
|
|
|
|
|
|
1879 |
if ($grouptext)
|
1880 |
-
echo "<div class='
|
1881 |
elseif ($in_table && strpos($title, '</a>') === false)
|
1882 |
-
echo "<
|
1883 |
elseif ($in_table)
|
1884 |
-
echo "<
|
1885 |
|
1886 |
echo $before;
|
1887 |
|
1888 |
-
echo "<input name='$id' id='$id' type='text' value='$value'
|
1889 |
|
1890 |
if ($placeholder) {
|
1891 |
$a_placeholder = su_esc_attr($placeholder);
|
@@ -1920,7 +1936,12 @@ class SU_Module {
|
|
1920 |
if ($grouptext)
|
1921 |
echo "</div>\n";
|
1922 |
elseif ($in_table)
|
1923 |
-
echo "</
|
|
|
|
|
|
|
|
|
|
|
1924 |
}
|
1925 |
|
1926 |
if ($grouptext) $this->admin_form_group_end(false);
|
@@ -1971,13 +1992,13 @@ class SU_Module {
|
|
1971 |
$value = su_esc_editable_html($this->get_setting($id));
|
1972 |
$id = su_esc_attr($id);
|
1973 |
|
1974 |
-
echo "<
|
1975 |
-
if ($title) echo "<
|
1976 |
-
echo '
|
1977 |
-
echo "<textarea name='$id' id='$id' type='text' class='regular-text' cols='$cols' rows='$rows'";
|
1978 |
if ($disabled) echo " disabled='disabled'";
|
1979 |
echo ">$value</textarea>";
|
1980 |
-
echo "</
|
1981 |
}
|
1982 |
}
|
1983 |
|
@@ -2029,11 +2050,11 @@ class SU_Module {
|
|
2029 |
|
2030 |
register_setting($this->get_module_key(), $id);
|
2031 |
|
2032 |
-
echo "<
|
2033 |
-
if ($title) echo "<
|
2034 |
-
echo "<
|
2035 |
echo $this->get_jlsuggest_box($id, $this->get_setting($id), $params);
|
2036 |
-
echo "</
|
2037 |
}
|
2038 |
}
|
2039 |
|
@@ -2257,13 +2278,14 @@ class SU_Module {
|
|
2257 |
|
2258 |
if ($grouptext) {
|
2259 |
$h_grouptext = esc_html($grouptext);
|
2260 |
-
$html
|
2261 |
}
|
2262 |
|
2263 |
foreach ($textboxes as $id => $title) {
|
2264 |
|
2265 |
$type = isset($textbox_args[$id]['type']) ? $textbox_args[$id]['type'] : 'text';
|
2266 |
-
|
|
|
2267 |
register_setting('seo-ultimate', $id);
|
2268 |
$value = su_esc_editable_html($this->get_postmeta($id));
|
2269 |
$id = "_su_".su_esc_attr($id);
|
@@ -2271,15 +2293,18 @@ class SU_Module {
|
|
2271 |
$e_title = su_esc_attr($title);
|
2272 |
|
2273 |
if ($grouptext)
|
2274 |
-
$html
|
|
|
|
|
2275 |
else
|
2276 |
-
$html
|
2277 |
-
|
|
|
2278 |
}
|
2279 |
|
2280 |
if ($grouptext) {
|
2281 |
$h_grouptext = esc_html($grouptext);
|
2282 |
-
|
2283 |
}
|
2284 |
|
2285 |
return $html;
|
@@ -2318,8 +2343,8 @@ class SU_Module {
|
|
2318 |
$value = su_esc_editable_html($this->get_postmeta($id));
|
2319 |
$id = "_su_".su_esc_attr($id);
|
2320 |
|
2321 |
-
$html
|
2322 |
-
|
2323 |
}
|
2324 |
|
2325 |
return $html;
|
@@ -2352,7 +2377,7 @@ class SU_Module {
|
|
2352 |
function get_postmeta_checkboxes($checkboxes, $grouptext) {
|
2353 |
|
2354 |
$valign = (is_array($checkboxes) && count($checkboxes) > 1) ? 'top' : 'middle';
|
2355 |
-
$html = "<
|
2356 |
|
2357 |
if (is_array($checkboxes)) {
|
2358 |
foreach ($checkboxes as $name => $desc) {
|
@@ -2361,13 +2386,13 @@ class SU_Module {
|
|
2361 |
$checked = ($this->get_postmeta($name) == 1);
|
2362 |
$name = "_su_".su_esc_attr($name);
|
2363 |
|
2364 |
-
$html .= "<label for='$name'><input name='$name' id='$name' type='checkbox' tabindex='2' value='1'";
|
2365 |
if ($checked) $html .= " checked='checked'";
|
2366 |
-
$html .= " /> $desc</label
|
2367 |
}
|
2368 |
}
|
2369 |
|
2370 |
-
$html .= "</
|
2371 |
|
2372 |
return $html;
|
2373 |
}
|
@@ -2403,14 +2428,16 @@ class SU_Module {
|
|
2403 |
|
2404 |
register_setting('seo-ultimate', $name);
|
2405 |
$current = $this->get_postmeta($name);
|
2406 |
-
if ($current === '')
|
|
|
|
|
2407 |
$name = "_su_".su_esc_attr($name);
|
2408 |
|
2409 |
-
$html = "<
|
2410 |
$html .= "<select name='$name' id='$name' onchange='javascript:su_toggle_select_children(this)'>\n";
|
2411 |
$html .= suhtml::option_tags($options, $current);
|
2412 |
$html .= "</select>\n";
|
2413 |
-
$html .= "</
|
2414 |
|
2415 |
return $html;
|
2416 |
}
|
@@ -2440,10 +2467,10 @@ class SU_Module {
|
|
2440 |
$value = su_esc_editable_html($this->get_postmeta($id));
|
2441 |
$id = "_su_".su_esc_attr($id);
|
2442 |
|
2443 |
-
$html .= "<
|
2444 |
-
."<
|
2445 |
$html .= $this->get_jlsuggest_box($id, $value, $params);
|
2446 |
-
$html .= "</
|
2447 |
}
|
2448 |
|
2449 |
return $html;
|
@@ -2481,7 +2508,7 @@ class SU_Module {
|
|
2481 |
|
2482 |
$field = su_esc_attr($field);
|
2483 |
$value = su_esc_attr($value);
|
2484 |
-
$html = str_replace(
|
2485 |
return $html;
|
2486 |
}
|
2487 |
|
@@ -2719,7 +2746,7 @@ class SU_Module {
|
|
2719 |
$html .= " placeholder='$e_placeholder'";
|
2720 |
}
|
2721 |
|
2722 |
-
$html .= " type='text' class='textbox regular-text jlsuggest'";
|
2723 |
$html .= ' title="' . __('Type a URL or start typing the name of an item on your site', 'seo-ultimate') . '"';
|
2724 |
$html .= $is_url ? '' : ' style="display:none;" ';
|
2725 |
$html .= ' />';
|
@@ -2798,5 +2825,139 @@ class SU_Module {
|
|
2798 |
|
2799 |
return false;
|
2800 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2801 |
}
|
2802 |
?>
|
96 |
* @since 0.1
|
97 |
* @uses __construct()
|
98 |
*/
|
99 |
+
/*function SU_Module() {
|
100 |
$this->__construct();
|
101 |
+
}*/
|
102 |
|
103 |
|
104 |
/********** PSEUDO-ABSTRACT FUNCTIONS **********/
|
117 |
*
|
118 |
* @return string
|
119 |
*/
|
120 |
+
static function get_module_title() { return ''; }
|
121 |
|
122 |
/**
|
123 |
* The title to be used by parent modules.
|
145 |
*
|
146 |
* @return string The title shown on the admin menu.
|
147 |
*/
|
148 |
+
|
149 |
+
static function get_menu_title() { return isset($this) ? $this->get_module_title() : ''; }
|
150 |
|
151 |
/**
|
152 |
* Determines where this module's admin page should appear relative to those of other modules.
|
156 |
*
|
157 |
* @return int The menu position index.
|
158 |
*/
|
159 |
+
static function get_menu_pos() { return 10; }
|
160 |
|
161 |
/**
|
162 |
* Determines where this module's admin contents should appear on the parent page relative to those of other sibling modules.
|
166 |
*
|
167 |
* @return int The child order index.
|
168 |
*/
|
169 |
+
static function get_child_order() { return 999; }
|
170 |
|
171 |
/**
|
172 |
* The number that should be displayed in a bubble next to the module's menu title.
|
191 |
*
|
192 |
* @return boolean
|
193 |
*/
|
194 |
+
static function has_menu_count() { return false; }
|
195 |
|
196 |
/**
|
197 |
* A descriptive label of the menu count.
|
258 |
*
|
259 |
* @return string|bool
|
260 |
*/
|
261 |
+
static function get_parent_module() { return false; }
|
262 |
|
263 |
/**
|
264 |
* Returns an array of admin page tabs; the label is the key and the callback is the value.
|
277 |
*
|
278 |
* @return bool
|
279 |
*/
|
280 |
+
static function is_independent_module() {
|
281 |
return true;
|
282 |
}
|
283 |
|
293 |
if (strlen($parent = $this->get_parent_module()) && !$this->is_independent_module())
|
294 |
return $this->plugin->modules[$parent]->get_settings_key();
|
295 |
else
|
296 |
+
if (strlen($parent = self::get_parent_module()) && !self::is_independent_module()) {
|
297 |
+
global $seo_ultimate;
|
298 |
+
return $seo_ultimate->modules[$parent]->get_settings_key();
|
299 |
+
} else {
|
300 |
+
return false;
|
301 |
+
}
|
302 |
} else {
|
303 |
if (strlen($parent = self::get_parent_module()) && !self::is_independent_module()) {
|
304 |
global $seo_ultimate;
|
429 |
* @param array $fields The fields array.
|
430 |
* @return array The updated fields array.
|
431 |
*/
|
432 |
+
function postmeta_fields($fields, $screen) { return $fields; }
|
433 |
|
434 |
/********** INITIALIZATION FUNCTIONALITY **********/
|
435 |
|
672 |
*/
|
673 |
function children_admin_page_tabs_form() {
|
674 |
if (count($tabs = $this->get_children_admin_page_tabs())) {
|
675 |
+
echo "\n\n<div class='row'>\n";
|
676 |
+
echo "\n\n<div class='col-sm-8 col-md-9'>\n";
|
677 |
+
|
678 |
$this->admin_form_start(false, false);
|
679 |
$this->admin_page_tabs($tabs);
|
680 |
$this->admin_form_end(null, false);
|
681 |
+
|
682 |
+
echo "\n\n</div>\n";
|
683 |
+
echo "\n\n<div class='col-sm-4 col-md-3'>\n";
|
684 |
+
$this->promo_sdf_banners();
|
685 |
+
echo "\n\n</div>\n";
|
686 |
+
echo "\n\n</div>\n";
|
687 |
}
|
688 |
}
|
689 |
|
894 |
else
|
895 |
$class = '';
|
896 |
|
897 |
+
echo "<div id=\"su-".su_esc_attr($this->get_module_key())."\" class=\"sdf-admin$class\">\n";
|
898 |
screen_icon($icon);
|
899 |
echo "\n<h2>".$this->get_page_title()."</h2>\n";
|
900 |
}
|
1277 |
case 'textbox':
|
1278 |
$value = su_esc_editable_html($value);
|
1279 |
$placeholder = $extra ? " placeholder='" . su_esc_attr($extra) . "'" : '';
|
1280 |
+
return "<input name='$name'$inputid value='$value'$placeholder type='text' class='form-control input-sm textbox regular-text' />";
|
1281 |
break;
|
1282 |
case 'textarea':
|
1283 |
$value = su_esc_editable_html($value);
|
1284 |
+
return "<textarea name='$name'$inputid type='text' rows='3' cols='50' class='textarea form-control regular-text'>$value</textarea>";
|
1285 |
break;
|
1286 |
case 'checkbox':
|
1287 |
$checked = $value ? " checked='checked'" : '';
|
1380 |
if ($form) {
|
1381 |
$hook = $this->plugin->key_to_hook($this->get_module_or_parent_key());
|
1382 |
if ($this->is_action('update')) $this->print_message('success', __('Settings updated.', 'seo-ultimate'));
|
1383 |
+
echo "<form id='su-admin-form' class='form-horizontal' method='post' action='?page=$hook'>\n";
|
1384 |
settings_fields($hook);
|
1385 |
}
|
1386 |
|
1387 |
echo "\n";
|
1388 |
+
//if ($table) echo "<table class='form-table'>\n";
|
1389 |
}
|
1390 |
|
1391 |
/**
|
1401 |
function admin_form_end($button = null, $table = true) {
|
1402 |
|
1403 |
if ($button === null) $button = __('Save Changes'); //This string is used in normal WP, so we don't need a textdomain
|
1404 |
+
//if ($table) echo "</table>\n";
|
1405 |
|
1406 |
if ($button !== false) {
|
1407 |
?>
|
1419 |
* @since 1.5
|
1420 |
*/
|
1421 |
function admin_form_table_start() {
|
1422 |
+
//echo "<table class='form-table'>\n";
|
1423 |
}
|
1424 |
|
1425 |
/**
|
1428 |
* @since 1.5
|
1429 |
*/
|
1430 |
function admin_form_table_end() {
|
1431 |
+
//echo "</table>\n";
|
1432 |
}
|
1433 |
|
1434 |
/**
|
1547 |
* @param bool $newtable Whether to open a new <table> element.
|
1548 |
*/
|
1549 |
function admin_form_group_start($title, $newtable=true) {
|
1550 |
+
echo "<div class='form-group'>\n<label class='col-sm-4 col-md-4 control-label'>$title</label><div class='col-sm-4 col-md-4'>\n";
|
|
|
|
|
1551 |
}
|
1552 |
|
1553 |
/**
|
1558 |
* @param bool $newtable Whether to close a <table> element.
|
1559 |
*/
|
1560 |
function admin_form_group_end($newtable=true) {
|
1561 |
+
echo "</div>\n<div class='col-sm-4 col-md-4 help-text'>\n</div>\n</div>\n";
|
|
|
1562 |
}
|
1563 |
|
1564 |
function admin_form_indent_start() {
|
1565 |
+
echo "<div class='form-group'><div class='col-md-12'>";
|
1566 |
}
|
1567 |
|
1568 |
function admin_form_indent_end() {
|
1569 |
+
echo "</div></div>";
|
1570 |
}
|
1571 |
|
1572 |
/**
|
1577 |
* @param string $text
|
1578 |
*/
|
1579 |
function textblock($text) {
|
1580 |
+
echo "<div class='form-group su-admin-form-textblock'>\n<div class='col-md-12'>\n";
|
1581 |
echo $text;
|
1582 |
+
echo "\n</div>\n</div>\n";
|
1583 |
}
|
1584 |
|
1585 |
/**
|
1625 |
if ($grouptext)
|
1626 |
$this->admin_form_group_start($grouptext, false);
|
1627 |
elseif ($output_tr)
|
1628 |
+
echo "<div class='form-group su-admin-form-checkbox'>\n<div class='col-md-12'>\n";
|
1629 |
|
1630 |
if (is_array($checkboxes)) {
|
1631 |
foreach ($checkboxes as $name => $desc) {
|
1650 |
$int_var_name = $name.'_value';
|
1651 |
$int_var_value = sustr::to_int($this->get_setting($int_var_name));
|
1652 |
if ($this->get_setting($name) === true) $sfdisabled = ''; else $sfdisabled = "readonly='readonly' ";
|
1653 |
+
$desc = str_replace('%d', "</label><input name='$int_var_name' id='$int_var_name' class='form-control input-sm nowidth-input' type='text' value='$int_var_value' size='2' maxlength='3' $sfdisabled/><label for='$name'>", $desc);
|
1654 |
$desc = str_replace("<label for='$name'></label>", '', $desc);
|
1655 |
$onclick = " onclick=\"javascript:document.getElementById('$int_var_name').readOnly=!this.checked;\"";
|
1656 |
}
|
1657 |
|
1658 |
if ($indent) $labelclass = " class='su-indent'"; else $labelclass = '';
|
1659 |
+
echo "<div class='checkbox'><label for='$name'$labelclass><input name='$name' id='$name' type='checkbox' value='1'";
|
1660 |
if ($checked !== false && ($checked === true || $this->get_setting($name) === true)) echo " checked='checked'";
|
1661 |
if ($disabled) echo " disabled='disabled'";
|
1662 |
+
echo "$onclick /> $desc</label></div>\n";
|
1663 |
}
|
1664 |
}
|
1665 |
|
1666 |
if ($grouptext) {
|
|
|
1667 |
$this->admin_form_group_end(false);
|
1668 |
} elseif ($output_tr) {
|
1669 |
+
echo "</div>\n</div>\n";
|
1670 |
}
|
1671 |
}
|
1672 |
|
1730 |
|
1731 |
extract($this->insert_subfield_textboxes($name, $desc));
|
1732 |
|
1733 |
+
echo "<div class='radio'><label for='$id'$class><input name='$name' id='$id' type='radio' value='$value'";
|
1734 |
if ($current) echo " checked='checked'";
|
1735 |
echo " /> $label";
|
1736 |
|
1739 |
}
|
1740 |
}
|
1741 |
|
1742 |
+
if ($grouptext)
|
1743 |
+
$this->admin_form_group_end(false);
|
1744 |
}
|
1745 |
|
1746 |
/**
|
1770 |
if ($grouptext)
|
1771 |
$this->admin_form_group_start($grouptext, false);
|
1772 |
elseif ($in_table)
|
1773 |
+
echo "<div class='form-group su-admin-form-dropdown'>\n<div class='col-sm-4 col-md-4'>\n";
|
1774 |
|
1775 |
if (is_array($values)) {
|
1776 |
|
1786 |
if ($grouptext)
|
1787 |
$this->admin_form_group_end();
|
1788 |
elseif ($in_table)
|
1789 |
+
echo "</div>\n<div class='col-sm-4 col-md-4 help-text'>\n</div>\n</div>\n";
|
1790 |
}
|
1791 |
|
1792 |
/**
|
1817 |
if ($enabled) $disabled = ''; else $disabled = " readonly='readonly'";
|
1818 |
|
1819 |
$esfvalue = su_esc_attr($sfvalue);
|
1820 |
+
$field_html = "</label><input class='textbox subfield form-control input-sm' name='$sfname' id='$sfname' type='text' value='$esfvalue'$disabled";
|
1821 |
if ($is_int_field) $field_html .= " size='2' maxlength='3'";
|
1822 |
$field_html .= " /><label for='$name'>";
|
1823 |
|
1852 |
$tree_level = isset($args['tree_level']) ? $args['tree_level'] : false;
|
1853 |
$disabled = isset($args['disabled']) ? $args['disabled'] : false;
|
1854 |
$in_table = isset($args['in_table']) ? $args['in_table'] : true;
|
1855 |
+
$help_text = isset($args['help_text']) ? $args['help_text'] : false;
|
1856 |
+
$callout = isset($args['callout']) ? $args['callout'] : false;
|
1857 |
|
1858 |
if (!$disabled && $this->is_action('update')) {
|
1859 |
foreach ($textboxes as $id => $title) {
|
1889 |
$id = su_esc_attr($id);
|
1890 |
$resetmessage = su_esc_attr(__('Are you sure you want to replace the textbox contents with this default value?', 'seo-ultimate'));
|
1891 |
|
1892 |
+
if ($callout)
|
1893 |
+
echo "<div class='bs-callout bs-callout-grey'><h4>$callout</h4></div>\n";
|
1894 |
+
|
1895 |
if ($grouptext)
|
1896 |
+
echo "<div class='form-group'><label class='col-sm-4 col-md-4 control-label' for='$id'>$title</label>\n<div class='col-sm-4 col-md-4'>\n";
|
1897 |
elseif ($in_table && strpos($title, '</a>') === false)
|
1898 |
+
echo "<div class='form-group'$indentattrs$hidden>\n<label class='col-sm-4 col-md-4 control-label' for='$id'><span class='su-field-label-text'>$title</span></label>\n<div class='col-sm-4 col-md-4'>\n";
|
1899 |
elseif ($in_table)
|
1900 |
+
echo "<div class='form-group'$indentattrs$hidden>\n<label class='col-sm-4 col-md-4 control-label' for='$id'><span class='su-field-label-text'>$title</span></label>\n<div class='col-sm-4 col-md-4'>\n";
|
1901 |
|
1902 |
echo $before;
|
1903 |
|
1904 |
+
echo "<input name='$id' id='$id' type='text' value='$value' class='form-control input-sm regular-text' ";
|
1905 |
|
1906 |
if ($placeholder) {
|
1907 |
$a_placeholder = su_esc_attr($placeholder);
|
1936 |
if ($grouptext)
|
1937 |
echo "</div>\n";
|
1938 |
elseif ($in_table)
|
1939 |
+
echo "</div>\n";
|
1940 |
+
|
1941 |
+
if ($help_text)
|
1942 |
+
echo "<div class='col-sm-4 col-md-4'>$help_text</div>\n</div>\n";
|
1943 |
+
else
|
1944 |
+
echo "<div class='col-sm-4 col-md-4'></div>\n</div>\n";
|
1945 |
}
|
1946 |
|
1947 |
if ($grouptext) $this->admin_form_group_end(false);
|
1992 |
$value = su_esc_editable_html($this->get_setting($id));
|
1993 |
$id = su_esc_attr($id);
|
1994 |
|
1995 |
+
echo "<div class='form-group'>\n";
|
1996 |
+
if ($title) echo "<label class='col-sm-4 col-md-4 control-label' for='$id'>$title</label>\n";
|
1997 |
+
echo "<div class='col-sm-4 col-md-4'>";
|
1998 |
+
echo "<textarea name='$id' id='$id' type='text' class='form-control regular-text' cols='$cols' rows='$rows'";
|
1999 |
if ($disabled) echo " disabled='disabled'";
|
2000 |
echo ">$value</textarea>";
|
2001 |
+
echo "</div>\n<div class='col-sm-4 col-md-4 help-text'>\n</div>\n</div>\n";
|
2002 |
}
|
2003 |
}
|
2004 |
|
2050 |
|
2051 |
register_setting($this->get_module_key(), $id);
|
2052 |
|
2053 |
+
echo "<div class='form-group'>\n";
|
2054 |
+
if ($title) echo "<label class='col-sm-4 col-md-4 control-label' for='$id'>$title</label>\n";
|
2055 |
+
echo "<div class='col-sm-4 col-md-4'>";
|
2056 |
echo $this->get_jlsuggest_box($id, $this->get_setting($id), $params);
|
2057 |
+
echo "</div>\n<div class='col-sm-4 col-md-4 help-text'>\n</div>\n</div>\n";
|
2058 |
}
|
2059 |
}
|
2060 |
|
2278 |
|
2279 |
if ($grouptext) {
|
2280 |
$h_grouptext = esc_html($grouptext);
|
2281 |
+
$html = "<div class='form-group su textbox'>\n<h4 class='col-sm-4 col-md-4 control-label'>$h_grouptext</h4>\n<div class='col-sm-4 col-md-4'></div>\n<div class='col-sm-4 col-md-4 help-text'>\n</div>\n</div>\n";
|
2282 |
}
|
2283 |
|
2284 |
foreach ($textboxes as $id => $title) {
|
2285 |
|
2286 |
$type = isset($textbox_args[$id]['type']) ? $textbox_args[$id]['type'] : 'text';
|
2287 |
+
$input_clss = ($type == 'text') ? 'input-sm ' : '';
|
2288 |
+
|
2289 |
register_setting('seo-ultimate', $id);
|
2290 |
$value = su_esc_editable_html($this->get_postmeta($id));
|
2291 |
$id = "_su_".su_esc_attr($id);
|
2293 |
$e_title = su_esc_attr($title);
|
2294 |
|
2295 |
if ($grouptext)
|
2296 |
+
$html = "<div class='form-group su textbox'>\n<label class='col-sm-4 col-md-4 control-label' for='$id'>$title</label>\n<div class='col-sm-4 col-md-4'><input name='$id' id='$id' type='$type' value='$value' class='"
|
2297 |
+
.$input_clss."form-control regular-text' tabindex='2' />\n"
|
2298 |
+
. "</div>\n<div class='col-sm-4 col-md-4 help-text'>\n</div>\n</div>\n";
|
2299 |
else
|
2300 |
+
$html = "<div class='form-group su textbox'>\n<label class='col-sm-4 col-md-4 control-label' for='$id'>$title</label>\n<div class='col-sm-4 col-md-4'><input name='$id' id='$id' type='$type' value='$value' class='"
|
2301 |
+
.$input_clss."form-control regular-text' tabindex='2' />\n"
|
2302 |
+
. "</div>\n<div class='col-sm-4 col-md-4 help-text'>\n</div>\n</div>\n";
|
2303 |
}
|
2304 |
|
2305 |
if ($grouptext) {
|
2306 |
$h_grouptext = esc_html($grouptext);
|
2307 |
+
//$html .= "</table></td>\n</tr>\n";
|
2308 |
}
|
2309 |
|
2310 |
return $html;
|
2343 |
$value = su_esc_editable_html($this->get_postmeta($id));
|
2344 |
$id = "_su_".su_esc_attr($id);
|
2345 |
|
2346 |
+
$html = "<div class='form-group su textarea'>\n<label class='col-sm-4 col-md-4 control-label' for='$id'>$title</label>\n<div class='col-sm-4 col-md-4'><textarea name='$id' id='$id' class='form-control regular-text' tabindex='2' cols='60' rows='3'>$value</textarea>\n"
|
2347 |
+
."</div>\n<div class='col-sm-4 col-md-4 help-text'>\n</div>\n</div>\n";
|
2348 |
}
|
2349 |
|
2350 |
return $html;
|
2377 |
function get_postmeta_checkboxes($checkboxes, $grouptext) {
|
2378 |
|
2379 |
$valign = (is_array($checkboxes) && count($checkboxes) > 1) ? 'top' : 'middle';
|
2380 |
+
$html = "<div class='form-group su checkboxes'>\n<label class='col-sm-4 col-md-4 control-label'>$grouptext</label>\n<div class='col-sm-4 col-md-4'>\n";
|
2381 |
|
2382 |
if (is_array($checkboxes)) {
|
2383 |
foreach ($checkboxes as $name => $desc) {
|
2386 |
$checked = ($this->get_postmeta($name) == 1);
|
2387 |
$name = "_su_".su_esc_attr($name);
|
2388 |
|
2389 |
+
$html .= "<div class='checkbox'><label for='$name'><input name='$name' id='$name' type='checkbox' tabindex='2' value='1'";
|
2390 |
if ($checked) $html .= " checked='checked'";
|
2391 |
+
$html .= " /> $desc</label></div>\n";
|
2392 |
}
|
2393 |
}
|
2394 |
|
2395 |
+
$html .= "</div>\n<div class='col-sm-4 col-md-4 help-text'>\n</div>\n</div>\n";
|
2396 |
|
2397 |
return $html;
|
2398 |
}
|
2428 |
|
2429 |
register_setting('seo-ultimate', $name);
|
2430 |
$current = $this->get_postmeta($name);
|
2431 |
+
if ($current === '') {
|
2432 |
+
$current = reset($options);
|
2433 |
+
}
|
2434 |
$name = "_su_".su_esc_attr($name);
|
2435 |
|
2436 |
+
$html = "<div class='form-group su dropdown'>\n<label class='col-sm-4 col-md-4 control-label' for='$name'>$grouptext</label>\n<div class='col-sm-4 col-md-4'>\n";
|
2437 |
$html .= "<select name='$name' id='$name' onchange='javascript:su_toggle_select_children(this)'>\n";
|
2438 |
$html .= suhtml::option_tags($options, $current);
|
2439 |
$html .= "</select>\n";
|
2440 |
+
$html .= "</div>\n<div class='col-sm-4 col-md-4 help-text'></div>\n</div>\n";
|
2441 |
|
2442 |
return $html;
|
2443 |
}
|
2467 |
$value = su_esc_editable_html($this->get_postmeta($id));
|
2468 |
$id = "_su_".su_esc_attr($id);
|
2469 |
|
2470 |
+
$html .= "<div class='form-group su jlsuggestbox'>\n<label class='col-sm-4 col-md-4 control-label' for='$id'>$title</label>\n"
|
2471 |
+
."<div class='col-sm-4 col-md-4 su'>";
|
2472 |
$html .= $this->get_jlsuggest_box($id, $value, $params);
|
2473 |
+
$html .= "</div>\n<div class='col-sm-4 col-md-4 help-text'>\n</div>\n</div>\n";
|
2474 |
}
|
2475 |
|
2476 |
return $html;
|
2508 |
|
2509 |
$field = su_esc_attr($field);
|
2510 |
$value = su_esc_attr($value);
|
2511 |
+
$html = str_replace("<div class='form-group ", "<div class='form-group su_{$field}_{$value}_subsection$hidden ", $html);
|
2512 |
return $html;
|
2513 |
}
|
2514 |
|
2746 |
$html .= " placeholder='$e_placeholder'";
|
2747 |
}
|
2748 |
|
2749 |
+
$html .= " type='text' class='form-control input-sm textbox regular-text jlsuggest'";
|
2750 |
$html .= ' title="' . __('Type a URL or start typing the name of an item on your site', 'seo-ultimate') . '"';
|
2751 |
$html .= $is_url ? '' : ' style="display:none;" ';
|
2752 |
$html .= ' />';
|
2825 |
|
2826 |
return false;
|
2827 |
}
|
2828 |
+
|
2829 |
+
|
2830 |
+
/**
|
2831 |
+
* @since 7.6
|
2832 |
+
*/
|
2833 |
+
function should_show_sdf_theme_promo() {
|
2834 |
+
return $this->is_sdf_theme_promo_applicable() && $this->get_setting('sdf_theme');
|
2835 |
+
}
|
2836 |
+
|
2837 |
+
/**
|
2838 |
+
* @since 7.6
|
2839 |
+
*/
|
2840 |
+
function is_sdf_theme_promo_applicable() {
|
2841 |
+
//If the current user can install themes and if SDF isn't already uploaded...
|
2842 |
+
if (current_user_can('install_themes') && (wp_get_theme('seodesign')->errors() === false)){
|
2843 |
+
$theme = wp_get_theme(); // gets the current theme
|
2844 |
+
return ('SEO Design Framework' == $theme->name || 'seodesign' == $theme->template || 'seodesign' == $theme->parent_theme) ? false : true;
|
2845 |
+
}
|
2846 |
+
else{
|
2847 |
+
return true;
|
2848 |
+
}
|
2849 |
+
}
|
2850 |
+
|
2851 |
+
|
2852 |
+
/**
|
2853 |
+
* Display the RSS entries in a list.
|
2854 |
+
*
|
2855 |
+
* @since 7.6.2
|
2856 |
+
*
|
2857 |
+
* @param string|array|object $rss RSS url.
|
2858 |
+
* @param array $args Widget arguments.
|
2859 |
+
*/
|
2860 |
+
function promo_sdf_banners_rss_output( $rss, $args = array() ) {
|
2861 |
+
if ( is_string( $rss ) ) {
|
2862 |
+
$rss = fetch_feed($rss);
|
2863 |
+
} elseif ( is_array($rss) && isset($rss['url']) ) {
|
2864 |
+
$args = $rss;
|
2865 |
+
$rss = fetch_feed($rss['url']);
|
2866 |
+
} elseif ( !is_object($rss) ) {
|
2867 |
+
return;
|
2868 |
+
}
|
2869 |
+
|
2870 |
+
if ( is_wp_error($rss) ) {
|
2871 |
+
if ( is_admin() || current_user_can('manage_options') )
|
2872 |
+
echo '<p>' . sprintf( __('<strong>RSS Error</strong>: %s'), $rss->get_error_message() ) . '</p>';
|
2873 |
+
return;
|
2874 |
+
}
|
2875 |
+
|
2876 |
+
$default_args = array( 'show_author' => 0, 'show_date' => 0, 'show_summary' => 0 );
|
2877 |
+
$args = wp_parse_args( $args, $default_args );
|
2878 |
+
extract( $args, EXTR_SKIP );
|
2879 |
+
|
2880 |
+
$items = (int) $items;
|
2881 |
+
if ( $items < 1 || 20 < $items )
|
2882 |
+
$items = 10;
|
2883 |
+
$show_summary = (int) $show_summary;
|
2884 |
+
$show_author = (int) $show_author;
|
2885 |
+
$show_date = (int) $show_date;
|
2886 |
+
|
2887 |
+
if ( !$rss->get_item_quantity() ) {
|
2888 |
+
echo '<ul><li>' . __( 'An error has occurred, which probably means the feed is down. Try again later.' ) . '</li></ul>';
|
2889 |
+
$rss->__destruct();
|
2890 |
+
unset($rss);
|
2891 |
+
return;
|
2892 |
+
}
|
2893 |
+
|
2894 |
+
foreach ( $rss->get_items(0, $items) as $item ) {
|
2895 |
+
$link = $item->get_link();
|
2896 |
+
while ( stristr($link, 'http') != $link )
|
2897 |
+
$link = substr($link, 1);
|
2898 |
+
$link = esc_url(strip_tags($link));
|
2899 |
+
$title = esc_attr(strip_tags($item->get_title()));
|
2900 |
+
if ( empty($title) )
|
2901 |
+
$title = '';
|
2902 |
+
|
2903 |
+
$desc = str_replace( array("\n", "\r"), ' ', esc_attr( strip_tags( @html_entity_decode( $item->get_description(), ENT_QUOTES, get_option('blog_charset') ) ) ) );
|
2904 |
+
$excerpt = wp_html_excerpt( $desc, 120 );
|
2905 |
+
|
2906 |
+
// Append ellipsis. Change existing [...] to […].
|
2907 |
+
if ( '[...]' == substr( $excerpt, -5 ) )
|
2908 |
+
$excerpt = substr( $excerpt, 0, -5 ) . '[…]';
|
2909 |
+
elseif ( '[…]' != substr( $excerpt, -10 ) && $desc != $excerpt )
|
2910 |
+
$excerpt .= ' […]';
|
2911 |
+
|
2912 |
+
$excerpt = esc_html( $excerpt );
|
2913 |
+
|
2914 |
+
if ( $show_summary ) {
|
2915 |
+
$summary = "<p>$excerpt</p>";
|
2916 |
+
} else {
|
2917 |
+
$summary = '';
|
2918 |
+
}
|
2919 |
+
|
2920 |
+
$date = '';
|
2921 |
+
if ( $show_date ) {
|
2922 |
+
$date = $item->get_date( 'U' );
|
2923 |
+
|
2924 |
+
if ( $date ) {
|
2925 |
+
$date = ' <span class="rss-date">' . date_i18n( get_option( 'date_format' ), $date ) . '</span>';
|
2926 |
+
}
|
2927 |
+
}
|
2928 |
+
|
2929 |
+
$author = '';
|
2930 |
+
if ( $show_author ) {
|
2931 |
+
$author = $item->get_author();
|
2932 |
+
if ( is_object($author) ) {
|
2933 |
+
$author = $author->get_name();
|
2934 |
+
$author = ' <cite>' . esc_html( strip_tags( $author ) ) . '</cite>';
|
2935 |
+
}
|
2936 |
+
}
|
2937 |
+
|
2938 |
+
if ( $link == '' ) {
|
2939 |
+
echo "<h3>$title</h3>{$summary}";
|
2940 |
+
} else {
|
2941 |
+
echo "<h3>$title</h3>{$summary}<p><a class='btn btn-large btn-warning' href='$link' target='_blank'>Read More</a></p>";
|
2942 |
+
}
|
2943 |
+
}
|
2944 |
+
$rss->__destruct();
|
2945 |
+
unset($rss);
|
2946 |
+
}
|
2947 |
+
|
2948 |
+
/**
|
2949 |
+
* @since 7.6.2
|
2950 |
+
*/
|
2951 |
+
function promo_sdf_banners() {
|
2952 |
+
|
2953 |
+
if ($this->should_show_sdf_theme_promo()) {
|
2954 |
+
?>
|
2955 |
+
<div id="sds_promo_blog_post" class="hide">
|
2956 |
+
<?php $this->promo_sdf_banners_rss_output( 'http://feeds.seodesignsolutions.com/SeoDesignSolutionsBlog', array('show_summary' => 1, 'show_date' => 0, 'items' => 1) ); ?>
|
2957 |
+
</div>
|
2958 |
+
<div id="sdf-promo-carousel"></div>
|
2959 |
+
<?php
|
2960 |
+
}
|
2961 |
+
}
|
2962 |
}
|
2963 |
?>
|
modules/files/files.php
CHANGED
@@ -11,7 +11,8 @@ class SU_Files extends SU_Module {
|
|
11 |
|
12 |
var $htaccess_recovery = null;
|
13 |
|
14 |
-
function get_module_title() { return __('File Editor', 'seo-ultimate'); }
|
|
|
15 |
|
16 |
function init() {
|
17 |
|
@@ -35,6 +36,11 @@ class SU_Files extends SU_Module {
|
|
35 |
|
36 |
global $is_apache;
|
37 |
|
|
|
|
|
|
|
|
|
|
|
38 |
//Initialize variables
|
39 |
$exists = $writable = false;
|
40 |
$is_super_admin = !function_exists('is_super_admin') || !function_exists('is_multisite') || !is_multisite() || is_super_admin();
|
@@ -86,6 +92,14 @@ class SU_Files extends SU_Module {
|
|
86 |
|
87 |
//Print the caution message(s) at the end
|
88 |
$this->print_messages();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
}
|
90 |
|
91 |
function do_robots() {
|
11 |
|
12 |
var $htaccess_recovery = null;
|
13 |
|
14 |
+
static function get_module_title() { return __('File Editor', 'seo-ultimate'); }
|
15 |
+
static function get_menu_title() { return __('File Editor', 'seo-ultimate'); }
|
16 |
|
17 |
function init() {
|
18 |
|
36 |
|
37 |
global $is_apache;
|
38 |
|
39 |
+
if ($this->should_show_sdf_theme_promo()) {
|
40 |
+
echo "\n\n<div class='row'>\n";
|
41 |
+
echo "\n\n<div class='col-sm-8 col-md-9'>\n";
|
42 |
+
}
|
43 |
+
|
44 |
//Initialize variables
|
45 |
$exists = $writable = false;
|
46 |
$is_super_admin = !function_exists('is_super_admin') || !function_exists('is_multisite') || !is_multisite() || is_super_admin();
|
92 |
|
93 |
//Print the caution message(s) at the end
|
94 |
$this->print_messages();
|
95 |
+
|
96 |
+
if ($this->should_show_sdf_theme_promo()) {
|
97 |
+
echo "\n\n</div>\n";
|
98 |
+
echo "\n\n<div class='col-sm-4 col-md-3'>\n";
|
99 |
+
$this->promo_sdf_banners();
|
100 |
+
echo "\n\n</div>\n";
|
101 |
+
echo "\n\n</div>\n";
|
102 |
+
}
|
103 |
}
|
104 |
|
105 |
function do_robots() {
|
modules/import-aiosp/import-aiosp.php
CHANGED
@@ -9,8 +9,8 @@ if (class_exists('SU_ImportModule')) {
|
|
9 |
|
10 |
class SU_ImportAIOSP extends SU_ImportModule {
|
11 |
|
12 |
-
function get_module_title() { return __('Import from All in One SEO Pack', 'seo-ultimate'); }
|
13 |
-
function get_menu_title() { return __('AIOSP Import', 'seo-ultimate'); }
|
14 |
|
15 |
function get_op_title() { return __('All in One SEO Pack', 'seo-ultimate'); }
|
16 |
function get_op_abbr() { return __('AIOSP', 'seo-ultimate'); }
|
9 |
|
10 |
class SU_ImportAIOSP extends SU_ImportModule {
|
11 |
|
12 |
+
static function get_module_title() { return __('Import from All in One SEO Pack', 'seo-ultimate'); }
|
13 |
+
static function get_menu_title() { return __('AIOSP Import', 'seo-ultimate'); }
|
14 |
|
15 |
function get_op_title() { return __('All in One SEO Pack', 'seo-ultimate'); }
|
16 |
function get_op_abbr() { return __('AIOSP', 'seo-ultimate'); }
|
modules/internal-link-aliases/internal-link-aliases.php
CHANGED
@@ -24,7 +24,8 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
24 |
$this->jlsuggest_init();
|
25 |
}
|
26 |
|
27 |
-
function get_module_title() { return __('Link Mask Generator', 'seo-ultimate'); }
|
|
|
28 |
|
29 |
function get_settings_key() { return 'internal-link-aliases'; }
|
30 |
|
@@ -159,7 +160,7 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
159 |
return trim(sustr::preg_filter('a-zA-Z0-9_/', $alias_dir), '/');
|
160 |
}
|
161 |
|
162 |
-
function postmeta_fields($fields) {
|
163 |
|
164 |
if (!current_user_can('manage_options'))
|
165 |
return $fields;
|
@@ -369,4 +370,5 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
369 |
|
370 |
}
|
371 |
|
372 |
-
}
|
|
24 |
$this->jlsuggest_init();
|
25 |
}
|
26 |
|
27 |
+
static function get_module_title() { return __('Link Mask Generator', 'seo-ultimate'); }
|
28 |
+
static function get_menu_title() { return __('Link Mask Generator', 'seo-ultimate'); }
|
29 |
|
30 |
function get_settings_key() { return 'internal-link-aliases'; }
|
31 |
|
160 |
return trim(sustr::preg_filter('a-zA-Z0-9_/', $alias_dir), '/');
|
161 |
}
|
162 |
|
163 |
+
function postmeta_fields($fields, $screen) {
|
164 |
|
165 |
if (!current_user_can('manage_options'))
|
166 |
return $fields;
|
370 |
|
371 |
}
|
372 |
|
373 |
+
}
|
374 |
+
?>
|
modules/link-nofollow/link-nofollow.php
CHANGED
@@ -9,10 +9,10 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_LinkNofollow extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() { return __('Nofollow Manager', 'seo-ultimate'); }
|
13 |
function get_default_status() { return SU_MODULE_DISABLED; }
|
14 |
|
15 |
-
function get_parent_module() { return 'misc'; }
|
16 |
function get_settings_key() { return 'link-nofollow'; }
|
17 |
|
18 |
function init() {
|
9 |
|
10 |
class SU_LinkNofollow extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() { return __('Nofollow Manager', 'seo-ultimate'); }
|
13 |
function get_default_status() { return SU_MODULE_DISABLED; }
|
14 |
|
15 |
+
static function get_parent_module() { return 'misc'; }
|
16 |
function get_settings_key() { return 'link-nofollow'; }
|
17 |
|
18 |
function init() {
|
modules/linkbox/linkbox.php
CHANGED
@@ -9,9 +9,9 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_Linkbox extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() { return __('Linkbox Inserter', 'seo-ultimate'); }
|
13 |
|
14 |
-
function get_parent_module() { return 'misc'; }
|
15 |
function get_settings_key() { return 'linkbox'; }
|
16 |
|
17 |
function get_default_settings() {
|
9 |
|
10 |
class SU_Linkbox extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() { return __('Linkbox Inserter', 'seo-ultimate'); }
|
13 |
|
14 |
+
static function get_parent_module() { return 'misc'; }
|
15 |
function get_settings_key() { return 'linkbox'; }
|
16 |
|
17 |
function get_default_settings() {
|
modules/meta/meta-descriptions.php
CHANGED
@@ -15,8 +15,8 @@ add_filter('su_settings_export_array', 'su_meta_descriptions_export_filter');
|
|
15 |
|
16 |
class SU_MetaDescriptions extends SU_Module {
|
17 |
|
18 |
-
function get_module_title() { return __('Meta Description Editor', 'seo-ultimate'); }
|
19 |
-
function get_menu_title() { return __('Meta Descriptions', 'seo-ultimate'); }
|
20 |
function get_settings_key() { return 'meta'; }
|
21 |
|
22 |
function init() {
|
@@ -166,17 +166,16 @@ class SU_MetaDescriptions extends SU_Module {
|
|
166 |
return $desc;
|
167 |
}
|
168 |
|
169 |
-
function postmeta_fields($fields) {
|
170 |
$id = '_su_description';
|
171 |
$value = su_esc_attr($this->get_postmeta('description'));
|
172 |
|
173 |
$fields['serp'][20]['description'] =
|
174 |
-
|
175 |
-
. "<
|
176 |
. " onkeyup=\"javascript:document.getElementById('su_meta_description_charcount').innerHTML = document.getElementById('_su_description').value.length\">$value</textarea>"
|
177 |
-
. "<
|
178 |
-
. "</
|
179 |
-
;
|
180 |
|
181 |
return $fields;
|
182 |
}
|
15 |
|
16 |
class SU_MetaDescriptions extends SU_Module {
|
17 |
|
18 |
+
static function get_module_title() { return __('Meta Description Editor', 'seo-ultimate'); }
|
19 |
+
static function get_menu_title() { return __('Meta Descriptions', 'seo-ultimate'); }
|
20 |
function get_settings_key() { return 'meta'; }
|
21 |
|
22 |
function init() {
|
166 |
return $desc;
|
167 |
}
|
168 |
|
169 |
+
function postmeta_fields($fields, $screen) {
|
170 |
$id = '_su_description';
|
171 |
$value = su_esc_attr($this->get_postmeta('description'));
|
172 |
|
173 |
$fields['serp'][20]['description'] =
|
174 |
+
"<div class='form-group su textarea'>\n<label class='col-sm-4 col-md-4 control-label' for='$id'>".__('Meta Description:', 'seo-ultimate')."</label>\n<div class='col-sm-4 col-md-4'>"
|
175 |
+
. "<textarea name='$id' id='$id' class='form-control regular-text' cols='60' rows='3' tabindex='2'"
|
176 |
. " onkeyup=\"javascript:document.getElementById('su_meta_description_charcount').innerHTML = document.getElementById('_su_description').value.length\">$value</textarea>"
|
177 |
+
. "</div>\n<div class='col-sm-4 col-md-4 help-text'>".sprintf(__('You’ve entered %s characters. Most search engines use up to 140.', 'seo-ultimate'), "<strong id='su_meta_description_charcount'>".strlen($value)."</strong>")
|
178 |
+
. "</div>\n</div>\n";
|
|
|
179 |
|
180 |
return $fields;
|
181 |
}
|
modules/meta/meta-keywords.php
CHANGED
@@ -15,8 +15,8 @@ add_filter('su_settings_export_array', 'su_meta_keywords_export_filter');
|
|
15 |
|
16 |
class SU_MetaKeywords extends SU_Module {
|
17 |
|
18 |
-
function get_module_title() { return __('Meta Keywords Editor', 'seo-ultimate'); }
|
19 |
-
function get_menu_title() { return __('Meta Keywords', 'seo-ultimate'); }
|
20 |
function get_settings_key() { return 'meta'; }
|
21 |
function get_default_status() { return SU_MODULE_DISABLED; }
|
22 |
|
@@ -166,7 +166,7 @@ class SU_MetaKeywords extends SU_Module {
|
|
166 |
return $count > 1;
|
167 |
}
|
168 |
|
169 |
-
function postmeta_fields($fields) {
|
170 |
$fields['25|keywords'] = $this->get_postmeta_textbox('keywords', __('Meta Keywords:<br /><em>(separate with commas)</em>', 'seo-ultimate'));
|
171 |
return $fields;
|
172 |
}
|
15 |
|
16 |
class SU_MetaKeywords extends SU_Module {
|
17 |
|
18 |
+
static function get_module_title() { return __('Meta Keywords Editor', 'seo-ultimate'); }
|
19 |
+
static function get_menu_title() { return __('Meta Keywords', 'seo-ultimate'); }
|
20 |
function get_settings_key() { return 'meta'; }
|
21 |
function get_default_status() { return SU_MODULE_DISABLED; }
|
22 |
|
166 |
return $count > 1;
|
167 |
}
|
168 |
|
169 |
+
function postmeta_fields($fields, $screen) {
|
170 |
$fields['25|keywords'] = $this->get_postmeta_textbox('keywords', __('Meta Keywords:<br /><em>(separate with commas)</em>', 'seo-ultimate'));
|
171 |
return $fields;
|
172 |
}
|
modules/meta/meta-robots.php
CHANGED
@@ -9,8 +9,8 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_MetaRobots extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() { return __('Meta Robot Tags Editor', 'seo-ultimate'); }
|
13 |
-
function get_menu_title() { return __('Meta Robot Tags', 'seo-ultimate'); }
|
14 |
function get_settings_key() { return 'meta'; }
|
15 |
|
16 |
function init() {
|
9 |
|
10 |
class SU_MetaRobots extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() { return __('Meta Robot Tags Editor', 'seo-ultimate'); }
|
13 |
+
static function get_menu_title() { return __('Meta Robot Tags', 'seo-ultimate'); }
|
14 |
function get_settings_key() { return 'meta'; }
|
15 |
|
16 |
function init() {
|
modules/meta/webmaster-verify.php
CHANGED
@@ -9,10 +9,10 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_WebmasterVerify extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() { return __('Webmaster Verification Assistant', 'seo-ultimate'); }
|
13 |
-
function get_menu_title() { return __('W.M. Verification', 'seo-ultimate'); }
|
14 |
|
15 |
-
function get_parent_module() { return 'misc'; }
|
16 |
function get_settings_key() { return 'meta'; }
|
17 |
|
18 |
function init() {
|
9 |
|
10 |
class SU_WebmasterVerify extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() { return __('Webmaster Verification Assistant', 'seo-ultimate'); }
|
13 |
+
static function get_menu_title() { return __('W.M. Verification', 'seo-ultimate'); }
|
14 |
|
15 |
+
static function get_parent_module() { return 'misc'; }
|
16 |
function get_settings_key() { return 'meta'; }
|
17 |
|
18 |
function init() {
|
modules/misc/misc.php
CHANGED
@@ -8,11 +8,29 @@
|
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
class SU_Misc extends SU_Module {
|
11 |
-
function get_module_title() { return __('Miscellaneous', 'seo-ultimate'); }
|
12 |
-
function
|
|
|
13 |
function admin_page_contents() {
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
echo '<p>' . __('The Miscellaneous page contains modules that don’t have enough settings to warrant their own separate admin pages.', 'seo-ultimate') . '</p>';
|
15 |
$this->children_admin_pages_form();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
}
|
17 |
}
|
18 |
|
8 |
if (class_exists('SU_Module')) {
|
9 |
|
10 |
class SU_Misc extends SU_Module {
|
11 |
+
static function get_module_title() { return __('Miscellaneous', 'seo-ultimate'); }
|
12 |
+
static function get_menu_title() { return __('Miscellaneous', 'seo-ultimate'); }
|
13 |
+
static function get_menu_pos() { return 30; }
|
14 |
function admin_page_contents() {
|
15 |
+
|
16 |
+
if ($this->should_show_sdf_theme_promo()) {
|
17 |
+
echo "\n\n<div class='row'>\n";
|
18 |
+
echo "\n\n<div class='col-sm-8 col-md-9'>\n";
|
19 |
+
}
|
20 |
+
|
21 |
echo '<p>' . __('The Miscellaneous page contains modules that don’t have enough settings to warrant their own separate admin pages.', 'seo-ultimate') . '</p>';
|
22 |
$this->children_admin_pages_form();
|
23 |
+
|
24 |
+
echo "\n\n</div>\n";
|
25 |
+
|
26 |
+
if ($this->should_show_sdf_theme_promo()) {
|
27 |
+
echo "\n\n<div class='col-sm-4 col-md-3'>\n";
|
28 |
+
$this->promo_sdf_banners();
|
29 |
+
echo "\n\n</div>\n";
|
30 |
+
}
|
31 |
+
|
32 |
+
echo "\n\n</div>\n";
|
33 |
+
|
34 |
}
|
35 |
}
|
36 |
|
modules/modules.css
CHANGED
@@ -1,110 +1,103 @@
|
|
1 |
/* ADMIN PAGES */
|
2 |
|
3 |
-
div.
|
4 |
padding-bottom: 1em;
|
5 |
}
|
6 |
|
7 |
-
div.
|
8 |
margin-bottom: 0.5em;
|
9 |
}
|
10 |
|
11 |
-
div.
|
12 |
font-size: 1.17em;
|
13 |
margin: 3em 0 1em;
|
14 |
padding-top: 1em;
|
15 |
border-top: 3px solid #ccc;
|
16 |
}
|
17 |
|
18 |
-
div.
|
19 |
width: auto;
|
20 |
}
|
21 |
|
22 |
-
div.
|
23 |
-
div.
|
24 |
width: 100%;
|
25 |
}
|
26 |
|
27 |
-
div.
|
28 |
padding-right: 2em;
|
29 |
}
|
30 |
|
31 |
-
div.
|
32 |
list-style-type: disc;
|
33 |
margin-left: 1em;
|
34 |
padding-left: 1em;
|
35 |
}
|
36 |
|
37 |
-
div.
|
38 |
-
div.
|
39 |
width: 325px;
|
40 |
}
|
41 |
|
42 |
-
div.
|
43 |
width: auto;
|
44 |
}
|
45 |
|
46 |
-
div.
|
47 |
padding-bottom: 1em;
|
48 |
}
|
49 |
|
50 |
-
div.
|
51 |
padding-left: 3em;
|
52 |
}
|
53 |
|
54 |
-
div.su-module .form-table tr.su-admin-form-group > td {
|
55 |
-
padding: 0;
|
56 |
-
}
|
57 |
-
|
58 |
-
div.su-module .form-table tr.su-admin-form-group > td > fieldset > table {
|
59 |
-
width: 100%;
|
60 |
-
}
|
61 |
|
62 |
-
div.
|
63 |
border-collapse: collapse;
|
64 |
border-top: 1px solid #ccc;
|
65 |
}
|
66 |
|
67 |
-
div.
|
68 |
font-weight: normal;
|
69 |
}
|
70 |
|
71 |
-
div.
|
72 |
padding: 1em 3em 1em 0;
|
73 |
border-bottom: 1px solid #ccc;
|
74 |
text-align: left;
|
75 |
}
|
76 |
|
77 |
-
div.
|
78 |
padding-left: 30px;
|
79 |
}
|
80 |
|
81 |
-
div.
|
82 |
font-weight: normal;
|
83 |
}
|
84 |
|
85 |
-
div.
|
86 |
font-size: 1.1em;
|
87 |
}
|
88 |
|
89 |
-
div.
|
90 |
|
91 |
-
div.
|
92 |
-
div.
|
93 |
-
div.
|
94 |
-
div.
|
95 |
|
96 |
-
div.
|
97 |
line-height: 1em;
|
98 |
}
|
99 |
|
100 |
-
div.
|
101 |
-
div.
|
102 |
display: block;
|
103 |
float: left;
|
104 |
width: 1em;
|
105 |
}
|
106 |
|
107 |
-
div.
|
108 |
text-align: center;
|
109 |
cursor: pointer;
|
110 |
border: 1px solid #666;
|
@@ -112,7 +105,7 @@ div.su-module table tr.su-indent .su-child-fields-toggle {
|
|
112 |
background-color: #eee;
|
113 |
}
|
114 |
|
115 |
-
div.
|
116 |
display: block;
|
117 |
padding-left: 2em;
|
118 |
}
|
@@ -126,33 +119,33 @@ div.su-importmodule #import-status {
|
|
126 |
padding: 1em 0;
|
127 |
}
|
128 |
|
129 |
-
div.
|
130 |
background-color: #eee;
|
131 |
}
|
132 |
|
133 |
/* META EDIT TABLE */
|
134 |
|
135 |
-
div.
|
136 |
-
div.
|
137 |
-
div.
|
138 |
-
div.
|
139 |
-
div.
|
140 |
-
div.
|
141 |
|
142 |
-
div.
|
143 |
font-style: italic;
|
144 |
color: #999;
|
145 |
}
|
146 |
|
147 |
/* IMPORT MODULES */
|
148 |
|
149 |
-
.
|
150 |
border: 0;
|
151 |
width: auto;
|
152 |
margin: 2em 0;
|
153 |
}
|
154 |
|
155 |
-
.
|
156 |
padding: 0 0.5em 1em 0;
|
157 |
}
|
158 |
|
1 |
/* ADMIN PAGES */
|
2 |
|
3 |
+
div.sdf-admin {
|
4 |
padding-bottom: 1em;
|
5 |
}
|
6 |
|
7 |
+
div.sdf-admin h2 {
|
8 |
margin-bottom: 0.5em;
|
9 |
}
|
10 |
|
11 |
+
div.sdf-admin h4.su-subheader {
|
12 |
font-size: 1.17em;
|
13 |
margin: 3em 0 1em;
|
14 |
padding-top: 1em;
|
15 |
border-top: 3px solid #ccc;
|
16 |
}
|
17 |
|
18 |
+
div.sdf-admin table.widefat {
|
19 |
width: auto;
|
20 |
}
|
21 |
|
22 |
+
div.sdf-admin table.fullwidth,
|
23 |
+
div.sdf-admin table.fullwidth input.regular-text {
|
24 |
width: 100%;
|
25 |
}
|
26 |
|
27 |
+
div.sdf-admin table.widefat td {
|
28 |
padding-right: 2em;
|
29 |
}
|
30 |
|
31 |
+
div.sdf-admin table.widefat td ul {
|
32 |
list-style-type: disc;
|
33 |
margin-left: 1em;
|
34 |
padding-left: 1em;
|
35 |
}
|
36 |
|
37 |
+
div.sdf-admin .form-table .regular-text,
|
38 |
+
div.sdf-admin .form-table .jls_text_dest {
|
39 |
width: 325px;
|
40 |
}
|
41 |
|
42 |
+
div.sdf-admin .form-table .subfield {
|
43 |
width: auto;
|
44 |
}
|
45 |
|
46 |
+
div.sdf-admin .form-table div div.field {
|
47 |
padding-bottom: 1em;
|
48 |
}
|
49 |
|
50 |
+
div.sdf-admin .form-table label.su-indent {
|
51 |
padding-left: 3em;
|
52 |
}
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
|
55 |
+
div.sdf-admin table.report {
|
56 |
border-collapse: collapse;
|
57 |
border-top: 1px solid #ccc;
|
58 |
}
|
59 |
|
60 |
+
div.sdf-admin table.report th {
|
61 |
font-weight: normal;
|
62 |
}
|
63 |
|
64 |
+
div.sdf-admin table.report th, div.sdf-admin table.report td {
|
65 |
padding: 1em 3em 1em 0;
|
66 |
border-bottom: 1px solid #ccc;
|
67 |
text-align: left;
|
68 |
}
|
69 |
|
70 |
+
div.sdf-admin table.su-indent {
|
71 |
padding-left: 30px;
|
72 |
}
|
73 |
|
74 |
+
div.sdf-admin table.su-indent th {
|
75 |
font-weight: normal;
|
76 |
}
|
77 |
|
78 |
+
div.sdf-admin table.form-table table.su-indent th {
|
79 |
font-size: 1.1em;
|
80 |
}
|
81 |
|
82 |
+
div.sdf-admin table.su-indent th:after { content: ":"; }
|
83 |
|
84 |
+
div.sdf-admin table tr.su-indent-level-1 .su-field-label { padding-left: 1em; }
|
85 |
+
div.sdf-admin table tr.su-indent-level-2 .su-field-label { padding-left: 3em; }
|
86 |
+
div.sdf-admin table tr.su-indent-level-3 .su-field-label { padding-left: 5em; }
|
87 |
+
div.sdf-admin table tr.su-indent-level-4 .su-field-label { padding-left: 7em; }
|
88 |
|
89 |
+
div.sdf-admin table tr.su-indent .su-field-label {
|
90 |
line-height: 1em;
|
91 |
}
|
92 |
|
93 |
+
div.sdf-admin table tr.su-indent .su-child-fields-toggle,
|
94 |
+
div.sdf-admin table tr.su-indent .su-child-fields-toggle-filler {
|
95 |
display: block;
|
96 |
float: left;
|
97 |
width: 1em;
|
98 |
}
|
99 |
|
100 |
+
div.sdf-admin table tr.su-indent .su-child-fields-toggle {
|
101 |
text-align: center;
|
102 |
cursor: pointer;
|
103 |
border: 1px solid #666;
|
105 |
background-color: #eee;
|
106 |
}
|
107 |
|
108 |
+
div.sdf-admin table tr.su-indent .su-field-label-text {
|
109 |
display: block;
|
110 |
padding-left: 2em;
|
111 |
}
|
119 |
padding: 1em 0;
|
120 |
}
|
121 |
|
122 |
+
div.sdf-admin textarea[disabled] {
|
123 |
background-color: #eee;
|
124 |
}
|
125 |
|
126 |
/* META EDIT TABLE */
|
127 |
|
128 |
+
div.sdf-admin .su-meta-edit-table table.widefat,
|
129 |
+
div.sdf-admin .su-meta-edit-table table.widefat .regular-text { width: 100%; }
|
130 |
+
div.sdf-admin .su-meta-edit-table table.widefat td.su-actions { width: 6em; }
|
131 |
+
div.sdf-admin .su-meta-edit-table table.widefat td.su-id { width: 2em; }
|
132 |
+
div.sdf-admin .su-meta-edit-table table.widefat td.su-name { width: 20em; }
|
133 |
+
div.sdf-admin .su-meta-edit-table table.widefat td { vertical-align: middle; }
|
134 |
|
135 |
+
div.sdf-admin .su-meta-edit-table .su-meta-table-post-status {
|
136 |
font-style: italic;
|
137 |
color: #999;
|
138 |
}
|
139 |
|
140 |
/* IMPORT MODULES */
|
141 |
|
142 |
+
.sdf-admin table#import-status {
|
143 |
border: 0;
|
144 |
width: auto;
|
145 |
margin: 2em 0;
|
146 |
}
|
147 |
|
148 |
+
.sdf-admin table#import-status td {
|
149 |
padding: 0 0.5em 1em 0;
|
150 |
}
|
151 |
|
modules/modules.js
CHANGED
@@ -1,3 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
function su_reset_textbox(id, d, m, e) {
|
2 |
if (confirm(m+"\n\n"+d)) {
|
3 |
document.getElementById(id).value=d;
|
@@ -13,17 +34,6 @@ function su_textbox_value_changed(e, d, l) {
|
|
13 |
document.getElementById(l).className='';
|
14 |
}
|
15 |
|
16 |
-
function su_toggle_blind(id) {
|
17 |
-
if (document.getElementById(id)) {
|
18 |
-
if (document.getElementById(id).style.display=='none')
|
19 |
-
Effect.BlindDown(id);
|
20 |
-
else
|
21 |
-
Effect.BlindUp(id);
|
22 |
-
}
|
23 |
-
|
24 |
-
return false;
|
25 |
-
}
|
26 |
-
|
27 |
function su_enable_unload_confirm() {
|
28 |
window.onbeforeunload = su_confirm_unload_message;
|
29 |
}
|
@@ -36,7 +46,4 @@ function su_confirm_unload_message() {
|
|
36 |
return suModulesModulesL10n.unloadConfirmMessage;
|
37 |
}
|
38 |
|
39 |
-
|
40 |
-
jQuery('input, textarea, select', 'div.su-module').change(su_enable_unload_confirm);
|
41 |
-
jQuery('form', 'div.su-module').submit(su_disable_unload_confirm);
|
42 |
-
});
|
1 |
+
/*global jQuery:false, alert */
|
2 |
+
(function($) {
|
3 |
+
"use strict";
|
4 |
+
jQuery(document).ready(function($) {
|
5 |
+
$('input, textarea, select', 'div.sdf-admin').change(su_enable_unload_confirm);
|
6 |
+
$('form', 'div.sdf-admin').submit(su_disable_unload_confirm);
|
7 |
+
|
8 |
+
$('#wpbody').on('click', '.su_toggle_hide', function(e) {
|
9 |
+
e.preventDefault();
|
10 |
+
var selector = $(this).data('toggle'),
|
11 |
+
to_toggle = $('#'+selector);
|
12 |
+
to_toggle.slideToggle();
|
13 |
+
});
|
14 |
+
$('#wpbody').on('click', '.su_toggle_up', function(e) {
|
15 |
+
e.preventDefault();
|
16 |
+
var selector = $(this).data('toggle'),
|
17 |
+
to_toggle = $('#'+selector);
|
18 |
+
to_toggle.slideToggle();
|
19 |
+
});
|
20 |
+
});
|
21 |
+
|
22 |
function su_reset_textbox(id, d, m, e) {
|
23 |
if (confirm(m+"\n\n"+d)) {
|
24 |
document.getElementById(id).value=d;
|
34 |
document.getElementById(l).className='';
|
35 |
}
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
function su_enable_unload_confirm() {
|
38 |
window.onbeforeunload = su_confirm_unload_message;
|
39 |
}
|
46 |
return suModulesModulesL10n.unloadConfirmMessage;
|
47 |
}
|
48 |
|
49 |
+
})(jQuery);
|
|
|
|
|
|
modules/modules/modules.css
CHANGED
@@ -2,43 +2,10 @@
|
|
2 |
clear: left;
|
3 |
}
|
4 |
|
5 |
-
#su-modules
|
6 |
-
|
7 |
-
}
|
8 |
-
|
9 |
-
#su-modules
|
10 |
-
|
11 |
-
|
12 |
-
min-width: 25em;
|
13 |
-
}
|
14 |
-
|
15 |
-
#su-modules td.module-status input {
|
16 |
-
display: none;
|
17 |
-
}
|
18 |
-
|
19 |
-
#su-modules td.module-status a {
|
20 |
-
float: left;
|
21 |
-
display: block;
|
22 |
-
border: 1px solid transparent;
|
23 |
-
padding: 0.3em 0.5em;
|
24 |
-
color: #999;
|
25 |
-
margin-right: 0.2em;
|
26 |
-
}
|
27 |
-
|
28 |
-
#su-modules td.module-status a:hover {
|
29 |
-
border-color: #ccc #666 #666 #ccc;
|
30 |
-
}
|
31 |
-
|
32 |
-
#su-modules td.module-status a.current {
|
33 |
-
border-color: #666 #ccc #ccc #666;
|
34 |
-
}
|
35 |
-
|
36 |
-
#su-modules td.module-status .status-10 a.current { color: green; }
|
37 |
-
#su-modules td.module-status .status-5 a.current { color: black; }
|
38 |
-
#su-modules td.module-status .status-0 a.current { color: darkorange; }
|
39 |
-
#su-modules td.module-status .status-n10 a.current{ color: red; }
|
40 |
-
|
41 |
-
#su-modules #wp-ultimate {
|
42 |
-
float: right;
|
43 |
-
margin: 0 1em 1em;
|
44 |
-
}
|
2 |
clear: left;
|
3 |
}
|
4 |
|
5 |
+
#su-modules .module-status a.status-10.active { color: green; }
|
6 |
+
#su-modules .module-status a.status-5.active { color: black; }
|
7 |
+
#su-modules .module-status a.status-0.active { color: darkorange; }
|
8 |
+
#su-modules .module-status a.status-n10.active { color: red; }
|
9 |
+
#su-modules .module-name { color: #767676; }
|
10 |
+
#su-modules .module-name a.module-link { color: #0074A2; }
|
11 |
+
#su-modules .module-name a.module-link:hover { color: #0074A2; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modules/modules/modules.js
CHANGED
@@ -1,8 +1,9 @@
|
|
|
|
1 |
function set_module_status(key, input_value, a_obj) {
|
2 |
var td_id = "module-status-"+key;
|
3 |
var input_id = "su-"+key+"-module-status";
|
4 |
|
5 |
-
jQuery("
|
6 |
document.getElementById(input_id).value = input_value;
|
7 |
-
a_obj.className += "
|
8 |
}
|
1 |
+
|
2 |
function set_module_status(key, input_value, a_obj) {
|
3 |
var td_id = "module-status-"+key;
|
4 |
var input_id = "su-"+key+"-module-status";
|
5 |
|
6 |
+
jQuery("div#"+td_id+" a").removeClass("active");
|
7 |
document.getElementById(input_id).value = input_value;
|
8 |
+
a_obj.className += " active";
|
9 |
}
|
modules/modules/modules.php
CHANGED
@@ -9,9 +9,9 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_Modules extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() { return __('Module Manager', 'seo-ultimate'); }
|
13 |
-
function get_menu_title() { return __('Modules', 'seo-ultimate'); }
|
14 |
-
function get_menu_pos() { return 0; }
|
15 |
function is_menu_default(){ return true; }
|
16 |
|
17 |
function init() {
|
@@ -47,22 +47,13 @@ class SU_Modules extends SU_Module {
|
|
47 |
|
48 |
function admin_page_contents() {
|
49 |
|
50 |
-
|
51 |
-
|
52 |
-
<div
|
53 |
-
<a href="http://www.wpultimatetheme.com/" target="_blank">
|
54 |
-
<img src="<?php echo $this->plugin->plugin_dir_url; ?>plugin/images/wp-ultimate.gif" alt="<?php esc_attr_e('Like SEO Ultimate? Check out the WP Ultimate theme from SEO Design Solutions.', 'seo-ultimate'); ?>" title="" />
|
55 |
-
</a>
|
56 |
-
</div>
|
57 |
-
|
58 |
-
<?php
|
59 |
-
}
|
60 |
-
|
61 |
-
echo '<p>';
|
62 |
_e('SEO Ultimate’s features are located in groups called “modules.” By default, most of these modules are listed in the “SEO” menu on the left. Whenever you’re working with a module, you can view documentation by clicking the “Help” tab in the upper-right-hand corner of your administration screen.', 'seo-ultimate');
|
63 |
echo "</p>\n<p>";
|
64 |
_e('The Module Manager lets you disable or hide modules you don’t use. You can also silence modules from displaying bubble alerts on the menu.', 'seo-ultimate');
|
65 |
-
echo "</p>\n";
|
66 |
|
67 |
if (!empty($_GET['su-modules-updated']))
|
68 |
$this->print_message('success', __('Modules updated.', 'seo-ultimate'));
|
@@ -73,13 +64,20 @@ class SU_Modules extends SU_Module {
|
|
73 |
__('Status', 'seo-ultimate')
|
74 |
, __('Module', 'seo-ultimate')
|
75 |
);
|
|
|
76 |
echo <<<STR
|
77 |
-
<
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
|
84 |
STR;
|
85 |
|
@@ -89,6 +87,12 @@ STR;
|
|
89 |
, SU_MODULE_HIDDEN => __('Hidden', 'seo-ultimate')
|
90 |
, SU_MODULE_DISABLED => __('Disabled', 'seo-ultimate')
|
91 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
$modules = array();
|
94 |
|
@@ -123,8 +127,8 @@ STR;
|
|
123 |
|
124 |
$currentstatus = $psdata['modules'][$key];
|
125 |
|
126 |
-
echo "\t\t<
|
127 |
-
echo "\t\t\t
|
128 |
|
129 |
$hidden_is_hidden = ($this->plugin->call_module_func($key, 'get_menu_title', $module_menu_title) && $module_menu_title === false)
|
130 |
|| ($this->plugin->call_module_func($key, 'is_independent_module', $is_independent_module) && $is_independent_module &&
|
@@ -153,31 +157,48 @@ STR;
|
|
153 |
break;
|
154 |
}
|
155 |
|
156 |
-
if ($is_current || $currentstatus == $statuscode)
|
|
|
|
|
|
|
|
|
|
|
157 |
$codeclass = str_replace('-', 'n', strval($statuscode));
|
158 |
-
echo "\t\t\t\t\t
|
159 |
-
echo "<a href='javascript:void(0)' onclick=\"javascript:set_module_status('$key', $statuscode, this)\" class='$current'>$statuslabel</a
|
160 |
}
|
161 |
|
162 |
-
if (!$this->plugin->module_exists($key) || !$this->plugin->call_module_func($key, 'get_admin_url', $admin_url))
|
163 |
$admin_url = false;
|
|
|
164 |
|
165 |
if ($currentstatus > SU_MODULE_DISABLED && $admin_url) {
|
166 |
-
$cellcontent = "<a href='{$admin_url}'>$name</a>";
|
167 |
} else
|
168 |
$cellcontent = $name;
|
169 |
|
|
|
|
|
170 |
echo <<<STR
|
171 |
-
</
|
172 |
-
<
|
173 |
$cellcontent
|
174 |
-
</
|
175 |
-
</
|
176 |
|
177 |
STR;
|
178 |
}
|
179 |
|
180 |
-
echo "\t</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
|
182 |
$this->admin_form_end(null, false);
|
183 |
}
|
9 |
|
10 |
class SU_Modules extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() { return __('Module Manager', 'seo-ultimate'); }
|
13 |
+
static function get_menu_title() { return __('Modules', 'seo-ultimate'); }
|
14 |
+
static function get_menu_pos() { return 0; }
|
15 |
function is_menu_default(){ return true; }
|
16 |
|
17 |
function init() {
|
47 |
|
48 |
function admin_page_contents() {
|
49 |
|
50 |
+
echo '<div class="row">';
|
51 |
+
echo '<div class="col-sm-8 col-md-9">';
|
52 |
+
echo '<div class="bs-callout bs-callout-grey"><p>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
_e('SEO Ultimate’s features are located in groups called “modules.” By default, most of these modules are listed in the “SEO” menu on the left. Whenever you’re working with a module, you can view documentation by clicking the “Help” tab in the upper-right-hand corner of your administration screen.', 'seo-ultimate');
|
54 |
echo "</p>\n<p>";
|
55 |
_e('The Module Manager lets you disable or hide modules you don’t use. You can also silence modules from displaying bubble alerts on the menu.', 'seo-ultimate');
|
56 |
+
echo "</p></div>\n";
|
57 |
|
58 |
if (!empty($_GET['su-modules-updated']))
|
59 |
$this->print_message('success', __('Modules updated.', 'seo-ultimate'));
|
64 |
__('Status', 'seo-ultimate')
|
65 |
, __('Module', 'seo-ultimate')
|
66 |
);
|
67 |
+
|
68 |
echo <<<STR
|
69 |
+
<div class="panel panel-default">
|
70 |
+
<div class="panel-heading">
|
71 |
+
<div class="row">
|
72 |
+
<div class="col-sm-4 col-md-4">
|
73 |
+
<h3 class="panel-title step-title module-status">{$headers[0]}</h3>
|
74 |
+
</div>
|
75 |
+
<div class="col-sm-4 col-md-4">
|
76 |
+
<h3 class="panel-title step-title module-name">{$headers[1]}</h3>
|
77 |
+
</div>
|
78 |
+
</div>
|
79 |
+
</div>
|
80 |
+
<div class="panel-body">
|
81 |
|
82 |
STR;
|
83 |
|
87 |
, SU_MODULE_HIDDEN => __('Hidden', 'seo-ultimate')
|
88 |
, SU_MODULE_DISABLED => __('Disabled', 'seo-ultimate')
|
89 |
);
|
90 |
+
$buttons = array(
|
91 |
+
SU_MODULE_ENABLED => 'btn-success'
|
92 |
+
, SU_MODULE_SILENCED => 'btn-default'
|
93 |
+
, SU_MODULE_HIDDEN => 'btn-warning'
|
94 |
+
, SU_MODULE_DISABLED => 'btn-danger'
|
95 |
+
);
|
96 |
|
97 |
$modules = array();
|
98 |
|
127 |
|
128 |
$currentstatus = $psdata['modules'][$key];
|
129 |
|
130 |
+
echo "\t\t<div class='form-group'>\n\t\t\t<div class='col-sm-4 col-md-4'>\n";
|
131 |
+
echo "\t\t\t<div class='btn-group sdf_toggle module-status' id='module-status-$key'>\n";
|
132 |
|
133 |
$hidden_is_hidden = ($this->plugin->call_module_func($key, 'get_menu_title', $module_menu_title) && $module_menu_title === false)
|
134 |
|| ($this->plugin->call_module_func($key, 'is_independent_module', $is_independent_module) && $is_independent_module &&
|
157 |
break;
|
158 |
}
|
159 |
|
160 |
+
if ($is_current || $currentstatus == $statuscode) {
|
161 |
+
$current = ' active';
|
162 |
+
}
|
163 |
+
else {
|
164 |
+
$current = '';
|
165 |
+
}
|
166 |
$codeclass = str_replace('-', 'n', strval($statuscode));
|
167 |
+
echo "\t\t\t\t\t";
|
168 |
+
echo "<a href='javascript:void(0)' onclick=\"javascript:set_module_status('$key', $statuscode, this)\" type='button' class='status-$codeclass btn btn-sm btn-default$current'$style>$statuslabel</a>\n";
|
169 |
}
|
170 |
|
171 |
+
if (!$this->plugin->module_exists($key) || !$this->plugin->call_module_func($key, 'get_admin_url', $admin_url)) {
|
172 |
$admin_url = false;
|
173 |
+
}
|
174 |
|
175 |
if ($currentstatus > SU_MODULE_DISABLED && $admin_url) {
|
176 |
+
$cellcontent = "<a class='module-link' href='{$admin_url}'>$name</a>";
|
177 |
} else
|
178 |
$cellcontent = $name;
|
179 |
|
180 |
+
echo "\t\t\t</div>\n";
|
181 |
+
echo "\t\t\t\t<input type='hidden' name='su-$key-module-status' id='su-$key-module-status' value='$currentstatus' />\n";
|
182 |
echo <<<STR
|
183 |
+
</div>
|
184 |
+
<div class='col-sm-4 col-md-4 module-name'>
|
185 |
$cellcontent
|
186 |
+
</div>
|
187 |
+
</div>
|
188 |
|
189 |
STR;
|
190 |
}
|
191 |
|
192 |
+
echo "\t</div>\n</div>\n";
|
193 |
+
|
194 |
+
echo '</div>';
|
195 |
+
echo '<div class="col-sm-4 col-md-3">';
|
196 |
+
|
197 |
+
if ($this->should_show_sdf_theme_promo()) {
|
198 |
+
$this->promo_sdf_banners();
|
199 |
+
}
|
200 |
+
echo '</div>';
|
201 |
+
echo '</div>';
|
202 |
|
203 |
$this->admin_form_end(null, false);
|
204 |
}
|
modules/more-links/more-links.php
CHANGED
@@ -9,9 +9,9 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_MoreLinks extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() { return __('More Link Customizer', 'seo-ultimate'); }
|
13 |
|
14 |
-
function get_parent_module() { return 'misc'; }
|
15 |
function get_settings_key() { return 'more-links'; }
|
16 |
|
17 |
function get_default_settings() {
|
9 |
|
10 |
class SU_MoreLinks extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() { return __('More Link Customizer', 'seo-ultimate'); }
|
13 |
|
14 |
+
static function get_parent_module() { return 'misc'; }
|
15 |
function get_settings_key() { return 'more-links'; }
|
16 |
|
17 |
function get_default_settings() {
|
modules/noindex/noindex.php
CHANGED
@@ -16,12 +16,12 @@ add_filter('su_settings_export_array', 'su_noindex_export_filter');
|
|
16 |
|
17 |
class SU_Noindex extends SU_Module {
|
18 |
|
19 |
-
function get_module_title() { return __('Noindex Manager', 'seo-ultimate'); }
|
20 |
function get_module_subtitle() { return __('Noindex', 'seo-ultimate'); }
|
21 |
|
22 |
-
function get_parent_module() { return 'meta-robots'; }
|
23 |
function get_settings_key() { return 'noindex'; }
|
24 |
-
function is_independent_module() { return false; }
|
25 |
|
26 |
function init() {
|
27 |
|
@@ -167,7 +167,7 @@ class SU_Noindex extends SU_Module {
|
|
167 |
echo "\t<meta name=\"robots\" content=\"noindex\" />\n";
|
168 |
}
|
169 |
|
170 |
-
function postmeta_fields($fields) {
|
171 |
$fields['30|meta_robots_noindex|meta_robots_nofollow'] = $this->get_postmeta_checkboxes(array(
|
172 |
'meta_robots_noindex' => __('Noindex: Tell search engines not to index this webpage.', 'seo-ultimate')
|
173 |
, 'meta_robots_nofollow' => __('Nofollow: Tell search engines not to spider links on this webpage.', 'seo-ultimate')
|
16 |
|
17 |
class SU_Noindex extends SU_Module {
|
18 |
|
19 |
+
static function get_module_title() { return __('Noindex Manager', 'seo-ultimate'); }
|
20 |
function get_module_subtitle() { return __('Noindex', 'seo-ultimate'); }
|
21 |
|
22 |
+
static function get_parent_module() { return 'meta-robots'; }
|
23 |
function get_settings_key() { return 'noindex'; }
|
24 |
+
static function is_independent_module() { return false; }
|
25 |
|
26 |
function init() {
|
27 |
|
167 |
echo "\t<meta name=\"robots\" content=\"noindex\" />\n";
|
168 |
}
|
169 |
|
170 |
+
function postmeta_fields($fields, $screen) {
|
171 |
$fields['30|meta_robots_noindex|meta_robots_nofollow'] = $this->get_postmeta_checkboxes(array(
|
172 |
'meta_robots_noindex' => __('Noindex: Tell search engines not to index this webpage.', 'seo-ultimate')
|
173 |
, 'meta_robots_nofollow' => __('Nofollow: Tell search engines not to spider links on this webpage.', 'seo-ultimate')
|
modules/opengraph/opengraph.php
CHANGED
@@ -12,8 +12,8 @@ class SU_OpenGraph extends SU_Module {
|
|
12 |
var $namespaces_declared = false;
|
13 |
var $jlsuggest_box_post_id = false;
|
14 |
|
15 |
-
function get_module_title() { return __('Open Graph Integrator', 'seo-ultimate'); }
|
16 |
-
function get_menu_title() { return __('Open Graph', 'seo-ultimate'); }
|
17 |
|
18 |
function get_default_settings() {
|
19 |
return array(
|
@@ -31,6 +31,35 @@ class SU_OpenGraph extends SU_Module {
|
|
31 |
add_action('su_head', array(&$this, 'head_tag_output'));
|
32 |
add_filter('su_get_setting-opengraph-twitter_site_handle', array(&$this, 'sanitize_twitter_handle'));
|
33 |
add_filter('user_contactmethods', array(&$this, 'add_twitter_field'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
}
|
35 |
|
36 |
function html_tag_attrs($attrs) {
|
@@ -125,10 +154,11 @@ class SU_OpenGraph extends SU_Module {
|
|
125 |
//Image
|
126 |
$tags['og:image'] = $this->jlsuggest_value_to_url($this->get_postmeta('og_image'), true);
|
127 |
if (!$tags['og:image']) {
|
128 |
-
if ('attachment' == $post->post_type)
|
129 |
$tags['og:image'] = wp_get_attachment_url();
|
130 |
-
elseif (current_theme_supports('post-thumbnails') && $thumbnail_id = get_post_thumbnail_id($post->ID))
|
131 |
$tags['og:image'] = wp_get_attachment_url($thumbnail_id);
|
|
|
132 |
}
|
133 |
|
134 |
//Additional fields
|
@@ -219,6 +249,36 @@ class SU_OpenGraph extends SU_Module {
|
|
219 |
|
220 |
//Twitter Site Handle
|
221 |
$twitter_tags['twitter:site'] = $this->get_setting('twitter_site_handle');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
|
223 |
//Output meta tags
|
224 |
$namespace_urls = $this->namespaces_declared ? array() : $this->get_namespace_urls();
|
@@ -327,7 +387,36 @@ class SU_OpenGraph extends SU_Module {
|
|
327 |
$this->admin_form_table_start();
|
328 |
$this->textbox('og_site_name', __('Site Name', 'seo-ultimate'), false, false, array(), array('placeholder' => get_bloginfo('name')));
|
329 |
$this->textbox('default_fb_app_id', __('Facebook App ID', 'seo-ultimate'));
|
330 |
-
$this->textbox('twitter_site_handle', __('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
$this->admin_form_table_end();
|
332 |
}
|
333 |
|
@@ -382,7 +471,7 @@ class SU_OpenGraph extends SU_Module {
|
|
382 |
$this->admin_form_table_end();
|
383 |
}
|
384 |
|
385 |
-
function postmeta_fields($fields) {
|
386 |
|
387 |
$fields['opengraph'][10]['og_title'] = $this->get_postmeta_textbox('og_title', __('Title:', 'seo-ultimate'));
|
388 |
$fields['opengraph'][20]['og_description'] = $this->get_postmeta_textarea('og_description', __('Description:', 'seo-ultimate'));
|
@@ -445,8 +534,13 @@ class SU_OpenGraph extends SU_Module {
|
|
445 |
|
446 |
function get_twitter_type_options() {
|
447 |
return array(
|
448 |
-
'summary' => __('
|
|
|
449 |
, 'photo' => __('Photo', 'seo-ultimate')
|
|
|
|
|
|
|
|
|
450 |
);
|
451 |
}
|
452 |
|
12 |
var $namespaces_declared = false;
|
13 |
var $jlsuggest_box_post_id = false;
|
14 |
|
15 |
+
static function get_module_title() { return __('Open Graph Integrator', 'seo-ultimate'); }
|
16 |
+
static function get_menu_title() { return __('Open Graph', 'seo-ultimate'); }
|
17 |
|
18 |
function get_default_settings() {
|
19 |
return array(
|
31 |
add_action('su_head', array(&$this, 'head_tag_output'));
|
32 |
add_filter('su_get_setting-opengraph-twitter_site_handle', array(&$this, 'sanitize_twitter_handle'));
|
33 |
add_filter('user_contactmethods', array(&$this, 'add_twitter_field'));
|
34 |
+
add_filter('su_get_setting-opengraph-twitter_site_id_handle', array(&$this, 'sanitize_twitter_handle'));
|
35 |
+
add_filter('su_get_setting-opengraph-twitter_creator_handle', array(&$this, 'sanitize_twitter_handle'));
|
36 |
+
add_filter('su_get_setting-opengraph-twitter_creator_id_handle', array(&$this, 'sanitize_twitter_handle'));
|
37 |
+
add_filter('su_get_setting-opengraph-twitter_description_handle', array(&$this, 'sanitize_twitter_handle'));
|
38 |
+
add_filter('su_get_setting-opengraph-twitter_title_handle', array(&$this, 'sanitize_twitter_handle'));
|
39 |
+
add_filter('su_get_setting-opengraph-twitter_image_src_handle', array(&$this, 'sanitize_twitter_handle'));
|
40 |
+
add_filter('su_get_setting-opengraph-twitter_image_width_handle', array(&$this, 'sanitize_twitter_handle'));
|
41 |
+
add_filter('su_get_setting-opengraph-twitter_image_height_handle', array(&$this, 'sanitize_twitter_handle'));
|
42 |
+
add_filter('su_get_setting-opengraph-twitter_data1_handle', array(&$this, 'sanitize_twitter_handle'));
|
43 |
+
add_filter('su_get_setting-opengraph-twitter_label1_handle', array(&$this, 'sanitize_twitter_handle'));
|
44 |
+
add_filter('su_get_setting-opengraph-twitter_data2_handle', array(&$this, 'sanitize_twitter_handle'));
|
45 |
+
add_filter('su_get_setting-opengraph-twitter_label2_handle', array(&$this, 'sanitize_twitter_handle'));
|
46 |
+
add_filter('su_get_setting-opengraph-twitter_image0_src_handle', array(&$this, 'sanitize_twitter_handle'));
|
47 |
+
add_filter('su_get_setting-opengraph-twitter_image1_src_handle', array(&$this, 'sanitize_twitter_handle'));
|
48 |
+
add_filter('su_get_setting-opengraph-twitter_image2_src_handle', array(&$this, 'sanitize_twitter_handle'));
|
49 |
+
add_filter('su_get_setting-opengraph-twitter_image3_src_handle', array(&$this, 'sanitize_twitter_handle'));
|
50 |
+
add_filter('su_get_setting-opengraph-twitter_player_handle', array(&$this, 'sanitize_twitter_handle'));
|
51 |
+
add_filter('su_get_setting-opengraph-twitter_player_width_handle', array(&$this, 'sanitize_twitter_handle'));
|
52 |
+
add_filter('su_get_setting-opengraph-twitter_player_height_handle', array(&$this, 'sanitize_twitter_handle'));
|
53 |
+
add_filter('su_get_setting-opengraph-twitter_player_stream_handle', array(&$this, 'sanitize_twitter_handle'));
|
54 |
+
add_filter('su_get_setting-opengraph-twitter_app_name_iphone_handle', array(&$this, 'sanitize_twitter_handle'));
|
55 |
+
add_filter('su_get_setting-opengraph-twitter_app_id_iphone_handle', array(&$this, 'sanitize_twitter_handle'));
|
56 |
+
add_filter('su_get_setting-opengraph-twitter_app_url_iphone_handle', array(&$this, 'sanitize_twitter_handle'));
|
57 |
+
add_filter('su_get_setting-opengraph-twitter_app_name_ipad_handle', array(&$this, 'sanitize_twitter_handle'));
|
58 |
+
add_filter('su_get_setting-opengraph-twitter_app_id_ipad_handle', array(&$this, 'sanitize_twitter_handle'));
|
59 |
+
add_filter('su_get_setting-opengraph-twitter_app_url_ipad_handle', array(&$this, 'sanitize_twitter_handle'));
|
60 |
+
add_filter('su_get_setting-opengraph-twitter_app_name_googleplay_handle', array(&$this, 'sanitize_twitter_handle'));
|
61 |
+
add_filter('su_get_setting-opengraph-twitter_app_id_googleplay_handle', array(&$this, 'sanitize_twitter_handle'));
|
62 |
+
add_filter('su_get_setting-opengraph-twitter_app_url_googleplay_handle', array(&$this, 'sanitize_twitter_handle'));
|
63 |
}
|
64 |
|
65 |
function html_tag_attrs($attrs) {
|
154 |
//Image
|
155 |
$tags['og:image'] = $this->jlsuggest_value_to_url($this->get_postmeta('og_image'), true);
|
156 |
if (!$tags['og:image']) {
|
157 |
+
if ('attachment' == $post->post_type) {
|
158 |
$tags['og:image'] = wp_get_attachment_url();
|
159 |
+
} elseif (current_theme_supports('post-thumbnails') && $thumbnail_id = get_post_thumbnail_id($post->ID)) {
|
160 |
$tags['og:image'] = wp_get_attachment_url($thumbnail_id);
|
161 |
+
}
|
162 |
}
|
163 |
|
164 |
//Additional fields
|
249 |
|
250 |
//Twitter Site Handle
|
251 |
$twitter_tags['twitter:site'] = $this->get_setting('twitter_site_handle');
|
252 |
+
$twitter_tags['twitter:site:id'] = $this->get_setting('twitter_site_id_handle');
|
253 |
+
$twitter_tags['twitter:creator'] = $this->get_setting('twitter_creator_handle');
|
254 |
+
$twitter_tags['twitter:creator:id'] = $this->get_setting('twitter_creator_id_handle');
|
255 |
+
$twitter_tags['twitter:description'] = $this->get_setting('twitter_description_handle');
|
256 |
+
$twitter_tags['twitter:title'] = $this->get_setting('twitter_title_handle');
|
257 |
+
$twitter_tags['twitter:image:src'] = $this->get_setting('twitter_image_src_handle');
|
258 |
+
$twitter_tags['twitter:image:width'] = $this->get_setting('twitter_image_width_handle');
|
259 |
+
$twitter_tags['twitter:image:height'] = $this->get_setting('twitter_image_height_handle');
|
260 |
+
$twitter_tags['twitter:data1'] = $this->get_setting('twitter_data1_handle');
|
261 |
+
$twitter_tags['twitter:label1'] = $this->get_setting('twitter_label1_handle');
|
262 |
+
$twitter_tags['twitter:data2'] = $this->get_setting('twitter_data2_handle');
|
263 |
+
$twitter_tags['twitter:label2'] = $this->get_setting('twitter_label2_handle');
|
264 |
+
$twitter_tags['twitter:image0:src'] = $this->get_setting('twitter_image0_src_handle');
|
265 |
+
$twitter_tags['twitter:image1:src'] = $this->get_setting('twitter_image1_src_handle');
|
266 |
+
$twitter_tags['twitter:image2:src'] = $this->get_setting('twitter_image2_src_handle');
|
267 |
+
$twitter_tags['twitter:image3:src'] = $this->get_setting('twitter_image3_src_handle');
|
268 |
+
$twitter_tags['twitter:player'] = $this->get_setting('twitter_player_handle');
|
269 |
+
$twitter_tags['twitter:player:width'] = $this->get_setting('twitter_player_width_handle');
|
270 |
+
$twitter_tags['twitter:player:height'] = $this->get_setting('twitter_player_height_handle');
|
271 |
+
$twitter_tags['twitter:player:stream'] = $this->get_setting('twitter_player_stream_handle');
|
272 |
+
$twitter_tags['twitter:app:name:iphone'] = $this->get_setting('twitter_app_name_iphone_handle');
|
273 |
+
$twitter_tags['twitter:app:id:iphone'] = $this->get_setting('twitter_app_id_iphone_handle');
|
274 |
+
$twitter_tags['twitter:app:url:iphone'] = $this->get_setting('twitter_app_url_iphone_handle');
|
275 |
+
$twitter_tags['twitter:app:name:iphone'] = $this->get_setting('twitter_app_name_ipad_handle');
|
276 |
+
$twitter_tags['twitter:app:id:iphone'] = $this->get_setting('twitter_app_id_ipad_handle');
|
277 |
+
$twitter_tags['twitter:app:url:iphone'] = $this->get_setting('twitter_app_url_ipad_handle');
|
278 |
+
$twitter_tags['twitter:app:name:googleplay'] = $this->get_setting('twitter_app_name_googleplay_handle');
|
279 |
+
$twitter_tags['twitter:app:id:googleplay'] = $this->get_setting('twitter_app_id_googleplay_handle');
|
280 |
+
$twitter_tags['twitter:app:url:googleplay'] = $this->get_setting('twitter_app_url_googleplay_handle');
|
281 |
+
|
282 |
|
283 |
//Output meta tags
|
284 |
$namespace_urls = $this->namespaces_declared ? array() : $this->get_namespace_urls();
|
387 |
$this->admin_form_table_start();
|
388 |
$this->textbox('og_site_name', __('Site Name', 'seo-ultimate'), false, false, array(), array('placeholder' => get_bloginfo('name')));
|
389 |
$this->textbox('default_fb_app_id', __('Facebook App ID', 'seo-ultimate'));
|
390 |
+
$this->textbox('twitter_site_handle', __('@username of website', 'seo-ultimate'), false, false, array('help_text' => 'twitter:site', 'callout' => 'Twitter Card Tags'));
|
391 |
+
$this->textbox('twitter_site_id_handle', __('Same as twitter:site, but the user’s Twitter ID', 'seo-ultimate'), false, false, array('help_text' => 'twitter:site:id'));
|
392 |
+
$this->textbox('twitter_creator_handle', __('@username of content creator', 'seo-ultimate'), false, false, array('help_text' => 'twitter:creator'));
|
393 |
+
$this->textbox('twitter_creator_id_handle', __('Twitter user ID of content creator', 'seo-ultimate'), false, false, array('help_text' => 'twitter:creator:id'));
|
394 |
+
$this->textbox('twitter_description_handle', __('Description of content (maximum 200 characters)', 'seo-ultimate'), false, false, array('help_text' => 'twitter:description'));
|
395 |
+
$this->textbox('twitter_title_handle', __('Title of content (maximum 70 characters)', 'seo-ultimate'), false, false, array('help_text' => 'twitter:title'));
|
396 |
+
$this->textbox('twitter_image_src_handle', __('URL of image to use in the card. Image must be less than 1MB in size.', 'seo-ultimate'), false, false, array('help_text' => 'twitter:image:src'));
|
397 |
+
$this->textbox('twitter_image_width_handle', __('Width of image in pixels', 'seo-ultimate'), false, false, array('help_text' => 'twitter:image:width'));
|
398 |
+
$this->textbox('twitter_image_height_handle', __('Height of image in pixels', 'seo-ultimate'), false, false, array('help_text' => 'twitter:image:height'));
|
399 |
+
$this->textbox('twitter_data1_handle', __('Top customizable data field, can be a relatively short string (ie "$3.99")', 'seo-ultimate'), false, false, array('help_text' => 'twitter:data1'));
|
400 |
+
$this->textbox('twitter_label1_handle', __('Customizable label or units for the information in twitter:data1 (best practice: use all caps)', 'seo-ultimate'), false, false, array('help_text' => 'twitter:label1'));
|
401 |
+
$this->textbox('twitter_data2_handle', __('Bottom customizable data field, can be a relatively short string (ie "Seattle, WA")', 'seo-ultimate'), false, false, array('help_text' => 'twitter:data2'));
|
402 |
+
$this->textbox('twitter_label2_handle', __('Customizable label or units for the information in twitter:data1 (best practice: use all caps)', 'seo-ultimate'), false, false, array('help_text' => 'twitter:label2'));
|
403 |
+
$this->textbox('twitter_image0_src_handle', __('1st image in the gallery. Images must be less than 1MB in size.', 'seo-ultimate'), false, false, array('help_text' => 'twitter:image0:src'));
|
404 |
+
$this->textbox('twitter_image1_src_handle', __('2nd image in the gallery. Images must be less than 1MB in size.', 'seo-ultimate'), false, false, array('help_text' => 'twitter:image1:src'));
|
405 |
+
$this->textbox('twitter_image2_src_handle', __('3rd image in the gallery. Images must be less than 1MB in size.', 'seo-ultimate'), false, false, array('help_text' => 'twitter:image2:src'));
|
406 |
+
$this->textbox('twitter_image3_src_handle', __('4th image in the gallery. Images must be less than 1MB in size.', 'seo-ultimate'), false, false, array('help_text' => 'twitter:image3:src'));
|
407 |
+
$this->textbox('twitter_player_handle', __(' HTTPS URL of player iframe', 'seo-ultimate'), false, false, array('help_text' => 'twitter:player'));
|
408 |
+
$this->textbox('twitter_player_width_handle', __('Width of iframe in pixels', 'seo-ultimate'), false, false, array('help_text' => 'twitter:player:width'));
|
409 |
+
$this->textbox('twitter_player_height_handle', __('Height of iframe in pixels', 'seo-ultimate'), false, false, array('help_text' => 'twitter:player:height'));
|
410 |
+
$this->textbox('twitter_player_stream_handle', __('URL to raw video or audio stream', 'seo-ultimate'), false, false, array('help_text' => 'twitter:player:stream'));
|
411 |
+
$this->textbox('twitter_app_name_iphone_handle', __('Name of your iPhone app', 'seo-ultimate'), false, false, array('help_text' => 'twitter:app:name:iphone'));
|
412 |
+
$this->textbox('twitter_app_id_iphone_handle', __('Your app ID in the iTunes App Store (Note: NOT your bundle ID)', 'seo-ultimate'), false, false, array('help_text' => 'twitter:app:id:iphone'));
|
413 |
+
$this->textbox('twitter_app_url_iphone_handle', __('Your app’s custom URL scheme (you must include "://" after your scheme name)', 'seo-ultimate'), false, false, array('help_text' => 'twitter:app:url:iphone'));
|
414 |
+
$this->textbox('twitter_app_name_ipad_handle', __('Name of your iPad optimized app', 'seo-ultimate'), false, false, array('help_text' => 'twitter:app:name:ipad'));
|
415 |
+
$this->textbox('twitter_app_id_ipad_handle', __('Your app ID in the iTunes App Store', 'seo-ultimate'), false, false, array('help_text' => 'twitter:app:id:ipad'));
|
416 |
+
$this->textbox('twitter_app_url_ipad_handle', __('Your app’s custom URL scheme', 'seo-ultimate'), false, false, array('help_text' => 'twitter:app:url:ipad'));
|
417 |
+
$this->textbox('twitter_app_name_googleplay_handle', __('Name of your Android app', 'seo-ultimate'), false, false, array('help_text' => 'twitter:app:name:googleplay'));
|
418 |
+
$this->textbox('twitter_app_id_googleplay_handle', __('Your app ID in the Google Play Store', 'seo-ultimate'), false, false, array('help_text' => 'twitter:app:id:googleplay'));
|
419 |
+
$this->textbox('twitter_app_url_googleplay_handle', __('Your app#8217;s custom URL scheme', 'seo-ultimate'), false, false, array('help_text' => 'twitter:app:url:googleplay'));
|
420 |
$this->admin_form_table_end();
|
421 |
}
|
422 |
|
471 |
$this->admin_form_table_end();
|
472 |
}
|
473 |
|
474 |
+
function postmeta_fields($fields, $screen) {
|
475 |
|
476 |
$fields['opengraph'][10]['og_title'] = $this->get_postmeta_textbox('og_title', __('Title:', 'seo-ultimate'));
|
477 |
$fields['opengraph'][20]['og_description'] = $this->get_postmeta_textarea('og_description', __('Description:', 'seo-ultimate'));
|
534 |
|
535 |
function get_twitter_type_options() {
|
536 |
return array(
|
537 |
+
'summary' => __('Summary', 'seo-ultimate')
|
538 |
+
, 'product' => __('Product', 'seo-ultimate')
|
539 |
, 'photo' => __('Photo', 'seo-ultimate')
|
540 |
+
, 'summary_large_image' => __('Summary Large Image', 'seo-ultimate')
|
541 |
+
, 'gallery' => __('Gallery', 'seo-ultimate')
|
542 |
+
, 'player' => __('Player', 'seo-ultimate')
|
543 |
+
, 'app' => __('App', 'seo-ultimate')
|
544 |
);
|
545 |
}
|
546 |
|
modules/permalinks/permalinks.php
CHANGED
@@ -12,9 +12,8 @@ if (class_exists('SU_Module')) {
|
|
12 |
|
13 |
class SU_Permalinks extends SU_Module {
|
14 |
|
15 |
-
function get_module_title() { return __('Permalink Tweaker', 'seo-ultimate'); }
|
16 |
-
|
17 |
-
function get_parent_module() { return 'misc'; }
|
18 |
function get_settings_key() { return 'permalinks'; }
|
19 |
|
20 |
function get_default_settings() {
|
12 |
|
13 |
class SU_Permalinks extends SU_Module {
|
14 |
|
15 |
+
static function get_module_title() { return __('Permalink Tweaker', 'seo-ultimate'); }
|
16 |
+
static function get_parent_module() { return 'misc'; }
|
|
|
17 |
function get_settings_key() { return 'permalinks'; }
|
18 |
|
19 |
function get_default_settings() {
|
modules/rich-snippets/rich-snippets.php
CHANGED
@@ -11,9 +11,9 @@ class SU_RichSnippets extends SU_Module {
|
|
11 |
|
12 |
var $apply_subproperty_markup_args = array();
|
13 |
|
14 |
-
function get_module_title() { return __('Rich Snippet Creator', 'seo-ultimate'); }
|
15 |
|
16 |
-
function get_parent_module() { return 'misc'; }
|
17 |
function get_settings_key() { return 'rich-snippets'; }
|
18 |
|
19 |
function init() {
|
@@ -41,8 +41,7 @@ class SU_RichSnippets extends SU_Module {
|
|
41 |
function get_supported_snippet_types() {
|
42 |
|
43 |
return array(
|
44 |
-
|
45 |
-
'review' => array(
|
46 |
'label' => __('Review', 'seo-ultimate')
|
47 |
, 'tags' => 'Review'
|
48 |
, 'content_tags' => '<div itemprop="reviewBody">%s</div>'
|
@@ -340,7 +339,7 @@ class SU_RichSnippets extends SU_Module {
|
|
340 |
return $content;
|
341 |
}
|
342 |
|
343 |
-
function postmeta_fields($fields) {
|
344 |
$fields['serp'][40]['rich_snippet_type'] = $this->get_postmeta_dropdown('rich_snippet_type', array(
|
345 |
'none' => __('Standard', 'seo-ultimate')
|
346 |
, 'review' => __('Review', 'seo-ultimate')
|
11 |
|
12 |
var $apply_subproperty_markup_args = array();
|
13 |
|
14 |
+
static function get_module_title() { return __('Rich Snippet Creator', 'seo-ultimate'); }
|
15 |
|
16 |
+
static function get_parent_module() { return 'misc'; }
|
17 |
function get_settings_key() { return 'rich-snippets'; }
|
18 |
|
19 |
function init() {
|
41 |
function get_supported_snippet_types() {
|
42 |
|
43 |
return array(
|
44 |
+
'review' => array(
|
|
|
45 |
'label' => __('Review', 'seo-ultimate')
|
46 |
, 'tags' => 'Review'
|
47 |
, 'content_tags' => '<div itemprop="reviewBody">%s</div>'
|
339 |
return $content;
|
340 |
}
|
341 |
|
342 |
+
function postmeta_fields($fields, $screen) {
|
343 |
$fields['serp'][40]['rich_snippet_type'] = $this->get_postmeta_dropdown('rich_snippet_type', array(
|
344 |
'none' => __('Standard', 'seo-ultimate')
|
345 |
, 'review' => __('Review', 'seo-ultimate')
|
modules/sdf-ads.css
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
/* CUSTOMIZE THE CAROUSEL/BANNERS
|
3 |
+
-------------------------------------------------- */
|
4 |
+
/* Carousel base class */
|
5 |
+
#sdf-promo-carousel {
|
6 |
+
max-width: 300px;
|
7 |
+
}
|
8 |
+
#sdf-promo-carousel .carousel {
|
9 |
+
margin-bottom: 40px;
|
10 |
+
|
11 |
+
/* Negative margin to pull up carousel. 90px is roughly margins and height of navbar. */
|
12 |
+
margin-top: 0px;
|
13 |
+
}
|
14 |
+
/* Since positioning the image, we need to help out the caption */
|
15 |
+
#sdf-promo-carousel .carousel-caption {
|
16 |
+
z-index: 10;
|
17 |
+
}
|
18 |
+
#sdf-promo-carousel .carousel-caption h1,
|
19 |
+
#sdf-promo-carousel .carousel-caption h1 a,#sdf-promo-carousel .carousel-caption h1 a:hover,#sdf-promo-carousel .carousel-caption h1 a:focus,
|
20 |
+
#sdf-promo-carousel .carousel-caption h2,
|
21 |
+
#sdf-promo-carousel .carousel-caption h2 a,#sdf-promo-carousel .carousel-caption h2 a:hover,#sdf-promo-carousel .carousel-caption h2 a:focus,
|
22 |
+
#sdf-promo-carousel .carousel-caption h3,
|
23 |
+
#sdf-promo-carousel .carousel-caption h3 a,#sdf-promo-carousel .carousel-caption h3 a:hover,#sdf-promo-carousel .carousel-caption h3 a:focus {
|
24 |
+
color: #ffffff;
|
25 |
+
}
|
26 |
+
|
27 |
+
/* Declare heights because of positioning of img element */
|
28 |
+
#sdf-promo-carousel .carousel .item {
|
29 |
+
height: 580px;
|
30 |
+
background-color: #868686;
|
31 |
+
}
|
32 |
+
#sdf-promo-carousel .carousel-inner > .item a img {
|
33 |
+
position: absolute;
|
34 |
+
top: 0;
|
35 |
+
left: 0;
|
36 |
+
min-width: 100%;
|
37 |
+
}
|
38 |
+
.sdf-admin #sdf-promo-carousel .carousel-control {
|
39 |
+
opacity: 0.2;
|
40 |
+
filter: alpha(opacity=20);
|
41 |
+
}
|
42 |
+
.sdf-admin #sdf-promo-carousel .carousel-control.left {
|
43 |
+
background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.0001)));
|
44 |
+
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.4) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
|
45 |
+
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.0001) 100%);
|
46 |
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.0001) 100%);
|
47 |
+
background-repeat: repeat-x;
|
48 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
49 |
+
}
|
50 |
+
.sdf-admin #sdf-promo-carousel .carousel-control.right {
|
51 |
+
right: 0;
|
52 |
+
left: auto;
|
53 |
+
background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.4)));
|
54 |
+
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.4) 100%));
|
55 |
+
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.4) 100%);
|
56 |
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.4) 100%);
|
57 |
+
background-repeat: repeat-x;
|
58 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
59 |
+
}
|
60 |
+
.sdf-admin #sdf-promo-carousel .carousel-control:hover,.sdf-admin .carousel-control:focus {
|
61 |
+
color: #ffffff;
|
62 |
+
text-decoration: none;
|
63 |
+
opacity: 0.5;
|
64 |
+
filter: alpha(opacity=50);
|
65 |
+
}
|
66 |
+
.sdf-admin #sdf-promo-carousel .carousel-control .icon-prev, .sdf-admin .carousel-control .icon-next, .sdf-admin .carousel-control .glyphicon-chevron-left, .sdf-admin .carousel-control .glyphicon-chevron-right {
|
67 |
+
bottom: 140px !important;
|
68 |
+
top: auto !important;
|
69 |
+
}
|
70 |
+
.sdf-admin #sdf-promo-carousel .carousel-control .icon-next, .sdf-admin .carousel-control .glyphicon-chevron-right {
|
71 |
+
left: 0 !important;
|
72 |
+
}
|
modules/sdf-ads.js
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*global jQuery:false, alert */
|
2 |
+
(function($) {
|
3 |
+
"use strict";
|
4 |
+
jQuery(document).ready(function($) {
|
5 |
+
|
6 |
+
$('#sdf-promo-carousel').hide();
|
7 |
+
var sds_promo_blog_post = $('#sds_promo_blog_post').html();
|
8 |
+
var banners_remote = 'https://s3.amazonaws.com/sdfimages/seoultimatebanner/seo_ultimate_banners_jsonp.json';
|
9 |
+
|
10 |
+
$.ajax({
|
11 |
+
url: banners_remote,
|
12 |
+
dataType: 'jsonp',
|
13 |
+
jsonp: false,
|
14 |
+
jsonpCallback: 'sdfbanners'
|
15 |
+
})
|
16 |
+
.done(function (data) {
|
17 |
+
var sdf_carousel = '';
|
18 |
+
if (data.enabled === true) {
|
19 |
+
var shuffled_slides = shuffleArray(data.slides);
|
20 |
+
sdf_carousel = sdf_carousel + "<div id=\"sdfCarousel\" class=\"carousel slide\"><ol class=\"carousel-indicators\">";
|
21 |
+
|
22 |
+
var active_indicator = '';
|
23 |
+
for ( var i = 0; i < shuffled_slides.length; i++ ) {
|
24 |
+
if (i == 0) active_indicator = ' class=\"active\"';
|
25 |
+
else active_indicator = '';
|
26 |
+
sdf_carousel = sdf_carousel + "<li data-target=\"#sdfCarousel\" data-slide-to=\""+ i +"\""+ active_indicator +"></li>";
|
27 |
+
};
|
28 |
+
sdf_carousel = sdf_carousel + "<li data-target=\"#sdfCarousel\" data-slide-to=\""+ i +"\"></li>";
|
29 |
+
sdf_carousel = sdf_carousel + "</ol><div class=\"carousel-inner\">";
|
30 |
+
|
31 |
+
|
32 |
+
for ( var i = 0; i < shuffled_slides.length; i++ ) {
|
33 |
+
if (i == 0) active_indicator = ' active';
|
34 |
+
else active_indicator = '';
|
35 |
+
sdf_carousel = sdf_carousel + "<div class=\"item"+ active_indicator +"\"><a href=\"" + shuffled_slides[i].banner_link + "\" target=\"_blank\"><img src=\"" + shuffled_slides[i].banner_img + "\" alt=\"Slide "+ i +"\"></a><div class=\"container\"><div class=\"carousel-caption\">"+ shuffled_slides[i].slide_cap + "<p><a class=\"btn btn-large btn-warning\" href=\""+ shuffled_slides[i].slide_link + "\" target=\"_blank\">Read More</a></p></div></div></div>";
|
36 |
+
};
|
37 |
+
sdf_carousel = sdf_carousel + "<div class=\"item\"><a href=\"http://www.seodesignframework.com/blog\" target=\"_blank\"><img src=\"https://s3.amazonaws.com/sdfimages/seoultimatebanner/03.png\" alt=\"Slide "+ i +"\"></a><div class=\"container\"><div class=\"carousel-caption\">"+ sds_promo_blog_post + "</div></div></div>";
|
38 |
+
sdf_carousel = sdf_carousel + "</div><a class=\"left carousel-control\" href=\"#sdfCarousel\" data-slide=\"prev\"><span class=\"glyphicon glyphicon-chevron-left\"></span></a><a class=\"right carousel-control\" href=\"#sdfCarousel\" data-slide=\"next\"><span class=\"glyphicon glyphicon-chevron-right\"></span></a></div>";
|
39 |
+
|
40 |
+
|
41 |
+
$('#sdf-promo-carousel').html(sdf_carousel).delay(500).fadeIn(600).carousel({ interval:4000 });
|
42 |
+
}
|
43 |
+
})
|
44 |
+
.fail(function (data) {
|
45 |
+
$('#sdf-promo-carousel').delay(500).fadeIn(600).carousel({ interval:4000 });
|
46 |
+
});
|
47 |
+
|
48 |
+
});
|
49 |
+
|
50 |
+
})(jQuery);
|
51 |
+
|
52 |
+
/**
|
53 |
+
* Randomize array element order in-place.
|
54 |
+
* Using Fisher-Yates shuffle algorithm.
|
55 |
+
*/
|
56 |
+
function shuffleArray(array) {
|
57 |
+
for (var i = array.length - 1; i > 0; i--) {
|
58 |
+
var j = Math.floor(Math.random() * (i + 1));
|
59 |
+
var temp = array[i];
|
60 |
+
array[i] = array[j];
|
61 |
+
array[j] = temp;
|
62 |
+
}
|
63 |
+
return array;
|
64 |
+
}
|
modules/sds-blog/sds-blog.css
CHANGED
@@ -22,7 +22,7 @@
|
|
22 |
margin-left: 3px;
|
23 |
}
|
24 |
|
25 |
-
#su-sds-blog li {
|
26 |
padding-bottom: 1em;
|
27 |
}
|
28 |
|
22 |
margin-left: 3px;
|
23 |
}
|
24 |
|
25 |
+
#su-sds-blog .rss-widget li {
|
26 |
padding-bottom: 1em;
|
27 |
}
|
28 |
|
modules/sds-blog/sds-blog.php
CHANGED
@@ -9,9 +9,10 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_SdsBlog extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() { return __('Whitepapers', 'seo-ultimate'); }
|
|
|
13 |
function get_page_title() { return __('SEO Design Solutions Whitepapers', 'seo-ultimate'); }
|
14 |
-
function has_menu_count() { return true; }
|
15 |
function get_menu_count() { return $this->get_unread_count(); }
|
16 |
|
17 |
function __construct() {
|
@@ -38,26 +39,40 @@ class SU_SdsBlog extends SU_Module {
|
|
38 |
|
39 |
function load_blog_rss() {
|
40 |
$rss = suwp::load_rss('http://feeds.seodesignsolutions.com/SeoDesignSolutionsBlog', SU_USER_AGENT);
|
41 |
-
if ($rss && $rss->
|
42 |
$times = array();
|
43 |
-
foreach ($rss->
|
44 |
$this->update_setting('rss_item_times', $times);
|
45 |
}
|
46 |
}
|
47 |
|
48 |
function admin_page_contents() {
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
echo "<a href='http://www.seodesignsolutions.com'><img src='{$this->plugin->plugin_dir_url}plugin/images/sds-logo.png' alt='".__('SEO Design Solutions', 'seo-ultimate')."' id='sds-logo' /></a>";
|
50 |
echo "<p>".__('The search engine optimization articles below are loaded from the website of SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on an article’s title to read it.', 'seo-ultimate')."</p>\n";
|
51 |
echo "<div class='rss-widget'>\n";
|
52 |
|
53 |
add_filter('http_headers_useragent', 'su_get_user_agent');
|
54 |
add_filter('esc_html', array(&$this, 'truncate_at_ellipsis'));
|
55 |
-
|
56 |
remove_filter('esc_html', array(&$this, 'truncate_at_ellipsis'));
|
57 |
remove_filter('http_headers_useragent', 'su_get_user_agent');
|
58 |
|
59 |
echo "</div>\n";
|
60 |
$this->update_setting('lastread', time());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
}
|
62 |
|
63 |
function truncate_at_ellipsis($content) {
|
@@ -83,15 +98,15 @@ class SU_SdsBlog extends SU_Module {
|
|
83 |
function get_feed_item_date($item) {
|
84 |
|
85 |
//Is there an Atom date? If so, parse it.
|
86 |
-
if (isset($item
|
87 |
$date = parse_w3cdtf($atom_date);
|
88 |
|
89 |
//Or is there an RSS2 date? If so, parse it.
|
90 |
-
elseif (isset($item
|
91 |
$date = strtotime($rss_2_date);
|
92 |
|
93 |
//Or is there an RSS1 date? If so, parse it.
|
94 |
-
elseif (isset($item
|
95 |
$date = parse_w3cdtf($rss_1_date);
|
96 |
|
97 |
else $date = null;
|
@@ -99,6 +114,104 @@ class SU_SdsBlog extends SU_Module {
|
|
99 |
//Return a UNIX timestamp.
|
100 |
if ($date) return $date; else return 0;
|
101 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
}
|
103 |
|
104 |
}
|
9 |
|
10 |
class SU_SdsBlog extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() { return __('Whitepapers', 'seo-ultimate'); }
|
13 |
+
static function get_menu_title() { return __('Whitepapers', 'seo-ultimate'); }
|
14 |
function get_page_title() { return __('SEO Design Solutions Whitepapers', 'seo-ultimate'); }
|
15 |
+
static function has_menu_count() { return true; }
|
16 |
function get_menu_count() { return $this->get_unread_count(); }
|
17 |
|
18 |
function __construct() {
|
39 |
|
40 |
function load_blog_rss() {
|
41 |
$rss = suwp::load_rss('http://feeds.seodesignsolutions.com/SeoDesignSolutionsBlog', SU_USER_AGENT);
|
42 |
+
if ($rss && $rss->get_items()) {
|
43 |
$times = array();
|
44 |
+
foreach ($rss->get_items() as $item) $times[] = $this->get_feed_item_date($item);
|
45 |
$this->update_setting('rss_item_times', $times);
|
46 |
}
|
47 |
}
|
48 |
|
49 |
function admin_page_contents() {
|
50 |
+
|
51 |
+
if ($this->should_show_sdf_theme_promo()) {
|
52 |
+
echo "\n\n<div class='row'>\n";
|
53 |
+
echo "\n\n<div class='col-sm-8 col-md-9'>\n";
|
54 |
+
}
|
55 |
+
|
56 |
echo "<a href='http://www.seodesignsolutions.com'><img src='{$this->plugin->plugin_dir_url}plugin/images/sds-logo.png' alt='".__('SEO Design Solutions', 'seo-ultimate')."' id='sds-logo' /></a>";
|
57 |
echo "<p>".__('The search engine optimization articles below are loaded from the website of SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on an article’s title to read it.', 'seo-ultimate')."</p>\n";
|
58 |
echo "<div class='rss-widget'>\n";
|
59 |
|
60 |
add_filter('http_headers_useragent', 'su_get_user_agent');
|
61 |
add_filter('esc_html', array(&$this, 'truncate_at_ellipsis'));
|
62 |
+
$this->sds_blog_rss_output( 'http://feeds.seodesignsolutions.com/SeoDesignSolutionsBlog', array('show_summary' => 1, 'show_date' => 1, 'items' => 10) );
|
63 |
remove_filter('esc_html', array(&$this, 'truncate_at_ellipsis'));
|
64 |
remove_filter('http_headers_useragent', 'su_get_user_agent');
|
65 |
|
66 |
echo "</div>\n";
|
67 |
$this->update_setting('lastread', time());
|
68 |
+
|
69 |
+
if ($this->should_show_sdf_theme_promo()) {
|
70 |
+
echo "\n\n</div>\n";
|
71 |
+
echo "\n\n<div class='col-sm-4 col-md-3'>\n";
|
72 |
+
$this->promo_sdf_banners();
|
73 |
+
echo "\n\n</div>\n";
|
74 |
+
echo "\n\n</div>\n";
|
75 |
+
}
|
76 |
}
|
77 |
|
78 |
function truncate_at_ellipsis($content) {
|
98 |
function get_feed_item_date($item) {
|
99 |
|
100 |
//Is there an Atom date? If so, parse it.
|
101 |
+
if (isset($item->issued) && $atom_date = $item->issued)
|
102 |
$date = parse_w3cdtf($atom_date);
|
103 |
|
104 |
//Or is there an RSS2 date? If so, parse it.
|
105 |
+
elseif (isset($item->pubdate) && $rss_2_date = $item->pubdate)
|
106 |
$date = strtotime($rss_2_date);
|
107 |
|
108 |
//Or is there an RSS1 date? If so, parse it.
|
109 |
+
elseif (isset($item->dc['date']) && $rss_1_date = $item->dc['date'])
|
110 |
$date = parse_w3cdtf($rss_1_date);
|
111 |
|
112 |
else $date = null;
|
114 |
//Return a UNIX timestamp.
|
115 |
if ($date) return $date; else return 0;
|
116 |
}
|
117 |
+
|
118 |
+
/**
|
119 |
+
* Display the RSS entries in a list.
|
120 |
+
*
|
121 |
+
* @since 2.5.0
|
122 |
+
*
|
123 |
+
* @param string|array|object $rss RSS url.
|
124 |
+
* @param array $args Widget arguments.
|
125 |
+
*/
|
126 |
+
function sds_blog_rss_output( $rss, $args = array() ) {
|
127 |
+
if ( is_string( $rss ) ) {
|
128 |
+
$rss = fetch_feed($rss);
|
129 |
+
} elseif ( is_array($rss) && isset($rss['url']) ) {
|
130 |
+
$args = $rss;
|
131 |
+
$rss = fetch_feed($rss['url']);
|
132 |
+
} elseif ( !is_object($rss) ) {
|
133 |
+
return;
|
134 |
+
}
|
135 |
+
|
136 |
+
if ( is_wp_error($rss) ) {
|
137 |
+
if ( is_admin() || current_user_can('manage_options') )
|
138 |
+
echo '<p>' . sprintf( __('<strong>RSS Error</strong>: %s'), $rss->get_error_message() ) . '</p>';
|
139 |
+
return;
|
140 |
+
}
|
141 |
+
|
142 |
+
$default_args = array( 'show_author' => 0, 'show_date' => 0, 'show_summary' => 0 );
|
143 |
+
$args = wp_parse_args( $args, $default_args );
|
144 |
+
extract( $args, EXTR_SKIP );
|
145 |
+
|
146 |
+
$items = (int) $items;
|
147 |
+
if ( $items < 1 || 20 < $items )
|
148 |
+
$items = 10;
|
149 |
+
$show_summary = (int) $show_summary;
|
150 |
+
$show_author = (int) $show_author;
|
151 |
+
$show_date = (int) $show_date;
|
152 |
+
|
153 |
+
if ( !$rss->get_item_quantity() ) {
|
154 |
+
echo '<ul><li>' . __( 'An error has occurred, which probably means the feed is down. Try again later.' ) . '</li></ul>';
|
155 |
+
$rss->__destruct();
|
156 |
+
unset($rss);
|
157 |
+
return;
|
158 |
+
}
|
159 |
+
|
160 |
+
echo '<ul>';
|
161 |
+
foreach ( $rss->get_items(0, $items) as $item ) {
|
162 |
+
$link = $item->get_link();
|
163 |
+
while ( stristr($link, 'http') != $link )
|
164 |
+
$link = substr($link, 1);
|
165 |
+
$link = esc_url(strip_tags($link));
|
166 |
+
$title = esc_attr(strip_tags($item->get_title()));
|
167 |
+
if ( empty($title) )
|
168 |
+
$title = __('Untitled');
|
169 |
+
|
170 |
+
$desc = str_replace( array("\n", "\r"), ' ', esc_attr( strip_tags( @html_entity_decode( $item->get_description(), ENT_QUOTES, get_option('blog_charset') ) ) ) );
|
171 |
+
$excerpt = wp_html_excerpt( $desc, 360 );
|
172 |
+
|
173 |
+
// Append ellipsis. Change existing [...] to […].
|
174 |
+
if ( '[...]' == substr( $excerpt, -5 ) )
|
175 |
+
$excerpt = substr( $excerpt, 0, -5 ) . '[…]';
|
176 |
+
elseif ( '[…]' != substr( $excerpt, -10 ) && $desc != $excerpt )
|
177 |
+
$excerpt .= ' […]';
|
178 |
+
|
179 |
+
$excerpt = esc_html( $excerpt );
|
180 |
+
|
181 |
+
if ( $show_summary ) {
|
182 |
+
$summary = "<div class='rssSummary'>$excerpt</div>";
|
183 |
+
} else {
|
184 |
+
$summary = '';
|
185 |
+
}
|
186 |
+
|
187 |
+
$date = '';
|
188 |
+
if ( $show_date ) {
|
189 |
+
$date = $item->get_date( 'U' );
|
190 |
+
|
191 |
+
if ( $date ) {
|
192 |
+
$date = ' <span class="rss-date">' . date_i18n( get_option( 'date_format' ), $date ) . '</span>';
|
193 |
+
}
|
194 |
+
}
|
195 |
+
|
196 |
+
$author = '';
|
197 |
+
if ( $show_author ) {
|
198 |
+
$author = $item->get_author();
|
199 |
+
if ( is_object($author) ) {
|
200 |
+
$author = $author->get_name();
|
201 |
+
$author = ' <cite>' . esc_html( strip_tags( $author ) ) . '</cite>';
|
202 |
+
}
|
203 |
+
}
|
204 |
+
|
205 |
+
if ( $link == '' ) {
|
206 |
+
echo "<li>$title{$date}{$summary}{$author}</li>";
|
207 |
+
} else {
|
208 |
+
echo "<li><a class='rsswidget' href='$link' title='$desc' target='_blank'>$title</a>{$date}{$summary}{$author}</li>";
|
209 |
+
}
|
210 |
+
}
|
211 |
+
echo '</ul>';
|
212 |
+
$rss->__destruct();
|
213 |
+
unset($rss);
|
214 |
+
}
|
215 |
}
|
216 |
|
217 |
}
|
modules/settings/global-settings.php
CHANGED
@@ -11,25 +11,25 @@ class SU_GlobalSettings extends SU_Module {
|
|
11 |
|
12 |
var $wp_meta_called = false;
|
13 |
|
14 |
-
function get_parent_module() { return 'settings'; }
|
15 |
-
function get_child_order() { return 10; }
|
16 |
-
function is_independent_module() { return false; }
|
17 |
|
18 |
-
function get_module_title() { return __('Global Settings', 'seo-ultimate'); }
|
19 |
|
20 |
function get_default_settings() {
|
21 |
return array(
|
22 |
'attribution_link' => false
|
23 |
, 'mark_code' => true
|
24 |
-
, '
|
25 |
);
|
26 |
}
|
27 |
|
28 |
function init() {
|
29 |
//Hook to add attribution link
|
30 |
if ($this->get_setting('attribution_link')) {
|
31 |
-
add_action('wp_meta', array(&$this, 'meta_link'));
|
32 |
-
add_action('wp_footer', array(&$this, 'footer_link'));
|
33 |
}
|
34 |
}
|
35 |
|
@@ -39,15 +39,15 @@ class SU_GlobalSettings extends SU_Module {
|
|
39 |
|
40 |
$checkboxes = array(
|
41 |
'mark_code' => __('Identify the plugin’s HTML code insertions with HTML comment tags', 'seo-ultimate')
|
42 |
-
|
43 |
-
|
44 |
);
|
45 |
|
46 |
-
if ($this->
|
47 |
-
$checkboxes['
|
|
|
48 |
|
49 |
$this->checkboxes($checkboxes);
|
50 |
-
|
51 |
$this->admin_form_end();
|
52 |
}
|
53 |
|
11 |
|
12 |
var $wp_meta_called = false;
|
13 |
|
14 |
+
static function get_parent_module() { return 'settings'; }
|
15 |
+
static function get_child_order() { return 10; }
|
16 |
+
static function is_independent_module() { return false; }
|
17 |
|
18 |
+
static function get_module_title() { return __('Global Settings', 'seo-ultimate'); }
|
19 |
|
20 |
function get_default_settings() {
|
21 |
return array(
|
22 |
'attribution_link' => false
|
23 |
, 'mark_code' => true
|
24 |
+
, 'sdf_theme' => true
|
25 |
);
|
26 |
}
|
27 |
|
28 |
function init() {
|
29 |
//Hook to add attribution link
|
30 |
if ($this->get_setting('attribution_link')) {
|
31 |
+
//add_action('wp_meta', array(&$this, 'meta_link'));
|
32 |
+
//add_action('wp_footer', array(&$this, 'footer_link'));
|
33 |
}
|
34 |
}
|
35 |
|
39 |
|
40 |
$checkboxes = array(
|
41 |
'mark_code' => __('Identify the plugin’s HTML code insertions with HTML comment tags', 'seo-ultimate')
|
42 |
+
//, 'attribution_link' => __('Enable nofollow’d attribution link on my site', 'seo-ultimate')
|
43 |
+
//, 'attribution_link_css' => array('description' => __('Add CSS styles to the attribution link', 'seo-ultimate'), 'indent' => true)
|
44 |
);
|
45 |
|
46 |
+
if ($this->is_sdf_theme_promo_applicable()) {
|
47 |
+
$checkboxes['sdf_theme'] = __('Show the promo slider for SEO Design Framework on plugin pages', 'seo-ultimate');
|
48 |
+
}
|
49 |
|
50 |
$this->checkboxes($checkboxes);
|
|
|
51 |
$this->admin_form_end();
|
52 |
}
|
53 |
|
modules/settings/install.php
CHANGED
@@ -11,12 +11,12 @@ define('SU_DOWNGRADE_LIMIT', '5.0');
|
|
11 |
|
12 |
class SU_Install extends SU_Module {
|
13 |
|
14 |
-
function get_parent_module() { return 'settings'; }
|
15 |
-
function get_child_order() { return 20; }
|
16 |
-
function is_independent_module() { return false; }
|
17 |
|
18 |
-
function get_module_title() { return __('Upgrade/Downgrade/Reinstall', 'seo-ultimate'); }
|
19 |
-
function get_menu_title() { return __('Installer', 'seo-ultimate'); }
|
20 |
|
21 |
function get_admin_page_tabs() {
|
22 |
|
11 |
|
12 |
class SU_Install extends SU_Module {
|
13 |
|
14 |
+
static function get_parent_module() { return 'settings'; }
|
15 |
+
static function get_child_order() { return 20; }
|
16 |
+
static function is_independent_module() { return false; }
|
17 |
|
18 |
+
static function get_module_title() { return __('Upgrade/Downgrade/Reinstall', 'seo-ultimate'); }
|
19 |
+
static function get_menu_title() { return __('Installer', 'seo-ultimate'); }
|
20 |
|
21 |
function get_admin_page_tabs() {
|
22 |
|
modules/settings/settings-data.php
CHANGED
@@ -9,11 +9,11 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_SettingsData extends SU_Module {
|
11 |
|
12 |
-
function get_parent_module() { return 'settings'; }
|
13 |
-
function get_child_order() { return 20; }
|
14 |
-
function is_independent_module() { return false; }
|
15 |
|
16 |
-
function get_module_title() { return __('Settings Data Manager', 'seo-ultimate'); }
|
17 |
function get_module_subtitle() { return __('Manage Settings Data', 'seo-ultimate'); }
|
18 |
|
19 |
function get_admin_page_tabs() {
|
9 |
|
10 |
class SU_SettingsData extends SU_Module {
|
11 |
|
12 |
+
static function get_parent_module() { return 'settings'; }
|
13 |
+
static function get_child_order() { return 20; }
|
14 |
+
static function is_independent_module() { return false; }
|
15 |
|
16 |
+
static function get_module_title() { return __('Settings Data Manager', 'seo-ultimate'); }
|
17 |
function get_module_subtitle() { return __('Manage Settings Data', 'seo-ultimate'); }
|
18 |
|
19 |
function get_admin_page_tabs() {
|
modules/settings/settings.php
CHANGED
@@ -9,7 +9,7 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_Settings extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() {
|
13 |
if (is_network_admin())
|
14 |
return __('Plugin Management', 'seo-ultimate');
|
15 |
|
@@ -23,7 +23,7 @@ class SU_Settings extends SU_Module {
|
|
23 |
return __('SEO Ultimate Plugin Settings', 'seo-ultimate');
|
24 |
}
|
25 |
|
26 |
-
function get_menu_title() { return __('SEO Ultimate', 'seo-ultimate'); }
|
27 |
|
28 |
function get_menu_parent() {
|
29 |
if (is_network_admin())
|
9 |
|
10 |
class SU_Settings extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() {
|
13 |
if (is_network_admin())
|
14 |
return __('Plugin Management', 'seo-ultimate');
|
15 |
|
23 |
return __('SEO Ultimate Plugin Settings', 'seo-ultimate');
|
24 |
}
|
25 |
|
26 |
+
static function get_menu_title() { return __('SEO Ultimate', 'seo-ultimate'); }
|
27 |
|
28 |
function get_menu_parent() {
|
29 |
if (is_network_admin())
|
modules/settings/uninstall.php
CHANGED
@@ -9,12 +9,12 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_Uninstall extends SU_Module {
|
11 |
|
12 |
-
function get_parent_module() { return 'settings'; }
|
13 |
-
function get_child_order() { return 40; }
|
14 |
-
function is_independent_module() { return false; }
|
15 |
function get_settings_key() { return $this->get_module_key(); }
|
16 |
|
17 |
-
function get_module_title() { return __('Uninstaller', 'seo-ultimate'); }
|
18 |
function get_module_subtitle() { return __('Uninstall', 'seo-ultimate'); }
|
19 |
|
20 |
function get_admin_page_tabs() {
|
9 |
|
10 |
class SU_Uninstall extends SU_Module {
|
11 |
|
12 |
+
static function get_parent_module() { return 'settings'; }
|
13 |
+
static function get_child_order() { return 40; }
|
14 |
+
static function is_independent_module() { return false; }
|
15 |
function get_settings_key() { return $this->get_module_key(); }
|
16 |
|
17 |
+
static function get_module_title() { return __('Uninstaller', 'seo-ultimate'); }
|
18 |
function get_module_subtitle() { return __('Uninstall', 'seo-ultimate'); }
|
19 |
|
20 |
function get_admin_page_tabs() {
|
modules/sharing-buttons/sharing-buttons.php
CHANGED
@@ -9,9 +9,9 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_SharingButtons extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() { return __('Sharing Facilitator', 'seo-ultimate'); }
|
13 |
|
14 |
-
function get_parent_module() { return 'misc'; }
|
15 |
function get_settings_key() { return 'sharing-buttons'; }
|
16 |
|
17 |
function init() {
|
9 |
|
10 |
class SU_SharingButtons extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() { return __('Sharing Facilitator', 'seo-ultimate'); }
|
13 |
|
14 |
+
static function get_parent_module() { return 'misc'; }
|
15 |
function get_settings_key() { return 'sharing-buttons'; }
|
16 |
|
17 |
function init() {
|
modules/slugs/slugs.php
CHANGED
@@ -9,10 +9,11 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_Slugs extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() { return __('Slug Optimizer', 'seo-ultimate'); }
|
13 |
|
14 |
-
function get_parent_module() { return 'misc'; }
|
15 |
function get_settings_key() { return 'slugs'; }
|
|
|
16 |
|
17 |
function admin_page_contents() {
|
18 |
$this->child_admin_form_start();
|
@@ -42,7 +43,7 @@ class SU_Slugs extends SU_Module {
|
|
42 |
function optimize_slug($slug) {
|
43 |
|
44 |
//If no slug exists, start off with the post title
|
45 |
-
if (empty($slug)) $slug = $_POST['post_title'];
|
46 |
|
47 |
//Prepare the title and the words for comparison
|
48 |
$slug = sustr::tolower(stripslashes($slug));
|
9 |
|
10 |
class SU_Slugs extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() { return __('Slug Optimizer', 'seo-ultimate'); }
|
13 |
|
14 |
+
static function get_parent_module() { return 'misc'; }
|
15 |
function get_settings_key() { return 'slugs'; }
|
16 |
+
function get_default_status() { return SU_MODULE_DISABLED; }
|
17 |
|
18 |
function admin_page_contents() {
|
19 |
$this->child_admin_form_start();
|
43 |
function optimize_slug($slug) {
|
44 |
|
45 |
//If no slug exists, start off with the post title
|
46 |
+
if (empty($slug) && isset($_POST['post_title'])) $slug = $_POST['post_title'];
|
47 |
|
48 |
//Prepare the title and the words for comparison
|
49 |
$slug = sustr::tolower(stripslashes($slug));
|
modules/titles/titles.php
CHANGED
@@ -15,7 +15,8 @@ add_filter('su_settings_export_array', 'su_titles_export_filter');
|
|
15 |
|
16 |
class SU_Titles extends SU_Module {
|
17 |
|
18 |
-
function get_module_title() { return __('Title Tag Rewriter', 'seo-ultimate'); }
|
|
|
19 |
|
20 |
function init() {
|
21 |
|
@@ -49,9 +50,9 @@ class SU_Titles extends SU_Module {
|
|
49 |
}
|
50 |
|
51 |
function formats_tab() {
|
52 |
-
echo "<table class='form-table'>\n";
|
53 |
$this->textboxes($this->get_supported_settings(), $this->get_default_settings());
|
54 |
-
echo "</table>";
|
55 |
}
|
56 |
|
57 |
function settings_tab() {
|
@@ -147,7 +148,7 @@ class SU_Titles extends SU_Module {
|
|
147 |
if (!$title) return $head;
|
148 |
|
149 |
//Replace the old title with the new and return
|
150 |
-
return
|
151 |
}
|
152 |
|
153 |
function get_title() {
|
@@ -330,17 +331,15 @@ class SU_Titles extends SU_Module {
|
|
330 |
return $url;
|
331 |
}
|
332 |
|
333 |
-
function postmeta_fields($fields) {
|
334 |
$id = "_su_title";
|
335 |
$value = su_esc_attr($this->get_postmeta('title'));
|
336 |
-
|
337 |
$fields['serp'][10]['title'] =
|
338 |
-
|
339 |
-
. "<td class='su'><input name='$id' id='$id' type='text' value='$value' class='regular-text' tabindex='2'"
|
340 |
. " onkeyup=\"javascript:document.getElementById('su_title_charcount').innerHTML = document.getElementById('_su_title').value.length\" />"
|
341 |
-
. "<
|
342 |
-
. "</
|
343 |
-
|
344 |
|
345 |
return $fields;
|
346 |
}
|
15 |
|
16 |
class SU_Titles extends SU_Module {
|
17 |
|
18 |
+
static function get_module_title() { return __('Title Tag Rewriter', 'seo-ultimate'); }
|
19 |
+
static function get_menu_title() { return __('Title Tag Rewriter', 'seo-ultimate'); }
|
20 |
|
21 |
function init() {
|
22 |
|
50 |
}
|
51 |
|
52 |
function formats_tab() {
|
53 |
+
//echo "<table class='form-table'>\n";
|
54 |
$this->textboxes($this->get_supported_settings(), $this->get_default_settings());
|
55 |
+
//echo "</table>";
|
56 |
}
|
57 |
|
58 |
function settings_tab() {
|
148 |
if (!$title) return $head;
|
149 |
|
150 |
//Replace the old title with the new and return
|
151 |
+
return preg_replace('/<title>[^<]*<\/title>/i', '<title>'.$title.'</title>', $head);
|
152 |
}
|
153 |
|
154 |
function get_title() {
|
331 |
return $url;
|
332 |
}
|
333 |
|
334 |
+
function postmeta_fields($fields, $screen) {
|
335 |
$id = "_su_title";
|
336 |
$value = su_esc_attr($this->get_postmeta('title'));
|
|
|
337 |
$fields['serp'][10]['title'] =
|
338 |
+
"<div class='form-group su textbox'>\n<label class='col-sm-4 col-md-4 control-label' for='$id'>".__('Title Tag:', 'seo-ultimate')."</label>\n<div class='col-sm-4 col-md-4'><input name='$id' id='$id' type='text' value='$value' class='form-control input-sm regular-text' tabindex='2'"
|
|
|
339 |
. " onkeyup=\"javascript:document.getElementById('su_title_charcount').innerHTML = document.getElementById('_su_title').value.length\" />"
|
340 |
+
. "</div>\n<div class='col-sm-4 col-md-4 help-text'>".sprintf(__('You’ve entered %s characters. Most search engines use up to 70.', 'seo-ultimate'), "<strong id='su_title_charcount'>".strlen($value)."</strong>")
|
341 |
+
. "</div>\n</div>\n";
|
342 |
+
|
343 |
|
344 |
return $fields;
|
345 |
}
|
modules/user-code/user-code.php
CHANGED
@@ -18,7 +18,8 @@ add_filter('su_settings_import_array', 'su_user_code_import_filter');
|
|
18 |
|
19 |
class SU_UserCode extends SU_Module {
|
20 |
|
21 |
-
function get_module_title() { return __('Code Inserter', 'seo-ultimate'); }
|
|
|
22 |
|
23 |
function get_default_settings() {
|
24 |
return array(
|
@@ -42,32 +43,33 @@ class SU_UserCode extends SU_Module {
|
|
42 |
foreach ($hooks as $hook) add_filter($hook, array(&$this, "{$hook}_code"), 'su_head' == $hook ? 11 : 10);
|
43 |
}
|
44 |
|
45 |
-
|
46 |
-
return array(
|
47 |
-
array('title' => __('Everywhere', 'seo-ultimate'), 'id' => 'su-everywhere', 'callback' => array('usercode_admin_tab', 'global'))
|
48 |
-
);
|
49 |
-
}
|
50 |
|
51 |
function admin_page_contents() {
|
52 |
-
if (!$this->user_authorized())
|
53 |
-
$this->print_message('error', __('These fields are disabled because your user account does not have permission to insert arbitrary HTML into this site’s code.', 'seo-ultimate'));
|
54 |
|
55 |
-
$this->
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
|
|
|
60 |
$textareas = array(
|
61 |
'wp_head' => __('<head> Tag', 'seo-ultimate')
|
62 |
, 'the_content_before' => __('Before Item Content', 'seo-ultimate')
|
63 |
, 'the_content_after' => __('After Item Content', 'seo-ultimate')
|
64 |
, 'wp_footer' => __('Footer', 'seo-ultimate')
|
65 |
);
|
66 |
-
$textareas = suarr::aprintf("
|
67 |
-
|
68 |
-
$this->admin_form_table_start();
|
69 |
$this->textareas($textareas, 5, 30, array('disabled' => !$this->user_authorized()));
|
70 |
-
$this->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
}
|
72 |
|
73 |
function get_usercode($field) {
|
18 |
|
19 |
class SU_UserCode extends SU_Module {
|
20 |
|
21 |
+
static function get_module_title() { return __('Code Inserter', 'seo-ultimate'); }
|
22 |
+
static function get_menu_title() { return __('Code Inserter', 'seo-ultimate'); }
|
23 |
|
24 |
function get_default_settings() {
|
25 |
return array(
|
43 |
foreach ($hooks as $hook) add_filter($hook, array(&$this, "{$hook}_code"), 'su_head' == $hook ? 11 : 10);
|
44 |
}
|
45 |
|
46 |
+
|
|
|
|
|
|
|
|
|
47 |
|
48 |
function admin_page_contents() {
|
|
|
|
|
49 |
|
50 |
+
if ($this->should_show_sdf_theme_promo()) {
|
51 |
+
echo "\n\n<div class='row'>\n";
|
52 |
+
echo "\n\n<div class='col-sm-8 col-md-9'>\n";
|
53 |
+
}
|
54 |
|
55 |
+
$this->admin_form_start(false, false);
|
56 |
$textareas = array(
|
57 |
'wp_head' => __('<head> Tag', 'seo-ultimate')
|
58 |
, 'the_content_before' => __('Before Item Content', 'seo-ultimate')
|
59 |
, 'the_content_after' => __('After Item Content', 'seo-ultimate')
|
60 |
, 'wp_footer' => __('Footer', 'seo-ultimate')
|
61 |
);
|
62 |
+
$textareas = suarr::aprintf("global_%s", false, $textareas);
|
|
|
|
|
63 |
$this->textareas($textareas, 5, 30, array('disabled' => !$this->user_authorized()));
|
64 |
+
$this->admin_form_end(null, false);
|
65 |
+
|
66 |
+
if ($this->should_show_sdf_theme_promo()) {
|
67 |
+
echo "\n\n</div>\n";
|
68 |
+
echo "\n\n<div class='col-sm-4 col-md-3'>\n";
|
69 |
+
$this->promo_sdf_banners();
|
70 |
+
echo "\n\n</div>\n";
|
71 |
+
echo "\n\n</div>\n";
|
72 |
+
}
|
73 |
}
|
74 |
|
75 |
function get_usercode($field) {
|
modules/widgets/widgets.php
CHANGED
@@ -9,8 +9,8 @@ if (class_exists('SU_Module')) {
|
|
9 |
|
10 |
class SU_Widgets extends SU_Module {
|
11 |
|
12 |
-
function get_module_title() { return __('SEO Ultimate Widgets', 'seo-ultimate'); }
|
13 |
-
function get_menu_title() { return false; }
|
14 |
|
15 |
function get_admin_url($key = false) {
|
16 |
|
9 |
|
10 |
class SU_Widgets extends SU_Module {
|
11 |
|
12 |
+
static function get_module_title() { return __('SEO Ultimate Widgets', 'seo-ultimate'); }
|
13 |
+
static function get_menu_title() { return false; }
|
14 |
|
15 |
function get_admin_url($key = false) {
|
16 |
|
modules/wp-settings/wp-settings.php
CHANGED
@@ -11,9 +11,10 @@ class SU_WpSettings extends SU_Module {
|
|
11 |
|
12 |
var $results = array();
|
13 |
|
14 |
-
function get_module_title() { return __('Settings Monitor', 'seo-ultimate'); }
|
|
|
15 |
|
16 |
-
function has_menu_count() { return true; }
|
17 |
function get_menu_count() {
|
18 |
$count = 0;
|
19 |
foreach ($this->results as $data) {
|
@@ -58,6 +59,11 @@ class SU_WpSettings extends SU_Module {
|
|
58 |
|
59 |
function admin_page_contents() {
|
60 |
|
|
|
|
|
|
|
|
|
|
|
61 |
echo "\n<p>";
|
62 |
_e("Settings Monitor analyzes your blog’s settings and notifies you of any problems. If any issues are found, they will show up in red or yellow below.", 'seo-ultimate');
|
63 |
echo "</p>\n";
|
@@ -91,6 +97,14 @@ class SU_WpSettings extends SU_Module {
|
|
91 |
}
|
92 |
|
93 |
echo "</table>\n\n";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
}
|
95 |
}
|
96 |
|
11 |
|
12 |
var $results = array();
|
13 |
|
14 |
+
static function get_module_title() { return __('Settings Monitor', 'seo-ultimate'); }
|
15 |
+
static function get_menu_title() { return __('Settings Monitor', 'seo-ultimate'); }
|
16 |
|
17 |
+
static function has_menu_count() { return true; }
|
18 |
function get_menu_count() {
|
19 |
$count = 0;
|
20 |
foreach ($this->results as $data) {
|
59 |
|
60 |
function admin_page_contents() {
|
61 |
|
62 |
+
if ($this->should_show_sdf_theme_promo()) {
|
63 |
+
echo "\n\n<div class='row'>\n";
|
64 |
+
echo "\n\n<div class='col-sm-8 col-md-9'>\n";
|
65 |
+
}
|
66 |
+
|
67 |
echo "\n<p>";
|
68 |
_e("Settings Monitor analyzes your blog’s settings and notifies you of any problems. If any issues are found, they will show up in red or yellow below.", 'seo-ultimate');
|
69 |
echo "</p>\n";
|
97 |
}
|
98 |
|
99 |
echo "</table>\n\n";
|
100 |
+
|
101 |
+
if ($this->should_show_sdf_theme_promo()) {
|
102 |
+
echo "\n\n</div>\n";
|
103 |
+
echo "\n\n<div class='col-sm-4 col-md-3'>\n";
|
104 |
+
$this->promo_sdf_banners();
|
105 |
+
echo "\n\n</div>\n";
|
106 |
+
echo "\n\n</div>\n";
|
107 |
+
}
|
108 |
}
|
109 |
}
|
110 |
|
plugin/class.seo-ultimate.php
CHANGED
@@ -223,7 +223,7 @@ class SEO_Ultimate {
|
|
223 |
add_action('admin_head', array(&$this, 'admin_help'), 11);
|
224 |
|
225 |
//Postmeta box hooks
|
226 |
-
add_action('
|
227 |
add_action('save_post', array(&$this, 'save_postmeta_box'), 10, 2);
|
228 |
|
229 |
//Display info on new versions
|
@@ -242,17 +242,6 @@ class SEO_Ultimate {
|
|
242 |
}
|
243 |
}
|
244 |
|
245 |
-
/**
|
246 |
-
* PHP4 constructor that redirects to the PHP5 constructor.
|
247 |
-
*
|
248 |
-
* @since 0.1
|
249 |
-
* @uses __construct()
|
250 |
-
*/
|
251 |
-
function SEO_Ultimate($plugin_file) {
|
252 |
-
|
253 |
-
$this->__construct($plugin_file);
|
254 |
-
}
|
255 |
-
|
256 |
|
257 |
/********** PLUGIN EVENT FUNCTIONS **********/
|
258 |
|
@@ -999,6 +988,50 @@ class SEO_Ultimate {
|
|
999 |
}
|
1000 |
|
1001 |
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
}
|
1003 |
|
1004 |
/**
|
@@ -1015,9 +1048,50 @@ class SEO_Ultimate {
|
|
1015 |
*/
|
1016 |
function admin_includes() {
|
1017 |
|
|
|
1018 |
//Global CSS/JS
|
1019 |
$this->queue_css('plugin', 'global');
|
1020 |
-
$this->queue_js
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1021 |
|
1022 |
//Figure out what plugin admin page we're on
|
1023 |
global $plugin_page;
|
@@ -1410,21 +1484,6 @@ class SEO_Ultimate {
|
|
1410 |
echo "</p></div>";
|
1411 |
}
|
1412 |
|
1413 |
-
/**
|
1414 |
-
* @since 7.6
|
1415 |
-
*/
|
1416 |
-
function should_show_wp_ultimate_promo() {
|
1417 |
-
return $this->is_wp_ultimate_promo_applicable() && $this->get_setting('wp_ultimate', true, 'settings');
|
1418 |
-
}
|
1419 |
-
|
1420 |
-
/**
|
1421 |
-
* @since 7.6
|
1422 |
-
*/
|
1423 |
-
function is_wp_ultimate_promo_applicable() {
|
1424 |
-
//If the current user can install themes and if WP Ultimate isn't already uploaded...
|
1425 |
-
return current_user_can('install_themes') && (wp_get_theme('wpultimate')->errors() !== false);
|
1426 |
-
}
|
1427 |
-
|
1428 |
/********** MODULE FUNCTIONS ***********/
|
1429 |
|
1430 |
/**
|
@@ -1527,6 +1586,7 @@ class SEO_Ultimate {
|
|
1527 |
$tabs = $this->get_postmeta_tabs();
|
1528 |
|
1529 |
$module_fields = array();
|
|
|
1530 |
|
1531 |
foreach ($this->modules as $key => $module) {
|
1532 |
|
@@ -1603,13 +1663,15 @@ class SEO_Ultimate {
|
|
1603 |
$this->tabs($tabs);
|
1604 |
|
1605 |
//Meta box footer
|
1606 |
-
|
1607 |
-
|
1608 |
-
'
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
|
|
|
|
1613 |
|
1614 |
//End box
|
1615 |
echo "</div>\n";
|
@@ -1920,8 +1982,10 @@ class SEO_Ultimate {
|
|
1920 |
|
1921 |
if ($c = count($tabs)) {
|
1922 |
|
1923 |
-
if ($c > 1)
|
1924 |
-
echo "\n\n<div
|
|
|
|
|
1925 |
|
1926 |
foreach ($tabs as $tab) {
|
1927 |
|
@@ -1930,11 +1994,29 @@ class SEO_Ultimate {
|
|
1930 |
if (isset($tab['callback']))$function = $tab['callback']; else return;
|
1931 |
|
1932 |
if ($c > 1) {
|
|
|
1933 |
//$id = 'su-' . sustr::preg_filter('a-z0-9', strtolower($title));
|
1934 |
-
echo "<
|
1935 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1936 |
|
1937 |
-
if ($
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1938 |
|
1939 |
$call = $args = array();
|
1940 |
|
@@ -1955,16 +2037,14 @@ class SEO_Ultimate {
|
|
1955 |
}
|
1956 |
if (is_callable($call)) call_user_func_array($call, $args);
|
1957 |
|
1958 |
-
if ($table) echo "</table>";
|
1959 |
-
|
1960 |
if ($c > 1)
|
1961 |
-
echo "</div>\n
|
|
|
1962 |
}
|
1963 |
|
1964 |
if ($c > 1) {
|
1965 |
-
echo "</div>\n";
|
1966 |
-
|
1967 |
-
echo '<script type="text/javascript" src="'.$this->plugin_dir_url.'includes/tabs.js?v='.SU_VERSION.'"></script>';
|
1968 |
}
|
1969 |
}
|
1970 |
}
|
223 |
add_action('admin_head', array(&$this, 'admin_help'), 11);
|
224 |
|
225 |
//Postmeta box hooks
|
226 |
+
add_action('do_meta_boxes', array(&$this, 'add_postmeta_box'));
|
227 |
add_action('save_post', array(&$this, 'save_postmeta_box'), 10, 2);
|
228 |
|
229 |
//Display info on new versions
|
242 |
}
|
243 |
}
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
|
246 |
/********** PLUGIN EVENT FUNCTIONS **********/
|
247 |
|
988 |
}
|
989 |
|
990 |
return false;
|
991 |
+
}
|
992 |
+
|
993 |
+
/**
|
994 |
+
* Tests if the SDF Theme is the active theme
|
995 |
+
* @since 7.6.3
|
996 |
+
* @return bool
|
997 |
+
*/
|
998 |
+
public function is_sdf_active() {
|
999 |
+
$current_theme = wp_get_theme();
|
1000 |
+
$required_theme = wp_get_theme( 'seodesign' );
|
1001 |
+
|
1002 |
+
// If SDF is installed and current theme is a SDF child theme or SDF is active theme
|
1003 |
+
if ( $required_theme->exists() && ( ( $this->is_sdf_child() ) || ( 'seodesign' == $current_theme ) ) ) {
|
1004 |
+
return true;
|
1005 |
+
}
|
1006 |
+
return false;
|
1007 |
+
}
|
1008 |
+
|
1009 |
+
/**
|
1010 |
+
* Tests if current theme is a child theme of SDF
|
1011 |
+
* @since 7.6.3
|
1012 |
+
* @return bool
|
1013 |
+
*/
|
1014 |
+
public function is_sdf_child() {
|
1015 |
+
$current_theme = wp_get_theme();
|
1016 |
+
if ( 'seodesign' !== $current_theme->get_template() ) {
|
1017 |
+
return false;
|
1018 |
+
}
|
1019 |
+
return true;
|
1020 |
+
}
|
1021 |
+
|
1022 |
+
/**
|
1023 |
+
* Tests if required version of SDF is available
|
1024 |
+
* @since 7.6.3
|
1025 |
+
* @return bool
|
1026 |
+
*/
|
1027 |
+
public function is_sdf_version_compatible() {
|
1028 |
+
$version_required = '1.0.0';
|
1029 |
+
$theme = wp_get_theme( 'seodesign' );
|
1030 |
+
$version_installed = $theme->Version;
|
1031 |
+
if ( version_compare( $version_installed, $version_required, '<' ) ) {
|
1032 |
+
return false;
|
1033 |
+
}
|
1034 |
+
return true;
|
1035 |
}
|
1036 |
|
1037 |
/**
|
1048 |
*/
|
1049 |
function admin_includes() {
|
1050 |
|
1051 |
+
|
1052 |
//Global CSS/JS
|
1053 |
$this->queue_css('plugin', 'global');
|
1054 |
+
$this->queue_js('plugin', 'global');
|
1055 |
+
|
1056 |
+
//SDF Styling
|
1057 |
+
if ($this->is_plugin_admin_page()) {
|
1058 |
+
$this->queue_js('modules', 'sdf-ads');
|
1059 |
+
$this->queue_css('modules', 'sdf-ads');
|
1060 |
+
// white background
|
1061 |
+
$this->queue_css('plugin/sdf', 'sdf.wp');
|
1062 |
+
// overwrite submenu on wp 3.8+ with "light" color style
|
1063 |
+
global $_wp_admin_css_colors, $wp_version;
|
1064 |
+
if ( $wp_version >= 3.8 ) {
|
1065 |
+
$color_scheme = get_user_option( 'admin_color' );
|
1066 |
+
if ( empty( $_wp_admin_css_colors[ $color_scheme ] ) ) {
|
1067 |
+
$color_scheme = 'light';
|
1068 |
+
}
|
1069 |
+
if ( 'light' == $color_scheme ) {
|
1070 |
+
$this->queue_css('plugin/sdf', 'sdf.wp-color');
|
1071 |
+
}
|
1072 |
+
}
|
1073 |
+
}
|
1074 |
+
|
1075 |
+
//load if SDF is not active
|
1076 |
+
global $pagenow;
|
1077 |
+
$current = (isset($_GET['page'])) ? $_GET['page'] : '';
|
1078 |
+
$pages = array( 'edit.php', 'post.php', 'post-new.php' );
|
1079 |
+
$sdf_admin_pages = array('sdf','sdf-settings','sdf-silo','sdf-silo-manual-builder','sdf-header','sdf-layout','sdf-shortcode','sdf-styles','revslider','sdf-footer','seo', 'su-fofs', 'su-misc', 'su-user-code', 'su-autolinks', 'su-files', 'su-internal-link-aliases', 'su-meta-descriptions', 'su-meta-keywords', 'su-meta-robots', 'su-opengraph', 'seo-ultimate', 'su-wp-settings', 'su-titles', 'su-sds-blog');
|
1080 |
+
if( in_array( $pagenow, $pages ) || in_array( $current, $sdf_admin_pages )) {
|
1081 |
+
// admin styles
|
1082 |
+
wp_register_style('sdf-bootstrap-admin', $this->plugin_dir_url.'plugin/sdf/bootstrap/css/bootstrap.admin.css', array(), '3.0.3', 'screen');
|
1083 |
+
wp_register_style('sdf-bootstrap-admin-theme', $this->plugin_dir_url.'plugin/sdf/bootstrap/css/bootstrap-theme.admin.css', array(), '3.0.3', 'screen');
|
1084 |
+
wp_register_style('sdf-font-awesome', 'https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css', array(), '4.0.3', 'screen');
|
1085 |
+
wp_register_style('sdf-css-admin', $this->plugin_dir_url.'plugin/sdf/sdf.admin.css', array(), '3.0.3', 'screen');
|
1086 |
+
wp_enqueue_style('sdf-bootstrap-admin');
|
1087 |
+
wp_enqueue_style('sdf-bootstrap-admin-theme');
|
1088 |
+
wp_enqueue_style('sdf-font-awesome');
|
1089 |
+
wp_enqueue_style('sdf-css-admin');
|
1090 |
+
}
|
1091 |
+
|
1092 |
+
wp_register_script('sdf_bs_js', 'https://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js', array('jquery'), '3.0.3', false);
|
1093 |
+
wp_enqueue_script('sdf_bs_js');
|
1094 |
+
wp_enqueue_media();
|
1095 |
|
1096 |
//Figure out what plugin admin page we're on
|
1097 |
global $plugin_page;
|
1484 |
echo "</p></div>";
|
1485 |
}
|
1486 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1487 |
/********** MODULE FUNCTIONS ***********/
|
1488 |
|
1489 |
/**
|
1586 |
$tabs = $this->get_postmeta_tabs();
|
1587 |
|
1588 |
$module_fields = array();
|
1589 |
+
$fields = array();
|
1590 |
|
1591 |
foreach ($this->modules as $key => $module) {
|
1592 |
|
1663 |
$this->tabs($tabs);
|
1664 |
|
1665 |
//Meta box footer
|
1666 |
+
if ( !$this->is_sdf_active() ) {
|
1667 |
+
echo '<p class="su-postmeta-box-footer">';
|
1668 |
+
printf(__('%1$s %2$s by %3$s', 'seo-ultimate'),
|
1669 |
+
'<a href="'.SU_PLUGIN_URI.'" target="_blank">'.__(SU_PLUGIN_NAME, 'seo-ultimate').'</a>',
|
1670 |
+
SU_VERSION,
|
1671 |
+
'<a href="'.SU_AUTHOR_URI.'" target="_blank">'.__(SU_AUTHOR, 'seo-ultimate').'</a>'
|
1672 |
+
);
|
1673 |
+
echo '</p>';
|
1674 |
+
}
|
1675 |
|
1676 |
//End box
|
1677 |
echo "</div>\n";
|
1982 |
|
1983 |
if ($c = count($tabs)) {
|
1984 |
|
1985 |
+
if ($c > 1) {
|
1986 |
+
echo "\n\n<div class='sdf-meta-wrap sdf-admin'>\n";
|
1987 |
+
echo "\n\n<ul class='nav nav-tabs' id='su-tabset'>\n";
|
1988 |
+
}
|
1989 |
|
1990 |
foreach ($tabs as $tab) {
|
1991 |
|
1994 |
if (isset($tab['callback']))$function = $tab['callback']; else return;
|
1995 |
|
1996 |
if ($c > 1) {
|
1997 |
+
$active = ( $tab === reset($tabs) ) ? " class='active'" : "";
|
1998 |
//$id = 'su-' . sustr::preg_filter('a-z0-9', strtolower($title));
|
1999 |
+
echo "<li$active><a href='#$id' data-toggle='tab'>$title</a></li>\n";
|
2000 |
}
|
2001 |
+
}
|
2002 |
+
|
2003 |
+
if ($c > 1) {
|
2004 |
+
echo "</ul>\n";
|
2005 |
+
echo "<div class='tab-content'>\n";
|
2006 |
+
}
|
2007 |
+
|
2008 |
+
foreach ($tabs as $tab) {
|
2009 |
|
2010 |
+
if (isset($tab['title'])) $title = $tab['title']; else return;
|
2011 |
+
if (isset($tab['id'])) $id = $tab['id']; else return;
|
2012 |
+
if (isset($tab['callback']))$function = $tab['callback']; else return;
|
2013 |
+
|
2014 |
+
if ($c > 1) {
|
2015 |
+
$active = ( $tab === reset($tabs) ) ? ' in active' : '';
|
2016 |
+
echo "<div class='tab-pane fade$active su-tab-contents' id='$id'>\n";
|
2017 |
+
echo "<div class='wpu-group'>\n";
|
2018 |
+
echo "<span class='wpu-meta-title'>$title</span>\n";
|
2019 |
+
}
|
2020 |
|
2021 |
$call = $args = array();
|
2022 |
|
2037 |
}
|
2038 |
if (is_callable($call)) call_user_func_array($call, $args);
|
2039 |
|
|
|
|
|
2040 |
if ($c > 1)
|
2041 |
+
echo "</div>\n";
|
2042 |
+
echo "</div>\n";
|
2043 |
}
|
2044 |
|
2045 |
if ($c > 1) {
|
2046 |
+
echo "\n\n</div>\n";
|
2047 |
+
echo "\n\n</div>\n";
|
|
|
2048 |
}
|
2049 |
}
|
2050 |
}
|
plugin/global.css
CHANGED
@@ -7,12 +7,12 @@ These styles are sometimes or always referenced outside of SEO Ultimate's admin
|
|
7 |
|
8 |
#adminmenu .toplevel_page_seo div.wp-menu-image {
|
9 |
background-image: url(images/icon.png);
|
10 |
-
background-position:
|
11 |
}
|
12 |
|
13 |
#adminmenu .toplevel_page_seo:hover div.wp-menu-image,
|
14 |
#adminmenu .toplevel_page_seo .wp-has-current-submenu div.wp-menu-image {
|
15 |
-
background-position:
|
16 |
}
|
17 |
|
18 |
/* MESSAGES */
|
@@ -161,12 +161,12 @@ div.su-help h6 {
|
|
161 |
}
|
162 |
|
163 |
#su-postmeta-box select optgroup,
|
164 |
-
div.
|
165 |
margin-top: 1em;
|
166 |
}
|
167 |
|
168 |
#su-postmeta-box select optgroup option,
|
169 |
-
div.
|
170 |
margin-left: 1em;
|
171 |
}
|
172 |
|
@@ -262,7 +262,7 @@ div.su-module select optgroup option {
|
|
262 |
clear: left;
|
263 |
}
|
264 |
|
265 |
-
div.
|
266 |
margin-top: 1em;
|
267 |
}
|
268 |
|
7 |
|
8 |
#adminmenu .toplevel_page_seo div.wp-menu-image {
|
9 |
background-image: url(images/icon.png);
|
10 |
+
background-position: 2px -30px;
|
11 |
}
|
12 |
|
13 |
#adminmenu .toplevel_page_seo:hover div.wp-menu-image,
|
14 |
#adminmenu .toplevel_page_seo .wp-has-current-submenu div.wp-menu-image {
|
15 |
+
background-position: 2px 2px;
|
16 |
}
|
17 |
|
18 |
/* MESSAGES */
|
161 |
}
|
162 |
|
163 |
#su-postmeta-box select optgroup,
|
164 |
+
div.sdf-admin select optgroup {
|
165 |
margin-top: 1em;
|
166 |
}
|
167 |
|
168 |
#su-postmeta-box select optgroup option,
|
169 |
+
div.sdf-admin select optgroup option {
|
170 |
margin-left: 1em;
|
171 |
}
|
172 |
|
262 |
clear: left;
|
263 |
}
|
264 |
|
265 |
+
div.sdf-admin .su-tabs .su-tab-contents {
|
266 |
margin-top: 1em;
|
267 |
}
|
268 |
|
plugin/global.js
CHANGED
@@ -4,6 +4,6 @@ function su_toggle_select_children(select) {
|
|
4 |
for (i=0;i<select.options.length;i++) {
|
5 |
var option = select.options[i];
|
6 |
var c = ".su_" + select.name.replace("_su_", "") + "_" + option.value + "_subsection";
|
7 |
-
if (option.index == select.selectedIndex) jQuery(c).show(); else jQuery(c).hide();
|
8 |
}
|
9 |
-
}
|
4 |
for (i=0;i<select.options.length;i++) {
|
5 |
var option = select.options[i];
|
6 |
var c = ".su_" + select.name.replace("_su_", "") + "_" + option.value + "_subsection";
|
7 |
+
if (option.index == select.selectedIndex) jQuery(c).show().removeClass("hidden"); else jQuery(c).hide();
|
8 |
}
|
9 |
+
}
|
plugin/images/page_seo.png
ADDED
Binary file
|
plugin/sdf/bootstrap/css/bootstrap-theme.admin.css
ADDED
@@ -0,0 +1,386 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.sdf-admin .btn-default,
|
2 |
+
.sdf-admin .btn-primary,
|
3 |
+
.sdf-admin .btn-success,
|
4 |
+
.sdf-admin .btn-info,
|
5 |
+
.sdf-admin .btn-warning,
|
6 |
+
.sdf-admin .btn-danger {
|
7 |
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
|
8 |
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
|
9 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
|
10 |
+
}
|
11 |
+
|
12 |
+
.sdf-admin .btn-default:active,
|
13 |
+
.sdf-admin .btn-primary:active,
|
14 |
+
.sdf-admin .btn-success:active,
|
15 |
+
.sdf-admin .btn-info:active,
|
16 |
+
.sdf-admin .btn-warning:active,
|
17 |
+
.sdf-admin .btn-danger:active,
|
18 |
+
.sdf-admin .btn-default.active,
|
19 |
+
.sdf-admin .btn-primary.active,
|
20 |
+
.sdf-admin .btn-success.active,
|
21 |
+
.sdf-admin .btn-info.active,
|
22 |
+
.sdf-admin .btn-warning.active,
|
23 |
+
.sdf-admin .btn-danger.active {
|
24 |
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
25 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
26 |
+
}
|
27 |
+
|
28 |
+
.sdf-admin .btn:active,
|
29 |
+
.sdf-admin .btn.active {
|
30 |
+
background-image: none;
|
31 |
+
}
|
32 |
+
|
33 |
+
.sdf-admin .btn-default {
|
34 |
+
text-shadow: 0 1px 0 #fff;
|
35 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#e6e6e6));
|
36 |
+
background-image: -webkit-linear-gradient(top, #ffffff, 0%, #e6e6e6, 100%);
|
37 |
+
background-image: -moz-linear-gradient(top, #ffffff 0%, #e6e6e6 100%);
|
38 |
+
background-image: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
|
39 |
+
background-repeat: repeat-x;
|
40 |
+
border-color: #e0e0e0;
|
41 |
+
border-color: #ccc;
|
42 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
|
43 |
+
}
|
44 |
+
|
45 |
+
.sdf-admin .btn-default:active,
|
46 |
+
.sdf-admin .btn-default.active {
|
47 |
+
background-color: #e6e6e6;
|
48 |
+
border-color: #e0e0e0;
|
49 |
+
}
|
50 |
+
|
51 |
+
.sdf-admin .btn-primary {
|
52 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9));
|
53 |
+
background-image: -webkit-linear-gradient(top, #428bca, 0%, #3071a9, 100%);
|
54 |
+
background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%);
|
55 |
+
background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
|
56 |
+
background-repeat: repeat-x;
|
57 |
+
border-color: #2d6ca2;
|
58 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
|
59 |
+
}
|
60 |
+
|
61 |
+
.sdf-admin .btn-primary:active,
|
62 |
+
.sdf-admin .btn-primary.active {
|
63 |
+
background-color: #3071a9;
|
64 |
+
border-color: #2d6ca2;
|
65 |
+
}
|
66 |
+
|
67 |
+
.sdf-admin .btn-success {
|
68 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44));
|
69 |
+
background-image: -webkit-linear-gradient(top, #5cb85c, 0%, #449d44, 100%);
|
70 |
+
background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
71 |
+
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
|
72 |
+
background-repeat: repeat-x;
|
73 |
+
border-color: #419641;
|
74 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
|
75 |
+
}
|
76 |
+
|
77 |
+
.sdf-admin .btn-success:active,
|
78 |
+
.sdf-admin .btn-success.active {
|
79 |
+
background-color: #449d44;
|
80 |
+
border-color: #419641;
|
81 |
+
}
|
82 |
+
|
83 |
+
.sdf-admin .btn-warning {
|
84 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#ec971f));
|
85 |
+
background-image: -webkit-linear-gradient(top, #f0ad4e, 0%, #ec971f, 100%);
|
86 |
+
background-image: -moz-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
87 |
+
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
|
88 |
+
background-repeat: repeat-x;
|
89 |
+
border-color: #eb9316;
|
90 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
|
91 |
+
}
|
92 |
+
|
93 |
+
.sdf-admin .btn-warning:active,
|
94 |
+
.sdf-admin .btn-warning.active {
|
95 |
+
background-color: #ec971f;
|
96 |
+
border-color: #eb9316;
|
97 |
+
}
|
98 |
+
|
99 |
+
.sdf-admin .btn-danger {
|
100 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c));
|
101 |
+
background-image: -webkit-linear-gradient(top, #d9534f, 0%, #c9302c, 100%);
|
102 |
+
background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
103 |
+
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
|
104 |
+
background-repeat: repeat-x;
|
105 |
+
border-color: #c12e2a;
|
106 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
|
107 |
+
}
|
108 |
+
|
109 |
+
.sdf-admin .btn-danger:active,
|
110 |
+
.sdf-admin .btn-danger.active {
|
111 |
+
background-color: #c9302c;
|
112 |
+
border-color: #c12e2a;
|
113 |
+
}
|
114 |
+
|
115 |
+
.sdf-admin .btn-info {
|
116 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#31b0d5));
|
117 |
+
background-image: -webkit-linear-gradient(top, #5bc0de, 0%, #31b0d5, 100%);
|
118 |
+
background-image: -moz-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
119 |
+
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
|
120 |
+
background-repeat: repeat-x;
|
121 |
+
border-color: #2aabd2;
|
122 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
|
123 |
+
}
|
124 |
+
|
125 |
+
.sdf-admin .btn-info:active,
|
126 |
+
.sdf-admin .btn-info.active {
|
127 |
+
background-color: #31b0d5;
|
128 |
+
border-color: #2aabd2;
|
129 |
+
}
|
130 |
+
/* SDF Buttons */
|
131 |
+
.sdf-admin .btn-custom {
|
132 |
+
-webkit-font-smoothing: antialiased;
|
133 |
+
background-repeat: repeat-x !important;
|
134 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=rgb(242, 160, 67), endColorstr=rgb(245, 143, 29));
|
135 |
+
background-image: -webkit-linear-gradient(top, rgb(242, 160, 67), rgb(245, 143, 29)) !important;
|
136 |
+
background-image: -khtml-gradient(linear, left top, left bottom, from(rgb(242, 160, 67)), to( rgb(245, 143, 29)));
|
137 |
+
background-image: -moz-linear-gradient(top, rgb(242, 160, 67), rgb(245, 143, 29));
|
138 |
+
background-image: -ms-linear-gradient(top, rgb(242, 160, 67), rgb(245, 143, 29));
|
139 |
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(242, 160, 67)), color-stop(100%, rgb(245, 143, 29)));
|
140 |
+
background-image: -o-linear-gradienttop, rgb(242, 160, 67), rgb(245, 143, 29));
|
141 |
+
background-image: linear-gradient( rgb(242, 160, 67), rgb(245, 143, 29));
|
142 |
+
background-color: rgb(245, 143, 29) !important;
|
143 |
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25) !important;
|
144 |
+
color: rgb(255, 255, 255) !important;
|
145 |
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) !important;
|
146 |
+
text-decoration: none;
|
147 |
+
}
|
148 |
+
.sdf-admin .btn-custom:hover,
|
149 |
+
.sdf-admin .btn-custom:focus {
|
150 |
+
-webkit-font-smoothing: antialiased;
|
151 |
+
background-repeat: repeat-x !important;
|
152 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=rgb(242, 160, 67), endColorstr=rgb(245, 143, 29));
|
153 |
+
background-image: -webkit-linear-gradient(top, rgb(242, 160, 67), rgb(245, 143, 29)) !important;
|
154 |
+
background-image: -khtml-gradient(linear, left top, left bottom, from(rgb(242, 160, 67)), to( rgb(245, 143, 29)));
|
155 |
+
background-image: -moz-linear-gradient(top, rgb(242, 160, 67), rgb(245, 143, 29));
|
156 |
+
background-image: -ms-linear-gradient(top, rgb(242, 160, 67), rgb(245, 143, 29));
|
157 |
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(242, 160, 67)), color-stop(100%, rgb(245, 143, 29)));
|
158 |
+
background-image: -o-linear-gradienttop, rgb(242, 160, 67), rgb(245, 143, 29));
|
159 |
+
background-image: linear-gradient( rgb(242, 160, 67), rgb(245, 143, 29));
|
160 |
+
background-color: rgb(245, 143, 29) !important;
|
161 |
+
border-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.35) !important;
|
162 |
+
color: rgb(255, 255, 255) !important;
|
163 |
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) !important;
|
164 |
+
text-decoration: none;
|
165 |
+
}
|
166 |
+
.sdf-admin .btn-sdf-grey {
|
167 |
+
font-weight:bold !important;
|
168 |
+
-webkit-font-smoothing: antialiased;
|
169 |
+
background-repeat: repeat-x !important;
|
170 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=rgb(125, 125, 125), endColorstr=rgb(118, 118, 118));
|
171 |
+
background-image: -webkit-linear-gradient(top, rgb(125, 125, 125), rgb(118, 118, 118)) !important;
|
172 |
+
background-image: -khtml-gradient(linear, left top, left bottom, from(rgb(125, 125, 125)), to( rgb(118, 118, 118)));
|
173 |
+
background-image: -moz-linear-gradient(top, rgb(125, 125, 125), rgb(118, 118, 118));
|
174 |
+
background-image: -ms-linear-gradient(top, rgb(125, 125, 125), rgb(118, 118, 118));
|
175 |
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(125, 125, 125)), color-stop(100%, rgb(118, 118, 118)));
|
176 |
+
background-image: -o-linear-gradienttop, rgb(125, 125, 125), rgb(118, 118, 118));
|
177 |
+
background-image: linear-gradient( rgb(125, 125, 125), rgb(118, 118, 118));
|
178 |
+
background-color: rgb(118, 118, 118) !important;
|
179 |
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25) !important;
|
180 |
+
color: rgb(255, 255, 255) !important;
|
181 |
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) !important;
|
182 |
+
text-decoration: none;
|
183 |
+
}
|
184 |
+
.sdf-admin .btn-sdf-grey:hover,
|
185 |
+
.sdf-admin .btn-sdf-grey:focus {
|
186 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=rgb(104, 104, 104), endColorstr=rgb(97, 97, 97));
|
187 |
+
background-image: -webkit-linear-gradient(top, rgb(104, 104, 104), rgb(97, 97, 97)) !important;
|
188 |
+
background-image: -khtml-gradient(linear, left top, left bottom, from(rgb(104, 104, 104)), to( rgb(97, 97, 97)));
|
189 |
+
background-image: -moz-linear-gradient(top, rgb(104, 104, 104), rgb(97, 97, 97));
|
190 |
+
background-image: -ms-linear-gradient(top, rgb(104, 104, 104), rgb(97, 97, 97));
|
191 |
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(104, 104, 104)), color-stop(100%, rgb(97, 97, 97)));
|
192 |
+
background-image: -o-linear-gradienttop, rgb(104, 104, 104), rgb(97, 97, 97));
|
193 |
+
background-image: linear-gradient( rgb(104, 104, 104), rgb(97, 97, 97));
|
194 |
+
background-color: rgb(97, 97, 97) !important;
|
195 |
+
border-color: rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.35) !important;
|
196 |
+
}
|
197 |
+
.sdf-admin .thumbnail,
|
198 |
+
.sdf-admin .img-thumbnail {
|
199 |
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
200 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
201 |
+
}
|
202 |
+
|
203 |
+
.sdf-admin .alert {
|
204 |
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
|
205 |
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
206 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
207 |
+
}
|
208 |
+
|
209 |
+
.sdf-admin .alert-success {
|
210 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#c8e5bc));
|
211 |
+
background-image: -webkit-linear-gradient(top, #dff0d8, 0%, #c8e5bc, 100%);
|
212 |
+
background-image: -moz-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
213 |
+
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
|
214 |
+
background-repeat: repeat-x;
|
215 |
+
border-color: #b2dba1;
|
216 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
|
217 |
+
}
|
218 |
+
|
219 |
+
.sdf-admin .alert-info {
|
220 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#b9def0));
|
221 |
+
background-image: -webkit-linear-gradient(top, #d9edf7, 0%, #b9def0, 100%);
|
222 |
+
background-image: -moz-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
223 |
+
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
|
224 |
+
background-repeat: repeat-x;
|
225 |
+
border-color: #9acfea;
|
226 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
|
227 |
+
}
|
228 |
+
|
229 |
+
.sdf-admin .alert-warning {
|
230 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#f8efc0));
|
231 |
+
background-image: -webkit-linear-gradient(top, #fcf8e3, 0%, #f8efc0, 100%);
|
232 |
+
background-image: -moz-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
233 |
+
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
|
234 |
+
background-repeat: repeat-x;
|
235 |
+
border-color: #f5e79e;
|
236 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
|
237 |
+
}
|
238 |
+
|
239 |
+
.sdf-admin .alert-danger {
|
240 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#e7c3c3));
|
241 |
+
background-image: -webkit-linear-gradient(top, #f2dede, 0%, #e7c3c3, 100%);
|
242 |
+
background-image: -moz-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
243 |
+
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
|
244 |
+
background-repeat: repeat-x;
|
245 |
+
border-color: #dca7a7;
|
246 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
|
247 |
+
}
|
248 |
+
|
249 |
+
.sdf-admin .progress {
|
250 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ebebeb), to(#f5f5f5));
|
251 |
+
background-image: -webkit-linear-gradient(top, #ebebeb, 0%, #f5f5f5, 100%);
|
252 |
+
background-image: -moz-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
253 |
+
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
|
254 |
+
background-repeat: repeat-x;
|
255 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
|
256 |
+
}
|
257 |
+
|
258 |
+
.sdf-admin .progress-bar {
|
259 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9));
|
260 |
+
background-image: -webkit-linear-gradient(top, #428bca, 0%, #3071a9, 100%);
|
261 |
+
background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%);
|
262 |
+
background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
|
263 |
+
background-repeat: repeat-x;
|
264 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
|
265 |
+
}
|
266 |
+
|
267 |
+
.sdf-admin .progress-bar-success {
|
268 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44));
|
269 |
+
background-image: -webkit-linear-gradient(top, #5cb85c, 0%, #449d44, 100%);
|
270 |
+
background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
271 |
+
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
|
272 |
+
background-repeat: repeat-x;
|
273 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
|
274 |
+
}
|
275 |
+
|
276 |
+
.sdf-admin .progress-bar-info {
|
277 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#31b0d5));
|
278 |
+
background-image: -webkit-linear-gradient(top, #5bc0de, 0%, #31b0d5, 100%);
|
279 |
+
background-image: -moz-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
280 |
+
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
|
281 |
+
background-repeat: repeat-x;
|
282 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
|
283 |
+
}
|
284 |
+
|
285 |
+
.sdf-admin .progress-bar-warning {
|
286 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#ec971f));
|
287 |
+
background-image: -webkit-linear-gradient(top, #f0ad4e, 0%, #ec971f, 100%);
|
288 |
+
background-image: -moz-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
289 |
+
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
|
290 |
+
background-repeat: repeat-x;
|
291 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
|
292 |
+
}
|
293 |
+
|
294 |
+
.sdf-admin .progress-bar-danger {
|
295 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c));
|
296 |
+
background-image: -webkit-linear-gradient(top, #d9534f, 0%, #c9302c, 100%);
|
297 |
+
background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
298 |
+
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
|
299 |
+
background-repeat: repeat-x;
|
300 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
|
301 |
+
}
|
302 |
+
|
303 |
+
.sdf-admin .list-group {
|
304 |
+
border-radius: 4px;
|
305 |
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
306 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
|
307 |
+
}
|
308 |
+
|
309 |
+
.sdf-admin .list-group-item.active,
|
310 |
+
.sdf-admin .list-group-item.active:hover,
|
311 |
+
.sdf-admin .list-group-item.active:focus {
|
312 |
+
text-shadow: 0 -1px 0 #3071a9;
|
313 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3278b3));
|
314 |
+
background-image: -webkit-linear-gradient(top, #428bca, 0%, #3278b3, 100%);
|
315 |
+
background-image: -moz-linear-gradient(top, #428bca 0%, #3278b3 100%);
|
316 |
+
background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
|
317 |
+
background-repeat: repeat-x;
|
318 |
+
border-color: #3278b3;
|
319 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);
|
320 |
+
}
|
321 |
+
|
322 |
+
.sdf-admin .panel {
|
323 |
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
324 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
325 |
+
}
|
326 |
+
|
327 |
+
.sdf-admin .panel-default > .panel-heading {
|
328 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f5f5f5), to(#e8e8e8));
|
329 |
+
background-image: -webkit-linear-gradient(top, #f5f5f5, 0%, #e8e8e8, 100%);
|
330 |
+
background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
331 |
+
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
332 |
+
background-repeat: repeat-x;
|
333 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
334 |
+
}
|
335 |
+
|
336 |
+
.sdf-admin .panel-primary > .panel-heading {
|
337 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
|
338 |
+
background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
|
339 |
+
background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
|
340 |
+
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
|
341 |
+
background-repeat: repeat-x;
|
342 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
|
343 |
+
}
|
344 |
+
|
345 |
+
.sdf-admin .panel-success > .panel-heading {
|
346 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#d0e9c6));
|
347 |
+
background-image: -webkit-linear-gradient(top, #dff0d8, 0%, #d0e9c6, 100%);
|
348 |
+
background-image: -moz-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
349 |
+
background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
|
350 |
+
background-repeat: repeat-x;
|
351 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
|
352 |
+
}
|
353 |
+
|
354 |
+
.sdf-admin .panel-info > .panel-heading {
|
355 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#c4e3f3));
|
356 |
+
background-image: -webkit-linear-gradient(top, #d9edf7, 0%, #c4e3f3, 100%);
|
357 |
+
background-image: -moz-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
358 |
+
background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
|
359 |
+
background-repeat: repeat-x;
|
360 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
|
361 |
+
}
|
362 |
+
|
363 |
+
.sdf-admin .panel-warning > .panel-heading {
|
364 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#faf2cc));
|
365 |
+
background-image: -webkit-linear-gradient(top, #fcf8e3, 0%, #faf2cc, 100%);
|
366 |
+
background-image: -moz-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
367 |
+
background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
|
368 |
+
background-repeat: repeat-x;
|
369 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
|
370 |
+
}
|
371 |
+
|
372 |
+
.sdf-admin .panel-danger > .panel-heading {
|
373 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#ebcccc));
|
374 |
+
background-image: -webkit-linear-gradient(top, #f2dede, 0%, #ebcccc, 100%);
|
375 |
+
background-image: -moz-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
376 |
+
background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
|
377 |
+
background-repeat: repeat-x;
|
378 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
|
379 |
+
}
|
380 |
+
|
381 |
+
.sdf-admin .well {
|
382 |
+
background-color: #fcfcfc;
|
383 |
+
border-color: #f2f2f2;
|
384 |
+
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02), 0 1px 0 rgba(255, 255, 255, 0.1);
|
385 |
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02), 0 1px 0 rgba(255, 255, 255, 0.1);
|
386 |
+
}
|
plugin/sdf/bootstrap/css/bootstrap.admin.css
ADDED
@@ -0,0 +1,5551 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.0.0
|
3 |
+
*
|
4 |
+
* Copyright 2013 Twitter, Inc
|
5 |
+
* Licensed under the Apache License v2.0
|
6 |
+
* http://www.apache.org/licenses/LICENSE-2.0
|
7 |
+
*
|
8 |
+
* Designed and built with all the love in the world by @mdo and @fat.
|
9 |
+
*/
|
10 |
+
|
11 |
+
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
|
12 |
+
|
13 |
+
.sdf-admin article,
|
14 |
+
.sdf-admin aside,
|
15 |
+
.sdf-admin details,
|
16 |
+
.sdf-admin figcaption,
|
17 |
+
.sdf-admin figure,
|
18 |
+
.sdf-admin footer,
|
19 |
+
.sdf-admin header,
|
20 |
+
.sdf-admin hgroup,
|
21 |
+
.sdf-admin main,
|
22 |
+
.sdf-admin nav,
|
23 |
+
.sdf-admin section,
|
24 |
+
.sdf-admin summary {
|
25 |
+
display: block;
|
26 |
+
}
|
27 |
+
|
28 |
+
.sdf-admin audio,
|
29 |
+
.sdf-admin canvas,
|
30 |
+
.sdf-admin video {
|
31 |
+
display: inline-block;
|
32 |
+
}
|
33 |
+
|
34 |
+
.sdf-admin audio:not([controls]) {
|
35 |
+
display: none;
|
36 |
+
height: 0;
|
37 |
+
}
|
38 |
+
|
39 |
+
.sdf-admin [hidden] {
|
40 |
+
display: none;
|
41 |
+
}
|
42 |
+
|
43 |
+
html .sdf-admin {
|
44 |
+
-webkit-text-size-adjust: 100%;
|
45 |
+
-ms-text-size-adjust: 100%;
|
46 |
+
}
|
47 |
+
|
48 |
+
body .sdf-admin {
|
49 |
+
margin: 0;
|
50 |
+
}
|
51 |
+
|
52 |
+
.sdf-admin a:focus {
|
53 |
+
outline: thin dotted;
|
54 |
+
}
|
55 |
+
|
56 |
+
.sdf-admin a:active,
|
57 |
+
a:hover {
|
58 |
+
outline: 0;
|
59 |
+
}
|
60 |
+
|
61 |
+
.sdf-admin h1 {
|
62 |
+
margin: 0.67em 0;
|
63 |
+
font-size: 2em;
|
64 |
+
}
|
65 |
+
|
66 |
+
.sdf-admin abbr[title] {
|
67 |
+
border-bottom: 1px dotted;
|
68 |
+
}
|
69 |
+
|
70 |
+
.sdf-admin b,
|
71 |
+
.sdf-admin strong {
|
72 |
+
font-weight: bold;
|
73 |
+
}
|
74 |
+
|
75 |
+
.sdf-admin dfn {
|
76 |
+
font-style: italic;
|
77 |
+
}
|
78 |
+
|
79 |
+
.sdf-admin hr {
|
80 |
+
height: 0;
|
81 |
+
-moz-box-sizing: content-box;
|
82 |
+
box-sizing: content-box;
|
83 |
+
}
|
84 |
+
|
85 |
+
.sdf-admin mark {
|
86 |
+
color: #000;
|
87 |
+
background: #ff0;
|
88 |
+
}
|
89 |
+
|
90 |
+
.sdf-admin code,
|
91 |
+
.sdf-admin kbd,
|
92 |
+
.sdf-admin pre,
|
93 |
+
.sdf-admin samp {
|
94 |
+
font-family: monospace, serif;
|
95 |
+
font-size: 1em;
|
96 |
+
}
|
97 |
+
|
98 |
+
.sdf-admin pre {
|
99 |
+
white-space: pre-wrap;
|
100 |
+
}
|
101 |
+
|
102 |
+
.sdf-admin q {
|
103 |
+
quotes: "\201C" "\201D" "\2018" "\2019";
|
104 |
+
}
|
105 |
+
|
106 |
+
.sdf-admin small {
|
107 |
+
font-size: 80%;
|
108 |
+
}
|
109 |
+
|
110 |
+
.sdf-admin sub,
|
111 |
+
.sdf-admin sup {
|
112 |
+
position: relative;
|
113 |
+
font-size: 75%;
|
114 |
+
line-height: 0;
|
115 |
+
vertical-align: baseline;
|
116 |
+
}
|
117 |
+
|
118 |
+
.sdf-admin sup {
|
119 |
+
top: -0.5em;
|
120 |
+
}
|
121 |
+
|
122 |
+
.sdf-admin sub {
|
123 |
+
bottom: -0.25em;
|
124 |
+
}
|
125 |
+
|
126 |
+
.sdf-admin img {
|
127 |
+
border: 0;
|
128 |
+
}
|
129 |
+
|
130 |
+
.sdf-admin svg:not(:root) {
|
131 |
+
overflow: hidden;
|
132 |
+
}
|
133 |
+
|
134 |
+
.sdf-admin figure {
|
135 |
+
margin: 0;
|
136 |
+
}
|
137 |
+
|
138 |
+
.sdf-admin fieldset {
|
139 |
+
padding: 0.35em 0.625em 0.75em;
|
140 |
+
margin: 0 2px;
|
141 |
+
border: 1px solid #c0c0c0;
|
142 |
+
}
|
143 |
+
|
144 |
+
.sdf-admin legend {
|
145 |
+
padding: 0;
|
146 |
+
border: 0;
|
147 |
+
}
|
148 |
+
|
149 |
+
.sdf-admin button,
|
150 |
+
.sdf-admin input,
|
151 |
+
.sdf-admin select,
|
152 |
+
.sdf-admin textarea {
|
153 |
+
margin: 0;
|
154 |
+
font-family: inherit;
|
155 |
+
font-size: 100%;
|
156 |
+
}
|
157 |
+
|
158 |
+
.sdf-admin button,
|
159 |
+
.sdf-admin input {
|
160 |
+
line-height: normal;
|
161 |
+
}
|
162 |
+
|
163 |
+
.sdf-admin button,
|
164 |
+
.sdf-admin select {
|
165 |
+
text-transform: none;
|
166 |
+
}
|
167 |
+
|
168 |
+
.sdf-admin button,
|
169 |
+
html .sdf-admin input[type="button"],
|
170 |
+
.sdf-admin input[type="reset"],
|
171 |
+
.sdf-admin input[type="submit"] {
|
172 |
+
cursor: pointer;
|
173 |
+
-webkit-appearance: button;
|
174 |
+
}
|
175 |
+
|
176 |
+
.sdf-admin button[disabled],
|
177 |
+
html .sdf-admin input[disabled] {
|
178 |
+
cursor: default;
|
179 |
+
}
|
180 |
+
|
181 |
+
.sdf-admin input[type="checkbox"],
|
182 |
+
.sdf-admin input[type="radio"] {
|
183 |
+
padding: 0;
|
184 |
+
box-sizing: border-box;
|
185 |
+
}
|
186 |
+
|
187 |
+
.sdf-admin input[type="search"] {
|
188 |
+
-webkit-box-sizing: content-box;
|
189 |
+
-moz-box-sizing: content-box;
|
190 |
+
box-sizing: content-box;
|
191 |
+
-webkit-appearance: textfield;
|
192 |
+
}
|
193 |
+
|
194 |
+
.sdf-admin input[type="search"]::-webkit-search-cancel-button,
|
195 |
+
.sdf-admin input[type="search"]::-webkit-search-decoration {
|
196 |
+
-webkit-appearance: none;
|
197 |
+
}
|
198 |
+
|
199 |
+
.sdf-admin button::-moz-focus-inner,
|
200 |
+
.sdf-admin input::-moz-focus-inner {
|
201 |
+
padding: 0;
|
202 |
+
border: 0;
|
203 |
+
}
|
204 |
+
|
205 |
+
.sdf-admin textarea {
|
206 |
+
overflow: auto;
|
207 |
+
vertical-align: top;
|
208 |
+
}
|
209 |
+
|
210 |
+
.sdf-admin table {
|
211 |
+
border-collapse: collapse;
|
212 |
+
border-spacing: 0;
|
213 |
+
}
|
214 |
+
|
215 |
+
@media print {
|
216 |
+
.sdf-admin * {
|
217 |
+
color: #000 !important;
|
218 |
+
text-shadow: none !important;
|
219 |
+
background: transparent !important;
|
220 |
+
box-shadow: none !important;
|
221 |
+
}
|
222 |
+
.sdf-admin a,
|
223 |
+
.sdf-admin a:visited {
|
224 |
+
text-decoration: underline;
|
225 |
+
}
|
226 |
+
.sdf-admin a[href]:after {
|
227 |
+
content: " (" attr(href) ")";
|
228 |
+
}
|
229 |
+
.sdf-admin abbr[title]:after {
|
230 |
+
content: " (" attr(title) ")";
|
231 |
+
}
|
232 |
+
.sdf-admin .ir a:after,
|
233 |
+
.sdf-admin a[href^="javascript:"]:after,
|
234 |
+
.sdf-admin a[href^="#"]:after {
|
235 |
+
content: "";
|
236 |
+
}
|
237 |
+
.sdf-admin pre,
|
238 |
+
.sdf-admin blockquote {
|
239 |
+
border: 1px solid #999;
|
240 |
+
page-break-inside: avoid;
|
241 |
+
}
|
242 |
+
.sdf-admin thead {
|
243 |
+
display: table-header-group;
|
244 |
+
}
|
245 |
+
.sdf-admin tr,
|
246 |
+
.sdf-admin img {
|
247 |
+
page-break-inside: avoid;
|
248 |
+
}
|
249 |
+
.sdf-admin img {
|
250 |
+
max-width: 100% !important;
|
251 |
+
}
|
252 |
+
@page {
|
253 |
+
margin: 2cm .5cm;
|
254 |
+
}
|
255 |
+
.sdf-admin p,
|
256 |
+
.sdf-admin h2,
|
257 |
+
.sdf-admin h3 {
|
258 |
+
orphans: 3;
|
259 |
+
widows: 3;
|
260 |
+
}
|
261 |
+
.sdf-admin h2,
|
262 |
+
.sdf-admin h3 {
|
263 |
+
page-break-after: avoid;
|
264 |
+
}
|
265 |
+
.sdf-admin .navbar {
|
266 |
+
display: none;
|
267 |
+
}
|
268 |
+
.sdf-admin .table td,
|
269 |
+
.sdf-admin .table th {
|
270 |
+
background-color: #fff !important;
|
271 |
+
}
|
272 |
+
.sdf-admin .btn > .caret,
|
273 |
+
.sdf-admin .dropup > .btn > .caret {
|
274 |
+
border-top-color: #000 !important;
|
275 |
+
}
|
276 |
+
.sdf-admin .label {
|
277 |
+
border: 1px solid #000;
|
278 |
+
}
|
279 |
+
.sdf-admin .table {
|
280 |
+
border-collapse: collapse !important;
|
281 |
+
}
|
282 |
+
.sdf-admin .table-bordered th,
|
283 |
+
.sdf-admin .table-bordered td {
|
284 |
+
border: 1px solid #ddd !important;
|
285 |
+
}
|
286 |
+
}
|
287 |
+
|
288 |
+
.sdf-admin *,
|
289 |
+
.sdf-admin *:before,
|
290 |
+
.sdf-admin *:after {
|
291 |
+
-webkit-box-sizing: border-box;
|
292 |
+
-moz-box-sizing: border-box;
|
293 |
+
box-sizing: border-box;
|
294 |
+
}
|
295 |
+
|
296 |
+
html .sdf-admin {
|
297 |
+
font-size: 62.5%;
|
298 |
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
299 |
+
}
|
300 |
+
|
301 |
+
body .sdf-admin {
|
302 |
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
303 |
+
font-size: 14px;
|
304 |
+
line-height: 1.428571429;
|
305 |
+
color: #333333;
|
306 |
+
}
|
307 |
+
|
308 |
+
.sdf-admin input,
|
309 |
+
.sdf-admin button,
|
310 |
+
.sdf-admin select,
|
311 |
+
.sdf-admin textarea {
|
312 |
+
font-family: inherit;
|
313 |
+
font-size: inherit;
|
314 |
+
line-height: inherit;
|
315 |
+
}
|
316 |
+
|
317 |
+
.sdf-admin button,
|
318 |
+
.sdf-admin input,
|
319 |
+
.sdf-admin select[multiple],
|
320 |
+
.sdf-admin textarea {
|
321 |
+
background-image: none;
|
322 |
+
}
|
323 |
+
|
324 |
+
.sdf-admin a {
|
325 |
+
color: #8D8D8D;
|
326 |
+
text-decoration: none;
|
327 |
+
}
|
328 |
+
|
329 |
+
.sdf-admin a:hover,
|
330 |
+
.sdf-admin a:focus {
|
331 |
+
color: #6D6D6D;
|
332 |
+
text-decoration: underline;
|
333 |
+
}
|
334 |
+
|
335 |
+
.sdf-admin a:focus {
|
336 |
+
outline: thin dotted #333;
|
337 |
+
outline: 5px auto -webkit-focus-ring-color;
|
338 |
+
outline-offset: -2px;
|
339 |
+
}
|
340 |
+
|
341 |
+
.sdf-admin img {
|
342 |
+
vertical-align: middle;
|
343 |
+
}
|
344 |
+
.sdf-admin .img-responsive {
|
345 |
+
display: block;
|
346 |
+
height: auto;
|
347 |
+
max-width: 100%;
|
348 |
+
}
|
349 |
+
.sdf-admin .img-rounded {
|
350 |
+
border-radius: 6px;
|
351 |
+
}
|
352 |
+
.sdf-admin .img-thumbnail {
|
353 |
+
display: inline-block;
|
354 |
+
height: auto;
|
355 |
+
max-width: 100%;
|
356 |
+
padding: 4px;
|
357 |
+
line-height: 1.428571429;
|
358 |
+
background-color: #ffffff;
|
359 |
+
border: 1px solid #dddddd;
|
360 |
+
border-radius: 4px;
|
361 |
+
-webkit-transition: all 0.2s ease-in-out;
|
362 |
+
transition: all 0.2s ease-in-out;
|
363 |
+
}
|
364 |
+
.sdf-admin .img-circle {
|
365 |
+
border-radius: 50%;
|
366 |
+
}
|
367 |
+
|
368 |
+
.sdf-admin hr {
|
369 |
+
margin-top: 20px;
|
370 |
+
margin-bottom: 20px;
|
371 |
+
border: 0;
|
372 |
+
border-top: 1px solid #eeeeee;
|
373 |
+
}
|
374 |
+
.sdf-admin .sr-only {
|
375 |
+
position: absolute;
|
376 |
+
width: 1px;
|
377 |
+
height: 1px;
|
378 |
+
padding: 0;
|
379 |
+
margin: -1px;
|
380 |
+
overflow: hidden;
|
381 |
+
clip: rect(0 0 0 0);
|
382 |
+
border: 0;
|
383 |
+
}
|
384 |
+
|
385 |
+
.sdf-admin p {
|
386 |
+
margin: 0 0 10px;
|
387 |
+
}
|
388 |
+
.sdf-admin .lead {
|
389 |
+
margin-bottom: 20px;
|
390 |
+
font-size: 16.099999999999998px;
|
391 |
+
font-weight: 200;
|
392 |
+
line-height: 1.4;
|
393 |
+
}
|
394 |
+
|
395 |
+
@media (min-width: 768px) {
|
396 |
+
.sdf-admin .lead {
|
397 |
+
font-size: 21px;
|
398 |
+
}
|
399 |
+
}
|
400 |
+
|
401 |
+
.sdf-admin small {
|
402 |
+
font-size: 85%;
|
403 |
+
}
|
404 |
+
|
405 |
+
.sdf-admin cite {
|
406 |
+
font-style: normal;
|
407 |
+
}
|
408 |
+
.sdf-admin .text-muted {
|
409 |
+
color: #999999;
|
410 |
+
}
|
411 |
+
.sdf-admin .text-primary {
|
412 |
+
color: #428bca;
|
413 |
+
}
|
414 |
+
.sdf-admin .text-warning {
|
415 |
+
color: #c09853;
|
416 |
+
}
|
417 |
+
.sdf-admin .text-danger {
|
418 |
+
color: #b94a48;
|
419 |
+
}
|
420 |
+
.sdf-admin .text-success {
|
421 |
+
color: #468847;
|
422 |
+
}
|
423 |
+
.sdf-admin .text-info {
|
424 |
+
color: #3a87ad;
|
425 |
+
}
|
426 |
+
.sdf-admin .text-left {
|
427 |
+
text-align: left;
|
428 |
+
}
|
429 |
+
.sdf-admin .text-right {
|
430 |
+
text-align: right;
|
431 |
+
}
|
432 |
+
.sdf-admin .text-center {
|
433 |
+
text-align: center;
|
434 |
+
}
|
435 |
+
|
436 |
+
.sdf-admin h1,
|
437 |
+
.sdf-admin h2,
|
438 |
+
.sdf-admin h3,
|
439 |
+
.sdf-admin h4,
|
440 |
+
.sdf-admin h5,
|
441 |
+
.sdf-admin h6,.sdf-admin .h1,.sdf-admin .h2,.sdf-admin .h3,.sdf-admin .h4,.sdf-admin .h5,.sdf-admin .h6 {
|
442 |
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
443 |
+
font-weight: 500;
|
444 |
+
line-height: 1.1;
|
445 |
+
}
|
446 |
+
|
447 |
+
.sdf-admin h1 small,
|
448 |
+
.sdf-admin h2 small,
|
449 |
+
.sdf-admin h3 small,
|
450 |
+
.sdf-admin h4 small,
|
451 |
+
.sdf-admin h5 small,
|
452 |
+
.sdf-admin h6 small,.sdf-admin .h1 small,.sdf-admin .h2 small,.sdf-admin .h3 small,.sdf-admin .h4 small,.sdf-admin .h5 small,.sdf-admin .h6 small {
|
453 |
+
font-weight: normal;
|
454 |
+
line-height: 1;
|
455 |
+
color: #999999;
|
456 |
+
}
|
457 |
+
|
458 |
+
.sdf-admin h1,
|
459 |
+
.sdf-admin h2,
|
460 |
+
.sdf-admin h3 {
|
461 |
+
margin-top: 20px;
|
462 |
+
margin-bottom: 10px;
|
463 |
+
}
|
464 |
+
|
465 |
+
.sdf-admin h4,
|
466 |
+
.sdf-admin h5,
|
467 |
+
.sdf-admin h6 {
|
468 |
+
margin-top: 10px;
|
469 |
+
margin-bottom: 10px;
|
470 |
+
}
|
471 |
+
|
472 |
+
.sdf-admin h1,.sdf-admin .h1 {
|
473 |
+
font-size: 36px;
|
474 |
+
}
|
475 |
+
|
476 |
+
.sdf-admin h2,.sdf-admin .h2 {
|
477 |
+
font-size: 30px;
|
478 |
+
}
|
479 |
+
|
480 |
+
.sdf-admin h3,.sdf-admin .h3 {
|
481 |
+
font-size: 24px;
|
482 |
+
}
|
483 |
+
|
484 |
+
.sdf-admin h4,.sdf-admin .h4 {
|
485 |
+
font-size: 18px;
|
486 |
+
}
|
487 |
+
|
488 |
+
.sdf-admin h5,.sdf-admin .h5 {
|
489 |
+
font-size: 14px;
|
490 |
+
}
|
491 |
+
|
492 |
+
.sdf-admin h6,.sdf-admin .h6 {
|
493 |
+
font-size: 12px;
|
494 |
+
}
|
495 |
+
|
496 |
+
.sdf-admin h1 small,.sdf-admin .h1 small {
|
497 |
+
font-size: 24px;
|
498 |
+
}
|
499 |
+
|
500 |
+
.sdf-admin h2 small,.sdf-admin .h2 small {
|
501 |
+
font-size: 18px;
|
502 |
+
}
|
503 |
+
|
504 |
+
.sdf-admin h3 small,.sdf-admin .h3 small,
|
505 |
+
.sdf-admin h4 small,.sdf-admin .h4 small {
|
506 |
+
font-size: 14px;
|
507 |
+
}
|
508 |
+
.sdf-admin .page-header {
|
509 |
+
padding-bottom: 9px;
|
510 |
+
margin: 40px 0 20px;
|
511 |
+
border-bottom: 1px solid #eeeeee;
|
512 |
+
}
|
513 |
+
|
514 |
+
.sdf-admin ul,
|
515 |
+
.sdf-admin ol {
|
516 |
+
margin-top: 0;
|
517 |
+
margin-bottom: 10px;
|
518 |
+
}
|
519 |
+
|
520 |
+
.sdf-admin ul ul,
|
521 |
+
.sdf-admin ol ul,
|
522 |
+
.sdf-admin ul ol,
|
523 |
+
.sdf-admin ol ol {
|
524 |
+
margin-bottom: 0;
|
525 |
+
}
|
526 |
+
.sdf-admin .list-unstyled {
|
527 |
+
padding-left: 0;
|
528 |
+
list-style: none;
|
529 |
+
}
|
530 |
+
.sdf-admin .list-inline {
|
531 |
+
padding-left: 0;
|
532 |
+
list-style: none;
|
533 |
+
}
|
534 |
+
.sdf-admin .list-inline > li {
|
535 |
+
display: inline-block;
|
536 |
+
padding-right: 5px;
|
537 |
+
padding-left: 5px;
|
538 |
+
}
|
539 |
+
|
540 |
+
.sdf-admin dl {
|
541 |
+
margin-bottom: 20px;
|
542 |
+
}
|
543 |
+
|
544 |
+
.sdf-admin dt,
|
545 |
+
.sdf-admin dd {
|
546 |
+
line-height: 1.428571429;
|
547 |
+
}
|
548 |
+
|
549 |
+
.sdf-admin dt {
|
550 |
+
font-weight: bold;
|
551 |
+
}
|
552 |
+
|
553 |
+
.sdf-admin dd {
|
554 |
+
margin-left: 0;
|
555 |
+
}
|
556 |
+
|
557 |
+
@media (min-width: 768px) {
|
558 |
+
.sdf-admin .dl-horizontal dt {
|
559 |
+
float: left;
|
560 |
+
width: 160px;
|
561 |
+
overflow: hidden;
|
562 |
+
clear: left;
|
563 |
+
text-align: right;
|
564 |
+
text-overflow: ellipsis;
|
565 |
+
white-space: nowrap;
|
566 |
+
}
|
567 |
+
.sdf-admin .dl-horizontal dd {
|
568 |
+
margin-left: 180px;
|
569 |
+
}
|
570 |
+
.sdf-admin .dl-horizontal dd:before,
|
571 |
+
.sdf-admin .dl-horizontal dd:after {
|
572 |
+
display: table;
|
573 |
+
content: " ";
|
574 |
+
}
|
575 |
+
.sdf-admin .dl-horizontal dd:after {
|
576 |
+
clear: both;
|
577 |
+
}
|
578 |
+
.sdf-admin .dl-horizontal dd:before,
|
579 |
+
.sdf-admin .dl-horizontal dd:after {
|
580 |
+
display: table;
|
581 |
+
content: " ";
|
582 |
+
}
|
583 |
+
.sdf-admin .dl-horizontal dd:after {
|
584 |
+
clear: both;
|
585 |
+
}
|
586 |
+
}
|
587 |
+
|
588 |
+
.sdf-admin abbr[title],
|
589 |
+
.sdf-admin abbr[data-original-title] {
|
590 |
+
cursor: help;
|
591 |
+
border-bottom: 1px dotted #999999;
|
592 |
+
}
|
593 |
+
|
594 |
+
.sdf-admin abbr.initialism {
|
595 |
+
font-size: 90%;
|
596 |
+
text-transform: uppercase;
|
597 |
+
}
|
598 |
+
|
599 |
+
.sdf-admin blockquote {
|
600 |
+
padding: 10px 20px;
|
601 |
+
margin: 0 0 20px;
|
602 |
+
border-left: 5px solid #eeeeee;
|
603 |
+
}
|
604 |
+
|
605 |
+
.sdf-admin blockquote p {
|
606 |
+
font-size: 17.5px;
|
607 |
+
font-weight: 300;
|
608 |
+
line-height: 1.25;
|
609 |
+
}
|
610 |
+
|
611 |
+
.sdf-admin blockquote p:last-child {
|
612 |
+
margin-bottom: 0;
|
613 |
+
}
|
614 |
+
|
615 |
+
.sdf-admin blockquote small {
|
616 |
+
display: block;
|
617 |
+
line-height: 1.428571429;
|
618 |
+
color: #999999;
|
619 |
+
}
|
620 |
+
|
621 |
+
.sdf-admin blockquote small:before {
|
622 |
+
content: '\2014 \00A0';
|
623 |
+
}
|
624 |
+
|
625 |
+
.sdf-admin blockquote.pull-right {
|
626 |
+
padding-right: 15px;
|
627 |
+
padding-left: 0;
|
628 |
+
border-right: 5px solid #eeeeee;
|
629 |
+
border-left: 0;
|
630 |
+
}
|
631 |
+
|
632 |
+
.sdf-admin blockquote.pull-right p,
|
633 |
+
.sdf-admin blockquote.pull-right small {
|
634 |
+
text-align: right;
|
635 |
+
}
|
636 |
+
|
637 |
+
.sdf-admin blockquote.pull-right small:before {
|
638 |
+
content: '';
|
639 |
+
}
|
640 |
+
|
641 |
+
.sdf-admin blockquote.pull-right small:after {
|
642 |
+
content: '\00A0 \2014';
|
643 |
+
}
|
644 |
+
|
645 |
+
.sdf-admin q:before,
|
646 |
+
.sdf-admin q:after,
|
647 |
+
.sdf-admin blockquote:before,
|
648 |
+
.sdf-admin blockquote:after {
|
649 |
+
content: "";
|
650 |
+
}
|
651 |
+
|
652 |
+
.sdf-admin address {
|
653 |
+
display: block;
|
654 |
+
margin-bottom: 20px;
|
655 |
+
font-style: normal;
|
656 |
+
line-height: 1.428571429;
|
657 |
+
}
|
658 |
+
|
659 |
+
.sdf-admin code,
|
660 |
+
.sdf-admin pre {
|
661 |
+
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
662 |
+
}
|
663 |
+
|
664 |
+
.sdf-admin code {
|
665 |
+
padding: 2px 4px;
|
666 |
+
font-size: 90%;
|
667 |
+
color: #c7254e;
|
668 |
+
white-space: nowrap;
|
669 |
+
background-color: #f9f2f4;
|
670 |
+
border-radius: 4px;
|
671 |
+
}
|
672 |
+
|
673 |
+
.sdf-admin pre {
|
674 |
+
display: block;
|
675 |
+
padding: 9.5px;
|
676 |
+
margin: 0 0 10px;
|
677 |
+
font-size: 13px;
|
678 |
+
line-height: 1.428571429;
|
679 |
+
color: #333333;
|
680 |
+
word-break: break-all;
|
681 |
+
word-wrap: break-word;
|
682 |
+
background-color: #f5f5f5;
|
683 |
+
border: 1px solid #cccccc;
|
684 |
+
border-radius: 4px;
|
685 |
+
}
|
686 |
+
|
687 |
+
.sdf-admin pre.prettyprint {
|
688 |
+
margin-bottom: 20px;
|
689 |
+
}
|
690 |
+
|
691 |
+
.sdf-admin pre code {
|
692 |
+
padding: 0;
|
693 |
+
font-size: inherit;
|
694 |
+
color: inherit;
|
695 |
+
white-space: pre-wrap;
|
696 |
+
background-color: transparent;
|
697 |
+
border: 0;
|
698 |
+
}
|
699 |
+
.sdf-admin .pre-scrollable {
|
700 |
+
max-height: 340px;
|
701 |
+
overflow-y: scroll;
|
702 |
+
}
|
703 |
+
.sdf-admin .container {
|
704 |
+
padding-right: 15px;
|
705 |
+
padding-left: 15px;
|
706 |
+
margin-right: auto;
|
707 |
+
margin-left: auto;
|
708 |
+
}
|
709 |
+
.sdf-admin .container:before,.sdf-admin .container:after {
|
710 |
+
display: table;
|
711 |
+
content: " ";
|
712 |
+
}
|
713 |
+
.sdf-admin .container:after {
|
714 |
+
clear: both;
|
715 |
+
}
|
716 |
+
.sdf-admin .container:before,.sdf-admin .container:after {
|
717 |
+
display: table;
|
718 |
+
content: " ";
|
719 |
+
}
|
720 |
+
.sdf-admin .container:after {
|
721 |
+
clear: both;
|
722 |
+
}
|
723 |
+
.sdf-admin .row {
|
724 |
+
margin-right: -15px;
|
725 |
+
margin-left: -15px;
|
726 |
+
}
|
727 |
+
.sdf-admin .row:before,.sdf-admin .row:after {
|
728 |
+
display: table;
|
729 |
+
content: " ";
|
730 |
+
}
|
731 |
+
.sdf-admin .row:after {
|
732 |
+
clear: both;
|
733 |
+
}
|
734 |
+
.sdf-admin .row:before,.sdf-admin .row:after {
|
735 |
+
display: table;
|
736 |
+
content: " ";
|
737 |
+
}
|
738 |
+
.sdf-admin .row:after {
|
739 |
+
clear: both;
|
740 |
+
}
|
741 |
+
.sdf-admin .col-xs-1,.sdf-admin .col-xs-2,.sdf-admin .col-xs-3,.sdf-admin .col-xs-4,.sdf-admin .col-xs-5,.sdf-admin .col-xs-6,.sdf-admin .col-xs-7,.sdf-admin .col-xs-8,.sdf-admin .col-xs-9,.sdf-admin .col-xs-10,.sdf-admin .col-xs-11,.sdf-admin .col-xs-12,.sdf-admin .col-sm-1,.sdf-admin .col-sm-2,.sdf-admin .col-sm-3,.sdf-admin .col-sm-4,.sdf-admin .col-sm-5,.sdf-admin .col-sm-6,.sdf-admin .col-sm-7,.sdf-admin .col-sm-8,.sdf-admin .col-sm-9,.sdf-admin .col-sm-10,.sdf-admin .col-sm-11,.sdf-admin .col-sm-12,.sdf-admin .col-md-1,.sdf-admin .col-md-2,.sdf-admin .col-md-3,.sdf-admin .col-md-4,.sdf-admin .col-md-5,.sdf-admin .col-md-6,.sdf-admin .col-md-7,.sdf-admin .col-md-8,.sdf-admin .col-md-9,.sdf-admin .col-md-10,.sdf-admin .col-md-11,.sdf-admin .col-md-12,.sdf-admin .col-lg-1,.sdf-admin .col-lg-2,.sdf-admin .col-lg-3,.sdf-admin .col-lg-4,.sdf-admin .col-lg-5,.sdf-admin .col-lg-6,.sdf-admin .col-lg-7,.sdf-admin .col-lg-8,.sdf-admin .col-lg-9,.sdf-admin .col-lg-10,.sdf-admin .col-lg-11,.sdf-admin .col-lg-12 {
|
742 |
+
position: relative;
|
743 |
+
min-height: 1px;
|
744 |
+
padding-right: 15px;
|
745 |
+
padding-left: 15px;
|
746 |
+
}
|
747 |
+
.sdf-admin .col-xs-1,.sdf-admin .col-xs-2,.sdf-admin .col-xs-3,.sdf-admin .col-xs-4,.sdf-admin .col-xs-5,.sdf-admin .col-xs-6,.sdf-admin .col-xs-7,.sdf-admin .col-xs-8,.sdf-admin .col-xs-9,.sdf-admin .col-xs-10,.sdf-admin .col-xs-11 {
|
748 |
+
float: left;
|
749 |
+
}
|
750 |
+
.sdf-admin .col-xs-1 {
|
751 |
+
width: 8.333333333333332%;
|
752 |
+
}
|
753 |
+
.sdf-admin .col-xs-2 {
|
754 |
+
width: 16.666666666666664%;
|
755 |
+
}
|
756 |
+
.sdf-admin .col-xs-3 {
|
757 |
+
width: 25%;
|
758 |
+
}
|
759 |
+
.sdf-admin .col-xs-4 {
|
760 |
+
width: 33.33333333333333%;
|
761 |
+
}
|
762 |
+
.sdf-admin .col-xs-5 {
|
763 |
+
width: 41.66666666666667%;
|
764 |
+
}
|
765 |
+
.sdf-admin .col-xs-6 {
|
766 |
+
width: 50%;
|
767 |
+
}
|
768 |
+
.sdf-admin .col-xs-7 {
|
769 |
+
width: 58.333333333333336%;
|
770 |
+
}
|
771 |
+
.sdf-admin .col-xs-8 {
|
772 |
+
width: 66.66666666666666%;
|
773 |
+
}
|
774 |
+
.sdf-admin .col-xs-9 {
|
775 |
+
width: 75%;
|
776 |
+
}
|
777 |
+
.sdf-admin .col-xs-10 {
|
778 |
+
width: 83.33333333333334%;
|
779 |
+
}
|
780 |
+
.sdf-admin .col-xs-11 {
|
781 |
+
width: 91.66666666666666%;
|
782 |
+
}
|
783 |
+
.sdf-admin .col-xs-12 {
|
784 |
+
width: 100%;
|
785 |
+
}
|
786 |
+
|
787 |
+
@media (min-width: 768px) {
|
788 |
+
.sdf-admin .container {
|
789 |
+
max-width: 750px;
|
790 |
+
}
|
791 |
+
.col-sm-1,
|
792 |
+
.col-sm-2,
|
793 |
+
.col-sm-3,
|
794 |
+
.col-sm-4,
|
795 |
+
.col-sm-5,
|
796 |
+
.col-sm-6,
|
797 |
+
.col-sm-7,
|
798 |
+
.col-sm-8,
|
799 |
+
.col-sm-9,
|
800 |
+
.col-sm-10,
|
801 |
+
.col-sm-11 {
|
802 |
+
float: left;
|
803 |
+
}
|
804 |
+
.col-sm-1 {
|
805 |
+
width: 8.333333333333332%;
|
806 |
+
}
|
807 |
+
.col-sm-2 {
|
808 |
+
width: 16.666666666666664%;
|
809 |
+
}
|
810 |
+
.col-sm-3 {
|
811 |
+
width: 25%;
|
812 |
+
}
|
813 |
+
.col-sm-4 {
|
814 |
+
width: 33.33333333333333%;
|
815 |
+
}
|
816 |
+
.col-sm-5 {
|
817 |
+
width: 41.66666666666667%;
|
818 |
+
}
|
819 |
+
.col-sm-6 {
|
820 |
+
width: 50%;
|
821 |
+
}
|
822 |
+
.col-sm-7 {
|
823 |
+
width: 58.333333333333336%;
|
824 |
+
}
|
825 |
+
.col-sm-8 {
|
826 |
+
width: 66.66666666666666%;
|
827 |
+
}
|
828 |
+
.col-sm-9 {
|
829 |
+
width: 75%;
|
830 |
+
}
|
831 |
+
.col-sm-10 {
|
832 |
+
width: 83.33333333333334%;
|
833 |
+
}
|
834 |
+
.col-sm-11 {
|
835 |
+
width: 91.66666666666666%;
|
836 |
+
}
|
837 |
+
.col-sm-12 {
|
838 |
+
width: 100%;
|
839 |
+
}
|
840 |
+
.col-sm-push-1 {
|
841 |
+
left: 8.333333333333332%;
|
842 |
+
}
|
843 |
+
.col-sm-push-2 {
|
844 |
+
left: 16.666666666666664%;
|
845 |
+
}
|
846 |
+
.col-sm-push-3 {
|
847 |
+
left: 25%;
|
848 |
+
}
|
849 |
+
.col-sm-push-4 {
|
850 |
+
left: 33.33333333333333%;
|
851 |
+
}
|
852 |
+
.col-sm-push-5 {
|
853 |
+
left: 41.66666666666667%;
|
854 |
+
}
|
855 |
+
.col-sm-push-6 {
|
856 |
+
left: 50%;
|
857 |
+
}
|
858 |
+
.col-sm-push-7 {
|
859 |
+
left: 58.333333333333336%;
|
860 |
+
}
|
861 |
+
.col-sm-push-8 {
|
862 |
+
left: 66.66666666666666%;
|
863 |
+
}
|
864 |
+
.col-sm-push-9 {
|
865 |
+
left: 75%;
|
866 |
+
}
|
867 |
+
.col-sm-push-10 {
|
868 |
+
left: 83.33333333333334%;
|
869 |
+
}
|
870 |
+
.col-sm-push-11 {
|
871 |
+
left: 91.66666666666666%;
|
872 |
+
}
|
873 |
+
.col-sm-pull-1 {
|
874 |
+
right: 8.333333333333332%;
|
875 |
+
}
|
876 |
+
.col-sm-pull-2 {
|
877 |
+
right: 16.666666666666664%;
|
878 |
+
}
|
879 |
+
.col-sm-pull-3 {
|
880 |
+
right: 25%;
|
881 |
+
}
|
882 |
+
.col-sm-pull-4 {
|
883 |
+
right: 33.33333333333333%;
|
884 |
+
}
|
885 |
+
.col-sm-pull-5 {
|
886 |
+
right: 41.66666666666667%;
|
887 |
+
}
|
888 |
+
.col-sm-pull-6 {
|
889 |
+
right: 50%;
|
890 |
+
}
|
891 |
+
.col-sm-pull-7 {
|
892 |
+
right: 58.333333333333336%;
|
893 |
+
}
|
894 |
+
.col-sm-pull-8 {
|
895 |
+
right: 66.66666666666666%;
|
896 |
+
}
|
897 |
+
.col-sm-pull-9 {
|
898 |
+
right: 75%;
|
899 |
+
}
|
900 |
+
.col-sm-pull-10 {
|
901 |
+
right: 83.33333333333334%;
|
902 |
+
}
|
903 |
+
.col-sm-pull-11 {
|
904 |
+
right: 91.66666666666666%;
|
905 |
+
}
|
906 |
+
.col-sm-offset-1 {
|
907 |
+
margin-left: 8.333333333333332%;
|
908 |
+
}
|
909 |
+
.col-sm-offset-2 {
|
910 |
+
margin-left: 16.666666666666664%;
|
911 |
+
}
|
912 |
+
.col-sm-offset-3 {
|
913 |
+
margin-left: 25%;
|
914 |
+
}
|
915 |
+
.col-sm-offset-4 {
|
916 |
+
margin-left: 33.33333333333333%;
|
917 |
+
}
|
918 |
+
.col-sm-offset-5 {
|
919 |
+
margin-left: 41.66666666666667%;
|
920 |
+
}
|
921 |
+
.col-sm-offset-6 {
|
922 |
+
margin-left: 50%;
|
923 |
+
}
|
924 |
+
.col-sm-offset-7 {
|
925 |
+
margin-left: 58.333333333333336%;
|
926 |
+
}
|
927 |
+
.col-sm-offset-8 {
|
928 |
+
margin-left: 66.66666666666666%;
|
929 |
+
}
|
930 |
+
.col-sm-offset-9 {
|
931 |
+
margin-left: 75%;
|
932 |
+
}
|
933 |
+
.col-sm-offset-10 {
|
934 |
+
margin-left: 83.33333333333334%;
|
935 |
+
}
|
936 |
+
.col-sm-offset-11 {
|
937 |
+
margin-left: 91.66666666666666%;
|
938 |
+
}
|
939 |
+
}
|
940 |
+
|
941 |
+
@media (min-width: 992px) {
|
942 |
+
.sdf-admin .container {
|
943 |
+
max-width: 970px;
|
944 |
+
}
|
945 |
+
.col-md-1,
|
946 |
+
.col-md-2,
|
947 |
+
.col-md-3,
|
948 |
+
.col-md-4,
|
949 |
+
.col-md-5,
|
950 |
+
.col-md-6,
|
951 |
+
.col-md-7,
|
952 |
+
.col-md-8,
|
953 |
+
.col-md-9,
|
954 |
+
.col-md-10,
|
955 |
+
.col-md-11 {
|
956 |
+
float: left;
|
957 |
+
}
|
958 |
+
.col-md-1 {
|
959 |
+
width: 8.333333333333332%;
|
960 |
+
}
|
961 |
+
.col-md-2 {
|
962 |
+
width: 16.666666666666664%;
|
963 |
+
}
|
964 |
+
.col-md-3 {
|
965 |
+
width: 25%;
|
966 |
+
}
|
967 |
+
.col-md-4 {
|
968 |
+
width: 33.33333333333333%;
|
969 |
+
}
|
970 |
+
.col-md-5 {
|
971 |
+
width: 41.66666666666667%;
|
972 |
+
}
|
973 |
+
.col-md-6 {
|
974 |
+
width: 50%;
|
975 |
+
}
|
976 |
+
.col-md-7 {
|
977 |
+
width: 58.333333333333336%;
|
978 |
+
}
|
979 |
+
.col-md-8 {
|
980 |
+
width: 66.66666666666666%;
|
981 |
+
}
|
982 |
+
.col-md-9 {
|
983 |
+
width: 75%;
|
984 |
+
}
|
985 |
+
.col-md-10 {
|
986 |
+
width: 83.33333333333334%;
|
987 |
+
}
|
988 |
+
.col-md-11 {
|
989 |
+
width: 91.66666666666666%;
|
990 |
+
}
|
991 |
+
.col-md-12 {
|
992 |
+
width: 100%;
|
993 |
+
}
|
994 |
+
.col-md-push-0 {
|
995 |
+
left: auto;
|
996 |
+
}
|
997 |
+
.col-md-push-1 {
|
998 |
+
left: 8.333333333333332%;
|
999 |
+
}
|
1000 |
+
.col-md-push-2 {
|
1001 |
+
left: 16.666666666666664%;
|
1002 |
+
}
|
1003 |
+
.col-md-push-3 {
|
1004 |
+
left: 25%;
|
1005 |
+
}
|
1006 |
+
.col-md-push-4 {
|
1007 |
+
left: 33.33333333333333%;
|
1008 |
+
}
|
1009 |
+
.col-md-push-5 {
|
1010 |
+
left: 41.66666666666667%;
|
1011 |
+
}
|
1012 |
+
.col-md-push-6 {
|
1013 |
+
left: 50%;
|
1014 |
+
}
|
1015 |
+
.col-md-push-7 {
|
1016 |
+
left: 58.333333333333336%;
|
1017 |
+
}
|
1018 |
+
.col-md-push-8 {
|
1019 |
+
left: 66.66666666666666%;
|
1020 |
+
}
|
1021 |
+
.col-md-push-9 {
|
1022 |
+
left: 75%;
|
1023 |
+
}
|
1024 |
+
.col-md-push-10 {
|
1025 |
+
left: 83.33333333333334%;
|
1026 |
+
}
|
1027 |
+
.col-md-push-11 {
|
1028 |
+
left: 91.66666666666666%;
|
1029 |
+
}
|
1030 |
+
.col-md-pull-0 {
|
1031 |
+
right: auto;
|
1032 |
+
}
|
1033 |
+
.col-md-pull-1 {
|
1034 |
+
right: 8.333333333333332%;
|
1035 |
+
}
|
1036 |
+
.col-md-pull-2 {
|
1037 |
+
right: 16.666666666666664%;
|
1038 |
+
}
|
1039 |
+
.col-md-pull-3 {
|
1040 |
+
right: 25%;
|
1041 |
+
}
|
1042 |
+
.col-md-pull-4 {
|
1043 |
+
right: 33.33333333333333%;
|
1044 |
+
}
|
1045 |
+
.col-md-pull-5 {
|
1046 |
+
right: 41.66666666666667%;
|
1047 |
+
}
|
1048 |
+
.col-md-pull-6 {
|
1049 |
+
right: 50%;
|
1050 |
+
}
|
1051 |
+
.col-md-pull-7 {
|
1052 |
+
right: 58.333333333333336%;
|
1053 |
+
}
|
1054 |
+
.col-md-pull-8 {
|
1055 |
+
right: 66.66666666666666%;
|
1056 |
+
}
|
1057 |
+
.col-md-pull-9 {
|
1058 |
+
right: 75%;
|
1059 |
+
}
|
1060 |
+
.col-md-pull-10 {
|
1061 |
+
right: 83.33333333333334%;
|
1062 |
+
}
|
1063 |
+
.col-md-pull-11 {
|
1064 |
+
right: 91.66666666666666%;
|
1065 |
+
}
|
1066 |
+
.col-md-offset-0 {
|
1067 |
+
margin-left: 0;
|
1068 |
+
}
|
1069 |
+
.col-md-offset-1 {
|
1070 |
+
margin-left: 8.333333333333332%;
|
1071 |
+
}
|
1072 |
+
.col-md-offset-2 {
|
1073 |
+
margin-left: 16.666666666666664%;
|
1074 |
+
}
|
1075 |
+
.col-md-offset-3 {
|
1076 |
+
margin-left: 25%;
|
1077 |
+
}
|
1078 |
+
.col-md-offset-4 {
|
1079 |
+
margin-left: 33.33333333333333%;
|
1080 |
+
}
|
1081 |
+
.col-md-offset-5 {
|
1082 |
+
margin-left: 41.66666666666667%;
|
1083 |
+
}
|
1084 |
+
.col-md-offset-6 {
|
1085 |
+
margin-left: 50%;
|
1086 |
+
}
|
1087 |
+
.col-md-offset-7 {
|
1088 |
+
margin-left: 58.333333333333336%;
|
1089 |
+
}
|
1090 |
+
.col-md-offset-8 {
|
1091 |
+
margin-left: 66.66666666666666%;
|
1092 |
+
}
|
1093 |
+
.col-md-offset-9 {
|
1094 |
+
margin-left: 75%;
|
1095 |
+
}
|
1096 |
+
.col-md-offset-10 {
|
1097 |
+
margin-left: 83.33333333333334%;
|
1098 |
+
}
|
1099 |
+
.col-md-offset-11 {
|
1100 |
+
margin-left: 91.66666666666666%;
|
1101 |
+
}
|
1102 |
+
}
|
1103 |
+
|
1104 |
+
@media (min-width: 1200px) {
|
1105 |
+
.sdf-admin .container {
|
1106 |
+
max-width: 1170px;
|
1107 |
+
}
|
1108 |
+
.col-lg-1,
|
1109 |
+
.col-lg-2,
|
1110 |
+
.col-lg-3,
|
1111 |
+
.col-lg-4,
|
1112 |
+
.col-lg-5,
|
1113 |
+
.col-lg-6,
|
1114 |
+
.col-lg-7,
|
1115 |
+
.col-lg-8,
|
1116 |
+
.col-lg-9,
|
1117 |
+
.col-lg-10,
|
1118 |
+
.col-lg-11 {
|
1119 |
+
float: left;
|
1120 |
+
}
|
1121 |
+
.col-lg-1 {
|
1122 |
+
width: 8.333333333333332%;
|
1123 |
+
}
|
1124 |
+
.col-lg-2 {
|
1125 |
+
width: 16.666666666666664%;
|
1126 |
+
}
|
1127 |
+
.col-lg-3 {
|
1128 |
+
width: 25%;
|
1129 |
+
}
|
1130 |
+
.col-lg-4 {
|
1131 |
+
width: 33.33333333333333%;
|
1132 |
+
}
|
1133 |
+
.col-lg-5 {
|
1134 |
+
width: 41.66666666666667%;
|
1135 |
+
}
|
1136 |
+
.col-lg-6 {
|
1137 |
+
width: 50%;
|
1138 |
+
}
|
1139 |
+
.col-lg-7 {
|
1140 |
+
width: 58.333333333333336%;
|
1141 |
+
}
|
1142 |
+
.col-lg-8 {
|
1143 |
+
width: 66.66666666666666%;
|
1144 |
+
}
|
1145 |
+
.col-lg-9 {
|
1146 |
+
width: 75%;
|
1147 |
+
}
|
1148 |
+
.col-lg-10 {
|
1149 |
+
width: 83.33333333333334%;
|
1150 |
+
}
|
1151 |
+
.col-lg-11 {
|
1152 |
+
width: 91.66666666666666%;
|
1153 |
+
}
|
1154 |
+
.col-lg-12 {
|
1155 |
+
width: 100%;
|
1156 |
+
}
|
1157 |
+
.col-lg-push-0 {
|
1158 |
+
left: auto;
|
1159 |
+
}
|
1160 |
+
.col-lg-push-1 {
|
1161 |
+
left: 8.333333333333332%;
|
1162 |
+
}
|
1163 |
+
.col-lg-push-2 {
|
1164 |
+
left: 16.666666666666664%;
|
1165 |
+
}
|
1166 |
+
.col-lg-push-3 {
|
1167 |
+
left: 25%;
|
1168 |
+
}
|
1169 |
+
.col-lg-push-4 {
|
1170 |
+
left: 33.33333333333333%;
|
1171 |
+
}
|
1172 |
+
.col-lg-push-5 {
|
1173 |
+
left: 41.66666666666667%;
|
1174 |
+
}
|
1175 |
+
.col-lg-push-6 {
|
1176 |
+
left: 50%;
|
1177 |
+
}
|
1178 |
+
.col-lg-push-7 {
|
1179 |
+
left: 58.333333333333336%;
|
1180 |
+
}
|
1181 |
+
.col-lg-push-8 {
|
1182 |
+
left: 66.66666666666666%;
|
1183 |
+
}
|
1184 |
+
.col-lg-push-9 {
|
1185 |
+
left: 75%;
|
1186 |
+
}
|
1187 |
+
.col-lg-push-10 {
|
1188 |
+
left: 83.33333333333334%;
|
1189 |
+
}
|
1190 |
+
.col-lg-push-11 {
|
1191 |
+
left: 91.66666666666666%;
|
1192 |
+
}
|
1193 |
+
.col-lg-pull-0 {
|
1194 |
+
right: auto;
|
1195 |
+
}
|
1196 |
+
.col-lg-pull-1 {
|
1197 |
+
right: 8.333333333333332%;
|
1198 |
+
}
|
1199 |
+
.col-lg-pull-2 {
|
1200 |
+
right: 16.666666666666664%;
|
1201 |
+
}
|
1202 |
+
.col-lg-pull-3 {
|
1203 |
+
right: 25%;
|
1204 |
+
}
|
1205 |
+
.col-lg-pull-4 {
|
1206 |
+
right: 33.33333333333333%;
|
1207 |
+
}
|
1208 |
+
.col-lg-pull-5 {
|
1209 |
+
right: 41.66666666666667%;
|
1210 |
+
}
|
1211 |
+
.col-lg-pull-6 {
|
1212 |
+
right: 50%;
|
1213 |
+
}
|
1214 |
+
.col-lg-pull-7 {
|
1215 |
+
right: 58.333333333333336%;
|
1216 |
+
}
|
1217 |
+
.col-lg-pull-8 {
|
1218 |
+
right: 66.66666666666666%;
|
1219 |
+
}
|
1220 |
+
.col-lg-pull-9 {
|
1221 |
+
right: 75%;
|
1222 |
+
}
|
1223 |
+
.col-lg-pull-10 {
|
1224 |
+
right: 83.33333333333334%;
|
1225 |
+
}
|
1226 |
+
.col-lg-pull-11 {
|
1227 |
+
right: 91.66666666666666%;
|
1228 |
+
}
|
1229 |
+
.col-lg-offset-0 {
|
1230 |
+
margin-left: 0;
|
1231 |
+
}
|
1232 |
+
.col-lg-offset-1 {
|
1233 |
+
margin-left: 8.333333333333332%;
|
1234 |
+
}
|
1235 |
+
.col-lg-offset-2 {
|
1236 |
+
margin-left: 16.666666666666664%;
|
1237 |
+
}
|
1238 |
+
.col-lg-offset-3 {
|
1239 |
+
margin-left: 25%;
|
1240 |
+
}
|
1241 |
+
.col-lg-offset-4 {
|
1242 |
+
margin-left: 33.33333333333333%;
|
1243 |
+
}
|
1244 |
+
.col-lg-offset-5 {
|
1245 |
+
margin-left: 41.66666666666667%;
|
1246 |
+
}
|
1247 |
+
.col-lg-offset-6 {
|
1248 |
+
margin-left: 50%;
|
1249 |
+
}
|
1250 |
+
.col-lg-offset-7 {
|
1251 |
+
margin-left: 58.333333333333336%;
|
1252 |
+
}
|
1253 |
+
.col-lg-offset-8 {
|
1254 |
+
margin-left: 66.66666666666666%;
|
1255 |
+
}
|
1256 |
+
.col-lg-offset-9 {
|
1257 |
+
margin-left: 75%;
|
1258 |
+
}
|
1259 |
+
.col-lg-offset-10 {
|
1260 |
+
margin-left: 83.33333333333334%;
|
1261 |
+
}
|
1262 |
+
.col-lg-offset-11 {
|
1263 |
+
margin-left: 91.66666666666666%;
|
1264 |
+
}
|
1265 |
+
}
|
1266 |
+
|
1267 |
+
.sdf-admin table {
|
1268 |
+
max-width: 100%;
|
1269 |
+
background-color: transparent;
|
1270 |
+
}
|
1271 |
+
|
1272 |
+
.sdf-admin th {
|
1273 |
+
text-align: left;
|
1274 |
+
}
|
1275 |
+
.sdf-admin .table {
|
1276 |
+
width: 100%;
|
1277 |
+
margin-bottom: 20px;
|
1278 |
+
}
|
1279 |
+
.sdf-admin .table thead > tr > th,.sdf-admin .table tbody > tr > th,.sdf-admin .table tfoot > tr > th,.sdf-admin .table thead > tr > td,.sdf-admin .table tbody > tr > td,.sdf-admin .table tfoot > tr > td {
|
1280 |
+
padding: 8px;
|
1281 |
+
line-height: 1.428571429;
|
1282 |
+
vertical-align: top;
|
1283 |
+
border-top: 1px solid #dddddd;
|
1284 |
+
}
|
1285 |
+
.sdf-admin .table thead > tr > th {
|
1286 |
+
vertical-align: bottom;
|
1287 |
+
border-bottom: 2px solid #dddddd;
|
1288 |
+
}
|
1289 |
+
.sdf-admin .table caption + thead tr:first-child th,.sdf-admin .table colgroup + thead tr:first-child th,.sdf-admin .table thead:first-child tr:first-child th,.sdf-admin .table caption + thead tr:first-child td,.sdf-admin .table colgroup + thead tr:first-child td,.sdf-admin .table thead:first-child tr:first-child td {
|
1290 |
+
border-top: 0;
|
1291 |
+
}
|
1292 |
+
.sdf-admin .table tbody + tbody {
|
1293 |
+
border-top: 2px solid #dddddd;
|
1294 |
+
}
|
1295 |
+
.sdf-admin .table .table {
|
1296 |
+
background-color: #ffffff;
|
1297 |
+
}
|
1298 |
+
.sdf-admin .table-condensed thead > tr > th,.sdf-admin .table-condensed tbody > tr > th,.sdf-admin .table-condensed tfoot > tr > th,.sdf-admin .table-condensed thead > tr > td,.sdf-admin .table-condensed tbody > tr > td,.sdf-admin .table-condensed tfoot > tr > td {
|
1299 |
+
padding: 5px;
|
1300 |
+
}
|
1301 |
+
.sdf-admin .table-bordered {
|
1302 |
+
border: 1px solid #dddddd;
|
1303 |
+
}
|
1304 |
+
.sdf-admin .table-bordered > thead > tr > th,.sdf-admin .table-bordered > tbody > tr > th,.sdf-admin .table-bordered > tfoot > tr > th,.sdf-admin .table-bordered > thead > tr > td,.sdf-admin .table-bordered > tbody > tr > td,.sdf-admin .table-bordered > tfoot > tr > td {
|
1305 |
+
border: 1px solid #dddddd;
|
1306 |
+
}
|
1307 |
+
.sdf-admin .table-bordered > thead > tr > th,.sdf-admin .table-bordered > thead > tr > td {
|
1308 |
+
border-bottom-width: 2px;
|
1309 |
+
}
|
1310 |
+
.sdf-admin .table-striped > tbody > tr:nth-child(odd) > td,.sdf-admin .table-striped > tbody > tr:nth-child(odd) > th {
|
1311 |
+
background-color: #f9f9f9;
|
1312 |
+
}
|
1313 |
+
.sdf-admin .table-hover > tbody > tr:hover > td,.sdf-admin .table-hover > tbody > tr:hover > th {
|
1314 |
+
background-color: #f5f5f5;
|
1315 |
+
}
|
1316 |
+
|
1317 |
+
.sdf-admin table col[class*="col-"] {
|
1318 |
+
display: table-column;
|
1319 |
+
float: none;
|
1320 |
+
}
|
1321 |
+
|
1322 |
+
.sdf-admin table td[class*="col-"],
|
1323 |
+
.sdf-admin table th[class*="col-"] {
|
1324 |
+
display: table-cell;
|
1325 |
+
float: none;
|
1326 |
+
}
|
1327 |
+
.sdf-admin .table > thead > tr > td.active,.sdf-admin .table > tbody > tr > td.active,.sdf-admin .table > tfoot > tr > td.active,.sdf-admin .table > thead > tr > th.active,.sdf-admin .table > tbody > tr > th.active,.sdf-admin .table > tfoot > tr > th.active,.sdf-admin .table > thead > tr.active > td,.sdf-admin .table > tbody > tr.active > td,.sdf-admin .table > tfoot > tr.active > td,.sdf-admin .table > thead > tr.active > th,.sdf-admin .table > tbody > tr.active > th,.sdf-admin .table > tfoot > tr.active > th {
|
1328 |
+
background-color: #f5f5f5;
|
1329 |
+
}
|
1330 |
+
.sdf-admin .table > thead > tr > td.success,.sdf-admin .table > tbody > tr > td.success,.sdf-admin .table > tfoot > tr > td.success,.sdf-admin .table > thead > tr > th.success,.sdf-admin .table > tbody > tr > th.success,.sdf-admin .table > tfoot > tr > th.success,.sdf-admin .table > thead > tr.success > td,.sdf-admin .table > tbody > tr.success > td,.sdf-admin .table > tfoot > tr.success > td,.sdf-admin .table > thead > tr.success > th,.sdf-admin .table > tbody > tr.success > th,.sdf-admin .table > tfoot > tr.success > th {
|
1331 |
+
background-color: #dff0d8;
|
1332 |
+
border-color: #d6e9c6;
|
1333 |
+
}
|
1334 |
+
.sdf-admin .table-hover > tbody > tr > td.success:hover,.sdf-admin .table-hover > tbody > tr > th.success:hover,.sdf-admin .table-hover > tbody > tr.success:hover > td {
|
1335 |
+
background-color: #d0e9c6;
|
1336 |
+
border-color: #c9e2b3;
|
1337 |
+
}
|
1338 |
+
.sdf-admin .table > thead > tr > td.danger,.sdf-admin .table > tbody > tr > td.danger,.sdf-admin .table > tfoot > tr > td.danger,.sdf-admin .table > thead > tr > th.danger,.sdf-admin .table > tbody > tr > th.danger,.sdf-admin .table > tfoot > tr > th.danger,.sdf-admin .table > thead > tr.danger > td,.sdf-admin .table > tbody > tr.danger > td,.sdf-admin .table > tfoot > tr.danger > td,.sdf-admin .table > thead > tr.danger > th,.sdf-admin .table > tbody > tr.danger > th,.sdf-admin .table > tfoot > tr.danger > th {
|
1339 |
+
background-color: #f2dede;
|
1340 |
+
border-color: #eed3d7;
|
1341 |
+
}
|
1342 |
+
.sdf-admin .table-hover > tbody > tr > td.danger:hover,.sdf-admin .table-hover > tbody > tr > th.danger:hover,.sdf-admin .table-hover > tbody > tr.danger:hover > td {
|
1343 |
+
background-color: #ebcccc;
|
1344 |
+
border-color: #e6c1c7;
|
1345 |
+
}
|
1346 |
+
.sdf-admin .table > thead > tr > td.warning,.sdf-admin .table > tbody > tr > td.warning,.sdf-admin .table > tfoot > tr > td.warning,.sdf-admin .table > thead > tr > th.warning,.sdf-admin .table > tbody > tr > th.warning,.sdf-admin .table > tfoot > tr > th.warning,.sdf-admin .table > thead > tr.warning > td,.sdf-admin .table > tbody > tr.warning > td,.sdf-admin .table > tfoot > tr.warning > td,.sdf-admin .table > thead > tr.warning > th,.sdf-admin .table > tbody > tr.warning > th,.sdf-admin .table > tfoot > tr.warning > th {
|
1347 |
+
background-color: #fcf8e3;
|
1348 |
+
border-color: #fbeed5;
|
1349 |
+
}
|
1350 |
+
.sdf-admin .table-hover > tbody > tr > td.warning:hover,.sdf-admin .table-hover > tbody > tr > th.warning:hover,.sdf-admin .table-hover > tbody > tr.warning:hover > td {
|
1351 |
+
background-color: #faf2cc;
|
1352 |
+
border-color: #f8e5be;
|
1353 |
+
}
|
1354 |
+
|
1355 |
+
@media (max-width: 768px) {
|
1356 |
+
.sdf-admin .table-responsive {
|
1357 |
+
width: 100%;
|
1358 |
+
margin-bottom: 15px;
|
1359 |
+
overflow-x: scroll;
|
1360 |
+
overflow-y: hidden;
|
1361 |
+
border: 1px solid #dddddd;
|
1362 |
+
}
|
1363 |
+
.sdf-admin .table-responsive > .table {
|
1364 |
+
margin-bottom: 0;
|
1365 |
+
background-color: #fff;
|
1366 |
+
}
|
1367 |
+
.sdf-admin .table-responsive > .table > thead > tr > th,
|
1368 |
+
.sdf-admin .table-responsive > .table > tbody > tr > th,
|
1369 |
+
.sdf-admin .table-responsive > .table > tfoot > tr > th,
|
1370 |
+
.sdf-admin .table-responsive > .table > thead > tr > td,
|
1371 |
+
.sdf-admin .table-responsive > .table > tbody > tr > td,
|
1372 |
+
.sdf-admin .table-responsive > .table > tfoot > tr > td {
|
1373 |
+
white-space: nowrap;
|
1374 |
+
}
|
1375 |
+
.sdf-admin .table-responsive > .table-bordered {
|
1376 |
+
border: 0;
|
1377 |
+
}
|
1378 |
+
.sdf-admin .table-responsive > .table-bordered > thead > tr > th:first-child,
|
1379 |
+
.sdf-admin .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
1380 |
+
.sdf-admin .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
1381 |
+
.sdf-admin .table-responsive > .table-bordered > thead > tr > td:first-child,
|
1382 |
+
.sdf-admin .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
1383 |
+
.sdf-admin .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
1384 |
+
border-left: 0;
|
1385 |
+
}
|
1386 |
+
.sdf-admin .table-responsive > .table-bordered > thead > tr > th:last-child,
|
1387 |
+
.sdf-admin .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
1388 |
+
.sdf-admin .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
1389 |
+
.sdf-admin .table-responsive > .table-bordered > thead > tr > td:last-child,
|
1390 |
+
.sdf-admin .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
1391 |
+
.sdf-admin .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
1392 |
+
border-right: 0;
|
1393 |
+
}
|
1394 |
+
.sdf-admin .table-responsive > .table-bordered > thead > tr:last-child > th,
|
1395 |
+
.sdf-admin .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
1396 |
+
.sdf-admin .table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
1397 |
+
.sdf-admin .table-responsive > .table-bordered > thead > tr:last-child > td,
|
1398 |
+
.sdf-admin .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
1399 |
+
.sdf-admin .table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
1400 |
+
border-bottom: 0;
|
1401 |
+
}
|
1402 |
+
}
|
1403 |
+
|
1404 |
+
.sdf-admin fieldset {
|
1405 |
+
padding: 0;
|
1406 |
+
margin: 0;
|
1407 |
+
border: 0;
|
1408 |
+
}
|
1409 |
+
|
1410 |
+
.sdf-admin legend {
|
1411 |
+
display: block;
|
1412 |
+
width: 100%;
|
1413 |
+
padding: 0;
|
1414 |
+
margin-bottom: 20px;
|
1415 |
+
font-size: 21px;
|
1416 |
+
line-height: inherit;
|
1417 |
+
color: #333333;
|
1418 |
+
border: 0;
|
1419 |
+
border-bottom: 1px solid #e5e5e5;
|
1420 |
+
}
|
1421 |
+
.sdf-admin .wpu-group label,
|
1422 |
+
.sdf-admin #wpu-tabs label {
|
1423 |
+
display: inline-block;
|
1424 |
+
margin-bottom: 5px;
|
1425 |
+
font-weight: bold;
|
1426 |
+
}
|
1427 |
+
|
1428 |
+
.sdf-admin input[type="search"] {
|
1429 |
+
-webkit-box-sizing: border-box;
|
1430 |
+
-moz-box-sizing: border-box;
|
1431 |
+
box-sizing: border-box;
|
1432 |
+
}
|
1433 |
+
|
1434 |
+
.sdf-admin input[type="radio"],
|
1435 |
+
.sdf-admin input[type="checkbox"] {
|
1436 |
+
margin: 4px 0 0;
|
1437 |
+
margin-top: 1px \9;
|
1438 |
+
/* IE8-9 */
|
1439 |
+
|
1440 |
+
line-height: normal;
|
1441 |
+
}
|
1442 |
+
|
1443 |
+
.sdf-admin input[type="file"] {
|
1444 |
+
display: block;
|
1445 |
+
}
|
1446 |
+
|
1447 |
+
.sdf-admin select[multiple],
|
1448 |
+
.sdf-admin select[size] {
|
1449 |
+
height: auto;
|
1450 |
+
}
|
1451 |
+
|
1452 |
+
.sdf-admin select optgroup {
|
1453 |
+
font-family: inherit;
|
1454 |
+
font-size: inherit;
|
1455 |
+
font-style: inherit;
|
1456 |
+
}
|
1457 |
+
|
1458 |
+
.sdf-admin input[type="file"]:focus,
|
1459 |
+
.sdf-admin input[type="radio"]:focus,
|
1460 |
+
.sdf-admin input[type="checkbox"]:focus {
|
1461 |
+
outline: thin dotted #333;
|
1462 |
+
outline: 5px auto -webkit-focus-ring-color;
|
1463 |
+
outline-offset: -2px;
|
1464 |
+
}
|
1465 |
+
|
1466 |
+
.sdf-admin input[type="number"]::-webkit-outer-spin-button,
|
1467 |
+
.sdf-admin input[type="number"]::-webkit-inner-spin-button {
|
1468 |
+
height: auto;
|
1469 |
+
}
|
1470 |
+
.sdf-admin .form-control:-moz-placeholder {
|
1471 |
+
color: #999999;
|
1472 |
+
}
|
1473 |
+
.sdf-admin .form-control::-moz-placeholder {
|
1474 |
+
color: #999999;
|
1475 |
+
}
|
1476 |
+
.sdf-admin .form-control:-ms-input-placeholder {
|
1477 |
+
color: #999999;
|
1478 |
+
}
|
1479 |
+
.sdf-admin .form-control::-webkit-input-placeholder {
|
1480 |
+
color: #999999;
|
1481 |
+
}
|
1482 |
+
.sdf-admin .form-control {
|
1483 |
+
display: block;
|
1484 |
+
width: 100%;
|
1485 |
+
height: 34px;
|
1486 |
+
padding: 6px 12px;
|
1487 |
+
font-size: 14px;
|
1488 |
+
line-height: 1.428571429;
|
1489 |
+
color: #555555;
|
1490 |
+
vertical-align: middle;
|
1491 |
+
background-color: #ffffff;
|
1492 |
+
border: 1px solid #cccccc;
|
1493 |
+
border-radius: 4px;
|
1494 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1495 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1496 |
+
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
1497 |
+
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
1498 |
+
}
|
1499 |
+
.sdf-admin .form-control:focus {
|
1500 |
+
border-color: #ed941e;
|
1501 |
+
outline: 0;
|
1502 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 170, 0, 0.6);
|
1503 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 170, 0, 0.6);
|
1504 |
+
}
|
1505 |
+
.sdf-admin .form-control[disabled],.sdf-admin .form-control[readonly],
|
1506 |
+
.sdf-admin fieldset[disabled] .form-control {
|
1507 |
+
cursor: not-allowed;
|
1508 |
+
background-color: #eeeeee;
|
1509 |
+
}
|
1510 |
+
|
1511 |
+
.sdf-admin textarea.form-control {
|
1512 |
+
height: auto;
|
1513 |
+
}
|
1514 |
+
.sdf-admin .form-group {
|
1515 |
+
margin-bottom: 15px;
|
1516 |
+
}
|
1517 |
+
.sdf-admin .panel-body .form-group:last-child {
|
1518 |
+
margin-bottom: 0;
|
1519 |
+
}
|
1520 |
+
.sdf-admin .radio,.sdf-admin .checkbox {
|
1521 |
+
display: block;
|
1522 |
+
min-height: 20px;
|
1523 |
+
padding-left: 20px;
|
1524 |
+
margin-top: 10px;
|
1525 |
+
margin-bottom: 10px;
|
1526 |
+
vertical-align: middle;
|
1527 |
+
}
|
1528 |
+
.sdf-admin .radio label,.sdf-admin .checkbox label {
|
1529 |
+
display: inline;
|
1530 |
+
margin-bottom: 0;
|
1531 |
+
font-weight: normal;
|
1532 |
+
cursor: pointer;
|
1533 |
+
}
|
1534 |
+
.sdf-admin .radio input[type="radio"],.sdf-admin .radio-inline input[type="radio"],.sdf-admin .checkbox input[type="checkbox"],.sdf-admin .checkbox-inline input[type="checkbox"] {
|
1535 |
+
float: left;
|
1536 |
+
margin-left: -20px;
|
1537 |
+
}
|
1538 |
+
.sdf-admin .radio + .radio,.sdf-admin .checkbox + .checkbox {
|
1539 |
+
margin-top: -5px;
|
1540 |
+
}
|
1541 |
+
.sdf-admin .radio-inline,.sdf-admin .checkbox-inline {
|
1542 |
+
display: inline-block;
|
1543 |
+
padding-left: 20px;
|
1544 |
+
margin-bottom: 0;
|
1545 |
+
font-weight: normal;
|
1546 |
+
vertical-align: middle;
|
1547 |
+
cursor: pointer;
|
1548 |
+
}
|
1549 |
+
.sdf-admin .radio-inline + .radio-inline,.sdf-admin .checkbox-inline + .checkbox-inline {
|
1550 |
+
margin-top: 0;
|
1551 |
+
margin-left: 10px;
|
1552 |
+
}
|
1553 |
+
|
1554 |
+
.sdf-admin nput[type="radio"][disabled],
|
1555 |
+
.sdf-admin input[type="checkbox"][disabled],.sdf-admin .radio[disabled],.sdf-admin .radio-inline[disabled],.sdf-admin .checkbox[disabled],.sdf-admin .checkbox-inline[disabled],
|
1556 |
+
.sdf-admin fieldset[disabled] input[type="radio"],
|
1557 |
+
.sdf-admin fieldset[disabled] input[type="checkbox"],
|
1558 |
+
.sdf-admin fieldset[disabled] .radio,
|
1559 |
+
.sdf-admin fieldset[disabled] .radio-inline,
|
1560 |
+
.sdf-admin fieldset[disabled] .checkbox,
|
1561 |
+
.sdf-admin fieldset[disabled] .checkbox-inline {
|
1562 |
+
cursor: not-allowed;
|
1563 |
+
}
|
1564 |
+
.sdf-admin .input-sm {
|
1565 |
+
height: 30px;
|
1566 |
+
padding: 5px 10px;
|
1567 |
+
font-size: 12px;
|
1568 |
+
line-height: 1.5;
|
1569 |
+
border-radius: 3px;
|
1570 |
+
}
|
1571 |
+
|
1572 |
+
.sdf-admin select.input-sm {
|
1573 |
+
height: 30px;
|
1574 |
+
line-height: 30px;
|
1575 |
+
}
|
1576 |
+
|
1577 |
+
.sdf-admin textarea.input-sm {
|
1578 |
+
height: auto;
|
1579 |
+
}
|
1580 |
+
.sdf-admin .input-lg {
|
1581 |
+
height: 45px;
|
1582 |
+
padding: 10px 16px;
|
1583 |
+
font-size: 18px;
|
1584 |
+
line-height: 1.33;
|
1585 |
+
border-radius: 6px;
|
1586 |
+
}
|
1587 |
+
|
1588 |
+
.sdf-admin select.input-lg {
|
1589 |
+
height: 45px;
|
1590 |
+
line-height: 45px;
|
1591 |
+
}
|
1592 |
+
|
1593 |
+
.sdf-admin textarea.input-lg {
|
1594 |
+
height: auto;
|
1595 |
+
}
|
1596 |
+
.sdf-admin .has-warning .help-block,.sdf-admin .has-warning .control-label {
|
1597 |
+
color: #c09853;
|
1598 |
+
}
|
1599 |
+
.sdf-admin .has-warning .form-control {
|
1600 |
+
border-color: #c09853;
|
1601 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1602 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1603 |
+
}
|
1604 |
+
.sdf-admin .has-warning .form-control:focus {
|
1605 |
+
border-color: #a47e3c;
|
1606 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
|
1607 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
|
1608 |
+
}
|
1609 |
+
.sdf-admin .has-warning .input-group-addon {
|
1610 |
+
color: #c09853;
|
1611 |
+
background-color: #fcf8e3;
|
1612 |
+
border-color: #c09853;
|
1613 |
+
}
|
1614 |
+
.sdf-admin .has-error .help-block,.sdf-admin .has-error .control-label {
|
1615 |
+
color: #b94a48;
|
1616 |
+
}
|
1617 |
+
.sdf-admin .has-error .form-control {
|
1618 |
+
border-color: #b94a48;
|
1619 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1620 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1621 |
+
}
|
1622 |
+
.sdf-admin .has-error .form-control:focus {
|
1623 |
+
border-color: #953b39;
|
1624 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
|
1625 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
|
1626 |
+
}
|
1627 |
+
.sdf-admin .has-error .input-group-addon {
|
1628 |
+
color: #b94a48;
|
1629 |
+
background-color: #f2dede;
|
1630 |
+
border-color: #b94a48;
|
1631 |
+
}
|
1632 |
+
.sdf-admin .has-success .help-block,.sdf-admin .has-success .control-label {
|
1633 |
+
color: #468847;
|
1634 |
+
}
|
1635 |
+
.sdf-admin .has-success .form-control {
|
1636 |
+
border-color: #468847;
|
1637 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1638 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1639 |
+
}
|
1640 |
+
.sdf-admin .has-success .form-control:focus {
|
1641 |
+
border-color: #356635;
|
1642 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
|
1643 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
|
1644 |
+
}
|
1645 |
+
.sdf-admin .has-success .input-group-addon {
|
1646 |
+
color: #468847;
|
1647 |
+
background-color: #dff0d8;
|
1648 |
+
border-color: #468847;
|
1649 |
+
}
|
1650 |
+
.sdf-admin .form-control-static {
|
1651 |
+
padding-top: 7px;
|
1652 |
+
margin-bottom: 0;
|
1653 |
+
}
|
1654 |
+
.sdf-admin .help-block {
|
1655 |
+
display: block;
|
1656 |
+
margin-top: 5px;
|
1657 |
+
margin-bottom: 10px;
|
1658 |
+
color: #737373;
|
1659 |
+
}
|
1660 |
+
|
1661 |
+
@media (min-width: 768px) {
|
1662 |
+
.sdf-admin .form-inline .form-group {
|
1663 |
+
display: inline-block;
|
1664 |
+
margin-bottom: 0;
|
1665 |
+
vertical-align: middle;
|
1666 |
+
}
|
1667 |
+
.sdf-admin .form-inline .form-control {
|
1668 |
+
display: inline-block;
|
1669 |
+
}
|
1670 |
+
.sdf-admin .form-inline .radio,
|
1671 |
+
.sdf-admin .form-inline .checkbox {
|
1672 |
+
display: inline-block;
|
1673 |
+
padding-left: 0;
|
1674 |
+
margin-top: 0;
|
1675 |
+
margin-bottom: 0;
|
1676 |
+
}
|
1677 |
+
.sdf-admin .form-inline .radio input[type="radio"],
|
1678 |
+
.sdf-admin .form-inline .checkbox input[type="checkbox"] {
|
1679 |
+
float: none;
|
1680 |
+
margin-left: 0;
|
1681 |
+
}
|
1682 |
+
}
|
1683 |
+
.sdf-admin .form-horizontal .control-label,.sdf-admin .form-horizontal .radio,.sdf-admin .form-horizontal .checkbox,.sdf-admin .form-horizontal .radio-inline,.sdf-admin .form-horizontal .checkbox-inline {
|
1684 |
+
padding-top: 7px;
|
1685 |
+
margin-top: 0;
|
1686 |
+
margin-bottom: 0;
|
1687 |
+
}
|
1688 |
+
.sdf-admin .form-horizontal .form-group {
|
1689 |
+
margin-right: -15px;
|
1690 |
+
margin-left: -15px;
|
1691 |
+
}
|
1692 |
+
.sdf-admin .form-horizontal .form-group:before,.sdf-admin .form-horizontal .form-group:after {
|
1693 |
+
display: table;
|
1694 |
+
content: " ";
|
1695 |
+
}
|
1696 |
+
.sdf-admin .form-horizontal .form-group:after {
|
1697 |
+
clear: both;
|
1698 |
+
}
|
1699 |
+
.sdf-admin .form-horizontal .form-group:before,.sdf-admin .form-horizontal .form-group:after {
|
1700 |
+
display: table;
|
1701 |
+
content: " ";
|
1702 |
+
}
|
1703 |
+
.sdf-admin .form-horizontal .form-group:after {
|
1704 |
+
clear: both;
|
1705 |
+
}
|
1706 |
+
|
1707 |
+
@media (min-width: 768px) {
|
1708 |
+
.sdf-admin .form-horizontal .control-label {
|
1709 |
+
text-align: right;
|
1710 |
+
}
|
1711 |
+
}
|
1712 |
+
.sdf-admin .btn {
|
1713 |
+
display: inline-block;
|
1714 |
+
padding: 6px 12px;
|
1715 |
+
margin-bottom: 0;
|
1716 |
+
font-size: 14px;
|
1717 |
+
font-weight: normal;
|
1718 |
+
line-height: 1.428571429;
|
1719 |
+
text-align: center;
|
1720 |
+
white-space: nowrap;
|
1721 |
+
vertical-align: middle;
|
1722 |
+
cursor: pointer;
|
1723 |
+
border: 1px solid transparent;
|
1724 |
+
border-radius: 4px;
|
1725 |
+
-webkit-user-select: none;
|
1726 |
+
-moz-user-select: none;
|
1727 |
+
-ms-user-select: none;
|
1728 |
+
-o-user-select: none;
|
1729 |
+
user-select: none;
|
1730 |
+
}
|
1731 |
+
.sdf-admin .btn:focus {
|
1732 |
+
outline: thin dotted #333;
|
1733 |
+
outline: 5px auto -webkit-focus-ring-color;
|
1734 |
+
outline-offset: -2px;
|
1735 |
+
}
|
1736 |
+
.sdf-admin .btn:hover,.sdf-admin .btn:focus {
|
1737 |
+
color: #333333;
|
1738 |
+
text-decoration: none;
|
1739 |
+
}
|
1740 |
+
.sdf-admin .btn:active,.sdf-admin .btn.active {
|
1741 |
+
background-image: none;
|
1742 |
+
outline: 0;
|
1743 |
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
1744 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
1745 |
+
}
|
1746 |
+
.sdf-admin .btn.disabled,.sdf-admin .btn[disabled],
|
1747 |
+
.sdf-admin fieldset[disabled] .btn {
|
1748 |
+
pointer-events: none;
|
1749 |
+
cursor: not-allowed;
|
1750 |
+
opacity: 0.65;
|
1751 |
+
filter: alpha(opacity=65);
|
1752 |
+
-webkit-box-shadow: none;
|
1753 |
+
box-shadow: none;
|
1754 |
+
}
|
1755 |
+
.sdf-admin .btn-default {
|
1756 |
+
color: #333333;
|
1757 |
+
background-color: #ffffff;
|
1758 |
+
border-color: #cccccc;
|
1759 |
+
}
|
1760 |
+
.sdf-admin .btn-default:hover,.sdf-admin .btn-default:focus,.sdf-admin .btn-default:active,.sdf-admin .btn-default.active,.sdf-admin .open .dropdown-toggle.btn-default {
|
1761 |
+
color: #333333;
|
1762 |
+
background-color: #ebebeb;
|
1763 |
+
border-color: #adadad;
|
1764 |
+
}
|
1765 |
+
.sdf-admin .btn-default:active,.sdf-admin .btn-default.active,.sdf-admin .open .dropdown-toggle.btn-default {
|
1766 |
+
background-image: none;
|
1767 |
+
}
|
1768 |
+
.sdf-admin .btn-default.disabled,.sdf-admin .btn-default[disabled],
|
1769 |
+
.sdf-admin fieldset[disabled] .btn-default,.sdf-admin .btn-default.disabled:hover,.sdf-admin .btn-default[disabled]:hover,
|
1770 |
+
.sdf-admin fieldset[disabled] .btn-default:hover,.sdf-admin .btn-default.disabled:focus,.sdf-admin .btn-default[disabled]:focus,
|
1771 |
+
.sdf-admin fieldset[disabled] .btn-default:focus,.sdf-admin .btn-default.disabled:active,.sdf-admin .btn-default[disabled]:active,
|
1772 |
+
.sdf-admin fieldset[disabled] .btn-default:active,.sdf-admin .btn-default.disabled.active,.sdf-admin .btn-default[disabled].active,
|
1773 |
+
.sdf-admin fieldset[disabled] .btn-default.active {
|
1774 |
+
background-color: #ffffff;
|
1775 |
+
border-color: #cccccc;
|
1776 |
+
}
|
1777 |
+
.sdf-admin .btn-primary {
|
1778 |
+
color: #ffffff;
|
1779 |
+
background-color: #428bca;
|
1780 |
+
border-color: #357ebd;
|
1781 |
+
}
|
1782 |
+
.sdf-admin .btn-primary:hover,.sdf-admin .btn-primary:focus,.sdf-admin .btn-primary:active,.sdf-admin .btn-primary.active,.sdf-admin .open .dropdown-toggle.btn-primary {
|
1783 |
+
color: #ffffff;
|
1784 |
+
background-color: #3276b1;
|
1785 |
+
border-color: #285e8e;
|
1786 |
+
}
|
1787 |
+
.sdf-admin .btn-primary:active,.sdf-admin .btn-primary.active,.sdf-admin .open .dropdown-toggle.btn-primary {
|
1788 |
+
background-image: none;
|
1789 |
+
}
|
1790 |
+
.sdf-admin .btn-primary.disabled,.sdf-admin .btn-primary[disabled],
|
1791 |
+
.sdf-admin fieldset[disabled] .btn-primary,.sdf-admin .btn-primary.disabled:hover,.sdf-admin .btn-primary[disabled]:hover,
|
1792 |
+
.sdf-admin fieldset[disabled] .btn-primary:hover,.sdf-admin .btn-primary.disabled:focus,.sdf-admin .btn-primary[disabled]:focus,
|
1793 |
+
.sdf-admin fieldset[disabled] .btn-primary:focus,.sdf-admin .btn-primary.disabled:active,.sdf-admin .btn-primary[disabled]:active,
|
1794 |
+
.sdf-admin fieldset[disabled] .btn-primary:active,.sdf-admin .btn-primary.disabled.active,.sdf-admin .btn-primary[disabled].active,
|
1795 |
+
.sdf-admin fieldset[disabled] .btn-primary.active {
|
1796 |
+
background-color: #428bca;
|
1797 |
+
border-color: #357ebd;
|
1798 |
+
}
|
1799 |
+
.sdf-admin .btn-warning {
|
1800 |
+
color: #ffffff;
|
1801 |
+
background-color: #f0ad4e;
|
1802 |
+
border-color: #eea236;
|
1803 |
+
}
|
1804 |
+
.sdf-admin .btn-warning:hover,.sdf-admin .btn-warning:focus,.sdf-admin .btn-warning:active,.sdf-admin .btn-warning.active,.sdf-admin .open .dropdown-toggle.btn-warning {
|
1805 |
+
color: #ffffff;
|
1806 |
+
background-color: #ed9c28;
|
1807 |
+
border-color: #d58512;
|
1808 |
+
}
|
1809 |
+
.sdf-admin .btn-warning:active,.sdf-admin .btn-warning.active,.sdf-admin .open .dropdown-toggle.btn-warning {
|
1810 |
+
background-image: none;
|
1811 |
+
}
|
1812 |
+
.sdf-admin .btn-warning.disabled,.sdf-admin .btn-warning[disabled],
|
1813 |
+
.sdf-admin fieldset[disabled] .btn-warning,.sdf-admin .btn-warning.disabled:hover,.sdf-admin .btn-warning[disabled]:hover,
|
1814 |
+
.sdf-admin fieldset[disabled] .btn-warning:hover,.sdf-admin .btn-warning.disabled:focus,.sdf-admin .btn-warning[disabled]:focus,
|
1815 |
+
.sdf-admin fieldset[disabled] .btn-warning:focus,.sdf-admin .btn-warning.disabled:active,.sdf-admin .btn-warning[disabled]:active,
|
1816 |
+
.sdf-admin fieldset[disabled] .btn-warning:active,.sdf-admin .btn-warning.disabled.active,.sdf-admin .btn-warning[disabled].active,
|
1817 |
+
.sdf-admin fieldset[disabled] .btn-warning.active {
|
1818 |
+
background-color: #f0ad4e;
|
1819 |
+
border-color: #eea236;
|
1820 |
+
}
|
1821 |
+
.sdf-admin .btn-danger {
|
1822 |
+
color: #ffffff;
|
1823 |
+
background-color: #d9534f;
|
1824 |
+
border-color: #d43f3a;
|
1825 |
+
}
|
1826 |
+
.sdf-admin .btn-danger:hover,.sdf-admin .btn-danger:focus,.sdf-admin .btn-danger:active,.sdf-admin .btn-danger.active,.sdf-admin .open .dropdown-toggle.btn-danger {
|
1827 |
+
color: #ffffff;
|
1828 |
+
background-color: #d2322d;
|
1829 |
+
border-color: #ac2925;
|
1830 |
+
}
|
1831 |
+
.sdf-admin .btn-danger:active,.sdf-admin .btn-danger.active,.sdf-admin .open .dropdown-toggle.btn-danger {
|
1832 |
+
background-image: none;
|
1833 |
+
}
|
1834 |
+
.sdf-admin .btn-danger.disabled,.sdf-admin .btn-danger[disabled],
|
1835 |
+
.sdf-admin fieldset[disabled] .btn-danger,.sdf-admin .btn-danger.disabled:hover,.sdf-admin .btn-danger[disabled]:hover,
|
1836 |
+
.sdf-admin fieldset[disabled] .btn-danger:hover,.sdf-admin .btn-danger.disabled:focus,.sdf-admin .btn-danger[disabled]:focus,
|
1837 |
+
.sdf-admin fieldset[disabled] .btn-danger:focus,.sdf-admin .btn-danger.disabled:active,.sdf-admin .btn-danger[disabled]:active,
|
1838 |
+
.sdf-admin fieldset[disabled] .btn-danger:active,.sdf-admin .btn-danger.disabled.active,.sdf-admin .btn-danger[disabled].active,
|
1839 |
+
.sdf-admin fieldset[disabled] .btn-danger.active {
|
1840 |
+
background-color: #d9534f;
|
1841 |
+
border-color: #d43f3a;
|
1842 |
+
}
|
1843 |
+
.sdf-admin .btn-success {
|
1844 |
+
color: #ffffff;
|
1845 |
+
background-color: #5cb85c;
|
1846 |
+
border-color: #4cae4c;
|
1847 |
+
}
|
1848 |
+
.sdf-admin .btn-success:hover,.sdf-admin .btn-success:focus,.sdf-admin .btn-success:active,.sdf-admin .btn-success.active,.sdf-admin .open .dropdown-toggle.btn-success {
|
1849 |
+
color: #ffffff;
|
1850 |
+
background-color: #47a447;
|
1851 |
+
border-color: #398439;
|
1852 |
+
}
|
1853 |
+
.sdf-admin .btn-success:active,.sdf-admin .btn-success.active,.sdf-admin .open .dropdown-toggle.btn-success {
|
1854 |
+
background-image: none;
|
1855 |
+
}
|
1856 |
+
.sdf-admin .btn-success.disabled,.sdf-admin .btn-success[disabled],
|
1857 |
+
.sdf-admin fieldset[disabled] .btn-success,.sdf-admin .btn-success.disabled:hover,.sdf-admin .btn-success[disabled]:hover,
|
1858 |
+
.sdf-admin fieldset[disabled] .btn-success:hover,.sdf-admin .btn-success.disabled:focus,.sdf-admin .btn-success[disabled]:focus,
|
1859 |
+
.sdf-admin fieldset[disabled] .btn-success:focus,.sdf-admin .btn-success.disabled:active,.sdf-admin .btn-success[disabled]:active,
|
1860 |
+
.sdf-admin fieldset[disabled] .btn-success:active,.sdf-admin .btn-success.disabled.active,.sdf-admin .btn-success[disabled].active,
|
1861 |
+
.sdf-admin fieldset[disabled] .btn-success.active {
|
1862 |
+
background-color: #5cb85c;
|
1863 |
+
border-color: #4cae4c;
|
1864 |
+
}
|
1865 |
+
.sdf-admin .btn-info {
|
1866 |
+
color: #ffffff;
|
1867 |
+
background-color: #5bc0de;
|
1868 |
+
border-color: #46b8da;
|
1869 |
+
}
|
1870 |
+
.sdf-admin .btn-info:hover,.sdf-admin .btn-info:focus,.sdf-admin .btn-info:active,.sdf-admin .btn-info.active,.sdf-admin .open .dropdown-toggle.btn-info {
|
1871 |
+
color: #ffffff;
|
1872 |
+
background-color: #39b3d7;
|
1873 |
+
border-color: #269abc;
|
1874 |
+
}
|
1875 |
+
.sdf-admin .btn-info:active,.sdf-admin .btn-info.active,.sdf-admin .open .dropdown-toggle.btn-info {
|
1876 |
+
background-image: none;
|
1877 |
+
}
|
1878 |
+
.sdf-admin .btn-info.disabled,.sdf-admin .btn-info[disabled],
|
1879 |
+
.sdf-admin fieldset[disabled] .btn-info,.sdf-admin .btn-info.disabled:hover,.sdf-admin .btn-info[disabled]:hover,
|
1880 |
+
.sdf-admin fieldset[disabled] .btn-info:hover,.sdf-admin .btn-info.disabled:focus,.sdf-admin .btn-info[disabled]:focus,
|
1881 |
+
.sdf-admin fieldset[disabled] .btn-info:focus,.sdf-admin .btn-info.disabled:active,.sdf-admin .btn-info[disabled]:active,
|
1882 |
+
.sdf-admin fieldset[disabled] .btn-info:active,.sdf-admin .btn-info.disabled.active,.sdf-admin .btn-info[disabled].active,
|
1883 |
+
.sdf-admin fieldset[disabled] .btn-info.active {
|
1884 |
+
background-color: #5bc0de;
|
1885 |
+
border-color: #46b8da;
|
1886 |
+
}
|
1887 |
+
.sdf-admin .btn-link {
|
1888 |
+
font-weight: normal;
|
1889 |
+
color: #868686;
|
1890 |
+
cursor: pointer;
|
1891 |
+
border-radius: 0;
|
1892 |
+
}
|
1893 |
+
.sdf-admin .btn-link,.sdf-admin .btn-link:active,.sdf-admin .btn-link[disabled],
|
1894 |
+
fieldset[disabled] .btn-link {
|
1895 |
+
background-color: transparent;
|
1896 |
+
-webkit-box-shadow: none;
|
1897 |
+
box-shadow: none;
|
1898 |
+
}
|
1899 |
+
.sdf-admin .btn-link,.sdf-admin .btn-link:hover,.sdf-admin .btn-link:focus,.sdf-admin .btn-link:active {
|
1900 |
+
border-color: transparent;
|
1901 |
+
}
|
1902 |
+
.sdf-admin .btn-link:hover,.sdf-admin .btn-link:focus {
|
1903 |
+
color: #464646;
|
1904 |
+
text-decoration: underline;
|
1905 |
+
background-color: transparent;
|
1906 |
+
}
|
1907 |
+
.sdf-admin .btn-link[disabled]:hover,
|
1908 |
+
.sdf-admin fieldset[disabled] .btn-link:hover,.sdf-admin .btn-link[disabled]:focus,
|
1909 |
+
.sdf-admin fieldset[disabled] .btn-link:focus {
|
1910 |
+
color: #999999;
|
1911 |
+
text-decoration: none;
|
1912 |
+
}
|
1913 |
+
.sdf-admin .btn-lg {
|
1914 |
+
padding: 10px 16px;
|
1915 |
+
font-size: 18px;
|
1916 |
+
line-height: 1.33;
|
1917 |
+
border-radius: 6px;
|
1918 |
+
}
|
1919 |
+
.sdf-admin .btn-sm,.sdf-admin .btn-xs {
|
1920 |
+
padding: 5px 10px;
|
1921 |
+
font-size: 12px;
|
1922 |
+
line-height: 1.5;
|
1923 |
+
border-radius: 3px;
|
1924 |
+
}
|
1925 |
+
.sdf-admin .btn-xs {
|
1926 |
+
padding: 1px 5px;
|
1927 |
+
}
|
1928 |
+
.sdf-admin .btn-block {
|
1929 |
+
display: block;
|
1930 |
+
width: 100%;
|
1931 |
+
padding-right: 0;
|
1932 |
+
padding-left: 0;
|
1933 |
+
}
|
1934 |
+
.sdf-admin .btn-block + .btn-block {
|
1935 |
+
margin-top: 5px;
|
1936 |
+
}
|
1937 |
+
|
1938 |
+
.sdf-admin input[type="submit"].btn-block,
|
1939 |
+
.sdf-admin input[type="reset"].btn-block,
|
1940 |
+
.sdf-admin input[type="button"].btn-block {
|
1941 |
+
width: 100%;
|
1942 |
+
}
|
1943 |
+
.sdf-admin .fade {
|
1944 |
+
opacity: 0;
|
1945 |
+
-webkit-transition: opacity 0.15s linear;
|
1946 |
+
transition: opacity 0.15s linear;
|
1947 |
+
}
|
1948 |
+
.sdf-admin .fade.in {
|
1949 |
+
opacity: 1;
|
1950 |
+
}
|
1951 |
+
.sdf-admin .collapse {
|
1952 |
+
display: none;
|
1953 |
+
}
|
1954 |
+
.sdf-admin .collapse.in {
|
1955 |
+
display: block;
|
1956 |
+
}
|
1957 |
+
.sdf-admin .collapsing {
|
1958 |
+
position: relative;
|
1959 |
+
height: 0;
|
1960 |
+
overflow: hidden;
|
1961 |
+
-webkit-transition: height 0.35s ease;
|
1962 |
+
transition: height 0.35s ease;
|
1963 |
+
}
|
1964 |
+
|
1965 |
+
@font-face {
|
1966 |
+
font-family: 'Glyphicons Halflings';
|
1967 |
+
src: url('../fonts/glyphicons-halflings-regular.eot');
|
1968 |
+
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
|
1969 |
+
}
|
1970 |
+
.sdf-admin .glyphicon {
|
1971 |
+
position: relative;
|
1972 |
+
top: 1px;
|
1973 |
+
display: inline-block;
|
1974 |
+
font-family: 'Glyphicons Halflings';
|
1975 |
+
-webkit-font-smoothing: antialiased;
|
1976 |
+
font-style: normal;
|
1977 |
+
font-weight: normal;
|
1978 |
+
line-height: 1;
|
1979 |
+
}
|
1980 |
+
.sdf-admin .glyphicon-asterisk:before {
|
1981 |
+
content: "\2a";
|
1982 |
+
}
|
1983 |
+
.sdf-admin .glyphicon-plus:before {
|
1984 |
+
content: "\2b";
|
1985 |
+
}
|
1986 |
+
.sdf-admin .glyphicon-euro:before {
|
1987 |
+
content: "\20ac";
|
1988 |
+
}
|
1989 |
+
.sdf-admin .glyphicon-minus:before {
|
1990 |
+
content: "\2212";
|
1991 |
+
}
|
1992 |
+
.sdf-admin .glyphicon-cloud:before {
|
1993 |
+
content: "\2601";
|
1994 |
+
}
|
1995 |
+
.sdf-admin .glyphicon-envelope:before {
|
1996 |
+
content: "\2709";
|
1997 |
+
}
|
1998 |
+
.sdf-admin .glyphicon-pencil:before {
|
1999 |
+
content: "\270f";
|
2000 |
+
}
|
2001 |
+
.sdf-admin .glyphicon-glass:before {
|
2002 |
+
content: "\e001";
|
2003 |
+
}
|
2004 |
+
.sdf-admin .glyphicon-music:before {
|
2005 |
+
content: "\e002";
|
2006 |
+
}
|
2007 |
+
.sdf-admin .glyphicon-search:before {
|
2008 |
+
content: "\e003";
|
2009 |
+
}
|
2010 |
+
.sdf-admin .glyphicon-heart:before {
|
2011 |
+
content: "\e005";
|
2012 |
+
}
|
2013 |
+
.sdf-admin .glyphicon-star:before {
|
2014 |
+
content: "\e006";
|
2015 |
+
}
|
2016 |
+
.sdf-admin .glyphicon-star-empty:before {
|
2017 |
+
content: "\e007";
|
2018 |
+
}
|
2019 |
+
.sdf-admin .glyphicon-user:before {
|
2020 |
+
content: "\e008";
|
2021 |
+
}
|
2022 |
+
.sdf-admin .glyphicon-film:before {
|
2023 |
+
content: "\e009";
|
2024 |
+
}
|
2025 |
+
.sdf-admin .glyphicon-th-large:before {
|
2026 |
+
content: "\e010";
|
2027 |
+
}
|
2028 |
+
.sdf-admin .glyphicon-th:before {
|
2029 |
+
content: "\e011";
|
2030 |
+
}
|
2031 |
+
.sdf-admin .glyphicon-th-list:before {
|
2032 |
+
content: "\e012";
|
2033 |
+
}
|
2034 |
+
.sdf-admin .glyphicon-ok:before {
|
2035 |
+
content: "\e013";
|
2036 |
+
}
|
2037 |
+
.sdf-admin .glyphicon-remove:before {
|
2038 |
+
content: "\e014";
|
2039 |
+
}
|
2040 |
+
.sdf-admin .glyphicon-zoom-in:before {
|
2041 |
+
content: "\e015";
|
2042 |
+
}
|
2043 |
+
.sdf-admin .glyphicon-zoom-out:before {
|
2044 |
+
content: "\e016";
|
2045 |
+
}
|
2046 |
+
.sdf-admin .glyphicon-off:before {
|
2047 |
+
content: "\e017";
|
2048 |
+
}
|
2049 |
+
.sdf-admin .glyphicon-signal:before {
|
2050 |
+
content: "\e018";
|
2051 |
+
}
|
2052 |
+
.sdf-admin .glyphicon-cog:before {
|
2053 |
+
content: "\e019";
|
2054 |
+
}
|
2055 |
+
.sdf-admin .glyphicon-trash:before {
|
2056 |
+
content: "\e020";
|
2057 |
+
}
|
2058 |
+
.sdf-admin .glyphicon-home:before {
|
2059 |
+
content: "\e021";
|
2060 |
+
}
|
2061 |
+
.sdf-admin .glyphicon-file:before {
|
2062 |
+
content: "\e022";
|
2063 |
+
}
|
2064 |
+
.sdf-admin .glyphicon-time:before {
|
2065 |
+
content: "\e023";
|
2066 |
+
}
|
2067 |
+
.sdf-admin .glyphicon-road:before {
|
2068 |
+
content: "\e024";
|
2069 |
+
}
|
2070 |
+
.sdf-admin .glyphicon-download-alt:before {
|
2071 |
+
content: "\e025";
|
2072 |
+
}
|
2073 |
+
.sdf-admin .glyphicon-download:before {
|
2074 |
+
content: "\e026";
|
2075 |
+
}
|
2076 |
+
.sdf-admin .glyphicon-upload:before {
|
2077 |
+
content: "\e027";
|
2078 |
+
}
|
2079 |
+
.sdf-admin .glyphicon-inbox:before {
|
2080 |
+
content: "\e028";
|
2081 |
+
}
|
2082 |
+
.sdf-admin .glyphicon-play-circle:before {
|
2083 |
+
content: "\e029";
|
2084 |
+
}
|
2085 |
+
.sdf-admin .glyphicon-repeat:before {
|
2086 |
+
content: "\e030";
|
2087 |
+
}
|
2088 |
+
.sdf-admin .glyphicon-refresh:before {
|
2089 |
+
content: "\e031";
|
2090 |
+
}
|
2091 |
+
.sdf-admin .glyphicon-list-alt:before {
|
2092 |
+
content: "\e032";
|
2093 |
+
}
|
2094 |
+
.sdf-admin .glyphicon-flag:before {
|
2095 |
+
content: "\e034";
|
2096 |
+
}
|
2097 |
+
.sdf-admin .glyphicon-headphones:before {
|
2098 |
+
content: "\e035";
|
2099 |
+
}
|
2100 |
+
.sdf-admin .glyphicon-volume-off:before {
|
2101 |
+
content: "\e036";
|
2102 |
+
}
|
2103 |
+
.sdf-admin .glyphicon-volume-down:before {
|
2104 |
+
content: "\e037";
|
2105 |
+
}
|
2106 |
+
.sdf-admin .glyphicon-volume-up:before {
|
2107 |
+
content: "\e038";
|
2108 |
+
}
|
2109 |
+
.sdf-admin .glyphicon-qrcode:before {
|
2110 |
+
content: "\e039";
|
2111 |
+
}
|
2112 |
+
.sdf-admin .glyphicon-barcode:before {
|
2113 |
+
content: "\e040";
|
2114 |
+
}
|
2115 |
+
.sdf-admin .glyphicon-tag:before {
|
2116 |
+
content: "\e041";
|
2117 |
+
}
|
2118 |
+
.sdf-admin .glyphicon-tags:before {
|
2119 |
+
content: "\e042";
|
2120 |
+
}
|
2121 |
+
.sdf-admin .glyphicon-book:before {
|
2122 |
+
content: "\e043";
|
2123 |
+
}
|
2124 |
+
.sdf-admin .glyphicon-print:before {
|
2125 |
+
content: "\e045";
|
2126 |
+
}
|
2127 |
+
.sdf-admin .glyphicon-font:before {
|
2128 |
+
content: "\e047";
|
2129 |
+
}
|
2130 |
+
.sdf-admin .glyphicon-bold:before {
|
2131 |
+
content: "\e048";
|
2132 |
+
}
|
2133 |
+
.sdf-admin .glyphicon-italic:before {
|
2134 |
+
content: "\e049";
|
2135 |
+
}
|
2136 |
+
.sdf-admin .glyphicon-text-height:before {
|
2137 |
+
content: "\e050";
|
2138 |
+
}
|
2139 |
+
.sdf-admin .glyphicon-text-width:before {
|
2140 |
+
content: "\e051";
|
2141 |
+
}
|
2142 |
+
.sdf-admin .glyphicon-align-left:before {
|
2143 |
+
content: "\e052";
|
2144 |
+
}
|
2145 |
+
.sdf-admin .glyphicon-align-center:before {
|
2146 |
+
content: "\e053";
|
2147 |
+
}
|
2148 |
+
.sdf-admin .glyphicon-align-right:before {
|
2149 |
+
content: "\e054";
|
2150 |
+
}
|
2151 |
+
.sdf-admin .glyphicon-align-justify:before {
|
2152 |
+
content: "\e055";
|
2153 |
+
}
|
2154 |
+
.sdf-admin .glyphicon-list:before {
|
2155 |
+
content: "\e056";
|
2156 |
+
}
|
2157 |
+
.sdf-admin .glyphicon-indent-left:before {
|
2158 |
+
content: "\e057";
|
2159 |
+
}
|
2160 |
+
.sdf-admin .glyphicon-indent-right:before {
|
2161 |
+
content: "\e058";
|
2162 |
+
}
|
2163 |
+
.sdf-admin .glyphicon-facetime-video:before {
|
2164 |
+
content: "\e059";
|
2165 |
+
}
|
2166 |
+
.sdf-admin .glyphicon-picture:before {
|
2167 |
+
content: "\e060";
|
2168 |
+
}
|
2169 |
+
.sdf-admin .glyphicon-map-marker:before {
|
2170 |
+
content: "\e062";
|
2171 |
+
}
|
2172 |
+
.sdf-admin .glyphicon-adjust:before {
|
2173 |
+
content: "\e063";
|
2174 |
+
}
|
2175 |
+
.sdf-admin .glyphicon-tint:before {
|
2176 |
+
content: "\e064";
|
2177 |
+
}
|
2178 |
+
.sdf-admin .glyphicon-edit:before {
|
2179 |
+
content: "\e065";
|
2180 |
+
}
|
2181 |
+
.sdf-admin .glyphicon-share:before {
|
2182 |
+
content: "\e066";
|
2183 |
+
}
|
2184 |
+
.sdf-admin .glyphicon-check:before {
|
2185 |
+
content: "\e067";
|
2186 |
+
}
|
2187 |
+
.sdf-admin .glyphicon-move:before {
|
2188 |
+
content: "\e068";
|
2189 |
+
}
|
2190 |
+
.sdf-admin .glyphicon-step-backward:before {
|
2191 |
+
content: "\e069";
|
2192 |
+
}
|
2193 |
+
.sdf-admin .glyphicon-fast-backward:before {
|
2194 |
+
content: "\e070";
|
2195 |
+
}
|
2196 |
+
.sdf-admin .glyphicon-backward:before {
|
2197 |
+
content: "\e071";
|
2198 |
+
}
|
2199 |
+
.sdf-admin .glyphicon-play:before {
|
2200 |
+
content: "\e072";
|
2201 |
+
}
|
2202 |
+
.sdf-admin .glyphicon-pause:before {
|
2203 |
+
content: "\e073";
|
2204 |
+
}
|
2205 |
+
.sdf-admin .glyphicon-stop:before {
|
2206 |
+
content: "\e074";
|
2207 |
+
}
|
2208 |
+
.sdf-admin .glyphicon-forward:before {
|
2209 |
+
content: "\e075";
|
2210 |
+
}
|
2211 |
+
.sdf-admin .glyphicon-fast-forward:before {
|
2212 |
+
content: "\e076";
|
2213 |
+
}
|
2214 |
+
.sdf-admin .glyphicon-step-forward:before {
|
2215 |
+
content: "\e077";
|
2216 |
+
}
|
2217 |
+
.sdf-admin .glyphicon-eject:before {
|
2218 |
+
content: "\e078";
|
2219 |
+
}
|
2220 |
+
.sdf-admin .glyphicon-chevron-left:before {
|
2221 |
+
content: "\e079";
|
2222 |
+
}
|
2223 |
+
.sdf-admin .glyphicon-chevron-right:before {
|
2224 |
+
content: "\e080";
|
2225 |
+
}
|
2226 |
+
.sdf-admin .glyphicon-plus-sign:before {
|
2227 |
+
content: "\e081";
|
2228 |
+
}
|
2229 |
+
.sdf-admin .glyphicon-minus-sign:before {
|
2230 |
+
content: "\e082";
|
2231 |
+
}
|
2232 |
+
.sdf-admin .glyphicon-remove-sign:before {
|
2233 |
+
content: "\e083";
|
2234 |
+
}
|
2235 |
+
.sdf-admin .glyphicon-ok-sign:before {
|
2236 |
+
content: "\e084";
|
2237 |
+
}
|
2238 |
+
.sdf-admin .glyphicon-question-sign:before {
|
2239 |
+
content: "\e085";
|
2240 |
+
}
|
2241 |
+
.sdf-admin .glyphicon-info-sign:before {
|
2242 |
+
content: "\e086";
|
2243 |
+
}
|
2244 |
+
.sdf-admin .glyphicon-screenshot:before {
|
2245 |
+
content: "\e087";
|
2246 |
+
}
|
2247 |
+
.sdf-admin .glyphicon-remove-circle:before {
|
2248 |
+
content: "\e088";
|
2249 |
+
}
|
2250 |
+
.sdf-admin .glyphicon-ok-circle:before {
|
2251 |
+
content: "\e089";
|
2252 |
+
}
|
2253 |
+
.sdf-admin .glyphicon-ban-circle:before {
|
2254 |
+
content: "\e090";
|
2255 |
+
}
|
2256 |
+
.sdf-admin .glyphicon-arrow-left:before {
|
2257 |
+
content: "\e091";
|
2258 |
+
}
|
2259 |
+
.sdf-admin .glyphicon-arrow-right:before {
|
2260 |
+
content: "\e092";
|
2261 |
+
}
|
2262 |
+
.sdf-admin .glyphicon-arrow-up:before {
|
2263 |
+
content: "\e093";
|
2264 |
+
}
|
2265 |
+
.sdf-admin .glyphicon-arrow-down:before {
|
2266 |
+
content: "\e094";
|
2267 |
+
}
|
2268 |
+
.sdf-admin .glyphicon-share-alt:before {
|
2269 |
+
content: "\e095";
|
2270 |
+
}
|
2271 |
+
.sdf-admin .glyphicon-resize-full:before {
|
2272 |
+
content: "\e096";
|
2273 |
+
}
|
2274 |
+
.sdf-admin .glyphicon-resize-small:before {
|
2275 |
+
content: "\e097";
|
2276 |
+
}
|
2277 |
+
.sdf-admin .glyphicon-exclamation-sign:before {
|
2278 |
+
content: "\e101";
|
2279 |
+
}
|
2280 |
+
.sdf-admin .glyphicon-gift:before {
|
2281 |
+
content: "\e102";
|
2282 |
+
}
|
2283 |
+
.sdf-admin .glyphicon-leaf:before {
|
2284 |
+
content: "\e103";
|
2285 |
+
}
|
2286 |
+
.sdf-admin .glyphicon-eye-open:before {
|
2287 |
+
content: "\e105";
|
2288 |
+
}
|
2289 |
+
.sdf-admin .glyphicon-eye-close:before {
|
2290 |
+
content: "\e106";
|
2291 |
+
}
|
2292 |
+
.sdf-admin .glyphicon-warning-sign:before {
|
2293 |
+
content: "\e107";
|
2294 |
+
}
|
2295 |
+
.sdf-admin .glyphicon-plane:before {
|
2296 |
+
content: "\e108";
|
2297 |
+
}
|
2298 |
+
.sdf-admin .glyphicon-random:before {
|
2299 |
+
content: "\e110";
|
2300 |
+
}
|
2301 |
+
.sdf-admin .glyphicon-comment:before {
|
2302 |
+
content: "\e111";
|
2303 |
+
}
|
2304 |
+
.sdf-admin .glyphicon-magnet:before {
|
2305 |
+
content: "\e112";
|
2306 |
+
}
|
2307 |
+
.sdf-admin .glyphicon-chevron-up:before {
|
2308 |
+
content: "\e113";
|
2309 |
+
}
|
2310 |
+
.sdf-admin .glyphicon-chevron-down:before {
|
2311 |
+
content: "\e114";
|
2312 |
+
}
|
2313 |
+
.sdf-admin .glyphicon-retweet:before {
|
2314 |
+
content: "\e115";
|
2315 |
+
}
|
2316 |
+
.sdf-admin .glyphicon-shopping-cart:before {
|
2317 |
+
content: "\e116";
|
2318 |
+
}
|
2319 |
+
.sdf-admin .glyphicon-folder-close:before {
|
2320 |
+
content: "\e117";
|
2321 |
+
}
|
2322 |
+
.sdf-admin .glyphicon-folder-open:before {
|
2323 |
+
content: "\e118";
|
2324 |
+
}
|
2325 |
+
.sdf-admin .glyphicon-resize-vertical:before {
|
2326 |
+
content: "\e119";
|
2327 |
+
}
|
2328 |
+
.sdf-admin .glyphicon-resize-horizontal:before {
|
2329 |
+
content: "\e120";
|
2330 |
+
}
|
2331 |
+
.sdf-admin .glyphicon-hdd:before {
|
2332 |
+
content: "\e121";
|
2333 |
+
}
|
2334 |
+
.sdf-admin .glyphicon-bullhorn:before {
|
2335 |
+
content: "\e122";
|
2336 |
+
}
|
2337 |
+
.sdf-admin .glyphicon-certificate:before {
|
2338 |
+
content: "\e124";
|
2339 |
+
}
|
2340 |
+
.sdf-admin .glyphicon-thumbs-up:before {
|
2341 |
+
content: "\e125";
|
2342 |
+
}
|
2343 |
+
.sdf-admin .glyphicon-thumbs-down:before {
|
2344 |
+
content: "\e126";
|
2345 |
+
}
|
2346 |
+
.sdf-admin .glyphicon-hand-right:before {
|
2347 |
+
content: "\e127";
|
2348 |
+
}
|
2349 |
+
.sdf-admin .glyphicon-hand-left:before {
|
2350 |
+
content: "\e128";
|
2351 |
+
}
|
2352 |
+
.sdf-admin .glyphicon-hand-up:before {
|
2353 |
+
content: "\e129";
|
2354 |
+
}
|
2355 |
+
.sdf-admin .glyphicon-hand-down:before {
|
2356 |
+
content: "\e130";
|
2357 |
+
}
|
2358 |
+
.sdf-admin .glyphicon-circle-arrow-right:before {
|
2359 |
+
content: "\e131";
|
2360 |
+
}
|
2361 |
+
.sdf-admin .glyphicon-circle-arrow-left:before {
|
2362 |
+
content: "\e132";
|
2363 |
+
}
|
2364 |
+
.sdf-admin .glyphicon-circle-arrow-up:before {
|
2365 |
+
content: "\e133";
|
2366 |
+
}
|
2367 |
+
.sdf-admin .glyphicon-circle-arrow-down:before {
|
2368 |
+
content: "\e134";
|
2369 |
+
}
|
2370 |
+
.sdf-admin .glyphicon-globe:before {
|
2371 |
+
content: "\e135";
|
2372 |
+
}
|
2373 |
+
.sdf-admin .glyphicon-tasks:before {
|
2374 |
+
content: "\e137";
|
2375 |
+
}
|
2376 |
+
.sdf-admin .glyphicon-filter:before {
|
2377 |
+
content: "\e138";
|
2378 |
+
}
|
2379 |
+
.sdf-admin .glyphicon-fullscreen:before {
|
2380 |
+
content: "\e140";
|
2381 |
+
}
|
2382 |
+
.sdf-admin .glyphicon-dashboard:before {
|
2383 |
+
content: "\e141";
|
2384 |
+
}
|
2385 |
+
.sdf-admin .glyphicon-heart-empty:before {
|
2386 |
+
content: "\e143";
|
2387 |
+
}
|
2388 |
+
.sdf-admin .glyphicon-link:before {
|
2389 |
+
content: "\e144";
|
2390 |
+
}
|
2391 |
+
.sdf-admin .glyphicon-phone:before {
|
2392 |
+
content: "\e145";
|
2393 |
+
}
|
2394 |
+
.sdf-admin .glyphicon-usd:before {
|
2395 |
+
content: "\e148";
|
2396 |
+
}
|
2397 |
+
.sdf-admin .glyphicon-gbp:before {
|
2398 |
+
content: "\e149";
|
2399 |
+
}
|
2400 |
+
.sdf-admin .glyphicon-sort:before {
|
2401 |
+
content: "\e150";
|
2402 |
+
}
|
2403 |
+
.sdf-admin .glyphicon-sort-by-alphabet:before {
|
2404 |
+
content: "\e151";
|
2405 |
+
}
|
2406 |
+
.sdf-admin .glyphicon-sort-by-alphabet-alt:before {
|
2407 |
+
content: "\e152";
|
2408 |
+
}
|
2409 |
+
.sdf-admin .glyphicon-sort-by-order:before {
|
2410 |
+
content: "\e153";
|
2411 |
+
}
|
2412 |
+
.sdf-admin .glyphicon-sort-by-order-alt:before {
|
2413 |
+
content: "\e154";
|
2414 |
+
}
|
2415 |
+
.sdf-admin .glyphicon-sort-by-attributes:before {
|
2416 |
+
content: "\e155";
|
2417 |
+
}
|
2418 |
+
.sdf-admin .glyphicon-sort-by-attributes-alt:before {
|
2419 |
+
content: "\e156";
|
2420 |
+
}
|
2421 |
+
.sdf-admin .glyphicon-unchecked:before {
|
2422 |
+
content: "\e157";
|
2423 |
+
}
|
2424 |
+
.sdf-admin .glyphicon-expand:before {
|
2425 |
+
content: "\e158";
|
2426 |
+
}
|
2427 |
+
.sdf-admin .glyphicon-collapse-down:before {
|
2428 |
+
content: "\e159";
|
2429 |
+
}
|
2430 |
+
.sdf-admin .glyphicon-collapse-up:before {
|
2431 |
+
content: "\e160";
|
2432 |
+
}
|
2433 |
+
.sdf-admin .glyphicon-log-in:before {
|
2434 |
+
content: "\e161";
|
2435 |
+
}
|
2436 |
+
.sdf-admin .glyphicon-flash:before {
|
2437 |
+
content: "\e162";
|
2438 |
+
}
|
2439 |
+
.sdf-admin .glyphicon-log-out:before {
|
2440 |
+
content: "\e163";
|
2441 |
+
}
|
2442 |
+
.sdf-admin .glyphicon-new-window:before {
|
2443 |
+
content: "\e164";
|
2444 |
+
}
|
2445 |
+
.sdf-admin .glyphicon-record:before {
|
2446 |
+
content: "\e165";
|
2447 |
+
}
|
2448 |
+
.sdf-admin .glyphicon-save:before {
|
2449 |
+
content: "\e166";
|
2450 |
+
}
|
2451 |
+
.sdf-admin .glyphicon-open:before {
|
2452 |
+
content: "\e167";
|
2453 |
+
}
|
2454 |
+
.sdf-admin .glyphicon-saved:before {
|
2455 |
+
content: "\e168";
|
2456 |
+
}
|
2457 |
+
.sdf-admin .glyphicon-import:before {
|
2458 |
+
content: "\e169";
|
2459 |
+
}
|
2460 |
+
.sdf-admin .glyphicon-export:before {
|
2461 |
+
content: "\e170";
|
2462 |
+
}
|
2463 |
+
.sdf-admin .glyphicon-send:before {
|
2464 |
+
content: "\e171";
|
2465 |
+
}
|
2466 |
+
.sdf-admin .glyphicon-floppy-disk:before {
|
2467 |
+
content: "\e172";
|
2468 |
+
}
|
2469 |
+
.sdf-admin .glyphicon-floppy-saved:before {
|
2470 |
+
content: "\e173";
|
2471 |
+
}
|
2472 |
+
.sdf-admin .glyphicon-floppy-remove:before {
|
2473 |
+
content: "\e174";
|
2474 |
+
}
|
2475 |
+
.sdf-admin .glyphicon-floppy-save:before {
|
2476 |
+
content: "\e175";
|
2477 |
+
}
|
2478 |
+
.sdf-admin .glyphicon-floppy-open:before {
|
2479 |
+
content: "\e176";
|
2480 |
+
}
|
2481 |
+
.sdf-admin .glyphicon-credit-card:before {
|
2482 |
+
content: "\e177";
|
2483 |
+
}
|
2484 |
+
.sdf-admin .glyphicon-transfer:before {
|
2485 |
+
content: "\e178";
|
2486 |
+
}
|
2487 |
+
.sdf-admin .glyphicon-cutlery:before {
|
2488 |
+
content: "\e179";
|
2489 |
+
}
|
2490 |
+
.sdf-admin .glyphicon-header:before {
|
2491 |
+
content: "\e180";
|
2492 |
+
}
|
2493 |
+
.sdf-admin .glyphicon-compressed:before {
|
2494 |
+
content: "\e181";
|
2495 |
+
}
|
2496 |
+
.sdf-admin .glyphicon-earphone:before {
|
2497 |
+
content: "\e182";
|
2498 |
+
}
|
2499 |
+
.sdf-admin .glyphicon-phone-alt:before {
|
2500 |
+
content: "\e183";
|
2501 |
+
}
|
2502 |
+
.sdf-admin .glyphicon-tower:before {
|
2503 |
+
content: "\e184";
|
2504 |
+
}
|
2505 |
+
.sdf-admin .glyphicon-stats:before {
|
2506 |
+
content: "\e185";
|
2507 |
+
}
|
2508 |
+
.sdf-admin .glyphicon-sd-video:before {
|
2509 |
+
content: "\e186";
|
2510 |
+
}
|
2511 |
+
.sdf-admin .glyphicon-hd-video:before {
|
2512 |
+
content: "\e187";
|
2513 |
+
}
|
2514 |
+
.sdf-admin .glyphicon-subtitles:before {
|
2515 |
+
content: "\e188";
|
2516 |
+
}
|
2517 |
+
.sdf-admin .glyphicon-sound-stereo:before {
|
2518 |
+
content: "\e189";
|
2519 |
+
}
|
2520 |
+
.sdf-admin .glyphicon-sound-dolby:before {
|
2521 |
+
content: "\e190";
|
2522 |
+
}
|
2523 |
+
.sdf-admin .glyphicon-sound-5-1:before {
|
2524 |
+
content: "\e191";
|
2525 |
+
}
|
2526 |
+
.sdf-admin .glyphicon-sound-6-1:before {
|
2527 |
+
content: "\e192";
|
2528 |
+
}
|
2529 |
+
.sdf-admin .glyphicon-sound-7-1:before {
|
2530 |
+
content: "\e193";
|
2531 |
+
}
|
2532 |
+
.sdf-admin .glyphicon-copyright-mark:before {
|
2533 |
+
content: "\e194";
|
2534 |
+
}
|
2535 |
+
.sdf-admin .glyphicon-registration-mark:before {
|
2536 |
+
content: "\e195";
|
2537 |
+
}
|
2538 |
+
.sdf-admin .glyphicon-cloud-download:before {
|
2539 |
+
content: "\e197";
|
2540 |
+
}
|
2541 |
+
.sdf-admin .glyphicon-cloud-upload:before {
|
2542 |
+
content: "\e198";
|
2543 |
+
}
|
2544 |
+
.sdf-admin .glyphicon-tree-conifer:before {
|
2545 |
+
content: "\e199";
|
2546 |
+
}
|
2547 |
+
.sdf-admin .glyphicon-tree-deciduous:before {
|
2548 |
+
content: "\e200";
|
2549 |
+
}
|
2550 |
+
.sdf-admin .glyphicon-briefcase:before {
|
2551 |
+
content: "\1f4bc";
|
2552 |
+
}
|
2553 |
+
.sdf-admin .glyphicon-calendar:before {
|
2554 |
+
content: "\1f4c5";
|
2555 |
+
}
|
2556 |
+
.sdf-admin .glyphicon-pushpin:before {
|
2557 |
+
content: "\1f4cc";
|
2558 |
+
}
|
2559 |
+
.sdf-admin .glyphicon-paperclip:before {
|
2560 |
+
content: "\1f4ce";
|
2561 |
+
}
|
2562 |
+
.sdf-admin .glyphicon-camera:before {
|
2563 |
+
content: "\1f4f7";
|
2564 |
+
}
|
2565 |
+
.sdf-admin .glyphicon-lock:before {
|
2566 |
+
content: "\1f512";
|
2567 |
+
}
|
2568 |
+
.sdf-admin .glyphicon-bell:before {
|
2569 |
+
content: "\1f514";
|
2570 |
+
}
|
2571 |
+
.sdf-admin .glyphicon-bookmark:before {
|
2572 |
+
content: "\1f516";
|
2573 |
+
}
|
2574 |
+
.sdf-admin .glyphicon-fire:before {
|
2575 |
+
content: "\1f525";
|
2576 |
+
}
|
2577 |
+
.sdf-admin .glyphicon-wrench:before {
|
2578 |
+
content: "\1f527";
|
2579 |
+
}
|
2580 |
+
.sdf-admin .caret {
|
2581 |
+
display: inline-block;
|
2582 |
+
width: 0;
|
2583 |
+
height: 0;
|
2584 |
+
margin-left: 2px;
|
2585 |
+
vertical-align: middle;
|
2586 |
+
border-top: 4px solid #000000;
|
2587 |
+
border-right: 4px solid transparent;
|
2588 |
+
border-bottom: 0 dotted;
|
2589 |
+
border-left: 4px solid transparent;
|
2590 |
+
content: "";
|
2591 |
+
}
|
2592 |
+
.sdf-admin .dropdown {
|
2593 |
+
position: relative;
|
2594 |
+
}
|
2595 |
+
.sdf-admin .dropdown-toggle:focus {
|
2596 |
+
outline: 0;
|
2597 |
+
}
|
2598 |
+
.sdf-admin .dropdown-menu {
|
2599 |
+
position: absolute;
|
2600 |
+
top: 100%;
|
2601 |
+
left: 0;
|
2602 |
+
z-index: 1000;
|
2603 |
+
display: none;
|
2604 |
+
float: left;
|
2605 |
+
min-width: 160px;
|
2606 |
+
padding: 5px 0;
|
2607 |
+
margin: 2px 0 0;
|
2608 |
+
font-size: 14px;
|
2609 |
+
list-style: none;
|
2610 |
+
background-color: #ffffff;
|
2611 |
+
border: 1px solid #cccccc;
|
2612 |
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
2613 |
+
border-radius: 4px;
|
2614 |
+
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
2615 |
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
2616 |
+
background-clip: padding-box;
|
2617 |
+
}
|
2618 |
+
.sdf-admin .dropdown-menu.pull-right {
|
2619 |
+
right: 0;
|
2620 |
+
left: auto;
|
2621 |
+
}
|
2622 |
+
.sdf-admin .dropdown-menu .divider {
|
2623 |
+
height: 1px;
|
2624 |
+
margin: 9px 0;
|
2625 |
+
overflow: hidden;
|
2626 |
+
background-color: #e5e5e5;
|
2627 |
+
}
|
2628 |
+
.sdf-admin .dropdown-menu > li > a {
|
2629 |
+
display: block;
|
2630 |
+
padding: 3px 20px;
|
2631 |
+
clear: both;
|
2632 |
+
font-weight: normal;
|
2633 |
+
line-height: 1.428571429;
|
2634 |
+
color: #333333;
|
2635 |
+
white-space: nowrap;
|
2636 |
+
}
|
2637 |
+
.sdf-admin .dropdown-menu > li > a:hover,.sdf-admin .dropdown-menu > li > a:focus {
|
2638 |
+
color: #ffffff;
|
2639 |
+
text-decoration: none;
|
2640 |
+
background-color: #ed941e;
|
2641 |
+
}
|
2642 |
+
.sdf-admin .dropdown-menu > .active > a,.sdf-admin .dropdown-menu > .active > a:hover,.sdf-admin .dropdown-menu > .active > a:focus {
|
2643 |
+
color: #ffffff;
|
2644 |
+
text-decoration: none;
|
2645 |
+
background-color: #ed941e;
|
2646 |
+
outline: 0;
|
2647 |
+
}
|
2648 |
+
.sdf-admin .dropdown-menu > .disabled > a,.sdf-admin .dropdown-menu > .disabled > a:hover,.sdf-admin .dropdown-menu > .disabled > a:focus {
|
2649 |
+
color: #999999;
|
2650 |
+
}
|
2651 |
+
.sdf-admin .dropdown-menu > .disabled > a:hover,.sdf-admin .dropdown-menu > .disabled > a:focus {
|
2652 |
+
text-decoration: none;
|
2653 |
+
cursor: not-allowed;
|
2654 |
+
background-color: transparent;
|
2655 |
+
background-image: none;
|
2656 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
2657 |
+
}
|
2658 |
+
.sdf-admin .open > .dropdown-menu {
|
2659 |
+
display: block;
|
2660 |
+
}
|
2661 |
+
.sdf-admin .open > a {
|
2662 |
+
outline: 0;
|
2663 |
+
}
|
2664 |
+
.sdf-admin .dropdown-header {
|
2665 |
+
display: block;
|
2666 |
+
padding: 3px 20px;
|
2667 |
+
font-size: 12px;
|
2668 |
+
line-height: 1.428571429;
|
2669 |
+
color: #999999;
|
2670 |
+
}
|
2671 |
+
.sdf-admin .dropdown-backdrop {
|
2672 |
+
position: fixed;
|
2673 |
+
top: 0;
|
2674 |
+
right: 0;
|
2675 |
+
bottom: 0;
|
2676 |
+
left: 0;
|
2677 |
+
z-index: 990;
|
2678 |
+
}
|
2679 |
+
.sdf-admin .pull-right > .dropdown-menu {
|
2680 |
+
right: 0;
|
2681 |
+
left: auto;
|
2682 |
+
}
|
2683 |
+
.sdf-admin .dropup .caret,.sdf-admin .navbar-fixed-bottom .dropdown .caret {
|
2684 |
+
border-top: 0 dotted;
|
2685 |
+
border-bottom: 4px solid #000000;
|
2686 |
+
content: "";
|
2687 |
+
}
|
2688 |
+
.sdf-admin .dropup .dropdown-menu,.sdf-admin .navbar-fixed-bottom .dropdown .dropdown-menu {
|
2689 |
+
top: auto;
|
2690 |
+
bottom: 100%;
|
2691 |
+
margin-bottom: 1px;
|
2692 |
+
}
|
2693 |
+
|
2694 |
+
@media (min-width: 768px) {
|
2695 |
+
.sdf-admin .navbar-right .dropdown-menu {
|
2696 |
+
right: 0;
|
2697 |
+
left: auto;
|
2698 |
+
}
|
2699 |
+
}
|
2700 |
+
.sdf-admin .btn-default .caret {
|
2701 |
+
border-top-color: #333333;
|
2702 |
+
}
|
2703 |
+
.sdf-admin .btn-primary .caret,.sdf-admin .btn-success .caret,.sdf-admin .btn-warning .caret,.sdf-admin .btn-danger .caret,.sdf-admin .btn-info .caret {
|
2704 |
+
border-top-color: #fff;
|
2705 |
+
}
|
2706 |
+
.sdf-admin .dropup .btn-default .caret {
|
2707 |
+
border-bottom-color: #333333;
|
2708 |
+
}
|
2709 |
+
.sdf-admin .dropup .btn-primary .caret,.sdf-admin .dropup .btn-success .caret,.sdf-admin .dropup .btn-warning .caret,.sdf-admin .dropup .btn-danger .caret,.sdf-admin .dropup .btn-info .caret {
|
2710 |
+
border-bottom-color: #fff;
|
2711 |
+
}
|
2712 |
+
.sdf-admin .btn-group,.sdf-admin .btn-group-vertical {
|
2713 |
+
position: relative;
|
2714 |
+
display: inline-block;
|
2715 |
+
vertical-align: middle;
|
2716 |
+
}
|
2717 |
+
.sdf-admin .btn-group > .btn,.sdf-admin .btn-group-vertical > .btn {
|
2718 |
+
position: relative;
|
2719 |
+
float: left;
|
2720 |
+
}
|
2721 |
+
.sdf-admin .btn-group > .btn:hover,.sdf-admin .btn-group-vertical > .btn:hover,.sdf-admin .btn-group > .btn:focus,.sdf-admin .btn-group-vertical > .btn:focus,.sdf-admin .btn-group > .btn:active,.sdf-admin .btn-group-vertical > .btn:active,.sdf-admin .btn-group > .btn.active,.sdf-admin .btn-group-vertical > .btn.active {
|
2722 |
+
z-index: 2;
|
2723 |
+
}
|
2724 |
+
.sdf-admin .btn-group > .btn:focus,.sdf-admin .btn-group-vertical > .btn:focus {
|
2725 |
+
outline: none;
|
2726 |
+
}
|
2727 |
+
.sdf-admin .btn-group .btn + .btn,.sdf-admin .btn-group .btn + .btn-group,.sdf-admin .btn-group .btn-group + .btn,.sdf-admin .btn-group .btn-group + .btn-group {
|
2728 |
+
margin-left: -1px;
|
2729 |
+
}
|
2730 |
+
.sdf-admin .btn-toolbar:before,.sdf-admin .btn-toolbar:after {
|
2731 |
+
display: table;
|
2732 |
+
content: " ";
|
2733 |
+
}
|
2734 |
+
.sdf-admin .btn-toolbar:after {
|
2735 |
+
clear: both;
|
2736 |
+
}
|
2737 |
+
.sdf-admin .btn-toolbar:before,.sdf-admin .btn-toolbar:after {
|
2738 |
+
display: table;
|
2739 |
+
content: " ";
|
2740 |
+
}
|
2741 |
+
.sdf-admin .btn-toolbar:after {
|
2742 |
+
clear: both;
|
2743 |
+
}
|
2744 |
+
.sdf-admin .btn-toolbar .btn-group {
|
2745 |
+
float: left;
|
2746 |
+
}
|
2747 |
+
.sdf-admin .btn-toolbar > .btn + .btn,.sdf-admin .btn-toolbar > .btn-group + .btn,.sdf-admin .btn-toolbar > .btn + .btn-group,.sdf-admin .btn-toolbar > .btn-group + .btn-group {
|
2748 |
+
margin-left: 5px;
|
2749 |
+
}
|
2750 |
+
.sdf-admin .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
2751 |
+
border-radius: 0;
|
2752 |
+
}
|
2753 |
+
.sdf-admin .btn-group > .btn:first-child {
|
2754 |
+
margin-left: 0;
|
2755 |
+
}
|
2756 |
+
.sdf-admin .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
2757 |
+
border-top-right-radius: 0;
|
2758 |
+
border-bottom-right-radius: 0;
|
2759 |
+
}
|
2760 |
+
.sdf-admin .btn-group > .btn:last-child:not(:first-child),.sdf-admin .btn-group > .dropdown-toggle:not(:first-child) {
|
2761 |
+
border-bottom-left-radius: 0;
|
2762 |
+
border-top-left-radius: 0;
|
2763 |
+
}
|
2764 |
+
.sdf-admin .btn-group > .btn-group {
|
2765 |
+
float: left;
|
2766 |
+
}
|
2767 |
+
.sdf-admin .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
2768 |
+
border-radius: 0;
|
2769 |
+
}
|
2770 |
+
.sdf-admin .btn-group > .btn-group:first-child > .btn:last-child,.sdf-admin .btn-group > .btn-group:first-child > .dropdown-toggle {
|
2771 |
+
border-top-right-radius: 0;
|
2772 |
+
border-bottom-right-radius: 0;
|
2773 |
+
}
|
2774 |
+
.sdf-admin .btn-group > .btn-group:last-child > .btn:first-child {
|
2775 |
+
border-bottom-left-radius: 0;
|
2776 |
+
border-top-left-radius: 0;
|
2777 |
+
}
|
2778 |
+
.sdf-admin .btn-group .dropdown-toggle:active,.sdf-admin .btn-group.open .dropdown-toggle {
|
2779 |
+
outline: 0;
|
2780 |
+
}
|
2781 |
+
.sdf-admin .btn-group-xs > .btn {
|
2782 |
+
padding: 5px 10px;
|
2783 |
+
padding: 1px 5px;
|
2784 |
+
font-size: 12px;
|
2785 |
+
line-height: 1.5;
|
2786 |
+
border-radius: 3px;
|
2787 |
+
}
|
2788 |
+
.sdf-admin .btn-group-sm > .btn {
|
2789 |
+
padding: 5px 10px;
|
2790 |
+
font-size: 12px;
|
2791 |
+
line-height: 1.5;
|
2792 |
+
border-radius: 3px;
|
2793 |
+
}
|
2794 |
+
.sdf-admin .btn-group-lg > .btn {
|
2795 |
+
padding: 10px 16px;
|
2796 |
+
font-size: 18px;
|
2797 |
+
line-height: 1.33;
|
2798 |
+
border-radius: 6px;
|
2799 |
+
}
|
2800 |
+
.sdf-admin .btn-group > .btn + .dropdown-toggle {
|
2801 |
+
padding-right: 8px;
|
2802 |
+
padding-left: 8px;
|
2803 |
+
}
|
2804 |
+
.sdf-admin .btn-group > .btn-lg + .dropdown-toggle {
|
2805 |
+
padding-right: 12px;
|
2806 |
+
padding-left: 12px;
|
2807 |
+
}
|
2808 |
+
.sdf-admin .btn-group.open .dropdown-toggle {
|
2809 |
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
2810 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
2811 |
+
}
|
2812 |
+
.sdf-admin .btn .caret {
|
2813 |
+
margin-left: 0;
|
2814 |
+
}
|
2815 |
+
.sdf-admin .btn-lg .caret {
|
2816 |
+
border-width: 5px 5px 0;
|
2817 |
+
border-bottom-width: 0;
|
2818 |
+
}
|
2819 |
+
.sdf-admin .dropup .btn-lg .caret {
|
2820 |
+
border-width: 0 5px 5px;
|
2821 |
+
}
|
2822 |
+
.sdf-admin .btn-group-vertical > .btn,.sdf-admin .btn-group-vertical > .btn-group {
|
2823 |
+
display: block;
|
2824 |
+
float: none;
|
2825 |
+
width: 100%;
|
2826 |
+
max-width: 100%;
|
2827 |
+
}
|
2828 |
+
.sdf-admin .btn-group-vertical > .btn-group:before,.sdf-admin .btn-group-vertical > .btn-group:after {
|
2829 |
+
display: table;
|
2830 |
+
content: " ";
|
2831 |
+
}
|
2832 |
+
.sdf-admin .btn-group-vertical > .btn-group:after {
|
2833 |
+
clear: both;
|
2834 |
+
}
|
2835 |
+
.sdf-admin .btn-group-vertical > .btn-group:before,.sdf-admin .btn-group-vertical > .btn-group:after {
|
2836 |
+
display: table;
|
2837 |
+
content: " ";
|
2838 |
+
}
|
2839 |
+
.sdf-admin .btn-group-vertical > .btn-group:after {
|
2840 |
+
clear: both;
|
2841 |
+
}
|
2842 |
+
.sdf-admin .btn-group-vertical > .btn-group > .btn {
|
2843 |
+
float: none;
|
2844 |
+
}
|
2845 |
+
.sdf-admin .btn-group-vertical > .btn + .btn,.sdf-admin .btn-group-vertical > .btn + .btn-group,.sdf-admin .btn-group-vertical > .btn-group + .btn,.sdf-admin .btn-group-vertical > .btn-group + .btn-group {
|
2846 |
+
margin-top: -1px;
|
2847 |
+
margin-left: 0;
|
2848 |
+
}
|
2849 |
+
.sdf-admin .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
2850 |
+
border-radius: 0;
|
2851 |
+
}
|
2852 |
+
.sdf-admin .btn-group-vertical > .btn:first-child:not(:last-child) {
|
2853 |
+
border-top-right-radius: 4px;
|
2854 |
+
border-bottom-right-radius: 0;
|
2855 |
+
border-bottom-left-radius: 0;
|
2856 |
+
}
|
2857 |
+
.sdf-admin .btn-group-vertical > .btn:last-child:not(:first-child) {
|
2858 |
+
border-top-right-radius: 0;
|
2859 |
+
border-bottom-left-radius: 4px;
|
2860 |
+
border-top-left-radius: 0;
|
2861 |
+
}
|
2862 |
+
.sdf-admin .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
2863 |
+
border-radius: 0;
|
2864 |
+
}
|
2865 |
+
.sdf-admin .btn-group-vertical > .btn-group:first-child > .btn:last-child,.sdf-admin .btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
|
2866 |
+
border-bottom-right-radius: 0;
|
2867 |
+
border-bottom-left-radius: 0;
|
2868 |
+
}
|
2869 |
+
.sdf-admin .btn-group-vertical > .btn-group:last-child > .btn:first-child {
|
2870 |
+
border-top-right-radius: 0;
|
2871 |
+
border-top-left-radius: 0;
|
2872 |
+
}
|
2873 |
+
.sdf-admin .btn-group-justified {
|
2874 |
+
display: table;
|
2875 |
+
width: 100%;
|
2876 |
+
border-collapse: separate;
|
2877 |
+
table-layout: fixed;
|
2878 |
+
}
|
2879 |
+
.sdf-admin .btn-group-justified .btn {
|
2880 |
+
display: table-cell;
|
2881 |
+
float: none;
|
2882 |
+
width: 1%;
|
2883 |
+
}
|
2884 |
+
|
2885 |
+
.sdf-admin [data-toggle="buttons"] > .btn > input[type="radio"],
|
2886 |
+
.sdf-admin [data-toggle="buttons"] > .btn > input[type="checkbox"] {
|
2887 |
+
display: none;
|
2888 |
+
}
|
2889 |
+
.sdf-admin .input-group {
|
2890 |
+
position: relative;
|
2891 |
+
display: table;
|
2892 |
+
border-collapse: separate;
|
2893 |
+
}
|
2894 |
+
.sdf-admin .input-group.col {
|
2895 |
+
float: none;
|
2896 |
+
padding-right: 0;
|
2897 |
+
padding-left: 0;
|
2898 |
+
}
|
2899 |
+
.sdf-admin .input-group .form-control {
|
2900 |
+
width: 100%;
|
2901 |
+
margin-bottom: 0;
|
2902 |
+
}
|
2903 |
+
.sdf-admin .input-group-lg > .form-control,.sdf-admin .input-group-lg > .input-group-addon,.sdf-admin .input-group-lg > .input-group-btn > .btn {
|
2904 |
+
height: 45px;
|
2905 |
+
padding: 10px 16px;
|
2906 |
+
font-size: 18px;
|
2907 |
+
line-height: 1.33;
|
2908 |
+
border-radius: 6px;
|
2909 |
+
}
|
2910 |
+
|
2911 |
+
.sdf-admin select.input-group-lg > .form-control,
|
2912 |
+
.sdf-admin select.input-group-lg > .input-group-addon,
|
2913 |
+
.sdf-admin select.input-group-lg > .input-group-btn > .btn {
|
2914 |
+
height: 45px;
|
2915 |
+
line-height: 45px;
|
2916 |
+
}
|
2917 |
+
|
2918 |
+
.sdf-admin textarea.input-group-lg > .form-control,
|
2919 |
+
.sdf-admin textarea.input-group-lg > .input-group-addon,
|
2920 |
+
.sdf-admin textarea.input-group-lg > .input-group-btn > .btn {
|
2921 |
+
height: auto;
|
2922 |
+
}
|
2923 |
+
.sdf-admin .input-group-sm > .form-control,.sdf-admin .input-group-sm > .input-group-addon,.sdf-admin .input-group-sm > .input-group-btn > .btn {
|
2924 |
+
height: 30px;
|
2925 |
+
padding: 5px 10px;
|
2926 |
+
font-size: 12px;
|
2927 |
+
line-height: 1.5;
|
2928 |
+
border-radius: 3px;
|
2929 |
+
}
|
2930 |
+
|
2931 |
+
.sdf-admin select.input-group-sm > .form-control,
|
2932 |
+
.sdf-admin select.input-group-sm > .input-group-addon,
|
2933 |
+
.sdf-admin select.input-group-sm > .input-group-btn > .btn {
|
2934 |
+
height: 30px;
|
2935 |
+
line-height: 30px;
|
2936 |
+
}
|
2937 |
+
|
2938 |
+
.sdf-admin textarea.input-group-sm > .form-control,
|
2939 |
+
.sdf-admin textarea.input-group-sm > .input-group-addon,
|
2940 |
+
.sdf-admin textarea.input-group-sm > .input-group-btn > .btn {
|
2941 |
+
height: auto;
|
2942 |
+
}
|
2943 |
+
.sdf-admin .input-group-addon,.sdf-admin .input-group-btn,.sdf-admin .input-group .form-control {
|
2944 |
+
display: table-cell;
|
2945 |
+
}
|
2946 |
+
.sdf-admin .input-group-addon:not(:first-child):not(:last-child),.sdf-admin .input-group-btn:not(:first-child):not(:last-child),.sdf-admin .input-group .form-control:not(:first-child):not(:last-child) {
|
2947 |
+
border-radius: 0;
|
2948 |
+
}
|
2949 |
+
.sdf-admin .input-group-addon,.sdf-admin .input-group-btn {
|
2950 |
+
width: 1%;
|
2951 |
+
white-space: nowrap;
|
2952 |
+
vertical-align: middle;
|
2953 |
+
}
|
2954 |
+
.sdf-admin .input-group-addon {
|
2955 |
+
padding: 6px 12px;
|
2956 |
+
font-size: 14px;
|
2957 |
+
font-weight: normal;
|
2958 |
+
line-height: 1;
|
2959 |
+
text-align: center;
|
2960 |
+
background-color: #eeeeee;
|
2961 |
+
border: 1px solid #cccccc;
|
2962 |
+
border-radius: 4px;
|
2963 |
+
}
|
2964 |
+
.sdf-admin .input-group-addon.input-sm {
|
2965 |
+
padding: 5px 10px;
|
2966 |
+
font-size: 12px;
|
2967 |
+
border-radius: 3px;
|
2968 |
+
}
|
2969 |
+
.sdf-admin .input-group-addon.input-lg {
|
2970 |
+
padding: 10px 16px;
|
2971 |
+
font-size: 18px;
|
2972 |
+
border-radius: 6px;
|
2973 |
+
}
|
2974 |
+
.sdf-admin .input-group-addon input[type="radio"],.sdf-admin .input-group-addon input[type="checkbox"] {
|
2975 |
+
margin-top: 0;
|
2976 |
+
}
|
2977 |
+
.sdf-admin .input-group .form-control:first-child,.sdf-admin .input-group-addon:first-child,.sdf-admin .input-group-btn:first-child > .btn,.sdf-admin .input-group-btn:first-child > .dropdown-toggle,.sdf-admin .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
|
2978 |
+
border-top-right-radius: 0;
|
2979 |
+
border-bottom-right-radius: 0;
|
2980 |
+
}
|
2981 |
+
.sdf-admin .input-group-addon:first-child {
|
2982 |
+
border-right: 0;
|
2983 |
+
}
|
2984 |
+
.sdf-admin .input-group .form-control:last-child,.sdf-admin .input-group-addon:last-child,.sdf-admin .input-group-btn:last-child > .btn,.sdf-admin .input-group-btn:last-child > .dropdown-toggle,.sdf-admin .input-group-btn:first-child > .btn:not(:first-child) {
|
2985 |
+
border-bottom-left-radius: 0;
|
2986 |
+
border-top-left-radius: 0;
|
2987 |
+
}
|
2988 |
+
.sdf-admin .input-group-addon:last-child {
|
2989 |
+
border-left: 0;
|
2990 |
+
}
|
2991 |
+
.sdf-admin .input-group-btn {
|
2992 |
+
position: relative;
|
2993 |
+
white-space: nowrap;
|
2994 |
+
}
|
2995 |
+
.sdf-admin .input-group-btn > .btn {
|
2996 |
+
position: relative;
|
2997 |
+
}
|
2998 |
+
.sdf-admin .input-group-btn > .btn + .btn {
|
2999 |
+
margin-left: -4px;
|
3000 |
+
}
|
3001 |
+
.sdf-admin .input-group-btn > .btn:hover,.sdf-admin .input-group-btn > .btn:active {
|
3002 |
+
z-index: 2;
|
3003 |
+
}
|
3004 |
+
.sdf-admin .nav {
|
3005 |
+
padding-left: 0;
|
3006 |
+
margin-bottom: 0;
|
3007 |
+
list-style: none;
|
3008 |
+
}
|
3009 |
+
.sdf-admin .nav:before,.sdf-admin .nav:after {
|
3010 |
+
display: table;
|
3011 |
+
content: " ";
|
3012 |
+
}
|
3013 |
+
.sdf-admin .nav:after {
|
3014 |
+
clear: both;
|
3015 |
+
}
|
3016 |
+
.sdf-admin .nav:before,.sdf-admin .nav:after {
|
3017 |
+
display: table;
|
3018 |
+
content: " ";
|
3019 |
+
}
|
3020 |
+
.sdf-admin .nav:after {
|
3021 |
+
clear: both;
|
3022 |
+
}
|
3023 |
+
.sdf-admin .nav > li {
|
3024 |
+
position: relative;
|
3025 |
+
display: block;
|
3026 |
+
}
|
3027 |
+
.sdf-admin .nav > li > a {
|
3028 |
+
position: relative;
|
3029 |
+
display: block;
|
3030 |
+
padding: 10px 15px;
|
3031 |
+
}
|
3032 |
+
.sdf-admin .nav > li > a:hover,.sdf-admin .nav > li > a:focus {
|
3033 |
+
text-decoration: none;
|
3034 |
+
background-color: #eeeeee;
|
3035 |
+
}
|
3036 |
+
.sdf-admin .nav > li.disabled > a {
|
3037 |
+
color: #999999;
|
3038 |
+
}
|
3039 |
+
.sdf-admin .nav > li.disabled > a:hover,.sdf-admin .nav > li.disabled > a:focus {
|
3040 |
+
color: #999999;
|
3041 |
+
text-decoration: none;
|
3042 |
+
cursor: not-allowed;
|
3043 |
+
background-color: transparent;
|
3044 |
+
}
|
3045 |
+
.sdf-admin .nav .open > a,.sdf-admin .nav .open > a:hover,.sdf-admin .nav .open > a:focus {
|
3046 |
+
background-color: #eeeeee;
|
3047 |
+
border-color: #ed941e;
|
3048 |
+
}
|
3049 |
+
.sdf-admin .nav .nav-divider {
|
3050 |
+
height: 1px;
|
3051 |
+
margin: 9px 0;
|
3052 |
+
overflow: hidden;
|
3053 |
+
background-color: #e5e5e5;
|
3054 |
+
}
|
3055 |
+
.sdf-admin .nav > li > a > img {
|
3056 |
+
max-width: none;
|
3057 |
+
}
|
3058 |
+
.sdf-admin .nav-tabs {
|
3059 |
+
border-bottom: 1px solid #dddddd;
|
3060 |
+
}
|
3061 |
+
.sdf-admin .nav-tabs > li {
|
3062 |
+
float: left;
|
3063 |
+
margin-bottom: -1px;
|
3064 |
+
}
|
3065 |
+
.sdf-admin .nav-tabs > li > a {
|
3066 |
+
margin-right: 2px;
|
3067 |
+
line-height: 1.428571429;
|
3068 |
+
border: 1px solid transparent;
|
3069 |
+
border-radius: 4px 4px 0 0;
|
3070 |
+
}
|
3071 |
+
.sdf-admin .nav-tabs > li > a:hover {
|
3072 |
+
border-color: #eeeeee #eeeeee #dddddd;
|
3073 |
+
}
|
3074 |
+
.sdf-admin .nav-tabs > li.active > a,.sdf-admin .nav-tabs > li.active > a:hover,.sdf-admin .nav-tabs > li.active > a:focus {
|
3075 |
+
color: #555555;
|
3076 |
+
cursor: default;
|
3077 |
+
background-color: #ffffff;
|
3078 |
+
border: 1px solid #dddddd;
|
3079 |
+
border-bottom-color: transparent;
|
3080 |
+
}
|
3081 |
+
.sdf-admin .nav-tabs.nav-justified {
|
3082 |
+
width: 100%;
|
3083 |
+
border-bottom: 0;
|
3084 |
+
}
|
3085 |
+
.sdf-admin .nav-tabs.nav-justified > li {
|
3086 |
+
float: none;
|
3087 |
+
}
|
3088 |
+
.sdf-admin .nav-tabs.nav-justified > li > a {
|
3089 |
+
text-align: center;
|
3090 |
+
}
|
3091 |
+
|
3092 |
+
@media (min-width: 768px) {
|
3093 |
+
.sdf-admin .nav-tabs.nav-justified > li {
|
3094 |
+
display: table-cell;
|
3095 |
+
width: 1%;
|
3096 |
+
}
|
3097 |
+
}
|
3098 |
+
.sdf-admin .nav-tabs.nav-justified > li > a {
|
3099 |
+
margin-right: 0;
|
3100 |
+
border-bottom: 1px solid #dddddd;
|
3101 |
+
}
|
3102 |
+
.sdf-admin .nav-tabs.nav-justified > .active > a {
|
3103 |
+
border-bottom-color: #ffffff;
|
3104 |
+
}
|
3105 |
+
.sdf-admin .nav-pills > li {
|
3106 |
+
float: left;
|
3107 |
+
}
|
3108 |
+
.sdf-admin .nav-pills > li > a {
|
3109 |
+
border-radius: 5px;
|
3110 |
+
background-color: #F6F6F6;
|
3111 |
+
}
|
3112 |
+
.sdf-admin .nav-pills > li + li {
|
3113 |
+
margin-left: 2px;
|
3114 |
+
}
|
3115 |
+
.sdf-admin .nav-pills > li.active > a,.sdf-admin .nav-pills > li.active > a:hover,.sdf-admin .nav-pills > li.active > a:focus {
|
3116 |
+
color: #ffffff;
|
3117 |
+
background-color: #ed941e;
|
3118 |
+
outline: none;
|
3119 |
+
}
|
3120 |
+
.sdf-admin .nav-stacked > li {
|
3121 |
+
float: none;
|
3122 |
+
}
|
3123 |
+
.sdf-admin .nav-stacked > li + li {
|
3124 |
+
margin-top: 2px;
|
3125 |
+
margin-left: 0;
|
3126 |
+
}
|
3127 |
+
.sdf-admin .nav-justified {
|
3128 |
+
width: 100%;
|
3129 |
+
}
|
3130 |
+
.sdf-admin .nav-justified > li {
|
3131 |
+
float: none;
|
3132 |
+
}
|
3133 |
+
.sdf-admin .nav-justified > li > a {
|
3134 |
+
text-align: center;
|
3135 |
+
}
|
3136 |
+
|
3137 |
+
@media (min-width: 768px) {
|
3138 |
+
.sdf-admin .nav-justified > li {
|
3139 |
+
display: table-cell;
|
3140 |
+
width: 1%;
|
3141 |
+
}
|
3142 |
+
}
|
3143 |
+
.sdf-admin .nav-tabs-justified {
|
3144 |
+
border-bottom: 0;
|
3145 |
+
}
|
3146 |
+
.sdf-admin .nav-tabs-justified > li > a {
|
3147 |
+
margin-right: 0;
|
3148 |
+
border-bottom: 1px solid #dddddd;
|
3149 |
+
}
|
3150 |
+
.sdf-admin .nav-tabs-justified > .active > a {
|
3151 |
+
border-bottom-color: #ffffff;
|
3152 |
+
}
|
3153 |
+
.sdf-admin .tabbable:before,.sdf-admin .tabbable:after {
|
3154 |
+
display: table;
|
3155 |
+
content: " ";
|
3156 |
+
}
|
3157 |
+
.sdf-admin .tabbable:after {
|
3158 |
+
clear: both;
|
3159 |
+
}
|
3160 |
+
.sdf-admin .tabbable:before,.sdf-admin .tabbable:after {
|
3161 |
+
display: table;
|
3162 |
+
content: " ";
|
3163 |
+
}
|
3164 |
+
.sdf-admin .tabbable:after {
|
3165 |
+
clear: both;
|
3166 |
+
}
|
3167 |
+
.sdf-admin .tab-content > .tab-pane,.sdf-admin .pill-content > .pill-pane {
|
3168 |
+
display: none;
|
3169 |
+
}
|
3170 |
+
.sdf-admin .tab-content > .active,.sdf-admin .pill-content > .active {
|
3171 |
+
display: block;
|
3172 |
+
}
|
3173 |
+
.sdf-admin .nav .caret {
|
3174 |
+
border-top-color: #868686;
|
3175 |
+
border-bottom-color: #868686;
|
3176 |
+
}
|
3177 |
+
.sdf-admin .nav a:hover .caret {
|
3178 |
+
border-top-color: #2a6496;
|
3179 |
+
border-bottom-color: #2a6496;
|
3180 |
+
}
|
3181 |
+
.sdf-admin .nav-tabs .dropdown-menu {
|
3182 |
+
margin-top: -1px;
|
3183 |
+
border-top-right-radius: 0;
|
3184 |
+
border-top-left-radius: 0;
|
3185 |
+
}
|
3186 |
+
.sdf-admin .navbar {
|
3187 |
+
position: relative;
|
3188 |
+
z-index: 1000;
|
3189 |
+
min-height: 50px;
|
3190 |
+
margin-bottom: 20px;
|
3191 |
+
border: 1px solid transparent;
|
3192 |
+
}
|
3193 |
+
.sdf-admin .navbar:before,.sdf-admin .navbar:after {
|
3194 |
+
display: table;
|
3195 |
+
content: " ";
|
3196 |
+
}
|
3197 |
+
.sdf-admin .navbar:after {
|
3198 |
+
clear: both;
|
3199 |
+
}
|
3200 |
+
.sdf-admin .navbar:before,.sdf-admin .navbar:after {
|
3201 |
+
display: table;
|
3202 |
+
content: " ";
|
3203 |
+
}
|
3204 |
+
.sdf-admin .navbar:after {
|
3205 |
+
clear: both;
|
3206 |
+
}
|
3207 |
+
|
3208 |
+
@media (min-width: 768px) {
|
3209 |
+
.sdf-admin .navbar {
|
3210 |
+
border-radius: 4px;
|
3211 |
+
}
|
3212 |
+
}
|
3213 |
+
.sdf-admin .navbar-header:before,.sdf-admin .navbar-header:after {
|
3214 |
+
display: table;
|
3215 |
+
content: " ";
|
3216 |
+
}
|
3217 |
+
.sdf-admin .navbar-header:after {
|
3218 |
+
clear: both;
|
3219 |
+
}
|
3220 |
+
.sdf-admin .navbar-header:before,.sdf-admin .navbar-header:after {
|
3221 |
+
display: table;
|
3222 |
+
content: " ";
|
3223 |
+
}
|
3224 |
+
.sdf-admin .navbar-header:after {
|
3225 |
+
clear: both;
|
3226 |
+
}
|
3227 |
+
|
3228 |
+
@media (min-width: 768px) {
|
3229 |
+
.sdf-admin .navbar-header {
|
3230 |
+
float: left;
|
3231 |
+
}
|
3232 |
+
}
|
3233 |
+
.sdf-admin .navbar-collapse {
|
3234 |
+
max-height: 340px;
|
3235 |
+
padding-right: 15px;
|
3236 |
+
padding-left: 15px;
|
3237 |
+
overflow-x: visible;
|
3238 |
+
border-top: 1px solid transparent;
|
3239 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
3240 |
+
-webkit-overflow-scrolling: touch;
|
3241 |
+
}
|
3242 |
+
.sdf-admin .navbar-collapse:before,.sdf-admin .navbar-collapse:after {
|
3243 |
+
display: table;
|
3244 |
+
content: " ";
|
3245 |
+
}
|
3246 |
+
.sdf-admin .navbar-collapse:after {
|
3247 |
+
clear: both;
|
3248 |
+
}
|
3249 |
+
.sdf-admin .navbar-collapse:before,.sdf-admin .navbar-collapse:after {
|
3250 |
+
display: table;
|
3251 |
+
content: " ";
|
3252 |
+
}
|
3253 |
+
.sdf-admin .navbar-collapse:after {
|
3254 |
+
clear: both;
|
3255 |
+
}
|
3256 |
+
.sdf-admin .navbar-collapse.in {
|
3257 |
+
overflow-y: auto;
|
3258 |
+
}
|
3259 |
+
|
3260 |
+
@media (min-width: 768px) {
|
3261 |
+
.sdf-admin .navbar-collapse {
|
3262 |
+
width: auto;
|
3263 |
+
border-top: 0;
|
3264 |
+
box-shadow: none;
|
3265 |
+
}
|
3266 |
+
.sdf-admin .navbar-collapse.collapse {
|
3267 |
+
display: block !important;
|
3268 |
+
height: auto !important;
|
3269 |
+
padding-bottom: 0;
|
3270 |
+
overflow: visible !important;
|
3271 |
+
}
|
3272 |
+
.sdf-admin .navbar-collapse.in {
|
3273 |
+
overflow-y: visible;
|
3274 |
+
}
|
3275 |
+
.sdf-admin .navbar-collapse .navbar-nav.navbar-left:first-child {
|
3276 |
+
margin-left: -15px;
|
3277 |
+
}
|
3278 |
+
.sdf-admin .navbar-collapse .navbar-nav.navbar-right:last-child {
|
3279 |
+
margin-right: -15px;
|
3280 |
+
}
|
3281 |
+
.sdf-admin .navbar-collapse .navbar-text:last-child {
|
3282 |
+
margin-right: 0;
|
3283 |
+
}
|
3284 |
+
}
|
3285 |
+
.sdf-admin .container > .navbar-header,.sdf-admin .container > .navbar-collapse {
|
3286 |
+
margin-right: -15px;
|
3287 |
+
margin-left: -15px;
|
3288 |
+
}
|
3289 |
+
|
3290 |
+
@media (min-width: 768px) {
|
3291 |
+
.sdf-admin .container > .navbar-header,
|
3292 |
+
.sdf-admin .container > .navbar-collapse {
|
3293 |
+
margin-right: 0;
|
3294 |
+
margin-left: 0;
|
3295 |
+
}
|
3296 |
+
}
|
3297 |
+
.sdf-admin .navbar-static-top {
|
3298 |
+
border-width: 0 0 1px;
|
3299 |
+
}
|
3300 |
+
|
3301 |
+
@media (min-width: 768px) {
|
3302 |
+
.sdf-admin .navbar-static-top {
|
3303 |
+
border-radius: 0;
|
3304 |
+
}
|
3305 |
+
}
|
3306 |
+
.sdf-admin .navbar-fixed-top,.sdf-admin .navbar-fixed-bottom {
|
3307 |
+
position: fixed;
|
3308 |
+
right: 0;
|
3309 |
+
left: 0;
|
3310 |
+
border-width: 0 0 1px;
|
3311 |
+
}
|
3312 |
+
|
3313 |
+
@media (min-width: 768px) {
|
3314 |
+
.sdf-admin .navbar-fixed-top,
|
3315 |
+
.sdf-admin .navbar-fixed-bottom {
|
3316 |
+
border-radius: 0;
|
3317 |
+
}
|
3318 |
+
}
|
3319 |
+
.sdf-admin .navbar-fixed-top {
|
3320 |
+
top: 0;
|
3321 |
+
z-index: 1030;
|
3322 |
+
}
|
3323 |
+
.sdf-admin .navbar-fixed-bottom {
|
3324 |
+
bottom: 0;
|
3325 |
+
margin-bottom: 0;
|
3326 |
+
}
|
3327 |
+
.sdf-admin .navbar-brand {
|
3328 |
+
float: left;
|
3329 |
+
padding: 15px 15px;
|
3330 |
+
font-size: 18px;
|
3331 |
+
line-height: 20px;
|
3332 |
+
}
|
3333 |
+
.sdf-admin .navbar-brand:hover,.sdf-admin .navbar-brand:focus {
|
3334 |
+
text-decoration: none;
|
3335 |
+
}
|
3336 |
+
|
3337 |
+
@media (min-width: 768px) {
|
3338 |
+
.sdf-admin .navbar > .container .navbar-brand {
|
3339 |
+
margin-left: -15px;
|
3340 |
+
}
|
3341 |
+
}
|
3342 |
+
.sdf-admin .navbar-toggle {
|
3343 |
+
position: relative;
|
3344 |
+
float: right;
|
3345 |
+
padding: 9px 10px;
|
3346 |
+
margin-top: 8px;
|
3347 |
+
margin-right: 15px;
|
3348 |
+
margin-bottom: 8px;
|
3349 |
+
background-color: transparent;
|
3350 |
+
border: 1px solid transparent;
|
3351 |
+
border-radius: 4px;
|
3352 |
+
}
|
3353 |
+
.sdf-admin .navbar-toggle .icon-bar {
|
3354 |
+
display: block;
|
3355 |
+
width: 22px;
|
3356 |
+
height: 2px;
|
3357 |
+
border-radius: 1px;
|
3358 |
+
}
|
3359 |
+
.sdf-admin .navbar-toggle .icon-bar + .icon-bar {
|
3360 |
+
margin-top: 4px;
|
3361 |
+
}
|
3362 |
+
|
3363 |
+
@media (min-width: 768px) {
|
3364 |
+
.sdf-admin .navbar-toggle {
|
3365 |
+
display: none;
|
3366 |
+
}
|
3367 |
+
}
|
3368 |
+
.sdf-admin .navbar-nav {
|
3369 |
+
margin: 7.5px -15px;
|
3370 |
+
}
|
3371 |
+
.sdf-admin .navbar-nav > li > a {
|
3372 |
+
padding-top: 10px;
|
3373 |
+
padding-bottom: 10px;
|
3374 |
+
line-height: 20px;
|
3375 |
+
}
|
3376 |
+
|
3377 |
+
@media (max-width: 767px) {
|
3378 |
+
.sdf-admin .navbar-nav .open .dropdown-menu {
|
3379 |
+
position: static;
|
3380 |
+
float: none;
|
3381 |
+
width: auto;
|
3382 |
+
margin-top: 0;
|
3383 |
+
background-color: transparent;
|
3384 |
+
border: 0;
|
3385 |
+
box-shadow: none;
|
3386 |
+
}
|
3387 |
+
.sdf-admin .navbar-nav .open .dropdown-menu > li > a,
|
3388 |
+
.sdf-admin .navbar-nav .open .dropdown-menu .dropdown-header {
|
3389 |
+
padding: 5px 15px 5px 25px;
|
3390 |
+
}
|
3391 |
+
.sdf-admin .navbar-nav .open .dropdown-menu > li > a {
|
3392 |
+
line-height: 20px;
|
3393 |
+
}
|
3394 |
+
.sdf-admin .navbar-nav .open .dropdown-menu > li > a:hover,
|
3395 |
+
.sdf-admin .navbar-nav .open .dropdown-menu > li > a:focus {
|
3396 |
+
background-image: none;
|
3397 |
+
}
|
3398 |
+
}
|
3399 |
+
|
3400 |
+
@media (min-width: 768px) {
|
3401 |
+
.sdf-admin .navbar-nav {
|
3402 |
+
float: left;
|
3403 |
+
margin: 0;
|
3404 |
+
}
|
3405 |
+
.sdf-admin .navbar-nav > li {
|
3406 |
+
float: left;
|
3407 |
+
}
|
3408 |
+
.sdf-admin .navbar-nav > li > a {
|
3409 |
+
padding-top: 15px;
|
3410 |
+
padding-bottom: 15px;
|
3411 |
+
}
|
3412 |
+
}
|
3413 |
+
|
3414 |
+
@media (min-width: 768px) {
|
3415 |
+
.sdf-admin .navbar-left {
|
3416 |
+
float: left !important;
|
3417 |
+
}
|
3418 |
+
.sdf-admin .navbar-right {
|
3419 |
+
float: right !important;
|
3420 |
+
}
|
3421 |
+
}
|
3422 |
+
.sdf-admin .navbar-form {
|
3423 |
+
padding: 10px 15px;
|
3424 |
+
margin-top: 8px;
|
3425 |
+
margin-right: -15px;
|
3426 |
+
margin-bottom: 8px;
|
3427 |
+
margin-left: -15px;
|
3428 |
+
border-top: 1px solid transparent;
|
3429 |
+
border-bottom: 1px solid transparent;
|
3430 |
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
3431 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
3432 |
+
}
|
3433 |
+
|
3434 |
+
@media (min-width: 768px) {
|
3435 |
+
.sdf-admin .navbar-form .form-group {
|
3436 |
+
display: inline-block;
|
3437 |
+
margin-bottom: 0;
|
3438 |
+
vertical-align: middle;
|
3439 |
+
}
|
3440 |
+
.sdf-admin .navbar-form .form-control {
|
3441 |
+
display: inline-block;
|
3442 |
+
}
|
3443 |
+
.sdf-admin .navbar-form .radio,
|
3444 |
+
.sdf-admin .navbar-form .checkbox {
|
3445 |
+
display: inline-block;
|
3446 |
+
padding-left: 0;
|
3447 |
+
margin-top: 0;
|
3448 |
+
margin-bottom: 0;
|
3449 |
+
}
|
3450 |
+
.sdf-admin .navbar-form .radio input[type="radio"],
|
3451 |
+
.sdf-admin .navbar-form .checkbox input[type="checkbox"] {
|
3452 |
+
float: none;
|
3453 |
+
margin-left: 0;
|
3454 |
+
}
|
3455 |
+
}
|
3456 |
+
|
3457 |
+
@media (max-width: 767px) {
|
3458 |
+
.sdf-admin .navbar-form .form-group {
|
3459 |
+
margin-bottom: 5px;
|
3460 |
+
}
|
3461 |
+
}
|
3462 |
+
|
3463 |
+
@media (min-width: 768px) {
|
3464 |
+
.sdf-admin .navbar-form {
|
3465 |
+
width: auto;
|
3466 |
+
padding-top: 0;
|
3467 |
+
padding-bottom: 0;
|
3468 |
+
margin-right: 0;
|
3469 |
+
margin-left: 0;
|
3470 |
+
border: 0;
|
3471 |
+
-webkit-box-shadow: none;
|
3472 |
+
box-shadow: none;
|
3473 |
+
}
|
3474 |
+
}
|
3475 |
+
.sdf-admin .navbar-nav > li > .dropdown-menu {
|
3476 |
+
margin-top: 0;
|
3477 |
+
border-top-right-radius: 0;
|
3478 |
+
border-top-left-radius: 0;
|
3479 |
+
}
|
3480 |
+
.sdf-admin .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
3481 |
+
border-bottom-right-radius: 0;
|
3482 |
+
border-bottom-left-radius: 0;
|
3483 |
+
}
|
3484 |
+
.sdf-admin .navbar-nav.pull-right > li > .dropdown-menu,.sdf-admin .navbar-nav > li > .dropdown-menu.pull-right {
|
3485 |
+
right: 0;
|
3486 |
+
left: auto;
|
3487 |
+
}
|
3488 |
+
.sdf-admin .navbar-btn {
|
3489 |
+
margin-top: 8px;
|
3490 |
+
margin-bottom: 8px;
|
3491 |
+
}
|
3492 |
+
.sdf-admin .navbar-text {
|
3493 |
+
float: left;
|
3494 |
+
margin-top: 15px;
|
3495 |
+
margin-bottom: 15px;
|
3496 |
+
}
|
3497 |
+
|
3498 |
+
@media (min-width: 768px) {
|
3499 |
+
.sdf-admin .navbar-text {
|
3500 |
+
margin-right: 15px;
|
3501 |
+
margin-left: 15px;
|
3502 |
+
}
|
3503 |
+
}
|
3504 |
+
.sdf-admin .navbar-default {
|
3505 |
+
background-color: #f8f8f8;
|
3506 |
+
border-color: #e7e7e7;
|
3507 |
+
}
|
3508 |
+
.sdf-admin .navbar-default .navbar-brand {
|
3509 |
+
color: #777777;
|
3510 |
+
}
|
3511 |
+
.sdf-admin .navbar-default .navbar-brand:hover,.sdf-admin .navbar-default .navbar-brand:focus {
|
3512 |
+
color: #5e5e5e;
|
3513 |
+
background-color: transparent;
|
3514 |
+
}
|
3515 |
+
.sdf-admin .navbar-default .navbar-text {
|
3516 |
+
color: #777777;
|
3517 |
+
}
|
3518 |
+
.sdf-admin .navbar-default .navbar-nav > li > a {
|
3519 |
+
color: #777777;
|
3520 |
+
}
|
3521 |
+
.sdf-admin .navbar-default .navbar-nav > li > a:hover,.sdf-admin .navbar-default .navbar-nav > li > a:focus {
|
3522 |
+
color: #333333;
|
3523 |
+
background-color: transparent;
|
3524 |
+
}
|
3525 |
+
.sdf-admin .navbar-default .navbar-nav > .active > a,.sdf-admin .navbar-default .navbar-nav > .active > a:hover,.sdf-admin .navbar-default .navbar-nav > .active > a:focus {
|
3526 |
+
color: #555555;
|
3527 |
+
background-color: #e7e7e7;
|
3528 |
+
}
|
3529 |
+
.sdf-admin .navbar-default .navbar-nav > .disabled > a,.sdf-admin .navbar-default .navbar-nav > .disabled > a:hover,.sdf-admin .navbar-default .navbar-nav > .disabled > a:focus {
|
3530 |
+
color: #cccccc;
|
3531 |
+
background-color: transparent;
|
3532 |
+
}
|
3533 |
+
.sdf-admin .navbar-default .navbar-toggle {
|
3534 |
+
border-color: #dddddd;
|
3535 |
+
}
|
3536 |
+
.sdf-admin .navbar-default .navbar-toggle:hover,.sdf-admin .navbar-default .navbar-toggle:focus {
|
3537 |
+
background-color: #dddddd;
|
3538 |
+
}
|
3539 |
+
.sdf-admin .navbar-default .navbar-toggle .icon-bar {
|
3540 |
+
background-color: #cccccc;
|
3541 |
+
}
|
3542 |
+
.sdf-admin .navbar-default .navbar-collapse,.sdf-admin .navbar-default .navbar-form {
|
3543 |
+
border-color: #e6e6e6;
|
3544 |
+
}
|
3545 |
+
.sdf-admin .navbar-default .navbar-nav > .dropdown > a:hover .caret,.sdf-admin .navbar-default .navbar-nav > .dropdown > a:focus .caret {
|
3546 |
+
border-top-color: #333333;
|
3547 |
+
border-bottom-color: #333333;
|
3548 |
+
}
|
3549 |
+
.sdf-admin .navbar-default .navbar-nav > .open > a,.sdf-admin .navbar-default .navbar-nav > .open > a:hover,.sdf-admin .navbar-default .navbar-nav > .open > a:focus {
|
3550 |
+
color: #555555;
|
3551 |
+
background-color: #e7e7e7;
|
3552 |
+
}
|
3553 |
+
.sdf-admin .navbar-default .navbar-nav > .open > a .caret,.sdf-admin .navbar-default .navbar-nav > .open > a:hover .caret,.sdf-admin .navbar-default .navbar-nav > .open > a:focus .caret {
|
3554 |
+
border-top-color: #555555;
|
3555 |
+
border-bottom-color: #555555;
|
3556 |
+
}
|
3557 |
+
.sdf-admin .navbar-default .navbar-nav > .dropdown > a .caret {
|
3558 |
+
border-top-color: #777777;
|
3559 |
+
border-bottom-color: #777777;
|
3560 |
+
}
|
3561 |
+
|
3562 |
+
@media (max-width: 767px) {
|
3563 |
+
.sdf-admin .navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
3564 |
+
color: #777777;
|
3565 |
+
}
|
3566 |
+
.sdf-admin .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
3567 |
+
.sdf-admin .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
3568 |
+
color: #333333;
|
3569 |
+
background-color: transparent;
|
3570 |
+
}
|
3571 |
+
.sdf-admin .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
3572 |
+
.sdf-admin .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
3573 |
+
.sdf-admin .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
3574 |
+
color: #555555;
|
3575 |
+
background-color: #e7e7e7;
|
3576 |
+
}
|
3577 |
+
.sdf-admin .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
|
3578 |
+
.sdf-admin .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
3579 |
+
.sdf-admin .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
3580 |
+
color: #cccccc;
|
3581 |
+
background-color: transparent;
|
3582 |
+
}
|
3583 |
+
}
|
3584 |
+
.sdf-admin .navbar-default .navbar-link {
|
3585 |
+
color: #777777;
|
3586 |
+
}
|
3587 |
+
.sdf-admin .navbar-default .navbar-link:hover {
|
3588 |
+
color: #333333;
|
3589 |
+
}
|
3590 |
+
.sdf-admin .navbar-inverse {
|
3591 |
+
background-color: #222222;
|
3592 |
+
border-color: #080808;
|
3593 |
+
}
|
3594 |
+
.sdf-admin .navbar-inverse .navbar-brand {
|
3595 |
+
color: #999999;
|
3596 |
+
}
|
3597 |
+
.sdf-admin .navbar-inverse .navbar-brand:hover,.sdf-admin .navbar-inverse .navbar-brand:focus {
|
3598 |
+
color: #ffffff;
|
3599 |
+
background-color: transparent;
|
3600 |
+
}
|
3601 |
+
.sdf-admin .navbar-inverse .navbar-text {
|
3602 |
+
color: #999999;
|
3603 |
+
}
|
3604 |
+
.sdf-admin .navbar-inverse .navbar-nav > li > a {
|
3605 |
+
color: #999999;
|
3606 |
+
}
|
3607 |
+
.sdf-admin .navbar-inverse .navbar-nav > li > a:hover,.sdf-admin .navbar-inverse .navbar-nav > li > a:focus {
|
3608 |
+
color: #ffffff;
|
3609 |
+
background-color: transparent;
|
3610 |
+
}
|
3611 |
+
.sdf-admin .navbar-inverse .navbar-nav > .active > a,.sdf-admin .navbar-inverse .navbar-nav > .active > a:hover,.sdf-admin .navbar-inverse .navbar-nav > .active > a:focus {
|
3612 |
+
color: #ffffff;
|
3613 |
+
background-color: #080808;
|
3614 |
+
}
|
3615 |
+
.sdf-admin .navbar-inverse .navbar-nav > .disabled > a,.sdf-admin .navbar-inverse .navbar-nav > .disabled > a:hover,.sdf-admin .navbar-inverse .navbar-nav > .disabled > a:focus {
|
3616 |
+
color: #444444;
|
3617 |
+
background-color: transparent;
|
3618 |
+
}
|
3619 |
+
.sdf-admin .navbar-inverse .navbar-toggle {
|
3620 |
+
border-color: #333333;
|
3621 |
+
}
|
3622 |
+
.sdf-admin .navbar-inverse .navbar-toggle:hover,.sdf-admin .navbar-inverse .navbar-toggle:focus {
|
3623 |
+
background-color: #333333;
|
3624 |
+
}
|
3625 |
+
.sdf-admin .navbar-inverse .navbar-toggle .icon-bar {
|
3626 |
+
background-color: #ffffff;
|
3627 |
+
}
|
3628 |
+
.sdf-admin .navbar-inverse .navbar-collapse,.sdf-admin .navbar-inverse .navbar-form {
|
3629 |
+
border-color: #101010;
|
3630 |
+
}
|
3631 |
+
.sdf-admin .navbar-inverse .navbar-nav > .open > a,.sdf-admin .navbar-inverse .navbar-nav > .open > a:hover,.sdf-admin .navbar-inverse .navbar-nav > .open > a:focus {
|
3632 |
+
color: #ffffff;
|
3633 |
+
background-color: #080808;
|
3634 |
+
}
|
3635 |
+
.sdf-admin .navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
|
3636 |
+
border-top-color: #ffffff;
|
3637 |
+
border-bottom-color: #ffffff;
|
3638 |
+
}
|
3639 |
+
.sdf-admin .navbar-inverse .navbar-nav > .dropdown > a .caret {
|
3640 |
+
border-top-color: #999999;
|
3641 |
+
border-bottom-color: #999999;
|
3642 |
+
}
|
3643 |
+
.sdf-admin .navbar-inverse .navbar-nav > .open > a .caret,.sdf-admin .navbar-inverse .navbar-nav > .open > a:hover .caret,.sdf-admin .navbar-inverse .navbar-nav > .open > a:focus .caret {
|
3644 |
+
border-top-color: #ffffff;
|
3645 |
+
border-bottom-color: #ffffff;
|
3646 |
+
}
|
3647 |
+
|
3648 |
+
@media (max-width: 767px) {
|
3649 |
+
.sdf-admin .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
3650 |
+
border-color: #080808;
|
3651 |
+
}
|
3652 |
+
.sdf-admin .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
3653 |
+
color: #999999;
|
3654 |
+
}
|
3655 |
+
.sdf-admin .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
|
3656 |
+
.sdf-admin .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
|
3657 |
+
color: #ffffff;
|
3658 |
+
background-color: transparent;
|
3659 |
+
}
|
3660 |
+
.sdf-admin .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
|
3661 |
+
.sdf-admin .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
|
3662 |
+
.sdf-admin .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
|
3663 |
+
color: #ffffff;
|
3664 |
+
background-color: #080808;
|
3665 |
+
}
|
3666 |
+
.sdf-admin .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
|
3667 |
+
.sdf-admin .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
3668 |
+
.sdf-admin .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
3669 |
+
color: #444444;
|
3670 |
+
background-color: transparent;
|
3671 |
+
}
|
3672 |
+
}
|
3673 |
+
.sdf-admin .navbar-inverse .navbar-link {
|
3674 |
+
color: #999999;
|
3675 |
+
}
|
3676 |
+
.sdf-admin .navbar-inverse .navbar-link:hover {
|
3677 |
+
color: #ffffff;
|
3678 |
+
}
|
3679 |
+
.sdf-admin .breadcrumb {
|
3680 |
+
padding: 8px 15px;
|
3681 |
+
margin-bottom: 20px;
|
3682 |
+
list-style: none;
|
3683 |
+
background-color: #f5f5f5;
|
3684 |
+
border-radius: 4px;
|
3685 |
+
}
|
3686 |
+
.sdf-admin .breadcrumb > li {
|
3687 |
+
display: inline-block;
|
3688 |
+
}
|
3689 |
+
.sdf-admin .breadcrumb > li + li:before {
|
3690 |
+
padding: 0 5px;
|
3691 |
+
color: #cccccc;
|
3692 |
+
content: "/\00a0";
|
3693 |
+
}
|
3694 |
+
.sdf-admin .breadcrumb > .active {
|
3695 |
+
color: #999999;
|
3696 |
+
}
|
3697 |
+
.sdf-admin .pagination {
|
3698 |
+
display: inline-block;
|
3699 |
+
padding-left: 0;
|
3700 |
+
margin: 20px 0;
|
3701 |
+
border-radius: 4px;
|
3702 |
+
}
|
3703 |
+
.sdf-admin .pagination > li {
|
3704 |
+
display: inline;
|
3705 |
+
}
|
3706 |
+
.sdf-admin .pagination > li > a,.sdf-admin .pagination > li > span {
|
3707 |
+
position: relative;
|
3708 |
+
float: left;
|
3709 |
+
padding: 6px 12px;
|
3710 |
+
margin-left: -1px;
|
3711 |
+
line-height: 1.428571429;
|
3712 |
+
text-decoration: none;
|
3713 |
+
background-color: #ffffff;
|
3714 |
+
border: 1px solid #dddddd;
|
3715 |
+
}
|
3716 |
+
.sdf-admin .pagination > li:first-child > a,.sdf-admin .pagination > li:first-child > span {
|
3717 |
+
margin-left: 0;
|
3718 |
+
border-bottom-left-radius: 4px;
|
3719 |
+
border-top-left-radius: 4px;
|
3720 |
+
}
|
3721 |
+
.sdf-admin .pagination > li:last-child > a,.sdf-admin .pagination > li:last-child > span {
|
3722 |
+
border-top-right-radius: 4px;
|
3723 |
+
border-bottom-right-radius: 4px;
|
3724 |
+
}
|
3725 |
+
.sdf-admin .pagination > li > a:hover,.sdf-admin .pagination > li > span:hover,.sdf-admin .pagination > li > a:focus,.sdf-admin .pagination > li > span:focus {
|
3726 |
+
background-color: #eeeeee;
|
3727 |
+
}
|
3728 |
+
.sdf-admin .pagination > .active > a,.sdf-admin .pagination > .active > span,.sdf-admin .pagination > .active > a:hover,.sdf-admin .pagination > .active > span:hover,.sdf-admin .pagination > .active > a:focus,.sdf-admin .pagination > .active > span:focus {
|
3729 |
+
z-index: 2;
|
3730 |
+
color: #ffffff;
|
3731 |
+
cursor: default;
|
3732 |
+
background-color: #ed941e;
|
3733 |
+
border-color: #ed941e;
|
3734 |
+
}
|
3735 |
+
.sdf-admin .pagination > .disabled > span,.sdf-admin .pagination > .disabled > a,.sdf-admin .pagination > .disabled > a:hover,.sdf-admin .pagination > .disabled > a:focus {
|
3736 |
+
color: #999999;
|
3737 |
+
cursor: not-allowed;
|
3738 |
+
background-color: #ffffff;
|
3739 |
+
border-color: #dddddd;
|
3740 |
+
}
|
3741 |
+
.sdf-admin .pagination-lg > li > a,.sdf-admin .pagination-lg > li > span {
|
3742 |
+
padding: 10px 16px;
|
3743 |
+
font-size: 18px;
|
3744 |
+
}
|
3745 |
+
.sdf-admin .pagination-lg > li:first-child > a,.sdf-admin .pagination-lg > li:first-child > span {
|
3746 |
+
border-bottom-left-radius: 6px;
|
3747 |
+
border-top-left-radius: 6px;
|
3748 |
+
}
|
3749 |
+
.sdf-admin .pagination-lg > li:last-child > a,.sdf-admin .pagination-lg > li:last-child > span {
|
3750 |
+
border-top-right-radius: 6px;
|
3751 |
+
border-bottom-right-radius: 6px;
|
3752 |
+
}
|
3753 |
+
.sdf-admin .pagination-sm > li > a,.sdf-admin .pagination-sm > li > span {
|
3754 |
+
padding: 5px 10px;
|
3755 |
+
font-size: 12px;
|
3756 |
+
}
|
3757 |
+
.sdf-admin .pagination-sm > li:first-child > a,.sdf-admin .pagination-sm > li:first-child > span {
|
3758 |
+
border-bottom-left-radius: 3px;
|
3759 |
+
border-top-left-radius: 3px;
|
3760 |
+
}
|
3761 |
+
.sdf-admin .pagination-sm > li:last-child > a,.sdf-admin .pagination-sm > li:last-child > span {
|
3762 |
+
border-top-right-radius: 3px;
|
3763 |
+
border-bottom-right-radius: 3px;
|
3764 |
+
}
|
3765 |
+
.sdf-admin .pager {
|
3766 |
+
padding-left: 0;
|
3767 |
+
margin: 20px 0;
|
3768 |
+
text-align: center;
|
3769 |
+
list-style: none;
|
3770 |
+
}
|
3771 |
+
.sdf-admin .pager:before,.sdf-admin .pager:after {
|
3772 |
+
display: table;
|
3773 |
+
content: " ";
|
3774 |
+
}
|
3775 |
+
.sdf-admin .pager:after {
|
3776 |
+
clear: both;
|
3777 |
+
}
|
3778 |
+
.sdf-admin .pager:before,.sdf-admin .pager:after {
|
3779 |
+
display: table;
|
3780 |
+
content: " ";
|
3781 |
+
}
|
3782 |
+
.sdf-admin .pager:after {
|
3783 |
+
clear: both;
|
3784 |
+
}
|
3785 |
+
.sdf-admin .pager li {
|
3786 |
+
display: inline;
|
3787 |
+
}
|
3788 |
+
.sdf-admin .pager li > a,.sdf-admin .pager li > span {
|
3789 |
+
display: inline-block;
|
3790 |
+
padding: 5px 14px;
|
3791 |
+
background-color: #ffffff;
|
3792 |
+
border: 1px solid #dddddd;
|
3793 |
+
border-radius: 15px;
|
3794 |
+
}
|
3795 |
+
.sdf-admin .pager li > a:hover,.sdf-admin .pager li > a:focus {
|
3796 |
+
text-decoration: none;
|
3797 |
+
background-color: #eeeeee;
|
3798 |
+
}
|
3799 |
+
.sdf-admin .pager .next > a,.sdf-admin .pager .next > span {
|
3800 |
+
float: right;
|
3801 |
+
}
|
3802 |
+
.sdf-admin .pager .previous > a,.sdf-admin .pager .previous > span {
|
3803 |
+
float: left;
|
3804 |
+
}
|
3805 |
+
.sdf-admin .pager .disabled > a,.sdf-admin .pager .disabled > a:hover,.sdf-admin .pager .disabled > a:focus,.sdf-admin .pager .disabled > span {
|
3806 |
+
color: #999999;
|
3807 |
+
cursor: not-allowed;
|
3808 |
+
background-color: #ffffff;
|
3809 |
+
}
|
3810 |
+
.sdf-admin .label {
|
3811 |
+
display: inline;
|
3812 |
+
padding: .2em .6em .3em;
|
3813 |
+
font-size: 75%;
|
3814 |
+
font-weight: bold;
|
3815 |
+
line-height: 1;
|
3816 |
+
color: #ffffff;
|
3817 |
+
text-align: center;
|
3818 |
+
white-space: nowrap;
|
3819 |
+
vertical-align: baseline;
|
3820 |
+
border-radius: .25em;
|
3821 |
+
}
|
3822 |
+
.sdf-admin .label[href]:hover,.sdf-admin .label[href]:focus {
|
3823 |
+
color: #ffffff;
|
3824 |
+
text-decoration: none;
|
3825 |
+
cursor: pointer;
|
3826 |
+
}
|
3827 |
+
.sdf-admin .label:empty {
|
3828 |
+
display: none;
|
3829 |
+
}
|
3830 |
+
.sdf-admin .label-default {
|
3831 |
+
background-color: #999999;
|
3832 |
+
}
|
3833 |
+
.sdf-admin .label-default[href]:hover,.sdf-admin .label-default[href]:focus {
|
3834 |
+
background-color: #808080;
|
3835 |
+
}
|
3836 |
+
.sdf-admin .label-primary {
|
3837 |
+
background-color: #428bca;
|
3838 |
+
}
|
3839 |
+
.sdf-admin .label-primary[href]:hover,.sdf-admin .label-primary[href]:focus {
|
3840 |
+
background-color: #3071a9;
|
3841 |
+
}
|
3842 |
+
.sdf-admin .label-success {
|
3843 |
+
background-color: #5cb85c;
|
3844 |
+
}
|
3845 |
+
.sdf-admin .label-success[href]:hover,.sdf-admin .label-success[href]:focus {
|
3846 |
+
background-color: #449d44;
|
3847 |
+
}
|
3848 |
+
.sdf-admin .label-info {
|
3849 |
+
background-color: #5bc0de;
|
3850 |
+
}
|
3851 |
+
.sdf-admin .label-info[href]:hover,.sdf-admin .label-info[href]:focus {
|
3852 |
+
background-color: #31b0d5;
|
3853 |
+
}
|
3854 |
+
.sdf-admin .label-warning {
|
3855 |
+
background-color: #f0ad4e;
|
3856 |
+
}
|
3857 |
+
.sdf-admin .label-warning[href]:hover,.sdf-admin .label-warning[href]:focus {
|
3858 |
+
background-color: #ec971f;
|
3859 |
+
}
|
3860 |
+
.sdf-admin .label-danger {
|
3861 |
+
background-color: #d9534f;
|
3862 |
+
}
|
3863 |
+
.sdf-admin .label-danger[href]:hover,.sdf-admin .label-danger[href]:focus {
|
3864 |
+
background-color: #c9302c;
|
3865 |
+
}
|
3866 |
+
.sdf-admin .badge {
|
3867 |
+
display: inline-block;
|
3868 |
+
min-width: 10px;
|
3869 |
+
padding: 3px 7px;
|
3870 |
+
font-size: 12px;
|
3871 |
+
font-weight: bold;
|
3872 |
+
line-height: 1;
|
3873 |
+
color: #ffffff;
|
3874 |
+
text-align: center;
|
3875 |
+
white-space: nowrap;
|
3876 |
+
vertical-align: baseline;
|
3877 |
+
background-color: #999999;
|
3878 |
+
border-radius: 10px;
|
3879 |
+
}
|
3880 |
+
.sdf-admin .badge:empty {
|
3881 |
+
display: none;
|
3882 |
+
}
|
3883 |
+
|
3884 |
+
.sdf-admin a.badge:hover,
|
3885 |
+
.sdf-admin a.badge:focus {
|
3886 |
+
color: #ffffff;
|
3887 |
+
text-decoration: none;
|
3888 |
+
cursor: pointer;
|
3889 |
+
}
|
3890 |
+
.sdf-admin .btn .badge {
|
3891 |
+
position: relative;
|
3892 |
+
top: -1px;
|
3893 |
+
}
|
3894 |
+
|
3895 |
+
.sdf-admin a.list-group-item.active > .badge,.sdf-admin .nav-pills > .active > a > .badge {
|
3896 |
+
color: #ed941e;
|
3897 |
+
background-color: #ffffff;
|
3898 |
+
}
|
3899 |
+
.sdf-admin .nav-pills > li > a > .badge {
|
3900 |
+
margin-left: 3px;
|
3901 |
+
}
|
3902 |
+
.sdf-admin .jumbotron {
|
3903 |
+
padding: 30px;
|
3904 |
+
margin-bottom: 30px;
|
3905 |
+
font-size: 21px;
|
3906 |
+
font-weight: 200;
|
3907 |
+
line-height: 2.1428571435;
|
3908 |
+
color: inherit;
|
3909 |
+
background-color: #eeeeee;
|
3910 |
+
}
|
3911 |
+
.sdf-admin .jumbotron h1 {
|
3912 |
+
line-height: 1;
|
3913 |
+
color: inherit;
|
3914 |
+
}
|
3915 |
+
.sdf-admin .jumbotron p {
|
3916 |
+
line-height: 1.4;
|
3917 |
+
}
|
3918 |
+
.sdf-admin .container .jumbotron {
|
3919 |
+
border-radius: 6px;
|
3920 |
+
}
|
3921 |
+
|
3922 |
+
@media screen and (min-width: 768px) {
|
3923 |
+
.sdf-admin .jumbotron {
|
3924 |
+
padding-top: 48px;
|
3925 |
+
padding-bottom: 48px;
|
3926 |
+
}
|
3927 |
+
.sdf-admin .container .jumbotron {
|
3928 |
+
padding-right: 60px;
|
3929 |
+
padding-left: 60px;
|
3930 |
+
}
|
3931 |
+
.sdf-admin .jumbotron h1 {
|
3932 |
+
font-size: 63px;
|
3933 |
+
}
|
3934 |
+
}
|
3935 |
+
.sdf-admin .thumbnail {
|
3936 |
+
display: inline-block;
|
3937 |
+
display: block;
|
3938 |
+
height: auto;
|
3939 |
+
max-width: 100%;
|
3940 |
+
padding: 4px;
|
3941 |
+
line-height: 1.428571429;
|
3942 |
+
background-color: #ffffff;
|
3943 |
+
border: 1px solid #dddddd;
|
3944 |
+
border-radius: 4px;
|
3945 |
+
-webkit-transition: all 0.2s ease-in-out;
|
3946 |
+
transition: all 0.2s ease-in-out;
|
3947 |
+
}
|
3948 |
+
.sdf-admin .thumbnail > img {
|
3949 |
+
display: block;
|
3950 |
+
height: auto;
|
3951 |
+
max-width: 100%;
|
3952 |
+
}
|
3953 |
+
|
3954 |
+
.sdf-admin a.thumbnail:hover,
|
3955 |
+
.sdf-admin a.thumbnail:focus {
|
3956 |
+
border-color: #ed941e;
|
3957 |
+
}
|
3958 |
+
.sdf-admin .thumbnail > img {
|
3959 |
+
margin-right: auto;
|
3960 |
+
margin-left: auto;
|
3961 |
+
}
|
3962 |
+
.sdf-admin .thumbnail .caption {
|
3963 |
+
padding: 9px;
|
3964 |
+
color: #333333;
|
3965 |
+
}
|
3966 |
+
.sdf-admin .alert {
|
3967 |
+
padding: 15px;
|
3968 |
+
margin-bottom: 20px;
|
3969 |
+
border: 1px solid transparent;
|
3970 |
+
border-radius: 4px;
|
3971 |
+
}
|
3972 |
+
.sdf-admin .alert h4 {
|
3973 |
+
margin-top: 0;
|
3974 |
+
color: inherit;
|
3975 |
+
}
|
3976 |
+
.sdf-admin .alert .alert-link {
|
3977 |
+
font-weight: bold;
|
3978 |
+
}
|
3979 |
+
.sdf-admin .alert > p,.sdf-admin .alert > ul {
|
3980 |
+
margin-bottom: 0;
|
3981 |
+
}
|
3982 |
+
.sdf-admin .alert > p + p {
|
3983 |
+
margin-top: 5px;
|
3984 |
+
}
|
3985 |
+
.sdf-admin .alert-dismissable {
|
3986 |
+
padding-right: 35px;
|
3987 |
+
}
|
3988 |
+
.sdf-admin .alert-dismissable .close {
|
3989 |
+
position: relative;
|
3990 |
+
top: -2px;
|
3991 |
+
right: -21px;
|
3992 |
+
color: inherit;
|
3993 |
+
}
|
3994 |
+
.sdf-admin .alert-success {
|
3995 |
+
color: #468847;
|
3996 |
+
background-color: #dff0d8;
|
3997 |
+
border-color: #d6e9c6;
|
3998 |
+
}
|
3999 |
+
.sdf-admin .alert-success hr {
|
4000 |
+
border-top-color: #c9e2b3;
|
4001 |
+
}
|
4002 |
+
.sdf-admin .alert-success .alert-link {
|
4003 |
+
color: #356635;
|
4004 |
+
}
|
4005 |
+
.sdf-admin .alert-info {
|
4006 |
+
color: #3a87ad;
|
4007 |
+
background-color: #d9edf7;
|
4008 |
+
border-color: #bce8f1;
|
4009 |
+
}
|
4010 |
+
.sdf-admin .alert-info hr {
|
4011 |
+
border-top-color: #a6e1ec;
|
4012 |
+
}
|
4013 |
+
.sdf-admin .alert-info .alert-link {
|
4014 |
+
color: #2d6987;
|
4015 |
+
}
|
4016 |
+
.sdf-admin .alert-warning {
|
4017 |
+
color: #c09853;
|
4018 |
+
background-color: #fcf8e3;
|
4019 |
+
border-color: #fbeed5;
|
4020 |
+
}
|
4021 |
+
.sdf-admin .alert-warning hr {
|
4022 |
+
border-top-color: #f8e5be;
|
4023 |
+
}
|
4024 |
+
.sdf-admin .alert-warning .alert-link {
|
4025 |
+
color: #a47e3c;
|
4026 |
+
}
|
4027 |
+
.sdf-admin .alert-danger {
|
4028 |
+
color: #b94a48;
|
4029 |
+
background-color: #f2dede;
|
4030 |
+
border-color: #eed3d7;
|
4031 |
+
}
|
4032 |
+
.sdf-admin .alert-danger hr {
|
4033 |
+
border-top-color: #e6c1c7;
|
4034 |
+
}
|
4035 |
+
.sdf-admin .alert-danger .alert-link {
|
4036 |
+
color: #953b39;
|
4037 |
+
}
|
4038 |
+
|
4039 |
+
@-webkit-keyframes progress-bar-stripes {
|
4040 |
+
from {
|
4041 |
+
background-position: 40px 0;
|
4042 |
+
}
|
4043 |
+
to {
|
4044 |
+
background-position: 0 0;
|
4045 |
+
}
|
4046 |
+
}
|
4047 |
+
|
4048 |
+
@-moz-keyframes progress-bar-stripes {
|
4049 |
+
from {
|
4050 |
+
background-position: 40px 0;
|
4051 |
+
}
|
4052 |
+
to {
|
4053 |
+
background-position: 0 0;
|
4054 |
+
}
|
4055 |
+
}
|
4056 |
+
|
4057 |
+
@-o-keyframes progress-bar-stripes {
|
4058 |
+
from {
|
4059 |
+
background-position: 0 0;
|
4060 |
+
}
|
4061 |
+
to {
|
4062 |
+
background-position: 40px 0;
|
4063 |
+
}
|
4064 |
+
}
|
4065 |
+
|
4066 |
+
@keyframes progress-bar-stripes {
|
4067 |
+
from {
|
4068 |
+
background-position: 40px 0;
|
4069 |
+
}
|
4070 |
+
to {
|
4071 |
+
background-position: 0 0;
|
4072 |
+
}
|
4073 |
+
}
|
4074 |
+
.sdf-admin .progress {
|
4075 |
+
height: 20px;
|
4076 |
+
margin-bottom: 20px;
|
4077 |
+
overflow: hidden;
|
4078 |
+
background-color: #f5f5f5;
|
4079 |
+
border-radius: 4px;
|
4080 |
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
4081 |
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
4082 |
+
}
|
4083 |
+
.sdf-admin .progress-bar {
|
4084 |
+
float: left;
|
4085 |
+
width: 0;
|
4086 |
+
height: 100%;
|
4087 |
+
font-size: 12px;
|
4088 |
+
color: #ffffff;
|
4089 |
+
text-align: center;
|
4090 |
+
background-color: #ed941e;
|
4091 |
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
4092 |
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
4093 |
+
-webkit-transition: width 0.6s ease;
|
4094 |
+
transition: width 0.6s ease;
|
4095 |
+
}
|
4096 |
+
.sdf-admin .progress-striped .progress-bar {
|
4097 |
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
4098 |
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4099 |
+
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4100 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4101 |
+
background-size: 40px 40px;
|
4102 |
+
}
|
4103 |
+
.sdf-admin .progress.active .progress-bar {
|
4104 |
+
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
4105 |
+
-moz-animation: progress-bar-stripes 2s linear infinite;
|
4106 |
+
-ms-animation: progress-bar-stripes 2s linear infinite;
|
4107 |
+
-o-animation: progress-bar-stripes 2s linear infinite;
|
4108 |
+
animation: progress-bar-stripes 2s linear infinite;
|
4109 |
+
}
|
4110 |
+
.sdf-admin .progress-bar-success {
|
4111 |
+
background-color: #5cb85c;
|
4112 |
+
}
|
4113 |
+
.sdf-admin .progress-striped .progress-bar-success {
|
4114 |
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
4115 |
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4116 |
+
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4117 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4118 |
+
}
|
4119 |
+
.sdf-admin .progress-bar-info {
|
4120 |
+
background-color: #5bc0de;
|
4121 |
+
}
|
4122 |
+
.sdf-admin .progress-striped .progress-bar-info {
|
4123 |
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
4124 |
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4125 |
+
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4126 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4127 |
+
}
|
4128 |
+
.sdf-admin .progress-bar-warning {
|
4129 |
+
background-color: #f0ad4e;
|
4130 |
+
}
|
4131 |
+
.sdf-admin .progress-striped .progress-bar-warning {
|
4132 |
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
4133 |
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4134 |
+
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4135 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4136 |
+
}
|
4137 |
+
.sdf-admin .progress-bar-danger {
|
4138 |
+
background-color: #d9534f;
|
4139 |
+
}
|
4140 |
+
.sdf-admin .progress-striped .progress-bar-danger {
|
4141 |
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
4142 |
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4143 |
+
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4144 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
4145 |
+
}
|
4146 |
+
.sdf-admin .media,.sdf-admin .media-body {
|
4147 |
+
overflow: hidden;
|
4148 |
+
zoom: 1;
|
4149 |
+
}
|
4150 |
+
.sdf-admin .media,.sdf-admin .media .media {
|
4151 |
+
margin-top: 15px;
|
4152 |
+
}
|
4153 |
+
.sdf-admin .media:first-child {
|
4154 |
+
margin-top: 0;
|
4155 |
+
}
|
4156 |
+
.sdf-admin .media-object {
|
4157 |
+
display: block;
|
4158 |
+
}
|
4159 |
+
.sdf-admin .media-heading {
|
4160 |
+
margin: 0 0 5px;
|
4161 |
+
}
|
4162 |
+
.sdf-admin .media > .pull-left {
|
4163 |
+
margin-right: 10px;
|
4164 |
+
}
|
4165 |
+
.sdf-admin .media > .pull-right {
|
4166 |
+
margin-left: 10px;
|
4167 |
+
}
|
4168 |
+
.sdf-admin .media-list {
|
4169 |
+
padding-left: 0;
|
4170 |
+
list-style: none;
|
4171 |
+
}
|
4172 |
+
.sdf-admin .list-group {
|
4173 |
+
padding-left: 0;
|
4174 |
+
margin-bottom: 20px;
|
4175 |
+
}
|
4176 |
+
.sdf-admin .list-group-item {
|
4177 |
+
position: relative;
|
4178 |
+
display: block;
|
4179 |
+
padding: 10px 15px;
|
4180 |
+
margin-bottom: -1px;
|
4181 |
+
background-color: #ffffff;
|
4182 |
+
border: 1px solid #dddddd;
|
4183 |
+
}
|
4184 |
+
.sdf-admin .list-group-item:first-child {
|
4185 |
+
border-top-right-radius: 4px;
|
4186 |
+
border-top-left-radius: 4px;
|
4187 |
+
}
|
4188 |
+
.sdf-admin .list-group-item:last-child {
|
4189 |
+
margin-bottom: 0;
|
4190 |
+
border-bottom-right-radius: 4px;
|
4191 |
+
border-bottom-left-radius: 4px;
|
4192 |
+
}
|
4193 |
+
.sdf-admin .list-group-item > .badge {
|
4194 |
+
float: right;
|
4195 |
+
}
|
4196 |
+
.sdf-admin .list-group-item > .badge + .badge {
|
4197 |
+
margin-right: 5px;
|
4198 |
+
}
|
4199 |
+
|
4200 |
+
.sdf-admin a.list-group-item {
|
4201 |
+
color: #555555;
|
4202 |
+
}
|
4203 |
+
|
4204 |
+
.sdf-admin a.list-group-item .list-group-item-heading {
|
4205 |
+
color: #333333;
|
4206 |
+
}
|
4207 |
+
|
4208 |
+
.sdf-admin a.list-group-item:hover,
|
4209 |
+
.sdf-admin a.list-group-item:focus {
|
4210 |
+
text-decoration: none;
|
4211 |
+
background-color: #f5f5f5;
|
4212 |
+
}
|
4213 |
+
.sdf-admin .list-group-item.active,.sdf-admin .list-group-item.active:hover,.sdf-admin .list-group-item.active:focus {
|
4214 |
+
z-index: 2;
|
4215 |
+
color: #ffffff;
|
4216 |
+
background-color: #ed941e;
|
4217 |
+
border-color: #ed941e;
|
4218 |
+
}
|
4219 |
+
.sdf-admin .list-group-item.active .list-group-item-heading,.sdf-admin .list-group-item.active:hover .list-group-item-heading,.sdf-admin .list-group-item.active:focus .list-group-item-heading {
|
4220 |
+
color: inherit;
|
4221 |
+
}
|
4222 |
+
.sdf-admin .list-group-item.active .list-group-item-text,.sdf-admin .list-group-item.active:hover .list-group-item-text,.sdf-admin .list-group-item.active:focus .list-group-item-text {
|
4223 |
+
color: #e1edf7;
|
4224 |
+
}
|
4225 |
+
.sdf-admin .list-group-item-heading {
|
4226 |
+
margin-top: 0;
|
4227 |
+
margin-bottom: 5px;
|
4228 |
+
}
|
4229 |
+
.sdf-admin .list-group-item-text {
|
4230 |
+
margin-bottom: 0;
|
4231 |
+
line-height: 1.3;
|
4232 |
+
}
|
4233 |
+
.sdf-admin .panel {
|
4234 |
+
margin-bottom: 20px;
|
4235 |
+
background-color: #ffffff;
|
4236 |
+
border: 1px solid transparent;
|
4237 |
+
border-radius: 4px;
|
4238 |
+
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
4239 |
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
4240 |
+
}
|
4241 |
+
.sdf-admin .panel-body {
|
4242 |
+
padding: 15px;
|
4243 |
+
}
|
4244 |
+
.sdf-admin .panel-body:before,.sdf-admin .panel-body:after {
|
4245 |
+
display: table;
|
4246 |
+
content: " ";
|
4247 |
+
}
|
4248 |
+
.sdf-admin .panel-body:after {
|
4249 |
+
clear: both;
|
4250 |
+
}
|
4251 |
+
.sdf-admin .panel-body:before,.sdf-admin .panel-body:after {
|
4252 |
+
display: table;
|
4253 |
+
content: " ";
|
4254 |
+
}
|
4255 |
+
.sdf-admin .panel-body:after {
|
4256 |
+
clear: both;
|
4257 |
+
}
|
4258 |
+
.sdf-admin .panel > .list-group {
|
4259 |
+
margin-bottom: 0;
|
4260 |
+
}
|
4261 |
+
.sdf-admin .panel > .list-group .list-group-item {
|
4262 |
+
border-width: 1px 0;
|
4263 |
+
}
|
4264 |
+
.sdf-admin .panel > .list-group .list-group-item:first-child {
|
4265 |
+
border-top-right-radius: 0;
|
4266 |
+
border-top-left-radius: 0;
|
4267 |
+
}
|
4268 |
+
.sdf-admin .panel > .list-group .list-group-item:last-child {
|
4269 |
+
border-bottom: 0;
|
4270 |
+
}
|
4271 |
+
.sdf-admin .panel-heading + .list-group .list-group-item:first-child {
|
4272 |
+
border-top-width: 0;
|
4273 |
+
}
|
4274 |
+
.sdf-admin .panel > .table {
|
4275 |
+
margin-bottom: 0;
|
4276 |
+
}
|
4277 |
+
.sdf-admin .panel > .panel-body + .table {
|
4278 |
+
border-top: 1px solid #dddddd;
|
4279 |
+
}
|
4280 |
+
.sdf-admin .panel-heading {
|
4281 |
+
padding: 10px 15px;
|
4282 |
+
border-bottom: 1px solid transparent;
|
4283 |
+
border-top-right-radius: 3px;
|
4284 |
+
border-top-left-radius: 3px;
|
4285 |
+
}
|
4286 |
+
.sdf-admin .panel-title {
|
4287 |
+
margin-top: 0;
|
4288 |
+
margin-bottom: 0;
|
4289 |
+
font-size: 16px;
|
4290 |
+
}
|
4291 |
+
.sdf-admin .panel-title > a {
|
4292 |
+
color: inherit;
|
4293 |
+
}
|
4294 |
+
.sdf-admin .panel-footer {
|
4295 |
+
padding: 10px 15px;
|
4296 |
+
background-color: #f5f5f5;
|
4297 |
+
border-top: 1px solid #dddddd;
|
4298 |
+
border-bottom-right-radius: 3px;
|
4299 |
+
border-bottom-left-radius: 3px;
|
4300 |
+
}
|
4301 |
+
.sdf-admin .panel-group .panel {
|
4302 |
+
margin-bottom: 0;
|
4303 |
+
overflow: hidden;
|
4304 |
+
border-radius: 4px;
|
4305 |
+
}
|
4306 |
+
.sdf-admin .panel-group .panel + .panel {
|
4307 |
+
margin-top: 5px;
|
4308 |
+
}
|
4309 |
+
.sdf-admin .panel-group .panel-heading {
|
4310 |
+
border-bottom: 0;
|
4311 |
+
}
|
4312 |
+
.sdf-admin .panel-group .panel-heading + .panel-collapse .panel-body {
|
4313 |
+
border-top: 1px solid #dddddd;
|
4314 |
+
}
|
4315 |
+
.sdf-admin .panel-group .panel-footer {
|
4316 |
+
border-top: 0;
|
4317 |
+
}
|
4318 |
+
.sdf-admin .panel-group .panel-footer + .panel-collapse .panel-body {
|
4319 |
+
border-bottom: 1px solid #dddddd;
|
4320 |
+
}
|
4321 |
+
.sdf-admin .panel-default {
|
4322 |
+
border-color: #dddddd;
|
4323 |
+
}
|
4324 |
+
.sdf-admin .panel-default > .panel-heading {
|
4325 |
+
color: #333333;
|
4326 |
+
background-color: #f5f5f5;
|
4327 |
+
border-color: #dddddd;
|
4328 |
+
}
|
4329 |
+
.sdf-admin .panel-default > .panel-heading + .panel-collapse .panel-body {
|
4330 |
+
border-top-color: #dddddd;
|
4331 |
+
}
|
4332 |
+
.sdf-admin .panel-default > .panel-footer + .panel-collapse .panel-body {
|
4333 |
+
border-bottom-color: #dddddd;
|
4334 |
+
}
|
4335 |
+
.sdf-admin .panel-primary {
|
4336 |
+
border-color: #428bca;
|
4337 |
+
}
|
4338 |
+
.sdf-admin .panel-primary > .panel-heading {
|
4339 |
+
color: #ffffff;
|
4340 |
+
background-color: #428bca;
|
4341 |
+
border-color: #428bca;
|
4342 |
+
}
|
4343 |
+
.sdf-admin .panel-primary > .panel-heading + .panel-collapse .panel-body {
|
4344 |
+
border-top-color: #428bca;
|
4345 |
+
}
|
4346 |
+
.sdf-admin .panel-primary > .panel-footer + .panel-collapse .panel-body {
|
4347 |
+
border-bottom-color: #428bca;
|
4348 |
+
}
|
4349 |
+
.sdf-admin .panel-success {
|
4350 |
+
border-color: #d6e9c6;
|
4351 |
+
}
|
4352 |
+
.sdf-admin .panel-success > .panel-heading {
|
4353 |
+
color: #468847;
|
4354 |
+
background-color: #dff0d8;
|
4355 |
+
border-color: #d6e9c6;
|
4356 |
+
}
|
4357 |
+
.sdf-admin .panel-success > .panel-heading + .panel-collapse .panel-body {
|
4358 |
+
border-top-color: #d6e9c6;
|
4359 |
+
}
|
4360 |
+
.sdf-admin .panel-success > .panel-footer + .panel-collapse .panel-body {
|
4361 |
+
border-bottom-color: #d6e9c6;
|
4362 |
+
}
|
4363 |
+
.sdf-admin .panel-warning {
|
4364 |
+
border-color: #fbeed5;
|
4365 |
+
}
|
4366 |
+
.sdf-admin .panel-warning > .panel-heading {
|
4367 |
+
color: #c09853;
|
4368 |
+
background-color: #fcf8e3;
|
4369 |
+
border-color: #fbeed5;
|
4370 |
+
}
|
4371 |
+
.sdf-admin .panel-warning > .panel-heading + .panel-collapse .panel-body {
|
4372 |
+
border-top-color: #fbeed5;
|
4373 |
+
}
|
4374 |
+
.sdf-admin .panel-warning > .panel-footer + .panel-collapse .panel-body {
|
4375 |
+
border-bottom-color: #fbeed5;
|
4376 |
+
}
|
4377 |
+
.sdf-admin .panel-danger {
|
4378 |
+
border-color: #eed3d7;
|
4379 |
+
}
|
4380 |
+
.sdf-admin .panel-danger > .panel-heading {
|
4381 |
+
color: #b94a48;
|
4382 |
+
background-color: #f2dede;
|
4383 |
+
border-color: #eed3d7;
|
4384 |
+
}
|
4385 |
+
.sdf-admin .panel-danger > .panel-heading + .panel-collapse .panel-body {
|
4386 |
+
border-top-color: #eed3d7;
|
4387 |
+
}
|
4388 |
+
.sdf-admin .panel-danger > .panel-footer + .panel-collapse .panel-body {
|
4389 |
+
border-bottom-color: #eed3d7;
|
4390 |
+
}
|
4391 |
+
.sdf-admin .panel-info {
|
4392 |
+
border-color: #bce8f1;
|
4393 |
+
}
|
4394 |
+
.sdf-admin .panel-info > .panel-heading {
|
4395 |
+
color: #3a87ad;
|
4396 |
+
background-color: #d9edf7;
|
4397 |
+
border-color: #bce8f1;
|
4398 |
+
}
|
4399 |
+
.sdf-admin .panel-info > .panel-heading + .panel-collapse .panel-body {
|
4400 |
+
border-top-color: #bce8f1;
|
4401 |
+
}
|
4402 |
+
.sdf-admin .panel-info > .panel-footer + .panel-collapse .panel-body {
|
4403 |
+
border-bottom-color: #bce8f1;
|
4404 |
+
}
|
4405 |
+
.sdf-admin .well {
|
4406 |
+
min-height: 20px;
|
4407 |
+
padding: 19px;
|
4408 |
+
margin-bottom: 20px;
|
4409 |
+
background-color: #f5f5f5;
|
4410 |
+
border: 1px solid #e3e3e3;
|
4411 |
+
border-radius: 4px;
|
4412 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
4413 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
4414 |
+
}
|
4415 |
+
.sdf-admin .well blockquote {
|
4416 |
+
border-color: #ddd;
|
4417 |
+
border-color: rgba(0, 0, 0, 0.15);
|
4418 |
+
}
|
4419 |
+
.sdf-admin .well-lg {
|
4420 |
+
padding: 24px;
|
4421 |
+
border-radius: 6px;
|
4422 |
+
}
|
4423 |
+
.sdf-admin .well-sm {
|
4424 |
+
padding: 9px;
|
4425 |
+
border-radius: 3px;
|
4426 |
+
}
|
4427 |
+
.sdf-admin .close {
|
4428 |
+
float: right;
|
4429 |
+
font-size: 21px;
|
4430 |
+
font-weight: bold;
|
4431 |
+
line-height: 1;
|
4432 |
+
color: #000000;
|
4433 |
+
text-shadow: 0 1px 0 #ffffff;
|
4434 |
+
opacity: 0.2;
|
4435 |
+
filter: alpha(opacity=20);
|
4436 |
+
}
|
4437 |
+
.sdf-admin .close:hover,.sdf-admin .close:focus {
|
4438 |
+
color: #000000;
|
4439 |
+
text-decoration: none;
|
4440 |
+
cursor: pointer;
|
4441 |
+
opacity: 0.5;
|
4442 |
+
filter: alpha(opacity=50);
|
4443 |
+
}
|
4444 |
+
|
4445 |
+
.sdf-admin button.close {
|
4446 |
+
padding: 0;
|
4447 |
+
cursor: pointer;
|
4448 |
+
background: transparent;
|
4449 |
+
border: 0;
|
4450 |
+
-webkit-appearance: none;
|
4451 |
+
}
|
4452 |
+
.sdf-admin .modal-open {
|
4453 |
+
overflow: hidden;
|
4454 |
+
}
|
4455 |
+
|
4456 |
+
body.modal-open,.sdf-admin .modal-open .navbar-fixed-top,.sdf-admin .modal-open .navbar-fixed-bottom {
|
4457 |
+
margin-right: 15px;
|
4458 |
+
}
|
4459 |
+
.sdf-admin .modal {
|
4460 |
+
position: fixed;
|
4461 |
+
top: 0;
|
4462 |
+
right: 0;
|
4463 |
+
bottom: 0;
|
4464 |
+
left: 0;
|
4465 |
+
z-index: 1040;
|
4466 |
+
display: none;
|
4467 |
+
overflow: auto;
|
4468 |
+
overflow-y: scroll;
|
4469 |
+
}
|
4470 |
+
.sdf-admin .modal.fade .modal-dialog {
|
4471 |
+
-webkit-transform: translate(0, -25%);
|
4472 |
+
-ms-transform: translate(0, -25%);
|
4473 |
+
transform: translate(0, -25%);
|
4474 |
+
-webkit-transition: -webkit-transform 0.3s ease-out;
|
4475 |
+
-moz-transition: -moz-transform 0.3s ease-out;
|
4476 |
+
-o-transition: -o-transform 0.3s ease-out;
|
4477 |
+
transition: transform 0.3s ease-out;
|
4478 |
+
}
|
4479 |
+
.sdf-admin .modal.in .modal-dialog {
|
4480 |
+
-webkit-transform: translate(0, 0);
|
4481 |
+
-ms-transform: translate(0, 0);
|
4482 |
+
transform: translate(0, 0);
|
4483 |
+
}
|
4484 |
+
.sdf-admin .modal-dialog {
|
4485 |
+
z-index: 1050;
|
4486 |
+
width: auto;
|
4487 |
+
padding: 10px;
|
4488 |
+
margin-right: auto;
|
4489 |
+
margin-left: auto;
|
4490 |
+
}
|
4491 |
+
.sdf-admin .modal-content {
|
4492 |
+
position: relative;
|
4493 |
+
background-color: #ffffff;
|
4494 |
+
border: 1px solid #999999;
|
4495 |
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
4496 |
+
border-radius: 6px;
|
4497 |
+
outline: none;
|
4498 |
+
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
4499 |
+
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
4500 |
+
background-clip: padding-box;
|
4501 |
+
}
|
4502 |
+
.sdf-admin .modal-backdrop {
|
4503 |
+
position: fixed;
|
4504 |
+
top: 0;
|
4505 |
+
right: 0;
|
4506 |
+
bottom: 0;
|
4507 |
+
left: 0;
|
4508 |
+
z-index: 1030;
|
4509 |
+
background-color: #000000;
|
4510 |
+
}
|
4511 |
+
.sdf-admin .modal-backdrop.fade {
|
4512 |
+
opacity: 0;
|
4513 |
+
filter: alpha(opacity=0);
|
4514 |
+
}
|
4515 |
+
.sdf-admin .modal-backdrop.in {
|
4516 |
+
opacity: 0.5;
|
4517 |
+
filter: alpha(opacity=50);
|
4518 |
+
}
|
4519 |
+
.sdf-admin .modal-header {
|
4520 |
+
min-height: 16.428571429px;
|
4521 |
+
padding: 15px;
|
4522 |
+
border-bottom: 1px solid #e5e5e5;
|
4523 |
+
}
|
4524 |
+
.sdf-admin .modal-header .close {
|
4525 |
+
margin-top: -2px;
|
4526 |
+
}
|
4527 |
+
.sdf-admin .modal-title {
|
4528 |
+
margin: 0;
|
4529 |
+
line-height: 1.428571429;
|
4530 |
+
}
|
4531 |
+
.sdf-admin .modal-body {
|
4532 |
+
position: relative;
|
4533 |
+
padding: 20px;
|
4534 |
+
}
|
4535 |
+
.sdf-admin .modal-footer {
|
4536 |
+
padding: 19px 20px 20px;
|
4537 |
+
margin-top: 15px;
|
4538 |
+
text-align: right;
|
4539 |
+
border-top: 1px solid #e5e5e5;
|
4540 |
+
}
|
4541 |
+
.sdf-admin .modal-footer:before,.sdf-admin .modal-footer:after {
|
4542 |
+
display: table;
|
4543 |
+
content: " ";
|
4544 |
+
}
|
4545 |
+
.sdf-admin .modal-footer:after {
|
4546 |
+
clear: both;
|
4547 |
+
}
|
4548 |
+
.sdf-admin .modal-footer:before,.sdf-admin .modal-footer:after {
|
4549 |
+
display: table;
|
4550 |
+
content: " ";
|
4551 |
+
}
|
4552 |
+
.sdf-admin .modal-footer:after {
|
4553 |
+
clear: both;
|
4554 |
+
}
|
4555 |
+
.sdf-admin .modal-footer .btn + .btn {
|
4556 |
+
margin-bottom: 0;
|
4557 |
+
margin-left: 5px;
|
4558 |
+
}
|
4559 |
+
.sdf-admin .modal-footer .btn-group .btn + .btn {
|
4560 |
+
margin-left: -1px;
|
4561 |
+
}
|
4562 |
+
.sdf-admin .modal-footer .btn-block + .btn-block {
|
4563 |
+
margin-left: 0;
|
4564 |
+
}
|
4565 |
+
|
4566 |
+
@media screen and (min-width: 768px) {
|
4567 |
+
.sdf-admin .modal-dialog {
|
4568 |
+
right: auto;
|
4569 |
+
left: 50%;
|
4570 |
+
width: 600px;
|
4571 |
+
padding-top: 30px;
|
4572 |
+
padding-bottom: 30px;
|
4573 |
+
}
|
4574 |
+
.sdf-admin .modal-content {
|
4575 |
+
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
4576 |
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
4577 |
+
}
|
4578 |
+
}
|
4579 |
+
.sdf-admin .tooltip {
|
4580 |
+
position: absolute;
|
4581 |
+
z-index: 1030;
|
4582 |
+
display: block;
|
4583 |
+
font-size: 12px;
|
4584 |
+
line-height: 1.4;
|
4585 |
+
opacity: 0;
|
4586 |
+
filter: alpha(opacity=0);
|
4587 |
+
visibility: visible;
|
4588 |
+
}
|
4589 |
+
.sdf-admin .tooltip.in {
|
4590 |
+
opacity: 0.9;
|
4591 |
+
filter: alpha(opacity=90);
|
4592 |
+
}
|
4593 |
+
.sdf-admin .tooltip.top {
|
4594 |
+
padding: 5px 0;
|
4595 |
+
margin-top: -3px;
|
4596 |
+
}
|
4597 |
+
.sdf-admin .tooltip.right {
|
4598 |
+
padding: 0 5px;
|
4599 |
+
margin-left: 3px;
|
4600 |
+
}
|
4601 |
+
.sdf-admin .tooltip.bottom {
|
4602 |
+
padding: 5px 0;
|
4603 |
+
margin-top: 3px;
|
4604 |
+
}
|
4605 |
+
.sdf-admin .tooltip.left {
|
4606 |
+
padding: 0 5px;
|
4607 |
+
margin-left: -3px;
|
4608 |
+
}
|
4609 |
+
.sdf-admin .tooltip-inner {
|
4610 |
+
max-width: 200px;
|
4611 |
+
padding: 3px 8px;
|
4612 |
+
color: #ffffff;
|
4613 |
+
text-align: center;
|
4614 |
+
text-decoration: none;
|
4615 |
+
background-color: #000000;
|
4616 |
+
border-radius: 4px;
|
4617 |
+
}
|
4618 |
+
.sdf-admin .tooltip-arrow {
|
4619 |
+
position: absolute;
|
4620 |
+
width: 0;
|
4621 |
+
height: 0;
|
4622 |
+
border-color: transparent;
|
4623 |
+
border-style: solid;
|
4624 |
+
}
|
4625 |
+
.sdf-admin .tooltip.top .tooltip-arrow {
|
4626 |
+
bottom: 0;
|
4627 |
+
left: 50%;
|
4628 |
+
margin-left: -5px;
|
4629 |
+
border-top-color: #000000;
|
4630 |
+
border-width: 5px 5px 0;
|
4631 |
+
}
|
4632 |
+
.sdf-admin .tooltip.top-left .tooltip-arrow {
|
4633 |
+
bottom: 0;
|
4634 |
+
left: 5px;
|
4635 |
+
border-top-color: #000000;
|
4636 |
+
border-width: 5px 5px 0;
|
4637 |
+
}
|
4638 |
+
.sdf-admin .tooltip.top-right .tooltip-arrow {
|
4639 |
+
right: 5px;
|
4640 |
+
bottom: 0;
|
4641 |
+
border-top-color: #000000;
|
4642 |
+
border-width: 5px 5px 0;
|
4643 |
+
}
|
4644 |
+
.sdf-admin .tooltip.right .tooltip-arrow {
|
4645 |
+
top: 50%;
|
4646 |
+
left: 0;
|
4647 |
+
margin-top: -5px;
|
4648 |
+
border-right-color: #000000;
|
4649 |
+
border-width: 5px 5px 5px 0;
|
4650 |
+
}
|
4651 |
+
.sdf-admin .tooltip.left .tooltip-arrow {
|
4652 |
+
top: 50%;
|
4653 |
+
right: 0;
|
4654 |
+
margin-top: -5px;
|
4655 |
+
border-left-color: #000000;
|
4656 |
+
border-width: 5px 0 5px 5px;
|
4657 |
+
}
|
4658 |
+
.sdf-admin .tooltip.bottom .tooltip-arrow {
|
4659 |
+
top: 0;
|
4660 |
+
left: 50%;
|
4661 |
+
margin-left: -5px;
|
4662 |
+
border-bottom-color: #000000;
|
4663 |
+
border-width: 0 5px 5px;
|
4664 |
+
}
|
4665 |
+
.sdf-admin .tooltip.bottom-left .tooltip-arrow {
|
4666 |
+
top: 0;
|
4667 |
+
left: 5px;
|
4668 |
+
border-bottom-color: #000000;
|
4669 |
+
border-width: 0 5px 5px;
|
4670 |
+
}
|
4671 |
+
.sdf-admin .tooltip.bottom-right .tooltip-arrow {
|
4672 |
+
top: 0;
|
4673 |
+
right: 5px;
|
4674 |
+
border-bottom-color: #000000;
|
4675 |
+
border-width: 0 5px 5px;
|
4676 |
+
}
|
4677 |
+
.sdf-admin .popover {
|
4678 |
+
position: absolute;
|
4679 |
+
top: 0;
|
4680 |
+
left: 0;
|
4681 |
+
z-index: 1010;
|
4682 |
+
display: none;
|
4683 |
+
max-width: 276px;
|
4684 |
+
padding: 1px;
|
4685 |
+
text-align: left;
|
4686 |
+
white-space: normal;
|
4687 |
+
background-color: #ffffff;
|
4688 |
+
border: 1px solid #cccccc;
|
4689 |
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
4690 |
+
border-radius: 6px;
|
4691 |
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
4692 |
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
4693 |
+
background-clip: padding-box;
|
4694 |
+
}
|
4695 |
+
.sdf-admin .popover.top {
|
4696 |
+
margin-top: -10px;
|
4697 |
+
}
|
4698 |
+
.sdf-admin .popover.right {
|
4699 |
+
margin-left: 10px;
|
4700 |
+
}
|
4701 |
+
.sdf-admin .popover.bottom {
|
4702 |
+
margin-top: 10px;
|
4703 |
+
}
|
4704 |
+
.sdf-admin .popover.left {
|
4705 |
+
margin-left: -10px;
|
4706 |
+
}
|
4707 |
+
.sdf-admin .popover-title {
|
4708 |
+
padding: 8px 14px;
|
4709 |
+
margin: 0;
|
4710 |
+
font-size: 14px;
|
4711 |
+
font-weight: normal;
|
4712 |
+
line-height: 18px;
|
4713 |
+
background-color: #f7f7f7;
|
4714 |
+
border-bottom: 1px solid #ebebeb;
|
4715 |
+
border-radius: 5px 5px 0 0;
|
4716 |
+
}
|
4717 |
+
.sdf-admin .popover-content {
|
4718 |
+
padding: 9px 14px;
|
4719 |
+
}
|
4720 |
+
.sdf-admin .popover .arrow,.sdf-admin .popover .arrow:after {
|
4721 |
+
position: absolute;
|
4722 |
+
display: block;
|
4723 |
+
width: 0;
|
4724 |
+
height: 0;
|
4725 |
+
border-color: transparent;
|
4726 |
+
border-style: solid;
|
4727 |
+
}
|
4728 |
+
.sdf-admin .popover .arrow {
|
4729 |
+
border-width: 11px;
|
4730 |
+
}
|
4731 |
+
.sdf-admin .popover .arrow:after {
|
4732 |
+
border-width: 10px;
|
4733 |
+
content: "";
|
4734 |
+
}
|
4735 |
+
.sdf-admin .popover.top .arrow {
|
4736 |
+
bottom: -11px;
|
4737 |
+
left: 50%;
|
4738 |
+
margin-left: -11px;
|
4739 |
+
border-top-color: #999999;
|
4740 |
+
border-top-color: rgba(0, 0, 0, 0.25);
|
4741 |
+
border-bottom-width: 0;
|
4742 |
+
}
|
4743 |
+
.sdf-admin .popover.top .arrow:after {
|
4744 |
+
bottom: 1px;
|
4745 |
+
margin-left: -10px;
|
4746 |
+
border-top-color: #ffffff;
|
4747 |
+
border-bottom-width: 0;
|
4748 |
+
content: " ";
|
4749 |
+
}
|
4750 |
+
.sdf-admin .popover.right .arrow {
|
4751 |
+
top: 50%;
|
4752 |
+
left: -11px;
|
4753 |
+
margin-top: -11px;
|
4754 |
+
border-right-color: #999999;
|
4755 |
+
border-right-color: rgba(0, 0, 0, 0.25);
|
4756 |
+
border-left-width: 0;
|
4757 |
+
}
|
4758 |
+
.sdf-admin .popover.right .arrow:after {
|
4759 |
+
bottom: -10px;
|
4760 |
+
left: 1px;
|
4761 |
+
border-right-color: #ffffff;
|
4762 |
+
border-left-width: 0;
|
4763 |
+
content: " ";
|
4764 |
+
}
|
4765 |
+
.sdf-admin .popover.bottom .arrow {
|
4766 |
+
top: -11px;
|
4767 |
+
left: 50%;
|
4768 |
+
margin-left: -11px;
|
4769 |
+
border-bottom-color: #999999;
|
4770 |
+
border-bottom-color: rgba(0, 0, 0, 0.25);
|
4771 |
+
border-top-width: 0;
|
4772 |
+
}
|
4773 |
+
.sdf-admin .popover.bottom .arrow:after {
|
4774 |
+
top: 1px;
|
4775 |
+
margin-left: -10px;
|
4776 |
+
border-bottom-color: #ffffff;
|
4777 |
+
border-top-width: 0;
|
4778 |
+
content: " ";
|
4779 |
+
}
|
4780 |
+
.sdf-admin .popover.left .arrow {
|
4781 |
+
top: 50%;
|
4782 |
+
right: -11px;
|
4783 |
+
margin-top: -11px;
|
4784 |
+
border-left-color: #999999;
|
4785 |
+
border-left-color: rgba(0, 0, 0, 0.25);
|
4786 |
+
border-right-width: 0;
|
4787 |
+
}
|
4788 |
+
.sdf-admin .popover.left .arrow:after {
|
4789 |
+
right: 1px;
|
4790 |
+
bottom: -10px;
|
4791 |
+
border-left-color: #ffffff;
|
4792 |
+
border-right-width: 0;
|
4793 |
+
content: " ";
|
4794 |
+
}
|
4795 |
+
.sdf-admin .carousel {
|
4796 |
+
position: relative;
|
4797 |
+
}
|
4798 |
+
.sdf-admin .carousel-inner {
|
4799 |
+
position: relative;
|
4800 |
+
width: 100%;
|
4801 |
+
overflow: hidden;
|
4802 |
+
}
|
4803 |
+
.sdf-admin .carousel-inner > .item {
|
4804 |
+
position: relative;
|
4805 |
+
display: none;
|
4806 |
+
-webkit-transition: 0.6s ease-in-out left;
|
4807 |
+
transition: 0.6s ease-in-out left;
|
4808 |
+
}
|
4809 |
+
.sdf-admin .carousel-inner > .item > img,.sdf-admin .carousel-inner > .item > a > img {
|
4810 |
+
display: block;
|
4811 |
+
height: auto;
|
4812 |
+
max-width: 100%;
|
4813 |
+
line-height: 1;
|
4814 |
+
}
|
4815 |
+
.sdf-admin .carousel-inner > .active,.sdf-admin .carousel-inner > .next,.sdf-admin .carousel-inner > .prev {
|
4816 |
+
display: block;
|
4817 |
+
}
|
4818 |
+
.sdf-admin .carousel-inner > .active {
|
4819 |
+
left: 0;
|
4820 |
+
}
|
4821 |
+
.sdf-admin .carousel-inner > .next,.sdf-admin .carousel-inner > .prev {
|
4822 |
+
position: absolute;
|
4823 |
+
top: 0;
|
4824 |
+
width: 100%;
|
4825 |
+
}
|
4826 |
+
.sdf-admin .carousel-inner > .next {
|
4827 |
+
left: 100%;
|
4828 |
+
}
|
4829 |
+
.sdf-admin .carousel-inner > .prev {
|
4830 |
+
left: -100%;
|
4831 |
+
}
|
4832 |
+
.sdf-admin .carousel-inner > .next.left,.sdf-admin .carousel-inner > .prev.right {
|
4833 |
+
left: 0;
|
4834 |
+
}
|
4835 |
+
.sdf-admin .carousel-inner > .active.left {
|
4836 |
+
left: -100%;
|
4837 |
+
}
|
4838 |
+
.sdf-admin .carousel-inner > .active.right {
|
4839 |
+
left: 100%;
|
4840 |
+
}
|
4841 |
+
.sdf-admin .carousel-control {
|
4842 |
+
position: absolute;
|
4843 |
+
top: 0;
|
4844 |
+
bottom: 0;
|
4845 |
+
left: 0;
|
4846 |
+
width: 15%;
|
4847 |
+
font-size: 20px;
|
4848 |
+
color: #ffffff;
|
4849 |
+
text-align: center;
|
4850 |
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
4851 |
+
opacity: 0.5;
|
4852 |
+
filter: alpha(opacity=50);
|
4853 |
+
}
|
4854 |
+
.sdf-admin .carousel-control.left {
|
4855 |
+
background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
|
4856 |
+
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
|
4857 |
+
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
|
4858 |
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
|
4859 |
+
background-repeat: repeat-x;
|
4860 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
4861 |
+
}
|
4862 |
+
.sdf-admin .carousel-control.right {
|
4863 |
+
right: 0;
|
4864 |
+
left: auto;
|
4865 |
+
background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
|
4866 |
+
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
|
4867 |
+
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
|
4868 |
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
|
4869 |
+
background-repeat: repeat-x;
|
4870 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
4871 |
+
}
|
4872 |
+
.sdf-admin .carousel-control:hover,.sdf-admin .carousel-control:focus {
|
4873 |
+
color: #ffffff;
|
4874 |
+
text-decoration: none;
|
4875 |
+
opacity: 0.9;
|
4876 |
+
filter: alpha(opacity=90);
|
4877 |
+
}
|
4878 |
+
.sdf-admin .carousel-control .icon-prev,.sdf-admin .carousel-control .icon-next,.sdf-admin .carousel-control .glyphicon-chevron-left,.sdf-admin .carousel-control .glyphicon-chevron-right {
|
4879 |
+
position: absolute;
|
4880 |
+
top: 50%;
|
4881 |
+
left: 50%;
|
4882 |
+
z-index: 5;
|
4883 |
+
display: inline-block;
|
4884 |
+
}
|
4885 |
+
.sdf-admin .carousel-control .icon-prev,.sdf-admin .carousel-control .icon-next {
|
4886 |
+
width: 20px;
|
4887 |
+
height: 20px;
|
4888 |
+
margin-top: -10px;
|
4889 |
+
margin-left: -10px;
|
4890 |
+
font-family: serif;
|
4891 |
+
}
|
4892 |
+
.sdf-admin .carousel-control .icon-prev:before {
|
4893 |
+
content: '\2039';
|
4894 |
+
}
|
4895 |
+
.sdf-admin .carousel-control .icon-next:before {
|
4896 |
+
content: '\203a';
|
4897 |
+
}
|
4898 |
+
.sdf-admin .carousel-indicators {
|
4899 |
+
position: absolute;
|
4900 |
+
bottom: 10px;
|
4901 |
+
left: 50%;
|
4902 |
+
z-index: 15;
|
4903 |
+
width: 60%;
|
4904 |
+
padding-left: 0;
|
4905 |
+
margin-left: -30%;
|
4906 |
+
text-align: center;
|
4907 |
+
list-style: none;
|
4908 |
+
}
|
4909 |
+
.sdf-admin .carousel-indicators li {
|
4910 |
+
display: inline-block;
|
4911 |
+
width: 10px;
|
4912 |
+
height: 10px;
|
4913 |
+
margin: 1px;
|
4914 |
+
text-indent: -999px;
|
4915 |
+
cursor: pointer;
|
4916 |
+
border: 1px solid #ffffff;
|
4917 |
+
border-radius: 10px;
|
4918 |
+
}
|
4919 |
+
.sdf-admin .carousel-indicators .active {
|
4920 |
+
width: 12px;
|
4921 |
+
height: 12px;
|
4922 |
+
margin: 0;
|
4923 |
+
background-color: #ffffff;
|
4924 |
+
}
|
4925 |
+
.sdf-admin .carousel-caption {
|
4926 |
+
position: absolute;
|
4927 |
+
right: 15%;
|
4928 |
+
bottom: 20px;
|
4929 |
+
left: 15%;
|
4930 |
+
z-index: 10;
|
4931 |
+
padding-top: 20px;
|
4932 |
+
padding-bottom: 20px;
|
4933 |
+
color: #ffffff;
|
4934 |
+
text-align: center;
|
4935 |
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
4936 |
+
}
|
4937 |
+
.sdf-admin .carousel-caption .btn {
|
4938 |
+
text-shadow: none;
|
4939 |
+
}
|
4940 |
+
|
4941 |
+
@media screen and (min-width: 768px) {
|
4942 |
+
.sdf-admin .carousel-control .icon-prev,
|
4943 |
+
.sdf-admin .carousel-control .icon-next {
|
4944 |
+
width: 30px;
|
4945 |
+
height: 30px;
|
4946 |
+
margin-top: -15px;
|
4947 |
+
margin-left: -15px;
|
4948 |
+
font-size: 30px;
|
4949 |
+
}
|
4950 |
+
.sdf-admin .carousel-caption {
|
4951 |
+
right: 20%;
|
4952 |
+
left: 20%;
|
4953 |
+
padding-bottom: 30px;
|
4954 |
+
}
|
4955 |
+
.sdf-admin .carousel-indicators {
|
4956 |
+
bottom: 20px;
|
4957 |
+
}
|
4958 |
+
}
|
4959 |
+
.sdf-admin .clearfix:before,.sdf-admin .clearfix:after {
|
4960 |
+
display: table;
|
4961 |
+
content: " ";
|
4962 |
+
}
|
4963 |
+
.sdf-admin .clearfix:after {
|
4964 |
+
clear: both;
|
4965 |
+
}
|
4966 |
+
.sdf-admin .pull-right {
|
4967 |
+
float: right !important;
|
4968 |
+
}
|
4969 |
+
.sdf-admin .pull-left {
|
4970 |
+
float: left !important;
|
4971 |
+
}
|
4972 |
+
.sdf-admin .hide {
|
4973 |
+
display: none !important;
|
4974 |
+
}
|
4975 |
+
.sdf-admin .show {
|
4976 |
+
display: block !important;
|
4977 |
+
}
|
4978 |
+
.sdf-admin .invisible {
|
4979 |
+
visibility: hidden;
|
4980 |
+
}
|
4981 |
+
.sdf-admin .text-hide {
|
4982 |
+
font: 0/0 a;
|
4983 |
+
color: transparent;
|
4984 |
+
text-shadow: none;
|
4985 |
+
background-color: transparent;
|
4986 |
+
border: 0;
|
4987 |
+
}
|
4988 |
+
.sdf-admin .affix {
|
4989 |
+
position: fixed;
|
4990 |
+
}
|
4991 |
+
|
4992 |
+
@-ms-viewport {
|
4993 |
+
width: device-width;
|
4994 |
+
}
|
4995 |
+
|
4996 |
+
@media screen and (max-width: 400px) {
|
4997 |
+
@-ms-viewport {
|
4998 |
+
width: 320px;
|
4999 |
+
}
|
5000 |
+
}
|
5001 |
+
.sdf-admin .hidden {
|
5002 |
+
display: none !important;
|
5003 |
+
visibility: hidden !important;
|
5004 |
+
}
|
5005 |
+
.sdf-admin .visible-xs {
|
5006 |
+
display: none !important;
|
5007 |
+
}
|
5008 |
+
|
5009 |
+
.sdf-admin tr.visible-xs {
|
5010 |
+
display: none !important;
|
5011 |
+
}
|
5012 |
+
|
5013 |
+
.sdf-admin th.visible-xs,
|
5014 |
+
.sdf-admin td.visible-xs {
|
5015 |
+
display: none !important;
|
5016 |
+
}
|
5017 |
+
|
5018 |
+
@media (max-width: 767px) {
|
5019 |
+
.sdf-admin .visible-xs {
|
5020 |
+
display: block !important;
|
5021 |
+
}
|
5022 |
+
.sdf-admin tr.visible-xs {
|
5023 |
+
display: table-row !important;
|
5024 |
+
}
|
5025 |
+
.sdf-admin th.visible-xs,
|
5026 |
+
.sdf-admin td.visible-xs {
|
5027 |
+
display: table-cell !important;
|
5028 |
+
}
|
5029 |
+
}
|
5030 |
+
|
5031 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
5032 |
+
.sdf-admin .visible-xs.visible-sm {
|
5033 |
+
display: block !important;
|
5034 |
+
}
|
5035 |
+
.sdf-admin tr.visible-xs.visible-sm {
|
5036 |
+
display: table-row !important;
|
5037 |
+
}
|
5038 |
+
.sdf-admin th.visible-xs.visible-sm,
|
5039 |
+
.sdf-admin td.visible-xs.visible-sm {
|
5040 |
+
display: table-cell !important;
|
5041 |
+
}
|
5042 |
+
}
|
5043 |
+
|
5044 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5045 |
+
.sdf-admin .visible-xs.visible-md {
|
5046 |
+
display: block !important;
|
5047 |
+
}
|
5048 |
+
.sdf-admin tr.visible-xs.visible-md {
|
5049 |
+
display: table-row !important;
|
5050 |
+
}
|
5051 |
+
.sdf-admin th.visible-xs.visible-md,
|
5052 |
+
.sdf-admin td.visible-xs.visible-md {
|
5053 |
+
display: table-cell !important;
|
5054 |
+
}
|
5055 |
+
}
|
5056 |
+
|
5057 |
+
@media (min-width: 1200px) {
|
5058 |
+
.sdf-admin .visible-xs.visible-lg {
|
5059 |
+
display: block !important;
|
5060 |
+
}
|
5061 |
+
.sdf-admin tr.visible-xs.visible-lg {
|
5062 |
+
display: table-row !important;
|
5063 |
+
}
|
5064 |
+
.sdf-admin th.visible-xs.visible-lg,
|
5065 |
+
.sdf-admin td.visible-xs.visible-lg {
|
5066 |
+
display: table-cell !important;
|
5067 |
+
}
|
5068 |
+
}
|
5069 |
+
.sdf-admin .visible-sm {
|
5070 |
+
display: none !important;
|
5071 |
+
}
|
5072 |
+
|
5073 |
+
.sdf-admin tr.visible-sm {
|
5074 |
+
display: none !important;
|
5075 |
+
}
|
5076 |
+
|
5077 |
+
.sdf-admin th.visible-sm,
|
5078 |
+
.sdf-admin td.visible-sm {
|
5079 |
+
display: none !important;
|
5080 |
+
}
|
5081 |
+
|
5082 |
+
@media (max-width: 767px) {
|
5083 |
+
.sdf-admin .visible-sm.visible-xs {
|
5084 |
+
display: block !important;
|
5085 |
+
}
|
5086 |
+
.sdf-admin tr.visible-sm.visible-xs {
|
5087 |
+
display: table-row !important;
|
5088 |
+
}
|
5089 |
+
.sdf-admin th.visible-sm.visible-xs,
|
5090 |
+
.sdf-admin td.visible-sm.visible-xs {
|
5091 |
+
display: table-cell !important;
|
5092 |
+
}
|
5093 |
+
}
|
5094 |
+
|
5095 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
5096 |
+
.sdf-admin .visible-sm {
|
5097 |
+
display: block !important;
|
5098 |
+
}
|
5099 |
+
.sdf-admin tr.visible-sm {
|
5100 |
+
display: table-row !important;
|
5101 |
+
}
|
5102 |
+
.sdf-admin th.visible-sm,
|
5103 |
+
.sdf-admin td.visible-sm {
|
5104 |
+
display: table-cell !important;
|
5105 |
+
}
|
5106 |
+
}
|
5107 |
+
|
5108 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5109 |
+
.sdf-admin .visible-sm.visible-md {
|
5110 |
+
display: block !important;
|
5111 |
+
}
|
5112 |
+
.sdf-admin tr.visible-sm.visible-md {
|
5113 |
+
display: table-row !important;
|
5114 |
+
}
|
5115 |
+
.sdf-admin th.visible-sm.visible-md,
|
5116 |
+
.sdf-admin td.visible-sm.visible-md {
|
5117 |
+
display: table-cell !important;
|
5118 |
+
}
|
5119 |
+
}
|
5120 |
+
|
5121 |
+
@media (min-width: 1200px) {
|
5122 |
+
.sdf-admin .visible-sm.visible-lg {
|
5123 |
+
display: block !important;
|
5124 |
+
}
|
5125 |
+
.sdf-admin tr.visible-sm.visible-lg {
|
5126 |
+
display: table-row !important;
|
5127 |
+
}
|
5128 |
+
.sdf-admin th.visible-sm.visible-lg,
|
5129 |
+
.sdf-admin td.visible-sm.visible-lg {
|
5130 |
+
display: table-cell !important;
|
5131 |
+
}
|
5132 |
+
}
|
5133 |
+
.sdf-admin .visible-md {
|
5134 |
+
display: none !important;
|
5135 |
+
}
|
5136 |
+
|
5137 |
+
.sdf-admin tr.visible-md {
|
5138 |
+
display: none !important;
|
5139 |
+
}
|
5140 |
+
|
5141 |
+
.sdf-admin th.visible-md,
|
5142 |
+
.sdf-admin td.visible-md {
|
5143 |
+
display: none !important;
|
5144 |
+
}
|
5145 |
+
|
5146 |
+
@media (max-width: 767px) {
|
5147 |
+
.sdf-admin .visible-md.visible-xs {
|
5148 |
+
display: block !important;
|
5149 |
+
}
|
5150 |
+
.sdf-admin tr.visible-md.visible-xs {
|
5151 |
+
display: table-row !important;
|
5152 |
+
}
|
5153 |
+
.sdf-admin th.visible-md.visible-xs,
|
5154 |
+
.sdf-admin td.visible-md.visible-xs {
|
5155 |
+
display: table-cell !important;
|
5156 |
+
}
|
5157 |
+
}
|
5158 |
+
|
5159 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
5160 |
+
.sdf-admin .visible-md.visible-sm {
|
5161 |
+
display: block !important;
|
5162 |
+
}
|
5163 |
+
.sdf-admin tr.visible-md.visible-sm {
|
5164 |
+
display: table-row !important;
|
5165 |
+
}
|
5166 |
+
.sdf-admin th.visible-md.visible-sm,
|
5167 |
+
.sdf-admin td.visible-md.visible-sm {
|
5168 |
+
display: table-cell !important;
|
5169 |
+
}
|
5170 |
+
}
|
5171 |
+
|
5172 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5173 |
+
.sdf-admin .visible-md {
|
5174 |
+
display: block !important;
|
5175 |
+
}
|
5176 |
+
.sdf-admin tr.visible-md {
|
5177 |
+
display: table-row !important;
|
5178 |
+
}
|
5179 |
+
.sdf-admin th.visible-md,
|
5180 |
+
.sdf-admin td.visible-md {
|
5181 |
+
display: table-cell !important;
|
5182 |
+
}
|
5183 |
+
}
|
5184 |
+
|
5185 |
+
@media (min-width: 1200px) {
|
5186 |
+
.sdf-admin .visible-md.visible-lg {
|
5187 |
+
display: block !important;
|
5188 |
+
}
|
5189 |
+
.sdf-admin tr.visible-md.visible-lg {
|
5190 |
+
display: table-row !important;
|
5191 |
+
}
|
5192 |
+
.sdf-admin th.visible-md.visible-lg,
|
5193 |
+
.sdf-admin td.visible-md.visible-lg {
|
5194 |
+
display: table-cell !important;
|
5195 |
+
}
|
5196 |
+
}
|
5197 |
+
.sdf-admin .visible-lg {
|
5198 |
+
display: none !important;
|
5199 |
+
}
|
5200 |
+
|
5201 |
+
.sdf-admin tr.visible-lg {
|
5202 |
+
display: none !important;
|
5203 |
+
}
|
5204 |
+
|
5205 |
+
.sdf-admin th.visible-lg,
|
5206 |
+
.sdf-admin td.visible-lg {
|
5207 |
+
display: none !important;
|
5208 |
+
}
|
5209 |
+
|
5210 |
+
@media (max-width: 767px) {
|
5211 |
+
.sdf-admin .visible-lg.visible-xs {
|
5212 |
+
display: block !important;
|
5213 |
+
}
|
5214 |
+
.sdf-admin tr.visible-lg.visible-xs {
|
5215 |
+
display: table-row !important;
|
5216 |
+
}
|
5217 |
+
.sdf-admin th.visible-lg.visible-xs,
|
5218 |
+
.sdf-admin td.visible-lg.visible-xs {
|
5219 |
+
display: table-cell !important;
|
5220 |
+
}
|
5221 |
+
}
|
5222 |
+
|
5223 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
5224 |
+
.sdf-admin .visible-lg.visible-sm {
|
5225 |
+
display: block !important;
|
5226 |
+
}
|
5227 |
+
.sdf-admin tr.visible-lg.visible-sm {
|
5228 |
+
display: table-row !important;
|
5229 |
+
}
|
5230 |
+
.sdf-admin th.visible-lg.visible-sm,
|
5231 |
+
.sdf-admin td.visible-lg.visible-sm {
|
5232 |
+
display: table-cell !important;
|
5233 |
+
}
|
5234 |
+
}
|
5235 |
+
|
5236 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5237 |
+
.sdf-admin .visible-lg.visible-md {
|
5238 |
+
display: block !important;
|
5239 |
+
}
|
5240 |
+
.sdf-admin tr.visible-lg.visible-md {
|
5241 |
+
display: table-row !important;
|
5242 |
+
}
|
5243 |
+
.sdf-admin th.visible-lg.visible-md,
|
5244 |
+
.sdf-admin td.visible-lg.visible-md {
|
5245 |
+
display: table-cell !important;
|
5246 |
+
}
|
5247 |
+
}
|
5248 |
+
|
5249 |
+
@media (min-width: 1200px) {
|
5250 |
+
.sdf-admin .visible-lg {
|
5251 |
+
display: block !important;
|
5252 |
+
}
|
5253 |
+
.sdf-admin tr.visible-lg {
|
5254 |
+
display: table-row !important;
|
5255 |
+
}
|
5256 |
+
.sdf-admin th.visible-lg,
|
5257 |
+
.sdf-admin td.visible-lg {
|
5258 |
+
display: table-cell !important;
|
5259 |
+
}
|
5260 |
+
}
|
5261 |
+
.sdf-admin .hidden-xs {
|
5262 |
+
display: block !important;
|
5263 |
+
}
|
5264 |
+
|
5265 |
+
.sdf-admin tr.hidden-xs {
|
5266 |
+
display: table-row !important;
|
5267 |
+
}
|
5268 |
+
|
5269 |
+
.sdf-admin th.hidden-xs,
|
5270 |
+
.sdf-admin td.hidden-xs {
|
5271 |
+
display: table-cell !important;
|
5272 |
+
}
|
5273 |
+
|
5274 |
+
@media (max-width: 767px) {
|
5275 |
+
.sdf-admin .hidden-xs {
|
5276 |
+
display: none !important;
|
5277 |
+
}
|
5278 |
+
.sdf-admin tr.hidden-xs {
|
5279 |
+
display: none !important;
|
5280 |
+
}
|
5281 |
+
.sdf-admin th.hidden-xs,
|
5282 |
+
.sdf-admin td.hidden-xs {
|
5283 |
+
display: none !important;
|
5284 |
+
}
|
5285 |
+
}
|
5286 |
+
|
5287 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
5288 |
+
.sdf-admin .hidden-xs.hidden-sm {
|
5289 |
+
display: none !important;
|
5290 |
+
}
|
5291 |
+
.sdf-admin tr.hidden-xs.hidden-sm {
|
5292 |
+
display: none !important;
|
5293 |
+
}
|
5294 |
+
.sdf-admin th.hidden-xs.hidden-sm,
|
5295 |
+
.sdf-admin td.hidden-xs.hidden-sm {
|
5296 |
+
display: none !important;
|
5297 |
+
}
|
5298 |
+
}
|
5299 |
+
|
5300 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5301 |
+
.sdf-admin .hidden-xs.hidden-md {
|
5302 |
+
display: none !important;
|
5303 |
+
}
|
5304 |
+
.sdf-admin tr.hidden-xs.hidden-md {
|
5305 |
+
display: none !important;
|
5306 |
+
}
|
5307 |
+
.sdf-admin th.hidden-xs.hidden-md,
|
5308 |
+
.sdf-admin td.hidden-xs.hidden-md {
|
5309 |
+
display: none !important;
|
5310 |
+
}
|
5311 |
+
}
|
5312 |
+
|
5313 |
+
@media (min-width: 1200px) {
|
5314 |
+
.sdf-admin .hidden-xs.hidden-lg {
|
5315 |
+
display: none !important;
|
5316 |
+
}
|
5317 |
+
.sdf-admin tr.hidden-xs.hidden-lg {
|
5318 |
+
display: none !important;
|
5319 |
+
}
|
5320 |
+
.sdf-admin th.hidden-xs.hidden-lg,
|
5321 |
+
.sdf-admin td.hidden-xs.hidden-lg {
|
5322 |
+
display: none !important;
|
5323 |
+
}
|
5324 |
+
}
|
5325 |
+
.sdf-admin .hidden-sm {
|
5326 |
+
display: block !important;
|
5327 |
+
}
|
5328 |
+
|
5329 |
+
.sdf-admin tr.hidden-sm {
|
5330 |
+
display: table-row !important;
|
5331 |
+
}
|
5332 |
+
|
5333 |
+
.sdf-admin th.hidden-sm,
|
5334 |
+
.sdf-admin td.hidden-sm {
|
5335 |
+
display: table-cell !important;
|
5336 |
+
}
|
5337 |
+
|
5338 |
+
@media (max-width: 767px) {
|
5339 |
+
.sdf-admin .hidden-sm.hidden-xs {
|
5340 |
+
display: none !important;
|
5341 |
+
}
|
5342 |
+
.sdf-admin tr.hidden-sm.hidden-xs {
|
5343 |
+
display: none !important;
|
5344 |
+
}
|
5345 |
+
.sdf-admin th.hidden-sm.hidden-xs,
|
5346 |
+
.sdf-admin td.hidden-sm.hidden-xs {
|
5347 |
+
display: none !important;
|
5348 |
+
}
|
5349 |
+
}
|
5350 |
+
|
5351 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
5352 |
+
.sdf-admin .hidden-sm {
|
5353 |
+
display: none !important;
|
5354 |
+
}
|
5355 |
+
.sdf-admin tr.hidden-sm {
|
5356 |
+
display: none !important;
|
5357 |
+
}
|
5358 |
+
.sdf-admin th.hidden-sm,
|
5359 |
+
.sdf-admin td.hidden-sm {
|
5360 |
+
display: none !important;
|
5361 |
+
}
|
5362 |
+
}
|
5363 |
+
|
5364 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5365 |
+
.sdf-admin .hidden-sm.hidden-md {
|
5366 |
+
display: none !important;
|
5367 |
+
}
|
5368 |
+
.sdf-admin tr.hidden-sm.hidden-md {
|
5369 |
+
display: none !important;
|
5370 |
+
}
|
5371 |
+
.sdf-admin th.hidden-sm.hidden-md,
|
5372 |
+
.sdf-admin td.hidden-sm.hidden-md {
|
5373 |
+
display: none !important;
|
5374 |
+
}
|
5375 |
+
}
|
5376 |
+
|
5377 |
+
@media (min-width: 1200px) {
|
5378 |
+
.sdf-admin .hidden-sm.hidden-lg {
|
5379 |
+
display: none !important;
|
5380 |
+
}
|
5381 |
+
.sdf-admin tr.hidden-sm.hidden-lg {
|
5382 |
+
display: none !important;
|
5383 |
+
}
|
5384 |
+
.sdf-admin th.hidden-sm.hidden-lg,
|
5385 |
+
.sdf-admin td.hidden-sm.hidden-lg {
|
5386 |
+
display: none !important;
|
5387 |
+
}
|
5388 |
+
}
|
5389 |
+
.sdf-admin .hidden-md {
|
5390 |
+
display: block !important;
|
5391 |
+
}
|
5392 |
+
|
5393 |
+
.sdf-admin tr.hidden-md {
|
5394 |
+
display: table-row !important;
|
5395 |
+
}
|
5396 |
+
|
5397 |
+
.sdf-admin th.hidden-md,
|
5398 |
+
.sdf-admin td.hidden-md {
|
5399 |
+
display: table-cell !important;
|
5400 |
+
}
|
5401 |
+
|
5402 |
+
@media (max-width: 767px) {
|
5403 |
+
.sdf-admin .hidden-md.hidden-xs {
|
5404 |
+
display: none !important;
|
5405 |
+
}
|
5406 |
+
.sdf-admin tr.hidden-md.hidden-xs {
|
5407 |
+
display: none !important;
|
5408 |
+
}
|
5409 |
+
.sdf-admin th.hidden-md.hidden-xs,
|
5410 |
+
.sdf-admin td.hidden-md.hidden-xs {
|
5411 |
+
display: none !important;
|
5412 |
+
}
|
5413 |
+
}
|
5414 |
+
|
5415 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
5416 |
+
.sdf-admin .hidden-md.hidden-sm {
|
5417 |
+
display: none !important;
|
5418 |
+
}
|
5419 |
+
.sdf-admin tr.hidden-md.hidden-sm {
|
5420 |
+
display: none !important;
|
5421 |
+
}
|
5422 |
+
.sdf-admin th.hidden-md.hidden-sm,
|
5423 |
+
.sdf-admin td.hidden-md.hidden-sm {
|
5424 |
+
display: none !important;
|
5425 |
+
}
|
5426 |
+
}
|
5427 |
+
|
5428 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5429 |
+
.sdf-admin .hidden-md {
|
5430 |
+
display: none !important;
|
5431 |
+
}
|
5432 |
+
.sdf-admin tr.hidden-md {
|
5433 |
+
display: none !important;
|
5434 |
+
}
|
5435 |
+
.sdf-admin th.hidden-md,
|
5436 |
+
.sdf-admin td.hidden-md {
|
5437 |
+
display: none !important;
|
5438 |
+
}
|
5439 |
+
}
|
5440 |
+
|
5441 |
+
@media (min-width: 1200px) {
|
5442 |
+
.sdf-admin .hidden-md.hidden-lg {
|
5443 |
+
display: none !important;
|
5444 |
+
}
|
5445 |
+
.sdf-admin tr.hidden-md.hidden-lg {
|
5446 |
+
display: none !important;
|
5447 |
+
}
|
5448 |
+
.sdf-admin th.hidden-md.hidden-lg,
|
5449 |
+
.sdf-admin td.hidden-md.hidden-lg {
|
5450 |
+
display: none !important;
|
5451 |
+
}
|
5452 |
+
}
|
5453 |
+
.sdf-admin .hidden-lg {
|
5454 |
+
display: block !important;
|
5455 |
+
}
|
5456 |
+
|
5457 |
+
.sdf-admin tr.hidden-lg {
|
5458 |
+
display: table-row !important;
|
5459 |
+
}
|
5460 |
+
|
5461 |
+
.sdf-admin th.hidden-lg,
|
5462 |
+
.sdf-admin td.hidden-lg {
|
5463 |
+
display: table-cell !important;
|
5464 |
+
}
|
5465 |
+
|
5466 |
+
@media (max-width: 767px) {
|
5467 |
+
.sdf-admin .hidden-lg.hidden-xs {
|
5468 |
+
display: none !important;
|
5469 |
+
}
|
5470 |
+
.sdf-admin tr.hidden-lg.hidden-xs {
|
5471 |
+
display: none !important;
|
5472 |
+
}
|
5473 |
+
.sdf-admin th.hidden-lg.hidden-xs,
|
5474 |
+
.sdf-admin td.hidden-lg.hidden-xs {
|
5475 |
+
display: none !important;
|
5476 |
+
}
|
5477 |
+
}
|
5478 |
+
|
5479 |
+
@media (min-width: 768px) and (max-width: 991px) {
|
5480 |
+
.sdf-admin .hidden-lg.hidden-sm {
|
5481 |
+
display: none !important;
|
5482 |
+
}
|
5483 |
+
.sdf-admin tr.hidden-lg.hidden-sm {
|
5484 |
+
display: none !important;
|
5485 |
+
}
|
5486 |
+
.sdf-admin th.hidden-lg.hidden-sm,
|
5487 |
+
.sdf-admin td.hidden-lg.hidden-sm {
|
5488 |
+
display: none !important;
|
5489 |
+
}
|
5490 |
+
}
|
5491 |
+
|
5492 |
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5493 |
+
.sdf-admin .hidden-lg.hidden-md {
|
5494 |
+
display: none !important;
|
5495 |
+
}
|
5496 |
+
.sdf-admin tr.hidden-lg.hidden-md {
|
5497 |
+
display: none !important;
|
5498 |
+
}
|
5499 |
+
.sdf-admin th.hidden-lg.hidden-md,
|
5500 |
+
.sdf-admin td.hidden-lg.hidden-md {
|
5501 |
+
display: none !important;
|
5502 |
+
}
|
5503 |
+
}
|
5504 |
+
|
5505 |
+
@media (min-width: 1200px) {
|
5506 |
+
.sdf-admin .hidden-lg {
|
5507 |
+
display: none !important;
|
5508 |
+
}
|
5509 |
+
.sdf-admin tr.hidden-lg {
|
5510 |
+
display: none !important;
|
5511 |
+
}
|
5512 |
+
.sdf-admin th.hidden-lg,
|
5513 |
+
.sdf-admin td.hidden-lg {
|
5514 |
+
display: none !important;
|
5515 |
+
}
|
5516 |
+
}
|
5517 |
+
.sdf-admin .visible-print {
|
5518 |
+
display: none !important;
|
5519 |
+
}
|
5520 |
+
|
5521 |
+
.sdf-admin tr.visible-print {
|
5522 |
+
display: none !important;
|
5523 |
+
}
|
5524 |
+
|
5525 |
+
.sdf-admin th.visible-print,
|
5526 |
+
.sdf-admin td.visible-print {
|
5527 |
+
display: none !important;
|
5528 |
+
}
|
5529 |
+
|
5530 |
+
@media print {
|
5531 |
+
.sdf-admin .visible-print {
|
5532 |
+
display: block !important;
|
5533 |
+
}
|
5534 |
+
.sdf-admin tr.visible-print {
|
5535 |
+
display: table-row !important;
|
5536 |
+
}
|
5537 |
+
.sdf-admin th.visible-print,
|
5538 |
+
.sdf-admin td.visible-print {
|
5539 |
+
display: table-cell !important;
|
5540 |
+
}
|
5541 |
+
.sdf-admin .hidden-print {
|
5542 |
+
display: none !important;
|
5543 |
+
}
|
5544 |
+
.sdf-admin tr.hidden-print {
|
5545 |
+
display: none !important;
|
5546 |
+
}
|
5547 |
+
.sdf-admin th.hidden-print,
|
5548 |
+
.sdf-admin td.hidden-print {
|
5549 |
+
display: none !important;
|
5550 |
+
}
|
5551 |
+
}
|
plugin/sdf/bootstrap/css/font-awesome.min.css
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
|
3 |
+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 |
+
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.0.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333333333em;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.2857142857142858em;text-align:center}.fa-ul{padding-left:0;margin-left:2.142857142857143em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;top:.14285714285714285em;text-align:center}.fa-li.fa-lg{left:-1.8571428571428572em}.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:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-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);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}.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-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-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{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: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-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-asc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-desc: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-reply-all:before{content:"\f122"}.fa-mail-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{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-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"}
|
plugin/sdf/bootstrap/fonts/FontAwesome.otf
ADDED
Binary file
|
plugin/sdf/bootstrap/fonts/fontawesome-webfont.eot
ADDED
Binary file
|
plugin/sdf/bootstrap/fonts/fontawesome-webfont.svg
ADDED
@@ -0,0 +1,414 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
+
<metadata></metadata>
|
5 |
+
<defs>
|
6 |
+
<font id="fontawesomeregular" horiz-adv-x="1536" >
|
7 |
+
<font-face units-per-em="1792" ascent="1536" descent="-256" />
|
8 |
+
<missing-glyph horiz-adv-x="448" />
|
9 |
+
<glyph unicode=" " horiz-adv-x="448" />
|
10 |
+
<glyph unicode="	" horiz-adv-x="448" />
|
11 |
+
<glyph unicode=" " horiz-adv-x="448" />
|
12 |
+
<glyph unicode="¨" horiz-adv-x="1792" />
|
13 |
+
<glyph unicode="©" horiz-adv-x="1792" />
|
14 |
+
<glyph unicode="®" horiz-adv-x="1792" />
|
15 |
+
<glyph unicode="´" horiz-adv-x="1792" />
|
16 |
+
<glyph unicode="Æ" horiz-adv-x="1792" />
|
17 |
+
<glyph unicode=" " horiz-adv-x="768" />
|
18 |
+
<glyph unicode=" " />
|
19 |
+
<glyph unicode=" " horiz-adv-x="768" />
|
20 |
+
<glyph unicode=" " />
|
21 |
+
<glyph unicode=" " horiz-adv-x="512" />
|
22 |
+
<glyph unicode=" " horiz-adv-x="384" />
|
23 |
+
<glyph unicode=" " horiz-adv-x="256" />
|
24 |
+
<glyph unicode=" " horiz-adv-x="256" />
|
25 |
+
<glyph unicode=" " horiz-adv-x="192" />
|
26 |
+
<glyph unicode=" " horiz-adv-x="307" />
|
27 |
+
<glyph unicode=" " horiz-adv-x="85" />
|
28 |
+
<glyph unicode=" " horiz-adv-x="307" />
|
29 |
+
<glyph unicode=" " horiz-adv-x="384" />
|
30 |
+
<glyph unicode="™" horiz-adv-x="1792" />
|
31 |
+
<glyph unicode="∞" horiz-adv-x="1792" />
|
32 |
+
<glyph unicode="≠" horiz-adv-x="1792" />
|
33 |
+
<glyph unicode="" horiz-adv-x="500" d="M0 0z" />
|
34 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
|
35 |
+
<glyph unicode="" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
|
36 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
|
37 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
|
38 |
+
<glyph unicode="" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
|
39 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
|
40 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
|
41 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
|
42 |
+
<glyph unicode="" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
|
43 |
+
<glyph unicode="" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
|
44 |
+
<glyph unicode="" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
|
45 |
+
<glyph unicode="" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
|
46 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
|
47 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
|
48 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
|
49 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
|
50 |
+
<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
|
51 |
+
<glyph unicode="" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
|
52 |
+
<glyph unicode="" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
|
53 |
+
<glyph unicode="" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
|
54 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
|
55 |
+
<glyph unicode="" horiz-adv-x="1280" d="M128 0h1024v768h-416q-40 0 -68 28t-28 68v416h-512v-1280zM768 896h376q-10 29 -22 41l-313 313q-12 12 -41 22v-376zM1280 864v-896q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h640q40 0 88 -20t76 -48l312 -312q28 -28 48 -76t20 -88z " />
|
56 |
+
<glyph unicode="" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
57 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
|
58 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
|
59 |
+
<glyph unicode="" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
60 |
+
<glyph unicode="" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
61 |
+
<glyph unicode="" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
|
62 |
+
<glyph unicode="" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
63 |
+
<glyph unicode="" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
|
64 |
+
<glyph unicode="" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
|
65 |
+
<glyph unicode="" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
|
66 |
+
<glyph unicode="" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
|
67 |
+
<glyph unicode="" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
|
68 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
|
69 |
+
<glyph unicode="" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
|
70 |
+
<glyph unicode="" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
|
71 |
+
<glyph unicode="" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
|
72 |
+
<glyph unicode="" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
|
73 |
+
<glyph unicode="" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
|
74 |
+
<glyph unicode="" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
|
75 |
+
<glyph unicode="" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
|
76 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
|
77 |
+
<glyph unicode="" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
|
78 |
+
<glyph unicode="" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
|
79 |
+
<glyph unicode="" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
|
80 |
+
<glyph unicode="" horiz-adv-x="1664" d="M725 977l-170 -450q73 -1 153.5 -2t119 -1.5t52.5 -0.5l29 2q-32 95 -92 241q-53 132 -92 211zM21 -128h-21l2 79q22 7 80 18q89 16 110 31q20 16 48 68l237 616l280 724h75h53l11 -21l205 -480q103 -242 124 -297q39 -102 96 -235q26 -58 65 -164q24 -67 65 -149 q22 -49 35 -57q22 -19 69 -23q47 -6 103 -27q6 -39 6 -57q0 -14 -1 -26q-80 0 -192 8q-93 8 -189 8q-79 0 -135 -2l-200 -11l-58 -2q0 45 4 78l131 28q56 13 68 23q12 12 12 27t-6 32l-47 114l-92 228l-450 2q-29 -65 -104 -274q-23 -64 -23 -84q0 -31 17 -43 q26 -21 103 -32q3 0 13.5 -2t30 -5t40.5 -6q1 -28 1 -58q0 -17 -2 -27q-66 0 -349 20l-48 -8q-81 -14 -167 -14z" />
|
81 |
+
<glyph unicode="" horiz-adv-x="1408" d="M555 15q76 -32 140 -32q131 0 216 41t122 113q38 70 38 181q0 114 -41 180q-58 94 -141 126q-80 32 -247 32q-74 0 -101 -10v-144l-1 -173l3 -270q0 -15 12 -44zM541 761q43 -7 109 -7q175 0 264 65t89 224q0 112 -85 187q-84 75 -255 75q-52 0 -130 -13q0 -44 2 -77 q7 -122 6 -279l-1 -98q0 -43 1 -77zM0 -128l2 94q45 9 68 12q77 12 123 31q17 27 21 51q9 66 9 194l-2 497q-5 256 -9 404q-1 87 -11 109q-1 4 -12 12q-18 12 -69 15q-30 2 -114 13l-4 83l260 6l380 13l45 1q5 0 14 0.5t14 0.5q1 0 21.5 -0.5t40.5 -0.5h74q88 0 191 -27 q43 -13 96 -39q57 -29 102 -76q44 -47 65 -104t21 -122q0 -70 -32 -128t-95 -105q-26 -20 -150 -77q177 -41 267 -146q92 -106 92 -236q0 -76 -29 -161q-21 -62 -71 -117q-66 -72 -140 -108q-73 -36 -203 -60q-82 -15 -198 -11l-197 4q-84 2 -298 -11q-33 -3 -272 -11z" />
|
82 |
+
<glyph unicode="" horiz-adv-x="1024" d="M0 -126l17 85q4 1 77 20q76 19 116 39q29 37 41 101l27 139l56 268l12 64q8 44 17 84.5t16 67t12.5 46.5t9 30.5t3.5 11.5l29 157l16 63l22 135l8 50v38q-41 22 -144 28q-28 2 -38 4l19 103l317 -14q39 -2 73 -2q66 0 214 9q33 2 68 4.5t36 2.5q-2 -19 -6 -38 q-7 -29 -13 -51q-55 -19 -109 -31q-64 -16 -101 -31q-12 -31 -24 -88q-9 -44 -13 -82q-44 -199 -66 -306l-61 -311l-38 -158l-43 -235l-12 -45q-2 -7 1 -27q64 -15 119 -21q36 -5 66 -10q-1 -29 -7 -58q-7 -31 -9 -41q-18 0 -23 -1q-24 -2 -42 -2q-9 0 -28 3q-19 4 -145 17 l-198 2q-41 1 -174 -11q-74 -7 -98 -9z" />
|
83 |
+
<glyph unicode="" horiz-adv-x="1792" d="M81 1407l54 -27q20 -5 211 -5h130l19 3l115 1l215 -1h293l34 -2q14 -1 28 7t21 16l7 8l42 1q15 0 28 -1v-104.5t1 -131.5l1 -100l-1 -58q0 -32 -4 -51q-39 -15 -68 -18q-25 43 -54 128q-8 24 -15.5 62.5t-11.5 65.5t-6 29q-13 15 -27 19q-7 2 -42.5 2t-103.5 -1t-111 -1 q-34 0 -67 -5q-10 -97 -8 -136l1 -152v-332l3 -359l-1 -147q-1 -46 11 -85q49 -25 89 -32q2 0 18 -5t44 -13t43 -12q30 -8 50 -18q5 -45 5 -50q0 -10 -3 -29q-14 -1 -34 -1q-110 0 -187 10q-72 8 -238 8q-88 0 -233 -14q-48 -4 -70 -4q-2 22 -2 26l-1 26v9q21 33 79 49 q139 38 159 50q9 21 12 56q8 192 6 433l-5 428q-1 62 -0.5 118.5t0.5 102.5t-2 57t-6 15q-6 5 -14 6q-38 6 -148 6q-43 0 -100 -13.5t-73 -24.5q-13 -9 -22 -33t-22 -75t-24 -84q-6 -19 -19.5 -32t-20.5 -13q-44 27 -56 44v297v86zM1744 128q33 0 42 -18.5t-11 -44.5 l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80z" />
|
84 |
+
<glyph unicode="" d="M81 1407l54 -27q20 -5 211 -5h130l19 3l115 1l446 -1h318l34 -2q14 -1 28 7t21 16l7 8l42 1q15 0 28 -1v-104.5t1 -131.5l1 -100l-1 -58q0 -32 -4 -51q-39 -15 -68 -18q-25 43 -54 128q-8 24 -15.5 62.5t-11.5 65.5t-6 29q-13 15 -27 19q-7 2 -58.5 2t-138.5 -1t-128 -1 q-94 0 -127 -5q-10 -97 -8 -136l1 -152v52l3 -359l-1 -147q-1 -46 11 -85q49 -25 89 -32q2 0 18 -5t44 -13t43 -12q30 -8 50 -18q5 -45 5 -50q0 -10 -3 -29q-14 -1 -34 -1q-110 0 -187 10q-72 8 -238 8q-82 0 -233 -13q-45 -5 -70 -5q-2 22 -2 26l-1 26v9q21 33 79 49 q139 38 159 50q9 21 12 56q6 137 6 433l-5 44q0 265 -2 278q-2 11 -6 15q-6 5 -14 6q-38 6 -148 6q-50 0 -168.5 -14t-132.5 -24q-13 -9 -22 -33t-22 -75t-24 -84q-6 -19 -19.5 -32t-20.5 -13q-44 27 -56 44v297v86zM1505 113q26 -20 26 -49t-26 -49l-162 -126 q-26 -20 -44.5 -11t-18.5 42v80h-1024v-80q0 -33 -18.5 -42t-44.5 11l-162 126q-26 20 -26 49t26 49l162 126q26 20 44.5 11t18.5 -42v-80h1024v80q0 33 18.5 42t44.5 -11z" />
|
85 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
|
86 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
|
87 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
|
88 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
|
89 |
+
<glyph unicode="" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
|
90 |
+
<glyph unicode="" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
|
91 |
+
<glyph unicode="" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
|
92 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
|
93 |
+
<glyph unicode="" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
|
94 |
+
<glyph unicode="" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
|
95 |
+
<glyph unicode="" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
|
96 |
+
<glyph unicode="" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
97 |
+
<glyph unicode="" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
|
98 |
+
<glyph unicode="" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
|
99 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
|
100 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
|
101 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
|
102 |
+
<glyph unicode="" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
|
103 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
|
104 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
|
105 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
|
106 |
+
<glyph unicode="" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
|
107 |
+
<glyph unicode="" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
|
108 |
+
<glyph unicode="" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
|
109 |
+
<glyph unicode="" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
|
110 |
+
<glyph unicode="" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
|
111 |
+
<glyph unicode="" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
|
112 |
+
<glyph unicode="" horiz-adv-x="1152" d="M742 -37l-652 651q-37 37 -37 90.5t37 90.5l652 651q37 37 90.5 37t90.5 -37l75 -75q37 -37 37 -90.5t-37 -90.5l-486 -486l486 -485q37 -38 37 -91t-37 -90l-75 -75q-37 -37 -90.5 -37t-90.5 37z" />
|
113 |
+
<glyph unicode="" horiz-adv-x="1152" d="M1099 704q0 -52 -37 -91l-652 -651q-37 -37 -90 -37t-90 37l-76 75q-37 39 -37 91q0 53 37 90l486 486l-486 485q-37 39 -37 91q0 53 37 90l76 75q36 38 90 38t90 -38l652 -651q37 -37 37 -90z" />
|
114 |
+
<glyph unicode="" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
115 |
+
<glyph unicode="" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
|
116 |
+
<glyph unicode="" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
117 |
+
<glyph unicode="" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
118 |
+
<glyph unicode="" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
119 |
+
<glyph unicode="" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
120 |
+
<glyph unicode="" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
|
121 |
+
<glyph unicode="" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
122 |
+
<glyph unicode="" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
123 |
+
<glyph unicode="" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
|
124 |
+
<glyph unicode="" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
|
125 |
+
<glyph unicode="" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
|
126 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
|
127 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
|
128 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
|
129 |
+
<glyph unicode="" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
|
130 |
+
<glyph unicode="" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
|
131 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
|
132 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
|
133 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
|
134 |
+
<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
|
135 |
+
<glyph unicode="" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
|
136 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
|
137 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
|
138 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
|
139 |
+
<glyph unicode="" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
|
140 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
|
141 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
|
142 |
+
<glyph unicode="" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
|
143 |
+
<glyph unicode="" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
|
144 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
|
145 |
+
<glyph unicode="" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
|
146 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1611 320q0 -53 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-486 485l-486 -485q-36 -38 -90 -38t-90 38l-75 75q-38 36 -38 90q0 53 38 91l651 651q37 37 90 37q52 0 91 -37l650 -651q38 -38 38 -91z" />
|
147 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1611 832q0 -53 -37 -90l-651 -651q-38 -38 -91 -38q-54 0 -90 38l-651 651q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l486 -486l486 486q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
|
148 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
|
149 |
+
<glyph unicode="" horiz-adv-x="1664" d="M640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5 l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5 t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
|
150 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
|
151 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
|
152 |
+
<glyph unicode="" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
|
153 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
|
154 |
+
<glyph unicode="" horiz-adv-x="1920" d="M512 512v-384h-256v384h256zM896 1024v-896h-256v896h256zM1280 768v-640h-256v640h256zM1664 1152v-1024h-256v1024h256zM1792 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5z M1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
|
155 |
+
<glyph unicode="" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
156 |
+
<glyph unicode="" d="M1307 618l23 219h-198v109q0 49 15.5 68.5t71.5 19.5h110v219h-175q-152 0 -218 -72t-66 -213v-131h-131v-219h131v-635h262v635h175zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960 q119 0 203.5 -84.5t84.5 -203.5z" />
|
157 |
+
<glyph unicode="" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
|
158 |
+
<glyph unicode="" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
|
159 |
+
<glyph unicode="" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
|
160 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
|
161 |
+
<glyph unicode="" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
|
162 |
+
<glyph unicode="" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
|
163 |
+
<glyph unicode="" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
|
164 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
|
165 |
+
<glyph unicode="" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
|
166 |
+
<glyph unicode="" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
167 |
+
<glyph unicode="" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
|
168 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
|
169 |
+
<glyph unicode="" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
|
170 |
+
<glyph unicode="" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
|
171 |
+
<glyph unicode="" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
172 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
|
173 |
+
<glyph unicode="" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
|
174 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
|
175 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
|
176 |
+
<glyph unicode="" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
|
177 |
+
<glyph unicode="" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
178 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
|
179 |
+
<glyph unicode="" horiz-adv-x="768" d="M511 980h257l-30 -284h-227v-824h-341v824h-170v284h170v171q0 182 86 275.5t283 93.5h227v-284h-142q-39 0 -62.5 -6.5t-34 -23.5t-13.5 -34.5t-3 -49.5v-142z" />
|
180 |
+
<glyph unicode="" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
181 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
|
182 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
|
183 |
+
<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
|
184 |
+
<glyph unicode="" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
|
185 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
|
186 |
+
<glyph unicode="" horiz-adv-x="1664" d="M848 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM183 128h1298q-164 181 -246.5 411.5t-82.5 484.5q0 256 -320 256t-320 -256q0 -254 -82.5 -484.5t-246.5 -411.5zM1664 128q0 -52 -38 -90t-90 -38 h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q190 161 287 397.5t97 498.5q0 165 96 262t264 117q-8 18 -8 37q0 40 28 68t68 28t68 -28t28 -68q0 -19 -8 -37q168 -20 264 -117t96 -262q0 -262 97 -498.5t287 -397.5z" />
|
187 |
+
<glyph unicode="" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
|
188 |
+
<glyph unicode="" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
|
189 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
|
190 |
+
<glyph unicode="" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
|
191 |
+
<glyph unicode="" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
|
192 |
+
<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
193 |
+
<glyph unicode="" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
194 |
+
<glyph unicode="" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
195 |
+
<glyph unicode="" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
196 |
+
<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
|
197 |
+
<glyph unicode="" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
|
198 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
|
199 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
|
200 |
+
<glyph unicode="" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
|
201 |
+
<glyph unicode="" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
|
202 |
+
<glyph unicode="" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
|
203 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
|
204 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
|
205 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
|
206 |
+
<glyph unicode="" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
|
207 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
|
208 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
|
209 |
+
<glyph unicode="" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
|
210 |
+
<glyph unicode="" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
211 |
+
<glyph unicode="" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
|
212 |
+
<glyph unicode="" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
|
213 |
+
<glyph unicode="" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
|
214 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
|
215 |
+
<glyph unicode="" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
|
216 |
+
<glyph unicode="" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
|
217 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
|
218 |
+
<glyph unicode="" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
|
219 |
+
<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
220 |
+
<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
|
221 |
+
<glyph unicode="" d="M678 -57q0 -38 -10 -71h-380q-95 0 -171.5 56.5t-103.5 147.5q24 45 69 77.5t100 49.5t107 24t107 7q32 0 49 -2q6 -4 30.5 -21t33 -23t31 -23t32 -25.5t27.5 -25.5t26.5 -29.5t21 -30.5t17.5 -34.5t9.5 -36t4.5 -40.5zM385 294q-234 -7 -385 -85v433q103 -118 273 -118 q32 0 70 5q-21 -61 -21 -86q0 -67 63 -149zM558 805q0 -100 -43.5 -160.5t-140.5 -60.5q-51 0 -97 26t-78 67.5t-56 93.5t-35.5 104t-11.5 99q0 96 51.5 165t144.5 69q66 0 119 -41t84 -104t47 -130t16 -128zM1536 896v-736q0 -119 -84.5 -203.5t-203.5 -84.5h-468 q39 73 39 157q0 66 -22 122.5t-55.5 93t-72 71t-72 59.5t-55.5 54.5t-22 59.5q0 36 23 68t56 61.5t65.5 64.5t55.5 93t23 131t-26.5 145.5t-75.5 118.5q-6 6 -14 11t-12.5 7.5t-10 9.5t-10.5 17h135l135 64h-437q-138 0 -244.5 -38.5t-182.5 -133.5q0 126 81 213t207 87h960 q119 0 203.5 -84.5t84.5 -203.5v-96h-256v256h-128v-256h-256v-128h256v-256h128v256h256z" />
|
222 |
+
<glyph unicode="" horiz-adv-x="1664" d="M876 71q0 21 -4.5 40.5t-9.5 36t-17.5 34.5t-21 30.5t-26.5 29.5t-27.5 25.5t-32 25.5t-31 23t-33 23t-30.5 21q-17 2 -50 2q-54 0 -106 -7t-108 -25t-98 -46t-69 -75t-27 -107q0 -68 35.5 -121.5t93 -84t120.5 -45.5t127 -15q59 0 112.5 12.5t100.5 39t74.5 73.5 t27.5 110zM756 933q0 60 -16.5 127.5t-47 130.5t-84 104t-119.5 41q-93 0 -144 -69t-51 -165q0 -47 11.5 -99t35.5 -104t56 -93.5t78 -67.5t97 -26q97 0 140.5 60.5t43.5 160.5zM625 1408h437l-135 -79h-135q71 -45 110 -126t39 -169q0 -74 -23 -131.5t-56 -92.5t-66 -64.5 t-56 -61t-23 -67.5q0 -26 16.5 -51t43 -48t58.5 -48t64 -55.5t58.5 -66t43 -85t16.5 -106.5q0 -160 -140 -282q-152 -131 -420 -131q-59 0 -119.5 10t-122 33.5t-108.5 58t-77 89t-30 121.5q0 61 37 135q32 64 96 110.5t145 71t155 36t150 13.5q-64 83 -64 149q0 12 2 23.5 t5 19.5t8 21.5t7 21.5q-40 -5 -70 -5q-149 0 -255.5 98t-106.5 246q0 140 95 250.5t234 141.5q94 20 187 20zM1664 1152v-128h-256v-256h-128v256h-256v128h256v256h128v-256h256z" />
|
223 |
+
<glyph unicode="" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
|
224 |
+
<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
|
225 |
+
<glyph unicode="" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
|
226 |
+
<glyph unicode="" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
|
227 |
+
<glyph unicode="" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
|
228 |
+
<glyph unicode="" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
|
229 |
+
<glyph unicode="" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
|
230 |
+
<glyph unicode="" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
|
231 |
+
<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
|
232 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
|
233 |
+
<glyph unicode="" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
|
234 |
+
<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
|
235 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
|
236 |
+
<glyph unicode="" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
|
237 |
+
<glyph unicode="" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
|
238 |
+
<glyph unicode="" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
|
239 |
+
<glyph unicode="" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
|
240 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
|
241 |
+
<glyph unicode="" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
|
242 |
+
<glyph unicode="" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
|
243 |
+
<glyph unicode="" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
|
244 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
|
245 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
|
246 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
|
247 |
+
<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
|
248 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
|
249 |
+
<glyph unicode="" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
|
250 |
+
<glyph unicode="" horiz-adv-x="1664" d="M848 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1664 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q190 161 287 397.5t97 498.5 q0 165 96 262t264 117q-8 18 -8 37q0 40 28 68t68 28t68 -28t28 -68q0 -19 -8 -37q168 -20 264 -117t96 -262q0 -262 97 -498.5t287 -397.5z" />
|
251 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
|
252 |
+
<glyph unicode="" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
|
253 |
+
<glyph unicode="" horiz-adv-x="1280" d="M1024 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1024 608v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM128 0h1024v768h-416q-40 0 -68 28t-28 68v416h-512v-1280z M768 896h376q-10 29 -22 41l-313 313q-12 12 -41 22v-376zM1280 864v-896q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h640q40 0 88 -20t76 -48l312 -312q28 -28 48 -76t20 -88z" />
|
254 |
+
<glyph unicode="" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
|
255 |
+
<glyph unicode="" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
|
256 |
+
<glyph unicode="" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
|
257 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
|
258 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
|
259 |
+
<glyph unicode="" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
|
260 |
+
<glyph unicode="" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
261 |
+
<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
262 |
+
<glyph unicode="" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
|
263 |
+
<glyph unicode="" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
|
264 |
+
<glyph unicode="" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
|
265 |
+
<glyph unicode="" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
|
266 |
+
<glyph unicode="" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
|
267 |
+
<glyph unicode="" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
|
268 |
+
<glyph unicode="" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
|
269 |
+
<glyph unicode="" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
|
270 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
|
271 |
+
<glyph unicode="" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
|
272 |
+
<glyph unicode="" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
|
273 |
+
<glyph unicode="" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
|
274 |
+
<glyph unicode="" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
|
275 |
+
<glyph unicode="" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
|
276 |
+
<glyph unicode="" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
|
277 |
+
<glyph unicode="" horiz-adv-x="1568" d="M496 192q0 -60 -42.5 -102t-101.5 -42q-60 0 -102 42t-42 102t42 102t102 42q59 0 101.5 -42t42.5 -102zM928 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -66 -47 -113t-113 -47t-113 47t-47 113 t47 113t113 47t113 -47t47 -113zM1360 192q0 -46 -33 -79t-79 -33t-79 33t-33 79t33 79t79 33t79 -33t33 -79zM528 1088q0 -73 -51.5 -124.5t-124.5 -51.5t-124.5 51.5t-51.5 124.5t51.5 124.5t124.5 51.5t124.5 -51.5t51.5 -124.5zM992 1280q0 -80 -56 -136t-136 -56 t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1536 640q0 -40 -28 -68t-68 -28t-68 28t-28 68t28 68t68 28t68 -28t28 -68zM1328 1088q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5z" />
|
278 |
+
<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
279 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
|
280 |
+
<glyph unicode="" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
|
281 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
|
282 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
|
283 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
284 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
285 |
+
<glyph unicode="" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
286 |
+
<glyph unicode="" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
287 |
+
<glyph unicode="" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
288 |
+
<glyph unicode="" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
|
289 |
+
<glyph unicode="" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
|
290 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
|
291 |
+
<glyph unicode="" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
|
292 |
+
<glyph unicode="" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
|
293 |
+
<glyph unicode="" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
|
294 |
+
<glyph unicode="" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
|
295 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
|
296 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
|
297 |
+
<glyph unicode="" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
|
298 |
+
<glyph unicode="" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
|
299 |
+
<glyph unicode="" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
|
300 |
+
<glyph unicode="" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
|
301 |
+
<glyph unicode="" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
|
302 |
+
<glyph unicode="" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
|
303 |
+
<glyph unicode="" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
|
304 |
+
<glyph unicode="" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
|
305 |
+
<glyph unicode="" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
|
306 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
|
307 |
+
<glyph unicode="" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
|
308 |
+
<glyph unicode="" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
|
309 |
+
<glyph unicode="" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
|
310 |
+
<glyph unicode="" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
|
311 |
+
<glyph unicode="" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
|
312 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
|
313 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
|
314 |
+
<glyph unicode="" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
315 |
+
<glyph unicode="" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
316 |
+
<glyph unicode="" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
317 |
+
<glyph unicode="" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
318 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
|
319 |
+
<glyph unicode="" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
|
320 |
+
<glyph unicode="" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
|
321 |
+
<glyph unicode="" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
|
322 |
+
<glyph unicode="" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
323 |
+
<glyph unicode="" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
|
324 |
+
<glyph unicode="" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
|
325 |
+
<glyph unicode="" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
326 |
+
<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
|
327 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
|
328 |
+
<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
|
329 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
|
330 |
+
<glyph unicode="" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
|
331 |
+
<glyph unicode="" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
|
332 |
+
<glyph unicode="" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
333 |
+
<glyph unicode="" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
334 |
+
<glyph unicode="" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
335 |
+
<glyph unicode="" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
336 |
+
<glyph unicode="" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
337 |
+
<glyph unicode="" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
338 |
+
<glyph unicode="" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
339 |
+
<glyph unicode="" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
340 |
+
<glyph unicode="" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
|
341 |
+
<glyph unicode="" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
|
342 |
+
<glyph unicode="" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
|
343 |
+
<glyph unicode="" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
|
344 |
+
<glyph unicode="" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
|
345 |
+
<glyph unicode="" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
|
346 |
+
<glyph unicode="" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
|
347 |
+
<glyph unicode="" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
|
348 |
+
<glyph unicode="" horiz-adv-x="1280" d="M1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h544v-544q0 -40 28 -68t68 -28h544zM1277 896h-509v509q82 -15 132 -65l312 -312q50 -50 65 -132z" />
|
349 |
+
<glyph unicode="" horiz-adv-x="1280" d="M1024 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1024 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28 t-28 68v1344q0 40 28 68t68 28h544v-544q0 -40 28 -68t68 -28h544zM1277 896h-509v509q82 -15 132 -65l312 -312q50 -50 65 -132z" />
|
350 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
|
351 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
|
352 |
+
<glyph unicode="" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
|
353 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
|
354 |
+
<glyph unicode="" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
|
355 |
+
<glyph unicode="" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
|
356 |
+
<glyph unicode="" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
|
357 |
+
<glyph unicode="" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
|
358 |
+
<glyph unicode="" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
359 |
+
<glyph unicode="" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
|
360 |
+
<glyph unicode="" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
|
361 |
+
<glyph unicode="" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
362 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
|
363 |
+
<glyph unicode="" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
|
364 |
+
<glyph unicode="" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" />
|
365 |
+
<glyph unicode="" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
|
366 |
+
<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
|
367 |
+
<glyph unicode="" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
368 |
+
<glyph unicode="" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
|
369 |
+
<glyph unicode="" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
370 |
+
<glyph unicode="" horiz-adv-x="1024" d="M390 1408h219v-388h364v-241h-364v-394q0 -136 14 -172q13 -37 52 -60q50 -31 117 -31q117 0 232 76v-242q-102 -48 -178 -65q-77 -19 -173 -19q-105 0 -186 27q-78 25 -138 75q-58 51 -79 105q-22 54 -22 161v539h-170v217q91 30 155 84q64 55 103 132q39 78 54 196z " />
|
371 |
+
<glyph unicode="" d="M1123 127v181q-88 -56 -174 -56q-51 0 -88 23q-29 17 -39 45q-11 30 -11 129v295h274v181h-274v291h-164q-11 -90 -40 -147t-78 -99q-48 -40 -116 -63v-163h127v-404q0 -78 17 -121q17 -42 59 -78q43 -37 104 -57q62 -20 140 -20q67 0 129 14q57 13 134 49zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
372 |
+
<glyph unicode="" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
|
373 |
+
<glyph unicode="" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
|
374 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
|
375 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
|
376 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
|
377 |
+
<glyph unicode="" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
|
378 |
+
<glyph unicode="" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
|
379 |
+
<glyph unicode="" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
|
380 |
+
<glyph unicode="" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
381 |
+
<glyph unicode="" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
|
382 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1483 512l-587 -587q-52 -53 -127.5 -53t-128.5 53l-587 587q-53 53 -53 128t53 128l587 587q53 53 128 53t128 -53l265 -265l-398 -399l-188 188q-42 42 -99 42q-59 0 -100 -41l-120 -121q-42 -40 -42 -99q0 -58 42 -100l406 -408q30 -28 67 -37l6 -4h28q60 0 99 41 l619 619l2 -3q53 -53 53 -128t-53 -128zM1406 1138l120 -120q14 -15 14 -36t-14 -36l-730 -730q-17 -15 -37 -15v0q-4 0 -6 1q-18 2 -30 14l-407 408q-14 15 -14 36t14 35l121 120q13 15 35 15t36 -15l252 -252l574 575q15 15 36 15t36 -15z" />
|
383 |
+
<glyph unicode="" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
|
384 |
+
<glyph unicode="" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
|
385 |
+
<glyph unicode="" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
|
386 |
+
<glyph unicode="" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
387 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
|
388 |
+
<glyph unicode="" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
|
389 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
|
390 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
|
391 |
+
<glyph unicode="" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
|
392 |
+
<glyph unicode="" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
|
393 |
+
<glyph unicode="" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
|
394 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
|
395 |
+
<glyph unicode="" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
|
396 |
+
<glyph unicode="" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
397 |
+
<glyph unicode="" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
398 |
+
<glyph unicode="" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
399 |
+
<glyph unicode="" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
400 |
+
<glyph unicode="" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
|
401 |
+
<glyph unicode="" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
402 |
+
<glyph unicode="" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
|
403 |
+
<glyph unicode="" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
|
404 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
405 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
406 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
407 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
408 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
409 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
410 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
411 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
412 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
413 |
+
</font>
|
414 |
+
</defs></svg>
|
plugin/sdf/bootstrap/fonts/fontawesome-webfont.ttf
ADDED
Binary file
|
plugin/sdf/bootstrap/fonts/fontawesome-webfont.woff
ADDED
Binary file
|
plugin/sdf/bootstrap/fonts/glyphicons-halflings-regular.eot
ADDED
Binary file
|
plugin/sdf/bootstrap/fonts/glyphicons-halflings-regular.svg
ADDED
@@ -0,0 +1,229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
+
<metadata></metadata>
|
5 |
+
<defs>
|
6 |
+
<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
|
7 |
+
<font-face units-per-em="1200" ascent="960" descent="-240" />
|
8 |
+
<missing-glyph horiz-adv-x="500" />
|
9 |
+
<glyph />
|
10 |
+
<glyph />
|
11 |
+
<glyph unicode="
" />
|
12 |
+
<glyph unicode=" " />
|
13 |
+
<glyph unicode="*" d="M100 500v200h259l-183 183l141 141l183 -183v259h200v-259l183 183l141 -141l-183 -183h259v-200h-259l183 -183l-141 -141l-183 183v-259h-200v259l-183 -183l-141 141l183 183h-259z" />
|
14 |
+
<glyph unicode="+" d="M0 400v300h400v400h300v-400h400v-300h-400v-400h-300v400h-400z" />
|
15 |
+
<glyph unicode=" " />
|
16 |
+
<glyph unicode=" " horiz-adv-x="652" />
|
17 |
+
<glyph unicode=" " horiz-adv-x="1304" />
|
18 |
+
<glyph unicode=" " horiz-adv-x="652" />
|
19 |
+
<glyph unicode=" " horiz-adv-x="1304" />
|
20 |
+
<glyph unicode=" " horiz-adv-x="434" />
|
21 |
+
<glyph unicode=" " horiz-adv-x="326" />
|
22 |
+
<glyph unicode=" " horiz-adv-x="217" />
|
23 |
+
<glyph unicode=" " horiz-adv-x="217" />
|
24 |
+
<glyph unicode=" " horiz-adv-x="163" />
|
25 |
+
<glyph unicode=" " horiz-adv-x="260" />
|
26 |
+
<glyph unicode=" " horiz-adv-x="72" />
|
27 |
+
<glyph unicode=" " horiz-adv-x="260" />
|
28 |
+
<glyph unicode=" " horiz-adv-x="326" />
|
29 |
+
<glyph unicode="€" d="M100 500l100 100h113q0 47 5 100h-218l100 100h135q37 167 112 257q117 141 297 141q242 0 354 -189q60 -103 66 -209h-181q0 55 -25.5 99t-63.5 68t-75 36.5t-67 12.5q-24 0 -52.5 -10t-62.5 -32t-65.5 -67t-50.5 -107h379l-100 -100h-300q-6 -46 -6 -100h406l-100 -100 h-300q9 -74 33 -132t52.5 -91t62 -54.5t59 -29t46.5 -7.5q29 0 66 13t75 37t63.5 67.5t25.5 96.5h174q-31 -172 -128 -278q-107 -117 -274 -117q-205 0 -324 158q-36 46 -69 131.5t-45 205.5h-217z" />
|
30 |
+
<glyph unicode="−" d="M200 400h900v300h-900v-300z" />
|
31 |
+
<glyph unicode="☁" d="M-14 494q0 -80 56.5 -137t135.5 -57h750q120 0 205 86t85 208q0 120 -85 206.5t-205 86.5q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5z" />
|
32 |
+
<glyph unicode="✉" d="M0 100l400 400l200 -200l200 200l400 -400h-1200zM0 300v600l300 -300zM0 1100l600 -603l600 603h-1200zM900 600l300 300v-600z" />
|
33 |
+
<glyph unicode="✏" d="M-13 -13l333 112l-223 223zM187 403l214 -214l614 614l-214 214zM887 1103l214 -214l99 92q13 13 13 32.5t-13 33.5l-153 153q-15 13 -33 13t-33 -13z" />
|
34 |
+
<glyph unicode="" horiz-adv-x="500" d="M0 0z" />
|
35 |
+
<glyph unicode="" d="M0 1200h1200l-500 -550v-550h300v-100h-800v100h300v550z" />
|
36 |
+
<glyph unicode="" d="M14 84q18 -55 86 -75.5t147 5.5q65 21 109 69t44 90v606l600 155v-521q-64 16 -138 -7q-79 -26 -122.5 -83t-25.5 -111q17 -55 85.5 -75.5t147.5 4.5q70 23 111.5 63.5t41.5 95.5v881q0 10 -7 15.5t-17 2.5l-752 -193q-10 -3 -17 -12.5t-7 -19.5v-689q-64 17 -138 -7 q-79 -25 -122.5 -82t-25.5 -112z" />
|
37 |
+
<glyph unicode="" d="M23 693q0 200 142 342t342 142t342 -142t142 -342q0 -142 -78 -261l300 -300q7 -8 7 -18t-7 -18l-109 -109q-8 -7 -18 -7t-18 7l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 693q0 -136 97 -233t234 -97t233.5 96.5t96.5 233.5t-96.5 233.5t-233.5 96.5 t-234 -97t-97 -233z" />
|
38 |
+
<glyph unicode="" d="M100 784q0 64 28 123t73 100.5t104.5 64t119 20.5t120 -38.5t104.5 -104.5q48 69 109.5 105t121.5 38t118.5 -20.5t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-149.5 152.5t-126.5 127.5 t-94 124.5t-33.5 117.5z" />
|
39 |
+
<glyph unicode="" d="M-72 800h479l146 400h2l146 -400h472l-382 -278l145 -449l-384 275l-382 -275l146 447zM168 71l2 1z" />
|
40 |
+
<glyph unicode="" d="M-72 800h479l146 400h2l146 -400h472l-382 -278l145 -449l-384 275l-382 -275l146 447zM168 71l2 1zM237 700l196 -142l-73 -226l192 140l195 -141l-74 229l193 140h-235l-77 211l-78 -211h-239z" />
|
41 |
+
<glyph unicode="" d="M0 0v143l400 257v100q-37 0 -68.5 74.5t-31.5 125.5v200q0 124 88 212t212 88t212 -88t88 -212v-200q0 -51 -31.5 -125.5t-68.5 -74.5v-100l400 -257v-143h-1200z" />
|
42 |
+
<glyph unicode="" d="M0 0v1100h1200v-1100h-1200zM100 100h100v100h-100v-100zM100 300h100v100h-100v-100zM100 500h100v100h-100v-100zM100 700h100v100h-100v-100zM100 900h100v100h-100v-100zM300 100h600v400h-600v-400zM300 600h600v400h-600v-400zM1000 100h100v100h-100v-100z M1000 300h100v100h-100v-100zM1000 500h100v100h-100v-100zM1000 700h100v100h-100v-100zM1000 900h100v100h-100v-100z" />
|
43 |
+
<glyph unicode="" d="M0 50v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5zM0 650v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5zM600 50v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5zM600 650v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5z" />
|
44 |
+
<glyph unicode="" d="M0 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM0 450v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5zM0 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5 t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 450v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5 v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 450v200q0 21 14.5 35.5t35.5 14.5h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5z" />
|
45 |
+
<glyph unicode="" d="M0 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM0 450q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v200q0 21 -14.5 35.5t-35.5 14.5h-200q-21 0 -35.5 -14.5 t-14.5 -35.5v-200zM0 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 50v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5 t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5zM400 450v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5zM400 850v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5 v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5z" />
|
46 |
+
<glyph unicode="" d="M29 454l419 -420l818 820l-212 212l-607 -607l-206 207z" />
|
47 |
+
<glyph unicode="" d="M106 318l282 282l-282 282l212 212l282 -282l282 282l212 -212l-282 -282l282 -282l-212 -212l-282 282l-282 -282z" />
|
48 |
+
<glyph unicode="" d="M23 693q0 200 142 342t342 142t342 -142t142 -342q0 -142 -78 -261l300 -300q7 -8 7 -18t-7 -18l-109 -109q-8 -7 -18 -7t-18 7l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 693q0 -136 97 -233t234 -97t233.5 96.5t96.5 233.5t-96.5 233.5t-233.5 96.5 t-234 -97t-97 -233zM300 600v200h100v100h200v-100h100v-200h-100v-100h-200v100h-100z" />
|
49 |
+
<glyph unicode="" d="M23 694q0 200 142 342t342 142t342 -142t142 -342q0 -141 -78 -262l300 -299q7 -7 7 -18t-7 -18l-109 -109q-8 -8 -18 -8t-18 8l-300 299q-120 -77 -261 -77q-200 0 -342 142t-142 342zM176 694q0 -136 97 -233t234 -97t233.5 97t96.5 233t-96.5 233t-233.5 97t-234 -97 t-97 -233zM300 601h400v200h-400v-200z" />
|
50 |
+
<glyph unicode="" d="M23 600q0 183 105 331t272 210v-166q-103 -55 -165 -155t-62 -220q0 -177 125 -302t302 -125t302 125t125 302q0 120 -62 220t-165 155v166q167 -62 272 -210t105 -331q0 -118 -45.5 -224.5t-123 -184t-184 -123t-224.5 -45.5t-224.5 45.5t-184 123t-123 184t-45.5 224.5 zM500 750q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v400q0 21 -14.5 35.5t-35.5 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-400z" />
|
51 |
+
<glyph unicode="" d="M100 1h200v300h-200v-300zM400 1v500h200v-500h-200zM700 1v800h200v-800h-200zM1000 1v1200h200v-1200h-200z" />
|
52 |
+
<glyph unicode="" d="M26 601q0 -33 6 -74l151 -38l2 -6q14 -49 38 -93l3 -5l-80 -134q45 -59 105 -105l133 81l5 -3q45 -26 94 -39l5 -2l38 -151q40 -5 74 -5q27 0 74 5l38 151l6 2q46 13 93 39l5 3l134 -81q56 44 104 105l-80 134l3 5q24 44 39 93l1 6l152 38q5 40 5 74q0 28 -5 73l-152 38 l-1 6q-16 51 -39 93l-3 5l80 134q-44 58 -104 105l-134 -81l-5 3q-45 25 -93 39l-6 1l-38 152q-40 5 -74 5q-27 0 -74 -5l-38 -152l-5 -1q-50 -14 -94 -39l-5 -3l-133 81q-59 -47 -105 -105l80 -134l-3 -5q-25 -47 -38 -93l-2 -6l-151 -38q-6 -48 -6 -73zM385 601 q0 88 63 151t152 63t152 -63t63 -151q0 -89 -63 -152t-152 -63t-152 63t-63 152z" />
|
53 |
+
<glyph unicode="" d="M100 1025v50q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-50q0 -11 -7 -18t-18 -7h-1050q-11 0 -18 7t-7 18zM200 100v800h900v-800q0 -41 -29.5 -71t-70.5 -30h-700q-41 0 -70.5 30 t-29.5 71zM300 100h100v700h-100v-700zM500 100h100v700h-100v-700zM500 1100h300v100h-300v-100zM700 100h100v700h-100v-700zM900 100h100v700h-100v-700z" />
|
54 |
+
<glyph unicode="" d="M1 601l656 644l644 -644h-200v-600h-300v400h-300v-400h-300v600h-200z" />
|
55 |
+
<glyph unicode="" d="M100 25v1150q0 11 7 18t18 7h475v-500h400v-675q0 -11 -7 -18t-18 -7h-850q-11 0 -18 7t-7 18zM700 800v300l300 -300h-300z" />
|
56 |
+
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM500 500v400h100 v-300h200v-100h-300z" />
|
57 |
+
<glyph unicode="" d="M-100 0l431 1200h209l-21 -300h162l-20 300h208l431 -1200h-538l-41 400h-242l-40 -400h-539zM488 500h224l-27 300h-170z" />
|
58 |
+
<glyph unicode="" d="M0 0v400h490l-290 300h200v500h300v-500h200l-290 -300h490v-400h-1100zM813 200h175v100h-175v-100z" />
|
59 |
+
<glyph unicode="" d="M1 600q0 122 47.5 233t127.5 191t191 127.5t233 47.5t233 -47.5t191 -127.5t127.5 -191t47.5 -233t-47.5 -233t-127.5 -191t-191 -127.5t-233 -47.5t-233 47.5t-191 127.5t-127.5 191t-47.5 233zM188 600q0 -170 121 -291t291 -121t291 121t121 291t-121 291t-291 121 t-291 -121t-121 -291zM350 600h150v300h200v-300h150l-250 -300z" />
|
60 |
+
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM350 600l250 300 l250 -300h-150v-300h-200v300h-150z" />
|
61 |
+
<glyph unicode="" d="M0 25v475l200 700h800q199 -700 200 -700v-475q0 -11 -7 -18t-18 -7h-1150q-11 0 -18 7t-7 18zM200 500h200l50 -200h300l50 200h200l-97 500h-606z" />
|
62 |
+
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -172 121.5 -293t292.5 -121t292.5 121t121.5 293q0 171 -121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM500 397v401 l297 -200z" />
|
63 |
+
<glyph unicode="" d="M23 600q0 -118 45.5 -224.5t123 -184t184 -123t224.5 -45.5t224.5 45.5t184 123t123 184t45.5 224.5h-150q0 -177 -125 -302t-302 -125t-302 125t-125 302t125 302t302 125q136 0 246 -81l-146 -146h400v400l-145 -145q-157 122 -355 122q-118 0 -224.5 -45.5t-184 -123 t-123 -184t-45.5 -224.5z" />
|
64 |
+
<glyph unicode="" d="M23 600q0 118 45.5 224.5t123 184t184 123t224.5 45.5q198 0 355 -122l145 145v-400h-400l147 147q-112 80 -247 80q-177 0 -302 -125t-125 -302h-150zM100 0v400h400l-147 -147q112 -80 247 -80q177 0 302 125t125 302h150q0 -118 -45.5 -224.5t-123 -184t-184 -123 t-224.5 -45.5q-198 0 -355 122z" />
|
65 |
+
<glyph unicode="" d="M100 0h1100v1200h-1100v-1200zM200 100v900h900v-900h-900zM300 200v100h100v-100h-100zM300 400v100h100v-100h-100zM300 600v100h100v-100h-100zM300 800v100h100v-100h-100zM500 200h500v100h-500v-100zM500 400v100h500v-100h-500zM500 600v100h500v-100h-500z M500 800v100h500v-100h-500z" />
|
66 |
+
<glyph unicode="" d="M0 100v600q0 41 29.5 70.5t70.5 29.5h100v200q0 82 59 141t141 59h300q82 0 141 -59t59 -141v-200h100q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-900q-41 0 -70.5 29.5t-29.5 70.5zM400 800h300v150q0 21 -14.5 35.5t-35.5 14.5h-200 q-21 0 -35.5 -14.5t-14.5 -35.5v-150z" />
|
67 |
+
<glyph unicode="" d="M100 0v1100h100v-1100h-100zM300 400q60 60 127.5 84t127.5 17.5t122 -23t119 -30t110 -11t103 42t91 120.5v500q-40 -81 -101.5 -115.5t-127.5 -29.5t-138 25t-139.5 40t-125.5 25t-103 -29.5t-65 -115.5v-500z" />
|
68 |
+
<glyph unicode="" d="M0 275q0 -11 7 -18t18 -7h50q11 0 18 7t7 18v300q0 127 70.5 231.5t184.5 161.5t245 57t245 -57t184.5 -161.5t70.5 -231.5v-300q0 -11 7 -18t18 -7h50q11 0 18 7t7 18v300q0 116 -49.5 227t-131 192.5t-192.5 131t-227 49.5t-227 -49.5t-192.5 -131t-131 -192.5 t-49.5 -227v-300zM200 20v460q0 8 6 14t14 6h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14zM800 20v460q0 8 6 14t14 6h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14z" />
|
69 |
+
<glyph unicode="" d="M0 400h300l300 -200v800l-300 -200h-300v-400zM688 459l141 141l-141 141l71 71l141 -141l141 141l71 -71l-141 -141l141 -141l-71 -71l-141 141l-141 -141z" />
|
70 |
+
<glyph unicode="" d="M0 400h300l300 -200v800l-300 -200h-300v-400zM700 857l69 53q111 -135 111 -310q0 -169 -106 -302l-67 54q86 110 86 248q0 146 -93 257z" />
|
71 |
+
<glyph unicode="" d="M0 401v400h300l300 200v-800l-300 200h-300zM702 858l69 53q111 -135 111 -310q0 -170 -106 -303l-67 55q86 110 86 248q0 145 -93 257zM889 951l7 -8q123 -151 123 -344q0 -189 -119 -339l-7 -8l81 -66l6 8q142 178 142 405q0 230 -144 408l-6 8z" />
|
72 |
+
<glyph unicode="" d="M0 0h500v500h-200v100h-100v-100h-200v-500zM0 600h100v100h400v100h100v100h-100v300h-500v-600zM100 100v300h300v-300h-300zM100 800v300h300v-300h-300zM200 200v100h100v-100h-100zM200 900h100v100h-100v-100zM500 500v100h300v-300h200v-100h-100v-100h-200v100 h-100v100h100v200h-200zM600 0v100h100v-100h-100zM600 1000h100v-300h200v-300h300v200h-200v100h200v500h-600v-200zM800 800v300h300v-300h-300zM900 0v100h300v-100h-300zM900 900v100h100v-100h-100zM1100 200v100h100v-100h-100z" />
|
73 |
+
<glyph unicode="" d="M0 200h100v1000h-100v-1000zM100 0v100h300v-100h-300zM200 200v1000h100v-1000h-100zM500 0v91h100v-91h-100zM500 200v1000h200v-1000h-200zM700 0v91h100v-91h-100zM800 200v1000h100v-1000h-100zM900 0v91h200v-91h-200zM1000 200v1000h200v-1000h-200z" />
|
74 |
+
<glyph unicode="" d="M1 700v475q0 10 7.5 17.5t17.5 7.5h474l700 -700l-500 -500zM148 953q0 -42 29 -71q30 -30 71.5 -30t71.5 30q29 29 29 71t-29 71q-30 30 -71.5 30t-71.5 -30q-29 -29 -29 -71z" />
|
75 |
+
<glyph unicode="" d="M2 700v475q0 11 7 18t18 7h474l700 -700l-500 -500zM148 953q0 -42 30 -71q29 -30 71 -30t71 30q30 29 30 71t-30 71q-29 30 -71 30t-71 -30q-30 -29 -30 -71zM701 1200h100l700 -700l-500 -500l-50 50l450 450z" />
|
76 |
+
<glyph unicode="" d="M100 0v1025l175 175h925v-1000l-100 -100v1000h-750l-100 -100h750v-1000h-900z" />
|
77 |
+
<glyph unicode="" d="M200 0l450 444l450 -443v1150q0 20 -14.5 35t-35.5 15h-800q-21 0 -35.5 -15t-14.5 -35v-1151z" />
|
78 |
+
<glyph unicode="" d="M0 100v700h200l100 -200h600l100 200h200v-700h-200v200h-800v-200h-200zM253 829l40 -124h592l62 124l-94 346q-2 11 -10 18t-18 7h-450q-10 0 -18 -7t-10 -18zM281 24l38 152q2 10 11.5 17t19.5 7h500q10 0 19.5 -7t11.5 -17l38 -152q2 -10 -3.5 -17t-15.5 -7h-600 q-10 0 -15.5 7t-3.5 17z" />
|
79 |
+
<glyph unicode="" d="M0 200q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-150q-4 8 -11.5 21.5t-33 48t-53 61t-69 48t-83.5 21.5h-200q-41 0 -82 -20.5t-70 -50t-52 -59t-34 -50.5l-12 -20h-150q-41 0 -70.5 -29.5t-29.5 -70.5v-600z M356 500q0 100 72 172t172 72t172 -72t72 -172t-72 -172t-172 -72t-172 72t-72 172zM494 500q0 -44 31 -75t75 -31t75 31t31 75t-31 75t-75 31t-75 -31t-31 -75zM900 700v100h100v-100h-100z" />
|
80 |
+
<glyph unicode="" d="M53 0h365v66q-41 0 -72 11t-49 38t1 71l92 234h391l82 -222q16 -45 -5.5 -88.5t-74.5 -43.5v-66h417v66q-34 1 -74 43q-18 19 -33 42t-21 37l-6 13l-385 998h-93l-399 -1006q-24 -48 -52 -75q-12 -12 -33 -25t-36 -20l-15 -7v-66zM416 521l178 457l46 -140l116 -317h-340 z" />
|
81 |
+
<glyph unicode="" d="M100 0v89q41 7 70.5 32.5t29.5 65.5v827q0 28 -1 39.5t-5.5 26t-15.5 21t-29 14t-49 14.5v70h471q120 0 213 -88t93 -228q0 -55 -11.5 -101.5t-28 -74t-33.5 -47.5t-28 -28l-12 -7q8 -3 21.5 -9t48 -31.5t60.5 -58t47.5 -91.5t21.5 -129q0 -84 -59 -156.5t-142 -111 t-162 -38.5h-500zM400 200h161q89 0 153 48.5t64 132.5q0 90 -62.5 154.5t-156.5 64.5h-159v-400zM400 700h139q76 0 130 61.5t54 138.5q0 82 -84 130.5t-239 48.5v-379z" />
|
82 |
+
<glyph unicode="" d="M200 0v57q77 7 134.5 40.5t65.5 80.5l173 849q10 56 -10 74t-91 37q-6 1 -10.5 2.5t-9.5 2.5v57h425l2 -57q-33 -8 -62 -25.5t-46 -37t-29.5 -38t-17.5 -30.5l-5 -12l-128 -825q-10 -52 14 -82t95 -36v-57h-500z" />
|
83 |
+
<glyph unicode="" d="M-75 200h75v800h-75l125 167l125 -167h-75v-800h75l-125 -167zM300 900v300h150h700h150v-300h-50q0 29 -8 48.5t-18.5 30t-33.5 15t-39.5 5.5t-50.5 1h-200v-850l100 -50v-100h-400v100l100 50v850h-200q-34 0 -50.5 -1t-40 -5.5t-33.5 -15t-18.5 -30t-8.5 -48.5h-49z " />
|
84 |
+
<glyph unicode="" d="M33 51l167 125v-75h800v75l167 -125l-167 -125v75h-800v-75zM100 901v300h150h700h150v-300h-50q0 29 -8 48.5t-18 30t-33.5 15t-40 5.5t-50.5 1h-200v-650l100 -50v-100h-400v100l100 50v650h-200q-34 0 -50.5 -1t-39.5 -5.5t-33.5 -15t-18.5 -30t-8 -48.5h-50z" />
|
85 |
+
<glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 350q0 -20 14.5 -35t35.5 -15h800q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-800q-21 0 -35.5 -14.5t-14.5 -35.5 v-100zM0 650q0 -20 14.5 -35t35.5 -15h1000q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1000q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 950q0 -20 14.5 -35t35.5 -15h600q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-600q-21 0 -35.5 -14.5 t-14.5 -35.5v-100z" />
|
86 |
+
<glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 650q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5 v-100zM200 350q0 -20 14.5 -35t35.5 -15h700q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-700q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM200 950q0 -20 14.5 -35t35.5 -15h700q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-700q-21 0 -35.5 -14.5 t-14.5 -35.5v-100z" />
|
87 |
+
<glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1000q-21 0 -35.5 15 t-14.5 35zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-600 q-21 0 -35.5 15t-14.5 35z" />
|
88 |
+
<glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM0 350v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15 t-14.5 35zM0 650v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM0 950v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100 q-21 0 -35.5 15t-14.5 35z" />
|
89 |
+
<glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35zM0 350v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15 t-14.5 35zM0 650v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35zM0 950v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15 t-14.5 35zM300 50v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800 q-21 0 -35.5 15t-14.5 35zM300 650v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM300 950v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15 h-800q-21 0 -35.5 15t-14.5 35z" />
|
90 |
+
<glyph unicode="" d="M-101 500v100h201v75l166 -125l-166 -125v75h-201zM300 0h100v1100h-100v-1100zM500 50q0 -20 14.5 -35t35.5 -15h600q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-600q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 350q0 -20 14.5 -35t35.5 -15h300q20 0 35 15t15 35 v100q0 21 -15 35.5t-35 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 650q0 -20 14.5 -35t35.5 -15h500q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 950q0 -20 14.5 -35t35.5 -15h100q20 0 35 15t15 35v100 q0 21 -15 35.5t-35 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-100z" />
|
91 |
+
<glyph unicode="" d="M1 50q0 -20 14.5 -35t35.5 -15h600q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-600q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 350q0 -20 14.5 -35t35.5 -15h300q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 650 q0 -20 14.5 -35t35.5 -15h500q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 950q0 -20 14.5 -35t35.5 -15h100q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM801 0v1100h100v-1100 h-100zM934 550l167 -125v75h200v100h-200v75z" />
|
92 |
+
<glyph unicode="" d="M0 275v650q0 31 22 53t53 22h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53zM900 600l300 300v-600z" />
|
93 |
+
<glyph unicode="" d="M0 44v1012q0 18 13 31t31 13h1112q19 0 31.5 -13t12.5 -31v-1012q0 -18 -12.5 -31t-31.5 -13h-1112q-18 0 -31 13t-13 31zM100 263l247 182l298 -131l-74 156l293 318l236 -288v500h-1000v-737zM208 750q0 56 39 95t95 39t95 -39t39 -95t-39 -95t-95 -39t-95 39t-39 95z " />
|
94 |
+
<glyph unicode="" d="M148 745q0 124 60.5 231.5t165 172t226.5 64.5q123 0 227 -63t164.5 -169.5t60.5 -229.5t-73 -272q-73 -114 -166.5 -237t-150.5 -189l-57 -66q-10 9 -27 26t-66.5 70.5t-96 109t-104 135.5t-100.5 155q-63 139 -63 262zM342 772q0 -107 75.5 -182.5t181.5 -75.5 q107 0 182.5 75.5t75.5 182.5t-75.5 182t-182.5 75t-182 -75.5t-75 -181.5z" />
|
95 |
+
<glyph unicode="" d="M1 600q0 122 47.5 233t127.5 191t191 127.5t233 47.5t233 -47.5t191 -127.5t127.5 -191t47.5 -233t-47.5 -233t-127.5 -191t-191 -127.5t-233 -47.5t-233 47.5t-191 127.5t-127.5 191t-47.5 233zM173 600q0 -177 125.5 -302t301.5 -125v854q-176 0 -301.5 -125 t-125.5 -302z" />
|
96 |
+
<glyph unicode="" d="M117 406q0 94 34 186t88.5 172.5t112 159t115 177t87.5 194.5q21 -71 57.5 -142.5t76 -130.5t83 -118.5t82 -117t70 -116t50 -125.5t18.5 -136q0 -89 -39 -165.5t-102 -126.5t-140 -79.5t-156 -33.5q-114 6 -211.5 53t-161.5 138.5t-64 210.5zM243 414q14 -82 59.5 -136 t136.5 -80l16 98q-7 6 -18 17t-34 48t-33 77q-15 73 -14 143.5t10 122.5l9 51q-92 -110 -119.5 -185t-12.5 -156z" />
|
97 |
+
<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5q366 -6 397 -14l-186 -186h-311q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v125l200 200v-225q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5 t-117.5 282.5zM436 341l161 50l412 412l-114 113l-405 -405zM995 1015l113 -113l113 113l-21 85l-92 28z" />
|
98 |
+
<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h261l2 -80q-133 -32 -218 -120h-145q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-53q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5 zM423 524q30 38 81.5 64t103 35.5t99 14t77.5 3.5l29 -1v-209l360 324l-359 318v-216q-7 0 -19 -1t-48 -8t-69.5 -18.5t-76.5 -37t-76.5 -59t-62 -88t-39.5 -121.5z" />
|
99 |
+
<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-169q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5 t-117.5 282.5zM342 632l283 -284l566 567l-136 137l-430 -431l-147 147z" />
|
100 |
+
<glyph unicode="" d="M0 603l300 296v-198h200v200h-200l300 300l295 -300h-195v-200h200v198l300 -296l-300 -300v198h-200v-200h195l-295 -300l-300 300h200v200h-200v-198z" />
|
101 |
+
<glyph unicode="" d="M200 50v1000q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-437l500 487v-1100l-500 488v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5z" />
|
102 |
+
<glyph unicode="" d="M0 50v1000q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-437l500 487v-487l500 487v-1100l-500 488v-488l-500 488v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5z" />
|
103 |
+
<glyph unicode="" d="M136 550l564 550v-487l500 487v-1100l-500 488v-488z" />
|
104 |
+
<glyph unicode="" d="M200 0l900 550l-900 550v-1100z" />
|
105 |
+
<glyph unicode="" d="M200 150q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v800q0 21 -14.5 35.5t-35.5 14.5h-200q-21 0 -35.5 -14.5t-14.5 -35.5v-800zM600 150q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v800q0 21 -14.5 35.5t-35.5 14.5h-200 q-21 0 -35.5 -14.5t-14.5 -35.5v-800z" />
|
106 |
+
<glyph unicode="" d="M200 150q0 -20 14.5 -35t35.5 -15h800q21 0 35.5 15t14.5 35v800q0 21 -14.5 35.5t-35.5 14.5h-800q-21 0 -35.5 -14.5t-14.5 -35.5v-800z" />
|
107 |
+
<glyph unicode="" d="M0 0v1100l500 -487v487l564 -550l-564 -550v488z" />
|
108 |
+
<glyph unicode="" d="M0 0v1100l500 -487v487l500 -487v437q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-500 -488v488z" />
|
109 |
+
<glyph unicode="" d="M300 0v1100l500 -487v437q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438z" />
|
110 |
+
<glyph unicode="" d="M100 250v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5zM100 500h1100l-550 564z" />
|
111 |
+
<glyph unicode="" d="M185 599l592 -592l240 240l-353 353l353 353l-240 240z" />
|
112 |
+
<glyph unicode="" d="M272 194l353 353l-353 353l241 240l572 -571l21 -22l-1 -1v-1l-592 -591z" />
|
113 |
+
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -300t-217.5 -218t-299.5 -80t-299.5 80t-217.5 218t-80 300zM300 500h200v-200h200v200h200v200h-200v200h-200v-200h-200v-200z" />
|
114 |
+
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -300t-217.5 -218t-299.5 -80t-299.5 80t-217.5 218t-80 300zM300 500h600v200h-600v-200z" />
|
115 |
+
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -300t-217.5 -218t-299.5 -80t-299.5 80t-217.5 218t-80 300zM246 459l213 -213l141 142l141 -142l213 213l-142 141l142 141l-213 212l-141 -141l-141 142l-212 -213l141 -141z" />
|
116 |
+
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM270 551l276 -277l411 411l-175 174l-236 -236l-102 102z" />
|
117 |
+
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -300t-217.5 -218t-299.5 -80t-299.5 80t-217.5 218t-80 300zM363 700h144q4 0 11.5 -1t11 -1t6.5 3t3 9t1 11t3.5 8.5t3.5 6t5.5 4t6.5 2.5t9 1.5t9 0.5h11.5h12.5q19 0 30 -10t11 -26 q0 -22 -4 -28t-27 -22q-5 -1 -12.5 -3t-27 -13.5t-34 -27t-26.5 -46t-11 -68.5h200q5 3 14 8t31.5 25.5t39.5 45.5t31 69t14 94q0 51 -17.5 89t-42 58t-58.5 32t-58.5 15t-51.5 3q-105 0 -172 -56t-67 -183zM500 300h200v100h-200v-100z" />
|
118 |
+
<glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -300t-217.5 -218t-299.5 -80t-299.5 80t-217.5 218t-80 300zM400 300h400v100h-100v300h-300v-100h100v-200h-100v-100zM500 800h200v100h-200v-100z" />
|
119 |
+
<glyph unicode="" d="M0 500v200h194q15 60 36 104.5t55.5 86t88 69t126.5 40.5v200h200v-200q54 -20 113 -60t112.5 -105.5t71.5 -134.5h203v-200h-203q-25 -102 -116.5 -186t-180.5 -117v-197h-200v197q-140 27 -208 102.5t-98 200.5h-194zM290 500q24 -73 79.5 -127.5t130.5 -78.5v206h200 v-206q149 48 201 206h-201v200h200q-25 74 -76 127.5t-124 76.5v-204h-200v203q-75 -24 -130 -77.5t-79 -125.5h209v-200h-210z" />
|
120 |
+
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM356 465l135 135 l-135 135l109 109l135 -135l135 135l109 -109l-135 -135l135 -135l-109 -109l-135 135l-135 -135z" />
|
121 |
+
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM322 537l141 141 l87 -87l204 205l142 -142l-346 -345z" />
|
122 |
+
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -115 62 -215l568 567q-100 62 -216 62q-171 0 -292.5 -121.5t-121.5 -292.5zM391 245q97 -59 209 -59q171 0 292.5 121.5t121.5 292.5 q0 112 -59 209z" />
|
123 |
+
<glyph unicode="" d="M0 547l600 453v-300h600v-300h-600v-301z" />
|
124 |
+
<glyph unicode="" d="M0 400v300h600v300l600 -453l-600 -448v301h-600z" />
|
125 |
+
<glyph unicode="" d="M204 600l450 600l444 -600h-298v-600h-300v600h-296z" />
|
126 |
+
<glyph unicode="" d="M104 600h296v600h300v-600h298l-449 -600z" />
|
127 |
+
<glyph unicode="" d="M0 200q6 132 41 238.5t103.5 193t184 138t271.5 59.5v271l600 -453l-600 -448v301q-95 -2 -183 -20t-170 -52t-147 -92.5t-100 -135.5z" />
|
128 |
+
<glyph unicode="" d="M0 0v400l129 -129l294 294l142 -142l-294 -294l129 -129h-400zM635 777l142 -142l294 294l129 -129v400h-400l129 -129z" />
|
129 |
+
<glyph unicode="" d="M34 176l295 295l-129 129h400v-400l-129 130l-295 -295zM600 600v400l129 -129l295 295l142 -141l-295 -295l129 -130h-400z" />
|
130 |
+
<glyph unicode="" d="M23 600q0 118 45.5 224.5t123 184t184 123t224.5 45.5t224.5 -45.5t184 -123t123 -184t45.5 -224.5t-45.5 -224.5t-123 -184t-184 -123t-224.5 -45.5t-224.5 45.5t-184 123t-123 184t-45.5 224.5zM456 851l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5 t21.5 34.5l58 302q4 20 -8 34.5t-33 14.5h-207q-20 0 -32 -14.5t-8 -34.5zM500 300h200v100h-200v-100z" />
|
131 |
+
<glyph unicode="" d="M0 800h100v-200h400v300h200v-300h400v200h100v100h-111v6t-1 15t-3 18l-34 172q-11 39 -41.5 63t-69.5 24q-32 0 -61 -17l-239 -144q-22 -13 -40 -35q-19 24 -40 36l-238 144q-33 18 -62 18q-39 0 -69.5 -23t-40.5 -61l-35 -177q-2 -8 -3 -18t-1 -15v-6h-111v-100z M100 0h400v400h-400v-400zM200 900q-3 0 14 48t35 96l18 47l214 -191h-281zM700 0v400h400v-400h-400zM731 900l202 197q5 -12 12 -32.5t23 -64t25 -72t7 -28.5h-269z" />
|
132 |
+
<glyph unicode="" d="M0 -22v143l216 193q-9 53 -13 83t-5.5 94t9 113t38.5 114t74 124q47 60 99.5 102.5t103 68t127.5 48t145.5 37.5t184.5 43.5t220 58.5q0 -189 -22 -343t-59 -258t-89 -181.5t-108.5 -120t-122 -68t-125.5 -30t-121.5 -1.5t-107.5 12.5t-87.5 17t-56.5 7.5l-99 -55z M238.5 300.5q19.5 -6.5 86.5 76.5q55 66 367 234q70 38 118.5 69.5t102 79t99 111.5t86.5 148q22 50 24 60t-6 19q-7 5 -17 5t-26.5 -14.5t-33.5 -39.5q-35 -51 -113.5 -108.5t-139.5 -89.5l-61 -32q-369 -197 -458 -401q-48 -111 -28.5 -117.5z" />
|
133 |
+
<glyph unicode="" d="M111 408q0 -33 5 -63q9 -56 44 -119.5t105 -108.5q31 -21 64 -16t62 23.5t57 49.5t48 61.5t35 60.5q32 66 39 184.5t-13 157.5q79 -80 122 -164t26 -184q-5 -33 -20.5 -69.5t-37.5 -80.5q-10 -19 -14.5 -29t-12 -26t-9 -23.5t-3 -19t2.5 -15.5t11 -9.5t19.5 -5t30.5 2.5 t42 8q57 20 91 34t87.5 44.5t87 64t65.5 88.5t47 122q38 172 -44.5 341.5t-246.5 278.5q22 -44 43 -129q39 -159 -32 -154q-15 2 -33 9q-79 33 -120.5 100t-44 175.5t48.5 257.5q-13 -8 -34 -23.5t-72.5 -66.5t-88.5 -105.5t-60 -138t-8 -166.5q2 -12 8 -41.5t8 -43t6 -39.5 t3.5 -39.5t-1 -33.5t-6 -31.5t-13.5 -24t-21 -20.5t-31 -12q-38 -10 -67 13t-40.5 61.5t-15 81.5t10.5 75q-52 -46 -83.5 -101t-39 -107t-7.5 -85z" />
|
134 |
+
<glyph unicode="" d="M-61 600l26 40q6 10 20 30t49 63.5t74.5 85.5t97 90t116.5 83.5t132.5 59t145.5 23.5t145.5 -23.5t132.5 -59t116.5 -83.5t97 -90t74.5 -85.5t49 -63.5t20 -30l26 -40l-26 -40q-6 -10 -20 -30t-49 -63.5t-74.5 -85.5t-97 -90t-116.5 -83.5t-132.5 -59t-145.5 -23.5 t-145.5 23.5t-132.5 59t-116.5 83.5t-97 90t-74.5 85.5t-49 63.5t-20 30zM120 600q7 -10 40.5 -58t56 -78.5t68 -77.5t87.5 -75t103 -49.5t125 -21.5t123.5 20t100.5 45.5t85.5 71.5t66.5 75.5t58 81.5t47 66q-1 1 -28.5 37.5t-42 55t-43.5 53t-57.5 63.5t-58.5 54 q49 -74 49 -163q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 85 46 158q-102 -87 -226 -258zM377 656q49 -124 154 -191l105 105q-37 24 -75 72t-57 84l-20 36z" />
|
135 |
+
<glyph unicode="" d="M-61 600l26 40q6 10 20 30t49 63.5t74.5 85.5t97 90t116.5 83.5t132.5 59t145.5 23.5q61 0 121 -17l37 142h148l-314 -1200h-148l37 143q-82 21 -165 71.5t-140 102t-109.5 112t-72 88.5t-29.5 43zM120 600q210 -282 393 -336l37 141q-107 18 -178.5 101.5t-71.5 193.5 q0 85 46 158q-102 -87 -226 -258zM377 656q49 -124 154 -191l47 47l23 87q-30 28 -59 69t-44 68l-14 26zM780 161l38 145q22 15 44.5 34t46 44t40.5 44t41 50.5t33.5 43.5t33 44t24.5 34q-97 127 -140 175l39 146q67 -54 131.5 -125.5t87.5 -103.5t36 -52l26 -40l-26 -40 q-7 -12 -25.5 -38t-63.5 -79.5t-95.5 -102.5t-124 -100t-146.5 -79z" />
|
136 |
+
<glyph unicode="" d="M-97.5 34q13.5 -34 50.5 -34h1294q37 0 50.5 35.5t-7.5 67.5l-642 1056q-20 33 -48 36t-48 -29l-642 -1066q-21 -32 -7.5 -66zM155 200l445 723l445 -723h-345v100h-200v-100h-345zM500 600l100 -300l100 300v100h-200v-100z" />
|
137 |
+
<glyph unicode="" d="M100 262v41q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44t106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -91 100 -113v-64q0 -21 -13 -29t-32 1l-94 78h-222l-94 -78q-19 -9 -32 -1t-13 29v64 q0 22 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5z" />
|
138 |
+
<glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1000q21 0 35.5 15t14.5 35v750h-1100v-750zM0 900h1100v150q0 21 -14.5 35.5t-35.5 14.5h-150v100h-100v-100h-500v100h-100v-100h-150q-21 0 -35.5 -14.5t-14.5 -35.5v-150zM100 100v100h100v-100h-100zM100 300v100h100v-100h-100z M100 500v100h100v-100h-100zM300 100v100h100v-100h-100zM300 300v100h100v-100h-100zM300 500v100h100v-100h-100zM500 100v100h100v-100h-100zM500 300v100h100v-100h-100zM500 500v100h100v-100h-100zM700 100v100h100v-100h-100zM700 300v100h100v-100h-100zM700 500 v100h100v-100h-100zM900 100v100h100v-100h-100zM900 300v100h100v-100h-100zM900 500v100h100v-100h-100z" />
|
139 |
+
<glyph unicode="" d="M0 200v200h259l600 600h241v198l300 -295l-300 -300v197h-159l-600 -600h-341zM0 800h259l122 -122l141 142l-181 180h-341v-200zM678 381l141 142l122 -123h159v198l300 -295l-300 -300v197h-241z" />
|
140 |
+
<glyph unicode="" d="M0 400v600q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5z" />
|
141 |
+
<glyph unicode="" d="M100 600v200h300v-250q0 -113 6 -145q17 -92 102 -117q39 -11 92 -11q37 0 66.5 5.5t50 15.5t36 24t24 31.5t14 37.5t7 42t2.5 45t0 47v25v250h300v-200q0 -42 -3 -83t-15 -104t-31.5 -116t-58 -109.5t-89 -96.5t-129 -65.5t-174.5 -25.5t-174.5 25.5t-129 65.5t-89 96.5 t-58 109.5t-31.5 116t-15 104t-3 83zM100 900v300h300v-300h-300zM800 900v300h300v-300h-300z" />
|
142 |
+
<glyph unicode="" d="M-30 411l227 -227l352 353l353 -353l226 227l-578 579z" />
|
143 |
+
<glyph unicode="" d="M70 797l580 -579l578 579l-226 227l-353 -353l-352 353z" />
|
144 |
+
<glyph unicode="" d="M-198 700l299 283l300 -283h-203v-400h385l215 -200h-800v600h-196zM402 1000l215 -200h381v-400h-198l299 -283l299 283h-200v600h-796z" />
|
145 |
+
<glyph unicode="" d="M18 939q-5 24 10 42q14 19 39 19h896l38 162q5 17 18.5 27.5t30.5 10.5h94q20 0 35 -14.5t15 -35.5t-15 -35.5t-35 -14.5h-54l-201 -961q-2 -4 -6 -10.5t-19 -17.5t-33 -11h-31v-50q0 -20 -14.5 -35t-35.5 -15t-35.5 15t-14.5 35v50h-300v-50q0 -20 -14.5 -35t-35.5 -15 t-35.5 15t-14.5 35v50h-50q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5h535l48 200h-633q-32 0 -54.5 21t-27.5 43z" />
|
146 |
+
<glyph unicode="" d="M0 0v800h1200v-800h-1200zM0 900v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500v-100h-1200z" />
|
147 |
+
<glyph unicode="" d="M1 0l300 700h1200l-300 -700h-1200zM1 400v600h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500v-200h-1000z" />
|
148 |
+
<glyph unicode="" d="M302 300h198v600h-198l298 300l298 -300h-198v-600h198l-298 -300z" />
|
149 |
+
<glyph unicode="" d="M0 600l300 298v-198h600v198l300 -298l-300 -297v197h-600v-197z" />
|
150 |
+
<glyph unicode="" d="M0 100v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM31 400l172 739q5 22 23 41.5t38 19.5h672q19 0 37.5 -22.5t23.5 -45.5l172 -732h-1138zM800 100h100v100h-100v-100z M1000 100h100v100h-100v-100z" />
|
151 |
+
<glyph unicode="" d="M-101 600v50q0 24 25 49t50 38l25 13v-250l-11 5.5t-24 14t-30 21.5t-24 27.5t-11 31.5zM99 500v250v5q0 13 0.5 18.5t2.5 13t8 10.5t15 3h200l675 250v-850l-675 200h-38l47 -276q2 -12 -3 -17.5t-11 -6t-21 -0.5h-8h-83q-20 0 -34.5 14t-18.5 35q-56 337 -56 351z M1100 200v850q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5v-850q0 -20 -15 -35t-35 -15q-21 0 -35.5 15t-14.5 35z" />
|
152 |
+
<glyph unicode="" d="M74 350q0 21 13.5 35.5t33.5 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3 32t29 13h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q20 0 33.5 -14.5t13.5 -35.5q0 -20 -13 -40t-31 -27q-22 -9 -63 -23t-167.5 -37 t-251.5 -23t-245.5 20.5t-178.5 41.5l-58 20q-18 7 -31 27.5t-13 40.5zM497 110q12 -49 40 -79.5t63 -30.5t63 30.5t39 79.5q-48 -6 -102 -6t-103 6z" />
|
153 |
+
<glyph unicode="" d="M21 445l233 -45l-78 -224l224 78l45 -233l155 179l155 -179l45 233l224 -78l-78 224l234 45l-180 155l180 156l-234 44l78 225l-224 -78l-45 233l-155 -180l-155 180l-45 -233l-224 78l78 -225l-233 -44l179 -156z" />
|
154 |
+
<glyph unicode="" d="M0 200h200v600h-200v-600zM300 275q0 -75 100 -75h61q123 -100 139 -100h250q46 0 83 57l238 344q29 31 29 74v100q0 44 -30.5 84.5t-69.5 40.5h-328q28 118 28 125v150q0 44 -30.5 84.5t-69.5 40.5h-50q-27 0 -51 -20t-38 -48l-96 -198l-145 -196q-20 -26 -20 -63v-400z M400 300v375l150 212l100 213h50v-175l-50 -225h450v-125l-250 -375h-214l-136 100h-100z" />
|
155 |
+
<glyph unicode="" d="M0 400v600h200v-600h-200zM300 525v400q0 75 100 75h61q123 100 139 100h250q46 0 83 -57l238 -344q29 -31 29 -74v-100q0 -44 -30.5 -84.5t-69.5 -40.5h-328q28 -118 28 -125v-150q0 -44 -30.5 -84.5t-69.5 -40.5h-50q-27 0 -51 20t-38 48l-96 198l-145 196 q-20 26 -20 63zM400 525l150 -212l100 -213h50v175l-50 225h450v125l-250 375h-214l-136 -100h-100v-375z" />
|
156 |
+
<glyph unicode="" d="M8 200v600h200v-600h-200zM308 275v525q0 17 14 35.5t28 28.5l14 9l362 230q14 6 25 6q17 0 29 -12l109 -112q14 -14 14 -34q0 -18 -11 -32l-85 -121h302q85 0 138.5 -38t53.5 -110t-54.5 -111t-138.5 -39h-107l-130 -339q-7 -22 -20.5 -41.5t-28.5 -19.5h-341 q-7 0 -90 81t-83 94zM408 289l100 -89h293l131 339q6 21 19.5 41t28.5 20h203q16 0 25 15t9 36q0 20 -9 34.5t-25 14.5h-457h-6.5h-7.5t-6.5 0.5t-6 1t-5 1.5t-5.5 2.5t-4 4t-4 5.5q-5 12 -5 20q0 14 10 27l147 183l-86 83l-339 -236v-503z" />
|
157 |
+
<glyph unicode="" d="M-101 651q0 72 54 110t139 37h302l-85 121q-11 16 -11 32q0 21 14 34l109 113q13 12 29 12q11 0 25 -6l365 -230q7 -4 16.5 -10.5t26 -26t16.5 -36.5v-526q0 -13 -85.5 -93.5t-93.5 -80.5h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-84 0 -139 39t-55 111zM-1 601h222 q15 0 28.5 -20.5t19.5 -40.5l131 -339h293l106 89v502l-342 237l-87 -83l145 -184q10 -11 10 -26q0 -11 -5 -20q-1 -3 -3.5 -5.5l-4 -4t-5 -2.5t-5.5 -1.5t-6.5 -1t-6.5 -0.5h-7.5h-6.5h-476v-100zM999 201v600h200v-600h-200z" />
|
158 |
+
<glyph unicode="" d="M97 719l230 -363q4 -6 10.5 -15.5t26 -25t36.5 -15.5h525q13 0 94 83t81 90v342q0 15 -20 28.5t-41 19.5l-339 131v106q0 84 -39 139t-111 55t-110 -53.5t-38 -138.5v-302l-121 84q-15 12 -33.5 11.5t-32.5 -13.5l-112 -110q-22 -22 -6 -53zM172 739l83 86l183 -146 q22 -18 47 -5q3 1 5.5 3.5l4 4t2.5 5t1.5 5.5t1 6.5t0.5 6v7.5v7v456q0 22 25 31t50 -0.5t25 -30.5v-202q0 -16 20 -29.5t41 -19.5l339 -130v-294l-89 -100h-503zM400 0v200h600v-200h-600z" />
|
159 |
+
<glyph unicode="" d="M1 585q-15 -31 7 -53l112 -110q13 -13 32 -13.5t34 10.5l121 85l-1 -302q0 -84 38.5 -138t110.5 -54t111 55t39 139v106l339 131q20 6 40.5 19.5t20.5 28.5v342q0 7 -81 90t-94 83h-525q-17 0 -35.5 -14t-28.5 -28l-10 -15zM76 565l237 339h503l89 -100v-294l-340 -130 q-20 -6 -40 -20t-20 -29v-202q0 -22 -25 -31t-50 0t-25 31v456v14.5t-1.5 11.5t-5 12t-9.5 7q-24 13 -46 -5l-184 -146zM305 1104v200h600v-200h-600z" />
|
160 |
+
<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q162 0 299.5 -80t217.5 -218t80 -300t-80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 500h300l-2 -194l402 294l-402 298v-197h-298v-201z" />
|
161 |
+
<glyph unicode="" d="M0 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t231.5 47.5q122 0 232.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-218 -217.5t-300 -80t-299.5 80t-217.5 217.5t-80 299.5zM200 600l400 -294v194h302v201h-300v197z" />
|
162 |
+
<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q121 0 231.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 600h200v-300h200v300h200l-300 400z" />
|
163 |
+
<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q121 0 231.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 600l300 -400l300 400h-200v300h-200v-300h-200z" />
|
164 |
+
<glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q121 0 231.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM254 780q-8 -34 5.5 -93t7.5 -87q0 -9 17 -44t16 -60q12 0 23 -5.5 t23 -15t20 -13.5q20 -10 108 -42q22 -8 53 -31.5t59.5 -38.5t57.5 -11q8 -18 -15 -55.5t-20 -57.5q12 -21 22.5 -34.5t28 -27t36.5 -17.5q0 -6 -3 -15.5t-3.5 -14.5t4.5 -17q101 -2 221 111q31 30 47 48t34 49t21 62q-14 9 -37.5 9.5t-35.5 7.5q-14 7 -49 15t-52 19 q-9 0 -39.5 -0.5t-46.5 -1.5t-39 -6.5t-39 -16.5q-50 -35 -66 -12q-4 2 -3.5 25.5t0.5 25.5q-6 13 -26.5 17t-24.5 7q2 22 -2 41t-16.5 28t-38.5 -20q-23 -25 -42 4q-19 28 -8 58q8 16 22 22q6 -1 26 -1.5t33.5 -4.5t19.5 -13q12 -19 32 -37.5t34 -27.5l14 -8q0 3 9.5 39.5 t5.5 57.5q-4 23 14.5 44.5t22.5 31.5q5 14 10 35t8.5 31t15.5 22.5t34 21.5q-6 18 10 37q8 0 23.5 -1.5t24.5 -1.5t20.5 4.5t20.5 15.5q-10 23 -30.5 42.5t-38 30t-49 26.5t-43.5 23q11 41 1 44q31 -13 58.5 -14.5t39.5 3.5l11 4q6 36 -17 53.5t-64 28.5t-56 23 q-19 -3 -37 0q-15 -12 -36.5 -21t-34.5 -12t-44 -8t-39 -6q-15 -3 -46 0t-45 -3q-20 -6 -51.5 -25.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79zM518 915q3 12 16 30.5t16 25.5q10 -10 18.5 -10t14 6t14.5 14.5t16 12.5q0 -18 8 -42.5t16.5 -44 t9.5 -23.5q-6 1 -39 5t-53.5 10t-36.5 16z" />
|
165 |
+
<glyph unicode="" d="M0 164.5q0 21.5 15 37.5l600 599q-33 101 6 201.5t135 154.5q164 92 306 -9l-259 -138l145 -232l251 126q13 -175 -151 -267q-123 -70 -253 -23l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5z" />
|
166 |
+
<glyph unicode="" horiz-adv-x="1220" d="M0 196v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM0 596v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5zM0 996v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM600 596h500v100h-500v-100zM800 196h300v100h-300v-100zM900 996h200v100h-200v-100z" />
|
167 |
+
<glyph unicode="" d="M100 1100v100h1000v-100h-1000zM150 1000h900l-350 -500v-300l-200 -200v500z" />
|
168 |
+
<glyph unicode="" d="M0 200v200h1200v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM0 500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500z M500 1000h200v100h-200v-100z" />
|
169 |
+
<glyph unicode="" d="M0 0v400l129 -129l200 200l142 -142l-200 -200l129 -129h-400zM0 800l129 129l200 -200l142 142l-200 200l129 129h-400v-400zM729 329l142 142l200 -200l129 129v-400h-400l129 129zM729 871l200 200l-129 129h400v-400l-129 129l-200 -200z" />
|
170 |
+
<glyph unicode="" d="M0 596q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM182 596q0 -172 121.5 -293t292.5 -121t292.5 121t121.5 293q0 171 -121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM291 655 q0 23 15.5 38.5t38.5 15.5t39 -16t16 -38q0 -23 -16 -39t-39 -16q-22 0 -38 16t-16 39zM400 850q0 22 16 38.5t39 16.5q22 0 38 -16t16 -39t-16 -39t-38 -16q-23 0 -39 16.5t-16 38.5zM513 609q0 32 21 56.5t52 29.5l122 126l1 1q-9 14 -9 28q0 22 16 38.5t39 16.5 q22 0 38 -16t16 -39t-16 -39t-38 -16q-16 0 -29 10l-55 -145q17 -22 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5q-37 0 -62.5 25.5t-25.5 61.5zM800 655q0 22 16 38t39 16t38.5 -15.5t15.5 -38.5t-16 -39t-38 -16q-23 0 -39 16t-16 39z" />
|
171 |
+
<glyph unicode="" d="M-40 375q-13 -95 35 -173q35 -57 94 -89t129 -32q63 0 119 28q33 16 65 40.5t52.5 45.5t59.5 64q40 44 57 61l394 394q35 35 47 84t-3 96q-27 87 -117 104q-20 2 -29 2q-46 0 -79.5 -17t-67.5 -51l-388 -396l-7 -7l69 -67l377 373q20 22 39 38q23 23 50 23q38 0 53 -36 q16 -39 -20 -75l-547 -547q-52 -52 -125 -52q-55 0 -100 33t-54 96q-5 35 2.5 66t31.5 63t42 50t56 54q24 21 44 41l348 348q52 52 82.5 79.5t84 54t107.5 26.5q25 0 48 -4q95 -17 154 -94.5t51 -175.5q-7 -101 -98 -192l-252 -249l-253 -256l7 -7l69 -60l517 511 q67 67 95 157t11 183q-16 87 -67 154t-130 103q-69 33 -152 33q-107 0 -197 -55q-40 -24 -111 -95l-512 -512q-68 -68 -81 -163z" />
|
172 |
+
<glyph unicode="" d="M79 784q0 131 99 229.5t230 98.5q144 0 242 -129q103 129 245 129q130 0 227 -98.5t97 -229.5q0 -46 -17.5 -91t-61 -99t-77 -89.5t-104.5 -105.5q-197 -191 -293 -322l-17 -23l-16 23q-43 58 -100 122.5t-92 99.5t-101 100l-84.5 84.5t-68 74t-60 78t-33.5 70.5t-15 78z M250 784q0 -27 30.5 -70t61.5 -75.5t95 -94.5l22 -22q93 -90 190 -201q82 92 195 203l12 12q64 62 97.5 97t64.5 79t31 72q0 71 -48 119.5t-106 48.5q-73 0 -131 -83l-118 -171l-114 174q-51 80 -124 80q-59 0 -108.5 -49.5t-49.5 -118.5z" />
|
173 |
+
<glyph unicode="" d="M57 353q0 -94 66 -160l141 -141q66 -66 159 -66q95 0 159 66l283 283q66 66 66 159t-66 159l-141 141q-12 12 -19 17l-105 -105l212 -212l-389 -389l-247 248l95 95l-18 18q-46 45 -75 101l-55 -55q-66 -66 -66 -159zM269 706q0 -93 66 -159l141 -141l19 -17l105 105 l-212 212l389 389l247 -247l-95 -96l18 -18q46 -46 77 -99l29 29q35 35 62.5 88t27.5 96q0 93 -66 159l-141 141q-66 66 -159 66q-95 0 -159 -66l-283 -283q-66 -64 -66 -159z" />
|
174 |
+
<glyph unicode="" d="M200 100v953q0 21 30 46t81 48t129 38t163 15t162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5zM300 300h600v700h-600v-700zM496 150q0 -43 30.5 -73.5t73.5 -30.5t73.5 30.5t30.5 73.5t-30.5 73.5t-73.5 30.5 t-73.5 -30.5t-30.5 -73.5z" />
|
175 |
+
<glyph unicode="" d="M0 0l303 380l207 208l-210 212h300l267 279l-35 36q-15 14 -15 35t15 35q14 15 35 15t35 -15l283 -282q15 -15 15 -36t-15 -35q-14 -15 -35 -15t-35 15l-36 35l-279 -267v-300l-212 210l-208 -207z" />
|
176 |
+
<glyph unicode="" d="M295 433h139q5 -77 48.5 -126.5t117.5 -64.5v335l-27 7q-46 14 -79 26.5t-72 36t-62.5 52t-40 72.5t-16.5 99q0 92 44 159.5t109 101t144 40.5v78h100v-79q38 -4 72.5 -13.5t75.5 -31.5t71 -53.5t51.5 -84t24.5 -118.5h-159q-8 72 -35 109.5t-101 50.5v-307l64 -14 q34 -7 64 -16.5t70 -31.5t67.5 -52t47.5 -80.5t20 -112.5q0 -139 -89 -224t-244 -96v-77h-100v78q-152 17 -237 104q-40 40 -52.5 93.5t-15.5 139.5zM466 889q0 -29 8 -51t16.5 -34t29.5 -22.5t31 -13.5t38 -10q7 -2 11 -3v274q-61 -8 -97.5 -37.5t-36.5 -102.5zM700 237 q170 18 170 151q0 64 -44 99.5t-126 60.5v-311z" />
|
177 |
+
<glyph unicode="" d="M100 600v100h166q-24 49 -44 104q-10 26 -14.5 55.5t-3 72.5t25 90t68.5 87q97 88 263 88q129 0 230 -89t101 -208h-153q0 52 -34 89.5t-74 51.5t-76 14q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -11 2.5 -24.5t5.5 -24t9.5 -26.5t10.5 -25t14 -27.5t14 -25.5 t15.5 -27t13.5 -24h242v-100h-197q8 -50 -2.5 -115t-31.5 -94q-41 -59 -99 -113q35 11 84 18t70 7q32 1 102 -16t104 -17q76 0 136 30l50 -147q-41 -25 -80.5 -36.5t-59 -13t-61.5 -1.5q-23 0 -128 33t-155 29q-39 -4 -82 -17t-66 -25l-24 -11l-55 145l16.5 11t15.5 10 t13.5 9.5t14.5 12t14.5 14t17.5 18.5q48 55 54 126.5t-30 142.5h-221z" />
|
178 |
+
<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM602 900l298 300l298 -300h-198v-900h-200v900h-198z" />
|
179 |
+
<glyph unicode="" d="M2 300h198v900h200v-900h198l-298 -300zM700 0v200h100v-100h200v-100h-300zM700 400v100h300v-200h-99v-100h-100v100h99v100h-200zM700 700v500h300v-500h-100v100h-100v-100h-100zM801 900h100v200h-100v-200z" />
|
180 |
+
<glyph unicode="" d="M2 300h198v900h200v-900h198l-298 -300zM700 0v500h300v-500h-100v100h-100v-100h-100zM700 700v200h100v-100h200v-100h-300zM700 1100v100h300v-200h-99v-100h-100v100h99v100h-200zM801 200h100v200h-100v-200z" />
|
181 |
+
<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM800 100v400h300v-500h-100v100h-200zM800 1100v100h200v-500h-100v400h-100zM901 200h100v200h-100v-200z" />
|
182 |
+
<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM800 400v100h200v-500h-100v400h-100zM800 800v400h300v-500h-100v100h-200zM901 900h100v200h-100v-200z" />
|
183 |
+
<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM700 100v200h500v-200h-500zM700 400v200h400v-200h-400zM700 700v200h300v-200h-300zM700 1000v200h200v-200h-200z" />
|
184 |
+
<glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM700 100v200h200v-200h-200zM700 400v200h300v-200h-300zM700 700v200h400v-200h-400zM700 1000v200h500v-200h-500z" />
|
185 |
+
<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q162 0 281 -118.5t119 -281.5v-300q0 -165 -118.5 -282.5t-281.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500z" />
|
186 |
+
<glyph unicode="" d="M0 400v300q0 163 119 281.5t281 118.5h300q165 0 282.5 -117.5t117.5 -282.5v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-163 0 -281.5 117.5t-118.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM400 300l333 250l-333 250v-500z" />
|
187 |
+
<glyph unicode="" d="M0 400v300q0 163 117.5 281.5t282.5 118.5h300q163 0 281.5 -119t118.5 -281v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM300 700l250 -333l250 333h-500z" />
|
188 |
+
<glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q165 0 282.5 -117.5t117.5 -282.5v-300q0 -162 -118.5 -281t-281.5 -119h-300q-165 0 -282.5 118.5t-117.5 281.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM300 400h500l-250 333z" />
|
189 |
+
<glyph unicode="" d="M0 400v300h300v200l400 -350l-400 -350v200h-300zM500 0v200h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-500v200h400q165 0 282.5 -117.5t117.5 -282.5v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-400z" />
|
190 |
+
<glyph unicode="" d="M216 519q10 -19 32 -19h302q-155 -438 -160 -458q-5 -21 4 -32l9 -8l9 -1q13 0 26 16l538 630q15 19 6 36q-8 18 -32 16h-300q1 4 78 219.5t79 227.5q2 17 -6 27l-8 8h-9q-16 0 -25 -15q-4 -5 -98.5 -111.5t-228 -257t-209.5 -238.5q-17 -19 -7 -40z" />
|
191 |
+
<glyph unicode="" d="M0 400q0 -165 117.5 -282.5t282.5 -117.5h300q47 0 100 15v185h-500q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5h500v185q-14 4 -114 7.5t-193 5.5l-93 2q-165 0 -282.5 -117.5t-117.5 -282.5v-300zM600 400v300h300v200l400 -350l-400 -350v200h-300z " />
|
192 |
+
<glyph unicode="" d="M0 400q0 -165 117.5 -282.5t282.5 -117.5h300q163 0 281.5 117.5t118.5 282.5v98l-78 73l-122 -123v-148q0 -41 -29.5 -70.5t-70.5 -29.5h-500q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5h156l118 122l-74 78h-100q-165 0 -282.5 -117.5t-117.5 -282.5 v-300zM496 709l353 342l-149 149h500v-500l-149 149l-342 -353z" />
|
193 |
+
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM406 600 q0 80 57 137t137 57t137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137z" />
|
194 |
+
<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 800l445 -500l450 500h-295v400h-300v-400h-300zM900 150h100v50h-100v-50z" />
|
195 |
+
<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 700h300v-300h300v300h295l-445 500zM900 150h100v50h-100v-50z" />
|
196 |
+
<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 705l305 -305l596 596l-154 155l-442 -442l-150 151zM900 150h100v50h-100v-50z" />
|
197 |
+
<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 988l97 -98l212 213l-97 97zM200 401h700v699l-250 -239l-149 149l-212 -212l149 -149zM900 150h100v50h-100v-50z" />
|
198 |
+
<glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM200 612l212 -212l98 97l-213 212zM300 1200l239 -250l-149 -149l212 -212l149 148l248 -237v700h-699zM900 150h100v50h-100v-50z" />
|
199 |
+
<glyph unicode="" d="M23 415l1177 784v-1079l-475 272l-310 -393v416h-392zM494 210l672 938l-672 -712v-226z" />
|
200 |
+
<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-850q0 -21 -15 -35.5t-35 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 1000h100v200h-100v-200z" />
|
201 |
+
<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-218l-276 -275l-120 120l-126 -127h-378v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM581 306l123 123l120 -120l353 352l123 -123l-475 -476zM600 1000h100v200h-100v-200z" />
|
202 |
+
<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-269l-103 -103l-170 170l-298 -298h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 1000h100v200h-100v-200zM700 133l170 170l-170 170l127 127l170 -170l170 170l127 -128l-170 -169l170 -170 l-127 -127l-170 170l-170 -170z" />
|
203 |
+
<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-300h-400v-200h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 300l300 -300l300 300h-200v300h-200v-300h-200zM600 1000v200h100v-200h-100z" />
|
204 |
+
<glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-402l-200 200l-298 -298h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 300h200v-300h200v300h200l-300 300zM600 1000v200h100v-200h-100z" />
|
205 |
+
<glyph unicode="" d="M0 250q0 -21 14.5 -35.5t35.5 -14.5h1100q21 0 35.5 14.5t14.5 35.5v550h-1200v-550zM0 900h1200v150q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-150zM100 300v200h400v-200h-400z" />
|
206 |
+
<glyph unicode="" d="M0 400l300 298v-198h400v-200h-400v-198zM100 800v200h100v-200h-100zM300 800v200h100v-200h-100zM500 800v200h400v198l300 -298l-300 -298v198h-400zM800 300v200h100v-200h-100zM1000 300h100v200h-100v-200z" />
|
207 |
+
<glyph unicode="" d="M100 700v400l50 100l50 -100v-300h100v300l50 100l50 -100v-300h100v300l50 100l50 -100v-400l-100 -203v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447zM800 597q0 -29 10.5 -55.5t25 -43t29 -28.5t25.5 -18l10 -5v-397q0 -21 14.5 -35.5 t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v1106q0 31 -18 40.5t-44 -7.5l-276 -117q-25 -16 -43.5 -50.5t-18.5 -65.5v-359z" />
|
208 |
+
<glyph unicode="" d="M100 0h400v56q-75 0 -87.5 6t-12.5 44v394h500v-394q0 -38 -12.5 -44t-87.5 -6v-56h400v56q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v888q0 22 25 34.5t50 13.5l25 2v56h-400v-56q75 0 87.5 -6t12.5 -44v-394h-500v394q0 38 12.5 44t87.5 6v56h-400v-56q4 0 11 -0.5 t24 -3t30 -7t24 -15t11 -24.5v-888q0 -22 -25 -34.5t-50 -13.5l-25 -2v-56z" />
|
209 |
+
<glyph unicode="" d="M0 300q0 -41 29.5 -70.5t70.5 -29.5h300q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-300q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM100 100h400l200 200h105l295 98v-298h-425l-100 -100h-375zM100 300v200h300v-200h-300zM100 600v200h300v-200h-300z M100 1000h400l200 -200v-98l295 98h105v200h-425l-100 100h-375zM700 402v163l400 133v-163z" />
|
210 |
+
<glyph unicode="" d="M16.5 974.5q0.5 -21.5 16 -90t46.5 -140t104 -177.5t175 -208q103 -103 207.5 -176t180 -103.5t137 -47t92.5 -16.5l31 1l163 162q16 17 13 40.5t-22 37.5l-192 136q-19 14 -45 12t-42 -19l-119 -118q-143 103 -267 227q-126 126 -227 268l118 118q17 17 20 41.5 t-11 44.5l-139 194q-14 19 -36.5 22t-40.5 -14l-162 -162q-1 -11 -0.5 -32.5z" />
|
211 |
+
<glyph unicode="" d="M0 50v212q0 20 10.5 45.5t24.5 39.5l365 303v50q0 4 1 10.5t12 22.5t30 28.5t60 23t97 10.5t97 -10t60 -23.5t30 -27.5t12 -24l1 -10v-50l365 -303q14 -14 24.5 -39.5t10.5 -45.5v-212q0 -21 -15 -35.5t-35 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5zM0 712 q0 -21 14.5 -33.5t34.5 -8.5l202 33q20 4 34.5 21t14.5 38v146q141 24 300 24t300 -24v-146q0 -21 14.5 -38t34.5 -21l202 -33q20 -4 34.5 8.5t14.5 33.5v200q-6 8 -19 20.5t-63 45t-112 57t-171 45t-235 20.5q-92 0 -175 -10.5t-141.5 -27t-108.5 -36.5t-81.5 -40 t-53.5 -36.5t-31 -27.5l-9 -10v-200z" />
|
212 |
+
<glyph unicode="" d="M100 0v100h1100v-100h-1100zM175 200h950l-125 150v250l100 100v400h-100v-200h-100v200h-200v-200h-100v200h-200v-200h-100v200h-100v-400l100 -100v-250z" />
|
213 |
+
<glyph unicode="" d="M100 0h300v400q0 41 -29.5 70.5t-70.5 29.5h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-400zM500 0v1000q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-1000h-300zM900 0v700q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-700h-300z" />
|
214 |
+
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v300h-200v100h200v100h-300v-300h200v-100h-200v-100zM600 300h200v100h100v300h-100v100h-200v-500 zM700 400v300h100v-300h-100z" />
|
215 |
+
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h100v200h100v-200h100v500h-100v-200h-100v200h-100v-500zM600 300h200v100h100v300h-100v100h-200v-500 zM700 400v300h100v-300h-100z" />
|
216 |
+
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v100h-200v300h200v100h-300v-500zM600 300h300v100h-200v300h200v100h-300v-500z" />
|
217 |
+
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 550l300 -150v300zM600 400l300 150l-300 150v-300z" />
|
218 |
+
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300v500h700v-500h-700zM300 400h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130v-300zM575 549 q0 -65 27 -107t68 -42h130v300h-130q-38 0 -66.5 -43t-28.5 -108z" />
|
219 |
+
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v300h-200v100h200v100h-300v-300h200v-100h-200v-100zM601 300h100v100h-100v-100zM700 700h100 v-400h100v500h-200v-100z" />
|
220 |
+
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v400h-200v100h-100v-500zM301 400v200h100v-200h-100zM601 300h100v100h-100v-100zM700 700h100 v-400h100v500h-200v-100z" />
|
221 |
+
<glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 700v100h300v-300h-99v-100h-100v100h99v200h-200zM201 300v100h100v-100h-100zM601 300v100h100v-100h-100z M700 700v100h200v-500h-100v400h-100z" />
|
222 |
+
<glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM400 500v200 l100 100h300v-100h-300v-200h300v-100h-300z" />
|
223 |
+
<glyph unicode="" d="M0 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM182 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM400 400v400h300 l100 -100v-100h-100v100h-200v-100h200v-100h-200v-100h-100zM700 400v100h100v-100h-100z" />
|
224 |
+
<glyph unicode="" d="M-14 494q0 -80 56.5 -137t135.5 -57h222v300h400v-300h128q120 0 205 86t85 208q0 120 -85 206.5t-205 86.5q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5zM300 200h200v300h200v-300 h200l-300 -300z" />
|
225 |
+
<glyph unicode="" d="M-14 494q0 -80 56.5 -137t135.5 -57h8l414 414l403 -403q94 26 154.5 104t60.5 178q0 121 -85 207.5t-205 86.5q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5zM300 200l300 300 l300 -300h-200v-300h-200v300h-200z" />
|
226 |
+
<glyph unicode="" d="M100 200h400v-155l-75 -45h350l-75 45v155h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170z" />
|
227 |
+
<glyph unicode="" d="M121 700q0 -53 28.5 -97t75.5 -65q-4 -16 -4 -38q0 -74 52.5 -126.5t126.5 -52.5q56 0 100 30v-306l-75 -45h350l-75 45v306q46 -30 100 -30q74 0 126.5 52.5t52.5 126.5q0 24 -9 55q50 32 79.5 83t29.5 112q0 90 -61.5 155.5t-150.5 71.5q-26 89 -99.5 145.5 t-167.5 56.5q-116 0 -197.5 -81.5t-81.5 -197.5q0 -4 1 -12t1 -11q-14 2 -23 2q-74 0 -126.5 -52.5t-52.5 -126.5z" />
|
228 |
+
</font>
|
229 |
+
</defs></svg>
|
plugin/sdf/bootstrap/fonts/glyphicons-halflings-regular.ttf
ADDED
Binary file
|
plugin/sdf/bootstrap/fonts/glyphicons-halflings-regular.woff
ADDED
Binary file
|
plugin/sdf/bootstrap/img/alpha.png
ADDED
Binary file
|
plugin/sdf/bootstrap/img/glyphicons-halflings-white.png
ADDED
Binary file
|
plugin/sdf/bootstrap/img/glyphicons-halflings.png
ADDED
Binary file
|
plugin/sdf/bootstrap/img/hue.png
ADDED
Binary file
|
plugin/sdf/bootstrap/img/saturation.png
ADDED
Binary file
|
plugin/sdf/bootstrap/js/bootstrap.min.js
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.0.3 (http://getbootstrap.com)
|
3 |
+
* Copyright 2013 Twitter, Inc.
|
4 |
+
* Licensed under http://www.apache.org/licenses/LICENSE-2.0
|
5 |
+
*/
|
6 |
+
|
7 |
+
if("undefined"==typeof jQuery)throw new Error("Bootstrap requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]}}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one(a.support.transition.end,function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b()})}(jQuery),+function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function c(){f.trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one(a.support.transition.end,c).emulateTransitionEnd(150):c())};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("bs.alert");e||d.data("bs.alert",e=new c(this)),"string"==typeof b&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.bs.alert.data-api",b,c.prototype.close)}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d)};b.DEFAULTS={loadingText:"loading..."},b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.is("input")?"val":"html",e=c.data();a+="Text",e.resetText||c.data("resetText",c[d]()),c[d](e[a]||this.options[a]),setTimeout(function(){"loadingText"==a?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons"]'),b=!0;if(a.length){var c=this.$element.find("input");"radio"===c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?b=!1:a.find(".active").removeClass("active")),b&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}b&&this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof c&&c;e||d.data("bs.button",e=new b(this,f)),"toggle"==c?e.toggle():c&&e.setState(c)})},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.bs.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle"),b.preventDefault()})}(jQuery),+function(a){"use strict";var b=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},b.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},b.prototype.getActiveIndex=function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},b.prototype.to=function(b){var c=this,d=this.getActiveIndex();return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}this.sliding=!0,f&&this.pause();var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});if(!e.hasClass("active")){if(this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid.bs.carousel",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(j),j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid.bs.carousel")},0)}).emulateTransitionEnd(600)}else{if(this.$element.trigger(j),j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid.bs.carousel")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?(this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350),void 0):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(jQuery),+function(a){"use strict";function b(){a(d).remove(),a(e).each(function(b){var d=c(a(this));d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown")),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown"))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){if("ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b),f.trigger(d=a.Event("show.bs.dropdown")),d.isDefaultPrevented())return;f.toggleClass("open").trigger("shown.bs.dropdown"),e.focus()}return!1}},f.prototype.keydown=function(b){if(/(38|40|27)/.test(b.keyCode)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var f=c(d),g=f.hasClass("open");if(!g||g&&27==b.keyCode)return 27==b.which&&f.find(e).focus(),d.click();var h=a("[role=menu] li:not(.divider):visible a",f);if(h.length){var i=h.index(h.filter(":focus"));38==b.keyCode&&i>0&&i--,40==b.keyCode&&i<h.length-1&&i++,~i||(i=0),h.eq(i).focus()}}}};var g=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new f(this)),"string"==typeof b&&d[b].call(c)})},a.fn.dropdown.Constructor=f,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=g,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",e,f.prototype.toggle).on("keydown.bs.dropdown.data-api",e+", [role=menu]",f.prototype.keydown)}(jQuery),+function(a){"use strict";var b=function(b,c){this.options=c,this.$element=a(b),this.$backdrop=this.isShown=null,this.options.remote&&this.$element.load(this.options.remote)};b.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},b.prototype.toggle=function(a){return this[this.isShown?"hide":"show"](a)},b.prototype.show=function(b){var c=this,d=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(d),this.isShown||d.isDefaultPrevented()||(this.isShown=!0,this.escape(),this.$element.on("click.dismiss.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.backdrop(function(){var d=a.support.transition&&c.$element.hasClass("fade");c.$element.parent().length||c.$element.appendTo(document.body),c.$element.show(),d&&c.$element[0].offsetWidth,c.$element.addClass("in").attr("aria-hidden",!1),c.enforceFocus();var e=a.Event("shown.bs.modal",{relatedTarget:b});d?c.$element.find(".modal-dialog").one(a.support.transition.end,function(){c.$element.focus().trigger(e)}).emulateTransitionEnd(300):c.$element.focus().trigger(e)}))},b.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one(a.support.transition.end,a.proxy(this.hideModal,this)).emulateTransitionEnd(300):this.hideModal())},b.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.focus()},this))},b.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keyup.dismiss.bs.modal")},b.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.removeBackdrop(),a.$element.trigger("hidden.bs.modal")})},b.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},b.prototype.backdrop=function(b){var c=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var d=a.support.transition&&c;if(this.$backdrop=a('<div class="modal-backdrop '+c+'" />').appendTo(document.body),this.$element.on("click.dismiss.modal",a.proxy(function(a){a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus.call(this.$element[0]):this.hide.call(this))},this)),d&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;d?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()):b&&b()};var c=a.fn.modal;a.fn.modal=function(c,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},b.DEFAULTS,e.data(),"object"==typeof c&&c);f||e.data("bs.modal",f=new b(this,g)),"string"==typeof c?f[c](d):g.show&&f.show(d)})},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f,this).one("hide",function(){c.is(":visible")&&c.focus()})}),a(document).on("show.bs.modal",".modal",function(){a(document.body).addClass("modal-open")}).on("hidden.bs.modal",".modal",function(){a(document.body).removeClass("modal-open")})}(jQuery),+function(a){"use strict";var b=function(a,b){this.type=this.options=this.enabled=this.timeout=this.hoverState=this.$element=null,this.init("tooltip",a,b)};b.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},b.prototype.init=function(b,c,d){this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d);for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focus",i="hover"==g?"mouseleave":"blur";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},b.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},b.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show),void 0):c.show()},b.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide),void 0):c.hide()},b.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){if(this.$element.trigger(b),b.isDefaultPrevented())return;var c=this.tip();this.setContent(),this.options.animation&&c.addClass("fade");var d="function"==typeof this.options.placement?this.options.placement.call(this,c[0],this.$element[0]):this.options.placement,e=/\s?auto?\s?/i,f=e.test(d);f&&(d=d.replace(e,"")||"top"),c.detach().css({top:0,left:0,display:"block"}).addClass(d),this.options.container?c.appendTo(this.options.container):c.insertAfter(this.$element);var g=this.getPosition(),h=c[0].offsetWidth,i=c[0].offsetHeight;if(f){var j=this.$element.parent(),k=d,l=document.documentElement.scrollTop||document.body.scrollTop,m="body"==this.options.container?window.innerWidth:j.outerWidth(),n="body"==this.options.container?window.innerHeight:j.outerHeight(),o="body"==this.options.container?0:j.offset().left;d="bottom"==d&&g.top+g.height+i-l>n?"top":"top"==d&&g.top-l-i<0?"bottom":"right"==d&&g.right+h>m?"left":"left"==d&&g.left-h<o?"right":d,c.removeClass(k).addClass(d)}var p=this.getCalculatedOffset(d,g,h,i);this.applyPlacement(p,d),this.$element.trigger("shown.bs."+this.type)}},b.prototype.applyPlacement=function(a,b){var c,d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),a.top=a.top+g,a.left=a.left+h,d.offset(a).addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;if("top"==b&&j!=f&&(c=!0,a.top=a.top+f-j),/bottom|top/.test(b)){var k=0;a.left<0&&(k=-2*a.left,a.left=0,d.offset(a),i=d[0].offsetWidth,j=d[0].offsetHeight),this.replaceArrow(k-e+i,i,"left")}else this.replaceArrow(j-f,j,"top");c&&d.offset(a)},b.prototype.replaceArrow=function(a,b,c){this.arrow().css(c,a?50*(1-a/b)+"%":"")},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},b.prototype.hide=function(){function b(){"in"!=c.hoverState&&d.detach()}var c=this,d=this.tip(),e=a.Event("hide.bs."+this.type);return this.$element.trigger(e),e.isDefaultPrevented()?void 0:(d.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d.one(a.support.transition.end,b).emulateTransitionEnd(150):b(),this.$element.trigger("hidden.bs."+this.type),this)},b.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},b.prototype.hasContent=function(){return this.getTitle()},b.prototype.getPosition=function(){var b=this.$element[0];return a.extend({},"function"==typeof b.getBoundingClientRect?b.getBoundingClientRect():{width:b.offsetWidth,height:b.offsetHeight},this.$element.offset())},b.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},b.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},b.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},b.prototype.validate=function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},b.prototype.enable=function(){this.enabled=!0},b.prototype.disable=function(){this.enabled=!1},b.prototype.toggleEnabled=function(){this.enabled=!this.enabled},b.prototype.toggle=function(b){var c=b?a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type):this;c.tip().hasClass("in")?c.leave(c):c.enter(c)},b.prototype.destroy=function(){this.hide().$element.off("."+this.type).removeData("bs."+this.type)};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof c&&c;e||d.data("bs.tooltip",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(jQuery),+function(a){"use strict";var b=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");b.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(c).is("body")?a(window):a(c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#\w/.test(e)&&a(e);return f&&f.length&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parents(".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top()),"function"==typeof h&&(h=f.bottom());var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;this.affixed!==i&&(this.unpin&&this.$element.css("top",""),this.affixed=i,this.unpin="bottom"==i?e.top-d:null,this.$element.removeClass(b.RESET).addClass("affix"+(i?"-"+i:"")),"bottom"==i&&this.$element.offset({top:document.body.offsetHeight-h-this.$element.height()}))}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(jQuery);
|
plugin/sdf/bootstrap/js/modernizr-2.6.2-respond-1.1.0.min.js
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Modernizr 2.6.2 (Custom Build) | MIT & BSD
|
2 |
+
* Build: http://modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-flexbox-hsla-multiplebgs-opacity-rgba-textshadow-cssanimations-csscolumns-generatedcontent-cssgradients-cssreflections-csstransforms-csstransforms3d-csstransitions-applicationcache-canvas-canvastext-draganddrop-hashchange-history-audio-video-indexeddb-input-inputtypes-localstorage-postmessage-sessionstorage-websockets-websqldatabase-webworkers-geolocation-inlinesvg-smil-svg-svgclippaths-touch-webgl-shiv-mq-cssclasses-addtest-prefixed-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes-load
|
3 |
+
*/
|
4 |
+
;window.Modernizr=function(a,b,c){function D(a){j.cssText=a}function E(a,b){return D(n.join(a+";")+(b||""))}function F(a,b){return typeof a===b}function G(a,b){return!!~(""+a).indexOf(b)}function H(a,b){for(var d in a){var e=a[d];if(!G(e,"-")&&j[e]!==c)return b=="pfx"?e:!0}return!1}function I(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:F(f,"function")?f.bind(d||b):f}return!1}function J(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+p.join(d+" ")+d).split(" ");return F(b,"string")||F(b,"undefined")?H(e,b):(e=(a+" "+q.join(d+" ")+d).split(" "),I(e,b,c))}function K(){e.input=function(c){for(var d=0,e=c.length;d<e;d++)u[c[d]]=c[d]in k;return u.list&&(u.list=!!b.createElement("datalist")&&!!a.HTMLDataListElement),u}("autocomplete autofocus list placeholder max min multiple pattern required step".split(" ")),e.inputtypes=function(a){for(var d=0,e,f,h,i=a.length;d<i;d++)k.setAttribute("type",f=a[d]),e=k.type!=="text",e&&(k.value=l,k.style.cssText="position:absolute;visibility:hidden;",/^range$/.test(f)&&k.style.WebkitAppearance!==c?(g.appendChild(k),h=b.defaultView,e=h.getComputedStyle&&h.getComputedStyle(k,null).WebkitAppearance!=="textfield"&&k.offsetHeight!==0,g.removeChild(k)):/^(search|tel)$/.test(f)||(/^(url|email)$/.test(f)?e=k.checkValidity&&k.checkValidity()===!1:e=k.value!=l)),t[a[d]]=!!e;return t}("search tel url email datetime date month week time datetime-local number range color".split(" "))}var d="2.6.2",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k=b.createElement("input"),l=":)",m={}.toString,n=" -webkit- -moz- -o- -ms- ".split(" "),o="Webkit Moz O ms",p=o.split(" "),q=o.toLowerCase().split(" "),r={svg:"http://www.w3.org/2000/svg"},s={},t={},u={},v=[],w=v.slice,x,y=function(a,c,d,e){var f,i,j,k,l=b.createElement("div"),m=b.body,n=m||b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),l.appendChild(j);return f=["­",'<style id="s',h,'">',a,"</style>"].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},z=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return y("@media "+b+" { #"+h+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},A=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=F(e[d],"function"),F(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),B={}.hasOwnProperty,C;!F(B,"undefined")&&!F(B.call,"undefined")?C=function(a,b){return B.call(a,b)}:C=function(a,b){return b in a&&F(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=w.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(w.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(w.call(arguments)))};return e}),s.flexbox=function(){return J("flexWrap")},s.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")},s.canvastext=function(){return!!e.canvas&&!!F(b.createElement("canvas").getContext("2d").fillText,"function")},s.webgl=function(){return!!a.WebGLRenderingContext},s.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:y(["@media (",n.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=a.offsetTop===9}),c},s.geolocation=function(){return"geolocation"in navigator},s.postmessage=function(){return!!a.postMessage},s.websqldatabase=function(){return!!a.openDatabase},s.indexedDB=function(){return!!J("indexedDB",a)},s.hashchange=function(){return A("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},s.history=function(){return!!a.history&&!!history.pushState},s.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},s.websockets=function(){return"WebSocket"in a||"MozWebSocket"in a},s.rgba=function(){return D("background-color:rgba(150,255,150,.5)"),G(j.backgroundColor,"rgba")},s.hsla=function(){return D("background-color:hsla(120,40%,100%,.5)"),G(j.backgroundColor,"rgba")||G(j.backgroundColor,"hsla")},s.multiplebgs=function(){return D("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(j.background)},s.backgroundsize=function(){return J("backgroundSize")},s.borderimage=function(){return J("borderImage")},s.borderradius=function(){return J("borderRadius")},s.boxshadow=function(){return J("boxShadow")},s.textshadow=function(){return b.createElement("div").style.textShadow===""},s.opacity=function(){return E("opacity:.55"),/^0.55$/.test(j.opacity)},s.cssanimations=function(){return J("animationName")},s.csscolumns=function(){return J("columnCount")},s.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";return D((a+"-webkit- ".split(" ").join(b+a)+n.join(c+a)).slice(0,-a.length)),G(j.backgroundImage,"gradient")},s.cssreflections=function(){return J("boxReflect")},s.csstransforms=function(){return!!J("transform")},s.csstransforms3d=function(){var a=!!J("perspective");return a&&"webkitPerspective"in g.style&&y("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b,c){a=b.offsetLeft===9&&b.offsetHeight===3}),a},s.csstransitions=function(){return J("transition")},s.fontface=function(){var a;return y('@font-face {font-family:"font";src:url("https://")}',function(c,d){var e=b.getElementById("smodernizr"),f=e.sheet||e.styleSheet,g=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"";a=/src/i.test(g)&&g.indexOf(d.split(" ")[0])===0}),a},s.generatedcontent=function(){var a;return y(["#",h,"{font:0/0 a}#",h,':after{content:"',l,'";visibility:hidden;font:3px/1 a}'].join(""),function(b){a=b.offsetHeight>=3}),a},s.video=function(){var a=b.createElement("video"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"').replace(/^no$/,""),c.h264=a.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/,""),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,"")}catch(d){}return c},s.audio=function(){var a=b.createElement("audio"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),c.mp3=a.canPlayType("audio/mpeg;").replace(/^no$/,""),c.wav=a.canPlayType('audio/wav; codecs="1"').replace(/^no$/,""),c.m4a=(a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")).replace(/^no$/,"")}catch(d){}return c},s.localstorage=function(){try{return localStorage.setItem(h,h),localStorage.removeItem(h),!0}catch(a){return!1}},s.sessionstorage=function(){try{return sessionStorage.setItem(h,h),sessionStorage.removeItem(h),!0}catch(a){return!1}},s.webworkers=function(){return!!a.Worker},s.applicationcache=function(){return!!a.applicationCache},s.svg=function(){return!!b.createElementNS&&!!b.createElementNS(r.svg,"svg").createSVGRect},s.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML="<svg/>",(a.firstChild&&a.firstChild.namespaceURI)==r.svg},s.smil=function(){return!!b.createElementNS&&/SVGAnimate/.test(m.call(b.createElementNS(r.svg,"animate")))},s.svgclippaths=function(){return!!b.createElementNS&&/SVGClipPath/.test(m.call(b.createElementNS(r.svg,"clipPath")))};for(var L in s)C(s,L)&&(x=L.toLowerCase(),e[x]=s[L](),v.push((e[x]?"":"no-")+x));return e.input||K(),e.addTest=function(a,b){if(typeof a=="object")for(var d in a)C(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},D(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e<g;e++)d.createElement(f[e]);return d}function p(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return r.shivMethods?n(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+l().join().replace(/\w+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(r,b.frag)}function q(a){a||(a=b);var c=m(a);return r.shivCSS&&!f&&!c.hasCSS&&(c.hasCSS=!!k(a,"article,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}")),j||p(a,c),a}var c=a.html5||{},d=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,e=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,f,g="_html5shiv",h=0,i={},j;(function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=n,e._domPrefixes=q,e._cssomPrefixes=p,e.mq=z,e.hasEvent=A,e.testProp=function(a){return H([a])},e.testAllProps=J,e.testStyles=y,e.prefixed=function(a,b,c){return b?J(a,b,c):J(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+v.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f<d;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;f<b;f++)c=x[f](c);return c}function g(a,e,f,g,h){var i=b(a),j=i.autoCallback;i.url.split(".").pop().split("?").shift(),i.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]),i.instead?i.instead(a,e,f,g,h):(y[i.url]?i.noexec=!0:y[i.url]=1,f.load(i.url,i.forceCSS||!i.forceJS&&"css"==i.url.split(".").pop().split("?").shift()?"c":c,i.noexec,i.attrs,i.timeout),(d(e)||d(j))&&f.load(function(){k(),e&&e(i.origUrl,h,g),j&&j(i.origUrl,h,g),y[i.url]=2})))}function h(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;c(h?a.yep:a.nope,!!i),i&&c(i)}var i,j,l=this.yepnope.loader;if(e(a))g(a,0,l,0);else if(w(a))for(i=0;i<a.length;i++)j=a[i],e(j)?g(j,0,l,0):w(j)?B(j):Object(j)===j&&h(j,l);else Object(a)===a&&h(a,l)},B.addPrefix=function(a,b){z[a]=b},B.addFilter=function(a){x.push(a)},B.errorTimeout=1e4,null==b.readyState&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k=b.createElement("script"),l,o,e=e||B.errorTimeout;k.src=a;for(o in d)k.setAttribute(o,d[o]);c=j?h:c||f,k.onreadystatechange=k.onload=function(){!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)},m(function(){l||(l=1,c(1))},e),i?k.onload():n.parentNode.insertBefore(k,n)},a.yepnope.injectCss=function(a,c,d,e,g,i){var e=b.createElement("link"),j,c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(n.parentNode.insertBefore(e,n),m(c,0))}}(this,document),Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0))};
|
5 |
+
|
6 |
+
/*! matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas. Dual MIT/BSD license */
|
7 |
+
/*! NOTE: If you're already including a window.matchMedia polyfill via Modernizr or otherwise, you don't need this part */
|
8 |
+
window.matchMedia=window.matchMedia||(function(e,f){var c,a=e.documentElement,b=a.firstElementChild||a.firstChild,d=e.createElement("body"),g=e.createElement("div");g.id="mq-test-1";g.style.cssText="position:absolute;top:-100em";d.style.background="none";d.appendChild(g);return function(h){g.innerHTML='­<style media="'+h+'"> #mq-test-1 { width: 42px; }</style>';a.insertBefore(d,b);c=g.offsetWidth==42;a.removeChild(d);return{matches:c,media:h}}})(document);
|
9 |
+
|
10 |
+
/*! Respond.js v1.1.0: min/max-width media query polyfill. (c) Scott Jehl. MIT/GPLv2 Lic. j.mp/respondjs */
|
11 |
+
(function(e){e.respond={};respond.update=function(){};respond.mediaQueriesSupported=e.matchMedia&&e.matchMedia("only all").matches;if(respond.mediaQueriesSupported){return}var w=e.document,s=w.documentElement,i=[],k=[],q=[],o={},h=30,f=w.getElementsByTagName("head")[0]||s,g=w.getElementsByTagName("base")[0],b=f.getElementsByTagName("link"),d=[],a=function(){var D=b,y=D.length,B=0,A,z,C,x;for(;B<y;B++){A=D[B],z=A.href,C=A.media,x=A.rel&&A.rel.toLowerCase()==="stylesheet";if(!!z&&x&&!o[z]){if(A.styleSheet&&A.styleSheet.rawCssText){m(A.styleSheet.rawCssText,z,C);o[z]=true}else{if((!/^([a-zA-Z:]*\/\/)/.test(z)&&!g)||z.replace(RegExp.$1,"").split("/")[0]===e.location.host){d.push({href:z,media:C})}}}}u()},u=function(){if(d.length){var x=d.shift();n(x.href,function(y){m(y,x.href,x.media);o[x.href]=true;u()})}},m=function(I,x,z){var G=I.match(/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi),J=G&&G.length||0,x=x.substring(0,x.lastIndexOf("/")),y=function(K){return K.replace(/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,"$1"+x+"$2$3")},A=!J&&z,D=0,C,E,F,B,H;if(x.length){x+="/"}if(A){J=1}for(;D<J;D++){C=0;if(A){E=z;k.push(y(I))}else{E=G[D].match(/@media *([^\{]+)\{([\S\s]+?)$/)&&RegExp.$1;k.push(RegExp.$2&&y(RegExp.$2))}B=E.split(",");H=B.length;for(;C<H;C++){F=B[C];i.push({media:F.split("(")[0].match(/(only\s+)?([a-zA-Z]+)\s?/)&&RegExp.$2||"all",rules:k.length-1,hasquery:F.indexOf("(")>-1,minw:F.match(/\(min\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:F.match(/\(max\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}}j()},l,r,v=function(){var z,A=w.createElement("div"),x=w.body,y=false;A.style.cssText="position:absolute;font-size:1em;width:1em";if(!x){x=y=w.createElement("body");x.style.background="none"}x.appendChild(A);s.insertBefore(x,s.firstChild);z=A.offsetWidth;if(y){s.removeChild(x)}else{x.removeChild(A)}z=p=parseFloat(z);return z},p,j=function(I){var x="clientWidth",B=s[x],H=w.compatMode==="CSS1Compat"&&B||w.body[x]||B,D={},G=b[b.length-1],z=(new Date()).getTime();if(I&&l&&z-l<h){clearTimeout(r);r=setTimeout(j,h);return}else{l=z}for(var E in i){var K=i[E],C=K.minw,J=K.maxw,A=C===null,L=J===null,y="em";if(!!C){C=parseFloat(C)*(C.indexOf(y)>-1?(p||v()):1)}if(!!J){J=parseFloat(J)*(J.indexOf(y)>-1?(p||v()):1)}if(!K.hasquery||(!A||!L)&&(A||H>=C)&&(L||H<=J)){if(!D[K.media]){D[K.media]=[]}D[K.media].push(k[K.rules])}}for(var E in q){if(q[E]&&q[E].parentNode===f){f.removeChild(q[E])}}for(var E in D){var M=w.createElement("style"),F=D[E].join("\n");M.type="text/css";M.media=E;f.insertBefore(M,G.nextSibling);if(M.styleSheet){M.styleSheet.cssText=F}else{M.appendChild(w.createTextNode(F))}q.push(M)}},n=function(x,z){var y=c();if(!y){return}y.open("GET",x,true);y.onreadystatechange=function(){if(y.readyState!=4||y.status!=200&&y.status!=304){return}z(y.responseText)};if(y.readyState==4){return}y.send(null)},c=(function(){var x=false;try{x=new XMLHttpRequest()}catch(y){x=new ActiveXObject("Microsoft.XMLHTTP")}return function(){return x}})();a();respond.update=a;function t(){j(true)}if(e.addEventListener){e.addEventListener("resize",t,false)}else{if(e.attachEvent){e.attachEvent("onresize",t)}}})(this);
|
plugin/sdf/sdf.admin.css
ADDED
@@ -0,0 +1,1050 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
small.expand-hide {
|
2 |
+
display:block;
|
3 |
+
height: 32px;
|
4 |
+
}
|
5 |
+
small.expand-hide a.wpu-open-close{
|
6 |
+
color:#868686;
|
7 |
+
line-height: 32px;
|
8 |
+
}
|
9 |
+
body#media-upload {
|
10 |
+
margin: 8px;}
|
11 |
+
.img-responsive {
|
12 |
+
display: block;
|
13 |
+
height: auto;
|
14 |
+
max-width: 100%;
|
15 |
+
}
|
16 |
+
.wpu-hide { display:none; }
|
17 |
+
.disabled .wpu-radio-button {cursor:default;}
|
18 |
+
#wpu-custom-layout-li .wpu-radio-button.selected{border:#555;}
|
19 |
+
body#media-upload .label,body#media-upload .badge {
|
20 |
+
color:inherit;
|
21 |
+
text-shadow:none;
|
22 |
+
background-color:transparent;
|
23 |
+
}
|
24 |
+
#adminmenu #toplevel_page_sdf-ultimate div.wp-menu-image:before {
|
25 |
+
content: "";
|
26 |
+
}
|
27 |
+
#adminmenu .menu-icon-generic div.wp-menu-image,
|
28 |
+
#adminmenu #toplevel_page_sdf-ultimate a div.wp-menu-image {
|
29 |
+
background: url("../img/logos/16x16_sdf_wp_icon.png") 5px 8px no-repeat !important;
|
30 |
+
width:28px;
|
31 |
+
height:28px;
|
32 |
+
}
|
33 |
+
#adminmenu #toplevel_page_sdf-ultimate a:hover div.wp-menu-image,
|
34 |
+
#adminmenu #toplevel_page_sdf-ultimate.wp-menu-open a div.wp-menu-image,
|
35 |
+
#adminmenu #toplevel_page_sdf-ultimate.wp-menu-open a:hover div.wp-menu-image {
|
36 |
+
background-image: url("../img/logos/16x16_sdf_hover_wp_icon.png") !important;
|
37 |
+
}
|
38 |
+
.sdf-admin .panel-heading a { color:#3f3f3f; }
|
39 |
+
.sdf-admin .panel-heading a:hover { color:#000; text-decoration:none; }
|
40 |
+
.sdf-admin .panel-heading.active a {background: url(../img/admin/glyphicons_367_expand.png) 8px center no-repeat; }
|
41 |
+
.sdf-admin .panel-heading a { background: url(../img/admin/glyphicons_368_collapse.png) 8px center no-repeat; }
|
42 |
+
.sdf-admin .panel-heading .accordion-toggle { padding-left: 35px; }
|
43 |
+
|
44 |
+
/* wpu global/per page layouts*/
|
45 |
+
.wpu-sub-single {clear:left;}
|
46 |
+
ul.sdf-layouts li {
|
47 |
+
list-style:none;
|
48 |
+
}
|
49 |
+
.wpu-page-layouts ul {
|
50 |
+
overflow:hidden;
|
51 |
+
margin: 0;
|
52 |
+
clear:left;
|
53 |
+
}
|
54 |
+
.wpu-page-layouts ul li {
|
55 |
+
list-style:none;
|
56 |
+
margin:5px;
|
57 |
+
float:left;
|
58 |
+
}
|
59 |
+
.wpu-page-layouts ul li input[type="radio"] {
|
60 |
+
display:none;
|
61 |
+
}
|
62 |
+
.wpu-page-layouts ul li input[type="radio"] + label span[class^="layout_"] {
|
63 |
+
display:block;
|
64 |
+
clear: left;
|
65 |
+
width:95px;
|
66 |
+
height:93px;
|
67 |
+
margin: 0;
|
68 |
+
padding: 5px;
|
69 |
+
vertical-align:middle;
|
70 |
+
cursor:pointer;
|
71 |
+
}
|
72 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label span[class^="layout_"] {
|
73 |
+
width: 66px;
|
74 |
+
height:64px;
|
75 |
+
}
|
76 |
+
|
77 |
+
.wpu-page-layouts ul li input[type="radio"] + label span.layout_col_3 {
|
78 |
+
background:url(../img/admin/layout/3-col.gif) 5px 5px no-repeat;
|
79 |
+
}
|
80 |
+
.wpu-page-layouts ul li input[type="radio"] + label span.layout_col_right_2 {
|
81 |
+
background:url(../img/admin/layout/side-right.gif) 5px 5px no-repeat;
|
82 |
+
}
|
83 |
+
.wpu-page-layouts ul li input[type="radio"] + label span.layout_col_left_2 {
|
84 |
+
background:url(../img/admin/layout/side-left.gif) 5px 5px no-repeat;
|
85 |
+
}
|
86 |
+
.wpu-page-layouts ul li input[type="radio"] + label span.layout_ssc_left {
|
87 |
+
background:url(../img/admin/layout/s-s-c.gif) 5px 5px no-repeat;
|
88 |
+
}
|
89 |
+
.wpu-page-layouts ul li input[type="radio"] + label span.layout_css_right {
|
90 |
+
background:url(../img/admin/layout/c-s-s.gif) 5px 5px no-repeat;
|
91 |
+
}
|
92 |
+
.wpu-page-layouts ul li input[type="radio"] + label span.layout_no_col {
|
93 |
+
background:url(../img/admin/layout/none.gif) 5px 5px no-repeat;
|
94 |
+
}
|
95 |
+
.wpu-page-layouts ul li input[type="radio"] + label span.layout_sdf_custom_layout {
|
96 |
+
background:url(../img/admin/layout/custom.gif) 5px 5px no-repeat;
|
97 |
+
}
|
98 |
+
|
99 |
+
|
100 |
+
|
101 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label span.layout_col_3 {
|
102 |
+
background:url(../img/admin/layout/3-col-page.gif) 5px 5px no-repeat;
|
103 |
+
}
|
104 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label span.layout_col_right_2 {
|
105 |
+
background:url(../img/admin/layout/side-right-page.gif) 5px 5px no-repeat;
|
106 |
+
}
|
107 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label span.layout_col_left_2 {
|
108 |
+
background:url(../img/admin/layout/side-left-page.gif) 5px 5px no-repeat;
|
109 |
+
}
|
110 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label span.layout_ssc_left {
|
111 |
+
background:url(../img/admin/layout/ssc-page.gif) 5px 5px no-repeat;
|
112 |
+
}
|
113 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label span.layout_css_right {
|
114 |
+
background:url(../img/admin/layout/css-page.gif) 5px 5px no-repeat;
|
115 |
+
}
|
116 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label span.layout_no_col {
|
117 |
+
background:url(../img/admin/layout/none-page.gif) 5px 5px no-repeat;
|
118 |
+
}
|
119 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label span.layout_sdf_custom_layout {
|
120 |
+
background:url(../img/admin/layout/custom-page.gif) 5px 5px no-repeat;
|
121 |
+
}
|
122 |
+
|
123 |
+
.wpu-page-layouts ul li input[type="radio"] + label span[class^="layout_"],
|
124 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label span[class^="layout_"] {
|
125 |
+
background-color:#f7f7f7;
|
126 |
+
}
|
127 |
+
.wpu-page-layouts ul li input[type="radio"]:checked + label span[class^="layout_"],
|
128 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"]:checked + label span[class^="layout_"] {
|
129 |
+
background-color:#ed941e;
|
130 |
+
}
|
131 |
+
.wpu-page-layouts ul li input[type="radio"] + label .lay_title,
|
132 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label .lay_title,
|
133 |
+
.wpu-page-layouts ul li input[type="radio"] + label .lay_subtitle,
|
134 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label .lay_subtitle {
|
135 |
+
margin: 0 0 2px 5px;
|
136 |
+
background:none;
|
137 |
+
cursor: pointer;
|
138 |
+
padding: 0;
|
139 |
+
border: 0;
|
140 |
+
font-size: 11px;
|
141 |
+
clear: left;
|
142 |
+
display: block;
|
143 |
+
}
|
144 |
+
.wpu-page-layouts ul li input[type="radio"] + label .lay_title,
|
145 |
+
.wpu-page-layouts.wpu-sub-single ul li input[type="radio"] + label .lay_title {
|
146 |
+
font-weight: bold;
|
147 |
+
font-size: 14px;
|
148 |
+
clear: left;
|
149 |
+
}
|
150 |
+
.wpu-page-layouts ul li input[type="radio"]:checked + label .lay_title {
|
151 |
+
color:#ed941e;
|
152 |
+
}
|
153 |
+
.wpu-page-layouts ul li input[type="radio"] + label span,
|
154 |
+
.wpu-page-layouts ul li input[type="radio"]:checked + label span {
|
155 |
+
-webkit-transition:background-color 0.2s linear;
|
156 |
+
-o-transition:background-color 0.2s linear;
|
157 |
+
-moz-transition:background-color 0.2s linear;
|
158 |
+
transition:background-color 0.2s linear;
|
159 |
+
}
|
160 |
+
.wpu-page-layouts ul li input[type="radio"] + label span.small { font-size:11px; }
|
161 |
+
/* wpu widget layouts*/
|
162 |
+
.wpu-widget-layouts ul {
|
163 |
+
overflow:hidden;
|
164 |
+
margin: 0;
|
165 |
+
clear:left;
|
166 |
+
}
|
167 |
+
.wpu-widget-layouts ul li {
|
168 |
+
list-style:none;
|
169 |
+
margin:5px;
|
170 |
+
float:left;
|
171 |
+
}
|
172 |
+
.wpu-widget-layouts ul li input[type="radio"] {
|
173 |
+
display:none;
|
174 |
+
}
|
175 |
+
.wpu-widget-layouts ul li input[type="radio"] + label span {
|
176 |
+
display:inline-block;
|
177 |
+
width:36px;
|
178 |
+
height:31px;
|
179 |
+
margin: 0 4px 0 0;
|
180 |
+
padding: 3px;
|
181 |
+
vertical-align:middle;
|
182 |
+
cursor:pointer;
|
183 |
+
}
|
184 |
+
.wpu-widget-layouts ul li input[type="radio"] + label span.layout_1_1 {
|
185 |
+
background:url(../img/admin/layout/widgets/widget_layouts_1_1.png) 3px 3px no-repeat;
|
186 |
+
}
|
187 |
+
.wpu-widget-layouts ul li input[type="radio"] + label span.layout_1_2 {
|
188 |
+
background:url(../img/admin/layout/widgets/widget_layouts_1_2.png) 3px 3px no-repeat;
|
189 |
+
}
|
190 |
+
.wpu-widget-layouts ul li input[type="radio"] + label span.layout_1_3 {
|
191 |
+
background:url(../img/admin/layout/widgets/widget_layouts_1_3.png) 3px 3px no-repeat;
|
192 |
+
}
|
193 |
+
.wpu-widget-layouts ul li input[type="radio"] + label span.layout_1_4 {
|
194 |
+
background:url(../img/admin/layout/widgets/widget_layouts_1_4.png) 3px 3px no-repeat;
|
195 |
+
}
|
196 |
+
.wpu-widget-layouts ul li input[type="radio"] + label span.layout_1_6 {
|
197 |
+
background:url(../img/admin/layout/widgets/widget_layouts_1_6.png) 3px 3px no-repeat;
|
198 |
+
}
|
199 |
+
.wpu-widget-layouts ul li input[type="radio"] + label span.layout_2_3 {
|
200 |
+
background:url(../img/admin/layout/widgets/widget_layouts_2_3.png) 3px 3px no-repeat;
|
201 |
+
}
|
202 |
+
.wpu-widget-layouts ul li input[type="radio"] + label span.layout_3_4 {
|
203 |
+
background:url(../img/admin/layout/widgets/widget_layouts_3_4.png) 3px 3px no-repeat;
|
204 |
+
}
|
205 |
+
.wpu-widget-layouts ul li input[type="radio"] + label span.layout_5_6 {
|
206 |
+
background:url(../img/admin/layout/widgets/widget_layouts_5_6.png) 3px 3px no-repeat;
|
207 |
+
}
|
208 |
+
.wpu-widget-layouts ul li input[type="radio"] + label span[class^="layout_"] {
|
209 |
+
background-color:#ffffff;
|
210 |
+
}
|
211 |
+
.wpu-widget-layouts ul li input[type="radio"]:checked + label span[class^="layout_"] {
|
212 |
+
background-color:#ed941e;
|
213 |
+
}
|
214 |
+
.wpu-widget-layouts ul li input[type="radio"]:checked + label {
|
215 |
+
color:#ed941e;
|
216 |
+
}
|
217 |
+
.wpu-widget-layouts ul li input[type="radio"] + label span,
|
218 |
+
.wpu-widget-layouts ul li input[type="radio"]:checked + label span {
|
219 |
+
-webkit-transition:background-color 0.2s linear;
|
220 |
+
-o-transition:background-color 0.2s linear;
|
221 |
+
-moz-transition:background-color 0.2s linear;
|
222 |
+
transition:background-color 0.2s linear;
|
223 |
+
}
|
224 |
+
|
225 |
+
.wpu-ad-layout .wpu-radio-button {width: 75px; border:none; height:140px;}
|
226 |
+
.disabled .wpu-radio-button.selected {
|
227 |
+
|
228 |
+
background:#787878 url(../img/admin/selected_disabled.gif) center bottom no-repeat;
|
229 |
+
}
|
230 |
+
.custom-radio {
|
231 |
+
background:#348b57;
|
232 |
+
width:300px;
|
233 |
+
padding:5px;
|
234 |
+
color:#fff;
|
235 |
+
}
|
236 |
+
.custom-radio.selected {
|
237 |
+
background:#21653d;
|
238 |
+
}
|
239 |
+
.disabled {
|
240 |
+
opacity: .5;
|
241 |
+
filter: alpha(opacity=50);
|
242 |
+
}
|
243 |
+
#page-custom-layout {float:left;}
|
244 |
+
#page-custom-layout .hr{margin-top:15px;}
|
245 |
+
.blue { text-align:left; color:#21759b; font-size:18px; font-weight:bold; }
|
246 |
+
.orange{ text-align:left; color:#ed941e; font-size:18px; font-weight:bold; }
|
247 |
+
.small { text-align:left; font-size:13px; color:#555; }
|
248 |
+
#poststuff h3.step-title , .sdf-admin h3.step-title { line-height:24px; font-size:16px; font-weight:bold; text-decoration:none;display: block;outline: 0 none; padding:0px}
|
249 |
+
.step-text { color:#8D8D8D;font-size:16px; font-weight:bold; }
|
250 |
+
.wpu-radio-button.selected .blue,.wpu-radio-button.selected .stp-title, .wpu-radio-button.selected .small { color:#fff; }
|
251 |
+
.sdf-admin .tab-content .wpu-group{ margin: 15px 0px; padding:0px 15px;}
|
252 |
+
.sdf-meta-wrap .tab-content .wpu-group{ margin: 0px 5px; padding:10px 0;}
|
253 |
+
.sdf-admin .tab-content .wrap{ margin-top: 0px; padding:15px 0;}
|
254 |
+
.tab-content .table{
|
255 |
+
border-right: 1px solid #ddd;
|
256 |
+
border-bottom: 1px solid #ddd;
|
257 |
+
border-left: 1px solid #ddd;}
|
258 |
+
.tab-content {
|
259 |
+
background:#fff;
|
260 |
+
border: 0;
|
261 |
+
|
262 |
+
-webkit-border-bottom-right-radius: 4px;
|
263 |
+
-webkit-border-bottom-left-radius: 4px;
|
264 |
+
|
265 |
+
-moz-border-radius-bottomright: 4px;
|
266 |
+
-moz-border-radius-bottomleft: 4px;
|
267 |
+
|
268 |
+
border-bottom-right-radius: 4px;
|
269 |
+
border-bottom-left-radius: 4px;
|
270 |
+
}
|
271 |
+
.tab-content.style-pills-content {
|
272 |
+
padding-top: 10px;
|
273 |
+
border: 0;
|
274 |
+
}
|
275 |
+
.sdf-meta-wrap .nav { margin-bottom:0; }
|
276 |
+
.sdf-admin.sdf-header {
|
277 |
+
margin-top: 15px;
|
278 |
+
}
|
279 |
+
.sdf-admin .nav-tabs {
|
280 |
+
border-bottom: 1px solid #cccccc;
|
281 |
+
}
|
282 |
+
.sdf-admin .nav-tabs > li > a,
|
283 |
+
.sdf-meta-wrap .nav-tabs > li > a {
|
284 |
+
background-color: #ffffff;
|
285 |
+
border-color: #dddddd #dddddd #cccccc;
|
286 |
+
text-decoration:none;
|
287 |
+
color:#868686;
|
288 |
+
font-size: 18px;
|
289 |
+
margin-right: 10px;
|
290 |
+
padding: 6px 15px;
|
291 |
+
}
|
292 |
+
.sdf-admin .nav-tabs > li > a:hover,
|
293 |
+
.sdf-admin .nav-tabs > li > a:focus,
|
294 |
+
.sdf-meta-wrap .nav-tabs > li > a:hover,
|
295 |
+
.sdf-meta-wrap .nav-tabs > li > a:focus {
|
296 |
+
background-color: #ffffff;
|
297 |
+
border-color: #cccccc;
|
298 |
+
text-decoration:none;
|
299 |
+
color:#464646;
|
300 |
+
}
|
301 |
+
#footer-thankyou a,
|
302 |
+
.sdf-admin a,
|
303 |
+
.sdf-admin .nav-tabs > li.active > a,
|
304 |
+
.sdf-admin .nav-tabs > li.active > a:hover,
|
305 |
+
.sdf-admin .nav-tabs > li.active > a:focus,
|
306 |
+
.sdf-meta-wrap a,
|
307 |
+
.sdf-meta-wrap .nav-tabs > li.active > a,
|
308 |
+
.sdf-meta-wrap .nav-tabs > li.active > a:hover,
|
309 |
+
.sdf-meta-wrap .nav-tabs > li.active > a:focus {
|
310 |
+
color:#ed941e;
|
311 |
+
border-color: #cccccc #cccccc rgba(0, 0, 0, 0);
|
312 |
+
outline: none;
|
313 |
+
}
|
314 |
+
.single-gtitle { font-weight:bold; float:left;padding-top:5px; }
|
315 |
+
.wpu-group { color:#464646; }
|
316 |
+
.help-text {color:#868686; font-size:13px;}
|
317 |
+
.wpu-group strong {color:#8D8D8D; }
|
318 |
+
.wpu-sub { overflow:hidden; padding:10px 15px; margin:0 0 20px; border: 0; }
|
319 |
+
.wpu-gtitle { clear:left; font-size:16px; font-weight:bold; text-decoration:none;display: block;outline: 0 none;}
|
320 |
+
|
321 |
+
.sdf-admin .hr {clear:both; margin:10px 0 10px; height:1px; border-top:#ccc 1px solid; }
|
322 |
+
.wpu-left { float:left; }
|
323 |
+
.wpu-right { float:right; }
|
324 |
+
.wpu-help { line-height:3; }
|
325 |
+
.lisorting { margin-left:370px; }
|
326 |
+
.lisorting > div { padding-top:10px; }
|
327 |
+
|
328 |
+
#sdf_theme_fonts_page { position:relative;}
|
329 |
+
|
330 |
+
td.midlast {padding:10px 0!important;}
|
331 |
+
|
332 |
+
.wpu-admin-btn {width:180px; margin-bottom:0 !important; }
|
333 |
+
.wpu-admin-small { width:75px !important;margin-bottom:0 !important;}
|
334 |
+
.wpu-admin-medium {width:235px;margin-bottom:0 !important;}
|
335 |
+
.wpu-admin-color { width: 276px;margin-bottom:0 !important;}
|
336 |
+
.wpu-admin-large { width:310px; margin-bottom:0 !important;}
|
337 |
+
|
338 |
+
.wpu-tbl .wpu-admin-btn, .wpu-tbl select.wpu-admin-btn{ width:155px; margin:5px 0 !important;}
|
339 |
+
div#wpu-cats, div#wpu-pages {
|
340 |
+
padding:0 5px;
|
341 |
+
background:#efefef;
|
342 |
+
border:#CCC 1px solid;
|
343 |
+
}
|
344 |
+
#wpu-ad-help-img {
|
345 |
+
display: none; /* required */
|
346 |
+
position: absolute; /* required */
|
347 |
+
padding: 10px;
|
348 |
+
border: 1px solid black;
|
349 |
+
background-color: white;
|
350 |
+
}
|
351 |
+
|
352 |
+
/* Header Builder*/
|
353 |
+
.sdf-block-header {
|
354 |
+
background: #f7f7f7;
|
355 |
+
border: 1px solid #DFDFDF;
|
356 |
+
border-radius: 6px;
|
357 |
+
-moz-border-radius: 6px;
|
358 |
+
-webkit-border-radius: 6px;
|
359 |
+
display: block;
|
360 |
+
width: 100%;
|
361 |
+
min-height: 72px;
|
362 |
+
padding: 12px 10px;
|
363 |
+
position: relative;
|
364 |
+
}
|
365 |
+
#sdf-block-header-inactive {
|
366 |
+
background: #f9f9f9;
|
367 |
+
border: 1px dashed #DFDFDF;
|
368 |
+
}
|
369 |
+
.sdf-block-header .block-builder-box { float: left; padding-left: 5px; padding-right: 5px;}
|
370 |
+
#sdf-block-header-inactive.sdf-block-header .block-builder-box {
|
371 |
+
opacity: 0.6;
|
372 |
+
}
|
373 |
+
.sdf-block-header .block-builder-box .block-builder-box-panel {
|
374 |
+
cursor:move;
|
375 |
+
height:42px;
|
376 |
+
margin:3px 0;
|
377 |
+
border-radius: 4px;
|
378 |
+
-moz-border-radius: 4px;
|
379 |
+
-webkit-border-radius: 4px;
|
380 |
+
position:relative;
|
381 |
+
overflow:hidden;
|
382 |
+
text-shadow: 0 1px 0 #fff;
|
383 |
+
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#e6e6e6));
|
384 |
+
background-image: -webkit-linear-gradient(top, #ffffff, 0%, #e6e6e6, 100%);
|
385 |
+
background-image: -moz-linear-gradient(top, #ffffff 0%, #e6e6e6 100%);
|
386 |
+
background-image: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
|
387 |
+
background-repeat: repeat-x;
|
388 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
|
389 |
+
border: 1px solid #dedede;
|
390 |
+
transition: background 0.2s ease 0s;
|
391 |
+
}
|
392 |
+
.sdf-block-header .block-builder-box .block-builder-box-panel:hover {
|
393 |
+
border-color: #CCCCCC;
|
394 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
|
395 |
+
}
|
396 |
+
.sdf-block-header .ui-state-highlight {
|
397 |
+
margin: 3px 0;
|
398 |
+
height: 42px;
|
399 |
+
float: left;
|
400 |
+
background-color: #fafafa;
|
401 |
+
border: 1px dashed #dedede;
|
402 |
+
border-radius: 4px;
|
403 |
+
-moz-border-radius: 4px;
|
404 |
+
-webkit-border-radius: 4px;
|
405 |
+
}
|
406 |
+
.sdf-block-header .block-builder-box .block-builder-box-size {
|
407 |
+
float:left;
|
408 |
+
width:40px;
|
409 |
+
margin: -1px 0 -1px -1px;
|
410 |
+
}
|
411 |
+
.sdf-block-header .block-builder-box .block-builder-box-size .block-builder-box-btn {
|
412 |
+
float:left;
|
413 |
+
cursor:pointer;
|
414 |
+
display:block;
|
415 |
+
width:20px;
|
416 |
+
height:23px;
|
417 |
+
background: #707070;
|
418 |
+
line-height:23px;
|
419 |
+
font-size:20px;
|
420 |
+
font-weight:bold;
|
421 |
+
text-align:center;
|
422 |
+
color:#fefefe;
|
423 |
+
text-shadow: 0 0 1px #222;
|
424 |
+
text-decoration:none;
|
425 |
+
transition: all 0.2s ease 0s;
|
426 |
+
}
|
427 |
+
.sdf-block-header .block-builder-box .block-builder-box-size .block-builder-box-btn:hover {
|
428 |
+
background: #565656;
|
429 |
+
color: #fa0;
|
430 |
+
text-shadow: none;
|
431 |
+
}
|
432 |
+
.sdf-block-header .block-builder-box .block-builder-box-size .block-builder-box-size-dec {
|
433 |
+
-webkit-border-radius: 4px 0px 0px 0px;
|
434 |
+
-moz-border-radius: 4px 0px 0px 0px;
|
435 |
+
border-radius: 4px 0px 0px 0px;
|
436 |
+
}
|
437 |
+
.sdf-block-header .block-builder-box .block-builder-box-width {
|
438 |
+
background: rgb(245, 143, 29);
|
439 |
+
clear:left;
|
440 |
+
display:block;
|
441 |
+
width:40px;
|
442 |
+
height:21px;
|
443 |
+
line-height:16px;
|
444 |
+
font-size:12px;
|
445 |
+
color:#fff;
|
446 |
+
text-align:center;
|
447 |
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) !important;
|
448 |
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.125) inset;
|
449 |
+
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.125);
|
450 |
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.125);
|
451 |
+
}
|
452 |
+
.sdf-block-header .block-builder-box .block-builder-box-label { padding-left:10px; font-size:13px; line-height:42px; color:#444;}
|
453 |
+
|
454 |
+
/* Presets */
|
455 |
+
.button-export {
|
456 |
+
background: white url('../img/admin/export.jpg') no-repeat top;
|
457 |
+
width: 58px;
|
458 |
+
height: 17px;
|
459 |
+
outline:none;
|
460 |
+
border:none;
|
461 |
+
cursor:pointer;
|
462 |
+
color:#000;
|
463 |
+
}
|
464 |
+
.button-import {
|
465 |
+
background: white url('../img/admin/import.jpg') no-repeat top;
|
466 |
+
width: 59px;
|
467 |
+
height: 17px;
|
468 |
+
outline:none;
|
469 |
+
border:none;
|
470 |
+
cursor:pointer;
|
471 |
+
color:#000;
|
472 |
+
}
|
473 |
+
.wpu-use-global {
|
474 |
+
margin:15px 0 5px;
|
475 |
+
text-align:center;
|
476 |
+
width:200px;
|
477 |
+
padding:0 15px;
|
478 |
+
line-height:2.4;
|
479 |
+
color:#444;
|
480 |
+
font-size:16px;
|
481 |
+
font-weight:bold;
|
482 |
+
height: 40px;
|
483 |
+
background:#c7c7c7;
|
484 |
+
border-radius: 1em;
|
485 |
+
-moz-border-radius: 1em;
|
486 |
+
-webkit-border-radius: 1em;
|
487 |
+
}
|
488 |
+
|
489 |
+
.wpu-inside{margin: 0px 1px 8px !important; padding:10px;}
|
490 |
+
#sdf_theme_settings_page .wpu-use-global{ width:330px; font-size:14px; }
|
491 |
+
#sdf_theme_settings_page .wpu-use-global select { font-weight:normal; margin-top:5px; }
|
492 |
+
#sdf_theme_masthead_page .wpu-use-global{ width:200px; font-size:14px; }
|
493 |
+
#sdf_theme_masthead_page .wpu-use-global select { font-weight:normal;font-size:12px; margin-top:5px; }
|
494 |
+
|
495 |
+
|
496 |
+
.forms label { width: 220px;
|
497 |
+
float: left;
|
498 |
+
text-align: left;
|
499 |
+
margin-right: 0.5em;
|
500 |
+
display: block }
|
501 |
+
.forms {clear: left;
|
502 |
+
display: block;
|
503 |
+
width: 354px;
|
504 |
+
zoom: 1;
|
505 |
+
margin: 5px 0 0 0;
|
506 |
+
padding: 1px 3px;}
|
507 |
+
/* TABLE STYLES BEGIN */
|
508 |
+
.wpu-tbl .wpu-row, .wpu-tbl .wpu-col{ display:none;}
|
509 |
+
|
510 |
+
.wpu-tbl th { font-weight:bold; }
|
511 |
+
.wpu-tbl th.subrow em { color:#8D8D8D; font-size:11px; }
|
512 |
+
.wpu-tbl th.subrow { font-weight:normal; background:#eee; line-height:1; padding: 10px 0;}
|
513 |
+
a.wpu-add { color:#fff !important; text-decoration:none;}
|
514 |
+
|
515 |
+
|
516 |
+
.wpu-tbl {border-collapse: separate;}
|
517 |
+
/* TABLE STYLES END */
|
518 |
+
|
519 |
+
|
520 |
+
|
521 |
+
.highlight td{
|
522 |
+
background-color:#FF6;
|
523 |
+
border: 1px solid #FC6;
|
524 |
+
}
|
525 |
+
|
526 |
+
|
527 |
+
div#sdf_theme_settings_page table.form-table fieldset {
|
528 |
+
border-style: none;
|
529 |
+
}
|
530 |
+
|
531 |
+
/* Ad settings styles */
|
532 |
+
form#sdf_theme_ad_settings .postbox {
|
533 |
+
margin-top: 1em;
|
534 |
+
margin-bottom: 1em;
|
535 |
+
}
|
536 |
+
|
537 |
+
form#sdf_theme_ad_settings .postbox .hndle, form#sdf_theme_ad_settings .postbox .handlebox {
|
538 |
+
cursor: pointer;
|
539 |
+
}
|
540 |
+
|
541 |
+
form#sdf_theme_ad_settings table.form-table td, form#sdf_theme_ad_settings table.form-table th {
|
542 |
+
vertical-align: middle;
|
543 |
+
}
|
544 |
+
|
545 |
+
form#sdf_theme_ad_settings table.sdf_theme_ad_data th {
|
546 |
+
font-weight: bold;
|
547 |
+
text-align: center;
|
548 |
+
}
|
549 |
+
|
550 |
+
form#sdf_theme_ad_settings table.sdf_theme_ad_data th small {
|
551 |
+
display: block;
|
552 |
+
font-weight: normal;
|
553 |
+
}
|
554 |
+
|
555 |
+
form#sdf_theme_ad_settings table.sdf_theme_ad_data th.adnumber {
|
556 |
+
width: 4%;
|
557 |
+
}
|
558 |
+
|
559 |
+
form#sdf_theme_ad_settings table.sdf_theme_ad_data td {
|
560 |
+
width: 32%;
|
561 |
+
text-align: center;
|
562 |
+
}
|
563 |
+
|
564 |
+
form#sdf_theme_ad_settings table.sdf_theme_ad_data td input {
|
565 |
+
|
566 |
+
width: 97%;
|
567 |
+
}
|
568 |
+
|
569 |
+
ul.row { list-style:none; margin:0; padding:0;}
|
570 |
+
ul.row li {float:left; margin:0; text-align:center;}
|
571 |
+
ul.row p.small { font-weight:bold; font-size:9px;}
|
572 |
+
ul.row p.small span{ font-size:9px; font-weight:normal; font-style:italic; }
|
573 |
+
.theme-wrap fieldset {
|
574 |
+
padding:5px 10px;
|
575 |
+
}
|
576 |
+
ul.col { list-style:none; }
|
577 |
+
ul.col li { float:none; margin:5px 0;}
|
578 |
+
.optionItem {
|
579 |
+
font-size:14px;
|
580 |
+
font-weight:bold;
|
581 |
+
display:block;
|
582 |
+
}
|
583 |
+
.mar50 { margin:0 0 0 50px; }
|
584 |
+
.theme-wrap h1 {margin:10px 0 0;}
|
585 |
+
.theme-wrap h3 { margin:0 0 7px; }
|
586 |
+
.agroup {border:#ccc 1px solid; padding:10px; }
|
587 |
+
.hgroup { border-bottom:#ccc 1px solid;}
|
588 |
+
|
589 |
+
.clearfix:after {
|
590 |
+
content: ".";
|
591 |
+
display: block;
|
592 |
+
height: 0;
|
593 |
+
clear: both;
|
594 |
+
visibility: hidden;
|
595 |
+
}
|
596 |
+
.clearfix {display: inline-block;} /* for IE/Mac */
|
597 |
+
.agroup h3 {margin: 1em 0 0em; color:#666; }
|
598 |
+
.agroup, .titlegroup {padding-top: 15px; margin-bottom: 15px;}
|
599 |
+
.sdf-admin .row.titlegroup, .sdf-admin .wpu-group+.row {margin-right: 0; margin-left: 0;}
|
600 |
+
.agroup label, .titlegroup label { font-weight:bold; cursor:auto; float:left; width:200px; }
|
601 |
+
.titlegroup h3 { color:#666; }
|
602 |
+
|
603 |
+
.agroup .aright { float:right;}
|
604 |
+
.sub-group p { margin: 0 0 1em;}
|
605 |
+
.sub-group {padding:10px;}
|
606 |
+
|
607 |
+
#custom-layout label { cursor:default; }
|
608 |
+
h2.wpu-logo { font-size:23px; font-weight:bold; color:#777;padding:10px 15px 10px 0; margin:0; height: 81px;}
|
609 |
+
.wpu-logo { background:url(../img/logos/sdf_logo.png) 0 10px no-repeat; padding-left:220px !important; }
|
610 |
+
.sub-header { font-size:16px; font-weight:bold; border-bottom:#ccc 1px solid; display:block;}
|
611 |
+
|
612 |
+
.sdf-admin .ui-tabs .ui-tabs-nav { border-bottom:#ccc 1px solid;}
|
613 |
+
.ui-tabs { padding:0 !important; }
|
614 |
+
|
615 |
+
.wpu-slider-icon {height:64px; width:64px; float: left;margin:0 8px 0 0;background:url(../img/admin/global/sdf_slider_icon.png) 0 0 no-repeat; }
|
616 |
+
.wpu-silo-icon {height:64px; width:64px; float: left;margin:0 8px 0 0;background:url(../img/admin/global/sdf_silo_builder_icon.png) 0 0 no-repeat; }
|
617 |
+
.wpu-font-icon {height:64px; width:64px; float: left;margin:0 8px 0 0;background:url(../img/admin/global/sdf_styles_icon.png) 0 0 no-repeat; }
|
618 |
+
.wpu-short-code-icon {height:64px; width:64px; float: left;margin:0 8px 0 0;background:url(../img/admin/global/sdf_shortcode_generator.png) 0 0 no-repeat; }
|
619 |
+
.wpu-layout-icon {height:64px; width:64px; float: left;margin:0 8px 0 0;background:url(../img/admin/global/sdf_layout_icon.png) 0 0 no-repeat; }
|
620 |
+
.wpu-header-icon {height:64px; width:64px; float: left;margin:0 8px 0 0;background:url(../img/admin/global/sdf_header_structure_icon.png) 0 0 no-repeat; }
|
621 |
+
.wpu-footer-icon {height:64px; width:64px; float: left;margin:0 8px 0 0;background:url(../img/admin/global/sdf_footer_icon.png) 0 0 no-repeat; }
|
622 |
+
.wpu-settings-icon {height:64px; width:64px; float: left;margin:0 8px 0 0;background:url(../img/admin/global/sdf_global_icon.png) 0 0 no-repeat; }
|
623 |
+
|
624 |
+
#icon-wp-ultimate {margin:0 8px 0 0; background:url(../img/admin/wpu-logo.png) 0 0 no-repeat; width:59px; height:26px; }
|
625 |
+
|
626 |
+
input.button-primary { padding:5px 8px; }
|
627 |
+
.wpu-error { clear:left; }
|
628 |
+
|
629 |
+
.titlegroup > div > h3 {
|
630 |
+
font-size: 18px !important;
|
631 |
+
line-height: 24px;
|
632 |
+
margin: 0;
|
633 |
+
}
|
634 |
+
.titlegroup > div > h3 small { font-size:15px; font-weight:normal; line-height: 20px; margin: 5px 0 0;}
|
635 |
+
|
636 |
+
/* Theme UI */
|
637 |
+
|
638 |
+
.wpu-meta-title {line-height:1.7; display:block;font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; font-size:20px; font-weight:bold; color:#666; margin:0;}
|
639 |
+
.sdf-meta-wrap .sdf-layout { background:url(../img/admin/page_layout.png) 0 0 no-repeat; padding-left:40px; }
|
640 |
+
.sdf-meta-wrap .wpu-title-settings { background:url(../img/admin/page_title.png) 0 0 no-repeat; padding-left:35px; }
|
641 |
+
.sdf-meta-wrap .sdf-settings { background:url(../img/admin/page_settings.png) 0 0 no-repeat; padding-left:40px; }
|
642 |
+
.sdf-meta-wrap .wpu-navigation { background:url(../img/admin/page_navigation.png) 0 0 no-repeat; padding-left:40px; }
|
643 |
+
.sdf-meta-wrap .sdf-footer { background:url(../img/admin/page_footer.png) 0 0 no-repeat; padding-left:40px; }
|
644 |
+
.sdf-meta-wrap .wpu-slider-ico { background:url(../img/admin/page_slider.png) 0 0 no-repeat; padding-left:35px; }
|
645 |
+
.sdf-meta-wrap p { font-size:13px !important; }
|
646 |
+
.sdf-meta-wrap em { font-size:11px; }
|
647 |
+
.wpu-meta-title em, .wpu-meta-inner-title em { font-size:13px; font-weight:normal; color:#373737; }
|
648 |
+
.sdf-meta-wrap { font-size:13px; }
|
649 |
+
.sdf-admin-toolbar { font-size:12px; float: right; color:#777777; font-weight: normal; }
|
650 |
+
.sdf-admin-toolbar li { margin: 0; }
|
651 |
+
.sdf-admin-toolbar li + li { border-left: 1px solid #cccccc; }
|
652 |
+
.sdf-admin-toolbar a { text-decoration: none; color:#777777; }
|
653 |
+
.sdf-admin-toolbar a:hover,
|
654 |
+
.sdf-admin-toolbar a:focus,
|
655 |
+
.sdf-admin-toolbar a:active { text-decoration: underline; color:#777777; }
|
656 |
+
|
657 |
+
/*.wpu-remove:hover { background-position:0 -26px ; }
|
658 |
+
.wpu-media-upload { background:transparent url('../img/admin/upload_button.gif') 0 0 no-repeat; width:118px; height:27px; outline:none; border:none !important; cursor:pointer; display:block; text-indent:-999px; overflow:hidden;}*/
|
659 |
+
|
660 |
+
input.wpu-media-upload { background-color:transparent; }
|
661 |
+
.wpu-meta-row .odd{background:#ddd; }
|
662 |
+
.wpu-meta-row div { overflow:hidden;}
|
663 |
+
.wpu-meta-inner-title {line-height:1.7; display:block;font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; font-size:16px; font-weight:bold; color:#222222; }
|
664 |
+
.wpu-meta-row p { margin:10px 15px 5px;}
|
665 |
+
.wpu-meta-row .wpu-display { display:block; width:25%; float:left; }
|
666 |
+
.wpu-meta-row .wpu-indent { margin:5px 25px; vertical-align:top; }
|
667 |
+
|
668 |
+
.wpu-sub-indent{ margin:5px 100px; vertical-align:top; border:#ccc 1px solid; padding:5px; }
|
669 |
+
|
670 |
+
.wpu-tbl .none { border-bottom: #D9D9D9 1px solid !important; }
|
671 |
+
.wpu-sub-table td, .wpu-sub-table .midfirst{ border:none; }
|
672 |
+
|
673 |
+
#wpu-slider-settings .wpu-use-global { width:280px; font-size:14px; }
|
674 |
+
#wpu-slider-settings .wpu-use-global select { font-weight:normal; margin-top:5px; }
|
675 |
+
.wpu-ads-meta .wpu-use-global{ width:330px; font-size:14px; }
|
676 |
+
.wpu-ads-meta .wpu-use-global select { font-weight:normal; margin-top:5px; }
|
677 |
+
/*
|
678 |
+
* jQuery UI Slider 1.8.10
|
679 |
+
*
|
680 |
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
681 |
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
682 |
+
* http://jquery.org/license
|
683 |
+
*
|
684 |
+
* http://docs.jquery.com/UI/Slider#theming
|
685 |
+
*/
|
686 |
+
#custom-layout .ui-slider { text-align: left; }
|
687 |
+
#custom-layout .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
|
688 |
+
#custom-layout .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block;
|
689 |
+
background-color: #ed941e;
|
690 |
+
height: 100%;
|
691 |
+
}
|
692 |
+
|
693 |
+
#custom-layout .ui-slider-horizontal { height: .8em; }
|
694 |
+
#custom-layout .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
|
695 |
+
#custom-layout .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
|
696 |
+
#custom-layout .ui-slider-horizontal .ui-slider-range-min { left: 0; }
|
697 |
+
#custom-layout .ui-slider-horizontal .ui-slider-range-max { right: 0; }
|
698 |
+
|
699 |
+
#custom-layout .ui-slider-vertical { width: .8em; height: 100px; }
|
700 |
+
#custom-layout .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
|
701 |
+
#custom-layout .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
|
702 |
+
#custom-layout .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
|
703 |
+
#custom-layout .ui-slider-vertical .ui-slider-range-max { top: 0; }
|
704 |
+
#custom-layout .ui-slider .ui-slider-handle {
|
705 |
+
background-color: #ed941e;
|
706 |
+
border-radius: 50% 50% 50% 50%;
|
707 |
+
-moz-border-radius: 50% 50% 50% 50%;
|
708 |
+
-webkit-border-radius: 50% 50% 50% 50%;
|
709 |
+
cursor: pointer;
|
710 |
+
height: 24px;
|
711 |
+
margin-left: -12px;
|
712 |
+
position: absolute;
|
713 |
+
top: -6px;
|
714 |
+
transition: background 0.25s ease 0s;
|
715 |
+
width: 24px;
|
716 |
+
z-index: 2;
|
717 |
+
}
|
718 |
+
#custom-layout .ui-slider-handle:hover, .ui-slider-handle:focus {
|
719 |
+
background-color: #F5B467;
|
720 |
+
outline: medium none;
|
721 |
+
}
|
722 |
+
#custom-layout .ui-slider-handle:active {
|
723 |
+
background-color: #16A085;
|
724 |
+
}
|
725 |
+
#custom-layout .ui-widget-content {
|
726 |
+
background-color: #D9DBDD;
|
727 |
+
border-radius: 6px;
|
728 |
+
-moz-border-radius: 6px;
|
729 |
+
-webkit-border-radius: 6px;
|
730 |
+
}
|
731 |
+
#slider-layout { position:absolute; left:27px; right:27px; top:78px; height:30px; width:646px; background:;}
|
732 |
+
|
733 |
+
/* Component containers
|
734 |
+
----------------------------------*/
|
735 |
+
#custom-layout {
|
736 |
+
margin:0;
|
737 |
+
overflow:hidden;
|
738 |
+
position:relative;
|
739 |
+
border-radius: 10px;
|
740 |
+
-moz-border-radius: 10px;
|
741 |
+
-webkit-border-radius: 10px;
|
742 |
+
padding: 15px;
|
743 |
+
background:#f7f7f7;
|
744 |
+
width:700px;
|
745 |
+
height:110px;
|
746 |
+
}
|
747 |
+
|
748 |
+
#custom-layout label { font-size:18px; margin:3px 10px; }
|
749 |
+
#custom-layout #custom-px-box { list-style:none; margin:0; padding:0; position:absolute; top:15px; left:300px; }
|
750 |
+
#custom-layout #custom-px-box li { width:120px; float:left; text-align:center; font-size:14px; font-weight:bold; margin:0 5px; background-color: #D9DBDD; border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; }
|
751 |
+
#custom-layout input[type="text"], #custom-layout input { background:none; border:none;width:100px; line-height:1.5;}
|
752 |
+
|
753 |
+
#wpu-page-layout #custom-layout { margin:0; }
|
754 |
+
|
755 |
+
#sdf_theme_settings_page .ui-widget-content {}
|
756 |
+
|
757 |
+
textarea.sdf-image-caption {
|
758 |
+
height: 100px;
|
759 |
+
}
|
760 |
+
.sdf-image-preview {
|
761 |
+
width: 226px;
|
762 |
+
}
|
763 |
+
|
764 |
+
/* Component containers
|
765 |
+
----------------------------------*/
|
766 |
+
|
767 |
+
.sdf-admin .sortable {position: relative; cursor:move;}
|
768 |
+
.sdf-admin .sortable .ui-icon { position:absolute; left:0; top:15px;}
|
769 |
+
|
770 |
+
.sdf-admin textarea.wpu-admin-large{
|
771 |
+
width: 95%;
|
772 |
+
height: 200px;
|
773 |
+
}
|
774 |
+
.sdf_toggle .btn{margin-right:0;}
|
775 |
+
/* File Input */
|
776 |
+
.btn-file {
|
777 |
+
position: relative;
|
778 |
+
overflow: hidden;
|
779 |
+
}
|
780 |
+
.btn-file input[type=file] {
|
781 |
+
position: absolute;
|
782 |
+
top: 0;
|
783 |
+
right: 0;
|
784 |
+
min-width: 100%;
|
785 |
+
min-height: 100%;
|
786 |
+
font-size: 999px;
|
787 |
+
text-align: right;
|
788 |
+
filter: alpha(opacity=0);
|
789 |
+
opacity: 0;
|
790 |
+
background: red;
|
791 |
+
cursor: inherit;
|
792 |
+
display: block;
|
793 |
+
}
|
794 |
+
/* Admin Select */
|
795 |
+
.wp-admin select.form-control {
|
796 |
+
height: 34px;
|
797 |
+
padding: 6px 12px;
|
798 |
+
}
|
799 |
+
i[data-toggle="tooltip"] {
|
800 |
+
line-height: 20px;
|
801 |
+
color: #999999;
|
802 |
+
}
|
803 |
+
.titlegroup i[data-toggle="tooltip"] {
|
804 |
+
line-height: 24px;
|
805 |
+
margin-left: 10px;
|
806 |
+
margin-right: 10px;
|
807 |
+
}
|
808 |
+
.sdf-admin [class*="wp-editor-wrap"] *,
|
809 |
+
.sdf-admin [class*="wp-editor-wrap"] *:before,
|
810 |
+
.sdf-admin [class*="wp-editor-wrap"] *:after {
|
811 |
+
-webkit-box-sizing: content-box;
|
812 |
+
-moz-box-sizing: content-box;
|
813 |
+
box-sizing: content-box;
|
814 |
+
}
|
815 |
+
.panel-heading a:focus
|
816 |
+
{ outline: none; }
|
817 |
+
.sdf-admin .panel + .panel {
|
818 |
+
overflow: visible;
|
819 |
+
}
|
820 |
+
.sdf-admin .panel-heading {
|
821 |
+
padding: 5px 15px;
|
822 |
+
}
|
823 |
+
/*
|
824 |
+
* Callouts
|
825 |
+
*
|
826 |
+
*/
|
827 |
+
|
828 |
+
/* Common styles for all types */
|
829 |
+
.bs-callout {
|
830 |
+
margin: 0 0 40px;
|
831 |
+
padding: 15px 30px 15px 15px;
|
832 |
+
border-left: 5px solid #eee;
|
833 |
+
}
|
834 |
+
.bs-callout h4 {
|
835 |
+
margin-top: 0;
|
836 |
+
}
|
837 |
+
.bs-callout p:last-child {
|
838 |
+
margin-bottom: 0;
|
839 |
+
}
|
840 |
+
.bs-callout code,
|
841 |
+
.bs-callout .highlight {
|
842 |
+
background-color: #fff;
|
843 |
+
}
|
844 |
+
|
845 |
+
/* Variations */
|
846 |
+
.bs-callout-danger {
|
847 |
+
background-color: #fcf2f2;
|
848 |
+
border-color: #dFb5b4;
|
849 |
+
}
|
850 |
+
.bs-callout-warning {
|
851 |
+
background-color: #fefbed;
|
852 |
+
border-color: #f1e7bc;
|
853 |
+
}
|
854 |
+
.bs-callout-info {
|
855 |
+
background-color: #f0f7fd;
|
856 |
+
border-color: #d0e3f0;
|
857 |
+
}
|
858 |
+
.bs-callout-grey {
|
859 |
+
background-color: #f6f6f6;
|
860 |
+
border-color: #E3E3E3;
|
861 |
+
}
|
862 |
+
|
863 |
+
/* Alert */
|
864 |
+
.sdf-admin .alert.alert-sdf {
|
865 |
+
color: #3f3f3f;
|
866 |
+
background-color: #f5f5f5;
|
867 |
+
border-color: #e3e3e3;
|
868 |
+
margin-bottom: 10px;
|
869 |
+
padding: 10px 15px;
|
870 |
+
}
|
871 |
+
|
872 |
+
.alert-sdf hr {
|
873 |
+
border-top-color: #d3d3d3;
|
874 |
+
}
|
875 |
+
|
876 |
+
.alert-sdf .alert-link {
|
877 |
+
color: #3f3f3f;
|
878 |
+
}
|
879 |
+
|
880 |
+
/* Forms */
|
881 |
+
.form-horizontal .form-inline .form-group {
|
882 |
+
margin-left: 0;
|
883 |
+
margin-right: 0;
|
884 |
+
}
|
885 |
+
|
886 |
+
/* Preset Colors */
|
887 |
+
.sdf-admin .dropdown-menu.preset_colors > li > a {
|
888 |
+
white-space:normal;
|
889 |
+
}
|
890 |
+
.sdf-admin .dropdown-menu.preset_colors > li > a:hover, .sdf-admin .dropdown-menu.preset_colors > li > a:focus {
|
891 |
+
background-color: #f7f7f7;
|
892 |
+
color: #222222;
|
893 |
+
text-decoration: none;
|
894 |
+
}
|
895 |
+
.preset_colors .preset-swatch {
|
896 |
+
background: url(../img/colorpicker/jquery.minicolors.png) -80px 0;
|
897 |
+
border: 1px solid #CCCCCC;
|
898 |
+
cursor: text;
|
899 |
+
display: block;
|
900 |
+
margin: -3px 10px 0 -15px;
|
901 |
+
padding: 0;
|
902 |
+
position: relative;
|
903 |
+
vertical-align: middle;
|
904 |
+
width:27px;
|
905 |
+
height:26px;
|
906 |
+
border-radius: 3px;
|
907 |
+
float: left;
|
908 |
+
}
|
909 |
+
.preset_colors .preset-swatch-color {
|
910 |
+
bottom: 0;
|
911 |
+
left: 0;
|
912 |
+
position: absolute;
|
913 |
+
right: 0;
|
914 |
+
top: 0;
|
915 |
+
}
|
916 |
+
|
917 |
+
.sdf-meta-wrap .control-label,.sdf-meta-wrap .radio,.sdf-meta-wrap .checkbox,.sdf-meta-wrap .radio-inline,.sdf-meta-wrap .checkbox-inline {
|
918 |
+
padding-top: 7px;
|
919 |
+
margin-top: 0;
|
920 |
+
margin-bottom: 0;
|
921 |
+
}
|
922 |
+
.sdf-meta-wrap .form-group {
|
923 |
+
margin-right: -15px;
|
924 |
+
margin-left: -15px;
|
925 |
+
}
|
926 |
+
.sdf-meta-wrap .form-group:before,.sdf-meta-wrap .form-group:after {
|
927 |
+
display: table;
|
928 |
+
content: " ";
|
929 |
+
}
|
930 |
+
.sdf-meta-wrap .form-group:after {
|
931 |
+
clear: both;
|
932 |
+
}
|
933 |
+
.sdf-meta-wrap .form-group:before,.sdf-meta-wrap .form-group:after {
|
934 |
+
display: table;
|
935 |
+
content: " ";
|
936 |
+
}
|
937 |
+
.sdf-meta-wrap .form-group:after {
|
938 |
+
clear: both;
|
939 |
+
}
|
940 |
+
|
941 |
+
@media (min-width: 768px) {
|
942 |
+
.sdf-meta-wrap .control-label {
|
943 |
+
text-align: right;
|
944 |
+
}
|
945 |
+
}
|
946 |
+
.sdf-admin .panel-body [id*="-custom-bg"] .form-group:last-child {
|
947 |
+
margin-bottom: 15px;
|
948 |
+
}
|
949 |
+
|
950 |
+
/* SDF Builder Styles */
|
951 |
+
.clr { clear: both; }
|
952 |
+
.dn { display: none; }
|
953 |
+
.sdf-wrap { margin: 0 0 25px; }
|
954 |
+
.sdf-builder-switch { margin: 0 0 5px !important; }
|
955 |
+
.sdf-builder-switch .icon { width: 16px; height: 16px; display: inline-block; background: url(../img/sdf-icons/arrows.png) no-repeat 0 -112px; position: relative; top: 8px; left: 4px; }
|
956 |
+
.sdf-builder-switch.active .icon { background-position: 0 -4px; }
|
957 |
+
.sdf-builder-box .button { margin: 10px 10px 5px 0; }
|
958 |
+
.sdf-builder-box .button .icon, .sdf-add-element-box .button .icon { width: 24px; height: 24px; display: inline-block; position: relative; left: -2px; margin: -8px -1px; background-image: url(../img/sdf-icons/element-icon.png); }
|
959 |
+
.sdf-add-element-button .icon, .sdf-add-row-button .icon { background: url(../img/sdf-icons/plus-icon.png) no-repeat 0 3px !important; width: 16px !important; }
|
960 |
+
.sdf-builder-box { display: none; }
|
961 |
+
.sdf-buttons.pinned { position: fixed; top: 30px; z-index: 2; }
|
962 |
+
.sdf-dialog { z-index: 2000000 !important; background: white; }
|
963 |
+
.sdf-dialog .ui-dialog-content { overflow: hidden !important; padding: 10px !important; }
|
964 |
+
.sdf-dialog .ui-dialog-title { color: black; font-size: 22px; line-height: 24px; }
|
965 |
+
.sdf-dialog .ui-dialog-titlebar-close, .sdf-row-delete, .sdf-col-delete { background: url(../img/sdf-icons/x-icon.png) no-repeat 0 0; border: none; cursor: pointer; }
|
966 |
+
.media-modal { z-index: 16000000; }
|
967 |
+
.sdf-dialog .defaultSkin table.mceLayout { margin-bottom: 10px; }
|
968 |
+
.sdf-add-element-shade, .sdf-loader-shade { background: rgba(0,0,0,0.3); position: absolute; top: 0; z-index: 20000; }
|
969 |
+
.sdf-loader-shade { background: rgba(250,250,250,0.3) url(../img/sdf-icons/ajax-loader.gif) no-repeat center center; }
|
970 |
+
.sdf-add-element-box { background: white !important; position: absolute; top: 100px; left: 50%; width: 624px; padding: 10px; }
|
971 |
+
.sdf-add-element-box .box-title { margin: 0; padding: 0 0 10px; font-size: 25px; }
|
972 |
+
.sdf-add-element-box .item { display: none; }
|
973 |
+
.sdf-add-element-box .item.sdf-add-element-selection { display: block; }
|
974 |
+
.sdf-add-element-box .sdf-button { margin: 4px 4px 4px 0; width: 144px; height: 34px; padding: 5px; text-align: left;}
|
975 |
+
#tabs-button, #accordion-button, #facebook-like-button, #tweetme-button, #google-plus-button, #pinterest-button { display: none }
|
976 |
+
.sdf-add-element-box .buttons-set { display: none; margin-top: 20px; }
|
977 |
+
.sdf-add-element-box .back { float: left; text-align: center; }
|
978 |
+
.sdf-add-element-box .update { float: right; margin-right: 0; text-align: center; }
|
979 |
+
.sdf-add-element-box label { display: block; margin: 10px 0 0; color: grey; cursor: default; }
|
980 |
+
.sdf-add-element-box .sdf-input, .sdf-add-element-box .sdf-select, .sdf-add-element-box .sdf-textarea, .sdf-add-element-box .input-group { padding: 5px; height: 30px; width: 604px; }
|
981 |
+
.sdf-wpeditor { margin-right: 10px; height: 200px; }
|
982 |
+
.sdf-add-element-box .input-group { padding: 0;}
|
983 |
+
.sdf-add-element-box .sdf-textarea { height: 150px;}
|
984 |
+
.sdf-add-element-box .sdf-dialog-close { position: absolute; top: 15px; right: 10px; }
|
985 |
+
.sdf-add-element-box .wp-editor-wrap { margin: 10px 0 0; }
|
986 |
+
.sdf-row { display: block; margin: 10px 0; border: 1px solid #ddd; background: #D8D8D8; padding: 5px; border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; position: relative; }
|
987 |
+
.sdf-row.sdf-hero { background: #bbb; }
|
988 |
+
.sdf-row.sdf-hero .hero-label { color: white; display: inline-block; position: relative; top: 2px; left: 4px; font-size: 11px; text-transform: uppercase;}
|
989 |
+
#original-sdf-row { display: none; }
|
990 |
+
.sdf-layout-switch { float: left; margin: 5px; border: none; width: 24px; height: 24px; background: url(../img/sdf-icons/cols-icon.png) no-repeat center center; padding: 0; }
|
991 |
+
.sdf-row-sorter { padding: 17px; float: left; cursor: move; background: url(../img/sdf-icons/drag-icon.png) no-repeat center center; }
|
992 |
+
.sdf-row-layout { position: relative; width: 85%; height: 30px; float: left; }
|
993 |
+
.sdf-row-layout-switch { margin: 0 2px; }
|
994 |
+
.sdf-row-layout .inner { display: none; position: absolute; top: 0; left: 35px; }
|
995 |
+
.sdf-row-layout:hover .inner { display: block !important; }
|
996 |
+
.sdf-row-layout .layout-button { padding: 0 2px; background: white; color: #444; border: none; cursor: pointer; margin: 0 0 2px 4px; font-size: 12px; line-height: 15px;}
|
997 |
+
.sdf-row-layout .layout-button:hover { background: #888; color: white; }
|
998 |
+
#sdf-custom-layout-button { margin-left: 0; }
|
999 |
+
.sdf-row-content { margin: 0 4px; padding: 8px 0 4px; }
|
1000 |
+
.sdf-col { float: left; box-sizing: border-box; -moz-box-sizing: border-box; position: relative; z-index: 1; margin: 0 10px 0 0; text-shadow: none; cursor: default; min-height: 88px; background: #F1F1F1; border: 1px solid #bbb;}
|
1001 |
+
.sdf-col.last { margin-right: 0; }
|
1002 |
+
.sdf-col .sdf-add-element { position: absolute; top: 50%; right: 1px; margin-top: -8px; width: 16px; height: 16px; background: url(../img/sdf-icons/plus-icon.png) no-repeat center center; cursor: pointer; }
|
1003 |
+
.sdf-col-content:empty + .sdf-add-element { left: 0; width: 100%; text-align: center; }
|
1004 |
+
.sdf-col.selected { border-color: #999; }
|
1005 |
+
.sdf-col-content { right: 0; top: 0; width: 100%; height: 100%; }
|
1006 |
+
.sdf-col-label { position: absolute; right: 0; bottom: 0; font-size: 12px; line-height: 12px; background: #fa0; color: white; padding: 1px 2px 0; -moz-border-radius: 0 0 3px 0; }
|
1007 |
+
.sdf-col-edit { top: 2px; right: 24px; }
|
1008 |
+
.sdf-col-delete { position: absolute; top: 2px; right: 3px; width: 16px; height: 16px;}
|
1009 |
+
.sdf-custom-layout-switch { display: inline-block; }
|
1010 |
+
.sdf-custom-layout-box { background: white; position: absolute; }
|
1011 |
+
.sdf-custom-layout-box input.error-format { border-color: red; }
|
1012 |
+
.sdf-custom-layout-box .mask { margin: 10px 0 0; color: #444; }
|
1013 |
+
.sdf-custom-layout-box .error { display: none; margin: 2px 0 0; color: red; font-weight: bold; font-size: 11px; }
|
1014 |
+
.sdf-element { overflow: hidden; background: white; border: 1px solid #ccc; margin: 5px; position: relative; text-align: left; min-height: 73px;}
|
1015 |
+
.sdf-element.ui-sortable-helper { opacity: 0.7; border-color: #888; }
|
1016 |
+
.sdf-element-content { position: relative; }
|
1017 |
+
.sdf-element-content .inner { font-size: 11px; line-height: 11px; }
|
1018 |
+
.sdf-element-content .inner label { font-weight: bold; vertical-align: baseline; display: inline-block; margin: 0 4px 0 0; color: #fa0; cursor: default; font-size: 10px; text-transform: uppercase; }
|
1019 |
+
.sdf-element-content .inner label, .sdf-element-content .inner > span, .sdf-element-content .inner span + br { display: none; }
|
1020 |
+
.sdf-element-content .inner img.sdf-attr, .sdf-element-content .inner span.content { display: inline-block; }
|
1021 |
+
.sdf-element-placeholder { border: 8px solid #bbb; border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; }
|
1022 |
+
.sdf-element-text-block { background: white; display: block;}
|
1023 |
+
.sdf-element-content .inner > img { max-width: 100%; max-height: 100%; }
|
1024 |
+
.sdf-actions { position: absolute; top: 0; right: 0; display: none; }
|
1025 |
+
.sdf-element .sdf-actions { padding: 0 0 0 5px; box-shadow: -2px 2px 4px #bbb; background: #f2f2f2; color: #999; z-index: 1; }
|
1026 |
+
.sdf-element-separator { min-height: 17px; background: #ddd; margin: 5px; border: none;}
|
1027 |
+
.sdf-element-separator .sdf-actions { display: block;}
|
1028 |
+
.sdf-icon { display: inline-block; width: 16px; height: 16px; cursor: pointer; margin: 0 0 0 2px; position: relative; top: 2px; right: 2px;}
|
1029 |
+
.sdf-element-type { width: auto; font-size: 10px; line-height: 12px; position: absolute; left: 0; bottom: 0; background: #bbb; color: white; padding: 2px 3px 1px; text-transform: uppercase; margin: 0 4px 0 0;}
|
1030 |
+
.sdf-delete { background: url(../img/sdf-icons/x-icon.png); }
|
1031 |
+
.sdf-edit { background: url(../img/sdf-icons/pencil-icon.png); }
|
1032 |
+
.sdf-col-edit { top: 20px; right: -15px }
|
1033 |
+
.sdf-clone { background: url(../img/sdf-icons/clone-icon.png); }
|
1034 |
+
.sdf-icon:hover { opacity: 0.9; }
|
1035 |
+
.sdf-row:hover .sdf-row-actions, .sdf-col:hover .sdf-col-actions, .sdf-element:hover .sdf-element-actions { display: block; }
|
1036 |
+
.sdf-templates-list-wrap { display: inline-block; position: relative; }
|
1037 |
+
.sdf-templates-list-wrap:hover .sdf-templates-list-box { display: block; position: absolute; padding: 5px; background: white; border: 1px solid #ddd; box-shadow: 0 10px 20px #ddd; z-index: 3; margin: -5px 0 0;}
|
1038 |
+
.sdf-template-load[disabled] + .sdf-templates-list-box { display: none; }
|
1039 |
+
.sdf-templates-list, .sdf-templates-list-item { margin: 0; }
|
1040 |
+
.sdf-templates-list-item .sdf-label { width: 94px; height: 17px; display: inline-block; cursor: pointer; }
|
1041 |
+
.sdf-templates-list-item .sdf-delete { float: right; }
|
1042 |
+
.sdf-template-load .sdf-icon { background: url(../img/sdf-icons/template-icon.png); }
|
1043 |
+
.sdf-template-save .sdf-icon { background: url(../img/sdf-icons/save-icon.png); }
|
1044 |
+
|
1045 |
+
/* fix for image upload modal box */
|
1046 |
+
#TB_window { z-index: 100002; }
|
1047 |
+
|
1048 |
+
/* SEO Ultimate */
|
1049 |
+
.postmeta-seo-icon {position: absolute; top: 6px; left: 10px}
|
1050 |
+
.form-control.nowidth-input { width: auto; min-width: 0; display: inline; margin: 0 5px;}
|
plugin/sdf/sdf.wp-color.css
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
2 |
+
background: none repeat scroll 0 0 #f9f9f9;
|
3 |
+
}
|
plugin/sdf/sdf.wp.css
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
html{background:#ffffff}
|
2 |
+
ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
|
3 |
+
border-right-color: #FFFFFF;
|
4 |
+
}
|
plugin/seo_ultimate_banners_jsonp.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
sdfbanners({
|
2 |
+
"enabled":true,
|
3 |
+
"slides": [
|
4 |
+
{"banner_img":"https://s3.amazonaws.com/sdfimages/seoultimatebanner/02_1.png", "banner_link":"http://www.seodesignframework.com", "slide_cap":"<h3>Download Jeffrey’s Brain</h3><p>Get Equipped for Success - Tips from Our Founder. Download: 20 SEO Tips, SEO for Large Websites and the Organic SEO EBook today.</p>", "slide_link":"http://www.seodesignframework.com/ebooks/"},
|
5 |
+
{"banner_img":"https://s3.amazonaws.com/sdfimages/seoultimatebanner/01_1.png", "banner_link":"http://www.seodesignframework.com/features/", "slide_cap":"<h3>Got Design?</h3><p>Unleash Your Best Design Concepts with Drag-n-Drop Controls that Give You the Power to Implement Complex Designs Quickly and Easily</p>", "slide_link":"http://www.seodesignframework.com/sdf-drag-and-drop-page-builder/"},
|
6 |
+
{"banner_img":"https://s3.amazonaws.com/sdfimages/seoultimatebanner/06.png", "banner_link":"http://www.seodesignframework.com/sdf-overview/", "slide_cap":"<h3>Silos Made Easy</h3><p>Deploy Perfect Website Silo Architecture Quickly and Easily with the SEO Design Framework.</p>", "slide_link":"http://www.seodesignframework.com/website-silo-architecture/"},
|
7 |
+
{"banner_img":"https://s3.amazonaws.com/sdfimages/seoultimatebanner/07.png", "banner_link":"http://www.seodesignframework.com/seo-design-solutions-launches-the-seo-design-framework/", "slide_cap":"<h3>What, No Control?</h3><p>Become Master of your Blog with Page-Level Controls that Liberate Designs and Crush Limitations of other Themes and Frameworks.</p>", "slide_link":"http://www.seodesignframework.com/page-level-controls/"}
|
8 |
+
]
|
9 |
+
})
|
10 |
+
|
11 |
+
|
12 |
+
|
13 |
+
|
14 |
+
|
15 |
+
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: SEO Design Solutions, JohnLamansky
|
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.5
|
5 |
-
Tested up to: 3.
|
6 |
-
Stable tag: 7.6.
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, Open Graph, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
@@ -244,6 +244,10 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
244 |
|
245 |
== Changelog ==
|
246 |
|
|
|
|
|
|
|
|
|
247 |
= Version 7.6.1 (January 1, 2013) =
|
248 |
* Bugfix: Fixed a bug that prevented the "Dampener" column from appearing on the Deeplink Juggernaut Content Links tab
|
249 |
|
2 |
Contributors: SEO Design Solutions, JohnLamansky
|
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.5
|
5 |
+
Tested up to: 3.8.1
|
6 |
+
Stable tag: 7.6.2
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, Open Graph, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
244 |
|
245 |
== Changelog ==
|
246 |
|
247 |
+
= Version 7.6.2 (March 19, 2014) =
|
248 |
+
* Bugfix: Fixed PHP 5.3 Strict Errors/Notices
|
249 |
+
* Feature: Added Twitter Bootstrap Assets and updated Markup
|
250 |
+
|
251 |
= Version 7.6.1 (January 1, 2013) =
|
252 |
* Bugfix: Fixed a bug that prevented the "Dampener" column from appearing on the Deeplink Juggernaut Content Links tab
|
253 |
|
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 title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
-
Version: 7.6.
|
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.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -43,15 +43,15 @@ if (!defined('ABSPATH')) {
|
|
43 |
|
44 |
//The bare minimum version of WordPress required to run without generating a fatal error.
|
45 |
//SEO Ultimate will refuse to run if activated on a lower version of WP.
|
46 |
-
define('SU_MINIMUM_WP_VER', '3.
|
47 |
|
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.
|
52 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
53 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
54 |
-
define('SU_USER_AGENT', 'SeoUltimate/7.6.
|
55 |
|
56 |
/********** INCLUDES **********/
|
57 |
|
@@ -74,7 +74,7 @@ include 'modules/class.su-importmodule.php';
|
|
74 |
global $wp_version;
|
75 |
if (version_compare($wp_version, SU_MINIMUM_WP_VER, '>=')) {
|
76 |
global $seo_ultimate;
|
77 |
-
$seo_ultimate
|
78 |
} else {
|
79 |
add_action('admin_notices', 'su_wp_incompat_notice');
|
80 |
}
|
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 title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
|
6 |
+
Version: 7.6.2
|
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.2
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
43 |
|
44 |
//The bare minimum version of WordPress required to run without generating a fatal error.
|
45 |
//SEO Ultimate will refuse to run if activated on a lower version of WP.
|
46 |
+
define('SU_MINIMUM_WP_VER', '3.5');
|
47 |
|
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.2');
|
52 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
53 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
54 |
+
define('SU_USER_AGENT', 'SeoUltimate/7.6.2');
|
55 |
|
56 |
/********** INCLUDES **********/
|
57 |
|
74 |
global $wp_version;
|
75 |
if (version_compare($wp_version, SU_MINIMUM_WP_VER, '>=')) {
|
76 |
global $seo_ultimate;
|
77 |
+
$seo_ultimate = new SEO_Ultimate(__FILE__);
|
78 |
} else {
|
79 |
add_action('admin_notices', 'su_wp_incompat_notice');
|
80 |
}
|
translations/seo-ultimate-en_US.mo
ADDED
Binary file
|
translations/seo-ultimate-en_US.po
ADDED
@@ -0,0 +1,4406 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 SEO Ultimate
|
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.2\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2014-03-13 17:33+0100\n"
|
8 |
+
"PO-Revision-Date: 2014-03-13 17:34+0100\n"
|
9 |
+
"Last-Translator: \n"
|
10 |
+
"Language-Team: SEO Design Solutions <support@seodesignsolutions.com>\n"
|
11 |
+
"Language: en_US\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 1.6.4\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
18 |
+
"_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"
|
19 |
+
"X-Poedit-Basepath: ../\n"
|
20 |
+
"X-Textdomain-Support: yes\n"
|
21 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
22 |
+
"X-Poedit-SearchPath-0: .\n"
|
23 |
+
|
24 |
+
#: includes/jlfunctions/str.php:144 plugin/su-functions.php:77
|
25 |
+
#, php-format
|
26 |
+
msgid "%s and %s"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/jlfunctions/str.php:147 plugin/su-functions.php:80
|
30 |
+
msgid ", "
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/jlfunctions/str.php:148 plugin/su-functions.php:81
|
34 |
+
#, php-format
|
35 |
+
msgid "%s, and %s"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: includes/jlwp/functions.php:47
|
39 |
+
msgctxt "post format"
|
40 |
+
msgid "Format"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: includes/jlwp/functions.php:48
|
44 |
+
msgid "Post Format Archives"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: includes/jlwp/functions.php:89
|
48 |
+
msgid "backup your database"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: modules/404s/fofs-log.php:22
|
52 |
+
msgid "404 Monitor Log"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: modules/404s/fofs-log.php:23
|
56 |
+
msgid "Log"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: modules/404s/fofs-log.php:118 modules/class.su-module.php:1163
|
60 |
+
msgid "Actions"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: modules/404s/fofs-log.php:119
|
64 |
+
msgid "Hits"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: modules/404s/fofs-log.php:120
|
68 |
+
msgid "URL with 404 Error"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: modules/404s/fofs-log.php:121
|
72 |
+
msgid "Date of Most Recent Hit"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: modules/404s/fofs-log.php:122
|
76 |
+
msgid "Referers"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: modules/404s/fofs-log.php:123 modules/404s/fofs-log.php:227
|
80 |
+
msgid "User Agents"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: modules/404s/fofs-log.php:139
|
84 |
+
msgid ""
|
85 |
+
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
86 |
+
"Settings tab."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: modules/404s/fofs-log.php:146
|
90 |
+
msgid "The log entry was successfully deleted."
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: modules/404s/fofs-log.php:148
|
94 |
+
msgid "This log entry has already been deleted."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: modules/404s/fofs-log.php:157
|
98 |
+
msgid "The log was successfully cleared."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: modules/404s/fofs-log.php:161
|
102 |
+
msgid "No 404 errors in the log."
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: modules/404s/fofs-log.php:186
|
106 |
+
msgid "Open URL in new window (will not be logged)"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: modules/404s/fofs-log.php:187
|
110 |
+
msgid "Query Google for cached version of URL (opens in new window)"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: modules/404s/fofs-log.php:188
|
114 |
+
msgid "Remove this URL from the log"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: modules/404s/fofs-log.php:191
|
118 |
+
#, php-format
|
119 |
+
msgid "%s at %s"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: modules/404s/fofs-log.php:195
|
123 |
+
msgid "View list of referring URLs"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: modules/404s/fofs-log.php:196
|
127 |
+
msgid "View list of user agents"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: modules/404s/fofs-log.php:206
|
131 |
+
msgid "Referring URLs"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: modules/404s/fofs-log.php:207 modules/404s/fofs-log.php:228
|
135 |
+
msgid "Hide list"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: modules/404s/fofs-log.php:259
|
139 |
+
msgid "Are you sure you want to delete all 404 log entries?"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: modules/404s/fofs-log.php:261
|
143 |
+
msgid "Clear Log"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: modules/404s/fofs-settings.php:16
|
147 |
+
msgid "404 Monitor Settings"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: modules/404s/fofs-settings.php:17
|
151 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:43
|
152 |
+
#: modules/opengraph/opengraph.php:379 modules/titles/titles.php:41
|
153 |
+
msgid "Settings"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: modules/404s/fofs-settings.php:38
|
157 |
+
msgid "Continue monitoring for new 404 errors"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: modules/404s/fofs-settings.php:38
|
161 |
+
msgid "Monitoring Settings"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: modules/404s/fofs-settings.php:40
|
165 |
+
msgid "Only log these types of 404 errors:"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: modules/404s/fofs-settings.php:41
|
169 |
+
msgid "404s generated by search engine spiders"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: modules/404s/fofs-settings.php:42
|
173 |
+
msgid "404s with referring URLs"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: modules/404s/fofs-settings.php:43
|
177 |
+
msgid "Log Restrictions"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: modules/404s/fofs-settings.php:44
|
181 |
+
msgid "Maximum Log Entries"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: modules/404s/fofs-settings.php:45
|
185 |
+
msgid "URLs to Ignore"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: modules/404s/fofs-settings.php:45
|
189 |
+
msgid "(Use * as wildcard)"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: modules/404s/fofs.php:11 modules/404s/fofs.php:12
|
193 |
+
msgid "404 Monitor"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: modules/404s/fofs.php:37 modules/autolinks/autolinks.php:18
|
197 |
+
#: modules/canonical/canonical.php:223 modules/canonical/canonical.php:229
|
198 |
+
#: modules/files/files.php:158
|
199 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:326
|
200 |
+
#: modules/link-nofollow/link-nofollow.php:132 modules/linkbox/linkbox.php:128
|
201 |
+
#: modules/linkbox/linkbox.php:135 modules/meta/meta-descriptions.php:192
|
202 |
+
#: modules/meta/meta-keywords.php:178 modules/meta/meta-robots.php:52
|
203 |
+
#: modules/meta/webmaster-verify.php:95 modules/meta/webmaster-verify.php:101
|
204 |
+
#: modules/more-links/more-links.php:104 modules/more-links/more-links.php:111
|
205 |
+
#: modules/opengraph/opengraph.php:573
|
206 |
+
#: modules/rich-snippets/rich-snippets.php:412
|
207 |
+
#: modules/rich-snippets/rich-snippets.php:419
|
208 |
+
#: modules/settings/settings.php:63
|
209 |
+
#: modules/sharing-buttons/sharing-buttons.php:82
|
210 |
+
#: modules/sharing-buttons/sharing-buttons.php:88 modules/slugs/slugs.php:113
|
211 |
+
#: modules/slugs/slugs.php:121 modules/titles/titles.php:356
|
212 |
+
#: modules/user-code/user-code.php:99
|
213 |
+
msgid "Overview"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: modules/404s/fofs.php:38
|
217 |
+
msgid ""
|
218 |
+
"\n"
|
219 |
+
"<ul>\n"
|
220 |
+
"\t<li><strong>What it does:</strong> The 404 Monitor keeps track of non-"
|
221 |
+
"existent URLs that generated 404 errors. 404 errors are when a search engine "
|
222 |
+
"or visitor comes to a URL on your site but nothing exists at that URL.</li>\n"
|
223 |
+
"\t<li><strong>Why it helps:</strong> The 404 Monitor helps you spot 404 "
|
224 |
+
"errors; then you can take steps to correct them to reduce link-juice loss "
|
225 |
+
"from broken links.</li>\n"
|
226 |
+
"\t<li><strong>How to use it:</strong> Check the 404 Monitor occasionally for "
|
227 |
+
"errors. (A numeric bubble will appear next to the “404 Monitor” "
|
228 |
+
"item on the menu if there are any newly-logged URLs that you haven't seen "
|
229 |
+
"yet. These new URLs will also be highlighted green in the table.) If a 404 "
|
230 |
+
"error's referring URL is located on your site, try locating and fixing the "
|
231 |
+
"broken URL. If moved content was previously located at the requested URL, "
|
232 |
+
"try using a redirection plugin to point the old URL to the new one.</li>\n"
|
233 |
+
"</ul>\n"
|
234 |
+
"\n"
|
235 |
+
"<p>If there are no 404 errors in the log, this is good and means there's no "
|
236 |
+
"action required on your part.</p>\n"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: modules/404s/fofs.php:50
|
240 |
+
msgid "Log Help"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: modules/404s/fofs.php:51
|
244 |
+
msgid ""
|
245 |
+
"\n"
|
246 |
+
"<p>You can perform the following actions on each entry in the log:</p>\n"
|
247 |
+
"\n"
|
248 |
+
"<ul>\n"
|
249 |
+
"\t<li>Clicking the first icon will open the URL in a new window. This is "
|
250 |
+
"useful for testing whether or not a redirect is working.</li>\n"
|
251 |
+
"\t<li>Clicking the second icon will open Google's archived version of the "
|
252 |
+
"URL in a new window. This is useful for determining what content, if any, "
|
253 |
+
"used to be located at that URL.</li>\n"
|
254 |
+
"\t<li>Once you've taken care of a 404 error, you can click the third icon to "
|
255 |
+
"remove it from the list. The URL will reappear on the list if it triggers a "
|
256 |
+
"404 error in the future.</li>\n"
|
257 |
+
"\t<li>To view the list of the URLs by which visitors and/or search engines "
|
258 |
+
"reached this non-existent URL, click the scroll icon in the “"
|
259 |
+
"Referers” column.</li>\n"
|
260 |
+
"\t<li>To view the list of visitor browsers and search engine bots which "
|
261 |
+
"tried to access this non-existent URL, click the scroll icon in the “"
|
262 |
+
"User Agents” column.</li>\n"
|
263 |
+
"</ul>\n"
|
264 |
+
"\n"
|
265 |
+
"<p>The “Clear Log” button will erase all of entries in the log. "
|
266 |
+
"The log will remain empty until more 404 errors are logged.</p>\n"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: modules/404s/fofs.php:67 modules/linkbox/linkbox.php:129
|
270 |
+
#: modules/linkbox/linkbox.php:140
|
271 |
+
msgid "Settings Help"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: modules/404s/fofs.php:68
|
275 |
+
msgid ""
|
276 |
+
"\n"
|
277 |
+
"<p>The following options are available on the Settings tab:</p>\n"
|
278 |
+
"\n"
|
279 |
+
"<ul>\n"
|
280 |
+
"\t<li>\n"
|
281 |
+
"\t\t<strong>Monitoring Settings</strong>\n"
|
282 |
+
"\t\t<ul>\n"
|
283 |
+
"\t\t\t<li><strong>Continue monitoring for new 404 errors</strong> — If "
|
284 |
+
"disabled, 404 Monitor will keep existing 404 errors in the log but won't add "
|
285 |
+
"any new ones.</li>\n"
|
286 |
+
"\t\t</ul>\n"
|
287 |
+
"\t</li>\n"
|
288 |
+
"\t<li>\n"
|
289 |
+
"\t\t<strong>Log Restrictions</strong>\n"
|
290 |
+
"\t\t<ul>\n"
|
291 |
+
"\t\t\t<li><strong>Only log these types of 404 errors</strong> — Check "
|
292 |
+
"this option to log a 404 error <em>only</em> if it meets at least one of the "
|
293 |
+
"criteria you specify. If you don't enable any criteria, no 404 errors will "
|
294 |
+
"be logged.\n"
|
295 |
+
"\t\t\t\t<ul>\n"
|
296 |
+
"\t\t\t\t\t<li><strong>404s generated by search engine spiders</strong> "
|
297 |
+
"— When logging restriction is enabled, this option will make an "
|
298 |
+
"exception for 404 errors generated by one of the top search engines (Google, "
|
299 |
+
"Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).</li>\n"
|
300 |
+
"\t\t\t\t\t<li><strong>404s with referring URLs</strong> — When logging "
|
301 |
+
"restriction is enabled, this option will make an exception for 404 errors "
|
302 |
+
"generated by users who click a link on your site or another site first "
|
303 |
+
"before ending up at a 404 page on your site.</li>\n"
|
304 |
+
"\t\t\t\t</ul>\n"
|
305 |
+
"\t\t\t</li>\n"
|
306 |
+
"\t\t</ul>\n"
|
307 |
+
"\t</li>\n"
|
308 |
+
"\t<li><strong>Maximum Log Entries</strong> — Here you can set the "
|
309 |
+
"maximum number of log entries that 404 Monitor will keep at a time. Setting "
|
310 |
+
"this to a reasonable number will help keep database usage under control. If "
|
311 |
+
"you change this setting, it will take effect the next time a 404 is logged.</"
|
312 |
+
"li>\n"
|
313 |
+
"\t<li><strong>URLs to Ignore</strong> — URLs entered here will be "
|
314 |
+
"ignored whenever they generate 404 errors in the future. You can use "
|
315 |
+
"asterisks (*) as wildcards.</li>\n"
|
316 |
+
"</ul>\n"
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: modules/404s/fofs.php:96 modules/autolinks/autolinks.php:162
|
320 |
+
#: modules/files/files.php:179 modules/meta/meta-descriptions.php:224
|
321 |
+
#: modules/meta/meta-keywords.php:213 modules/meta/meta-robots.php:102
|
322 |
+
#: modules/rich-snippets/rich-snippets.php:413
|
323 |
+
#: modules/rich-snippets/rich-snippets.php:424 modules/slugs/slugs.php:115
|
324 |
+
#: modules/slugs/slugs.php:131 modules/titles/titles.php:479
|
325 |
+
#: modules/user-code/user-code.php:113
|
326 |
+
msgid "Troubleshooting"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: modules/404s/fofs.php:97
|
330 |
+
msgid ""
|
331 |
+
"\n"
|
332 |
+
"<p>404 Monitor doesn't appear to work? Take these notes into consideration:</"
|
333 |
+
"p>\n"
|
334 |
+
"\n"
|
335 |
+
"<ul>\n"
|
336 |
+
"\t<li>The 404 Monitor doesn't record 404 errors generated by logged-in users."
|
337 |
+
"</li>\n"
|
338 |
+
"\t<li>In order for the 404 Monitor to track 404 errors, you must have non-"
|
339 |
+
"default permalinks enabled under <a href='options-permalink.php' "
|
340 |
+
"target='_blank'>Settings ⇒ Permalinks</a>.</li>\n"
|
341 |
+
"\t<li>Some parts of your website may not be under WordPress's control; the "
|
342 |
+
"404 Monitor can't track 404 errors on non-WordPress website areas.</li>\n"
|
343 |
+
"</ul>\n"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: modules/author-links/author-links.php:1
|
347 |
+
msgid "Author Highlighter"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: modules/author-links/author-links.php:1
|
351 |
+
msgid ""
|
352 |
+
"In order for author highlighting to work, your authors with Google+ accounts "
|
353 |
+
"need to add their Google+ URLs to their profile page on this site. Why "
|
354 |
+
"don’t you start by adding your Google+ URL to <a href=\"profile.php"
|
355 |
+
"\">your profile</a>?"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: modules/author-links/author-links.php:1
|
359 |
+
msgid ""
|
360 |
+
"Since this site only has one <a href=\"users.php\">registered user</a> who "
|
361 |
+
"has written posts, Author Highlighter is providing that user’s Google+ "
|
362 |
+
"profile image to Google for it to use when any page on this WordPress site "
|
363 |
+
"appears in Google’s search result listings. If at some point you were "
|
364 |
+
"to add an additional user to this site and that user were to write some "
|
365 |
+
"posts, then additional options would show up in this section."
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: modules/author-links/author-links.php:1
|
369 |
+
msgid "(None)"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: modules/author-links/author-links.php:1
|
373 |
+
msgid "Author of Blog Homepage"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: modules/author-links/author-links.php:1
|
377 |
+
msgid "Author of Archive Pages"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: modules/autolinks/autolinks.php:11 modules/autolinks/autolinks.php:12
|
381 |
+
msgid "Deeplink Juggernaut"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: modules/autolinks/autolinks.php:19
|
385 |
+
msgid ""
|
386 |
+
"\n"
|
387 |
+
"<ul>\n"
|
388 |
+
"\t<li><strong>What it does:</strong> Deeplink Juggernaut lets you "
|
389 |
+
"automatically generate hyperlinks in your site’s content and footer.</"
|
390 |
+
"li>\n"
|
391 |
+
"\t<li><strong>Why it helps:</strong> Search engines use the anchor text of "
|
392 |
+
"hyperlinks to determine the topicality of the webpage to which the link "
|
393 |
+
"points. Deeplink Juggernaut lets you automatically generate hyperlinks to "
|
394 |
+
"various pages on your site, which can help increase the linked page’s "
|
395 |
+
"ranking for the term used in the anchor text.</li>\n"
|
396 |
+
"\t<li><strong>How to use it:</strong> The Content Links section lets you "
|
397 |
+
"automatically link words or phrases in your site’s content to a target "
|
398 |
+
"page of your choosing. The Footer Links section lets you add links in the "
|
399 |
+
"footer of your entire site or just a particular set of webpages.</li>\n"
|
400 |
+
"</ul>\n"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: modules/autolinks/autolinks.php:29
|
404 |
+
msgid "Content Links Tab"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: modules/autolinks/autolinks.php:30
|
408 |
+
msgid ""
|
409 |
+
"\n"
|
410 |
+
"<p>To add an autolink, fill in the fields and then click “Save Changes."
|
411 |
+
"” Once you do so, you can edit your new autolink or add another one.</"
|
412 |
+
"p>\n"
|
413 |
+
"\n"
|
414 |
+
"<ul>\n"
|
415 |
+
"\t<li><strong>Anchor Text</strong> — Deeplink Juggernaut will scan "
|
416 |
+
"your site’s content for the word or phrase you put in this box, and "
|
417 |
+
"then hyperlink instances of that word or phrase to the webpage or item you "
|
418 |
+
"specify in the Destination box. The Anchor Text should be a keyword that you "
|
419 |
+
"want the Destination page to rank for.</li>\n"
|
420 |
+
"\t<li><p><strong>Destination</strong> — This is the box where you "
|
421 |
+
"specify the webpage where you want the auto-generated hyperlinks to point.</"
|
422 |
+
"p>\n"
|
423 |
+
"\t\t<ul>\n"
|
424 |
+
"\t\t\t<li>To link to a post, page, attachment, category, tag, term, or "
|
425 |
+
"author on your site, just type in its name and then select it from the "
|
426 |
+
"dropdown.</li>\n"
|
427 |
+
"\t\t\t<li>To link to your blog homepage, just type in “home” and "
|
428 |
+
"select “Blog Homepage” from the dropdown.</li>\n"
|
429 |
+
"\t\t\t<li>To link to one of the aliased URLs you created with the Link Mask "
|
430 |
+
"Generator, just type in part of the original URL or alias URL and then "
|
431 |
+
"select the link mask from the dropdown.</li>\n"
|
432 |
+
"\t\t\t<li>To link to some other webpage, just type or paste in its URL in "
|
433 |
+
"the box.</li>\n"
|
434 |
+
"\t\t</ul>\n"
|
435 |
+
"\t</li>\n"
|
436 |
+
"\t<li><strong>Title Attribute</strong> — The link’s title "
|
437 |
+
"attribute is the text that will appear when the visitor’s mouse "
|
438 |
+
"pointer hovers over the link. Totally optional.</li>\n"
|
439 |
+
"\t<li><p><strong>Dampener:</strong> If the anchor text you specify occurs "
|
440 |
+
"many times throughout your site’s content, you may wish to reduce the "
|
441 |
+
"overall frequency with which the anchor text is hyperlinked. You can reduce "
|
442 |
+
"the autolinking frequency by a percentage with the Dampener field. For "
|
443 |
+
"example:</p>\n"
|
444 |
+
"\t\t<ul>\n"
|
445 |
+
"\t\t\t<li>0% dampening will have no effect.</li>\n"
|
446 |
+
"\t\t\t<li>50% dampening means the anchor text will be autolinked "
|
447 |
+
"approximately half as often as it otherwise would be.</li>\n"
|
448 |
+
"\t\t\t<li>90% dampening means the anchor text will be autolinked only 10% as "
|
449 |
+
"often as it otherwise would be.</li>\n"
|
450 |
+
"\t\t\t<li>100% dampening means the anchor text won’t be linked at all."
|
451 |
+
"</li>\n"
|
452 |
+
"\t\t</ul>\n"
|
453 |
+
"\t\t<p>The “Dampener” column will only appear if you’ve "
|
454 |
+
"enabled it under the “Content Link Settings” tab.</p>\n"
|
455 |
+
"\t</li>\n"
|
456 |
+
"\t<li><strong>Nofollow</strong> — Checking this will add the "
|
457 |
+
"<code>rel="nofollow"</code> attribute to all autolinks generated "
|
458 |
+
"for that anchor text. You should enable this only if you’re creating "
|
459 |
+
"an automatic affiliate link.</li>\n"
|
460 |
+
"\t<li><strong>New window</strong> — Checking this will make the link "
|
461 |
+
"destination open up in a new window when the autolink is clicked.</li>\n"
|
462 |
+
"\t<li><strong>Delete</strong> — To delete an autolink, tick its “"
|
463 |
+
"Delete” checkbox and then click “Save Changes.”</li>\n"
|
464 |
+
"</ul>\n"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: modules/autolinks/autolinks.php:61
|
468 |
+
msgid "Content Link Settings Tab"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: modules/autolinks/autolinks.php:62
|
472 |
+
msgid ""
|
473 |
+
"\n"
|
474 |
+
"<p>The following options are available on the Content Link Settings tab:</"
|
475 |
+
"p>\n"
|
476 |
+
"\n"
|
477 |
+
"<ul>\n"
|
478 |
+
"\t<li><strong>Add Autolinks to...</strong> — You can stop Deeplink "
|
479 |
+
"Juggernaut from adding hyperlinks to the content of items of a given post "
|
480 |
+
"type by unchecking the post type’s checkbox.</li>\n"
|
481 |
+
"\t<li>\n"
|
482 |
+
"\t\t<p><strong>Self-Linking</strong></p>\n"
|
483 |
+
"\t\t<ul>\n"
|
484 |
+
"\t\t\t<li><strong>Allow posts to link to themselves</strong> — This "
|
485 |
+
"permits Deeplink Juggernaut to add a link to the content of a given post/"
|
486 |
+
"page even if the link is pointing to the URL of that post/page.</li>\n"
|
487 |
+
"\t\t\t<li><strong>Allow posts to link to the URL by which the visitor is "
|
488 |
+
"accessing the post</strong> — There are lots of URLs by which you can "
|
489 |
+
"access any given post/page on your site. You can access posts/pages via the "
|
490 |
+
"homepage URL, your site’s many archive URLs, or the URLs of the posts/"
|
491 |
+
"pages themselves. If you have an autolink that points to the homepage, and "
|
492 |
+
"if Deeplink Juggernaut were to add that link to the content of posts when "
|
493 |
+
"those posts are accessed from the homepage, then the homepage would be "
|
494 |
+
"linking to itself. By default, Deeplink Juggernaut won’t let this "
|
495 |
+
"happen. But if you’re okay with that sort of behavior, you can enable "
|
496 |
+
"it by checking this box.</li>\n"
|
497 |
+
"\t\t</ul>\n"
|
498 |
+
"\t</li>\n"
|
499 |
+
"\t<li>\n"
|
500 |
+
"\t\t<p><strong>Quantity Restrictions</strong></p>\n"
|
501 |
+
"\t\t<ul>\n"
|
502 |
+
"\t\t\t<li><strong>Don’t add any more than ___ autolinks per post/page/"
|
503 |
+
"etc.</strong> — Use this option to cap the total number of autolinks "
|
504 |
+
"(for all anchor texts combined) that can be added to the content of any one "
|
505 |
+
"item.</li>\n"
|
506 |
+
"\t\t\t<li><strong>Don’t link the same anchor text any more than ___ "
|
507 |
+
"times per post/page/etc.</strong> — Use this option to cap the number "
|
508 |
+
"of times that each anchor text can be autolinked in the content of any one "
|
509 |
+
"item.</li>\n"
|
510 |
+
"\t\t\t<li><strong>Don’t link to the same destination any more than ___ "
|
511 |
+
"times per post/page/etc.</strong> — Use this option to cap the number "
|
512 |
+
"of autolinks that any one URL can get within the content of any one item. "
|
513 |
+
"(This is different from the previous option because you can have multiple "
|
514 |
+
"anchor texts pointing to the same place.)</li>\n"
|
515 |
+
"\t\t</ul>\n"
|
516 |
+
"\t</li>\n"
|
517 |
+
"\t<li>\n"
|
518 |
+
"\t\t<p><strong>Additional Dampening Effect</strong></p>\n"
|
519 |
+
"\t\t<ul>\n"
|
520 |
+
"\t\t\t<li><strong>Globally decrease autolinking frequency by ___%</strong> "
|
521 |
+
"— If you have massive amounts of content on your site (e.g. thousands "
|
522 |
+
"of posts), the “Quantity Restrictions” settings may not be "
|
523 |
+
"sufficient to reign in the number of autolinks being generated. If that is "
|
524 |
+
"the case, you can use this option to reduce overall autolinking frequency by "
|
525 |
+
"a given percentage. For example, if you were to set global dampening to 10%, "
|
526 |
+
"then autolinks would be added only 90% as often as before.</li>\n"
|
527 |
+
"\t\t\t<li><strong>Add a “Dampener” column to the Content Links "
|
528 |
+
"editor</strong> — Check this box and click “Save Changes” "
|
529 |
+
"to add a new column to the “Content Links” editor table that "
|
530 |
+
"will let you apply the dampening effect to individual autolinks. If "
|
531 |
+
"you’ve also enabled the global dampening option, this will let you "
|
532 |
+
"override the global value for individual links. (For example, you can "
|
533 |
+
"disable dampening for just one of your links by setting the Dampener field "
|
534 |
+
"to 0%.)</li>\n"
|
535 |
+
"\t\t</ul>\n"
|
536 |
+
"\t</li>\n"
|
537 |
+
"\t<li><strong>Tag Restrictions</strong> — By default, Deeplink "
|
538 |
+
"Juggernaut will not autolink a particular anchor text if that anchor text is "
|
539 |
+
"found in a header or in a code block. You can further customize these "
|
540 |
+
"exceptions by adding HTML tags to the list.</li>\n"
|
541 |
+
"\t<li><strong>Siloing</strong> — If you enable the siloing feature for "
|
542 |
+
"a given post type (such as posts or pages), then items of that post type "
|
543 |
+
"will only be able to autolink to a webpage on your site if it falls within a "
|
544 |
+
"category, tag, or term shared by that item. For example, you can set it up "
|
545 |
+
"so that posts in Category A can’t autolink to anything on your site "
|
546 |
+
"with the exception of other posts in Category A and the Category A archive. "
|
547 |
+
"Autolinks to external sites will not be affected, since the siloing setting "
|
548 |
+
"will not affect autolinks that have a URL in the Destination box.</li>\n"
|
549 |
+
"\t<li><strong>CSS Class for Autolinks</strong> — If you want to apply "
|
550 |
+
"CSS styling to Content Links generated by Deeplink Juggernaut, type in a "
|
551 |
+
"class name here (e.g. “autolink”).</li>\n"
|
552 |
+
"</ul>\n"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: modules/autolinks/autolinks.php:97
|
556 |
+
msgid "Footer Links Tab"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: modules/autolinks/autolinks.php:98
|
560 |
+
msgid ""
|
561 |
+
"\n"
|
562 |
+
"<p>To add a footer link, fill in the fields and then click “Save "
|
563 |
+
"Changes.” Once you do so, you can edit your new footer link or add "
|
564 |
+
"another one.</p>\n"
|
565 |
+
"\n"
|
566 |
+
"<ul>\n"
|
567 |
+
"\t<li><p><strong>Link Location</strong> — If you want to add a footer "
|
568 |
+
"link across your entire site, leave this box blank. Otherwise, type in the "
|
569 |
+
"location on your site where you want the footer link to appear.</p>\n"
|
570 |
+
"\t\t<p>If you only want the footer link to appear on…</p>\n"
|
571 |
+
"\t\t<ul>\n"
|
572 |
+
"\t\t\t<li>…A particular post, page, attachment, or category/tag/term/"
|
573 |
+
"author archive, just type in the item’s name and then select it from "
|
574 |
+
"the dropdown.</li>\n"
|
575 |
+
"\t\t\t<li>…Your blog homepage, just type in “home” and "
|
576 |
+
"select “Blog Homepage” from the dropdown.</li>\n"
|
577 |
+
"\t\t\t<li>…A particular URL on your site, just type or paste it into "
|
578 |
+
"the box.</li>\n"
|
579 |
+
"\t\t</ul>\n"
|
580 |
+
"\t</li>\n"
|
581 |
+
"\t<li><p><strong>Match child content</strong> — What this does depends "
|
582 |
+
"on what type of Link Location you specified.</p>\n"
|
583 |
+
"\t\t<ul>\n"
|
584 |
+
"\t\t\t<li>If the Link Location is a category/tag/term archive, then the "
|
585 |
+
"footer link will also be added to posts within that term.</li>\n"
|
586 |
+
"\t\t\t<li>If the Link Location is an author archive, then the footer link "
|
587 |
+
"will also be added to posts written by that author.</li>\n"
|
588 |
+
"\t\t\t<li>If the Link Location is a URL, then the footer link will also be "
|
589 |
+
"added to URLs that begin with whatever URL you entered.</li>\n"
|
590 |
+
"\t\t</ul>\n"
|
591 |
+
"\t</li>\n"
|
592 |
+
"\t<li><strong>Negative match</strong> — This will cause the footer "
|
593 |
+
"link to be inserted on webpages <em>other than</em> the Link Location and "
|
594 |
+
"(if the appropriate box is checked) its child content.</li>\n"
|
595 |
+
"\t<li><strong>Anchor Text</strong> — Deeplink Juggernaut insert this "
|
596 |
+
"text into your site’s footer and will link that text to the webpage or "
|
597 |
+
"item you specify in the Destination box. The Anchor Text should be a keyword "
|
598 |
+
"that you want the Destination page to rank for.</li>\n"
|
599 |
+
"\t<li><p><strong>Destination</strong> — This is the box where you "
|
600 |
+
"specify the webpage where you want the auto-generated hyperlinks to point.</"
|
601 |
+
"p>\n"
|
602 |
+
"\t\t<ul>\n"
|
603 |
+
"\t\t\t<li>To link to a post, page, attachment, category, tag, term, or "
|
604 |
+
"author on your site, just type in its name and then select it from the "
|
605 |
+
"dropdown.</li>\n"
|
606 |
+
"\t\t\t<li>To link to your blog homepage, just type in “home” and "
|
607 |
+
"select “Blog Homepage” from the dropdown.</li>\n"
|
608 |
+
"\t\t\t<li>To link to one of the aliased URLs you created with the Link Mask "
|
609 |
+
"Generator, just type in part of the original URL or alias URL and then "
|
610 |
+
"select the link mask from the dropdown.</li>\n"
|
611 |
+
"\t\t\t<li>To link to some other webpage, just type or paste in its URL in "
|
612 |
+
"the box.</li>\n"
|
613 |
+
"\t\t</ul>\n"
|
614 |
+
"\t</li>\n"
|
615 |
+
"\t<li><strong>Title Attribute</strong> — The link’s title "
|
616 |
+
"attribute is the text that will appear when the visitor’s mouse "
|
617 |
+
"pointer hovers over the link. Totally optional.</li>\n"
|
618 |
+
"\t<li><strong>Nofollow</strong> — Checking this will add the "
|
619 |
+
"<code>rel="nofollow"</code> attribute to all instances of this "
|
620 |
+
"footer link. You should enable this only if you’re creating an "
|
621 |
+
"automatic affiliate link.</li>\n"
|
622 |
+
"\t<li><strong>New window</strong> — Checking this will make the link "
|
623 |
+
"destination open up in a new window when the footer link is clicked.</li>\n"
|
624 |
+
"\t<li><strong>Delete</strong> — To delete an autolink, tick its “"
|
625 |
+
"Delete” checkbox and then click “Save Changes.”</li>\n"
|
626 |
+
"</ul>\n"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: modules/autolinks/autolinks.php:136
|
630 |
+
msgid "Footer Link Settings Tab"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: modules/autolinks/autolinks.php:137
|
634 |
+
msgid ""
|
635 |
+
"\n"
|
636 |
+
"<p>The following options are available on the Footer Link Settings tab:</p>\n"
|
637 |
+
"\n"
|
638 |
+
"<ul>\n"
|
639 |
+
"\t<li><strong>Link Section Format</strong> — Lets you customize the "
|
640 |
+
"text/HTML that will surround the list of links outputted in your site’"
|
641 |
+
"s footer (represented by the <code>{links}</code> variable).</li>\n"
|
642 |
+
"\t<li><strong>Link Format</strong> — Lets you specify text or HTML "
|
643 |
+
"that will surround each individual link (represented by the <code>{link}</"
|
644 |
+
"code> variable).</li>\n"
|
645 |
+
"\t<li><strong>Link Separator</strong> — Lets you specify text or HTML "
|
646 |
+
"that will separate each individual link.</li>\n"
|
647 |
+
"</ul>\n"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: modules/autolinks/autolinks.php:149 modules/files/files.php:169
|
651 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:363
|
652 |
+
#: modules/meta/meta-descriptions.php:215 modules/meta/meta-keywords.php:203
|
653 |
+
#: modules/modules/modules.php:224 modules/more-links/more-links.php:105
|
654 |
+
#: modules/more-links/more-links.php:116 modules/settings/settings.php:81
|
655 |
+
#: modules/slugs/slugs.php:114 modules/slugs/slugs.php:126
|
656 |
+
#: modules/titles/titles.php:468
|
657 |
+
msgid "FAQ"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: modules/autolinks/autolinks.php:150
|
661 |
+
msgid ""
|
662 |
+
"\n"
|
663 |
+
"<ul>\n"
|
664 |
+
"\t<li><strong>What happens if I autolink to a post and then delete the post "
|
665 |
+
"later?</strong><br />Deeplink Juggernaut will disable all autolinks that "
|
666 |
+
"point to the deleted post. Deeplink Juggernaut will keep the autolink in the "
|
667 |
+
"list though, so that you can point it somewhere else.</li>\n"
|
668 |
+
"\t<li><strong>What happens if I autolink to a draft post?</strong><br /"
|
669 |
+
">Don’t worry: Deeplink Juggernaut won’t actually autolink to it "
|
670 |
+
"until the post is published.</li>\n"
|
671 |
+
"\t<li><strong>Does Deeplink Juggernaut edit my posts’ content as it is "
|
672 |
+
"stored in the database?</strong><br />No. Autolinks are added dynamically. "
|
673 |
+
"This means all the autolinks will go away if you disable Deeplink Juggernaut "
|
674 |
+
"or deactivate SEO Ultimate.</li>\n"
|
675 |
+
"\t<li><strong>How does the Dampener work?</strong><br />When the Dampener is "
|
676 |
+
"in effect, Deeplink Juggernaut creates a hash for each autolink and creates "
|
677 |
+
"a hash for each post/page/etc. on your site. In order for the autolink to be "
|
678 |
+
"added to the content of a post/page, the two hashes have to be compatible "
|
679 |
+
"with each other. If the Dampener is set to 70%, then the hashes will match "
|
680 |
+
"and the autolink will be applied approximately 30% of the time. This hash "
|
681 |
+
"system results in a pseudo-random dampening effect that will always have a "
|
682 |
+
"consistent outcome for any given anchor/post combination.</li>\n"
|
683 |
+
"\t<li><strong>Can I still use the Footer Links feature if my theme has a "
|
684 |
+
"widgetized footer?</strong><br />Yes. Make sure the “SEO Ultimate "
|
685 |
+
"Widgets” module is enabled in the SEO Ultimate <a href='admin.php?"
|
686 |
+
"page=seo' target='_blank'>Module Manager</a>, then go to your <a "
|
687 |
+
"href='widgets.php' target='_blank'>Widgets</a> page and add the “"
|
688 |
+
"Footer Links” widget.\n"
|
689 |
+
"</ul>\n"
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: modules/autolinks/autolinks.php:163
|
693 |
+
msgid ""
|
694 |
+
"\n"
|
695 |
+
"<ul>\n"
|
696 |
+
"\t<li><strong>I configured a Content Link, but the anchor text isn’t "
|
697 |
+
"being linked on my site.</strong><br />You likely enabled a setting on the "
|
698 |
+
"“Content Link Settings” tab that is preventing the autolink from "
|
699 |
+
"being applied.</li>\n"
|
700 |
+
"\t<li><strong>I have Content Links configured for “widgets” and "
|
701 |
+
"“blue widgets,” but when the phrase “blue widgets” "
|
702 |
+
"appears on my site, only the word “widgets” is being linked. Why "
|
703 |
+
"is that?</strong><br />Deeplink Juggernaut always links longer anchor texts "
|
704 |
+
"first, so if this is happening, then the “blue widgets” autolink "
|
705 |
+
"must have been disabled in that particular instance due to a Quantity "
|
706 |
+
"Restriction or the Dampener effect being applied.</li>\n"
|
707 |
+
"\t<li><strong>Why aren’t my footer links appearing?</strong><br /"
|
708 |
+
">Check to make sure your theme is <a href='http://johnlamansky.com/wordpress/"
|
709 |
+
"theme-plugin-hooks/' target='_blank'>plugin-friendly</a>. Also, check the "
|
710 |
+
"“Footer Link Settings” tab and make sure that the “Link "
|
711 |
+
"Section Format” field includes the <code>{links}</code> variable and "
|
712 |
+
"that the “Link Format” field includes the <code>{link}</code> "
|
713 |
+
"variable.</li>\n"
|
714 |
+
"</ul>\n"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: modules/autolinks/content-autolinks-settings.php:16
|
718 |
+
msgid "Content Deeplink Juggernaut Settings"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: modules/autolinks/content-autolinks-settings.php:17
|
722 |
+
msgid "Content Link Settings"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: modules/autolinks/content-autolinks-settings.php:42
|
726 |
+
msgid "Add Autolinks to..."
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
+
#: modules/autolinks/content-autolinks-settings.php:45
|
730 |
+
msgid "Allow posts to link to themselves"
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: modules/autolinks/content-autolinks-settings.php:46
|
734 |
+
msgid ""
|
735 |
+
"Allow posts to link to the URL by which the visitor is accessing the post"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: modules/autolinks/content-autolinks-settings.php:47
|
739 |
+
msgid "Self-Linking"
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: modules/autolinks/content-autolinks-settings.php:50
|
743 |
+
#, php-format
|
744 |
+
msgid "Don’t add any more than %d autolinks per post/page/etc."
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: modules/autolinks/content-autolinks-settings.php:51
|
748 |
+
#, php-format
|
749 |
+
msgid ""
|
750 |
+
"Don’t link the same anchor text any more than %d times per post/page/"
|
751 |
+
"etc."
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#: modules/autolinks/content-autolinks-settings.php:52
|
755 |
+
#, php-format
|
756 |
+
msgid ""
|
757 |
+
"Don’t link to the same destination any more than %d times per post/"
|
758 |
+
"page/etc."
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: modules/autolinks/content-autolinks-settings.php:53
|
762 |
+
msgid "Quantity Restrictions"
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: modules/autolinks/content-autolinks-settings.php:57
|
766 |
+
msgid "Globally decrease autolinking frequency by %d%"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: modules/autolinks/content-autolinks-settings.php:59
|
770 |
+
msgid ""
|
771 |
+
"Add a “Dampener” column to the Content Links editor to let me "
|
772 |
+
"customize frequency dampening on a per-link basis"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: modules/autolinks/content-autolinks-settings.php:63
|
776 |
+
msgid "Additional Dampening Effect"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: modules/autolinks/content-autolinks-settings.php:65
|
780 |
+
msgid ""
|
781 |
+
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
782 |
+
"commas)</em>:"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: modules/autolinks/content-autolinks-settings.php:65
|
786 |
+
msgid "Tag Restrictions"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: modules/autolinks/content-autolinks-settings.php:73
|
790 |
+
#, php-format
|
791 |
+
msgid "%s can only link to internal destinations that share at least one..."
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: modules/autolinks/content-autolinks-settings.php:86
|
795 |
+
msgid "Siloing"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: modules/autolinks/content-autolinks-settings.php:88
|
799 |
+
msgid "CSS Class for Autolinks"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: modules/autolinks/content-autolinks.php:18
|
803 |
+
msgid "Content Deeplink Juggernaut"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: modules/autolinks/content-autolinks.php:19
|
807 |
+
msgid "Content Links"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: modules/autolinks/content-autolinks.php:263
|
811 |
+
msgid ""
|
812 |
+
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
813 |
+
"a certain word or phrase in your post/page content to a URL you specify."
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
+
#: modules/autolinks/content-autolinks.php:326
|
817 |
+
msgid ""
|
818 |
+
"<strong>Functionality Change Notice:</strong> The “Site Cap” "
|
819 |
+
"feature (which allowed you set a per-link sitewide quantity limit) has been "
|
820 |
+
"replaced with a more efficient “Dampener” feature that lets you "
|
821 |
+
"reduce autolinking frequency by a percentage. Although the Site Cap feature "
|
822 |
+
"has been replaced, we retained the “Site Cap” column for you in "
|
823 |
+
"the table below, since it looks like you’ve used the Site Cap feature "
|
824 |
+
"in the past. We retained the column to help you remember which links used "
|
825 |
+
"the old feature, so that you know to which links to apply the new “"
|
826 |
+
"Dampener” feature. Once you’re done migrating the Site Cap "
|
827 |
+
"values to Dampener percentages, just clear the “Site Cap” boxes "
|
828 |
+
"to make those boxes (and this message) go away."
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: modules/autolinks/content-autolinks.php:332
|
832 |
+
#: modules/autolinks/footer-autolinks.php:157
|
833 |
+
msgid "Edit Existing Links"
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: modules/autolinks/content-autolinks.php:336
|
837 |
+
#: modules/autolinks/footer-autolinks.php:161
|
838 |
+
msgid "Add a New Link"
|
839 |
+
msgstr ""
|
840 |
+
|
841 |
+
#: modules/autolinks/content-autolinks.php:349
|
842 |
+
#: modules/autolinks/footer-autolinks.php:171
|
843 |
+
msgid "Anchor Text"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: modules/autolinks/content-autolinks.php:350
|
847 |
+
#: modules/autolinks/footer-autolinks.php:172
|
848 |
+
msgid "Destination"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: modules/autolinks/content-autolinks.php:351
|
852 |
+
#: modules/autolinks/footer-autolinks.php:173
|
853 |
+
msgid "Title Attribute <em>(optional)</em>"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: modules/autolinks/content-autolinks.php:353
|
857 |
+
msgid "Dampener"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: modules/autolinks/content-autolinks.php:355
|
861 |
+
msgid "Site Cap"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: modules/autolinks/content-autolinks.php:356
|
865 |
+
#: modules/autolinks/footer-autolinks.php:174
|
866 |
+
msgid "Options"
|
867 |
+
msgstr ""
|
868 |
+
|
869 |
+
#: modules/autolinks/content-autolinks.php:358
|
870 |
+
#: modules/autolinks/footer-autolinks.php:176
|
871 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:103
|
872 |
+
msgid "Delete"
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: modules/autolinks/content-autolinks.php:395
|
876 |
+
#: modules/autolinks/footer-autolinks.php:210 modules/noindex/noindex.php:61
|
877 |
+
#: modules/noindex/noindex.php:85
|
878 |
+
msgid "Nofollow"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: modules/autolinks/content-autolinks.php:397
|
882 |
+
#: modules/autolinks/footer-autolinks.php:212
|
883 |
+
msgid "New window"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: modules/autolinks/content-autolinks.php:478
|
887 |
+
msgid "Inbound Autolink Anchors:<br /><em>(one per line)</em>"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: modules/autolinks/content-autolinks.php:481
|
891 |
+
msgid "Don’t add autolinks to anchor texts found in this post."
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: modules/autolinks/content-autolinks.php:481
|
895 |
+
msgid "Autolink Exclusion:"
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: modules/autolinks/content-autolinks.php:487
|
899 |
+
msgid ""
|
900 |
+
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
901 |
+
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
902 |
+
"other posts and link it to this post. For example, if the post you’re "
|
903 |
+
"editing is about “blue widgets,” you could type “blue "
|
904 |
+
"widgets” into the “Incoming Autolink Anchors” box and "
|
905 |
+
"Deeplink Juggernaut will automatically build internal links to this post "
|
906 |
+
"with that anchor text (assuming other posts contain that text). If you’"
|
907 |
+
"re working on a draft post or a scheduled post, don’t worry — "
|
908 |
+
"SEO Ultimate won’t add autolinks to this post until it’s "
|
909 |
+
"published."
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: modules/autolinks/footer-autolinks-settings.php:16
|
913 |
+
msgid "Footer Deeplink Juggernaut Settings"
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: modules/autolinks/footer-autolinks-settings.php:17
|
917 |
+
msgid "Footer Link Settings"
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: modules/autolinks/footer-autolinks-settings.php:28
|
921 |
+
msgid "HTML Formats"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: modules/autolinks/footer-autolinks-settings.php:31
|
925 |
+
msgid "Link Section Format"
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: modules/autolinks/footer-autolinks-settings.php:32
|
929 |
+
msgid "Link Format"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: modules/autolinks/footer-autolinks-settings.php:34
|
933 |
+
msgid "Link Separator"
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: modules/autolinks/footer-autolinks.php:16
|
937 |
+
msgid "Footer Deeplink Juggernaut"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: modules/autolinks/footer-autolinks.php:17 modules/widgets/widgets.php:174
|
941 |
+
msgid "Footer Links"
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#: modules/autolinks/footer-autolinks.php:169
|
945 |
+
msgid "Link Location <em>(optional)</em>"
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
#: modules/autolinks/footer-autolinks.php:197
|
949 |
+
msgid "Match child content"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: modules/autolinks/footer-autolinks.php:199
|
953 |
+
msgid "Negative match"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: modules/canonical/canonical.php:12 modules/canonical/canonical.php:221
|
957 |
+
msgid "Canonicalizer"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: modules/canonical/canonical.php:41
|
961 |
+
msgid ""
|
962 |
+
"Generate <code><link rel="canonical" /></code> meta tags"
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: modules/canonical/canonical.php:42
|
966 |
+
msgid "Send <code>rel="canonical"</code> HTTP headers"
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
#: modules/canonical/canonical.php:43
|
970 |
+
msgid "Canonical URL Generation"
|
971 |
+
msgstr ""
|
972 |
+
|
973 |
+
#: modules/canonical/canonical.php:45
|
974 |
+
msgid ""
|
975 |
+
"Use <code>http://</code> or <code>https://</code> depending on how the "
|
976 |
+
"visitor accessed the page"
|
977 |
+
msgstr ""
|
978 |
+
|
979 |
+
#: modules/canonical/canonical.php:46
|
980 |
+
msgid "Make all canonical URLs begin with <code>http://</code>"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: modules/canonical/canonical.php:47
|
984 |
+
msgid "Make all canonical URLs begin with <code>https://</code>"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: modules/canonical/canonical.php:48
|
988 |
+
msgid "Canonical URL Scheme"
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: modules/canonical/canonical.php:50
|
992 |
+
msgid "Redirect requests for nonexistent pagination"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: modules/canonical/canonical.php:51
|
996 |
+
msgid "Automated 301 Redirects"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: modules/canonical/canonical.php:210
|
1000 |
+
msgid ""
|
1001 |
+
"\n"
|
1002 |
+
"<ul>\n"
|
1003 |
+
"\t<li><strong>What it does:</strong> Canonicalizer will point Google to the "
|
1004 |
+
"correct URL for your homepage and each of your posts, Pages, categories, "
|
1005 |
+
"tags, date archives, and author archives.</li>\n"
|
1006 |
+
"\t<li><strong>Why it helps:</strong> If Google comes across an alternate URL "
|
1007 |
+
"by which one of those items can be accessed, it will be able to find the "
|
1008 |
+
"correct URL and won’t penalize you for having two identical pages on "
|
1009 |
+
"your site.</li>\n"
|
1010 |
+
"\t<li><strong>How to use it:</strong> Just check the three checkboxes. If "
|
1011 |
+
"your site is accessible using both <code>http://</code> and <code>https://</"
|
1012 |
+
"code>, be sure to set the preferred one under “Canonical URL Scheme."
|
1013 |
+
"”</li>\n"
|
1014 |
+
"</ul>\n"
|
1015 |
+
msgstr ""
|
1016 |
+
|
1017 |
+
#: modules/class.su-importmodule.php:49
|
1018 |
+
msgid "Import Post Fields"
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: modules/class.su-importmodule.php:50
|
1022 |
+
#, php-format
|
1023 |
+
msgid ""
|
1024 |
+
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
1025 |
+
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
1026 |
+
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
1027 |
+
"Ultimate."
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: modules/class.su-importmodule.php:53
|
1031 |
+
msgid "Conflict Resolution Mode"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: modules/class.su-importmodule.php:54
|
1035 |
+
#, php-format
|
1036 |
+
msgid ""
|
1037 |
+
"What should the import tool do if it tries to move over a post’s %s "
|
1038 |
+
"data, but different data already exists in the corresponding SEO Ultimate "
|
1039 |
+
"fields?"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: modules/class.su-importmodule.php:56
|
1043 |
+
msgid "Skip that post and leave all data as-is (default)."
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: modules/class.su-importmodule.php:57
|
1047 |
+
#, php-format
|
1048 |
+
msgid "Delete the SEO Ultimate data and replace it with the %s data."
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: modules/class.su-importmodule.php:58
|
1052 |
+
#, php-format
|
1053 |
+
msgid "Keep the SEO Ultimate data and delete the %s data."
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: modules/class.su-importmodule.php:61
|
1057 |
+
msgid "Deletion Preference"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: modules/class.su-importmodule.php:62
|
1061 |
+
#, php-format
|
1062 |
+
msgid ""
|
1063 |
+
"When the migration tool successfully copies a post’s %1$s data over to "
|
1064 |
+
"SEO Ultimate, what should it do with the old %1$s data?"
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: modules/class.su-importmodule.php:64
|
1068 |
+
#, php-format
|
1069 |
+
msgid "Delete the %s data."
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: modules/class.su-importmodule.php:65
|
1073 |
+
#, php-format
|
1074 |
+
msgid "Leave behind the duplicate %s data (default)."
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: modules/class.su-importmodule.php:72
|
1078 |
+
msgid "Import Now"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: modules/class.su-importmodule.php:75
|
1082 |
+
#, php-format
|
1083 |
+
msgid ""
|
1084 |
+
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
1085 |
+
"target=\"_blank\">backup your database</a> before proceeding!"
|
1086 |
+
msgstr ""
|
1087 |
+
|
1088 |
+
#: modules/class.su-importmodule.php:84
|
1089 |
+
msgid "Import complete."
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: modules/class.su-importmodule.php:90
|
1093 |
+
msgid "Return to import page"
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: modules/class.su-importmodule.php:93
|
1097 |
+
msgid "Return to settings page"
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: modules/class.su-importmodule.php:96
|
1101 |
+
msgid "Return to SEO page"
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: modules/class.su-importmodule.php:116
|
1105 |
+
#, php-format
|
1106 |
+
msgid "Deactivated %s."
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: modules/class.su-importmodule.php:175
|
1110 |
+
#, php-format
|
1111 |
+
msgid "Imported a total of %d fields for one post/page/revision."
|
1112 |
+
msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
|
1113 |
+
msgstr[0] ""
|
1114 |
+
msgstr[1] ""
|
1115 |
+
|
1116 |
+
#: modules/class.su-importmodule.php:181
|
1117 |
+
#, php-format
|
1118 |
+
msgid "Skipped one post with disabled %2$s data."
|
1119 |
+
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
1120 |
+
msgstr[0] ""
|
1121 |
+
msgstr[1] ""
|
1122 |
+
|
1123 |
+
#: modules/class.su-importmodule.php:187
|
1124 |
+
#, php-format
|
1125 |
+
msgid ""
|
1126 |
+
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
1127 |
+
"settings you chose."
|
1128 |
+
msgid_plural ""
|
1129 |
+
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
1130 |
+
"settings you chose."
|
1131 |
+
msgstr[0] ""
|
1132 |
+
msgstr[1] ""
|
1133 |
+
|
1134 |
+
#: modules/class.su-importmodule.php:193
|
1135 |
+
#, php-format
|
1136 |
+
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
1137 |
+
msgid_plural ""
|
1138 |
+
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
1139 |
+
msgstr[0] ""
|
1140 |
+
msgstr[1] ""
|
1141 |
+
|
1142 |
+
#: modules/class.su-module.php:715
|
1143 |
+
#, php-format
|
1144 |
+
msgid ""
|
1145 |
+
"All the modules on this page have been disabled. You can re-enable them "
|
1146 |
+
"using the <a href=\"%s\">Module Manager</a>."
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: modules/class.su-module.php:976
|
1150 |
+
#, php-format
|
1151 |
+
msgid "%1$s | %2$s %3$s by %4$s"
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: modules/class.su-module.php:1055
|
1155 |
+
msgid "Your site currently doesn’t have any public items of this type."
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: modules/class.su-module.php:1142
|
1159 |
+
msgid "«"
|
1160 |
+
msgstr ""
|
1161 |
+
|
1162 |
+
#: modules/class.su-module.php:1143
|
1163 |
+
msgid "»"
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: modules/class.su-module.php:1150
|
1167 |
+
#, php-format
|
1168 |
+
msgid "Displaying %s–%s of %s"
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: modules/class.su-module.php:1164
|
1172 |
+
msgid "ID"
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: modules/class.su-module.php:1210
|
1176 |
+
msgid "View"
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: modules/class.su-module.php:1212
|
1180 |
+
msgid "Edit"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: modules/class.su-module.php:1382
|
1184 |
+
msgid "Settings updated."
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: modules/class.su-module.php:1403
|
1188 |
+
msgid "Save Changes"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: modules/class.su-module.php:1890
|
1192 |
+
msgid ""
|
1193 |
+
"Are you sure you want to replace the textbox contents with this default "
|
1194 |
+
"value?"
|
1195 |
+
msgstr ""
|
1196 |
+
|
1197 |
+
#: modules/class.su-module.php:1919 modules/settings/settings-data.php:23
|
1198 |
+
msgid "Reset"
|
1199 |
+
msgstr ""
|
1200 |
+
|
1201 |
+
#: modules/class.su-module.php:2668 modules/class.su-module.php:2680
|
1202 |
+
#, php-format
|
1203 |
+
msgid "A Deleted %s"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: modules/class.su-module.php:2670
|
1207 |
+
msgid "A Deleted Post"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: modules/class.su-module.php:2685
|
1211 |
+
msgid "A Deleted Term"
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: modules/class.su-module.php:2691 modules/meta/meta-descriptions.php:31
|
1215 |
+
#: modules/meta/meta-keywords.php:40 modules/opengraph/opengraph.php:380
|
1216 |
+
#: plugin/class.seo-ultimate.php:1856
|
1217 |
+
msgid "Blog Homepage"
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#: modules/class.su-module.php:2696 plugin/class.seo-ultimate.php:1932
|
1221 |
+
msgid "Author"
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: modules/class.su-module.php:2698
|
1225 |
+
msgid "A Deleted User"
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: modules/class.su-module.php:2713 plugin/class.seo-ultimate.php:1962
|
1229 |
+
msgid "Link Mask"
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: modules/class.su-module.php:2715
|
1233 |
+
msgid "Link Mask (Disabled)"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: modules/class.su-module.php:2720
|
1237 |
+
msgid "A Deleted Link Mask"
|
1238 |
+
msgstr ""
|
1239 |
+
|
1240 |
+
#: modules/class.su-module.php:2750
|
1241 |
+
msgid "Type a URL or start typing the name of an item on your site"
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
+
#: modules/class.su-module.php:2763
|
1245 |
+
msgid "Remove this location from this textbox"
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: modules/class.su-module.php:2763
|
1249 |
+
msgid "X"
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: modules/class.su-module.php:2872
|
1253 |
+
#, php-format
|
1254 |
+
msgid "<strong>RSS Error</strong>: %s"
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: modules/class.su-module.php:2888
|
1258 |
+
msgid ""
|
1259 |
+
"An error has occurred, which probably means the feed is down. Try again "
|
1260 |
+
"later."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: modules/files/files.php:14 modules/files/files.php:15
|
1264 |
+
msgid "File Editor"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: modules/files/files.php:59
|
1268 |
+
msgid ""
|
1269 |
+
"A .htaccess file exists, but it’s not writable. You can edit it here "
|
1270 |
+
"once the file permissions are corrected."
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: modules/files/files.php:65
|
1274 |
+
msgid ""
|
1275 |
+
"WordPress won’t be able to display your robots.txt file because the "
|
1276 |
+
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
1277 |
+
"structure</a> is in use."
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: modules/files/files.php:72
|
1281 |
+
#, php-format
|
1282 |
+
msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: modules/files/files.php:76
|
1286 |
+
msgid "Enable this custom robots.txt file and disable the default file"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: modules/files/files.php:77
|
1290 |
+
msgid "Let other plugins add rules to my custom robots.txt file"
|
1291 |
+
msgstr ""
|
1292 |
+
|
1293 |
+
#: modules/files/files.php:78
|
1294 |
+
msgid "robots.txt Settings"
|
1295 |
+
msgstr ""
|
1296 |
+
|
1297 |
+
#: modules/files/files.php:81
|
1298 |
+
msgid ""
|
1299 |
+
"Please realize that incorrectly editing your robots.txt file could block "
|
1300 |
+
"search engines from your site."
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: modules/files/files.php:85
|
1304 |
+
msgid ".htaccess"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: modules/files/files.php:88
|
1308 |
+
msgid ""
|
1309 |
+
"Also, incorrectly editing your .htaccess file could disable your entire "
|
1310 |
+
"website. Edit with caution!"
|
1311 |
+
msgstr ""
|
1312 |
+
|
1313 |
+
#: modules/files/files.php:148
|
1314 |
+
#, php-format
|
1315 |
+
msgid ""
|
1316 |
+
"Please note that the “discourage search engines” setting "
|
1317 |
+
"won’t have any effect on your robots.txt file, since you’re "
|
1318 |
+
"using <a href=\"%s\">a custom one</a>."
|
1319 |
+
msgstr ""
|
1320 |
+
|
1321 |
+
#: modules/files/files.php:159
|
1322 |
+
msgid ""
|
1323 |
+
"\n"
|
1324 |
+
"<ul>\n"
|
1325 |
+
"\t<li><strong>What it does:</strong> The File Editor module lets you edit "
|
1326 |
+
"two important SEO-related files: robots.txt and .htaccess.</li>\n"
|
1327 |
+
"\t<li><strong>Why it helps:</strong> You can use the <a href='http://www."
|
1328 |
+
"robotstxt.org/robotstxt.html' target='_blank'>robots.txt file</a> to give "
|
1329 |
+
"instructions to search engine spiders. You can use the <a href='http://httpd."
|
1330 |
+
"apache.org/docs/2.2/howto/htaccess.html' target='_blank'>.htaccess file</a> "
|
1331 |
+
"to implement advanced SEO strategies (URL rewriting, regex redirects, etc.). "
|
1332 |
+
"SEO Ultimate makes editing these files easier than ever.</li>\n"
|
1333 |
+
"\t<li><strong>How to use it:</strong> Edit the files as desired, then click "
|
1334 |
+
"Save Changes. If you create a custom robots.txt file, be sure to enable it "
|
1335 |
+
"with the checkbox.</li>\n"
|
1336 |
+
"</ul>\n"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: modules/files/files.php:170
|
1340 |
+
msgid ""
|
1341 |
+
"\n"
|
1342 |
+
"<ul>\n"
|
1343 |
+
"\t<li><strong>Will my robots.txt edits remain if I disable the File Editor?</"
|
1344 |
+
"strong><br />No. On a WordPress blog, the robots.txt file is dynamically "
|
1345 |
+
"generated just like your posts and Pages. If you disable the File Editor "
|
1346 |
+
"module or the entire SEO Ultimate plugin, the File Editor won’t be "
|
1347 |
+
"able to insert your custom code into the robots.txt file anymore.</li>\n"
|
1348 |
+
"\t<li><strong>Will my .htaccess edits remain if I disable the File Editor?</"
|
1349 |
+
"strong><br />Yes. The .htaccess file is static. Your edits will remain even "
|
1350 |
+
"if you disable SEO Ultimate or its File Editor module.</li>\n"
|
1351 |
+
"</ul>\n"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: modules/files/files.php:180
|
1355 |
+
msgid ""
|
1356 |
+
"\n"
|
1357 |
+
"<ul>\n"
|
1358 |
+
"\t<li><strong>Why do I get a “500 Server Error” after using the "
|
1359 |
+
"File Editor?</strong><br />You may have inserted code into your .htaccess "
|
1360 |
+
"file that your web server can't understand. As the File Editor warns, "
|
1361 |
+
"incorrectly editing your .htaccess file can disable your entire website in "
|
1362 |
+
"this way. To restore your site, you'll need to use an FTP client (or your "
|
1363 |
+
"web host's File Manager) to edit or rename your .htaccess file. If you need "
|
1364 |
+
"help, please contact your web host.</li>\n"
|
1365 |
+
"\t<li><strong>Where did my .htaccess edits go?</strong><br />The .htaccess "
|
1366 |
+
"file is static, so SEO Ultimate doesn't have total control over it. It’"
|
1367 |
+
"s possible that WordPress, another plugin, or other software may overwrite "
|
1368 |
+
"your .htaccess file. If you have a backup of your blog’s files, you "
|
1369 |
+
"can try recovering your edits from there.</li>\n"
|
1370 |
+
"</ul>\n"
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: modules/import-aiosp/import-aiosp.php:12
|
1374 |
+
msgid "Import from All in One SEO Pack"
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: modules/import-aiosp/import-aiosp.php:13
|
1378 |
+
msgid "AIOSP Import"
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: modules/import-aiosp/import-aiosp.php:15
|
1382 |
+
msgid "All in One SEO Pack"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: modules/import-aiosp/import-aiosp.php:16
|
1386 |
+
msgid "AIOSP"
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: modules/import-aiosp/import-aiosp.php:17
|
1390 |
+
msgid "Import post data (custom title tags and meta tags)."
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: modules/import-aiosp/import-aiosp.php:21
|
1394 |
+
msgid ""
|
1395 |
+
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
1396 |
+
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
1397 |
+
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
1398 |
+
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
1399 |
+
"to be currently installed or activated for the import to take place."
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: modules/import-aiosp/import-aiosp.php:23
|
1403 |
+
msgid ""
|
1404 |
+
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
1405 |
+
"you use an older version of AIOSP, you should update to the latest version "
|
1406 |
+
"first and run AIOSP’s upgrade process."
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:27
|
1410 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:28
|
1411 |
+
msgid "Link Mask Generator"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:35
|
1415 |
+
#, php-format
|
1416 |
+
msgid ""
|
1417 |
+
"Link Mask Generator won’t work with default or “pathinfo” "
|
1418 |
+
"permalinks. Please change your <a href=\"%s\">permalink structure</a> to "
|
1419 |
+
"enable this module’s functionality."
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:42
|
1423 |
+
msgid "Aliases"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:87
|
1427 |
+
msgid "Edit Existing Aliases"
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:91
|
1431 |
+
msgid "Add a New Alias"
|
1432 |
+
msgstr ""
|
1433 |
+
|
1434 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:99
|
1435 |
+
msgid "Actual URL"
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:100
|
1439 |
+
msgid "Alias URL"
|
1440 |
+
msgstr ""
|
1441 |
+
|
1442 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:101
|
1443 |
+
msgid "Only on This Post… <em>(optional)</em>"
|
1444 |
+
msgstr ""
|
1445 |
+
|
1446 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:126
|
1447 |
+
msgid "Test"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:153
|
1451 |
+
msgid "Alias Directory"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:155
|
1455 |
+
msgid "Nofollow masked links"
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:155
|
1459 |
+
msgid "Link Attributes"
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:178
|
1463 |
+
msgid "Link Masks:"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:181
|
1467 |
+
msgid "URL"
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:181
|
1471 |
+
msgid "Mask URL"
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:219
|
1475 |
+
msgid ""
|
1476 |
+
"You can stop search engines from following a link by typing in a mask for "
|
1477 |
+
"its URL."
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:306
|
1481 |
+
msgid "Added by SEO Ultimate's Link Mask Generator module"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:317
|
1485 |
+
msgid "End Link Mask Generator output"
|
1486 |
+
msgstr ""
|
1487 |
+
|
1488 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:327
|
1489 |
+
msgid ""
|
1490 |
+
"\n"
|
1491 |
+
"<ul>\n"
|
1492 |
+
"\t<li><strong>What it does:</strong> Link Mask Generator lets you replace "
|
1493 |
+
"ugly affiliate links with clean-looking link aliases that redirect to the "
|
1494 |
+
"real URLs. Link Mask Generator will scan your posts for the links to the "
|
1495 |
+
"actual URLs and replace them with links to the alias URLs. When a visitor "
|
1496 |
+
"clicks on the link to the alias URL, Link Mask Generator will redirect the "
|
1497 |
+
"visitor to the actual URL.</li>\n"
|
1498 |
+
"\t<li><strong>Why it helps:</strong> This type of functionality is a staple "
|
1499 |
+
"in an affiliate marketer’s toolkit. Link Mask Generator helps you by "
|
1500 |
+
"doing it in an SEO-friendly way: by funneling your affiliate links through a "
|
1501 |
+
"directory (e.g. <code>/go/</code>) which is blocked with <code>robots.txt</"
|
1502 |
+
"code> rules, effectively sealing off link juice flow to your affiliate links."
|
1503 |
+
"</li>\n"
|
1504 |
+
"\t<li><strong>How to use it:</strong> Type in the real URL, type in an alias "
|
1505 |
+
"URL, and click “Save Changes” — that’s it!</li>\n"
|
1506 |
+
"</ul>\n"
|
1507 |
+
msgstr ""
|
1508 |
+
|
1509 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:337
|
1510 |
+
msgid "Aliases Tab"
|
1511 |
+
msgstr ""
|
1512 |
+
|
1513 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:338
|
1514 |
+
msgid ""
|
1515 |
+
"\n"
|
1516 |
+
"<p>To add a link alias, fill in the fields and then click “Save "
|
1517 |
+
"Changes.” Once you do so, you can edit your newly masked link or add "
|
1518 |
+
"another one.</p>\n"
|
1519 |
+
"\n"
|
1520 |
+
"<ul>\n"
|
1521 |
+
"\t<li><strong>Actual URL</strong> — This box is where you put your "
|
1522 |
+
"affiliate URL (or other URL that you want to mask).</li>\n"
|
1523 |
+
"\t<li><strong>Alias URL</strong> — This box is where you specify the "
|
1524 |
+
"new URL that will replace the actual one.</li>\n"
|
1525 |
+
"\t<li><strong>Only on This Post</strong> — If you want to mask the "
|
1526 |
+
"actual URL across your entire site, leave this box blank. If you only want "
|
1527 |
+
"to mask the actual URL within an individual post, then type its name into "
|
1528 |
+
"this box and select it from the dropdown.</li>\n"
|
1529 |
+
"\t<li><strong>Delete</strong> — To delete a link mask, tick its “"
|
1530 |
+
"Delete” checkbox and then click “Save Changes.”</li>\n"
|
1531 |
+
"</ul>\n"
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:351
|
1535 |
+
#: modules/titles/titles.php:430
|
1536 |
+
msgid "Settings Tab"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:352
|
1540 |
+
msgid ""
|
1541 |
+
"\n"
|
1542 |
+
"<p>The following options are available on the Settings tab:</p>\n"
|
1543 |
+
"\n"
|
1544 |
+
"<ul>\n"
|
1545 |
+
"\t<li><strong>Alias Directory</strong> — If you’d like, you can "
|
1546 |
+
"change the name of the directory that contains all your alias URLs. "
|
1547 |
+
"(Don’t worry, you won’t break any links by changing this.)</li>\n"
|
1548 |
+
"\t<li><strong>Nofollow masked links</strong> — Checking this will add "
|
1549 |
+
"the <code>rel="nofollow"</code> attribute to any masked links on "
|
1550 |
+
"your site. This makes it super-easy to nofollow all your affiliate links "
|
1551 |
+
"automatically.</li>\n"
|
1552 |
+
"</ul>\n"
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:364
|
1556 |
+
msgid ""
|
1557 |
+
"\n"
|
1558 |
+
"<ul>\n"
|
1559 |
+
"\t<li><strong>Can I automatically link a phrase on my site to one of my "
|
1560 |
+
"alias URLs?</strong><br />Yes. Once you’ve created your link mask, go "
|
1561 |
+
"to Deeplink Juggernaut’s “Content Links” section, type the "
|
1562 |
+
"contents of your link mask’s “Alias URL” field into "
|
1563 |
+
"Deeplink Juggernaut’s “Destination” field, and select your "
|
1564 |
+
"link mask from the dropdown that appears.</li>\n"
|
1565 |
+
"\t<li><strong>Will Link Mask Generator still add the <code>robots.txt</code> "
|
1566 |
+
"rules if I’m using the File Editor module to create a custom "
|
1567 |
+
"<code>robots.txt</code>?</strong><br />Yes.</li>\n"
|
1568 |
+
"</ul>\n"
|
1569 |
+
msgstr ""
|
1570 |
+
|
1571 |
+
#: modules/link-nofollow/link-nofollow.php:12
|
1572 |
+
#: modules/link-nofollow/link-nofollow.php:132
|
1573 |
+
msgid "Nofollow Manager"
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: modules/link-nofollow/link-nofollow.php:57
|
1577 |
+
msgid "Adjacent post links (next post / previous post)"
|
1578 |
+
msgstr ""
|
1579 |
+
|
1580 |
+
#: modules/link-nofollow/link-nofollow.php:58
|
1581 |
+
msgid "Category links (after posts)"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: modules/link-nofollow/link-nofollow.php:59
|
1585 |
+
msgid "Category links (in lists)"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: modules/link-nofollow/link-nofollow.php:60
|
1589 |
+
msgid "Comment anchor links"
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: modules/link-nofollow/link-nofollow.php:61
|
1593 |
+
msgid "Comment feed links"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: modules/link-nofollow/link-nofollow.php:62
|
1597 |
+
msgid "Date-based archive links"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: modules/link-nofollow/link-nofollow.php:63
|
1601 |
+
msgid "Pagination navigation links (all)"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: modules/link-nofollow/link-nofollow.php:64
|
1605 |
+
msgid "Pagination navigation links (on blog home only)"
|
1606 |
+
msgstr ""
|
1607 |
+
|
1608 |
+
#: modules/link-nofollow/link-nofollow.php:65
|
1609 |
+
msgid "“Read more” links"
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#: modules/link-nofollow/link-nofollow.php:66
|
1613 |
+
msgid "Registration link"
|
1614 |
+
msgstr ""
|
1615 |
+
|
1616 |
+
#: modules/link-nofollow/link-nofollow.php:67
|
1617 |
+
msgid "Login link"
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: modules/link-nofollow/link-nofollow.php:68
|
1621 |
+
msgid "Tag links (after posts)"
|
1622 |
+
msgstr ""
|
1623 |
+
|
1624 |
+
#: modules/link-nofollow/link-nofollow.php:69
|
1625 |
+
msgid "Tag links (in lists and clouds)"
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: modules/link-nofollow/link-nofollow.php:70
|
1629 |
+
msgid "Add the nofollow attribute to..."
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: modules/link-nofollow/link-nofollow.php:78
|
1633 |
+
msgid "When displaying page lists, nofollow links to this page"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: modules/link-nofollow/link-nofollow.php:78
|
1637 |
+
msgid "Nofollow:"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: modules/link-nofollow/link-nofollow.php:133
|
1641 |
+
msgid ""
|
1642 |
+
"\n"
|
1643 |
+
"<p>Nofollow Manager adds the <code>rel="nofollow"</code> attribute "
|
1644 |
+
"to types of links that you specify. The <code>rel="nofollow"</"
|
1645 |
+
"code> attribute prevents a link from passing PageRank.</p>\n"
|
1646 |
+
"<p>If you’re migrating to SEO Ultimate from another plugin, Nofollow "
|
1647 |
+
"Manager can help you maintain your existing settings (as part of an “"
|
1648 |
+
"if it ain’t broke don’t fix it” strategy). In other cases, "
|
1649 |
+
"however, we recommend not using the Nofollow Manager because in 2008 Google "
|
1650 |
+
"disabled the ability to use the <code>rel="nofollow"</code> "
|
1651 |
+
"attribute for PageRank sculpting.</p>\n"
|
1652 |
+
msgstr ""
|
1653 |
+
|
1654 |
+
#: modules/linkbox/linkbox.php:12 modules/linkbox/linkbox.php:126
|
1655 |
+
msgid "Linkbox Inserter"
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: modules/linkbox/linkbox.php:21
|
1659 |
+
msgid "Link to this post!"
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
+
#: modules/linkbox/linkbox.php:48
|
1663 |
+
msgid "At the end of posts"
|
1664 |
+
msgstr ""
|
1665 |
+
|
1666 |
+
#: modules/linkbox/linkbox.php:49
|
1667 |
+
msgid "At the end of pages"
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: modules/linkbox/linkbox.php:50
|
1671 |
+
msgid "When called by the su_linkbox hook"
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: modules/linkbox/linkbox.php:51
|
1675 |
+
msgid "Display linkboxes..."
|
1676 |
+
msgstr ""
|
1677 |
+
|
1678 |
+
#: modules/linkbox/linkbox.php:52
|
1679 |
+
msgid "Linkbox HTML"
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: modules/linkbox/linkbox.php:92
|
1683 |
+
msgid ""
|
1684 |
+
"\n"
|
1685 |
+
"<ul>\n"
|
1686 |
+
"\t<li><strong>What it does:</strong> Linkbox Inserter can add linkboxes to "
|
1687 |
+
"your posts/pages.</li>\n"
|
1688 |
+
"\t<li><strong>Why it helps:</strong> Linkboxes contain HTML code that "
|
1689 |
+
"visitors can use to link to your site. This is a great way to encourage SEO-"
|
1690 |
+
"beneficial linking activity.</li>\n"
|
1691 |
+
"\t<li><strong>How to use it:</strong> Use the checkboxes to enable the "
|
1692 |
+
"Linkbox Inserter in various areas of your site. Customize the HTML if "
|
1693 |
+
"desired. Click “Save Changes” when finished.</li>\n"
|
1694 |
+
"</ul>\n"
|
1695 |
+
msgstr ""
|
1696 |
+
|
1697 |
+
#: modules/linkbox/linkbox.php:100
|
1698 |
+
msgid ""
|
1699 |
+
"\n"
|
1700 |
+
"<p>Here’s information on the various settings:</p>\n"
|
1701 |
+
"\n"
|
1702 |
+
"<ul>\n"
|
1703 |
+
"\t<li>\n"
|
1704 |
+
"\t\t<strong>Display linkboxes...</strong>\n"
|
1705 |
+
"\t\t<ul>\n"
|
1706 |
+
"\t\t\t<li><strong>At the end of posts</strong> — Adds the linkbox HTML "
|
1707 |
+
"to the end of all posts (whether they're displayed on the blog homepage, in "
|
1708 |
+
"archives, or by themselves).</li>\n"
|
1709 |
+
"\t\t\t<li><strong>At the end of pages</strong> — Adds the linkbox HTML "
|
1710 |
+
"to the end of all Pages.</li>\n"
|
1711 |
+
"\t\t\t<li><strong>When called by the su_linkbox hook</strong> — For "
|
1712 |
+
"more fine-tuned control over where linkboxes appear, enable this option and "
|
1713 |
+
"add <code><?php do_action('su_linkbox'); ?></code> to your theme. You "
|
1714 |
+
"can also add an ID parameter to display the linkbox of a particular post/"
|
1715 |
+
"page; for example: <code><?php do_action('su_linkbox', 123); ?></code>."
|
1716 |
+
"</li>\n"
|
1717 |
+
"\t\t</ul>\n"
|
1718 |
+
"\t</li>\n"
|
1719 |
+
"\t<li>\n"
|
1720 |
+
"\t\t<strong>HTML</strong> — The HTML that will be outputted to display "
|
1721 |
+
"the linkboxes. The HTML field supports these variables:\n"
|
1722 |
+
"\t\t<ul>\n"
|
1723 |
+
"\t\t\t<li>{id} — The ID of the current post/page, or the ID passed to "
|
1724 |
+
"the action hook call.</li>\n"
|
1725 |
+
"\t\t\t<li>{url} — The permalink URL of the post/page.</li>\n"
|
1726 |
+
"\t\t\t<li>{title} — The title of the post/page.</li>\n"
|
1727 |
+
"\t\t</ul>\n"
|
1728 |
+
"\t</li>\n"
|
1729 |
+
"</ul>\n"
|
1730 |
+
msgstr ""
|
1731 |
+
|
1732 |
+
#: modules/meta/meta-descriptions.php:18
|
1733 |
+
msgid "Meta Description Editor"
|
1734 |
+
msgstr ""
|
1735 |
+
|
1736 |
+
#: modules/meta/meta-descriptions.php:19
|
1737 |
+
msgid "Meta Descriptions"
|
1738 |
+
msgstr ""
|
1739 |
+
|
1740 |
+
#: modules/meta/meta-descriptions.php:30 modules/titles/titles.php:40
|
1741 |
+
msgid "Default Formats"
|
1742 |
+
msgstr ""
|
1743 |
+
|
1744 |
+
#: modules/meta/meta-descriptions.php:37
|
1745 |
+
msgid "Meta Description"
|
1746 |
+
msgstr ""
|
1747 |
+
|
1748 |
+
#: modules/meta/meta-descriptions.php:56
|
1749 |
+
msgid "Post Description Format"
|
1750 |
+
msgstr ""
|
1751 |
+
|
1752 |
+
#: modules/meta/meta-descriptions.php:57
|
1753 |
+
msgid "Page Description Format"
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: modules/meta/meta-descriptions.php:58
|
1757 |
+
msgid "Category Description Format"
|
1758 |
+
msgstr ""
|
1759 |
+
|
1760 |
+
#: modules/meta/meta-descriptions.php:59
|
1761 |
+
msgid "Post Tag Description Format"
|
1762 |
+
msgstr ""
|
1763 |
+
|
1764 |
+
#: modules/meta/meta-descriptions.php:60
|
1765 |
+
msgid "Pagination Description Format"
|
1766 |
+
msgstr ""
|
1767 |
+
|
1768 |
+
#: modules/meta/meta-descriptions.php:68
|
1769 |
+
msgid "Blog Homepage Meta Description"
|
1770 |
+
msgstr ""
|
1771 |
+
|
1772 |
+
#: modules/meta/meta-descriptions.php:70
|
1773 |
+
msgid "Use this blog’s tagline as the default homepage description."
|
1774 |
+
msgstr ""
|
1775 |
+
|
1776 |
+
#: modules/meta/meta-descriptions.php:71
|
1777 |
+
msgid "Default Value"
|
1778 |
+
msgstr ""
|
1779 |
+
|
1780 |
+
#: modules/meta/meta-descriptions.php:174
|
1781 |
+
msgid "Meta Description:"
|
1782 |
+
msgstr ""
|
1783 |
+
|
1784 |
+
#: modules/meta/meta-descriptions.php:177
|
1785 |
+
#, php-format
|
1786 |
+
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
1787 |
+
msgstr ""
|
1788 |
+
|
1789 |
+
#: modules/meta/meta-descriptions.php:184
|
1790 |
+
msgid ""
|
1791 |
+
"<strong>Meta Description</strong> — The value of the meta description "
|
1792 |
+
"tag. The description will often appear underneath the title in search engine "
|
1793 |
+
"results. Writing an accurate, attention-grabbing description for every post "
|
1794 |
+
"is important to ensuring a good search results clickthrough rate."
|
1795 |
+
msgstr ""
|
1796 |
+
|
1797 |
+
#: modules/meta/meta-descriptions.php:193
|
1798 |
+
msgid ""
|
1799 |
+
"\n"
|
1800 |
+
"<ul>\n"
|
1801 |
+
"\t<li><strong>What it does:</strong> Meta Descriptions Editor lets you "
|
1802 |
+
"customize the text that you want to appear under your webpages’ titles "
|
1803 |
+
"in search results.</li>\n"
|
1804 |
+
"\t<li><strong>Why it helps:</strong> Getting ranked isn’t enough; once "
|
1805 |
+
"you're ranked, you need visitors to click on your site in the results. "
|
1806 |
+
"That’s where meta descriptions can help. When you provide text that "
|
1807 |
+
"makes searchers want to visit your site, you can increase your SERP "
|
1808 |
+
"clickthrough rate and thus increase search traffic.</li>\n"
|
1809 |
+
"\t<li><strong>How to use it:</strong> Enter meta descriptions for your "
|
1810 |
+
"homepage, posts, pages, etc. as desired, and then click Save Changes. You "
|
1811 |
+
"can also customize the meta data of an individual post or page by using the "
|
1812 |
+
"textboxes that Meta Editor adds to the post/page editors.</li>\n"
|
1813 |
+
"</ul>\n"
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: modules/meta/meta-descriptions.php:203 modules/meta/meta-keywords.php:194
|
1817 |
+
msgid "Blog Homepage Tab"
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
#: modules/meta/meta-descriptions.php:204
|
1821 |
+
msgid ""
|
1822 |
+
"\n"
|
1823 |
+
"<p>Here’s information on the various settings:</p>\n"
|
1824 |
+
"\n"
|
1825 |
+
"<ul>\n"
|
1826 |
+
"\t<li><strong>Blog Homepage Meta Description</strong> — When your blog "
|
1827 |
+
"homepage appears in search results, it’ll have a title and a "
|
1828 |
+
"description. When you type a description into this box, the Meta Editor will "
|
1829 |
+
"add code to your blog homepage (the <code><meta name=""
|
1830 |
+
"description" /></code> tag) that asks search engines to use what "
|
1831 |
+
"you’ve entered as the homepage’s search results description.</"
|
1832 |
+
"li>\n"
|
1833 |
+
"\t<li><strong>Use this blog’s tagline as the default homepage "
|
1834 |
+
"description.</strong> — If this box is checked and if the Blog "
|
1835 |
+
"Homepage Meta Description field is empty, Meta Editor will use your "
|
1836 |
+
"blog’s tagline as the meta description. You can edit the blog’s "
|
1837 |
+
"tagline under <a href='options-general.php'>Settings ⇒ General</a>.</"
|
1838 |
+
"li>\n"
|
1839 |
+
"</ul>\n"
|
1840 |
+
msgstr ""
|
1841 |
+
|
1842 |
+
#: modules/meta/meta-descriptions.php:216
|
1843 |
+
msgid ""
|
1844 |
+
"\n"
|
1845 |
+
"<ul>\n"
|
1846 |
+
"\t<li><strong>How do I edit the meta description of my homepage?</"
|
1847 |
+
"strong><br />If you have configured your <a href='options-reading."
|
1848 |
+
"php'>Settings ⇒ Reading</a> section to use a “front page” "
|
1849 |
+
"and/or a “posts page,” just edit those pages’s meta "
|
1850 |
+
"descriptions on the “Pages” tab. Otherwise, just use the Blog "
|
1851 |
+
"Homepage field.</li>\n"
|
1852 |
+
"</ul>\n"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: modules/meta/meta-descriptions.php:225
|
1856 |
+
msgid ""
|
1857 |
+
"\n"
|
1858 |
+
"<ul>\n"
|
1859 |
+
"\t<li>\n"
|
1860 |
+
"\t\t<p><strong>What do I do if my site has multiple meta tags?</strong><br /"
|
1861 |
+
">First, try removing your theme’s built-in meta tags if it has them. "
|
1862 |
+
"Go to <a href='theme-editor.php' target='_blank'>Appearance ⇒ Editor</"
|
1863 |
+
"a> and edit <code>header.php</code>. Delete or comment-out any <code><"
|
1864 |
+
"meta></code> tags.</p>\n"
|
1865 |
+
"\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
|
1866 |
+
"generating meta tags.</p>\n"
|
1867 |
+
"\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
|
1868 |
+
"ultimate'>Settings ⇒ SEO Ultimate</a> and enable the “Identify "
|
1869 |
+
"the plugin’s HTML code insertions with HTML comment tags” "
|
1870 |
+
"option. This will mark SEO Ultimate’s meta tags with comments, "
|
1871 |
+
"allowing you to see which meta tags are generated by SEO Ultimate and which "
|
1872 |
+
"aren’t.</p>\n"
|
1873 |
+
"\t</li>\n"
|
1874 |
+
"</ul>\n"
|
1875 |
+
msgstr ""
|
1876 |
+
|
1877 |
+
#: modules/meta/meta-keywords.php:18
|
1878 |
+
msgid "Meta Keywords Editor"
|
1879 |
+
msgstr ""
|
1880 |
+
|
1881 |
+
#: modules/meta/meta-keywords.php:19 modules/meta/meta-keywords.php:46
|
1882 |
+
msgid "Meta Keywords"
|
1883 |
+
msgstr ""
|
1884 |
+
|
1885 |
+
#: modules/meta/meta-keywords.php:38 modules/meta/meta-robots.php:22
|
1886 |
+
#: modules/opengraph/opengraph.php:377
|
1887 |
+
msgid "Sitewide Values"
|
1888 |
+
msgstr ""
|
1889 |
+
|
1890 |
+
#: modules/meta/meta-keywords.php:39 modules/noindex/noindex.php:50
|
1891 |
+
#: modules/opengraph/opengraph.php:378
|
1892 |
+
msgid "Default Values"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: modules/meta/meta-keywords.php:53
|
1896 |
+
msgid "Sitewide Keywords"
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: modules/meta/meta-keywords.php:53
|
1900 |
+
msgid "(Separate with commas)"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: modules/meta/meta-keywords.php:68
|
1904 |
+
#, php-format
|
1905 |
+
msgid "The %d most commonly-used words"
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: modules/meta/meta-keywords.php:86
|
1909 |
+
msgid "Blog Homepage Meta Keywords"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: modules/meta/meta-keywords.php:170
|
1913 |
+
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
1914 |
+
msgstr ""
|
1915 |
+
|
1916 |
+
#: modules/meta/meta-keywords.php:179
|
1917 |
+
msgid ""
|
1918 |
+
"\n"
|
1919 |
+
"<p>Meta Keywords Editor lets you tell search engines what keywords are "
|
1920 |
+
"associated with the various pages on your site. Modern search engines "
|
1921 |
+
"don’t give meta keywords much weight, if any at all, but the option is "
|
1922 |
+
"there if you want to use it.</p>\n"
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: modules/meta/meta-keywords.php:185 modules/meta/meta-robots.php:63
|
1926 |
+
msgid "Sitewide Settings Tab"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: modules/meta/meta-keywords.php:186
|
1930 |
+
msgid ""
|
1931 |
+
"\n"
|
1932 |
+
"<ul>\n"
|
1933 |
+
"\t<li><strong>Sitewide Keywords</strong> — Here you can enter keywords "
|
1934 |
+
"that describe the overall subject matter of your entire blog. Use commas to "
|
1935 |
+
"separate keywords. These keywords will be put in the <code>>meta "
|
1936 |
+
"name="keywords" /></code> tags of all webpages on the site "
|
1937 |
+
"(homepage, posts, pages, archives, etc.).</li>\n"
|
1938 |
+
"</ul>\n"
|
1939 |
+
msgstr ""
|
1940 |
+
|
1941 |
+
#: modules/meta/meta-keywords.php:195
|
1942 |
+
msgid ""
|
1943 |
+
"\n"
|
1944 |
+
"<ul>\n"
|
1945 |
+
"\t<li><strong>Blog Homepage Meta Keywords</strong> — These keywords "
|
1946 |
+
"will be applied only to the <em>blog</em> homepage. Note that if you’"
|
1947 |
+
"ve specified a “front page” under <a href='options-reading."
|
1948 |
+
"php'>Settings ⇒ Reading</a>, you’ll need to edit your frontpage "
|
1949 |
+
"and set your frontpage keywords there.</li>\n"
|
1950 |
+
"</ul>\n"
|
1951 |
+
msgstr ""
|
1952 |
+
|
1953 |
+
#: modules/meta/meta-keywords.php:204
|
1954 |
+
msgid ""
|
1955 |
+
"\n"
|
1956 |
+
"<ul>\n"
|
1957 |
+
"\t<li><strong>How do I edit the meta keywords of my homepage?</strong><br /"
|
1958 |
+
">If you have configured your <a href='options-reading.php'>Settings ⇒ "
|
1959 |
+
"Reading</a> section to use a “front page” and/or a “posts "
|
1960 |
+
"page,” just edit those pages’s meta keywords on the “"
|
1961 |
+
"Pages” tab. Otherwise, just use the Blog Homepage field.</li>\n"
|
1962 |
+
"\t<li><strong>What happens if I add a global keyword that I previously "
|
1963 |
+
"assigned to individual posts or pages?</strong><br />Don’t worry; Meta "
|
1964 |
+
"Keywords Editor will remove duplicate keywords automatically.</li>\n"
|
1965 |
+
"</ul>\n"
|
1966 |
+
msgstr ""
|
1967 |
+
|
1968 |
+
#: modules/meta/meta-keywords.php:214 modules/meta/meta-robots.php:103
|
1969 |
+
msgid ""
|
1970 |
+
"\n"
|
1971 |
+
"<ul>\n"
|
1972 |
+
"\t<li>\n"
|
1973 |
+
"\t\t<p><strong>What do I do if my site has multiple meta tags?</strong><br /"
|
1974 |
+
">First, try removing your theme’s built-in meta tags if it has them. "
|
1975 |
+
"Go to <a href='theme-editor.php' target='_blank'>Appearance ⇒ Editor</"
|
1976 |
+
"a> and edit <code>header.php</code>. Delete or comment-out any <code><"
|
1977 |
+
"meta></code> tags.</p>\n"
|
1978 |
+
"\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
|
1979 |
+
"generating meta tags.</p>\n"
|
1980 |
+
"\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
|
1981 |
+
"ultimate'>Settings ⇒ SEO Ultimate</a> and enable the “Insert "
|
1982 |
+
"comments around HTML code insertions” option. This will mark SEO "
|
1983 |
+
"Ultimate’s meta tags with comments, allowing you to see which meta "
|
1984 |
+
"tags are generated by SEO Ultimate and which aren’t.</p>\n"
|
1985 |
+
"\t</li>\n"
|
1986 |
+
"</ul>\n"
|
1987 |
+
msgstr ""
|
1988 |
+
|
1989 |
+
#: modules/meta/meta-robots.php:12
|
1990 |
+
msgid "Meta Robot Tags Editor"
|
1991 |
+
msgstr ""
|
1992 |
+
|
1993 |
+
#: modules/meta/meta-robots.php:13
|
1994 |
+
msgid "Meta Robot Tags"
|
1995 |
+
msgstr ""
|
1996 |
+
|
1997 |
+
#: modules/meta/meta-robots.php:29
|
1998 |
+
msgid ""
|
1999 |
+
"Don’t use this site’s Open Directory description in search results."
|
2000 |
+
msgstr ""
|
2001 |
+
|
2002 |
+
#: modules/meta/meta-robots.php:30
|
2003 |
+
msgid ""
|
2004 |
+
"Don’t use this site’s Yahoo! Directory description in search "
|
2005 |
+
"results."
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: modules/meta/meta-robots.php:31
|
2009 |
+
msgid "Don’t cache or archive this site."
|
2010 |
+
msgstr ""
|
2011 |
+
|
2012 |
+
#: modules/meta/meta-robots.php:32
|
2013 |
+
msgid "Spider Instructions"
|
2014 |
+
msgstr ""
|
2015 |
+
|
2016 |
+
#: modules/meta/meta-robots.php:53
|
2017 |
+
msgid ""
|
2018 |
+
"\n"
|
2019 |
+
"<ul>\n"
|
2020 |
+
"\t<li><strong>What it does:</strong> Meta Robot Tags Editor lets you convey "
|
2021 |
+
"instructions to search engine spiders, as well as prohibit the spiders from "
|
2022 |
+
"indexing certain webpages on your blog using the <code><meta name=""
|
2023 |
+
"robots" content="noindex" /></code> tag.</li>\n"
|
2024 |
+
"\t<li><strong>Why it helps:</strong> The “Global” tab lets you "
|
2025 |
+
"stop DMOZ or Yahoo! Directory from overriding your custom meta descriptions, "
|
2026 |
+
"as well as prevent spiders from caching your site if you so desire. The "
|
2027 |
+
"“Default Values” tab lets you deindex entire sections of your "
|
2028 |
+
"site that contain content unimportant to visitors (e.g. the administration "
|
2029 |
+
"section), or sections of your site that mostly contain duplicate content (e."
|
2030 |
+
"g. date archives). The editor tabs can do something similar, but for "
|
2031 |
+
"individual content items. By removing webpages from search results that "
|
2032 |
+
"visitors find unhelpful, you can help increase the focus on your more useful "
|
2033 |
+
"content.</li>\n"
|
2034 |
+
"\t<li><strong>How to use it:</strong> Adjust the settings as desired, and "
|
2035 |
+
"then click Save Changes. You can refer to the “Settings Help” "
|
2036 |
+
"tab for information on the settings available. You can also use the editor "
|
2037 |
+
"tabs to deindex individual content items on your site as well as enable the "
|
2038 |
+
"“nofollow” meta parameter that will nullify all outgoing links "
|
2039 |
+
"on a specific webpage.</li>\n"
|
2040 |
+
"</ul>\n"
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: modules/meta/meta-robots.php:64
|
2044 |
+
msgid ""
|
2045 |
+
"\n"
|
2046 |
+
"<ul>\n"
|
2047 |
+
"\t<li><strong>Don’t use this site’s Open Directory / Yahoo! "
|
2048 |
+
"Directory description in search results</strong> — If your site is "
|
2049 |
+
"listed in the <a href='http://www.dmoz.org/' target='_blank'>Open Directory "
|
2050 |
+
"(DMOZ)</a> or the <a href='http://dir.yahoo.com/' target='_blank'>Yahoo! "
|
2051 |
+
"Directory</a>, some search engines may use your directory listing as the "
|
2052 |
+
"meta description. These boxes tell search engines not to do that and will "
|
2053 |
+
"give you full control over your meta descriptions. These settings have no "
|
2054 |
+
"effect if your site isn’t listed in the Open Directory or Yahoo! "
|
2055 |
+
"Directory respectively.</li>\n"
|
2056 |
+
"\t<li><strong>Don’t cache or archive this site</strong> — When "
|
2057 |
+
"you check this box, Meta Editor will ask search engines (Google, Yahoo!, "
|
2058 |
+
"Bing, etc.) and archivers (Archive.org, etc.) to <em>not</em> make cached or "
|
2059 |
+
"archived “copies” of your site.</li>\n"
|
2060 |
+
"</ul>\n"
|
2061 |
+
msgstr ""
|
2062 |
+
|
2063 |
+
#: modules/meta/meta-robots.php:73
|
2064 |
+
msgid "Default Values Tab"
|
2065 |
+
msgstr ""
|
2066 |
+
|
2067 |
+
#: modules/meta/meta-robots.php:74
|
2068 |
+
msgid ""
|
2069 |
+
"\n"
|
2070 |
+
"<p><strong>Prevent indexing of…</strong></p>\n"
|
2071 |
+
"<ul>\n"
|
2072 |
+
"\t<li><strong>Administration back-end pages</strong> — Tells spiders "
|
2073 |
+
"not to index the administration area (the part you’re in now), in the "
|
2074 |
+
"unlikely event a spider somehow gains access to the administration. "
|
2075 |
+
"Recommended.</li>\n"
|
2076 |
+
"\t<li><strong>Author archives</strong> — Tells spiders not to index "
|
2077 |
+
"author archives. Useful if your blog only has one author.</li>\n"
|
2078 |
+
"\t<li><strong>Blog search pages</strong> — Tells spiders not to index "
|
2079 |
+
"the result pages of WordPress's blog search function. Recommended.</li>\n"
|
2080 |
+
"\t<li><strong>Category archives</strong> — Tells spiders not to index "
|
2081 |
+
"category archives. Recommended only if you don't use categories.</li>\n"
|
2082 |
+
"\t<li><strong>Comment feeds</strong> — Tells spiders not to index the "
|
2083 |
+
"RSS feeds that exist for every post's comments. (These comment feeds are "
|
2084 |
+
"totally separate from your normal blog feeds.)</li>\n"
|
2085 |
+
"\t<li><strong>Comment subpages</strong> — Tells spiders not to index "
|
2086 |
+
"posts' comment subpages.</li>\n"
|
2087 |
+
"\t<li><strong>Date-based archives</strong> — Tells spiders not to "
|
2088 |
+
"index day/month/year archives. Recommended, since these pages have little "
|
2089 |
+
"keyword value.</li>\n"
|
2090 |
+
"\t<li><strong>Subpages of the homepage</strong> — Tells spiders not to "
|
2091 |
+
"index the homepage's subpages (page 2, page 3, etc). Recommended.</li>\n"
|
2092 |
+
"\t<li><strong>Tag archives</strong> — Tells spiders not to index tag "
|
2093 |
+
"archives. Recommended only if you don't use tags.</li>\n"
|
2094 |
+
"\t<li><strong>User login/registration pages</strong> — Tells spiders "
|
2095 |
+
"not to index WordPress's user login and registration pages. Recommended.</"
|
2096 |
+
"li>\n"
|
2097 |
+
"</ul>\n"
|
2098 |
+
msgstr ""
|
2099 |
+
|
2100 |
+
#: modules/meta/meta-robots.php:92
|
2101 |
+
msgid "Bulk Editor Tabs"
|
2102 |
+
msgstr ""
|
2103 |
+
|
2104 |
+
#: modules/meta/meta-robots.php:93
|
2105 |
+
msgid ""
|
2106 |
+
"\n"
|
2107 |
+
"<ul>\n"
|
2108 |
+
"\t<li><strong>Noindex</strong> — Checking this for an item will ask "
|
2109 |
+
"search engines to remove that item’s webpage from their indices. Use "
|
2110 |
+
"this to remove pages that you don’t want showing up in search results "
|
2111 |
+
"(such as a Privacy Policy page, for example).</li>\n"
|
2112 |
+
"\t<li><strong>Nofollow</strong> — Checking this for an item will tell "
|
2113 |
+
"search engines to ignore the links to other webpages that are on that "
|
2114 |
+
"item’s webpage. Note: this is page-level “meta nofollow,” "
|
2115 |
+
"not to be confused with link-level “rel nofollow.”</li>\n"
|
2116 |
+
"</ul>\n"
|
2117 |
+
msgstr ""
|
2118 |
+
|
2119 |
+
#: modules/meta/webmaster-verify.php:12 modules/meta/webmaster-verify.php:93
|
2120 |
+
msgid "Webmaster Verification Assistant"
|
2121 |
+
msgstr ""
|
2122 |
+
|
2123 |
+
#: modules/meta/webmaster-verify.php:13
|
2124 |
+
msgid "W.M. Verification"
|
2125 |
+
msgstr ""
|
2126 |
+
|
2127 |
+
#: modules/meta/webmaster-verify.php:25
|
2128 |
+
msgid "Google Webmaster Tools"
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: modules/meta/webmaster-verify.php:28
|
2132 |
+
msgid "Bing Webmaster Center"
|
2133 |
+
msgstr ""
|
2134 |
+
|
2135 |
+
#: modules/meta/webmaster-verify.php:55
|
2136 |
+
msgid "Webmaster Portal"
|
2137 |
+
msgstr ""
|
2138 |
+
|
2139 |
+
#: modules/meta/webmaster-verify.php:56
|
2140 |
+
msgid "Meta Tag"
|
2141 |
+
msgstr ""
|
2142 |
+
|
2143 |
+
#: modules/meta/webmaster-verify.php:82
|
2144 |
+
msgid ""
|
2145 |
+
"\n"
|
2146 |
+
"<ul>\n"
|
2147 |
+
"\t<li><strong>What it does:</strong> Webmaster Verification Assistant lets "
|
2148 |
+
"you enter in verification codes for the webmaster portals of leading search "
|
2149 |
+
"engines.</li>\n"
|
2150 |
+
"\t<li><strong>Why it helps:</strong> Webmaster Verification Assistant "
|
2151 |
+
"assists you in obtaining access to webmaster portals, which can provide you "
|
2152 |
+
"with valuable SEO tools.</li>\n"
|
2153 |
+
"\t<li><strong>How to use it:</strong> Use a search engine to locate the "
|
2154 |
+
"webmaster portal you’re interested in, sign up at the portal, and then "
|
2155 |
+
"obtain a verification code. Once you have the code, you can paste it in "
|
2156 |
+
"here, click Save Changes, then return to the portal to verify that you own "
|
2157 |
+
"the site. Once that’s done, you'll have access to the portal’s "
|
2158 |
+
"SEO tools.</li>\n"
|
2159 |
+
"</ul>\n"
|
2160 |
+
msgstr ""
|
2161 |
+
|
2162 |
+
#: modules/misc/misc.php:11 modules/misc/misc.php:12
|
2163 |
+
#: plugin/class.seo-ultimate.php:1567
|
2164 |
+
msgid "Miscellaneous"
|
2165 |
+
msgstr ""
|
2166 |
+
|
2167 |
+
#: modules/misc/misc.php:21
|
2168 |
+
msgid ""
|
2169 |
+
"The Miscellaneous page contains modules that don’t have enough "
|
2170 |
+
"settings to warrant their own separate admin pages."
|
2171 |
+
msgstr ""
|
2172 |
+
|
2173 |
+
#: modules/modules/modules.php:12
|
2174 |
+
msgid "Module Manager"
|
2175 |
+
msgstr ""
|
2176 |
+
|
2177 |
+
#: modules/modules/modules.php:13
|
2178 |
+
msgid "Modules"
|
2179 |
+
msgstr ""
|
2180 |
+
|
2181 |
+
#: modules/modules/modules.php:53
|
2182 |
+
msgid ""
|
2183 |
+
"SEO Ultimate’s features are located in groups called “modules."
|
2184 |
+
"” By default, most of these modules are listed in the “"
|
2185 |
+
"SEO” menu on the left. Whenever you’re working with a module, "
|
2186 |
+
"you can view documentation by clicking the “Help” tab in the "
|
2187 |
+
"upper-right-hand corner of your administration screen."
|
2188 |
+
msgstr ""
|
2189 |
+
|
2190 |
+
#: modules/modules/modules.php:55
|
2191 |
+
msgid ""
|
2192 |
+
"The Module Manager lets you disable or hide modules you don’t use. "
|
2193 |
+
"You can also silence modules from displaying bubble alerts on the menu."
|
2194 |
+
msgstr ""
|
2195 |
+
|
2196 |
+
#: modules/modules/modules.php:59
|
2197 |
+
msgid "Modules updated."
|
2198 |
+
msgstr ""
|
2199 |
+
|
2200 |
+
#: modules/modules/modules.php:64
|
2201 |
+
msgid "Status"
|
2202 |
+
msgstr ""
|
2203 |
+
|
2204 |
+
#: modules/modules/modules.php:65
|
2205 |
+
msgid "Module"
|
2206 |
+
msgstr ""
|
2207 |
+
|
2208 |
+
#: modules/modules/modules.php:85
|
2209 |
+
msgid "Enabled"
|
2210 |
+
msgstr ""
|
2211 |
+
|
2212 |
+
#: modules/modules/modules.php:86
|
2213 |
+
msgid "Silenced"
|
2214 |
+
msgstr ""
|
2215 |
+
|
2216 |
+
#: modules/modules/modules.php:87
|
2217 |
+
msgid "Hidden"
|
2218 |
+
msgstr ""
|
2219 |
+
|
2220 |
+
#: modules/modules/modules.php:88
|
2221 |
+
msgid "Disabled"
|
2222 |
+
msgstr ""
|
2223 |
+
|
2224 |
+
#: modules/modules/modules.php:210
|
2225 |
+
msgid "Options Help"
|
2226 |
+
msgstr ""
|
2227 |
+
|
2228 |
+
#: modules/modules/modules.php:211
|
2229 |
+
msgid ""
|
2230 |
+
"\n"
|
2231 |
+
"<p>SEO Ultimate’s features are located in groups called “modules."
|
2232 |
+
"” By default, most of these modules are listed in the “"
|
2233 |
+
"SEO” menu on the left.</p>\n"
|
2234 |
+
"<p>The Module Manager lets you customize the visibility and accessibility of "
|
2235 |
+
"each module; here are the options available:</p>\n"
|
2236 |
+
"<ul>\n"
|
2237 |
+
"\t<li><strong>Enabled</strong> — The default option. The module will "
|
2238 |
+
"be fully enabled and accessible.</li>\n"
|
2239 |
+
"\t<li><strong>Silenced</strong> — The module will be enabled and "
|
2240 |
+
"accessible, but it won't be allowed to display numeric bubble alerts on the "
|
2241 |
+
"menu.</li>\n"
|
2242 |
+
"\t<li><strong>Hidden</strong> — The module's functionality will be "
|
2243 |
+
"enabled, but the module won't be visible on the SEO menu. You will still be "
|
2244 |
+
"able to access the module's admin page by clicking on its title in the "
|
2245 |
+
"Module Manager table.</li>\n"
|
2246 |
+
"\t<li><strong>Disabled</strong> — The module will be completely "
|
2247 |
+
"disabled and inaccessible.</li>\n"
|
2248 |
+
"</ul>\n"
|
2249 |
+
msgstr ""
|
2250 |
+
|
2251 |
+
#: modules/modules/modules.php:225
|
2252 |
+
msgid ""
|
2253 |
+
"\n"
|
2254 |
+
"<ul>\n"
|
2255 |
+
"\t<li><strong>What are modules?</strong><br />SEO Ultimate’s features "
|
2256 |
+
"are divided into groups called “modules.” SEO Ultimate’s "
|
2257 |
+
"“Module Manager” lets you enable or disable each of these groups "
|
2258 |
+
"of features. This way, you can pick-and-choose which SEO Ultimate features "
|
2259 |
+
"you want.</li>\n"
|
2260 |
+
"\t<li><strong>Can I access a module again after I’ve hidden it?</"
|
2261 |
+
"strong><br />Yes. Just go to the Module Manager and click the module’s "
|
2262 |
+
"title to open its admin page. If you’d like to put the module back in "
|
2263 |
+
"the “SEO” menu, just re-enable the module in the Module Manager "
|
2264 |
+
"and click “Save Changes.”</li>\n"
|
2265 |
+
"\t<li><strong>How do I disable the number bubbles on the “SEO” "
|
2266 |
+
"menu?</strong><br />Just go to the Module Manager and select the “"
|
2267 |
+
"Silenced” option for any modules generating number bubbles. Then click "
|
2268 |
+
"“Save Changes.”</li>\n"
|
2269 |
+
"</ul>\n"
|
2270 |
+
msgstr ""
|
2271 |
+
|
2272 |
+
#: modules/more-links/more-links.php:12 modules/more-links/more-links.php:102
|
2273 |
+
msgid "More Link Customizer"
|
2274 |
+
msgstr ""
|
2275 |
+
|
2276 |
+
#: modules/more-links/more-links.php:30
|
2277 |
+
msgid "Default More Link Text"
|
2278 |
+
msgstr ""
|
2279 |
+
|
2280 |
+
#: modules/more-links/more-links.php:51
|
2281 |
+
msgid "Anchor Text of “More” Link:"
|
2282 |
+
msgstr ""
|
2283 |
+
|
2284 |
+
#: modules/more-links/more-links.php:75
|
2285 |
+
msgid ""
|
2286 |
+
"\n"
|
2287 |
+
"<ul>\n"
|
2288 |
+
"\t<li><strong>What it does:</strong> More Link Customizer lets you modify "
|
2289 |
+
"the anchor text of your posts’ <a href='http://codex.wordpress.org/"
|
2290 |
+
"Customizing_the_Read_More' target='_blank'>“more” links</a>.</"
|
2291 |
+
"li>\n"
|
2292 |
+
"\t<li><strong>Why it helps:</strong> On the typical WordPress setup, the "
|
2293 |
+
"“more link” always has the same anchor text (e.g. “Read "
|
2294 |
+
"more of this entry”). Since internal anchor text conveys web page "
|
2295 |
+
"topicality to search engines, the “read more” phrase isn’t "
|
2296 |
+
"a desirable anchor phrase. More Link Customizer lets you replace the "
|
2297 |
+
"boilerplate text with a new anchor that, by default, integrates your post "
|
2298 |
+
"titles (which will ideally be keyword-oriented).</li>\n"
|
2299 |
+
"\t<li><strong>How to use it:</strong> On this page you can set the anchor "
|
2300 |
+
"text you’d like to use by default. The <code>{post}</code> variable "
|
2301 |
+
"will be replaced with the post’s title. HTML and encoded entities are "
|
2302 |
+
"supported. If instead you decide that you’d like to use the default "
|
2303 |
+
"anchor text specified by your currently-active theme, just erase the "
|
2304 |
+
"contents of the textbox. The anchor text can be overridden on a per-post "
|
2305 |
+
"basis via the “More Link Text” box in the “SEO "
|
2306 |
+
"Settings” section of the WordPress post editor.</li>\n"
|
2307 |
+
"</ul>\n"
|
2308 |
+
msgstr ""
|
2309 |
+
|
2310 |
+
#: modules/more-links/more-links.php:83
|
2311 |
+
msgid ""
|
2312 |
+
"\n"
|
2313 |
+
"<ul>\n"
|
2314 |
+
"\t<li>\n"
|
2315 |
+
"\t\t<p><strong>Why is the More Link Customizer an improvement over "
|
2316 |
+
"WordPress’s built-in functionality?</strong><br />Although WordPress "
|
2317 |
+
"does allow basic <a href='http://codex.wordpress.org/"
|
2318 |
+
"Customizing_the_Read_More#Having_a_custom_text_for_each_post' "
|
2319 |
+
"target='_blank'>custom “more” anchors</a>, the SEO Ultimate "
|
2320 |
+
"approach has several benefits:</p>\n"
|
2321 |
+
"\t\t<ul>\n"
|
2322 |
+
"\t\t\t<li>More Link Customizer (MLC) lets you set a custom default anchor "
|
2323 |
+
"text. WordPress, on the other hand, leaves this up to the currently-active "
|
2324 |
+
"theme.</li>\n"
|
2325 |
+
"\t\t\t<li>MLC lets you dynamically incorporate the post’s title into "
|
2326 |
+
"the anchor text.</li>\n"
|
2327 |
+
"\t\t\t<li>MLC lets you include HTML tags in your anchor, whereas WordPress "
|
2328 |
+
"strips these out.</li>\n"
|
2329 |
+
"\t\t\t<li>MLC’s functionality is much more prominent than "
|
2330 |
+
"WordPress’s unintuitive, barely-documented approach.</li>\n"
|
2331 |
+
"\t\t\t<li>Unlike WordPress's method, MLC doesn't require you to utilize the "
|
2332 |
+
"HTML editor.</li>\n"
|
2333 |
+
"\t\t</ul>\n"
|
2334 |
+
"\t\t<p>If you’ve already specified custom anchors via WordPress’"
|
2335 |
+
"s method, SEO Ultimate will import those anchors automatically into the More "
|
2336 |
+
"Link Customizer.</p>\n"
|
2337 |
+
"\t</li>\n"
|
2338 |
+
"</ul>\n"
|
2339 |
+
msgstr ""
|
2340 |
+
|
2341 |
+
#: modules/noindex/noindex.php:19
|
2342 |
+
msgid "Noindex Manager"
|
2343 |
+
msgstr ""
|
2344 |
+
|
2345 |
+
#: modules/noindex/noindex.php:20 modules/noindex/noindex.php:56
|
2346 |
+
#: modules/noindex/noindex.php:74
|
2347 |
+
msgid "Noindex"
|
2348 |
+
msgstr ""
|
2349 |
+
|
2350 |
+
#: modules/noindex/noindex.php:69 modules/noindex/noindex.php:80
|
2351 |
+
#: modules/opengraph/opengraph.php:348 modules/opengraph/opengraph.php:479
|
2352 |
+
#: modules/opengraph/opengraph.php:480
|
2353 |
+
msgid "Use default"
|
2354 |
+
msgstr ""
|
2355 |
+
|
2356 |
+
#: modules/noindex/noindex.php:70
|
2357 |
+
msgid "noindex"
|
2358 |
+
msgstr ""
|
2359 |
+
|
2360 |
+
#: modules/noindex/noindex.php:71
|
2361 |
+
msgid "index"
|
2362 |
+
msgstr ""
|
2363 |
+
|
2364 |
+
#: modules/noindex/noindex.php:81
|
2365 |
+
msgid "nofollow"
|
2366 |
+
msgstr ""
|
2367 |
+
|
2368 |
+
#: modules/noindex/noindex.php:82
|
2369 |
+
msgid "follow"
|
2370 |
+
msgstr ""
|
2371 |
+
|
2372 |
+
#: modules/noindex/noindex.php:96
|
2373 |
+
msgid ""
|
2374 |
+
"Note: The <a href=\"options-reading.php\">“discourage search "
|
2375 |
+
"engines” checkbox</a> will block indexing of the entire site, "
|
2376 |
+
"regardless of which options are set below."
|
2377 |
+
msgstr ""
|
2378 |
+
|
2379 |
+
#: modules/noindex/noindex.php:99
|
2380 |
+
msgid "Prevent indexing of..."
|
2381 |
+
msgstr ""
|
2382 |
+
|
2383 |
+
#: modules/noindex/noindex.php:100
|
2384 |
+
msgid "Administration back-end pages"
|
2385 |
+
msgstr ""
|
2386 |
+
|
2387 |
+
#: modules/noindex/noindex.php:101
|
2388 |
+
msgid "Author archives"
|
2389 |
+
msgstr ""
|
2390 |
+
|
2391 |
+
#: modules/noindex/noindex.php:102
|
2392 |
+
msgid "Blog search pages"
|
2393 |
+
msgstr ""
|
2394 |
+
|
2395 |
+
#: modules/noindex/noindex.php:103
|
2396 |
+
msgid "Category archives"
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: modules/noindex/noindex.php:104
|
2400 |
+
msgid "Comment feeds"
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: modules/noindex/noindex.php:105
|
2404 |
+
msgid "Comment subpages"
|
2405 |
+
msgstr ""
|
2406 |
+
|
2407 |
+
#: modules/noindex/noindex.php:106
|
2408 |
+
msgid "Date-based archives"
|
2409 |
+
msgstr ""
|
2410 |
+
|
2411 |
+
#: modules/noindex/noindex.php:107
|
2412 |
+
msgid "Subpages of the homepage"
|
2413 |
+
msgstr ""
|
2414 |
+
|
2415 |
+
#: modules/noindex/noindex.php:108
|
2416 |
+
msgid "Tag archives"
|
2417 |
+
msgstr ""
|
2418 |
+
|
2419 |
+
#: modules/noindex/noindex.php:109
|
2420 |
+
msgid "User login/registration pages"
|
2421 |
+
msgstr ""
|
2422 |
+
|
2423 |
+
#: modules/noindex/noindex.php:172
|
2424 |
+
msgid "Noindex: Tell search engines not to index this webpage."
|
2425 |
+
msgstr ""
|
2426 |
+
|
2427 |
+
#: modules/noindex/noindex.php:173
|
2428 |
+
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
2429 |
+
msgstr ""
|
2430 |
+
|
2431 |
+
#: modules/noindex/noindex.php:174
|
2432 |
+
msgid "Meta Robots Tag:"
|
2433 |
+
msgstr ""
|
2434 |
+
|
2435 |
+
#: modules/opengraph/opengraph.php:15
|
2436 |
+
msgid "Open Graph Integrator"
|
2437 |
+
msgstr ""
|
2438 |
+
|
2439 |
+
#: modules/opengraph/opengraph.php:16
|
2440 |
+
msgid "Open Graph"
|
2441 |
+
msgstr ""
|
2442 |
+
|
2443 |
+
#: modules/opengraph/opengraph.php:350
|
2444 |
+
msgid "Type"
|
2445 |
+
msgstr ""
|
2446 |
+
|
2447 |
+
#: modules/opengraph/opengraph.php:355
|
2448 |
+
msgid "Title"
|
2449 |
+
msgstr ""
|
2450 |
+
|
2451 |
+
#: modules/opengraph/opengraph.php:360
|
2452 |
+
msgid "Description"
|
2453 |
+
msgstr ""
|
2454 |
+
|
2455 |
+
#: modules/opengraph/opengraph.php:365
|
2456 |
+
msgid "Image"
|
2457 |
+
msgstr ""
|
2458 |
+
|
2459 |
+
#: modules/opengraph/opengraph.php:388
|
2460 |
+
msgid "Site Name"
|
2461 |
+
msgstr ""
|
2462 |
+
|
2463 |
+
#: modules/opengraph/opengraph.php:389
|
2464 |
+
msgid "Facebook App ID"
|
2465 |
+
msgstr ""
|
2466 |
+
|
2467 |
+
#: modules/opengraph/opengraph.php:390
|
2468 |
+
msgid "@username of website"
|
2469 |
+
msgstr ""
|
2470 |
+
|
2471 |
+
#: modules/opengraph/opengraph.php:391
|
2472 |
+
msgid "Same as twitter:site, but the user’s Twitter ID"
|
2473 |
+
msgstr ""
|
2474 |
+
|
2475 |
+
#: modules/opengraph/opengraph.php:392
|
2476 |
+
msgid "@username of content creator"
|
2477 |
+
msgstr ""
|
2478 |
+
|
2479 |
+
#: modules/opengraph/opengraph.php:393
|
2480 |
+
msgid "Twitter user ID of content creator"
|
2481 |
+
msgstr ""
|
2482 |
+
|
2483 |
+
#: modules/opengraph/opengraph.php:394
|
2484 |
+
msgid "Description of content (maximum 200 characters)"
|
2485 |
+
msgstr ""
|
2486 |
+
|
2487 |
+
#: modules/opengraph/opengraph.php:395
|
2488 |
+
msgid "Title of content (maximum 70 characters)"
|
2489 |
+
msgstr ""
|
2490 |
+
|
2491 |
+
#: modules/opengraph/opengraph.php:396
|
2492 |
+
msgid "URL of image to use in the card. Image must be less than 1MB in size."
|
2493 |
+
msgstr ""
|
2494 |
+
|
2495 |
+
#: modules/opengraph/opengraph.php:397
|
2496 |
+
msgid "Width of image in pixels"
|
2497 |
+
msgstr ""
|
2498 |
+
|
2499 |
+
#: modules/opengraph/opengraph.php:398
|
2500 |
+
msgid "Height of image in pixels"
|
2501 |
+
msgstr ""
|
2502 |
+
|
2503 |
+
#: modules/opengraph/opengraph.php:399
|
2504 |
+
msgid ""
|
2505 |
+
"Top customizable data field, can be a relatively short string (ie \"$3.99\")"
|
2506 |
+
msgstr ""
|
2507 |
+
|
2508 |
+
#: modules/opengraph/opengraph.php:400 modules/opengraph/opengraph.php:402
|
2509 |
+
msgid ""
|
2510 |
+
"Customizable label or units for the information in twitter:data1 (best "
|
2511 |
+
"practice: use all caps)"
|
2512 |
+
msgstr ""
|
2513 |
+
|
2514 |
+
#: modules/opengraph/opengraph.php:401
|
2515 |
+
msgid ""
|
2516 |
+
"Bottom customizable data field, can be a relatively short string (ie "
|
2517 |
+
"\"Seattle, WA\")"
|
2518 |
+
msgstr ""
|
2519 |
+
|
2520 |
+
#: modules/opengraph/opengraph.php:403
|
2521 |
+
msgid "1st image in the gallery. Images must be less than 1MB in size."
|
2522 |
+
msgstr ""
|
2523 |
+
|
2524 |
+
#: modules/opengraph/opengraph.php:404
|
2525 |
+
msgid "2nd image in the gallery. Images must be less than 1MB in size."
|
2526 |
+
msgstr ""
|
2527 |
+
|
2528 |
+
#: modules/opengraph/opengraph.php:405
|
2529 |
+
msgid "3rd image in the gallery. Images must be less than 1MB in size."
|
2530 |
+
msgstr ""
|
2531 |
+
|
2532 |
+
#: modules/opengraph/opengraph.php:406
|
2533 |
+
msgid "4th image in the gallery. Images must be less than 1MB in size."
|
2534 |
+
msgstr ""
|
2535 |
+
|
2536 |
+
#: modules/opengraph/opengraph.php:407
|
2537 |
+
msgid " \tHTTPS URL of player iframe"
|
2538 |
+
msgstr ""
|
2539 |
+
|
2540 |
+
#: modules/opengraph/opengraph.php:408
|
2541 |
+
msgid "Width of iframe in pixels"
|
2542 |
+
msgstr ""
|
2543 |
+
|
2544 |
+
#: modules/opengraph/opengraph.php:409
|
2545 |
+
msgid "Height of iframe in pixels"
|
2546 |
+
msgstr ""
|
2547 |
+
|
2548 |
+
#: modules/opengraph/opengraph.php:410
|
2549 |
+
msgid "URL to raw video or audio stream"
|
2550 |
+
msgstr ""
|
2551 |
+
|
2552 |
+
#: modules/opengraph/opengraph.php:411
|
2553 |
+
msgid "Name of your iPhone app"
|
2554 |
+
msgstr ""
|
2555 |
+
|
2556 |
+
#: modules/opengraph/opengraph.php:412
|
2557 |
+
msgid "Your app ID in the iTunes App Store (Note: NOT your bundle ID)"
|
2558 |
+
msgstr ""
|
2559 |
+
|
2560 |
+
#: modules/opengraph/opengraph.php:413
|
2561 |
+
msgid ""
|
2562 |
+
"Your app’s custom URL scheme (you must include \"://\" after your "
|
2563 |
+
"scheme name)"
|
2564 |
+
msgstr ""
|
2565 |
+
|
2566 |
+
#: modules/opengraph/opengraph.php:414
|
2567 |
+
msgid "Name of your iPad optimized app"
|
2568 |
+
msgstr ""
|
2569 |
+
|
2570 |
+
#: modules/opengraph/opengraph.php:415
|
2571 |
+
msgid "Your app ID in the iTunes App Store"
|
2572 |
+
msgstr ""
|
2573 |
+
|
2574 |
+
#: modules/opengraph/opengraph.php:416
|
2575 |
+
msgid "Your app’s custom URL scheme"
|
2576 |
+
msgstr ""
|
2577 |
+
|
2578 |
+
#: modules/opengraph/opengraph.php:417
|
2579 |
+
msgid "Name of your Android app"
|
2580 |
+
msgstr ""
|
2581 |
+
|
2582 |
+
#: modules/opengraph/opengraph.php:418
|
2583 |
+
msgid "Your app ID in the Google Play Store"
|
2584 |
+
msgstr ""
|
2585 |
+
|
2586 |
+
#: modules/opengraph/opengraph.php:419
|
2587 |
+
msgid "Your app#8217;s custom URL scheme"
|
2588 |
+
msgstr ""
|
2589 |
+
|
2590 |
+
#: modules/opengraph/opengraph.php:426
|
2591 |
+
msgid "Default Types"
|
2592 |
+
msgstr ""
|
2593 |
+
|
2594 |
+
#: modules/opengraph/opengraph.php:428
|
2595 |
+
msgid "Post Type"
|
2596 |
+
msgstr ""
|
2597 |
+
|
2598 |
+
#: modules/opengraph/opengraph.php:429
|
2599 |
+
msgid "Open Graph Type"
|
2600 |
+
msgstr ""
|
2601 |
+
|
2602 |
+
#: modules/opengraph/opengraph.php:430
|
2603 |
+
msgid "Twitter Type"
|
2604 |
+
msgstr ""
|
2605 |
+
|
2606 |
+
#: modules/opengraph/opengraph.php:445 modules/opengraph/opengraph.php:450
|
2607 |
+
msgid "Default Image"
|
2608 |
+
msgstr ""
|
2609 |
+
|
2610 |
+
#: modules/opengraph/opengraph.php:448
|
2611 |
+
msgid ""
|
2612 |
+
"In the box below, you can specify an image URL or an image from your media "
|
2613 |
+
"library to use as a default image in the event that there is no image "
|
2614 |
+
"otherwise specified for a given webpage on your site."
|
2615 |
+
msgstr ""
|
2616 |
+
|
2617 |
+
#: modules/opengraph/opengraph.php:457
|
2618 |
+
msgid "Include author data for posts"
|
2619 |
+
msgstr ""
|
2620 |
+
|
2621 |
+
#: modules/opengraph/opengraph.php:457
|
2622 |
+
msgid "Open Graph Data"
|
2623 |
+
msgstr ""
|
2624 |
+
|
2625 |
+
#: modules/opengraph/opengraph.php:459
|
2626 |
+
msgid "Use the non-validating code prescribed by Open Graph and Twitter"
|
2627 |
+
msgstr ""
|
2628 |
+
|
2629 |
+
#: modules/opengraph/opengraph.php:460
|
2630 |
+
msgid "Alter the code to validate as XHTML"
|
2631 |
+
msgstr ""
|
2632 |
+
|
2633 |
+
#: modules/opengraph/opengraph.php:461
|
2634 |
+
msgid "Alter the code to validate as HTML5"
|
2635 |
+
msgstr ""
|
2636 |
+
|
2637 |
+
#: modules/opengraph/opengraph.php:462
|
2638 |
+
msgid "HTML Validation"
|
2639 |
+
msgstr ""
|
2640 |
+
|
2641 |
+
#: modules/opengraph/opengraph.php:468 modules/titles/titles.php:92
|
2642 |
+
msgid "Blog Homepage Title"
|
2643 |
+
msgstr ""
|
2644 |
+
|
2645 |
+
#: modules/opengraph/opengraph.php:469
|
2646 |
+
msgid "Blog Homepage Description"
|
2647 |
+
msgstr ""
|
2648 |
+
|
2649 |
+
#: modules/opengraph/opengraph.php:470
|
2650 |
+
msgid "Blog Homepage Image"
|
2651 |
+
msgstr ""
|
2652 |
+
|
2653 |
+
#: modules/opengraph/opengraph.php:476 modules/widgets/widgets.php:140
|
2654 |
+
msgid "Title:"
|
2655 |
+
msgstr ""
|
2656 |
+
|
2657 |
+
#: modules/opengraph/opengraph.php:477
|
2658 |
+
msgid "Description:"
|
2659 |
+
msgstr ""
|
2660 |
+
|
2661 |
+
#: modules/opengraph/opengraph.php:478
|
2662 |
+
msgid "Image:"
|
2663 |
+
msgstr ""
|
2664 |
+
|
2665 |
+
#: modules/opengraph/opengraph.php:479
|
2666 |
+
msgid "Open Graph Type:"
|
2667 |
+
msgstr ""
|
2668 |
+
|
2669 |
+
#: modules/opengraph/opengraph.php:480
|
2670 |
+
msgid "Twitter Type:"
|
2671 |
+
msgstr ""
|
2672 |
+
|
2673 |
+
#: modules/opengraph/opengraph.php:505
|
2674 |
+
#, php-format
|
2675 |
+
msgid "Featured Image: %s"
|
2676 |
+
msgstr ""
|
2677 |
+
|
2678 |
+
#: modules/opengraph/opengraph.php:513
|
2679 |
+
#: modules/rich-snippets/rich-snippets.php:357
|
2680 |
+
msgid "None"
|
2681 |
+
msgstr ""
|
2682 |
+
|
2683 |
+
#: modules/opengraph/opengraph.php:514
|
2684 |
+
msgid "Internet"
|
2685 |
+
msgstr ""
|
2686 |
+
|
2687 |
+
#: modules/opengraph/opengraph.php:515
|
2688 |
+
msgid "Article"
|
2689 |
+
msgstr ""
|
2690 |
+
|
2691 |
+
#: modules/opengraph/opengraph.php:516
|
2692 |
+
msgid "Blog"
|
2693 |
+
msgstr ""
|
2694 |
+
|
2695 |
+
#: modules/opengraph/opengraph.php:517
|
2696 |
+
msgid "Profile"
|
2697 |
+
msgstr ""
|
2698 |
+
|
2699 |
+
#: modules/opengraph/opengraph.php:518
|
2700 |
+
msgid "Website"
|
2701 |
+
msgstr ""
|
2702 |
+
|
2703 |
+
#: modules/opengraph/opengraph.php:519
|
2704 |
+
msgid "Products"
|
2705 |
+
msgstr ""
|
2706 |
+
|
2707 |
+
#: modules/opengraph/opengraph.php:520
|
2708 |
+
msgid "Book"
|
2709 |
+
msgstr ""
|
2710 |
+
|
2711 |
+
#: modules/opengraph/opengraph.php:521
|
2712 |
+
msgid "Music"
|
2713 |
+
msgstr ""
|
2714 |
+
|
2715 |
+
#: modules/opengraph/opengraph.php:522
|
2716 |
+
msgid "Album"
|
2717 |
+
msgstr ""
|
2718 |
+
|
2719 |
+
#: modules/opengraph/opengraph.php:523
|
2720 |
+
msgid "Playlist"
|
2721 |
+
msgstr ""
|
2722 |
+
|
2723 |
+
#: modules/opengraph/opengraph.php:524
|
2724 |
+
msgid "Radio Station"
|
2725 |
+
msgstr ""
|
2726 |
+
|
2727 |
+
#: modules/opengraph/opengraph.php:525
|
2728 |
+
msgid "Song"
|
2729 |
+
msgstr ""
|
2730 |
+
|
2731 |
+
#: modules/opengraph/opengraph.php:526
|
2732 |
+
msgid "Videos"
|
2733 |
+
msgstr ""
|
2734 |
+
|
2735 |
+
#: modules/opengraph/opengraph.php:527
|
2736 |
+
msgid "Movie"
|
2737 |
+
msgstr ""
|
2738 |
+
|
2739 |
+
#: modules/opengraph/opengraph.php:528
|
2740 |
+
msgid "TV Episode"
|
2741 |
+
msgstr ""
|
2742 |
+
|
2743 |
+
#: modules/opengraph/opengraph.php:529
|
2744 |
+
msgid "TV Show"
|
2745 |
+
msgstr ""
|
2746 |
+
|
2747 |
+
#: modules/opengraph/opengraph.php:530
|
2748 |
+
msgid "Video"
|
2749 |
+
msgstr ""
|
2750 |
+
|
2751 |
+
#: modules/opengraph/opengraph.php:537
|
2752 |
+
msgid "Summary"
|
2753 |
+
msgstr ""
|
2754 |
+
|
2755 |
+
#: modules/opengraph/opengraph.php:538
|
2756 |
+
msgid "Product"
|
2757 |
+
msgstr ""
|
2758 |
+
|
2759 |
+
#: modules/opengraph/opengraph.php:539
|
2760 |
+
#: modules/rich-snippets/rich-snippets.php:120
|
2761 |
+
msgid "Photo"
|
2762 |
+
msgstr ""
|
2763 |
+
|
2764 |
+
#: modules/opengraph/opengraph.php:540
|
2765 |
+
msgid "Summary Large Image"
|
2766 |
+
msgstr ""
|
2767 |
+
|
2768 |
+
#: modules/opengraph/opengraph.php:541
|
2769 |
+
msgid "Gallery"
|
2770 |
+
msgstr ""
|
2771 |
+
|
2772 |
+
#: modules/opengraph/opengraph.php:542
|
2773 |
+
msgid "Player"
|
2774 |
+
msgstr ""
|
2775 |
+
|
2776 |
+
#: modules/opengraph/opengraph.php:543
|
2777 |
+
msgid "App"
|
2778 |
+
msgstr ""
|
2779 |
+
|
2780 |
+
#: modules/opengraph/opengraph.php:565
|
2781 |
+
msgid "Twitter Handle"
|
2782 |
+
msgstr ""
|
2783 |
+
|
2784 |
+
#: modules/opengraph/opengraph.php:574
|
2785 |
+
msgid ""
|
2786 |
+
"\n"
|
2787 |
+
"<ul>\n"
|
2788 |
+
"\t<li><strong>What it does:</strong> Open Graph Integrator makes it easy for "
|
2789 |
+
"you to convey information about your site to social networks like Facebook, "
|
2790 |
+
"Twitter, and Google+.</li>\n"
|
2791 |
+
"\t<li><strong>Why it helps:</strong> By providing this Open Graph data, you "
|
2792 |
+
"can customize how these social networks will present your site when people "
|
2793 |
+
"share it with their followers.</li>\n"
|
2794 |
+
"\t<li><strong>How to use it:</strong> The “Sitewide Values” tab "
|
2795 |
+
"lets you specify data that applies to your entire site. The “Default "
|
2796 |
+
"Values” tab lets you specify default data for your posts, pages, etc. "
|
2797 |
+
"The bulk editor tabs let you override those defaults on individual posts and "
|
2798 |
+
"pages. If the authors on your site fill in the “Twitter Handle” "
|
2799 |
+
"field which Open Graph Integrator adds to the <a href='profile.php'>profile "
|
2800 |
+
"editor</a>, Open Graph Integrator will communicate that information to "
|
2801 |
+
"Twitter as well.</li>\n"
|
2802 |
+
"</ul>\n"
|
2803 |
+
msgstr ""
|
2804 |
+
|
2805 |
+
#: modules/permalinks/permalinks.php:15
|
2806 |
+
msgid "Permalink Tweaker"
|
2807 |
+
msgstr ""
|
2808 |
+
|
2809 |
+
#: modules/permalinks/permalinks.php:74
|
2810 |
+
msgid ""
|
2811 |
+
"To use the Permalinks Tweaker, you must disable default (query-string) "
|
2812 |
+
"permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
|
2813 |
+
msgstr ""
|
2814 |
+
|
2815 |
+
#: modules/permalinks/permalinks.php:99
|
2816 |
+
msgid "Remove the URL bases of..."
|
2817 |
+
msgstr ""
|
2818 |
+
|
2819 |
+
#: modules/permalinks/permalinks.php:104
|
2820 |
+
msgid "Before"
|
2821 |
+
msgstr ""
|
2822 |
+
|
2823 |
+
#: modules/permalinks/permalinks.php:106
|
2824 |
+
msgid "After"
|
2825 |
+
msgstr ""
|
2826 |
+
|
2827 |
+
#: modules/permalinks/permalinks.php:126
|
2828 |
+
msgid "term archive"
|
2829 |
+
msgstr ""
|
2830 |
+
|
2831 |
+
#: modules/permalinks/permalinks.php:127
|
2832 |
+
msgid "page"
|
2833 |
+
msgstr ""
|
2834 |
+
|
2835 |
+
#: modules/permalinks/permalinks.php:128
|
2836 |
+
msgid "URL Conflict Resolution"
|
2837 |
+
msgstr ""
|
2838 |
+
|
2839 |
+
#: modules/permalinks/permalinks.php:128
|
2840 |
+
#, php-format
|
2841 |
+
msgid ""
|
2842 |
+
"If a term archive and a Page with the same slug end up having the same URL "
|
2843 |
+
"because of the term’s base being removed, the URL should be given to "
|
2844 |
+
"the %s."
|
2845 |
+
msgstr ""
|
2846 |
+
|
2847 |
+
#: modules/rich-snippets/rich-snippets.php:14
|
2848 |
+
#: modules/rich-snippets/rich-snippets.php:410
|
2849 |
+
msgid "Rich Snippet Creator"
|
2850 |
+
msgstr ""
|
2851 |
+
|
2852 |
+
#: modules/rich-snippets/rich-snippets.php:25
|
2853 |
+
msgid ""
|
2854 |
+
"Rich Snippet Creator adds a “Search Result Type” dropdown to the "
|
2855 |
+
"WordPress content editor screen. To add rich snippet data to a post, select "
|
2856 |
+
"“Review” or “Place” from a post’s “"
|
2857 |
+
"Search Result Type” dropdown and fill in the fields that appear."
|
2858 |
+
msgstr ""
|
2859 |
+
|
2860 |
+
#: modules/rich-snippets/rich-snippets.php:33
|
2861 |
+
msgid "Schema.org Microdata"
|
2862 |
+
msgstr ""
|
2863 |
+
|
2864 |
+
#: modules/rich-snippets/rich-snippets.php:45
|
2865 |
+
#: modules/rich-snippets/rich-snippets.php:345
|
2866 |
+
msgid "Review"
|
2867 |
+
msgstr ""
|
2868 |
+
|
2869 |
+
#: modules/rich-snippets/rich-snippets.php:50
|
2870 |
+
msgid "Name of Reviewed Item"
|
2871 |
+
msgstr ""
|
2872 |
+
|
2873 |
+
#: modules/rich-snippets/rich-snippets.php:53
|
2874 |
+
msgid "Star Rating"
|
2875 |
+
msgstr ""
|
2876 |
+
|
2877 |
+
#: modules/rich-snippets/rich-snippets.php:66
|
2878 |
+
msgid "Image of Reviewed Item"
|
2879 |
+
msgstr ""
|
2880 |
+
|
2881 |
+
#: modules/rich-snippets/rich-snippets.php:71
|
2882 |
+
msgid "Review Author"
|
2883 |
+
msgstr ""
|
2884 |
+
|
2885 |
+
#: modules/rich-snippets/rich-snippets.php:76
|
2886 |
+
msgid "Date Reviewed"
|
2887 |
+
msgstr ""
|
2888 |
+
|
2889 |
+
#: modules/rich-snippets/rich-snippets.php:84
|
2890 |
+
#: modules/rich-snippets/rich-snippets.php:346
|
2891 |
+
msgid "Place"
|
2892 |
+
msgstr ""
|
2893 |
+
|
2894 |
+
#: modules/rich-snippets/rich-snippets.php:88
|
2895 |
+
msgid "Address"
|
2896 |
+
msgstr ""
|
2897 |
+
|
2898 |
+
#: modules/rich-snippets/rich-snippets.php:92
|
2899 |
+
msgid "Street Address"
|
2900 |
+
msgstr ""
|
2901 |
+
|
2902 |
+
#: modules/rich-snippets/rich-snippets.php:95
|
2903 |
+
msgid "PO Box"
|
2904 |
+
msgstr ""
|
2905 |
+
|
2906 |
+
#: modules/rich-snippets/rich-snippets.php:98
|
2907 |
+
#: modules/rich-snippets/rich-snippets.php:101
|
2908 |
+
msgid "City"
|
2909 |
+
msgstr ""
|
2910 |
+
|
2911 |
+
#: modules/rich-snippets/rich-snippets.php:104
|
2912 |
+
msgid "Country"
|
2913 |
+
msgstr ""
|
2914 |
+
|
2915 |
+
#: modules/rich-snippets/rich-snippets.php:107
|
2916 |
+
msgid "Postal Code"
|
2917 |
+
msgstr ""
|
2918 |
+
|
2919 |
+
#: modules/rich-snippets/rich-snippets.php:112
|
2920 |
+
msgid "Fax Number"
|
2921 |
+
msgstr ""
|
2922 |
+
|
2923 |
+
#: modules/rich-snippets/rich-snippets.php:115
|
2924 |
+
msgid "Map URL"
|
2925 |
+
msgstr ""
|
2926 |
+
|
2927 |
+
#: modules/rich-snippets/rich-snippets.php:129
|
2928 |
+
msgid "Phone Number"
|
2929 |
+
msgstr ""
|
2930 |
+
|
2931 |
+
#: modules/rich-snippets/rich-snippets.php:306
|
2932 |
+
#, php-format
|
2933 |
+
msgid "Schema.org markup generated by %1$s (%2$s)"
|
2934 |
+
msgstr ""
|
2935 |
+
|
2936 |
+
#: modules/rich-snippets/rich-snippets.php:344
|
2937 |
+
msgid "Standard"
|
2938 |
+
msgstr ""
|
2939 |
+
|
2940 |
+
#: modules/rich-snippets/rich-snippets.php:347
|
2941 |
+
msgid "Search Result Type:"
|
2942 |
+
msgstr ""
|
2943 |
+
|
2944 |
+
#: modules/rich-snippets/rich-snippets.php:352
|
2945 |
+
msgid "Name of Reviewed Item:"
|
2946 |
+
msgstr ""
|
2947 |
+
|
2948 |
+
#: modules/rich-snippets/rich-snippets.php:354
|
2949 |
+
msgid "Image of Reviewed Item:"
|
2950 |
+
msgstr ""
|
2951 |
+
|
2952 |
+
#: modules/rich-snippets/rich-snippets.php:358
|
2953 |
+
msgid "0.5 stars"
|
2954 |
+
msgstr ""
|
2955 |
+
|
2956 |
+
#: modules/rich-snippets/rich-snippets.php:359
|
2957 |
+
msgid "1 star"
|
2958 |
+
msgstr ""
|
2959 |
+
|
2960 |
+
#: modules/rich-snippets/rich-snippets.php:360
|
2961 |
+
msgid "1.5 stars"
|
2962 |
+
msgstr ""
|
2963 |
+
|
2964 |
+
#: modules/rich-snippets/rich-snippets.php:361
|
2965 |
+
msgid "2 stars"
|
2966 |
+
msgstr ""
|
2967 |
+
|
2968 |
+
#: modules/rich-snippets/rich-snippets.php:362
|
2969 |
+
msgid "2.5 stars"
|
2970 |
+
msgstr ""
|
2971 |
+
|
2972 |
+
#: modules/rich-snippets/rich-snippets.php:363
|
2973 |
+
msgid "3 stars"
|
2974 |
+
msgstr ""
|
2975 |
+
|
2976 |
+
#: modules/rich-snippets/rich-snippets.php:364
|
2977 |
+
msgid "3.5 stars"
|
2978 |
+
msgstr ""
|
2979 |
+
|
2980 |
+
#: modules/rich-snippets/rich-snippets.php:365
|
2981 |
+
msgid "4 stars"
|
2982 |
+
msgstr ""
|
2983 |
+
|
2984 |
+
#: modules/rich-snippets/rich-snippets.php:366
|
2985 |
+
msgid "4.5 stars"
|
2986 |
+
msgstr ""
|
2987 |
+
|
2988 |
+
#: modules/rich-snippets/rich-snippets.php:367
|
2989 |
+
msgid "5 stars"
|
2990 |
+
msgstr ""
|
2991 |
+
|
2992 |
+
#: modules/rich-snippets/rich-snippets.php:368
|
2993 |
+
msgid "Star Rating for Reviewed Item:"
|
2994 |
+
msgstr ""
|
2995 |
+
|
2996 |
+
#: modules/rich-snippets/rich-snippets.php:374
|
2997 |
+
msgid "Street Address:"
|
2998 |
+
msgstr ""
|
2999 |
+
|
3000 |
+
#: modules/rich-snippets/rich-snippets.php:375
|
3001 |
+
msgid "Post Office Box Number:"
|
3002 |
+
msgstr ""
|
3003 |
+
|
3004 |
+
#: modules/rich-snippets/rich-snippets.php:376
|
3005 |
+
msgid "City:"
|
3006 |
+
msgstr ""
|
3007 |
+
|
3008 |
+
#: modules/rich-snippets/rich-snippets.php:377
|
3009 |
+
msgid "State or Region:"
|
3010 |
+
msgstr ""
|
3011 |
+
|
3012 |
+
#: modules/rich-snippets/rich-snippets.php:378
|
3013 |
+
msgid "Country:"
|
3014 |
+
msgstr ""
|
3015 |
+
|
3016 |
+
#: modules/rich-snippets/rich-snippets.php:379
|
3017 |
+
msgid "Postal Code:"
|
3018 |
+
msgstr ""
|
3019 |
+
|
3020 |
+
#: modules/rich-snippets/rich-snippets.php:380
|
3021 |
+
msgid "Address:"
|
3022 |
+
msgstr ""
|
3023 |
+
|
3024 |
+
#: modules/rich-snippets/rich-snippets.php:381
|
3025 |
+
msgid "Map Page:"
|
3026 |
+
msgstr ""
|
3027 |
+
|
3028 |
+
#: modules/rich-snippets/rich-snippets.php:382
|
3029 |
+
msgid "Phone Number:"
|
3030 |
+
msgstr ""
|
3031 |
+
|
3032 |
+
#: modules/rich-snippets/rich-snippets.php:383
|
3033 |
+
msgid "Fax Number:"
|
3034 |
+
msgstr ""
|
3035 |
+
|
3036 |
+
#: modules/rich-snippets/rich-snippets.php:384
|
3037 |
+
msgid "Photo:"
|
3038 |
+
msgstr ""
|
3039 |
+
|
3040 |
+
#: modules/rich-snippets/rich-snippets.php:393
|
3041 |
+
msgid ""
|
3042 |
+
"\n"
|
3043 |
+
"<ul>\n"
|
3044 |
+
"\t<li><strong>What it does:</strong> Rich Snippet Creator adds special code "
|
3045 |
+
"(called Schema.org data) to your posts that asks Google and other major "
|
3046 |
+
"search engines to display special pertinent information (known as Rich "
|
3047 |
+
"Snippets) in search results for certain types of content. For example, if "
|
3048 |
+
"you’ve written a product review, you can use Rich Snippet Creator to "
|
3049 |
+
"ask Google to display the star rating that you gave the product in your "
|
3050 |
+
"review next to your review webpage when it appears in search results.</li>\n"
|
3051 |
+
"\t<li><strong>Why it helps:</strong> Rich Snippet Creator enhances the "
|
3052 |
+
"search engine results for your content by asking Google to add extra, eye-"
|
3053 |
+
"catching info that could help draw in more search engine visitors.</li>\n"
|
3054 |
+
"\t<li><strong>How it works:</strong> When editing one of your posts or "
|
3055 |
+
"pages, see if your content fits one of the available rich snippet types (for "
|
3056 |
+
"example, a review). If so, select that type from the “Search Result "
|
3057 |
+
"Type” dropdown box. Once you select the applicable type, additional "
|
3058 |
+
"options will appear that vary based on the type selected. For example, a "
|
3059 |
+
"“Star Rating for Reviewed Item” field will appear if you select "
|
3060 |
+
"the “Review” type. Once you save the post/page, Rich Snippet "
|
3061 |
+
"Creator will add the special code to it. You can remove this code at any "
|
3062 |
+
"time by selecting “Standard” from the “Search Result "
|
3063 |
+
"Type” dropdown and resaving the post/page.</li>\n"
|
3064 |
+
"</ul>\n"
|
3065 |
+
msgstr ""
|
3066 |
+
|
3067 |
+
#: modules/rich-snippets/rich-snippets.php:401
|
3068 |
+
msgid ""
|
3069 |
+
"\n"
|
3070 |
+
"<ul>\n"
|
3071 |
+
"\t<li><p><strong>Why aren’t rich snippets showing up in Google search "
|
3072 |
+
"results for my site?</strong><br />Enter the URL of your post/page into <a "
|
3073 |
+
"href='http://www.google.com/webmasters/tools/richsnippets' "
|
3074 |
+
"target='_blank'>Google’s testing tool</a> to make sure Google can find "
|
3075 |
+
"the rich snippet code on your site. If no code is found, check and make sure "
|
3076 |
+
"you’ve enabled rich snippets for that particular post/page.</p><p>Note "
|
3077 |
+
"that having the code on a post/page doesn’t guarantee that Google will "
|
3078 |
+
"actually use it to create a rich snippet. If Google is able to read your "
|
3079 |
+
"code but isn’t using it to generate rich snippets, you can ask Google "
|
3080 |
+
"to do so using <a href='http://www.google.com/support/webmasters/bin/request."
|
3081 |
+
"py?contact_type=rich_snippets_feedback' target='_blank'>this form</a>.</p></"
|
3082 |
+
"li>\n"
|
3083 |
+
"</ul>\n"
|
3084 |
+
msgstr ""
|
3085 |
+
|
3086 |
+
#: modules/sds-blog/sds-blog.php:12 modules/sds-blog/sds-blog.php:13
|
3087 |
+
msgid "Whitepapers"
|
3088 |
+
msgstr ""
|
3089 |
+
|
3090 |
+
#: modules/sds-blog/sds-blog.php:14
|
3091 |
+
msgid "SEO Design Solutions Whitepapers"
|
3092 |
+
msgstr ""
|
3093 |
+
|
3094 |
+
#: modules/sds-blog/sds-blog.php:56
|
3095 |
+
msgid "SEO Design Solutions"
|
3096 |
+
msgstr ""
|
3097 |
+
|
3098 |
+
#: modules/sds-blog/sds-blog.php:57
|
3099 |
+
msgid ""
|
3100 |
+
"The search engine optimization articles below are loaded from the website of "
|
3101 |
+
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
3102 |
+
"an article’s title to read it."
|
3103 |
+
msgstr ""
|
3104 |
+
|
3105 |
+
#: modules/settings/global-settings.php:18 modules/settings/settings.php:70
|
3106 |
+
msgid "Global Settings"
|
3107 |
+
msgstr ""
|
3108 |
+
|
3109 |
+
#: modules/settings/global-settings.php:41
|
3110 |
+
msgid "Identify the plugin’s HTML code insertions with HTML comment tags"
|
3111 |
+
msgstr ""
|
3112 |
+
|
3113 |
+
#: modules/settings/global-settings.php:47
|
3114 |
+
msgid "Show the promo slider for SEO Design Framework on plugin pages"
|
3115 |
+
msgstr ""
|
3116 |
+
|
3117 |
+
#: modules/settings/install.php:18
|
3118 |
+
msgid "Upgrade/Downgrade/Reinstall"
|
3119 |
+
msgstr ""
|
3120 |
+
|
3121 |
+
#: modules/settings/install.php:19
|
3122 |
+
msgid "Installer"
|
3123 |
+
msgstr ""
|
3124 |
+
|
3125 |
+
#: modules/settings/install.php:26 modules/settings/install.php:97
|
3126 |
+
msgid "Upgrade"
|
3127 |
+
msgstr ""
|
3128 |
+
|
3129 |
+
#: modules/settings/install.php:29 modules/settings/install.php:125
|
3130 |
+
msgid "Downgrade"
|
3131 |
+
msgstr ""
|
3132 |
+
|
3133 |
+
#: modules/settings/install.php:32 modules/settings/install.php:146
|
3134 |
+
msgid "Reinstall"
|
3135 |
+
msgstr ""
|
3136 |
+
|
3137 |
+
#: modules/settings/install.php:82 modules/settings/install.php:220
|
3138 |
+
msgid "You do not have sufficient permissions to upgrade plugins on this site."
|
3139 |
+
msgstr ""
|
3140 |
+
|
3141 |
+
#: modules/settings/install.php:91
|
3142 |
+
msgid ""
|
3143 |
+
"From the list below, select the version to which you would like to upgrade. "
|
3144 |
+
"Then click the “Upgrade” button at the bottom of the screen."
|
3145 |
+
msgstr ""
|
3146 |
+
|
3147 |
+
#: modules/settings/install.php:100
|
3148 |
+
msgid "You are already running the latest version."
|
3149 |
+
msgstr ""
|
3150 |
+
|
3151 |
+
#: modules/settings/install.php:102
|
3152 |
+
msgid ""
|
3153 |
+
"There was an error retrieving the list of available versions. Please try "
|
3154 |
+
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
3155 |
+
"using the WordPress plugin upgrader."
|
3156 |
+
msgstr ""
|
3157 |
+
|
3158 |
+
#: modules/settings/install.php:108 modules/settings/install.php:202
|
3159 |
+
msgid ""
|
3160 |
+
"You do not have sufficient permissions to downgrade plugins on this site."
|
3161 |
+
msgstr ""
|
3162 |
+
|
3163 |
+
#: modules/settings/install.php:116
|
3164 |
+
msgid ""
|
3165 |
+
"Downgrading is provided as a convenience only and is not officially "
|
3166 |
+
"supported. Although unlikely, you may lose data in the downgrading process. "
|
3167 |
+
"It is your responsibility to backup your database before proceeding."
|
3168 |
+
msgstr ""
|
3169 |
+
|
3170 |
+
#: modules/settings/install.php:119
|
3171 |
+
msgid ""
|
3172 |
+
"From the list below, select the version to which you would like to "
|
3173 |
+
"downgrade. Then click the “Downgrade” button at the bottom of "
|
3174 |
+
"the screen."
|
3175 |
+
msgstr ""
|
3176 |
+
|
3177 |
+
#: modules/settings/install.php:128
|
3178 |
+
#, php-format
|
3179 |
+
msgid ""
|
3180 |
+
"Downgrading to versions earlier than %s is not supported because doing so "
|
3181 |
+
"will result the loss of some or all of your SEO Ultimate settings."
|
3182 |
+
msgstr ""
|
3183 |
+
|
3184 |
+
#: modules/settings/install.php:130
|
3185 |
+
msgid ""
|
3186 |
+
"There was an error retrieving the list of available versions. Please try "
|
3187 |
+
"again later."
|
3188 |
+
msgstr ""
|
3189 |
+
|
3190 |
+
#: modules/settings/install.php:136 modules/settings/install.php:211
|
3191 |
+
msgid ""
|
3192 |
+
"You do not have sufficient permissions to reinstall plugins on this site."
|
3193 |
+
msgstr ""
|
3194 |
+
|
3195 |
+
#: modules/settings/install.php:141
|
3196 |
+
msgid ""
|
3197 |
+
"To download and install a fresh copy of the SEO Ultimate version you are "
|
3198 |
+
"currently using, click the “Reinstall” button below."
|
3199 |
+
msgstr ""
|
3200 |
+
|
3201 |
+
#: modules/settings/install.php:168
|
3202 |
+
msgid "Your Current Version"
|
3203 |
+
msgstr ""
|
3204 |
+
|
3205 |
+
#: modules/settings/install.php:170
|
3206 |
+
msgid "Latest Version"
|
3207 |
+
msgstr ""
|
3208 |
+
|
3209 |
+
#: modules/settings/install.php:199
|
3210 |
+
#, php-format
|
3211 |
+
msgid "Downgrade to SEO Ultimate %s"
|
3212 |
+
msgstr ""
|
3213 |
+
|
3214 |
+
#: modules/settings/install.php:208
|
3215 |
+
#, php-format
|
3216 |
+
msgid "Reinstall SEO Ultimate %s"
|
3217 |
+
msgstr ""
|
3218 |
+
|
3219 |
+
#: modules/settings/install.php:217
|
3220 |
+
#, php-format
|
3221 |
+
msgid "Upgrade to SEO Ultimate %s"
|
3222 |
+
msgstr ""
|
3223 |
+
|
3224 |
+
#: modules/settings/settings-data.php:16
|
3225 |
+
msgid "Settings Data Manager"
|
3226 |
+
msgstr ""
|
3227 |
+
|
3228 |
+
#: modules/settings/settings-data.php:17
|
3229 |
+
msgid "Manage Settings Data"
|
3230 |
+
msgstr ""
|
3231 |
+
|
3232 |
+
#: modules/settings/settings-data.php:21
|
3233 |
+
msgid "Import"
|
3234 |
+
msgstr ""
|
3235 |
+
|
3236 |
+
#: modules/settings/settings-data.php:22
|
3237 |
+
msgid "Export"
|
3238 |
+
msgstr ""
|
3239 |
+
|
3240 |
+
#: modules/settings/settings-data.php:86
|
3241 |
+
msgid "Settings successfully imported."
|
3242 |
+
msgstr ""
|
3243 |
+
|
3244 |
+
#: modules/settings/settings-data.php:88
|
3245 |
+
msgid ""
|
3246 |
+
"The uploaded file is not in the proper format. Settings could not be "
|
3247 |
+
"imported."
|
3248 |
+
msgstr ""
|
3249 |
+
|
3250 |
+
#: modules/settings/settings-data.php:90
|
3251 |
+
msgid "The settings file could not be uploaded successfully."
|
3252 |
+
msgstr ""
|
3253 |
+
|
3254 |
+
#: modules/settings/settings-data.php:93
|
3255 |
+
msgid ""
|
3256 |
+
"Settings could not be imported because no settings file was selected. Please "
|
3257 |
+
"click the “Browse” button and select a file to import."
|
3258 |
+
msgstr ""
|
3259 |
+
|
3260 |
+
#: modules/settings/settings-data.php:140
|
3261 |
+
msgid ""
|
3262 |
+
"The uploaded file is not in the proper format. Links could not be imported."
|
3263 |
+
msgstr ""
|
3264 |
+
|
3265 |
+
#: modules/settings/settings-data.php:182
|
3266 |
+
msgid "Links successfully imported."
|
3267 |
+
msgstr ""
|
3268 |
+
|
3269 |
+
#: modules/settings/settings-data.php:185
|
3270 |
+
msgid "The CSV file could not be uploaded successfully."
|
3271 |
+
msgstr ""
|
3272 |
+
|
3273 |
+
#: modules/settings/settings-data.php:188
|
3274 |
+
msgid ""
|
3275 |
+
"Links could not be imported because no CSV file was selected. Please click "
|
3276 |
+
"the “Browse” button and select a file to import."
|
3277 |
+
msgstr ""
|
3278 |
+
|
3279 |
+
#: modules/settings/settings-data.php:198
|
3280 |
+
msgid "Import SEO Ultimate Settings File"
|
3281 |
+
msgstr ""
|
3282 |
+
|
3283 |
+
#: modules/settings/settings-data.php:200
|
3284 |
+
msgid ""
|
3285 |
+
"You can use this form to upload and import an SEO Ultimate settings file "
|
3286 |
+
"stored on your computer. (These files can be created using the Export tool.) "
|
3287 |
+
"Note that importing a file will overwrite your existing settings with those "
|
3288 |
+
"in the file."
|
3289 |
+
msgstr ""
|
3290 |
+
|
3291 |
+
#: modules/settings/settings-data.php:204
|
3292 |
+
msgid ""
|
3293 |
+
"Are you sure you want to import this settings file? This will overwrite your "
|
3294 |
+
"current settings and cannot be undone."
|
3295 |
+
msgstr ""
|
3296 |
+
|
3297 |
+
#: modules/settings/settings-data.php:205
|
3298 |
+
msgid "Import Settings File"
|
3299 |
+
msgstr ""
|
3300 |
+
|
3301 |
+
#: modules/settings/settings-data.php:211
|
3302 |
+
msgid "Import Deeplink Juggernaut CSV File"
|
3303 |
+
msgstr ""
|
3304 |
+
|
3305 |
+
#: modules/settings/settings-data.php:213
|
3306 |
+
msgid ""
|
3307 |
+
"You can use this form to upload and import a Deeplink Juggernaut CSV file "
|
3308 |
+
"stored on your computer. (These files can be created using the Export tool.) "
|
3309 |
+
"Note that importing a file will overwrite your existing links with those in "
|
3310 |
+
"the file."
|
3311 |
+
msgstr ""
|
3312 |
+
|
3313 |
+
#: modules/settings/settings-data.php:217
|
3314 |
+
msgid ""
|
3315 |
+
"Are you sure you want to import this CSV file? This will overwrite your "
|
3316 |
+
"current Deeplink Juggernaut links and cannot be undone."
|
3317 |
+
msgstr ""
|
3318 |
+
|
3319 |
+
#: modules/settings/settings-data.php:218
|
3320 |
+
msgid "Import CSV File"
|
3321 |
+
msgstr ""
|
3322 |
+
|
3323 |
+
#: modules/settings/settings-data.php:233
|
3324 |
+
msgid "Import from Other Plugins"
|
3325 |
+
msgstr ""
|
3326 |
+
|
3327 |
+
#: modules/settings/settings-data.php:235
|
3328 |
+
msgid ""
|
3329 |
+
"You can import settings and data from these plugins. Clicking a plugin’"
|
3330 |
+
"s name will take you to the importer page, where you can customize "
|
3331 |
+
"parameters and start the import."
|
3332 |
+
msgstr ""
|
3333 |
+
|
3334 |
+
#: modules/settings/settings-data.php:255
|
3335 |
+
msgid "Export SEO Ultimate Settings File"
|
3336 |
+
msgstr ""
|
3337 |
+
|
3338 |
+
#: modules/settings/settings-data.php:257
|
3339 |
+
msgid ""
|
3340 |
+
"You can use this export tool to download an SEO Ultimate settings file to "
|
3341 |
+
"your computer."
|
3342 |
+
msgstr ""
|
3343 |
+
|
3344 |
+
#: modules/settings/settings-data.php:259
|
3345 |
+
msgid ""
|
3346 |
+
"A settings file includes the data of every checkbox and textbox of every "
|
3347 |
+
"installed module. It does NOT include site-specific data like logged 404s or "
|
3348 |
+
"post/page title/meta data (this data would be included in a standard "
|
3349 |
+
"database backup, however)."
|
3350 |
+
msgstr ""
|
3351 |
+
|
3352 |
+
#: modules/settings/settings-data.php:262
|
3353 |
+
msgid "Download Settings File"
|
3354 |
+
msgstr ""
|
3355 |
+
|
3356 |
+
#: modules/settings/settings-data.php:267
|
3357 |
+
msgid "Export Deeplink Juggernaut CSV File"
|
3358 |
+
msgstr ""
|
3359 |
+
|
3360 |
+
#: modules/settings/settings-data.php:269
|
3361 |
+
msgid ""
|
3362 |
+
"You can use this export tool to download a CSV file (comma-separated values "
|
3363 |
+
"file) that contains your Deeplink Juggernaut links. Once you download this "
|
3364 |
+
"file to your computer, you can edit it using your favorite spreadsheet "
|
3365 |
+
"program. When you’re done editing, you can re-upload the file using "
|
3366 |
+
"the Import tool."
|
3367 |
+
msgstr ""
|
3368 |
+
|
3369 |
+
#: modules/settings/settings-data.php:272
|
3370 |
+
msgid "Download CSV File"
|
3371 |
+
msgstr ""
|
3372 |
+
|
3373 |
+
#: modules/settings/settings-data.php:279
|
3374 |
+
msgid "All settings have been erased and defaults have been restored."
|
3375 |
+
msgstr ""
|
3376 |
+
|
3377 |
+
#: modules/settings/settings-data.php:281
|
3378 |
+
msgid ""
|
3379 |
+
"You can erase all your SEO Ultimate settings and restore them to “"
|
3380 |
+
"factory defaults” by clicking the button below."
|
3381 |
+
msgstr ""
|
3382 |
+
|
3383 |
+
#: modules/settings/settings-data.php:284
|
3384 |
+
msgid ""
|
3385 |
+
"Are you sure you want to erase all module settings? This cannot be undone."
|
3386 |
+
msgstr ""
|
3387 |
+
|
3388 |
+
#: modules/settings/settings-data.php:285
|
3389 |
+
msgid "Restore Default Settings"
|
3390 |
+
msgstr ""
|
3391 |
+
|
3392 |
+
#: modules/settings/settings.php:14
|
3393 |
+
msgid "Plugin Management"
|
3394 |
+
msgstr ""
|
3395 |
+
|
3396 |
+
#: modules/settings/settings.php:16
|
3397 |
+
msgid "Plugin Settings"
|
3398 |
+
msgstr ""
|
3399 |
+
|
3400 |
+
#: modules/settings/settings.php:21
|
3401 |
+
msgid "SEO Ultimate Plugin Management"
|
3402 |
+
msgstr ""
|
3403 |
+
|
3404 |
+
#: modules/settings/settings.php:23
|
3405 |
+
msgid "SEO Ultimate Plugin Settings"
|
3406 |
+
msgstr ""
|
3407 |
+
|
3408 |
+
#: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:847
|
3409 |
+
msgid "SEO Ultimate"
|
3410 |
+
msgstr ""
|
3411 |
+
|
3412 |
+
#: modules/settings/settings.php:64
|
3413 |
+
msgid ""
|
3414 |
+
"\n"
|
3415 |
+
"<p>The Settings module lets you manage settings related to the SEO Ultimate "
|
3416 |
+
"plugin as a whole.</p>\n"
|
3417 |
+
msgstr ""
|
3418 |
+
|
3419 |
+
#: modules/settings/settings.php:71
|
3420 |
+
msgid ""
|
3421 |
+
"\n"
|
3422 |
+
"<p>Here’s information on some of the settings:</p>\n"
|
3423 |
+
"<ul>\n"
|
3424 |
+
"\t<li><strong>Identify the plugin’s HTML code insertions with HTML "
|
3425 |
+
"comment tags</strong> — If enabled, SEO Ultimate will use HTML "
|
3426 |
+
"comments to identify all code it inserts into your <code><head></code> "
|
3427 |
+
"tag. This is useful if you’re trying to figure out whether or not SEO "
|
3428 |
+
"Ultimate is inserting a certain piece of header code.</li>\n"
|
3429 |
+
"\t<li><strong>Enable nofollow’d attribution link on my site</strong> "
|
3430 |
+
"— If enabled, the plugin will display an attribution link on your site."
|
3431 |
+
"</li>\n"
|
3432 |
+
"</ul>\n"
|
3433 |
+
msgstr ""
|
3434 |
+
|
3435 |
+
#: modules/settings/settings.php:82
|
3436 |
+
msgid ""
|
3437 |
+
"\n"
|
3438 |
+
"<ul>\n"
|
3439 |
+
"\t<li>\n"
|
3440 |
+
"\t\t<p><strong>Why doesn’t the settings exporter include all my data "
|
3441 |
+
"in an export?</strong><br />The settings export/import system is designed to "
|
3442 |
+
"facilitate moving settings between sites. It is NOT a replacement for "
|
3443 |
+
"keeping your database backed up. The settings exporter doesn’t include "
|
3444 |
+
"data that is specific to your site. For example, logged 404 errors are not "
|
3445 |
+
"included because those 404 errors only apply to your site, not another site. "
|
3446 |
+
"Also, post/page titles/meta are not included because the site into which you "
|
3447 |
+
"import the file could have totally different posts/pages located under the "
|
3448 |
+
"same ID numbers.</p>\n"
|
3449 |
+
"\t\t<p>If you’re moving a site to a different server or restoring a "
|
3450 |
+
"crashed site, you should do so with database backup/restore.</p>\n"
|
3451 |
+
"\t</li>\n"
|
3452 |
+
"</ul>\n"
|
3453 |
+
msgstr ""
|
3454 |
+
|
3455 |
+
#: modules/settings/uninstall.php:17
|
3456 |
+
msgid "Uninstaller"
|
3457 |
+
msgstr ""
|
3458 |
+
|
3459 |
+
#: modules/settings/uninstall.php:18 modules/settings/uninstall.php:22
|
3460 |
+
#: plugin/class.seo-ultimate.php:1395
|
3461 |
+
msgid "Uninstall"
|
3462 |
+
msgstr ""
|
3463 |
+
|
3464 |
+
#: modules/settings/uninstall.php:61 modules/settings/uninstall.php:81
|
3465 |
+
msgid "You do not have sufficient permissions to delete plugins on this site."
|
3466 |
+
msgstr ""
|
3467 |
+
|
3468 |
+
#: modules/settings/uninstall.php:66
|
3469 |
+
msgid ""
|
3470 |
+
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
3471 |
+
"files."
|
3472 |
+
msgstr ""
|
3473 |
+
|
3474 |
+
#: modules/settings/uninstall.php:69
|
3475 |
+
msgid ""
|
3476 |
+
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
3477 |
+
"your SEO Ultimate settings and cannot be undone."
|
3478 |
+
msgstr ""
|
3479 |
+
|
3480 |
+
#: modules/settings/uninstall.php:70
|
3481 |
+
msgid "Uninstall Now"
|
3482 |
+
msgstr ""
|
3483 |
+
|
3484 |
+
#: modules/settings/uninstall.php:74 modules/settings/uninstall.php:85
|
3485 |
+
msgid "Uninstall SEO Ultimate"
|
3486 |
+
msgstr ""
|
3487 |
+
|
3488 |
+
#: modules/settings/uninstall.php:89
|
3489 |
+
msgid "Deleted settings."
|
3490 |
+
msgstr ""
|
3491 |
+
|
3492 |
+
#: modules/settings/uninstall.php:96
|
3493 |
+
msgid "An error occurred while deleting files."
|
3494 |
+
msgstr ""
|
3495 |
+
|
3496 |
+
#: modules/settings/uninstall.php:98
|
3497 |
+
msgid "Deleted files."
|
3498 |
+
msgstr ""
|
3499 |
+
|
3500 |
+
#: modules/settings/uninstall.php:99
|
3501 |
+
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
3502 |
+
msgstr ""
|
3503 |
+
|
3504 |
+
#: modules/sharing-buttons/sharing-buttons.php:12
|
3505 |
+
#: modules/sharing-buttons/sharing-buttons.php:80
|
3506 |
+
msgid "Sharing Facilitator"
|
3507 |
+
msgstr ""
|
3508 |
+
|
3509 |
+
#: modules/sharing-buttons/sharing-buttons.php:25
|
3510 |
+
msgid "Bookmark and Share"
|
3511 |
+
msgstr ""
|
3512 |
+
|
3513 |
+
#: modules/sharing-buttons/sharing-buttons.php:40
|
3514 |
+
msgid "None; disable sharing buttons"
|
3515 |
+
msgstr ""
|
3516 |
+
|
3517 |
+
#: modules/sharing-buttons/sharing-buttons.php:41
|
3518 |
+
msgid "Use the ShareThis button"
|
3519 |
+
msgstr ""
|
3520 |
+
|
3521 |
+
#: modules/sharing-buttons/sharing-buttons.php:42
|
3522 |
+
msgid "Use the AddThis button"
|
3523 |
+
msgstr ""
|
3524 |
+
|
3525 |
+
#: modules/sharing-buttons/sharing-buttons.php:43
|
3526 |
+
msgid "Which provider would you like to use for your sharing buttons?"
|
3527 |
+
msgstr ""
|
3528 |
+
|
3529 |
+
#: modules/sharing-buttons/sharing-buttons.php:69
|
3530 |
+
msgid ""
|
3531 |
+
"\n"
|
3532 |
+
"<ul>\n"
|
3533 |
+
"\t<li><strong>What it does:</strong> Sharing Facilitator adds buttons to "
|
3534 |
+
"your posts/pages that make it easy for visitors to share your content.</li>\n"
|
3535 |
+
"\t<li><strong>Why it helps:</strong> When visitors share your content on "
|
3536 |
+
"social networking sites, this can build links to your site. Sharing "
|
3537 |
+
"Facilitator makes it easy for visitors to do this.</li>\n"
|
3538 |
+
"\t<li><strong>How to use it:</strong> Pick which button type you’d "
|
3539 |
+
"like to use (ShareThis or AddThis) and click Save Changes. Try enabling each "
|
3540 |
+
"button on your site and see which one you like better.</li>\n"
|
3541 |
+
"</ul>\n"
|
3542 |
+
msgstr ""
|
3543 |
+
|
3544 |
+
#: modules/slugs/slugs.php:12 modules/slugs/slugs.php:111
|
3545 |
+
msgid "Slug Optimizer"
|
3546 |
+
msgstr ""
|
3547 |
+
|
3548 |
+
#: modules/slugs/slugs.php:20
|
3549 |
+
msgid "Words to Remove"
|
3550 |
+
msgstr ""
|
3551 |
+
|
3552 |
+
#: modules/slugs/slugs.php:77
|
3553 |
+
msgid ""
|
3554 |
+
"\n"
|
3555 |
+
"<ul>\n"
|
3556 |
+
"\t<li><strong>What it does:</strong> Slug Optimizer removes common words "
|
3557 |
+
"from the portion of a post’s or Page’s URL that is based on its "
|
3558 |
+
"title. (This portion is also known as the “slug.”)</li>\n"
|
3559 |
+
"\t<li><strong>Why it helps:</strong> Slug Optimizer increases keyword "
|
3560 |
+
"potency because there are fewer words in your URLs competing for relevance.</"
|
3561 |
+
"li>\n"
|
3562 |
+
"\t<li><strong>How to use it:</strong> Slug Optimizer works without any "
|
3563 |
+
"action required on your part. When you add a new post in your WordPress "
|
3564 |
+
"admin and specify a title for it, WordPress will generate a slug and the new "
|
3565 |
+
"post’s future URL will appear below the title box. While WordPress is "
|
3566 |
+
"generating the slug, Slug Optimizer takes common words out of it. You can "
|
3567 |
+
"use the textbox on Slug Optimizer’s admin page to specify which common "
|
3568 |
+
"words are removed.</li>\n"
|
3569 |
+
"</ul>\n"
|
3570 |
+
msgstr ""
|
3571 |
+
|
3572 |
+
#: modules/slugs/slugs.php:85
|
3573 |
+
msgid ""
|
3574 |
+
"\n"
|
3575 |
+
"<ul>\n"
|
3576 |
+
"\t<li><strong>What’s a slug?</strong><br />The slug of a post or page "
|
3577 |
+
"is the portion of its URL that is based on its title. When you edit a post "
|
3578 |
+
"or Page in WordPress, the slug is the yellow-highlighted portion of the "
|
3579 |
+
"Permalink beneath the Title textbox.</li>\n"
|
3580 |
+
"\t<li><strong>Does the Slug Optimizer change my existing URLs?</strong><br /"
|
3581 |
+
">No. Slug Optimizer will not relocate your content by changing existing "
|
3582 |
+
"URLs. Slug Optimizer only takes effect on new posts and pages.</li>\n"
|
3583 |
+
"\t<li>\n"
|
3584 |
+
"\t\t<p><strong>How do I see Slug Optimizer in action?</strong><br />Follow "
|
3585 |
+
"these steps:</p>\n"
|
3586 |
+
"\t\t<ol>\n"
|
3587 |
+
"\t\t\t<li>Create a new post/Page in WordPress.</li>\n"
|
3588 |
+
"\t\t\t<li>Type in a title containing some common and uncommon words.</li>\n"
|
3589 |
+
"\t\t\t<li>Click outside the Title box. WordPress will insert a URL labeled "
|
3590 |
+
"“Permalink” below the Title textbox. The Slug Optimizer will "
|
3591 |
+
"have removed the common words from the URL.</li>\n"
|
3592 |
+
"\t\t</ol>\n"
|
3593 |
+
"\t</li>\n"
|
3594 |
+
"\t<li><strong>What if I want to include a common word in my slug?</"
|
3595 |
+
"strong><br />When editing the post or page in question, just click the "
|
3596 |
+
"“Edit” button next to the permalink and change the slug as "
|
3597 |
+
"desired. The Slug Optimizer won’t remove words from a manually-edited "
|
3598 |
+
"slug.</li>\n"
|
3599 |
+
"\t<li><strong>If I edit the optimized slug but then change my mind, how do I "
|
3600 |
+
"revert back to the optimized slug?</strong><br />When editing the post or "
|
3601 |
+
"page in question, just click the “Edit” button next to the "
|
3602 |
+
"permalink; a “Save” button will appear in its place. Next erase "
|
3603 |
+
"the contents of the textbox, and then click the aforementioned “"
|
3604 |
+
"Save” button.</li>\n"
|
3605 |
+
"</ul>\n"
|
3606 |
+
msgstr ""
|
3607 |
+
|
3608 |
+
#: modules/slugs/slugs.php:102
|
3609 |
+
msgid ""
|
3610 |
+
"\n"
|
3611 |
+
"<ul>\n"
|
3612 |
+
"\t<li><strong>Why didn’t the Slug Optimizer remove common words from "
|
3613 |
+
"my slug?</strong><br />It’s possible that every word in your post "
|
3614 |
+
"title is in the list of words to remove. In this case, Slug Optimizer "
|
3615 |
+
"doesn’t remove the words, because if it did, you’d end up with a "
|
3616 |
+
"blank slug.</li>\n"
|
3617 |
+
"</ul>\n"
|
3618 |
+
msgstr ""
|
3619 |
+
|
3620 |
+
#: modules/titles/titles.php:18 modules/titles/titles.php:19
|
3621 |
+
msgid "Title Tag Rewriter"
|
3622 |
+
msgstr ""
|
3623 |
+
|
3624 |
+
#: modules/titles/titles.php:47
|
3625 |
+
msgid "Title Tag"
|
3626 |
+
msgstr ""
|
3627 |
+
|
3628 |
+
#: modules/titles/titles.php:60
|
3629 |
+
msgid ""
|
3630 |
+
"Convert lowercase category/tag names to title case when used in title tags."
|
3631 |
+
msgstr ""
|
3632 |
+
|
3633 |
+
#: modules/titles/titles.php:60
|
3634 |
+
msgid "Title Tag Variables"
|
3635 |
+
msgstr ""
|
3636 |
+
|
3637 |
+
#: modules/titles/titles.php:62
|
3638 |
+
msgid ""
|
3639 |
+
"Use output buffering — no configuration required, but slower (default)"
|
3640 |
+
msgstr ""
|
3641 |
+
|
3642 |
+
#: modules/titles/titles.php:63
|
3643 |
+
msgid ""
|
3644 |
+
"Use filtering — faster, but configuration required (see the “"
|
3645 |
+
"Settings Tab” section of the “Help” dropdown for details)"
|
3646 |
+
msgstr ""
|
3647 |
+
|
3648 |
+
#: modules/titles/titles.php:64
|
3649 |
+
msgid "Rewrite Method"
|
3650 |
+
msgstr ""
|
3651 |
+
|
3652 |
+
#: modules/titles/titles.php:72
|
3653 |
+
msgid "{blog}"
|
3654 |
+
msgstr ""
|
3655 |
+
|
3656 |
+
#: modules/titles/titles.php:73
|
3657 |
+
msgid "{post} | {blog}"
|
3658 |
+
msgstr ""
|
3659 |
+
|
3660 |
+
#: modules/titles/titles.php:74
|
3661 |
+
msgid "{page} | {blog}"
|
3662 |
+
msgstr ""
|
3663 |
+
|
3664 |
+
#: modules/titles/titles.php:75
|
3665 |
+
msgid "{category} | {blog}"
|
3666 |
+
msgstr ""
|
3667 |
+
|
3668 |
+
#: modules/titles/titles.php:76
|
3669 |
+
msgid "{tag} | {blog}"
|
3670 |
+
msgstr ""
|
3671 |
+
|
3672 |
+
#: modules/titles/titles.php:77
|
3673 |
+
msgid "Archives for {month} {day}, {year} | {blog}"
|
3674 |
+
msgstr ""
|
3675 |
+
|
3676 |
+
#: modules/titles/titles.php:78
|
3677 |
+
msgid "Archives for {month} {year} | {blog}"
|
3678 |
+
msgstr ""
|
3679 |
+
|
3680 |
+
#: modules/titles/titles.php:79
|
3681 |
+
msgid "Archives for {year} | {blog}"
|
3682 |
+
msgstr ""
|
3683 |
+
|
3684 |
+
#: modules/titles/titles.php:80
|
3685 |
+
msgid "Posts by {author} | {blog}"
|
3686 |
+
msgstr ""
|
3687 |
+
|
3688 |
+
#: modules/titles/titles.php:81
|
3689 |
+
msgid "Search Results for {query} | {blog}"
|
3690 |
+
msgstr ""
|
3691 |
+
|
3692 |
+
#: modules/titles/titles.php:82
|
3693 |
+
msgid "404 Not Found | {blog}"
|
3694 |
+
msgstr ""
|
3695 |
+
|
3696 |
+
#: modules/titles/titles.php:83
|
3697 |
+
msgid "{title} - Page {num}"
|
3698 |
+
msgstr ""
|
3699 |
+
|
3700 |
+
#: modules/titles/titles.php:93
|
3701 |
+
msgid "Post Title Format"
|
3702 |
+
msgstr ""
|
3703 |
+
|
3704 |
+
#: modules/titles/titles.php:94
|
3705 |
+
msgid "Page Title Format"
|
3706 |
+
msgstr ""
|
3707 |
+
|
3708 |
+
#: modules/titles/titles.php:95
|
3709 |
+
msgid "Category Title Format"
|
3710 |
+
msgstr ""
|
3711 |
+
|
3712 |
+
#: modules/titles/titles.php:96
|
3713 |
+
msgid "Tag Title Format"
|
3714 |
+
msgstr ""
|
3715 |
+
|
3716 |
+
#: modules/titles/titles.php:97
|
3717 |
+
msgid "Day Archive Title Format"
|
3718 |
+
msgstr ""
|
3719 |
+
|
3720 |
+
#: modules/titles/titles.php:98
|
3721 |
+
msgid "Month Archive Title Format"
|
3722 |
+
msgstr ""
|
3723 |
+
|
3724 |
+
#: modules/titles/titles.php:99
|
3725 |
+
msgid "Year Archive Title Format"
|
3726 |
+
msgstr ""
|
3727 |
+
|
3728 |
+
#: modules/titles/titles.php:100
|
3729 |
+
msgid "Author Archive Title Format"
|
3730 |
+
msgstr ""
|
3731 |
+
|
3732 |
+
#: modules/titles/titles.php:101
|
3733 |
+
msgid "Search Title Format"
|
3734 |
+
msgstr ""
|
3735 |
+
|
3736 |
+
#: modules/titles/titles.php:102
|
3737 |
+
msgid "404 Title Format"
|
3738 |
+
msgstr ""
|
3739 |
+
|
3740 |
+
#: modules/titles/titles.php:103
|
3741 |
+
msgid "Pagination Title Format"
|
3742 |
+
msgstr ""
|
3743 |
+
|
3744 |
+
#: modules/titles/titles.php:338
|
3745 |
+
msgid "Title Tag:"
|
3746 |
+
msgstr ""
|
3747 |
+
|
3748 |
+
#: modules/titles/titles.php:340
|
3749 |
+
#, php-format
|
3750 |
+
msgid "You’ve entered %s characters. Most search engines use up to 70."
|
3751 |
+
msgstr ""
|
3752 |
+
|
3753 |
+
#: modules/titles/titles.php:348
|
3754 |
+
msgid ""
|
3755 |
+
"<strong>Title Tag</strong> — The exact contents of the <title> "
|
3756 |
+
"tag. The title appears in visitors’ title bars and in search engine "
|
3757 |
+
"result titles. If this box is left blank, then the <a href=\"admin.php?"
|
3758 |
+
"page=su-titles\" target=\"_blank\">default post/page titles</a> are used."
|
3759 |
+
msgstr ""
|
3760 |
+
|
3761 |
+
#: modules/titles/titles.php:357
|
3762 |
+
msgid ""
|
3763 |
+
"\n"
|
3764 |
+
"<ul>\n"
|
3765 |
+
"\t<li><strong>What it does:</strong> Title Tag Rewriter helps you customize "
|
3766 |
+
"the contents of your website’s <code><title></code> tags. The "
|
3767 |
+
"tag contents are displayed in web browser title bars and in search engine "
|
3768 |
+
"result pages.</li>\n"
|
3769 |
+
"\t<li><strong>Why it helps:</strong> Proper title rewriting ensures that the "
|
3770 |
+
"keywords in your post/Page titles have greater prominence for search engine "
|
3771 |
+
"spiders and users. This is an important foundation for WordPress SEO.</li>\n"
|
3772 |
+
"\t<li><strong>How to use it:</strong> Title Tag Rewriter enables recommended "
|
3773 |
+
"settings automatically, so you shouldn’t need to change anything. If "
|
3774 |
+
"you do wish to edit the rewriting formats, you can do so using the textboxes "
|
3775 |
+
"below (the “Formats & Variables” help tab includes additional "
|
3776 |
+
"information on this). You also have the option of overriding the <code><"
|
3777 |
+
"title></code> tag of an individual post/page/category/tag/etc. using the "
|
3778 |
+
"appropriate tabs below, or by using the “Title Tag” textbox that "
|
3779 |
+
"Title Tag Rewriter adds to the post/page editors.</li>\n"
|
3780 |
+
"</ul>\n"
|
3781 |
+
msgstr ""
|
3782 |
+
|
3783 |
+
#: modules/titles/titles.php:367
|
3784 |
+
msgid "Default Formats Tab"
|
3785 |
+
msgstr ""
|
3786 |
+
|
3787 |
+
#: modules/titles/titles.php:368
|
3788 |
+
msgid ""
|
3789 |
+
"\n"
|
3790 |
+
"<p>Various variables, surrounded in {curly brackets}, are provided for use "
|
3791 |
+
"in the title formats. All settings support the {blog} variable, which is "
|
3792 |
+
"replaced with the name of the blog, and the {tagline} variable, which is "
|
3793 |
+
"replaced with the blog tagline as set under <a href='options-general."
|
3794 |
+
"php'>Settings ⇒ General</a>.</p>\n"
|
3795 |
+
"\n"
|
3796 |
+
"<p>Here’s information on each of the settings and its supported "
|
3797 |
+
"variables:</p>\n"
|
3798 |
+
"\n"
|
3799 |
+
"<ul>\n"
|
3800 |
+
"\t<li><strong>Blog Homepage Title</strong> — Displays on the main blog "
|
3801 |
+
"posts page.</li>\n"
|
3802 |
+
"\t<li>\n"
|
3803 |
+
"\t\t<p><strong>Post Title Format</strong> — Displays on single-post "
|
3804 |
+
"pages. Supports these variables:</p>\n"
|
3805 |
+
"\t\t<ul>\n"
|
3806 |
+
"\t\t\t<li>{post} — The post’s title.</li>\n"
|
3807 |
+
"\t\t\t<li>{category} — The title of the post category with the lowest "
|
3808 |
+
"ID number.</li>\n"
|
3809 |
+
"\t\t\t<li>{categories} — A natural-language list of the post’s "
|
3810 |
+
"categories (e.g. “Category A, Category B, and Category C”).</"
|
3811 |
+
"li>\n"
|
3812 |
+
"\t\t\t<li>{tags} — A natural-language list of the post's tags (e.g. "
|
3813 |
+
"“Tag A, Tag B, and Tag C”).</li>\n"
|
3814 |
+
"\t\t\t<li>{author} — The Display Name of the post's author.</li>\n"
|
3815 |
+
"\t\t\t<li>{author_username}, {author_firstname}, {author_lastname}, "
|
3816 |
+
"{author_nickname} — The username, first name, last name, and nickname "
|
3817 |
+
"of the post’s author, respectively, as set in his or her profile.</"
|
3818 |
+
"li>\n"
|
3819 |
+
"\t\t</ul>\n"
|
3820 |
+
"\t</li>\n"
|
3821 |
+
"\t<li>\n"
|
3822 |
+
"\t\t<p><strong>Page Title Format</strong> — Displays on WordPress "
|
3823 |
+
"Pages. Supports these variables:\n"
|
3824 |
+
"\t\t<ul>\n"
|
3825 |
+
"\t\t\t<li>{page} — The page’s title.</li>\n"
|
3826 |
+
"\t\t\t<li>{page_parent} — The title of the page’s parent page.</"
|
3827 |
+
"li>\n"
|
3828 |
+
"\t\t\t<li>{author} — The Display Name of the page’s author.</"
|
3829 |
+
"li>\n"
|
3830 |
+
"\t\t\t<li>{author_username}, {author_firstname}, {author_lastname}, "
|
3831 |
+
"{author_nickname} — The username, first name, last name, and nickname "
|
3832 |
+
"of the page’s author, respectively, as set in his or her profile.</"
|
3833 |
+
"li>\n"
|
3834 |
+
"\t\t</ul>\n"
|
3835 |
+
"\t</li>\n"
|
3836 |
+
"\t<li><strong>Category Title Format</strong> — Displays on category "
|
3837 |
+
"archives. The {category} variable is replaced with the name of the category, "
|
3838 |
+
"and {category_description} is replaced with its description.</li>\n"
|
3839 |
+
"\t<li><strong>Tag Title Format</strong> — Displays on tag archives. "
|
3840 |
+
"The {tag} variable is replaced with the name of the tag, and "
|
3841 |
+
"{tag_description} is replaced with its description.</li>\n"
|
3842 |
+
"\t<li>\n"
|
3843 |
+
"\t\t<p><strong>Day Archive Title Format</strong> — Displays on day "
|
3844 |
+
"archives. Supports these variables:</p>\n"
|
3845 |
+
"\t\t<ul>\n"
|
3846 |
+
"\t\t\t<li>{day} — The day number, with ordinal suffix, e.g. 23rd</li>\n"
|
3847 |
+
"\t\t\t<li>{daynum} — The two-digit day number, e.g. 23</li>\n"
|
3848 |
+
"\t\t\t<li>{month} — The name of the month, e.g. April</li>\n"
|
3849 |
+
"\t\t\t<li>{monthnum} — The two-digit number of the month, e.g. 04</"
|
3850 |
+
"li>\n"
|
3851 |
+
"\t\t\t<li>{year} — The year, e.g. 2009</li>\n"
|
3852 |
+
"\t\t</ul>\n"
|
3853 |
+
"\t</li>\n"
|
3854 |
+
"\t<li><strong>Month Archive Title Format</strong> — Displays on month "
|
3855 |
+
"archives. Supports {month}, {monthnum}, and {year}.</li>\n"
|
3856 |
+
"\t<li><strong>Year Archive Title Format</strong> — Displays on year "
|
3857 |
+
"archives. Supports the {year} variable.</li>\n"
|
3858 |
+
"\t<li><strong>Author Archive Title Format</strong> — Displays on "
|
3859 |
+
"author archives. Supports the same author variables as the Post Title Format "
|
3860 |
+
"box, i.e. {author}, {author_username}, {author_firstname}, "
|
3861 |
+
"{author_lastname}, and {author_nickname}.</li>\n"
|
3862 |
+
"\t<li><strong>Search Title Format</strong> — Displays on the result "
|
3863 |
+
"pages for WordPress’s blog search function. The {query} variable is "
|
3864 |
+
"replaced with the search query as-is. The {ucwords} variable returns the "
|
3865 |
+
"search query with the first letter of each word capitalized.</li>\n"
|
3866 |
+
"\t<li>\n"
|
3867 |
+
"\t\t<p><strong>404 Title Format</strong> — Displays whenever a URL "
|
3868 |
+
"doesn’t go anywhere. Supports this variable:</p>\n"
|
3869 |
+
"\t\t<ul>\n"
|
3870 |
+
"\t\t\t<li>{url_words} — The words used in the error-generating URL. "
|
3871 |
+
"The first letter of each word will be capitalized.</li>\n"
|
3872 |
+
"\t\t</ul>\n"
|
3873 |
+
"\t</li>\n"
|
3874 |
+
"\t<li>\n"
|
3875 |
+
"\t\t<p><strong>Pagination Title Format</strong> — Displays whenever "
|
3876 |
+
"the visitor is on a subpage (page 2, page 3, etc.) of the homepage or of an "
|
3877 |
+
"archive. Supports these variables:</p>\n"
|
3878 |
+
"\t\t<ul>\n"
|
3879 |
+
"\t\t\t<li>{title} — The title that would normally be displayed on page "
|
3880 |
+
"1</li>\n"
|
3881 |
+
"\t\t\t<li>{num} — The current page number (2, 3, etc.)</li>\n"
|
3882 |
+
"\t\t\t<li>{max} — The total number of subpages available. Would "
|
3883 |
+
"usually be used like this: Page {num} of {max}</li>\n"
|
3884 |
+
"\t\t</ul>\n"
|
3885 |
+
"\t</li>\n"
|
3886 |
+
"</ul>\n"
|
3887 |
+
msgstr ""
|
3888 |
+
|
3889 |
+
#: modules/titles/titles.php:431
|
3890 |
+
msgid ""
|
3891 |
+
"\n"
|
3892 |
+
"<p>Here’s documentation for the options on the “Settings” "
|
3893 |
+
"tab.</p>\n"
|
3894 |
+
"<ul>\n"
|
3895 |
+
"\t<li><strong>Convert lowercase category/tag names to title case when used "
|
3896 |
+
"in title tags</strong> — If your Tag Title Format is set to "
|
3897 |
+
"<code>{tag} | {blog}</code> and you have a tag called “blue widgets,"
|
3898 |
+
"” your title tag would be <code>blue widgets | My WordPress Blog</"
|
3899 |
+
"code>. Enabling this setting would capitalize the words in “blue "
|
3900 |
+
"widgets” so that the title tag would be <code>Blue Widgets | My "
|
3901 |
+
"WordPress Blog</code> instead.</li>\n"
|
3902 |
+
"\t<li>\n"
|
3903 |
+
"\t\t<p><strong>Rewrite Method</strong> — This setting controls the "
|
3904 |
+
"method by which Title Tag Rewriter edits your site’s <code><"
|
3905 |
+
"title></code> tags.</p>\n"
|
3906 |
+
"\t\t<ul>\n"
|
3907 |
+
"\t\t\t<li><strong>Use output buffering</strong> — This is the “"
|
3908 |
+
"traditional” method that most SEO plugins use.\n"
|
3909 |
+
"\t\t\t\tWith this method, SEO Ultimate will intercept your site’s "
|
3910 |
+
"<code><head></code> tag section as it’s being outputted, \n"
|
3911 |
+
"\t\t\t\tlocate the <code><title></code> tag, edit its value, and then "
|
3912 |
+
"output the edited <code><head></code> data. \n"
|
3913 |
+
"\t\t\t\tThe good thing about this method is that you don’t have to "
|
3914 |
+
"edit your theme in any way, as SEO Ultimate will overwrite \n"
|
3915 |
+
"\t\t\t\twhatever your theme puts in your <code><title></code> tag. The "
|
3916 |
+
"bad thing is that this output interception takes a few extra \n"
|
3917 |
+
"\t\t\t\tmilliseconds to complete. If you are concerned about performance, "
|
3918 |
+
"are comfortable editing your theme’s header.php file, \n"
|
3919 |
+
"\t\t\t\tand will remember to edit the header.php file of any new themes you "
|
3920 |
+
"activate, you may want to try the filtering rewrite method.</li>\n"
|
3921 |
+
"\t\t\t<li>\n"
|
3922 |
+
"\t\t\t\t<p><strong>Use filtering</strong> — With this method, SEO "
|
3923 |
+
"Ultimate will register itself with WordPress and will replace \n"
|
3924 |
+
"\t\t\t\tWordPress’s <code><title></code> tag output with its "
|
3925 |
+
"own. This method can only edit the text that WordPress itself \n"
|
3926 |
+
"\t\t\t\tgenerates for the <code><title></code> tag; the filtering "
|
3927 |
+
"method can’t edit anything extra your theme may add. \n"
|
3928 |
+
"\t\t\t\tFor this reason, you need to edit your theme to make sure it’s "
|
3929 |
+
"only pulling <code><title></code> tag data from WordPress \n"
|
3930 |
+
"\t\t\t\tand is not adding anything else.</p>\n"
|
3931 |
+
"\t\t\t\t<p>Here’s how to set up filtering:</p>\n"
|
3932 |
+
"\t\t\t\t<ol>\n"
|
3933 |
+
"\t\t\t\t\t<li>Go to <a href='theme-editor.php'>Appearance ⇒ Editor</a> "
|
3934 |
+
"(if you get a permissions error, you may be on a WordPress multi-site "
|
3935 |
+
"environment and may not be able to use the filtering rewrite method)</li>\n"
|
3936 |
+
"\t\t\t\t\t<li>Click “Header (header.php)”</li>\n"
|
3937 |
+
"\t\t\t\t\t<li>Look for the <code><title></code> start tag and the "
|
3938 |
+
"<code></title></code> end tag</li>\n"
|
3939 |
+
"\t\t\t\t\t<li>Edit the text in between those tags so that it looks like "
|
3940 |
+
"this: <code><title><?php wp_title(''); ?></title></code></"
|
3941 |
+
"li>\n"
|
3942 |
+
"\t\t\t\t\t<li>Click “Update File”</li>\n"
|
3943 |
+
"\t\t\t\t\t<li>Return to the “Settings” tab of Title Tag "
|
3944 |
+
"Rewriter, select “Use filtering,” and click “Save "
|
3945 |
+
"Changes”</li>\n"
|
3946 |
+
"\t\t\t\t</ol>\n"
|
3947 |
+
"\t\t\t</li>\n"
|
3948 |
+
"\t\t</ul>\n"
|
3949 |
+
"\t</li>\n"
|
3950 |
+
"</ul>\n"
|
3951 |
+
msgstr ""
|
3952 |
+
|
3953 |
+
#: modules/titles/titles.php:469
|
3954 |
+
msgid ""
|
3955 |
+
"\n"
|
3956 |
+
"<ul>\n"
|
3957 |
+
"\t<li><strong>Does the Title Tag Rewriter edit my post/page titles?</"
|
3958 |
+
"strong><br />No. The Title Tag Rewriter edits the <code><title></code> "
|
3959 |
+
"tags of your site, not your post/page titles.</li>\n"
|
3960 |
+
"\t<li><strong>Will rewriting the title tags of my posts change their "
|
3961 |
+
"permalinks/URLs?</strong><br />No.</li>\n"
|
3962 |
+
"\t<li><strong>What’s the difference between the “title” "
|
3963 |
+
"and the “title tag” of a post/page?</strong><br />The “"
|
3964 |
+
"title” is the title of your post or page that’s used in your "
|
3965 |
+
"site’s theme, in your site’s admin, in your site’s RSS "
|
3966 |
+
"feeds, and in your site’s <code><title></code> tags. A <code><"
|
3967 |
+
"title></code> tag is the title of a specific webpage, and it appears in "
|
3968 |
+
"your browser’s title bar and in search result listings. Title Tag "
|
3969 |
+
"Rewriter lets you edit your post’s <code><title></code> tags "
|
3970 |
+
"without editing their actual titles. This means you can edit a post’s "
|
3971 |
+
"title as it appears in search results, but not as it appears on your site.</"
|
3972 |
+
"li>\n"
|
3973 |
+
"</ul>\n"
|
3974 |
+
msgstr ""
|
3975 |
+
|
3976 |
+
#: modules/titles/titles.php:480
|
3977 |
+
msgid ""
|
3978 |
+
"\n"
|
3979 |
+
"<ul>\n"
|
3980 |
+
"\t<li><strong>Why isn’t Title Tag Rewriter changing my <code><"
|
3981 |
+
"title></code> tags?</strong><br />Try disabling other SEO plugins, as "
|
3982 |
+
"they may be conflicting with SEO Ultimate. If you’re using the default "
|
3983 |
+
"“output buffering” rewrite method, check to make sure your theme "
|
3984 |
+
"is <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
|
3985 |
+
"target='_blank'>plugin-friendly</a>. If you're using the “"
|
3986 |
+
"filtering” rewrite method, check your theme’s <code>header.php</"
|
3987 |
+
"code> file and make sure the <code><title></code> tag looks like this: "
|
3988 |
+
"<code><title><?php wp_title(''); ?></title></code>.</li>\n"
|
3989 |
+
"</ul>\n"
|
3990 |
+
msgstr ""
|
3991 |
+
|
3992 |
+
#: modules/user-code/user-code.php:21 modules/user-code/user-code.php:22
|
3993 |
+
msgid "Code Inserter"
|
3994 |
+
msgstr ""
|
3995 |
+
|
3996 |
+
#: modules/user-code/user-code.php:57
|
3997 |
+
msgid "<head> Tag"
|
3998 |
+
msgstr ""
|
3999 |
+
|
4000 |
+
#: modules/user-code/user-code.php:58
|
4001 |
+
msgid "Before Item Content"
|
4002 |
+
msgstr ""
|
4003 |
+
|
4004 |
+
#: modules/user-code/user-code.php:59
|
4005 |
+
msgid "After Item Content"
|
4006 |
+
msgstr ""
|
4007 |
+
|
4008 |
+
#: modules/user-code/user-code.php:60
|
4009 |
+
msgid "Footer"
|
4010 |
+
msgstr ""
|
4011 |
+
|
4012 |
+
#: modules/user-code/user-code.php:80
|
4013 |
+
msgid "Code Inserter module"
|
4014 |
+
msgstr ""
|
4015 |
+
|
4016 |
+
#: modules/user-code/user-code.php:100
|
4017 |
+
msgid ""
|
4018 |
+
"\n"
|
4019 |
+
"<ul>\n"
|
4020 |
+
"\t<li><strong>What it does:</strong> Code Inserter can add custom HTML code "
|
4021 |
+
"to various parts of your site.</li>\n"
|
4022 |
+
"\t<li>\n"
|
4023 |
+
"\t\t<p><strong>Why it helps:</strong> Code Inserter is useful for inserting "
|
4024 |
+
"third-party code that can improve the SEO or user experience of your site. "
|
4025 |
+
"For example, you can use Code Inserter to add Google Analytics code to your "
|
4026 |
+
"footer, Feedburner FeedFlares or social media widgets after your posts, or "
|
4027 |
+
"Google AdSense section targeting code before/after your content.</p>\n"
|
4028 |
+
"\t\t<p>Using Code Inserter is easier than editing your theme manually "
|
4029 |
+
"because your custom code is stored in one convenient location and will be "
|
4030 |
+
"added to your site even if you change your site’s theme.</p>\n"
|
4031 |
+
"\t</li>\n"
|
4032 |
+
"\t<li><strong>How to use it:</strong> Just paste the desired HTML code into "
|
4033 |
+
"the appropriate fields and then click Save Changes.</li>\n"
|
4034 |
+
"</ul>\n"
|
4035 |
+
msgstr ""
|
4036 |
+
|
4037 |
+
#: modules/user-code/user-code.php:114
|
4038 |
+
msgid ""
|
4039 |
+
"\n"
|
4040 |
+
"<ul>\n"
|
4041 |
+
"\t<li><p><strong>Why do I get a message saying my account doesn’t have "
|
4042 |
+
"permission to insert arbitrary HTML code?</strong><br />WordPress has a "
|
4043 |
+
"security feature that only allows administrators to insert arbitrary, "
|
4044 |
+
"unfiltered HTML into the site. On single-site setups, site administrators "
|
4045 |
+
"have this capability. On multisite setups, only network admins have this "
|
4046 |
+
"capability. This is done for security reasons, since site users with the "
|
4047 |
+
"ability to insert arbitrary HTML could theoretically insert malicious code "
|
4048 |
+
"that could be used to hijack control of the site.</p><p>If you are the "
|
4049 |
+
"administrator of a site running on a network, then you will not be able to "
|
4050 |
+
"use Code Inserter under default security settings. However, the network "
|
4051 |
+
"administrator <em>will</em> be able to edit the fields on this page. If you "
|
4052 |
+
"have code that you really want inserted into a certain part of your site, "
|
4053 |
+
"ask your network administrator to do it for you.</p><p>If you are the "
|
4054 |
+
"network administrator of a multisite WordPress setup, and you completely "
|
4055 |
+
"trust all of the administrators and editors of the various sites on your "
|
4056 |
+
"network, you can install the <a href='http://wordpress.org/extend/plugins/"
|
4057 |
+
"unfiltered-mu/' target='_blank'>Unfiltered MU</a> plugin to enable the Code "
|
4058 |
+
"Inserter for all of those users.</p></li>\n"
|
4059 |
+
"\t<li><strong>Why doesn't my code appear on my site?</strong><br />It’"
|
4060 |
+
"s possible that your theme doesn't have the proper “hooks,” "
|
4061 |
+
"which are pieces of code that let WordPress plugins insert custom HTML into "
|
4062 |
+
"your theme. <a href='http://johnlamansky.com/wordpress/theme-plugin-hooks/' "
|
4063 |
+
"target='_blank'>Click here</a> for information on how to check your theme "
|
4064 |
+
"and add the hooks if needed.</li>\n"
|
4065 |
+
"</ul>\n"
|
4066 |
+
msgstr ""
|
4067 |
+
|
4068 |
+
#: modules/widgets/widgets.php:12
|
4069 |
+
msgid "SEO Ultimate Widgets"
|
4070 |
+
msgstr ""
|
4071 |
+
|
4072 |
+
#: modules/widgets/widgets.php:46
|
4073 |
+
msgid ""
|
4074 |
+
"On category archives, displays a list of child categories and/or posts in "
|
4075 |
+
"the category. Displays a list of top-level categories everywhere else. "
|
4076 |
+
"Powered by the SEO Ultimate plugin."
|
4077 |
+
msgstr ""
|
4078 |
+
|
4079 |
+
#: modules/widgets/widgets.php:47
|
4080 |
+
msgid "Siloed Categories"
|
4081 |
+
msgstr ""
|
4082 |
+
|
4083 |
+
#: modules/widgets/widgets.php:61
|
4084 |
+
msgid "Tags"
|
4085 |
+
msgstr ""
|
4086 |
+
|
4087 |
+
#: modules/widgets/widgets.php:144
|
4088 |
+
msgid "Show post counts"
|
4089 |
+
msgstr ""
|
4090 |
+
|
4091 |
+
#: modules/widgets/widgets.php:146
|
4092 |
+
msgid "Use term descriptions in title attributes"
|
4093 |
+
msgstr ""
|
4094 |
+
|
4095 |
+
#: modules/widgets/widgets.php:148
|
4096 |
+
msgid "Taxonomy:"
|
4097 |
+
msgstr ""
|
4098 |
+
|
4099 |
+
#: modules/widgets/widgets.php:173
|
4100 |
+
msgid ""
|
4101 |
+
"Add this widget to display Deeplink Juggernaut’s Footer Links in a "
|
4102 |
+
"widget area of your choosing rather than the default wp_footer section. "
|
4103 |
+
"Powered by the SEO Ultimate plugin."
|
4104 |
+
msgstr ""
|
4105 |
+
|
4106 |
+
#: modules/widgets/widgets.php:227
|
4107 |
+
msgid "Title: <em>(optional)</em>"
|
4108 |
+
msgstr ""
|
4109 |
+
|
4110 |
+
#: modules/widgets/widgets.php:231
|
4111 |
+
msgid "Display as a list"
|
4112 |
+
msgstr ""
|
4113 |
+
|
4114 |
+
#: modules/widgets/widgets.php:234
|
4115 |
+
#, php-format
|
4116 |
+
msgid "Use my <a href=\"%s\" target=\"_blank\">footer link HTML formats</a>"
|
4117 |
+
msgstr ""
|
4118 |
+
|
4119 |
+
#: modules/wp-settings/wp-settings.php:14
|
4120 |
+
#: modules/wp-settings/wp-settings.php:15
|
4121 |
+
msgid "Settings Monitor"
|
4122 |
+
msgstr ""
|
4123 |
+
|
4124 |
+
#: modules/wp-settings/wp-settings.php:30
|
4125 |
+
msgid "Blog is visible to search engines"
|
4126 |
+
msgstr ""
|
4127 |
+
|
4128 |
+
#: modules/wp-settings/wp-settings.php:31
|
4129 |
+
msgid "WordPress will allow search engines to visit your site."
|
4130 |
+
msgstr ""
|
4131 |
+
|
4132 |
+
#: modules/wp-settings/wp-settings.php:33
|
4133 |
+
msgid "Blog is hidden from search engines"
|
4134 |
+
msgstr ""
|
4135 |
+
|
4136 |
+
#: modules/wp-settings/wp-settings.php:34
|
4137 |
+
msgid ""
|
4138 |
+
"WordPress is configured to discourage search engines. This will nullify your "
|
4139 |
+
"site’s SEO and should be resolved immediately."
|
4140 |
+
msgstr ""
|
4141 |
+
|
4142 |
+
#: modules/wp-settings/wp-settings.php:38
|
4143 |
+
msgid "Query-string permalinks enabled"
|
4144 |
+
msgstr ""
|
4145 |
+
|
4146 |
+
#: modules/wp-settings/wp-settings.php:39
|
4147 |
+
msgid ""
|
4148 |
+
"It is highly recommended that you use a non-default and non-numeric "
|
4149 |
+
"permalink structure."
|
4150 |
+
msgstr ""
|
4151 |
+
|
4152 |
+
#: modules/wp-settings/wp-settings.php:43
|
4153 |
+
msgid "Pathinfo permalinks enabled"
|
4154 |
+
msgstr ""
|
4155 |
+
|
4156 |
+
#: modules/wp-settings/wp-settings.php:44
|
4157 |
+
msgid ""
|
4158 |
+
"Pathinfo permalinks add a keyword-less “index.php” prefix. This "
|
4159 |
+
"is not ideal, but it may be beyond your control (since it’s likely "
|
4160 |
+
"caused by your site’s web hosting setup)."
|
4161 |
+
msgstr ""
|
4162 |
+
|
4163 |
+
#: modules/wp-settings/wp-settings.php:49
|
4164 |
+
msgid "Permalinks include the post slug"
|
4165 |
+
msgstr ""
|
4166 |
+
|
4167 |
+
#: modules/wp-settings/wp-settings.php:50
|
4168 |
+
msgid ""
|
4169 |
+
"Including a version of the post’s title helps provide keyword-rich "
|
4170 |
+
"URLs."
|
4171 |
+
msgstr ""
|
4172 |
+
|
4173 |
+
#: modules/wp-settings/wp-settings.php:52
|
4174 |
+
msgid "Permalinks do not include the post slug"
|
4175 |
+
msgstr ""
|
4176 |
+
|
4177 |
+
#: modules/wp-settings/wp-settings.php:53
|
4178 |
+
msgid ""
|
4179 |
+
"It is highly recommended that you include the %postname% variable in the "
|
4180 |
+
"permalink structure."
|
4181 |
+
msgstr ""
|
4182 |
+
|
4183 |
+
#: modules/wp-settings/wp-settings.php:68
|
4184 |
+
msgid ""
|
4185 |
+
"Settings Monitor analyzes your blog’s settings and notifies you of any "
|
4186 |
+
"problems. If any issues are found, they will show up in red or yellow below."
|
4187 |
+
msgstr ""
|
4188 |
+
|
4189 |
+
#: modules/wp-settings/wp-settings.php:80
|
4190 |
+
msgid "Go to setting »"
|
4191 |
+
msgstr ""
|
4192 |
+
|
4193 |
+
#: plugin/class.seo-ultimate.php:847
|
4194 |
+
msgid "SEO"
|
4195 |
+
msgstr ""
|
4196 |
+
|
4197 |
+
#: plugin/class.seo-ultimate.php:1117
|
4198 |
+
msgid ""
|
4199 |
+
"It looks like you made changes to the settings of this SEO Ultimate module. "
|
4200 |
+
"If you leave before saving, those changes will be lost."
|
4201 |
+
msgstr ""
|
4202 |
+
|
4203 |
+
#: plugin/class.seo-ultimate.php:1211 plugin/class.seo-ultimate.php:1636
|
4204 |
+
msgid "SEO Settings"
|
4205 |
+
msgstr ""
|
4206 |
+
|
4207 |
+
#: plugin/class.seo-ultimate.php:1250
|
4208 |
+
#, php-format
|
4209 |
+
msgid ""
|
4210 |
+
"%1$s is known to cause conflicts with SEO Ultimate. Please deactivate %1$s "
|
4211 |
+
"if you wish to continue using SEO Ultimate."
|
4212 |
+
msgstr ""
|
4213 |
+
|
4214 |
+
#: plugin/class.seo-ultimate.php:1294
|
4215 |
+
msgid "new module"
|
4216 |
+
msgstr ""
|
4217 |
+
|
4218 |
+
#: plugin/class.seo-ultimate.php:1294
|
4219 |
+
msgid "new modules"
|
4220 |
+
msgstr ""
|
4221 |
+
|
4222 |
+
#: plugin/class.seo-ultimate.php:1295
|
4223 |
+
msgid "new feature"
|
4224 |
+
msgstr ""
|
4225 |
+
|
4226 |
+
#: plugin/class.seo-ultimate.php:1295
|
4227 |
+
msgid "new features"
|
4228 |
+
msgstr ""
|
4229 |
+
|
4230 |
+
#: plugin/class.seo-ultimate.php:1296
|
4231 |
+
msgid "bugfix"
|
4232 |
+
msgstr ""
|
4233 |
+
|
4234 |
+
#: plugin/class.seo-ultimate.php:1296
|
4235 |
+
msgid "bugfixes"
|
4236 |
+
msgstr ""
|
4237 |
+
|
4238 |
+
#: plugin/class.seo-ultimate.php:1297
|
4239 |
+
msgid "improvement"
|
4240 |
+
msgstr ""
|
4241 |
+
|
4242 |
+
#: plugin/class.seo-ultimate.php:1297
|
4243 |
+
msgid "improvements"
|
4244 |
+
msgstr ""
|
4245 |
+
|
4246 |
+
#: plugin/class.seo-ultimate.php:1298
|
4247 |
+
msgid "security fix"
|
4248 |
+
msgstr ""
|
4249 |
+
|
4250 |
+
#: plugin/class.seo-ultimate.php:1298
|
4251 |
+
msgid "security fixes"
|
4252 |
+
msgstr ""
|
4253 |
+
|
4254 |
+
#: plugin/class.seo-ultimate.php:1299
|
4255 |
+
msgid "new language pack"
|
4256 |
+
msgstr ""
|
4257 |
+
|
4258 |
+
#: plugin/class.seo-ultimate.php:1299
|
4259 |
+
msgid "new language packs"
|
4260 |
+
msgstr ""
|
4261 |
+
|
4262 |
+
#: plugin/class.seo-ultimate.php:1300
|
4263 |
+
msgid "language pack update"
|
4264 |
+
msgstr ""
|
4265 |
+
|
4266 |
+
#: plugin/class.seo-ultimate.php:1300
|
4267 |
+
msgid "language pack updates"
|
4268 |
+
msgstr ""
|
4269 |
+
|
4270 |
+
#: plugin/class.seo-ultimate.php:1331
|
4271 |
+
#, php-format
|
4272 |
+
msgid "%d %s"
|
4273 |
+
msgstr ""
|
4274 |
+
|
4275 |
+
#: plugin/class.seo-ultimate.php:1337
|
4276 |
+
#, php-format
|
4277 |
+
msgid "Upgrade now to get %s. %s."
|
4278 |
+
msgstr ""
|
4279 |
+
|
4280 |
+
#: plugin/class.seo-ultimate.php:1339
|
4281 |
+
msgid "View changelog"
|
4282 |
+
msgstr ""
|
4283 |
+
|
4284 |
+
#: plugin/class.seo-ultimate.php:1416
|
4285 |
+
msgid "Active Modules: "
|
4286 |
+
msgstr ""
|
4287 |
+
|
4288 |
+
#: plugin/class.seo-ultimate.php:1483
|
4289 |
+
msgid ""
|
4290 |
+
"<strong>SEO Ultimate Notice:</strong> Your blog is configured to block "
|
4291 |
+
"search engine spiders. To resolve this, <a href=\"options-reading.php\" "
|
4292 |
+
"target=\"_blank\">go to your Reading settings</a> and disable the “"
|
4293 |
+
"discourage search engines” option."
|
4294 |
+
msgstr ""
|
4295 |
+
|
4296 |
+
#: plugin/class.seo-ultimate.php:1564
|
4297 |
+
msgid "Search Engine Listing"
|
4298 |
+
msgstr ""
|
4299 |
+
|
4300 |
+
#: plugin/class.seo-ultimate.php:1565
|
4301 |
+
msgid "Social Networks Listing"
|
4302 |
+
msgstr ""
|
4303 |
+
|
4304 |
+
#: plugin/class.seo-ultimate.php:1566
|
4305 |
+
msgid "Links"
|
4306 |
+
msgstr ""
|
4307 |
+
|
4308 |
+
#: plugin/class.seo-ultimate.php:1667
|
4309 |
+
#, php-format
|
4310 |
+
msgid "%1$s %2$s by %3$s"
|
4311 |
+
msgstr ""
|
4312 |
+
|
4313 |
+
#: plugin/class.seo-ultimate.php:1855
|
4314 |
+
msgid "Home"
|
4315 |
+
msgstr ""
|
4316 |
+
|
4317 |
+
#: plugin/class.seo-ultimate.php:1926
|
4318 |
+
msgid "Author Archives"
|
4319 |
+
msgstr ""
|
4320 |
+
|
4321 |
+
#: plugin/class.seo-ultimate.php:1955
|
4322 |
+
msgid "Link Masks"
|
4323 |
+
msgstr ""
|
4324 |
+
|
4325 |
+
#: plugin/class.su-installer.php:11
|
4326 |
+
msgid "Package not available."
|
4327 |
+
msgstr ""
|
4328 |
+
|
4329 |
+
#: plugin/class.su-installer.php:14
|
4330 |
+
msgid "Removing the current version of the plugin…"
|
4331 |
+
msgstr ""
|
4332 |
+
|
4333 |
+
#: plugin/class.su-installer.php:15
|
4334 |
+
msgid "Could not remove the current version of the plugin."
|
4335 |
+
msgstr ""
|
4336 |
+
|
4337 |
+
#: plugin/class.su-installer.php:19
|
4338 |
+
#, php-format
|
4339 |
+
msgid "Downloading old version from <span class=\"code\">%s</span>…"
|
4340 |
+
msgstr ""
|
4341 |
+
|
4342 |
+
#: plugin/class.su-installer.php:20
|
4343 |
+
msgid "Unpacking the downgrade…"
|
4344 |
+
msgstr ""
|
4345 |
+
|
4346 |
+
#: plugin/class.su-installer.php:21
|
4347 |
+
msgid "Installing the downgrade…"
|
4348 |
+
msgstr ""
|
4349 |
+
|
4350 |
+
#: plugin/class.su-installer.php:22
|
4351 |
+
msgid "Plugin downgrade failed."
|
4352 |
+
msgstr ""
|
4353 |
+
|
4354 |
+
#: plugin/class.su-installer.php:23
|
4355 |
+
msgid "Plugin downgraded successfully."
|
4356 |
+
msgstr ""
|
4357 |
+
|
4358 |
+
#: plugin/class.su-installer.php:26
|
4359 |
+
#, php-format
|
4360 |
+
msgid "Downloading from <span class=\"code\">%s</span>…"
|
4361 |
+
msgstr ""
|
4362 |
+
|
4363 |
+
#: plugin/class.su-installer.php:27
|
4364 |
+
msgid "Unpacking the reinstall…"
|
4365 |
+
msgstr ""
|
4366 |
+
|
4367 |
+
#: plugin/class.su-installer.php:28
|
4368 |
+
msgid "Reinstalling the current version…"
|
4369 |
+
msgstr ""
|
4370 |
+
|
4371 |
+
#: plugin/class.su-installer.php:29
|
4372 |
+
msgid "Plugin reinstallation failed."
|
4373 |
+
msgstr ""
|
4374 |
+
|
4375 |
+
#: plugin/class.su-installer.php:30
|
4376 |
+
msgid "Plugin reinstalled successfully."
|
4377 |
+
msgstr ""
|
4378 |
+
|
4379 |
+
#: plugin/class.su-installer.php:34
|
4380 |
+
#, php-format
|
4381 |
+
msgid "Downloading upgrade from <span class=\"code\">%s</span>…"
|
4382 |
+
msgstr ""
|
4383 |
+
|
4384 |
+
#: plugin/class.su-installer.php:35
|
4385 |
+
msgid "Unpacking the upgrade…"
|
4386 |
+
msgstr ""
|
4387 |
+
|
4388 |
+
#: plugin/class.su-installer.php:36
|
4389 |
+
msgid "Installing the upgrade…"
|
4390 |
+
msgstr ""
|
4391 |
+
|
4392 |
+
#: plugin/class.su-installer.php:37
|
4393 |
+
msgid "Plugin upgrade failed."
|
4394 |
+
msgstr ""
|
4395 |
+
|
4396 |
+
#: plugin/class.su-installer.php:38
|
4397 |
+
msgid "Plugin upgraded successfully."
|
4398 |
+
msgstr ""
|
4399 |
+
|
4400 |
+
#: seo-ultimate.php:84
|
4401 |
+
#, php-format
|
4402 |
+
msgid ""
|
4403 |
+
"SEO Ultimate requires WordPress %s or above. Please upgrade to the latest "
|
4404 |
+
"version of WordPress to enable SEO Ultimate on your blog, or deactivate SEO "
|
4405 |
+
"Ultimate to remove this notice."
|
4406 |
+
msgstr ""
|
translations/seo-ultimate-it_IT.mo
CHANGED
Binary file
|
translations/seo-ultimate-it_IT.po
CHANGED
@@ -1,910 +1,1463 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the SEO Ultimate package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEO Ultimate
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
10 |
"Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
|
|
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-
|
15 |
-
"X-Poedit-Country: ITALY\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e
|
|
|
18 |
"X-Poedit-Basepath: ../\n"
|
19 |
-
"
|
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
#:
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
#: modules/class.su-module.php:375
|
27 |
-
msgid "(Note: This translated documentation was designed for an older version of SEO Ultimate and may be outdated.)"
|
28 |
-
msgstr "(Nota: questa traduzione della documentazione è stata realizzata per una vecchia versione di SEO Ultimate e potrebbe essere quindi antiquata.)"
|
29 |
|
30 |
-
#:
|
31 |
-
msgid "
|
32 |
-
msgstr "
|
33 |
|
34 |
-
#:
|
35 |
-
|
36 |
-
msgid "%s
|
37 |
-
msgstr "%s
|
38 |
|
39 |
-
#:
|
40 |
-
|
41 |
-
|
|
|
42 |
|
43 |
-
#:
|
44 |
-
msgid "
|
45 |
-
msgstr "
|
46 |
|
47 |
-
#:
|
48 |
-
msgid "
|
49 |
-
msgstr "
|
50 |
|
51 |
-
#: modules/
|
52 |
-
msgid "
|
53 |
-
msgstr "
|
54 |
|
55 |
-
#: modules/
|
56 |
-
msgid "
|
57 |
-
msgstr "
|
58 |
|
59 |
-
#: modules/class.su-module.php:
|
60 |
-
#: modules/404s/fofs-log.php:113
|
61 |
msgid "Actions"
|
62 |
msgstr "Azioni"
|
63 |
|
64 |
-
#: modules/
|
65 |
-
msgid "
|
66 |
-
msgstr "
|
67 |
-
|
68 |
-
#: modules/class.su-module.php:1264
|
69 |
-
msgid "View"
|
70 |
-
msgstr "Vedi"
|
71 |
-
|
72 |
-
#: modules/class.su-module.php:1266
|
73 |
-
msgid "Edit"
|
74 |
-
msgstr "Modifica"
|
75 |
|
76 |
-
#: modules/
|
77 |
-
msgid "
|
78 |
-
msgstr "
|
79 |
|
80 |
-
#: modules/
|
81 |
-
msgid "
|
82 |
-
msgstr "
|
83 |
|
84 |
-
#: modules/
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
#: modules/
|
89 |
-
|
90 |
-
|
91 |
-
msgstr "Ripristina"
|
92 |
|
93 |
-
#: modules/
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
|
|
99 |
|
100 |
-
#: modules/
|
101 |
-
|
102 |
-
|
103 |
-
msgstr "Autore"
|
104 |
|
105 |
-
#: modules/
|
106 |
-
msgid "
|
107 |
-
msgstr "
|
108 |
|
109 |
-
#: modules/
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#: modules/
|
114 |
-
msgid "
|
115 |
-
msgstr "
|
116 |
|
117 |
-
#: modules/
|
118 |
-
msgid "
|
119 |
-
msgstr "
|
120 |
|
121 |
-
#: modules/
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
|
|
124 |
|
125 |
-
#: modules/
|
126 |
-
msgid "
|
127 |
-
msgstr "
|
128 |
|
129 |
-
#: modules/
|
130 |
-
|
131 |
-
|
|
|
132 |
|
133 |
-
#: modules/
|
134 |
-
msgid "
|
135 |
-
msgstr "
|
136 |
|
137 |
-
#: modules/
|
138 |
-
msgid "
|
139 |
-
msgstr "
|
140 |
|
141 |
-
#: modules/
|
142 |
-
msgid "
|
143 |
-
msgstr "
|
144 |
|
145 |
-
#: modules/
|
146 |
-
msgid "
|
147 |
-
msgstr "
|
148 |
|
149 |
-
#: modules/
|
150 |
-
msgid "
|
151 |
-
msgstr "
|
152 |
|
153 |
-
#: modules/
|
154 |
-
msgid "
|
155 |
-
msgstr "
|
156 |
|
157 |
-
#: modules/
|
158 |
-
msgid "
|
159 |
-
msgstr "
|
160 |
|
161 |
-
#: modules/
|
162 |
-
|
163 |
-
|
|
|
|
|
164 |
|
165 |
-
#: modules/
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
|
169 |
-
#: modules/
|
170 |
-
msgid "
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#: modules/
|
174 |
-
msgid "
|
175 |
-
msgstr "
|
176 |
|
177 |
-
#: modules/
|
178 |
-
msgid "
|
179 |
-
msgstr "
|
180 |
|
181 |
-
#: modules/
|
182 |
-
msgid "
|
183 |
-
msgstr "
|
184 |
|
185 |
-
#: modules/
|
186 |
-
msgid "
|
187 |
-
msgstr "
|
188 |
|
189 |
-
#: modules/
|
190 |
-
msgid "
|
191 |
-
|
192 |
-
msgstr[0] "Importato un totale di %d campi per un articolo/pagina/revisione."
|
193 |
-
msgstr[1] "Importato un totale di %1$d campi per %2$d articoli/pagine/revisioni."
|
194 |
|
195 |
-
#: modules/
|
196 |
-
msgid "
|
197 |
-
|
198 |
-
msgstr[0] "Saltato un articolo con i dati %2$s disabilitati."
|
199 |
-
msgstr[1] "Saltati %1$d articoli con i dati %2$s disabilitati."
|
200 |
|
201 |
-
#: modules/
|
202 |
-
msgid "
|
203 |
-
|
204 |
-
msgstr[0] "Sovrascrive il campo SEO Ultimate con il dato %2$s,come da tua impostazione."
|
205 |
-
msgstr[1] "Sovrascrive i campi %1$d SEO Ultimate con i dati %2$s, come da tua impostazione."
|
206 |
|
207 |
-
#: modules/
|
208 |
-
msgid "
|
209 |
-
|
210 |
-
msgstr[0] "Cancellato un campo %2$s, così come da tua impostazione."
|
211 |
-
msgstr[1] "Cancellati%1$d %2$s campi, così come da tua impostazione."
|
212 |
|
213 |
-
#: modules/
|
214 |
-
|
215 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
|
217 |
-
#: modules/
|
218 |
msgid ""
|
219 |
-
"
|
220 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
msgstr ""
|
222 |
-
"Reviews\n"
|
223 |
-
"Review"
|
224 |
-
|
225 |
-
#: modules/rich-snippets/rich-snippets.php:28
|
226 |
-
msgid "Data Format"
|
227 |
-
msgstr "Formato dati"
|
228 |
|
229 |
-
#: modules/
|
230 |
-
msgid "
|
231 |
-
msgstr "
|
232 |
|
233 |
-
#: modules/
|
234 |
-
msgid "
|
235 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
|
237 |
-
#: modules/
|
238 |
-
|
239 |
-
|
|
|
|
|
240 |
|
241 |
-
#: modules/
|
242 |
-
msgid "
|
243 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
|
245 |
-
#: modules/
|
246 |
-
#: modules/
|
247 |
-
|
248 |
-
|
|
|
|
|
|
|
|
|
|
|
249 |
|
250 |
-
#: modules/
|
251 |
-
msgid "
|
252 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
|
254 |
-
#: modules/
|
255 |
-
|
256 |
-
|
|
|
257 |
|
258 |
-
#: modules/
|
259 |
-
msgid "
|
260 |
-
|
|
|
|
|
|
|
|
|
261 |
|
262 |
-
#: modules/
|
263 |
-
msgid "
|
264 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
|
266 |
-
#: modules/
|
267 |
-
|
268 |
-
msgid "None"
|
269 |
msgstr "Nessuno"
|
270 |
|
271 |
-
#: modules/
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
#: modules/rich-snippets/rich-snippets.php:229
|
276 |
-
msgid "Name of Reviewed Item:"
|
277 |
-
msgstr "Nome elemento valutato:"
|
278 |
|
279 |
-
#: modules/
|
280 |
-
|
281 |
-
|
|
|
282 |
|
283 |
-
#: modules/
|
284 |
-
msgid "
|
285 |
-
msgstr "
|
286 |
|
287 |
-
#: modules/
|
288 |
-
msgid "
|
289 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
|
291 |
-
#: modules/
|
292 |
-
|
293 |
-
|
|
|
294 |
|
295 |
-
#: modules/
|
296 |
-
msgid "
|
297 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
|
299 |
-
#: modules/
|
300 |
-
|
301 |
-
|
|
|
302 |
|
303 |
-
#: modules/
|
304 |
-
msgid "
|
305 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
|
307 |
-
#: modules/
|
308 |
-
|
309 |
-
|
|
|
310 |
|
311 |
-
#: modules/
|
312 |
-
msgid "
|
313 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
|
315 |
-
#: modules/
|
316 |
-
|
317 |
-
|
|
|
318 |
|
319 |
-
#: modules/
|
320 |
-
msgid "
|
321 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
|
323 |
-
#: modules/
|
324 |
-
|
325 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
|
327 |
-
#: modules/
|
328 |
-
msgid "
|
329 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
|
331 |
-
#: modules/
|
332 |
-
msgid "
|
333 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
|
335 |
-
#: modules/
|
336 |
-
msgid "
|
337 |
-
msgstr "
|
338 |
|
339 |
-
#: modules/
|
340 |
-
msgid "
|
341 |
-
msgstr "
|
342 |
|
343 |
-
#: modules/
|
344 |
-
msgid "
|
345 |
-
msgstr "
|
346 |
|
347 |
-
#: modules/
|
348 |
-
|
349 |
-
msgid "
|
350 |
-
msgstr "
|
351 |
|
352 |
-
#: modules/
|
353 |
-
|
354 |
-
msgid "
|
355 |
-
|
|
|
|
|
|
|
356 |
|
357 |
-
#: modules/
|
358 |
-
|
359 |
-
|
360 |
-
msgstr "Invia"
|
361 |
|
362 |
-
#: modules/
|
363 |
-
|
364 |
-
|
|
|
365 |
|
366 |
-
#: modules/
|
367 |
-
|
368 |
-
|
|
|
|
|
|
|
|
|
|
|
369 |
|
370 |
-
#: modules/
|
371 |
-
|
372 |
-
|
|
|
|
|
|
|
|
|
|
|
373 |
|
374 |
-
#: modules/
|
375 |
-
msgid "
|
376 |
-
msgstr "
|
377 |
|
378 |
-
#: modules/
|
379 |
-
msgid "
|
380 |
-
msgstr "
|
381 |
|
382 |
-
#: modules/
|
383 |
-
msgid "
|
384 |
-
|
|
|
|
|
385 |
|
386 |
-
#: modules/
|
387 |
-
msgid "
|
388 |
-
msgstr "
|
389 |
|
390 |
-
#: modules/
|
391 |
-
msgid "
|
392 |
-
|
|
|
|
|
|
|
|
|
393 |
|
394 |
-
#: modules/
|
395 |
-
msgid "
|
396 |
-
msgstr "
|
397 |
|
398 |
-
#: modules/
|
399 |
-
|
400 |
-
msgid "
|
401 |
-
msgstr "
|
|
|
|
|
402 |
|
403 |
-
#: modules/
|
404 |
-
msgid "
|
405 |
-
msgstr "
|
406 |
|
407 |
-
#: modules/
|
408 |
-
msgid "
|
409 |
-
msgstr "
|
410 |
|
411 |
-
#: modules/
|
412 |
-
msgid "
|
413 |
-
msgstr "
|
414 |
|
415 |
-
#: modules/
|
416 |
-
msgid "
|
417 |
-
msgstr "
|
418 |
|
419 |
-
#: modules/
|
420 |
-
msgid "
|
421 |
-
|
|
|
|
|
|
|
|
|
|
|
422 |
|
423 |
-
#: modules/
|
424 |
-
msgid "
|
425 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
426 |
|
427 |
-
#: modules/
|
428 |
-
|
429 |
-
|
|
|
430 |
|
431 |
-
#: modules/
|
432 |
-
|
433 |
-
|
|
|
434 |
|
435 |
-
#: modules/
|
436 |
-
|
437 |
-
|
|
|
438 |
|
439 |
-
#: modules/
|
440 |
-
|
441 |
-
|
|
|
442 |
|
443 |
-
#: modules/
|
444 |
-
|
445 |
-
|
|
|
|
|
446 |
|
447 |
-
#: modules/
|
448 |
-
msgid "
|
449 |
-
msgstr "
|
450 |
|
451 |
-
#: modules/
|
452 |
-
msgid "
|
453 |
-
msgstr "
|
454 |
|
455 |
-
#: modules/
|
456 |
-
|
457 |
-
|
|
|
458 |
|
459 |
-
#: modules/
|
460 |
-
#: modules/
|
461 |
-
|
462 |
-
|
|
|
463 |
|
464 |
-
#: modules/
|
465 |
-
#: modules/
|
466 |
-
|
467 |
-
|
|
|
468 |
|
469 |
-
#: modules/
|
470 |
-
|
471 |
-
|
|
|
472 |
|
473 |
-
#: modules/
|
474 |
-
|
475 |
-
|
|
|
476 |
|
477 |
-
#: modules/
|
478 |
-
msgid "
|
479 |
-
msgstr "
|
480 |
|
481 |
-
#: modules/
|
482 |
-
msgid "
|
483 |
-
msgstr "
|
484 |
|
485 |
-
#: modules/
|
486 |
-
|
487 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
|
489 |
-
#: modules/
|
490 |
-
msgid "
|
491 |
-
msgstr "
|
492 |
|
493 |
-
#: modules/
|
494 |
-
msgid "
|
495 |
-
msgstr "
|
496 |
|
497 |
-
#: modules/
|
498 |
-
msgid "
|
499 |
-
msgstr "
|
500 |
|
501 |
-
#: modules/
|
502 |
-
msgid "
|
503 |
-
msgstr "
|
504 |
|
505 |
-
#: modules/
|
506 |
-
msgid "
|
507 |
-
msgstr "
|
508 |
|
509 |
-
#: modules/
|
510 |
-
msgid "
|
511 |
-
msgstr "
|
512 |
|
513 |
-
#: modules/
|
514 |
-
msgid "
|
515 |
-
msgstr "
|
516 |
|
517 |
-
#: modules/
|
518 |
-
msgid "
|
519 |
-
msgstr "
|
520 |
|
521 |
-
#: modules/
|
522 |
-
|
523 |
-
|
|
|
524 |
|
525 |
-
#: modules/
|
526 |
-
msgid "
|
527 |
-
msgstr "
|
528 |
|
529 |
-
#: modules/
|
530 |
-
msgid "
|
531 |
-
msgstr "
|
532 |
|
533 |
-
#: modules/
|
534 |
-
msgid "
|
535 |
-
msgstr "
|
536 |
|
537 |
-
#: modules/
|
538 |
-
|
539 |
-
|
|
|
|
|
540 |
|
541 |
-
#: modules/
|
542 |
-
|
543 |
-
|
|
|
544 |
|
545 |
-
#: modules/
|
546 |
-
msgid "
|
547 |
-
msgstr "
|
548 |
|
549 |
-
#: modules/
|
550 |
-
msgid "
|
551 |
-
|
|
|
|
|
552 |
|
553 |
-
#: modules/
|
554 |
-
msgid "
|
555 |
-
msgstr "
|
556 |
|
557 |
-
#: modules/
|
558 |
-
msgid "
|
559 |
-
msgstr "
|
560 |
|
561 |
-
#: modules/
|
562 |
-
|
563 |
-
|
|
|
564 |
|
565 |
-
#: modules/
|
566 |
-
|
567 |
-
|
|
|
568 |
|
569 |
-
#: modules/
|
570 |
-
msgid "
|
571 |
-
msgstr "
|
572 |
|
573 |
-
#: modules/
|
574 |
-
msgid "
|
575 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
576 |
|
577 |
-
#: modules/
|
578 |
-
msgid "
|
579 |
-
msgstr "
|
580 |
|
581 |
-
#: modules/
|
582 |
-
|
583 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
584 |
|
585 |
-
#: modules/
|
586 |
-
msgid "
|
587 |
-
msgstr "
|
588 |
|
589 |
-
#: modules/
|
590 |
-
|
591 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
592 |
|
593 |
-
#: modules/
|
594 |
-
msgid "
|
595 |
-
msgstr "
|
596 |
|
597 |
-
#: modules/
|
598 |
-
|
599 |
-
|
|
|
600 |
|
601 |
-
#: modules/
|
602 |
-
|
603 |
-
|
|
|
604 |
|
605 |
-
#: modules/
|
606 |
-
msgid "
|
607 |
-
msgstr "
|
608 |
|
609 |
-
#: modules/
|
610 |
-
|
611 |
-
|
|
|
|
|
|
|
|
|
|
|
612 |
|
613 |
-
#: modules/
|
614 |
-
|
615 |
-
|
|
|
616 |
|
617 |
-
#: modules/
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
#: modules/competition-queries/competition-queries.php:25
|
622 |
-
msgid "Find out how many pages contain the words in each query"
|
623 |
-
msgstr "Trova quante pagine contengono le parole relative ad ogni richiesta"
|
624 |
-
|
625 |
-
#: modules/competition-queries/competition-queries.php:26
|
626 |
-
msgid "Phrase Match"
|
627 |
-
msgstr "Corrispondenza frase"
|
628 |
-
|
629 |
-
#: modules/competition-queries/competition-queries.php:26
|
630 |
-
msgid "Find out how many “actual” pages are competing for each query"
|
631 |
-
msgstr "Trova quante pagine “realmente” in concorrenza relative ad ogni richiesta"
|
632 |
-
|
633 |
-
#: modules/competition-queries/competition-queries.php:27
|
634 |
-
msgid "Allinanchor"
|
635 |
-
msgstr "Allinanchor"
|
636 |
-
|
637 |
-
#: modules/competition-queries/competition-queries.php:27
|
638 |
-
msgid "Find out which sites have the most links for each query"
|
639 |
-
msgstr "Trova quali siti hanno il maggior numero di link relativi ad ogni richiesta"
|
640 |
-
|
641 |
-
#: modules/competition-queries/competition-queries.php:28
|
642 |
-
msgid "Allintitle"
|
643 |
-
msgstr "Allintitle"
|
644 |
-
|
645 |
-
#: modules/competition-queries/competition-queries.php:28
|
646 |
-
msgid "Find out which sites have the highest relevance in the title for each query"
|
647 |
-
msgstr "Trova quali siti hanno la più alta rilevanza nel titolo relativa ad ogni richiesta"
|
648 |
-
|
649 |
-
#: modules/competition-queries/competition-queries.php:29
|
650 |
-
msgid "Allintext"
|
651 |
-
msgstr "Allintext"
|
652 |
-
|
653 |
-
#: modules/competition-queries/competition-queries.php:29
|
654 |
-
msgid "Find out which sites have the most relevant content/text on their pages"
|
655 |
-
msgstr "Trova quali siti hanno nelle loro pagine la più alta rilevanza contenuto/testo"
|
656 |
-
|
657 |
-
#: modules/competition-queries/competition-queries.php:30
|
658 |
-
msgid "Allinurl"
|
659 |
-
msgstr "Allinurl"
|
660 |
-
|
661 |
-
#: modules/competition-queries/competition-queries.php:30
|
662 |
-
msgid "Find out which sites have the most relevant naming conventions for each keyword"
|
663 |
-
msgstr "Trova quali siti hanno delle argomentazioni di maggiore rilevanza in merito ad ogni parola chiave"
|
664 |
-
|
665 |
-
#: modules/competition-queries/competition-queries.php:32
|
666 |
-
msgid "URLs"
|
667 |
-
msgstr "URL"
|
668 |
-
|
669 |
-
#: modules/competition-queries/competition-queries.php:32
|
670 |
-
msgid "Site"
|
671 |
-
msgstr "Sito"
|
672 |
-
|
673 |
-
#: modules/competition-queries/competition-queries.php:32
|
674 |
-
msgid "Find out how many pages are indexed for each domain"
|
675 |
-
msgstr "Trova quante pagine sono state indicizzate per ogni dominio"
|
676 |
-
|
677 |
-
#: modules/competition-queries/competition-queries.php:33
|
678 |
-
#: modules/competition-queries/competition-queries.php:38
|
679 |
-
msgid "Inbound Links"
|
680 |
-
msgstr "Link in ingresso"
|
681 |
-
|
682 |
-
#: modules/competition-queries/competition-queries.php:33
|
683 |
-
msgid "Find out how many sites link to the domains"
|
684 |
-
msgstr "Trova quanti link dei siti puntano ai domini"
|
685 |
-
|
686 |
-
#: modules/competition-queries/competition-queries.php:34
|
687 |
-
#: modules/competition-queries/competition-queries.php:38
|
688 |
-
msgid "Outbound Links"
|
689 |
-
msgstr "Link in uscita"
|
690 |
-
|
691 |
-
#: modules/competition-queries/competition-queries.php:34
|
692 |
-
msgid "Find out how many sites the domains link to"
|
693 |
-
msgstr "Trova a quanti siti puntano i link dei dominii"
|
694 |
-
|
695 |
-
#: modules/competition-queries/competition-queries.php:57
|
696 |
-
msgid "Step 2: Enter the <span id=\"methodtype\">Keywords</span> To Research"
|
697 |
-
msgstr "Passo 2: inserisci le <span id=\"methodtype\">parole chiave</span> da ricercare"
|
698 |
-
|
699 |
-
#: modules/competition-queries/competition-queries.php:59
|
700 |
-
msgid "(Type in one per line)"
|
701 |
-
msgstr "(una parola per riga)"
|
702 |
|
703 |
-
#: modules/
|
704 |
-
msgid "
|
705 |
-
msgstr "
|
706 |
|
707 |
-
#: modules/
|
708 |
-
|
709 |
-
|
|
|
|
|
|
|
|
|
|
|
710 |
|
711 |
-
#: modules/
|
712 |
-
msgid "
|
713 |
-
msgstr "
|
714 |
|
715 |
-
#: modules/
|
716 |
-
msgid "
|
717 |
-
msgstr "
|
718 |
|
719 |
-
#: modules/
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
|
723 |
-
#: modules/
|
724 |
-
msgid "
|
725 |
-
msgstr "
|
726 |
|
727 |
-
#: modules/
|
728 |
-
|
729 |
-
|
|
|
730 |
|
731 |
-
#: modules/
|
732 |
-
|
733 |
-
|
|
|
|
|
|
|
|
|
734 |
|
735 |
-
#: modules/
|
736 |
-
|
737 |
-
|
|
|
|
|
|
|
738 |
|
739 |
-
#: modules/
|
740 |
-
|
741 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
742 |
|
743 |
-
#: modules/
|
744 |
-
|
745 |
-
|
|
|
|
|
|
|
|
|
|
|
746 |
|
747 |
-
#: modules/
|
748 |
-
|
749 |
-
|
|
|
750 |
|
751 |
-
#: modules/
|
752 |
-
msgid "
|
753 |
-
msgstr "
|
|
|
754 |
|
755 |
-
#: modules/
|
756 |
-
msgid "
|
757 |
-
msgstr "
|
758 |
|
759 |
-
#: modules/
|
760 |
-
msgid "
|
761 |
-
msgstr "
|
762 |
|
763 |
-
#: modules/
|
764 |
-
|
765 |
-
|
|
|
766 |
|
767 |
-
#: modules/
|
768 |
-
msgid "
|
769 |
-
msgstr "
|
770 |
|
771 |
-
#: modules/
|
772 |
-
msgid "
|
773 |
-
msgstr "
|
774 |
|
775 |
-
#: modules/
|
776 |
-
msgid "
|
777 |
-
msgstr "
|
778 |
|
779 |
-
#: modules/
|
780 |
-
|
781 |
-
|
782 |
-
msgstr "Meta Keywords"
|
783 |
|
784 |
-
#: modules/
|
785 |
-
|
786 |
-
|
787 |
-
msgstr "Valori predefiniti"
|
788 |
|
789 |
-
#: modules/
|
790 |
-
msgid "
|
791 |
-
|
|
|
|
|
|
|
|
|
792 |
|
793 |
-
#: modules/
|
794 |
-
msgid "
|
795 |
-
msgstr "
|
796 |
|
797 |
-
#: modules/
|
798 |
-
|
799 |
-
|
|
|
800 |
|
801 |
-
#: modules/
|
802 |
-
|
803 |
-
|
|
|
804 |
|
805 |
-
#: modules/
|
806 |
-
|
807 |
-
|
|
|
808 |
|
809 |
-
#: modules/meta/meta-
|
810 |
-
|
811 |
-
|
|
|
|
|
812 |
|
813 |
-
#: modules/
|
814 |
-
msgid "
|
815 |
-
msgstr "
|
816 |
|
817 |
-
#: modules/
|
818 |
-
|
819 |
-
|
|
|
820 |
|
821 |
-
#: modules/
|
822 |
-
|
823 |
-
|
|
|
824 |
|
825 |
-
#: modules/
|
826 |
-
|
827 |
-
|
|
|
828 |
|
829 |
-
#: modules/
|
830 |
-
|
831 |
-
|
|
|
832 |
|
833 |
-
#: modules/
|
834 |
-
|
835 |
-
|
|
|
|
|
|
|
836 |
|
837 |
-
#: modules/
|
838 |
-
|
839 |
-
|
|
|
840 |
|
841 |
-
#: modules/
|
842 |
-
msgid "
|
843 |
-
msgstr "
|
844 |
|
845 |
-
#: modules/
|
846 |
-
|
847 |
-
|
|
|
848 |
|
849 |
-
#: modules/
|
850 |
-
msgid "
|
851 |
-
|
|
|
|
|
852 |
|
853 |
-
#: modules/
|
854 |
-
msgid "
|
855 |
-
msgstr "
|
856 |
|
857 |
-
#: modules/
|
858 |
-
msgid "
|
859 |
-
|
|
|
|
|
|
|
|
|
860 |
|
861 |
-
#: modules/
|
862 |
-
msgid "
|
863 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
864 |
|
865 |
-
#: modules/
|
866 |
-
|
867 |
-
|
|
|
868 |
|
869 |
-
#: modules/
|
870 |
-
msgid "
|
871 |
-
msgstr "
|
|
|
872 |
|
873 |
-
#: modules/
|
874 |
-
msgid "
|
875 |
-
msgstr "
|
|
|
|
|
876 |
|
877 |
-
#: modules/
|
878 |
-
msgid "
|
879 |
-
msgstr "
|
880 |
|
881 |
-
#: modules/
|
882 |
-
msgid "
|
883 |
-
|
|
|
|
|
|
|
|
|
884 |
|
885 |
-
#: modules/
|
886 |
-
msgid "
|
887 |
-
msgstr "
|
888 |
|
889 |
-
#: modules/
|
890 |
-
msgid "
|
891 |
-
|
|
|
|
|
|
|
|
|
892 |
|
893 |
-
#: modules/
|
894 |
-
|
895 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
896 |
|
897 |
-
#: modules/
|
898 |
-
msgid "
|
899 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
900 |
|
901 |
-
#: modules/
|
902 |
-
msgid "
|
903 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
904 |
|
905 |
-
#: modules/
|
906 |
-
msgid "
|
907 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
908 |
|
909 |
#: modules/import-aiosp/import-aiosp.php:12
|
910 |
msgid "Import from All in One SEO Pack"
|
@@ -927,1257 +1480,3532 @@ msgid "Import post data (custom title tags and meta tags)."
|
|
927 |
msgstr "Importa dati articolo (tag titoli custom e tag meta)."
|
928 |
|
929 |
#: modules/import-aiosp/import-aiosp.php:21
|
930 |
-
msgid "
|
931 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
932 |
|
933 |
#: modules/import-aiosp/import-aiosp.php:23
|
934 |
-
msgid "
|
935 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
936 |
|
937 |
-
#: modules/
|
938 |
-
|
939 |
-
|
|
|
940 |
|
941 |
-
#: modules/
|
942 |
-
|
943 |
-
|
|
|
|
|
|
|
|
|
944 |
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
msgid "SEO Design Solutions"
|
949 |
-
msgstr "SEO Design Solutions"
|
950 |
|
951 |
-
#: modules/
|
952 |
-
|
953 |
-
|
|
|
954 |
|
955 |
-
#: modules/
|
956 |
-
|
957 |
-
|
|
|
958 |
|
959 |
-
#: modules/
|
960 |
-
msgid "
|
961 |
-
msgstr "
|
962 |
-
|
963 |
-
#: modules/modules/modules.php:41
|
964 |
-
msgid "SEO Ultimate’s features are located in groups called “modules.” By default, most of these modules are listed in the “SEO” menu on the left. Whenever you’re working with a module, you can view documentation by clicking the tabs in the upper-right-hand corner of your administration screen."
|
965 |
-
msgstr "Le configurazioni di SEO Ultimate sono state suddivise in gruppi a nome “moduli.”. Come da predefinite, la maggior parte di questi moduli la potrai trovare elencata nel menu “SEO” alla tua sinistra. Durante il tuo lavoro sui moduli, potrai visionare in ogni momento la documentazione semplicemente cliccando sui pulsanti in alto a destra del tuo pannello di amministrazione."
|
966 |
-
|
967 |
-
#: modules/modules/modules.php:43
|
968 |
-
msgid "The Module Manager lets you disable or hide modules you don’t use. You can also silence modules from displaying bubble alerts on the menu."
|
969 |
-
msgstr "Questa sezione ti permetterà di disattivare o nascondere i moduli che non utilizzerai. Potrai infine disattivare le bubble notifica di allerta nel menu dei moduli (Silenzioso)."
|
970 |
-
|
971 |
-
#: modules/modules/modules.php:47
|
972 |
-
msgid "Modules updated."
|
973 |
-
msgstr "I moduli sono stati aggiornati."
|
974 |
-
|
975 |
-
#: modules/modules/modules.php:52
|
976 |
-
msgid "Status"
|
977 |
-
msgstr "Stato"
|
978 |
-
|
979 |
-
#: modules/modules/modules.php:53
|
980 |
-
msgid "Module"
|
981 |
-
msgstr "Modulo"
|
982 |
-
|
983 |
-
#: modules/modules/modules.php:66
|
984 |
-
msgid "Enabled"
|
985 |
-
msgstr "Attivo"
|
986 |
-
|
987 |
-
#: modules/modules/modules.php:67
|
988 |
-
msgid "Silenced"
|
989 |
-
msgstr "Silenzioso"
|
990 |
-
|
991 |
-
#: modules/modules/modules.php:68
|
992 |
-
msgid "Hidden"
|
993 |
-
msgstr "Nascosto"
|
994 |
|
995 |
-
#: modules/
|
996 |
-
|
997 |
-
|
|
|
998 |
|
999 |
-
#: modules/
|
1000 |
-
|
1001 |
-
|
|
|
1002 |
|
1003 |
-
#: modules/
|
1004 |
-
msgid "
|
1005 |
-
msgstr "
|
1006 |
|
1007 |
-
#: modules/
|
1008 |
-
msgid "
|
1009 |
-
msgstr "
|
1010 |
|
1011 |
-
#: modules/
|
1012 |
-
|
1013 |
-
|
|
|
1014 |
|
1015 |
-
#: modules/
|
1016 |
-
msgid "
|
1017 |
-
msgstr "
|
1018 |
|
1019 |
-
#: modules/
|
1020 |
-
msgid "
|
1021 |
-
msgstr "
|
1022 |
|
1023 |
-
#: modules/
|
1024 |
-
msgid "
|
1025 |
-
msgstr "
|
1026 |
|
1027 |
-
#: modules/
|
1028 |
-
msgid "
|
1029 |
-
msgstr "
|
1030 |
|
1031 |
-
#: modules/
|
1032 |
-
msgid "
|
1033 |
-
|
|
|
|
|
|
|
|
|
1034 |
|
1035 |
-
#: modules/
|
1036 |
-
|
1037 |
-
|
|
|
1038 |
|
1039 |
-
#: modules/
|
1040 |
-
|
1041 |
-
|
|
|
1042 |
|
1043 |
-
#: modules/
|
1044 |
-
msgid "
|
1045 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1046 |
|
1047 |
-
#: modules/
|
1048 |
-
msgid "
|
1049 |
-
msgstr "
|
1050 |
|
1051 |
-
#: modules/
|
1052 |
-
msgid "
|
1053 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1054 |
|
1055 |
-
#: modules/
|
1056 |
-
|
1057 |
-
|
|
|
|
|
1058 |
|
1059 |
-
#: modules/
|
1060 |
-
msgid "
|
1061 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1062 |
|
1063 |
-
#: modules/
|
1064 |
-
msgid "
|
1065 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1066 |
|
1067 |
-
#: modules/
|
1068 |
-
|
1069 |
-
|
|
|
1070 |
|
1071 |
-
#: modules/
|
1072 |
-
msgid "
|
1073 |
-
msgstr "
|
1074 |
|
1075 |
-
#: modules/
|
1076 |
-
|
1077 |
-
|
1078 |
-
msgstr "User Agents"
|
1079 |
|
1080 |
-
#: modules/
|
1081 |
-
msgid "
|
1082 |
-
msgstr "
|
1083 |
|
1084 |
-
#: modules/
|
1085 |
-
msgid "
|
1086 |
-
msgstr "
|
1087 |
|
1088 |
-
#: modules/
|
1089 |
-
msgid "
|
1090 |
-
msgstr "
|
1091 |
|
1092 |
-
#: modules/
|
1093 |
-
msgid "
|
1094 |
-
msgstr "
|
1095 |
|
1096 |
-
#: modules/
|
1097 |
-
msgid "
|
1098 |
-
msgstr "
|
1099 |
|
1100 |
-
#: modules/
|
1101 |
-
msgid "
|
1102 |
-
msgstr "
|
1103 |
|
1104 |
-
#: modules/
|
1105 |
-
msgid "
|
1106 |
-
msgstr "
|
1107 |
|
1108 |
-
#: modules/
|
1109 |
-
msgid "
|
1110 |
-
msgstr "
|
1111 |
|
1112 |
-
#: modules/
|
1113 |
-
msgid "
|
1114 |
-
msgstr "
|
1115 |
|
1116 |
-
#: modules/
|
1117 |
-
msgid "
|
1118 |
-
msgstr "
|
1119 |
|
1120 |
-
#: modules/
|
1121 |
-
msgid "
|
1122 |
-
msgstr "
|
1123 |
|
1124 |
-
#: modules/
|
1125 |
-
msgid "
|
1126 |
-
msgstr "
|
1127 |
|
1128 |
-
#: modules/
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
|
|
1132 |
|
1133 |
-
#: modules/
|
1134 |
-
msgid "
|
1135 |
-
msgstr "
|
1136 |
|
1137 |
-
#: modules/
|
1138 |
-
msgid "
|
1139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1140 |
|
1141 |
-
#: modules/linkbox/linkbox.php:12
|
1142 |
msgid "Linkbox Inserter"
|
1143 |
msgstr "Linkbox Inserter"
|
1144 |
|
1145 |
-
#: modules/linkbox/linkbox.php:
|
1146 |
msgid "Link to this post!"
|
1147 |
msgstr "Link a questo articolo!"
|
1148 |
|
1149 |
-
#: modules/linkbox/linkbox.php:
|
1150 |
msgid "At the end of posts"
|
1151 |
msgstr "Al fondo degli articoli"
|
1152 |
|
1153 |
-
#: modules/linkbox/linkbox.php:
|
1154 |
msgid "At the end of pages"
|
1155 |
msgstr "Al fondo delle pagine"
|
1156 |
|
1157 |
-
#: modules/linkbox/linkbox.php:
|
1158 |
msgid "When called by the su_linkbox hook"
|
1159 |
msgstr "Quando richiesto da hook su_linkbox"
|
1160 |
|
1161 |
-
#: modules/linkbox/linkbox.php:
|
1162 |
msgid "Display linkboxes..."
|
1163 |
msgstr "Mostra linkboxe..."
|
1164 |
|
1165 |
-
#: modules/linkbox/linkbox.php:
|
1166 |
msgid "Linkbox HTML"
|
1167 |
msgstr "HTML linkbox"
|
1168 |
|
1169 |
-
#: modules/
|
1170 |
-
msgid "
|
1171 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1172 |
|
1173 |
-
#: modules/
|
1174 |
-
msgid "
|
1175 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1176 |
|
1177 |
-
#: modules/
|
1178 |
-
msgid "
|
1179 |
-
msgstr "
|
1180 |
|
1181 |
-
#: modules/
|
1182 |
-
msgid "
|
1183 |
-
msgstr "
|
1184 |
|
1185 |
-
#: modules/
|
1186 |
-
msgid "
|
1187 |
-
msgstr "
|
1188 |
|
1189 |
-
#: modules/
|
1190 |
-
msgid "
|
1191 |
-
msgstr "
|
1192 |
|
1193 |
-
#: modules/
|
1194 |
-
msgid "
|
1195 |
-
msgstr "
|
1196 |
|
1197 |
-
#: modules/
|
1198 |
-
|
1199 |
-
|
|
|
1200 |
|
1201 |
-
#: modules/
|
1202 |
-
msgid "
|
1203 |
-
msgstr "
|
1204 |
|
1205 |
-
#: modules/
|
1206 |
-
msgid "
|
1207 |
-
msgstr "
|
1208 |
|
1209 |
-
#: modules/
|
1210 |
-
|
1211 |
-
|
|
|
1212 |
|
1213 |
-
#: modules/
|
1214 |
-
msgid "
|
1215 |
-
msgstr "
|
1216 |
|
1217 |
-
#: modules/
|
1218 |
-
msgid "
|
1219 |
-
msgstr "
|
1220 |
|
1221 |
-
#: modules/
|
1222 |
-
msgid "
|
1223 |
-
msgstr "
|
1224 |
|
1225 |
-
#: modules/
|
1226 |
-
msgid "
|
1227 |
-
msgstr "
|
1228 |
|
1229 |
-
#: modules/
|
1230 |
-
|
1231 |
-
|
|
|
|
|
|
|
1232 |
|
1233 |
-
#: modules/
|
1234 |
-
|
1235 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1236 |
|
1237 |
-
#: modules/
|
1238 |
-
msgid "
|
1239 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1240 |
|
1241 |
-
#: modules/
|
1242 |
-
|
1243 |
-
|
|
|
1244 |
|
1245 |
-
#: modules/
|
1246 |
-
msgid "
|
1247 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1248 |
|
1249 |
-
#: modules/
|
1250 |
-
msgid "
|
1251 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1252 |
|
1253 |
-
#: modules/
|
1254 |
-
msgid "
|
1255 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
|
1257 |
-
#: modules/
|
1258 |
-
msgid "
|
1259 |
-
msgstr "
|
1260 |
|
1261 |
-
#: modules/
|
1262 |
-
msgid "
|
1263 |
-
msgstr "
|
1264 |
|
1265 |
-
#: modules/
|
1266 |
-
|
1267 |
-
|
|
|
|
|
1268 |
|
1269 |
-
#: modules/
|
1270 |
-
|
1271 |
-
|
|
|
1272 |
|
1273 |
-
#: modules/
|
1274 |
-
msgid "
|
1275 |
-
msgstr "
|
1276 |
|
1277 |
-
#: modules/
|
1278 |
-
msgid "
|
1279 |
-
msgstr "
|
1280 |
|
1281 |
-
#: modules/
|
1282 |
-
|
1283 |
-
|
|
|
1284 |
|
1285 |
-
#: modules/
|
1286 |
-
msgid "
|
1287 |
-
msgstr "
|
1288 |
|
1289 |
-
#: modules/
|
1290 |
-
msgid "
|
1291 |
-
msgstr "
|
1292 |
|
1293 |
-
#: modules/
|
1294 |
-
msgid "
|
1295 |
-
|
|
|
|
|
|
|
|
|
|
|
1296 |
|
1297 |
-
#: modules/
|
1298 |
-
|
1299 |
-
|
|
|
1300 |
|
1301 |
-
#: modules/
|
1302 |
-
msgid "
|
1303 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1304 |
|
1305 |
-
#: modules/
|
1306 |
-
msgid "
|
1307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1308 |
|
1309 |
-
#: modules/
|
1310 |
-
msgid "
|
1311 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1312 |
|
1313 |
-
#: modules/
|
1314 |
-
msgid "
|
1315 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1316 |
|
1317 |
-
#: modules/
|
1318 |
-
msgid "
|
1319 |
-
msgstr "
|
1320 |
|
1321 |
-
#: modules/
|
1322 |
-
msgid "
|
1323 |
-
msgstr "
|
1324 |
|
1325 |
-
#: modules/
|
1326 |
-
msgid "
|
1327 |
-
|
|
|
|
|
|
|
1328 |
|
1329 |
-
#: modules/
|
1330 |
-
msgid "
|
1331 |
-
|
|
|
|
|
|
|
|
|
1332 |
|
1333 |
-
#: modules/
|
1334 |
-
msgid "
|
1335 |
-
msgstr "
|
1336 |
|
1337 |
-
#: modules/
|
1338 |
-
msgid "
|
1339 |
-
msgstr "
|
1340 |
|
1341 |
-
#: modules/
|
1342 |
-
msgid "
|
1343 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1344 |
|
1345 |
-
#: modules/
|
1346 |
-
msgid "
|
1347 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1348 |
|
1349 |
-
#: modules/
|
1350 |
-
|
1351 |
-
|
|
|
1352 |
|
1353 |
-
#: modules/
|
1354 |
-
msgid "
|
1355 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1356 |
|
1357 |
-
#: modules/
|
1358 |
-
msgid "
|
1359 |
-
msgstr "
|
1360 |
|
1361 |
-
#: modules/
|
1362 |
-
msgid "
|
1363 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1364 |
|
1365 |
-
#: modules/
|
1366 |
-
msgid "
|
1367 |
-
msgstr "
|
1368 |
|
1369 |
-
#: modules/
|
1370 |
-
msgid "
|
1371 |
-
msgstr "
|
1372 |
|
1373 |
-
#: modules/
|
1374 |
-
msgid "
|
1375 |
-
msgstr "
|
1376 |
|
1377 |
-
#: modules/
|
1378 |
-
msgid "
|
1379 |
-
msgstr "
|
1380 |
|
1381 |
-
#: modules/
|
1382 |
-
|
1383 |
-
|
|
|
1384 |
|
1385 |
-
#: modules/
|
1386 |
-
|
1387 |
-
|
|
|
1388 |
|
1389 |
-
#: modules/
|
1390 |
-
msgid "
|
1391 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1392 |
|
1393 |
-
#: modules/
|
1394 |
-
|
1395 |
-
|
|
|
1396 |
|
1397 |
-
#: modules/
|
1398 |
-
msgid "
|
1399 |
-
|
|
|
|
|
|
|
|
|
1400 |
|
1401 |
-
#: modules/
|
1402 |
-
msgid "
|
1403 |
-
msgstr "
|
1404 |
|
1405 |
-
#: modules/
|
1406 |
-
msgid "
|
1407 |
-
msgstr "
|
1408 |
|
1409 |
-
#: modules/
|
1410 |
-
|
1411 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1412 |
|
1413 |
-
#: modules/
|
1414 |
-
msgid "
|
1415 |
-
msgstr "
|
1416 |
|
1417 |
-
#: modules/
|
1418 |
-
msgid "
|
1419 |
-
msgstr "
|
1420 |
|
1421 |
-
#: modules/
|
1422 |
-
msgid "
|
1423 |
-
msgstr "
|
1424 |
|
1425 |
-
#: modules/
|
1426 |
-
msgid "
|
1427 |
-
msgstr "
|
1428 |
|
1429 |
-
#: modules/
|
1430 |
-
msgid "
|
1431 |
-
msgstr "
|
1432 |
|
1433 |
-
#: modules/
|
1434 |
-
msgid "
|
1435 |
-
msgstr "
|
1436 |
|
1437 |
-
#: modules/
|
1438 |
-
msgid "
|
1439 |
-
msgstr "
|
1440 |
|
1441 |
-
#: modules/
|
1442 |
-
|
1443 |
-
|
|
|
1444 |
|
1445 |
-
#: modules/
|
1446 |
-
msgid "
|
1447 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1448 |
|
1449 |
-
#: modules/
|
1450 |
-
msgid "
|
1451 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1452 |
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
#: plugin/class.seo-ultimate.php:775
|
1457 |
-
msgid "SEO Ultimate"
|
1458 |
-
msgstr "SEO Ultimate"
|
1459 |
|
1460 |
-
#: modules/
|
1461 |
-
msgid "
|
1462 |
-
msgstr "
|
1463 |
|
1464 |
-
#: modules/
|
1465 |
-
|
1466 |
-
msgid "
|
1467 |
-
msgstr "
|
1468 |
|
1469 |
-
#: modules/
|
1470 |
-
msgid "
|
1471 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1472 |
|
1473 |
-
#: modules/
|
1474 |
-
msgid "
|
1475 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1476 |
|
1477 |
-
#: modules/
|
1478 |
-
msgid "
|
1479 |
-
msgstr "
|
1480 |
|
1481 |
-
#: modules/
|
1482 |
-
#: modules/
|
1483 |
-
msgid "
|
1484 |
-
msgstr "
|
1485 |
|
1486 |
-
#: modules/
|
1487 |
-
|
1488 |
-
|
|
|
|
|
1489 |
|
1490 |
-
#: modules/
|
1491 |
-
msgid "
|
1492 |
-
msgstr "
|
1493 |
|
1494 |
-
#: modules/
|
1495 |
-
msgid "
|
1496 |
-
msgstr "
|
1497 |
|
1498 |
-
#: modules/
|
1499 |
-
msgid "
|
1500 |
-
msgstr "
|
1501 |
|
1502 |
-
#: modules/
|
1503 |
-
msgid "
|
1504 |
-
msgstr "
|
1505 |
|
1506 |
-
#: modules/
|
1507 |
-
|
1508 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1509 |
|
1510 |
-
#: modules/
|
1511 |
-
|
1512 |
-
|
1513 |
-
msgstr "Upgrade"
|
1514 |
|
1515 |
-
#: modules/
|
1516 |
-
|
1517 |
-
|
1518 |
-
msgstr "Downgrade"
|
1519 |
|
1520 |
-
#: modules/
|
1521 |
-
|
1522 |
-
|
1523 |
-
msgstr "Reinstalla"
|
1524 |
|
1525 |
-
#: modules/
|
1526 |
-
msgid "
|
1527 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1528 |
|
1529 |
-
#: modules/
|
1530 |
-
msgid "
|
1531 |
-
msgstr "
|
|
|
1532 |
|
1533 |
-
#: modules/settings/install.php:53
|
1534 |
-
msgid "There was an error retrieving the list of available versions. Please try again later. You can also upgrade to the latest version of SEO Ultimate using the WordPress plugin upgrader."
|
1535 |
-
msgstr "Si è verificato un errore durante il recupero della lista delle versioni disponibili. Riprova in un secondo momento. Ricordati che puoi anche effettuare l'aggiornamento alla version
|
1 |
+
# Copyright (C) 2014 SEO Ultimate
|
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.2\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
7 |
+
"POT-Creation-Date: 2014-03-13 17:34+0100\n"
|
8 |
+
"PO-Revision-Date: 2014-03-13 17:34+0100\n"
|
9 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
10 |
"Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
|
11 |
+
"Language: it_IT\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 1.6.4\n"
|
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
18 |
+
"_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"
|
19 |
"X-Poedit-Basepath: ../\n"
|
20 |
+
"X-Textdomain-Support: yes\n"
|
21 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
|
24 |
+
#: includes/jlfunctions/str.php:144 plugin/su-functions.php:77
|
25 |
+
#, php-format
|
26 |
+
msgid "%s and %s"
|
27 |
+
msgstr "%s e %s"
|
|
|
|
|
|
|
28 |
|
29 |
+
#: includes/jlfunctions/str.php:147 plugin/su-functions.php:80
|
30 |
+
msgid ", "
|
31 |
+
msgstr ", "
|
32 |
|
33 |
+
#: includes/jlfunctions/str.php:148 plugin/su-functions.php:81
|
34 |
+
#, php-format
|
35 |
+
msgid "%s, and %s"
|
36 |
+
msgstr "%s, e %s"
|
37 |
|
38 |
+
#: includes/jlwp/functions.php:47
|
39 |
+
msgctxt "post format"
|
40 |
+
msgid "Format"
|
41 |
+
msgstr "Formato"
|
42 |
|
43 |
+
#: includes/jlwp/functions.php:48
|
44 |
+
msgid "Post Format Archives"
|
45 |
+
msgstr "Formato archivi articolo"
|
46 |
|
47 |
+
#: includes/jlwp/functions.php:89
|
48 |
+
msgid "backup your database"
|
49 |
+
msgstr "backup del database"
|
50 |
|
51 |
+
#: modules/404s/fofs-log.php:22
|
52 |
+
msgid "404 Monitor Log"
|
53 |
+
msgstr "Registro Monitor 404"
|
54 |
|
55 |
+
#: modules/404s/fofs-log.php:23
|
56 |
+
msgid "Log"
|
57 |
+
msgstr "Registro"
|
58 |
|
59 |
+
#: modules/404s/fofs-log.php:118 modules/class.su-module.php:1163
|
|
|
60 |
msgid "Actions"
|
61 |
msgstr "Azioni"
|
62 |
|
63 |
+
#: modules/404s/fofs-log.php:119
|
64 |
+
msgid "Hits"
|
65 |
+
msgstr "Richieste"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
+
#: modules/404s/fofs-log.php:120
|
68 |
+
msgid "URL with 404 Error"
|
69 |
+
msgstr "URL con errore 404"
|
70 |
|
71 |
+
#: modules/404s/fofs-log.php:121
|
72 |
+
msgid "Date of Most Recent Hit"
|
73 |
+
msgstr "Data richieste più recenti"
|
74 |
|
75 |
+
#: modules/404s/fofs-log.php:122
|
76 |
+
msgid "Referers"
|
77 |
+
msgstr "Referenti"
|
78 |
|
79 |
+
#: modules/404s/fofs-log.php:123 modules/404s/fofs-log.php:227
|
80 |
+
msgid "User Agents"
|
81 |
+
msgstr "User Agents"
|
|
|
82 |
|
83 |
+
#: modules/404s/fofs-log.php:139
|
84 |
+
msgid ""
|
85 |
+
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
86 |
+
"Settings tab."
|
87 |
+
msgstr ""
|
88 |
+
"I nuovi errori 404 non saranno annotati poiché il registro 404 è stato "
|
89 |
+
"disattivato nella tab delle impostazioni."
|
90 |
|
91 |
+
#: modules/404s/fofs-log.php:146
|
92 |
+
msgid "The log entry was successfully deleted."
|
93 |
+
msgstr "L'elemento nel registro è stato cancellato con successo."
|
|
|
94 |
|
95 |
+
#: modules/404s/fofs-log.php:148
|
96 |
+
msgid "This log entry has already been deleted."
|
97 |
+
msgstr "Questo elemento è già stato cancellato dal registro."
|
98 |
|
99 |
+
#: modules/404s/fofs-log.php:157
|
100 |
+
msgid "The log was successfully cleared."
|
101 |
+
msgstr "Il registro è stato svuotato con successo."
|
102 |
|
103 |
+
#: modules/404s/fofs-log.php:161
|
104 |
+
msgid "No 404 errors in the log."
|
105 |
+
msgstr "Nessun errore 404 nel registro."
|
106 |
|
107 |
+
#: modules/404s/fofs-log.php:186
|
108 |
+
msgid "Open URL in new window (will not be logged)"
|
109 |
+
msgstr "Apri URL in una nuova finestra (non sarà loggato)"
|
110 |
|
111 |
+
#: modules/404s/fofs-log.php:187
|
112 |
+
msgid "Query Google for cached version of URL (opens in new window)"
|
113 |
+
msgstr ""
|
114 |
+
"Richiedi a Google la versione cache dell'URL (apre in una nuova finestra)"
|
115 |
|
116 |
+
#: modules/404s/fofs-log.php:188
|
117 |
+
msgid "Remove this URL from the log"
|
118 |
+
msgstr "Rimuovi dal registro questo URL"
|
119 |
|
120 |
+
#: modules/404s/fofs-log.php:191
|
121 |
+
#, php-format
|
122 |
+
msgid "%s at %s"
|
123 |
+
msgstr "%s alle %s"
|
124 |
|
125 |
+
#: modules/404s/fofs-log.php:195
|
126 |
+
msgid "View list of referring URLs"
|
127 |
+
msgstr "Vedi lista URL referenti"
|
128 |
|
129 |
+
#: modules/404s/fofs-log.php:196
|
130 |
+
msgid "View list of user agents"
|
131 |
+
msgstr "Vedi lista user agents"
|
132 |
|
133 |
+
#: modules/404s/fofs-log.php:206
|
134 |
+
msgid "Referring URLs"
|
135 |
+
msgstr "URL referenti"
|
136 |
|
137 |
+
#: modules/404s/fofs-log.php:207 modules/404s/fofs-log.php:228
|
138 |
+
msgid "Hide list"
|
139 |
+
msgstr "Nascondi lista"
|
140 |
|
141 |
+
#: modules/404s/fofs-log.php:259
|
142 |
+
msgid "Are you sure you want to delete all 404 log entries?"
|
143 |
+
msgstr "Sei certo di volere cancellare dal registro tutti gli elementi 404?"
|
144 |
|
145 |
+
#: modules/404s/fofs-log.php:261
|
146 |
+
msgid "Clear Log"
|
147 |
+
msgstr "Svuota registro"
|
148 |
|
149 |
+
#: modules/404s/fofs-settings.php:16
|
150 |
+
msgid "404 Monitor Settings"
|
151 |
+
msgstr "Impostazioni Monitor 404"
|
152 |
|
153 |
+
#: modules/404s/fofs-settings.php:17
|
154 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:43
|
155 |
+
#: modules/opengraph/opengraph.php:379 modules/titles/titles.php:41
|
156 |
+
msgid "Settings"
|
157 |
+
msgstr "Impostazioni"
|
158 |
|
159 |
+
#: modules/404s/fofs-settings.php:38
|
160 |
+
msgid "Continue monitoring for new 404 errors"
|
161 |
+
msgstr "Monitoraggio continuo nuovi errori 404"
|
162 |
|
163 |
+
#: modules/404s/fofs-settings.php:38
|
164 |
+
msgid "Monitoring Settings"
|
165 |
+
msgstr "Impostazioni monitoraggio"
|
166 |
|
167 |
+
#: modules/404s/fofs-settings.php:40
|
168 |
+
msgid "Only log these types of 404 errors:"
|
169 |
+
msgstr "Annota solo i seguenti tipi di errori 404:"
|
170 |
|
171 |
+
#: modules/404s/fofs-settings.php:41
|
172 |
+
msgid "404s generated by search engine spiders"
|
173 |
+
msgstr "404 generati dagli spider dei motori di ricerca"
|
174 |
|
175 |
+
#: modules/404s/fofs-settings.php:42
|
176 |
+
msgid "404s with referring URLs"
|
177 |
+
msgstr "404 con URL referente"
|
178 |
|
179 |
+
#: modules/404s/fofs-settings.php:43
|
180 |
+
msgid "Log Restrictions"
|
181 |
+
msgstr "Restrizioni registro"
|
182 |
|
183 |
+
#: modules/404s/fofs-settings.php:44
|
184 |
+
msgid "Maximum Log Entries"
|
185 |
+
msgstr "Numero max, elementi registro"
|
|
|
|
|
186 |
|
187 |
+
#: modules/404s/fofs-settings.php:45
|
188 |
+
msgid "URLs to Ignore"
|
189 |
+
msgstr "URL da ignorare"
|
|
|
|
|
190 |
|
191 |
+
#: modules/404s/fofs-settings.php:45
|
192 |
+
msgid "(Use * as wildcard)"
|
193 |
+
msgstr "(Usa * come wildcard)"
|
|
|
|
|
194 |
|
195 |
+
#: modules/404s/fofs.php:11 modules/404s/fofs.php:12
|
196 |
+
msgid "404 Monitor"
|
197 |
+
msgstr "404 Monitor"
|
|
|
|
|
198 |
|
199 |
+
#: modules/404s/fofs.php:37 modules/autolinks/autolinks.php:18
|
200 |
+
#: modules/canonical/canonical.php:223 modules/canonical/canonical.php:229
|
201 |
+
#: modules/files/files.php:158
|
202 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:326
|
203 |
+
#: modules/link-nofollow/link-nofollow.php:132 modules/linkbox/linkbox.php:128
|
204 |
+
#: modules/linkbox/linkbox.php:135 modules/meta/meta-descriptions.php:192
|
205 |
+
#: modules/meta/meta-keywords.php:178 modules/meta/meta-robots.php:52
|
206 |
+
#: modules/meta/webmaster-verify.php:95 modules/meta/webmaster-verify.php:101
|
207 |
+
#: modules/more-links/more-links.php:104 modules/more-links/more-links.php:111
|
208 |
+
#: modules/opengraph/opengraph.php:573
|
209 |
+
#: modules/rich-snippets/rich-snippets.php:412
|
210 |
+
#: modules/rich-snippets/rich-snippets.php:419
|
211 |
+
#: modules/settings/settings.php:63
|
212 |
+
#: modules/sharing-buttons/sharing-buttons.php:82
|
213 |
+
#: modules/sharing-buttons/sharing-buttons.php:88 modules/slugs/slugs.php:113
|
214 |
+
#: modules/slugs/slugs.php:121 modules/titles/titles.php:356
|
215 |
+
#: modules/user-code/user-code.php:99
|
216 |
+
#, fuzzy
|
217 |
+
msgid "Overview"
|
218 |
+
msgstr "Review"
|
219 |
|
220 |
+
#: modules/404s/fofs.php:38
|
221 |
msgid ""
|
222 |
+
"\n"
|
223 |
+
"<ul>\n"
|
224 |
+
"\t<li><strong>What it does:</strong> The 404 Monitor keeps track of non-"
|
225 |
+
"existent URLs that generated 404 errors. 404 errors are when a search engine "
|
226 |
+
"or visitor comes to a URL on your site but nothing exists at that URL.</li>\n"
|
227 |
+
"\t<li><strong>Why it helps:</strong> The 404 Monitor helps you spot 404 "
|
228 |
+
"errors; then you can take steps to correct them to reduce link-juice loss "
|
229 |
+
"from broken links.</li>\n"
|
230 |
+
"\t<li><strong>How to use it:</strong> Check the 404 Monitor occasionally for "
|
231 |
+
"errors. (A numeric bubble will appear next to the “404 Monitor” "
|
232 |
+
"item on the menu if there are any newly-logged URLs that you haven't seen "
|
233 |
+
"yet. These new URLs will also be highlighted green in the table.) If a 404 "
|
234 |
+
"error's referring URL is located on your site, try locating and fixing the "
|
235 |
+
"broken URL. If moved content was previously located at the requested URL, "
|
236 |
+
"try using a redirection plugin to point the old URL to the new one.</li>\n"
|
237 |
+
"</ul>\n"
|
238 |
+
"\n"
|
239 |
+
"<p>If there are no 404 errors in the log, this is good and means there's no "
|
240 |
+
"action required on your part.</p>\n"
|
241 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
|
243 |
+
#: modules/404s/fofs.php:50
|
244 |
+
msgid "Log Help"
|
245 |
+
msgstr ""
|
246 |
|
247 |
+
#: modules/404s/fofs.php:51
|
248 |
+
msgid ""
|
249 |
+
"\n"
|
250 |
+
"<p>You can perform the following actions on each entry in the log:</p>\n"
|
251 |
+
"\n"
|
252 |
+
"<ul>\n"
|
253 |
+
"\t<li>Clicking the first icon will open the URL in a new window. This is "
|
254 |
+
"useful for testing whether or not a redirect is working.</li>\n"
|
255 |
+
"\t<li>Clicking the second icon will open Google's archived version of the "
|
256 |
+
"URL in a new window. This is useful for determining what content, if any, "
|
257 |
+
"used to be located at that URL.</li>\n"
|
258 |
+
"\t<li>Once you've taken care of a 404 error, you can click the third icon to "
|
259 |
+
"remove it from the list. The URL will reappear on the list if it triggers a "
|
260 |
+
"404 error in the future.</li>\n"
|
261 |
+
"\t<li>To view the list of the URLs by which visitors and/or search engines "
|
262 |
+
"reached this non-existent URL, click the scroll icon in the “"
|
263 |
+
"Referers” column.</li>\n"
|
264 |
+
"\t<li>To view the list of visitor browsers and search engine bots which "
|
265 |
+
"tried to access this non-existent URL, click the scroll icon in the “"
|
266 |
+
"User Agents” column.</li>\n"
|
267 |
+
"</ul>\n"
|
268 |
+
"\n"
|
269 |
+
"<p>The “Clear Log” button will erase all of entries in the log. "
|
270 |
+
"The log will remain empty until more 404 errors are logged.</p>\n"
|
271 |
+
msgstr ""
|
272 |
|
273 |
+
#: modules/404s/fofs.php:67 modules/linkbox/linkbox.php:129
|
274 |
+
#: modules/linkbox/linkbox.php:140
|
275 |
+
#, fuzzy
|
276 |
+
msgid "Settings Help"
|
277 |
+
msgstr "Aiuto impostazioni SEO"
|
278 |
|
279 |
+
#: modules/404s/fofs.php:68
|
280 |
+
msgid ""
|
281 |
+
"\n"
|
282 |
+
"<p>The following options are available on the Settings tab:</p>\n"
|
283 |
+
"\n"
|
284 |
+
"<ul>\n"
|
285 |
+
"\t<li>\n"
|
286 |
+
"\t\t<strong>Monitoring Settings</strong>\n"
|
287 |
+
"\t\t<ul>\n"
|
288 |
+
"\t\t\t<li><strong>Continue monitoring for new 404 errors</strong> — If "
|
289 |
+
"disabled, 404 Monitor will keep existing 404 errors in the log but won't add "
|
290 |
+
"any new ones.</li>\n"
|
291 |
+
"\t\t</ul>\n"
|
292 |
+
"\t</li>\n"
|
293 |
+
"\t<li>\n"
|
294 |
+
"\t\t<strong>Log Restrictions</strong>\n"
|
295 |
+
"\t\t<ul>\n"
|
296 |
+
"\t\t\t<li><strong>Only log these types of 404 errors</strong> — Check "
|
297 |
+
"this option to log a 404 error <em>only</em> if it meets at least one of the "
|
298 |
+
"criteria you specify. If you don't enable any criteria, no 404 errors will "
|
299 |
+
"be logged.\n"
|
300 |
+
"\t\t\t\t<ul>\n"
|
301 |
+
"\t\t\t\t\t<li><strong>404s generated by search engine spiders</strong> "
|
302 |
+
"— When logging restriction is enabled, this option will make an "
|
303 |
+
"exception for 404 errors generated by one of the top search engines (Google, "
|
304 |
+
"Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).</li>\n"
|
305 |
+
"\t\t\t\t\t<li><strong>404s with referring URLs</strong> — When logging "
|
306 |
+
"restriction is enabled, this option will make an exception for 404 errors "
|
307 |
+
"generated by users who click a link on your site or another site first "
|
308 |
+
"before ending up at a 404 page on your site.</li>\n"
|
309 |
+
"\t\t\t\t</ul>\n"
|
310 |
+
"\t\t\t</li>\n"
|
311 |
+
"\t\t</ul>\n"
|
312 |
+
"\t</li>\n"
|
313 |
+
"\t<li><strong>Maximum Log Entries</strong> — Here you can set the "
|
314 |
+
"maximum number of log entries that 404 Monitor will keep at a time. Setting "
|
315 |
+
"this to a reasonable number will help keep database usage under control. If "
|
316 |
+
"you change this setting, it will take effect the next time a 404 is logged.</"
|
317 |
+
"li>\n"
|
318 |
+
"\t<li><strong>URLs to Ignore</strong> — URLs entered here will be "
|
319 |
+
"ignored whenever they generate 404 errors in the future. You can use "
|
320 |
+
"asterisks (*) as wildcards.</li>\n"
|
321 |
+
"</ul>\n"
|
322 |
+
msgstr ""
|
323 |
|
324 |
+
#: modules/404s/fofs.php:96 modules/autolinks/autolinks.php:162
|
325 |
+
#: modules/files/files.php:179 modules/meta/meta-descriptions.php:224
|
326 |
+
#: modules/meta/meta-keywords.php:213 modules/meta/meta-robots.php:102
|
327 |
+
#: modules/rich-snippets/rich-snippets.php:413
|
328 |
+
#: modules/rich-snippets/rich-snippets.php:424 modules/slugs/slugs.php:115
|
329 |
+
#: modules/slugs/slugs.php:131 modules/titles/titles.php:479
|
330 |
+
#: modules/user-code/user-code.php:113
|
331 |
+
msgid "Troubleshooting"
|
332 |
+
msgstr ""
|
333 |
|
334 |
+
#: modules/404s/fofs.php:97
|
335 |
+
msgid ""
|
336 |
+
"\n"
|
337 |
+
"<p>404 Monitor doesn't appear to work? Take these notes into consideration:</"
|
338 |
+
"p>\n"
|
339 |
+
"\n"
|
340 |
+
"<ul>\n"
|
341 |
+
"\t<li>The 404 Monitor doesn't record 404 errors generated by logged-in users."
|
342 |
+
"</li>\n"
|
343 |
+
"\t<li>In order for the 404 Monitor to track 404 errors, you must have non-"
|
344 |
+
"default permalinks enabled under <a href='options-permalink.php' "
|
345 |
+
"target='_blank'>Settings ⇒ Permalinks</a>.</li>\n"
|
346 |
+
"\t<li>Some parts of your website may not be under WordPress's control; the "
|
347 |
+
"404 Monitor can't track 404 errors on non-WordPress website areas.</li>\n"
|
348 |
+
"</ul>\n"
|
349 |
+
msgstr ""
|
350 |
|
351 |
+
#: modules/author-links/author-links.php:1
|
352 |
+
#, fuzzy
|
353 |
+
msgid "Author Highlighter"
|
354 |
+
msgstr "Archivi autore"
|
355 |
|
356 |
+
#: modules/author-links/author-links.php:1
|
357 |
+
msgid ""
|
358 |
+
"In order for author highlighting to work, your authors with Google+ accounts "
|
359 |
+
"need to add their Google+ URLs to their profile page on this site. Why "
|
360 |
+
"don’t you start by adding your Google+ URL to <a href=\"profile.php"
|
361 |
+
"\">your profile</a>?"
|
362 |
+
msgstr ""
|
363 |
|
364 |
+
#: modules/author-links/author-links.php:1
|
365 |
+
msgid ""
|
366 |
+
"Since this site only has one <a href=\"users.php\">registered user</a> who "
|
367 |
+
"has written posts, Author Highlighter is providing that user’s Google+ "
|
368 |
+
"profile image to Google for it to use when any page on this WordPress site "
|
369 |
+
"appears in Google’s search result listings. If at some point you were "
|
370 |
+
"to add an additional user to this site and that user were to write some "
|
371 |
+
"posts, then additional options would show up in this section."
|
372 |
+
msgstr ""
|
373 |
|
374 |
+
#: modules/author-links/author-links.php:1
|
375 |
+
#, fuzzy
|
376 |
+
msgid "(None)"
|
377 |
msgstr "Nessuno"
|
378 |
|
379 |
+
#: modules/author-links/author-links.php:1
|
380 |
+
#, fuzzy
|
381 |
+
msgid "Author of Blog Homepage"
|
382 |
+
msgstr "Homepage blog"
|
|
|
|
|
|
|
383 |
|
384 |
+
#: modules/author-links/author-links.php:1
|
385 |
+
#, fuzzy
|
386 |
+
msgid "Author of Archive Pages"
|
387 |
+
msgstr "Archivi autore"
|
388 |
|
389 |
+
#: modules/autolinks/autolinks.php:11 modules/autolinks/autolinks.php:12
|
390 |
+
msgid "Deeplink Juggernaut"
|
391 |
+
msgstr "Deeplink Juggernaut"
|
392 |
|
393 |
+
#: modules/autolinks/autolinks.php:19
|
394 |
+
msgid ""
|
395 |
+
"\n"
|
396 |
+
"<ul>\n"
|
397 |
+
"\t<li><strong>What it does:</strong> Deeplink Juggernaut lets you "
|
398 |
+
"automatically generate hyperlinks in your site’s content and footer.</"
|
399 |
+
"li>\n"
|
400 |
+
"\t<li><strong>Why it helps:</strong> Search engines use the anchor text of "
|
401 |
+
"hyperlinks to determine the topicality of the webpage to which the link "
|
402 |
+
"points. Deeplink Juggernaut lets you automatically generate hyperlinks to "
|
403 |
+
"various pages on your site, which can help increase the linked page’s "
|
404 |
+
"ranking for the term used in the anchor text.</li>\n"
|
405 |
+
"\t<li><strong>How to use it:</strong> The Content Links section lets you "
|
406 |
+
"automatically link words or phrases in your site’s content to a target "
|
407 |
+
"page of your choosing. The Footer Links section lets you add links in the "
|
408 |
+
"footer of your entire site or just a particular set of webpages.</li>\n"
|
409 |
+
"</ul>\n"
|
410 |
+
msgstr ""
|
411 |
|
412 |
+
#: modules/autolinks/autolinks.php:29
|
413 |
+
#, fuzzy
|
414 |
+
msgid "Content Links Tab"
|
415 |
+
msgstr "Link Contestuali"
|
416 |
|
417 |
+
#: modules/autolinks/autolinks.php:30
|
418 |
+
msgid ""
|
419 |
+
"\n"
|
420 |
+
"<p>To add an autolink, fill in the fields and then click “Save Changes."
|
421 |
+
"” Once you do so, you can edit your new autolink or add another one.</"
|
422 |
+
"p>\n"
|
423 |
+
"\n"
|
424 |
+
"<ul>\n"
|
425 |
+
"\t<li><strong>Anchor Text</strong> — Deeplink Juggernaut will scan "
|
426 |
+
"your site’s content for the word or phrase you put in this box, and "
|
427 |
+
"then hyperlink instances of that word or phrase to the webpage or item you "
|
428 |
+
"specify in the Destination box. The Anchor Text should be a keyword that you "
|
429 |
+
"want the Destination page to rank for.</li>\n"
|
430 |
+
"\t<li><p><strong>Destination</strong> — This is the box where you "
|
431 |
+
"specify the webpage where you want the auto-generated hyperlinks to point.</"
|
432 |
+
"p>\n"
|
433 |
+
"\t\t<ul>\n"
|
434 |
+
"\t\t\t<li>To link to a post, page, attachment, category, tag, term, or "
|
435 |
+
"author on your site, just type in its name and then select it from the "
|
436 |
+
"dropdown.</li>\n"
|
437 |
+
"\t\t\t<li>To link to your blog homepage, just type in “home” and "
|
438 |
+
"select “Blog Homepage” from the dropdown.</li>\n"
|
439 |
+
"\t\t\t<li>To link to one of the aliased URLs you created with the Link Mask "
|
440 |
+
"Generator, just type in part of the original URL or alias URL and then "
|
441 |
+
"select the link mask from the dropdown.</li>\n"
|
442 |
+
"\t\t\t<li>To link to some other webpage, just type or paste in its URL in "
|
443 |
+
"the box.</li>\n"
|
444 |
+
"\t\t</ul>\n"
|
445 |
+
"\t</li>\n"
|
446 |
+
"\t<li><strong>Title Attribute</strong> — The link’s title "
|
447 |
+
"attribute is the text that will appear when the visitor’s mouse "
|
448 |
+
"pointer hovers over the link. Totally optional.</li>\n"
|
449 |
+
"\t<li><p><strong>Dampener:</strong> If the anchor text you specify occurs "
|
450 |
+
"many times throughout your site’s content, you may wish to reduce the "
|
451 |
+
"overall frequency with which the anchor text is hyperlinked. You can reduce "
|
452 |
+
"the autolinking frequency by a percentage with the Dampener field. For "
|
453 |
+
"example:</p>\n"
|
454 |
+
"\t\t<ul>\n"
|
455 |
+
"\t\t\t<li>0% dampening will have no effect.</li>\n"
|
456 |
+
"\t\t\t<li>50% dampening means the anchor text will be autolinked "
|
457 |
+
"approximately half as often as it otherwise would be.</li>\n"
|
458 |
+
"\t\t\t<li>90% dampening means the anchor text will be autolinked only 10% as "
|
459 |
+
"often as it otherwise would be.</li>\n"
|
460 |
+
"\t\t\t<li>100% dampening means the anchor text won’t be linked at all."
|
461 |
+
"</li>\n"
|
462 |
+
"\t\t</ul>\n"
|
463 |
+
"\t\t<p>The “Dampener” column will only appear if you’ve "
|
464 |
+
"enabled it under the “Content Link Settings” tab.</p>\n"
|
465 |
+
"\t</li>\n"
|
466 |
+
"\t<li><strong>Nofollow</strong> — Checking this will add the "
|
467 |
+
"<code>rel="nofollow"</code> attribute to all autolinks generated "
|
468 |
+
"for that anchor text. You should enable this only if you’re creating "
|
469 |
+
"an automatic affiliate link.</li>\n"
|
470 |
+
"\t<li><strong>New window</strong> — Checking this will make the link "
|
471 |
+
"destination open up in a new window when the autolink is clicked.</li>\n"
|
472 |
+
"\t<li><strong>Delete</strong> — To delete an autolink, tick its “"
|
473 |
+
"Delete” checkbox and then click “Save Changes.”</li>\n"
|
474 |
+
"</ul>\n"
|
475 |
+
msgstr ""
|
476 |
|
477 |
+
#: modules/autolinks/autolinks.php:61
|
478 |
+
#, fuzzy
|
479 |
+
msgid "Content Link Settings Tab"
|
480 |
+
msgstr "Impostazioni Link Contestuali"
|
481 |
|
482 |
+
#: modules/autolinks/autolinks.php:62
|
483 |
+
msgid ""
|
484 |
+
"\n"
|
485 |
+
"<p>The following options are available on the Content Link Settings tab:</"
|
486 |
+
"p>\n"
|
487 |
+
"\n"
|
488 |
+
"<ul>\n"
|
489 |
+
"\t<li><strong>Add Autolinks to...</strong> — You can stop Deeplink "
|
490 |
+
"Juggernaut from adding hyperlinks to the content of items of a given post "
|
491 |
+
"type by unchecking the post type’s checkbox.</li>\n"
|
492 |
+
"\t<li>\n"
|
493 |
+
"\t\t<p><strong>Self-Linking</strong></p>\n"
|
494 |
+
"\t\t<ul>\n"
|
495 |
+
"\t\t\t<li><strong>Allow posts to link to themselves</strong> — This "
|
496 |
+
"permits Deeplink Juggernaut to add a link to the content of a given post/"
|
497 |
+
"page even if the link is pointing to the URL of that post/page.</li>\n"
|
498 |
+
"\t\t\t<li><strong>Allow posts to link to the URL by which the visitor is "
|
499 |
+
"accessing the post</strong> — There are lots of URLs by which you can "
|
500 |
+
"access any given post/page on your site. You can access posts/pages via the "
|
501 |
+
"homepage URL, your site’s many archive URLs, or the URLs of the posts/"
|
502 |
+
"pages themselves. If you have an autolink that points to the homepage, and "
|
503 |
+
"if Deeplink Juggernaut were to add that link to the content of posts when "
|
504 |
+
"those posts are accessed from the homepage, then the homepage would be "
|
505 |
+
"linking to itself. By default, Deeplink Juggernaut won’t let this "
|
506 |
+
"happen. But if you’re okay with that sort of behavior, you can enable "
|
507 |
+
"it by checking this box.</li>\n"
|
508 |
+
"\t\t</ul>\n"
|
509 |
+
"\t</li>\n"
|
510 |
+
"\t<li>\n"
|
511 |
+
"\t\t<p><strong>Quantity Restrictions</strong></p>\n"
|
512 |
+
"\t\t<ul>\n"
|
513 |
+
"\t\t\t<li><strong>Don’t add any more than ___ autolinks per post/page/"
|
514 |
+
"etc.</strong> — Use this option to cap the total number of autolinks "
|
515 |
+
"(for all anchor texts combined) that can be added to the content of any one "
|
516 |
+
"item.</li>\n"
|
517 |
+
"\t\t\t<li><strong>Don’t link the same anchor text any more than ___ "
|
518 |
+
"times per post/page/etc.</strong> — Use this option to cap the number "
|
519 |
+
"of times that each anchor text can be autolinked in the content of any one "
|
520 |
+
"item.</li>\n"
|
521 |
+
"\t\t\t<li><strong>Don’t link to the same destination any more than ___ "
|
522 |
+
"times per post/page/etc.</strong> — Use this option to cap the number "
|
523 |
+
"of autolinks that any one URL can get within the content of any one item. "
|
524 |
+
"(This is different from the previous option because you can have multiple "
|
525 |
+
"anchor texts pointing to the same place.)</li>\n"
|
526 |
+
"\t\t</ul>\n"
|
527 |
+
"\t</li>\n"
|
528 |
+
"\t<li>\n"
|
529 |
+
"\t\t<p><strong>Additional Dampening Effect</strong></p>\n"
|
530 |
+
"\t\t<ul>\n"
|
531 |
+
"\t\t\t<li><strong>Globally decrease autolinking frequency by ___%</strong> "
|
532 |
+
"— If you have massive amounts of content on your site (e.g. thousands "
|
533 |
+
"of posts), the “Quantity Restrictions” settings may not be "
|
534 |
+
"sufficient to reign in the number of autolinks being generated. If that is "
|
535 |
+
"the case, you can use this option to reduce overall autolinking frequency by "
|
536 |
+
"a given percentage. For example, if you were to set global dampening to 10%, "
|
537 |
+
"then autolinks would be added only 90% as often as before.</li>\n"
|
538 |
+
"\t\t\t<li><strong>Add a “Dampener” column to the Content Links "
|
539 |
+
"editor</strong> — Check this box and click “Save Changes” "
|
540 |
+
"to add a new column to the “Content Links” editor table that "
|
541 |
+
"will let you apply the dampening effect to individual autolinks. If "
|
542 |
+
"you’ve also enabled the global dampening option, this will let you "
|
543 |
+
"override the global value for individual links. (For example, you can "
|
544 |
+
"disable dampening for just one of your links by setting the Dampener field "
|
545 |
+
"to 0%.)</li>\n"
|
546 |
+
"\t\t</ul>\n"
|
547 |
+
"\t</li>\n"
|
548 |
+
"\t<li><strong>Tag Restrictions</strong> — By default, Deeplink "
|
549 |
+
"Juggernaut will not autolink a particular anchor text if that anchor text is "
|
550 |
+
"found in a header or in a code block. You can further customize these "
|
551 |
+
"exceptions by adding HTML tags to the list.</li>\n"
|
552 |
+
"\t<li><strong>Siloing</strong> — If you enable the siloing feature for "
|
553 |
+
"a given post type (such as posts or pages), then items of that post type "
|
554 |
+
"will only be able to autolink to a webpage on your site if it falls within a "
|
555 |
+
"category, tag, or term shared by that item. For example, you can set it up "
|
556 |
+
"so that posts in Category A can’t autolink to anything on your site "
|
557 |
+
"with the exception of other posts in Category A and the Category A archive. "
|
558 |
+
"Autolinks to external sites will not be affected, since the siloing setting "
|
559 |
+
"will not affect autolinks that have a URL in the Destination box.</li>\n"
|
560 |
+
"\t<li><strong>CSS Class for Autolinks</strong> — If you want to apply "
|
561 |
+
"CSS styling to Content Links generated by Deeplink Juggernaut, type in a "
|
562 |
+
"class name here (e.g. “autolink”).</li>\n"
|
563 |
+
"</ul>\n"
|
564 |
+
msgstr ""
|
565 |
|
566 |
+
#: modules/autolinks/autolinks.php:97
|
567 |
+
#, fuzzy
|
568 |
+
msgid "Footer Links Tab"
|
569 |
+
msgstr "Link footer"
|
570 |
|
571 |
+
#: modules/autolinks/autolinks.php:98
|
572 |
+
msgid ""
|
573 |
+
"\n"
|
574 |
+
"<p>To add a footer link, fill in the fields and then click “Save "
|
575 |
+
"Changes.” Once you do so, you can edit your new footer link or add "
|
576 |
+
"another one.</p>\n"
|
577 |
+
"\n"
|
578 |
+
"<ul>\n"
|
579 |
+
"\t<li><p><strong>Link Location</strong> — If you want to add a footer "
|
580 |
+
"link across your entire site, leave this box blank. Otherwise, type in the "
|
581 |
+
"location on your site where you want the footer link to appear.</p>\n"
|
582 |
+
"\t\t<p>If you only want the footer link to appear on…</p>\n"
|
583 |
+
"\t\t<ul>\n"
|
584 |
+
"\t\t\t<li>…A particular post, page, attachment, or category/tag/term/"
|
585 |
+
"author archive, just type in the item’s name and then select it from "
|
586 |
+
"the dropdown.</li>\n"
|
587 |
+
"\t\t\t<li>…Your blog homepage, just type in “home” and "
|
588 |
+
"select “Blog Homepage” from the dropdown.</li>\n"
|
589 |
+
"\t\t\t<li>…A particular URL on your site, just type or paste it into "
|
590 |
+
"the box.</li>\n"
|
591 |
+
"\t\t</ul>\n"
|
592 |
+
"\t</li>\n"
|
593 |
+
"\t<li><p><strong>Match child content</strong> — What this does depends "
|
594 |
+
"on what type of Link Location you specified.</p>\n"
|
595 |
+
"\t\t<ul>\n"
|
596 |
+
"\t\t\t<li>If the Link Location is a category/tag/term archive, then the "
|
597 |
+
"footer link will also be added to posts within that term.</li>\n"
|
598 |
+
"\t\t\t<li>If the Link Location is an author archive, then the footer link "
|
599 |
+
"will also be added to posts written by that author.</li>\n"
|
600 |
+
"\t\t\t<li>If the Link Location is a URL, then the footer link will also be "
|
601 |
+
"added to URLs that begin with whatever URL you entered.</li>\n"
|
602 |
+
"\t\t</ul>\n"
|
603 |
+
"\t</li>\n"
|
604 |
+
"\t<li><strong>Negative match</strong> — This will cause the footer "
|
605 |
+
"link to be inserted on webpages <em>other than</em> the Link Location and "
|
606 |
+
"(if the appropriate box is checked) its child content.</li>\n"
|
607 |
+
"\t<li><strong>Anchor Text</strong> — Deeplink Juggernaut insert this "
|
608 |
+
"text into your site’s footer and will link that text to the webpage or "
|
609 |
+
"item you specify in the Destination box. The Anchor Text should be a keyword "
|
610 |
+
"that you want the Destination page to rank for.</li>\n"
|
611 |
+
"\t<li><p><strong>Destination</strong> — This is the box where you "
|
612 |
+
"specify the webpage where you want the auto-generated hyperlinks to point.</"
|
613 |
+
"p>\n"
|
614 |
+
"\t\t<ul>\n"
|
615 |
+
"\t\t\t<li>To link to a post, page, attachment, category, tag, term, or "
|
616 |
+
"author on your site, just type in its name and then select it from the "
|
617 |
+
"dropdown.</li>\n"
|
618 |
+
"\t\t\t<li>To link to your blog homepage, just type in “home” and "
|
619 |
+
"select “Blog Homepage” from the dropdown.</li>\n"
|
620 |
+
"\t\t\t<li>To link to one of the aliased URLs you created with the Link Mask "
|
621 |
+
"Generator, just type in part of the original URL or alias URL and then "
|
622 |
+
"select the link mask from the dropdown.</li>\n"
|
623 |
+
"\t\t\t<li>To link to some other webpage, just type or paste in its URL in "
|
624 |
+
"the box.</li>\n"
|
625 |
+
"\t\t</ul>\n"
|
626 |
+
"\t</li>\n"
|
627 |
+
"\t<li><strong>Title Attribute</strong> — The link’s title "
|
628 |
+
"attribute is the text that will appear when the visitor’s mouse "
|
629 |
+
"pointer hovers over the link. Totally optional.</li>\n"
|
630 |
+
"\t<li><strong>Nofollow</strong> — Checking this will add the "
|
631 |
+
"<code>rel="nofollow"</code> attribute to all instances of this "
|
632 |
+
"footer link. You should enable this only if you’re creating an "
|
633 |
+
"automatic affiliate link.</li>\n"
|
634 |
+
"\t<li><strong>New window</strong> — Checking this will make the link "
|
635 |
+
"destination open up in a new window when the footer link is clicked.</li>\n"
|
636 |
+
"\t<li><strong>Delete</strong> — To delete an autolink, tick its “"
|
637 |
+
"Delete” checkbox and then click “Save Changes.”</li>\n"
|
638 |
+
"</ul>\n"
|
639 |
+
msgstr ""
|
640 |
|
641 |
+
#: modules/autolinks/autolinks.php:136
|
642 |
+
#, fuzzy
|
643 |
+
msgid "Footer Link Settings Tab"
|
644 |
+
msgstr "Impostazioni Link Footer"
|
645 |
|
646 |
+
#: modules/autolinks/autolinks.php:137
|
647 |
+
msgid ""
|
648 |
+
"\n"
|
649 |
+
"<p>The following options are available on the Footer Link Settings tab:</p>\n"
|
650 |
+
"\n"
|
651 |
+
"<ul>\n"
|
652 |
+
"\t<li><strong>Link Section Format</strong> — Lets you customize the "
|
653 |
+
"text/HTML that will surround the list of links outputted in your site’"
|
654 |
+
"s footer (represented by the <code>{links}</code> variable).</li>\n"
|
655 |
+
"\t<li><strong>Link Format</strong> — Lets you specify text or HTML "
|
656 |
+
"that will surround each individual link (represented by the <code>{link}</"
|
657 |
+
"code> variable).</li>\n"
|
658 |
+
"\t<li><strong>Link Separator</strong> — Lets you specify text or HTML "
|
659 |
+
"that will separate each individual link.</li>\n"
|
660 |
+
"</ul>\n"
|
661 |
+
msgstr ""
|
662 |
|
663 |
+
#: modules/autolinks/autolinks.php:149 modules/files/files.php:169
|
664 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:363
|
665 |
+
#: modules/meta/meta-descriptions.php:215 modules/meta/meta-keywords.php:203
|
666 |
+
#: modules/modules/modules.php:224 modules/more-links/more-links.php:105
|
667 |
+
#: modules/more-links/more-links.php:116 modules/settings/settings.php:81
|
668 |
+
#: modules/slugs/slugs.php:114 modules/slugs/slugs.php:126
|
669 |
+
#: modules/titles/titles.php:468
|
670 |
+
msgid "FAQ"
|
671 |
+
msgstr ""
|
672 |
|
673 |
+
#: modules/autolinks/autolinks.php:150
|
674 |
+
msgid ""
|
675 |
+
"\n"
|
676 |
+
"<ul>\n"
|
677 |
+
"\t<li><strong>What happens if I autolink to a post and then delete the post "
|
678 |
+
"later?</strong><br />Deeplink Juggernaut will disable all autolinks that "
|
679 |
+
"point to the deleted post. Deeplink Juggernaut will keep the autolink in the "
|
680 |
+
"list though, so that you can point it somewhere else.</li>\n"
|
681 |
+
"\t<li><strong>What happens if I autolink to a draft post?</strong><br /"
|
682 |
+
">Don’t worry: Deeplink Juggernaut won’t actually autolink to it "
|
683 |
+
"until the post is published.</li>\n"
|
684 |
+
"\t<li><strong>Does Deeplink Juggernaut edit my posts’ content as it is "
|
685 |
+
"stored in the database?</strong><br />No. Autolinks are added dynamically. "
|
686 |
+
"This means all the autolinks will go away if you disable Deeplink Juggernaut "
|
687 |
+
"or deactivate SEO Ultimate.</li>\n"
|
688 |
+
"\t<li><strong>How does the Dampener work?</strong><br />When the Dampener is "
|
689 |
+
"in effect, Deeplink Juggernaut creates a hash for each autolink and creates "
|
690 |
+
"a hash for each post/page/etc. on your site. In order for the autolink to be "
|
691 |
+
"added to the content of a post/page, the two hashes have to be compatible "
|
692 |
+
"with each other. If the Dampener is set to 70%, then the hashes will match "
|
693 |
+
"and the autolink will be applied approximately 30% of the time. This hash "
|
694 |
+
"system results in a pseudo-random dampening effect that will always have a "
|
695 |
+
"consistent outcome for any given anchor/post combination.</li>\n"
|
696 |
+
"\t<li><strong>Can I still use the Footer Links feature if my theme has a "
|
697 |
+
"widgetized footer?</strong><br />Yes. Make sure the “SEO Ultimate "
|
698 |
+
"Widgets” module is enabled in the SEO Ultimate <a href='admin.php?"
|
699 |
+
"page=seo' target='_blank'>Module Manager</a>, then go to your <a "
|
700 |
+
"href='widgets.php' target='_blank'>Widgets</a> page and add the “"
|
701 |
+
"Footer Links” widget.\n"
|
702 |
+
"</ul>\n"
|
703 |
+
msgstr ""
|
704 |
|
705 |
+
#: modules/autolinks/autolinks.php:163
|
706 |
+
msgid ""
|
707 |
+
"\n"
|
708 |
+
"<ul>\n"
|
709 |
+
"\t<li><strong>I configured a Content Link, but the anchor text isn’t "
|
710 |
+
"being linked on my site.</strong><br />You likely enabled a setting on the "
|
711 |
+
"“Content Link Settings” tab that is preventing the autolink from "
|
712 |
+
"being applied.</li>\n"
|
713 |
+
"\t<li><strong>I have Content Links configured for “widgets” and "
|
714 |
+
"“blue widgets,” but when the phrase “blue widgets” "
|
715 |
+
"appears on my site, only the word “widgets” is being linked. Why "
|
716 |
+
"is that?</strong><br />Deeplink Juggernaut always links longer anchor texts "
|
717 |
+
"first, so if this is happening, then the “blue widgets” autolink "
|
718 |
+
"must have been disabled in that particular instance due to a Quantity "
|
719 |
+
"Restriction or the Dampener effect being applied.</li>\n"
|
720 |
+
"\t<li><strong>Why aren’t my footer links appearing?</strong><br /"
|
721 |
+
">Check to make sure your theme is <a href='http://johnlamansky.com/wordpress/"
|
722 |
+
"theme-plugin-hooks/' target='_blank'>plugin-friendly</a>. Also, check the "
|
723 |
+
"“Footer Link Settings” tab and make sure that the “Link "
|
724 |
+
"Section Format” field includes the <code>{links}</code> variable and "
|
725 |
+
"that the “Link Format” field includes the <code>{link}</code> "
|
726 |
+
"variable.</li>\n"
|
727 |
+
"</ul>\n"
|
728 |
+
msgstr ""
|
729 |
|
730 |
+
#: modules/autolinks/content-autolinks-settings.php:16
|
731 |
+
msgid "Content Deeplink Juggernaut Settings"
|
732 |
+
msgstr "Deeplink Juggernaut - Impostazioni contenuto"
|
733 |
|
734 |
+
#: modules/autolinks/content-autolinks-settings.php:17
|
735 |
+
msgid "Content Link Settings"
|
736 |
+
msgstr "Impostazioni Link Contestuali"
|
737 |
|
738 |
+
#: modules/autolinks/content-autolinks-settings.php:42
|
739 |
+
msgid "Add Autolinks to..."
|
740 |
+
msgstr "Aggiungi auto-link a..."
|
741 |
|
742 |
+
#: modules/autolinks/content-autolinks-settings.php:45
|
743 |
+
#, fuzzy
|
744 |
+
msgid "Allow posts to link to themselves"
|
745 |
+
msgstr "Permetti agli articoli di linkare se stessi."
|
746 |
|
747 |
+
#: modules/autolinks/content-autolinks-settings.php:46
|
748 |
+
#, fuzzy
|
749 |
+
msgid ""
|
750 |
+
"Allow posts to link to the URL by which the visitor is accessing the post"
|
751 |
+
msgstr ""
|
752 |
+
"Permetti agli articoli di linkare l'URL dal quale il visitatore arrivato "
|
753 |
+
"all'articolo."
|
754 |
|
755 |
+
#: modules/autolinks/content-autolinks-settings.php:47
|
756 |
+
msgid "Self-Linking"
|
757 |
+
msgstr "Self-Linking"
|
|
|
758 |
|
759 |
+
#: modules/autolinks/content-autolinks-settings.php:50
|
760 |
+
#, php-format
|
761 |
+
msgid "Don’t add any more than %d autolinks per post/page/etc."
|
762 |
+
msgstr "Non aggiungere più di %d auto-link per articolo/pagina/etc."
|
763 |
|
764 |
+
#: modules/autolinks/content-autolinks-settings.php:51
|
765 |
+
#, php-format
|
766 |
+
msgid ""
|
767 |
+
"Don’t link the same anchor text any more than %d times per post/page/"
|
768 |
+
"etc."
|
769 |
+
msgstr ""
|
770 |
+
"Non linkare lo stesso anchor text per più di %d volte per articolo/pagina/"
|
771 |
+
"etc."
|
772 |
|
773 |
+
#: modules/autolinks/content-autolinks-settings.php:52
|
774 |
+
#, php-format
|
775 |
+
msgid ""
|
776 |
+
"Don’t link to the same destination any more than %d times per post/"
|
777 |
+
"page/etc."
|
778 |
+
msgstr ""
|
779 |
+
"Non linkare alla stessa destinazione per più di %d volte per articolo/pagina/"
|
780 |
+
"etc."
|
781 |
|
782 |
+
#: modules/autolinks/content-autolinks-settings.php:53
|
783 |
+
msgid "Quantity Restrictions"
|
784 |
+
msgstr "Restrizioni quantità"
|
785 |
|
786 |
+
#: modules/autolinks/content-autolinks-settings.php:57
|
787 |
+
msgid "Globally decrease autolinking frequency by %d%"
|
788 |
+
msgstr ""
|
789 |
|
790 |
+
#: modules/autolinks/content-autolinks-settings.php:59
|
791 |
+
msgid ""
|
792 |
+
"Add a “Dampener” column to the Content Links editor to let me "
|
793 |
+
"customize frequency dampening on a per-link basis"
|
794 |
+
msgstr ""
|
795 |
|
796 |
+
#: modules/autolinks/content-autolinks-settings.php:63
|
797 |
+
msgid "Additional Dampening Effect"
|
798 |
+
msgstr ""
|
799 |
|
800 |
+
#: modules/autolinks/content-autolinks-settings.php:65
|
801 |
+
msgid ""
|
802 |
+
"Don’t add autolinks to text within these HTML tags <em>(separate with "
|
803 |
+
"commas)</em>:"
|
804 |
+
msgstr ""
|
805 |
+
"Non aggiungere gli auto-link al testo all'interno di questi tag HTML "
|
806 |
+
"<em>(separa con una virgola)</em>:"
|
807 |
|
808 |
+
#: modules/autolinks/content-autolinks-settings.php:65
|
809 |
+
msgid "Tag Restrictions"
|
810 |
+
msgstr "Restrizioni tag"
|
811 |
|
812 |
+
#: modules/autolinks/content-autolinks-settings.php:73
|
813 |
+
#, php-format
|
814 |
+
msgid "%s can only link to internal destinations that share at least one..."
|
815 |
+
msgstr ""
|
816 |
+
"Gli %s possono solamente linkare a delle destinazioni interne che ne "
|
817 |
+
"condividano almeno uno..."
|
818 |
|
819 |
+
#: modules/autolinks/content-autolinks-settings.php:86
|
820 |
+
msgid "Siloing"
|
821 |
+
msgstr "Siloing"
|
822 |
|
823 |
+
#: modules/autolinks/content-autolinks-settings.php:88
|
824 |
+
msgid "CSS Class for Autolinks"
|
825 |
+
msgstr ""
|
826 |
|
827 |
+
#: modules/autolinks/content-autolinks.php:18
|
828 |
+
msgid "Content Deeplink Juggernaut"
|
829 |
+
msgstr "Deeplink Juggernaut - Contenuti"
|
830 |
|
831 |
+
#: modules/autolinks/content-autolinks.php:19
|
832 |
+
msgid "Content Links"
|
833 |
+
msgstr "Link Contestuali"
|
834 |
|
835 |
+
#: modules/autolinks/content-autolinks.php:263
|
836 |
+
msgid ""
|
837 |
+
"The Content Links section of Deeplink Juggernaut lets you automatically link "
|
838 |
+
"a certain word or phrase in your post/page content to a URL you specify."
|
839 |
+
msgstr ""
|
840 |
+
"La sezione Link Contestuali di Deeplink Juggernaut ti permetterà di linkare "
|
841 |
+
"in automatico una certa frase o parola presente in un tuo articolo/pagina ad "
|
842 |
+
"un determinato URL specificato da te."
|
843 |
|
844 |
+
#: modules/autolinks/content-autolinks.php:326
|
845 |
+
msgid ""
|
846 |
+
"<strong>Functionality Change Notice:</strong> The “Site Cap” "
|
847 |
+
"feature (which allowed you set a per-link sitewide quantity limit) has been "
|
848 |
+
"replaced with a more efficient “Dampener” feature that lets you "
|
849 |
+
"reduce autolinking frequency by a percentage. Although the Site Cap feature "
|
850 |
+
"has been replaced, we retained the “Site Cap” column for you in "
|
851 |
+
"the table below, since it looks like you’ve used the Site Cap feature "
|
852 |
+
"in the past. We retained the column to help you remember which links used "
|
853 |
+
"the old feature, so that you know to which links to apply the new “"
|
854 |
+
"Dampener” feature. Once you’re done migrating the Site Cap "
|
855 |
+
"values to Dampener percentages, just clear the “Site Cap” boxes "
|
856 |
+
"to make those boxes (and this message) go away."
|
857 |
+
msgstr ""
|
858 |
|
859 |
+
#: modules/autolinks/content-autolinks.php:332
|
860 |
+
#: modules/autolinks/footer-autolinks.php:157
|
861 |
+
msgid "Edit Existing Links"
|
862 |
+
msgstr "Modifica link esistenti"
|
863 |
|
864 |
+
#: modules/autolinks/content-autolinks.php:336
|
865 |
+
#: modules/autolinks/footer-autolinks.php:161
|
866 |
+
msgid "Add a New Link"
|
867 |
+
msgstr "Aggiungi un nuovo link"
|
868 |
|
869 |
+
#: modules/autolinks/content-autolinks.php:349
|
870 |
+
#: modules/autolinks/footer-autolinks.php:171
|
871 |
+
msgid "Anchor Text"
|
872 |
+
msgstr "Anchor Text"
|
873 |
|
874 |
+
#: modules/autolinks/content-autolinks.php:350
|
875 |
+
#: modules/autolinks/footer-autolinks.php:172
|
876 |
+
msgid "Destination"
|
877 |
+
msgstr "Destinazione"
|
878 |
|
879 |
+
#: modules/autolinks/content-autolinks.php:351
|
880 |
+
#: modules/autolinks/footer-autolinks.php:173
|
881 |
+
#, fuzzy
|
882 |
+
msgid "Title Attribute <em>(optional)</em>"
|
883 |
+
msgstr "Title: <em>(facoltativo)</em>"
|
884 |
|
885 |
+
#: modules/autolinks/content-autolinks.php:353
|
886 |
+
msgid "Dampener"
|
887 |
+
msgstr ""
|
888 |
|
889 |
+
#: modules/autolinks/content-autolinks.php:355
|
890 |
+
msgid "Site Cap"
|
891 |
+
msgstr "Site Cap"
|
892 |
|
893 |
+
#: modules/autolinks/content-autolinks.php:356
|
894 |
+
#: modules/autolinks/footer-autolinks.php:174
|
895 |
+
msgid "Options"
|
896 |
+
msgstr "Opzioni"
|
897 |
|
898 |
+
#: modules/autolinks/content-autolinks.php:358
|
899 |
+
#: modules/autolinks/footer-autolinks.php:176
|
900 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:103
|
901 |
+
msgid "Delete"
|
902 |
+
msgstr "Cancella"
|
903 |
|
904 |
+
#: modules/autolinks/content-autolinks.php:395
|
905 |
+
#: modules/autolinks/footer-autolinks.php:210 modules/noindex/noindex.php:61
|
906 |
+
#: modules/noindex/noindex.php:85
|
907 |
+
msgid "Nofollow"
|
908 |
+
msgstr "Nofollow"
|
909 |
|
910 |
+
#: modules/autolinks/content-autolinks.php:397
|
911 |
+
#: modules/autolinks/footer-autolinks.php:212
|
912 |
+
msgid "New window"
|
913 |
+
msgstr "Nuova finestra"
|
914 |
|
915 |
+
#: modules/autolinks/content-autolinks.php:478
|
916 |
+
#, fuzzy
|
917 |
+
msgid "Inbound Autolink Anchors:<br /><em>(one per line)</em>"
|
918 |
+
msgstr "Ancore auto-link in ingresso:<br /><em>(una per linea)</em>"
|
919 |
|
920 |
+
#: modules/autolinks/content-autolinks.php:481
|
921 |
+
msgid "Don’t add autolinks to anchor texts found in this post."
|
922 |
+
msgstr "Non aggiungere auto-links agli anchor text trovati in questo articolo."
|
923 |
|
924 |
+
#: modules/autolinks/content-autolinks.php:481
|
925 |
+
msgid "Autolink Exclusion:"
|
926 |
+
msgstr "Esclusione auto-link:"
|
927 |
|
928 |
+
#: modules/autolinks/content-autolinks.php:487
|
929 |
+
#, fuzzy
|
930 |
+
msgid ""
|
931 |
+
"<strong>Incoming Autolink Anchors</strong> — When you enter anchors "
|
932 |
+
"into this box, Deeplink Juggernaut will search for that anchor in all your "
|
933 |
+
"other posts and link it to this post. For example, if the post you’re "
|
934 |
+
"editing is about “blue widgets,” you could type “blue "
|
935 |
+
"widgets” into the “Incoming Autolink Anchors” box and "
|
936 |
+
"Deeplink Juggernaut will automatically build internal links to this post "
|
937 |
+
"with that anchor text (assuming other posts contain that text). If you’"
|
938 |
+
"re working on a draft post or a scheduled post, don’t worry — "
|
939 |
+
"SEO Ultimate won’t add autolinks to this post until it’s "
|
940 |
+
"published."
|
941 |
+
msgstr ""
|
942 |
+
"<strong>Ancore auto-link in ingresso</strong> — Inserendo delle ancore "
|
943 |
+
"in questo box, Deeplink Juggernaut cercherà quella data ancora in tutti i "
|
944 |
+
"tuoi articoli e link a questo articolo. Ad esempio, se l'articolo che stai "
|
945 |
+
"modificando concernesse i “widgets,” tu scrivi “"
|
946 |
+
"widgets” nella casella “Ancore auto-link in ingresso” e "
|
947 |
+
"Deeplink Juggernaut costruirà in automalico i link interni a quel post "
|
948 |
+
"avente quel dato anchor text (posto che gli altri articoli contengano quel "
|
949 |
+
"testo)."
|
950 |
|
951 |
+
#: modules/autolinks/footer-autolinks-settings.php:16
|
952 |
+
msgid "Footer Deeplink Juggernaut Settings"
|
953 |
+
msgstr "Deeplink Juggernaut - Impostazioni footer"
|
954 |
|
955 |
+
#: modules/autolinks/footer-autolinks-settings.php:17
|
956 |
+
msgid "Footer Link Settings"
|
957 |
+
msgstr "Impostazioni Link Footer"
|
958 |
|
959 |
+
#: modules/autolinks/footer-autolinks-settings.php:28
|
960 |
+
msgid "HTML Formats"
|
961 |
+
msgstr "Formati HTML"
|
962 |
|
963 |
+
#: modules/autolinks/footer-autolinks-settings.php:31
|
964 |
+
msgid "Link Section Format"
|
965 |
+
msgstr "Sezione formato link"
|
966 |
|
967 |
+
#: modules/autolinks/footer-autolinks-settings.php:32
|
968 |
+
msgid "Link Format"
|
969 |
+
msgstr "Formato link"
|
970 |
|
971 |
+
#: modules/autolinks/footer-autolinks-settings.php:34
|
972 |
+
msgid "Link Separator"
|
973 |
+
msgstr "Separatore link"
|
974 |
|
975 |
+
#: modules/autolinks/footer-autolinks.php:16
|
976 |
+
msgid "Footer Deeplink Juggernaut"
|
977 |
+
msgstr "Deeplink Juggernaut - Footer"
|
978 |
|
979 |
+
#: modules/autolinks/footer-autolinks.php:17 modules/widgets/widgets.php:174
|
980 |
+
msgid "Footer Links"
|
981 |
+
msgstr "Link footer"
|
982 |
|
983 |
+
#: modules/autolinks/footer-autolinks.php:169
|
984 |
+
#, fuzzy
|
985 |
+
msgid "Link Location <em>(optional)</em>"
|
986 |
+
msgstr "Posizione link (facoltativa)"
|
987 |
|
988 |
+
#: modules/autolinks/footer-autolinks.php:197
|
989 |
+
msgid "Match child content"
|
990 |
+
msgstr "Corrispondenza child"
|
991 |
|
992 |
+
#: modules/autolinks/footer-autolinks.php:199
|
993 |
+
msgid "Negative match"
|
994 |
+
msgstr "Corrisp. negativa"
|
995 |
|
996 |
+
#: modules/canonical/canonical.php:12 modules/canonical/canonical.php:221
|
997 |
+
msgid "Canonicalizer"
|
998 |
+
msgstr "Canonicalizer"
|
999 |
|
1000 |
+
#: modules/canonical/canonical.php:41
|
1001 |
+
#, fuzzy
|
1002 |
+
msgid ""
|
1003 |
+
"Generate <code><link rel="canonical" /></code> meta tags"
|
1004 |
+
msgstr "Genera tag meta <code><link rel="canonical" /></code>."
|
1005 |
|
1006 |
+
#: modules/canonical/canonical.php:42
|
1007 |
+
#, fuzzy
|
1008 |
+
msgid "Send <code>rel="canonical"</code> HTTP headers"
|
1009 |
+
msgstr "Invia <code>rel="canonical"</code> a header HTTP."
|
1010 |
|
1011 |
+
#: modules/canonical/canonical.php:43
|
1012 |
+
msgid "Canonical URL Generation"
|
1013 |
+
msgstr ""
|
1014 |
|
1015 |
+
#: modules/canonical/canonical.php:45
|
1016 |
+
msgid ""
|
1017 |
+
"Use <code>http://</code> or <code>https://</code> depending on how the "
|
1018 |
+
"visitor accessed the page"
|
1019 |
+
msgstr ""
|
1020 |
|
1021 |
+
#: modules/canonical/canonical.php:46
|
1022 |
+
msgid "Make all canonical URLs begin with <code>http://</code>"
|
1023 |
+
msgstr ""
|
1024 |
|
1025 |
+
#: modules/canonical/canonical.php:47
|
1026 |
+
msgid "Make all canonical URLs begin with <code>https://</code>"
|
1027 |
+
msgstr ""
|
1028 |
|
1029 |
+
#: modules/canonical/canonical.php:48
|
1030 |
+
#, fuzzy
|
1031 |
+
msgid "Canonical URL Scheme"
|
1032 |
+
msgstr "Canonicalizer"
|
1033 |
|
1034 |
+
#: modules/canonical/canonical.php:50
|
1035 |
+
#, fuzzy
|
1036 |
+
msgid "Redirect requests for nonexistent pagination"
|
1037 |
+
msgstr "Reindirizza richieste per pagination inesistente."
|
1038 |
|
1039 |
+
#: modules/canonical/canonical.php:51
|
1040 |
+
msgid "Automated 301 Redirects"
|
1041 |
+
msgstr ""
|
1042 |
|
1043 |
+
#: modules/canonical/canonical.php:210
|
1044 |
+
msgid ""
|
1045 |
+
"\n"
|
1046 |
+
"<ul>\n"
|
1047 |
+
"\t<li><strong>What it does:</strong> Canonicalizer will point Google to the "
|
1048 |
+
"correct URL for your homepage and each of your posts, Pages, categories, "
|
1049 |
+
"tags, date archives, and author archives.</li>\n"
|
1050 |
+
"\t<li><strong>Why it helps:</strong> If Google comes across an alternate URL "
|
1051 |
+
"by which one of those items can be accessed, it will be able to find the "
|
1052 |
+
"correct URL and won’t penalize you for having two identical pages on "
|
1053 |
+
"your site.</li>\n"
|
1054 |
+
"\t<li><strong>How to use it:</strong> Just check the three checkboxes. If "
|
1055 |
+
"your site is accessible using both <code>http://</code> and <code>https://</"
|
1056 |
+
"code>, be sure to set the preferred one under “Canonical URL Scheme."
|
1057 |
+
"”</li>\n"
|
1058 |
+
"</ul>\n"
|
1059 |
+
msgstr ""
|
1060 |
|
1061 |
+
#: modules/class.su-importmodule.php:49
|
1062 |
+
msgid "Import Post Fields"
|
1063 |
+
msgstr "Importa campi articolo"
|
1064 |
|
1065 |
+
#: modules/class.su-importmodule.php:50
|
1066 |
+
#, php-format
|
1067 |
+
msgid ""
|
1068 |
+
"Post fields store the SEO data for your posts/pages (i.e. your custom title "
|
1069 |
+
"tags, meta descriptions, and meta keywords). If you provided custom titles/"
|
1070 |
+
"descriptions/keywords to %s, this importer can move that data over to SEO "
|
1071 |
+
"Ultimate."
|
1072 |
+
msgstr ""
|
1073 |
+
"I campi articolo conservano i dati SEO dei tuoi articoli/pagine (ad esempio: "
|
1074 |
+
"tag titolo personalizzato, descrizioni meta e parole chiave meta). Avessi "
|
1075 |
+
"fornito a %s dei titoli/descrizioni/keyword, questo importatore potrà "
|
1076 |
+
"spostare i dati in SEO Ultimate."
|
1077 |
|
1078 |
+
#: modules/class.su-importmodule.php:53
|
1079 |
+
msgid "Conflict Resolution Mode"
|
1080 |
+
msgstr "Modalità soluzione conflitto"
|
1081 |
|
1082 |
+
#: modules/class.su-importmodule.php:54
|
1083 |
+
#, php-format
|
1084 |
+
msgid ""
|
1085 |
+
"What should the import tool do if it tries to move over a post’s %s "
|
1086 |
+
"data, but different data already exists in the corresponding SEO Ultimate "
|
1087 |
+
"fields?"
|
1088 |
+
msgstr ""
|
1089 |
+
"Come desideri che si comporti lo strumento di importazione nel caso in cui "
|
1090 |
+
"nel tentativo di spostare i dati %s di un articolo trovasse dei dati già "
|
1091 |
+
"esistenti nei corrispondenti campi di di SEO Ultimate?"
|
1092 |
|
1093 |
+
#: modules/class.su-importmodule.php:56
|
1094 |
+
msgid "Skip that post and leave all data as-is (default)."
|
1095 |
+
msgstr "Salta l'articolo e lascia tutto così come trovi (predefinito)."
|
1096 |
|
1097 |
+
#: modules/class.su-importmodule.php:57
|
1098 |
+
#, php-format
|
1099 |
+
msgid "Delete the SEO Ultimate data and replace it with the %s data."
|
1100 |
+
msgstr "Cancella i dati SEO Ultimate data e sostituiscili con i dati %s."
|
1101 |
|
1102 |
+
#: modules/class.su-importmodule.php:58
|
1103 |
+
#, php-format
|
1104 |
+
msgid "Keep the SEO Ultimate data and delete the %s data."
|
1105 |
+
msgstr "Conserva i dati SEO Ultimate data e cancella i dati %s."
|
1106 |
|
1107 |
+
#: modules/class.su-importmodule.php:61
|
1108 |
+
msgid "Deletion Preference"
|
1109 |
+
msgstr "Preferenze cancellazione"
|
1110 |
|
1111 |
+
#: modules/class.su-importmodule.php:62
|
1112 |
+
#, php-format
|
1113 |
+
msgid ""
|
1114 |
+
"When the migration tool successfully copies a post’s %1$s data over to "
|
1115 |
+
"SEO Ultimate, what should it do with the old %1$s data?"
|
1116 |
+
msgstr ""
|
1117 |
+
"Una volta che strumento di migrazione avrà copiato i dati %1$s in SEO "
|
1118 |
+
"Ultimate, cosa intendi fare con i vecchi dati %1$s?"
|
1119 |
|
1120 |
+
#: modules/class.su-importmodule.php:64
|
1121 |
+
#, php-format
|
1122 |
+
msgid "Delete the %s data."
|
1123 |
+
msgstr "Cancella i dati %s."
|
1124 |
|
1125 |
+
#: modules/class.su-importmodule.php:65
|
1126 |
+
#, php-format
|
1127 |
+
msgid "Leave behind the duplicate %s data (default)."
|
1128 |
+
msgstr "Lascia i dati del duplicato %s (predefinito)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1129 |
|
1130 |
+
#: modules/class.su-importmodule.php:72
|
1131 |
+
msgid "Import Now"
|
1132 |
+
msgstr "Importa adesso"
|
1133 |
|
1134 |
+
#: modules/class.su-importmodule.php:75
|
1135 |
+
#, php-format
|
1136 |
+
msgid ""
|
1137 |
+
"The import cannot be undone. It is your responsibility to <a href=\"%s\" "
|
1138 |
+
"target=\"_blank\">backup your database</a> before proceeding!"
|
1139 |
+
msgstr ""
|
1140 |
+
"L'importazione è irreversibile. Effettua il backup del tuo <a href=\"%s\" "
|
1141 |
+
"target=\"_blank\">database</a> prima di procedere!"
|
1142 |
|
1143 |
+
#: modules/class.su-importmodule.php:84
|
1144 |
+
msgid "Import complete."
|
1145 |
+
msgstr "Importazione completa."
|
1146 |
|
1147 |
+
#: modules/class.su-importmodule.php:90
|
1148 |
+
msgid "Return to import page"
|
1149 |
+
msgstr "Ritorna alla pagina delle importazioni"
|
1150 |
|
1151 |
+
#: modules/class.su-importmodule.php:93
|
1152 |
+
msgid "Return to settings page"
|
1153 |
+
msgstr "Ritorna alla pagina delle impostazioni"
|
1154 |
|
1155 |
+
#: modules/class.su-importmodule.php:96
|
1156 |
+
msgid "Return to SEO page"
|
1157 |
+
msgstr "Ritorna alla pagina SEO"
|
1158 |
|
1159 |
+
#: modules/class.su-importmodule.php:116
|
1160 |
+
#, php-format
|
1161 |
+
msgid "Deactivated %s."
|
1162 |
+
msgstr "Disattivato %s."
|
1163 |
|
1164 |
+
#: modules/class.su-importmodule.php:175
|
1165 |
+
#, php-format
|
1166 |
+
msgid "Imported a total of %d fields for one post/page/revision."
|
1167 |
+
msgid_plural "Imported a total of %1$d fields for %2$d posts/pages/revisions."
|
1168 |
+
msgstr[0] "Importato un totale di %d campi per un articolo/pagina/revisione."
|
1169 |
+
msgstr[1] ""
|
1170 |
+
"Importato un totale di %1$d campi per %2$d articoli/pagine/revisioni."
|
1171 |
|
1172 |
+
#: modules/class.su-importmodule.php:181
|
1173 |
+
#, php-format
|
1174 |
+
msgid "Skipped one post with disabled %2$s data."
|
1175 |
+
msgid_plural "Skipped %1$d posts with disabled %2$s data."
|
1176 |
+
msgstr[0] "Saltato un articolo con i dati %2$s disabilitati."
|
1177 |
+
msgstr[1] "Saltati %1$d articoli con i dati %2$s disabilitati."
|
1178 |
|
1179 |
+
#: modules/class.su-importmodule.php:187
|
1180 |
+
#, php-format
|
1181 |
+
msgid ""
|
1182 |
+
"Overwrote one SEO Ultimate field with %2$s data, as instructed by the "
|
1183 |
+
"settings you chose."
|
1184 |
+
msgid_plural ""
|
1185 |
+
"Overwrote %1$d SEO Ultimate fields with %2$s data, as instructed by the "
|
1186 |
+
"settings you chose."
|
1187 |
+
msgstr[0] ""
|
1188 |
+
"Sovrascrive il campo SEO Ultimate con il dato %2$s,come da tua impostazione."
|
1189 |
+
msgstr[1] ""
|
1190 |
+
"Sovrascrive i campi %1$d SEO Ultimate con i dati %2$s, come da tua "
|
1191 |
+
"impostazione."
|
1192 |
+
|
1193 |
+
#: modules/class.su-importmodule.php:193
|
1194 |
+
#, php-format
|
1195 |
+
msgid "Deleted one %2$s field, as instructed by the settings you chose."
|
1196 |
+
msgid_plural ""
|
1197 |
+
"Deleted %1$d %2$s fields, as instructed by the settings you chose."
|
1198 |
+
msgstr[0] "Cancellato un campo %2$s, così come da tua impostazione."
|
1199 |
+
msgstr[1] "Cancellati%1$d %2$s campi, così come da tua impostazione."
|
1200 |
|
1201 |
+
#: modules/class.su-module.php:715
|
1202 |
+
#, php-format
|
1203 |
+
msgid ""
|
1204 |
+
"All the modules on this page have been disabled. You can re-enable them "
|
1205 |
+
"using the <a href=\"%s\">Module Manager</a>."
|
1206 |
+
msgstr ""
|
1207 |
+
"Tutti i moduli di questa pagina sono stati disattivati. Puoi riattivarli "
|
1208 |
+
"usando il <a href=\"%s\">Module Manager</a>."
|
1209 |
|
1210 |
+
#: modules/class.su-module.php:976
|
1211 |
+
#, php-format
|
1212 |
+
msgid "%1$s | %2$s %3$s by %4$s"
|
1213 |
+
msgstr "%1$s | %2$s %3$s di %4$s"
|
1214 |
|
1215 |
+
#: modules/class.su-module.php:1055
|
1216 |
+
msgid "Your site currently doesn’t have any public items of this type."
|
1217 |
+
msgstr ""
|
1218 |
+
"Il tuo sito non ha pubblicato al momento nessun elemento di questo tipo."
|
1219 |
|
1220 |
+
#: modules/class.su-module.php:1142
|
1221 |
+
msgid "«"
|
1222 |
+
msgstr "«"
|
1223 |
|
1224 |
+
#: modules/class.su-module.php:1143
|
1225 |
+
msgid "»"
|
1226 |
+
msgstr "»"
|
1227 |
|
1228 |
+
#: modules/class.su-module.php:1150
|
1229 |
+
#, php-format
|
1230 |
+
msgid "Displaying %s–%s of %s"
|
1231 |
+
msgstr "In visione %s–%s di %s"
|
1232 |
|
1233 |
+
#: modules/class.su-module.php:1164
|
1234 |
+
msgid "ID"
|
1235 |
+
msgstr "ID"
|
1236 |
|
1237 |
+
#: modules/class.su-module.php:1210
|
1238 |
+
msgid "View"
|
1239 |
+
msgstr "Vedi"
|
1240 |
|
1241 |
+
#: modules/class.su-module.php:1212
|
1242 |
+
msgid "Edit"
|
1243 |
+
msgstr "Modifica"
|
1244 |
|
1245 |
+
#: modules/class.su-module.php:1382
|
1246 |
+
msgid "Settings updated."
|
1247 |
+
msgstr "Le impostazioni sono state aggiornate."
|
|
|
1248 |
|
1249 |
+
#: modules/class.su-module.php:1403
|
1250 |
+
msgid "Save Changes"
|
1251 |
+
msgstr "Salva le modifiche"
|
|
|
1252 |
|
1253 |
+
#: modules/class.su-module.php:1890
|
1254 |
+
msgid ""
|
1255 |
+
"Are you sure you want to replace the textbox contents with this default "
|
1256 |
+
"value?"
|
1257 |
+
msgstr ""
|
1258 |
+
"Sei certo di volere sostituire i contenuti nella casella di testo con questi "
|
1259 |
+
"valori predefiniti?"
|
1260 |
|
1261 |
+
#: modules/class.su-module.php:1919 modules/settings/settings-data.php:23
|
1262 |
+
msgid "Reset"
|
1263 |
+
msgstr "Ripristina"
|
1264 |
|
1265 |
+
#: modules/class.su-module.php:2668 modules/class.su-module.php:2680
|
1266 |
+
#, fuzzy, php-format
|
1267 |
+
msgid "A Deleted %s"
|
1268 |
+
msgstr "I file sono stati cancellati."
|
1269 |
|
1270 |
+
#: modules/class.su-module.php:2670
|
1271 |
+
#, fuzzy
|
1272 |
+
msgid "A Deleted Post"
|
1273 |
+
msgstr "Le impostazioni sono state cancellate."
|
1274 |
|
1275 |
+
#: modules/class.su-module.php:2685
|
1276 |
+
#, fuzzy
|
1277 |
+
msgid "A Deleted Term"
|
1278 |
+
msgstr "I file sono stati cancellati."
|
1279 |
|
1280 |
+
#: modules/class.su-module.php:2691 modules/meta/meta-descriptions.php:31
|
1281 |
+
#: modules/meta/meta-keywords.php:40 modules/opengraph/opengraph.php:380
|
1282 |
+
#: plugin/class.seo-ultimate.php:1856
|
1283 |
+
msgid "Blog Homepage"
|
1284 |
+
msgstr "Homepage blog"
|
1285 |
|
1286 |
+
#: modules/class.su-module.php:2696 plugin/class.seo-ultimate.php:1932
|
1287 |
+
msgid "Author"
|
1288 |
+
msgstr "Autore"
|
1289 |
|
1290 |
+
#: modules/class.su-module.php:2698
|
1291 |
+
#, fuzzy
|
1292 |
+
msgid "A Deleted User"
|
1293 |
+
msgstr "Le impostazioni sono state cancellate."
|
1294 |
|
1295 |
+
#: modules/class.su-module.php:2713 plugin/class.seo-ultimate.php:1962
|
1296 |
+
#, fuzzy
|
1297 |
+
msgid "Link Mask"
|
1298 |
+
msgstr "Maschere link:"
|
1299 |
|
1300 |
+
#: modules/class.su-module.php:2715
|
1301 |
+
#, fuzzy
|
1302 |
+
msgid "Link Mask (Disabled)"
|
1303 |
+
msgstr "Maschere link:"
|
1304 |
|
1305 |
+
#: modules/class.su-module.php:2720
|
1306 |
+
#, fuzzy
|
1307 |
+
msgid "A Deleted Link Mask"
|
1308 |
+
msgstr "Le impostazioni sono state cancellate."
|
1309 |
|
1310 |
+
#: modules/class.su-module.php:2750
|
1311 |
+
#, fuzzy
|
1312 |
+
msgid "Type a URL or start typing the name of an item on your site"
|
1313 |
+
msgstr ""
|
1314 |
+
"Inserisci un URL o digita il nome dell'elemento al quale desideri puntare il "
|
1315 |
+
"link"
|
1316 |
|
1317 |
+
#: modules/class.su-module.php:2763
|
1318 |
+
#, fuzzy
|
1319 |
+
msgid "Remove this location from this textbox"
|
1320 |
+
msgstr "Rimuovi dal registro questo URL"
|
1321 |
|
1322 |
+
#: modules/class.su-module.php:2763
|
1323 |
+
msgid "X"
|
1324 |
+
msgstr "X"
|
1325 |
|
1326 |
+
#: modules/class.su-module.php:2872
|
1327 |
+
#, php-format
|
1328 |
+
msgid "<strong>RSS Error</strong>: %s"
|
1329 |
+
msgstr ""
|
1330 |
|
1331 |
+
#: modules/class.su-module.php:2888
|
1332 |
+
msgid ""
|
1333 |
+
"An error has occurred, which probably means the feed is down. Try again "
|
1334 |
+
"later."
|
1335 |
+
msgstr ""
|
1336 |
|
1337 |
+
#: modules/files/files.php:14 modules/files/files.php:15
|
1338 |
+
msgid "File Editor"
|
1339 |
+
msgstr "File Editor"
|
1340 |
|
1341 |
+
#: modules/files/files.php:59
|
1342 |
+
msgid ""
|
1343 |
+
"A .htaccess file exists, but it’s not writable. You can edit it here "
|
1344 |
+
"once the file permissions are corrected."
|
1345 |
+
msgstr ""
|
1346 |
+
"Sebbene esista un file .htaccess, esso non è scrivibile. Potrai modificarlo "
|
1347 |
+
"qui una volta che avrai corretto i permessi."
|
1348 |
|
1349 |
+
#: modules/files/files.php:65
|
1350 |
+
msgid ""
|
1351 |
+
"WordPress won’t be able to display your robots.txt file because the "
|
1352 |
+
"default <a href=\"options-permalink.php\" target=\"_blank\">permalink "
|
1353 |
+
"structure</a> is in use."
|
1354 |
+
msgstr ""
|
1355 |
+
"WordPress non è in grado di poterti mostrare il file robots.txt a causa "
|
1356 |
+
"della <a href=\"options-permalink.php\" target=\"_blank\">struttura dei "
|
1357 |
+
"permalink</a> che stai utilizzando."
|
1358 |
|
1359 |
+
#: modules/files/files.php:72
|
1360 |
+
#, php-format
|
1361 |
+
msgid "robots.txt [<a href=\"%s\" target=\"_blank\">Open</a>]"
|
1362 |
+
msgstr "robots.txt [<a href=\"%s\" target=\"_blank\">Apri</a>]"
|
1363 |
|
1364 |
+
#: modules/files/files.php:76
|
1365 |
+
msgid "Enable this custom robots.txt file and disable the default file"
|
1366 |
+
msgstr ""
|
1367 |
+
"Attiva questo file robots.txt personalizzato e disattiva il file predefinito"
|
1368 |
|
1369 |
+
#: modules/files/files.php:77
|
1370 |
+
msgid "Let other plugins add rules to my custom robots.txt file"
|
1371 |
+
msgstr ""
|
1372 |
+
"Permetti agli altri plugin di potere aggiungere delle regole al mio file "
|
1373 |
+
"robots.txt personalizzato"
|
1374 |
|
1375 |
+
#: modules/files/files.php:78
|
1376 |
+
msgid "robots.txt Settings"
|
1377 |
+
msgstr "Impostazioni robots.txt"
|
1378 |
|
1379 |
+
#: modules/files/files.php:81
|
1380 |
+
msgid ""
|
1381 |
+
"Please realize that incorrectly editing your robots.txt file could block "
|
1382 |
+
"search engines from your site."
|
1383 |
+
msgstr ""
|
1384 |
+
"Sappi che una modifica errata del tuo file robots.txt potrebbe impedire ai "
|
1385 |
+
"motori di ricerca l'accesso al tuo sito."
|
1386 |
|
1387 |
+
#: modules/files/files.php:85
|
1388 |
+
msgid ".htaccess"
|
1389 |
+
msgstr ".htaccess"
|
1390 |
|
1391 |
+
#: modules/files/files.php:88
|
1392 |
+
msgid ""
|
1393 |
+
"Also, incorrectly editing your .htaccess file could disable your entire "
|
1394 |
+
"website. Edit with caution!"
|
1395 |
+
msgstr ""
|
1396 |
+
"Inoltre, il modificare incautamente il file .htaccess potrebbe disattivare "
|
1397 |
+
"completamente il tuo sito. Muoviti con attenzione!"
|
1398 |
|
1399 |
+
#: modules/files/files.php:148
|
1400 |
+
#, fuzzy, php-format
|
1401 |
+
msgid ""
|
1402 |
+
"Please note that the “discourage search engines” setting "
|
1403 |
+
"won’t have any effect on your robots.txt file, since you’re "
|
1404 |
+
"using <a href=\"%s\">a custom one</a>."
|
1405 |
+
msgstr ""
|
1406 |
+
"Ti ricordo che le tue impostazioni privacy non avranno alcun effetto sul tuo "
|
1407 |
+
"file robots.txt sin quando ne utilizzerai uno <a href=\"%s\">personalizzato</"
|
1408 |
+
"a>."
|
1409 |
|
1410 |
+
#: modules/files/files.php:159
|
1411 |
+
msgid ""
|
1412 |
+
"\n"
|
1413 |
+
"<ul>\n"
|
1414 |
+
"\t<li><strong>What it does:</strong> The File Editor module lets you edit "
|
1415 |
+
"two important SEO-related files: robots.txt and .htaccess.</li>\n"
|
1416 |
+
"\t<li><strong>Why it helps:</strong> You can use the <a href='http://www."
|
1417 |
+
"robotstxt.org/robotstxt.html' target='_blank'>robots.txt file</a> to give "
|
1418 |
+
"instructions to search engine spiders. You can use the <a href='http://httpd."
|
1419 |
+
"apache.org/docs/2.2/howto/htaccess.html' target='_blank'>.htaccess file</a> "
|
1420 |
+
"to implement advanced SEO strategies (URL rewriting, regex redirects, etc.). "
|
1421 |
+
"SEO Ultimate makes editing these files easier than ever.</li>\n"
|
1422 |
+
"\t<li><strong>How to use it:</strong> Edit the files as desired, then click "
|
1423 |
+
"Save Changes. If you create a custom robots.txt file, be sure to enable it "
|
1424 |
+
"with the checkbox.</li>\n"
|
1425 |
+
"</ul>\n"
|
1426 |
+
msgstr ""
|
1427 |
|
1428 |
+
#: modules/files/files.php:170
|
1429 |
+
msgid ""
|
1430 |
+
"\n"
|
1431 |
+
"<ul>\n"
|
1432 |
+
"\t<li><strong>Will my robots.txt edits remain if I disable the File Editor?</"
|
1433 |
+
"strong><br />No. On a WordPress blog, the robots.txt file is dynamically "
|
1434 |
+
"generated just like your posts and Pages. If you disable the File Editor "
|
1435 |
+
"module or the entire SEO Ultimate plugin, the File Editor won’t be "
|
1436 |
+
"able to insert your custom code into the robots.txt file anymore.</li>\n"
|
1437 |
+
"\t<li><strong>Will my .htaccess edits remain if I disable the File Editor?</"
|
1438 |
+
"strong><br />Yes. The .htaccess file is static. Your edits will remain even "
|
1439 |
+
"if you disable SEO Ultimate or its File Editor module.</li>\n"
|
1440 |
+
"</ul>\n"
|
1441 |
+
msgstr ""
|
1442 |
|
1443 |
+
#: modules/files/files.php:180
|
1444 |
+
msgid ""
|
1445 |
+
"\n"
|
1446 |
+
"<ul>\n"
|
1447 |
+
"\t<li><strong>Why do I get a “500 Server Error” after using the "
|
1448 |
+
"File Editor?</strong><br />You may have inserted code into your .htaccess "
|
1449 |
+
"file that your web server can't understand. As the File Editor warns, "
|
1450 |
+
"incorrectly editing your .htaccess file can disable your entire website in "
|
1451 |
+
"this way. To restore your site, you'll need to use an FTP client (or your "
|
1452 |
+
"web host's File Manager) to edit or rename your .htaccess file. If you need "
|
1453 |
+
"help, please contact your web host.</li>\n"
|
1454 |
+
"\t<li><strong>Where did my .htaccess edits go?</strong><br />The .htaccess "
|
1455 |
+
"file is static, so SEO Ultimate doesn't have total control over it. It’"
|
1456 |
+
"s possible that WordPress, another plugin, or other software may overwrite "
|
1457 |
+
"your .htaccess file. If you have a backup of your blog’s files, you "
|
1458 |
+
"can try recovering your edits from there.</li>\n"
|
1459 |
+
"</ul>\n"
|
1460 |
+
msgstr ""
|
1461 |
|
1462 |
#: modules/import-aiosp/import-aiosp.php:12
|
1463 |
msgid "Import from All in One SEO Pack"
|
1480 |
msgstr "Importa dati articolo (tag titoli custom e tag meta)."
|
1481 |
|
1482 |
#: modules/import-aiosp/import-aiosp.php:21
|
1483 |
+
msgid ""
|
1484 |
+
"Here you can move post fields from the All in One SEO Pack (AIOSP) plugin to "
|
1485 |
+
"SEO Ultimate. AIOSP’s data remains in your WordPress database after "
|
1486 |
+
"AIOSP is deactivated or even uninstalled. This means that as long as AIOSP "
|
1487 |
+
"was active on this blog sometime in the past, AIOSP does <em>not</em> need "
|
1488 |
+
"to be currently installed or activated for the import to take place."
|
1489 |
+
msgstr ""
|
1490 |
+
"Qui potrai spostare i campi articolo dal plugin All in One SEO Pack (AIOSP) "
|
1491 |
+
"a SEO Ultimate. I dati di AIOSP rimarranno nel tuo database di WordPress "
|
1492 |
+
"anche dopo la disattivazione/disinstallazione di AIOSP. Questo significa che "
|
1493 |
+
"sebbene AIOSP sia stato attivo su questo sito in un periodo passsato, oggi "
|
1494 |
+
"AIOSP <em>non</em> necessita di essere installato o disattivato affinché "
|
1495 |
+
"l'importazione possa avvenire con successo."
|
1496 |
|
1497 |
#: modules/import-aiosp/import-aiosp.php:23
|
1498 |
+
msgid ""
|
1499 |
+
"The import tool can only move over data from AIOSP version 1.6 or above. If "
|
1500 |
+
"you use an older version of AIOSP, you should update to the latest version "
|
1501 |
+
"first and run AIOSP’s upgrade process."
|
1502 |
+
msgstr ""
|
1503 |
+
"Lo strumento di importazione potra trasferire i dati da una versione AIOSP "
|
1504 |
+
"1.6 o superiore. Qualora utilizzassi una differenre versione di AIOSP, come "
|
1505 |
+
"prima cosa dovrai aggiornare AIOSP alla sua ultima versione quindi, avviare "
|
1506 |
+
"il processo di aggiornamento del plugin."
|
1507 |
|
1508 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:27
|
1509 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:28
|
1510 |
+
msgid "Link Mask Generator"
|
1511 |
+
msgstr "Generatore maschera link"
|
1512 |
|
1513 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:35
|
1514 |
+
#, php-format
|
1515 |
+
msgid ""
|
1516 |
+
"Link Mask Generator won’t work with default or “pathinfo” "
|
1517 |
+
"permalinks. Please change your <a href=\"%s\">permalink structure</a> to "
|
1518 |
+
"enable this module’s functionality."
|
1519 |
+
msgstr ""
|
1520 |
|
1521 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:42
|
1522 |
+
msgid "Aliases"
|
1523 |
+
msgstr ""
|
|
|
|
|
1524 |
|
1525 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:87
|
1526 |
+
#, fuzzy
|
1527 |
+
msgid "Edit Existing Aliases"
|
1528 |
+
msgstr "Modifica link esistenti"
|
1529 |
|
1530 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:91
|
1531 |
+
#, fuzzy
|
1532 |
+
msgid "Add a New Alias"
|
1533 |
+
msgstr "Aggiungi un nuovo link"
|
1534 |
|
1535 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:99
|
1536 |
+
msgid "Actual URL"
|
1537 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1538 |
|
1539 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:100
|
1540 |
+
#, fuzzy
|
1541 |
+
msgid "Alias URL"
|
1542 |
+
msgstr "Maschera URL"
|
1543 |
|
1544 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:101
|
1545 |
+
#, fuzzy
|
1546 |
+
msgid "Only on This Post… <em>(optional)</em>"
|
1547 |
+
msgstr "Title: <em>(facoltativo)</em>"
|
1548 |
|
1549 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:126
|
1550 |
+
msgid "Test"
|
1551 |
+
msgstr ""
|
1552 |
|
1553 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:153
|
1554 |
+
msgid "Alias Directory"
|
1555 |
+
msgstr "Cartella alias"
|
1556 |
|
1557 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:155
|
1558 |
+
#, fuzzy
|
1559 |
+
msgid "Nofollow masked links"
|
1560 |
+
msgstr "Link Nofollow (aliased)"
|
1561 |
|
1562 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:155
|
1563 |
+
msgid "Link Attributes"
|
1564 |
+
msgstr "Attributi link"
|
1565 |
|
1566 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:178
|
1567 |
+
msgid "Link Masks:"
|
1568 |
+
msgstr "Maschere link:"
|
1569 |
|
1570 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:181
|
1571 |
+
msgid "URL"
|
1572 |
+
msgstr "URL"
|
1573 |
|
1574 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:181
|
1575 |
+
msgid "Mask URL"
|
1576 |
+
msgstr "Maschera URL"
|
1577 |
|
1578 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:219
|
1579 |
+
msgid ""
|
1580 |
+
"You can stop search engines from following a link by typing in a mask for "
|
1581 |
+
"its URL."
|
1582 |
+
msgstr ""
|
1583 |
+
"Puoi fermare i motori di ricerca dal seguire un link inserendolo in una "
|
1584 |
+
"maschera per il suo URL."
|
1585 |
|
1586 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:306
|
1587 |
+
#, fuzzy
|
1588 |
+
msgid "Added by SEO Ultimate's Link Mask Generator module"
|
1589 |
+
msgstr "Aggiunto via modulo Link Alias Generator (LAG)"
|
1590 |
|
1591 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:317
|
1592 |
+
#, fuzzy
|
1593 |
+
msgid "End Link Mask Generator output"
|
1594 |
+
msgstr "Generatore maschera link"
|
1595 |
|
1596 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:327
|
1597 |
+
msgid ""
|
1598 |
+
"\n"
|
1599 |
+
"<ul>\n"
|
1600 |
+
"\t<li><strong>What it does:</strong> Link Mask Generator lets you replace "
|
1601 |
+
"ugly affiliate links with clean-looking link aliases that redirect to the "
|
1602 |
+
"real URLs. Link Mask Generator will scan your posts for the links to the "
|
1603 |
+
"actual URLs and replace them with links to the alias URLs. When a visitor "
|
1604 |
+
"clicks on the link to the alias URL, Link Mask Generator will redirect the "
|
1605 |
+
"visitor to the actual URL.</li>\n"
|
1606 |
+
"\t<li><strong>Why it helps:</strong> This type of functionality is a staple "
|
1607 |
+
"in an affiliate marketer’s toolkit. Link Mask Generator helps you by "
|
1608 |
+
"doing it in an SEO-friendly way: by funneling your affiliate links through a "
|
1609 |
+
"directory (e.g. <code>/go/</code>) which is blocked with <code>robots.txt</"
|
1610 |
+
"code> rules, effectively sealing off link juice flow to your affiliate links."
|
1611 |
+
"</li>\n"
|
1612 |
+
"\t<li><strong>How to use it:</strong> Type in the real URL, type in an alias "
|
1613 |
+
"URL, and click “Save Changes” — that’s it!</li>\n"
|
1614 |
+
"</ul>\n"
|
1615 |
+
msgstr ""
|
1616 |
|
1617 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:337
|
1618 |
+
msgid "Aliases Tab"
|
1619 |
+
msgstr ""
|
1620 |
|
1621 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:338
|
1622 |
+
msgid ""
|
1623 |
+
"\n"
|
1624 |
+
"<p>To add a link alias, fill in the fields and then click “Save "
|
1625 |
+
"Changes.” Once you do so, you can edit your newly masked link or add "
|
1626 |
+
"another one.</p>\n"
|
1627 |
+
"\n"
|
1628 |
+
"<ul>\n"
|
1629 |
+
"\t<li><strong>Actual URL</strong> — This box is where you put your "
|
1630 |
+
"affiliate URL (or other URL that you want to mask).</li>\n"
|
1631 |
+
"\t<li><strong>Alias URL</strong> — This box is where you specify the "
|
1632 |
+
"new URL that will replace the actual one.</li>\n"
|
1633 |
+
"\t<li><strong>Only on This Post</strong> — If you want to mask the "
|
1634 |
+
"actual URL across your entire site, leave this box blank. If you only want "
|
1635 |
+
"to mask the actual URL within an individual post, then type its name into "
|
1636 |
+
"this box and select it from the dropdown.</li>\n"
|
1637 |
+
"\t<li><strong>Delete</strong> — To delete a link mask, tick its “"
|
1638 |
+
"Delete” checkbox and then click “Save Changes.”</li>\n"
|
1639 |
+
"</ul>\n"
|
1640 |
+
msgstr ""
|
1641 |
|
1642 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:351
|
1643 |
+
#: modules/titles/titles.php:430
|
1644 |
+
#, fuzzy
|
1645 |
+
msgid "Settings Tab"
|
1646 |
+
msgstr "Impostazioni"
|
1647 |
|
1648 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:352
|
1649 |
+
msgid ""
|
1650 |
+
"\n"
|
1651 |
+
"<p>The following options are available on the Settings tab:</p>\n"
|
1652 |
+
"\n"
|
1653 |
+
"<ul>\n"
|
1654 |
+
"\t<li><strong>Alias Directory</strong> — If you’d like, you can "
|
1655 |
+
"change the name of the directory that contains all your alias URLs. "
|
1656 |
+
"(Don’t worry, you won’t break any links by changing this.)</li>\n"
|
1657 |
+
"\t<li><strong>Nofollow masked links</strong> — Checking this will add "
|
1658 |
+
"the <code>rel="nofollow"</code> attribute to any masked links on "
|
1659 |
+
"your site. This makes it super-easy to nofollow all your affiliate links "
|
1660 |
+
"automatically.</li>\n"
|
1661 |
+
"</ul>\n"
|
1662 |
+
msgstr ""
|
1663 |
|
1664 |
+
#: modules/internal-link-aliases/internal-link-aliases.php:364
|
1665 |
+
msgid ""
|
1666 |
+
"\n"
|
1667 |
+
"<ul>\n"
|
1668 |
+
"\t<li><strong>Can I automatically link a phrase on my site to one of my "
|
1669 |
+
"alias URLs?</strong><br />Yes. Once you’ve created your link mask, go "
|
1670 |
+
"to Deeplink Juggernaut’s “Content Links” section, type the "
|
1671 |
+
"contents of your link mask’s “Alias URL” field into "
|
1672 |
+
"Deeplink Juggernaut’s “Destination” field, and select your "
|
1673 |
+
"link mask from the dropdown that appears.</li>\n"
|
1674 |
+
"\t<li><strong>Will Link Mask Generator still add the <code>robots.txt</code> "
|
1675 |
+
"rules if I’m using the File Editor module to create a custom "
|
1676 |
+
"<code>robots.txt</code>?</strong><br />Yes.</li>\n"
|
1677 |
+
"</ul>\n"
|
1678 |
+
msgstr ""
|
1679 |
|
1680 |
+
#: modules/link-nofollow/link-nofollow.php:12
|
1681 |
+
#: modules/link-nofollow/link-nofollow.php:132
|
1682 |
+
msgid "Nofollow Manager"
|
1683 |
+
msgstr "Nofollow Manager"
|
1684 |
|
1685 |
+
#: modules/link-nofollow/link-nofollow.php:57
|
1686 |
+
msgid "Adjacent post links (next post / previous post)"
|
1687 |
+
msgstr ""
|
1688 |
|
1689 |
+
#: modules/link-nofollow/link-nofollow.php:58
|
1690 |
+
msgid "Category links (after posts)"
|
1691 |
+
msgstr "Link categoria (dopo articoli)"
|
|
|
1692 |
|
1693 |
+
#: modules/link-nofollow/link-nofollow.php:59
|
1694 |
+
msgid "Category links (in lists)"
|
1695 |
+
msgstr "Link categoria (in elenco)"
|
1696 |
|
1697 |
+
#: modules/link-nofollow/link-nofollow.php:60
|
1698 |
+
msgid "Comment anchor links"
|
1699 |
+
msgstr "Ancora commento link"
|
1700 |
|
1701 |
+
#: modules/link-nofollow/link-nofollow.php:61
|
1702 |
+
msgid "Comment feed links"
|
1703 |
+
msgstr "Link feed commenti"
|
1704 |
|
1705 |
+
#: modules/link-nofollow/link-nofollow.php:62
|
1706 |
+
msgid "Date-based archive links"
|
1707 |
+
msgstr "Link archivio base-data"
|
1708 |
|
1709 |
+
#: modules/link-nofollow/link-nofollow.php:63
|
1710 |
+
msgid "Pagination navigation links (all)"
|
1711 |
+
msgstr "Link navigazione pagine (tutti)"
|
1712 |
|
1713 |
+
#: modules/link-nofollow/link-nofollow.php:64
|
1714 |
+
msgid "Pagination navigation links (on blog home only)"
|
1715 |
+
msgstr "Link navigazione pagine (solo nella home del blog)"
|
1716 |
|
1717 |
+
#: modules/link-nofollow/link-nofollow.php:65
|
1718 |
+
msgid "“Read more” links"
|
1719 |
+
msgstr "Link “Read more”"
|
1720 |
|
1721 |
+
#: modules/link-nofollow/link-nofollow.php:66
|
1722 |
+
msgid "Registration link"
|
1723 |
+
msgstr "Link registrazione"
|
1724 |
|
1725 |
+
#: modules/link-nofollow/link-nofollow.php:67
|
1726 |
+
msgid "Login link"
|
1727 |
+
msgstr "Link login"
|
1728 |
|
1729 |
+
#: modules/link-nofollow/link-nofollow.php:68
|
1730 |
+
msgid "Tag links (after posts)"
|
1731 |
+
msgstr "Link tag (dopo articoli)"
|
1732 |
|
1733 |
+
#: modules/link-nofollow/link-nofollow.php:69
|
1734 |
+
msgid "Tag links (in lists and clouds)"
|
1735 |
+
msgstr "Link tag (in elenco e cloud)"
|
1736 |
|
1737 |
+
#: modules/link-nofollow/link-nofollow.php:70
|
1738 |
+
msgid "Add the nofollow attribute to..."
|
1739 |
+
msgstr "Aggiungi attributo nofollow a..."
|
1740 |
|
1741 |
+
#: modules/link-nofollow/link-nofollow.php:78
|
1742 |
+
msgid "When displaying page lists, nofollow links to this page"
|
1743 |
+
msgstr ""
|
1744 |
+
"Durante la visualizzazione dell'elenco pagine applicare nofollow all'elenco "
|
1745 |
+
"di questa pagina"
|
1746 |
|
1747 |
+
#: modules/link-nofollow/link-nofollow.php:78
|
1748 |
+
msgid "Nofollow:"
|
1749 |
+
msgstr "Nofollow:"
|
1750 |
|
1751 |
+
#: modules/link-nofollow/link-nofollow.php:133
|
1752 |
+
msgid ""
|
1753 |
+
"\n"
|
1754 |
+
"<p>Nofollow Manager adds the <code>rel="nofollow"</code> attribute "
|
1755 |
+
"to types of links that you specify. The <code>rel="nofollow"</"
|
1756 |
+
"code> attribute prevents a link from passing PageRank.</p>\n"
|
1757 |
+
"<p>If you’re migrating to SEO Ultimate from another plugin, Nofollow "
|
1758 |
+
"Manager can help you maintain your existing settings (as part of an “"
|
1759 |
+
"if it ain’t broke don’t fix it” strategy). In other cases, "
|
1760 |
+
"however, we recommend not using the Nofollow Manager because in 2008 Google "
|
1761 |
+
"disabled the ability to use the <code>rel="nofollow"</code> "
|
1762 |
+
"attribute for PageRank sculpting.</p>\n"
|
1763 |
+
msgstr ""
|
1764 |
|
1765 |
+
#: modules/linkbox/linkbox.php:12 modules/linkbox/linkbox.php:126
|
1766 |
msgid "Linkbox Inserter"
|
1767 |
msgstr "Linkbox Inserter"
|
1768 |
|
1769 |
+
#: modules/linkbox/linkbox.php:21
|
1770 |
msgid "Link to this post!"
|
1771 |
msgstr "Link a questo articolo!"
|
1772 |
|
1773 |
+
#: modules/linkbox/linkbox.php:48
|
1774 |
msgid "At the end of posts"
|
1775 |
msgstr "Al fondo degli articoli"
|
1776 |
|
1777 |
+
#: modules/linkbox/linkbox.php:49
|
1778 |
msgid "At the end of pages"
|
1779 |
msgstr "Al fondo delle pagine"
|
1780 |
|
1781 |
+
#: modules/linkbox/linkbox.php:50
|
1782 |
msgid "When called by the su_linkbox hook"
|
1783 |
msgstr "Quando richiesto da hook su_linkbox"
|
1784 |
|
1785 |
+
#: modules/linkbox/linkbox.php:51
|
1786 |
msgid "Display linkboxes..."
|
1787 |
msgstr "Mostra linkboxe..."
|
1788 |
|
1789 |
+
#: modules/linkbox/linkbox.php:52
|
1790 |
msgid "Linkbox HTML"
|
1791 |
msgstr "HTML linkbox"
|
1792 |
|
1793 |
+
#: modules/linkbox/linkbox.php:92
|
1794 |
+
msgid ""
|
1795 |
+
"\n"
|
1796 |
+
"<ul>\n"
|
1797 |
+
"\t<li><strong>What it does:</strong> Linkbox Inserter can add linkboxes to "
|
1798 |
+
"your posts/pages.</li>\n"
|
1799 |
+
"\t<li><strong>Why it helps:</strong> Linkboxes contain HTML code that "
|
1800 |
+
"visitors can use to link to your site. This is a great way to encourage SEO-"
|
1801 |
+
"beneficial linking activity.</li>\n"
|
1802 |
+
"\t<li><strong>How to use it:</strong> Use the checkboxes to enable the "
|
1803 |
+
"Linkbox Inserter in various areas of your site. Customize the HTML if "
|
1804 |
+
"desired. Click “Save Changes” when finished.</li>\n"
|
1805 |
+
"</ul>\n"
|
1806 |
+
msgstr ""
|
1807 |
|
1808 |
+
#: modules/linkbox/linkbox.php:100
|
1809 |
+
msgid ""
|
1810 |
+
"\n"
|
1811 |
+
"<p>Here’s information on the various settings:</p>\n"
|
1812 |
+
"\n"
|
1813 |
+
"<ul>\n"
|
1814 |
+
"\t<li>\n"
|
1815 |
+
"\t\t<strong>Display linkboxes...</strong>\n"
|
1816 |
+
"\t\t<ul>\n"
|
1817 |
+
"\t\t\t<li><strong>At the end of posts</strong> — Adds the linkbox HTML "
|
1818 |
+
"to the end of all posts (whether they're displayed on the blog homepage, in "
|
1819 |
+
"archives, or by themselves).</li>\n"
|
1820 |
+
"\t\t\t<li><strong>At the end of pages</strong> — Adds the linkbox HTML "
|
1821 |
+
"to the end of all Pages.</li>\n"
|
1822 |
+
"\t\t\t<li><strong>When called by the su_linkbox hook</strong> — For "
|
1823 |
+
"more fine-tuned control over where linkboxes appear, enable this option and "
|
1824 |
+
"add <code><?php do_action('su_linkbox'); ?></code> to your theme. You "
|
1825 |
+
"can also add an ID parameter to display the linkbox of a particular post/"
|
1826 |
+
"page; for example: <code><?php do_action('su_linkbox', 123); ?></code>."
|
1827 |
+
"</li>\n"
|
1828 |
+
"\t\t</ul>\n"
|
1829 |
+
"\t</li>\n"
|
1830 |
+
"\t<li>\n"
|
1831 |
+
"\t\t<strong>HTML</strong> — The HTML that will be outputted to display "
|
1832 |
+
"the linkboxes. The HTML field supports these variables:\n"
|
1833 |
+
"\t\t<ul>\n"
|
1834 |
+
"\t\t\t<li>{id} — The ID of the current post/page, or the ID passed to "
|
1835 |
+
"the action hook call.</li>\n"
|
1836 |
+
"\t\t\t<li>{url} — The permalink URL of the post/page.</li>\n"
|
1837 |
+
"\t\t\t<li>{title} — The title of the post/page.</li>\n"
|
1838 |
+
"\t\t</ul>\n"
|
1839 |
+
"\t</li>\n"
|
1840 |
+
"</ul>\n"
|
1841 |
+
msgstr ""
|
1842 |
|
1843 |
+
#: modules/meta/meta-descriptions.php:18
|
1844 |
+
msgid "Meta Description Editor"
|
1845 |
+
msgstr "Meta Description Editor"
|
1846 |
|
1847 |
+
#: modules/meta/meta-descriptions.php:19
|
1848 |
+
msgid "Meta Descriptions"
|
1849 |
+
msgstr "Meta Descriptions"
|
1850 |
|
1851 |
+
#: modules/meta/meta-descriptions.php:30 modules/titles/titles.php:40
|
1852 |
+
msgid "Default Formats"
|
1853 |
+
msgstr "Formati predefiniti"
|
1854 |
|
1855 |
+
#: modules/meta/meta-descriptions.php:37
|
1856 |
+
msgid "Meta Description"
|
1857 |
+
msgstr "Descrizione meta"
|
1858 |
|
1859 |
+
#: modules/meta/meta-descriptions.php:56
|
1860 |
+
msgid "Post Description Format"
|
1861 |
+
msgstr "Formato descrizione articolo"
|
1862 |
|
1863 |
+
#: modules/meta/meta-descriptions.php:57
|
1864 |
+
#, fuzzy
|
1865 |
+
msgid "Page Description Format"
|
1866 |
+
msgstr "Formato descrizione tag articolo"
|
1867 |
|
1868 |
+
#: modules/meta/meta-descriptions.php:58
|
1869 |
+
msgid "Category Description Format"
|
1870 |
+
msgstr "Formato descrizione categoria"
|
1871 |
|
1872 |
+
#: modules/meta/meta-descriptions.php:59
|
1873 |
+
msgid "Post Tag Description Format"
|
1874 |
+
msgstr "Formato descrizione tag articolo"
|
1875 |
|
1876 |
+
#: modules/meta/meta-descriptions.php:60
|
1877 |
+
#, fuzzy
|
1878 |
+
msgid "Pagination Description Format"
|
1879 |
+
msgstr "Formato descrizione articolo"
|
1880 |
|
1881 |
+
#: modules/meta/meta-descriptions.php:68
|
1882 |
+
msgid "Blog Homepage Meta Description"
|
1883 |
+
msgstr "Descrizione meta homepage del blog"
|
1884 |
|
1885 |
+
#: modules/meta/meta-descriptions.php:70
|
1886 |
+
msgid "Use this blog’s tagline as the default homepage description."
|
1887 |
+
msgstr "Usa questo motto come descrizione predefinita della homepage."
|
1888 |
|
1889 |
+
#: modules/meta/meta-descriptions.php:71
|
1890 |
+
msgid "Default Value"
|
1891 |
+
msgstr "Valore predefinito"
|
1892 |
|
1893 |
+
#: modules/meta/meta-descriptions.php:174
|
1894 |
+
msgid "Meta Description:"
|
1895 |
+
msgstr "Descrizione meta:"
|
1896 |
|
1897 |
+
#: modules/meta/meta-descriptions.php:177
|
1898 |
+
#, php-format
|
1899 |
+
msgid "You’ve entered %s characters. Most search engines use up to 140."
|
1900 |
+
msgstr ""
|
1901 |
+
"Tu hai inserito %s caratteri. La maggior parte dei motori di ricerca arriva "
|
1902 |
+
"sino a 140."
|
1903 |
|
1904 |
+
#: modules/meta/meta-descriptions.php:184
|
1905 |
+
#, fuzzy
|
1906 |
+
msgid ""
|
1907 |
+
"<strong>Meta Description</strong> — The value of the meta description "
|
1908 |
+
"tag. The description will often appear underneath the title in search engine "
|
1909 |
+
"results. Writing an accurate, attention-grabbing description for every post "
|
1910 |
+
"is important to ensuring a good search results clickthrough rate."
|
1911 |
+
msgstr ""
|
1912 |
+
"<strong>Descrizione</strong> — Il valore del tag descrizione meta. La "
|
1913 |
+
"descrizione potrà spesso apparire al di sotto del titolo nei risultati dei "
|
1914 |
+
"motori di ricerca. Lo scrivere per ogni articolo una descrizione accurata ed "
|
1915 |
+
"accattivante sarà particolormente importante per assicurarsi un buon tasso "
|
1916 |
+
"di click dai risultati della ricerca."
|
1917 |
|
1918 |
+
#: modules/meta/meta-descriptions.php:193
|
1919 |
+
msgid ""
|
1920 |
+
"\n"
|
1921 |
+
"<ul>\n"
|
1922 |
+
"\t<li><strong>What it does:</strong> Meta Descriptions Editor lets you "
|
1923 |
+
"customize the text that you want to appear under your webpages’ titles "
|
1924 |
+
"in search results.</li>\n"
|
1925 |
+
"\t<li><strong>Why it helps:</strong> Getting ranked isn’t enough; once "
|
1926 |
+
"you're ranked, you need visitors to click on your site in the results. "
|
1927 |
+
"That’s where meta descriptions can help. When you provide text that "
|
1928 |
+
"makes searchers want to visit your site, you can increase your SERP "
|
1929 |
+
"clickthrough rate and thus increase search traffic.</li>\n"
|
1930 |
+
"\t<li><strong>How to use it:</strong> Enter meta descriptions for your "
|
1931 |
+
"homepage, posts, pages, etc. as desired, and then click Save Changes. You "
|
1932 |
+
"can also customize the meta data of an individual post or page by using the "
|
1933 |
+
"textboxes that Meta Editor adds to the post/page editors.</li>\n"
|
1934 |
+
"</ul>\n"
|
1935 |
+
msgstr ""
|
1936 |
|
1937 |
+
#: modules/meta/meta-descriptions.php:203 modules/meta/meta-keywords.php:194
|
1938 |
+
#, fuzzy
|
1939 |
+
msgid "Blog Homepage Tab"
|
1940 |
+
msgstr "Homepage blog"
|
1941 |
|
1942 |
+
#: modules/meta/meta-descriptions.php:204
|
1943 |
+
msgid ""
|
1944 |
+
"\n"
|
1945 |
+
"<p>Here’s information on the various settings:</p>\n"
|
1946 |
+
"\n"
|
1947 |
+
"<ul>\n"
|
1948 |
+
"\t<li><strong>Blog Homepage Meta Description</strong> — When your blog "
|
1949 |
+
"homepage appears in search results, it’ll have a title and a "
|
1950 |
+
"description. When you type a description into this box, the Meta Editor will "
|
1951 |
+
"add code to your blog homepage (the <code><meta name=""
|
1952 |
+
"description" /></code> tag) that asks search engines to use what "
|
1953 |
+
"you’ve entered as the homepage’s search results description.</"
|
1954 |
+
"li>\n"
|
1955 |
+
"\t<li><strong>Use this blog’s tagline as the default homepage "
|
1956 |
+
"description.</strong> — If this box is checked and if the Blog "
|
1957 |
+
"Homepage Meta Description field is empty, Meta Editor will use your "
|
1958 |
+
"blog’s tagline as the meta description. You can edit the blog’s "
|
1959 |
+
"tagline under <a href='options-general.php'>Settings ⇒ General</a>.</"
|
1960 |
+
"li>\n"
|
1961 |
+
"</ul>\n"
|
1962 |
+
msgstr ""
|
1963 |
|
1964 |
+
#: modules/meta/meta-descriptions.php:216
|
1965 |
+
msgid ""
|
1966 |
+
"\n"
|
1967 |
+
"<ul>\n"
|
1968 |
+
"\t<li><strong>How do I edit the meta description of my homepage?</"
|
1969 |
+
"strong><br />If you have configured your <a href='options-reading."
|
1970 |
+
"php'>Settings ⇒ Reading</a> section to use a “front page” "
|
1971 |
+
"and/or a “posts page,” just edit those pages’s meta "
|
1972 |
+
"descriptions on the “Pages” tab. Otherwise, just use the Blog "
|
1973 |
+
"Homepage field.</li>\n"
|
1974 |
+
"</ul>\n"
|
1975 |
+
msgstr ""
|
1976 |
|
1977 |
+
#: modules/meta/meta-descriptions.php:225
|
1978 |
+
msgid ""
|
1979 |
+
"\n"
|
1980 |
+
"<ul>\n"
|
1981 |
+
"\t<li>\n"
|
1982 |
+
"\t\t<p><strong>What do I do if my site has multiple meta tags?</strong><br /"
|
1983 |
+
">First, try removing your theme’s built-in meta tags if it has them. "
|
1984 |
+
"Go to <a href='theme-editor.php' target='_blank'>Appearance ⇒ Editor</"
|
1985 |
+
"a> and edit <code>header.php</code>. Delete or comment-out any <code><"
|
1986 |
+
"meta></code> tags.</p>\n"
|
1987 |
+
"\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
|
1988 |
+
"generating meta tags.</p>\n"
|
1989 |
+
"\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
|
1990 |
+
"ultimate'>Settings ⇒ SEO Ultimate</a> and enable the “Identify "
|
1991 |
+
"the plugin’s HTML code insertions with HTML comment tags” "
|
1992 |
+
"option. This will mark SEO Ultimate’s meta tags with comments, "
|
1993 |
+
"allowing you to see which meta tags are generated by SEO Ultimate and which "
|
1994 |
+
"aren’t.</p>\n"
|
1995 |
+
"\t</li>\n"
|
1996 |
+
"</ul>\n"
|
1997 |
+
msgstr ""
|
1998 |
|
1999 |
+
#: modules/meta/meta-keywords.php:18
|
2000 |
+
msgid "Meta Keywords Editor"
|
2001 |
+
msgstr "Meta Keywords Editor"
|
2002 |
|
2003 |
+
#: modules/meta/meta-keywords.php:19 modules/meta/meta-keywords.php:46
|
2004 |
+
msgid "Meta Keywords"
|
2005 |
+
msgstr "Meta Keywords"
|
2006 |
|
2007 |
+
#: modules/meta/meta-keywords.php:38 modules/meta/meta-robots.php:22
|
2008 |
+
#: modules/opengraph/opengraph.php:377
|
2009 |
+
#, fuzzy
|
2010 |
+
msgid "Sitewide Values"
|
2011 |
+
msgstr "Sitewide Keywords"
|
2012 |
|
2013 |
+
#: modules/meta/meta-keywords.php:39 modules/noindex/noindex.php:50
|
2014 |
+
#: modules/opengraph/opengraph.php:378
|
2015 |
+
msgid "Default Values"
|
2016 |
+
msgstr "Valori predefiniti"
|
2017 |
|
2018 |
+
#: modules/meta/meta-keywords.php:53
|
2019 |
+
msgid "Sitewide Keywords"
|
2020 |
+
msgstr "Sitewide Keywords"
|
2021 |
|
2022 |
+
#: modules/meta/meta-keywords.php:53
|
2023 |
+
msgid "(Separate with commas)"
|
2024 |
+
msgstr "(separa con delle virgole)"
|
2025 |
|
2026 |
+
#: modules/meta/meta-keywords.php:68
|
2027 |
+
#, php-format
|
2028 |
+
msgid "The %d most commonly-used words"
|
2029 |
+
msgstr "Le %d parole più comunemente utilizzate"
|
2030 |
|
2031 |
+
#: modules/meta/meta-keywords.php:86
|
2032 |
+
msgid "Blog Homepage Meta Keywords"
|
2033 |
+
msgstr "Parole chiave meta homepage blog"
|
2034 |
|
2035 |
+
#: modules/meta/meta-keywords.php:170
|
2036 |
+
msgid "Meta Keywords:<br /><em>(separate with commas)</em>"
|
2037 |
+
msgstr "Parole chiave meta:<br /><em>(separa con delle virgole)</em>"
|
2038 |
|
2039 |
+
#: modules/meta/meta-keywords.php:179
|
2040 |
+
msgid ""
|
2041 |
+
"\n"
|
2042 |
+
"<p>Meta Keywords Editor lets you tell search engines what keywords are "
|
2043 |
+
"associated with the various pages on your site. Modern search engines "
|
2044 |
+
"don’t give meta keywords much weight, if any at all, but the option is "
|
2045 |
+
"there if you want to use it.</p>\n"
|
2046 |
+
msgstr ""
|
2047 |
|
2048 |
+
#: modules/meta/meta-keywords.php:185 modules/meta/meta-robots.php:63
|
2049 |
+
#, fuzzy
|
2050 |
+
msgid "Sitewide Settings Tab"
|
2051 |
+
msgstr "Impostazioni SEO"
|
2052 |
|
2053 |
+
#: modules/meta/meta-keywords.php:186
|
2054 |
+
msgid ""
|
2055 |
+
"\n"
|
2056 |
+
"<ul>\n"
|
2057 |
+
"\t<li><strong>Sitewide Keywords</strong> — Here you can enter keywords "
|
2058 |
+
"that describe the overall subject matter of your entire blog. Use commas to "
|
2059 |
+
"separate keywords. These keywords will be put in the <code>>meta "
|
2060 |
+
"name="keywords" /></code> tags of all webpages on the site "
|
2061 |
+
"(homepage, posts, pages, archives, etc.).</li>\n"
|
2062 |
+
"</ul>\n"
|
2063 |
+
msgstr ""
|
2064 |
|
2065 |
+
#: modules/meta/meta-keywords.php:195
|
2066 |
+
msgid ""
|
2067 |
+
"\n"
|
2068 |
+
"<ul>\n"
|
2069 |
+
"\t<li><strong>Blog Homepage Meta Keywords</strong> — These keywords "
|
2070 |
+
"will be applied only to the <em>blog</em> homepage. Note that if you’"
|
2071 |
+
"ve specified a “front page” under <a href='options-reading."
|
2072 |
+
"php'>Settings ⇒ Reading</a>, you’ll need to edit your frontpage "
|
2073 |
+
"and set your frontpage keywords there.</li>\n"
|
2074 |
+
"</ul>\n"
|
2075 |
+
msgstr ""
|
2076 |
|
2077 |
+
#: modules/meta/meta-keywords.php:204
|
2078 |
+
msgid ""
|
2079 |
+
"\n"
|
2080 |
+
"<ul>\n"
|
2081 |
+
"\t<li><strong>How do I edit the meta keywords of my homepage?</strong><br /"
|
2082 |
+
">If you have configured your <a href='options-reading.php'>Settings ⇒ "
|
2083 |
+
"Reading</a> section to use a “front page” and/or a “posts "
|
2084 |
+
"page,” just edit those pages’s meta keywords on the “"
|
2085 |
+
"Pages” tab. Otherwise, just use the Blog Homepage field.</li>\n"
|
2086 |
+
"\t<li><strong>What happens if I add a global keyword that I previously "
|
2087 |
+
"assigned to individual posts or pages?</strong><br />Don’t worry; Meta "
|
2088 |
+
"Keywords Editor will remove duplicate keywords automatically.</li>\n"
|
2089 |
+
"</ul>\n"
|
2090 |
+
msgstr ""
|
2091 |
|
2092 |
+
#: modules/meta/meta-keywords.php:214 modules/meta/meta-robots.php:103
|
2093 |
+
msgid ""
|
2094 |
+
"\n"
|
2095 |
+
"<ul>\n"
|
2096 |
+
"\t<li>\n"
|
2097 |
+
"\t\t<p><strong>What do I do if my site has multiple meta tags?</strong><br /"
|
2098 |
+
">First, try removing your theme’s built-in meta tags if it has them. "
|
2099 |
+
"Go to <a href='theme-editor.php' target='_blank'>Appearance ⇒ Editor</"
|
2100 |
+
"a> and edit <code>header.php</code>. Delete or comment-out any <code><"
|
2101 |
+
"meta></code> tags.</p>\n"
|
2102 |
+
"\t\t<p>If the problem persists, try disabling other SEO plugins that may be "
|
2103 |
+
"generating meta tags.</p>\n"
|
2104 |
+
"\t\t<p>Troubleshooting tip: Go to <a href='options-general.php?page=seo-"
|
2105 |
+
"ultimate'>Settings ⇒ SEO Ultimate</a> and enable the “Insert "
|
2106 |
+
"comments around HTML code insertions” option. This will mark SEO "
|
2107 |
+
"Ultimate’s meta tags with comments, allowing you to see which meta "
|
2108 |
+
"tags are generated by SEO Ultimate and which aren’t.</p>\n"
|
2109 |
+
"\t</li>\n"
|
2110 |
+
"</ul>\n"
|
2111 |
+
msgstr ""
|
2112 |
|
2113 |
+
#: modules/meta/meta-robots.php:12
|
2114 |
+
msgid "Meta Robot Tags Editor"
|
2115 |
+
msgstr "Meta Robot Tags Editor"
|
2116 |
|
2117 |
+
#: modules/meta/meta-robots.php:13
|
2118 |
+
msgid "Meta Robot Tags"
|
2119 |
+
msgstr "Meta Robot Tags"
|
2120 |
|
2121 |
+
#: modules/meta/meta-robots.php:29
|
2122 |
+
msgid ""
|
2123 |
+
"Don’t use this site’s Open Directory description in search results."
|
2124 |
+
msgstr ""
|
2125 |
+
"Non usare per questo sito nei risultati della ricerca la descrizione dalla "
|
2126 |
+
"Open Directory."
|
2127 |
|
2128 |
+
#: modules/meta/meta-robots.php:30
|
2129 |
+
msgid ""
|
2130 |
+
"Don’t use this site’s Yahoo! Directory description in search "
|
2131 |
+
"results."
|
2132 |
+
msgstr ""
|
2133 |
+
"Non usare per questo sito nei risultati della ricerca la descrizione dalla "
|
2134 |
+
"Yahoo! Directory."
|
2135 |
|
2136 |
+
#: modules/meta/meta-robots.php:31
|
2137 |
+
msgid "Don’t cache or archive this site."
|
2138 |
+
msgstr "Nessuna cache o archivio di questo sito."
|
2139 |
|
2140 |
+
#: modules/meta/meta-robots.php:32
|
2141 |
+
msgid "Spider Instructions"
|
2142 |
+
msgstr "Istruzioni spider"
|
2143 |
|
2144 |
+
#: modules/meta/meta-robots.php:53
|
2145 |
+
msgid ""
|
2146 |
+
"\n"
|
2147 |
+
"<ul>\n"
|
2148 |
+
"\t<li><strong>What it does:</strong> Meta Robot Tags Editor lets you convey "
|
2149 |
+
"instructions to search engine spiders, as well as prohibit the spiders from "
|
2150 |
+
"indexing certain webpages on your blog using the <code><meta name=""
|
2151 |
+
"robots" content="noindex" /></code> tag.</li>\n"
|
2152 |
+
"\t<li><strong>Why it helps:</strong> The “Global” tab lets you "
|
2153 |
+
"stop DMOZ or Yahoo! Directory from overriding your custom meta descriptions, "
|
2154 |
+
"as well as prevent spiders from caching your site if you so desire. The "
|
2155 |
+
"“Default Values” tab lets you deindex entire sections of your "
|
2156 |
+
"site that contain content unimportant to visitors (e.g. the administration "
|
2157 |
+
"section), or sections of your site that mostly contain duplicate content (e."
|
2158 |
+
"g. date archives). The editor tabs can do something similar, but for "
|
2159 |
+
"individual content items. By removing webpages from search results that "
|
2160 |
+
"visitors find unhelpful, you can help increase the focus on your more useful "
|
2161 |
+
"content.</li>\n"
|
2162 |
+
"\t<li><strong>How to use it:</strong> Adjust the settings as desired, and "
|
2163 |
+
"then click Save Changes. You can refer to the “Settings Help” "
|
2164 |
+
"tab for information on the settings available. You can also use the editor "
|
2165 |
+
"tabs to deindex individual content items on your site as well as enable the "
|
2166 |
+
"“nofollow” meta parameter that will nullify all outgoing links "
|
2167 |
+
"on a specific webpage.</li>\n"
|
2168 |
+
"</ul>\n"
|
2169 |
+
msgstr ""
|
2170 |
|
2171 |
+
#: modules/meta/meta-robots.php:64
|
2172 |
+
msgid ""
|
2173 |
+
"\n"
|
2174 |
+
"<ul>\n"
|
2175 |
+
"\t<li><strong>Don’t use this site’s Open Directory / Yahoo! "
|
2176 |
+
"Directory description in search results</strong> — If your site is "
|
2177 |
+
"listed in the <a href='http://www.dmoz.org/' target='_blank'>Open Directory "
|
2178 |
+
"(DMOZ)</a> or the <a href='http://dir.yahoo.com/' target='_blank'>Yahoo! "
|
2179 |
+
"Directory</a>, some search engines may use your directory listing as the "
|
2180 |
+
"meta description. These boxes tell search engines not to do that and will "
|
2181 |
+
"give you full control over your meta descriptions. These settings have no "
|
2182 |
+
"effect if your site isn’t listed in the Open Directory or Yahoo! "
|
2183 |
+
"Directory respectively.</li>\n"
|
2184 |
+
"\t<li><strong>Don’t cache or archive this site</strong> — When "
|
2185 |
+
"you check this box, Meta Editor will ask search engines (Google, Yahoo!, "
|
2186 |
+
"Bing, etc.) and archivers (Archive.org, etc.) to <em>not</em> make cached or "
|
2187 |
+
"archived “copies” of your site.</li>\n"
|
2188 |
+
"</ul>\n"
|
2189 |
+
msgstr ""
|
2190 |
|
2191 |
+
#: modules/meta/meta-robots.php:73
|
2192 |
+
#, fuzzy
|
2193 |
+
msgid "Default Values Tab"
|
2194 |
+
msgstr "Valori predefiniti"
|
2195 |
|
2196 |
+
#: modules/meta/meta-robots.php:74
|
2197 |
+
msgid ""
|
2198 |
+
"\n"
|
2199 |
+
"<p><strong>Prevent indexing of…</strong></p>\n"
|
2200 |
+
"<ul>\n"
|
2201 |
+
"\t<li><strong>Administration back-end pages</strong> — Tells spiders "
|
2202 |
+
"not to index the administration area (the part you’re in now), in the "
|
2203 |
+
"unlikely event a spider somehow gains access to the administration. "
|
2204 |
+
"Recommended.</li>\n"
|
2205 |
+
"\t<li><strong>Author archives</strong> — Tells spiders not to index "
|
2206 |
+
"author archives. Useful if your blog only has one author.</li>\n"
|
2207 |
+
"\t<li><strong>Blog search pages</strong> — Tells spiders not to index "
|
2208 |
+
"the result pages of WordPress's blog search function. Recommended.</li>\n"
|
2209 |
+
"\t<li><strong>Category archives</strong> — Tells spiders not to index "
|
2210 |
+
"category archives. Recommended only if you don't use categories.</li>\n"
|
2211 |
+
"\t<li><strong>Comment feeds</strong> — Tells spiders not to index the "
|
2212 |
+
"RSS feeds that exist for every post's comments. (These comment feeds are "
|
2213 |
+
"totally separate from your normal blog feeds.)</li>\n"
|
2214 |
+
"\t<li><strong>Comment subpages</strong> — Tells spiders not to index "
|
2215 |
+
"posts' comment subpages.</li>\n"
|
2216 |
+
"\t<li><strong>Date-based archives</strong> — Tells spiders not to "
|
2217 |
+
"index day/month/year archives. Recommended, since these pages have little "
|
2218 |
+
"keyword value.</li>\n"
|
2219 |
+
"\t<li><strong>Subpages of the homepage</strong> — Tells spiders not to "
|
2220 |
+
"index the homepage's subpages (page 2, page 3, etc). Recommended.</li>\n"
|
2221 |
+
"\t<li><strong>Tag archives</strong> — Tells spiders not to index tag "
|
2222 |
+
"archives. Recommended only if you don't use tags.</li>\n"
|
2223 |
+
"\t<li><strong>User login/registration pages</strong> — Tells spiders "
|
2224 |
+
"not to index WordPress's user login and registration pages. Recommended.</"
|
2225 |
+
"li>\n"
|
2226 |
+
"</ul>\n"
|
2227 |
+
msgstr ""
|
2228 |
|
2229 |
+
#: modules/meta/meta-robots.php:92
|
2230 |
+
msgid "Bulk Editor Tabs"
|
2231 |
+
msgstr ""
|
2232 |
|
2233 |
+
#: modules/meta/meta-robots.php:93
|
2234 |
+
msgid ""
|
2235 |
+
"\n"
|
2236 |
+
"<ul>\n"
|
2237 |
+
"\t<li><strong>Noindex</strong> — Checking this for an item will ask "
|
2238 |
+
"search engines to remove that item’s webpage from their indices. Use "
|
2239 |
+
"this to remove pages that you don’t want showing up in search results "
|
2240 |
+
"(such as a Privacy Policy page, for example).</li>\n"
|
2241 |
+
"\t<li><strong>Nofollow</strong> — Checking this for an item will tell "
|
2242 |
+
"search engines to ignore the links to other webpages that are on that "
|
2243 |
+
"item’s webpage. Note: this is page-level “meta nofollow,” "
|
2244 |
+
"not to be confused with link-level “rel nofollow.”</li>\n"
|
2245 |
+
"</ul>\n"
|
2246 |
+
msgstr ""
|
2247 |
|
2248 |
+
#: modules/meta/webmaster-verify.php:12 modules/meta/webmaster-verify.php:93
|
2249 |
+
msgid "Webmaster Verification Assistant"
|
2250 |
+
msgstr "Webmaster Verification Assistant"
|
2251 |
|
2252 |
+
#: modules/meta/webmaster-verify.php:13
|
2253 |
+
msgid "W.M. Verification"
|
2254 |
+
msgstr "Verifica W.M."
|
2255 |
|
2256 |
+
#: modules/meta/webmaster-verify.php:25
|
2257 |
+
msgid "Google Webmaster Tools"
|
2258 |
+
msgstr "Google Webmaster Tools"
|
2259 |
|
2260 |
+
#: modules/meta/webmaster-verify.php:28
|
2261 |
+
msgid "Bing Webmaster Center"
|
2262 |
+
msgstr "Bing Webmaster Center"
|
2263 |
|
2264 |
+
#: modules/meta/webmaster-verify.php:55
|
2265 |
+
#, fuzzy
|
2266 |
+
msgid "Webmaster Portal"
|
2267 |
+
msgstr "Google Webmaster Tools"
|
2268 |
|
2269 |
+
#: modules/meta/webmaster-verify.php:56
|
2270 |
+
#, fuzzy
|
2271 |
+
msgid "Meta Tag"
|
2272 |
+
msgstr "Meta Robot Tags"
|
2273 |
|
2274 |
+
#: modules/meta/webmaster-verify.php:82
|
2275 |
+
msgid ""
|
2276 |
+
"\n"
|
2277 |
+
"<ul>\n"
|
2278 |
+
"\t<li><strong>What it does:</strong> Webmaster Verification Assistant lets "
|
2279 |
+
"you enter in verification codes for the webmaster portals of leading search "
|
2280 |
+
"engines.</li>\n"
|
2281 |
+
"\t<li><strong>Why it helps:</strong> Webmaster Verification Assistant "
|
2282 |
+
"assists you in obtaining access to webmaster portals, which can provide you "
|
2283 |
+
"with valuable SEO tools.</li>\n"
|
2284 |
+
"\t<li><strong>How to use it:</strong> Use a search engine to locate the "
|
2285 |
+
"webmaster portal you’re interested in, sign up at the portal, and then "
|
2286 |
+
"obtain a verification code. Once you have the code, you can paste it in "
|
2287 |
+
"here, click Save Changes, then return to the portal to verify that you own "
|
2288 |
+
"the site. Once that’s done, you'll have access to the portal’s "
|
2289 |
+
"SEO tools.</li>\n"
|
2290 |
+
"</ul>\n"
|
2291 |
+
msgstr ""
|
2292 |
|
2293 |
+
#: modules/misc/misc.php:11 modules/misc/misc.php:12
|
2294 |
+
#: plugin/class.seo-ultimate.php:1567
|
2295 |
+
msgid "Miscellaneous"
|
2296 |
+
msgstr "Miscellaneous"
|
2297 |
|
2298 |
+
#: modules/misc/misc.php:21
|
2299 |
+
msgid ""
|
2300 |
+
"The Miscellaneous page contains modules that don’t have enough "
|
2301 |
+
"settings to warrant their own separate admin pages."
|
2302 |
+
msgstr ""
|
2303 |
+
"Questa pagina contiene quei moduli che non hanno un numero di impostazioni "
|
2304 |
+
"tale da richiedere una propria sezione separata."
|
2305 |
|
2306 |
+
#: modules/modules/modules.php:12
|
2307 |
+
msgid "Module Manager"
|
2308 |
+
msgstr "Module Manager"
|
2309 |
|
2310 |
+
#: modules/modules/modules.php:13
|
2311 |
+
msgid "Modules"
|
2312 |
+
msgstr "Modules"
|
2313 |
|
2314 |
+
#: modules/modules/modules.php:53
|
2315 |
+
#, fuzzy
|
2316 |
+
msgid ""
|
2317 |
+
"SEO Ultimate’s features are located in groups called “modules."
|
2318 |
+
"” By default, most of these modules are listed in the “"
|
2319 |
+
"SEO” menu on the left. Whenever you’re working with a module, "
|
2320 |
+
"you can view documentation by clicking the “Help” tab in the "
|
2321 |
+
"upper-right-hand corner of your administration screen."
|
2322 |
+
msgstr ""
|
2323 |
+
"Le configurazioni di SEO Ultimate sono state suddivise in gruppi a nome "
|
2324 |
+
"“moduli.”. Come da predefinite, la maggior parte di questi "
|
2325 |
+
"moduli la potrai trovare elencata nel menu “SEO” alla tua "
|
2326 |
+
"sinistra. Durante il tuo lavoro sui moduli, potrai visionare in ogni momento "
|
2327 |
+
"la documentazione semplicemente cliccando sui pulsanti in alto a destra del "
|
2328 |
+
"tuo pannello di amministrazione."
|
2329 |
+
|
2330 |
+
#: modules/modules/modules.php:55
|
2331 |
+
msgid ""
|
2332 |
+
"The Module Manager lets you disable or hide modules you don’t use. "
|
2333 |
+
"You can also silence modules from displaying bubble alerts on the menu."
|
2334 |
+
msgstr ""
|
2335 |
+
"Questa sezione ti permetterà di disattivare o nascondere i moduli che non "
|
2336 |
+
"utilizzerai. Potrai infine disattivare le bubble notifica di allerta nel "
|
2337 |
+
"menu dei moduli (Silenzioso)."
|
2338 |
|
2339 |
+
#: modules/modules/modules.php:59
|
2340 |
+
msgid "Modules updated."
|
2341 |
+
msgstr "I moduli sono stati aggiornati."
|
2342 |
|
2343 |
+
#: modules/modules/modules.php:64
|
2344 |
+
msgid "Status"
|
2345 |
+
msgstr "Stato"
|
2346 |
|
2347 |
+
#: modules/modules/modules.php:65
|
2348 |
+
msgid "Module"
|
2349 |
+
msgstr "Modulo"
|
2350 |
|
2351 |
+
#: modules/modules/modules.php:85
|
2352 |
+
msgid "Enabled"
|
2353 |
+
msgstr "Attivo"
|
2354 |
|
2355 |
+
#: modules/modules/modules.php:86
|
2356 |
+
msgid "Silenced"
|
2357 |
+
msgstr "Silenzioso"
|
2358 |
|
2359 |
+
#: modules/modules/modules.php:87
|
2360 |
+
msgid "Hidden"
|
2361 |
+
msgstr "Nascosto"
|
2362 |
|
2363 |
+
#: modules/modules/modules.php:88
|
2364 |
+
msgid "Disabled"
|
2365 |
+
msgstr "Non attivo"
|
2366 |
|
2367 |
+
#: modules/modules/modules.php:210
|
2368 |
+
#, fuzzy
|
2369 |
+
msgid "Options Help"
|
2370 |
+
msgstr "Opzioni"
|
2371 |
|
2372 |
+
#: modules/modules/modules.php:211
|
2373 |
+
msgid ""
|
2374 |
+
"\n"
|
2375 |
+
"<p>SEO Ultimate’s features are located in groups called “modules."
|
2376 |
+
"” By default, most of these modules are listed in the “"
|
2377 |
+
"SEO” menu on the left.</p>\n"
|
2378 |
+
"<p>The Module Manager lets you customize the visibility and accessibility of "
|
2379 |
+
"each module; here are the options available:</p>\n"
|
2380 |
+
"<ul>\n"
|
2381 |
+
"\t<li><strong>Enabled</strong> — The default option. The module will "
|
2382 |
+
"be fully enabled and accessible.</li>\n"
|
2383 |
+
"\t<li><strong>Silenced</strong> — The module will be enabled and "
|
2384 |
+
"accessible, but it won't be allowed to display numeric bubble alerts on the "
|
2385 |
+
"menu.</li>\n"
|
2386 |
+
"\t<li><strong>Hidden</strong> — The module's functionality will be "
|
2387 |
+
"enabled, but the module won't be visible on the SEO menu. You will still be "
|
2388 |
+
"able to access the module's admin page by clicking on its title in the "
|
2389 |
+
"Module Manager table.</li>\n"
|
2390 |
+
"\t<li><strong>Disabled</strong> — The module will be completely "
|
2391 |
+
"disabled and inaccessible.</li>\n"
|
2392 |
+
"</ul>\n"
|
2393 |
+
msgstr ""
|
2394 |
|
2395 |
+
#: modules/modules/modules.php:225
|
2396 |
+
msgid ""
|
2397 |
+
"\n"
|
2398 |
+
"<ul>\n"
|
2399 |
+
"\t<li><strong>What are modules?</strong><br />SEO Ultimate’s features "
|
2400 |
+
"are divided into groups called “modules.” SEO Ultimate’s "
|
2401 |
+
"“Module Manager” lets you enable or disable each of these groups "
|
2402 |
+
"of features. This way, you can pick-and-choose which SEO Ultimate features "
|
2403 |
+
"you want.</li>\n"
|
2404 |
+
"\t<li><strong>Can I access a module again after I’ve hidden it?</"
|
2405 |
+
"strong><br />Yes. Just go to the Module Manager and click the module’s "
|
2406 |
+
"title to open its admin page. If you’d like to put the module back in "
|
2407 |
+
"the “SEO” menu, just re-enable the module in the Module Manager "
|
2408 |
+
"and click “Save Changes.”</li>\n"
|
2409 |
+
"\t<li><strong>How do I disable the number bubbles on the “SEO” "
|
2410 |
+
"menu?</strong><br />Just go to the Module Manager and select the “"
|
2411 |
+
"Silenced” option for any modules generating number bubbles. Then click "
|
2412 |
+
"“Save Changes.”</li>\n"
|
2413 |
+
"</ul>\n"
|
2414 |
+
msgstr ""
|
2415 |
|
2416 |
+
#: modules/more-links/more-links.php:12 modules/more-links/more-links.php:102
|
2417 |
+
msgid "More Link Customizer"
|
2418 |
+
msgstr "More Link Customizer"
|
|
|
|
|
|
|
2419 |
|
2420 |
+
#: modules/more-links/more-links.php:30
|
2421 |
+
msgid "Default More Link Text"
|
2422 |
+
msgstr "Testo predefinito link more"
|
2423 |
|
2424 |
+
#: modules/more-links/more-links.php:51
|
2425 |
+
#, fuzzy
|
2426 |
+
msgid "Anchor Text of “More” Link:"
|
2427 |
+
msgstr "Link “Read more”"
|
2428 |
|
2429 |
+
#: modules/more-links/more-links.php:75
|
2430 |
+
msgid ""
|
2431 |
+
"\n"
|
2432 |
+
"<ul>\n"
|
2433 |
+
"\t<li><strong>What it does:</strong> More Link Customizer lets you modify "
|
2434 |
+
"the anchor text of your posts’ <a href='http://codex.wordpress.org/"
|
2435 |
+
"Customizing_the_Read_More' target='_blank'>“more” links</a>.</"
|
2436 |
+
"li>\n"
|
2437 |
+
"\t<li><strong>Why it helps:</strong> On the typical WordPress setup, the "
|
2438 |
+
"“more link” always has the same anchor text (e.g. “Read "
|
2439 |
+
"more of this entry”). Since internal anchor text conveys web page "
|
2440 |
+
"topicality to search engines, the “read more” phrase isn’t "
|
2441 |
+
"a desirable anchor phrase. More Link Customizer lets you replace the "
|
2442 |
+
"boilerplate text with a new anchor that, by default, integrates your post "
|
2443 |
+
"titles (which will ideally be keyword-oriented).</li>\n"
|
2444 |
+
"\t<li><strong>How to use it:</strong> On this page you can set the anchor "
|
2445 |
+
"text you’d like to use by default. The <code>{post}</code> variable "
|
2446 |
+
"will be replaced with the post’s title. HTML and encoded entities are "
|
2447 |
+
"supported. If instead you decide that you’d like to use the default "
|
2448 |
+
"anchor text specified by your currently-active theme, just erase the "
|
2449 |
+
"contents of the textbox. The anchor text can be overridden on a per-post "
|
2450 |
+
"basis via the “More Link Text” box in the “SEO "
|
2451 |
+
"Settings” section of the WordPress post editor.</li>\n"
|
2452 |
+
"</ul>\n"
|
2453 |
+
msgstr ""
|
2454 |
|
2455 |
+
#: modules/more-links/more-links.php:83
|
2456 |
+
msgid ""
|
2457 |
+
"\n"
|
2458 |
+
"<ul>\n"
|
2459 |
+
"\t<li>\n"
|
2460 |
+
"\t\t<p><strong>Why is the More Link Customizer an improvement over "
|
2461 |
+
"WordPress’s built-in functionality?</strong><br />Although WordPress "
|
2462 |
+
"does allow basic <a href='http://codex.wordpress.org/"
|
2463 |
+
"Customizing_the_Read_More#Having_a_custom_text_for_each_post' "
|
2464 |
+
"target='_blank'>custom “more” anchors</a>, the SEO Ultimate "
|
2465 |
+
"approach has several benefits:</p>\n"
|
2466 |
+
"\t\t<ul>\n"
|
2467 |
+
"\t\t\t<li>More Link Customizer (MLC) lets you set a custom default anchor "
|
2468 |
+
"text. WordPress, on the other hand, leaves this up to the currently-active "
|
2469 |
+
"theme.</li>\n"
|
2470 |
+
"\t\t\t<li>MLC lets you dynamically incorporate the post’s title into "
|
2471 |
+
"the anchor text.</li>\n"
|
2472 |
+
"\t\t\t<li>MLC lets you include HTML tags in your anchor, whereas WordPress "
|
2473 |
+
"strips these out.</li>\n"
|
2474 |
+
"\t\t\t<li>MLC’s functionality is much more prominent than "
|
2475 |
+
"WordPress’s unintuitive, barely-documented approach.</li>\n"
|
2476 |
+
"\t\t\t<li>Unlike WordPress's method, MLC doesn't require you to utilize the "
|
2477 |
+
"HTML editor.</li>\n"
|
2478 |
+
"\t\t</ul>\n"
|
2479 |
+
"\t\t<p>If you’ve already specified custom anchors via WordPress’"
|
2480 |
+
"s method, SEO Ultimate will import those anchors automatically into the More "
|
2481 |
+
"Link Customizer.</p>\n"
|
2482 |
+
"\t</li>\n"
|
2483 |
+
"</ul>\n"
|
2484 |
+
msgstr ""
|
2485 |
|
2486 |
+
#: modules/noindex/noindex.php:19
|
2487 |
+
msgid "Noindex Manager"
|
2488 |
+
msgstr "Gestione Noindex"
|
2489 |
|
2490 |
+
#: modules/noindex/noindex.php:20 modules/noindex/noindex.php:56
|
2491 |
+
#: modules/noindex/noindex.php:74
|
2492 |
+
msgid "Noindex"
|
2493 |
+
msgstr "Noindex"
|
2494 |
|
2495 |
+
#: modules/noindex/noindex.php:69 modules/noindex/noindex.php:80
|
2496 |
+
#: modules/opengraph/opengraph.php:348 modules/opengraph/opengraph.php:479
|
2497 |
+
#: modules/opengraph/opengraph.php:480
|
2498 |
+
msgid "Use default"
|
2499 |
+
msgstr "Usa predefinito"
|
2500 |
|
2501 |
+
#: modules/noindex/noindex.php:70
|
2502 |
+
msgid "noindex"
|
2503 |
+
msgstr "noindex"
|
2504 |
|
2505 |
+
#: modules/noindex/noindex.php:71
|
2506 |
+
msgid "index"
|
2507 |
+
msgstr "index"
|
2508 |
|
2509 |
+
#: modules/noindex/noindex.php:81
|
2510 |
+
msgid "nofollow"
|
2511 |
+
msgstr "nofollow"
|
2512 |
|
2513 |
+
#: modules/noindex/noindex.php:82
|
2514 |
+
msgid "follow"
|
2515 |
+
msgstr "follow"
|
2516 |
|
2517 |
+
#: modules/noindex/noindex.php:96
|
2518 |
+
#, fuzzy
|
2519 |
+
msgid ""
|
2520 |
+
"Note: The <a href=\"options-reading.php\">“discourage search "
|
2521 |
+
"engines” checkbox</a> will block indexing of the entire site, "
|
2522 |
+
"regardless of which options are set below."
|
2523 |
+
msgstr ""
|
2524 |
+
"Nota: le impostazioni <a href=\"options-privacy.php\">privacy</a> in uso "
|
2525 |
+
"impediranno l'indicizzazione del sito intero indipendentemente da quale "
|
2526 |
+
"opzione sia stata impostata qui sotto."
|
2527 |
|
2528 |
+
#: modules/noindex/noindex.php:99
|
2529 |
+
msgid "Prevent indexing of..."
|
2530 |
+
msgstr "Previeni indicizzazione di..."
|
|
|
2531 |
|
2532 |
+
#: modules/noindex/noindex.php:100
|
2533 |
+
msgid "Administration back-end pages"
|
2534 |
+
msgstr "Back-end pagine amministrazione"
|
|
|
2535 |
|
2536 |
+
#: modules/noindex/noindex.php:101
|
2537 |
+
msgid "Author archives"
|
2538 |
+
msgstr "Archivi autore"
|
|
|
2539 |
|
2540 |
+
#: modules/noindex/noindex.php:102
|
2541 |
+
msgid "Blog search pages"
|
2542 |
+
msgstr "Pagine ricerca"
|
2543 |
+
|
2544 |
+
#: modules/noindex/noindex.php:103
|
2545 |
+
msgid "Category archives"
|
2546 |
+
msgstr "Archivi categoria"
|
2547 |
+
|
2548 |
+
#: modules/noindex/noindex.php:104
|
2549 |
+
msgid "Comment feeds"
|
2550 |
+
msgstr "Feed commenti"
|
2551 |
+
|
2552 |
+
#: modules/noindex/noindex.php:105
|
2553 |
+
msgid "Comment subpages"
|
2554 |
+
msgstr "Sotto-pagine commenti"
|
2555 |
+
|
2556 |
+
#: modules/noindex/noindex.php:106
|
2557 |
+
msgid "Date-based archives"
|
2558 |
+
msgstr "Archivi per-data"
|
2559 |
+
|
2560 |
+
#: modules/noindex/noindex.php:107
|
2561 |
+
msgid "Subpages of the homepage"
|
2562 |
+
msgstr "Sotto-pagine homepage"
|
2563 |
+
|
2564 |
+
#: modules/noindex/noindex.php:108
|
2565 |
+
msgid "Tag archives"
|
2566 |
+
msgstr "Archivi tag"
|
2567 |
+
|
2568 |
+
#: modules/noindex/noindex.php:109
|
2569 |
+
msgid "User login/registration pages"
|
2570 |
+
msgstr "Pagine login/registrazione utente"
|
2571 |
+
|
2572 |
+
#: modules/noindex/noindex.php:172
|
2573 |
+
msgid "Noindex: Tell search engines not to index this webpage."
|
2574 |
+
msgstr ""
|
2575 |
+
"Noindex: ordina ai motori di ricerca di non indicizzare questa pagina web."
|
2576 |
+
|
2577 |
+
#: modules/noindex/noindex.php:173
|
2578 |
+
msgid "Nofollow: Tell search engines not to spider links on this webpage."
|
2579 |
+
msgstr ""
|
2580 |
+
"Nofollow: ordina ai motori di ricerca di non analizzare (via spider) i link "
|
2581 |
+
"su questa pagina web."
|
2582 |
+
|
2583 |
+
#: modules/noindex/noindex.php:174
|
2584 |
+
msgid "Meta Robots Tag:"
|
2585 |
+
msgstr "Tag Robots meta:"
|
2586 |
+
|
2587 |
+
#: modules/opengraph/opengraph.php:15
|
2588 |
+
msgid "Open Graph Integrator"
|
2589 |
+
msgstr ""
|
2590 |
+
|
2591 |
+
#: modules/opengraph/opengraph.php:16
|
2592 |
+
msgid "Open Graph"
|
2593 |
+
msgstr ""
|
2594 |
+
|
2595 |
+
#: modules/opengraph/opengraph.php:350
|
2596 |
+
msgid "Type"
|
2597 |
+
msgstr ""
|
2598 |
+
|
2599 |
+
#: modules/opengraph/opengraph.php:355
|
2600 |
+
#, fuzzy
|
2601 |
+
msgid "Title"
|
2602 |
+
msgstr "Titolo:"
|
2603 |
+
|
2604 |
+
#: modules/opengraph/opengraph.php:360
|
2605 |
+
#, fuzzy
|
2606 |
+
msgid "Description"
|
2607 |
+
msgstr "Descrizione meta"
|
2608 |
+
|
2609 |
+
#: modules/opengraph/opengraph.php:365
|
2610 |
+
msgid "Image"
|
2611 |
+
msgstr ""
|
2612 |
+
|
2613 |
+
#: modules/opengraph/opengraph.php:388
|
2614 |
+
#, fuzzy
|
2615 |
+
msgid "Site Name"
|
2616 |
+
msgstr "Site Cap"
|
2617 |
+
|
2618 |
+
#: modules/opengraph/opengraph.php:389
|
2619 |
+
msgid "Facebook App ID"
|
2620 |
+
msgstr ""
|
2621 |
+
|
2622 |
+
#: modules/opengraph/opengraph.php:390
|
2623 |
+
msgid "@username of website"
|
2624 |
+
msgstr ""
|
2625 |
+
|
2626 |
+
#: modules/opengraph/opengraph.php:391
|
2627 |
+
msgid "Same as twitter:site, but the user’s Twitter ID"
|
2628 |
+
msgstr ""
|
2629 |
+
|
2630 |
+
#: modules/opengraph/opengraph.php:392
|
2631 |
+
msgid "@username of content creator"
|
2632 |
+
msgstr ""
|
2633 |
+
|
2634 |
+
#: modules/opengraph/opengraph.php:393
|
2635 |
+
msgid "Twitter user ID of content creator"
|
2636 |
+
msgstr ""
|
2637 |
+
|
2638 |
+
#: modules/opengraph/opengraph.php:394
|
2639 |
+
msgid "Description of content (maximum 200 characters)"
|
2640 |
+
msgstr ""
|
2641 |
+
|
2642 |
+
#: modules/opengraph/opengraph.php:395
|
2643 |
+
msgid "Title of content (maximum 70 characters)"
|
2644 |
+
msgstr ""
|
2645 |
+
|
2646 |
+
#: modules/opengraph/opengraph.php:396
|
2647 |
+
msgid "URL of image to use in the card. Image must be less than 1MB in size."
|
2648 |
+
msgstr ""
|
2649 |
+
|
2650 |
+
#: modules/opengraph/opengraph.php:397
|
2651 |
+
msgid "Width of image in pixels"
|
2652 |
+
msgstr ""
|
2653 |
+
|
2654 |
+
#: modules/opengraph/opengraph.php:398
|
2655 |
+
msgid "Height of image in pixels"
|
2656 |
+
msgstr ""
|
2657 |
+
|
2658 |
+
#: modules/opengraph/opengraph.php:399
|
2659 |
+
msgid ""
|
2660 |
+
"Top customizable data field, can be a relatively short string (ie \"$3.99\")"
|
2661 |
+
msgstr ""
|
2662 |
+
|
2663 |
+
#: modules/opengraph/opengraph.php:400 modules/opengraph/opengraph.php:402
|
2664 |
+
msgid ""
|
2665 |
+
"Customizable label or units for the information in twitter:data1 (best "
|
2666 |
+
"practice: use all caps)"
|
2667 |
+
msgstr ""
|
2668 |
+
|
2669 |
+
#: modules/opengraph/opengraph.php:401
|
2670 |
+
msgid ""
|
2671 |
+
"Bottom customizable data field, can be a relatively short string (ie "
|
2672 |
+
"\"Seattle, WA\")"
|
2673 |
+
msgstr ""
|
2674 |
+
|
2675 |
+
#: modules/opengraph/opengraph.php:403
|
2676 |
+
msgid "1st image in the gallery. Images must be less than 1MB in size."
|
2677 |
+
msgstr ""
|
2678 |
+
|
2679 |
+
#: modules/opengraph/opengraph.php:404
|
2680 |
+
msgid "2nd image in the gallery. Images must be less than 1MB in size."
|
2681 |
+
msgstr ""
|
2682 |
+
|
2683 |
+
#: modules/opengraph/opengraph.php:405
|
2684 |
+
msgid "3rd image in the gallery. Images must be less than 1MB in size."
|
2685 |
+
msgstr ""
|
2686 |
+
|
2687 |
+
#: modules/opengraph/opengraph.php:406
|
2688 |
+
msgid "4th image in the gallery. Images must be less than 1MB in size."
|
2689 |
+
msgstr ""
|
2690 |
+
|
2691 |
+
#: modules/opengraph/opengraph.php:407
|
2692 |
+
msgid " \tHTTPS URL of player iframe"
|
2693 |
+
msgstr ""
|
2694 |
+
|
2695 |
+
#: modules/opengraph/opengraph.php:408
|
2696 |
+
msgid "Width of iframe in pixels"
|
2697 |
+
msgstr ""
|
2698 |
+
|
2699 |
+
#: modules/opengraph/opengraph.php:409
|
2700 |
+
msgid "Height of iframe in pixels"
|
2701 |
+
msgstr ""
|
2702 |
+
|
2703 |
+
#: modules/opengraph/opengraph.php:410
|
2704 |
+
msgid "URL to raw video or audio stream"
|
2705 |
+
msgstr ""
|
2706 |
+
|
2707 |
+
#: modules/opengraph/opengraph.php:411
|
2708 |
+
msgid "Name of your iPhone app"
|
2709 |
+
msgstr ""
|
2710 |
+
|
2711 |
+
#: modules/opengraph/opengraph.php:412
|
2712 |
+
msgid "Your app ID in the iTunes App Store (Note: NOT your bundle ID)"
|
2713 |
+
msgstr ""
|
2714 |
+
|
2715 |
+
#: modules/opengraph/opengraph.php:413
|
2716 |
+
msgid ""
|
2717 |
+
"Your app’s custom URL scheme (you must include \"://\" after your "
|
2718 |
+
"scheme name)"
|
2719 |
+
msgstr ""
|
2720 |
+
|
2721 |
+
#: modules/opengraph/opengraph.php:414
|
2722 |
+
msgid "Name of your iPad optimized app"
|
2723 |
+
msgstr ""
|
2724 |
+
|
2725 |
+
#: modules/opengraph/opengraph.php:415
|
2726 |
+
msgid "Your app ID in the iTunes App Store"
|
2727 |
+
msgstr ""
|
2728 |
+
|
2729 |
+
#: modules/opengraph/opengraph.php:416
|
2730 |
+
msgid "Your app’s custom URL scheme"
|
2731 |
+
msgstr ""
|
2732 |
+
|
2733 |
+
#: modules/opengraph/opengraph.php:417
|
2734 |
+
msgid "Name of your Android app"
|
2735 |
+
msgstr ""
|
2736 |
+
|
2737 |
+
#: modules/opengraph/opengraph.php:418
|
2738 |
+
msgid "Your app ID in the Google Play Store"
|
2739 |
+
msgstr ""
|
2740 |
+
|
2741 |
+
#: modules/opengraph/opengraph.php:419
|
2742 |
+
msgid "Your app#8217;s custom URL scheme"
|
2743 |
+
msgstr ""
|
2744 |
+
|
2745 |
+
#: modules/opengraph/opengraph.php:426
|
2746 |
+
#, fuzzy
|
2747 |
+
msgid "Default Types"
|
2748 |
+
msgstr "Valori predefiniti"
|
2749 |
+
|
2750 |
+
#: modules/opengraph/opengraph.php:428
|
2751 |
+
#, fuzzy
|
2752 |
+
msgid "Post Type"
|
2753 |
+
msgstr "Articolo"
|
2754 |
+
|
2755 |
+
#: modules/opengraph/opengraph.php:429
|
2756 |
+
msgid "Open Graph Type"
|
2757 |
+
msgstr ""
|
2758 |
+
|
2759 |
+
#: modules/opengraph/opengraph.php:430
|
2760 |
+
msgid "Twitter Type"
|
2761 |
+
msgstr ""
|
2762 |
+
|
2763 |
+
#: modules/opengraph/opengraph.php:445 modules/opengraph/opengraph.php:450
|
2764 |
+
#, fuzzy
|
2765 |
+
msgid "Default Image"
|
2766 |
+
msgstr "Valore predefinito"
|
2767 |
+
|
2768 |
+
#: modules/opengraph/opengraph.php:448
|
2769 |
+
msgid ""
|
2770 |
+
"In the box below, you can specify an image URL or an image from your media "
|
2771 |
+
"library to use as a default image in the event that there is no image "
|
2772 |
+
"otherwise specified for a given webpage on your site."
|
2773 |
+
msgstr ""
|
2774 |
+
|
2775 |
+
#: modules/opengraph/opengraph.php:457
|
2776 |
+
msgid "Include author data for posts"
|
2777 |
+
msgstr ""
|
2778 |
+
|
2779 |
+
#: modules/opengraph/opengraph.php:457
|
2780 |
+
msgid "Open Graph Data"
|
2781 |
+
msgstr ""
|
2782 |
+
|
2783 |
+
#: modules/opengraph/opengraph.php:459
|
2784 |
+
msgid "Use the non-validating code prescribed by Open Graph and Twitter"
|
2785 |
+
msgstr ""
|
2786 |
+
|
2787 |
+
#: modules/opengraph/opengraph.php:460
|
2788 |
+
msgid "Alter the code to validate as XHTML"
|
2789 |
+
msgstr ""
|
2790 |
+
|
2791 |
+
#: modules/opengraph/opengraph.php:461
|
2792 |
+
msgid "Alter the code to validate as HTML5"
|
2793 |
+
msgstr ""
|
2794 |
+
|
2795 |
+
#: modules/opengraph/opengraph.php:462
|
2796 |
+
#, fuzzy
|
2797 |
+
msgid "HTML Validation"
|
2798 |
+
msgstr "HTML5 Microdata"
|
2799 |
+
|
2800 |
+
#: modules/opengraph/opengraph.php:468 modules/titles/titles.php:92
|
2801 |
+
msgid "Blog Homepage Title"
|
2802 |
+
msgstr "Titolo homepage blog"
|
2803 |
+
|
2804 |
+
#: modules/opengraph/opengraph.php:469
|
2805 |
+
#, fuzzy
|
2806 |
+
msgid "Blog Homepage Description"
|
2807 |
+
msgstr "Descrizione meta homepage del blog"
|
2808 |
+
|
2809 |
+
#: modules/opengraph/opengraph.php:470
|
2810 |
+
#, fuzzy
|
2811 |
+
msgid "Blog Homepage Image"
|
2812 |
+
msgstr "Homepage blog"
|
2813 |
+
|
2814 |
+
#: modules/opengraph/opengraph.php:476 modules/widgets/widgets.php:140
|
2815 |
+
msgid "Title:"
|
2816 |
+
msgstr "Titolo:"
|
2817 |
+
|
2818 |
+
#: modules/opengraph/opengraph.php:477
|
2819 |
+
#, fuzzy
|
2820 |
+
msgid "Description:"
|
2821 |
+
msgstr "Descrizione meta:"
|
2822 |
+
|
2823 |
+
#: modules/opengraph/opengraph.php:478
|
2824 |
+
msgid "Image:"
|
2825 |
+
msgstr ""
|
2826 |
+
|
2827 |
+
#: modules/opengraph/opengraph.php:479
|
2828 |
+
msgid "Open Graph Type:"
|
2829 |
+
msgstr ""
|
2830 |
+
|
2831 |
+
#: modules/opengraph/opengraph.php:480
|
2832 |
+
msgid "Twitter Type:"
|
2833 |
+
msgstr ""
|
2834 |
+
|
2835 |
+
#: modules/opengraph/opengraph.php:505
|
2836 |
+
#, php-format
|
2837 |
+
msgid "Featured Image: %s"
|
2838 |
+
msgstr ""
|
2839 |
+
|
2840 |
+
#: modules/opengraph/opengraph.php:513
|
2841 |
+
#: modules/rich-snippets/rich-snippets.php:357
|
2842 |
+
msgid "None"
|
2843 |
+
msgstr "Nessuno"
|
2844 |
+
|
2845 |
+
#: modules/opengraph/opengraph.php:514
|
2846 |
+
msgid "Internet"
|
2847 |
+
msgstr ""
|
2848 |
+
|
2849 |
+
#: modules/opengraph/opengraph.php:515
|
2850 |
+
msgid "Article"
|
2851 |
+
msgstr ""
|
2852 |
+
|
2853 |
+
#: modules/opengraph/opengraph.php:516
|
2854 |
+
msgid "Blog"
|
2855 |
+
msgstr ""
|
2856 |
+
|
2857 |
+
#: modules/opengraph/opengraph.php:517
|
2858 |
+
msgid "Profile"
|
2859 |
+
msgstr ""
|
2860 |
+
|
2861 |
+
#: modules/opengraph/opengraph.php:518
|
2862 |
+
msgid "Website"
|
2863 |
+
msgstr ""
|
2864 |
+
|
2865 |
+
#: modules/opengraph/opengraph.php:519
|
2866 |
+
msgid "Products"
|
2867 |
+
msgstr ""
|
2868 |
+
|
2869 |
+
#: modules/opengraph/opengraph.php:520
|
2870 |
+
msgid "Book"
|
2871 |
+
msgstr ""
|
2872 |
+
|
2873 |
+
#: modules/opengraph/opengraph.php:521
|
2874 |
+
msgid "Music"
|
2875 |
+
msgstr ""
|
2876 |
+
|
2877 |
+
#: modules/opengraph/opengraph.php:522
|
2878 |
+
msgid "Album"
|
2879 |
+
msgstr ""
|
2880 |
+
|
2881 |
+
#: modules/opengraph/opengraph.php:523
|
2882 |
+
msgid "Playlist"
|
2883 |
+
msgstr ""
|
2884 |
+
|
2885 |
+
#: modules/opengraph/opengraph.php:524
|
2886 |
+
msgid "Radio Station"
|
2887 |
+
msgstr ""
|
2888 |
+
|
2889 |
+
#: modules/opengraph/opengraph.php:525
|
2890 |
+
msgid "Song"
|
2891 |
+
msgstr ""
|
2892 |
+
|
2893 |
+
#: modules/opengraph/opengraph.php:526
|
2894 |
+
msgid "Videos"
|
2895 |
+
msgstr ""
|
2896 |
+
|
2897 |
+
#: modules/opengraph/opengraph.php:527
|
2898 |
+
msgid "Movie"
|
2899 |
+
msgstr ""
|
2900 |
+
|
2901 |
+
#: modules/opengraph/opengraph.php:528
|
2902 |
+
msgid "TV Episode"
|
2903 |
+
msgstr ""
|
2904 |
+
|
2905 |
+
#: modules/opengraph/opengraph.php:529
|
2906 |
+
msgid "TV Show"
|
2907 |
+
msgstr ""
|
2908 |
+
|
2909 |
+
#: modules/opengraph/opengraph.php:530
|
2910 |
+
msgid "Video"
|
2911 |
+
msgstr ""
|
2912 |
+
|
2913 |
+
#: modules/opengraph/opengraph.php:537
|
2914 |
+
msgid "Summary"
|
2915 |
+
msgstr ""
|
2916 |
+
|
2917 |
+
#: modules/opengraph/opengraph.php:538
|
2918 |
+
msgid "Product"
|
2919 |
+
msgstr ""
|
2920 |
+
|
2921 |
+
#: modules/opengraph/opengraph.php:539
|
2922 |
+
#: modules/rich-snippets/rich-snippets.php:120
|
2923 |
+
msgid "Photo"
|
2924 |
+
msgstr ""
|
2925 |
+
|
2926 |
+
#: modules/opengraph/opengraph.php:540
|
2927 |
+
msgid "Summary Large Image"
|
2928 |
+
msgstr ""
|
2929 |
+
|
2930 |
+
#: modules/opengraph/opengraph.php:541
|
2931 |
+
#, fuzzy
|
2932 |
+
msgid "Gallery"
|
2933 |
+
msgstr "Installatore"
|
2934 |
+
|
2935 |
+
#: modules/opengraph/opengraph.php:542
|
2936 |
+
msgid "Player"
|
2937 |
+
msgstr ""
|
2938 |
+
|
2939 |
+
#: modules/opengraph/opengraph.php:543
|
2940 |
+
msgid "App"
|
2941 |
+
msgstr ""
|
2942 |
+
|
2943 |
+
#: modules/opengraph/opengraph.php:565
|
2944 |
+
msgid "Twitter Handle"
|
2945 |
+
msgstr ""
|
2946 |
+
|
2947 |
+
#: modules/opengraph/opengraph.php:574
|
2948 |
+
msgid ""
|
2949 |
+
"\n"
|
2950 |
+
"<ul>\n"
|
2951 |
+
"\t<li><strong>What it does:</strong> Open Graph Integrator makes it easy for "
|
2952 |
+
"you to convey information about your site to social networks like Facebook, "
|
2953 |
+
"Twitter, and Google+.</li>\n"
|
2954 |
+
"\t<li><strong>Why it helps:</strong> By providing this Open Graph data, you "
|
2955 |
+
"can customize how these social networks will present your site when people "
|
2956 |
+
"share it with their followers.</li>\n"
|
2957 |
+
"\t<li><strong>How to use it:</strong> The “Sitewide Values” tab "
|
2958 |
+
"lets you specify data that applies to your entire site. The “Default "
|
2959 |
+
"Values” tab lets you specify default data for your posts, pages, etc. "
|
2960 |
+
"The bulk editor tabs let you override those defaults on individual posts and "
|
2961 |
+
"pages. If the authors on your site fill in the “Twitter Handle” "
|
2962 |
+
"field which Open Graph Integrator adds to the <a href='profile.php'>profile "
|
2963 |
+
"editor</a>, Open Graph Integrator will communicate that information to "
|
2964 |
+
"Twitter as well.</li>\n"
|
2965 |
+
"</ul>\n"
|
2966 |
+
msgstr ""
|
2967 |
+
|
2968 |
+
#: modules/permalinks/permalinks.php:15
|
2969 |
+
msgid "Permalink Tweaker"
|
2970 |
+
msgstr "Permalink Tweaker"
|
2971 |
+
|
2972 |
+
#: modules/permalinks/permalinks.php:74
|
2973 |
+
msgid ""
|
2974 |
+
"To use the Permalinks Tweaker, you must disable default (query-string) "
|
2975 |
+
"permalinks in your <a href=\"options-permalink.php\">Permalink Settings</a>."
|
2976 |
+
msgstr ""
|
2977 |
+
"Per l'uso del Permalinks Tweaker, dovrai disattivare i permalink predefiniti "
|
2978 |
+
"(query-string) alla pagina <a href=\"options-permalink.php\">Impostazioni "
|
2979 |
+
"Permalink</a>."
|
2980 |
+
|
2981 |
+
#: modules/permalinks/permalinks.php:99
|
2982 |
+
msgid "Remove the URL bases of..."
|
2983 |
+
msgstr "Rimuovi le basi degli URL per..."
|
2984 |
+
|
2985 |
+
#: modules/permalinks/permalinks.php:104
|
2986 |
+
msgid "Before"
|
2987 |
+
msgstr ""
|
2988 |
+
|
2989 |
+
#: modules/permalinks/permalinks.php:106
|
2990 |
+
msgid "After"
|
2991 |
+
msgstr ""
|
2992 |
+
|
2993 |
+
#: modules/permalinks/permalinks.php:126
|
2994 |
+
#, fuzzy
|
2995 |
+
msgid "term archive"
|
2996 |
+
msgstr "Archivi categoria"
|
2997 |
+
|
2998 |
+
#: modules/permalinks/permalinks.php:127
|
2999 |
+
msgid "page"
|
3000 |
+
msgstr ""
|
3001 |
+
|
3002 |
+
#: modules/permalinks/permalinks.php:128
|
3003 |
+
#, fuzzy
|
3004 |
+
msgid "URL Conflict Resolution"
|
3005 |
+
msgstr "Modalità soluzione conflitto"
|
3006 |
+
|
3007 |
+
#: modules/permalinks/permalinks.php:128
|
3008 |
+
#, php-format
|
3009 |
+
msgid ""
|
3010 |
+
"If a term archive and a Page with the same slug end up having the same URL "
|
3011 |
+
"because of the term’s base being removed, the URL should be given to "
|
3012 |
+
"the %s."
|
3013 |
+
msgstr ""
|
3014 |
+
|
3015 |
+
#: modules/rich-snippets/rich-snippets.php:14
|
3016 |
+
#: modules/rich-snippets/rich-snippets.php:410
|
3017 |
+
msgid "Rich Snippet Creator"
|
3018 |
+
msgstr "Rich Snippet Creator"
|
3019 |
+
|
3020 |
+
#: modules/rich-snippets/rich-snippets.php:25
|
3021 |
+
msgid ""
|
3022 |
+
"Rich Snippet Creator adds a “Search Result Type” dropdown to the "
|
3023 |
+
"WordPress content editor screen. To add rich snippet data to a post, select "
|
3024 |
+
"“Review” or “Place” from a post’s “"
|
3025 |
+
"Search Result Type” dropdown and fill in the fields that appear."
|
3026 |
+
msgstr ""
|
3027 |
+
|
3028 |
+
#: modules/rich-snippets/rich-snippets.php:33
|
3029 |
+
msgid "Schema.org Microdata"
|
3030 |
+
msgstr ""
|
3031 |
+
|
3032 |
+
#: modules/rich-snippets/rich-snippets.php:45
|
3033 |
+
#: modules/rich-snippets/rich-snippets.php:345
|
3034 |
+
msgid "Review"
|
3035 |
+
msgstr "Review"
|
3036 |
+
|
3037 |
+
#: modules/rich-snippets/rich-snippets.php:50
|
3038 |
+
#, fuzzy
|
3039 |
+
msgid "Name of Reviewed Item"
|
3040 |
+
msgstr "Nome elemento valutato:"
|
3041 |
+
|
3042 |
+
#: modules/rich-snippets/rich-snippets.php:53
|
3043 |
+
msgid "Star Rating"
|
3044 |
+
msgstr "Star Rating"
|
3045 |
+
|
3046 |
+
#: modules/rich-snippets/rich-snippets.php:66
|
3047 |
+
#, fuzzy
|
3048 |
+
msgid "Image of Reviewed Item"
|
3049 |
+
msgstr "Nome elemento valutato:"
|
3050 |
+
|
3051 |
+
#: modules/rich-snippets/rich-snippets.php:71
|
3052 |
+
msgid "Review Author"
|
3053 |
+
msgstr "Autore valutazione"
|
3054 |
+
|
3055 |
+
#: modules/rich-snippets/rich-snippets.php:76
|
3056 |
+
msgid "Date Reviewed"
|
3057 |
+
msgstr "Data valutazione"
|
3058 |
+
|
3059 |
+
#: modules/rich-snippets/rich-snippets.php:84
|
3060 |
+
#: modules/rich-snippets/rich-snippets.php:346
|
3061 |
+
msgid "Place"
|
3062 |
+
msgstr ""
|
3063 |
+
|
3064 |
+
#: modules/rich-snippets/rich-snippets.php:88
|
3065 |
+
msgid "Address"
|
3066 |
+
msgstr ""
|
3067 |
+
|
3068 |
+
#: modules/rich-snippets/rich-snippets.php:92
|
3069 |
+
msgid "Street Address"
|
3070 |
+
msgstr ""
|
3071 |
+
|
3072 |
+
#: modules/rich-snippets/rich-snippets.php:95
|
3073 |
+
msgid "PO Box"
|
3074 |
+
msgstr ""
|
3075 |
+
|
3076 |
+
#: modules/rich-snippets/rich-snippets.php:98
|
3077 |
+
#: modules/rich-snippets/rich-snippets.php:101
|
3078 |
+
msgid "City"
|
3079 |
+
msgstr ""
|
3080 |
+
|
3081 |
+
#: modules/rich-snippets/rich-snippets.php:104
|
3082 |
+
msgid "Country"
|
3083 |
+
msgstr ""
|
3084 |
+
|
3085 |
+
#: modules/rich-snippets/rich-snippets.php:107
|
3086 |
+
msgid "Postal Code"
|
3087 |
+
msgstr ""
|
3088 |
+
|
3089 |
+
#: modules/rich-snippets/rich-snippets.php:112
|
3090 |
+
msgid "Fax Number"
|
3091 |
+
msgstr ""
|
3092 |
+
|
3093 |
+
#: modules/rich-snippets/rich-snippets.php:115
|
3094 |
+
#, fuzzy
|
3095 |
+
msgid "Map URL"
|
3096 |
+
msgstr "Maschera URL"
|
3097 |
+
|
3098 |
+
#: modules/rich-snippets/rich-snippets.php:129
|
3099 |
+
msgid "Phone Number"
|
3100 |
+
msgstr ""
|
3101 |
+
|
3102 |
+
#: modules/rich-snippets/rich-snippets.php:306
|
3103 |
+
#, php-format
|
3104 |
+
msgid "Schema.org markup generated by %1$s (%2$s)"
|
3105 |
+
msgstr ""
|
3106 |
+
|
3107 |
+
#: modules/rich-snippets/rich-snippets.php:344
|
3108 |
+
msgid "Standard"
|
3109 |
+
msgstr ""
|
3110 |
+
|
3111 |
+
#: modules/rich-snippets/rich-snippets.php:347
|
3112 |
+
msgid "Search Result Type:"
|
3113 |
+
msgstr ""
|
3114 |
+
|
3115 |
+
#: modules/rich-snippets/rich-snippets.php:352
|
3116 |
+
msgid "Name of Reviewed Item:"
|
3117 |
+
msgstr "Nome elemento valutato:"
|
3118 |
+
|
3119 |
+
#: modules/rich-snippets/rich-snippets.php:354
|
3120 |
+
#, fuzzy
|
3121 |
+
msgid "Image of Reviewed Item:"
|
3122 |
+
msgstr "Nome elemento valutato:"
|
3123 |
+
|
3124 |
+
#: modules/rich-snippets/rich-snippets.php:358
|
3125 |
+
msgid "0.5 stars"
|
3126 |
+
msgstr "0.5 stelle"
|
3127 |
+
|
3128 |
+
#: modules/rich-snippets/rich-snippets.php:359
|
3129 |
+
msgid "1 star"
|
3130 |
+
msgstr "1 stella"
|
3131 |
+
|
3132 |
+
#: modules/rich-snippets/rich-snippets.php:360
|
3133 |
+
msgid "1.5 stars"
|
3134 |
+
msgstr "1.5 stelle"
|
3135 |
+
|
3136 |
+
#: modules/rich-snippets/rich-snippets.php:361
|
3137 |
+
msgid "2 stars"
|
3138 |
+
msgstr "2 stelle"
|
3139 |
+
|
3140 |
+
#: modules/rich-snippets/rich-snippets.php:362
|
3141 |
+
msgid "2.5 stars"
|
3142 |
+
msgstr "2.5 stelle"
|
3143 |
+
|
3144 |
+
#: modules/rich-snippets/rich-snippets.php:363
|
3145 |
+
msgid "3 stars"
|
3146 |
+
msgstr "3 stelle"
|
3147 |
+
|
3148 |
+
#: modules/rich-snippets/rich-snippets.php:364
|
3149 |
+
msgid "3.5 stars"
|
3150 |
+
msgstr "3.5 stelle"
|
3151 |
+
|
3152 |
+
#: modules/rich-snippets/rich-snippets.php:365
|
3153 |
+
msgid "4 stars"
|
3154 |
+
msgstr "4 stelle"
|
3155 |
+
|
3156 |
+
#: modules/rich-snippets/rich-snippets.php:366
|
3157 |
+
msgid "4.5 stars"
|
3158 |
+
msgstr "4.5 stelle"
|
3159 |
+
|
3160 |
+
#: modules/rich-snippets/rich-snippets.php:367
|
3161 |
+
msgid "5 stars"
|
3162 |
+
msgstr "5 stelle"
|
3163 |
+
|
3164 |
+
#: modules/rich-snippets/rich-snippets.php:368
|
3165 |
+
msgid "Star Rating for Reviewed Item:"
|
3166 |
+
msgstr "Star Rating per valutazione elemento:"
|
3167 |
+
|
3168 |
+
#: modules/rich-snippets/rich-snippets.php:374
|
3169 |
+
msgid "Street Address:"
|
3170 |
+
msgstr ""
|
3171 |
+
|
3172 |
+
#: modules/rich-snippets/rich-snippets.php:375
|
3173 |
+
msgid "Post Office Box Number:"
|
3174 |
+
msgstr ""
|
3175 |
+
|
3176 |
+
#: modules/rich-snippets/rich-snippets.php:376
|
3177 |
+
msgid "City:"
|
3178 |
+
msgstr ""
|
3179 |
+
|
3180 |
+
#: modules/rich-snippets/rich-snippets.php:377
|
3181 |
+
msgid "State or Region:"
|
3182 |
+
msgstr ""
|
3183 |
+
|
3184 |
+
#: modules/rich-snippets/rich-snippets.php:378
|
3185 |
+
msgid "Country:"
|
3186 |
+
msgstr ""
|
3187 |
+
|
3188 |
+
#: modules/rich-snippets/rich-snippets.php:379
|
3189 |
+
msgid "Postal Code:"
|
3190 |
+
msgstr ""
|
3191 |
+
|
3192 |
+
#: modules/rich-snippets/rich-snippets.php:380
|
3193 |
+
msgid "Address:"
|
3194 |
+
msgstr ""
|
3195 |
+
|
3196 |
+
#: modules/rich-snippets/rich-snippets.php:381
|
3197 |
+
#, fuzzy
|
3198 |
+
msgid "Map Page:"
|
3199 |
+
msgstr "Pagina"
|
3200 |
+
|
3201 |
+
#: modules/rich-snippets/rich-snippets.php:382
|
3202 |
+
msgid "Phone Number:"
|
3203 |
+
msgstr ""
|
3204 |
+
|
3205 |
+
#: modules/rich-snippets/rich-snippets.php:383
|
3206 |
+
msgid "Fax Number:"
|
3207 |
+
msgstr ""
|
3208 |
+
|
3209 |
+
#: modules/rich-snippets/rich-snippets.php:384
|
3210 |
+
msgid "Photo:"
|
3211 |
+
msgstr ""
|
3212 |
+
|
3213 |
+
#: modules/rich-snippets/rich-snippets.php:393
|
3214 |
+
msgid ""
|
3215 |
+
"\n"
|
3216 |
+
"<ul>\n"
|
3217 |
+
"\t<li><strong>What it does:</strong> Rich Snippet Creator adds special code "
|
3218 |
+
"(called Schema.org data) to your posts that asks Google and other major "
|
3219 |
+
"search engines to display special pertinent information (known as Rich "
|
3220 |
+
"Snippets) in search results for certain types of content. For example, if "
|
3221 |
+
"you’ve written a product review, you can use Rich Snippet Creator to "
|
3222 |
+
"ask Google to display the star rating that you gave the product in your "
|
3223 |
+
"review next to your review webpage when it appears in search results.</li>\n"
|
3224 |
+
"\t<li><strong>Why it helps:</strong> Rich Snippet Creator enhances the "
|
3225 |
+
"search engine results for your content by asking Google to add extra, eye-"
|
3226 |
+
"catching info that could help draw in more search engine visitors.</li>\n"
|
3227 |
+
"\t<li><strong>How it works:</strong> When editing one of your posts or "
|
3228 |
+
"pages, see if your content fits one of the available rich snippet types (for "
|
3229 |
+
"example, a review). If so, select that type from the “Search Result "
|
3230 |
+
"Type” dropdown box. Once you select the applicable type, additional "
|
3231 |
+
"options will appear that vary based on the type selected. For example, a "
|
3232 |
+
"“Star Rating for Reviewed Item” field will appear if you select "
|
3233 |
+
"the “Review” type. Once you save the post/page, Rich Snippet "
|
3234 |
+
"Creator will add the special code to it. You can remove this code at any "
|
3235 |
+
"time by selecting “Standard” from the “Search Result "
|
3236 |
+
"Type” dropdown and resaving the post/page.</li>\n"
|
3237 |
+
"</ul>\n"
|
3238 |
+
msgstr ""
|
3239 |
+
|
3240 |
+
#: modules/rich-snippets/rich-snippets.php:401
|
3241 |
+
msgid ""
|
3242 |
+
"\n"
|
3243 |
+
"<ul>\n"
|
3244 |
+
"\t<li><p><strong>Why aren’t rich snippets showing up in Google search "
|
3245 |
+
"results for my site?</strong><br />Enter the URL of your post/page into <a "
|
3246 |
+
"href='http://www.google.com/webmasters/tools/richsnippets' "
|
3247 |
+
"target='_blank'>Google’s testing tool</a> to make sure Google can find "
|
3248 |
+
"the rich snippet code on your site. If no code is found, check and make sure "
|
3249 |
+
"you’ve enabled rich snippets for that particular post/page.</p><p>Note "
|
3250 |
+
"that having the code on a post/page doesn’t guarantee that Google will "
|
3251 |
+
"actually use it to create a rich snippet. If Google is able to read your "
|
3252 |
+
"code but isn’t using it to generate rich snippets, you can ask Google "
|
3253 |
+
"to do so using <a href='http://www.google.com/support/webmasters/bin/request."
|
3254 |
+
"py?contact_type=rich_snippets_feedback' target='_blank'>this form</a>.</p></"
|
3255 |
+
"li>\n"
|
3256 |
+
"</ul>\n"
|
3257 |
+
msgstr ""
|
3258 |
+
|
3259 |
+
#: modules/sds-blog/sds-blog.php:12 modules/sds-blog/sds-blog.php:13
|
3260 |
+
msgid "Whitepapers"
|
3261 |
+
msgstr "Whitepapers"
|
3262 |
+
|
3263 |
+
#: modules/sds-blog/sds-blog.php:14
|
3264 |
+
msgid "SEO Design Solutions Whitepapers"
|
3265 |
+
msgstr "Appunti da SEO Design Solutions"
|
3266 |
+
|
3267 |
+
#: modules/sds-blog/sds-blog.php:56
|
3268 |
+
msgid "SEO Design Solutions"
|
3269 |
+
msgstr "SEO Design Solutions"
|
3270 |
+
|
3271 |
+
#: modules/sds-blog/sds-blog.php:57
|
3272 |
+
msgid ""
|
3273 |
+
"The search engine optimization articles below are loaded from the website of "
|
3274 |
+
"SEO Design Solutions, the company behind the SEO Ultimate plugin. Click on "
|
3275 |
+
"an article’s title to read it."
|
3276 |
+
msgstr ""
|
3277 |
+
"Gli articoli qui sotto sulla ottimizzazione dei motori di ricerca vengono "
|
3278 |
+
"caricati dal sito di SEO Design Solutions, la company dietro al plugin SEO "
|
3279 |
+
"Ultimate. Clicca sul titolo di un articolo per leggerlo."
|
3280 |
+
|
3281 |
+
#: modules/settings/global-settings.php:18 modules/settings/settings.php:70
|
3282 |
+
msgid "Global Settings"
|
3283 |
+
msgstr "Impostazioni globali"
|
3284 |
+
|
3285 |
+
#: modules/settings/global-settings.php:41
|
3286 |
+
msgid "Identify the plugin’s HTML code insertions with HTML comment tags"
|
3287 |
+
msgstr ""
|
3288 |
+
|
3289 |
+
#: modules/settings/global-settings.php:47
|
3290 |
+
msgid "Show the promo slider for SEO Design Framework on plugin pages"
|
3291 |
+
msgstr ""
|
3292 |
+
|
3293 |
+
#: modules/settings/install.php:18
|
3294 |
+
msgid "Upgrade/Downgrade/Reinstall"
|
3295 |
+
msgstr "Upgrade/Downgrade/Reinstallazione"
|
3296 |
+
|
3297 |
+
#: modules/settings/install.php:19
|
3298 |
+
msgid "Installer"
|
3299 |
+
msgstr "Installatore"
|
3300 |
+
|
3301 |
+
#: modules/settings/install.php:26 modules/settings/install.php:97
|
3302 |
+
msgid "Upgrade"
|
3303 |
+
msgstr "Upgrade"
|
3304 |
+
|
3305 |
+
#: modules/settings/install.php:29 modules/settings/install.php:125
|
3306 |
+
msgid "Downgrade"
|
3307 |
+
msgstr "Downgrade"
|
3308 |
+
|
3309 |
+
#: modules/settings/install.php:32 modules/settings/install.php:146
|
3310 |
+
msgid "Reinstall"
|
3311 |
+
msgstr "Reinstalla"
|
3312 |
+
|
3313 |
+
#: modules/settings/install.php:82 modules/settings/install.php:220
|
3314 |
+
#, fuzzy
|
3315 |
+
msgid "You do not have sufficient permissions to upgrade plugins on this site."
|
3316 |
+
msgstr ""
|
3317 |
+
"Non hai i permessi necessari per potere effettuare una operazione upgrade/"
|
3318 |
+
"downgrade del plugin per questo sito."
|
3319 |
+
|
3320 |
+
#: modules/settings/install.php:91
|
3321 |
+
msgid ""
|
3322 |
+
"From the list below, select the version to which you would like to upgrade. "
|
3323 |
+
"Then click the “Upgrade” button at the bottom of the screen."
|
3324 |
+
msgstr ""
|
3325 |
+
"Seleziona dall'elenco qui sotto a quale versione desideri effettuare "
|
3326 |
+
"l'upgrade. Clicca il pulsante “Upgrade” in fondo alla pagina."
|
3327 |
+
|
3328 |
+
#: modules/settings/install.php:100
|
3329 |
+
msgid "You are already running the latest version."
|
3330 |
+
msgstr "Si sta già utilizzando la versione più recente."
|
3331 |
+
|
3332 |
+
#: modules/settings/install.php:102
|
3333 |
+
msgid ""
|
3334 |
+
"There was an error retrieving the list of available versions. Please try "
|
3335 |
+
"again later. You can also upgrade to the latest version of SEO Ultimate "
|
3336 |
+
"using the WordPress plugin upgrader."
|
3337 |
+
msgstr ""
|
3338 |
+
"Si è verificato un errore durante il recupero della lista delle versioni "
|
3339 |
+
"disponibili. Riprova in un secondo momento. Ricordati che puoi anche "
|
3340 |
+
"effettuare l'aggiornamento alla versione più recente di SEO Ultimate via "
|
3341 |
+
"WordPress plugin upgrader."
|
3342 |
+
|
3343 |
+
#: modules/settings/install.php:108 modules/settings/install.php:202
|
3344 |
+
#, fuzzy
|
3345 |
+
msgid ""
|
3346 |
+
"You do not have sufficient permissions to downgrade plugins on this site."
|
3347 |
+
msgstr ""
|
3348 |
+
"Non hai i permessi necessari per potere effettuare una operazione upgrade/"
|
3349 |
+
"downgrade del plugin per questo sito."
|
3350 |
+
|
3351 |
+
#: modules/settings/install.php:116
|
3352 |
+
msgid ""
|
3353 |
+
"Downgrading is provided as a convenience only and is not officially "
|
3354 |
+
"supported. Although unlikely, you may lose data in the downgrading process. "
|
3355 |
+
"It is your responsibility to backup your database before proceeding."
|
3356 |
+
msgstr ""
|
3357 |
+
"Il downgrading è fornito come pura opportunità di tua convenienza e non è "
|
3358 |
+
"ufficialmente supportato. Sebbene improbabile, potresti perdere i dati "
|
3359 |
+
"durante il processo di downgrading. Ricordati di effettuare il backup del "
|
3360 |
+
"database prima di procedere."
|
3361 |
+
|
3362 |
+
#: modules/settings/install.php:119
|
3363 |
+
msgid ""
|
3364 |
+
"From the list below, select the version to which you would like to "
|
3365 |
+
"downgrade. Then click the “Downgrade” button at the bottom of "
|
3366 |
+
"the screen."
|
3367 |
+
msgstr ""
|
3368 |
+
"Seleziona dall'elenco qui sotto a quale versione desideri effettuare il "
|
3369 |
+
"downgrade. Clicca il pulsante “Downgrade” in fondo alla pagina."
|
3370 |
+
|
3371 |
+
#: modules/settings/install.php:128
|
3372 |
+
#, fuzzy, php-format
|
3373 |
+
msgid ""
|
3374 |
+
"Downgrading to versions earlier than %s is not supported because doing so "
|
3375 |
+
"will result the loss of some or all of your SEO Ultimate settings."
|
3376 |
+
msgstr ""
|
3377 |
+
"Il downgrading a delle versioni precedenti la %s non è previsto poiché "
|
3378 |
+
"questa operazione farebbe perdere i dati."
|
3379 |
+
|
3380 |
+
#: modules/settings/install.php:130
|
3381 |
+
msgid ""
|
3382 |
+
"There was an error retrieving the list of available versions. Please try "
|
3383 |
+
"again later."
|
3384 |
+
msgstr ""
|
3385 |
+
"Si è verificato un errore durante il recupero della lista delle versioni "
|
3386 |
+
"disponibili. Riprova in un secondo momento."
|
3387 |
+
|
3388 |
+
#: modules/settings/install.php:136 modules/settings/install.php:211
|
3389 |
+
#, fuzzy
|
3390 |
+
msgid ""
|
3391 |
+
"You do not have sufficient permissions to reinstall plugins on this site."
|
3392 |
+
msgstr ""
|
3393 |
+
"Non hai i permessi necessari per potere effettuare una operazione upgrade/"
|
3394 |
+
"downgrade del plugin per questo sito."
|
3395 |
+
|
3396 |
+
#: modules/settings/install.php:141
|
3397 |
+
msgid ""
|
3398 |
+
"To download and install a fresh copy of the SEO Ultimate version you are "
|
3399 |
+
"currently using, click the “Reinstall” button below."
|
3400 |
+
msgstr ""
|
3401 |
+
"Per scaricare ed installare una nuova copia della versione SEO Ultimate in "
|
3402 |
+
"uso, clicca il pulsante “Reinstalla” qui sotto."
|
3403 |
+
|
3404 |
+
#: modules/settings/install.php:168
|
3405 |
+
msgid "Your Current Version"
|
3406 |
+
msgstr "La tua versione in uso"
|
3407 |
+
|
3408 |
+
#: modules/settings/install.php:170
|
3409 |
+
msgid "Latest Version"
|
3410 |
+
msgstr "Ultima versione"
|
3411 |
+
|
3412 |
+
#: modules/settings/install.php:199
|
3413 |
+
#, php-format
|
3414 |
+
msgid "Downgrade to SEO Ultimate %s"
|
3415 |
+
msgstr "Downgrade a SEO Ultimate %s"
|
3416 |
+
|
3417 |
+
#: modules/settings/install.php:208
|
3418 |
+
#, php-format
|
3419 |
+
msgid "Reinstall SEO Ultimate %s"
|
3420 |
+
msgstr "Reinstalla SEO Ultimate %s"
|
3421 |
+
|
3422 |
+
#: modules/settings/install.php:217
|
3423 |
+
#, php-format
|
3424 |
+
msgid "Upgrade to SEO Ultimate %s"
|
3425 |
+
msgstr "Aggiorna a SEO Ultimate %s"
|
3426 |
+
|
3427 |
+
#: modules/settings/settings-data.php:16
|
3428 |
+
msgid "Settings Data Manager"
|
3429 |
+
msgstr "Impostazioni gestione dati"
|
3430 |
+
|
3431 |
+
#: modules/settings/settings-data.php:17
|
3432 |
+
msgid "Manage Settings Data"
|
3433 |
+
msgstr "Gestione dati impostazioni"
|
3434 |
+
|
3435 |
+
#: modules/settings/settings-data.php:21
|
3436 |
+
msgid "Import"
|
3437 |
+
msgstr "Importa"
|
3438 |
+
|
3439 |
+
#: modules/settings/settings-data.php:22
|
3440 |
+
msgid "Export"
|
3441 |
+
msgstr "Esporta"
|
3442 |
+
|
3443 |
+
#: modules/settings/settings-data.php:86
|
3444 |
+
msgid "Settings successfully imported."
|
3445 |
+
msgstr "Le impostazioni sono state importate con successo."
|
3446 |
+
|
3447 |
+
#: modules/settings/settings-data.php:88
|
3448 |
+
msgid ""
|
3449 |
+
"The uploaded file is not in the proper format. Settings could not be "
|
3450 |
+
"imported."
|
3451 |
+
msgstr ""
|
3452 |
+
"Il file caricato non ha un formato coerente. Le impostazioni non sono state "
|
3453 |
+
"importate."
|
3454 |
+
|
3455 |
+
#: modules/settings/settings-data.php:90
|
3456 |
+
msgid "The settings file could not be uploaded successfully."
|
3457 |
+
msgstr "Il file delle impostazioni non può essere caricato con successo."
|
3458 |
+
|
3459 |
+
#: modules/settings/settings-data.php:93
|
3460 |
+
msgid ""
|
3461 |
+
"Settings could not be imported because no settings file was selected. Please "
|
3462 |
+
"click the “Browse” button and select a file to import."
|
3463 |
+
msgstr ""
|
3464 |
+
"Le impostazioni non possono essere caricate perché non è stato selezionato "
|
3465 |
+
"nessun file. Clicca il pulsante “Sfoglia” e seleziona un file da "
|
3466 |
+
"importare."
|
3467 |
+
|
3468 |
+
#: modules/settings/settings-data.php:140
|
3469 |
+
msgid ""
|
3470 |
+
"The uploaded file is not in the proper format. Links could not be imported."
|
3471 |
+
msgstr ""
|
3472 |
+
"Il file che hai caricato non ha una estensione coerente. I link non possono "
|
3473 |
+
"essere importati."
|
3474 |
+
|
3475 |
+
#: modules/settings/settings-data.php:182
|
3476 |
+
msgid "Links successfully imported."
|
3477 |
+
msgstr "Link importati con successo."
|
3478 |
+
|
3479 |
+
#: modules/settings/settings-data.php:185
|
3480 |
+
msgid "The CSV file could not be uploaded successfully."
|
3481 |
+
msgstr "Il file CSV non può essere caricato con successo."
|
3482 |
+
|
3483 |
+
#: modules/settings/settings-data.php:188
|
3484 |
+
msgid ""
|
3485 |
+
"Links could not be imported because no CSV file was selected. Please click "
|
3486 |
+
"the “Browse” button and select a file to import."
|
3487 |
+
msgstr ""
|
3488 |
+
"I link non possono essere importati poiché nessun file CSV è stato "
|
3489 |
+
"selezionato. Clicca sul pulsante “Sfoglia” e seleziona il file "
|
3490 |
+
"da importare."
|
3491 |
+
|
3492 |
+
#: modules/settings/settings-data.php:198
|
3493 |
+
msgid "Import SEO Ultimate Settings File"
|
3494 |
+
msgstr "Importa file impostazioni SEO Ultimate"
|
3495 |
+
|
3496 |
+
#: modules/settings/settings-data.php:200
|
3497 |
+
msgid ""
|
3498 |
+
"You can use this form to upload and import an SEO Ultimate settings file "
|
3499 |
+
"stored on your computer. (These files can be created using the Export tool.) "
|
3500 |
+
"Note that importing a file will overwrite your existing settings with those "
|
3501 |
+
"in the file."
|
3502 |
+
msgstr ""
|
3503 |
+
"Puoi usare questo modulo per caricare ed importare un file impostazioni SEO "
|
3504 |
+
"Ultimate allocato nel tuo computer. (Questi file possono essere creati "
|
3505 |
+
"usando lo strumento di esportazione). Nota: l'importazione di un file "
|
3506 |
+
"sovrascriverà le impostazioni già esistenti sostituendole con quelle "
|
3507 |
+
"presenti nel file."
|
3508 |
+
|
3509 |
+
#: modules/settings/settings-data.php:204
|
3510 |
+
msgid ""
|
3511 |
+
"Are you sure you want to import this settings file? This will overwrite your "
|
3512 |
+
"current settings and cannot be undone."
|
3513 |
+
msgstr ""
|
3514 |
+
"Sei certo di volere importare questo file di impostazioni? Questa operazione "
|
3515 |
+
"(irreversibile) sovrascriverà le impostazioni in uso."
|
3516 |
+
|
3517 |
+
#: modules/settings/settings-data.php:205
|
3518 |
+
msgid "Import Settings File"
|
3519 |
+
msgstr "Importa file impostazioni"
|
3520 |
+
|
3521 |
+
#: modules/settings/settings-data.php:211
|
3522 |
+
msgid "Import Deeplink Juggernaut CSV File"
|
3523 |
+
msgstr "Importa file CSV Deeplink Juggernaut"
|
3524 |
+
|
3525 |
+
#: modules/settings/settings-data.php:213
|
3526 |
+
msgid ""
|
3527 |
+
"You can use this form to upload and import a Deeplink Juggernaut CSV file "
|
3528 |
+
"stored on your computer. (These files can be created using the Export tool.) "
|
3529 |
+
"Note that importing a file will overwrite your existing links with those in "
|
3530 |
+
"the file."
|
3531 |
+
msgstr ""
|
3532 |
+
"Puoi usare questo modulo per caricare ed importare un file CSV Deeplink "
|
3533 |
+
"Juggernaut allocato nel tuo computer. (Questi file possono essere creati "
|
3534 |
+
"usando lo strumento di esportazione). Nota: l'importazione di un file "
|
3535 |
+
"sovrascriverà i link già esistenti sostituendoli con quelli presenti nel "
|
3536 |
+
"file."
|
3537 |
+
|
3538 |
+
#: modules/settings/settings-data.php:217
|
3539 |
+
msgid ""
|
3540 |
+
"Are you sure you want to import this CSV file? This will overwrite your "
|
3541 |
+
"current Deeplink Juggernaut links and cannot be undone."
|
3542 |
+
msgstr ""
|
3543 |
+
"Sei certo di volere importare questo file CSV? Questa operazione "
|
3544 |
+
"(irreversibile) sovrascriverà i link di Deeplink Juggernaut."
|
3545 |
+
|
3546 |
+
#: modules/settings/settings-data.php:218
|
3547 |
+
msgid "Import CSV File"
|
3548 |
+
msgstr "Importa file CSV"
|
3549 |
+
|
3550 |
+
#: modules/settings/settings-data.php:233
|
3551 |
+
msgid "Import from Other Plugins"
|
3552 |
+
msgstr "Importa da altri plugin"
|
3553 |
+
|
3554 |
+
#: modules/settings/settings-data.php:235
|
3555 |
+
msgid ""
|
3556 |
+
"You can import settings and data from these plugins. Clicking a plugin’"
|
3557 |
+
"s name will take you to the importer page, where you can customize "
|
3558 |
+
"parameters and start the import."
|
3559 |
+
msgstr ""
|
3560 |
+
"Puoi importare le impostazioni ed i dati da questi plugin. Cliccando sul "
|
3561 |
+
"nome del plugin verrai indirizzato alla pagina delle importazioni laddove "
|
3562 |
+
"potrai personalizzare i parametri ed avviare l'importazione."
|
3563 |
+
|
3564 |
+
#: modules/settings/settings-data.php:255
|
3565 |
+
msgid "Export SEO Ultimate Settings File"
|
3566 |
+
msgstr "Esporta file impostazioni SEO Ultimate"
|
3567 |
+
|
3568 |
+
#: modules/settings/settings-data.php:257
|
3569 |
+
msgid ""
|
3570 |
+
"You can use this export tool to download an SEO Ultimate settings file to "
|
3571 |
+
"your computer."
|
3572 |
+
msgstr ""
|
3573 |
+
"Puoi usare lo strumento di importazione per scaricare sul tuo computer il "
|
3574 |
+
"file delle impostazioni di SEO Ultimate."
|
3575 |
+
|
3576 |
+
#: modules/settings/settings-data.php:259
|
3577 |
+
msgid ""
|
3578 |
+
"A settings file includes the data of every checkbox and textbox of every "
|
3579 |
+
"installed module. It does NOT include site-specific data like logged 404s or "
|
3580 |
+
"post/page title/meta data (this data would be included in a standard "
|
3581 |
+
"database backup, however)."
|
3582 |
+
msgstr ""
|
3583 |
+
"Un file delle impostazioni contiene i dati di ogni casella di selezione e "
|
3584 |
+
"testo di ogni modulo installato. NON include i dati per sito-specifico quali "
|
3585 |
+
"404 da loggato o dati articolo/pagina titolo/meta (questi dati dovrebbero "
|
3586 |
+
"comunque essere inclusi in un comune backup del database)."
|
3587 |
+
|
3588 |
+
#: modules/settings/settings-data.php:262
|
3589 |
+
msgid "Download Settings File"
|
3590 |
+
msgstr "Scarica file impostazioni"
|
3591 |
+
|
3592 |
+
#: modules/settings/settings-data.php:267
|
3593 |
+
msgid "Export Deeplink Juggernaut CSV File"
|
3594 |
+
msgstr "Esporta Deeplink Juggernaut a file CSV"
|
3595 |
+
|
3596 |
+
#: modules/settings/settings-data.php:269
|
3597 |
+
msgid ""
|
3598 |
+
"You can use this export tool to download a CSV file (comma-separated values "
|
3599 |
+
"file) that contains your Deeplink Juggernaut links. Once you download this "
|
3600 |
+
"file to your computer, you can edit it using your favorite spreadsheet "
|
3601 |
+
"program. When you’re done editing, you can re-upload the file using "
|
3602 |
+
"the Import tool."
|
3603 |
+
msgstr ""
|
3604 |
+
"Puoi usare questo strumento di esportazione per scaricare un file CSV (file "
|
3605 |
+
"comma-separated values) che contenga i tuoi link Deeplink Juggernaut. Una "
|
3606 |
+
"volta scaricato questo file nel tuo computer, potrai modificarlo utilizzando "
|
3607 |
+
"un programma per la gestione dei fogli di calcolo di tua preferenza. Una "
|
3608 |
+
"volta completata la modifica, potrai ri-caricare il file utilizzando lo "
|
3609 |
+
"strumento di importazione."
|
3610 |
+
|
3611 |
+
#: modules/settings/settings-data.php:272
|
3612 |
+
msgid "Download CSV File"
|
3613 |
+
msgstr "Scarica file CSV"
|
3614 |
+
|
3615 |
+
#: modules/settings/settings-data.php:279
|
3616 |
+
msgid "All settings have been erased and defaults have been restored."
|
3617 |
+
msgstr ""
|
3618 |
+
"Tutte le impostazioni sono state cancellate e ripristinate le predefinite."
|
3619 |
+
|
3620 |
+
#: modules/settings/settings-data.php:281
|
3621 |
+
msgid ""
|
3622 |
+
"You can erase all your SEO Ultimate settings and restore them to “"
|
3623 |
+
"factory defaults” by clicking the button below."
|
3624 |
+
msgstr ""
|
3625 |
+
"Puoi cancellare tutte le impostazioni di SEO Ultimate e ripristinare alle "
|
3626 |
+
"“predefinite” cliccando il pulsante qui sotto."
|
3627 |
+
|
3628 |
+
#: modules/settings/settings-data.php:284
|
3629 |
+
msgid ""
|
3630 |
+
"Are you sure you want to erase all module settings? This cannot be undone."
|
3631 |
+
msgstr ""
|
3632 |
+
"Sei certo di volere cancellare le impostazioni di tutti i moduli? "
|
3633 |
+
"L'operazione sarà irreversibile."
|
3634 |
+
|
3635 |
+
#: modules/settings/settings-data.php:285
|
3636 |
+
msgid "Restore Default Settings"
|
3637 |
+
msgstr "Ripristino impostazioni predefinite"
|
3638 |
+
|
3639 |
+
#: modules/settings/settings.php:14
|
3640 |
+
msgid "Plugin Management"
|
3641 |
+
msgstr ""
|
3642 |
+
|
3643 |
+
#: modules/settings/settings.php:16
|
3644 |
+
msgid "Plugin Settings"
|
3645 |
+
msgstr "Impostazioni plugin"
|
3646 |
+
|
3647 |
+
#: modules/settings/settings.php:21
|
3648 |
+
#, fuzzy
|
3649 |
+
msgid "SEO Ultimate Plugin Management"
|
3650 |
+
msgstr "Impostazioni plugin SEO Ultimate"
|
3651 |
+
|
3652 |
+
#: modules/settings/settings.php:23
|
3653 |
+
msgid "SEO Ultimate Plugin Settings"
|
3654 |
+
msgstr "Impostazioni plugin SEO Ultimate"
|
3655 |
+
|
3656 |
+
#: modules/settings/settings.php:26 plugin/class.seo-ultimate.php:847
|
3657 |
+
msgid "SEO Ultimate"
|
3658 |
+
msgstr "SEO Ultimate"
|
3659 |
+
|
3660 |
+
#: modules/settings/settings.php:64
|
3661 |
+
msgid ""
|
3662 |
+
"\n"
|
3663 |
+
"<p>The Settings module lets you manage settings related to the SEO Ultimate "
|
3664 |
+
"plugin as a whole.</p>\n"
|
3665 |
+
msgstr ""
|
3666 |
+
|
3667 |
+
#: modules/settings/settings.php:71
|
3668 |
+
msgid ""
|
3669 |
+
"\n"
|
3670 |
+
"<p>Here’s information on some of the settings:</p>\n"
|
3671 |
+
"<ul>\n"
|
3672 |
+
"\t<li><strong>Identify the plugin’s HTML code insertions with HTML "
|
3673 |
+
"comment tags</strong> — If enabled, SEO Ultimate will use HTML "
|
3674 |
+
"comments to identify all code it inserts into your <code><head></code> "
|
3675 |
+
"tag. This is useful if you’re trying to figure out whether or not SEO "
|
3676 |
+
"Ultimate is inserting a certain piece of header code.</li>\n"
|
3677 |
+
"\t<li><strong>Enable nofollow’d attribution link on my site</strong> "
|
3678 |
+
"— If enabled, the plugin will display an attribution link on your site."
|
3679 |
+
"</li>\n"
|
3680 |
+
"</ul>\n"
|
3681 |
+
msgstr ""
|
3682 |
+
|
3683 |
+
#: modules/settings/settings.php:82
|
3684 |
+
msgid ""
|
3685 |
+
"\n"
|
3686 |
+
"<ul>\n"
|
3687 |
+
"\t<li>\n"
|
3688 |
+
"\t\t<p><strong>Why doesn’t the settings exporter include all my data "
|
3689 |
+
"in an export?</strong><br />The settings export/import system is designed to "
|
3690 |
+
"facilitate moving settings between sites. It is NOT a replacement for "
|
3691 |
+
"keeping your database backed up. The settings exporter doesn’t include "
|
3692 |
+
"data that is specific to your site. For example, logged 404 errors are not "
|
3693 |
+
"included because those 404 errors only apply to your site, not another site. "
|
3694 |
+
"Also, post/page titles/meta are not included because the site into which you "
|
3695 |
+
"import the file could have totally different posts/pages located under the "
|
3696 |
+
"same ID numbers.</p>\n"
|
3697 |
+
"\t\t<p>If you’re moving a site to a different server or restoring a "
|
3698 |
+
"crashed site, you should do so with database backup/restore.</p>\n"
|
3699 |
+
"\t</li>\n"
|
3700 |
+
"</ul>\n"
|
3701 |
+
msgstr ""
|
3702 |
+
|
3703 |
+
#: modules/settings/uninstall.php:17
|
3704 |
+
msgid "Uninstaller"
|
3705 |
+
msgstr "Disinstallatore"
|
3706 |
+
|
3707 |
+
#: modules/settings/uninstall.php:18 modules/settings/uninstall.php:22
|
3708 |
+
#: plugin/class.seo-ultimate.php:1395
|
3709 |
+
msgid "Uninstall"
|
3710 |
+
msgstr "Disinstalla"
|
3711 |
+
|
3712 |
+
#: modules/settings/uninstall.php:61 modules/settings/uninstall.php:81
|
3713 |
+
#, fuzzy
|
3714 |
+
msgid "You do not have sufficient permissions to delete plugins on this site."
|
3715 |
+
msgstr ""
|
3716 |
+
"Non hai i permessi necessari per potere effettuare una operazione upgrade/"
|
3717 |
+
"downgrade del plugin per questo sito."
|
3718 |
+
|
3719 |
+
#: modules/settings/uninstall.php:66
|
3720 |
+
msgid ""
|
3721 |
+
"Uninstalling SEO Ultimate will delete your settings and the plugin’s "
|
3722 |
+
"files."
|
3723 |
+
msgstr ""
|
3724 |
+
"La disinstallazione di SEO Ultimate cancellerà le impostazioni "
|
3725 |
+
"personalizzate ed i file del plugin."
|
3726 |
+
|
3727 |
+
#: modules/settings/uninstall.php:69
|
3728 |
+
msgid ""
|
3729 |
+
"Are you sure you want to uninstall SEO Ultimate? This will permanently erase "
|
3730 |
+
"your SEO Ultimate settings and cannot be undone."
|
3731 |
+
msgstr ""
|
3732 |
+
"Sei certo di volere disinstallare SEO Ultimate? Questa operazione "
|
3733 |
+
"(irreversibile) cancellerà definitivamente le tue impostazioni di SEO "
|
3734 |
+
"Ultimate."
|
3735 |
+
|
3736 |
+
#: modules/settings/uninstall.php:70
|
3737 |
+
msgid "Uninstall Now"
|
3738 |
+
msgstr "Disinstalla adesso"
|
3739 |
+
|
3740 |
+
#: modules/settings/uninstall.php:74 modules/settings/uninstall.php:85
|
3741 |
+
msgid "Uninstall SEO Ultimate"
|
3742 |
+
msgstr "Disinstalla SEO Ultimate"
|
3743 |
+
|
3744 |
+
#: modules/settings/uninstall.php:89
|
3745 |
+
msgid "Deleted settings."
|
3746 |
+
msgstr "Le impostazioni sono state cancellate."
|
3747 |
+
|
3748 |
+
#: modules/settings/uninstall.php:96
|
3749 |
+
msgid "An error occurred while deleting files."
|
3750 |
+
msgstr "Si è verificato un errore durante la cancellazione dei file."
|
3751 |
+
|
3752 |
+
#: modules/settings/uninstall.php:98
|
3753 |
+
msgid "Deleted files."
|
3754 |
+
msgstr "I file sono stati cancellati."
|
3755 |
+
|
3756 |
+
#: modules/settings/uninstall.php:99
|
3757 |
+
msgid "Uninstallation complete. Thanks for trying SEO Ultimate."
|
3758 |
+
msgstr ""
|
3759 |
+
"La disinstallazione è stata effettuata. Grazie per avere provato SEO "
|
3760 |
+
"Ultimate."
|
3761 |
+
|
3762 |
+
#: modules/sharing-buttons/sharing-buttons.php:12
|
3763 |
+
#: modules/sharing-buttons/sharing-buttons.php:80
|
3764 |
+
msgid "Sharing Facilitator"
|
3765 |
+
msgstr "Sharing Facilitator"
|
3766 |
+
|
3767 |
+
#: modules/sharing-buttons/sharing-buttons.php:25
|
3768 |
+
msgid "Bookmark and Share"
|
3769 |
+
msgstr "Segnalibro e Share"
|
3770 |
+
|
3771 |
+
#: modules/sharing-buttons/sharing-buttons.php:40
|
3772 |
+
msgid "None; disable sharing buttons"
|
3773 |
+
msgstr "Nessuno: disattiva i pulsanti sharing"
|
3774 |
+
|
3775 |
+
#: modules/sharing-buttons/sharing-buttons.php:41
|
3776 |
+
msgid "Use the ShareThis button"
|
3777 |
+
msgstr "Uso il pulsante ShareThis"
|
3778 |
+
|
3779 |
+
#: modules/sharing-buttons/sharing-buttons.php:42
|
3780 |
+
msgid "Use the AddThis button"
|
3781 |
+
msgstr "Uso il pulsante AddThis"
|
3782 |
|
3783 |
+
#: modules/sharing-buttons/sharing-buttons.php:43
|
3784 |
+
msgid "Which provider would you like to use for your sharing buttons?"
|
3785 |
+
msgstr ""
|
3786 |
+
"Quale servizio desideri utilizzare per i tuoi pulsanti di condivisione?"
|
3787 |
|
|
|
|
|
|