Version Description
- The design of the plugin settings page is completely redone.
- Added additional donate link to the "Plugins" page.
- Advertisement banner removed.
- The 'Using' section renamed to 'Usage'.
- My Unicode signature added to the main file.
- The donate button replaced with new.
- The 'Donate' section renamed to 'Support'.
- The 'donate.png' image removed.
- Options from the settings page moved to a separate file.
- The "Usage" section removed from the sidebar area.
- Added stylized descriptions of sections on the "Settings" tab.
- Additional "Support" section added.
- Added tab navigation menu for the settings page.
- Added additional tabs on the settings page.
- Code of the 'admin.css' file improved and better commented.
- A full version of the Bootstrap framework is integrated.
- The 'allmetatags_load_scripts' function renamed to 'allmetatags_load_scripts_admin'.
- Added the CSS code for the custom list numbers on the plugin settings page.
- The main font is changed to "Verdana".
- All PHP and HTML code is better formatted.
- The header on the settings page of plugin is redesigned.
- The "LICENSE.txt" file renamed to "license.txt".
- The "humans.txt" file added.
- On the plugin settings page, the "valign='top'" attribute removed from the "tr" element of HTML table and added the appropriate analog in CSS .
- The "_service_info" setting added to the data-base.
- Added function for managing information about the version number of the plugin.
- Added the "Hello" message that show when the plugin is just installed.
- Added the "Error" message that show when user is trying to degrade the version number of the plugin.
- Fixed the parameter that contain the path to source files in all translation files.
- The POT file updated.
- Translations updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | All Meta Tags |
Version | 4.0 |
Comparing to | |
See all releases |
Code changes from version 3.8 to 4.0
- all-meta-tags.php +27 -317
- humans.txt +39 -0
- inc/css/admin.css +360 -36
- inc/img/banner.png +0 -0
- inc/img/donate.png +0 -0
- inc/js/admin.js +25 -4
- inc/lib/bootstrap/bootstrap-theme.css +5 -0
- inc/lib/bootstrap/bootstrap.css +5 -0
- inc/lib/bootstrap/bootstrap.js +7 -0
- inc/php/core.php +75 -0
- inc/php/enqueue.php +34 -0
- inc/php/functional.php +239 -0
- inc/php/messages.php +79 -0
- inc/php/page.php +202 -0
- inc/php/settings.php +252 -0
- inc/php/settings_page.php +0 -273
- inc/php/uninstall.php +18 -0
- inc/php/version.php +70 -0
- languages/Readme.txt +1 -1
- languages/all-meta-tags-es_ES.mo +0 -0
- languages/all-meta-tags-es_ES.po +309 -89
- languages/all-meta-tags-es_MX.mo +0 -0
- languages/all-meta-tags-es_MX.po +321 -92
- languages/all-meta-tags-it_IT.mo +0 -0
- languages/all-meta-tags-it_IT.po +315 -98
- languages/all-meta-tags-ru_RU.mo +0 -0
- languages/all-meta-tags-ru_RU.po +356 -110
- languages/all-meta-tags.pot +323 -136
- LICENSE.txt → license.txt +1 -1
- readme.txt +104 -29
all-meta-tags.php
CHANGED
@@ -5,12 +5,12 @@
|
|
5 |
* Description: Easily and safely add your custom Meta Tags to WordPress website's header.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: http://www.arthurgareginyan.com
|
8 |
-
* Version:
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
-
* Copyright 2015-
|
14 |
*
|
15 |
* This file is part of "All Meta Tags".
|
16 |
*
|
@@ -27,6 +27,21 @@
|
|
27 |
* You should have received a copy of the GNU General Public License
|
28 |
* along with "All Meta Tags". If not, see <http://www.gnu.org/licenses/>.
|
29 |
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
*/
|
31 |
|
32 |
|
@@ -47,322 +62,17 @@ defined('ALLMT_BASE') or define('ALLMT_BASE', plugin_basename(__FILE__));
|
|
47 |
defined('ALLMT_URL') or define('ALLMT_URL', plugin_dir_url(__FILE__));
|
48 |
defined('ALLMT_PATH') or define('ALLMT_PATH', plugin_dir_path(__FILE__));
|
49 |
defined('ALLMT_TEXT') or define('ALLMT_TEXT', 'all-meta-tags');
|
50 |
-
defined('ALLMT_VERSION') or define('ALLMT_VERSION', '
|
51 |
-
|
52 |
-
/**
|
53 |
-
* Register text domain
|
54 |
-
*
|
55 |
-
* @since 2.0
|
56 |
-
*/
|
57 |
-
function allmetatags_textdomain() {
|
58 |
-
load_plugin_textdomain( ALLMT_TEXT, false, ALLMT_DIR . '/languages/' );
|
59 |
-
}
|
60 |
-
add_action( 'init', 'allmetatags_textdomain' );
|
61 |
-
|
62 |
-
/**
|
63 |
-
* Print direct link to All Meta Tags admin page
|
64 |
-
*
|
65 |
-
* Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
|
66 |
-
* and inserts a link to the All Meta Tags admin page
|
67 |
-
*
|
68 |
-
* @since 2.0
|
69 |
-
* @param array $links Array of links generated by WP in Plugin Admin page.
|
70 |
-
* @return array Array of links to be output on Plugin Admin page.
|
71 |
-
*/
|
72 |
-
function allmetatags_settings_link( $links ) {
|
73 |
-
$settings_page = '<a href="' . admin_url( 'options-general.php?page=all-meta-tags.php' ) .'">' . __( 'Settings', ALLMT_TEXT ) . '</a>';
|
74 |
-
array_unshift( $links, $settings_page );
|
75 |
-
return $links;
|
76 |
-
}
|
77 |
-
add_filter( 'plugin_action_links_'.ALLMT_BASE, 'allmetatags_settings_link' );
|
78 |
-
|
79 |
-
/**
|
80 |
-
* Register "All Meta Tags" submenu in "Settings" Admin Menu
|
81 |
-
*
|
82 |
-
* @since 2.0
|
83 |
-
*/
|
84 |
-
function allmetatags_register_submenu_page() {
|
85 |
-
add_options_page( __( 'All Meta Tags', ALLMT_TEXT ), __( 'All Meta Tags', ALLMT_TEXT ), 'manage_options', basename( __FILE__ ), 'allmetatags_render_submenu_page' );
|
86 |
-
}
|
87 |
-
add_action( 'admin_menu', 'allmetatags_register_submenu_page' );
|
88 |
-
|
89 |
-
/**
|
90 |
-
* Attach Settings Page
|
91 |
-
*
|
92 |
-
* @since 3.0
|
93 |
-
*/
|
94 |
-
require_once( ALLMT_PATH . 'inc/php/settings_page.php' );
|
95 |
-
|
96 |
-
/**
|
97 |
-
* Load scripts and style sheet for settings page
|
98 |
-
*
|
99 |
-
* @since 3.1
|
100 |
-
*/
|
101 |
-
function allmetatags_load_scripts($hook) {
|
102 |
-
|
103 |
-
// Return if the page is not a settings page of this plugin
|
104 |
-
if ( 'settings_page_all-meta-tags' != $hook ) {
|
105 |
-
return;
|
106 |
-
}
|
107 |
-
|
108 |
-
// Style sheet
|
109 |
-
wp_enqueue_style( 'allmetatags-admin-css', ALLMT_URL . 'inc/css/admin.css' );
|
110 |
-
|
111 |
-
// JavaScript
|
112 |
-
wp_enqueue_script( 'allmetatags-admin-js', ALLMT_URL . 'inc/js/admin.js', array(), false, true );
|
113 |
-
|
114 |
-
}
|
115 |
-
add_action( 'admin_enqueue_scripts', 'allmetatags_load_scripts' );
|
116 |
-
|
117 |
-
/**
|
118 |
-
* Register settings
|
119 |
-
*
|
120 |
-
* @since 0.1
|
121 |
-
*/
|
122 |
-
function allmetatags_register_settings() {
|
123 |
-
register_setting( 'allmetatags_settings_group', 'allmetatags_settings' );
|
124 |
-
}
|
125 |
-
add_action( 'admin_init', 'allmetatags_register_settings' );
|
126 |
-
|
127 |
-
/**
|
128 |
-
* Render fields
|
129 |
-
*
|
130 |
-
* @since 3.2
|
131 |
-
*/
|
132 |
-
function allmetatags_field($name, $label, $placeholder, $help=null, $link=null, $textarea=null) {
|
133 |
-
|
134 |
-
// Declare variables
|
135 |
-
$options = get_option( 'allmetatags_settings' );
|
136 |
-
|
137 |
-
if ( !empty($options[$name]) ) :
|
138 |
-
$value = esc_attr( $options[$name] );
|
139 |
-
else :
|
140 |
-
$value = "";
|
141 |
-
endif;
|
142 |
-
|
143 |
-
// Generate the table
|
144 |
-
if ( !empty($link) ) :
|
145 |
-
$link_out = "<a href='$link' target='_blank'>$label</a>";
|
146 |
-
else :
|
147 |
-
$link_out = "$label";
|
148 |
-
endif;
|
149 |
-
|
150 |
-
if ( !empty($textarea) ) :
|
151 |
-
$field_out = "<textarea cols='50' rows='3' name='allmetatags_settings[$name]' placeholder='$placeholder'>$value</textarea>";
|
152 |
-
else :
|
153 |
-
$field_out = "<input type='text' name='allmetatags_settings[$name]' size='50' value='$value' placeholder='$placeholder'>";
|
154 |
-
endif;
|
155 |
-
|
156 |
-
if ( !empty($help) ) :
|
157 |
-
$help_out = "<tr valign='top'>
|
158 |
-
<td></td>
|
159 |
-
<td class='help-text'>
|
160 |
-
$help
|
161 |
-
</td>
|
162 |
-
</tr>";
|
163 |
-
else :
|
164 |
-
$help_out = "";
|
165 |
-
endif;
|
166 |
-
|
167 |
-
// Put table to the variable
|
168 |
-
$out = "<tr valign='top'>
|
169 |
-
<th scope='row'>
|
170 |
-
$link_out
|
171 |
-
</th>
|
172 |
-
<td>
|
173 |
-
$field_out
|
174 |
-
</td>
|
175 |
-
</tr>
|
176 |
-
$help_out";
|
177 |
-
|
178 |
-
// Print the generated table
|
179 |
-
echo $out;
|
180 |
-
}
|
181 |
-
|
182 |
-
/**
|
183 |
-
* Generate the Meta Tags
|
184 |
-
*
|
185 |
-
* @since 3.8
|
186 |
-
*/
|
187 |
-
function allmetatags_add_meta_tags() {
|
188 |
-
|
189 |
-
// Read options from BD, sanitiz data and declare variables
|
190 |
-
$options = get_option( 'allmetatags_settings' );
|
191 |
-
|
192 |
-
$google = esc_textarea( $options['google'] );
|
193 |
-
$bing = esc_textarea( $options['bing'] );
|
194 |
-
$yandex = esc_textarea( $options['yandex'] );
|
195 |
-
|
196 |
-
$alexa = esc_textarea( $options['alexa'] );
|
197 |
-
$pinterest = esc_textarea( $options['pinterest'] );
|
198 |
-
$google_author = esc_textarea( $options['google_author'] );
|
199 |
-
$facebook = esc_textarea( $options['facebook'] );
|
200 |
-
$twitter = esc_textarea( $options['twitter'] );
|
201 |
-
$norton = esc_textarea( $options['norton'] );
|
202 |
-
$wot = esc_textarea( $options['wot'] );
|
203 |
-
$specificfeeds = esc_textarea( $options['specificfeeds'] );
|
204 |
-
$custom_meta = $options['custom_meta'];
|
205 |
-
|
206 |
-
$home_description = esc_textarea( $options['home_description'] );
|
207 |
-
$home_keywords = esc_textarea( $options['home_keywords'] );
|
208 |
-
|
209 |
-
$blog_description = esc_textarea( $options['blog_description'] );
|
210 |
-
$blog_keywords = esc_textarea( $options['blog_keywords'] );
|
211 |
-
|
212 |
-
$author = esc_textarea( $options['author'] );
|
213 |
-
$designer = esc_textarea( $options['designer'] );
|
214 |
-
$contact = esc_textarea( $options['contact'] );
|
215 |
-
$copyright = esc_textarea( $options['copyright'] );
|
216 |
-
$keywords = esc_textarea( $options['keywords'] );
|
217 |
-
|
218 |
-
$metatags_arr[] = "";
|
219 |
-
|
220 |
-
// Web Master Tools
|
221 |
-
if (!empty($google)) {
|
222 |
-
$metatags_arr[] = "<meta name='google-site-verification' content='$google' />";
|
223 |
-
}
|
224 |
-
if (!empty($yandex)) {
|
225 |
-
$metatags_arr[] = "<meta name='yandex-verification' content='$yandex' />";
|
226 |
-
}
|
227 |
-
if (!empty($bing)) {
|
228 |
-
$metatags_arr[] = "<meta name='msvalidate.01' content='$bing' />";
|
229 |
-
}
|
230 |
-
|
231 |
-
// Website Verification Services
|
232 |
-
if (!empty($pinterest)) {
|
233 |
-
$metatags_arr[] = "<meta name='p:domain_verify' content='$pinterest' />";
|
234 |
-
}
|
235 |
-
if (!empty($google_author)) {
|
236 |
-
$metatags_arr[] = "<link rel='author' href='$google_author'>";
|
237 |
-
}
|
238 |
-
if (!empty($facebook)) {
|
239 |
-
$metatags_arr[] = "<meta name='article:publisher' content='$facebook' />";
|
240 |
-
}
|
241 |
-
if (!empty($twitter)) {
|
242 |
-
$metatags_arr[] = "<meta name='twitter:site' content='$twitter' />";
|
243 |
-
$metatags_arr[] = "<meta name='twitter:creator' content='$twitter' />";
|
244 |
-
}
|
245 |
-
if (!empty($alexa)) {
|
246 |
-
$metatags_arr[] = "<meta name='alexaVerifyID' content='$alexa' />";
|
247 |
-
}
|
248 |
-
if (!empty($norton)) {
|
249 |
-
$metatags_arr[] = "<meta name='norton-safeweb-site-verification' content='$norton' />";
|
250 |
-
}
|
251 |
-
if (!empty($wot)) {
|
252 |
-
$metatags_arr[] = "<meta name='wot-verification' content='$wot' />";
|
253 |
-
}
|
254 |
-
if (!empty($specificfeeds)) {
|
255 |
-
$metatags_arr[] = "<meta name='specificfeeds-verification-code' content='$specificfeeds' />";
|
256 |
-
}
|
257 |
-
if (!empty($custom_meta)) {
|
258 |
-
$metatags_arr[] = $custom_meta;
|
259 |
-
}
|
260 |
-
|
261 |
-
// Meta Tags for specific pages
|
262 |
-
if ( is_front_page() && is_home() ) {
|
263 |
-
// Default Home Page
|
264 |
-
if (!empty($home_description)) {
|
265 |
-
$metatags_arr[] = "<meta name='description' content='$blog_description' />";
|
266 |
-
}
|
267 |
-
if (!empty($home_keywords)) {
|
268 |
-
$metatags_arr[] = "<meta name='keywords' content='$blog_keywords' />";
|
269 |
-
}
|
270 |
-
} elseif ( is_front_page() ) {
|
271 |
-
// Static Home Page
|
272 |
-
if (!empty($home_description)) {
|
273 |
-
$metatags_arr[] = "<meta name='description' content='$home_description' />";
|
274 |
-
}
|
275 |
-
if (!empty($home_keywords)) {
|
276 |
-
$metatags_arr[] = "<meta name='keywords' content='$home_keywords' />";
|
277 |
-
}
|
278 |
-
} elseif ( is_home() ) {
|
279 |
-
// Blog Page
|
280 |
-
if (!empty($home_description)) {
|
281 |
-
$metatags_arr[] = "<meta name='description' content='$blog_description' />";
|
282 |
-
}
|
283 |
-
if (!empty($home_keywords)) {
|
284 |
-
$metatags_arr[] = "<meta name='keywords' content='$blog_keywords' />";
|
285 |
-
}
|
286 |
-
}
|
287 |
-
|
288 |
-
// Meta Tags for all website
|
289 |
-
if (!empty($author)) {
|
290 |
-
$metatags_arr[] = "<meta name='author' content='$author' />";
|
291 |
-
}
|
292 |
-
if (!empty($designer)) {
|
293 |
-
$metatags_arr[] = "<meta name='designer' content='$designer' />";
|
294 |
-
}
|
295 |
-
if (!empty($contact)) {
|
296 |
-
$metatags_arr[] = "<meta name='contact' content='$contact' />";
|
297 |
-
}
|
298 |
-
if (!empty($copyright)) {
|
299 |
-
$metatags_arr[] = "<meta name='copyright' content='$copyright' />";
|
300 |
-
}
|
301 |
-
if (!empty($keywords)) {
|
302 |
-
$metatags_arr[] = "<meta name='keywords' content='$keywords' />";
|
303 |
-
}
|
304 |
-
|
305 |
-
// WooCommerce & Google Shopping (Merchant Center)
|
306 |
-
if ( class_exists( 'WooCommerce' ) ) {
|
307 |
-
|
308 |
-
if ( is_product() ) {
|
309 |
-
|
310 |
-
$name = get_the_title();
|
311 |
-
$description = get_the_excerpt();
|
312 |
-
$image = simplexml_load_string(get_the_post_thumbnail());
|
313 |
-
if ( !empty($image) ) {
|
314 |
-
$imagesrc = $image->attributes()->src;
|
315 |
-
} else {
|
316 |
-
$imagesrc = "";
|
317 |
-
}
|
318 |
-
$price = get_post_meta( get_the_ID(), '_price', true);
|
319 |
-
$currency = get_woocommerce_currency();
|
320 |
-
|
321 |
-
$google_shopping = "<div itemtype='http://schema.org/Product' itemscope>
|
322 |
-
<meta itemprop='name' content='$name'>
|
323 |
-
<meta itemprop='description' content='$description'>
|
324 |
-
<meta itemprop='image' content='$imagesrc'>
|
325 |
-
<div itemprop='offers' itemscope itemtype='http://schema.org/Offer'>
|
326 |
-
<meta itemprop='price' content='$price' />
|
327 |
-
<meta itemprop='priceCurrency' content='$currency' />
|
328 |
-
</div>
|
329 |
-
</div>";
|
330 |
-
$metatags_arr[] = $google_shopping;
|
331 |
-
}
|
332 |
-
|
333 |
-
}
|
334 |
-
|
335 |
-
// Add comment
|
336 |
-
if ( count( $metatags_arr ) > 0 ) {
|
337 |
-
array_unshift( $metatags_arr, "<!-- [BEGIN] Metadata added via 'All Meta Tags' plugin by Arthur Gareginyan (https://www.arthurgareginyan.com) -->" );
|
338 |
-
array_push( $metatags_arr, "<!-- [END] Metadata added via 'All Meta Tags' plugin by Arthur Gareginyan (https://www.arthurgareginyan.com) -->" );
|
339 |
-
}
|
340 |
-
|
341 |
-
// Return the content of array
|
342 |
-
return $metatags_arr;
|
343 |
-
}
|
344 |
|
345 |
/**
|
346 |
-
*
|
347 |
*
|
348 |
-
* @since
|
349 |
*/
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
/**
|
359 |
-
* Delete options on uninstall
|
360 |
-
*
|
361 |
-
* @since 0.1
|
362 |
-
*/
|
363 |
-
function allmetatags_uninstall() {
|
364 |
-
delete_option( 'allmetatags_settings' );
|
365 |
-
}
|
366 |
-
register_uninstall_hook( __FILE__, 'allmetatags_uninstall' );
|
367 |
-
|
368 |
-
?>
|
5 |
* Description: Easily and safely add your custom Meta Tags to WordPress website's header.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: http://www.arthurgareginyan.com
|
8 |
+
* Version: 4.0
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
+
* Copyright 2015-2017 Arthur Gareginyan (email : arthurgareginyan@gmail.com)
|
14 |
*
|
15 |
* This file is part of "All Meta Tags".
|
16 |
*
|
27 |
* You should have received a copy of the GNU General Public License
|
28 |
* along with "All Meta Tags". If not, see <http://www.gnu.org/licenses/>.
|
29 |
*
|
30 |
+
*
|
31 |
+
* █████╗ ██████╗ ████████╗██╗ ██╗██╗ ██╗██████╗
|
32 |
+
* ██╔══██╗██╔══██╗╚══██╔══╝██║ ██║██║ ██║██╔══██╗
|
33 |
+
* ███████║██████╔╝ ██║ ███████║██║ ██║██████╔╝
|
34 |
+
* ██╔══██║██╔══██╗ ██║ ██╔══██║██║ ██║██╔══██╗
|
35 |
+
* ██║ ██║██║ ██║ ██║ ██║ ██║╚██████╔╝██║ ██║
|
36 |
+
* ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝
|
37 |
+
*
|
38 |
+
* ██████╗ █████╗ ██████╗ ███████╗ ██████╗ ██╗███╗ ██╗██╗ ██╗ █████╗ ███╗ ██╗
|
39 |
+
* ██╔════╝ ██╔══██╗██╔══██╗██╔════╝██╔════╝ ██║████╗ ██║╚██╗ ██╔╝██╔══██╗████╗ ██║
|
40 |
+
* ██║ ███╗███████║██████╔╝█████╗ ██║ ███╗██║██╔██╗ ██║ ╚████╔╝ ███████║██╔██╗ ██║
|
41 |
+
* ██║ ██║██╔══██║██╔══██╗██╔══╝ ██║ ██║██║██║╚██╗██║ ╚██╔╝ ██╔══██║██║╚██╗██║
|
42 |
+
* ╚██████╔╝██║ ██║██║ ██║███████╗╚██████╔╝██║██║ ╚████║ ██║ ██║ ██║██║ ╚████║
|
43 |
+
* ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝
|
44 |
+
*
|
45 |
*/
|
46 |
|
47 |
|
62 |
defined('ALLMT_URL') or define('ALLMT_URL', plugin_dir_url(__FILE__));
|
63 |
defined('ALLMT_PATH') or define('ALLMT_PATH', plugin_dir_path(__FILE__));
|
64 |
defined('ALLMT_TEXT') or define('ALLMT_TEXT', 'all-meta-tags');
|
65 |
+
defined('ALLMT_VERSION') or define('ALLMT_VERSION', '4.0');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
/**
|
68 |
+
* Load the plugin modules
|
69 |
*
|
70 |
+
* @since 4.0
|
71 |
*/
|
72 |
+
require_once( ALLMT_PATH . 'inc/php/core.php' );
|
73 |
+
require_once( ALLMT_PATH . 'inc/php/enqueue.php' );
|
74 |
+
require_once( ALLMT_PATH . 'inc/php/version.php' );
|
75 |
+
require_once( ALLMT_PATH . 'inc/php/functional.php' );
|
76 |
+
require_once( ALLMT_PATH . 'inc/php/page.php' );
|
77 |
+
require_once( ALLMT_PATH . 'inc/php/messages.php' );
|
78 |
+
require_once( ALLMT_PATH . 'inc/php/uninstall.php' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
humans.txt
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
***************************************************************************************
|
2 |
+
* *
|
3 |
+
* █████╗ ██████╗ ████████╗██╗ ██╗██╗ ██╗██████╗ *
|
4 |
+
* ██╔══██╗██╔══██╗╚══██╔══╝██║ ██║██║ ██║██╔══██╗ *
|
5 |
+
* ███████║██████╔╝ ██║ ███████║██║ ██║██████╔╝ *
|
6 |
+
* ██╔══██║██╔══██╗ ██║ ██╔══██║██║ ██║██╔══██╗ *
|
7 |
+
* ██║ ██║██║ ██║ ██║ ██║ ██║╚██████╔╝██║ ██║ *
|
8 |
+
* ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ *
|
9 |
+
* *
|
10 |
+
* ██████╗ █████╗ ██████╗ ███████╗ ██████╗ ██╗███╗ ██╗██╗ ██╗ █████╗ ███╗ ██╗ *
|
11 |
+
* ██╔════╝ ██╔══██╗██╔══██╗██╔════╝██╔════╝ ██║████╗ ██║╚██╗ ██╔╝██╔══██╗████╗ ██║ *
|
12 |
+
* ██║ ███╗███████║██████╔╝█████╗ ██║ ███╗██║██╔██╗ ██║ ╚████╔╝ ███████║██╔██╗ ██║ *
|
13 |
+
* ██║ ██║██╔══██║██╔══██╗██╔══╝ ██║ ██║██║██║╚██╗██║ ╚██╔╝ ██╔══██║██║╚██╗██║ *
|
14 |
+
* ╚██████╔╝██║ ██║██║ ██║███████╗╚██████╔╝██║██║ ╚████║ ██║ ██║ ██║██║ ╚████║ *
|
15 |
+
* ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ *
|
16 |
+
* *
|
17 |
+
***************************************************************************************
|
18 |
+
|
19 |
+
We are the humans behind the plugin
|
20 |
+
|
21 |
+
/* TEAM */
|
22 |
+
Name: Arthur Gareginyan
|
23 |
+
Site: www.arthurgareginyan.com
|
24 |
+
Title: Founding Developer
|
25 |
+
Twitter: AGareginyan
|
26 |
+
Location: Moscow, Russia
|
27 |
+
|
28 |
+
Name: Milena Kiseleva
|
29 |
+
Title: Muse
|
30 |
+
Twitter: MilavaKiseleva
|
31 |
+
Location: Moscow, Russia
|
32 |
+
|
33 |
+
|
34 |
+
/* THANKS */
|
35 |
+
|
36 |
+
|
37 |
+
/* META */
|
38 |
+
Last update: 2017/04/28
|
39 |
+
See: http://humanstxt.org/
|
inc/css/admin.css
CHANGED
@@ -1,36 +1,130 @@
|
|
1 |
/*
|
2 |
* Style sheet for plugin settings page
|
3 |
*
|
4 |
-
*
|
5 |
-
*
|
|
|
|
|
|
|
6 |
*/
|
7 |
|
8 |
|
9 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
-------------------------------------------------------------- */
|
11 |
h2 {
|
|
|
|
|
|
|
|
|
|
|
12 |
text-align: center;
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
}
|
15 |
-
|
16 |
h2 span {
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
}
|
23 |
-
|
24 |
-
h2 span a {
|
25 |
-
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
27 |
}
|
28 |
|
|
|
|
|
29 |
h3.title {
|
30 |
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
|
|
|
|
|
31 |
border-bottom: 1px solid #eee;
|
32 |
}
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
/* Sidebar
|
35 |
-------------------------------------------------------------- */
|
36 |
#side-sortables {
|
@@ -45,22 +139,263 @@ h3.title {
|
|
45 |
margin: 0;
|
46 |
}
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
/* Responsive page
|
49 |
-------------------------------------------------------------- */
|
50 |
@media (max-width: 860px) {
|
51 |
.inner-sidebar {
|
52 |
display: none !important;
|
53 |
}
|
|
|
|
|
|
|
54 |
#post-body-content {
|
55 |
margin-right: 0 !important;
|
56 |
}
|
57 |
}
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
/* Help text
|
60 |
-------------------------------------------------------------- */
|
61 |
td.help-text {
|
62 |
-
|
|
|
63 |
font-size: 12px !important;
|
|
|
64 |
float: left;
|
65 |
clear: left;
|
66 |
color: #797979;
|
@@ -68,22 +403,18 @@ td.help-text {
|
|
68 |
padding-top: 0px !important;
|
69 |
}
|
70 |
|
71 |
-
/*
|
72 |
-------------------------------------------------------------- */
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
margin-left: 20px;
|
77 |
}
|
78 |
-
|
79 |
-
|
80 |
-
.form-table td {
|
81 |
-
padding-bottom: 10px;
|
82 |
}
|
83 |
|
84 |
textarea,
|
85 |
.form-table input[type=text] {
|
86 |
-
max-width: 80%;
|
87 |
padding-top: 5px;
|
88 |
background: #fcfcfc;
|
89 |
-webkit-border-radius: 3px;
|
@@ -95,15 +426,8 @@ textarea,
|
|
95 |
box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
|
96 |
}
|
97 |
|
98 |
-
|
99 |
-
text-decoration: none;
|
100 |
-
}
|
101 |
-
|
102 |
-
/* <pre> tag in "WooCommerce" section
|
103 |
-------------------------------------------------------------- */
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
margin: 0 10px 0 10px;
|
108 |
-
overflow: scroll;
|
109 |
-
}
|
1 |
/*
|
2 |
* Style sheet for plugin settings page
|
3 |
*
|
4 |
+
* @package All Meta Tags
|
5 |
+
* @uthor Arthur Gareginyan
|
6 |
+
* @link http://www.arthurgareginyan.com
|
7 |
+
* @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
|
8 |
+
* @since 4.0
|
9 |
*/
|
10 |
|
11 |
|
12 |
+
/* Main
|
13 |
+
-------------------------------------------------------------- */
|
14 |
+
body {
|
15 |
+
background: #f1f1f1 !important;
|
16 |
+
}
|
17 |
+
p {
|
18 |
+
font-family: Verdana, Geneva, sans-serif;
|
19 |
+
font-size: 13px;
|
20 |
+
}
|
21 |
+
.postbox a {
|
22 |
+
text-decoration: none;
|
23 |
+
}
|
24 |
+
|
25 |
+
/* Title and Description of page
|
26 |
-------------------------------------------------------------- */
|
27 |
h2 {
|
28 |
+
padding: 30px 30px !important;
|
29 |
+
background-color: #333;
|
30 |
+
color: #e0dfdc !important;
|
31 |
+
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif !important;
|
32 |
+
font-size: 60px !important;
|
33 |
text-align: center;
|
34 |
+
text-transform: uppercase;
|
35 |
+
text-rendering: optimizeLegibility;
|
36 |
+
text-shadow: 0 -1px 0 #fff,
|
37 |
+
0 1px 0 #2e2e2e,
|
38 |
+
0 2px 0 #2a2a2a,
|
39 |
+
0 3px 0 #262626,
|
40 |
+
0 4px 0 #222,
|
41 |
+
0 5px 0 #1e1e1e,
|
42 |
+
0 6px 0 #1a1a1a,
|
43 |
+
0 7px 0 #161616,
|
44 |
+
0 8px 0 #121212,
|
45 |
+
0 22px 30px rgba(0, 0, 0, 0.9);
|
46 |
+
letter-spacing: .1em;
|
47 |
+
line-height: 50px !important;
|
48 |
+
overflow: hidden;
|
49 |
}
|
|
|
50 |
h2 span {
|
51 |
+
content: '\A';
|
52 |
+
display: block ;
|
53 |
+
margin-top: 15px;
|
54 |
+
font-size: 16px;
|
55 |
+
text-shadow: 0 -1px 0 #fff,
|
56 |
+
0 1px 0 #2e2e2e,
|
57 |
+
0 2px 0 #2a2a2a,
|
58 |
+
0 3px 0 #262626,
|
59 |
+
0 4px 0 #222,
|
60 |
+
0 5px 0 #1e1e1e,
|
61 |
+
0 6px 0 #1a1a1a,
|
62 |
+
0 7px 0 #161616,
|
63 |
+
0 8px 0 #121212,
|
64 |
+
0 22px 30px rgba(0, 0, 0, 0.9);
|
65 |
+
line-height: 20px !important;
|
66 |
}
|
67 |
+
h2 span a,
|
68 |
+
h2 span a:hover {
|
69 |
+
color: #ffffff;
|
70 |
+
}
|
71 |
+
h2 span a:hover {
|
72 |
+
text-shadow: none;
|
73 |
+
text-decoration: none;
|
74 |
+
-webkit-transition: all 0.2s ease-in-out;
|
75 |
+
transition: all 0.2s ease-in-out;
|
76 |
}
|
77 |
|
78 |
+
/* Titles and Descriptions of sections
|
79 |
+
-------------------------------------------------------------- */
|
80 |
h3.title {
|
81 |
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
|
82 |
+
font-size: 16px !important;
|
83 |
+
font-weight: 400;
|
84 |
border-bottom: 1px solid #eee;
|
85 |
}
|
86 |
|
87 |
+
/* Modal - PopUp windows
|
88 |
+
-------------------------------------------------------------- */
|
89 |
+
.modal-dialog {
|
90 |
+
margin-top: 15% !important;
|
91 |
+
}
|
92 |
+
.hello-message .modal-body {
|
93 |
+
height: 180px;
|
94 |
+
}
|
95 |
+
.hello-message .modal-body img {
|
96 |
+
float: left;
|
97 |
+
width: 150px;
|
98 |
+
height: 150px;
|
99 |
+
padding: 10px;
|
100 |
+
margin-right: 20px;
|
101 |
+
border-radius: 15px;
|
102 |
+
}
|
103 |
+
.hello-message .modal-body p {
|
104 |
+
font-size: 16px;
|
105 |
+
}
|
106 |
+
.hello-message .modal-body p:first-of-type {
|
107 |
+
padding-top: 5%;
|
108 |
+
}
|
109 |
+
.error-message .modal-body {
|
110 |
+
padding: 30px;
|
111 |
+
text-align: center;
|
112 |
+
}
|
113 |
+
|
114 |
+
/* Notes
|
115 |
+
-------------------------------------------------------------- */
|
116 |
+
.note {
|
117 |
+
padding: 0.30em 1.0em;
|
118 |
+
border-left: 3px solid #05c2ff;
|
119 |
+
border-right: 3px solid #05c2ff;
|
120 |
+
background: rgba(5, 194, 255, 0.09);
|
121 |
+
font-family: Verdana, Geneva, sans-serif;
|
122 |
+
font-size: 13px;
|
123 |
+
color: #646464;
|
124 |
+
padding-left: 15px;
|
125 |
+
letter-spacing: 0.1px;
|
126 |
+
}
|
127 |
+
|
128 |
/* Sidebar
|
129 |
-------------------------------------------------------------- */
|
130 |
#side-sortables {
|
139 |
margin: 0;
|
140 |
}
|
141 |
|
142 |
+
#side-sortables .paypal {
|
143 |
+
font-size: 18px;
|
144 |
+
}
|
145 |
+
|
146 |
+
/* Support - addition section
|
147 |
+
-------------------------------------------------------------- */
|
148 |
+
#support-addition {
|
149 |
+
display: none;
|
150 |
+
}
|
151 |
+
#support-addition .paypal {
|
152 |
+
font-size: 18px;
|
153 |
+
}
|
154 |
+
|
155 |
/* Responsive page
|
156 |
-------------------------------------------------------------- */
|
157 |
@media (max-width: 860px) {
|
158 |
.inner-sidebar {
|
159 |
display: none !important;
|
160 |
}
|
161 |
+
#support-addition {
|
162 |
+
display: block;
|
163 |
+
}
|
164 |
#post-body-content {
|
165 |
margin-right: 0 !important;
|
166 |
}
|
167 |
}
|
168 |
|
169 |
+
/* Tabs pages
|
170 |
+
-------------------------------------------------------------- */
|
171 |
+
.tab-page {
|
172 |
+
display: none;
|
173 |
+
}
|
174 |
+
.tab-page.active {
|
175 |
+
display: block;
|
176 |
+
}
|
177 |
+
.tab-page li {
|
178 |
+
font-family: Verdana, Geneva, sans-serif;
|
179 |
+
font-size: 13px;
|
180 |
+
}
|
181 |
+
|
182 |
+
/* Tabs navigation menu
|
183 |
+
-------------------------------------------------------------- */
|
184 |
+
.tabs-nav {
|
185 |
+
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
|
186 |
+
font-weight: 400;
|
187 |
+
font-size: 16px;
|
188 |
+
display: -webkit-box;
|
189 |
+
display: -webkit-flex;
|
190 |
+
display: -ms-flexbox;
|
191 |
+
display: flex;
|
192 |
+
height: 50px;
|
193 |
+
margin: -11px 0px 18px 0px;
|
194 |
+
background: #ffffff;
|
195 |
+
border: 1px solid rgba(34, 36, 38, 0.15);
|
196 |
+
box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
|
197 |
+
border-radius: 0.30rem;
|
198 |
+
}
|
199 |
+
.tabs-nav:after {
|
200 |
+
content: '';
|
201 |
+
display: block;
|
202 |
+
height: 0px;
|
203 |
+
clear: both;
|
204 |
+
visibility: hidden;
|
205 |
+
}
|
206 |
+
|
207 |
+
.tabs-nav li {
|
208 |
+
position: relative;
|
209 |
+
display: block;
|
210 |
+
float: left;
|
211 |
+
margin-bottom: 0px;
|
212 |
+
}
|
213 |
+
.tabs-nav li:first-of-type a {
|
214 |
+
border-radius: 3px 0 0 3px;
|
215 |
+
}
|
216 |
+
.tabs-nav li.active:before {
|
217 |
+
position: absolute;
|
218 |
+
content: '';
|
219 |
+
top: 0%;
|
220 |
+
right: 0px;
|
221 |
+
height: 100%;
|
222 |
+
width: 1px;
|
223 |
+
background: rgba(34, 36, 38, 0.1);
|
224 |
+
}
|
225 |
+
.tabs-nav li.active:after {
|
226 |
+
background-color: #f2f2f2;
|
227 |
+
position: absolute;
|
228 |
+
content: '';
|
229 |
+
top: 100%;
|
230 |
+
left: 50%;
|
231 |
+
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
232 |
+
-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
233 |
+
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
234 |
+
margin: 0.8px 0em 0em;
|
235 |
+
width: 0.6em;
|
236 |
+
height: 0.6em;
|
237 |
+
border: none;
|
238 |
+
border-bottom: 1px solid #d4d4d5;
|
239 |
+
border-right: 1px solid #d4d4d5;
|
240 |
+
-webkit-transition: background 0.1s ease;
|
241 |
+
transition: background 0.1s ease;
|
242 |
+
}
|
243 |
+
|
244 |
+
.tabs-nav li a {
|
245 |
+
position: relative;
|
246 |
+
display: block;
|
247 |
+
padding: 10px 15px;
|
248 |
+
text-decoration: none;
|
249 |
+
line-height: 1.8;
|
250 |
+
color: grey;
|
251 |
+
border-left: 1px solid;
|
252 |
+
border-right: 1px solid;
|
253 |
+
border-color: #ffffff;
|
254 |
+
}
|
255 |
+
.tabs-nav li a:hover,
|
256 |
+
.tabs-nav li a:focus {
|
257 |
+
text-decoration: none;
|
258 |
+
background: rgba(0, 0, 0, 0.03);
|
259 |
+
border-color: #eeeeee;
|
260 |
+
}
|
261 |
+
.tabs-nav li.active a,
|
262 |
+
.tabs-nav li.active a:hover,
|
263 |
+
.tabs-nav li.active a:focus {
|
264 |
+
background: rgba(0, 0, 0, 0.05);
|
265 |
+
color: rgba(0, 0, 0, 0.95);
|
266 |
+
font-weight: normal;
|
267 |
+
border-color: #eeeeee;
|
268 |
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
269 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
270 |
+
}
|
271 |
+
|
272 |
+
@media (max-width:500px) {
|
273 |
+
.tabs-nav li:last-of-type {
|
274 |
+
display: none;
|
275 |
+
}
|
276 |
+
}
|
277 |
+
@media (max-width:413px) {
|
278 |
+
.tabs-nav li:nth-last-of-type(2) {
|
279 |
+
display: none;
|
280 |
+
}
|
281 |
+
}
|
282 |
+
|
283 |
+
/* Spoilers
|
284 |
+
-------------------------------------------------------------- */
|
285 |
+
.panel-group {
|
286 |
+
margin-top: 10px;
|
287 |
+
}
|
288 |
+
.panel-heading a {
|
289 |
+
text-decoration: none !important;
|
290 |
+
}
|
291 |
+
.panel-title,
|
292 |
+
.panel-title:before,
|
293 |
+
.panel-body:before {
|
294 |
+
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
|
295 |
+
font-size: 16px;
|
296 |
+
font-weight: 400;
|
297 |
+
color: #6d6d6d !important;
|
298 |
+
text-shadow: 1px 1px 0px #fff;
|
299 |
+
}
|
300 |
+
.panel-title:before {
|
301 |
+
content: "Q.";
|
302 |
+
display: inline-block;
|
303 |
+
color: red !important;
|
304 |
+
padding-right: 8px;
|
305 |
+
}
|
306 |
+
.panel-title:after {
|
307 |
+
content: "\25BC";
|
308 |
+
display: inline-block;
|
309 |
+
float: right;
|
310 |
+
margin: 0;
|
311 |
+
background: none;
|
312 |
+
border: 0;
|
313 |
+
cursor: pointer;
|
314 |
+
color: gray;
|
315 |
+
}
|
316 |
+
.panel-title > div {
|
317 |
+
display: inline;
|
318 |
+
}
|
319 |
+
.panel-body:before {
|
320 |
+
content: "A." !important;
|
321 |
+
display: inline-block !important;
|
322 |
+
color: #00a5e2 !important;
|
323 |
+
padding-right: 8px;
|
324 |
+
}
|
325 |
+
.panel-body {
|
326 |
+
display: inline-block;
|
327 |
+
font-family: Verdana, Geneva, sans-serif;
|
328 |
+
font-size: 13px;
|
329 |
+
}
|
330 |
+
.panel-body > div {
|
331 |
+
display: inline;
|
332 |
+
}
|
333 |
+
|
334 |
+
/* Custom List Numbers
|
335 |
+
-------------------------------------------------------------- */
|
336 |
+
.custom-counter {
|
337 |
+
margin-top: 15px;
|
338 |
+
margin-left: 50px;
|
339 |
+
margin-bottom: 30px;
|
340 |
+
list-style-type: none;
|
341 |
+
}
|
342 |
+
.custom-counter li {
|
343 |
+
counter-increment: step-counter;
|
344 |
+
margin-bottom: 15px;
|
345 |
+
}
|
346 |
+
.custom-counter li::before {
|
347 |
+
content: counter(step-counter);
|
348 |
+
margin-left: -30px;
|
349 |
+
margin-right: 8px;
|
350 |
+
font-size: 90%;
|
351 |
+
background-color: rgb(0,200,200);
|
352 |
+
color: white;
|
353 |
+
font-weight: bold;
|
354 |
+
padding: 4px 7px;
|
355 |
+
border-radius: 50%;
|
356 |
+
}
|
357 |
+
|
358 |
+
/* WordPress Color Picker
|
359 |
+
-------------------------------------------------------------- */
|
360 |
+
.wp-picker-container a {
|
361 |
+
text-decoration: none !important;
|
362 |
+
}
|
363 |
+
.wp-color-result {
|
364 |
+
height: 30px;
|
365 |
+
}
|
366 |
+
.wp-color-result:after {
|
367 |
+
line-height: 28px;
|
368 |
+
}
|
369 |
+
|
370 |
+
/* ON/OFF Buttons
|
371 |
+
-------------------------------------------------------------- */
|
372 |
+
.btn {
|
373 |
+
border-radius: 0 !important;
|
374 |
+
}
|
375 |
+
|
376 |
+
/* Form-table
|
377 |
+
-------------------------------------------------------------- */
|
378 |
+
.form-table {
|
379 |
+
clear: none;
|
380 |
+
margin-left: 20px;
|
381 |
+
font-family: Verdana, Geneva, sans-serif;
|
382 |
+
font-size: 13px;
|
383 |
+
}
|
384 |
+
.form-table tr {
|
385 |
+
vertical-align: top;
|
386 |
+
}
|
387 |
+
.form-table th,
|
388 |
+
.form-table td {
|
389 |
+
padding-bottom: 10px;
|
390 |
+
}
|
391 |
+
|
392 |
/* Help text
|
393 |
-------------------------------------------------------------- */
|
394 |
td.help-text {
|
395 |
+
width: 90%;
|
396 |
+
font-family: Verdana, Geneva, sans-serif;
|
397 |
font-size: 12px !important;
|
398 |
+
font-style: italic;
|
399 |
float: left;
|
400 |
clear: left;
|
401 |
color: #797979;
|
403 |
padding-top: 0px !important;
|
404 |
}
|
405 |
|
406 |
+
/* INPUT and TEXTAREA
|
407 |
-------------------------------------------------------------- */
|
408 |
+
textarea {
|
409 |
+
max-width: 600px;
|
410 |
+
width: 90%;
|
|
|
411 |
}
|
412 |
+
.form-table input[type=text] {
|
413 |
+
max-width: 90%;
|
|
|
|
|
414 |
}
|
415 |
|
416 |
textarea,
|
417 |
.form-table input[type=text] {
|
|
|
418 |
padding-top: 5px;
|
419 |
background: #fcfcfc;
|
420 |
-webkit-border-radius: 3px;
|
426 |
box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
|
427 |
}
|
428 |
|
429 |
+
/* SPECIFIC TO THIS PLUGIN
|
|
|
|
|
|
|
|
|
430 |
-------------------------------------------------------------- */
|
431 |
+
td.help-text b {
|
432 |
+
color: red;
|
433 |
+
}
|
|
|
|
|
|
inc/img/banner.png
DELETED
Binary file
|
inc/img/donate.png
DELETED
Binary file
|
inc/js/admin.js
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
/*
|
2 |
-
*
|
3 |
*
|
4 |
-
*
|
5 |
-
*
|
|
|
|
|
|
|
6 |
*/
|
7 |
|
8 |
|
@@ -17,4 +20,22 @@ jQuery(document).ready(function($) {
|
|
17 |
}, 3000);
|
18 |
}
|
19 |
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/*
|
2 |
+
* Plugin JavaScript and JQuery code for the admin pages of website
|
3 |
*
|
4 |
+
* @package All Meta Tags
|
5 |
+
* @uthor Arthur Gareginyan
|
6 |
+
* @link http://www.arthurgareginyan.com
|
7 |
+
* @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
|
8 |
+
* @since 4.0
|
9 |
*/
|
10 |
|
11 |
|
20 |
}, 3000);
|
21 |
}
|
22 |
|
23 |
+
// Dynamic content
|
24 |
+
$( ".include-tab-author" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-author" );
|
25 |
+
$( ".include-tab-support" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-support" );
|
26 |
+
$( ".include-tab-family" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-family" );
|
27 |
+
$( ".additional-css" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/styles.html" );
|
28 |
+
|
29 |
+
// Add questions and answers into spoilers and color them in different colors
|
30 |
+
$(".panel-group .panel").each(function(i) {
|
31 |
+
$( ".question-" + (i+1) ).appendTo( $("h4", this) );
|
32 |
+
$( ".answer-" + (i+1) ).appendTo( $(".panel-body", this) );
|
33 |
+
|
34 |
+
if ( $(this).find("h4 div").hasClass('question-red') ) {
|
35 |
+
$(this).addClass('panel-danger');
|
36 |
+
} else {
|
37 |
+
$(this).addClass('panel-info');
|
38 |
+
}
|
39 |
+
});
|
40 |
+
|
41 |
+
});
|
inc/lib/bootstrap/bootstrap-theme.css
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2016 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}
|
inc/lib/bootstrap/bootstrap.css
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2016 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),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')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
|
inc/lib/bootstrap/bootstrap.js
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2016 Twitter, Inc.
|
4 |
+
* Licensed under the MIT license
|
5 |
+
*/
|
6 |
+
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(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]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",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(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a("#"===f?[]:f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"], input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.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},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(a>this.$items.length-1||a<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.7",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.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 in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.7",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",c).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in"),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.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(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){document===a.target||this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a(document.createElement("div")).addClass("modal-backdrop "+e).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",a,b)};c.VERSION="3.3.7",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");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":"focusin",i="hover"==g?"mouseleave":"focusout";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()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.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},c.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},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-m<o.top?"bottom":"right"==h&&k.right+l>o.width?"left":"left"==h&&k.left-l<o.left?"right":h,f.removeClass(n).addClass(h)}var p=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(p,h);var q=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",q).emulateTransitionEnd(c.TRANSITION_DURATION):q()}},c.prototype.applyPlacement=function(b,c){var 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),b.top+=g,b.left+=h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.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")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element&&e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);if(this.$element.trigger(g),!g.isDefaultPrevented())return f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this},c.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","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=window.SVGElement&&c instanceof window.SVGElement,g=d?{top:0,left:0}:f?null:b.offset(),h={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},i=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,h,i,g)},c.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}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.right&&(e.left=g.left+g.width-k)}return e},c.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)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.7",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.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").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.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)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(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]()})}b.VERSION="3.3.7",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){
|
7 |
+
this.activeTarget=b,this.clear();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")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.7",c.TRANSITION_DURATION=150,c.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"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).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(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.7",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return e<c&&"top";if("bottom"==this.affixed)return null!=c?!(e+this.unpin<=f.top)&&"bottom":!(e+g<=a-d)&&"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&e<=c?"top":null!=d&&i+j>=a-d&&"bottom"},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
|
inc/php/core.php
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*
|
6 |
+
* @since 0.1
|
7 |
+
*/
|
8 |
+
defined('ABSPATH') or die("Restricted access!");
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Register text domain
|
12 |
+
*
|
13 |
+
* @since 2.0
|
14 |
+
*/
|
15 |
+
function allmetatags_textdomain() {
|
16 |
+
load_plugin_textdomain( ALLMT_TEXT, false, ALLMT_DIR . '/languages/' );
|
17 |
+
}
|
18 |
+
add_action( 'init', 'allmetatags_textdomain' );
|
19 |
+
|
20 |
+
/**
|
21 |
+
* Print direct link to plugin admin page
|
22 |
+
*
|
23 |
+
* Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
|
24 |
+
* and inserts a link to the plugin admin page
|
25 |
+
*
|
26 |
+
* @since 2.0
|
27 |
+
* @param array $links Array of links generated by WP in Plugin Admin page.
|
28 |
+
* @return array Array of links to be output on Plugin Admin page.
|
29 |
+
*/
|
30 |
+
function allmetatags_settings_link( $links ) {
|
31 |
+
$page = '<a href="' . admin_url( 'options-general.php?page=all-meta-tags.php' ) .'">' . __( 'Settings', ALLMT_TEXT ) . '</a>';
|
32 |
+
array_unshift( $links, $page );
|
33 |
+
return $links;
|
34 |
+
}
|
35 |
+
add_filter( 'plugin_action_links_'.ALLMT_BASE, 'allmetatags_settings_link' );
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Print additional links to plugin meta row
|
39 |
+
*
|
40 |
+
* @since 4.0
|
41 |
+
*/
|
42 |
+
function allmetatags_plugin_row_meta( $links, $file ) {
|
43 |
+
|
44 |
+
if ( strpos( $file, 'all-meta-tags.php' ) !== false ) {
|
45 |
+
|
46 |
+
$new_links = array(
|
47 |
+
'donate' => '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank"><span class="dashicons dashicons-heart"></span> ' . __( 'Donate', ALLMT_TEXT ) . '</a>'
|
48 |
+
);
|
49 |
+
$links = array_merge( $links, $new_links );
|
50 |
+
}
|
51 |
+
|
52 |
+
return $links;
|
53 |
+
}
|
54 |
+
add_filter( 'plugin_row_meta', 'allmetatags_plugin_row_meta', 10, 2 );
|
55 |
+
|
56 |
+
/**
|
57 |
+
* Register plugin's submenu in the "Settings" Admin Menu
|
58 |
+
*
|
59 |
+
* @since 4.0
|
60 |
+
*/
|
61 |
+
function allmetatags_register_submenu_page() {
|
62 |
+
add_options_page( __( 'All Meta Tags', ALLMT_TEXT ), __( 'All Meta Tags', ALLMT_TEXT ), 'manage_options', 'all-meta-tags', 'allmetatags_render_submenu_page' );
|
63 |
+
}
|
64 |
+
add_action( 'admin_menu', 'allmetatags_register_submenu_page' );
|
65 |
+
|
66 |
+
/**
|
67 |
+
* Register settings
|
68 |
+
*
|
69 |
+
* @since 4.0
|
70 |
+
*/
|
71 |
+
function allmetatags_register_settings() {
|
72 |
+
register_setting( 'allmetatags_settings_group', 'allmetatags_settings' );
|
73 |
+
register_setting( 'allmetatags_settings_group', 'allmetatags_service_info' );
|
74 |
+
}
|
75 |
+
add_action( 'admin_init', 'allmetatags_register_settings' );
|
inc/php/enqueue.php
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*
|
6 |
+
* @since 0.1
|
7 |
+
*/
|
8 |
+
defined('ABSPATH') or die("Restricted access!");
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Load scripts and style sheet for settings page
|
12 |
+
*
|
13 |
+
* @since 4.0
|
14 |
+
*/
|
15 |
+
function allmetatags_load_scripts_admin($hook) {
|
16 |
+
|
17 |
+
// Return if the page is not a settings page of this plugin
|
18 |
+
if ( 'settings_page_all-meta-tags' != $hook ) {
|
19 |
+
return;
|
20 |
+
}
|
21 |
+
|
22 |
+
// Style sheet
|
23 |
+
wp_enqueue_style( 'allmetatags-admin-css', ALLMT_URL . 'inc/css/admin.css' );
|
24 |
+
|
25 |
+
// JavaScript
|
26 |
+
wp_enqueue_script( 'allmetatags-admin-js', ALLMT_URL . 'inc/js/admin.js', array(), false, true );
|
27 |
+
|
28 |
+
// Bootstrap library
|
29 |
+
wp_enqueue_style( 'allmetatags-bootstrap-css', ALLMT_URL . 'inc/lib/bootstrap/bootstrap.css' );
|
30 |
+
wp_enqueue_style( 'allmetatags-bootstrap-theme-css', ALLMT_URL . 'inc/lib/bootstrap/bootstrap-theme.css' );
|
31 |
+
wp_enqueue_script( 'allmetatags-bootstrap-js', ALLMT_URL . 'inc/lib/bootstrap/bootstrap.js' );
|
32 |
+
|
33 |
+
}
|
34 |
+
add_action( 'admin_enqueue_scripts', 'allmetatags_load_scripts_admin' );
|
inc/php/functional.php
ADDED
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*
|
6 |
+
* @since 0.1
|
7 |
+
*/
|
8 |
+
defined('ABSPATH') or die("Restricted access!");
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Render fields
|
12 |
+
*
|
13 |
+
* @since 3.2
|
14 |
+
*/
|
15 |
+
function allmetatags_field($name, $label, $placeholder, $help=null, $link=null, $textarea=null) {
|
16 |
+
|
17 |
+
// Declare variables
|
18 |
+
$options = get_option( 'allmetatags_settings' );
|
19 |
+
|
20 |
+
if ( !empty($options[$name]) ) :
|
21 |
+
$value = esc_attr( $options[$name] );
|
22 |
+
else :
|
23 |
+
$value = "";
|
24 |
+
endif;
|
25 |
+
|
26 |
+
// Generate the table
|
27 |
+
if ( !empty($link) ) :
|
28 |
+
$link_out = "<a href='$link' target='_blank'>$label</a>";
|
29 |
+
else :
|
30 |
+
$link_out = "$label";
|
31 |
+
endif;
|
32 |
+
|
33 |
+
if ( !empty($textarea) ) :
|
34 |
+
$field_out = "<textarea cols='50' rows='3' name='allmetatags_settings[$name]' placeholder='$placeholder'>$value</textarea>";
|
35 |
+
else :
|
36 |
+
$field_out = "<input type='text' name='allmetatags_settings[$name]' size='50' value='$value' placeholder='$placeholder'>";
|
37 |
+
endif;
|
38 |
+
|
39 |
+
if ( !empty($help) ) :
|
40 |
+
$help_out = "<tr>
|
41 |
+
<td></td>
|
42 |
+
<td class='help-text'>
|
43 |
+
$help
|
44 |
+
</td>
|
45 |
+
</tr>";
|
46 |
+
else :
|
47 |
+
$help_out = "";
|
48 |
+
endif;
|
49 |
+
|
50 |
+
// Put table to the variable
|
51 |
+
$out = "<tr>
|
52 |
+
<th scope='row'>
|
53 |
+
$link_out
|
54 |
+
</th>
|
55 |
+
<td>
|
56 |
+
$field_out
|
57 |
+
</td>
|
58 |
+
</tr>
|
59 |
+
$help_out";
|
60 |
+
|
61 |
+
// Print the generated table
|
62 |
+
echo $out;
|
63 |
+
}
|
64 |
+
|
65 |
+
/**
|
66 |
+
* Generate the Meta Tags
|
67 |
+
*
|
68 |
+
* @since 3.8
|
69 |
+
*/
|
70 |
+
function allmetatags_add_meta_tags() {
|
71 |
+
|
72 |
+
// Read options from BD, sanitiz data and declare variables
|
73 |
+
$options = get_option( 'allmetatags_settings' );
|
74 |
+
|
75 |
+
$google = esc_textarea( $options['google'] );
|
76 |
+
$bing = esc_textarea( $options['bing'] );
|
77 |
+
$yandex = esc_textarea( $options['yandex'] );
|
78 |
+
|
79 |
+
$alexa = esc_textarea( $options['alexa'] );
|
80 |
+
$pinterest = esc_textarea( $options['pinterest'] );
|
81 |
+
$google_author = esc_textarea( $options['google_author'] );
|
82 |
+
$facebook = esc_textarea( $options['facebook'] );
|
83 |
+
$twitter = esc_textarea( $options['twitter'] );
|
84 |
+
$norton = esc_textarea( $options['norton'] );
|
85 |
+
$wot = esc_textarea( $options['wot'] );
|
86 |
+
$specificfeeds = esc_textarea( $options['specificfeeds'] );
|
87 |
+
$custom_meta = $options['custom_meta'];
|
88 |
+
|
89 |
+
$home_description = esc_textarea( $options['home_description'] );
|
90 |
+
$home_keywords = esc_textarea( $options['home_keywords'] );
|
91 |
+
|
92 |
+
$blog_description = esc_textarea( $options['blog_description'] );
|
93 |
+
$blog_keywords = esc_textarea( $options['blog_keywords'] );
|
94 |
+
|
95 |
+
$author = esc_textarea( $options['author'] );
|
96 |
+
$designer = esc_textarea( $options['designer'] );
|
97 |
+
$contact = esc_textarea( $options['contact'] );
|
98 |
+
$copyright = esc_textarea( $options['copyright'] );
|
99 |
+
$keywords = esc_textarea( $options['keywords'] );
|
100 |
+
|
101 |
+
$metatags_arr[] = "";
|
102 |
+
|
103 |
+
// Web Master Tools
|
104 |
+
if (!empty($google)) {
|
105 |
+
$metatags_arr[] = "<meta name='google-site-verification' content='$google' />";
|
106 |
+
}
|
107 |
+
if (!empty($yandex)) {
|
108 |
+
$metatags_arr[] = "<meta name='yandex-verification' content='$yandex' />";
|
109 |
+
}
|
110 |
+
if (!empty($bing)) {
|
111 |
+
$metatags_arr[] = "<meta name='msvalidate.01' content='$bing' />";
|
112 |
+
}
|
113 |
+
|
114 |
+
// Website Verification Services
|
115 |
+
if (!empty($pinterest)) {
|
116 |
+
$metatags_arr[] = "<meta name='p:domain_verify' content='$pinterest' />";
|
117 |
+
}
|
118 |
+
if (!empty($google_author)) {
|
119 |
+
$metatags_arr[] = "<link rel='author' href='$google_author'>";
|
120 |
+
}
|
121 |
+
if (!empty($facebook)) {
|
122 |
+
$metatags_arr[] = "<meta name='article:publisher' content='$facebook' />";
|
123 |
+
}
|
124 |
+
if (!empty($twitter)) {
|
125 |
+
$metatags_arr[] = "<meta name='twitter:site' content='$twitter' />";
|
126 |
+
$metatags_arr[] = "<meta name='twitter:creator' content='$twitter' />";
|
127 |
+
}
|
128 |
+
if (!empty($alexa)) {
|
129 |
+
$metatags_arr[] = "<meta name='alexaVerifyID' content='$alexa' />";
|
130 |
+
}
|
131 |
+
if (!empty($norton)) {
|
132 |
+
$metatags_arr[] = "<meta name='norton-safeweb-site-verification' content='$norton' />";
|
133 |
+
}
|
134 |
+
if (!empty($wot)) {
|
135 |
+
$metatags_arr[] = "<meta name='wot-verification' content='$wot' />";
|
136 |
+
}
|
137 |
+
if (!empty($specificfeeds)) {
|
138 |
+
$metatags_arr[] = "<meta name='specificfeeds-verification-code' content='$specificfeeds' />";
|
139 |
+
}
|
140 |
+
if (!empty($custom_meta)) {
|
141 |
+
$metatags_arr[] = $custom_meta;
|
142 |
+
}
|
143 |
+
|
144 |
+
// Meta Tags for specific pages
|
145 |
+
if ( is_front_page() && is_home() ) {
|
146 |
+
// Default Home Page
|
147 |
+
if (!empty($home_description)) {
|
148 |
+
$metatags_arr[] = "<meta name='description' content='$blog_description' />";
|
149 |
+
}
|
150 |
+
if (!empty($home_keywords)) {
|
151 |
+
$metatags_arr[] = "<meta name='keywords' content='$blog_keywords' />";
|
152 |
+
}
|
153 |
+
} elseif ( is_front_page() ) {
|
154 |
+
// Static Home Page
|
155 |
+
if (!empty($home_description)) {
|
156 |
+
$metatags_arr[] = "<meta name='description' content='$home_description' />";
|
157 |
+
}
|
158 |
+
if (!empty($home_keywords)) {
|
159 |
+
$metatags_arr[] = "<meta name='keywords' content='$home_keywords' />";
|
160 |
+
}
|
161 |
+
} elseif ( is_home() ) {
|
162 |
+
// Blog Page
|
163 |
+
if (!empty($home_description)) {
|
164 |
+
$metatags_arr[] = "<meta name='description' content='$blog_description' />";
|
165 |
+
}
|
166 |
+
if (!empty($home_keywords)) {
|
167 |
+
$metatags_arr[] = "<meta name='keywords' content='$blog_keywords' />";
|
168 |
+
}
|
169 |
+
}
|
170 |
+
|
171 |
+
// Meta Tags for all website
|
172 |
+
if (!empty($author)) {
|
173 |
+
$metatags_arr[] = "<meta name='author' content='$author' />";
|
174 |
+
}
|
175 |
+
if (!empty($designer)) {
|
176 |
+
$metatags_arr[] = "<meta name='designer' content='$designer' />";
|
177 |
+
}
|
178 |
+
if (!empty($contact)) {
|
179 |
+
$metatags_arr[] = "<meta name='contact' content='$contact' />";
|
180 |
+
}
|
181 |
+
if (!empty($copyright)) {
|
182 |
+
$metatags_arr[] = "<meta name='copyright' content='$copyright' />";
|
183 |
+
}
|
184 |
+
if (!empty($keywords)) {
|
185 |
+
$metatags_arr[] = "<meta name='keywords' content='$keywords' />";
|
186 |
+
}
|
187 |
+
|
188 |
+
// WooCommerce & Google Shopping (Merchant Center)
|
189 |
+
if ( class_exists( 'WooCommerce' ) ) {
|
190 |
+
|
191 |
+
if ( is_product() ) {
|
192 |
+
|
193 |
+
$name = get_the_title();
|
194 |
+
$description = get_the_excerpt();
|
195 |
+
$image = simplexml_load_string(get_the_post_thumbnail());
|
196 |
+
if ( !empty($image) ) {
|
197 |
+
$imagesrc = $image->attributes()->src;
|
198 |
+
} else {
|
199 |
+
$imagesrc = "";
|
200 |
+
}
|
201 |
+
$price = get_post_meta( get_the_ID(), '_price', true);
|
202 |
+
$currency = get_woocommerce_currency();
|
203 |
+
|
204 |
+
$google_shopping = "<div itemtype='http://schema.org/Product' itemscope>
|
205 |
+
<meta itemprop='name' content='$name'>
|
206 |
+
<meta itemprop='description' content='$description'>
|
207 |
+
<meta itemprop='image' content='$imagesrc'>
|
208 |
+
<div itemprop='offers' itemscope itemtype='http://schema.org/Offer'>
|
209 |
+
<meta itemprop='price' content='$price' />
|
210 |
+
<meta itemprop='priceCurrency' content='$currency' />
|
211 |
+
</div>
|
212 |
+
</div>";
|
213 |
+
$metatags_arr[] = $google_shopping;
|
214 |
+
}
|
215 |
+
|
216 |
+
}
|
217 |
+
|
218 |
+
// Add comment
|
219 |
+
if ( count( $metatags_arr ) > 0 ) {
|
220 |
+
array_unshift( $metatags_arr, "<!-- [BEGIN] Metadata added via 'All Meta Tags' plugin by Arthur Gareginyan (https://www.arthurgareginyan.com) -->" );
|
221 |
+
array_push( $metatags_arr, "<!-- [END] Metadata added via 'All Meta Tags' plugin by Arthur Gareginyan (https://www.arthurgareginyan.com) -->" );
|
222 |
+
}
|
223 |
+
|
224 |
+
// Return the content of array
|
225 |
+
return $metatags_arr;
|
226 |
+
}
|
227 |
+
|
228 |
+
/**
|
229 |
+
* Include the Meta Tags in head area
|
230 |
+
*
|
231 |
+
* @since 1.0
|
232 |
+
*/
|
233 |
+
function allmetatags_add_metadata_head() {
|
234 |
+
echo PHP_EOL,
|
235 |
+
implode(PHP_EOL, allmetatags_add_meta_tags()),
|
236 |
+
PHP_EOL,
|
237 |
+
PHP_EOL;
|
238 |
+
}
|
239 |
+
add_action( 'wp_head', 'allmetatags_add_metadata_head', 0 );
|
inc/php/messages.php
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*
|
6 |
+
* @since 0.1
|
7 |
+
*/
|
8 |
+
defined('ABSPATH') or die("Restricted access!");
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Hello message - Bootstrap Modal
|
12 |
+
*
|
13 |
+
* @since 4.0
|
14 |
+
*/
|
15 |
+
function allmetatags_hello_message() {
|
16 |
+
|
17 |
+
$options = get_option( 'allmetatags_settings' );
|
18 |
+
|
19 |
+
if ( !empty($options) ) {
|
20 |
+
return;
|
21 |
+
}
|
22 |
+
|
23 |
+
?>
|
24 |
+
<div id="hello-message" class="modal fade hello-message" role="dialog">
|
25 |
+
<div class="modal-dialog">
|
26 |
+
<div class="modal-content">
|
27 |
+
<div class="modal-body">
|
28 |
+
<img src="http://mycyberuniverse.com/public-files/images/Arthur.png">
|
29 |
+
<button type="button" class="close" data-dismiss="modal">×</button>
|
30 |
+
<p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', ALLMT_TEXT ); ?></p>
|
31 |
+
<p><?php printf(
|
32 |
+
__( 'Thank you for installing my plugin! I hope you will love it %s', ALLMT_TEXT ),
|
33 |
+
'😃'
|
34 |
+
);
|
35 |
+
?></p>
|
36 |
+
</div>
|
37 |
+
</div>
|
38 |
+
</div>
|
39 |
+
</div>
|
40 |
+
<script>
|
41 |
+
jQuery(document).ready(function($) {
|
42 |
+
$("#hello-message").modal();
|
43 |
+
});
|
44 |
+
</script>
|
45 |
+
<?php
|
46 |
+
}
|
47 |
+
|
48 |
+
/**
|
49 |
+
* Error message (When the old version of plugin installed) - Bootstrap Modal
|
50 |
+
*
|
51 |
+
* @since 4.0
|
52 |
+
*/
|
53 |
+
function allmetatags_error_message() {
|
54 |
+
|
55 |
+
$info = get_option( 'allmetatags_service_info' );
|
56 |
+
$old_version = isset( $info['old_version'] ) && !empty( $info['old_version'] ) ? $info['old_version'] : '0';
|
57 |
+
|
58 |
+
if ( $old_version != '1' ) {
|
59 |
+
return;
|
60 |
+
}
|
61 |
+
|
62 |
+
?>
|
63 |
+
<div id="error-message" class="modal fade error-message" role="dialog">
|
64 |
+
<div class="modal-dialog">
|
65 |
+
<div class="modal-content">
|
66 |
+
<div class="modal-body">
|
67 |
+
<p><?php _e( 'You have installed an old version of this plugin.', ALLMT_TEXT ); ?></p>
|
68 |
+
<p><?php _e( 'Please update the plugin to the latest version, and all will be fine.', ALLMT_TEXT ); ?></p>
|
69 |
+
</div>
|
70 |
+
</div>
|
71 |
+
</div>
|
72 |
+
</div>
|
73 |
+
<script>
|
74 |
+
jQuery(document).ready(function($) {
|
75 |
+
$("#error-message").modal( {backdrop: "static", keyboard: false} );
|
76 |
+
});
|
77 |
+
</script>
|
78 |
+
<?php
|
79 |
+
}
|
inc/php/page.php
ADDED
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*
|
6 |
+
* @since 0.1
|
7 |
+
*/
|
8 |
+
defined('ABSPATH') or die("Restricted access!");
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Render Settings Page
|
12 |
+
*
|
13 |
+
* @since 4.0
|
14 |
+
*/
|
15 |
+
function allmetatags_render_submenu_page() {
|
16 |
+
|
17 |
+
// Call messages
|
18 |
+
allmetatags_hello_message();
|
19 |
+
allmetatags_error_message();
|
20 |
+
|
21 |
+
// Layout of page
|
22 |
+
?>
|
23 |
+
<div class="wrap">
|
24 |
+
<h2>
|
25 |
+
<?php _e( 'All Meta Tags', ALLMT_TEXT ); ?>
|
26 |
+
<span>
|
27 |
+
<?php printf(
|
28 |
+
__( 'by %s Arthur Gareginyan %s', ALLMT_TEXT ),
|
29 |
+
'<a href="http://www.arthurgareginyan.com" target="_blank">',
|
30 |
+
'</a>'
|
31 |
+
);
|
32 |
+
?>
|
33 |
+
</span>
|
34 |
+
</h2>
|
35 |
+
|
36 |
+
<div id="poststuff" class="metabox-holder has-right-sidebar">
|
37 |
+
|
38 |
+
<!-- TABS NAVIGATION MENU -->
|
39 |
+
<ul class="tabs-nav">
|
40 |
+
<li class="active"><a href="#tab-core" data-toggle="tab"><?php _e( 'Settings', ALLMT_TEXT ); ?></a></li>
|
41 |
+
<li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', ALLMT_TEXT ); ?></a></li>
|
42 |
+
<li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', ALLMT_TEXT ); ?></a></li>
|
43 |
+
<li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', ALLMT_TEXT ); ?></a></li>
|
44 |
+
<li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', ALLMT_TEXT ); ?></a></li>
|
45 |
+
<li><a href="#tab-family" data-toggle="tab"><?php _e( 'Family', ALLMT_TEXT ); ?></a></li>
|
46 |
+
</ul>
|
47 |
+
<!-- END-TABS NAVIGATION MENU -->
|
48 |
+
|
49 |
+
|
50 |
+
<!-- TAB 1 -->
|
51 |
+
<div class="tab-page fade active in" id="tab-core">
|
52 |
+
|
53 |
+
<?php require_once( ALLMT_PATH . 'inc/php/settings.php' ); ?>
|
54 |
+
|
55 |
+
</div>
|
56 |
+
<!-- END-TAB 1 -->
|
57 |
+
|
58 |
+
<!-- TAB 2 -->
|
59 |
+
<div class="tab-page fade" id="tab-usage">
|
60 |
+
<div class="postbox">
|
61 |
+
<h3 class="title"><?php _e( 'Usage', ALLMT_TEXT ); ?></h3>
|
62 |
+
<div class="inside">
|
63 |
+
<p><?php _e( 'To add the meta tags to your website, simply follow these steps:', ALLMT_TEXT ); ?></p>
|
64 |
+
<ol class="custom-counter">
|
65 |
+
<li><?php _e( 'Go to the "Settings" tab.', ALLMT_TEXT ); ?></li>
|
66 |
+
<li><?php _e( 'Fill in the required fields, select the desired settings and click the "Save Changes" button.', ALLMT_TEXT ); ?></li>
|
67 |
+
<li><?php _e( 'Enjoy the improved SEO of your website.', ALLMT_TEXT ); ?> <?php _e( 'It\'s that simple!', ALLMT_TEXT ); ?></li>
|
68 |
+
</ol>
|
69 |
+
<p class="note"><b><?php _e( 'Note!', ALLMT_TEXT ); ?></b> <?php _e( 'If you want more options then tell me and I will be happy to add it.', ALLMT_TEXT ); ?></p>
|
70 |
+
</div>
|
71 |
+
</div>
|
72 |
+
</div>
|
73 |
+
<!-- END-TAB 2 -->
|
74 |
+
|
75 |
+
<!-- TAB 3 -->
|
76 |
+
<div class="tab-page fade" id="tab-faq">
|
77 |
+
<div class="postbox">
|
78 |
+
<h3 class="title"><?php _e( 'Frequently Asked Questions', ALLMT_TEXT ); ?></h3>
|
79 |
+
<div class="inside">
|
80 |
+
|
81 |
+
<div class="panel-group" id="collapse-group">
|
82 |
+
<?php
|
83 |
+
$loopvalue = '13';
|
84 |
+
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
85 |
+
echo '<div class="panel panel-default">
|
86 |
+
<div class="panel-heading">
|
87 |
+
<a data-toggle="collapse" data-parent="#collapse-group" href="#element' . $i . '">
|
88 |
+
<h4 class="panel-title"></h4>
|
89 |
+
</a>
|
90 |
+
</div>
|
91 |
+
<div id="element' . $i . '" class="panel-collapse collapse">
|
92 |
+
<div class="panel-body">
|
93 |
+
</div>
|
94 |
+
</div>
|
95 |
+
</div>';
|
96 |
+
}
|
97 |
+
?>
|
98 |
+
</div>
|
99 |
+
|
100 |
+
<div class="question-1"><?php _e( 'Will this plugin work on my WordPress.COM website?', ALLMT_TEXT ); ?></div>
|
101 |
+
<div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.', ALLMT_TEXT ); ?></div>
|
102 |
+
|
103 |
+
<div class="question-2"><?php _e( 'Can I use this plugin on my language?', ALLMT_TEXT ); ?></div>
|
104 |
+
<div class="answer-2"><?php printf(
|
105 |
+
__( 'Yes. But If your language is not available then you can make one. This plugin is ready for translation. The<code>.pot</code>file is included and placed in the <code>languages</code> folder. Many of plugin users would be delighted if you shared your translation with the community. Just send the translation files (<code>*.po, *.mo</code>) to me at the %s and I will include the translation within the next plugin update.', ALLMT_TEXT ),
|
106 |
+
'<a href="mailto:arthurgareginyan@gmail.com?subject=All Meta Tags">arthurgareginyan@gmail.com</a>'
|
107 |
+
);
|
108 |
+
?></div>
|
109 |
+
|
110 |
+
<div class="question-3"><?php _e( 'How does it work?', ALLMT_TEXT ); ?></div>
|
111 |
+
<div class="answer-3"><?php _e( 'On the "Settings" tab, fill in the required fields, select the desired settings and click the "Save Changes" button. Enjoy the improved SEO of your website. It\'s that simple!', ALLMT_TEXT ); ?></div>
|
112 |
+
|
113 |
+
<div class="question-4"><?php _e( 'How much of description I can enter in the text field?', ALLMT_TEXT ); ?></div>
|
114 |
+
<div class="answer-4"><?php _e( 'I don\'t limit the number of characters, but most search engines use a maximum of 160 chars for the home description.', ALLMT_TEXT ); ?></div>
|
115 |
+
|
116 |
+
<div class="question-5"><?php _e( 'How much of keywords I can enter in the text field?', ALLMT_TEXT ); ?></div>
|
117 |
+
<div class="answer-5"><?php _e( 'I don\'t limit the number of characters.', ALLMT_TEXT ); ?></div>
|
118 |
+
|
119 |
+
<div class="question-6 question-red"><?php _e( 'I can\'t get verify my website. What am I doing wrong?', ALLMT_TEXT ); ?></div>
|
120 |
+
<div class="answer-6"><?php _e( 'The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag (<code><meta name="google-site-verification" content=“1234567890” /></code>). So just paste that into the relevant field and you will see “Success” message appear within a few seconds.', ALLMT_TEXT ); ?></div>
|
121 |
+
|
122 |
+
<div class="question-7"><?php _e( 'What about compatibility with plugin "All in One SEO Pack"?', ALLMT_TEXT ); ?></div>
|
123 |
+
<div class="answer-7"><?php _e( 'To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:', ALLMT_TEXT ); ?>
|
124 |
+
<pre><code><head>
|
125 |
+
...
|
126 |
+
<meta name="copyright" content="Copyright (c) 2013-2017 Arthur Gareginyan. All Rights Reserved.">
|
127 |
+
...
|
128 |
+
<meta name="copyright" content="Copyright 2017 Arthur Gareginyan. All Rights Reserved.">
|
129 |
+
...
|
130 |
+
</head></code></pre>
|
131 |
+
<?php _e( 'In the rest, the "All Meta Tags" and "All in One SEO Pack" is compatible.', ALLMT_TEXT ); ?></div>
|
132 |
+
|
133 |
+
<div class="question-8"><?php _e( 'Does this plugin requires any modification of the theme?', ALLMT_TEXT ); ?></div>
|
134 |
+
<div class="answer-8"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', ALLMT_TEXT ); ?></div>
|
135 |
+
|
136 |
+
<div class="question-9"><?php _e( 'Does this require any knowledge of HTML or CSS?', ALLMT_TEXT ); ?></div>
|
137 |
+
<div class="answer-9"><?php _e( 'Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', ALLMT_TEXT ); ?></div>
|
138 |
+
|
139 |
+
<div class="question-10 question-red"><?php _e( 'It\'s not working. What could be wrong?', ALLMT_TEXT ); ?></div>
|
140 |
+
<div class="answer-10"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. The most common reason for this is a web browser\'s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache. Clearing your browser\'s cache may solve the problem.', ALLMT_TEXT ); ?><br><br>
|
141 |
+
<?php _e( 'It\'s impossible to tell what could be wrong exactly, but if you post a support request in the plugin\'s support forum on WordPress.org, I\'d be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.', ALLMT_TEXT ); ?></div>
|
142 |
+
|
143 |
+
<div class="question-11 question-red"><?php _e( 'Where to report bug if found?', ALLMT_TEXT ); ?></div>
|
144 |
+
<div class="answer-11"><?php printf(
|
145 |
+
__( 'Please visit the %s Dedicated Plugin Page on GitHub %s and report.', ALLMT_TEXT ),
|
146 |
+
'<a href="https://github.com/ArthurGareginyan/all-meta-tags" target="_blank">',
|
147 |
+
'</a>'
|
148 |
+
);
|
149 |
+
?></div>
|
150 |
+
|
151 |
+
<div class="question-12"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', ALLMT_TEXT ); ?></div>
|
152 |
+
<div class="answer-12"><?php printf(
|
153 |
+
__( 'Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!', ALLMT_TEXT ),
|
154 |
+
'<a href="mailto:arthurgareginyan@gmail.com?subject=All Meta Tags">',
|
155 |
+
'</a>'
|
156 |
+
);
|
157 |
+
?></div>
|
158 |
+
|
159 |
+
<div class="question-13"><?php _e( 'I love this plugin! Can I help somehow?', ALLMT_TEXT ); ?></div>
|
160 |
+
<div class="answer-13"><?php printf(
|
161 |
+
__( 'Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!', ALLMT_TEXT ),
|
162 |
+
'<a href="http://www.arthurgareginyan.com/donate.html" target="_blank">',
|
163 |
+
'</a>'
|
164 |
+
);
|
165 |
+
?></div>
|
166 |
+
|
167 |
+
</div>
|
168 |
+
</div>
|
169 |
+
</div>
|
170 |
+
<!-- END-TAB 3 -->
|
171 |
+
|
172 |
+
<!-- TAB 4 -->
|
173 |
+
<div class="tab-page fade" id="tab-author">
|
174 |
+
<div class="postbox">
|
175 |
+
<h3 class="title"><?php _e( 'Author', ALLMT_TEXT ); ?></h3>
|
176 |
+
<div class="inside include-tab-author"></div>
|
177 |
+
</div>
|
178 |
+
</div>
|
179 |
+
<!-- END-TAB 4 -->
|
180 |
+
|
181 |
+
<!-- TAB 5 -->
|
182 |
+
<div class="tab-page fade" id="tab-support">
|
183 |
+
<div class="postbox">
|
184 |
+
<h3 class="title"><?php _e( 'Support', ALLMT_TEXT ); ?></h3>
|
185 |
+
<div class="inside include-tab-support"></div>
|
186 |
+
</div>
|
187 |
+
</div>
|
188 |
+
<!-- END-TAB 5 -->
|
189 |
+
|
190 |
+
<!-- TAB 6 -->
|
191 |
+
<div class="tab-page fade" id="tab-family">
|
192 |
+
<div class="include-tab-family"></div>
|
193 |
+
</div>
|
194 |
+
<!-- END-TAB 6 -->
|
195 |
+
|
196 |
+
<div class="additional-css"></div>
|
197 |
+
|
198 |
+
</div>
|
199 |
+
|
200 |
+
</div>
|
201 |
+
<?php
|
202 |
+
}
|
inc/php/settings.php
ADDED
@@ -0,0 +1,252 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*
|
6 |
+
* @since 0.1
|
7 |
+
*/
|
8 |
+
defined('ABSPATH') or die("Restricted access!");
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Render Settings Tab
|
12 |
+
*
|
13 |
+
* @since 4.0
|
14 |
+
*/
|
15 |
+
?>
|
16 |
+
<!-- SIDEBAR -->
|
17 |
+
<div class="inner-sidebar">
|
18 |
+
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
19 |
+
|
20 |
+
<div id="about" class="postbox">
|
21 |
+
<h3 class="title"><?php _e( 'About', ALLMT_TEXT ); ?></h3>
|
22 |
+
<div class="inside">
|
23 |
+
<p><?php _e( 'This plugin allows you to easily add Meta Tags to your website.', ALLMT_TEXT ); ?></p>
|
24 |
+
</div>
|
25 |
+
</div>
|
26 |
+
|
27 |
+
<div id="support" class="postbox">
|
28 |
+
<h3 class="title"><?php _e( 'Support', ALLMT_TEXT ); ?></h3>
|
29 |
+
<div class="inside">
|
30 |
+
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', ALLMT_TEXT ); ?></p>
|
31 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', ALLMT_TEXT ); ?></a>
|
32 |
+
<p><?php _e( 'Thanks for your support!', ALLMT_TEXT ); ?></p>
|
33 |
+
</div>
|
34 |
+
</div>
|
35 |
+
|
36 |
+
<div id="help" class="postbox">
|
37 |
+
<h3 class="title"><?php _e( 'Help', ALLMT_TEXT ); ?></h3>
|
38 |
+
<div class="inside">
|
39 |
+
<p><?php _e( 'Got something to say? Need help?', ALLMT_TEXT ); ?></p>
|
40 |
+
<p><a href="mailto:arthurgareginyan@gmail.com?subject=All Meta Tags">arthurgareginyan@gmail.com</a></p>
|
41 |
+
</div>
|
42 |
+
</div>
|
43 |
+
|
44 |
+
</div>
|
45 |
+
</div>
|
46 |
+
<!-- END-SIDEBAR -->
|
47 |
+
|
48 |
+
<!-- FORM -->
|
49 |
+
<div class="has-sidebar sm-padded">
|
50 |
+
<div id="post-body-content" class="has-sidebar-content">
|
51 |
+
<div class="meta-box-sortabless">
|
52 |
+
|
53 |
+
<form name="allmetatags-form" action="options.php" method="post" enctype="multipart/form-data">
|
54 |
+
<?php settings_fields( 'allmetatags_settings_group' ); ?>
|
55 |
+
|
56 |
+
<?php
|
57 |
+
// Get options from the BD
|
58 |
+
$options = get_option( 'allmetatags_settings' );
|
59 |
+
?>
|
60 |
+
|
61 |
+
<div class="postbox" id="WebMasterTools">
|
62 |
+
<h3 class="title"><?php _e( 'Web Master Tools', ALLMT_TEXT ); ?></h3>
|
63 |
+
<div class="inside">
|
64 |
+
<p class="note"><?php _e( 'Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', ALLMT_TEXT ); ?></p>
|
65 |
+
<table class="form-table">
|
66 |
+
<?php allmetatags_field('google',
|
67 |
+
'Google Webmaster Tools',
|
68 |
+
'1234567890',
|
69 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="google-site-verification" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
70 |
+
'https://www.google.com/webmasters/verification/'); ?>
|
71 |
+
<?php allmetatags_field('bing',
|
72 |
+
'Bing Webmaster Tools',
|
73 |
+
'1234567890',
|
74 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="msvalidate.01" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
75 |
+
'http://www.bing.com/webmaster/'); ?>
|
76 |
+
<?php allmetatags_field('yandex',
|
77 |
+
'Yandex Webmaster Tools',
|
78 |
+
'1234567890',
|
79 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="yandex-verification" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
80 |
+
'https://webmaster.yandex.com'); ?>
|
81 |
+
</table>
|
82 |
+
<?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
|
83 |
+
</div>
|
84 |
+
</div>
|
85 |
+
|
86 |
+
<div class="postbox" id="DomainVerification">
|
87 |
+
<h3 class="title"><?php _e( 'Domain Verification', ALLMT_TEXT ); ?></h3>
|
88 |
+
<div class="inside">
|
89 |
+
<p class="note"><?php _e( 'Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', ALLMT_TEXT ); ?></p>
|
90 |
+
<table class="form-table">
|
91 |
+
<?php allmetatags_field('pinterest',
|
92 |
+
'Pinterest',
|
93 |
+
'1234567890',
|
94 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="p:domain_verify" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
95 |
+
'https://help.pinterest.com/en/articles/confirm-your-website'); ?>
|
96 |
+
<?php allmetatags_field('google_author',
|
97 |
+
'Google+',
|
98 |
+
'https://plus.google.com/+ArthurGareginyan/',
|
99 |
+
__( 'Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/+ArthurGareginyan/', ALLMT_TEXT ),
|
100 |
+
'https://plus.google.com/'); ?>
|
101 |
+
<?php allmetatags_field('facebook',
|
102 |
+
'Facebook',
|
103 |
+
'https://www.facebook.com/arthur.gareginyan',
|
104 |
+
__( 'Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur.gareginyan', ALLMT_TEXT ),
|
105 |
+
'https://www.facebook.com/'); ?>
|
106 |
+
<?php allmetatags_field('twitter',
|
107 |
+
'Twitter',
|
108 |
+
'@AGareginyan',
|
109 |
+
__( 'Enter the Twitter username of the publisher. <br>Example: @AGareginyan', ALLMT_TEXT ),
|
110 |
+
'https://twitter.com/'); ?>
|
111 |
+
<?php allmetatags_field('alexa',
|
112 |
+
'Alexa',
|
113 |
+
'1234567890',
|
114 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="alexaVerifyID" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
115 |
+
'http://www.alexa.com/siteowners/claim'); ?>
|
116 |
+
<?php allmetatags_field('norton',
|
117 |
+
'Norton Safe Web',
|
118 |
+
'1234567890',
|
119 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
120 |
+
'https://safeweb.norton.com/help/site_owners'); ?>
|
121 |
+
<?php allmetatags_field('wot',
|
122 |
+
'Web of Trust (WOT)',
|
123 |
+
'1234567890',
|
124 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="wot-verification" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
125 |
+
'https://www.mywot.com/wiki/Verify_your_website'); ?>
|
126 |
+
<?php allmetatags_field('specificfeeds',
|
127 |
+
'SpecificFeeds',
|
128 |
+
'1234567890',
|
129 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="specificfeeds-verification-code" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
130 |
+
'https://www.specificfeeds.com/rss?pub=2jcpuERsm61dbHbp2czf9A'); ?>
|
131 |
+
<?php allmetatags_field('custom_meta',
|
132 |
+
__( 'Custom Meta Tags', ALLMT_TEXT ),
|
133 |
+
'<meta name="google-site-verification" content=“1234567890” />',
|
134 |
+
__( 'If you can\'t find a field to enter your required meta tag then you can add it here. In this field you can add multiple meta tags.', ALLMT_TEXT ),
|
135 |
+
'',
|
136 |
+
'textarea'); ?>
|
137 |
+
</table>
|
138 |
+
<?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
|
139 |
+
</div>
|
140 |
+
</div>
|
141 |
+
|
142 |
+
<div class="postbox" id="Home">
|
143 |
+
<h3 class="title"><?php _e( 'Meta Tags for Static Home Page only', ALLMT_TEXT ); ?></h3>
|
144 |
+
<div class="inside">
|
145 |
+
<p class="note"><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website.', ALLMT_TEXT ); ?></p>
|
146 |
+
<table class="form-table">
|
147 |
+
<?php allmetatags_field('home_description',
|
148 |
+
__( 'Home Description', ALLMT_TEXT ),
|
149 |
+
'My website is about plants, nature, the sea and everything I love',
|
150 |
+
__( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', ALLMT_TEXT ),
|
151 |
+
'',
|
152 |
+
'textarea'); ?>
|
153 |
+
<?php allmetatags_field('home_keywords',
|
154 |
+
__( 'Home Keyword(s)', ALLMT_TEXT ),
|
155 |
+
'blog, awesome, handmade, books, theater',
|
156 |
+
__( 'Enter a comma-delimited list of keywords for only Static Home Page of your website.', ALLMT_TEXT ),
|
157 |
+
'',
|
158 |
+
'textarea'); ?>
|
159 |
+
</table>
|
160 |
+
<?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
|
161 |
+
</div>
|
162 |
+
</div>
|
163 |
+
|
164 |
+
<div class="postbox" id="Blog">
|
165 |
+
<h3 class="title"><?php _e( 'Meta Tags for Default Home Page and Blog Page only', ALLMT_TEXT ); ?></h3>
|
166 |
+
<div class="inside">
|
167 |
+
<p class="note"><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website.', ALLMT_TEXT ); ?></p>
|
168 |
+
<table class="form-table">
|
169 |
+
<?php allmetatags_field('blog_description',
|
170 |
+
__( 'Blog Description', ALLMT_TEXT ),
|
171 |
+
'My blog is about plants, nature, the sea and everything I love',
|
172 |
+
__( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', ALLMT_TEXT ),
|
173 |
+
'',
|
174 |
+
'textarea'); ?>
|
175 |
+
<?php allmetatags_field('blog_keywords',
|
176 |
+
__( 'Blog Keyword(s)', ALLMT_TEXT ),
|
177 |
+
'blog, awesome, handmade, books, theater',
|
178 |
+
__( 'Enter a comma-delimited list of keywords for only Blog Page of your website.', ALLMT_TEXT ),
|
179 |
+
'',
|
180 |
+
'textarea'); ?>
|
181 |
+
</table>
|
182 |
+
<?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
|
183 |
+
</div>
|
184 |
+
</div>
|
185 |
+
|
186 |
+
<div class="postbox" id="Everywhere">
|
187 |
+
<h3 class="title"><?php _e( 'Meta Tags for all website (Global)', ALLMT_TEXT ); ?></h3>
|
188 |
+
<div class="inside">
|
189 |
+
<p class="note"><?php _e( 'You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website.', ALLMT_TEXT ); ?></p>
|
190 |
+
<table class="form-table">
|
191 |
+
<?php allmetatags_field('author',
|
192 |
+
__( 'Author', ALLMT_TEXT ),
|
193 |
+
'Arthur Gareginyan',
|
194 |
+
'',
|
195 |
+
''); ?>
|
196 |
+
<?php allmetatags_field('designer',
|
197 |
+
__( 'Designer', ALLMT_TEXT ),
|
198 |
+
'Arthur Gareginyan',
|
199 |
+
'',
|
200 |
+
''); ?>
|
201 |
+
<?php allmetatags_field('contact',
|
202 |
+
__( 'Contact', ALLMT_TEXT ),
|
203 |
+
'arthurgareginyan@gmail.com',
|
204 |
+
''); ?>
|
205 |
+
<?php allmetatags_field('copyright',
|
206 |
+
__( 'Copyright', ALLMT_TEXT ),
|
207 |
+
'Copyright (c) 2013-2016 Arthur Gareginyan. All Rights Reserved.',
|
208 |
+
''); ?>
|
209 |
+
<?php allmetatags_field('keywords',
|
210 |
+
__( 'Keyword(s)', ALLMT_TEXT ),
|
211 |
+
'blog, awesome, handmade, books, theater',
|
212 |
+
__( 'Enter a comma-delimited list of global keywords for your website.', ALLMT_TEXT ),
|
213 |
+
'',
|
214 |
+
'textarea'); ?>
|
215 |
+
</table>
|
216 |
+
<?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
|
217 |
+
</div>
|
218 |
+
</div>
|
219 |
+
|
220 |
+
<div class="postbox" id="WooCommerce">
|
221 |
+
<h3 class="title"><?php _e( 'WooCommerce & Google Shopping', ALLMT_TEXT ); ?></h3>
|
222 |
+
<div class="inside">
|
223 |
+
<p><?php _e( 'This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website. Here is the markup for women\'s T-shirt that sells for 16 dollars and 80 cents of US.', ALLMT_TEXT ); ?></p>
|
224 |
+
<pre><div itemtype="http://schema.org/Product" itemscope="">
|
225 |
+
<meta itemprop="name" content="Womens T-shirt">
|
226 |
+
<meta itemprop="description" content="Constructed in cotton sweat fabric, this lovely piece...">
|
227 |
+
<meta itemprop="image" content="http://example.com/wp-content/uploads/2015/09/product-1.jpg">
|
228 |
+
<div itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
|
229 |
+
<meta itemprop="price" content="16.80">
|
230 |
+
<meta itemprop="priceCurrency" content="USD">
|
231 |
+
</div>
|
232 |
+
</div></pre>
|
233 |
+
<p><?php _e( 'Check these data generated on the pages of your website you can <a href="https://search.google.com/structured-data/testing-tool" target="_blank">here</a>.', ALLMT_TEXT ); ?></p>
|
234 |
+
</div>
|
235 |
+
</div>
|
236 |
+
|
237 |
+
<div id="support-addition" class="postbox">
|
238 |
+
<h3 class="title"><?php _e( 'Support', ALLMT_TEXT ); ?></h3>
|
239 |
+
<div class="inside">
|
240 |
+
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', ALLMT_TEXT ); ?></p>
|
241 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', ALLMT_TEXT ); ?></a>
|
242 |
+
<p><?php _e( 'Thanks for your support!', ALLMT_TEXT ); ?></p>
|
243 |
+
</div>
|
244 |
+
</div>
|
245 |
+
|
246 |
+
</form>
|
247 |
+
|
248 |
+
</div>
|
249 |
+
</div>
|
250 |
+
</div>
|
251 |
+
<!-- END-FORM -->
|
252 |
+
<?php
|
inc/php/settings_page.php
DELETED
@@ -1,273 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Prevent Direct Access
|
5 |
-
*
|
6 |
-
* @since 0.1
|
7 |
-
*/
|
8 |
-
defined('ABSPATH') or die("Restricted access!");
|
9 |
-
|
10 |
-
/**
|
11 |
-
* Render Settings Page
|
12 |
-
*
|
13 |
-
* @since 3.6
|
14 |
-
*/
|
15 |
-
function allmetatags_render_submenu_page() {
|
16 |
-
|
17 |
-
// Declare variables
|
18 |
-
$options = get_option( 'allmetatags_settings' );
|
19 |
-
|
20 |
-
// Page
|
21 |
-
?>
|
22 |
-
<div class="wrap">
|
23 |
-
<h2>
|
24 |
-
<?php _e( 'All Meta Tags', ALLMT_TEXT ); ?>
|
25 |
-
<br/>
|
26 |
-
<span>
|
27 |
-
<?php _e( 'by <a href="http://www.arthurgareginyan.com" target="_blank">Arthur Gareginyan</a>', ALLMT_TEXT ); ?>
|
28 |
-
<span/>
|
29 |
-
</h2>
|
30 |
-
|
31 |
-
<div id="poststuff" class="metabox-holder has-right-sidebar">
|
32 |
-
|
33 |
-
<!-- SIDEBAR -->
|
34 |
-
<div class="inner-sidebar">
|
35 |
-
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
36 |
-
|
37 |
-
<div id="about" class="postbox">
|
38 |
-
<h3 class="title"><?php _e( 'About', ALLMT_TEXT ); ?></a></h3>
|
39 |
-
<div class="inside">
|
40 |
-
<p><?php _e( 'This plugin allows you to easily add Meta Tags to your website.', ALLMT_TEXT ); ?></p>
|
41 |
-
</div>
|
42 |
-
</div>
|
43 |
-
|
44 |
-
<div id="using" class="postbox">
|
45 |
-
<h3 class="title"><?php _e( 'Using', ALLMT_TEXT ); ?></a></h3>
|
46 |
-
<div class="inside">
|
47 |
-
<p><?php _e( 'To use, enter your custom Meta Tags, then click "Save Changes". It\'s that simple!', ALLMT_TEXT ); ?></p>
|
48 |
-
</div>
|
49 |
-
</div>
|
50 |
-
|
51 |
-
<div id="help" class="postbox">
|
52 |
-
<h3 class="title"><?php _e( 'Help', ALLMT_TEXT ); ?></h3>
|
53 |
-
<div class="inside">
|
54 |
-
<p><?php _e( 'Got something to say? Need help?', ALLMT_TEXT ); ?></p>
|
55 |
-
<p><a href="mailto:arthurgareginyan@gmail.com?subject=All Meta Tags">arthurgareginyan@gmail.com</a></p>
|
56 |
-
</div>
|
57 |
-
</div>
|
58 |
-
|
59 |
-
<div id="donate" class="postbox">
|
60 |
-
<h3 class="title"><?php _e( 'Donate', ALLMT_TEXT ); ?></h3>
|
61 |
-
<div class="inside">
|
62 |
-
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', ALLMT_TEXT ); ?></p>
|
63 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" rel="nofollow">
|
64 |
-
<img src="<?php echo plugins_url('../img/donate.png', __FILE__); ?>" alt="Make a donation">
|
65 |
-
</a>
|
66 |
-
<p><?php _e( 'Thanks for your support!', ALLMT_TEXT ); ?></p>
|
67 |
-
</div>
|
68 |
-
</div>
|
69 |
-
|
70 |
-
<a href="//www.iconfinder.com/?ref=ArthurGareginyan" target="_blank" rel="nofollow">
|
71 |
-
<img style="border:0px" src="<?php echo plugins_url('../img/banner.png', __FILE__); ?>" width="280" height="180" alt="">
|
72 |
-
</a>
|
73 |
-
|
74 |
-
|
75 |
-
</div>
|
76 |
-
</div>
|
77 |
-
<!-- END-SIDEBAR -->
|
78 |
-
|
79 |
-
<!-- FORM -->
|
80 |
-
<div class="has-sidebar sm-padded">
|
81 |
-
<div id="post-body-content" class="has-sidebar-content">
|
82 |
-
<div class="meta-box-sortabless">
|
83 |
-
|
84 |
-
<form name="allmetatags-form" action="options.php" method="post" enctype="multipart/form-data">
|
85 |
-
<?php settings_fields( 'allmetatags_settings_group' ); ?>
|
86 |
-
|
87 |
-
<div class="postbox" id="WebMasterTools">
|
88 |
-
<h3 class="title"><?php _e( 'Web Master Tools', ALLMT_TEXT ); ?></h3>
|
89 |
-
<div class="inside">
|
90 |
-
<p><?php _e( 'Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', ALLMT_TEXT ); ?></p>
|
91 |
-
<table class="form-table">
|
92 |
-
<?php allmetatags_field('google',
|
93 |
-
'Google Webmaster Tools',
|
94 |
-
'1234567890',
|
95 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="google-site-verification" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
96 |
-
'https://www.google.com/webmasters/verification/'); ?>
|
97 |
-
<?php allmetatags_field('bing',
|
98 |
-
'Bing Webmaster Tools',
|
99 |
-
'1234567890',
|
100 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="msvalidate.01" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
101 |
-
'http://www.bing.com/webmaster/'); ?>
|
102 |
-
<?php allmetatags_field('yandex',
|
103 |
-
'Yandex Webmaster Tools',
|
104 |
-
'1234567890',
|
105 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="yandex-verification" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
106 |
-
'https://webmaster.yandex.com'); ?>
|
107 |
-
</table>
|
108 |
-
<?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
|
109 |
-
</div>
|
110 |
-
</div>
|
111 |
-
|
112 |
-
<div class="postbox" id="DomainVerification">
|
113 |
-
<h3 class="title"><?php _e( 'Domain Verification', ALLMT_TEXT ); ?></h3>
|
114 |
-
<div class="inside">
|
115 |
-
<p><?php _e( 'Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', ALLMT_TEXT ); ?></p>
|
116 |
-
<table class="form-table">
|
117 |
-
<?php allmetatags_field('pinterest',
|
118 |
-
'Pinterest',
|
119 |
-
'1234567890',
|
120 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="p:domain_verify" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
121 |
-
'https://help.pinterest.com/en/articles/confirm-your-website'); ?>
|
122 |
-
<?php allmetatags_field('google_author',
|
123 |
-
'Google+',
|
124 |
-
'https://plus.google.com/+ArthurGareginyan/',
|
125 |
-
__( 'Enter an absolute URL to the Google+ profile of the publisher. </br>Example: https://plus.google.com/+ArthurGareginyan/', ALLMT_TEXT ),
|
126 |
-
'https://plus.google.com/'); ?>
|
127 |
-
<?php allmetatags_field('facebook',
|
128 |
-
'Facebook',
|
129 |
-
'https://www.facebook.com/arthur.gareginyan',
|
130 |
-
__( 'Enter an absolute URL to the Facebook profile of the publisher. </br>Example: https://www.facebook.com/arthur.gareginyan', ALLMT_TEXT ),
|
131 |
-
'https://www.facebook.com/'); ?>
|
132 |
-
<?php allmetatags_field('twitter',
|
133 |
-
'Twitter',
|
134 |
-
'@AGareginyan',
|
135 |
-
__( 'Enter the Twitter username of the publisher. </br>Example: @AGareginyan', ALLMT_TEXT ),
|
136 |
-
'https://twitter.com/'); ?>
|
137 |
-
<?php allmetatags_field('alexa',
|
138 |
-
'Alexa',
|
139 |
-
'1234567890',
|
140 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="alexaVerifyID" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
141 |
-
'http://www.alexa.com/siteowners/claim'); ?>
|
142 |
-
<?php allmetatags_field('norton',
|
143 |
-
'Norton Safe Web',
|
144 |
-
'1234567890',
|
145 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
146 |
-
'https://safeweb.norton.com/help/site_owners'); ?>
|
147 |
-
<?php allmetatags_field('wot',
|
148 |
-
'Web of Trust (WOT)',
|
149 |
-
'1234567890',
|
150 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="wot-verification" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
151 |
-
'https://www.mywot.com/wiki/Verify_your_website'); ?>
|
152 |
-
<?php allmetatags_field('specificfeeds',
|
153 |
-
'SpecificFeeds',
|
154 |
-
'1234567890',
|
155 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="specificfeeds-verification-code" content=“<b>1234567890</b>” />', ALLMT_TEXT ),
|
156 |
-
'https://www.specificfeeds.com/rss?pub=2jcpuERsm61dbHbp2czf9A'); ?>
|
157 |
-
<?php allmetatags_field('custom_meta',
|
158 |
-
__( 'Custom Meta Tags', ALLMT_TEXT ),
|
159 |
-
'<meta name="google-site-verification" content=“1234567890” />',
|
160 |
-
__( 'If you can\'t find a field to enter your required meta tag then you can add it here. In this field you can add multiple meta tags.', ALLMT_TEXT ),
|
161 |
-
'',
|
162 |
-
'textarea'); ?>
|
163 |
-
</table>
|
164 |
-
<?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
|
165 |
-
</div>
|
166 |
-
</div>
|
167 |
-
|
168 |
-
<div class="postbox" id="Home">
|
169 |
-
<h3 class="title"><?php _e( 'Meta Tags for Static Home Page only', ALLMT_TEXT ); ?></h3>
|
170 |
-
<div class="inside">
|
171 |
-
<p><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website.', ALLMT_TEXT ); ?></p>
|
172 |
-
<table class="form-table">
|
173 |
-
<?php allmetatags_field('home_description',
|
174 |
-
__( 'Home Description', ALLMT_TEXT ),
|
175 |
-
'My website is about plants, nature, the sea and everything I love',
|
176 |
-
__( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', ALLMT_TEXT ),
|
177 |
-
'',
|
178 |
-
'textarea'); ?>
|
179 |
-
<?php allmetatags_field('home_keywords',
|
180 |
-
__( 'Home Keyword(s)', ALLMT_TEXT ),
|
181 |
-
'blog, awesome, handmade, books, theater',
|
182 |
-
__( 'Enter a comma-delimited list of keywords for only Static Home Page of your website.', ALLMT_TEXT ),
|
183 |
-
'',
|
184 |
-
'textarea'); ?>
|
185 |
-
</table>
|
186 |
-
<?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
|
187 |
-
</div>
|
188 |
-
</div>
|
189 |
-
|
190 |
-
<div class="postbox" id="Blog">
|
191 |
-
<h3 class="title"><?php _e( 'Meta Tags for Default Home Page and Blog Page only', ALLMT_TEXT ); ?></h3>
|
192 |
-
<div class="inside">
|
193 |
-
<p><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website.', ALLMT_TEXT ); ?></p>
|
194 |
-
<table class="form-table">
|
195 |
-
<?php allmetatags_field('blog_description',
|
196 |
-
__( 'Blog Description', ALLMT_TEXT ),
|
197 |
-
'My blog is about plants, nature, the sea and everything I love',
|
198 |
-
__( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', ALLMT_TEXT ),
|
199 |
-
'',
|
200 |
-
'textarea'); ?>
|
201 |
-
<?php allmetatags_field('blog_keywords',
|
202 |
-
__( 'Blog Keyword(s)', ALLMT_TEXT ),
|
203 |
-
'blog, awesome, handmade, books, theater',
|
204 |
-
__( 'Enter a comma-delimited list of keywords for only Blog Page of your website.', ALLMT_TEXT ),
|
205 |
-
'',
|
206 |
-
'textarea'); ?>
|
207 |
-
</table>
|
208 |
-
<?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
|
209 |
-
</div>
|
210 |
-
</div>
|
211 |
-
|
212 |
-
<div class="postbox" id="Everywhere">
|
213 |
-
<h3 class="title"><?php _e( 'Meta Tags for all website (Global)', ALLMT_TEXT ); ?></h3>
|
214 |
-
<div class="inside">
|
215 |
-
<p><?php _e( 'You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website.', ALLMT_TEXT ); ?></p>
|
216 |
-
<table class="form-table">
|
217 |
-
<?php allmetatags_field('author',
|
218 |
-
__( 'Author', ALLMT_TEXT ),
|
219 |
-
'Arthur Gareginyan',
|
220 |
-
'',
|
221 |
-
''); ?>
|
222 |
-
<?php allmetatags_field('designer',
|
223 |
-
__( 'Designer', ALLMT_TEXT ),
|
224 |
-
'Arthur Gareginyan',
|
225 |
-
'',
|
226 |
-
''); ?>
|
227 |
-
<?php allmetatags_field('contact',
|
228 |
-
__( 'Contact', ALLMT_TEXT ),
|
229 |
-
'arthurgareginyan@gmail.com',
|
230 |
-
''); ?>
|
231 |
-
<?php allmetatags_field('copyright',
|
232 |
-
__( 'Copyright', ALLMT_TEXT ),
|
233 |
-
'Copyright (c) 2013-2016 Arthur Gareginyan. All Rights Reserved.',
|
234 |
-
''); ?>
|
235 |
-
<?php allmetatags_field('keywords',
|
236 |
-
__( 'Keyword(s)', ALLMT_TEXT ),
|
237 |
-
'blog, awesome, handmade, books, theater',
|
238 |
-
__( 'Enter a comma-delimited list of global keywords for your website.', ALLMT_TEXT ),
|
239 |
-
'',
|
240 |
-
'textarea'); ?>
|
241 |
-
</table>
|
242 |
-
<?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
|
243 |
-
</div>
|
244 |
-
</div>
|
245 |
-
|
246 |
-
<div class="postbox" id="WooCommerce">
|
247 |
-
<h3 class="title"><?php _e( 'WooCommerce & Google Shopping', ALLMT_TEXT ); ?></h3>
|
248 |
-
<div class="inside">
|
249 |
-
<p><?php _e( 'This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website. Here is the markup for women\'s T-shirt that sells for 16 dollars and 80 cents of US.', ALLMT_TEXT ); ?></p>
|
250 |
-
<pre><div itemtype="http://schema.org/Product" itemscope="">
|
251 |
-
<meta itemprop="name" content="Womens T-shirt">
|
252 |
-
<meta itemprop="description" content="Constructed in cotton sweat fabric, this lovely piece...">
|
253 |
-
<meta itemprop="image" content="http://example.com/wp-content/uploads/2015/09/product-1.jpg">
|
254 |
-
<div itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
|
255 |
-
<meta itemprop="price" content="16.80">
|
256 |
-
<meta itemprop="priceCurrency" content="USD">
|
257 |
-
</div>
|
258 |
-
</div></pre>
|
259 |
-
<p><?php _e( 'Check these data generated on the pages of your website you can <a href="https://search.google.com/structured-data/testing-tool" target="_blank">here</a>.', ALLMT_TEXT ); ?></p>
|
260 |
-
</div>
|
261 |
-
</div>
|
262 |
-
|
263 |
-
</form>
|
264 |
-
</div>
|
265 |
-
</div>
|
266 |
-
</div>
|
267 |
-
<!-- END-FORM -->
|
268 |
-
|
269 |
-
</div>
|
270 |
-
|
271 |
-
</div>
|
272 |
-
<?php
|
273 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/php/uninstall.php
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*
|
6 |
+
* @since 0.1
|
7 |
+
*/
|
8 |
+
defined('ABSPATH') or die("Restricted access!");
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Delete options on uninstall
|
12 |
+
*
|
13 |
+
* @since 0.1
|
14 |
+
*/
|
15 |
+
function allmetatags_uninstall() {
|
16 |
+
delete_option( 'allmetatags_settings' );
|
17 |
+
}
|
18 |
+
register_uninstall_hook( __FILE__, 'allmetatags_uninstall' );
|
inc/php/version.php
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*
|
6 |
+
* @since 0.1
|
7 |
+
*/
|
8 |
+
defined('ABSPATH') or die("Restricted access!");
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Function for managing information about the version number of the plugin
|
12 |
+
*
|
13 |
+
* @since 4.0
|
14 |
+
*/
|
15 |
+
function allmetatags_plugin_version_number() {
|
16 |
+
|
17 |
+
// Set variables:
|
18 |
+
// - Read the plugin service information from the database and put it into an array
|
19 |
+
// - Get the current plugin version number from the database
|
20 |
+
// - Get the new plugin version number from the global constant
|
21 |
+
$info = get_option( 'allmetatags_service_info' );
|
22 |
+
$current_number = isset( $info['version'] ) && !empty( $info['version'] ) ? $info['version'] : '0';
|
23 |
+
$new_number = ALLMT_VERSION;
|
24 |
+
|
25 |
+
// Call the upgrade function if the version number in the database is smaller than the 1.0
|
26 |
+
//if ( $current_number < '1.0' ) {
|
27 |
+
// allmetatags_upgrade_1_0();
|
28 |
+
//}
|
29 |
+
|
30 |
+
// If the version number in the database is same as the new version number:
|
31 |
+
// - Reset the "old_version" marker in the database
|
32 |
+
// - Exit from this function
|
33 |
+
if ( $new_number == $current_number ) {
|
34 |
+
|
35 |
+
if ( $info['old_version'] == '1' ) {
|
36 |
+
|
37 |
+
$info['old_version'] = '0';
|
38 |
+
update_option( 'allmetatags_service_info', $info );
|
39 |
+
|
40 |
+
}
|
41 |
+
|
42 |
+
return;
|
43 |
+
}
|
44 |
+
|
45 |
+
// If the version number in the database is smaller than the new version number:
|
46 |
+
// - Save the new version number to the database
|
47 |
+
// - Update the "old_version" marker in the database
|
48 |
+
// - Exit from this function
|
49 |
+
if ( $new_number > $current_number ) {
|
50 |
+
|
51 |
+
$info['version'] = $new_number;
|
52 |
+
$info['old_version'] = '0';
|
53 |
+
update_option( 'allmetatags_service_info', $info );
|
54 |
+
|
55 |
+
return;
|
56 |
+
}
|
57 |
+
|
58 |
+
// If the version number in the database is greater than the new version number:
|
59 |
+
// - Save the "old_version" marker to the database
|
60 |
+
// - Exit from this function
|
61 |
+
if ( $new_number < $current_number ) {
|
62 |
+
|
63 |
+
$info['old_version'] = '1';
|
64 |
+
update_option( 'allmetatags_service_info', $info );
|
65 |
+
|
66 |
+
return;
|
67 |
+
}
|
68 |
+
|
69 |
+
}
|
70 |
+
allmetatags_plugin_version_number();
|
languages/Readme.txt
CHANGED
@@ -8,4 +8,4 @@ If you want to help translate this plugin, please visit the [translation page](h
|
|
8 |
|
9 |
Also you can use an existing PO file that placed in the "languages" folder, in order to make corrections.
|
10 |
|
11 |
-
Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
8 |
|
9 |
Also you can use an existing PO file that placed in the "languages" folder, in order to make corrections.
|
10 |
|
11 |
+
Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
languages/all-meta-tags-es_ES.mo
CHANGED
Binary file
|
languages/all-meta-tags-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - All Meta Tags - Development (trunk)\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
@@ -13,50 +13,252 @@ msgstr ""
|
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Generator: Poedit 1.8.4\n"
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
msgid "Settings"
|
19 |
msgstr "Ajustes"
|
20 |
|
|
|
|
|
|
|
|
|
21 |
#. Plugin Name of the plugin/theme
|
22 |
-
#:
|
23 |
msgid "All Meta Tags"
|
24 |
msgstr "Todas las meta etiquetas"
|
25 |
|
26 |
-
#: inc/php/
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
29 |
|
30 |
-
#: inc/php/
|
31 |
-
|
32 |
-
|
|
|
33 |
|
34 |
-
#: inc/php/
|
35 |
-
msgid "
|
36 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
-
#: inc/php/
|
39 |
-
msgid "
|
40 |
msgstr "Uso"
|
41 |
|
42 |
-
#: inc/php/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
-
"Para usarlo, ingresa tus Meta Etiquetas personalizadas y haz clic en \"Guardar Cambios\". ¡Así de simple!"
|
46 |
|
47 |
-
#: inc/php/
|
48 |
-
msgid "
|
49 |
-
msgstr "
|
50 |
|
51 |
-
#: inc/php/
|
52 |
-
msgid "
|
53 |
-
msgstr "
|
54 |
|
55 |
-
#: inc/php/
|
56 |
-
msgid "
|
57 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
msgid ""
|
61 |
"I'm an independent developer, without a regular income, so every little contribution helps cover my costs "
|
62 |
"and lets me spend more time building things for people like you to enjoy."
|
@@ -65,15 +267,27 @@ msgstr ""
|
|
65 |
"sea, me ayuda a cubrir mis gastos y me permite dedicar más tiempo para construir cosas que pueda disfrutar "
|
66 |
"gente como tú."
|
67 |
|
68 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
69 |
msgid "Thanks for your support!"
|
70 |
msgstr "¡Gracias por su colaboración!"
|
71 |
|
72 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
msgid "Web Master Tools"
|
74 |
msgstr "Web Master Tools"
|
75 |
|
76 |
-
#: inc/php/
|
77 |
msgid ""
|
78 |
"Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your "
|
79 |
"blog or store before they provide their services to you. You can use the options below to verify your "
|
@@ -83,40 +297,40 @@ msgstr ""
|
|
83 |
"antes de que ellos te brinden su servicio. Puedes usar las opciones que aparecen a continuación para "
|
84 |
"verificar tu dominio. Si tu dominio ya está verificado, puedes obviar esto."
|
85 |
|
86 |
-
#: inc/php/
|
87 |
msgid ""
|
88 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
89 |
"meta name=\"google-site-verification\" content=“<b>1234567890</b>” />"
|
90 |
msgstr ""
|
91 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
92 |
"br>Ejemplo: <meta name=\"google-site-verification\" content=“<b>1234567890</b>” />"
|
93 |
|
94 |
-
#: inc/php/
|
95 |
msgid ""
|
96 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
97 |
"meta name=\"msvalidate.01\" content=“<b>1234567890</b>” />"
|
98 |
msgstr ""
|
99 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
100 |
"br>Ejemplo: <meta name=\"msvalidate.01\" content=“<b>1234567890</b>” />"
|
101 |
|
102 |
-
#: inc/php/
|
103 |
msgid ""
|
104 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
105 |
"meta name=\"yandex-verification\" content=“<b>1234567890</b>” />"
|
106 |
msgstr ""
|
107 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
108 |
"br>Ejemplo: <meta name=\"yandex-verification\" content=“<b>1234567890</b>” />"
|
109 |
|
110 |
-
#: inc/php/
|
111 |
-
#: inc/php/
|
112 |
msgid "Save Changes"
|
113 |
msgstr "Guardar los cambios"
|
114 |
|
115 |
-
#: inc/php/
|
116 |
msgid "Domain Verification"
|
117 |
msgstr "Verificación del domino"
|
118 |
|
119 |
-
#: inc/php/
|
120 |
msgid ""
|
121 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes "
|
122 |
"sure that you are the correct owner of your blog or store before they provide their services to you. You can "
|
@@ -128,71 +342,71 @@ msgstr ""
|
|
128 |
"opciones que aparecen a continuación para verificar tu dominio. Si tu dominio ya está verificado, puedes "
|
129 |
"obviar esto."
|
130 |
|
131 |
-
#: inc/php/
|
132 |
msgid ""
|
133 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
134 |
"meta name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
135 |
msgstr ""
|
136 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
137 |
"br>Ejemplo: <meta name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
138 |
|
139 |
-
#: inc/php/
|
140 |
msgid ""
|
141 |
-
"Enter an absolute URL to the Google+ profile of the publisher.
|
142 |
"+ArthurGareginyan/"
|
143 |
msgstr ""
|
144 |
-
"Ingresa la URL completa del perfil de Google+ del editor.
|
145 |
"+ArthurGareginyan/"
|
146 |
|
147 |
-
#: inc/php/
|
148 |
msgid ""
|
149 |
-
"Enter an absolute URL to the Facebook profile of the publisher.
|
150 |
-
"
|
151 |
msgstr ""
|
152 |
-
"Ingresa la URL completa del perfil de Facebook del editor.
|
153 |
"gareginyan"
|
154 |
|
155 |
-
#: inc/php/
|
156 |
-
msgid "Enter the Twitter username of the publisher.
|
157 |
-
msgstr "Ingresa el nombre de usuario de Twitter del editor.
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid ""
|
161 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
162 |
"meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” />"
|
163 |
msgstr ""
|
164 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
165 |
"br>Ejemplo: <meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” />"
|
166 |
|
167 |
-
#: inc/php/
|
168 |
msgid ""
|
169 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
170 |
"meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” />"
|
171 |
msgstr ""
|
172 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
173 |
"br>Ejemplo: <meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” />"
|
174 |
|
175 |
-
#: inc/php/
|
176 |
msgid ""
|
177 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
178 |
"meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
179 |
msgstr ""
|
180 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
181 |
"br>Ejemplo: <meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
182 |
|
183 |
-
#: inc/php/
|
184 |
msgid ""
|
185 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
186 |
"meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
187 |
msgstr ""
|
188 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
189 |
"br>Ejemplo: <meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
190 |
|
191 |
-
#: inc/php/
|
192 |
msgid "Custom Meta Tags"
|
193 |
msgstr "Meta etiquetas personalizadas"
|
194 |
|
195 |
-
#: inc/php/
|
196 |
msgid ""
|
197 |
"If you can't find a field to enter your required meta tag then you can add it here. In this field you can "
|
198 |
"add multiple meta tags."
|
@@ -200,11 +414,11 @@ msgstr ""
|
|
200 |
"Si no encuentras un campo para introducir la meta etiqueta que requieres, puedes añadirla aquí. En este "
|
201 |
"campo puedes agregar varias meta etiquetas."
|
202 |
|
203 |
-
#: inc/php/
|
204 |
msgid "Meta Tags for Static Home Page only"
|
205 |
msgstr "Meta etiquetas sólo para la página de inicio estática"
|
206 |
|
207 |
-
#: inc/php/
|
208 |
msgid ""
|
209 |
"You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of "
|
210 |
"your website."
|
@@ -212,11 +426,11 @@ msgstr ""
|
|
212 |
"Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
|
213 |
"sólo en la página de inicio de tu sitio web."
|
214 |
|
215 |
-
#: inc/php/
|
216 |
msgid "Home Description"
|
217 |
msgstr "Descripción del sitio"
|
218 |
|
219 |
-
#: inc/php/
|
220 |
msgid ""
|
221 |
"Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 "
|
222 |
"chars for the home description."
|
@@ -224,21 +438,21 @@ msgstr ""
|
|
224 |
"Ingresa una breve descripción de tu sitio web (Entre 150 y 250 caracteres). La mayoría de los motores de "
|
225 |
"búsqueda usa un máximo de 160 caracteres para esta descripción."
|
226 |
|
227 |
-
#: inc/php/
|
228 |
msgid "Home Keyword(s)"
|
229 |
msgstr "Palabra(s) clave de la página de inicio"
|
230 |
|
231 |
-
#: inc/php/
|
232 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
233 |
msgstr ""
|
234 |
"Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página estática de inicio "
|
235 |
"de tu sitio web."
|
236 |
|
237 |
-
#: inc/php/
|
238 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
239 |
msgstr "Meta etiquetas sólo para la página de inicio y la del blog"
|
240 |
|
241 |
-
#: inc/php/
|
242 |
msgid ""
|
243 |
"You can use the options below to add meta tags such as Description and Keywords only in Default Home Page "
|
244 |
"and Blog Page of your website."
|
@@ -246,25 +460,25 @@ msgstr ""
|
|
246 |
"Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
|
247 |
"en la página de inicio y en la del blog de tu sitio web."
|
248 |
|
249 |
-
#: inc/php/
|
250 |
msgid "Blog Description"
|
251 |
msgstr "Descripción del blog"
|
252 |
|
253 |
-
#: inc/php/
|
254 |
msgid "Blog Keyword(s)"
|
255 |
msgstr "Palabra(s) clave del blog"
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
259 |
msgstr ""
|
260 |
"Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página del blog de tu sitio "
|
261 |
"web."
|
262 |
|
263 |
-
#: inc/php/
|
264 |
msgid "Meta Tags for all website (Global)"
|
265 |
msgstr "Meta etiquetas para todo el sitio web (Globales)"
|
266 |
|
267 |
-
#: inc/php/
|
268 |
msgid ""
|
269 |
"You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
|
270 |
"website."
|
@@ -272,35 +486,31 @@ msgstr ""
|
|
272 |
"Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Autor, Derechos Reservados y "
|
273 |
"Palabras Clave en cualquier parte de tu sitio web."
|
274 |
|
275 |
-
#: inc/php/
|
276 |
-
msgid "Author"
|
277 |
-
msgstr "Autor"
|
278 |
-
|
279 |
-
#: inc/php/settings_page.php:223
|
280 |
msgid "Designer"
|
281 |
msgstr "Diseñador"
|
282 |
|
283 |
-
#: inc/php/
|
284 |
msgid "Contact"
|
285 |
msgstr "Contacto"
|
286 |
|
287 |
-
#: inc/php/
|
288 |
msgid "Copyright"
|
289 |
msgstr "Derechos reservados"
|
290 |
|
291 |
-
#: inc/php/
|
292 |
msgid "Keyword(s)"
|
293 |
msgstr "Palabra(s) clave"
|
294 |
|
295 |
-
#: inc/php/
|
296 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
297 |
msgstr "Ingresa un listado, separado por comas, de las palabras clave globales para tu sitio web."
|
298 |
|
299 |
-
#: inc/php/
|
300 |
msgid "WooCommerce & Google Shopping"
|
301 |
msgstr "WooCommerce y Google Shopping"
|
302 |
|
303 |
-
#: inc/php/
|
304 |
msgid ""
|
305 |
"This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
|
306 |
"WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars "
|
@@ -310,7 +520,7 @@ msgstr ""
|
|
310 |
"páginas de producto de tu sitio web. Aquí esta el código para una blusa de mujer que cuesta 16 dólares con "
|
311 |
"80 centavos norteamericanos."
|
312 |
|
313 |
-
#: inc/php/
|
314 |
msgid ""
|
315 |
"Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
|
316 |
"structured-data/testing-tool\" target=\"_blank\">here</a>."
|
@@ -335,5 +545,15 @@ msgstr "Arthur Gareginyan"
|
|
335 |
msgid "http://www.arthurgareginyan.com"
|
336 |
msgstr "http://www.arthurgareginyan.com"
|
337 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
338 |
#~ msgid "Advertisement"
|
339 |
#~ msgstr "Publicidad"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - All Meta Tags - Development (trunk)\n"
|
6 |
+
"POT-Creation-Date: 2017-05-07 13:22+0300\n"
|
7 |
+
"PO-Revision-Date: 2017-05-07 13:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Generator: Poedit 1.8.4\n"
|
16 |
+
"X-Poedit-Basepath: ..\n"
|
17 |
+
"X-Poedit-WPHeader: all-meta-tags.php\n"
|
18 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;"
|
20 |
+
"esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
21 |
+
"X-Poedit-SearchPath-0: .\n"
|
22 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
+
|
24 |
+
#: inc/php/core.php:31 inc/php/page.php:40
|
25 |
msgid "Settings"
|
26 |
msgstr "Ajustes"
|
27 |
|
28 |
+
#: inc/php/core.php:47
|
29 |
+
msgid "Donate"
|
30 |
+
msgstr "Hacer una donación"
|
31 |
+
|
32 |
#. Plugin Name of the plugin/theme
|
33 |
+
#: inc/php/core.php:62 inc/php/page.php:25
|
34 |
msgid "All Meta Tags"
|
35 |
msgstr "Todas las meta etiquetas"
|
36 |
|
37 |
+
#: inc/php/messages.php:30
|
38 |
+
msgid "Hello. I'm Arthur, the author of this plugin."
|
39 |
+
msgstr ""
|
40 |
|
41 |
+
#: inc/php/messages.php:32
|
42 |
+
#, php-format
|
43 |
+
msgid "Thank you for installing my plugin! I hope you will love it %s"
|
44 |
+
msgstr ""
|
45 |
|
46 |
+
#: inc/php/messages.php:67
|
47 |
+
msgid "You have installed an old version of this plugin."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: inc/php/messages.php:68
|
51 |
+
msgid "Please update the plugin to the latest version, and all will be fine."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: inc/php/page.php:28
|
55 |
+
#, php-format
|
56 |
+
msgid "by %s Arthur Gareginyan %s"
|
57 |
+
msgstr "por %s Arthur Gareginyan %s"
|
58 |
|
59 |
+
#: inc/php/page.php:41 inc/php/page.php:61
|
60 |
+
msgid "Usage"
|
61 |
msgstr "Uso"
|
62 |
|
63 |
+
#: inc/php/page.php:42
|
64 |
+
msgid "F.A.Q."
|
65 |
msgstr ""
|
|
|
66 |
|
67 |
+
#: inc/php/page.php:43 inc/php/page.php:175 inc/php/settings.php:192
|
68 |
+
msgid "Author"
|
69 |
+
msgstr "Autor"
|
70 |
|
71 |
+
#: inc/php/page.php:44 inc/php/page.php:184 inc/php/settings.php:28 inc/php/settings.php:238
|
72 |
+
msgid "Support"
|
73 |
+
msgstr "Soporte"
|
74 |
|
75 |
+
#: inc/php/page.php:45
|
76 |
+
msgid "Family"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: inc/php/page.php:63
|
80 |
+
msgid "To add the meta tags to your website, simply follow these steps:"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: inc/php/page.php:65
|
84 |
+
msgid "Go to the \"Settings\" tab."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: inc/php/page.php:66
|
88 |
+
msgid "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: inc/php/page.php:67
|
92 |
+
msgid "Enjoy the improved SEO of your website."
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: inc/php/page.php:67
|
96 |
+
msgid "It's that simple!"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: inc/php/page.php:69
|
100 |
+
msgid "Note!"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: inc/php/page.php:69
|
104 |
+
msgid "If you want more options then tell me and I will be happy to add it."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: inc/php/page.php:78
|
108 |
+
msgid "Frequently Asked Questions"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: inc/php/page.php:100
|
112 |
+
msgid "Will this plugin work on my WordPress.COM website?"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: inc/php/page.php:101
|
116 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: inc/php/page.php:103
|
120 |
+
msgid "Can I use this plugin on my language?"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: inc/php/page.php:105
|
124 |
+
#, php-format
|
125 |
+
msgid ""
|
126 |
+
"Yes. But If your language is not available then you can make one. This plugin is ready for translation. "
|
127 |
+
"The<code>.pot</code>file is included and placed in the <code>languages</code> folder. Many of plugin users "
|
128 |
+
"would be delighted if you shared your translation with the community. Just send the translation files "
|
129 |
+
"(<code>*.po, *.mo</code>) to me at the %s and I will include the translation within the next plugin update."
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: inc/php/page.php:110
|
133 |
+
msgid "How does it work?"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: inc/php/page.php:111
|
137 |
+
msgid ""
|
138 |
+
"On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save "
|
139 |
+
"Changes\" button. Enjoy the improved SEO of your website. It's that simple!"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: inc/php/page.php:113
|
143 |
+
msgid "How much of description I can enter in the text field?"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: inc/php/page.php:114
|
147 |
+
msgid ""
|
148 |
+
"I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home "
|
149 |
+
"description."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: inc/php/page.php:116
|
153 |
+
msgid "How much of keywords I can enter in the text field?"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: inc/php/page.php:117
|
157 |
+
msgid "I don't limit the number of characters."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: inc/php/page.php:119
|
161 |
+
msgid "I can't get verify my website. What am I doing wrong?"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: inc/php/page.php:120
|
165 |
+
msgid ""
|
166 |
+
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is "
|
167 |
+
"confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the "
|
168 |
+
"whole tag (<code><meta name=\"google-site-verification\" content=“1234567890” /></code>). So just "
|
169 |
+
"paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: inc/php/page.php:122
|
173 |
+
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: inc/php/page.php:123
|
177 |
+
msgid ""
|
178 |
+
"To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both "
|
179 |
+
"plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: inc/php/page.php:131
|
183 |
+
msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: inc/php/page.php:133
|
187 |
+
msgid "Does this plugin requires any modification of the theme?"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: inc/php/page.php:134
|
191 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: inc/php/page.php:136
|
195 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: inc/php/page.php:137
|
199 |
+
msgid ""
|
200 |
+
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
|
201 |
+
"settings page."
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: inc/php/page.php:139
|
205 |
+
msgid "It's not working. What could be wrong?"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: inc/php/page.php:140
|
209 |
+
msgid ""
|
210 |
+
"As with every plugin, it's possible that things don't work. The most common reason for this is a web "
|
211 |
+
"browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to "
|
212 |
+
"reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache "
|
213 |
+
"may solve the problem."
|
214 |
+
msgstr ""
|
215 |
|
216 |
+
#: inc/php/page.php:141
|
217 |
+
msgid ""
|
218 |
+
"It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's "
|
219 |
+
"support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much "
|
220 |
+
"information as possible, including a link to your website where the problem can be seen."
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: inc/php/page.php:143
|
224 |
+
msgid "Where to report bug if found?"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: inc/php/page.php:145
|
228 |
+
#, php-format
|
229 |
+
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: inc/php/page.php:151
|
233 |
+
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: inc/php/page.php:153
|
237 |
+
#, php-format
|
238 |
+
msgid ""
|
239 |
+
"Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: inc/php/page.php:159
|
243 |
+
msgid "I love this plugin! Can I help somehow?"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: inc/php/page.php:161
|
247 |
+
#, php-format
|
248 |
+
msgid ""
|
249 |
+
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and "
|
250 |
+
"thank you!"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: inc/php/settings.php:21
|
254 |
+
msgid "About"
|
255 |
+
msgstr "Acerca de"
|
256 |
+
|
257 |
+
#: inc/php/settings.php:23
|
258 |
+
msgid "This plugin allows you to easily add Meta Tags to your website."
|
259 |
+
msgstr "Este plugin te permite añadir fácilmente Meta Etiquetas personalizadas a tu sitio web."
|
260 |
+
|
261 |
+
#: inc/php/settings.php:30 inc/php/settings.php:240
|
262 |
msgid ""
|
263 |
"I'm an independent developer, without a regular income, so every little contribution helps cover my costs "
|
264 |
"and lets me spend more time building things for people like you to enjoy."
|
267 |
"sea, me ayuda a cubrir mis gastos y me permite dedicar más tiempo para construir cosas que pueda disfrutar "
|
268 |
"gente como tú."
|
269 |
|
270 |
+
#: inc/php/settings.php:31 inc/php/settings.php:241
|
271 |
+
msgid "Donate with PayPal"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: inc/php/settings.php:32 inc/php/settings.php:242
|
275 |
msgid "Thanks for your support!"
|
276 |
msgstr "¡Gracias por su colaboración!"
|
277 |
|
278 |
+
#: inc/php/settings.php:37
|
279 |
+
msgid "Help"
|
280 |
+
msgstr "Ayuda"
|
281 |
+
|
282 |
+
#: inc/php/settings.php:39
|
283 |
+
msgid "Got something to say? Need help?"
|
284 |
+
msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
|
285 |
+
|
286 |
+
#: inc/php/settings.php:62
|
287 |
msgid "Web Master Tools"
|
288 |
msgstr "Web Master Tools"
|
289 |
|
290 |
+
#: inc/php/settings.php:64
|
291 |
msgid ""
|
292 |
"Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your "
|
293 |
"blog or store before they provide their services to you. You can use the options below to verify your "
|
297 |
"antes de que ellos te brinden su servicio. Puedes usar las opciones que aparecen a continuación para "
|
298 |
"verificar tu dominio. Si tu dominio ya está verificado, puedes obviar esto."
|
299 |
|
300 |
+
#: inc/php/settings.php:69
|
301 |
msgid ""
|
302 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <"
|
303 |
"meta name=\"google-site-verification\" content=“<b>1234567890</b>” />"
|
304 |
msgstr ""
|
305 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
306 |
"br>Ejemplo: <meta name=\"google-site-verification\" content=“<b>1234567890</b>” />"
|
307 |
|
308 |
+
#: inc/php/settings.php:74
|
309 |
msgid ""
|
310 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <"
|
311 |
"meta name=\"msvalidate.01\" content=“<b>1234567890</b>” />"
|
312 |
msgstr ""
|
313 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
314 |
"br>Ejemplo: <meta name=\"msvalidate.01\" content=“<b>1234567890</b>” />"
|
315 |
|
316 |
+
#: inc/php/settings.php:79
|
317 |
msgid ""
|
318 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <"
|
319 |
"meta name=\"yandex-verification\" content=“<b>1234567890</b>” />"
|
320 |
msgstr ""
|
321 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
322 |
"br>Ejemplo: <meta name=\"yandex-verification\" content=“<b>1234567890</b>” />"
|
323 |
|
324 |
+
#: inc/php/settings.php:82 inc/php/settings.php:138 inc/php/settings.php:160 inc/php/settings.php:182
|
325 |
+
#: inc/php/settings.php:216
|
326 |
msgid "Save Changes"
|
327 |
msgstr "Guardar los cambios"
|
328 |
|
329 |
+
#: inc/php/settings.php:87
|
330 |
msgid "Domain Verification"
|
331 |
msgstr "Verificación del domino"
|
332 |
|
333 |
+
#: inc/php/settings.php:89
|
334 |
msgid ""
|
335 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes "
|
336 |
"sure that you are the correct owner of your blog or store before they provide their services to you. You can "
|
342 |
"opciones que aparecen a continuación para verificar tu dominio. Si tu dominio ya está verificado, puedes "
|
343 |
"obviar esto."
|
344 |
|
345 |
+
#: inc/php/settings.php:94
|
346 |
msgid ""
|
347 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <"
|
348 |
"meta name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
349 |
msgstr ""
|
350 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
351 |
"br>Ejemplo: <meta name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
352 |
|
353 |
+
#: inc/php/settings.php:99
|
354 |
msgid ""
|
355 |
+
"Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
|
356 |
"+ArthurGareginyan/"
|
357 |
msgstr ""
|
358 |
+
"Ingresa la URL completa del perfil de Google+ del editor. <br>Ejemplo: https://plus.google.com/"
|
359 |
"+ArthurGareginyan/"
|
360 |
|
361 |
+
#: inc/php/settings.php:104
|
362 |
msgid ""
|
363 |
+
"Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur."
|
364 |
+
"gareginyan"
|
365 |
msgstr ""
|
366 |
+
"Ingresa la URL completa del perfil de Facebook del editor. <br>Ejemplo: https://www.facebook.com/arthur."
|
367 |
"gareginyan"
|
368 |
|
369 |
+
#: inc/php/settings.php:109
|
370 |
+
msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
|
371 |
+
msgstr "Ingresa el nombre de usuario de Twitter del editor. <br>Ejemplo: @AGareginyan"
|
372 |
|
373 |
+
#: inc/php/settings.php:114
|
374 |
msgid ""
|
375 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <"
|
376 |
"meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” />"
|
377 |
msgstr ""
|
378 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
379 |
"br>Ejemplo: <meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” />"
|
380 |
|
381 |
+
#: inc/php/settings.php:119
|
382 |
msgid ""
|
383 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <"
|
384 |
"meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” />"
|
385 |
msgstr ""
|
386 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
387 |
"br>Ejemplo: <meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” />"
|
388 |
|
389 |
+
#: inc/php/settings.php:124
|
390 |
msgid ""
|
391 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <"
|
392 |
"meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
393 |
msgstr ""
|
394 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
395 |
"br>Ejemplo: <meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
396 |
|
397 |
+
#: inc/php/settings.php:129
|
398 |
msgid ""
|
399 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <"
|
400 |
"meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
401 |
msgstr ""
|
402 |
"Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
|
403 |
"br>Ejemplo: <meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
404 |
|
405 |
+
#: inc/php/settings.php:132
|
406 |
msgid "Custom Meta Tags"
|
407 |
msgstr "Meta etiquetas personalizadas"
|
408 |
|
409 |
+
#: inc/php/settings.php:134
|
410 |
msgid ""
|
411 |
"If you can't find a field to enter your required meta tag then you can add it here. In this field you can "
|
412 |
"add multiple meta tags."
|
414 |
"Si no encuentras un campo para introducir la meta etiqueta que requieres, puedes añadirla aquí. En este "
|
415 |
"campo puedes agregar varias meta etiquetas."
|
416 |
|
417 |
+
#: inc/php/settings.php:143
|
418 |
msgid "Meta Tags for Static Home Page only"
|
419 |
msgstr "Meta etiquetas sólo para la página de inicio estática"
|
420 |
|
421 |
+
#: inc/php/settings.php:145
|
422 |
msgid ""
|
423 |
"You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of "
|
424 |
"your website."
|
426 |
"Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
|
427 |
"sólo en la página de inicio de tu sitio web."
|
428 |
|
429 |
+
#: inc/php/settings.php:148
|
430 |
msgid "Home Description"
|
431 |
msgstr "Descripción del sitio"
|
432 |
|
433 |
+
#: inc/php/settings.php:150 inc/php/settings.php:172
|
434 |
msgid ""
|
435 |
"Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 "
|
436 |
"chars for the home description."
|
438 |
"Ingresa una breve descripción de tu sitio web (Entre 150 y 250 caracteres). La mayoría de los motores de "
|
439 |
"búsqueda usa un máximo de 160 caracteres para esta descripción."
|
440 |
|
441 |
+
#: inc/php/settings.php:154
|
442 |
msgid "Home Keyword(s)"
|
443 |
msgstr "Palabra(s) clave de la página de inicio"
|
444 |
|
445 |
+
#: inc/php/settings.php:156
|
446 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
447 |
msgstr ""
|
448 |
"Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página estática de inicio "
|
449 |
"de tu sitio web."
|
450 |
|
451 |
+
#: inc/php/settings.php:165
|
452 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
453 |
msgstr "Meta etiquetas sólo para la página de inicio y la del blog"
|
454 |
|
455 |
+
#: inc/php/settings.php:167
|
456 |
msgid ""
|
457 |
"You can use the options below to add meta tags such as Description and Keywords only in Default Home Page "
|
458 |
"and Blog Page of your website."
|
460 |
"Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
|
461 |
"en la página de inicio y en la del blog de tu sitio web."
|
462 |
|
463 |
+
#: inc/php/settings.php:170
|
464 |
msgid "Blog Description"
|
465 |
msgstr "Descripción del blog"
|
466 |
|
467 |
+
#: inc/php/settings.php:176
|
468 |
msgid "Blog Keyword(s)"
|
469 |
msgstr "Palabra(s) clave del blog"
|
470 |
|
471 |
+
#: inc/php/settings.php:178
|
472 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
473 |
msgstr ""
|
474 |
"Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página del blog de tu sitio "
|
475 |
"web."
|
476 |
|
477 |
+
#: inc/php/settings.php:187
|
478 |
msgid "Meta Tags for all website (Global)"
|
479 |
msgstr "Meta etiquetas para todo el sitio web (Globales)"
|
480 |
|
481 |
+
#: inc/php/settings.php:189
|
482 |
msgid ""
|
483 |
"You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
|
484 |
"website."
|
486 |
"Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Autor, Derechos Reservados y "
|
487 |
"Palabras Clave en cualquier parte de tu sitio web."
|
488 |
|
489 |
+
#: inc/php/settings.php:197
|
|
|
|
|
|
|
|
|
490 |
msgid "Designer"
|
491 |
msgstr "Diseñador"
|
492 |
|
493 |
+
#: inc/php/settings.php:202
|
494 |
msgid "Contact"
|
495 |
msgstr "Contacto"
|
496 |
|
497 |
+
#: inc/php/settings.php:206
|
498 |
msgid "Copyright"
|
499 |
msgstr "Derechos reservados"
|
500 |
|
501 |
+
#: inc/php/settings.php:210
|
502 |
msgid "Keyword(s)"
|
503 |
msgstr "Palabra(s) clave"
|
504 |
|
505 |
+
#: inc/php/settings.php:212
|
506 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
507 |
msgstr "Ingresa un listado, separado por comas, de las palabras clave globales para tu sitio web."
|
508 |
|
509 |
+
#: inc/php/settings.php:221
|
510 |
msgid "WooCommerce & Google Shopping"
|
511 |
msgstr "WooCommerce y Google Shopping"
|
512 |
|
513 |
+
#: inc/php/settings.php:223
|
514 |
msgid ""
|
515 |
"This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
|
516 |
"WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars "
|
520 |
"páginas de producto de tu sitio web. Aquí esta el código para una blusa de mujer que cuesta 16 dólares con "
|
521 |
"80 centavos norteamericanos."
|
522 |
|
523 |
+
#: inc/php/settings.php:233
|
524 |
msgid ""
|
525 |
"Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
|
526 |
"structured-data/testing-tool\" target=\"_blank\">here</a>."
|
545 |
msgid "http://www.arthurgareginyan.com"
|
546 |
msgstr "http://www.arthurgareginyan.com"
|
547 |
|
548 |
+
#~ msgid "To use, enter your custom Meta Tags, then click \"Save Changes\". It's that simple!"
|
549 |
+
#~ msgstr ""
|
550 |
+
#~ "Para usarlo, ingresa tus Meta Etiquetas personalizadas y haz clic en \"Guardar Cambios\". ¡Así de simple!"
|
551 |
+
|
552 |
+
#~ msgid "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur Gareginyan</a>"
|
553 |
+
#~ msgstr "por <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur Gareginyan</a>"
|
554 |
+
|
555 |
+
#~ msgid "Using"
|
556 |
+
#~ msgstr "Uso"
|
557 |
+
|
558 |
#~ msgid "Advertisement"
|
559 |
#~ msgstr "Publicidad"
|
languages/all-meta-tags-es_MX.mo
CHANGED
Binary file
|
languages/all-meta-tags-es_MX.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: All Meta Tags\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Sergio <srg2010@yahoo.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_MX\n"
|
@@ -24,56 +24,261 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
26 |
|
27 |
-
#:
|
28 |
msgid "Settings"
|
29 |
msgstr "Ajustes"
|
30 |
|
|
|
|
|
|
|
|
|
31 |
#. Plugin Name of the plugin/theme
|
32 |
-
#:
|
33 |
msgid "All Meta Tags"
|
34 |
msgstr "Todos los Meta Tags"
|
35 |
|
36 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
msgid ""
|
38 |
-
"
|
39 |
-
"
|
40 |
msgstr ""
|
41 |
-
"por <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
42 |
-
"Gareginyan</a>"
|
43 |
|
44 |
-
#: inc/php/
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#: inc/php/
|
49 |
-
msgid "
|
50 |
-
msgstr "
|
|
|
|
|
|
|
|
|
51 |
|
52 |
-
#: inc/php/
|
53 |
-
msgid "
|
54 |
-
msgstr "
|
55 |
|
56 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
msgid ""
|
58 |
-
"
|
59 |
-
"
|
60 |
msgstr ""
|
61 |
-
"Para usar, ingrese el nombre de su Meta Tag, luego de click en \"Salvar "
|
62 |
-
"Cambios\". Es así de simple."
|
63 |
|
64 |
-
#: inc/php/
|
65 |
-
msgid "
|
66 |
-
msgstr "
|
67 |
|
68 |
-
#: inc/php/
|
69 |
-
|
70 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
-
#: inc/php/
|
73 |
-
msgid "
|
74 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
msgid ""
|
78 |
"I'm an independent developer, without a regular income, so every little "
|
79 |
"contribution helps cover my costs and lets me spend more time building "
|
@@ -82,15 +287,27 @@ msgstr ""
|
|
82 |
"Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este "
|
83 |
"plugin aún mejor y tenerlo actualizado."
|
84 |
|
85 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
86 |
msgid "Thanks for your support!"
|
87 |
msgstr "Gracias por su apoyo!"
|
88 |
|
89 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
msgid "Web Master Tools"
|
91 |
msgstr "Herramientas para Web Master"
|
92 |
|
93 |
-
#: inc/php/
|
94 |
msgid ""
|
95 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
96 |
"are the correct owner of your blog or store before they provide their "
|
@@ -103,38 +320,37 @@ msgstr ""
|
|
103 |
"comprobar su dominio. Si su dominio ya está verificado, puede olvidarse de "
|
104 |
"ellas."
|
105 |
|
106 |
-
#: inc/php/
|
107 |
msgid ""
|
108 |
"Enter your meta key “content” value from your verification code to verify "
|
109 |
-
"your website.
|
110 |
"content=“<b>1234567890</b>” />"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: inc/php/
|
114 |
msgid ""
|
115 |
"Enter your meta key “content” value from your verification code to verify "
|
116 |
-
"your website.
|
117 |
"content=“<b>1234567890</b>” />"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: inc/php/
|
121 |
msgid ""
|
122 |
"Enter your meta key “content” value from your verification code to verify "
|
123 |
-
"your website.
|
124 |
"content=“<b>1234567890</b>” />"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: inc/php/
|
128 |
-
#: inc/php/
|
129 |
-
#: inc/php/settings_page.php:242
|
130 |
msgid "Save Changes"
|
131 |
msgstr "Guardar Cambios"
|
132 |
|
133 |
-
#: inc/php/
|
134 |
msgid "Domain Verification"
|
135 |
msgstr "Verificar Dominio"
|
136 |
|
137 |
-
#: inc/php/
|
138 |
msgid ""
|
139 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
140 |
"verify your domain. This makes sure that you are the correct owner of your "
|
@@ -148,72 +364,72 @@ msgstr ""
|
|
148 |
"Puede utilizar las opciones de abajo para comprobar su dominio. Si su "
|
149 |
"dominio ya está verificado, puede olvidarse de ellas."
|
150 |
|
151 |
-
#: inc/php/
|
152 |
msgid ""
|
153 |
"Enter your meta key “content” value from your verification code to verify "
|
154 |
-
"your website.
|
155 |
"content=“<b>1234567890</b>” />"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: inc/php/
|
159 |
msgid ""
|
160 |
-
"Enter an absolute URL to the Google+ profile of the publisher.
|
161 |
"https://plus.google.com/+ArthurGareginyan/"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: inc/php/
|
165 |
msgid ""
|
166 |
-
"Enter an absolute URL to the Facebook profile of the publisher.
|
167 |
-
"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: inc/php/
|
171 |
-
msgid "Enter the Twitter username of the publisher.
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: inc/php/
|
175 |
msgid ""
|
176 |
"Enter your meta key “content” value from your verification code to verify "
|
177 |
-
"your website.
|
178 |
"content=“<b>1234567890</b>” />"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: inc/php/
|
182 |
msgid ""
|
183 |
"Enter your meta key “content” value from your verification code to verify "
|
184 |
-
"your website.
|
185 |
"\" content=“<b>1234567890</b>” />"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/php/
|
189 |
msgid ""
|
190 |
"Enter your meta key “content” value from your verification code to verify "
|
191 |
-
"your website.
|
192 |
"content=“<b>1234567890</b>” />"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: inc/php/
|
196 |
msgid ""
|
197 |
"Enter your meta key “content” value from your verification code to verify "
|
198 |
-
"your website.
|
199 |
-
"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: inc/php/
|
203 |
msgid "Custom Meta Tags"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: inc/php/
|
207 |
msgid ""
|
208 |
"If you can't find a field to enter your required meta tag then you can add "
|
209 |
"it here. In this field you can add multiple meta tags."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/
|
213 |
msgid "Meta Tags for Static Home Page only"
|
214 |
msgstr "Meta Tags solo para Paginas de Inicio estática"
|
215 |
|
216 |
-
#: inc/php/
|
217 |
msgid ""
|
218 |
"You can use the options below to add meta tags such as Description and "
|
219 |
"Keywords only in Static Home Page of your website."
|
@@ -221,31 +437,31 @@ msgstr ""
|
|
221 |
"Puede usar las opciones abajo para agregar meta tags, como Descripción y "
|
222 |
"palabras claves solo en Paginas de Inicio estática en su sitio web."
|
223 |
|
224 |
-
#: inc/php/
|
225 |
msgid "Home Description"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/php/
|
229 |
msgid ""
|
230 |
"Enter a short description of your website (150-250 characters). Most search "
|
231 |
"engines use a maximum of 160 chars for the home description."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: inc/php/
|
235 |
msgid "Home Keyword(s)"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: inc/php/
|
239 |
msgid ""
|
240 |
"Enter a comma-delimited list of keywords for only Static Home Page of your "
|
241 |
"website."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/php/
|
245 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
246 |
msgstr "Meta Tags por defecto pagina de inicio y pagina de blog solamente"
|
247 |
|
248 |
-
#: inc/php/
|
249 |
msgid ""
|
250 |
"You can use the options below to add meta tags such as Description and "
|
251 |
"Keywords only in Default Home Page and Blog Page of your website."
|
@@ -254,24 +470,24 @@ msgstr ""
|
|
254 |
"descripción y palabras claves sólo en página principal predeterminada y Blog "
|
255 |
"página de su sitio web."
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "Blog Description"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: inc/php/
|
262 |
msgid "Blog Keyword(s)"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: inc/php/
|
266 |
msgid ""
|
267 |
"Enter a comma-delimited list of keywords for only Blog Page of your website."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "Meta Tags for all website (Global)"
|
272 |
msgstr "Meta Tags para todo el sitio web (Global)"
|
273 |
|
274 |
-
#: inc/php/
|
275 |
msgid ""
|
276 |
"You can use the options below to add meta tags such as Author, Copyright and "
|
277 |
"Keywords in everywhere on your website."
|
@@ -279,35 +495,31 @@ msgstr ""
|
|
279 |
"Puede usar las opciones abajo para agregar meta tags como Autor, Derecho "
|
280 |
"autor, palabras clavs en cualquier sitio de su pagina web."
|
281 |
|
282 |
-
#: inc/php/
|
283 |
-
msgid "Author"
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: inc/php/settings_page.php:223
|
287 |
msgid "Designer"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: inc/php/
|
291 |
msgid "Contact"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: inc/php/
|
295 |
msgid "Copyright"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: inc/php/
|
299 |
msgid "Keyword(s)"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: inc/php/
|
303 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: inc/php/
|
307 |
msgid "WooCommerce & Google Shopping"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: inc/php/
|
311 |
msgid ""
|
312 |
"This plugin automatically adds the necessary Google Shopping (Merchant "
|
313 |
"Center) structured data on all WooCommerce product pages on your website. "
|
@@ -315,7 +527,7 @@ msgid ""
|
|
315 |
"cents of US."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: inc/php/
|
319 |
msgid ""
|
320 |
"Check these data generated on the pages of your website you can <a href="
|
321 |
"\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
|
@@ -341,6 +553,23 @@ msgstr "Arthur Gareginyan"
|
|
341 |
msgid "http://www.arthurgareginyan.com"
|
342 |
msgstr "http://www.arthurgareginyan.com"
|
343 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
#~ msgid "Advertisement"
|
345 |
#~ msgstr "Publicidad"
|
346 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: All Meta Tags\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-05-07 13:22+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-05-07 13:22+0300\n"
|
7 |
"Last-Translator: Sergio <srg2010@yahoo.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_MX\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
26 |
|
27 |
+
#: inc/php/core.php:31 inc/php/page.php:40
|
28 |
msgid "Settings"
|
29 |
msgstr "Ajustes"
|
30 |
|
31 |
+
#: inc/php/core.php:47
|
32 |
+
msgid "Donate"
|
33 |
+
msgstr "Donar"
|
34 |
+
|
35 |
#. Plugin Name of the plugin/theme
|
36 |
+
#: inc/php/core.php:62 inc/php/page.php:25
|
37 |
msgid "All Meta Tags"
|
38 |
msgstr "Todos los Meta Tags"
|
39 |
|
40 |
+
#: inc/php/messages.php:30
|
41 |
+
msgid "Hello. I'm Arthur, the author of this plugin."
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: inc/php/messages.php:32
|
45 |
+
#, php-format
|
46 |
+
msgid "Thank you for installing my plugin! I hope you will love it %s"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: inc/php/messages.php:67
|
50 |
+
msgid "You have installed an old version of this plugin."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: inc/php/messages.php:68
|
54 |
+
msgid "Please update the plugin to the latest version, and all will be fine."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: inc/php/page.php:28
|
58 |
+
#, php-format
|
59 |
+
msgid "by %s Arthur Gareginyan %s"
|
60 |
+
msgstr "por %s Arthur Gareginyan %s"
|
61 |
+
|
62 |
+
#: inc/php/page.php:41 inc/php/page.php:61
|
63 |
+
msgid "Usage"
|
64 |
+
msgstr "Uso"
|
65 |
+
|
66 |
+
#: inc/php/page.php:42
|
67 |
+
msgid "F.A.Q."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: inc/php/page.php:43 inc/php/page.php:175 inc/php/settings.php:192
|
71 |
+
msgid "Author"
|
72 |
+
msgstr "Autor"
|
73 |
+
|
74 |
+
#: inc/php/page.php:44 inc/php/page.php:184 inc/php/settings.php:28
|
75 |
+
#: inc/php/settings.php:238
|
76 |
+
msgid "Support"
|
77 |
+
msgstr "Soporte"
|
78 |
+
|
79 |
+
#: inc/php/page.php:45
|
80 |
+
msgid "Family"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: inc/php/page.php:63
|
84 |
+
msgid "To add the meta tags to your website, simply follow these steps:"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: inc/php/page.php:65
|
88 |
+
msgid "Go to the \"Settings\" tab."
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: inc/php/page.php:66
|
92 |
msgid ""
|
93 |
+
"Fill in the required fields, select the desired settings and click the "
|
94 |
+
"\"Save Changes\" button."
|
95 |
msgstr ""
|
|
|
|
|
96 |
|
97 |
+
#: inc/php/page.php:67
|
98 |
+
msgid "Enjoy the improved SEO of your website."
|
99 |
+
msgstr ""
|
100 |
|
101 |
+
#: inc/php/page.php:67
|
102 |
+
msgid "It's that simple!"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: inc/php/page.php:69
|
106 |
+
msgid "Note!"
|
107 |
+
msgstr ""
|
108 |
|
109 |
+
#: inc/php/page.php:69
|
110 |
+
msgid "If you want more options then tell me and I will be happy to add it."
|
111 |
+
msgstr ""
|
112 |
|
113 |
+
#: inc/php/page.php:78
|
114 |
+
msgid "Frequently Asked Questions"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: inc/php/page.php:100
|
118 |
+
msgid "Will this plugin work on my WordPress.COM website?"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: inc/php/page.php:101
|
122 |
msgid ""
|
123 |
+
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
124 |
+
"websites."
|
125 |
msgstr ""
|
|
|
|
|
126 |
|
127 |
+
#: inc/php/page.php:103
|
128 |
+
msgid "Can I use this plugin on my language?"
|
129 |
+
msgstr ""
|
130 |
|
131 |
+
#: inc/php/page.php:105
|
132 |
+
#, php-format
|
133 |
+
msgid ""
|
134 |
+
"Yes. But If your language is not available then you can make one. This "
|
135 |
+
"plugin is ready for translation. The<code>.pot</code>file is included and "
|
136 |
+
"placed in the <code>languages</code> folder. Many of plugin users would be "
|
137 |
+
"delighted if you shared your translation with the community. Just send the "
|
138 |
+
"translation files (<code>*.po, *.mo</code>) to me at the %s and I will "
|
139 |
+
"include the translation within the next plugin update."
|
140 |
+
msgstr ""
|
141 |
|
142 |
+
#: inc/php/page.php:110
|
143 |
+
msgid "How does it work?"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: inc/php/page.php:111
|
147 |
+
msgid ""
|
148 |
+
"On the \"Settings\" tab, fill in the required fields, select the desired "
|
149 |
+
"settings and click the \"Save Changes\" button. Enjoy the improved SEO of "
|
150 |
+
"your website. It's that simple!"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: inc/php/page.php:113
|
154 |
+
msgid "How much of description I can enter in the text field?"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: inc/php/page.php:114
|
158 |
+
msgid ""
|
159 |
+
"I don't limit the number of characters, but most search engines use a "
|
160 |
+
"maximum of 160 chars for the home description."
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: inc/php/page.php:116
|
164 |
+
msgid "How much of keywords I can enter in the text field?"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: inc/php/page.php:117
|
168 |
+
msgid "I don't limit the number of characters."
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: inc/php/page.php:119
|
172 |
+
msgid "I can't get verify my website. What am I doing wrong?"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: inc/php/page.php:120
|
176 |
+
msgid ""
|
177 |
+
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
|
178 |
+
"SpecificFeeds) gives you is confusing as you only have to paste in the "
|
179 |
+
"serial key number/letters (<code>1234567890</code>) and not the whole tag "
|
180 |
+
"(<code><meta name=\"google-site-verification\" content=“1234567890” />"
|
181 |
+
"</code>). So just paste that into the relevant field and you will see "
|
182 |
+
"“Success” message appear within a few seconds."
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: inc/php/page.php:122
|
186 |
+
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: inc/php/page.php:123
|
190 |
+
msgid ""
|
191 |
+
"To make these plugins compatible you need to stick to one simple rule: do "
|
192 |
+
"not fill the same field in both plugins at once. Otherwise both plugins "
|
193 |
+
"fulfill their work and you will get a duplicate actions, for example:"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: inc/php/page.php:131
|
197 |
+
msgid ""
|
198 |
+
"In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: inc/php/page.php:133
|
202 |
+
msgid "Does this plugin requires any modification of the theme?"
|
203 |
+
msgstr ""
|
204 |
|
205 |
+
#: inc/php/page.php:134
|
206 |
+
msgid ""
|
207 |
+
"Absolutely not. This plugin is configurable entirely from the plugin "
|
208 |
+
"settings page."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: inc/php/page.php:136
|
212 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: inc/php/page.php:137
|
216 |
+
msgid ""
|
217 |
+
"Absolutely not. This plugin can be configured with no knowledge of HTML or "
|
218 |
+
"CSS, using an easy-to-use plugin settings page."
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: inc/php/page.php:139
|
222 |
+
msgid "It's not working. What could be wrong?"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: inc/php/page.php:140
|
226 |
+
msgid ""
|
227 |
+
"As with every plugin, it's possible that things don't work. The most common "
|
228 |
+
"reason for this is a web browser's cache. Every web browser stores a cache "
|
229 |
+
"of the websites you visit (pages, images, and etc.) to reduce bandwidth "
|
230 |
+
"usage and server load. This is called the browser's cache. Clearing your "
|
231 |
+
"browser's cache may solve the problem."
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: inc/php/page.php:141
|
235 |
+
msgid ""
|
236 |
+
"It's impossible to tell what could be wrong exactly, but if you post a "
|
237 |
+
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
238 |
+
"to give it a look and try to help out. Please include as much information as "
|
239 |
+
"possible, including a link to your website where the problem can be seen."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: inc/php/page.php:143
|
243 |
+
msgid "Where to report bug if found?"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: inc/php/page.php:145
|
247 |
+
#, php-format
|
248 |
+
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: inc/php/page.php:151
|
252 |
+
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: inc/php/page.php:153
|
256 |
+
#, php-format
|
257 |
+
msgid ""
|
258 |
+
"Any suggestions are very welcome! Please send me an email to %s "
|
259 |
+
"arthurgareginyan@gmail.com %s. Thank you!"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: inc/php/page.php:159
|
263 |
+
msgid "I love this plugin! Can I help somehow?"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: inc/php/page.php:161
|
267 |
+
#, php-format
|
268 |
+
msgid ""
|
269 |
+
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
270 |
+
"click on the donate button, and thank you!"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: inc/php/settings.php:21
|
274 |
+
msgid "About"
|
275 |
+
msgstr "Acerca"
|
276 |
+
|
277 |
+
#: inc/php/settings.php:23
|
278 |
+
msgid "This plugin allows you to easily add Meta Tags to your website."
|
279 |
+
msgstr "Este plugin te permite agregar fácilmente Meta Tags a tu sitio web."
|
280 |
+
|
281 |
+
#: inc/php/settings.php:30 inc/php/settings.php:240
|
282 |
msgid ""
|
283 |
"I'm an independent developer, without a regular income, so every little "
|
284 |
"contribution helps cover my costs and lets me spend more time building "
|
287 |
"Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este "
|
288 |
"plugin aún mejor y tenerlo actualizado."
|
289 |
|
290 |
+
#: inc/php/settings.php:31 inc/php/settings.php:241
|
291 |
+
msgid "Donate with PayPal"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: inc/php/settings.php:32 inc/php/settings.php:242
|
295 |
msgid "Thanks for your support!"
|
296 |
msgstr "Gracias por su apoyo!"
|
297 |
|
298 |
+
#: inc/php/settings.php:37
|
299 |
+
msgid "Help"
|
300 |
+
msgstr "Ayuda"
|
301 |
+
|
302 |
+
#: inc/php/settings.php:39
|
303 |
+
msgid "Got something to say? Need help?"
|
304 |
+
msgstr "Tiene algo que decir? Necesitas ayuda?"
|
305 |
+
|
306 |
+
#: inc/php/settings.php:62
|
307 |
msgid "Web Master Tools"
|
308 |
msgstr "Herramientas para Web Master"
|
309 |
|
310 |
+
#: inc/php/settings.php:64
|
311 |
msgid ""
|
312 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
313 |
"are the correct owner of your blog or store before they provide their "
|
320 |
"comprobar su dominio. Si su dominio ya está verificado, puede olvidarse de "
|
321 |
"ellas."
|
322 |
|
323 |
+
#: inc/php/settings.php:69
|
324 |
msgid ""
|
325 |
"Enter your meta key “content” value from your verification code to verify "
|
326 |
+
"your website. <br>Example: <meta name=\"google-site-verification\" "
|
327 |
"content=“<b>1234567890</b>” />"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: inc/php/settings.php:74
|
331 |
msgid ""
|
332 |
"Enter your meta key “content” value from your verification code to verify "
|
333 |
+
"your website. <br>Example: <meta name=\"msvalidate.01\" "
|
334 |
"content=“<b>1234567890</b>” />"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: inc/php/settings.php:79
|
338 |
msgid ""
|
339 |
"Enter your meta key “content” value from your verification code to verify "
|
340 |
+
"your website. <br>Example: <meta name=\"yandex-verification\" "
|
341 |
"content=“<b>1234567890</b>” />"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: inc/php/settings.php:82 inc/php/settings.php:138 inc/php/settings.php:160
|
345 |
+
#: inc/php/settings.php:182 inc/php/settings.php:216
|
|
|
346 |
msgid "Save Changes"
|
347 |
msgstr "Guardar Cambios"
|
348 |
|
349 |
+
#: inc/php/settings.php:87
|
350 |
msgid "Domain Verification"
|
351 |
msgstr "Verificar Dominio"
|
352 |
|
353 |
+
#: inc/php/settings.php:89
|
354 |
msgid ""
|
355 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
356 |
"verify your domain. This makes sure that you are the correct owner of your "
|
364 |
"Puede utilizar las opciones de abajo para comprobar su dominio. Si su "
|
365 |
"dominio ya está verificado, puede olvidarse de ellas."
|
366 |
|
367 |
+
#: inc/php/settings.php:94
|
368 |
msgid ""
|
369 |
"Enter your meta key “content” value from your verification code to verify "
|
370 |
+
"your website. <br>Example: <meta name=\"p:domain_verify\" "
|
371 |
"content=“<b>1234567890</b>” />"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: inc/php/settings.php:99
|
375 |
msgid ""
|
376 |
+
"Enter an absolute URL to the Google+ profile of the publisher. <br>Example: "
|
377 |
"https://plus.google.com/+ArthurGareginyan/"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: inc/php/settings.php:104
|
381 |
msgid ""
|
382 |
+
"Enter an absolute URL to the Facebook profile of the publisher. <br>Example: "
|
383 |
+
"https://www.facebook.com/arthur.gareginyan"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: inc/php/settings.php:109
|
387 |
+
msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: inc/php/settings.php:114
|
391 |
msgid ""
|
392 |
"Enter your meta key “content” value from your verification code to verify "
|
393 |
+
"your website. <br>Example: <meta name=\"alexaVerifyID\" "
|
394 |
"content=“<b>1234567890</b>” />"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: inc/php/settings.php:119
|
398 |
msgid ""
|
399 |
"Enter your meta key “content” value from your verification code to verify "
|
400 |
+
"your website. <br>Example: <meta name=\"norton-safeweb-site-verification"
|
401 |
"\" content=“<b>1234567890</b>” />"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: inc/php/settings.php:124
|
405 |
msgid ""
|
406 |
"Enter your meta key “content” value from your verification code to verify "
|
407 |
+
"your website. <br>Example: <meta name=\"wot-verification\" "
|
408 |
"content=“<b>1234567890</b>” />"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: inc/php/settings.php:129
|
412 |
msgid ""
|
413 |
"Enter your meta key “content” value from your verification code to verify "
|
414 |
+
"your website. <br>Example: <meta name=\"specificfeeds-verification-code\" "
|
415 |
+
"content=“<b>1234567890</b>” />"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: inc/php/settings.php:132
|
419 |
msgid "Custom Meta Tags"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/php/settings.php:134
|
423 |
msgid ""
|
424 |
"If you can't find a field to enter your required meta tag then you can add "
|
425 |
"it here. In this field you can add multiple meta tags."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: inc/php/settings.php:143
|
429 |
msgid "Meta Tags for Static Home Page only"
|
430 |
msgstr "Meta Tags solo para Paginas de Inicio estática"
|
431 |
|
432 |
+
#: inc/php/settings.php:145
|
433 |
msgid ""
|
434 |
"You can use the options below to add meta tags such as Description and "
|
435 |
"Keywords only in Static Home Page of your website."
|
437 |
"Puede usar las opciones abajo para agregar meta tags, como Descripción y "
|
438 |
"palabras claves solo en Paginas de Inicio estática en su sitio web."
|
439 |
|
440 |
+
#: inc/php/settings.php:148
|
441 |
msgid "Home Description"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: inc/php/settings.php:150 inc/php/settings.php:172
|
445 |
msgid ""
|
446 |
"Enter a short description of your website (150-250 characters). Most search "
|
447 |
"engines use a maximum of 160 chars for the home description."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: inc/php/settings.php:154
|
451 |
msgid "Home Keyword(s)"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: inc/php/settings.php:156
|
455 |
msgid ""
|
456 |
"Enter a comma-delimited list of keywords for only Static Home Page of your "
|
457 |
"website."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: inc/php/settings.php:165
|
461 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
462 |
msgstr "Meta Tags por defecto pagina de inicio y pagina de blog solamente"
|
463 |
|
464 |
+
#: inc/php/settings.php:167
|
465 |
msgid ""
|
466 |
"You can use the options below to add meta tags such as Description and "
|
467 |
"Keywords only in Default Home Page and Blog Page of your website."
|
470 |
"descripción y palabras claves sólo en página principal predeterminada y Blog "
|
471 |
"página de su sitio web."
|
472 |
|
473 |
+
#: inc/php/settings.php:170
|
474 |
msgid "Blog Description"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: inc/php/settings.php:176
|
478 |
msgid "Blog Keyword(s)"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: inc/php/settings.php:178
|
482 |
msgid ""
|
483 |
"Enter a comma-delimited list of keywords for only Blog Page of your website."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: inc/php/settings.php:187
|
487 |
msgid "Meta Tags for all website (Global)"
|
488 |
msgstr "Meta Tags para todo el sitio web (Global)"
|
489 |
|
490 |
+
#: inc/php/settings.php:189
|
491 |
msgid ""
|
492 |
"You can use the options below to add meta tags such as Author, Copyright and "
|
493 |
"Keywords in everywhere on your website."
|
495 |
"Puede usar las opciones abajo para agregar meta tags como Autor, Derecho "
|
496 |
"autor, palabras clavs en cualquier sitio de su pagina web."
|
497 |
|
498 |
+
#: inc/php/settings.php:197
|
|
|
|
|
|
|
|
|
499 |
msgid "Designer"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc/php/settings.php:202
|
503 |
msgid "Contact"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: inc/php/settings.php:206
|
507 |
msgid "Copyright"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: inc/php/settings.php:210
|
511 |
msgid "Keyword(s)"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: inc/php/settings.php:212
|
515 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: inc/php/settings.php:221
|
519 |
msgid "WooCommerce & Google Shopping"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: inc/php/settings.php:223
|
523 |
msgid ""
|
524 |
"This plugin automatically adds the necessary Google Shopping (Merchant "
|
525 |
"Center) structured data on all WooCommerce product pages on your website. "
|
527 |
"cents of US."
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: inc/php/settings.php:233
|
531 |
msgid ""
|
532 |
"Check these data generated on the pages of your website you can <a href="
|
533 |
"\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
|
553 |
msgid "http://www.arthurgareginyan.com"
|
554 |
msgstr "http://www.arthurgareginyan.com"
|
555 |
|
556 |
+
#~ msgid ""
|
557 |
+
#~ "To use, enter your custom Meta Tags, then click \"Save Changes\". It's "
|
558 |
+
#~ "that simple!"
|
559 |
+
#~ msgstr ""
|
560 |
+
#~ "Para usar, ingrese el nombre de su Meta Tag, luego de click en \"Salvar "
|
561 |
+
#~ "Cambios\". Es así de simple."
|
562 |
+
|
563 |
+
#~ msgid ""
|
564 |
+
#~ "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
565 |
+
#~ "Gareginyan</a>"
|
566 |
+
#~ msgstr ""
|
567 |
+
#~ "por <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
568 |
+
#~ "Gareginyan</a>"
|
569 |
+
|
570 |
+
#~ msgid "Using"
|
571 |
+
#~ msgstr "Usando"
|
572 |
+
|
573 |
#~ msgid "Advertisement"
|
574 |
#~ msgstr "Publicidad"
|
575 |
|
languages/all-meta-tags-it_IT.mo
CHANGED
Binary file
|
languages/all-meta-tags-it_IT.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - All Meta Tags - Stable (latest release)\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: it\n"
|
@@ -13,50 +13,250 @@ msgstr ""
|
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Generator: Poedit 1.8.4\n"
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
msgid "Settings"
|
19 |
msgstr "Impostazioni"
|
20 |
|
|
|
|
|
|
|
|
|
21 |
#. Plugin Name of the plugin/theme
|
22 |
-
#:
|
23 |
msgid "All Meta Tags"
|
24 |
msgstr "All Meta Tags"
|
25 |
|
26 |
-
#: inc/php/
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
29 |
|
30 |
-
#: inc/php/
|
31 |
-
|
32 |
-
|
|
|
33 |
|
34 |
-
#: inc/php/
|
35 |
-
msgid "
|
36 |
-
msgstr "
|
|
|
|
|
|
|
|
|
37 |
|
38 |
-
#: inc/php/
|
39 |
-
|
40 |
-
|
|
|
41 |
|
42 |
-
#: inc/php/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
-
"Per l'utilizzo, inserisci i tuoi tag meta personalizzati, quindi fai clic su \"Salva modifiche\". Tutto qui!"
|
46 |
|
47 |
-
#: inc/php/
|
48 |
-
msgid "
|
49 |
-
msgstr "
|
50 |
|
51 |
-
#: inc/php/
|
52 |
-
msgid "
|
53 |
-
msgstr "
|
54 |
|
55 |
-
#: inc/php/
|
56 |
-
msgid "
|
57 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
msgid ""
|
61 |
"I'm an independent developer, without a regular income, so every little contribution helps cover my costs and "
|
62 |
"lets me spend more time building things for people like you to enjoy."
|
@@ -65,15 +265,27 @@ msgstr ""
|
|
65 |
"miei costi e mi consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li "
|
66 |
"apprezzano."
|
67 |
|
68 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
69 |
msgid "Thanks for your support!"
|
70 |
msgstr "Grazie per il tuo supporto!"
|
71 |
|
72 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
msgid "Web Master Tools"
|
74 |
msgstr "Webmaster Tools"
|
75 |
|
76 |
-
#: inc/php/
|
77 |
msgid ""
|
78 |
"Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog "
|
79 |
"or store before they provide their services to you. You can use the options below to verify your domain. If your "
|
@@ -83,40 +295,40 @@ msgstr ""
|
|
83 |
"blog o negozio prima che ti forniscano i loro servizi. Puoi usare le opzioni qui sotto per verificare il tuo "
|
84 |
"dominio. Se il tuo dominio è già verificato, puoi semplicemente ignorarle."
|
85 |
|
86 |
-
#: inc/php/
|
87 |
msgid ""
|
88 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
89 |
"name=\"google-site-verification\" content=“<b>1234567890</b>” />"
|
90 |
msgstr ""
|
91 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
92 |
-
"verifica
|
93 |
|
94 |
-
#: inc/php/
|
95 |
msgid ""
|
96 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
97 |
"name=\"msvalidate.01\" content=“<b>1234567890</b>” />"
|
98 |
msgstr ""
|
99 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
100 |
-
"verifica
|
101 |
|
102 |
-
#: inc/php/
|
103 |
msgid ""
|
104 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
105 |
"name=\"yandex-verification\" content=“<b>1234567890</b>” />"
|
106 |
msgstr ""
|
107 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
108 |
-
"verifica
|
109 |
|
110 |
-
#: inc/php/
|
111 |
-
#: inc/php/
|
112 |
msgid "Save Changes"
|
113 |
msgstr "Salva modifiche"
|
114 |
|
115 |
-
#: inc/php/
|
116 |
msgid "Domain Verification"
|
117 |
msgstr "Verifica dominio"
|
118 |
|
119 |
-
#: inc/php/
|
120 |
msgid ""
|
121 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure "
|
122 |
"that you are the correct owner of your blog or store before they provide their services to you. You can use the "
|
@@ -127,68 +339,67 @@ msgstr ""
|
|
127 |
"opzioni qui sotto per verificare il tuo dominio. Se il tuo dominio è già verificato, puoi semplicemente "
|
128 |
"ignorarle."
|
129 |
|
130 |
-
#: inc/php/
|
131 |
msgid ""
|
132 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
133 |
"name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
134 |
msgstr ""
|
135 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
136 |
-
"verifica
|
137 |
|
138 |
-
#: inc/php/
|
139 |
msgid ""
|
140 |
-
"Enter an absolute URL to the Google+ profile of the publisher.
|
141 |
"+ArthurGareginyan/"
|
142 |
-
msgstr "Inserisci un URL assoluto al tuo profilo Google+.
|
143 |
|
144 |
-
#: inc/php/
|
145 |
msgid ""
|
146 |
-
"Enter an absolute URL to the Facebook profile of the publisher.
|
147 |
"gareginyan"
|
148 |
-
msgstr ""
|
149 |
-
"Inserisci un URL assoluto al tuo profilo Facebook. </br>Esempio: https://www.facebook.com/arthur.gareginyan"
|
150 |
|
151 |
-
#: inc/php/
|
152 |
-
msgid "Enter the Twitter username of the publisher.
|
153 |
-
msgstr "Inserisci il tuo nome utente Twitter.
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid ""
|
157 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
158 |
"name=\"alexaVerifyID\" content=“<b>1234567890</b>” />"
|
159 |
msgstr ""
|
160 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
161 |
-
"verifica
|
162 |
|
163 |
-
#: inc/php/
|
164 |
msgid ""
|
165 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
166 |
"name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” />"
|
167 |
msgstr ""
|
168 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
169 |
-
"verifica
|
170 |
|
171 |
-
#: inc/php/
|
172 |
msgid ""
|
173 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
174 |
"name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
175 |
msgstr ""
|
176 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
177 |
-
"verifica
|
178 |
|
179 |
-
#: inc/php/
|
180 |
msgid ""
|
181 |
-
"Enter your meta key “content” value from your verification code to verify your website.
|
182 |
"name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
183 |
msgstr ""
|
184 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
185 |
-
"verifica
|
186 |
|
187 |
-
#: inc/php/
|
188 |
msgid "Custom Meta Tags"
|
189 |
msgstr "Tag meta personalizzati"
|
190 |
|
191 |
-
#: inc/php/
|
192 |
msgid ""
|
193 |
"If you can't find a field to enter your required meta tag then you can add it here. In this field you can add "
|
194 |
"multiple meta tags."
|
@@ -196,11 +407,11 @@ msgstr ""
|
|
196 |
"Se non riesci a trovare un campo per inserire il tuo meta tag richiesto allora puoi aggiungerlo qui. In questo "
|
197 |
"campo puoi aggiungere tag meta multipli."
|
198 |
|
199 |
-
#: inc/php/
|
200 |
msgid "Meta Tags for Static Home Page only"
|
201 |
msgstr "Tag meta solo per la pagina home statica"
|
202 |
|
203 |
-
#: inc/php/
|
204 |
msgid ""
|
205 |
"You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your "
|
206 |
"website."
|
@@ -208,11 +419,11 @@ msgstr ""
|
|
208 |
"Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
|
209 |
"statica del tuo sito web."
|
210 |
|
211 |
-
#: inc/php/
|
212 |
msgid "Home Description"
|
213 |
msgstr "Descrizione home"
|
214 |
|
215 |
-
#: inc/php/
|
216 |
msgid ""
|
217 |
"Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars "
|
218 |
"for the home description."
|
@@ -220,20 +431,20 @@ msgstr ""
|
|
220 |
"Inserisci una breve descrizione del tuo sito web (150-250 caratteri). La maggior parte dei motori di ricerca usa "
|
221 |
"un massimo di 160 caratteri per la descrizione della home."
|
222 |
|
223 |
-
#: inc/php/
|
224 |
msgid "Home Keyword(s)"
|
225 |
msgstr "Parole chiave home"
|
226 |
|
227 |
-
#: inc/php/
|
228 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
229 |
msgstr ""
|
230 |
"Inserisci una lista delimitata da virgole di parole chiave solo per la pagina home statica del tuo sito web."
|
231 |
|
232 |
-
#: inc/php/
|
233 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
234 |
msgstr "Tag meta solo per pagina home predefinita e pagina blog"
|
235 |
|
236 |
-
#: inc/php/
|
237 |
msgid ""
|
238 |
"You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and "
|
239 |
"Blog Page of your website."
|
@@ -241,58 +452,54 @@ msgstr ""
|
|
241 |
"Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
|
242 |
"predefinita e alla pagina blog del tuo sito web."
|
243 |
|
244 |
-
#: inc/php/
|
245 |
msgid "Blog Description"
|
246 |
msgstr "Descrizione blog"
|
247 |
|
248 |
-
#: inc/php/
|
249 |
msgid "Blog Keyword(s)"
|
250 |
msgstr "Parole chiave blog"
|
251 |
|
252 |
-
#: inc/php/
|
253 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
254 |
msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina blog del tuo sito web."
|
255 |
|
256 |
-
#: inc/php/
|
257 |
msgid "Meta Tags for all website (Global)"
|
258 |
msgstr "Tag meta per tutto il sito (globale)"
|
259 |
|
260 |
-
#: inc/php/
|
261 |
msgid ""
|
262 |
"You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
|
263 |
"website."
|
264 |
msgstr ""
|
265 |
"Puoi usare le opzioni qui sotto per aggiungere tag meta quali Author, Copyright e Keywords ovunque sul tuo sito."
|
266 |
|
267 |
-
#: inc/php/
|
268 |
-
msgid "Author"
|
269 |
-
msgstr "Autore"
|
270 |
-
|
271 |
-
#: inc/php/settings_page.php:223
|
272 |
msgid "Designer"
|
273 |
msgstr "Designer"
|
274 |
|
275 |
-
#: inc/php/
|
276 |
msgid "Contact"
|
277 |
msgstr "Contatti"
|
278 |
|
279 |
-
#: inc/php/
|
280 |
msgid "Copyright"
|
281 |
msgstr "Copyright"
|
282 |
|
283 |
-
#: inc/php/
|
284 |
msgid "Keyword(s)"
|
285 |
msgstr "Parole chiave"
|
286 |
|
287 |
-
#: inc/php/
|
288 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
289 |
msgstr "Inserisci una lista delimitata da virgole di parole chiave globali per il tuo sito web."
|
290 |
|
291 |
-
#: inc/php/
|
292 |
msgid "WooCommerce & Google Shopping"
|
293 |
msgstr "WooCommerce & Google Shopping"
|
294 |
|
295 |
-
#: inc/php/
|
296 |
msgid ""
|
297 |
"This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
|
298 |
"WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars and "
|
@@ -302,7 +509,7 @@ msgstr ""
|
|
302 |
"le pagine prodotto WooCommerce del tuo sito web. Ecco il codice per una maglietta da donna al prezzo di 16 "
|
303 |
"dollari e 80 centesimi."
|
304 |
|
305 |
-
#: inc/php/
|
306 |
msgid ""
|
307 |
"Check these data generated on the pages of your website you can <a href=\"https://search.google.com/structured-"
|
308 |
"data/testing-tool\" target=\"_blank\">here</a>."
|
@@ -325,3 +532,13 @@ msgstr "Arthur Gareginyan"
|
|
325 |
#. Author URI of the plugin/theme
|
326 |
msgid "http://www.arthurgareginyan.com"
|
327 |
msgstr "http://www.arthurgareginyan.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - All Meta Tags - Stable (latest release)\n"
|
6 |
+
"POT-Creation-Date: 2017-05-07 13:22+0300\n"
|
7 |
+
"PO-Revision-Date: 2017-05-07 13:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: it\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Generator: Poedit 1.8.4\n"
|
16 |
+
"X-Poedit-Basepath: ..\n"
|
17 |
+
"X-Poedit-WPHeader: all-meta-tags.php\n"
|
18 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;"
|
20 |
+
"esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
21 |
+
"X-Poedit-SearchPath-0: .\n"
|
22 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
+
|
24 |
+
#: inc/php/core.php:31 inc/php/page.php:40
|
25 |
msgid "Settings"
|
26 |
msgstr "Impostazioni"
|
27 |
|
28 |
+
#: inc/php/core.php:47
|
29 |
+
msgid "Donate"
|
30 |
+
msgstr "Dona"
|
31 |
+
|
32 |
#. Plugin Name of the plugin/theme
|
33 |
+
#: inc/php/core.php:62 inc/php/page.php:25
|
34 |
msgid "All Meta Tags"
|
35 |
msgstr "All Meta Tags"
|
36 |
|
37 |
+
#: inc/php/messages.php:30
|
38 |
+
msgid "Hello. I'm Arthur, the author of this plugin."
|
39 |
+
msgstr ""
|
40 |
|
41 |
+
#: inc/php/messages.php:32
|
42 |
+
#, php-format
|
43 |
+
msgid "Thank you for installing my plugin! I hope you will love it %s"
|
44 |
+
msgstr ""
|
45 |
|
46 |
+
#: inc/php/messages.php:67
|
47 |
+
msgid "You have installed an old version of this plugin."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: inc/php/messages.php:68
|
51 |
+
msgid "Please update the plugin to the latest version, and all will be fine."
|
52 |
+
msgstr ""
|
53 |
|
54 |
+
#: inc/php/page.php:28
|
55 |
+
#, php-format
|
56 |
+
msgid "by %s Arthur Gareginyan %s"
|
57 |
+
msgstr "di %s Arthur Gareginyan %s"
|
58 |
|
59 |
+
#: inc/php/page.php:41 inc/php/page.php:61
|
60 |
+
msgid "Usage"
|
61 |
msgstr ""
|
|
|
62 |
|
63 |
+
#: inc/php/page.php:42
|
64 |
+
msgid "F.A.Q."
|
65 |
+
msgstr ""
|
66 |
|
67 |
+
#: inc/php/page.php:43 inc/php/page.php:175 inc/php/settings.php:192
|
68 |
+
msgid "Author"
|
69 |
+
msgstr "Autore"
|
70 |
|
71 |
+
#: inc/php/page.php:44 inc/php/page.php:184 inc/php/settings.php:28 inc/php/settings.php:238
|
72 |
+
msgid "Support"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: inc/php/page.php:45
|
76 |
+
msgid "Family"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: inc/php/page.php:63
|
80 |
+
msgid "To add the meta tags to your website, simply follow these steps:"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: inc/php/page.php:65
|
84 |
+
msgid "Go to the \"Settings\" tab."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: inc/php/page.php:66
|
88 |
+
msgid "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: inc/php/page.php:67
|
92 |
+
msgid "Enjoy the improved SEO of your website."
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: inc/php/page.php:67
|
96 |
+
msgid "It's that simple!"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: inc/php/page.php:69
|
100 |
+
msgid "Note!"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: inc/php/page.php:69
|
104 |
+
msgid "If you want more options then tell me and I will be happy to add it."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: inc/php/page.php:78
|
108 |
+
msgid "Frequently Asked Questions"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: inc/php/page.php:100
|
112 |
+
msgid "Will this plugin work on my WordPress.COM website?"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: inc/php/page.php:101
|
116 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: inc/php/page.php:103
|
120 |
+
msgid "Can I use this plugin on my language?"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: inc/php/page.php:105
|
124 |
+
#, php-format
|
125 |
+
msgid ""
|
126 |
+
"Yes. But If your language is not available then you can make one. This plugin is ready for translation. "
|
127 |
+
"The<code>.pot</code>file is included and placed in the <code>languages</code> folder. Many of plugin users would "
|
128 |
+
"be delighted if you shared your translation with the community. Just send the translation files (<code>*.po, *."
|
129 |
+
"mo</code>) to me at the %s and I will include the translation within the next plugin update."
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: inc/php/page.php:110
|
133 |
+
msgid "How does it work?"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: inc/php/page.php:111
|
137 |
+
msgid ""
|
138 |
+
"On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save Changes\" "
|
139 |
+
"button. Enjoy the improved SEO of your website. It's that simple!"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: inc/php/page.php:113
|
143 |
+
msgid "How much of description I can enter in the text field?"
|
144 |
+
msgstr ""
|
145 |
|
146 |
+
#: inc/php/page.php:114
|
147 |
+
msgid ""
|
148 |
+
"I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home "
|
149 |
+
"description."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: inc/php/page.php:116
|
153 |
+
msgid "How much of keywords I can enter in the text field?"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: inc/php/page.php:117
|
157 |
+
msgid "I don't limit the number of characters."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: inc/php/page.php:119
|
161 |
+
msgid "I can't get verify my website. What am I doing wrong?"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: inc/php/page.php:120
|
165 |
+
msgid ""
|
166 |
+
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing "
|
167 |
+
"as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag "
|
168 |
+
"(<code><meta name=\"google-site-verification\" content=“1234567890” /></code>). So just paste that into "
|
169 |
+
"the relevant field and you will see “Success” message appear within a few seconds."
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: inc/php/page.php:122
|
173 |
+
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: inc/php/page.php:123
|
177 |
+
msgid ""
|
178 |
+
"To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both "
|
179 |
+
"plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: inc/php/page.php:131
|
183 |
+
msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: inc/php/page.php:133
|
187 |
+
msgid "Does this plugin requires any modification of the theme?"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: inc/php/page.php:134
|
191 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: inc/php/page.php:136
|
195 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: inc/php/page.php:137
|
199 |
+
msgid ""
|
200 |
+
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
|
201 |
+
"settings page."
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: inc/php/page.php:139
|
205 |
+
msgid "It's not working. What could be wrong?"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: inc/php/page.php:140
|
209 |
+
msgid ""
|
210 |
+
"As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's "
|
211 |
+
"cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth "
|
212 |
+
"usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: inc/php/page.php:141
|
216 |
+
msgid ""
|
217 |
+
"It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support "
|
218 |
+
"forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information "
|
219 |
+
"as possible, including a link to your website where the problem can be seen."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: inc/php/page.php:143
|
223 |
+
msgid "Where to report bug if found?"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: inc/php/page.php:145
|
227 |
+
#, php-format
|
228 |
+
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: inc/php/page.php:151
|
232 |
+
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: inc/php/page.php:153
|
236 |
+
#, php-format
|
237 |
+
msgid "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: inc/php/page.php:159
|
241 |
+
msgid "I love this plugin! Can I help somehow?"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: inc/php/page.php:161
|
245 |
+
#, php-format
|
246 |
+
msgid ""
|
247 |
+
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank "
|
248 |
+
"you!"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: inc/php/settings.php:21
|
252 |
+
msgid "About"
|
253 |
+
msgstr "Informazioni"
|
254 |
+
|
255 |
+
#: inc/php/settings.php:23
|
256 |
+
msgid "This plugin allows you to easily add Meta Tags to your website."
|
257 |
+
msgstr "Questo plugin ti permette di aggiungere facilmente tag meta al tuo sito web."
|
258 |
+
|
259 |
+
#: inc/php/settings.php:30 inc/php/settings.php:240
|
260 |
msgid ""
|
261 |
"I'm an independent developer, without a regular income, so every little contribution helps cover my costs and "
|
262 |
"lets me spend more time building things for people like you to enjoy."
|
265 |
"miei costi e mi consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li "
|
266 |
"apprezzano."
|
267 |
|
268 |
+
#: inc/php/settings.php:31 inc/php/settings.php:241
|
269 |
+
msgid "Donate with PayPal"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: inc/php/settings.php:32 inc/php/settings.php:242
|
273 |
msgid "Thanks for your support!"
|
274 |
msgstr "Grazie per il tuo supporto!"
|
275 |
|
276 |
+
#: inc/php/settings.php:37
|
277 |
+
msgid "Help"
|
278 |
+
msgstr "Aiuto"
|
279 |
+
|
280 |
+
#: inc/php/settings.php:39
|
281 |
+
msgid "Got something to say? Need help?"
|
282 |
+
msgstr "Hai qualcosa da dirmi? Hai bisogno di aiuto?"
|
283 |
+
|
284 |
+
#: inc/php/settings.php:62
|
285 |
msgid "Web Master Tools"
|
286 |
msgstr "Webmaster Tools"
|
287 |
|
288 |
+
#: inc/php/settings.php:64
|
289 |
msgid ""
|
290 |
"Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog "
|
291 |
"or store before they provide their services to you. You can use the options below to verify your domain. If your "
|
295 |
"blog o negozio prima che ti forniscano i loro servizi. Puoi usare le opzioni qui sotto per verificare il tuo "
|
296 |
"dominio. Se il tuo dominio è già verificato, puoi semplicemente ignorarle."
|
297 |
|
298 |
+
#: inc/php/settings.php:69
|
299 |
msgid ""
|
300 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta "
|
301 |
"name=\"google-site-verification\" content=“<b>1234567890</b>” />"
|
302 |
msgstr ""
|
303 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
304 |
+
"verifica.<br>Esempio: <meta name=\"google-site-verification\" content=“<b>1234567890</b>” />"
|
305 |
|
306 |
+
#: inc/php/settings.php:74
|
307 |
msgid ""
|
308 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta "
|
309 |
"name=\"msvalidate.01\" content=“<b>1234567890</b>” />"
|
310 |
msgstr ""
|
311 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
312 |
+
"verifica.<br>Esempio: <meta name=\"msvalidate.01\" content=“<b>1234567890</b>” />"
|
313 |
|
314 |
+
#: inc/php/settings.php:79
|
315 |
msgid ""
|
316 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta "
|
317 |
"name=\"yandex-verification\" content=“<b>1234567890</b>” />"
|
318 |
msgstr ""
|
319 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
320 |
+
"verifica.<br>Esempio: <meta name=\"yandex-verification\" content=“<b>1234567890</b>” />"
|
321 |
|
322 |
+
#: inc/php/settings.php:82 inc/php/settings.php:138 inc/php/settings.php:160 inc/php/settings.php:182
|
323 |
+
#: inc/php/settings.php:216
|
324 |
msgid "Save Changes"
|
325 |
msgstr "Salva modifiche"
|
326 |
|
327 |
+
#: inc/php/settings.php:87
|
328 |
msgid "Domain Verification"
|
329 |
msgstr "Verifica dominio"
|
330 |
|
331 |
+
#: inc/php/settings.php:89
|
332 |
msgid ""
|
333 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure "
|
334 |
"that you are the correct owner of your blog or store before they provide their services to you. You can use the "
|
339 |
"opzioni qui sotto per verificare il tuo dominio. Se il tuo dominio è già verificato, puoi semplicemente "
|
340 |
"ignorarle."
|
341 |
|
342 |
+
#: inc/php/settings.php:94
|
343 |
msgid ""
|
344 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta "
|
345 |
"name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
346 |
msgstr ""
|
347 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
348 |
+
"verifica.<br>Esempio: <meta name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
349 |
|
350 |
+
#: inc/php/settings.php:99
|
351 |
msgid ""
|
352 |
+
"Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
|
353 |
"+ArthurGareginyan/"
|
354 |
+
msgstr "Inserisci un URL assoluto al tuo profilo Google+. <br>Esempio: https://plus.google.com/+ArthurGareginyan/"
|
355 |
|
356 |
+
#: inc/php/settings.php:104
|
357 |
msgid ""
|
358 |
+
"Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur."
|
359 |
"gareginyan"
|
360 |
+
msgstr "Inserisci un URL assoluto al tuo profilo Facebook. <br>Esempio: https://www.facebook.com/arthur.gareginyan"
|
|
|
361 |
|
362 |
+
#: inc/php/settings.php:109
|
363 |
+
msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
|
364 |
+
msgstr "Inserisci il tuo nome utente Twitter. <br>Esempio: @AGareginyan"
|
365 |
|
366 |
+
#: inc/php/settings.php:114
|
367 |
msgid ""
|
368 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta "
|
369 |
"name=\"alexaVerifyID\" content=“<b>1234567890</b>” />"
|
370 |
msgstr ""
|
371 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
372 |
+
"verifica.<br>Esempio: <meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” />"
|
373 |
|
374 |
+
#: inc/php/settings.php:119
|
375 |
msgid ""
|
376 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta "
|
377 |
"name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” />"
|
378 |
msgstr ""
|
379 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
380 |
+
"verifica.<br>Esempio: <meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” />"
|
381 |
|
382 |
+
#: inc/php/settings.php:124
|
383 |
msgid ""
|
384 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta "
|
385 |
"name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
386 |
msgstr ""
|
387 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
388 |
+
"verifica.<br>Esempio: <meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
389 |
|
390 |
+
#: inc/php/settings.php:129
|
391 |
msgid ""
|
392 |
+
"Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta "
|
393 |
"name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
394 |
msgstr ""
|
395 |
"Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
|
396 |
+
"verifica.<br>Esempio: <meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
397 |
|
398 |
+
#: inc/php/settings.php:132
|
399 |
msgid "Custom Meta Tags"
|
400 |
msgstr "Tag meta personalizzati"
|
401 |
|
402 |
+
#: inc/php/settings.php:134
|
403 |
msgid ""
|
404 |
"If you can't find a field to enter your required meta tag then you can add it here. In this field you can add "
|
405 |
"multiple meta tags."
|
407 |
"Se non riesci a trovare un campo per inserire il tuo meta tag richiesto allora puoi aggiungerlo qui. In questo "
|
408 |
"campo puoi aggiungere tag meta multipli."
|
409 |
|
410 |
+
#: inc/php/settings.php:143
|
411 |
msgid "Meta Tags for Static Home Page only"
|
412 |
msgstr "Tag meta solo per la pagina home statica"
|
413 |
|
414 |
+
#: inc/php/settings.php:145
|
415 |
msgid ""
|
416 |
"You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your "
|
417 |
"website."
|
419 |
"Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
|
420 |
"statica del tuo sito web."
|
421 |
|
422 |
+
#: inc/php/settings.php:148
|
423 |
msgid "Home Description"
|
424 |
msgstr "Descrizione home"
|
425 |
|
426 |
+
#: inc/php/settings.php:150 inc/php/settings.php:172
|
427 |
msgid ""
|
428 |
"Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars "
|
429 |
"for the home description."
|
431 |
"Inserisci una breve descrizione del tuo sito web (150-250 caratteri). La maggior parte dei motori di ricerca usa "
|
432 |
"un massimo di 160 caratteri per la descrizione della home."
|
433 |
|
434 |
+
#: inc/php/settings.php:154
|
435 |
msgid "Home Keyword(s)"
|
436 |
msgstr "Parole chiave home"
|
437 |
|
438 |
+
#: inc/php/settings.php:156
|
439 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
440 |
msgstr ""
|
441 |
"Inserisci una lista delimitata da virgole di parole chiave solo per la pagina home statica del tuo sito web."
|
442 |
|
443 |
+
#: inc/php/settings.php:165
|
444 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
445 |
msgstr "Tag meta solo per pagina home predefinita e pagina blog"
|
446 |
|
447 |
+
#: inc/php/settings.php:167
|
448 |
msgid ""
|
449 |
"You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and "
|
450 |
"Blog Page of your website."
|
452 |
"Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
|
453 |
"predefinita e alla pagina blog del tuo sito web."
|
454 |
|
455 |
+
#: inc/php/settings.php:170
|
456 |
msgid "Blog Description"
|
457 |
msgstr "Descrizione blog"
|
458 |
|
459 |
+
#: inc/php/settings.php:176
|
460 |
msgid "Blog Keyword(s)"
|
461 |
msgstr "Parole chiave blog"
|
462 |
|
463 |
+
#: inc/php/settings.php:178
|
464 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
465 |
msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina blog del tuo sito web."
|
466 |
|
467 |
+
#: inc/php/settings.php:187
|
468 |
msgid "Meta Tags for all website (Global)"
|
469 |
msgstr "Tag meta per tutto il sito (globale)"
|
470 |
|
471 |
+
#: inc/php/settings.php:189
|
472 |
msgid ""
|
473 |
"You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
|
474 |
"website."
|
475 |
msgstr ""
|
476 |
"Puoi usare le opzioni qui sotto per aggiungere tag meta quali Author, Copyright e Keywords ovunque sul tuo sito."
|
477 |
|
478 |
+
#: inc/php/settings.php:197
|
|
|
|
|
|
|
|
|
479 |
msgid "Designer"
|
480 |
msgstr "Designer"
|
481 |
|
482 |
+
#: inc/php/settings.php:202
|
483 |
msgid "Contact"
|
484 |
msgstr "Contatti"
|
485 |
|
486 |
+
#: inc/php/settings.php:206
|
487 |
msgid "Copyright"
|
488 |
msgstr "Copyright"
|
489 |
|
490 |
+
#: inc/php/settings.php:210
|
491 |
msgid "Keyword(s)"
|
492 |
msgstr "Parole chiave"
|
493 |
|
494 |
+
#: inc/php/settings.php:212
|
495 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
496 |
msgstr "Inserisci una lista delimitata da virgole di parole chiave globali per il tuo sito web."
|
497 |
|
498 |
+
#: inc/php/settings.php:221
|
499 |
msgid "WooCommerce & Google Shopping"
|
500 |
msgstr "WooCommerce & Google Shopping"
|
501 |
|
502 |
+
#: inc/php/settings.php:223
|
503 |
msgid ""
|
504 |
"This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
|
505 |
"WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars and "
|
509 |
"le pagine prodotto WooCommerce del tuo sito web. Ecco il codice per una maglietta da donna al prezzo di 16 "
|
510 |
"dollari e 80 centesimi."
|
511 |
|
512 |
+
#: inc/php/settings.php:233
|
513 |
msgid ""
|
514 |
"Check these data generated on the pages of your website you can <a href=\"https://search.google.com/structured-"
|
515 |
"data/testing-tool\" target=\"_blank\">here</a>."
|
532 |
#. Author URI of the plugin/theme
|
533 |
msgid "http://www.arthurgareginyan.com"
|
534 |
msgstr "http://www.arthurgareginyan.com"
|
535 |
+
|
536 |
+
#~ msgid "To use, enter your custom Meta Tags, then click \"Save Changes\". It's that simple!"
|
537 |
+
#~ msgstr ""
|
538 |
+
#~ "Per l'utilizzo, inserisci i tuoi tag meta personalizzati, quindi fai clic su \"Salva modifiche\". Tutto qui!"
|
539 |
+
|
540 |
+
#~ msgid "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur Gareginyan</a>"
|
541 |
+
#~ msgstr "di <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur Gareginyan</a>"
|
542 |
+
|
543 |
+
#~ msgid "Using"
|
544 |
+
#~ msgstr "Utilizzo"
|
languages/all-meta-tags-ru_RU.mo
CHANGED
Binary file
|
languages/all-meta-tags-ru_RU.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: All Meta Tags\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
@@ -21,56 +21,278 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
-
#:
|
25 |
msgid "Settings"
|
26 |
msgstr "Настройки"
|
27 |
|
|
|
|
|
|
|
|
|
28 |
#. Plugin Name of the plugin/theme
|
29 |
-
#:
|
30 |
msgid "All Meta Tags"
|
31 |
msgstr "All Meta Tags"
|
32 |
|
33 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid ""
|
35 |
-
"
|
36 |
-
"
|
37 |
msgstr ""
|
38 |
-
"
|
39 |
-
"
|
40 |
|
41 |
-
#: inc/php/
|
42 |
-
msgid "
|
43 |
-
msgstr "
|
44 |
|
45 |
-
#: inc/php/
|
46 |
-
msgid "
|
47 |
-
msgstr "
|
48 |
|
49 |
-
#: inc/php/
|
50 |
-
msgid "
|
51 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
53 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
msgid ""
|
55 |
-
"
|
56 |
-
"
|
57 |
msgstr ""
|
58 |
-
"
|
59 |
-
"
|
60 |
|
61 |
-
#: inc/php/
|
62 |
-
msgid "
|
63 |
-
msgstr "
|
64 |
|
65 |
-
#: inc/php/
|
66 |
-
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
|
69 |
-
#: inc/php/
|
70 |
-
msgid "
|
71 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
|
73 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
msgid ""
|
75 |
"I'm an independent developer, without a regular income, so every little "
|
76 |
"contribution helps cover my costs and lets me spend more time building "
|
@@ -80,15 +302,27 @@ msgstr ""
|
|
80 |
"вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
|
81 |
"создание программ для людей как вы."
|
82 |
|
83 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
84 |
msgid "Thanks for your support!"
|
85 |
msgstr "Спасибо за вашу поддержку!"
|
86 |
|
87 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
msgid "Web Master Tools"
|
89 |
msgstr "Веб-мастер инструменты"
|
90 |
|
91 |
-
#: inc/php/
|
92 |
msgid ""
|
93 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
94 |
"are the correct owner of your blog or store before they provide their "
|
@@ -96,47 +330,46 @@ msgid ""
|
|
96 |
"your domain is already verified, you can just forget about these."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: inc/php/
|
100 |
msgid ""
|
101 |
"Enter your meta key “content” value from your verification code to verify "
|
102 |
-
"your website.
|
103 |
"content=“<b>1234567890</b>” />"
|
104 |
msgstr ""
|
105 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
106 |
-
"проверки вашего веб-сайта.
|
107 |
"verification\" content=“<b>1234567890</b>” />"
|
108 |
|
109 |
-
#: inc/php/
|
110 |
msgid ""
|
111 |
"Enter your meta key “content” value from your verification code to verify "
|
112 |
-
"your website.
|
113 |
"content=“<b>1234567890</b>” />"
|
114 |
msgstr ""
|
115 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
116 |
-
"проверки вашего веб-сайта.
|
117 |
"content=“<b>1234567890</b>” />"
|
118 |
|
119 |
-
#: inc/php/
|
120 |
msgid ""
|
121 |
"Enter your meta key “content” value from your verification code to verify "
|
122 |
-
"your website.
|
123 |
"content=“<b>1234567890</b>” />"
|
124 |
msgstr ""
|
125 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
126 |
-
"проверки вашего веб-сайта.
|
127 |
-
"
|
128 |
|
129 |
-
#: inc/php/
|
130 |
-
#: inc/php/
|
131 |
-
#: inc/php/settings_page.php:242
|
132 |
msgid "Save Changes"
|
133 |
msgstr "Сохранить изменения"
|
134 |
|
135 |
-
#: inc/php/
|
136 |
msgid "Domain Verification"
|
137 |
msgstr "Подтверждение домена"
|
138 |
|
139 |
-
#: inc/php/
|
140 |
msgid ""
|
141 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
142 |
"verify your domain. This makes sure that you are the correct owner of your "
|
@@ -145,81 +378,79 @@ msgid ""
|
|
145 |
"can just forget about these."
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: inc/php/
|
149 |
msgid ""
|
150 |
"Enter your meta key “content” value from your verification code to verify "
|
151 |
-
"your website.
|
152 |
"content=“<b>1234567890</b>” />"
|
153 |
msgstr ""
|
154 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
155 |
-
"проверки вашего веб-сайта.
|
156 |
"content=“<b>1234567890</b>” />"
|
157 |
|
158 |
-
#: inc/php/
|
159 |
msgid ""
|
160 |
-
"Enter an absolute URL to the Google+ profile of the publisher.
|
161 |
"https://plus.google.com/+ArthurGareginyan/"
|
162 |
msgstr ""
|
163 |
-
"Введите полный URL к профилю в Google+.
|
164 |
"+ArthurGareginyan/"
|
165 |
|
166 |
-
#: inc/php/
|
167 |
msgid ""
|
168 |
-
"Enter an absolute URL to the Facebook profile of the publisher.
|
169 |
-
"
|
170 |
msgstr ""
|
171 |
-
"Введите полный URL к профилю в Facebook. </br>Пример: https://www.facebook."
|
172 |
-
"com/arthur.gareginyan"
|
173 |
|
174 |
-
#: inc/php/
|
175 |
-
msgid "Enter the Twitter username of the publisher.
|
176 |
-
msgstr "Введите имя пользователя в Twitter.
|
177 |
|
178 |
-
#: inc/php/
|
179 |
msgid ""
|
180 |
"Enter your meta key “content” value from your verification code to verify "
|
181 |
-
"your website.
|
182 |
"content=“<b>1234567890</b>” />"
|
183 |
msgstr ""
|
184 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
185 |
-
"проверки вашего веб-сайта.
|
186 |
"content=“<b>1234567890</b>” />"
|
187 |
|
188 |
-
#: inc/php/
|
189 |
msgid ""
|
190 |
"Enter your meta key “content” value from your verification code to verify "
|
191 |
-
"your website.
|
192 |
"\" content=“<b>1234567890</b>” />"
|
193 |
msgstr ""
|
194 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
195 |
-
"проверки вашего веб-сайта.
|
196 |
"verification\" content=“<b>1234567890</b>” />"
|
197 |
|
198 |
-
#: inc/php/
|
199 |
msgid ""
|
200 |
"Enter your meta key “content” value from your verification code to verify "
|
201 |
-
"your website.
|
202 |
"content=“<b>1234567890</b>” />"
|
203 |
msgstr ""
|
204 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
205 |
-
"проверки вашего веб-сайта.
|
206 |
"content=“<b>1234567890</b>” />"
|
207 |
|
208 |
-
#: inc/php/
|
209 |
msgid ""
|
210 |
"Enter your meta key “content” value from your verification code to verify "
|
211 |
-
"your website.
|
212 |
-
"
|
213 |
msgstr ""
|
214 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
215 |
-
"проверки вашего веб-сайта.
|
216 |
"verification-code\" content=“<b>1234567890</b>” />"
|
217 |
|
218 |
-
#: inc/php/
|
219 |
msgid "Custom Meta Tags"
|
220 |
msgstr "Пользовательские мета-теги"
|
221 |
|
222 |
-
#: inc/php/
|
223 |
msgid ""
|
224 |
"If you can't find a field to enter your required meta tag then you can add "
|
225 |
"it here. In this field you can add multiple meta tags."
|
@@ -227,11 +458,11 @@ msgstr ""
|
|
227 |
"Если вы не можете найти поле для нужного вам мета-тега, то добавьте ваш мета-"
|
228 |
"тег сюда. В это поле вы можете добавить несколько мета-тегов."
|
229 |
|
230 |
-
#: inc/php/
|
231 |
msgid "Meta Tags for Static Home Page only"
|
232 |
msgstr "Мета-теги только для Static Home Page"
|
233 |
|
234 |
-
#: inc/php/
|
235 |
msgid ""
|
236 |
"You can use the options below to add meta tags such as Description and "
|
237 |
"Keywords only in Static Home Page of your website."
|
@@ -240,11 +471,11 @@ msgstr ""
|
|
240 |
"таких как Description и Keywords только на Static Home Page страницу вашего "
|
241 |
"вебсайта."
|
242 |
|
243 |
-
#: inc/php/
|
244 |
msgid "Home Description"
|
245 |
msgstr "Описание главной страницы"
|
246 |
|
247 |
-
#: inc/php/
|
248 |
msgid ""
|
249 |
"Enter a short description of your website (150-250 characters). Most search "
|
250 |
"engines use a maximum of 160 chars for the home description."
|
@@ -253,11 +484,11 @@ msgstr ""
|
|
253 |
"поисковых систем используют максимум 160 символов для описания домашней "
|
254 |
"страницы."
|
255 |
|
256 |
-
#: inc/php/
|
257 |
msgid "Home Keyword(s)"
|
258 |
msgstr "Ключевые слова главной страницы"
|
259 |
|
260 |
-
#: inc/php/
|
261 |
msgid ""
|
262 |
"Enter a comma-delimited list of keywords for only Static Home Page of your "
|
263 |
"website."
|
@@ -265,11 +496,11 @@ msgstr ""
|
|
265 |
"Введите, разделенный запятыми, список ключевых слов для только Static Home "
|
266 |
"Page вашего веб-сайта."
|
267 |
|
268 |
-
#: inc/php/
|
269 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
270 |
msgstr "Мета-теги для Default Home Page и только Blog Page"
|
271 |
|
272 |
-
#: inc/php/
|
273 |
msgid ""
|
274 |
"You can use the options below to add meta tags such as Description and "
|
275 |
"Keywords only in Default Home Page and Blog Page of your website."
|
@@ -278,26 +509,26 @@ msgstr ""
|
|
278 |
"таких как Description и Keywords только на Default Home Page и Blog Page "
|
279 |
"страницы вашего вебсайта."
|
280 |
|
281 |
-
#: inc/php/
|
282 |
msgid "Blog Description"
|
283 |
msgstr "Описание блога"
|
284 |
|
285 |
-
#: inc/php/
|
286 |
msgid "Blog Keyword(s)"
|
287 |
msgstr "Ключевые слова блога"
|
288 |
|
289 |
-
#: inc/php/
|
290 |
msgid ""
|
291 |
"Enter a comma-delimited list of keywords for only Blog Page of your website."
|
292 |
msgstr ""
|
293 |
"Введите, разделенный запятыми, список ключевых слов для только Blog Page "
|
294 |
"вашего веб-сайта."
|
295 |
|
296 |
-
#: inc/php/
|
297 |
msgid "Meta Tags for all website (Global)"
|
298 |
msgstr "Мета-теги для всего веб-сайта (Глобальные)"
|
299 |
|
300 |
-
#: inc/php/
|
301 |
msgid ""
|
302 |
"You can use the options below to add meta tags such as Author, Copyright and "
|
303 |
"Keywords in everywhere on your website."
|
@@ -305,37 +536,33 @@ msgstr ""
|
|
305 |
"Вы можете использовать ниже-расположенные опции для добавления мета тегов "
|
306 |
"таких как Author, Copyright и Keywords на каждую страницу вашего вебсайта."
|
307 |
|
308 |
-
#: inc/php/
|
309 |
-
msgid "Author"
|
310 |
-
msgstr "Автор"
|
311 |
-
|
312 |
-
#: inc/php/settings_page.php:223
|
313 |
msgid "Designer"
|
314 |
msgstr "Дизайнер"
|
315 |
|
316 |
-
#: inc/php/
|
317 |
msgid "Contact"
|
318 |
msgstr "Контакты"
|
319 |
|
320 |
-
#: inc/php/
|
321 |
msgid "Copyright"
|
322 |
msgstr "Copyright"
|
323 |
|
324 |
-
#: inc/php/
|
325 |
msgid "Keyword(s)"
|
326 |
msgstr "Ключевые слова"
|
327 |
|
328 |
-
#: inc/php/
|
329 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
330 |
msgstr ""
|
331 |
"Введите, разделенный запятыми, список глобальных ключевых слов для вашего "
|
332 |
"веб-сайта."
|
333 |
|
334 |
-
#: inc/php/
|
335 |
msgid "WooCommerce & Google Shopping"
|
336 |
msgstr "WooCommerce и Google Shopping"
|
337 |
|
338 |
-
#: inc/php/
|
339 |
msgid ""
|
340 |
"This plugin automatically adds the necessary Google Shopping (Merchant "
|
341 |
"Center) structured data on all WooCommerce product pages on your website. "
|
@@ -347,7 +574,7 @@ msgstr ""
|
|
347 |
"разметка для женской футболки которая продаётся за 16 долларов и 80 центов "
|
348 |
"США."
|
349 |
|
350 |
-
#: inc/php/
|
351 |
msgid ""
|
352 |
"Check these data generated on the pages of your website you can <a href="
|
353 |
"\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
|
@@ -374,6 +601,30 @@ msgstr "Артур Гарегинян"
|
|
374 |
msgid "http://www.arthurgareginyan.com"
|
375 |
msgstr "http://www.arthurgareginyan.com"
|
376 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
#~ msgid "Advertisement"
|
378 |
#~ msgstr "Реклама"
|
379 |
|
@@ -397,11 +648,6 @@ msgstr "http://www.arthurgareginyan.com"
|
|
397 |
#~ "от <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Артур "
|
398 |
#~ "\"Berserkr\" Гарегинян</a>"
|
399 |
|
400 |
-
#~ msgid "If you want more options then tell me and I will be happy to add it."
|
401 |
-
#~ msgstr ""
|
402 |
-
#~ "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
|
403 |
-
#~ "добавить их."
|
404 |
-
|
405 |
#~ msgid ""
|
406 |
#~ "If you like this plugin and find it useful, help me to make this plugin "
|
407 |
#~ "even better and keep it up-to-date."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: All Meta Tags\n"
|
4 |
+
"POT-Creation-Date: 2017-05-07 13:22+0300\n"
|
5 |
+
"PO-Revision-Date: 2017-05-07 17:36+0300\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
+
#: inc/php/core.php:31 inc/php/page.php:40
|
25 |
msgid "Settings"
|
26 |
msgstr "Настройки"
|
27 |
|
28 |
+
#: inc/php/core.php:47
|
29 |
+
msgid "Donate"
|
30 |
+
msgstr "Поддержать разработку"
|
31 |
+
|
32 |
#. Plugin Name of the plugin/theme
|
33 |
+
#: inc/php/core.php:62 inc/php/page.php:25
|
34 |
msgid "All Meta Tags"
|
35 |
msgstr "All Meta Tags"
|
36 |
|
37 |
+
#: inc/php/messages.php:30
|
38 |
+
msgid "Hello. I'm Arthur, the author of this plugin."
|
39 |
+
msgstr "Привет! Я Артур, автор этого плагина."
|
40 |
+
|
41 |
+
#: inc/php/messages.php:32
|
42 |
+
#, php-format
|
43 |
+
msgid "Thank you for installing my plugin! I hope you will love it %s"
|
44 |
+
msgstr "Спасибо, что установили мой плагин! Надеюсь, что он вам полюбится %s"
|
45 |
+
|
46 |
+
#: inc/php/messages.php:67
|
47 |
+
msgid "You have installed an old version of this plugin."
|
48 |
+
msgstr "Вы установили устаревшую версию этого плагина."
|
49 |
+
|
50 |
+
#: inc/php/messages.php:68
|
51 |
+
msgid "Please update the plugin to the latest version, and all will be fine."
|
52 |
+
msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
|
53 |
+
|
54 |
+
#: inc/php/page.php:28
|
55 |
+
#, php-format
|
56 |
+
msgid "by %s Arthur Gareginyan %s"
|
57 |
+
msgstr "от %s Артура Гарегинян %s"
|
58 |
+
|
59 |
+
#: inc/php/page.php:41 inc/php/page.php:61
|
60 |
+
msgid "Usage"
|
61 |
+
msgstr "Применение"
|
62 |
+
|
63 |
+
#: inc/php/page.php:42
|
64 |
+
msgid "F.A.Q."
|
65 |
+
msgstr "F.A.Q."
|
66 |
+
|
67 |
+
#: inc/php/page.php:43 inc/php/page.php:175 inc/php/settings.php:192
|
68 |
+
msgid "Author"
|
69 |
+
msgstr "Автор"
|
70 |
+
|
71 |
+
#: inc/php/page.php:44 inc/php/page.php:184 inc/php/settings.php:28
|
72 |
+
#: inc/php/settings.php:238
|
73 |
+
msgid "Support"
|
74 |
+
msgstr "Поддержка"
|
75 |
+
|
76 |
+
#: inc/php/page.php:45
|
77 |
+
msgid "Family"
|
78 |
+
msgstr "Семья"
|
79 |
+
|
80 |
+
#: inc/php/page.php:63
|
81 |
+
msgid "To add the meta tags to your website, simply follow these steps:"
|
82 |
+
msgstr ""
|
83 |
+
"Для того чтобы добавить метатеги на ваш веб-сайт, выполните следующие "
|
84 |
+
"действия:"
|
85 |
+
|
86 |
+
#: inc/php/page.php:65
|
87 |
+
msgid "Go to the \"Settings\" tab."
|
88 |
+
msgstr "Перейдите на вкладку «Настройки»."
|
89 |
+
|
90 |
+
#: inc/php/page.php:66
|
91 |
msgid ""
|
92 |
+
"Fill in the required fields, select the desired settings and click the "
|
93 |
+
"\"Save Changes\" button."
|
94 |
msgstr ""
|
95 |
+
"Заполните необходимые поля, выберите нужные настройки и нажмите кнопку "
|
96 |
+
"«Сохранить изменения»."
|
97 |
|
98 |
+
#: inc/php/page.php:67
|
99 |
+
msgid "Enjoy the improved SEO of your website."
|
100 |
+
msgstr "Наслаждайтесь улучшенным SEO вашего веб-сайта."
|
101 |
|
102 |
+
#: inc/php/page.php:67
|
103 |
+
msgid "It's that simple!"
|
104 |
+
msgstr "Вот так просто!"
|
105 |
|
106 |
+
#: inc/php/page.php:69
|
107 |
+
msgid "Note!"
|
108 |
+
msgstr "Примечание!"
|
109 |
+
|
110 |
+
#: inc/php/page.php:69
|
111 |
+
msgid "If you want more options then tell me and I will be happy to add it."
|
112 |
+
msgstr ""
|
113 |
+
"Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
|
114 |
+
"добавить их."
|
115 |
|
116 |
+
#: inc/php/page.php:78
|
117 |
+
msgid "Frequently Asked Questions"
|
118 |
+
msgstr "Частые Вопросы"
|
119 |
+
|
120 |
+
#: inc/php/page.php:100
|
121 |
+
msgid "Will this plugin work on my WordPress.COM website?"
|
122 |
+
msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
|
123 |
+
|
124 |
+
#: inc/php/page.php:101
|
125 |
msgid ""
|
126 |
+
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
127 |
+
"websites."
|
128 |
msgstr ""
|
129 |
+
"К сожалению, этот плагин доступен для использования только на самостоятельно "
|
130 |
+
"размещённых веб-сайтах (WordPress.ORG)."
|
131 |
|
132 |
+
#: inc/php/page.php:103
|
133 |
+
msgid "Can I use this plugin on my language?"
|
134 |
+
msgstr "Можно ли использовать этот плагин на моём языке?"
|
135 |
|
136 |
+
#: inc/php/page.php:105
|
137 |
+
#, php-format
|
138 |
+
msgid ""
|
139 |
+
"Yes. But If your language is not available then you can make one. This "
|
140 |
+
"plugin is ready for translation. The<code>.pot</code>file is included and "
|
141 |
+
"placed in the <code>languages</code> folder. Many of plugin users would be "
|
142 |
+
"delighted if you shared your translation with the community. Just send the "
|
143 |
+
"translation files (<code>*.po, *.mo</code>) to me at the %s and I will "
|
144 |
+
"include the translation within the next plugin update."
|
145 |
+
msgstr ""
|
146 |
|
147 |
+
#: inc/php/page.php:110
|
148 |
+
msgid "How does it work?"
|
149 |
+
msgstr "Как оно работает?"
|
150 |
+
|
151 |
+
#: inc/php/page.php:111
|
152 |
+
msgid ""
|
153 |
+
"On the \"Settings\" tab, fill in the required fields, select the desired "
|
154 |
+
"settings and click the \"Save Changes\" button. Enjoy the improved SEO of "
|
155 |
+
"your website. It's that simple!"
|
156 |
+
msgstr ""
|
157 |
+
"На вкладке «Настройки» заполните необходимые поля, выберите нужные настройки "
|
158 |
+
"и нажмите кнопку «Сохранить изменения». Наслаждайтесь улучшенным SEO вашего "
|
159 |
+
"веб-сайта. Это так просто!"
|
160 |
+
|
161 |
+
#: inc/php/page.php:113
|
162 |
+
msgid "How much of description I can enter in the text field?"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: inc/php/page.php:114
|
166 |
+
msgid ""
|
167 |
+
"I don't limit the number of characters, but most search engines use a "
|
168 |
+
"maximum of 160 chars for the home description."
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: inc/php/page.php:116
|
172 |
+
msgid "How much of keywords I can enter in the text field?"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: inc/php/page.php:117
|
176 |
+
msgid "I don't limit the number of characters."
|
177 |
+
msgstr ""
|
178 |
|
179 |
+
#: inc/php/page.php:119
|
180 |
+
msgid "I can't get verify my website. What am I doing wrong?"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: inc/php/page.php:120
|
184 |
+
msgid ""
|
185 |
+
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
|
186 |
+
"SpecificFeeds) gives you is confusing as you only have to paste in the "
|
187 |
+
"serial key number/letters (<code>1234567890</code>) and not the whole tag "
|
188 |
+
"(<code><meta name=\"google-site-verification\" content=“1234567890” />"
|
189 |
+
"</code>). So just paste that into the relevant field and you will see "
|
190 |
+
"“Success” message appear within a few seconds."
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: inc/php/page.php:122
|
194 |
+
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: inc/php/page.php:123
|
198 |
+
msgid ""
|
199 |
+
"To make these plugins compatible you need to stick to one simple rule: do "
|
200 |
+
"not fill the same field in both plugins at once. Otherwise both plugins "
|
201 |
+
"fulfill their work and you will get a duplicate actions, for example:"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: inc/php/page.php:131
|
205 |
+
msgid ""
|
206 |
+
"In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: inc/php/page.php:133
|
210 |
+
msgid "Does this plugin requires any modification of the theme?"
|
211 |
+
msgstr "Этот плагин требует изменения темы?"
|
212 |
+
|
213 |
+
#: inc/php/page.php:134
|
214 |
+
msgid ""
|
215 |
+
"Absolutely not. This plugin is configurable entirely from the plugin "
|
216 |
+
"settings page."
|
217 |
+
msgstr ""
|
218 |
+
"Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
|
219 |
+
"плагина."
|
220 |
+
|
221 |
+
#: inc/php/page.php:136
|
222 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
223 |
+
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
224 |
+
|
225 |
+
#: inc/php/page.php:137
|
226 |
+
msgid ""
|
227 |
+
"Absolutely not. This plugin can be configured with no knowledge of HTML or "
|
228 |
+
"CSS, using an easy-to-use plugin settings page."
|
229 |
+
msgstr ""
|
230 |
+
"Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
|
231 |
+
"помощью простой в использовании страницы настройки плагина."
|
232 |
+
|
233 |
+
#: inc/php/page.php:139
|
234 |
+
msgid "It's not working. What could be wrong?"
|
235 |
+
msgstr "Оно не работает. Что может быть не так?"
|
236 |
+
|
237 |
+
#: inc/php/page.php:140
|
238 |
+
msgid ""
|
239 |
+
"As with every plugin, it's possible that things don't work. The most common "
|
240 |
+
"reason for this is a web browser's cache. Every web browser stores a cache "
|
241 |
+
"of the websites you visit (pages, images, and etc.) to reduce bandwidth "
|
242 |
+
"usage and server load. This is called the browser's cache. Clearing your "
|
243 |
+
"browser's cache may solve the problem."
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: inc/php/page.php:141
|
247 |
+
msgid ""
|
248 |
+
"It's impossible to tell what could be wrong exactly, but if you post a "
|
249 |
+
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
250 |
+
"to give it a look and try to help out. Please include as much information as "
|
251 |
+
"possible, including a link to your website where the problem can be seen."
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: inc/php/page.php:143
|
255 |
+
msgid "Where to report bug if found?"
|
256 |
+
msgstr "Где можно сообщить об ошибке?"
|
257 |
+
|
258 |
+
#: inc/php/page.php:145
|
259 |
+
#, php-format
|
260 |
+
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
261 |
+
msgstr ""
|
262 |
+
"Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
|
263 |
+
|
264 |
+
#: inc/php/page.php:151
|
265 |
+
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
266 |
+
msgstr ""
|
267 |
+
"Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
268 |
+
|
269 |
+
#: inc/php/page.php:153
|
270 |
+
#, php-format
|
271 |
+
msgid ""
|
272 |
+
"Any suggestions are very welcome! Please send me an email to %s "
|
273 |
+
"arthurgareginyan@gmail.com %s. Thank you!"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: inc/php/page.php:159
|
277 |
+
msgid "I love this plugin! Can I help somehow?"
|
278 |
+
msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
|
279 |
+
|
280 |
+
#: inc/php/page.php:161
|
281 |
+
#, php-format
|
282 |
+
msgid ""
|
283 |
+
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
284 |
+
"click on the donate button, and thank you!"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: inc/php/settings.php:21
|
288 |
+
msgid "About"
|
289 |
+
msgstr "О плагине"
|
290 |
+
|
291 |
+
#: inc/php/settings.php:23
|
292 |
+
msgid "This plugin allows you to easily add Meta Tags to your website."
|
293 |
+
msgstr "Этот плагин позволяет легко добавлять Мета-Теги на ваш веб-сайт."
|
294 |
+
|
295 |
+
#: inc/php/settings.php:30 inc/php/settings.php:240
|
296 |
msgid ""
|
297 |
"I'm an independent developer, without a regular income, so every little "
|
298 |
"contribution helps cover my costs and lets me spend more time building "
|
302 |
"вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
|
303 |
"создание программ для людей как вы."
|
304 |
|
305 |
+
#: inc/php/settings.php:31 inc/php/settings.php:241
|
306 |
+
msgid "Donate with PayPal"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: inc/php/settings.php:32 inc/php/settings.php:242
|
310 |
msgid "Thanks for your support!"
|
311 |
msgstr "Спасибо за вашу поддержку!"
|
312 |
|
313 |
+
#: inc/php/settings.php:37
|
314 |
+
msgid "Help"
|
315 |
+
msgstr "Помощь"
|
316 |
+
|
317 |
+
#: inc/php/settings.php:39
|
318 |
+
msgid "Got something to say? Need help?"
|
319 |
+
msgstr "Есть что сказать? Нужна помощь?"
|
320 |
+
|
321 |
+
#: inc/php/settings.php:62
|
322 |
msgid "Web Master Tools"
|
323 |
msgstr "Веб-мастер инструменты"
|
324 |
|
325 |
+
#: inc/php/settings.php:64
|
326 |
msgid ""
|
327 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
328 |
"are the correct owner of your blog or store before they provide their "
|
330 |
"your domain is already verified, you can just forget about these."
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: inc/php/settings.php:69
|
334 |
msgid ""
|
335 |
"Enter your meta key “content” value from your verification code to verify "
|
336 |
+
"your website. <br>Example: <meta name=\"google-site-verification\" "
|
337 |
"content=“<b>1234567890</b>” />"
|
338 |
msgstr ""
|
339 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
340 |
+
"проверки вашего веб-сайта. <br>Пример: <meta name=\"google-site-"
|
341 |
"verification\" content=“<b>1234567890</b>” />"
|
342 |
|
343 |
+
#: inc/php/settings.php:74
|
344 |
msgid ""
|
345 |
"Enter your meta key “content” value from your verification code to verify "
|
346 |
+
"your website. <br>Example: <meta name=\"msvalidate.01\" "
|
347 |
"content=“<b>1234567890</b>” />"
|
348 |
msgstr ""
|
349 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
350 |
+
"проверки вашего веб-сайта. <br>Пример: <meta name=\"msvalidate.01\" "
|
351 |
"content=“<b>1234567890</b>” />"
|
352 |
|
353 |
+
#: inc/php/settings.php:79
|
354 |
msgid ""
|
355 |
"Enter your meta key “content” value from your verification code to verify "
|
356 |
+
"your website. <br>Example: <meta name=\"yandex-verification\" "
|
357 |
"content=“<b>1234567890</b>” />"
|
358 |
msgstr ""
|
359 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
360 |
+
"проверки вашего веб-сайта. <br>Пример: <meta name=\"yandex-verification\" "
|
361 |
+
"content=“<b>1234567890</b>” />"
|
362 |
|
363 |
+
#: inc/php/settings.php:82 inc/php/settings.php:138 inc/php/settings.php:160
|
364 |
+
#: inc/php/settings.php:182 inc/php/settings.php:216
|
|
|
365 |
msgid "Save Changes"
|
366 |
msgstr "Сохранить изменения"
|
367 |
|
368 |
+
#: inc/php/settings.php:87
|
369 |
msgid "Domain Verification"
|
370 |
msgstr "Подтверждение домена"
|
371 |
|
372 |
+
#: inc/php/settings.php:89
|
373 |
msgid ""
|
374 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
375 |
"verify your domain. This makes sure that you are the correct owner of your "
|
378 |
"can just forget about these."
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: inc/php/settings.php:94
|
382 |
msgid ""
|
383 |
"Enter your meta key “content” value from your verification code to verify "
|
384 |
+
"your website. <br>Example: <meta name=\"p:domain_verify\" "
|
385 |
"content=“<b>1234567890</b>” />"
|
386 |
msgstr ""
|
387 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
388 |
+
"проверки вашего веб-сайта. <br>Пример: <meta name=\"p:domain_verify\" "
|
389 |
"content=“<b>1234567890</b>” />"
|
390 |
|
391 |
+
#: inc/php/settings.php:99
|
392 |
msgid ""
|
393 |
+
"Enter an absolute URL to the Google+ profile of the publisher. <br>Example: "
|
394 |
"https://plus.google.com/+ArthurGareginyan/"
|
395 |
msgstr ""
|
396 |
+
"Введите полный URL к профилю в Google+. <br>Пример: https://plus.google.com/"
|
397 |
"+ArthurGareginyan/"
|
398 |
|
399 |
+
#: inc/php/settings.php:104
|
400 |
msgid ""
|
401 |
+
"Enter an absolute URL to the Facebook profile of the publisher. <br>Example: "
|
402 |
+
"https://www.facebook.com/arthur.gareginyan"
|
403 |
msgstr ""
|
|
|
|
|
404 |
|
405 |
+
#: inc/php/settings.php:109
|
406 |
+
msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
|
407 |
+
msgstr "Введите имя пользователя в Twitter. <br>Пример: @AGareginyan"
|
408 |
|
409 |
+
#: inc/php/settings.php:114
|
410 |
msgid ""
|
411 |
"Enter your meta key “content” value from your verification code to verify "
|
412 |
+
"your website. <br>Example: <meta name=\"alexaVerifyID\" "
|
413 |
"content=“<b>1234567890</b>” />"
|
414 |
msgstr ""
|
415 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
416 |
+
"проверки вашего веб-сайта. <br>Пример: <meta name=\"alexaVerifyID\" "
|
417 |
"content=“<b>1234567890</b>” />"
|
418 |
|
419 |
+
#: inc/php/settings.php:119
|
420 |
msgid ""
|
421 |
"Enter your meta key “content” value from your verification code to verify "
|
422 |
+
"your website. <br>Example: <meta name=\"norton-safeweb-site-verification"
|
423 |
"\" content=“<b>1234567890</b>” />"
|
424 |
msgstr ""
|
425 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
426 |
+
"проверки вашего веб-сайта. <br>Пример: <meta name=\"norton-safeweb-site-"
|
427 |
"verification\" content=“<b>1234567890</b>” />"
|
428 |
|
429 |
+
#: inc/php/settings.php:124
|
430 |
msgid ""
|
431 |
"Enter your meta key “content” value from your verification code to verify "
|
432 |
+
"your website. <br>Example: <meta name=\"wot-verification\" "
|
433 |
"content=“<b>1234567890</b>” />"
|
434 |
msgstr ""
|
435 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
436 |
+
"проверки вашего веб-сайта. <br>Пример: <meta name=\"wot-verification\" "
|
437 |
"content=“<b>1234567890</b>” />"
|
438 |
|
439 |
+
#: inc/php/settings.php:129
|
440 |
msgid ""
|
441 |
"Enter your meta key “content” value from your verification code to verify "
|
442 |
+
"your website. <br>Example: <meta name=\"specificfeeds-verification-code\" "
|
443 |
+
"content=“<b>1234567890</b>” />"
|
444 |
msgstr ""
|
445 |
"Введите содержимое ключа “content” из верификационного meta кода для "
|
446 |
+
"проверки вашего веб-сайта. <br>Пример: <meta name=\"specificfeeds-"
|
447 |
"verification-code\" content=“<b>1234567890</b>” />"
|
448 |
|
449 |
+
#: inc/php/settings.php:132
|
450 |
msgid "Custom Meta Tags"
|
451 |
msgstr "Пользовательские мета-теги"
|
452 |
|
453 |
+
#: inc/php/settings.php:134
|
454 |
msgid ""
|
455 |
"If you can't find a field to enter your required meta tag then you can add "
|
456 |
"it here. In this field you can add multiple meta tags."
|
458 |
"Если вы не можете найти поле для нужного вам мета-тега, то добавьте ваш мета-"
|
459 |
"тег сюда. В это поле вы можете добавить несколько мета-тегов."
|
460 |
|
461 |
+
#: inc/php/settings.php:143
|
462 |
msgid "Meta Tags for Static Home Page only"
|
463 |
msgstr "Мета-теги только для Static Home Page"
|
464 |
|
465 |
+
#: inc/php/settings.php:145
|
466 |
msgid ""
|
467 |
"You can use the options below to add meta tags such as Description and "
|
468 |
"Keywords only in Static Home Page of your website."
|
471 |
"таких как Description и Keywords только на Static Home Page страницу вашего "
|
472 |
"вебсайта."
|
473 |
|
474 |
+
#: inc/php/settings.php:148
|
475 |
msgid "Home Description"
|
476 |
msgstr "Описание главной страницы"
|
477 |
|
478 |
+
#: inc/php/settings.php:150 inc/php/settings.php:172
|
479 |
msgid ""
|
480 |
"Enter a short description of your website (150-250 characters). Most search "
|
481 |
"engines use a maximum of 160 chars for the home description."
|
484 |
"поисковых систем используют максимум 160 символов для описания домашней "
|
485 |
"страницы."
|
486 |
|
487 |
+
#: inc/php/settings.php:154
|
488 |
msgid "Home Keyword(s)"
|
489 |
msgstr "Ключевые слова главной страницы"
|
490 |
|
491 |
+
#: inc/php/settings.php:156
|
492 |
msgid ""
|
493 |
"Enter a comma-delimited list of keywords for only Static Home Page of your "
|
494 |
"website."
|
496 |
"Введите, разделенный запятыми, список ключевых слов для только Static Home "
|
497 |
"Page вашего веб-сайта."
|
498 |
|
499 |
+
#: inc/php/settings.php:165
|
500 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
501 |
msgstr "Мета-теги для Default Home Page и только Blog Page"
|
502 |
|
503 |
+
#: inc/php/settings.php:167
|
504 |
msgid ""
|
505 |
"You can use the options below to add meta tags such as Description and "
|
506 |
"Keywords only in Default Home Page and Blog Page of your website."
|
509 |
"таких как Description и Keywords только на Default Home Page и Blog Page "
|
510 |
"страницы вашего вебсайта."
|
511 |
|
512 |
+
#: inc/php/settings.php:170
|
513 |
msgid "Blog Description"
|
514 |
msgstr "Описание блога"
|
515 |
|
516 |
+
#: inc/php/settings.php:176
|
517 |
msgid "Blog Keyword(s)"
|
518 |
msgstr "Ключевые слова блога"
|
519 |
|
520 |
+
#: inc/php/settings.php:178
|
521 |
msgid ""
|
522 |
"Enter a comma-delimited list of keywords for only Blog Page of your website."
|
523 |
msgstr ""
|
524 |
"Введите, разделенный запятыми, список ключевых слов для только Blog Page "
|
525 |
"вашего веб-сайта."
|
526 |
|
527 |
+
#: inc/php/settings.php:187
|
528 |
msgid "Meta Tags for all website (Global)"
|
529 |
msgstr "Мета-теги для всего веб-сайта (Глобальные)"
|
530 |
|
531 |
+
#: inc/php/settings.php:189
|
532 |
msgid ""
|
533 |
"You can use the options below to add meta tags such as Author, Copyright and "
|
534 |
"Keywords in everywhere on your website."
|
536 |
"Вы можете использовать ниже-расположенные опции для добавления мета тегов "
|
537 |
"таких как Author, Copyright и Keywords на каждую страницу вашего вебсайта."
|
538 |
|
539 |
+
#: inc/php/settings.php:197
|
|
|
|
|
|
|
|
|
540 |
msgid "Designer"
|
541 |
msgstr "Дизайнер"
|
542 |
|
543 |
+
#: inc/php/settings.php:202
|
544 |
msgid "Contact"
|
545 |
msgstr "Контакты"
|
546 |
|
547 |
+
#: inc/php/settings.php:206
|
548 |
msgid "Copyright"
|
549 |
msgstr "Copyright"
|
550 |
|
551 |
+
#: inc/php/settings.php:210
|
552 |
msgid "Keyword(s)"
|
553 |
msgstr "Ключевые слова"
|
554 |
|
555 |
+
#: inc/php/settings.php:212
|
556 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
557 |
msgstr ""
|
558 |
"Введите, разделенный запятыми, список глобальных ключевых слов для вашего "
|
559 |
"веб-сайта."
|
560 |
|
561 |
+
#: inc/php/settings.php:221
|
562 |
msgid "WooCommerce & Google Shopping"
|
563 |
msgstr "WooCommerce и Google Shopping"
|
564 |
|
565 |
+
#: inc/php/settings.php:223
|
566 |
msgid ""
|
567 |
"This plugin automatically adds the necessary Google Shopping (Merchant "
|
568 |
"Center) structured data on all WooCommerce product pages on your website. "
|
574 |
"разметка для женской футболки которая продаётся за 16 долларов и 80 центов "
|
575 |
"США."
|
576 |
|
577 |
+
#: inc/php/settings.php:233
|
578 |
msgid ""
|
579 |
"Check these data generated on the pages of your website you can <a href="
|
580 |
"\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
|
601 |
msgid "http://www.arthurgareginyan.com"
|
602 |
msgstr "http://www.arthurgareginyan.com"
|
603 |
|
604 |
+
#~ msgid ""
|
605 |
+
#~ "To use, enter your custom Meta Tags, then click \"Save Changes\". It's "
|
606 |
+
#~ "that simple!"
|
607 |
+
#~ msgstr ""
|
608 |
+
#~ "Для использования, введите данные ваших Мета-Тегов, затем нажмите кнопку "
|
609 |
+
#~ "“Сохранить изменения”. Это так просто!"
|
610 |
+
|
611 |
+
#~ msgid ""
|
612 |
+
#~ "Enter an absolute URL to the Facebook profile of the publisher. </"
|
613 |
+
#~ "br>Example: https://www.facebook.com/arthur.gareginyan"
|
614 |
+
#~ msgstr ""
|
615 |
+
#~ "Введите полный URL к профилю в Facebook. <br>Пример: https://www.facebook."
|
616 |
+
#~ "com/arthur.gareginyan"
|
617 |
+
|
618 |
+
#~ msgid ""
|
619 |
+
#~ "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
620 |
+
#~ "Gareginyan</a>"
|
621 |
+
#~ msgstr ""
|
622 |
+
#~ "от <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Артур "
|
623 |
+
#~ "Гарегинян</a>"
|
624 |
+
|
625 |
+
#~ msgid "Using"
|
626 |
+
#~ msgstr "Как пользоваться"
|
627 |
+
|
628 |
#~ msgid "Advertisement"
|
629 |
#~ msgstr "Реклама"
|
630 |
|
648 |
#~ "от <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Артур "
|
649 |
#~ "\"Berserkr\" Гарегинян</a>"
|
650 |
|
|
|
|
|
|
|
|
|
|
|
651 |
#~ msgid ""
|
652 |
#~ "If you like this plugin and find it useful, help me to make this plugin "
|
653 |
#~ "even better and keep it up-to-date."
|
languages/all-meta-tags.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -14,286 +14,474 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-WPHeader: all-meta-tags.php\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
-
"
|
19 |
-
"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#:
|
24 |
msgid "Settings"
|
25 |
msgstr ""
|
26 |
|
|
|
|
|
|
|
|
|
27 |
#. Plugin Name of the plugin/theme
|
28 |
-
#:
|
29 |
msgid "All Meta Tags"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid ""
|
34 |
-
"
|
35 |
-
"Gareginyan</a>"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: inc/php/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: inc/php/
|
43 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: inc/php/
|
47 |
-
msgid "
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
msgid ""
|
52 |
-
"
|
53 |
-
"
|
|
|
|
|
|
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: inc/php/
|
57 |
-
msgid "
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: inc/php/
|
61 |
-
msgid "
|
|
|
|
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: inc/php/
|
65 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: inc/php/
|
69 |
msgid ""
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
msgid "Thanks for your support!"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
msgid "Web Master Tools"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: inc/php/
|
84 |
msgid ""
|
85 |
-
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
86 |
-
"
|
87 |
-
"
|
88 |
-
"your domain is already verified, you can just forget about these."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: inc/php/
|
92 |
msgid ""
|
93 |
-
"Enter your meta key “content” value from your verification code to verify "
|
94 |
-
"
|
95 |
-
"content=“<b>1234567890</b>” />"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: inc/php/
|
99 |
msgid ""
|
100 |
-
"Enter your meta key “content” value from your verification code to verify "
|
101 |
-
"
|
102 |
-
"content=“<b>1234567890</b>” />"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: inc/php/
|
106 |
msgid ""
|
107 |
-
"Enter your meta key “content” value from your verification code to verify "
|
108 |
-
"
|
109 |
-
"content=“<b>1234567890</b>” />"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: inc/php/
|
113 |
-
#: inc/php/
|
114 |
-
#: inc/php/settings_page.php:242
|
115 |
msgid "Save Changes"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: inc/php/
|
119 |
msgid "Domain Verification"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: inc/php/
|
123 |
msgid ""
|
124 |
-
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
125 |
-
"
|
126 |
-
"
|
127 |
-
"options below to verify your domain. If your domain is already verified, "
|
128 |
"you can just forget about these."
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: inc/php/
|
132 |
msgid ""
|
133 |
-
"Enter your meta key “content” value from your verification code to verify "
|
134 |
-
"
|
135 |
-
"content=“<b>1234567890</b>” />"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: inc/php/
|
139 |
msgid ""
|
140 |
-
"Enter an absolute URL to the Google+ profile of the publisher.
|
141 |
-
"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: inc/php/
|
145 |
msgid ""
|
146 |
-
"Enter an absolute URL to the Facebook profile of the publisher.
|
147 |
-
"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: inc/php/
|
151 |
-
msgid ""
|
152 |
-
"Enter the Twitter username of the publisher. </br>Example: @AGareginyan"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid ""
|
157 |
-
"Enter your meta key “content” value from your verification code to verify "
|
158 |
-
"
|
159 |
-
"content=“<b>1234567890</b>” />"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: inc/php/
|
163 |
msgid ""
|
164 |
-
"Enter your meta key “content” value from your verification code to verify "
|
165 |
-
"
|
166 |
-
"\" content=“<b>1234567890</b>” />"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: inc/php/
|
170 |
msgid ""
|
171 |
-
"Enter your meta key “content” value from your verification code to verify "
|
172 |
-
"
|
173 |
-
"content=“<b>1234567890</b>” />"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid ""
|
178 |
-
"Enter your meta key “content” value from your verification code to verify "
|
179 |
-
"
|
180 |
-
"\" content=“<b>1234567890</b>” />"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc/php/
|
184 |
msgid "Custom Meta Tags"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: inc/php/
|
188 |
msgid ""
|
189 |
-
"If you can't find a field to enter your required meta tag then you can add "
|
190 |
-
"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/
|
194 |
msgid "Meta Tags for Static Home Page only"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/
|
198 |
msgid ""
|
199 |
-
"You can use the options below to add meta tags such as Description and "
|
200 |
-
"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: inc/php/
|
204 |
msgid "Home Description"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: inc/php/
|
208 |
msgid ""
|
209 |
-
"Enter a short description of your website (150-250 characters). Most search "
|
210 |
-
"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/
|
214 |
msgid "Home Keyword(s)"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/php/
|
218 |
-
msgid ""
|
219 |
-
"Enter a comma-delimited list of keywords for only Static Home Page of your "
|
220 |
-
"website."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: inc/php/
|
224 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: inc/php/
|
228 |
msgid ""
|
229 |
-
"You can use the options below to add meta tags such as Description and "
|
230 |
-
"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/php/
|
234 |
msgid "Blog Description"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/php/
|
238 |
msgid "Blog Keyword(s)"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: inc/php/
|
242 |
-
msgid ""
|
243 |
-
"Enter a comma-delimited list of keywords for only Blog Page of your website."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: inc/php/
|
247 |
msgid "Meta Tags for all website (Global)"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: inc/php/
|
251 |
msgid ""
|
252 |
-
"You can use the options below to add meta tags such as Author, Copyright "
|
253 |
-
"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: inc/php/
|
257 |
-
msgid "Author"
|
258 |
-
msgstr ""
|
259 |
-
|
260 |
-
#: inc/php/settings_page.php:223
|
261 |
msgid "Designer"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: inc/php/
|
265 |
msgid "Contact"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/php/
|
269 |
msgid "Copyright"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/php/
|
273 |
msgid "Keyword(s)"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/php/
|
277 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: inc/php/
|
281 |
msgid "WooCommerce & Google Shopping"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc/php/
|
285 |
msgid ""
|
286 |
-
"This plugin automatically adds the necessary Google Shopping (Merchant "
|
287 |
-
"
|
288 |
-
"
|
289 |
-
"cents of US."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/php/
|
293 |
msgid ""
|
294 |
-
"Check these data generated on the pages of your website you can <a href
|
295 |
-
"
|
296 |
-
"\">here</a>."
|
297 |
msgstr ""
|
298 |
|
299 |
#. Plugin URI of the plugin/theme
|
@@ -301,8 +489,7 @@ msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
|
301 |
msgstr ""
|
302 |
|
303 |
#. Description of the plugin/theme
|
304 |
-
msgid ""
|
305 |
-
"Easily and safely add your custom Meta Tags to WordPress website's header."
|
306 |
msgstr ""
|
307 |
|
308 |
#. Author of the plugin/theme
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2017-05-07 13:22+0300\n"
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-WPHeader: all-meta-tags.php\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;"
|
18 |
+
"esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;"
|
19 |
+
"__ngettext_noop:1,2\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: inc/php/core.php:31 inc/php/page.php:40
|
24 |
msgid "Settings"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: inc/php/core.php:47
|
28 |
+
msgid "Donate"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
#. Plugin Name of the plugin/theme
|
32 |
+
#: inc/php/core.php:62 inc/php/page.php:25
|
33 |
msgid "All Meta Tags"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: inc/php/messages.php:30
|
37 |
+
msgid "Hello. I'm Arthur, the author of this plugin."
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: inc/php/messages.php:32
|
41 |
+
#, php-format
|
42 |
+
msgid "Thank you for installing my plugin! I hope you will love it %s"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: inc/php/messages.php:67
|
46 |
+
msgid "You have installed an old version of this plugin."
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: inc/php/messages.php:68
|
50 |
+
msgid "Please update the plugin to the latest version, and all will be fine."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: inc/php/page.php:28
|
54 |
+
#, php-format
|
55 |
+
msgid "by %s Arthur Gareginyan %s"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: inc/php/page.php:41 inc/php/page.php:61
|
59 |
+
msgid "Usage"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: inc/php/page.php:42
|
63 |
+
msgid "F.A.Q."
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: inc/php/page.php:43 inc/php/page.php:175 inc/php/settings.php:192
|
67 |
+
msgid "Author"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: inc/php/page.php:44 inc/php/page.php:184 inc/php/settings.php:28 inc/php/settings.php:238
|
71 |
+
msgid "Support"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: inc/php/page.php:45
|
75 |
+
msgid "Family"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: inc/php/page.php:63
|
79 |
+
msgid "To add the meta tags to your website, simply follow these steps:"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: inc/php/page.php:65
|
83 |
+
msgid "Go to the \"Settings\" tab."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: inc/php/page.php:66
|
87 |
msgid ""
|
88 |
+
"Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: inc/php/page.php:67
|
92 |
+
msgid "Enjoy the improved SEO of your website."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: inc/php/page.php:67
|
96 |
+
msgid "It's that simple!"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: inc/php/page.php:69
|
100 |
+
msgid "Note!"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: inc/php/page.php:69
|
104 |
+
msgid "If you want more options then tell me and I will be happy to add it."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: inc/php/page.php:78
|
108 |
+
msgid "Frequently Asked Questions"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: inc/php/page.php:100
|
112 |
+
msgid "Will this plugin work on my WordPress.COM website?"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: inc/php/page.php:101
|
116 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: inc/php/page.php:103
|
120 |
+
msgid "Can I use this plugin on my language?"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: inc/php/page.php:105
|
124 |
+
#, php-format
|
125 |
msgid ""
|
126 |
+
"Yes. But If your language is not available then you can make one. This plugin is ready for "
|
127 |
+
"translation. The<code>.pot</code>file is included and placed in the <code>languages</code> folder. "
|
128 |
+
"Many of plugin users would be delighted if you shared your translation with the community. Just "
|
129 |
+
"send the translation files (<code>*.po, *.mo</code>) to me at the %s and I will include the "
|
130 |
+
"translation within the next plugin update."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: inc/php/page.php:110
|
134 |
+
msgid "How does it work?"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: inc/php/page.php:111
|
138 |
+
msgid ""
|
139 |
+
"On the \"Settings\" tab, fill in the required fields, select the desired settings and click the "
|
140 |
+
"\"Save Changes\" button. Enjoy the improved SEO of your website. It's that simple!"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: inc/php/page.php:113
|
144 |
+
msgid "How much of description I can enter in the text field?"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: inc/php/page.php:114
|
148 |
+
msgid ""
|
149 |
+
"I don't limit the number of characters, but most search engines use a maximum of 160 chars for the "
|
150 |
+
"home description."
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: inc/php/page.php:116
|
154 |
+
msgid "How much of keywords I can enter in the text field?"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: inc/php/page.php:117
|
158 |
+
msgid "I don't limit the number of characters."
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: inc/php/page.php:119
|
162 |
+
msgid "I can't get verify my website. What am I doing wrong?"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: inc/php/page.php:120
|
166 |
+
msgid ""
|
167 |
+
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you "
|
168 |
+
"is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) "
|
169 |
+
"and not the whole tag (<code><meta name=\"google-site-verification\" content=“1234567890” /></"
|
170 |
+
"code>). So just paste that into the relevant field and you will see “Success” message appear within "
|
171 |
+
"a few seconds."
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: inc/php/page.php:122
|
175 |
+
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: inc/php/page.php:123
|
179 |
msgid ""
|
180 |
+
"To make these plugins compatible you need to stick to one simple rule: do not fill the same field "
|
181 |
+
"in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate "
|
182 |
+
"actions, for example:"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: inc/php/page.php:131
|
186 |
+
msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: inc/php/page.php:133
|
190 |
+
msgid "Does this plugin requires any modification of the theme?"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: inc/php/page.php:134
|
194 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: inc/php/page.php:136
|
198 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: inc/php/page.php:137
|
202 |
+
msgid ""
|
203 |
+
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-"
|
204 |
+
"use plugin settings page."
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: inc/php/page.php:139
|
208 |
+
msgid "It's not working. What could be wrong?"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: inc/php/page.php:140
|
212 |
+
msgid ""
|
213 |
+
"As with every plugin, it's possible that things don't work. The most common reason for this is a "
|
214 |
+
"web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
|
215 |
+
"etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your "
|
216 |
+
"browser's cache may solve the problem."
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: inc/php/page.php:141
|
220 |
+
msgid ""
|
221 |
+
"It's impossible to tell what could be wrong exactly, but if you post a support request in the "
|
222 |
+
"plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
|
223 |
+
"include as much information as possible, including a link to your website where the problem can be "
|
224 |
+
"seen."
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: inc/php/page.php:143
|
228 |
+
msgid "Where to report bug if found?"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: inc/php/page.php:145
|
232 |
+
#, php-format
|
233 |
+
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: inc/php/page.php:151
|
237 |
+
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: inc/php/page.php:153
|
241 |
+
#, php-format
|
242 |
+
msgid ""
|
243 |
+
"Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. "
|
244 |
+
"Thank you!"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: inc/php/page.php:159
|
248 |
+
msgid "I love this plugin! Can I help somehow?"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: inc/php/page.php:161
|
252 |
+
#, php-format
|
253 |
+
msgid ""
|
254 |
+
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
|
255 |
+
"button, and thank you!"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: inc/php/settings.php:21
|
259 |
+
msgid "About"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: inc/php/settings.php:23
|
263 |
+
msgid "This plugin allows you to easily add Meta Tags to your website."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: inc/php/settings.php:30 inc/php/settings.php:240
|
267 |
+
msgid ""
|
268 |
+
"I'm an independent developer, without a regular income, so every little contribution helps cover my "
|
269 |
+
"costs and lets me spend more time building things for people like you to enjoy."
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: inc/php/settings.php:31 inc/php/settings.php:241
|
273 |
+
msgid "Donate with PayPal"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: inc/php/settings.php:32 inc/php/settings.php:242
|
277 |
msgid "Thanks for your support!"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: inc/php/settings.php:37
|
281 |
+
msgid "Help"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: inc/php/settings.php:39
|
285 |
+
msgid "Got something to say? Need help?"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: inc/php/settings.php:62
|
289 |
msgid "Web Master Tools"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: inc/php/settings.php:64
|
293 |
msgid ""
|
294 |
+
"Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner "
|
295 |
+
"of your blog or store before they provide their services to you. You can use the options below to "
|
296 |
+
"verify your domain. If your domain is already verified, you can just forget about these."
|
|
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: inc/php/settings.php:69
|
300 |
msgid ""
|
301 |
+
"Enter your meta key “content” value from your verification code to verify your website. "
|
302 |
+
"<br>Example: <meta name=\"google-site-verification\" content=“<b>1234567890</b>” />"
|
|
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc/php/settings.php:74
|
306 |
msgid ""
|
307 |
+
"Enter your meta key “content” value from your verification code to verify your website. "
|
308 |
+
"<br>Example: <meta name=\"msvalidate.01\" content=“<b>1234567890</b>” />"
|
|
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: inc/php/settings.php:79
|
312 |
msgid ""
|
313 |
+
"Enter your meta key “content” value from your verification code to verify your website. "
|
314 |
+
"<br>Example: <meta name=\"yandex-verification\" content=“<b>1234567890</b>” />"
|
|
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: inc/php/settings.php:82 inc/php/settings.php:138 inc/php/settings.php:160 inc/php/settings.php:182
|
318 |
+
#: inc/php/settings.php:216
|
|
|
319 |
msgid "Save Changes"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/settings.php:87
|
323 |
msgid "Domain Verification"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/settings.php:89
|
327 |
msgid ""
|
328 |
+
"Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This "
|
329 |
+
"makes sure that you are the correct owner of your blog or store before they provide their services "
|
330 |
+
"to you. You can use the options below to verify your domain. If your domain is already verified, "
|
|
|
331 |
"you can just forget about these."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/settings.php:94
|
335 |
msgid ""
|
336 |
+
"Enter your meta key “content” value from your verification code to verify your website. "
|
337 |
+
"<br>Example: <meta name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
|
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: inc/php/settings.php:99
|
341 |
msgid ""
|
342 |
+
"Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
|
343 |
+
"+ArthurGareginyan/"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: inc/php/settings.php:104
|
347 |
msgid ""
|
348 |
+
"Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook."
|
349 |
+
"com/arthur.gareginyan"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: inc/php/settings.php:109
|
353 |
+
msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
|
|
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: inc/php/settings.php:114
|
357 |
msgid ""
|
358 |
+
"Enter your meta key “content” value from your verification code to verify your website. "
|
359 |
+
"<br>Example: <meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” />"
|
|
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: inc/php/settings.php:119
|
363 |
msgid ""
|
364 |
+
"Enter your meta key “content” value from your verification code to verify your website. "
|
365 |
+
"<br>Example: <meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” />"
|
|
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: inc/php/settings.php:124
|
369 |
msgid ""
|
370 |
+
"Enter your meta key “content” value from your verification code to verify your website. "
|
371 |
+
"<br>Example: <meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
|
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: inc/php/settings.php:129
|
375 |
msgid ""
|
376 |
+
"Enter your meta key “content” value from your verification code to verify your website. "
|
377 |
+
"<br>Example: <meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
|
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: inc/php/settings.php:132
|
381 |
msgid "Custom Meta Tags"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/php/settings.php:134
|
385 |
msgid ""
|
386 |
+
"If you can't find a field to enter your required meta tag then you can add it here. In this field "
|
387 |
+
"you can add multiple meta tags."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: inc/php/settings.php:143
|
391 |
msgid "Meta Tags for Static Home Page only"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: inc/php/settings.php:145
|
395 |
msgid ""
|
396 |
+
"You can use the options below to add meta tags such as Description and Keywords only in Static Home "
|
397 |
+
"Page of your website."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: inc/php/settings.php:148
|
401 |
msgid "Home Description"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: inc/php/settings.php:150 inc/php/settings.php:172
|
405 |
msgid ""
|
406 |
+
"Enter a short description of your website (150-250 characters). Most search engines use a maximum "
|
407 |
+
"of 160 chars for the home description."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: inc/php/settings.php:154
|
411 |
msgid "Home Keyword(s)"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: inc/php/settings.php:156
|
415 |
+
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
|
|
|
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: inc/php/settings.php:165
|
419 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/php/settings.php:167
|
423 |
msgid ""
|
424 |
+
"You can use the options below to add meta tags such as Description and Keywords only in Default "
|
425 |
+
"Home Page and Blog Page of your website."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: inc/php/settings.php:170
|
429 |
msgid "Blog Description"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: inc/php/settings.php:176
|
433 |
msgid "Blog Keyword(s)"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: inc/php/settings.php:178
|
437 |
+
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
|
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: inc/php/settings.php:187
|
441 |
msgid "Meta Tags for all website (Global)"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: inc/php/settings.php:189
|
445 |
msgid ""
|
446 |
+
"You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere "
|
447 |
+
"on your website."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: inc/php/settings.php:197
|
|
|
|
|
|
|
|
|
451 |
msgid "Designer"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: inc/php/settings.php:202
|
455 |
msgid "Contact"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: inc/php/settings.php:206
|
459 |
msgid "Copyright"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: inc/php/settings.php:210
|
463 |
msgid "Keyword(s)"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: inc/php/settings.php:212
|
467 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: inc/php/settings.php:221
|
471 |
msgid "WooCommerce & Google Shopping"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: inc/php/settings.php:223
|
475 |
msgid ""
|
476 |
+
"This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on "
|
477 |
+
"all WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells "
|
478 |
+
"for 16 dollars and 80 cents of US."
|
|
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: inc/php/settings.php:233
|
482 |
msgid ""
|
483 |
+
"Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
|
484 |
+
"structured-data/testing-tool\" target=\"_blank\">here</a>."
|
|
|
485 |
msgstr ""
|
486 |
|
487 |
#. Plugin URI of the plugin/theme
|
489 |
msgstr ""
|
490 |
|
491 |
#. Description of the plugin/theme
|
492 |
+
msgid "Easily and safely add your custom Meta Tags to WordPress website's header."
|
|
|
493 |
msgstr ""
|
494 |
|
495 |
#. Author of the plugin/theme
|
LICENSE.txt → license.txt
RENAMED
@@ -671,4 +671,4 @@ into proprietary programs. If your program is a subroutine library, you
|
|
671 |
may consider it more useful to permit linking proprietary applications with
|
672 |
the library. If this is what you want to do, use the GNU Lesser General
|
673 |
Public License instead of this License. But first, please read
|
674 |
-
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
671 |
may consider it more useful to permit linking proprietary applications with
|
672 |
the library. If this is what you want to do, use the GNU Lesser General
|
673 |
Public License instead of this License. But first, please read
|
674 |
+
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
readme.txt
CHANGED
@@ -4,16 +4,17 @@ Tags: meta, tag,tags, custom, simple, plugin, twitter, facebook, g+, google, goo
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag:
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
Easily add your Meta Tags to the WordPress website's head section. This is a must have tool for authors and website owners.
|
|
|
12 |
|
13 |
== Description ==
|
14 |
-
An easy to use
|
15 |
|
16 |
-
No need anymore to editing a files of your theme or plugins in order to add meta tags. You can add they on plugins settings page. Just add your ID (the meta key "content" value from your verification code) or/and the URL to the social media profile of the publisher in the field on the plugin page and this plugin will do the rest for you. It adds required meta tags to the head section of your website automatically, without changing any of your themes file and without slowing down your website. It's really useful in case of any theme update, because your meta tags would never be lost! Your meta tags will keep on working, no matter how many times you upgrade or switch your theme and plugins.
|
17 |
|
18 |
Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use this plugin to easily verify your website or domain and get a more effective and efficient sharing results. Example with Pinterest. Once you completed the verification process, people will see a checkmark next to your domain in your Pinterest profile and in pinner search results. That check mark emphasis you have confirmed the ownership of your blog or website on Pinterest. This will help your website to rank better in google and other search engines. You can easily increase your blog traffic using this plugin. "All Meta Tags" is a simple but effective SEO plugin.
|
19 |
|
@@ -22,8 +23,16 @@ Also you can use this plugin to add required meta tags such as Author, Designer,
|
|
22 |
If you want more options then tell me and I will be happy to add it.
|
23 |
|
24 |
= Features =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
-
**
|
27 |
|
28 |
* Google+ publisher link
|
29 |
* Facebook publisher meta tag
|
@@ -44,7 +53,7 @@ If you want more options then tell me and I will be happy to add it.
|
|
44 |
* Meta tag with name="copyright"
|
45 |
* Meta tag with name="description" (Global, only for Static Home Page and only for Blog Page)
|
46 |
* Meta tag with name="keywords" (Global, only for Static Home Page and only for Blog Page)
|
47 |
-
*
|
48 |
|
49 |
**Coming soon:**
|
50 |
|
@@ -55,13 +64,13 @@ If you want more options then tell me and I will be happy to add it.
|
|
55 |
|
56 |
= Translation =
|
57 |
|
58 |
-
Please keep in mind that not all translations are up to date. You are welcome to contribute!
|
59 |
-
|
60 |
* English (default)
|
61 |
* Russian
|
62 |
* Spanish - Mexico (translation by Sergio Yeyo Troncoso)
|
63 |
* Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
|
64 |
* Italian (translation by Stefano Tombolini)
|
|
|
|
|
65 |
|
66 |
>**Contribution**
|
67 |
>
|
@@ -75,19 +84,19 @@ Please keep in mind that not all translations are up to date. You are welcome to
|
|
75 |
== Installation ==
|
76 |
Install "All Meta Tags" just as you would any other WordPress Plugin.
|
77 |
|
78 |
-
Automatically via WordPress:
|
79 |
|
80 |
-
1. Log into
|
81 |
-
2. Go to "`Plugins`"
|
82 |
3. Find this plugin and click install.
|
83 |
4. Activate this plugin through the "`Plugins`" tab.
|
84 |
|
85 |
-
|
86 |
|
87 |
1. Download a copy (ZIP file) of this plugin from WordPress.org.
|
88 |
2. Unzip the ZIP file.
|
89 |
3. Upload the unzipped catalog to your website's plugin directory (`/wp-content/plugins/`).
|
90 |
-
4. Log into
|
91 |
5. Activate this plugin through the "`Plugins`" tab.
|
92 |
|
93 |
After installation, a "`All Meta Tags`" menu item will appear in the "`Settings`" section. Click on this in order to view plugin's administration page.
|
@@ -97,14 +106,14 @@ After installation, a "`All Meta Tags`" menu item will appear in the "`Settings
|
|
97 |
|
98 |
== Frequently Asked Questions ==
|
99 |
= Q. Will this plugin work on my WordPress.COM website? =
|
100 |
-
A. Sorry, this plugin is available for use only on self-hosted (WordPress.
|
101 |
|
102 |
= Q. Can I use this plugin on my language? =
|
103 |
-
A. Yes. But If your language is not available then you can make one. This plugin is ready for translation. The `.pot` file is included and placed in "`languages`" folder. Many of plugin users would be delighted if you shared your translation with the community. Just send the translation files (`*.po, *.mo`) to me at the arthurgareginyan@gmail.com and I will include the translation within the next plugin update.
|
104 |
|
105 |
= Q. How does it work? =
|
106 |
-
A.
|
107 |
-
|
108 |
|
109 |
= Q. How much of description I can enter in the text field? =
|
110 |
A. I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description.
|
@@ -112,35 +121,40 @@ A. I don't limit the number of characters, but most search engines use a maximum
|
|
112 |
= Q. How much of keywords I can enter in the text field? =
|
113 |
A. I don't limit the number of characters.
|
114 |
|
115 |
-
= Q.
|
|
|
|
|
|
|
116 |
A. To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:
|
117 |
`<head>
|
118 |
...
|
119 |
-
<meta name="copyright" content="Copyright (c) 2013-
|
120 |
...
|
121 |
-
<meta name="copyright" content="Copyright
|
122 |
...
|
123 |
</head>`
|
124 |
|
125 |
In the rest, the "All Meta Tags" and "All in One SEO Pack" is compatible.
|
126 |
|
127 |
-
= Q. Does this plugin
|
128 |
-
A. Absolutely not. This plugin is
|
129 |
|
130 |
= Q. Does this require any knowledge of HTML or CSS? =
|
131 |
-
A. Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using
|
132 |
|
133 |
= Q. It's not working. What could be wrong? =
|
134 |
-
A. As with every plugin, it's possible that things don't work. The most common reason for this is
|
|
|
|
|
135 |
|
136 |
= Q. Where to report bug if found? =
|
137 |
-
A. Please visit [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags) and report.
|
138 |
|
139 |
= Q. Where to share any ideas or suggestions to make the plugin better? =
|
140 |
-
A. Please send me email [arthurgareginyan@gmail.com](mailto:arthurgareginyan@gmail.com).
|
141 |
|
142 |
= Q. I love this plugin! Can I help somehow? =
|
143 |
-
A. Yes, any financial contributions are welcome! Just visit my website
|
144 |
|
145 |
|
146 |
== Screenshots ==
|
@@ -155,45 +169,95 @@ A. Yes, any financial contributions are welcome! Just visit my website and click
|
|
155 |
|
156 |
This plugin is licensed under the [GNU General Public License, version 3 (GPLv3)](http://www.gnu.org/licenses/gpl-3.0.html) and is distributed free of charge.
|
157 |
Commercial licensing (e.g. for projects that can’t use an open-source license) is available upon request.
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
|
159 |
**Links**
|
160 |
|
161 |
* [Developer Website](http://www.arthurgareginyan.com)
|
162 |
* [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
|
|
|
163 |
|
164 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
= 3.8 =
|
166 |
* Fixed the error due to which the "Fatal error: Uncaught Error: Call to a member function attributes() on boolean" message showed when the product page has no image.
|
|
|
167 |
= 3.7 =
|
168 |
* Added Italian translation. (Thanks to Stefano Tombolini)
|
169 |
* Image of the donate button changed.
|
|
|
170 |
= 3.6 =
|
171 |
* Added option for SpecificFeeds verification code.
|
172 |
* Translations updated.
|
173 |
* Ad banner replaced with new.
|
174 |
* Readme for translations updated.
|
|
|
175 |
= 3.5 =
|
176 |
* Added Spanish translation. (Thanks [Ramiro Garcés](http://www.ramirogarces.com.ve/))
|
|
|
177 |
= 3.4 =
|
178 |
* Added Spanish-Mexico translation. (Thanks to Sergio Yeyo Troncoso)
|
179 |
* Russian translation updated.
|
180 |
* Added the Readme.txt file for translation contribution.
|
181 |
* Added global constant for plugin text-domain.
|
|
|
182 |
= 3.3 =
|
183 |
* Added an option for automatic adding the Google Shopping structured data on all WooCommerce product pages. (Thanks to Juliano Dias for the suggestion and help)
|
184 |
* Russian translation updated.
|
|
|
185 |
= 3.2 =
|
186 |
* Added field for custom meta tags. (Thanks to Juliano Dias for the suggestion)
|
187 |
* Ready for translation improved.
|
|
|
188 |
= 3.1 =
|
189 |
* Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
|
190 |
* Added constant for storing the plugin version number.
|
|
|
191 |
= 3.0 =
|
192 |
* The structure of files changed.
|
193 |
* Style sheet of settings page improved and better commented.
|
194 |
* Style sheet of settings page optimized for mobile devices.
|
195 |
* Added JavaScript file for settings page.
|
196 |
* Added JavaScript function of automatic remove the "successful" message after 3 seconds.
|
|
|
197 |
= 2.0.1 =
|
198 |
* POT file updated.
|
199 |
* Russian translation updated.
|
@@ -201,6 +265,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
201 |
* Advertisement replaced by new.
|
202 |
* Added the subject with plugin name to email address on settings page.
|
203 |
* Function "allmetatags_enqueue_scripts" renamed to "allmetatags_load_scripts".
|
|
|
204 |
= 2.0 =
|
205 |
* Some changes in design of settings page.
|
206 |
* Constants variables added.
|
@@ -213,37 +278,47 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
213 |
* Removed custom "Saved" message.
|
214 |
* .pot file updated.
|
215 |
* Russian translation updated.
|
|
|
216 |
= 1.5 =
|
217 |
* Authors URI changed.
|
218 |
* Localization improved.
|
219 |
* .pot file updated.
|
220 |
* Russian translation updated.
|
221 |
* thanks.png replaced.
|
|
|
222 |
= 1.4 =
|
223 |
-
* Removed more unused do_action() from
|
|
|
224 |
= 1.3 =
|
225 |
* Added new section with meta tags for Default Home Page and Blog Page.
|
226 |
* Home Page section renamed to Static Home Page.
|
|
|
227 |
= 1.2 =
|
228 |
* Added the option for "Web of Trust" (WOT) verification.
|
229 |
= 1.1 =
|
230 |
* Fixed the issue due to which error message is shown in the top of the website when the plugin for the first time installed.
|
|
|
231 |
= 1.0 =
|
232 |
* Initial release.
|
233 |
* Added ready for translation (.pot file included).
|
234 |
* Added Russian translation.
|
|
|
|
|
|
|
|
|
235 |
= 0.2 =
|
236 |
* Beta version.
|
|
|
237 |
= 0.1 =
|
238 |
* Alfa version.
|
239 |
|
240 |
|
241 |
== Upgrade Notice ==
|
|
|
|
|
242 |
= 3.0 =
|
243 |
Please update to new release!
|
244 |
= 2.0 =
|
245 |
Please update to new release!
|
246 |
= 1.0 =
|
247 |
Please update to first stable release!
|
248 |
-
= 0.2 =
|
249 |
-
Please update to beta version.
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 4.0
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
Easily add your Meta Tags to the WordPress website's head section. This is a must have tool for authors and website owners.
|
12 |
+
|
13 |
|
14 |
== Description ==
|
15 |
+
An easy to use, with intuitive interface WordPress plugin that gives you the ability to easily add your Meta Tags to the head section of your website.
|
16 |
|
17 |
+
No need anymore to editing a files of your theme or plugins in order to add meta tags. You can add they on plugins settings page. Just add your ID (the meta key "content" value from your verification code) or/and the URL to the social media profile of the publisher in the field on the plugin settings page and this plugin will do the rest for you. It adds required meta tags to the head section of your website automatically, without changing any of your themes file and without slowing down your website. It's really useful in case of any theme update, because your meta tags would never be lost! Your meta tags will keep on working, no matter how many times you upgrade or switch your theme and plugins.
|
18 |
|
19 |
Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use this plugin to easily verify your website or domain and get a more effective and efficient sharing results. Example with Pinterest. Once you completed the verification process, people will see a checkmark next to your domain in your Pinterest profile and in pinner search results. That check mark emphasis you have confirmed the ownership of your blog or website on Pinterest. This will help your website to rank better in google and other search engines. You can easily increase your blog traffic using this plugin. "All Meta Tags" is a simple but effective SEO plugin.
|
20 |
|
23 |
If you want more options then tell me and I will be happy to add it.
|
24 |
|
25 |
= Features =
|
26 |
+
|
27 |
+
* Lightweight and fast
|
28 |
+
* Secure code with using clear coding standards
|
29 |
+
* Intuitive interface with many settings
|
30 |
+
* Cross browser compatible (work smooth in any modern browser)
|
31 |
+
* Compatible with all WordPress themes
|
32 |
+
* RTL compatible (right to left)
|
33 |
+
* Translation ready
|
34 |
|
35 |
+
**Key features include...**
|
36 |
|
37 |
* Google+ publisher link
|
38 |
* Facebook publisher meta tag
|
53 |
* Meta tag with name="copyright"
|
54 |
* Meta tag with name="description" (Global, only for Static Home Page and only for Blog Page)
|
55 |
* Meta tag with name="keywords" (Global, only for Static Home Page and only for Blog Page)
|
56 |
+
* And much, much more!
|
57 |
|
58 |
**Coming soon:**
|
59 |
|
64 |
|
65 |
= Translation =
|
66 |
|
|
|
|
|
67 |
* English (default)
|
68 |
* Russian
|
69 |
* Spanish - Mexico (translation by Sergio Yeyo Troncoso)
|
70 |
* Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
|
71 |
* Italian (translation by Stefano Tombolini)
|
72 |
+
|
73 |
+
If you would like to add a translation to this plugin then please head to our [Translating WordPress](https://translate.wordpress.org/projects/wp-plugins/all-meta-tags) page.
|
74 |
|
75 |
>**Contribution**
|
76 |
>
|
84 |
== Installation ==
|
85 |
Install "All Meta Tags" just as you would any other WordPress Plugin.
|
86 |
|
87 |
+
Automatically via WordPress Admin area:
|
88 |
|
89 |
+
1. Log into Admin area of your WordPress website.
|
90 |
+
2. Go to "`Plugins`" -> "`Add New`".
|
91 |
3. Find this plugin and click install.
|
92 |
4. Activate this plugin through the "`Plugins`" tab.
|
93 |
|
94 |
+
Manually via FTP access:
|
95 |
|
96 |
1. Download a copy (ZIP file) of this plugin from WordPress.org.
|
97 |
2. Unzip the ZIP file.
|
98 |
3. Upload the unzipped catalog to your website's plugin directory (`/wp-content/plugins/`).
|
99 |
+
4. Log into Admin area of your WordPress website.
|
100 |
5. Activate this plugin through the "`Plugins`" tab.
|
101 |
|
102 |
After installation, a "`All Meta Tags`" menu item will appear in the "`Settings`" section. Click on this in order to view plugin's administration page.
|
106 |
|
107 |
== Frequently Asked Questions ==
|
108 |
= Q. Will this plugin work on my WordPress.COM website? =
|
109 |
+
A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
|
110 |
|
111 |
= Q. Can I use this plugin on my language? =
|
112 |
+
A. Yes. But If your language is not available then you can make one. This plugin is ready for translation. The `.pot` file is included and placed in the "`languages`" folder. Many of plugin users would be delighted if you shared your translation with the community. Just send the translation files (`*.po, *.mo`) to me at the arthurgareginyan@gmail.com and I will include the translation within the next plugin update.
|
113 |
|
114 |
= Q. How does it work? =
|
115 |
+
A. Simply go to the plugin settings page, fill in the required fields, select the desired settings and click the "Save Changes" button. Enjoy the improved SEO of your website. It's that simple!
|
116 |
+
You can find the plugin settings page at "`WP Admin Panel`" -> "`Settings`" -> "`All Meta Tags`".
|
117 |
|
118 |
= Q. How much of description I can enter in the text field? =
|
119 |
A. I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description.
|
121 |
= Q. How much of keywords I can enter in the text field? =
|
122 |
A. I don't limit the number of characters.
|
123 |
|
124 |
+
= Q. I can't get verify my website. What am I doing wrong? =
|
125 |
+
A. The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing as you only have to paste in the serial key number/letters (`1234567890`) and not the whole tag (`<meta name="google-site-verification" content=“1234567890” />`). So just paste that into the relevant field and you will see “Success” message appear within a few seconds.
|
126 |
+
|
127 |
+
= Q. What about compatibility with the "All in One SEO Pack" plugin ? =
|
128 |
A. To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:
|
129 |
`<head>
|
130 |
...
|
131 |
+
<meta name="copyright" content="Copyright (c) 2013-2017 Arthur Gareginyan. All Rights Reserved.">
|
132 |
...
|
133 |
+
<meta name="copyright" content="Copyright 2017 Arthur Gareginyan. All Rights Reserved.">
|
134 |
...
|
135 |
</head>`
|
136 |
|
137 |
In the rest, the "All Meta Tags" and "All in One SEO Pack" is compatible.
|
138 |
|
139 |
+
= Q. Does this plugin requires any modification of the theme? =
|
140 |
+
A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Panel of your WordPress website.
|
141 |
|
142 |
= Q. Does this require any knowledge of HTML or CSS? =
|
143 |
+
A. Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.
|
144 |
|
145 |
= Q. It's not working. What could be wrong? =
|
146 |
+
A. As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem.
|
147 |
+
|
148 |
+
It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.
|
149 |
|
150 |
= Q. Where to report bug if found? =
|
151 |
+
A. Please visit the [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags) and report.
|
152 |
|
153 |
= Q. Where to share any ideas or suggestions to make the plugin better? =
|
154 |
+
A. Any suggestions are very welcome! Please send me an email to [arthurgareginyan@gmail.com](mailto:arthurgareginyan@gmail.com). Thank you!
|
155 |
|
156 |
= Q. I love this plugin! Can I help somehow? =
|
157 |
+
A. Yes, any financial contributions are welcome! Just visit [my website](http://www.arthurgareginyan.com/donate.html), click on the donate button, and thank you!
|
158 |
|
159 |
|
160 |
== Screenshots ==
|
169 |
|
170 |
This plugin is licensed under the [GNU General Public License, version 3 (GPLv3)](http://www.gnu.org/licenses/gpl-3.0.html) and is distributed free of charge.
|
171 |
Commercial licensing (e.g. for projects that can’t use an open-source license) is available upon request.
|
172 |
+
|
173 |
+
**Credits**
|
174 |
+
|
175 |
+
* The icon of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
|
176 |
+
* The banner of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
|
177 |
+
* [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
|
178 |
|
179 |
**Links**
|
180 |
|
181 |
* [Developer Website](http://www.arthurgareginyan.com)
|
182 |
* [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
|
183 |
+
|
184 |
|
185 |
== Changelog ==
|
186 |
+
|
187 |
+
= 4.0 =
|
188 |
+
* The design of the plugin settings page is completely redone.
|
189 |
+
* Added additional donate link to the "Plugins" page.
|
190 |
+
* Advertisement banner removed.
|
191 |
+
* The 'Using' section renamed to 'Usage'.
|
192 |
+
* My Unicode signature added to the main file.
|
193 |
+
* The donate button replaced with new.
|
194 |
+
* The 'Donate' section renamed to 'Support'.
|
195 |
+
* The 'donate.png' image removed.
|
196 |
+
* Options from the settings page moved to a separate file.
|
197 |
+
* The "Usage" section removed from the sidebar area.
|
198 |
+
* Added stylized descriptions of sections on the "Settings" tab.
|
199 |
+
* Additional "Support" section added.
|
200 |
+
* Added tab navigation menu for the settings page.
|
201 |
+
* Added additional tabs on the settings page.
|
202 |
+
* Code of the 'admin.css' file improved and better commented.
|
203 |
+
* A full version of the Bootstrap framework is integrated.
|
204 |
+
* The 'allmetatags_load_scripts' function renamed to 'allmetatags_load_scripts_admin'.
|
205 |
+
* Added the CSS code for the custom list numbers on the plugin settings page.
|
206 |
+
* The main font is changed to "Verdana".
|
207 |
+
* All PHP and HTML code is better formatted.
|
208 |
+
* The header on the settings page of plugin is redesigned.
|
209 |
+
* The "LICENSE.txt" file renamed to "license.txt".
|
210 |
+
* The "humans.txt" file added.
|
211 |
+
* On the plugin settings page, the "valign='top'" attribute removed from the "tr" element of HTML table and added the appropriate analog in CSS .
|
212 |
+
* The "_service_info" setting added to the data-base.
|
213 |
+
* Added function for managing information about the version number of the plugin.
|
214 |
+
* Added the "Hello" message that show when the plugin is just installed.
|
215 |
+
* Added the "Error" message that show when user is trying to degrade the version number of the plugin.
|
216 |
+
* Fixed the parameter that contain the path to source files in all translation files.
|
217 |
+
* The POT file updated.
|
218 |
+
* Translations updated.
|
219 |
+
|
220 |
= 3.8 =
|
221 |
* Fixed the error due to which the "Fatal error: Uncaught Error: Call to a member function attributes() on boolean" message showed when the product page has no image.
|
222 |
+
|
223 |
= 3.7 =
|
224 |
* Added Italian translation. (Thanks to Stefano Tombolini)
|
225 |
* Image of the donate button changed.
|
226 |
+
|
227 |
= 3.6 =
|
228 |
* Added option for SpecificFeeds verification code.
|
229 |
* Translations updated.
|
230 |
* Ad banner replaced with new.
|
231 |
* Readme for translations updated.
|
232 |
+
|
233 |
= 3.5 =
|
234 |
* Added Spanish translation. (Thanks [Ramiro Garcés](http://www.ramirogarces.com.ve/))
|
235 |
+
|
236 |
= 3.4 =
|
237 |
* Added Spanish-Mexico translation. (Thanks to Sergio Yeyo Troncoso)
|
238 |
* Russian translation updated.
|
239 |
* Added the Readme.txt file for translation contribution.
|
240 |
* Added global constant for plugin text-domain.
|
241 |
+
|
242 |
= 3.3 =
|
243 |
* Added an option for automatic adding the Google Shopping structured data on all WooCommerce product pages. (Thanks to Juliano Dias for the suggestion and help)
|
244 |
* Russian translation updated.
|
245 |
+
|
246 |
= 3.2 =
|
247 |
* Added field for custom meta tags. (Thanks to Juliano Dias for the suggestion)
|
248 |
* Ready for translation improved.
|
249 |
+
|
250 |
= 3.1 =
|
251 |
* Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
|
252 |
* Added constant for storing the plugin version number.
|
253 |
+
|
254 |
= 3.0 =
|
255 |
* The structure of files changed.
|
256 |
* Style sheet of settings page improved and better commented.
|
257 |
* Style sheet of settings page optimized for mobile devices.
|
258 |
* Added JavaScript file for settings page.
|
259 |
* Added JavaScript function of automatic remove the "successful" message after 3 seconds.
|
260 |
+
|
261 |
= 2.0.1 =
|
262 |
* POT file updated.
|
263 |
* Russian translation updated.
|
265 |
* Advertisement replaced by new.
|
266 |
* Added the subject with plugin name to email address on settings page.
|
267 |
* Function "allmetatags_enqueue_scripts" renamed to "allmetatags_load_scripts".
|
268 |
+
|
269 |
= 2.0 =
|
270 |
* Some changes in design of settings page.
|
271 |
* Constants variables added.
|
278 |
* Removed custom "Saved" message.
|
279 |
* .pot file updated.
|
280 |
* Russian translation updated.
|
281 |
+
|
282 |
= 1.5 =
|
283 |
* Authors URI changed.
|
284 |
* Localization improved.
|
285 |
* .pot file updated.
|
286 |
* Russian translation updated.
|
287 |
* thanks.png replaced.
|
288 |
+
|
289 |
= 1.4 =
|
290 |
+
* Removed more unused do_action() from page.php file.
|
291 |
+
|
292 |
= 1.3 =
|
293 |
* Added new section with meta tags for Default Home Page and Blog Page.
|
294 |
* Home Page section renamed to Static Home Page.
|
295 |
+
|
296 |
= 1.2 =
|
297 |
* Added the option for "Web of Trust" (WOT) verification.
|
298 |
= 1.1 =
|
299 |
* Fixed the issue due to which error message is shown in the top of the website when the plugin for the first time installed.
|
300 |
+
|
301 |
= 1.0 =
|
302 |
* Initial release.
|
303 |
* Added ready for translation (.pot file included).
|
304 |
* Added Russian translation.
|
305 |
+
|
306 |
+
= 0.3 =
|
307 |
+
* Release candidate.
|
308 |
+
|
309 |
= 0.2 =
|
310 |
* Beta version.
|
311 |
+
|
312 |
= 0.1 =
|
313 |
* Alfa version.
|
314 |
|
315 |
|
316 |
== Upgrade Notice ==
|
317 |
+
= 4.0 =
|
318 |
+
Please update to new release!
|
319 |
= 3.0 =
|
320 |
Please update to new release!
|
321 |
= 2.0 =
|
322 |
Please update to new release!
|
323 |
= 1.0 =
|
324 |
Please update to first stable release!
|
|
|
|