Easy Modal - Version 2.0.13

Version Description

Download this release

Release Info

Developer danieliser
Plugin Icon 128x128 Easy Modal
Version 2.0.13
Comparing to
See all releases

Code changes from version 2.0.12 to 2.0.13

assets/images/addons/advanced-theme-editor.jpg ADDED
Binary file
assets/images/addons/age-verification.jpg ADDED
Binary file
assets/images/addons/auto-open.jpg ADDED
Binary file
assets/images/addons/exit-modals.jpg ADDED
Binary file
assets/images/addons/force-user-action.jpg ADDED
Binary file
assets/images/addons/login-modals.jpg ADDED
Binary file
assets/images/addons/premium-support.jpg ADDED
Binary file
assets/images/addons/pro-bundle.jpg ADDED
Binary file
assets/images/addons/pro-developer.jpg ADDED
Binary file
assets/images/addons/scroll-pops.jpg ADDED
Binary file
assets/images/addons/unlimited-themes.jpg ADDED
Binary file
classes/admin.php CHANGED
@@ -29,8 +29,9 @@
29
  add_filter('plugin_action_links', array($this, 'action_links'), 10, 2);
30
 
31
  add_action("init", array($this, 'update_transient_plugin_slugs'));
32
- add_filter ('pre_set_site_transient_update_plugins', array(&$this, 'transient_update_plugins'));
33
- add_filter ('pre_set_transient_update_plugins', array(&$this, 'transient_update_plugins'));
 
34
 
35
  add_action('admin_init', array($this, 'reset_emodal_db'));
36
 
@@ -46,17 +47,20 @@
46
  }
47
  public function transient_update_plugins($transient)
48
  {
49
- //emodal_debug($transient);
50
- foreach(EModal_License::available_addons() as $addon)
51
- {
52
- $obj = new stdClass();
53
- $obj->slug = $addon->slug .'.php';
54
- $obj->new_version = $addon->version;
55
- $obj->url = $addon->homepage;
56
- $obj->package = !empty($addon->download_url) ? $addon->download_url : null;
57
- $transient->checked[$addon->slug.'/'.$addon->slug.'.php'] = $addon->version;
58
- if(version_compare($transient->checked[$addon->slug.'/'.$addon->slug.'.php'], $addon->version) == -1)
59
- $transient->response[$addon->slug.'/'.$addon->slug.'.php'] = $obj;
 
 
 
60
  }
61
  return $transient;
62
  }
@@ -66,14 +70,18 @@
66
  if($transient)
67
  {
68
  $save = false;
69
- foreach(EModal_License::available_addons() as $addon)
70
- {
71
- if(!in_array($addon->slug.'/'.$addon->slug.'.php', $transient))
72
- {
73
- $transient[] = $addon->slug.'/'.$addon->slug.'.php';
74
- $save = true;
75
- }
76
- }
 
 
 
 
77
  if($save)
78
  {
79
  update_option('_transient_plugin_slugs', $transient);
29
  add_filter('plugin_action_links', array($this, 'action_links'), 10, 2);
30
 
31
  add_action("init", array($this, 'update_transient_plugin_slugs'));
32
+
33
+ //add_filter ('pre_set_site_transient_update_plugins', array(&$this, 'transient_update_plugins'));
34
+ //add_filter ('pre_set_transient_update_plugins', array(&$this, 'transient_update_plugins'));
35
 
36
  add_action('admin_init', array($this, 'reset_emodal_db'));
37
 
47
  }
48
  public function transient_update_plugins($transient)
49
  {
50
+ $addons = EModal_License::available_addons();
51
+ if(!empty($addons))
52
+ {
53
+ foreach($addons as $addon)
54
+ {
55
+ $obj = new stdClass();
56
+ $obj->slug = $addon->slug .'.php';
57
+ $obj->new_version = !empty($addon->version) ? $addon->version : $addon->new_version;
58
+ $obj->url = $addon->homepage;
59
+ $obj->package = !empty($addon->download_url) ? $addon->download_url : null;
60
+ $transient->checked[$addon->slug.'/'.$addon->slug.'.php'] = $obj->new_version;
61
+ if(version_compare($transient->checked[$addon->slug.'/'.$addon->slug.'.php'], $obj->new_version) == -1)
62
+ $transient->response[$addon->slug.'/'.$addon->slug.'.php'] = $obj;
63
+ }
64
  }
65
  return $transient;
66
  }
70
  if($transient)
71
  {
72
  $save = false;
73
+ $addons = EModal_License::available_addons();
74
+ if(!empty($addons))
75
+ {
76
+ foreach($addons as $addon)
77
+ {
78
+ if(!in_array($addon->slug.'/'.$addon->slug.'.php', $transient))
79
+ {
80
+ $transient[] = $addon->slug.'/'.$addon->slug.'.php';
81
+ $save = true;
82
+ }
83
+ }
84
+ }
85
  if($save)
86
  {
87
  update_option('_transient_plugin_slugs', $transient);
classes/license.php CHANGED
@@ -19,12 +19,10 @@
19
 
20
  public static function available_addons()
21
  {
22
- if(!$addons = get_transient(EMCORE_SLUG.'-addon-list'))
23
  {
24
-
25
  $access_key = trim( emodal_get_license('key') );
26
 
27
-
28
  // data to send in our API request
29
  $api_params = array(
30
  'edd_action'=> 'addon_list',
@@ -33,19 +31,17 @@
33
  );
34
  // Call the custom API.
35
  $response = wp_remote_get( add_query_arg( $api_params, EMCORE_API_URL ), array( 'timeout' => 15, 'sslverify' => false ) );
36
-
37
  // make sure the response came back okay
38
  if ( is_wp_error( $response ) )
39
- return false;
40
-
41
- return json_decode( wp_remote_retrieve_body( $response ) );
42
 
43
- global $EModal_License;
44
- $addons = $EModal_License->api_request('addon_list');
45
- set_transient(EMCORE_SLUG.'-addon-list', $addons, 12 * HOUR_IN_SECONDS);
46
  }
47
  return $addons;
48
  }
 
49
  public function check_license($new_license = false, $force_check = false)
50
  {
51
  $license = emodal_get_license();
19
 
20
  public static function available_addons()
21
  {
22
+ if(($addons = get_site_transient(EMCORE_SLUG.'-addon-list')) === false)
23
  {
 
24
  $access_key = trim( emodal_get_license('key') );
25
 
 
26
  // data to send in our API request
27
  $api_params = array(
28
  'edd_action'=> 'addon_list',
31
  );
32
  // Call the custom API.
33
  $response = wp_remote_get( add_query_arg( $api_params, EMCORE_API_URL ), array( 'timeout' => 15, 'sslverify' => false ) );
34
+
35
  // make sure the response came back okay
36
  if ( is_wp_error( $response ) )
37
+ return array();
 
 
38
 
39
+ $addons = json_decode( wp_remote_retrieve_body( $response ) );
40
+ set_site_transient(EMCORE_SLUG.'-addon-list', $addons, 86400);
 
41
  }
42
  return $addons;
43
  }
44
+
45
  public function check_license($new_license = false, $force_check = false)
46
  {
47
  $license = emodal_get_license();
classes/view/admin/addons.php CHANGED
@@ -41,63 +41,67 @@
41
  $installed_plugin["deactivation_url"] = !$is_active ? "" : wp_nonce_url($installerUrl, 'deactivate-plugin_' . $key);
42
  $installed_plugins[$key] = $installed_plugin;
43
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
 
45
- foreach($addons as $addon) :?>
46
- <li class="available-addon-inner">
47
- <h3><?php esc_html_e($addon->name)?></h3>
48
- <img class="addon-thumbnail" src="<?php esc_attr_e($addon->image)?>">
49
- <p><?php esc_html_e($addon->excerpt)?></p>
50
- <hr/><?php
51
- if(!empty($addon->download_link) && !isset($installed_plugins[$addon->slug.'/'.$addon->slug.'.php']))
52
- {
53
- $installerUrl = add_query_arg(
54
- array(
55
- 'action' => 'install-plugin',
56
- 'plugin' => $addon->slug,
57
- 'edd_sample_plugin' => 1
58
- ),
59
- network_admin_url('update.php')
60
- //admin_url('update.php')
61
- );
62
- $installerUrl = wp_nonce_url($installerUrl, 'install-plugin_' . $addon->slug)?>
63
- <span class="action-links"><?php
64
- printf(
65
- '<a class="button install" href="%s">%s</a>',
66
- esc_attr($installerUrl),
67
- __('Install')
68
- );?>
69
- </span><?php
70
- }
71
- elseif(isset($installed_plugins[$addon->slug.'/'.$addon->slug.'.php']['is_active']))
72
- {?>
73
- <span class="action-links"><?php
74
- if(!$installed_plugins[$addon->slug.'/'.$addon->slug.'.php']['is_active'])
75
- {
76
- printf(
77
- '<a class="button install" href="%s">%s</a>',
78
- esc_attr($installed_plugins[$addon->slug.'/'.$addon->slug.'.php']["activation_url"]),
79
- __('Activate')
80
- );
81
-
82
- }
83
- else
84
- {
85
- printf(
86
- '<a class="button install" href="%s">%s</a>',
87
- esc_attr($installed_plugins[$addon->slug.'/'.$addon->slug.'.php']["deactivation_url"]),
88
- __('Deactivate')
89
- );
90
- }?>
91
- </span><?php
92
- }
93
- else
94
- {
95
- ?><span class="action-links"><a class="button" target="_blank" href="<?php esc_attr_e($addon->homepage);?>"><?php _e('Get It Now');?></a></span><?php
96
- }?>
97
- <a href="<?php echo esc_url($addon->homepage);?>" target="_blank"><?php _e('View the entire Add On Specs');?></a>
98
- </li>
99
- <?php endforeach;?>
100
- </ul>
101
  </div>
102
  </div>
103
  <br class="clear"/>
41
  $installed_plugin["deactivation_url"] = !$is_active ? "" : wp_nonce_url($installerUrl, 'deactivate-plugin_' . $key);
42
  $installed_plugins[$key] = $installed_plugin;
43
  }
44
+ $existing_addon_images = apply_filters('emodal_existing_addon_images', array());
45
+ if(!empty($addons))
46
+ {
47
+ foreach($addons as $addon) :?>
48
+ <li class="available-addon-inner">
49
+ <h3><?php esc_html_e($addon->name)?></h3>
50
+ <?php $image = in_array($addon->slug, $existing_addon_images) ? EMCORE_URL .'/assets/images/addons/' . $addon->slug .'.jpg' : $addon->image;?>
51
+ <img class="addon-thumbnail" src="<?php esc_attr_e($image)?>">
52
+ <p><?php esc_html_e($addon->excerpt)?></p>
53
+ <hr/><?php
54
+ if(!empty($addon->download_link) && !isset($installed_plugins[$addon->slug.'/'.$addon->slug.'.php']))
55
+ {
56
+ $installerUrl = add_query_arg(
57
+ array(
58
+ 'action' => 'install-plugin',
59
+ 'plugin' => $addon->slug,
60
+ 'edd_sample_plugin' => 1
61
+ ),
62
+ network_admin_url('update.php')
63
+ //admin_url('update.php')
64
+ );
65
+ $installerUrl = wp_nonce_url($installerUrl, 'install-plugin_' . $addon->slug)?>
66
+ <span class="action-links"><?php
67
+ printf(
68
+ '<a class="button install" href="%s">%s</a>',
69
+ esc_attr($installerUrl),
70
+ __('Install')
71
+ );?>
72
+ </span><?php
73
+ }
74
+ elseif(isset($installed_plugins[$addon->slug.'/'.$addon->slug.'.php']['is_active']))
75
+ {?>
76
+ <span class="action-links"><?php
77
+ if(!$installed_plugins[$addon->slug.'/'.$addon->slug.'.php']['is_active'])
78
+ {
79
+ printf(
80
+ '<a class="button install" href="%s">%s</a>',
81
+ esc_attr($installed_plugins[$addon->slug.'/'.$addon->slug.'.php']["activation_url"]),
82
+ __('Activate')
83
+ );
84
 
85
+ }
86
+ else
87
+ {
88
+ printf(
89
+ '<a class="button install" href="%s">%s</a>',
90
+ esc_attr($installed_plugins[$addon->slug.'/'.$addon->slug.'.php']["deactivation_url"]),
91
+ __('Deactivate')
92
+ );
93
+ }?>
94
+ </span><?php
95
+ }
96
+ else
97
+ {
98
+ ?><span class="action-links"><a class="button" target="_blank" href="<?php esc_attr_e($addon->homepage);?>"><?php _e('Get It Now');?></a></span><?php
99
+ }?>
100
+ <a href="<?php echo esc_url($addon->homepage);?>" target="_blank"><?php _e('View the entire Add On Specs');?></a>
101
+ </li>
102
+ <?php endforeach;
103
+ }?>
104
+ </ul>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  </div>
106
  </div>
107
  <br class="clear"/>
easy-modal.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Easy Modal
4
  Plugin URI: http://easy-modal.com
5
  Description: Easily create & style modals with any content. Theme editor to quickly style your modals. Add forms, social media boxes, videos & more.
6
  Author: Wizard Internet Solutions
7
- Version: 2.0.12
8
  Author URI: http://wizardinternetsolutions.com
9
  Text Domain: easy-modal
10
  */
@@ -21,7 +21,7 @@ if (!defined('EMCORE_URL'))
21
  if (!defined('EMCORE_NONCE'))
22
  define('EMCORE_NONCE', EMCORE_SLUG.'_nonce' );
23
  if (!defined('EMCORE_VERSION'))
24
- define('EMCORE_VERSION', '2.0.12' );
25
  if (!defined('EMCORE_DB_VERSION'))
26
  define('EMCORE_DB_VERSION', '1' );
27
  if (!defined('EMCORE_API_URL'))
@@ -56,8 +56,8 @@ class EModal {
56
  add_filter('emodal_modal_content', 'shortcode_unautop');
57
  add_filter('emodal_modal_content', 'prepend_attachment');
58
  add_filter('emodal_modal_content', 'do_shortcode', 11);
59
- // add_filter("plugins_api", array($this, "get_addon_info"), 100, 3);
60
- add_filter('plugins_api', array($this, 'inject_addons'), 10, 3);
61
 
62
  }
63
  public function deactivate()
@@ -69,14 +69,17 @@ class EModal {
69
  $addon_list = EModal_License::available_addons();
70
  $addon_slugs = array();
71
  $addons = array();
72
- foreach($addon_list as $addon)
73
  {
74
- $addon_slugs[] = $addon->slug;
75
- $addons[$addon->slug] = $addon;
76
- }
77
- //Does this request concern our plugin?
78
- if ( ($action !== 'plugin_information') || empty($args->slug) || empty($_GET['em']) || !in_array($args->slug, $addon_slugs) ) {
79
- return $response;
 
 
 
80
  }
81
 
82
  $addon = $addons[$args->slug];
4
  Plugin URI: http://easy-modal.com
5
  Description: Easily create & style modals with any content. Theme editor to quickly style your modals. Add forms, social media boxes, videos & more.
6
  Author: Wizard Internet Solutions
7
+ Version: 2.0.13
8
  Author URI: http://wizardinternetsolutions.com
9
  Text Domain: easy-modal
10
  */
21
  if (!defined('EMCORE_NONCE'))
22
  define('EMCORE_NONCE', EMCORE_SLUG.'_nonce' );
23
  if (!defined('EMCORE_VERSION'))
24
+ define('EMCORE_VERSION', '2.0.13' );
25
  if (!defined('EMCORE_DB_VERSION'))
26
  define('EMCORE_DB_VERSION', '1' );
27
  if (!defined('EMCORE_API_URL'))
56
  add_filter('emodal_modal_content', 'shortcode_unautop');
57
  add_filter('emodal_modal_content', 'prepend_attachment');
58
  add_filter('emodal_modal_content', 'do_shortcode', 11);
59
+ // add_filter("plugins_api", array($this, "get_addon_info"), 100, 3);
60
+ //add_filter('plugins_api', array($this, 'inject_addons'), 10, 3);
61
 
62
  }
63
  public function deactivate()
69
  $addon_list = EModal_License::available_addons();
70
  $addon_slugs = array();
71
  $addons = array();
72
+ if(!empty($addon_list))
73
  {
74
+ foreach($addon_list as $addon)
75
+ {
76
+ $addon_slugs[] = $addon->slug;
77
+ $addons[$addon->slug] = $addon;
78
+ }
79
+ //Does this request concern our plugin?
80
+ if ( ($action !== 'plugin_information') || empty($args->slug) || empty($_GET['em']) || !in_array($args->slug, $addon_slugs) ) {
81
+ return $response;
82
+ }
83
  }
84
 
85
  $addon = $addons[$args->slug];
includes/admin/options.php CHANGED
@@ -1,4 +1,24 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  add_filter('emodal_model_modal_meta_defaults', 'emodal_model_modal_meta_core_defaults', 10);
3
  function emodal_model_modal_meta_core_defaults($options){
4
  if(empty($options['display']['overlay_disabled'] )) $options['display']['overlay_disabled'] = 0;
1
  <?php
2
+ add_filter('emodal_existing_addon_images', 'emodal_core_addon_images', 10);
3
+ function emodal_core_addon_images($array)
4
+ {
5
+ return array_merge($array, array(
6
+ 'premium-support',
7
+ 'pro-developer',
8
+ 'pro-bundle',
9
+ 'unlimited-themes',
10
+ 'scroll-pops',
11
+ 'force-user-action',
12
+ 'age-verification',
13
+ 'advanced-theme-editor',
14
+ 'exit-modals',
15
+ 'auto-open',
16
+ 'login-modals',
17
+ ));
18
+ }
19
+
20
+
21
+
22
  add_filter('emodal_model_modal_meta_defaults', 'emodal_model_modal_meta_core_defaults', 10);
23
  function emodal_model_modal_meta_core_defaults($options){
24
  if(empty($options['display']['overlay_disabled'] )) $options['display']['overlay_disabled'] = 0;
includes/admin/settings-form-licenses-tab.php CHANGED
@@ -17,6 +17,16 @@ function emodal_admin_settings_form_licenses_tab()
17
  }
18
 
19
 
 
 
 
 
 
 
 
 
 
 
20
  //add_action('emodal_admin_settings_form_tab_licenses_settings', 'emodal_admin_settings_form_glicenses_tab_access_key', 10);
21
  function emodal_admin_settings_form_glicenses_tab_access_key()
22
  {?>
17
  }
18
 
19
 
20
+ add_action('emodal_admin_settings_form_tab_licenses_settings', 'emodal_admin_settings_form_glicenses_tab_no_licensed_products', 10);
21
+ function emodal_admin_settings_form_glicenses_tab_no_licensed_products()
22
+ {?>
23
+ <tr class="form-field">
24
+ <th colspan="2" scope="row">
25
+ <p><?php _e( 'No licensed addons detected.',EMCORE_SLUG)?></p>
26
+ </td>
27
+ </tr><?php
28
+ }
29
+
30
  //add_action('emodal_admin_settings_form_tab_licenses_settings', 'emodal_admin_settings_form_glicenses_tab_access_key', 10);
31
  function emodal_admin_settings_form_glicenses_tab_access_key()
32
  {?>
includes/plugin-updater.php CHANGED
@@ -1,170 +1,171 @@
1
- <?php
2
- /**
3
- * Allows plugins to use their own update API.
4
- *
5
- * @author Pippin Williamson
6
- * @version 1.2
7
- */
8
-
9
- /*
10
- Note for wp.org admins. This is not called in the free hosted version and is simply used for hooking in addons to one update system rather than including it in each plugin.
11
- */
12
-
13
- class EMCORE_Plugin_Updater {
14
- private $api_url = '';
15
- private $api_data = array();
16
- private $name = '';
17
- private $slug = '';
18
- private $do_check = false;
19
-
20
- /**
21
- * Class constructor.
22
- *
23
- * @uses plugin_basename()
24
- * @uses hook()
25
- *
26
- * @param string $_api_url The URL pointing to the custom API endpoint.
27
- * @param string $_plugin_file Path to the plugin file.
28
- * @param array $_api_data Optional data to send with API calls.
29
- * @return void
30
- */
31
- function __construct( $_api_url, $_plugin_file, $_api_data = null ) {
32
- $this->api_url = trailingslashit( $_api_url );
33
- $this->api_data = urlencode_deep( $_api_data );
34
- $this->name = plugin_basename( $_plugin_file );
35
- $this->slug = basename( $_plugin_file, '.php');
36
- $this->version = $_api_data['version'];
37
-
38
- // Set up hooks.
39
- $this->hook();
40
- }
41
-
42
- /**
43
- * Set up WordPress filters to hook into WP's update process.
44
- *
45
- * @uses add_filter()
46
- *
47
- * @return void
48
- */
49
- private function hook() {
50
- add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'pre_set_site_transient_update_plugins_filter' ) );
51
- add_filter( 'plugins_api', array( $this, 'plugins_api_filter' ), 10, 3 );
52
- add_filter( 'http_request_args', array( $this, 'http_request_args' ), 10, 2 );
53
- }
54
-
55
- /**
56
- * Check for Updates at the defined API endpoint and modify the update array.
57
- *
58
- * This function dives into the update API just when WordPress creates its update array,
59
- * then adds a custom API call and injects the custom plugin data retrieved from the API.
60
- * It is reassembled from parts of the native WordPress plugin update code.
61
- * See wp-includes/update.php line 121 for the original wp_update_plugins() function.
62
- *
63
- * @uses api_request()
64
- *
65
- * @param array $_transient_data Update array build by WordPress.
66
- * @return array Modified update array with custom plugin data.
67
- */
68
- function pre_set_site_transient_update_plugins_filter( $_transient_data ) {
69
-
70
- if( empty( $_transient_data ) || ! $this->do_check ) {
71
-
72
- // This ensures that the custom API request only runs on the second time that WP fires the update check
73
- $this->do_check = true;
74
-
75
- return $_transient_data;
76
- }
77
-
78
- $to_send = array( 'slug' => $this->slug );
79
-
80
- $api_response = $this->api_request( 'plugin_latest_version', $to_send );
81
-
82
- if( false !== $api_response && is_object( $api_response ) && isset( $api_response->new_version ) ) {
83
-
84
- if( version_compare( $this->version, $api_response->new_version, '<' ) ) {
85
- $_transient_data->response[$this->name] = $api_response;
86
- }
87
- }
88
- return $_transient_data;
89
- }
90
-
91
-
92
- /**
93
- * Updates information on the "View version x.x details" page with custom data.
94
- *
95
- * @uses api_request()
96
- *
97
- * @param mixed $_data
98
- * @param string $_action
99
- * @param object $_args
100
- * @return object $_data
101
- */
102
- function plugins_api_filter( $_data, $_action = '', $_args = null ) {
103
- if ( ( $_action != 'plugin_information' ) || !isset( $_args->slug ) || ( $_args->slug != $this->slug ) ) return $_data;
104
-
105
- $to_send = array( 'slug' => $this->slug );
106
-
107
- $api_response = $this->api_request( 'plugin_information', $to_send );
108
- if ( false !== $api_response ) $_data = $api_response;
109
-
110
- return $_data;
111
- }
112
-
113
-
114
- /**
115
- * Disable SSL verification in order to prevent download update failures
116
- *
117
- * @param array $args
118
- * @param string $url
119
- * @return object $array
120
- */
121
- function http_request_args( $args, $url ) {
122
- // If it is an https request and we are performing a package download, disable ssl verification
123
- if( strpos( $url, 'https://' ) !== false && strpos( $url, 'edd_action=package_download' ) ) {
124
- $args['sslverify'] = false;
125
- }
126
- return $args;
127
- }
128
-
129
- /**
130
- * Calls the API and, if successfull, returns the object delivered by the API.
131
- *
132
- * @uses get_bloginfo()
133
- * @uses wp_remote_post()
134
- * @uses is_wp_error()
135
- *
136
- * @param string $_action The requested action.
137
- * @param array $_data Parameters for the API action.
138
- * @return false||object
139
- */
140
- private function api_request( $_action, $_data ) {
141
-
142
- global $wp_version;
143
-
144
- $data = array_merge( $this->api_data, $_data );
145
-
146
- if( $data['slug'] != $this->slug )
147
- return;
148
-
149
- if( empty( $data['license'] ) )
150
- return;
151
-
152
- $api_params = array(
153
- 'edd_action' => 'get_version',
154
- 'license' => $data['license'],
155
- 'name' => $data['item_name'],
156
- 'slug' => $this->slug,
157
- 'author' => $data['author'],
158
- 'url' => home_url()
159
- );
160
- $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );
161
- if ( ! is_wp_error( $request ) ):
162
- $request = json_decode( wp_remote_retrieve_body( $request ) );
163
- if( $request && isset( $request->sections ) )
164
- $request->sections = maybe_unserialize( $request->sections );
165
- return $request;
166
- else:
167
- return false;
168
- endif;
169
- }
170
- }
 
1
+ <?php
2
+ /**
3
+ * Allows plugins to use their own update API.
4
+ *
5
+ * @author Pippin Williamson
6
+ * @version 1.2
7
+ */
8
+
9
+ /*
10
+ Note for wp.org admins. This is not called in the free hosted version and is simply used for hooking in addons to one update system rather than including it in each plugin.
11
+ */
12
+
13
+ class EMCORE_Plugin_Updater {
14
+ private $api_url = '';
15
+ private $api_data = array();
16
+ private $name = '';
17
+ private $slug = '';
18
+ private $do_check = false;
19
+
20
+ /**
21
+ * Class constructor.
22
+ *
23
+ * @uses plugin_basename()
24
+ * @uses hook()
25
+ *
26
+ * @param string $_api_url The URL pointing to the custom API endpoint.
27
+ * @param string $_plugin_file Path to the plugin file.
28
+ * @param array $_api_data Optional data to send with API calls.
29
+ * @return void
30
+ */
31
+ function __construct( $_api_url, $_plugin_file, $_api_data = null ) {
32
+ $this->api_url = trailingslashit( $_api_url );
33
+ $this->api_data = urlencode_deep( $_api_data );
34
+ $this->name = plugin_basename( $_plugin_file );
35
+ $this->slug = basename( $_plugin_file, '.php');
36
+ $this->version = $_api_data['version'];
37
+
38
+ // Set up hooks.
39
+ $this->hook();
40
+ }
41
+
42
+ /**
43
+ * Set up WordPress filters to hook into WP's update process.
44
+ *
45
+ * @uses add_filter()
46
+ *
47
+ * @return void
48
+ */
49
+ private function hook() {
50
+ add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'pre_set_site_transient_update_plugins_filter' ) );
51
+ add_filter( 'plugins_api', array( $this, 'plugins_api_filter' ), 10, 3 );
52
+ add_filter( 'http_request_args', array( $this, 'http_request_args' ), 10, 2 );
53
+ }
54
+
55
+ /**
56
+ * Check for Updates at the defined API endpoint and modify the update array.
57
+ *
58
+ * This function dives into the update API just when WordPress creates its update array,
59
+ * then adds a custom API call and injects the custom plugin data retrieved from the API.
60
+ * It is reassembled from parts of the native WordPress plugin update code.
61
+ * See wp-includes/update.php line 121 for the original wp_update_plugins() function.
62
+ *
63
+ * @uses api_request()
64
+ *
65
+ * @param array $_transient_data Update array build by WordPress.
66
+ * @return array Modified update array with custom plugin data.
67
+ */
68
+ function pre_set_site_transient_update_plugins_filter( $_transient_data ) {
69
+
70
+ if( empty( $_transient_data ) || ! $this->do_check ) {
71
+
72
+ // This ensures that the custom API request only runs on the second time that WP fires the update check
73
+ $this->do_check = true;
74
+
75
+ return $_transient_data;
76
+ }
77
+
78
+ $to_send = array( 'slug' => $this->slug );
79
+
80
+ $api_response = $this->api_request( 'plugin_latest_version', $to_send );
81
+
82
+ if( false !== $api_response && is_object( $api_response ) && isset( $api_response->new_version ) ) {
83
+
84
+ if( version_compare( $this->version, $api_response->new_version, '<' ) ) {
85
+ $_transient_data->response[$this->name] = $api_response;
86
+ }
87
+ }
88
+ return $_transient_data;
89
+ }
90
+
91
+
92
+ /**
93
+ * Updates information on the "View version x.x details" page with custom data.
94
+ *
95
+ * @uses api_request()
96
+ *
97
+ * @param mixed $_data
98
+ * @param string $_action
99
+ * @param object $_args
100
+ * @return object $_data
101
+ */
102
+ function plugins_api_filter( $_data, $_action = '', $_args = null ) {
103
+ if ( ( $_action != 'plugin_information' ) || !isset( $_args->slug ) || ( $_args->slug != $this->slug ) ) return $_data;
104
+
105
+ $to_send = array( 'slug' => $this->slug );
106
+
107
+ $api_response = $this->api_request( 'plugin_information', $to_send );
108
+ if ( false !== $api_response ) $_data = $api_response;
109
+
110
+ return $_data;
111
+ }
112
+
113
+
114
+ /**
115
+ * Disable SSL verification in order to prevent download update failures
116
+ *
117
+ * @param array $args
118
+ * @param string $url
119
+ * @return object $array
120
+ */
121
+ function http_request_args( $args, $url ) {
122
+ // If it is an https request and we are performing a package download, disable ssl verification
123
+ if( strpos( $url, 'https://' ) !== false && strpos( $url, 'edd_action=package_download' ) ) {
124
+ $args['sslverify'] = false;
125
+ }
126
+ return $args;
127
+ }
128
+
129
+ /**
130
+ * Calls the API and, if successfull, returns the object delivered by the API.
131
+ *
132
+ * @uses get_bloginfo()
133
+ * @uses wp_remote_post()
134
+ * @uses is_wp_error()
135
+ *
136
+ * @param string $_action The requested action.
137
+ * @param array $_data Parameters for the API action.
138
+ * @return false||object
139
+ */
140
+ private function api_request( $_action, $_data ) {
141
+
142
+ global $wp_version;
143
+
144
+ $data = array_merge( $this->api_data, $_data );
145
+
146
+ if( $data['slug'] != $this->slug )
147
+ return;
148
+
149
+ if( empty( $data['license'] ) )
150
+ return;
151
+
152
+ $api_params = array(
153
+ 'edd_action' => 'get_version',
154
+ 'license' => $data['license'],
155
+ 'name' => $data['item_name'],
156
+ 'slug' => $this->slug,
157
+ 'author' => $data['author'],
158
+ 'url' => home_url()
159
+ );
160
+ $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );
161
+ if ( ! is_wp_error( $request ) ):
162
+ $request = json_decode( wp_remote_retrieve_body( $request ) );
163
+
164
+ if( $request && isset( $request->sections ) )
165
+ $request->sections = maybe_unserialize( $request->sections );
166
+ return $request;
167
+ else:
168
+ return false;
169
+ endif;
170
+ }
171
+ }
includes/updates/css/puc-debug-bar.css CHANGED
@@ -1,19 +1,19 @@
1
- .puc-debug-bar-panel pre {
2
- margin-top: 0;
3
- }
4
-
5
- table.puc-debug-data th {
6
- width: 11em;
7
- }
8
-
9
- .puc-ajax-response {
10
- border: 1px solid #dfdfdf;
11
- border-radius: 3px;
12
- padding: 0.5em;
13
- margin: 5px 0;
14
- background-color: white;
15
- }
16
-
17
- .puc-ajax-nonce {
18
- display: none;
19
  }
1
+ .puc-debug-bar-panel pre {
2
+ margin-top: 0;
3
+ }
4
+
5
+ table.puc-debug-data th {
6
+ width: 11em;
7
+ }
8
+
9
+ .puc-ajax-response {
10
+ border: 1px solid #dfdfdf;
11
+ border-radius: 3px;
12
+ padding: 0.5em;
13
+ margin: 5px 0;
14
+ background-color: white;
15
+ }
16
+
17
+ .puc-ajax-nonce {
18
+ display: none;
19
  }
includes/updates/debug-bar-panel.php CHANGED
@@ -1,129 +1,129 @@
1
- <?php
2
-
3
- if ( !class_exists('PluginUpdateCheckerPanel') && class_exists('Debug_Bar_Panel') ) {
4
-
5
- /**
6
- * A Debug Bar panel for the plugin update checker.
7
- */
8
- class PluginUpdateCheckerPanel extends Debug_Bar_Panel {
9
- /** @var PluginUpdateChecker */
10
- private $updateChecker;
11
-
12
- public function __construct($updateChecker) {
13
- $this->updateChecker = $updateChecker;
14
- $title = sprintf(
15
- '<span id="puc-debug-menu-link-%s">PUC (%s)</span>',
16
- esc_attr($this->updateChecker->slug),
17
- $this->updateChecker->slug
18
- );
19
- parent::Debug_Bar_Panel($title);
20
- }
21
-
22
- public function render() {
23
- printf(
24
- '<div class="puc-debug-bar-panel" id="puc-debug-bar-panel_%1$s" data-slug="%1$s" data-nonce="%2$s">',
25
- esc_attr($this->updateChecker->slug),
26
- esc_attr(wp_create_nonce('puc-ajax'))
27
- );
28
-
29
- $responseBox = '<div class="puc-ajax-response" style="display: none;"></div>';
30
-
31
- echo '<h3>Configuration</h3>';
32
- echo '<table class="puc-debug-data">';
33
- $this->row('Plugin file', htmlentities($this->updateChecker->pluginFile));
34
- $this->row('Slug', htmlentities($this->updateChecker->slug));
35
- $this->row('DB option', htmlentities($this->updateChecker->optionName));
36
-
37
- $requestInfoButton = function_exists('get_submit_button') ? get_submit_button('Request Info', 'secondary', 'puc-request-info-button', false) : '';
38
- $this->row('Metadata URL', htmlentities($this->updateChecker->metadataUrl) . ' ' . $requestInfoButton . $responseBox);
39
-
40
- if ( $this->updateChecker->checkPeriod > 0 ) {
41
- $this->row('Automatic checks', 'Every ' . $this->updateChecker->checkPeriod . ' hours');
42
- } else {
43
- $this->row('Automatic checks', 'Disabled');
44
- }
45
-
46
- if ( isset($this->updateChecker->throttleRedundantChecks) ) {
47
- if ( $this->updateChecker->throttleRedundantChecks && ($this->updateChecker->checkPeriod > 0) ) {
48
- $this->row(
49
- 'Throttling',
50
- sprintf(
51
- 'Enabled. If an update is already available, check for updates every %1$d hours instead of every %2$d hours.',
52
- $this->updateChecker->throttledCheckPeriod,
53
- $this->updateChecker->checkPeriod
54
- )
55
- );
56
- } else {
57
- $this->row('Throttling', 'Disabled');
58
- }
59
- }
60
- echo '</table>';
61
-
62
- echo '<h3>Status</h3>';
63
- echo '<table class="puc-debug-data">';
64
- $state = $this->updateChecker->getUpdateState();
65
- $checkNowButton = function_exists('get_submit_button') ? get_submit_button('Check Now', 'secondary', 'puc-check-now-button', false) : '';
66
-
67
- if ( isset($state, $state->lastCheck) ) {
68
- $this->row('Last check', $this->formatTimeWithDelta($state->lastCheck) . ' ' . $checkNowButton . $responseBox);
69
- } else {
70
- $this->row('Last check', 'Never');
71
- }
72
-
73
- $nextCheck = wp_next_scheduled($this->updateChecker->getCronHookName());
74
- $this->row('Next automatic check', $this->formatTimeWithDelta($nextCheck));
75
-
76
- if ( isset($state, $state->checkedVersion) ) {
77
- $this->row('Checked version', htmlentities($state->checkedVersion));
78
- $this->row('Cached update', $state->update);
79
- }
80
- $this->row('Update checker class', htmlentities(get_class($this->updateChecker)));
81
- echo '</table>';
82
-
83
- $update = $this->updateChecker->getUpdate();
84
- if ( $update !== null ) {
85
- echo '<h3>An Update Is Available</h3>';
86
- echo '<table class="puc-debug-data">';
87
- $fields = array('version', 'download_url', 'slug', 'homepage', 'upgrade_notice');
88
- foreach($fields as $field) {
89
- $this->row(ucwords(str_replace('_', ' ', $field)), htmlentities($update->$field));
90
- }
91
- echo '</table>';
92
- } else {
93
- echo '<h3>No updates currently available</h3>';
94
- }
95
-
96
- echo '</div>';
97
- }
98
-
99
- private function formatTimeWithDelta($unixTime) {
100
- if ( empty($unixTime) ) {
101
- return 'Never';
102
- }
103
-
104
- $delta = time() - $unixTime;
105
- $result = human_time_diff(time(), $unixTime);
106
- if ( $delta < 0 ) {
107
- $result = 'after ' . $result;
108
- } else {
109
- $result = $result . ' ago';
110
- }
111
- $result .= ' (' . $this->formatTimestamp($unixTime) . ')';
112
- return $result;
113
- }
114
-
115
- private function formatTimestamp($unixTime) {
116
- return gmdate('Y-m-d H:i:s', $unixTime + (get_option('gmt_offset') * 3600));
117
- }
118
-
119
- private function row($name, $value) {
120
- if ( is_object($value) || is_array($value) ) {
121
- $value = '<pre>' . htmlentities(print_r($value, true)) . '</pre>';
122
- } else if ($value === null) {
123
- $value = '<code>null</code>';
124
- }
125
- printf('<tr><th scope="row">%1$s</th> <td>%2$s</td></tr>', $name, $value);
126
- }
127
- }
128
-
129
  }
1
+ <?php
2
+
3
+ if ( !class_exists('PluginUpdateCheckerPanel') && class_exists('Debug_Bar_Panel') ) {
4
+
5
+ /**
6
+ * A Debug Bar panel for the plugin update checker.
7
+ */
8
+ class PluginUpdateCheckerPanel extends Debug_Bar_Panel {
9
+ /** @var PluginUpdateChecker */
10
+ private $updateChecker;
11
+
12
+ public function __construct($updateChecker) {
13
+ $this->updateChecker = $updateChecker;
14
+ $title = sprintf(
15
+ '<span id="puc-debug-menu-link-%s">PUC (%s)</span>',
16
+ esc_attr($this->updateChecker->slug),
17
+ $this->updateChecker->slug
18
+ );
19
+ parent::Debug_Bar_Panel($title);
20
+ }
21
+
22
+ public function render() {
23
+ printf(
24
+ '<div class="puc-debug-bar-panel" id="puc-debug-bar-panel_%1$s" data-slug="%1$s" data-nonce="%2$s">',
25
+ esc_attr($this->updateChecker->slug),
26
+ esc_attr(wp_create_nonce('puc-ajax'))
27
+ );
28
+
29
+ $responseBox = '<div class="puc-ajax-response" style="display: none;"></div>';
30
+
31
+ echo '<h3>Configuration</h3>';
32
+ echo '<table class="puc-debug-data">';
33
+ $this->row('Plugin file', htmlentities($this->updateChecker->pluginFile));
34
+ $this->row('Slug', htmlentities($this->updateChecker->slug));
35
+ $this->row('DB option', htmlentities($this->updateChecker->optionName));
36
+
37
+ $requestInfoButton = function_exists('get_submit_button') ? get_submit_button('Request Info', 'secondary', 'puc-request-info-button', false) : '';
38
+ $this->row('Metadata URL', htmlentities($this->updateChecker->metadataUrl) . ' ' . $requestInfoButton . $responseBox);
39
+
40
+ if ( $this->updateChecker->checkPeriod > 0 ) {
41
+ $this->row('Automatic checks', 'Every ' . $this->updateChecker->checkPeriod . ' hours');
42
+ } else {
43
+ $this->row('Automatic checks', 'Disabled');
44
+ }
45
+
46
+ if ( isset($this->updateChecker->throttleRedundantChecks) ) {
47
+ if ( $this->updateChecker->throttleRedundantChecks && ($this->updateChecker->checkPeriod > 0) ) {
48
+ $this->row(
49
+ 'Throttling',
50
+ sprintf(
51
+ 'Enabled. If an update is already available, check for updates every %1$d hours instead of every %2$d hours.',
52
+ $this->updateChecker->throttledCheckPeriod,
53
+ $this->updateChecker->checkPeriod
54
+ )
55
+ );
56
+ } else {
57
+ $this->row('Throttling', 'Disabled');
58
+ }
59
+ }
60
+ echo '</table>';
61
+
62
+ echo '<h3>Status</h3>';
63
+ echo '<table class="puc-debug-data">';
64
+ $state = $this->updateChecker->getUpdateState();
65
+ $checkNowButton = function_exists('get_submit_button') ? get_submit_button('Check Now', 'secondary', 'puc-check-now-button', false) : '';
66
+
67
+ if ( isset($state, $state->lastCheck) ) {
68
+ $this->row('Last check', $this->formatTimeWithDelta($state->lastCheck) . ' ' . $checkNowButton . $responseBox);
69
+ } else {
70
+ $this->row('Last check', 'Never');
71
+ }
72
+
73
+ $nextCheck = wp_next_scheduled($this->updateChecker->getCronHookName());
74
+ $this->row('Next automatic check', $this->formatTimeWithDelta($nextCheck));
75
+
76
+ if ( isset($state, $state->checkedVersion) ) {
77
+ $this->row('Checked version', htmlentities($state->checkedVersion));
78
+ $this->row('Cached update', $state->update);
79
+ }
80
+ $this->row('Update checker class', htmlentities(get_class($this->updateChecker)));
81
+ echo '</table>';
82
+
83
+ $update = $this->updateChecker->getUpdate();
84
+ if ( $update !== null ) {
85
+ echo '<h3>An Update Is Available</h3>';
86
+ echo '<table class="puc-debug-data">';
87
+ $fields = array('version', 'download_url', 'slug', 'homepage', 'upgrade_notice');
88
+ foreach($fields as $field) {
89
+ $this->row(ucwords(str_replace('_', ' ', $field)), htmlentities($update->$field));
90
+ }
91
+ echo '</table>';
92
+ } else {
93
+ echo '<h3>No updates currently available</h3>';
94
+ }
95
+
96
+ echo '</div>';
97
+ }
98
+
99
+ private function formatTimeWithDelta($unixTime) {
100
+ if ( empty($unixTime) ) {
101
+ return 'Never';
102
+ }
103
+
104
+ $delta = time() - $unixTime;
105
+ $result = human_time_diff(time(), $unixTime);
106
+ if ( $delta < 0 ) {
107
+ $result = 'after ' . $result;
108
+ } else {
109
+ $result = $result . ' ago';
110
+ }
111
+ $result .= ' (' . $this->formatTimestamp($unixTime) . ')';
112
+ return $result;
113
+ }
114
+
115
+ private function formatTimestamp($unixTime) {
116
+ return gmdate('Y-m-d H:i:s', $unixTime + (get_option('gmt_offset') * 3600));
117
+ }
118
+
119
+ private function row($name, $value) {
120
+ if ( is_object($value) || is_array($value) ) {
121
+ $value = '<pre>' . htmlentities(print_r($value, true)) . '</pre>';
122
+ } else if ($value === null) {
123
+ $value = '<code>null</code>';
124
+ }
125
+ printf('<tr><th scope="row">%1$s</th> <td>%2$s</td></tr>', $name, $value);
126
+ }
127
+ }
128
+
129
  }
includes/updates/debug-bar-plugin.php CHANGED
@@ -1,102 +1,102 @@
1
- <?php
2
- if ( !class_exists('PucDebugBarPlugin') ) {
3
-
4
- class PucDebugBarPlugin {
5
- /** @var PluginUpdateChecker */
6
- private $updateChecker;
7
-
8
- public function __construct($updateChecker) {
9
- $this->updateChecker = $updateChecker;
10
-
11
- add_filter('debug_bar_panels', array($this, 'addDebugBarPanel'));
12
- add_action('debug_bar_enqueue_scripts', array($this, 'enqueuePanelDependencies'));
13
-
14
- add_action('wp_ajax_puc_debug_check_now', array($this, 'ajaxCheckNow'));
15
- add_action('wp_ajax_puc_debug_request_info', array($this, 'ajaxRequestInfo'));
16
- }
17
-
18
- /**
19
- * Register the PUC Debug Bar panel.
20
- *
21
- * @param array $panels
22
- * @return array
23
- */
24
- public function addDebugBarPanel($panels) {
25
- require_once dirname(__FILE__) . '/debug-bar-panel.php';
26
- if ( current_user_can('update_plugins') && class_exists('PluginUpdateCheckerPanel') ) {
27
- $panels[] = new PluginUpdateCheckerPanel($this->updateChecker);
28
- }
29
- return $panels;
30
- }
31
-
32
- /**
33
- * Enqueue our Debug Bar scripts and styles.
34
- */
35
- public function enqueuePanelDependencies() {
36
- wp_enqueue_style(
37
- 'puc-debug-bar-style',
38
- plugins_url( "/css/puc-debug-bar.css", __FILE__ ),
39
- array('debug-bar'),
40
- '20130927'
41
- );
42
-
43
- wp_enqueue_script(
44
- 'puc-debug-bar-js',
45
- plugins_url( "/js/debug-bar.js", __FILE__ ),
46
- array('jquery'),
47
- '20121026'
48
- );
49
- }
50
-
51
- /**
52
- * Run an update check and output the result. Useful for making sure that
53
- * the update checking process works as expected.
54
- */
55
- public function ajaxCheckNow() {
56
- if ( $_POST['slug'] !== $this->updateChecker->slug ) {
57
- return;
58
- }
59
- $this->preAjaxReqest();
60
- $update = $this->updateChecker->checkForUpdates();
61
- if ( $update !== null ) {
62
- echo "An update is available:";
63
- echo '<pre>', htmlentities(print_r($update, true)), '</pre>';
64
- } else {
65
- echo 'No updates found.';
66
- }
67
- exit;
68
- }
69
-
70
- /**
71
- * Request plugin info and output it.
72
- */
73
- public function ajaxRequestInfo() {
74
- if ( $_POST['slug'] !== $this->updateChecker->slug ) {
75
- return;
76
- }
77
- $this->preAjaxReqest();
78
- $info = $this->updateChecker->requestInfo();
79
- if ( $info !== null ) {
80
- echo 'Successfully retrieved plugin info from the metadata URL:';
81
- echo '<pre>', htmlentities(print_r($info, true)), '</pre>';
82
- } else {
83
- echo 'Failed to retrieve plugin info from the metadata URL.';
84
- }
85
- exit;
86
- }
87
-
88
- /**
89
- * Check access permissions and enable error display (for debugging).
90
- */
91
- private function preAjaxReqest() {
92
- if ( !current_user_can('update_plugins') ) {
93
- die('Access denied');
94
- }
95
- check_ajax_referer('puc-ajax');
96
-
97
- error_reporting(E_ALL);
98
- @ini_set('display_errors','On');
99
- }
100
- }
101
-
102
  }
1
+ <?php
2
+ if ( !class_exists('PucDebugBarPlugin') ) {
3
+
4
+ class PucDebugBarPlugin {
5
+ /** @var PluginUpdateChecker */
6
+ private $updateChecker;
7
+
8
+ public function __construct($updateChecker) {
9
+ $this->updateChecker = $updateChecker;
10
+
11
+ add_filter('debug_bar_panels', array($this, 'addDebugBarPanel'));
12
+ add_action('debug_bar_enqueue_scripts', array($this, 'enqueuePanelDependencies'));
13
+
14
+ add_action('wp_ajax_puc_debug_check_now', array($this, 'ajaxCheckNow'));
15
+ add_action('wp_ajax_puc_debug_request_info', array($this, 'ajaxRequestInfo'));
16
+ }
17
+
18
+ /**
19
+ * Register the PUC Debug Bar panel.
20
+ *
21
+ * @param array $panels
22
+ * @return array
23
+ */
24
+ public function addDebugBarPanel($panels) {
25
+ require_once dirname(__FILE__) . '/debug-bar-panel.php';
26
+ if ( current_user_can('update_plugins') && class_exists('PluginUpdateCheckerPanel') ) {
27
+ $panels[] = new PluginUpdateCheckerPanel($this->updateChecker);
28
+ }
29
+ return $panels;
30
+ }
31
+
32
+ /**
33
+ * Enqueue our Debug Bar scripts and styles.
34
+ */
35
+ public function enqueuePanelDependencies() {
36
+ wp_enqueue_style(
37
+ 'puc-debug-bar-style',
38
+ plugins_url( "/css/puc-debug-bar.css", __FILE__ ),
39
+ array('debug-bar'),
40
+ '20130927'
41
+ );
42
+
43
+ wp_enqueue_script(
44
+ 'puc-debug-bar-js',
45
+ plugins_url( "/js/debug-bar.js", __FILE__ ),
46
+ array('jquery'),
47
+ '20121026'
48
+ );
49
+ }
50
+
51
+ /**
52
+ * Run an update check and output the result. Useful for making sure that
53
+ * the update checking process works as expected.
54
+ */
55
+ public function ajaxCheckNow() {
56
+ if ( $_POST['slug'] !== $this->updateChecker->slug ) {
57
+ return;
58
+ }
59
+ $this->preAjaxReqest();
60
+ $update = $this->updateChecker->checkForUpdates();
61
+ if ( $update !== null ) {
62
+ echo "An update is available:";
63
+ echo '<pre>', htmlentities(print_r($update, true)), '</pre>';
64
+ } else {
65
+ echo 'No updates found.';
66
+ }
67
+ exit;
68
+ }
69
+
70
+ /**
71
+ * Request plugin info and output it.
72
+ */
73
+ public function ajaxRequestInfo() {
74
+ if ( $_POST['slug'] !== $this->updateChecker->slug ) {
75
+ return;
76
+ }
77
+ $this->preAjaxReqest();
78
+ $info = $this->updateChecker->requestInfo();
79
+ if ( $info !== null ) {
80
+ echo 'Successfully retrieved plugin info from the metadata URL:';
81
+ echo '<pre>', htmlentities(print_r($info, true)), '</pre>';
82
+ } else {
83
+ echo 'Failed to retrieve plugin info from the metadata URL.';
84
+ }
85
+ exit;
86
+ }
87
+
88
+ /**
89
+ * Check access permissions and enable error display (for debugging).
90
+ */
91
+ private function preAjaxReqest() {
92
+ if ( !current_user_can('update_plugins') ) {
93
+ die('Access denied');
94
+ }
95
+ check_ajax_referer('puc-ajax');
96
+
97
+ error_reporting(E_ALL);
98
+ @ini_set('display_errors','On');
99
+ }
100
+ }
101
+
102
  }
includes/updates/js/debug-bar.js CHANGED
@@ -1,52 +1,52 @@
1
- jQuery(function($) {
2
-
3
- function runAjaxAction(button, action) {
4
- button = $(button);
5
- var panel = button.closest('.puc-debug-bar-panel');
6
- var responseBox = button.closest('td').find('.puc-ajax-response');
7
-
8
- responseBox.text('Processing...').show();
9
- $.post(
10
- ajaxurl,
11
- {
12
- action : action,
13
- slug : panel.data('slug'),
14
- _wpnonce: panel.data('nonce')
15
- },
16
- function(data) {
17
- responseBox.html(data);
18
- },
19
- 'html'
20
- );
21
- }
22
-
23
- $('.puc-debug-bar-panel input[name="puc-check-now-button"]').click(function() {
24
- runAjaxAction(this, 'puc_debug_check_now');
25
- return false;
26
- });
27
-
28
- $('.puc-debug-bar-panel input[name="puc-request-info-button"]').click(function() {
29
- runAjaxAction(this, 'puc_debug_request_info');
30
- return false;
31
- });
32
-
33
-
34
- // Debug Bar uses the panel class name as part of its link and container IDs. This means we can
35
- // end up with multiple identical IDs if more than one plugin uses the update checker library.
36
- // Fix it by replacing the class name with the plugin slug.
37
- var panels = $('#debug-menu-targets').find('.puc-debug-bar-panel');
38
- panels.each(function(index) {
39
- var panel = $(this);
40
- var slug = panel.data('slug');
41
- var target = panel.closest('.debug-menu-target');
42
-
43
- //Change the panel wrapper ID.
44
- target.attr('id', 'debug-menu-target-puc-' + slug);
45
-
46
- //Change the menu link ID as well and point it at the new target ID.
47
- $('#puc-debug-menu-link-' + panel.data('slug'))
48
- .closest('.debug-menu-link')
49
- .attr('id', 'debug-menu-link-puc-' + slug)
50
- .attr('href', '#' + target.attr('id'));
51
- });
52
  });
1
+ jQuery(function($) {
2
+
3
+ function runAjaxAction(button, action) {
4
+ button = $(button);
5
+ var panel = button.closest('.puc-debug-bar-panel');
6
+ var responseBox = button.closest('td').find('.puc-ajax-response');
7
+
8
+ responseBox.text('Processing...').show();
9
+ $.post(
10
+ ajaxurl,
11
+ {
12
+ action : action,
13
+ slug : panel.data('slug'),
14
+ _wpnonce: panel.data('nonce')
15
+ },
16
+ function(data) {
17
+ responseBox.html(data);
18
+ },
19
+ 'html'
20
+ );
21
+ }
22
+
23
+ $('.puc-debug-bar-panel input[name="puc-check-now-button"]').click(function() {
24
+ runAjaxAction(this, 'puc_debug_check_now');
25
+ return false;
26
+ });
27
+
28
+ $('.puc-debug-bar-panel input[name="puc-request-info-button"]').click(function() {
29
+ runAjaxAction(this, 'puc_debug_request_info');
30
+ return false;
31
+ });
32
+
33
+
34
+ // Debug Bar uses the panel class name as part of its link and container IDs. This means we can
35
+ // end up with multiple identical IDs if more than one plugin uses the update checker library.
36
+ // Fix it by replacing the class name with the plugin slug.
37
+ var panels = $('#debug-menu-targets').find('.puc-debug-bar-panel');
38
+ panels.each(function(index) {
39
+ var panel = $(this);
40
+ var slug = panel.data('slug');
41
+ var target = panel.closest('.debug-menu-target');
42
+
43
+ //Change the panel wrapper ID.
44
+ target.attr('id', 'debug-menu-target-puc-' + slug);
45
+
46
+ //Change the menu link ID as well and point it at the new target ID.
47
+ $('#puc-debug-menu-link-' + panel.data('slug'))
48
+ .closest('.debug-menu-link')
49
+ .attr('id', 'debug-menu-link-puc-' + slug)
50
+ .attr('href', '#' + target.attr('id'));
51
+ });
52
  });
languages/easy-modal-en_US.po CHANGED
@@ -1,892 +1,892 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Easy Modal\n"
4
- "POT-Creation-Date: 2014-07-05 21:57-0500\n"
5
- "PO-Revision-Date: 2014-07-05 21:57-0500\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: en_US\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.6\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #: classes/admin.php:53 classes/admin/menu.php:52 classes/admin/menu.php:53
22
- msgid "Settings"
23
- msgstr ""
24
-
25
- #: classes/admin.php:55
26
- msgid "Go Pro"
27
- msgstr ""
28
-
29
- #: classes/admin/api.php:151
30
- msgid "An Unexpected HTTP Error occurred during the API request."
31
- msgstr ""
32
-
33
- #: classes/admin/api.php:158
34
- msgid "An unknown error occurred"
35
- msgstr ""
36
-
37
- #: classes/admin/menu.php:30 classes/admin/menu.php:31
38
- #: classes/controller/admin/modals.php:45
39
- msgid "Modals"
40
- msgstr ""
41
-
42
- #: classes/admin/menu.php:41 classes/admin/menu.php:42
43
- msgid "Theme"
44
- msgstr ""
45
-
46
- #: classes/admin/menu.php:63 classes/admin/menu.php:64
47
- msgid "Help"
48
- msgstr ""
49
-
50
- #: classes/controller/admin/modals.php:61
51
- msgid "Modal Updated."
52
- msgstr ""
53
-
54
- #: classes/controller/admin/modals.php:61
55
- msgid "Modal Created."
56
- msgstr ""
57
-
58
- #: classes/controller/admin/modals.php:65
59
- msgid "Edit Modal"
60
- msgstr ""
61
-
62
- #: classes/controller/admin/modals.php:65
63
- msgid "Add New Modal"
64
- msgstr ""
65
-
66
- #: classes/controller/admin/modals.php:80
67
- msgid "Modal cloned successfully"
68
- msgstr ""
69
-
70
- #: classes/controller/admin/modals.php:106
71
- msgid " modals moved to the trash"
72
- msgstr ""
73
-
74
- #: classes/controller/admin/modals.php:118
75
- msgid "Modal trash has been permanantly removed."
76
- msgstr ""
77
-
78
- #: classes/controller/admin/modals.php:143
79
- msgid " modal restored from trash."
80
- msgstr ""
81
-
82
- #: classes/controller/admin/settings.php:33
83
- msgid "Settings Updated."
84
- msgstr ""
85
-
86
- #: classes/controller/admin/settings.php:37
87
- msgid "Easy Modal Settings"
88
- msgstr ""
89
-
90
- #: classes/controller/admin/theme.php:29
91
- msgid "Theme Updated."
92
- msgstr ""
93
-
94
- #: classes/controller/admin/theme.php:33
95
- msgid "Edit Theme"
96
- msgstr ""
97
-
98
- #: classes/view/admin/modal/form.php:9 classes/view/admin/modal/index.php:9
99
- #: classes/view/admin/theme/form.php:9
100
- msgid "Add New"
101
- msgstr ""
102
-
103
- #: classes/view/admin/modal/form.php:33 classes/view/admin/modal/form.php:57
104
- #: classes/view/admin/settings/form.php:29
105
- #: classes/view/admin/settings/form.php:53
106
- #: classes/view/admin/theme/form.php:46
107
- msgid "Publish"
108
- msgstr ""
109
-
110
- #: classes/view/admin/modal/form.php:39
111
- #: classes/view/admin/settings/form.php:35
112
- msgid "Clone"
113
- msgstr ""
114
-
115
- #: classes/view/admin/modal/form.php:43
116
- #: classes/view/admin/settings/form.php:39
117
- #: classes/view/admin/theme/form.php:52
118
- msgid "Preview"
119
- msgstr ""
120
-
121
- #: classes/view/admin/modal/form.php:52
122
- #: classes/view/admin/settings/form.php:48
123
- msgid "Move to Trash"
124
- msgstr ""
125
-
126
- #: classes/view/admin/modal/index.php:129
127
- #: includes/admin/modal-form-general-tab.php:25
128
- #: includes/admin/theme-form-general-tab.php:25
129
- msgid "Name"
130
- msgstr ""
131
-
132
- #: classes/view/admin/modal/index.php:130
133
- msgid "Class"
134
- msgstr ""
135
-
136
- #: classes/view/admin/modal/index.php:131
137
- msgid "Load Method"
138
- msgstr ""
139
-
140
- #: classes/view/admin/modal/index.php:162
141
- #: classes/view/admin/modal/index.php:195
142
- msgid "Delete"
143
- msgstr ""
144
-
145
- #: classes/view/admin/modal/index.php:164
146
- msgid "Restore"
147
- msgstr ""
148
-
149
- #: classes/view/admin/modal/index.php:166
150
- msgid "Empty Trash"
151
- msgstr ""
152
-
153
- #: classes/view/admin/modal/index.php:187
154
- #, php-format
155
- msgid "Edit &#8220;%s&#8221;"
156
- msgstr ""
157
-
158
- #: classes/view/admin/modal/index.php:191
159
- msgid "Edit"
160
- msgstr ""
161
-
162
- #: classes/view/admin/modal/index.php:197
163
- msgid "View"
164
- msgstr ""
165
-
166
- #: classes/view/admin/modal/index.php:216
167
- msgid "Per Page / Post"
168
- msgstr ""
169
-
170
- #: classes/view/admin/modal/index.php:220
171
- msgid "AJAX"
172
- msgstr ""
173
-
174
- #: classes/view/admin/modal/index.php:224
175
- msgid "Sitewide"
176
- msgstr ""
177
-
178
- #: classes/view/admin/theme/form.php:25
179
- msgid "Theme Preview"
180
- msgstr ""
181
-
182
- #: classes/view/admin/theme/form.php:28
183
- msgid "Title Text"
184
- msgstr ""
185
-
186
- #: classes/view/admin/theme/form.php:30 classes/view/modal.php:80
187
- #: includes/admin/options.php:60
188
- msgid "&#215;"
189
- msgstr ""
190
-
191
- #: classes/view/admin/theme/form.php:62
192
- msgid "Save"
193
- msgstr ""
194
-
195
- #: em-core.php:77 em-core.php:78
196
- msgid "Test"
197
- msgstr ""
198
-
199
- #: em-core.php:80
200
- msgid "-test"
201
- msgstr ""
202
-
203
- #: includes/admin/modal-form-close-tab.php:5
204
- msgid "Close Options"
205
- msgstr ""
206
-
207
- #: includes/admin/modal-form-close-tab.php:25
208
- msgid "Click Overlay to Close"
209
- msgstr ""
210
-
211
- #: includes/admin/modal-form-close-tab.php:28
212
- msgid "Checking this will cause modal to close when user clicks on overlay."
213
- msgstr ""
214
-
215
- #: includes/admin/modal-form-close-tab.php:38
216
- msgid "Press ESC to Close"
217
- msgstr ""
218
-
219
- #: includes/admin/modal-form-close-tab.php:41
220
- msgid "Checking this will cause modal to close when user presses ESC key."
221
- msgstr ""
222
-
223
- #: includes/admin/modal-form-display-tab.php:5
224
- msgid "Display Options"
225
- msgstr ""
226
-
227
- #: includes/admin/modal-form-display-tab.php:27
228
- #: includes/admin/theme-form-close-tab.php:134
229
- #: includes/admin/theme-form-title-tab.php:38
230
- msgid "Size"
231
- msgstr ""
232
-
233
- #: includes/admin/modal-form-display-tab.php:40
234
- msgid "Select the size of the modal."
235
- msgstr ""
236
-
237
- #: includes/admin/modal-form-display-tab.php:51
238
- #: includes/admin/theme-form-close-tab.php:233
239
- #: includes/admin/theme-form-container-tab.php:107
240
- msgid "Width"
241
- msgstr ""
242
-
243
- #: includes/admin/modal-form-display-tab.php:64
244
- msgid "Set a custom width for the modal."
245
- msgstr ""
246
-
247
- #: includes/admin/modal-form-display-tab.php:70
248
- msgid "Auto Adjusted Height"
249
- msgstr ""
250
-
251
- #: includes/admin/modal-form-display-tab.php:73
252
- msgid "Checking this option will set height to fix the content."
253
- msgstr ""
254
-
255
- #: includes/admin/modal-form-display-tab.php:80
256
- msgid "Height"
257
- msgstr ""
258
-
259
- #: includes/admin/modal-form-display-tab.php:93
260
- msgid "Set a custom height for the modal."
261
- msgstr ""
262
-
263
- #: includes/admin/modal-form-display-tab.php:104
264
- msgid "Animation"
265
- msgstr ""
266
-
267
- #: includes/admin/modal-form-display-tab.php:109
268
- msgid "Animation Type"
269
- msgstr ""
270
-
271
- #: includes/admin/modal-form-display-tab.php:121
272
- msgid "Select an animation type for your modal."
273
- msgstr ""
274
-
275
- #: includes/admin/modal-form-display-tab.php:127
276
- msgid "Animation Speed"
277
- msgstr ""
278
-
279
- #: includes/admin/modal-form-display-tab.php:133
280
- msgid "Set the animation speed for the modal."
281
- msgstr ""
282
-
283
- #: includes/admin/modal-form-display-tab.php:139
284
- msgid "Animation Origin"
285
- msgstr ""
286
-
287
- #: includes/admin/modal-form-display-tab.php:151
288
- msgid "Choose where the animation will begin."
289
- msgstr ""
290
-
291
- #: includes/admin/modal-form-display-tab.php:162
292
- #: includes/admin/theme-form-close-tab.php:70
293
- msgid "Position"
294
- msgstr ""
295
-
296
- #: includes/admin/modal-form-display-tab.php:166
297
- #: includes/admin/theme-form-close-tab.php:55
298
- msgid "Location"
299
- msgstr ""
300
-
301
- #: includes/admin/modal-form-display-tab.php:177
302
- #: includes/admin/theme-form-close-tab.php:66
303
- msgid "Choose which corner the close button will be positioned."
304
- msgstr ""
305
-
306
- #: includes/admin/modal-form-display-tab.php:181
307
- msgid "Fixed"
308
- msgstr ""
309
-
310
- #: includes/admin/modal-form-display-tab.php:184
311
- msgid "Checking this fixes the position of the modal."
312
- msgstr ""
313
-
314
- #: includes/admin/modal-form-display-tab.php:189
315
- #: includes/admin/options.php:200 includes/admin/theme-form-close-tab.php:74
316
- msgid "Top"
317
- msgstr ""
318
-
319
- #: includes/admin/modal-form-display-tab.php:194
320
- #: includes/admin/theme-form-close-tab.php:79
321
- msgid "Top."
322
- msgstr ""
323
-
324
- #: includes/admin/modal-form-display-tab.php:199
325
- #: includes/admin/options.php:202 includes/admin/theme-form-close-tab.php:94
326
- msgid "Bottom"
327
- msgstr ""
328
-
329
- #: includes/admin/modal-form-display-tab.php:204
330
- #: includes/admin/theme-form-close-tab.php:99
331
- msgid "Bottom."
332
- msgstr ""
333
-
334
- #: includes/admin/modal-form-display-tab.php:209
335
- #: includes/admin/options.php:141 includes/admin/options.php:201
336
- #: includes/admin/theme-form-close-tab.php:84
337
- msgid "Left"
338
- msgstr ""
339
-
340
- #: includes/admin/modal-form-display-tab.php:214
341
- #: includes/admin/theme-form-close-tab.php:89
342
- msgid "Left."
343
- msgstr ""
344
-
345
- #: includes/admin/modal-form-display-tab.php:219
346
- #: includes/admin/options.php:143 includes/admin/options.php:203
347
- #: includes/admin/theme-form-close-tab.php:104
348
- msgid "Right"
349
- msgstr ""
350
-
351
- #: includes/admin/modal-form-display-tab.php:224
352
- #: includes/admin/theme-form-close-tab.php:109
353
- msgid "Right."
354
- msgstr ""
355
-
356
- #: includes/admin/modal-form-example-tab.php:5
357
- msgid "Examples"
358
- msgstr ""
359
-
360
- #: includes/admin/modal-form-example-tab.php:14
361
- msgid "Copy this class to the link/button you want to open this modal."
362
- msgstr ""
363
-
364
- #: includes/admin/modal-form-example-tab.php:18
365
- msgid "Link Example"
366
- msgstr ""
367
-
368
- #: includes/admin/modal-form-example-tab.php:19
369
- #: includes/admin/modal-form-example-tab.php:20
370
- #: includes/admin/modal-form-example-tab.php:24
371
- #: includes/admin/modal-form-example-tab.php:25
372
- msgid "Open Modal"
373
- msgstr ""
374
-
375
- #: includes/admin/modal-form-example-tab.php:23
376
- msgid "Button Example"
377
- msgstr ""
378
-
379
- #: includes/admin/modal-form-example-tab.php:27
380
- msgid "Image Example"
381
- msgstr ""
382
-
383
- #: includes/admin/modal-form-general-tab.php:5
384
- #: includes/admin/theme-form-general-tab.php:5
385
- msgid "General"
386
- msgstr ""
387
-
388
- #: includes/admin/modal-form-general-tab.php:31
389
- msgid "Enter a name for your modal."
390
- msgstr ""
391
-
392
- #: includes/admin/modal-form-general-tab.php:43
393
- msgid "Load Type"
394
- msgstr ""
395
-
396
- #: includes/admin/modal-form-general-tab.php:48
397
- msgid "Per Page/Post"
398
- msgstr ""
399
-
400
- #: includes/admin/modal-form-general-tab.php:49
401
- msgid "Load Sitewide"
402
- msgstr ""
403
-
404
- #: includes/admin/modal-form-general-tab.php:50
405
- msgid "Using AJAX"
406
- msgstr ""
407
-
408
- #: includes/admin/modal-form-general-tab.php:52
409
- msgid "Load this modal per page, sitewide or using ajax."
410
- msgstr ""
411
-
412
- #: includes/admin/modal-form-general-tab.php:64
413
- #: includes/admin/theme-form-title-tab.php:5
414
- msgid "Title"
415
- msgstr ""
416
-
417
- #: includes/admin/modal-form-general-tab.php:70
418
- msgid "The title that appears in the modal window."
419
- msgstr ""
420
-
421
- #: includes/admin/modal-form-general-tab.php:81
422
- #: includes/admin/theme-form-content-tab.php:5
423
- msgid "Content"
424
- msgstr ""
425
-
426
- #: includes/admin/modal-form-general-tab.php:96
427
- msgid "Modal content. Can contain shortcodes."
428
- msgstr ""
429
-
430
- #: includes/admin/options.php:100
431
- msgid "PX"
432
- msgstr ""
433
-
434
- #: includes/admin/options.php:101
435
- msgid "%"
436
- msgstr ""
437
-
438
- #: includes/admin/options.php:102
439
- msgid "EM"
440
- msgstr ""
441
-
442
- #: includes/admin/options.php:103
443
- msgid "REM"
444
- msgstr ""
445
-
446
- #: includes/admin/options.php:111 includes/admin/options.php:186
447
- msgid "None"
448
- msgstr ""
449
-
450
- #: includes/admin/options.php:112
451
- msgid "Solid"
452
- msgstr ""
453
-
454
- #: includes/admin/options.php:113
455
- msgid "Dotted"
456
- msgstr ""
457
-
458
- #: includes/admin/options.php:114
459
- msgid "Dashed"
460
- msgstr ""
461
-
462
- #: includes/admin/options.php:115
463
- msgid "Double"
464
- msgstr ""
465
-
466
- #: includes/admin/options.php:116
467
- msgid "Groove"
468
- msgstr ""
469
-
470
- #: includes/admin/options.php:117 includes/admin/theme-form-close-tab.php:252
471
- #: includes/admin/theme-form-container-tab.php:125
472
- msgid "Inset"
473
- msgstr ""
474
-
475
- #: includes/admin/options.php:118
476
- msgid "Outset"
477
- msgstr ""
478
-
479
- #: includes/admin/options.php:119
480
- msgid "Ridge"
481
- msgstr ""
482
-
483
- #: includes/admin/options.php:127
484
- msgid "Sans-Serif"
485
- msgstr ""
486
-
487
- #: includes/admin/options.php:128
488
- msgid "Tahoma"
489
- msgstr ""
490
-
491
- #: includes/admin/options.php:129
492
- msgid "Georgia"
493
- msgstr ""
494
-
495
- #: includes/admin/options.php:130
496
- msgid "Comic Sans MS"
497
- msgstr ""
498
-
499
- #: includes/admin/options.php:131
500
- msgid "Arial"
501
- msgstr ""
502
-
503
- #: includes/admin/options.php:132
504
- msgid "Lucida Grande"
505
- msgstr ""
506
-
507
- #: includes/admin/options.php:133
508
- msgid "Times New Roman"
509
- msgstr ""
510
-
511
- #: includes/admin/options.php:142
512
- msgid "Center"
513
- msgstr ""
514
-
515
- #: includes/admin/options.php:152
516
- msgid "-----------------------"
517
- msgstr ""
518
-
519
- #: includes/admin/options.php:160
520
- msgid "Auto"
521
- msgstr ""
522
-
523
- #: includes/admin/options.php:161
524
- msgid "Responsive"
525
- msgstr ""
526
-
527
- #: includes/admin/options.php:162
528
- msgid "Normal"
529
- msgstr ""
530
-
531
- #: includes/admin/options.php:163
532
- msgid "Nano"
533
- msgstr ""
534
-
535
- #: includes/admin/options.php:164
536
- msgid "Tiny"
537
- msgstr ""
538
-
539
- #: includes/admin/options.php:165
540
- msgid "Small"
541
- msgstr ""
542
-
543
- #: includes/admin/options.php:166
544
- msgid "Medium"
545
- msgstr ""
546
-
547
- #: includes/admin/options.php:167
548
- msgid "Large"
549
- msgstr ""
550
-
551
- #: includes/admin/options.php:168
552
- msgid "X Large"
553
- msgstr ""
554
-
555
- #: includes/admin/options.php:176
556
- msgid "Non-Responsive"
557
- msgstr ""
558
-
559
- #: includes/admin/options.php:177
560
- msgid "Custom"
561
- msgstr ""
562
-
563
- #: includes/admin/options.php:187
564
- msgid "Slide"
565
- msgstr ""
566
-
567
- #: includes/admin/options.php:188
568
- msgid "Fade"
569
- msgstr ""
570
-
571
- #: includes/admin/options.php:189
572
- msgid "Fade and Slide"
573
- msgstr ""
574
-
575
- #: includes/admin/options.php:190
576
- msgid "Grow"
577
- msgstr ""
578
-
579
- #: includes/admin/options.php:191
580
- msgid "Grow and Slide"
581
- msgstr ""
582
-
583
- #: includes/admin/options.php:204 includes/admin/options.php:221
584
- #: includes/admin/options.php:237
585
- msgid "Top Left"
586
- msgstr ""
587
-
588
- #: includes/admin/options.php:205 includes/admin/options.php:222
589
- msgid "Top Center"
590
- msgstr ""
591
-
592
- #: includes/admin/options.php:206 includes/admin/options.php:223
593
- #: includes/admin/options.php:238
594
- msgid "Top Right"
595
- msgstr ""
596
-
597
- #: includes/admin/options.php:207 includes/admin/options.php:224
598
- msgid "Middle Left"
599
- msgstr ""
600
-
601
- #: includes/admin/options.php:208 includes/admin/options.php:225
602
- msgid "Middle Center"
603
- msgstr ""
604
-
605
- #: includes/admin/options.php:209 includes/admin/options.php:226
606
- msgid "Middle Right"
607
- msgstr ""
608
-
609
- #: includes/admin/options.php:210 includes/admin/options.php:227
610
- #: includes/admin/options.php:239
611
- msgid "Bottom Left"
612
- msgstr ""
613
-
614
- #: includes/admin/options.php:211 includes/admin/options.php:228
615
- msgid "Bottom Center"
616
- msgstr ""
617
-
618
- #: includes/admin/options.php:212 includes/admin/options.php:229
619
- #: includes/admin/options.php:240
620
- msgid "Bottom Right"
621
- msgstr ""
622
-
623
- #: includes/admin/postmeta.php:9
624
- msgid "Select which modals to load"
625
- msgstr ""
626
-
627
- #: includes/admin/postmeta.php:12
628
- msgid " checked=\"checked\""
629
- msgstr ""
630
-
631
- #: includes/admin/theme-form-close-tab.php:5
632
- msgid "Close"
633
- msgstr ""
634
-
635
- #: includes/admin/theme-form-close-tab.php:24
636
- msgid "Text"
637
- msgstr ""
638
-
639
- #: includes/admin/theme-form-close-tab.php:28
640
- msgid "Enter the close button text."
641
- msgstr ""
642
-
643
- #: includes/admin/theme-form-close-tab.php:39
644
- #: includes/admin/theme-form-container-tab.php:26
645
- msgid "Padding"
646
- msgstr ""
647
-
648
- #: includes/admin/theme-form-close-tab.php:44
649
- #: includes/admin/theme-form-container-tab.php:31
650
- msgid "Padding."
651
- msgstr ""
652
-
653
- #: includes/admin/theme-form-close-tab.php:120
654
- #: includes/admin/theme-form-content-tab.php:24
655
- #: includes/admin/theme-form-title-tab.php:24
656
- msgid "Font"
657
- msgstr ""
658
-
659
- #: includes/admin/theme-form-close-tab.php:124
660
- #: includes/admin/theme-form-close-tab.php:169
661
- #: includes/admin/theme-form-close-tab.php:224
662
- #: includes/admin/theme-form-close-tab.php:308
663
- #: includes/admin/theme-form-close-tab.php:365
664
- #: includes/admin/theme-form-container-tab.php:45
665
- #: includes/admin/theme-form-container-tab.php:98
666
- #: includes/admin/theme-form-container-tab.php:181
667
- #: includes/admin/theme-form-content-tab.php:28
668
- #: includes/admin/theme-form-overlay-tab.php:24
669
- #: includes/admin/theme-form-title-tab.php:28
670
- #: includes/admin/theme-form-title-tab.php:118
671
- msgid "Color"
672
- msgstr ""
673
-
674
- #: includes/admin/theme-form-close-tab.php:128
675
- msgid "Choose the font color for your close button."
676
- msgstr ""
677
-
678
- #: includes/admin/theme-form-close-tab.php:139
679
- #: includes/admin/theme-form-title-tab.php:43
680
- msgid "Font size."
681
- msgstr ""
682
-
683
- #: includes/admin/theme-form-close-tab.php:144
684
- #: includes/admin/theme-form-content-tab.php:49
685
- #: includes/admin/theme-form-title-tab.php:48
686
- msgid "Family"
687
- msgstr ""
688
-
689
- #: includes/admin/theme-form-close-tab.php:155
690
- #: includes/admin/theme-form-content-tab.php:60
691
- #: includes/admin/theme-form-title-tab.php:59
692
- msgid "Font family."
693
- msgstr ""
694
-
695
- #: includes/admin/theme-form-close-tab.php:165
696
- #: includes/admin/theme-form-container-tab.php:41
697
- msgid "Background"
698
- msgstr ""
699
-
700
- #: includes/admin/theme-form-close-tab.php:173
701
- msgid "Choose the background color for your close button."
702
- msgstr ""
703
-
704
- #: includes/admin/theme-form-close-tab.php:178
705
- #: includes/admin/theme-form-close-tab.php:317
706
- #: includes/admin/theme-form-close-tab.php:374
707
- #: includes/admin/theme-form-container-tab.php:54
708
- #: includes/admin/theme-form-container-tab.php:190
709
- #: includes/admin/theme-form-overlay-tab.php:33
710
- #: includes/admin/theme-form-title-tab.php:127
711
- msgid "Opacity"
712
- msgstr ""
713
-
714
- #: includes/admin/theme-form-close-tab.php:183
715
- #: includes/admin/theme-form-container-tab.php:59
716
- msgid "Background opacity."
717
- msgstr ""
718
-
719
- #: includes/admin/theme-form-close-tab.php:194
720
- #: includes/admin/theme-form-container-tab.php:68
721
- msgid "Border"
722
- msgstr ""
723
-
724
- #: includes/admin/theme-form-close-tab.php:198
725
- #: includes/admin/theme-form-container-tab.php:72
726
- msgid "Radius"
727
- msgstr ""
728
-
729
- #: includes/admin/theme-form-close-tab.php:203
730
- msgid "Choose a corner radius for your close button."
731
- msgstr ""
732
-
733
- #: includes/admin/theme-form-close-tab.php:208
734
- #: includes/admin/theme-form-container-tab.php:82
735
- msgid "Style"
736
- msgstr ""
737
-
738
- #: includes/admin/theme-form-close-tab.php:219
739
- msgid "Choose a border style for your close button."
740
- msgstr ""
741
-
742
- #: includes/admin/theme-form-close-tab.php:228
743
- msgid "Choose the border color for your close button."
744
- msgstr ""
745
-
746
- #: includes/admin/theme-form-close-tab.php:238
747
- #: includes/admin/theme-form-container-tab.php:112
748
- msgid "Choose a width for your border."
749
- msgstr ""
750
-
751
- #: includes/admin/theme-form-close-tab.php:248
752
- #: includes/admin/theme-form-container-tab.php:121
753
- msgid "Drop Shadow"
754
- msgstr ""
755
-
756
- #: includes/admin/theme-form-close-tab.php:256
757
- #: includes/admin/theme-form-container-tab.php:129
758
- msgid "Yes"
759
- msgstr ""
760
-
761
- #: includes/admin/theme-form-close-tab.php:256
762
- #: includes/admin/theme-form-container-tab.php:129
763
- msgid "No"
764
- msgstr ""
765
-
766
- #: includes/admin/theme-form-close-tab.php:263
767
- #: includes/admin/theme-form-container-tab.php:136
768
- msgid "Is boxshadow inset or drop."
769
- msgstr ""
770
-
771
- #: includes/admin/theme-form-close-tab.php:268
772
- #: includes/admin/theme-form-close-tab.php:335
773
- #: includes/admin/theme-form-container-tab.php:141
774
- #: includes/admin/theme-form-title-tab.php:88
775
- msgid "Horizontal Length"
776
- msgstr ""
777
-
778
- #: includes/admin/theme-form-close-tab.php:273
779
- #: includes/admin/theme-form-close-tab.php:340
780
- #: includes/admin/theme-form-container-tab.php:146
781
- #: includes/admin/theme-form-title-tab.php:93
782
- msgid "Shadow horizontal length."
783
- msgstr ""
784
-
785
- #: includes/admin/theme-form-close-tab.php:278
786
- #: includes/admin/theme-form-close-tab.php:345
787
- #: includes/admin/theme-form-container-tab.php:151
788
- #: includes/admin/theme-form-title-tab.php:98
789
- msgid "Vertical Length"
790
- msgstr ""
791
-
792
- #: includes/admin/theme-form-close-tab.php:283
793
- #: includes/admin/theme-form-close-tab.php:350
794
- #: includes/admin/theme-form-container-tab.php:156
795
- #: includes/admin/theme-form-title-tab.php:103
796
- msgid "Shadow vertical length."
797
- msgstr ""
798
-
799
- #: includes/admin/theme-form-close-tab.php:288
800
- #: includes/admin/theme-form-close-tab.php:355
801
- #: includes/admin/theme-form-container-tab.php:161
802
- #: includes/admin/theme-form-title-tab.php:108
803
- msgid "Blur Radius"
804
- msgstr ""
805
-
806
- #: includes/admin/theme-form-close-tab.php:293
807
- #: includes/admin/theme-form-close-tab.php:360
808
- #: includes/admin/theme-form-container-tab.php:166
809
- #: includes/admin/theme-form-title-tab.php:113
810
- msgid "Shadow blur radius."
811
- msgstr ""
812
-
813
- #: includes/admin/theme-form-close-tab.php:298
814
- #: includes/admin/theme-form-container-tab.php:171
815
- msgid "Spread"
816
- msgstr ""
817
-
818
- #: includes/admin/theme-form-close-tab.php:303
819
- #: includes/admin/theme-form-container-tab.php:176
820
- msgid "Shadow spread."
821
- msgstr ""
822
-
823
- #: includes/admin/theme-form-close-tab.php:312
824
- #: includes/admin/theme-form-close-tab.php:369
825
- #: includes/admin/theme-form-container-tab.php:185
826
- #: includes/admin/theme-form-title-tab.php:122
827
- msgid "Shadow color."
828
- msgstr ""
829
-
830
- #: includes/admin/theme-form-close-tab.php:322
831
- #: includes/admin/theme-form-close-tab.php:379
832
- #: includes/admin/theme-form-container-tab.php:195
833
- #: includes/admin/theme-form-title-tab.php:132
834
- msgid "Shadow opacity."
835
- msgstr ""
836
-
837
- #: includes/admin/theme-form-close-tab.php:331
838
- #: includes/admin/theme-form-title-tab.php:84
839
- msgid "Text Shadow"
840
- msgstr ""
841
-
842
- #: includes/admin/theme-form-container-tab.php:5
843
- msgid "Container"
844
- msgstr ""
845
-
846
- #: includes/admin/theme-form-container-tab.php:49
847
- msgid "Choose the background color for your container."
848
- msgstr ""
849
-
850
- #: includes/admin/theme-form-container-tab.php:77
851
- msgid "Choose a corner radius for your container button."
852
- msgstr ""
853
-
854
- #: includes/admin/theme-form-container-tab.php:93
855
- msgid "Choose a border style for your container button."
856
- msgstr ""
857
-
858
- #: includes/admin/theme-form-container-tab.php:102
859
- msgid "Choose the border color for your container button."
860
- msgstr ""
861
-
862
- #: includes/admin/theme-form-content-tab.php:32
863
- msgid "Choose the font color for your content button."
864
- msgstr ""
865
-
866
- #: includes/admin/theme-form-general-tab.php:31
867
- msgid "Enter a name for your theme."
868
- msgstr ""
869
-
870
- #: includes/admin/theme-form-overlay-tab.php:5
871
- msgid "Overlay"
872
- msgstr ""
873
-
874
- #: includes/admin/theme-form-overlay-tab.php:28
875
- msgid "Choose the overlay color."
876
- msgstr ""
877
-
878
- #: includes/admin/theme-form-overlay-tab.php:38
879
- msgid "The opacity value for the overlay."
880
- msgstr ""
881
-
882
- #: includes/admin/theme-form-title-tab.php:32
883
- msgid "Font color."
884
- msgstr ""
885
-
886
- #: includes/admin/theme-form-title-tab.php:64
887
- msgid "Align"
888
- msgstr ""
889
-
890
- #: includes/admin/theme-form-title-tab.php:75
891
- msgid "Text alignment."
892
- msgstr ""
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Easy Modal\n"
4
+ "POT-Creation-Date: 2014-07-05 21:57-0500\n"
5
+ "PO-Revision-Date: 2014-07-05 21:57-0500\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: en_US\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.6\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: classes/admin.php:53 classes/admin/menu.php:52 classes/admin/menu.php:53
22
+ msgid "Settings"
23
+ msgstr ""
24
+
25
+ #: classes/admin.php:55
26
+ msgid "Go Pro"
27
+ msgstr ""
28
+
29
+ #: classes/admin/api.php:151
30
+ msgid "An Unexpected HTTP Error occurred during the API request."
31
+ msgstr ""
32
+
33
+ #: classes/admin/api.php:158
34
+ msgid "An unknown error occurred"
35
+ msgstr ""
36
+
37
+ #: classes/admin/menu.php:30 classes/admin/menu.php:31
38
+ #: classes/controller/admin/modals.php:45
39
+ msgid "Modals"
40
+ msgstr ""
41
+
42
+ #: classes/admin/menu.php:41 classes/admin/menu.php:42
43
+ msgid "Theme"
44
+ msgstr ""
45
+
46
+ #: classes/admin/menu.php:63 classes/admin/menu.php:64
47
+ msgid "Help"
48
+ msgstr ""
49
+
50
+ #: classes/controller/admin/modals.php:61
51
+ msgid "Modal Updated."
52
+ msgstr ""
53
+
54
+ #: classes/controller/admin/modals.php:61
55
+ msgid "Modal Created."
56
+ msgstr ""
57
+
58
+ #: classes/controller/admin/modals.php:65
59
+ msgid "Edit Modal"
60
+ msgstr ""
61
+
62
+ #: classes/controller/admin/modals.php:65
63
+ msgid "Add New Modal"
64
+ msgstr ""
65
+
66
+ #: classes/controller/admin/modals.php:80
67
+ msgid "Modal cloned successfully"
68
+ msgstr ""
69
+
70
+ #: classes/controller/admin/modals.php:106
71
+ msgid " modals moved to the trash"
72
+ msgstr ""
73
+
74
+ #: classes/controller/admin/modals.php:118
75
+ msgid "Modal trash has been permanantly removed."
76
+ msgstr ""
77
+
78
+ #: classes/controller/admin/modals.php:143
79
+ msgid " modal restored from trash."
80
+ msgstr ""
81
+
82
+ #: classes/controller/admin/settings.php:33
83
+ msgid "Settings Updated."
84
+ msgstr ""
85
+
86
+ #: classes/controller/admin/settings.php:37
87
+ msgid "Easy Modal Settings"
88
+ msgstr ""
89
+
90
+ #: classes/controller/admin/theme.php:29
91
+ msgid "Theme Updated."
92
+ msgstr ""
93
+
94
+ #: classes/controller/admin/theme.php:33
95
+ msgid "Edit Theme"
96
+ msgstr ""
97
+
98
+ #: classes/view/admin/modal/form.php:9 classes/view/admin/modal/index.php:9
99
+ #: classes/view/admin/theme/form.php:9
100
+ msgid "Add New"
101
+ msgstr ""
102
+
103
+ #: classes/view/admin/modal/form.php:33 classes/view/admin/modal/form.php:57
104
+ #: classes/view/admin/settings/form.php:29
105
+ #: classes/view/admin/settings/form.php:53
106
+ #: classes/view/admin/theme/form.php:46
107
+ msgid "Publish"
108
+ msgstr ""
109
+
110
+ #: classes/view/admin/modal/form.php:39
111
+ #: classes/view/admin/settings/form.php:35
112
+ msgid "Clone"
113
+ msgstr ""
114
+
115
+ #: classes/view/admin/modal/form.php:43
116
+ #: classes/view/admin/settings/form.php:39
117
+ #: classes/view/admin/theme/form.php:52
118
+ msgid "Preview"
119
+ msgstr ""
120
+
121
+ #: classes/view/admin/modal/form.php:52
122
+ #: classes/view/admin/settings/form.php:48
123
+ msgid "Move to Trash"
124
+ msgstr ""
125
+
126
+ #: classes/view/admin/modal/index.php:129
127
+ #: includes/admin/modal-form-general-tab.php:25
128
+ #: includes/admin/theme-form-general-tab.php:25
129
+ msgid "Name"
130
+ msgstr ""
131
+
132
+ #: classes/view/admin/modal/index.php:130
133
+ msgid "Class"
134
+ msgstr ""
135
+
136
+ #: classes/view/admin/modal/index.php:131
137
+ msgid "Load Method"
138
+ msgstr ""
139
+
140
+ #: classes/view/admin/modal/index.php:162
141
+ #: classes/view/admin/modal/index.php:195
142
+ msgid "Delete"
143
+ msgstr ""
144
+
145
+ #: classes/view/admin/modal/index.php:164
146
+ msgid "Restore"
147
+ msgstr ""
148
+
149
+ #: classes/view/admin/modal/index.php:166
150
+ msgid "Empty Trash"
151
+ msgstr ""
152
+
153
+ #: classes/view/admin/modal/index.php:187
154
+ #, php-format
155
+ msgid "Edit &#8220;%s&#8221;"
156
+ msgstr ""
157
+
158
+ #: classes/view/admin/modal/index.php:191
159
+ msgid "Edit"
160
+ msgstr ""
161
+
162
+ #: classes/view/admin/modal/index.php:197
163
+ msgid "View"
164
+ msgstr ""
165
+
166
+ #: classes/view/admin/modal/index.php:216
167
+ msgid "Per Page / Post"
168
+ msgstr ""
169
+
170
+ #: classes/view/admin/modal/index.php:220
171
+ msgid "AJAX"
172
+ msgstr ""
173
+
174
+ #: classes/view/admin/modal/index.php:224
175
+ msgid "Sitewide"
176
+ msgstr ""
177
+
178
+ #: classes/view/admin/theme/form.php:25
179
+ msgid "Theme Preview"
180
+ msgstr ""
181
+
182
+ #: classes/view/admin/theme/form.php:28
183
+ msgid "Title Text"
184
+ msgstr ""
185
+
186
+ #: classes/view/admin/theme/form.php:30 classes/view/modal.php:80
187
+ #: includes/admin/options.php:60
188
+ msgid "&#215;"
189
+ msgstr ""
190
+
191
+ #: classes/view/admin/theme/form.php:62
192
+ msgid "Save"
193
+ msgstr ""
194
+
195
+ #: em-core.php:77 em-core.php:78
196
+ msgid "Test"
197
+ msgstr ""
198
+
199
+ #: em-core.php:80
200
+ msgid "-test"
201
+ msgstr ""
202
+
203
+ #: includes/admin/modal-form-close-tab.php:5
204
+ msgid "Close Options"
205
+ msgstr ""
206
+
207
+ #: includes/admin/modal-form-close-tab.php:25
208
+ msgid "Click Overlay to Close"
209
+ msgstr ""
210
+
211
+ #: includes/admin/modal-form-close-tab.php:28
212
+ msgid "Checking this will cause modal to close when user clicks on overlay."
213
+ msgstr ""
214
+
215
+ #: includes/admin/modal-form-close-tab.php:38
216
+ msgid "Press ESC to Close"
217
+ msgstr ""
218
+
219
+ #: includes/admin/modal-form-close-tab.php:41
220
+ msgid "Checking this will cause modal to close when user presses ESC key."
221
+ msgstr ""
222
+
223
+ #: includes/admin/modal-form-display-tab.php:5
224
+ msgid "Display Options"
225
+ msgstr ""
226
+
227
+ #: includes/admin/modal-form-display-tab.php:27
228
+ #: includes/admin/theme-form-close-tab.php:134
229
+ #: includes/admin/theme-form-title-tab.php:38
230
+ msgid "Size"
231
+ msgstr ""
232
+
233
+ #: includes/admin/modal-form-display-tab.php:40
234
+ msgid "Select the size of the modal."
235
+ msgstr ""
236
+
237
+ #: includes/admin/modal-form-display-tab.php:51
238
+ #: includes/admin/theme-form-close-tab.php:233
239
+ #: includes/admin/theme-form-container-tab.php:107
240
+ msgid "Width"
241
+ msgstr ""
242
+
243
+ #: includes/admin/modal-form-display-tab.php:64
244
+ msgid "Set a custom width for the modal."
245
+ msgstr ""
246
+
247
+ #: includes/admin/modal-form-display-tab.php:70
248
+ msgid "Auto Adjusted Height"
249
+ msgstr ""
250
+
251
+ #: includes/admin/modal-form-display-tab.php:73
252
+ msgid "Checking this option will set height to fix the content."
253
+ msgstr ""
254
+
255
+ #: includes/admin/modal-form-display-tab.php:80
256
+ msgid "Height"
257
+ msgstr ""
258
+
259
+ #: includes/admin/modal-form-display-tab.php:93
260
+ msgid "Set a custom height for the modal."
261
+ msgstr ""
262
+
263
+ #: includes/admin/modal-form-display-tab.php:104
264
+ msgid "Animation"
265
+ msgstr ""
266
+
267
+ #: includes/admin/modal-form-display-tab.php:109
268
+ msgid "Animation Type"
269
+ msgstr ""
270
+
271
+ #: includes/admin/modal-form-display-tab.php:121
272
+ msgid "Select an animation type for your modal."
273
+ msgstr ""
274
+
275
+ #: includes/admin/modal-form-display-tab.php:127
276
+ msgid "Animation Speed"
277
+ msgstr ""
278
+
279
+ #: includes/admin/modal-form-display-tab.php:133
280
+ msgid "Set the animation speed for the modal."
281
+ msgstr ""
282
+
283
+ #: includes/admin/modal-form-display-tab.php:139
284
+ msgid "Animation Origin"
285
+ msgstr ""
286
+
287
+ #: includes/admin/modal-form-display-tab.php:151
288
+ msgid "Choose where the animation will begin."
289
+ msgstr ""
290
+
291
+ #: includes/admin/modal-form-display-tab.php:162
292
+ #: includes/admin/theme-form-close-tab.php:70
293
+ msgid "Position"
294
+ msgstr ""
295
+
296
+ #: includes/admin/modal-form-display-tab.php:166
297
+ #: includes/admin/theme-form-close-tab.php:55
298
+ msgid "Location"
299
+ msgstr ""
300
+
301
+ #: includes/admin/modal-form-display-tab.php:177
302
+ #: includes/admin/theme-form-close-tab.php:66
303
+ msgid "Choose which corner the close button will be positioned."
304
+ msgstr ""
305
+
306
+ #: includes/admin/modal-form-display-tab.php:181
307
+ msgid "Fixed"
308
+ msgstr ""
309
+
310
+ #: includes/admin/modal-form-display-tab.php:184
311
+ msgid "Checking this fixes the position of the modal."
312
+ msgstr ""
313
+
314
+ #: includes/admin/modal-form-display-tab.php:189
315
+ #: includes/admin/options.php:200 includes/admin/theme-form-close-tab.php:74
316
+ msgid "Top"
317
+ msgstr ""
318
+
319
+ #: includes/admin/modal-form-display-tab.php:194
320
+ #: includes/admin/theme-form-close-tab.php:79
321
+ msgid "Top."
322
+ msgstr ""
323
+
324
+ #: includes/admin/modal-form-display-tab.php:199
325
+ #: includes/admin/options.php:202 includes/admin/theme-form-close-tab.php:94
326
+ msgid "Bottom"
327
+ msgstr ""
328
+
329
+ #: includes/admin/modal-form-display-tab.php:204
330
+ #: includes/admin/theme-form-close-tab.php:99
331
+ msgid "Bottom."
332
+ msgstr ""
333
+
334
+ #: includes/admin/modal-form-display-tab.php:209
335
+ #: includes/admin/options.php:141 includes/admin/options.php:201
336
+ #: includes/admin/theme-form-close-tab.php:84
337
+ msgid "Left"
338
+ msgstr ""
339
+
340
+ #: includes/admin/modal-form-display-tab.php:214
341
+ #: includes/admin/theme-form-close-tab.php:89
342
+ msgid "Left."
343
+ msgstr ""
344
+
345
+ #: includes/admin/modal-form-display-tab.php:219
346
+ #: includes/admin/options.php:143 includes/admin/options.php:203
347
+ #: includes/admin/theme-form-close-tab.php:104
348
+ msgid "Right"
349
+ msgstr ""
350
+
351
+ #: includes/admin/modal-form-display-tab.php:224
352
+ #: includes/admin/theme-form-close-tab.php:109
353
+ msgid "Right."
354
+ msgstr ""
355
+
356
+ #: includes/admin/modal-form-example-tab.php:5
357
+ msgid "Examples"
358
+ msgstr ""
359
+
360
+ #: includes/admin/modal-form-example-tab.php:14
361
+ msgid "Copy this class to the link/button you want to open this modal."
362
+ msgstr ""
363
+
364
+ #: includes/admin/modal-form-example-tab.php:18
365
+ msgid "Link Example"
366
+ msgstr ""
367
+
368
+ #: includes/admin/modal-form-example-tab.php:19
369
+ #: includes/admin/modal-form-example-tab.php:20
370
+ #: includes/admin/modal-form-example-tab.php:24
371
+ #: includes/admin/modal-form-example-tab.php:25
372
+ msgid "Open Modal"
373
+ msgstr ""
374
+
375
+ #: includes/admin/modal-form-example-tab.php:23
376
+ msgid "Button Example"
377
+ msgstr ""
378
+
379
+ #: includes/admin/modal-form-example-tab.php:27
380
+ msgid "Image Example"
381
+ msgstr ""
382
+
383
+ #: includes/admin/modal-form-general-tab.php:5
384
+ #: includes/admin/theme-form-general-tab.php:5
385
+ msgid "General"
386
+ msgstr ""
387
+
388
+ #: includes/admin/modal-form-general-tab.php:31
389
+ msgid "Enter a name for your modal."
390
+ msgstr ""
391
+
392
+ #: includes/admin/modal-form-general-tab.php:43
393
+ msgid "Load Type"
394
+ msgstr ""
395
+
396
+ #: includes/admin/modal-form-general-tab.php:48
397
+ msgid "Per Page/Post"
398
+ msgstr ""
399
+
400
+ #: includes/admin/modal-form-general-tab.php:49
401
+ msgid "Load Sitewide"
402
+ msgstr ""
403
+
404
+ #: includes/admin/modal-form-general-tab.php:50
405
+ msgid "Using AJAX"
406
+ msgstr ""
407
+
408
+ #: includes/admin/modal-form-general-tab.php:52
409
+ msgid "Load this modal per page, sitewide or using ajax."
410
+ msgstr ""
411
+
412
+ #: includes/admin/modal-form-general-tab.php:64
413
+ #: includes/admin/theme-form-title-tab.php:5
414
+ msgid "Title"
415
+ msgstr ""
416
+
417
+ #: includes/admin/modal-form-general-tab.php:70
418
+ msgid "The title that appears in the modal window."
419
+ msgstr ""
420
+
421
+ #: includes/admin/modal-form-general-tab.php:81
422
+ #: includes/admin/theme-form-content-tab.php:5
423
+ msgid "Content"
424
+ msgstr ""
425
+
426
+ #: includes/admin/modal-form-general-tab.php:96
427
+ msgid "Modal content. Can contain shortcodes."
428
+ msgstr ""
429
+
430
+ #: includes/admin/options.php:100
431
+ msgid "PX"
432
+ msgstr ""
433
+
434
+ #: includes/admin/options.php:101
435
+ msgid "%"
436
+ msgstr ""
437
+
438
+ #: includes/admin/options.php:102
439
+ msgid "EM"
440
+ msgstr ""
441
+
442
+ #: includes/admin/options.php:103
443
+ msgid "REM"
444
+ msgstr ""
445
+
446
+ #: includes/admin/options.php:111 includes/admin/options.php:186
447
+ msgid "None"
448
+ msgstr ""
449
+
450
+ #: includes/admin/options.php:112
451
+ msgid "Solid"
452
+ msgstr ""
453
+
454
+ #: includes/admin/options.php:113
455
+ msgid "Dotted"
456
+ msgstr ""
457
+
458
+ #: includes/admin/options.php:114
459
+ msgid "Dashed"
460
+ msgstr ""
461
+
462
+ #: includes/admin/options.php:115
463
+ msgid "Double"
464
+ msgstr ""
465
+
466
+ #: includes/admin/options.php:116
467
+ msgid "Groove"
468
+ msgstr ""
469
+
470
+ #: includes/admin/options.php:117 includes/admin/theme-form-close-tab.php:252
471
+ #: includes/admin/theme-form-container-tab.php:125
472
+ msgid "Inset"
473
+ msgstr ""
474
+
475
+ #: includes/admin/options.php:118
476
+ msgid "Outset"
477
+ msgstr ""
478
+
479
+ #: includes/admin/options.php:119
480
+ msgid "Ridge"
481
+ msgstr ""
482
+
483
+ #: includes/admin/options.php:127
484
+ msgid "Sans-Serif"
485
+ msgstr ""
486
+
487
+ #: includes/admin/options.php:128
488
+ msgid "Tahoma"
489
+ msgstr ""
490
+
491
+ #: includes/admin/options.php:129
492
+ msgid "Georgia"
493
+ msgstr ""
494
+
495
+ #: includes/admin/options.php:130
496
+ msgid "Comic Sans MS"
497
+ msgstr ""
498
+
499
+ #: includes/admin/options.php:131
500
+ msgid "Arial"
501
+ msgstr ""
502
+
503
+ #: includes/admin/options.php:132
504
+ msgid "Lucida Grande"
505
+ msgstr ""
506
+
507
+ #: includes/admin/options.php:133
508
+ msgid "Times New Roman"
509
+ msgstr ""
510
+
511
+ #: includes/admin/options.php:142
512
+ msgid "Center"
513
+ msgstr ""
514
+
515
+ #: includes/admin/options.php:152
516
+ msgid "-----------------------"
517
+ msgstr ""
518
+
519
+ #: includes/admin/options.php:160
520
+ msgid "Auto"
521
+ msgstr ""
522
+
523
+ #: includes/admin/options.php:161
524
+ msgid "Responsive"
525
+ msgstr ""
526
+
527
+ #: includes/admin/options.php:162
528
+ msgid "Normal"
529
+ msgstr ""
530
+
531
+ #: includes/admin/options.php:163
532
+ msgid "Nano"
533
+ msgstr ""
534
+
535
+ #: includes/admin/options.php:164
536
+ msgid "Tiny"
537
+ msgstr ""
538
+
539
+ #: includes/admin/options.php:165
540
+ msgid "Small"
541
+ msgstr ""
542
+
543
+ #: includes/admin/options.php:166
544
+ msgid "Medium"
545
+ msgstr ""
546
+
547
+ #: includes/admin/options.php:167
548
+ msgid "Large"
549
+ msgstr ""
550
+
551
+ #: includes/admin/options.php:168
552
+ msgid "X Large"
553
+ msgstr ""
554
+
555
+ #: includes/admin/options.php:176
556
+ msgid "Non-Responsive"
557
+ msgstr ""
558
+
559
+ #: includes/admin/options.php:177
560
+ msgid "Custom"
561
+ msgstr ""
562
+
563
+ #: includes/admin/options.php:187
564
+ msgid "Slide"
565
+ msgstr ""
566
+
567
+ #: includes/admin/options.php:188
568
+ msgid "Fade"
569
+ msgstr ""
570
+
571
+ #: includes/admin/options.php:189
572
+ msgid "Fade and Slide"
573
+ msgstr ""
574
+
575
+ #: includes/admin/options.php:190
576
+ msgid "Grow"
577
+ msgstr ""
578
+
579
+ #: includes/admin/options.php:191
580
+ msgid "Grow and Slide"
581
+ msgstr ""
582
+
583
+ #: includes/admin/options.php:204 includes/admin/options.php:221
584
+ #: includes/admin/options.php:237
585
+ msgid "Top Left"
586
+ msgstr ""
587
+
588
+ #: includes/admin/options.php:205 includes/admin/options.php:222
589
+ msgid "Top Center"
590
+ msgstr ""
591
+
592
+ #: includes/admin/options.php:206 includes/admin/options.php:223
593
+ #: includes/admin/options.php:238
594
+ msgid "Top Right"
595
+ msgstr ""
596
+
597
+ #: includes/admin/options.php:207 includes/admin/options.php:224
598
+ msgid "Middle Left"
599
+ msgstr ""
600
+
601
+ #: includes/admin/options.php:208 includes/admin/options.php:225
602
+ msgid "Middle Center"
603
+ msgstr ""
604
+
605
+ #: includes/admin/options.php:209 includes/admin/options.php:226
606
+ msgid "Middle Right"
607
+ msgstr ""
608
+
609
+ #: includes/admin/options.php:210 includes/admin/options.php:227
610
+ #: includes/admin/options.php:239
611
+ msgid "Bottom Left"
612
+ msgstr ""
613
+
614
+ #: includes/admin/options.php:211 includes/admin/options.php:228
615
+ msgid "Bottom Center"
616
+ msgstr ""
617
+
618
+ #: includes/admin/options.php:212 includes/admin/options.php:229
619
+ #: includes/admin/options.php:240
620
+ msgid "Bottom Right"
621
+ msgstr ""
622
+
623
+ #: includes/admin/postmeta.php:9
624
+ msgid "Select which modals to load"
625
+ msgstr ""
626
+
627
+ #: includes/admin/postmeta.php:12
628
+ msgid " checked=\"checked\""
629
+ msgstr ""
630
+
631
+ #: includes/admin/theme-form-close-tab.php:5
632
+ msgid "Close"
633
+ msgstr ""
634
+
635
+ #: includes/admin/theme-form-close-tab.php:24
636
+ msgid "Text"
637
+ msgstr ""
638
+
639
+ #: includes/admin/theme-form-close-tab.php:28
640
+ msgid "Enter the close button text."
641
+ msgstr ""
642
+
643
+ #: includes/admin/theme-form-close-tab.php:39
644
+ #: includes/admin/theme-form-container-tab.php:26
645
+ msgid "Padding"
646
+ msgstr ""
647
+
648
+ #: includes/admin/theme-form-close-tab.php:44
649
+ #: includes/admin/theme-form-container-tab.php:31
650
+ msgid "Padding."
651
+ msgstr ""
652
+
653
+ #: includes/admin/theme-form-close-tab.php:120
654
+ #: includes/admin/theme-form-content-tab.php:24
655
+ #: includes/admin/theme-form-title-tab.php:24
656
+ msgid "Font"
657
+ msgstr ""
658
+
659
+ #: includes/admin/theme-form-close-tab.php:124
660
+ #: includes/admin/theme-form-close-tab.php:169
661
+ #: includes/admin/theme-form-close-tab.php:224
662
+ #: includes/admin/theme-form-close-tab.php:308
663
+ #: includes/admin/theme-form-close-tab.php:365
664
+ #: includes/admin/theme-form-container-tab.php:45
665
+ #: includes/admin/theme-form-container-tab.php:98
666
+ #: includes/admin/theme-form-container-tab.php:181
667
+ #: includes/admin/theme-form-content-tab.php:28
668
+ #: includes/admin/theme-form-overlay-tab.php:24
669
+ #: includes/admin/theme-form-title-tab.php:28
670
+ #: includes/admin/theme-form-title-tab.php:118
671
+ msgid "Color"
672
+ msgstr ""
673
+
674
+ #: includes/admin/theme-form-close-tab.php:128
675
+ msgid "Choose the font color for your close button."
676
+ msgstr ""
677
+
678
+ #: includes/admin/theme-form-close-tab.php:139
679
+ #: includes/admin/theme-form-title-tab.php:43
680
+ msgid "Font size."
681
+ msgstr ""
682
+
683
+ #: includes/admin/theme-form-close-tab.php:144
684
+ #: includes/admin/theme-form-content-tab.php:49
685
+ #: includes/admin/theme-form-title-tab.php:48
686
+ msgid "Family"
687
+ msgstr ""
688
+
689
+ #: includes/admin/theme-form-close-tab.php:155
690
+ #: includes/admin/theme-form-content-tab.php:60
691
+ #: includes/admin/theme-form-title-tab.php:59
692
+ msgid "Font family."
693
+ msgstr ""
694
+
695
+ #: includes/admin/theme-form-close-tab.php:165
696
+ #: includes/admin/theme-form-container-tab.php:41
697
+ msgid "Background"
698
+ msgstr ""
699
+
700
+ #: includes/admin/theme-form-close-tab.php:173
701
+ msgid "Choose the background color for your close button."
702
+ msgstr ""
703
+
704
+ #: includes/admin/theme-form-close-tab.php:178
705
+ #: includes/admin/theme-form-close-tab.php:317
706
+ #: includes/admin/theme-form-close-tab.php:374
707
+ #: includes/admin/theme-form-container-tab.php:54
708
+ #: includes/admin/theme-form-container-tab.php:190
709
+ #: includes/admin/theme-form-overlay-tab.php:33
710
+ #: includes/admin/theme-form-title-tab.php:127
711
+ msgid "Opacity"
712
+ msgstr ""
713
+
714
+ #: includes/admin/theme-form-close-tab.php:183
715
+ #: includes/admin/theme-form-container-tab.php:59
716
+ msgid "Background opacity."
717
+ msgstr ""
718
+
719
+ #: includes/admin/theme-form-close-tab.php:194
720
+ #: includes/admin/theme-form-container-tab.php:68
721
+ msgid "Border"
722
+ msgstr ""
723
+
724
+ #: includes/admin/theme-form-close-tab.php:198
725
+ #: includes/admin/theme-form-container-tab.php:72
726
+ msgid "Radius"
727
+ msgstr ""
728
+
729
+ #: includes/admin/theme-form-close-tab.php:203
730
+ msgid "Choose a corner radius for your close button."
731
+ msgstr ""
732
+
733
+ #: includes/admin/theme-form-close-tab.php:208
734
+ #: includes/admin/theme-form-container-tab.php:82
735
+ msgid "Style"
736
+ msgstr ""
737
+
738
+ #: includes/admin/theme-form-close-tab.php:219
739
+ msgid "Choose a border style for your close button."
740
+ msgstr ""
741
+
742
+ #: includes/admin/theme-form-close-tab.php:228
743
+ msgid "Choose the border color for your close button."
744
+ msgstr ""
745
+
746
+ #: includes/admin/theme-form-close-tab.php:238
747
+ #: includes/admin/theme-form-container-tab.php:112
748
+ msgid "Choose a width for your border."
749
+ msgstr ""
750
+
751
+ #: includes/admin/theme-form-close-tab.php:248
752
+ #: includes/admin/theme-form-container-tab.php:121
753
+ msgid "Drop Shadow"
754
+ msgstr ""
755
+
756
+ #: includes/admin/theme-form-close-tab.php:256
757
+ #: includes/admin/theme-form-container-tab.php:129
758
+ msgid "Yes"
759
+ msgstr ""
760
+
761
+ #: includes/admin/theme-form-close-tab.php:256
762
+ #: includes/admin/theme-form-container-tab.php:129
763
+ msgid "No"
764
+ msgstr ""
765
+
766
+ #: includes/admin/theme-form-close-tab.php:263
767
+ #: includes/admin/theme-form-container-tab.php:136
768
+ msgid "Is boxshadow inset or drop."
769
+ msgstr ""
770
+
771
+ #: includes/admin/theme-form-close-tab.php:268
772
+ #: includes/admin/theme-form-close-tab.php:335
773
+ #: includes/admin/theme-form-container-tab.php:141
774
+ #: includes/admin/theme-form-title-tab.php:88
775
+ msgid "Horizontal Length"
776
+ msgstr ""
777
+
778
+ #: includes/admin/theme-form-close-tab.php:273
779
+ #: includes/admin/theme-form-close-tab.php:340
780
+ #: includes/admin/theme-form-container-tab.php:146
781
+ #: includes/admin/theme-form-title-tab.php:93
782
+ msgid "Shadow horizontal length."
783
+ msgstr ""
784
+
785
+ #: includes/admin/theme-form-close-tab.php:278
786
+ #: includes/admin/theme-form-close-tab.php:345
787
+ #: includes/admin/theme-form-container-tab.php:151
788
+ #: includes/admin/theme-form-title-tab.php:98
789
+ msgid "Vertical Length"
790
+ msgstr ""
791
+
792
+ #: includes/admin/theme-form-close-tab.php:283
793
+ #: includes/admin/theme-form-close-tab.php:350
794
+ #: includes/admin/theme-form-container-tab.php:156
795
+ #: includes/admin/theme-form-title-tab.php:103
796
+ msgid "Shadow vertical length."
797
+ msgstr ""
798
+
799
+ #: includes/admin/theme-form-close-tab.php:288
800
+ #: includes/admin/theme-form-close-tab.php:355
801
+ #: includes/admin/theme-form-container-tab.php:161
802
+ #: includes/admin/theme-form-title-tab.php:108
803
+ msgid "Blur Radius"
804
+ msgstr ""
805
+
806
+ #: includes/admin/theme-form-close-tab.php:293
807
+ #: includes/admin/theme-form-close-tab.php:360
808
+ #: includes/admin/theme-form-container-tab.php:166
809
+ #: includes/admin/theme-form-title-tab.php:113
810
+ msgid "Shadow blur radius."
811
+ msgstr ""
812
+
813
+ #: includes/admin/theme-form-close-tab.php:298
814
+ #: includes/admin/theme-form-container-tab.php:171
815
+ msgid "Spread"
816
+ msgstr ""
817
+
818
+ #: includes/admin/theme-form-close-tab.php:303
819
+ #: includes/admin/theme-form-container-tab.php:176
820
+ msgid "Shadow spread."
821
+ msgstr ""
822
+
823
+ #: includes/admin/theme-form-close-tab.php:312
824
+ #: includes/admin/theme-form-close-tab.php:369
825
+ #: includes/admin/theme-form-container-tab.php:185
826
+ #: includes/admin/theme-form-title-tab.php:122
827
+ msgid "Shadow color."
828
+ msgstr ""
829
+
830
+ #: includes/admin/theme-form-close-tab.php:322
831
+ #: includes/admin/theme-form-close-tab.php:379
832
+ #: includes/admin/theme-form-container-tab.php:195
833
+ #: includes/admin/theme-form-title-tab.php:132
834
+ msgid "Shadow opacity."
835
+ msgstr ""
836
+
837
+ #: includes/admin/theme-form-close-tab.php:331
838
+ #: includes/admin/theme-form-title-tab.php:84
839
+ msgid "Text Shadow"
840
+ msgstr ""
841
+
842
+ #: includes/admin/theme-form-container-tab.php:5
843
+ msgid "Container"
844
+ msgstr ""
845
+
846
+ #: includes/admin/theme-form-container-tab.php:49
847
+ msgid "Choose the background color for your container."
848
+ msgstr ""
849
+
850
+ #: includes/admin/theme-form-container-tab.php:77
851
+ msgid "Choose a corner radius for your container button."
852
+ msgstr ""
853
+
854
+ #: includes/admin/theme-form-container-tab.php:93
855
+ msgid "Choose a border style for your container button."
856
+ msgstr ""
857
+
858
+ #: includes/admin/theme-form-container-tab.php:102
859
+ msgid "Choose the border color for your container button."
860
+ msgstr ""
861
+
862
+ #: includes/admin/theme-form-content-tab.php:32
863
+ msgid "Choose the font color for your content button."
864
+ msgstr ""
865
+
866
+ #: includes/admin/theme-form-general-tab.php:31
867
+ msgid "Enter a name for your theme."
868
+ msgstr ""
869
+
870
+ #: includes/admin/theme-form-overlay-tab.php:5
871
+ msgid "Overlay"
872
+ msgstr ""
873
+
874
+ #: includes/admin/theme-form-overlay-tab.php:28
875
+ msgid "Choose the overlay color."
876
+ msgstr ""
877
+
878
+ #: includes/admin/theme-form-overlay-tab.php:38
879
+ msgid "The opacity value for the overlay."
880
+ msgstr ""
881
+
882
+ #: includes/admin/theme-form-title-tab.php:32
883
+ msgid "Font color."
884
+ msgstr ""
885
+
886
+ #: includes/admin/theme-form-title-tab.php:64
887
+ msgid "Align"
888
+ msgstr ""
889
+
890
+ #: includes/admin/theme-form-title-tab.php:75
891
+ msgid "Text alignment."
892
+ msgstr ""
languages/easy-modal-pt.po CHANGED
@@ -1,892 +1,892 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Easy Modal\n"
4
- "POT-Creation-Date: 2014-07-05 23:44-0500\n"
5
- "PO-Revision-Date: 2014-07-05 23:44-0500\n"
6
- "Last-Translator: Daniel Iser <danieliser@wizardinternetsolutions.com>\n"
7
- "Language-Team: Daniel Iser <danieliser@wizardinternetsolutions.com>\n"
8
- "Language: pt\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.6\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #: classes/admin.php:53 classes/admin/menu.php:52 classes/admin/menu.php:53
22
- msgid "Settings"
23
- msgstr ""
24
-
25
- #: classes/admin.php:55
26
- msgid "Go Pro"
27
- msgstr ""
28
-
29
- #: classes/admin/api.php:151
30
- msgid "An Unexpected HTTP Error occurred during the API request."
31
- msgstr ""
32
-
33
- #: classes/admin/api.php:158
34
- msgid "An unknown error occurred"
35
- msgstr ""
36
-
37
- #: classes/admin/menu.php:30 classes/admin/menu.php:31
38
- #: classes/controller/admin/modals.php:45
39
- msgid "Modals"
40
- msgstr ""
41
-
42
- #: classes/admin/menu.php:41 classes/admin/menu.php:42
43
- msgid "Theme"
44
- msgstr ""
45
-
46
- #: classes/admin/menu.php:63 classes/admin/menu.php:64
47
- msgid "Help"
48
- msgstr ""
49
-
50
- #: classes/controller/admin/modals.php:61
51
- msgid "Modal Updated."
52
- msgstr ""
53
-
54
- #: classes/controller/admin/modals.php:61
55
- msgid "Modal Created."
56
- msgstr ""
57
-
58
- #: classes/controller/admin/modals.php:65
59
- msgid "Edit Modal"
60
- msgstr ""
61
-
62
- #: classes/controller/admin/modals.php:65
63
- msgid "Add New Modal"
64
- msgstr ""
65
-
66
- #: classes/controller/admin/modals.php:80
67
- msgid "Modal cloned successfully"
68
- msgstr ""
69
-
70
- #: classes/controller/admin/modals.php:106
71
- msgid " modals moved to the trash"
72
- msgstr ""
73
-
74
- #: classes/controller/admin/modals.php:118
75
- msgid "Modal trash has been permanantly removed."
76
- msgstr ""
77
-
78
- #: classes/controller/admin/modals.php:143
79
- msgid " modal restored from trash."
80
- msgstr ""
81
-
82
- #: classes/controller/admin/settings.php:33
83
- msgid "Settings Updated."
84
- msgstr ""
85
-
86
- #: classes/controller/admin/settings.php:37
87
- msgid "Easy Modal Settings"
88
- msgstr ""
89
-
90
- #: classes/controller/admin/theme.php:29
91
- msgid "Theme Updated."
92
- msgstr ""
93
-
94
- #: classes/controller/admin/theme.php:33
95
- msgid "Edit Theme"
96
- msgstr ""
97
-
98
- #: classes/view/admin/modal/form.php:9 classes/view/admin/modal/index.php:9
99
- #: classes/view/admin/theme/form.php:9
100
- msgid "Add New"
101
- msgstr ""
102
-
103
- #: classes/view/admin/modal/form.php:33 classes/view/admin/modal/form.php:57
104
- #: classes/view/admin/settings/form.php:29
105
- #: classes/view/admin/settings/form.php:53
106
- #: classes/view/admin/theme/form.php:46
107
- msgid "Publish"
108
- msgstr ""
109
-
110
- #: classes/view/admin/modal/form.php:39
111
- #: classes/view/admin/settings/form.php:35
112
- msgid "Clone"
113
- msgstr ""
114
-
115
- #: classes/view/admin/modal/form.php:43
116
- #: classes/view/admin/settings/form.php:39
117
- #: classes/view/admin/theme/form.php:52
118
- msgid "Preview"
119
- msgstr ""
120
-
121
- #: classes/view/admin/modal/form.php:52
122
- #: classes/view/admin/settings/form.php:48
123
- msgid "Move to Trash"
124
- msgstr ""
125
-
126
- #: classes/view/admin/modal/index.php:129
127
- #: includes/admin/modal-form-general-tab.php:25
128
- #: includes/admin/theme-form-general-tab.php:25
129
- msgid "Name"
130
- msgstr ""
131
-
132
- #: classes/view/admin/modal/index.php:130
133
- msgid "Class"
134
- msgstr ""
135
-
136
- #: classes/view/admin/modal/index.php:131
137
- msgid "Load Method"
138
- msgstr ""
139
-
140
- #: classes/view/admin/modal/index.php:162
141
- #: classes/view/admin/modal/index.php:195
142
- msgid "Delete"
143
- msgstr ""
144
-
145
- #: classes/view/admin/modal/index.php:164
146
- msgid "Restore"
147
- msgstr ""
148
-
149
- #: classes/view/admin/modal/index.php:166
150
- msgid "Empty Trash"
151
- msgstr ""
152
-
153
- #: classes/view/admin/modal/index.php:187
154
- #, php-format
155
- msgid "Edit &#8220;%s&#8221;"
156
- msgstr ""
157
-
158
- #: classes/view/admin/modal/index.php:191
159
- msgid "Edit"
160
- msgstr ""
161
-
162
- #: classes/view/admin/modal/index.php:197
163
- msgid "View"
164
- msgstr ""
165
-
166
- #: classes/view/admin/modal/index.php:216
167
- msgid "Per Page / Post"
168
- msgstr ""
169
-
170
- #: classes/view/admin/modal/index.php:220
171
- msgid "AJAX"
172
- msgstr ""
173
-
174
- #: classes/view/admin/modal/index.php:224
175
- msgid "Sitewide"
176
- msgstr ""
177
-
178
- #: classes/view/admin/theme/form.php:25
179
- msgid "Theme Preview"
180
- msgstr ""
181
-
182
- #: classes/view/admin/theme/form.php:28
183
- msgid "Title Text"
184
- msgstr ""
185
-
186
- #: classes/view/admin/theme/form.php:30 classes/view/modal.php:80
187
- #: includes/admin/options.php:60
188
- msgid "&#215;"
189
- msgstr ""
190
-
191
- #: classes/view/admin/theme/form.php:62
192
- msgid "Save"
193
- msgstr ""
194
-
195
- #: em-core.php:77 em-core.php:78
196
- msgid "Test"
197
- msgstr ""
198
-
199
- #: em-core.php:80
200
- msgid "-test"
201
- msgstr ""
202
-
203
- #: includes/admin/modal-form-close-tab.php:5
204
- msgid "Close Options"
205
- msgstr ""
206
-
207
- #: includes/admin/modal-form-close-tab.php:25
208
- msgid "Click Overlay to Close"
209
- msgstr ""
210
-
211
- #: includes/admin/modal-form-close-tab.php:28
212
- msgid "Checking this will cause modal to close when user clicks on overlay."
213
- msgstr ""
214
-
215
- #: includes/admin/modal-form-close-tab.php:38
216
- msgid "Press ESC to Close"
217
- msgstr ""
218
-
219
- #: includes/admin/modal-form-close-tab.php:41
220
- msgid "Checking this will cause modal to close when user presses ESC key."
221
- msgstr ""
222
-
223
- #: includes/admin/modal-form-display-tab.php:5
224
- msgid "Display Options"
225
- msgstr ""
226
-
227
- #: includes/admin/modal-form-display-tab.php:27
228
- #: includes/admin/theme-form-close-tab.php:134
229
- #: includes/admin/theme-form-title-tab.php:38
230
- msgid "Size"
231
- msgstr ""
232
-
233
- #: includes/admin/modal-form-display-tab.php:40
234
- msgid "Select the size of the modal."
235
- msgstr ""
236
-
237
- #: includes/admin/modal-form-display-tab.php:51
238
- #: includes/admin/theme-form-close-tab.php:233
239
- #: includes/admin/theme-form-container-tab.php:107
240
- msgid "Width"
241
- msgstr ""
242
-
243
- #: includes/admin/modal-form-display-tab.php:64
244
- msgid "Set a custom width for the modal."
245
- msgstr ""
246
-
247
- #: includes/admin/modal-form-display-tab.php:70
248
- msgid "Auto Adjusted Height"
249
- msgstr ""
250
-
251
- #: includes/admin/modal-form-display-tab.php:73
252
- msgid "Checking this option will set height to fix the content."
253
- msgstr ""
254
-
255
- #: includes/admin/modal-form-display-tab.php:80
256
- msgid "Height"
257
- msgstr ""
258
-
259
- #: includes/admin/modal-form-display-tab.php:93
260
- msgid "Set a custom height for the modal."
261
- msgstr ""
262
-
263
- #: includes/admin/modal-form-display-tab.php:104
264
- msgid "Animation"
265
- msgstr ""
266
-
267
- #: includes/admin/modal-form-display-tab.php:109
268
- msgid "Animation Type"
269
- msgstr ""
270
-
271
- #: includes/admin/modal-form-display-tab.php:121
272
- msgid "Select an animation type for your modal."
273
- msgstr ""
274
-
275
- #: includes/admin/modal-form-display-tab.php:127
276
- msgid "Animation Speed"
277
- msgstr ""
278
-
279
- #: includes/admin/modal-form-display-tab.php:133
280
- msgid "Set the animation speed for the modal."
281
- msgstr ""
282
-
283
- #: includes/admin/modal-form-display-tab.php:139
284
- msgid "Animation Origin"
285
- msgstr ""
286
-
287
- #: includes/admin/modal-form-display-tab.php:151
288
- msgid "Choose where the animation will begin."
289
- msgstr ""
290
-
291
- #: includes/admin/modal-form-display-tab.php:162
292
- #: includes/admin/theme-form-close-tab.php:70
293
- msgid "Position"
294
- msgstr ""
295
-
296
- #: includes/admin/modal-form-display-tab.php:166
297
- #: includes/admin/theme-form-close-tab.php:55
298
- msgid "Location"
299
- msgstr ""
300
-
301
- #: includes/admin/modal-form-display-tab.php:177
302
- #: includes/admin/theme-form-close-tab.php:66
303
- msgid "Choose which corner the close button will be positioned."
304
- msgstr ""
305
-
306
- #: includes/admin/modal-form-display-tab.php:181
307
- msgid "Fixed"
308
- msgstr ""
309
-
310
- #: includes/admin/modal-form-display-tab.php:184
311
- msgid "Checking this fixes the position of the modal."
312
- msgstr ""
313
-
314
- #: includes/admin/modal-form-display-tab.php:189
315
- #: includes/admin/options.php:200 includes/admin/theme-form-close-tab.php:74
316
- msgid "Top"
317
- msgstr ""
318
-
319
- #: includes/admin/modal-form-display-tab.php:194
320
- #: includes/admin/theme-form-close-tab.php:79
321
- msgid "Top."
322
- msgstr ""
323
-
324
- #: includes/admin/modal-form-display-tab.php:199
325
- #: includes/admin/options.php:202 includes/admin/theme-form-close-tab.php:94
326
- msgid "Bottom"
327
- msgstr ""
328
-
329
- #: includes/admin/modal-form-display-tab.php:204
330
- #: includes/admin/theme-form-close-tab.php:99
331
- msgid "Bottom."
332
- msgstr ""
333
-
334
- #: includes/admin/modal-form-display-tab.php:209
335
- #: includes/admin/options.php:141 includes/admin/options.php:201
336
- #: includes/admin/theme-form-close-tab.php:84
337
- msgid "Left"
338
- msgstr ""
339
-
340
- #: includes/admin/modal-form-display-tab.php:214
341
- #: includes/admin/theme-form-close-tab.php:89
342
- msgid "Left."
343
- msgstr ""
344
-
345
- #: includes/admin/modal-form-display-tab.php:219
346
- #: includes/admin/options.php:143 includes/admin/options.php:203
347
- #: includes/admin/theme-form-close-tab.php:104
348
- msgid "Right"
349
- msgstr ""
350
-
351
- #: includes/admin/modal-form-display-tab.php:224
352
- #: includes/admin/theme-form-close-tab.php:109
353
- msgid "Right."
354
- msgstr ""
355
-
356
- #: includes/admin/modal-form-example-tab.php:5
357
- msgid "Examples"
358
- msgstr ""
359
-
360
- #: includes/admin/modal-form-example-tab.php:14
361
- msgid "Copy this class to the link/button you want to open this modal."
362
- msgstr ""
363
-
364
- #: includes/admin/modal-form-example-tab.php:18
365
- msgid "Link Example"
366
- msgstr ""
367
-
368
- #: includes/admin/modal-form-example-tab.php:19
369
- #: includes/admin/modal-form-example-tab.php:20
370
- #: includes/admin/modal-form-example-tab.php:24
371
- #: includes/admin/modal-form-example-tab.php:25
372
- msgid "Open Modal"
373
- msgstr ""
374
-
375
- #: includes/admin/modal-form-example-tab.php:23
376
- msgid "Button Example"
377
- msgstr ""
378
-
379
- #: includes/admin/modal-form-example-tab.php:27
380
- msgid "Image Example"
381
- msgstr ""
382
-
383
- #: includes/admin/modal-form-general-tab.php:5
384
- #: includes/admin/theme-form-general-tab.php:5
385
- msgid "General"
386
- msgstr ""
387
-
388
- #: includes/admin/modal-form-general-tab.php:31
389
- msgid "Enter a name for your modal."
390
- msgstr ""
391
-
392
- #: includes/admin/modal-form-general-tab.php:43
393
- msgid "Load Type"
394
- msgstr ""
395
-
396
- #: includes/admin/modal-form-general-tab.php:48
397
- msgid "Per Page/Post"
398
- msgstr ""
399
-
400
- #: includes/admin/modal-form-general-tab.php:49
401
- msgid "Load Sitewide"
402
- msgstr ""
403
-
404
- #: includes/admin/modal-form-general-tab.php:50
405
- msgid "Using AJAX"
406
- msgstr ""
407
-
408
- #: includes/admin/modal-form-general-tab.php:52
409
- msgid "Load this modal per page, sitewide or using ajax."
410
- msgstr ""
411
-
412
- #: includes/admin/modal-form-general-tab.php:64
413
- #: includes/admin/theme-form-title-tab.php:5
414
- msgid "Title"
415
- msgstr ""
416
-
417
- #: includes/admin/modal-form-general-tab.php:70
418
- msgid "The title that appears in the modal window."
419
- msgstr ""
420
-
421
- #: includes/admin/modal-form-general-tab.php:81
422
- #: includes/admin/theme-form-content-tab.php:5
423
- msgid "Content"
424
- msgstr ""
425
-
426
- #: includes/admin/modal-form-general-tab.php:96
427
- msgid "Modal content. Can contain shortcodes."
428
- msgstr ""
429
-
430
- #: includes/admin/options.php:100
431
- msgid "PX"
432
- msgstr ""
433
-
434
- #: includes/admin/options.php:101
435
- msgid "%"
436
- msgstr ""
437
-
438
- #: includes/admin/options.php:102
439
- msgid "EM"
440
- msgstr ""
441
-
442
- #: includes/admin/options.php:103
443
- msgid "REM"
444
- msgstr ""
445
-
446
- #: includes/admin/options.php:111 includes/admin/options.php:186
447
- msgid "None"
448
- msgstr ""
449
-
450
- #: includes/admin/options.php:112
451
- msgid "Solid"
452
- msgstr ""
453
-
454
- #: includes/admin/options.php:113
455
- msgid "Dotted"
456
- msgstr ""
457
-
458
- #: includes/admin/options.php:114
459
- msgid "Dashed"
460
- msgstr ""
461
-
462
- #: includes/admin/options.php:115
463
- msgid "Double"
464
- msgstr ""
465
-
466
- #: includes/admin/options.php:116
467
- msgid "Groove"
468
- msgstr ""
469
-
470
- #: includes/admin/options.php:117 includes/admin/theme-form-close-tab.php:252
471
- #: includes/admin/theme-form-container-tab.php:125
472
- msgid "Inset"
473
- msgstr ""
474
-
475
- #: includes/admin/options.php:118
476
- msgid "Outset"
477
- msgstr ""
478
-
479
- #: includes/admin/options.php:119
480
- msgid "Ridge"
481
- msgstr ""
482
-
483
- #: includes/admin/options.php:127
484
- msgid "Sans-Serif"
485
- msgstr ""
486
-
487
- #: includes/admin/options.php:128
488
- msgid "Tahoma"
489
- msgstr ""
490
-
491
- #: includes/admin/options.php:129
492
- msgid "Georgia"
493
- msgstr ""
494
-
495
- #: includes/admin/options.php:130
496
- msgid "Comic Sans MS"
497
- msgstr ""
498
-
499
- #: includes/admin/options.php:131
500
- msgid "Arial"
501
- msgstr ""
502
-
503
- #: includes/admin/options.php:132
504
- msgid "Lucida Grande"
505
- msgstr ""
506
-
507
- #: includes/admin/options.php:133
508
- msgid "Times New Roman"
509
- msgstr ""
510
-
511
- #: includes/admin/options.php:142
512
- msgid "Center"
513
- msgstr ""
514
-
515
- #: includes/admin/options.php:152
516
- msgid "-----------------------"
517
- msgstr ""
518
-
519
- #: includes/admin/options.php:160
520
- msgid "Auto"
521
- msgstr ""
522
-
523
- #: includes/admin/options.php:161
524
- msgid "Responsive"
525
- msgstr ""
526
-
527
- #: includes/admin/options.php:162
528
- msgid "Normal"
529
- msgstr ""
530
-
531
- #: includes/admin/options.php:163
532
- msgid "Nano"
533
- msgstr ""
534
-
535
- #: includes/admin/options.php:164
536
- msgid "Tiny"
537
- msgstr ""
538
-
539
- #: includes/admin/options.php:165
540
- msgid "Small"
541
- msgstr ""
542
-
543
- #: includes/admin/options.php:166
544
- msgid "Medium"
545
- msgstr ""
546
-
547
- #: includes/admin/options.php:167
548
- msgid "Large"
549
- msgstr ""
550
-
551
- #: includes/admin/options.php:168
552
- msgid "X Large"
553
- msgstr ""
554
-
555
- #: includes/admin/options.php:176
556
- msgid "Non-Responsive"
557
- msgstr ""
558
-
559
- #: includes/admin/options.php:177
560
- msgid "Custom"
561
- msgstr ""
562
-
563
- #: includes/admin/options.php:187
564
- msgid "Slide"
565
- msgstr ""
566
-
567
- #: includes/admin/options.php:188
568
- msgid "Fade"
569
- msgstr ""
570
-
571
- #: includes/admin/options.php:189
572
- msgid "Fade and Slide"
573
- msgstr ""
574
-
575
- #: includes/admin/options.php:190
576
- msgid "Grow"
577
- msgstr ""
578
-
579
- #: includes/admin/options.php:191
580
- msgid "Grow and Slide"
581
- msgstr ""
582
-
583
- #: includes/admin/options.php:204 includes/admin/options.php:221
584
- #: includes/admin/options.php:237
585
- msgid "Top Left"
586
- msgstr ""
587
-
588
- #: includes/admin/options.php:205 includes/admin/options.php:222
589
- msgid "Top Center"
590
- msgstr ""
591
-
592
- #: includes/admin/options.php:206 includes/admin/options.php:223
593
- #: includes/admin/options.php:238
594
- msgid "Top Right"
595
- msgstr ""
596
-
597
- #: includes/admin/options.php:207 includes/admin/options.php:224
598
- msgid "Middle Left"
599
- msgstr ""
600
-
601
- #: includes/admin/options.php:208 includes/admin/options.php:225
602
- msgid "Middle Center"
603
- msgstr ""
604
-
605
- #: includes/admin/options.php:209 includes/admin/options.php:226
606
- msgid "Middle Right"
607
- msgstr ""
608
-
609
- #: includes/admin/options.php:210 includes/admin/options.php:227
610
- #: includes/admin/options.php:239
611
- msgid "Bottom Left"
612
- msgstr ""
613
-
614
- #: includes/admin/options.php:211 includes/admin/options.php:228
615
- msgid "Bottom Center"
616
- msgstr ""
617
-
618
- #: includes/admin/options.php:212 includes/admin/options.php:229
619
- #: includes/admin/options.php:240
620
- msgid "Bottom Right"
621
- msgstr ""
622
-
623
- #: includes/admin/postmeta.php:9
624
- msgid "Select which modals to load"
625
- msgstr ""
626
-
627
- #: includes/admin/postmeta.php:12
628
- msgid " checked=\"checked\""
629
- msgstr ""
630
-
631
- #: includes/admin/theme-form-close-tab.php:5
632
- msgid "Close"
633
- msgstr ""
634
-
635
- #: includes/admin/theme-form-close-tab.php:24
636
- msgid "Text"
637
- msgstr ""
638
-
639
- #: includes/admin/theme-form-close-tab.php:28
640
- msgid "Enter the close button text."
641
- msgstr ""
642
-
643
- #: includes/admin/theme-form-close-tab.php:39
644
- #: includes/admin/theme-form-container-tab.php:26
645
- msgid "Padding"
646
- msgstr ""
647
-
648
- #: includes/admin/theme-form-close-tab.php:44
649
- #: includes/admin/theme-form-container-tab.php:31
650
- msgid "Padding."
651
- msgstr ""
652
-
653
- #: includes/admin/theme-form-close-tab.php:120
654
- #: includes/admin/theme-form-content-tab.php:24
655
- #: includes/admin/theme-form-title-tab.php:24
656
- msgid "Font"
657
- msgstr ""
658
-
659
- #: includes/admin/theme-form-close-tab.php:124
660
- #: includes/admin/theme-form-close-tab.php:169
661
- #: includes/admin/theme-form-close-tab.php:224
662
- #: includes/admin/theme-form-close-tab.php:308
663
- #: includes/admin/theme-form-close-tab.php:365
664
- #: includes/admin/theme-form-container-tab.php:45
665
- #: includes/admin/theme-form-container-tab.php:98
666
- #: includes/admin/theme-form-container-tab.php:181
667
- #: includes/admin/theme-form-content-tab.php:28
668
- #: includes/admin/theme-form-overlay-tab.php:24
669
- #: includes/admin/theme-form-title-tab.php:28
670
- #: includes/admin/theme-form-title-tab.php:118
671
- msgid "Color"
672
- msgstr ""
673
-
674
- #: includes/admin/theme-form-close-tab.php:128
675
- msgid "Choose the font color for your close button."
676
- msgstr ""
677
-
678
- #: includes/admin/theme-form-close-tab.php:139
679
- #: includes/admin/theme-form-title-tab.php:43
680
- msgid "Font size."
681
- msgstr ""
682
-
683
- #: includes/admin/theme-form-close-tab.php:144
684
- #: includes/admin/theme-form-content-tab.php:49
685
- #: includes/admin/theme-form-title-tab.php:48
686
- msgid "Family"
687
- msgstr ""
688
-
689
- #: includes/admin/theme-form-close-tab.php:155
690
- #: includes/admin/theme-form-content-tab.php:60
691
- #: includes/admin/theme-form-title-tab.php:59
692
- msgid "Font family."
693
- msgstr ""
694
-
695
- #: includes/admin/theme-form-close-tab.php:165
696
- #: includes/admin/theme-form-container-tab.php:41
697
- msgid "Background"
698
- msgstr ""
699
-
700
- #: includes/admin/theme-form-close-tab.php:173
701
- msgid "Choose the background color for your close button."
702
- msgstr ""
703
-
704
- #: includes/admin/theme-form-close-tab.php:178
705
- #: includes/admin/theme-form-close-tab.php:317
706
- #: includes/admin/theme-form-close-tab.php:374
707
- #: includes/admin/theme-form-container-tab.php:54
708
- #: includes/admin/theme-form-container-tab.php:190
709
- #: includes/admin/theme-form-overlay-tab.php:33
710
- #: includes/admin/theme-form-title-tab.php:127
711
- msgid "Opacity"
712
- msgstr ""
713
-
714
- #: includes/admin/theme-form-close-tab.php:183
715
- #: includes/admin/theme-form-container-tab.php:59
716
- msgid "Background opacity."
717
- msgstr ""
718
-
719
- #: includes/admin/theme-form-close-tab.php:194
720
- #: includes/admin/theme-form-container-tab.php:68
721
- msgid "Border"
722
- msgstr ""
723
-
724
- #: includes/admin/theme-form-close-tab.php:198
725
- #: includes/admin/theme-form-container-tab.php:72
726
- msgid "Radius"
727
- msgstr ""
728
-
729
- #: includes/admin/theme-form-close-tab.php:203
730
- msgid "Choose a corner radius for your close button."
731
- msgstr ""
732
-
733
- #: includes/admin/theme-form-close-tab.php:208
734
- #: includes/admin/theme-form-container-tab.php:82
735
- msgid "Style"
736
- msgstr ""
737
-
738
- #: includes/admin/theme-form-close-tab.php:219
739
- msgid "Choose a border style for your close button."
740
- msgstr ""
741
-
742
- #: includes/admin/theme-form-close-tab.php:228
743
- msgid "Choose the border color for your close button."
744
- msgstr ""
745
-
746
- #: includes/admin/theme-form-close-tab.php:238
747
- #: includes/admin/theme-form-container-tab.php:112
748
- msgid "Choose a width for your border."
749
- msgstr ""
750
-
751
- #: includes/admin/theme-form-close-tab.php:248
752
- #: includes/admin/theme-form-container-tab.php:121
753
- msgid "Drop Shadow"
754
- msgstr ""
755
-
756
- #: includes/admin/theme-form-close-tab.php:256
757
- #: includes/admin/theme-form-container-tab.php:129
758
- msgid "Yes"
759
- msgstr ""
760
-
761
- #: includes/admin/theme-form-close-tab.php:256
762
- #: includes/admin/theme-form-container-tab.php:129
763
- msgid "No"
764
- msgstr ""
765
-
766
- #: includes/admin/theme-form-close-tab.php:263
767
- #: includes/admin/theme-form-container-tab.php:136
768
- msgid "Is boxshadow inset or drop."
769
- msgstr ""
770
-
771
- #: includes/admin/theme-form-close-tab.php:268
772
- #: includes/admin/theme-form-close-tab.php:335
773
- #: includes/admin/theme-form-container-tab.php:141
774
- #: includes/admin/theme-form-title-tab.php:88
775
- msgid "Horizontal Length"
776
- msgstr ""
777
-
778
- #: includes/admin/theme-form-close-tab.php:273
779
- #: includes/admin/theme-form-close-tab.php:340
780
- #: includes/admin/theme-form-container-tab.php:146
781
- #: includes/admin/theme-form-title-tab.php:93
782
- msgid "Shadow horizontal length."
783
- msgstr ""
784
-
785
- #: includes/admin/theme-form-close-tab.php:278
786
- #: includes/admin/theme-form-close-tab.php:345
787
- #: includes/admin/theme-form-container-tab.php:151
788
- #: includes/admin/theme-form-title-tab.php:98
789
- msgid "Vertical Length"
790
- msgstr ""
791
-
792
- #: includes/admin/theme-form-close-tab.php:283
793
- #: includes/admin/theme-form-close-tab.php:350
794
- #: includes/admin/theme-form-container-tab.php:156
795
- #: includes/admin/theme-form-title-tab.php:103
796
- msgid "Shadow vertical length."
797
- msgstr ""
798
-
799
- #: includes/admin/theme-form-close-tab.php:288
800
- #: includes/admin/theme-form-close-tab.php:355
801
- #: includes/admin/theme-form-container-tab.php:161
802
- #: includes/admin/theme-form-title-tab.php:108
803
- msgid "Blur Radius"
804
- msgstr ""
805
-
806
- #: includes/admin/theme-form-close-tab.php:293
807
- #: includes/admin/theme-form-close-tab.php:360
808
- #: includes/admin/theme-form-container-tab.php:166
809
- #: includes/admin/theme-form-title-tab.php:113
810
- msgid "Shadow blur radius."
811
- msgstr ""
812
-
813
- #: includes/admin/theme-form-close-tab.php:298
814
- #: includes/admin/theme-form-container-tab.php:171
815
- msgid "Spread"
816
- msgstr ""
817
-
818
- #: includes/admin/theme-form-close-tab.php:303
819
- #: includes/admin/theme-form-container-tab.php:176
820
- msgid "Shadow spread."
821
- msgstr ""
822
-
823
- #: includes/admin/theme-form-close-tab.php:312
824
- #: includes/admin/theme-form-close-tab.php:369
825
- #: includes/admin/theme-form-container-tab.php:185
826
- #: includes/admin/theme-form-title-tab.php:122
827
- msgid "Shadow color."
828
- msgstr ""
829
-
830
- #: includes/admin/theme-form-close-tab.php:322
831
- #: includes/admin/theme-form-close-tab.php:379
832
- #: includes/admin/theme-form-container-tab.php:195
833
- #: includes/admin/theme-form-title-tab.php:132
834
- msgid "Shadow opacity."
835
- msgstr ""
836
-
837
- #: includes/admin/theme-form-close-tab.php:331
838
- #: includes/admin/theme-form-title-tab.php:84
839
- msgid "Text Shadow"
840
- msgstr ""
841
-
842
- #: includes/admin/theme-form-container-tab.php:5
843
- msgid "Container"
844
- msgstr ""
845
-
846
- #: includes/admin/theme-form-container-tab.php:49
847
- msgid "Choose the background color for your container."
848
- msgstr ""
849
-
850
- #: includes/admin/theme-form-container-tab.php:77
851
- msgid "Choose a corner radius for your container button."
852
- msgstr ""
853
-
854
- #: includes/admin/theme-form-container-tab.php:93
855
- msgid "Choose a border style for your container button."
856
- msgstr ""
857
-
858
- #: includes/admin/theme-form-container-tab.php:102
859
- msgid "Choose the border color for your container button."
860
- msgstr ""
861
-
862
- #: includes/admin/theme-form-content-tab.php:32
863
- msgid "Choose the font color for your content button."
864
- msgstr ""
865
-
866
- #: includes/admin/theme-form-general-tab.php:31
867
- msgid "Enter a name for your theme."
868
- msgstr ""
869
-
870
- #: includes/admin/theme-form-overlay-tab.php:5
871
- msgid "Overlay"
872
- msgstr ""
873
-
874
- #: includes/admin/theme-form-overlay-tab.php:28
875
- msgid "Choose the overlay color."
876
- msgstr ""
877
-
878
- #: includes/admin/theme-form-overlay-tab.php:38
879
- msgid "The opacity value for the overlay."
880
- msgstr ""
881
-
882
- #: includes/admin/theme-form-title-tab.php:32
883
- msgid "Font color."
884
- msgstr ""
885
-
886
- #: includes/admin/theme-form-title-tab.php:64
887
- msgid "Align"
888
- msgstr ""
889
-
890
- #: includes/admin/theme-form-title-tab.php:75
891
- msgid "Text alignment."
892
- msgstr ""
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Easy Modal\n"
4
+ "POT-Creation-Date: 2014-07-05 23:44-0500\n"
5
+ "PO-Revision-Date: 2014-07-05 23:44-0500\n"
6
+ "Last-Translator: Daniel Iser <danieliser@wizardinternetsolutions.com>\n"
7
+ "Language-Team: Daniel Iser <danieliser@wizardinternetsolutions.com>\n"
8
+ "Language: pt\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.6\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: classes/admin.php:53 classes/admin/menu.php:52 classes/admin/menu.php:53
22
+ msgid "Settings"
23
+ msgstr ""
24
+
25
+ #: classes/admin.php:55
26
+ msgid "Go Pro"
27
+ msgstr ""
28
+
29
+ #: classes/admin/api.php:151
30
+ msgid "An Unexpected HTTP Error occurred during the API request."
31
+ msgstr ""
32
+
33
+ #: classes/admin/api.php:158
34
+ msgid "An unknown error occurred"
35
+ msgstr ""
36
+
37
+ #: classes/admin/menu.php:30 classes/admin/menu.php:31
38
+ #: classes/controller/admin/modals.php:45
39
+ msgid "Modals"
40
+ msgstr ""
41
+
42
+ #: classes/admin/menu.php:41 classes/admin/menu.php:42
43
+ msgid "Theme"
44
+ msgstr ""
45
+
46
+ #: classes/admin/menu.php:63 classes/admin/menu.php:64
47
+ msgid "Help"
48
+ msgstr ""
49
+
50
+ #: classes/controller/admin/modals.php:61
51
+ msgid "Modal Updated."
52
+ msgstr ""
53
+
54
+ #: classes/controller/admin/modals.php:61
55
+ msgid "Modal Created."
56
+ msgstr ""
57
+
58
+ #: classes/controller/admin/modals.php:65
59
+ msgid "Edit Modal"
60
+ msgstr ""
61
+
62
+ #: classes/controller/admin/modals.php:65
63
+ msgid "Add New Modal"
64
+ msgstr ""
65
+
66
+ #: classes/controller/admin/modals.php:80
67
+ msgid "Modal cloned successfully"
68
+ msgstr ""
69
+
70
+ #: classes/controller/admin/modals.php:106
71
+ msgid " modals moved to the trash"
72
+ msgstr ""
73
+
74
+ #: classes/controller/admin/modals.php:118
75
+ msgid "Modal trash has been permanantly removed."
76
+ msgstr ""
77
+
78
+ #: classes/controller/admin/modals.php:143
79
+ msgid " modal restored from trash."
80
+ msgstr ""
81
+
82
+ #: classes/controller/admin/settings.php:33
83
+ msgid "Settings Updated."
84
+ msgstr ""
85
+
86
+ #: classes/controller/admin/settings.php:37
87
+ msgid "Easy Modal Settings"
88
+ msgstr ""
89
+
90
+ #: classes/controller/admin/theme.php:29
91
+ msgid "Theme Updated."
92
+ msgstr ""
93
+
94
+ #: classes/controller/admin/theme.php:33
95
+ msgid "Edit Theme"
96
+ msgstr ""
97
+
98
+ #: classes/view/admin/modal/form.php:9 classes/view/admin/modal/index.php:9
99
+ #: classes/view/admin/theme/form.php:9
100
+ msgid "Add New"
101
+ msgstr ""
102
+
103
+ #: classes/view/admin/modal/form.php:33 classes/view/admin/modal/form.php:57
104
+ #: classes/view/admin/settings/form.php:29
105
+ #: classes/view/admin/settings/form.php:53
106
+ #: classes/view/admin/theme/form.php:46
107
+ msgid "Publish"
108
+ msgstr ""
109
+
110
+ #: classes/view/admin/modal/form.php:39
111
+ #: classes/view/admin/settings/form.php:35
112
+ msgid "Clone"
113
+ msgstr ""
114
+
115
+ #: classes/view/admin/modal/form.php:43
116
+ #: classes/view/admin/settings/form.php:39
117
+ #: classes/view/admin/theme/form.php:52
118
+ msgid "Preview"
119
+ msgstr ""
120
+
121
+ #: classes/view/admin/modal/form.php:52
122
+ #: classes/view/admin/settings/form.php:48
123
+ msgid "Move to Trash"
124
+ msgstr ""
125
+
126
+ #: classes/view/admin/modal/index.php:129
127
+ #: includes/admin/modal-form-general-tab.php:25
128
+ #: includes/admin/theme-form-general-tab.php:25
129
+ msgid "Name"
130
+ msgstr ""
131
+
132
+ #: classes/view/admin/modal/index.php:130
133
+ msgid "Class"
134
+ msgstr ""
135
+
136
+ #: classes/view/admin/modal/index.php:131
137
+ msgid "Load Method"
138
+ msgstr ""
139
+
140
+ #: classes/view/admin/modal/index.php:162
141
+ #: classes/view/admin/modal/index.php:195
142
+ msgid "Delete"
143
+ msgstr ""
144
+
145
+ #: classes/view/admin/modal/index.php:164
146
+ msgid "Restore"
147
+ msgstr ""
148
+
149
+ #: classes/view/admin/modal/index.php:166
150
+ msgid "Empty Trash"
151
+ msgstr ""
152
+
153
+ #: classes/view/admin/modal/index.php:187
154
+ #, php-format
155
+ msgid "Edit &#8220;%s&#8221;"
156
+ msgstr ""
157
+
158
+ #: classes/view/admin/modal/index.php:191
159
+ msgid "Edit"
160
+ msgstr ""
161
+
162
+ #: classes/view/admin/modal/index.php:197
163
+ msgid "View"
164
+ msgstr ""
165
+
166
+ #: classes/view/admin/modal/index.php:216
167
+ msgid "Per Page / Post"
168
+ msgstr ""
169
+
170
+ #: classes/view/admin/modal/index.php:220
171
+ msgid "AJAX"
172
+ msgstr ""
173
+
174
+ #: classes/view/admin/modal/index.php:224
175
+ msgid "Sitewide"
176
+ msgstr ""
177
+
178
+ #: classes/view/admin/theme/form.php:25
179
+ msgid "Theme Preview"
180
+ msgstr ""
181
+
182
+ #: classes/view/admin/theme/form.php:28
183
+ msgid "Title Text"
184
+ msgstr ""
185
+
186
+ #: classes/view/admin/theme/form.php:30 classes/view/modal.php:80
187
+ #: includes/admin/options.php:60
188
+ msgid "&#215;"
189
+ msgstr ""
190
+
191
+ #: classes/view/admin/theme/form.php:62
192
+ msgid "Save"
193
+ msgstr ""
194
+
195
+ #: em-core.php:77 em-core.php:78
196
+ msgid "Test"
197
+ msgstr ""
198
+
199
+ #: em-core.php:80
200
+ msgid "-test"
201
+ msgstr ""
202
+
203
+ #: includes/admin/modal-form-close-tab.php:5
204
+ msgid "Close Options"
205
+ msgstr ""
206
+
207
+ #: includes/admin/modal-form-close-tab.php:25
208
+ msgid "Click Overlay to Close"
209
+ msgstr ""
210
+
211
+ #: includes/admin/modal-form-close-tab.php:28
212
+ msgid "Checking this will cause modal to close when user clicks on overlay."
213
+ msgstr ""
214
+
215
+ #: includes/admin/modal-form-close-tab.php:38
216
+ msgid "Press ESC to Close"
217
+ msgstr ""
218
+
219
+ #: includes/admin/modal-form-close-tab.php:41
220
+ msgid "Checking this will cause modal to close when user presses ESC key."
221
+ msgstr ""
222
+
223
+ #: includes/admin/modal-form-display-tab.php:5
224
+ msgid "Display Options"
225
+ msgstr ""
226
+
227
+ #: includes/admin/modal-form-display-tab.php:27
228
+ #: includes/admin/theme-form-close-tab.php:134
229
+ #: includes/admin/theme-form-title-tab.php:38
230
+ msgid "Size"
231
+ msgstr ""
232
+
233
+ #: includes/admin/modal-form-display-tab.php:40
234
+ msgid "Select the size of the modal."
235
+ msgstr ""
236
+
237
+ #: includes/admin/modal-form-display-tab.php:51
238
+ #: includes/admin/theme-form-close-tab.php:233
239
+ #: includes/admin/theme-form-container-tab.php:107
240
+ msgid "Width"
241
+ msgstr ""
242
+
243
+ #: includes/admin/modal-form-display-tab.php:64
244
+ msgid "Set a custom width for the modal."
245
+ msgstr ""
246
+
247
+ #: includes/admin/modal-form-display-tab.php:70
248
+ msgid "Auto Adjusted Height"
249
+ msgstr ""
250
+
251
+ #: includes/admin/modal-form-display-tab.php:73
252
+ msgid "Checking this option will set height to fix the content."
253
+ msgstr ""
254
+
255
+ #: includes/admin/modal-form-display-tab.php:80
256
+ msgid "Height"
257
+ msgstr ""
258
+
259
+ #: includes/admin/modal-form-display-tab.php:93
260
+ msgid "Set a custom height for the modal."
261
+ msgstr ""
262
+
263
+ #: includes/admin/modal-form-display-tab.php:104
264
+ msgid "Animation"
265
+ msgstr ""
266
+
267
+ #: includes/admin/modal-form-display-tab.php:109
268
+ msgid "Animation Type"
269
+ msgstr ""
270
+
271
+ #: includes/admin/modal-form-display-tab.php:121
272
+ msgid "Select an animation type for your modal."
273
+ msgstr ""
274
+
275
+ #: includes/admin/modal-form-display-tab.php:127
276
+ msgid "Animation Speed"
277
+ msgstr ""
278
+
279
+ #: includes/admin/modal-form-display-tab.php:133
280
+ msgid "Set the animation speed for the modal."
281
+ msgstr ""
282
+
283
+ #: includes/admin/modal-form-display-tab.php:139
284
+ msgid "Animation Origin"
285
+ msgstr ""
286
+
287
+ #: includes/admin/modal-form-display-tab.php:151
288
+ msgid "Choose where the animation will begin."
289
+ msgstr ""
290
+
291
+ #: includes/admin/modal-form-display-tab.php:162
292
+ #: includes/admin/theme-form-close-tab.php:70
293
+ msgid "Position"
294
+ msgstr ""
295
+
296
+ #: includes/admin/modal-form-display-tab.php:166
297
+ #: includes/admin/theme-form-close-tab.php:55
298
+ msgid "Location"
299
+ msgstr ""
300
+
301
+ #: includes/admin/modal-form-display-tab.php:177
302
+ #: includes/admin/theme-form-close-tab.php:66
303
+ msgid "Choose which corner the close button will be positioned."
304
+ msgstr ""
305
+
306
+ #: includes/admin/modal-form-display-tab.php:181
307
+ msgid "Fixed"
308
+ msgstr ""
309
+
310
+ #: includes/admin/modal-form-display-tab.php:184
311
+ msgid "Checking this fixes the position of the modal."
312
+ msgstr ""
313
+
314
+ #: includes/admin/modal-form-display-tab.php:189
315
+ #: includes/admin/options.php:200 includes/admin/theme-form-close-tab.php:74
316
+ msgid "Top"
317
+ msgstr ""
318
+
319
+ #: includes/admin/modal-form-display-tab.php:194
320
+ #: includes/admin/theme-form-close-tab.php:79
321
+ msgid "Top."
322
+ msgstr ""
323
+
324
+ #: includes/admin/modal-form-display-tab.php:199
325
+ #: includes/admin/options.php:202 includes/admin/theme-form-close-tab.php:94
326
+ msgid "Bottom"
327
+ msgstr ""
328
+
329
+ #: includes/admin/modal-form-display-tab.php:204
330
+ #: includes/admin/theme-form-close-tab.php:99
331
+ msgid "Bottom."
332
+ msgstr ""
333
+
334
+ #: includes/admin/modal-form-display-tab.php:209
335
+ #: includes/admin/options.php:141 includes/admin/options.php:201
336
+ #: includes/admin/theme-form-close-tab.php:84
337
+ msgid "Left"
338
+ msgstr ""
339
+
340
+ #: includes/admin/modal-form-display-tab.php:214
341
+ #: includes/admin/theme-form-close-tab.php:89
342
+ msgid "Left."
343
+ msgstr ""
344
+
345
+ #: includes/admin/modal-form-display-tab.php:219
346
+ #: includes/admin/options.php:143 includes/admin/options.php:203
347
+ #: includes/admin/theme-form-close-tab.php:104
348
+ msgid "Right"
349
+ msgstr ""
350
+
351
+ #: includes/admin/modal-form-display-tab.php:224
352
+ #: includes/admin/theme-form-close-tab.php:109
353
+ msgid "Right."
354
+ msgstr ""
355
+
356
+ #: includes/admin/modal-form-example-tab.php:5
357
+ msgid "Examples"
358
+ msgstr ""
359
+
360
+ #: includes/admin/modal-form-example-tab.php:14
361
+ msgid "Copy this class to the link/button you want to open this modal."
362
+ msgstr ""
363
+
364
+ #: includes/admin/modal-form-example-tab.php:18
365
+ msgid "Link Example"
366
+ msgstr ""
367
+
368
+ #: includes/admin/modal-form-example-tab.php:19
369
+ #: includes/admin/modal-form-example-tab.php:20
370
+ #: includes/admin/modal-form-example-tab.php:24
371
+ #: includes/admin/modal-form-example-tab.php:25
372
+ msgid "Open Modal"
373
+ msgstr ""
374
+
375
+ #: includes/admin/modal-form-example-tab.php:23
376
+ msgid "Button Example"
377
+ msgstr ""
378
+
379
+ #: includes/admin/modal-form-example-tab.php:27
380
+ msgid "Image Example"
381
+ msgstr ""
382
+
383
+ #: includes/admin/modal-form-general-tab.php:5
384
+ #: includes/admin/theme-form-general-tab.php:5
385
+ msgid "General"
386
+ msgstr ""
387
+
388
+ #: includes/admin/modal-form-general-tab.php:31
389
+ msgid "Enter a name for your modal."
390
+ msgstr ""
391
+
392
+ #: includes/admin/modal-form-general-tab.php:43
393
+ msgid "Load Type"
394
+ msgstr ""
395
+
396
+ #: includes/admin/modal-form-general-tab.php:48
397
+ msgid "Per Page/Post"
398
+ msgstr ""
399
+
400
+ #: includes/admin/modal-form-general-tab.php:49
401
+ msgid "Load Sitewide"
402
+ msgstr ""
403
+
404
+ #: includes/admin/modal-form-general-tab.php:50
405
+ msgid "Using AJAX"
406
+ msgstr ""
407
+
408
+ #: includes/admin/modal-form-general-tab.php:52
409
+ msgid "Load this modal per page, sitewide or using ajax."
410
+ msgstr ""
411
+
412
+ #: includes/admin/modal-form-general-tab.php:64
413
+ #: includes/admin/theme-form-title-tab.php:5
414
+ msgid "Title"
415
+ msgstr ""
416
+
417
+ #: includes/admin/modal-form-general-tab.php:70
418
+ msgid "The title that appears in the modal window."
419
+ msgstr ""
420
+
421
+ #: includes/admin/modal-form-general-tab.php:81
422
+ #: includes/admin/theme-form-content-tab.php:5
423
+ msgid "Content"
424
+ msgstr ""
425
+
426
+ #: includes/admin/modal-form-general-tab.php:96
427
+ msgid "Modal content. Can contain shortcodes."
428
+ msgstr ""
429
+
430
+ #: includes/admin/options.php:100
431
+ msgid "PX"
432
+ msgstr ""
433
+
434
+ #: includes/admin/options.php:101
435
+ msgid "%"
436
+ msgstr ""
437
+
438
+ #: includes/admin/options.php:102
439
+ msgid "EM"
440
+ msgstr ""
441
+
442
+ #: includes/admin/options.php:103
443
+ msgid "REM"
444
+ msgstr ""
445
+
446
+ #: includes/admin/options.php:111 includes/admin/options.php:186
447
+ msgid "None"
448
+ msgstr ""
449
+
450
+ #: includes/admin/options.php:112
451
+ msgid "Solid"
452
+ msgstr ""
453
+
454
+ #: includes/admin/options.php:113
455
+ msgid "Dotted"
456
+ msgstr ""
457
+
458
+ #: includes/admin/options.php:114
459
+ msgid "Dashed"
460
+ msgstr ""
461
+
462
+ #: includes/admin/options.php:115
463
+ msgid "Double"
464
+ msgstr ""
465
+
466
+ #: includes/admin/options.php:116
467
+ msgid "Groove"
468
+ msgstr ""
469
+
470
+ #: includes/admin/options.php:117 includes/admin/theme-form-close-tab.php:252
471
+ #: includes/admin/theme-form-container-tab.php:125
472
+ msgid "Inset"
473
+ msgstr ""
474
+
475
+ #: includes/admin/options.php:118
476
+ msgid "Outset"
477
+ msgstr ""
478
+
479
+ #: includes/admin/options.php:119
480
+ msgid "Ridge"
481
+ msgstr ""
482
+
483
+ #: includes/admin/options.php:127
484
+ msgid "Sans-Serif"
485
+ msgstr ""
486
+
487
+ #: includes/admin/options.php:128
488
+ msgid "Tahoma"
489
+ msgstr ""
490
+
491
+ #: includes/admin/options.php:129
492
+ msgid "Georgia"
493
+ msgstr ""
494
+
495
+ #: includes/admin/options.php:130
496
+ msgid "Comic Sans MS"
497
+ msgstr ""
498
+
499
+ #: includes/admin/options.php:131
500
+ msgid "Arial"
501
+ msgstr ""
502
+
503
+ #: includes/admin/options.php:132
504
+ msgid "Lucida Grande"
505
+ msgstr ""
506
+
507
+ #: includes/admin/options.php:133
508
+ msgid "Times New Roman"
509
+ msgstr ""
510
+
511
+ #: includes/admin/options.php:142
512
+ msgid "Center"
513
+ msgstr ""
514
+
515
+ #: includes/admin/options.php:152
516
+ msgid "-----------------------"
517
+ msgstr ""
518
+
519
+ #: includes/admin/options.php:160
520
+ msgid "Auto"
521
+ msgstr ""
522
+
523
+ #: includes/admin/options.php:161
524
+ msgid "Responsive"
525
+ msgstr ""
526
+
527
+ #: includes/admin/options.php:162
528
+ msgid "Normal"
529
+ msgstr ""
530
+
531
+ #: includes/admin/options.php:163
532
+ msgid "Nano"
533
+ msgstr ""
534
+
535
+ #: includes/admin/options.php:164
536
+ msgid "Tiny"
537
+ msgstr ""
538
+
539
+ #: includes/admin/options.php:165
540
+ msgid "Small"
541
+ msgstr ""
542
+
543
+ #: includes/admin/options.php:166
544
+ msgid "Medium"
545
+ msgstr ""
546
+
547
+ #: includes/admin/options.php:167
548
+ msgid "Large"
549
+ msgstr ""
550
+
551
+ #: includes/admin/options.php:168
552
+ msgid "X Large"
553
+ msgstr ""
554
+
555
+ #: includes/admin/options.php:176
556
+ msgid "Non-Responsive"
557
+ msgstr ""
558
+
559
+ #: includes/admin/options.php:177
560
+ msgid "Custom"
561
+ msgstr ""
562
+
563
+ #: includes/admin/options.php:187
564
+ msgid "Slide"
565
+ msgstr ""
566
+
567
+ #: includes/admin/options.php:188
568
+ msgid "Fade"
569
+ msgstr ""
570
+
571
+ #: includes/admin/options.php:189
572
+ msgid "Fade and Slide"
573
+ msgstr ""
574
+
575
+ #: includes/admin/options.php:190
576
+ msgid "Grow"
577
+ msgstr ""
578
+
579
+ #: includes/admin/options.php:191
580
+ msgid "Grow and Slide"
581
+ msgstr ""
582
+
583
+ #: includes/admin/options.php:204 includes/admin/options.php:221
584
+ #: includes/admin/options.php:237
585
+ msgid "Top Left"
586
+ msgstr ""
587
+
588
+ #: includes/admin/options.php:205 includes/admin/options.php:222
589
+ msgid "Top Center"
590
+ msgstr ""
591
+
592
+ #: includes/admin/options.php:206 includes/admin/options.php:223
593
+ #: includes/admin/options.php:238
594
+ msgid "Top Right"
595
+ msgstr ""
596
+
597
+ #: includes/admin/options.php:207 includes/admin/options.php:224
598
+ msgid "Middle Left"
599
+ msgstr ""
600
+
601
+ #: includes/admin/options.php:208 includes/admin/options.php:225
602
+ msgid "Middle Center"
603
+ msgstr ""
604
+
605
+ #: includes/admin/options.php:209 includes/admin/options.php:226
606
+ msgid "Middle Right"
607
+ msgstr ""
608
+
609
+ #: includes/admin/options.php:210 includes/admin/options.php:227
610
+ #: includes/admin/options.php:239
611
+ msgid "Bottom Left"
612
+ msgstr ""
613
+
614
+ #: includes/admin/options.php:211 includes/admin/options.php:228
615
+ msgid "Bottom Center"
616
+ msgstr ""
617
+
618
+ #: includes/admin/options.php:212 includes/admin/options.php:229
619
+ #: includes/admin/options.php:240
620
+ msgid "Bottom Right"
621
+ msgstr ""
622
+
623
+ #: includes/admin/postmeta.php:9
624
+ msgid "Select which modals to load"
625
+ msgstr ""
626
+
627
+ #: includes/admin/postmeta.php:12
628
+ msgid " checked=\"checked\""
629
+ msgstr ""
630
+
631
+ #: includes/admin/theme-form-close-tab.php:5
632
+ msgid "Close"
633
+ msgstr ""
634
+
635
+ #: includes/admin/theme-form-close-tab.php:24
636
+ msgid "Text"
637
+ msgstr ""
638
+
639
+ #: includes/admin/theme-form-close-tab.php:28
640
+ msgid "Enter the close button text."
641
+ msgstr ""
642
+
643
+ #: includes/admin/theme-form-close-tab.php:39
644
+ #: includes/admin/theme-form-container-tab.php:26
645
+ msgid "Padding"
646
+ msgstr ""
647
+
648
+ #: includes/admin/theme-form-close-tab.php:44
649
+ #: includes/admin/theme-form-container-tab.php:31
650
+ msgid "Padding."
651
+ msgstr ""
652
+
653
+ #: includes/admin/theme-form-close-tab.php:120
654
+ #: includes/admin/theme-form-content-tab.php:24
655
+ #: includes/admin/theme-form-title-tab.php:24
656
+ msgid "Font"
657
+ msgstr ""
658
+
659
+ #: includes/admin/theme-form-close-tab.php:124
660
+ #: includes/admin/theme-form-close-tab.php:169
661
+ #: includes/admin/theme-form-close-tab.php:224
662
+ #: includes/admin/theme-form-close-tab.php:308
663
+ #: includes/admin/theme-form-close-tab.php:365
664
+ #: includes/admin/theme-form-container-tab.php:45
665
+ #: includes/admin/theme-form-container-tab.php:98
666
+ #: includes/admin/theme-form-container-tab.php:181
667
+ #: includes/admin/theme-form-content-tab.php:28
668
+ #: includes/admin/theme-form-overlay-tab.php:24
669
+ #: includes/admin/theme-form-title-tab.php:28
670
+ #: includes/admin/theme-form-title-tab.php:118
671
+ msgid "Color"
672
+ msgstr ""
673
+
674
+ #: includes/admin/theme-form-close-tab.php:128
675
+ msgid "Choose the font color for your close button."
676
+ msgstr ""
677
+
678
+ #: includes/admin/theme-form-close-tab.php:139
679
+ #: includes/admin/theme-form-title-tab.php:43
680
+ msgid "Font size."
681
+ msgstr ""
682
+
683
+ #: includes/admin/theme-form-close-tab.php:144
684
+ #: includes/admin/theme-form-content-tab.php:49
685
+ #: includes/admin/theme-form-title-tab.php:48
686
+ msgid "Family"
687
+ msgstr ""
688
+
689
+ #: includes/admin/theme-form-close-tab.php:155
690
+ #: includes/admin/theme-form-content-tab.php:60
691
+ #: includes/admin/theme-form-title-tab.php:59
692
+ msgid "Font family."
693
+ msgstr ""
694
+
695
+ #: includes/admin/theme-form-close-tab.php:165
696
+ #: includes/admin/theme-form-container-tab.php:41
697
+ msgid "Background"
698
+ msgstr ""
699
+
700
+ #: includes/admin/theme-form-close-tab.php:173
701
+ msgid "Choose the background color for your close button."
702
+ msgstr ""
703
+
704
+ #: includes/admin/theme-form-close-tab.php:178
705
+ #: includes/admin/theme-form-close-tab.php:317
706
+ #: includes/admin/theme-form-close-tab.php:374
707
+ #: includes/admin/theme-form-container-tab.php:54
708
+ #: includes/admin/theme-form-container-tab.php:190
709
+ #: includes/admin/theme-form-overlay-tab.php:33
710
+ #: includes/admin/theme-form-title-tab.php:127
711
+ msgid "Opacity"
712
+ msgstr ""
713
+
714
+ #: includes/admin/theme-form-close-tab.php:183
715
+ #: includes/admin/theme-form-container-tab.php:59
716
+ msgid "Background opacity."
717
+ msgstr ""
718
+
719
+ #: includes/admin/theme-form-close-tab.php:194
720
+ #: includes/admin/theme-form-container-tab.php:68
721
+ msgid "Border"
722
+ msgstr ""
723
+
724
+ #: includes/admin/theme-form-close-tab.php:198
725
+ #: includes/admin/theme-form-container-tab.php:72
726
+ msgid "Radius"
727
+ msgstr ""
728
+
729
+ #: includes/admin/theme-form-close-tab.php:203
730
+ msgid "Choose a corner radius for your close button."
731
+ msgstr ""
732
+
733
+ #: includes/admin/theme-form-close-tab.php:208
734
+ #: includes/admin/theme-form-container-tab.php:82
735
+ msgid "Style"
736
+ msgstr ""
737
+
738
+ #: includes/admin/theme-form-close-tab.php:219
739
+ msgid "Choose a border style for your close button."
740
+ msgstr ""
741
+
742
+ #: includes/admin/theme-form-close-tab.php:228
743
+ msgid "Choose the border color for your close button."
744
+ msgstr ""
745
+
746
+ #: includes/admin/theme-form-close-tab.php:238
747
+ #: includes/admin/theme-form-container-tab.php:112
748
+ msgid "Choose a width for your border."
749
+ msgstr ""
750
+
751
+ #: includes/admin/theme-form-close-tab.php:248
752
+ #: includes/admin/theme-form-container-tab.php:121
753
+ msgid "Drop Shadow"
754
+ msgstr ""
755
+
756
+ #: includes/admin/theme-form-close-tab.php:256
757
+ #: includes/admin/theme-form-container-tab.php:129
758
+ msgid "Yes"
759
+ msgstr ""
760
+
761
+ #: includes/admin/theme-form-close-tab.php:256
762
+ #: includes/admin/theme-form-container-tab.php:129
763
+ msgid "No"
764
+ msgstr ""
765
+
766
+ #: includes/admin/theme-form-close-tab.php:263
767
+ #: includes/admin/theme-form-container-tab.php:136
768
+ msgid "Is boxshadow inset or drop."
769
+ msgstr ""
770
+
771
+ #: includes/admin/theme-form-close-tab.php:268
772
+ #: includes/admin/theme-form-close-tab.php:335
773
+ #: includes/admin/theme-form-container-tab.php:141
774
+ #: includes/admin/theme-form-title-tab.php:88
775
+ msgid "Horizontal Length"
776
+ msgstr ""
777
+
778
+ #: includes/admin/theme-form-close-tab.php:273
779
+ #: includes/admin/theme-form-close-tab.php:340
780
+ #: includes/admin/theme-form-container-tab.php:146
781
+ #: includes/admin/theme-form-title-tab.php:93
782
+ msgid "Shadow horizontal length."
783
+ msgstr ""
784
+
785
+ #: includes/admin/theme-form-close-tab.php:278
786
+ #: includes/admin/theme-form-close-tab.php:345
787
+ #: includes/admin/theme-form-container-tab.php:151
788
+ #: includes/admin/theme-form-title-tab.php:98
789
+ msgid "Vertical Length"
790
+ msgstr ""
791
+
792
+ #: includes/admin/theme-form-close-tab.php:283
793
+ #: includes/admin/theme-form-close-tab.php:350
794
+ #: includes/admin/theme-form-container-tab.php:156
795
+ #: includes/admin/theme-form-title-tab.php:103
796
+ msgid "Shadow vertical length."
797
+ msgstr ""
798
+
799
+ #: includes/admin/theme-form-close-tab.php:288
800
+ #: includes/admin/theme-form-close-tab.php:355
801
+ #: includes/admin/theme-form-container-tab.php:161
802
+ #: includes/admin/theme-form-title-tab.php:108
803
+ msgid "Blur Radius"
804
+ msgstr ""
805
+
806
+ #: includes/admin/theme-form-close-tab.php:293
807
+ #: includes/admin/theme-form-close-tab.php:360
808
+ #: includes/admin/theme-form-container-tab.php:166
809
+ #: includes/admin/theme-form-title-tab.php:113
810
+ msgid "Shadow blur radius."
811
+ msgstr ""
812
+
813
+ #: includes/admin/theme-form-close-tab.php:298
814
+ #: includes/admin/theme-form-container-tab.php:171
815
+ msgid "Spread"
816
+ msgstr ""
817
+
818
+ #: includes/admin/theme-form-close-tab.php:303
819
+ #: includes/admin/theme-form-container-tab.php:176
820
+ msgid "Shadow spread."
821
+ msgstr ""
822
+
823
+ #: includes/admin/theme-form-close-tab.php:312
824
+ #: includes/admin/theme-form-close-tab.php:369
825
+ #: includes/admin/theme-form-container-tab.php:185
826
+ #: includes/admin/theme-form-title-tab.php:122
827
+ msgid "Shadow color."
828
+ msgstr ""
829
+
830
+ #: includes/admin/theme-form-close-tab.php:322
831
+ #: includes/admin/theme-form-close-tab.php:379
832
+ #: includes/admin/theme-form-container-tab.php:195
833
+ #: includes/admin/theme-form-title-tab.php:132
834
+ msgid "Shadow opacity."
835
+ msgstr ""
836
+
837
+ #: includes/admin/theme-form-close-tab.php:331
838
+ #: includes/admin/theme-form-title-tab.php:84
839
+ msgid "Text Shadow"
840
+ msgstr ""
841
+
842
+ #: includes/admin/theme-form-container-tab.php:5
843
+ msgid "Container"
844
+ msgstr ""
845
+
846
+ #: includes/admin/theme-form-container-tab.php:49
847
+ msgid "Choose the background color for your container."
848
+ msgstr ""
849
+
850
+ #: includes/admin/theme-form-container-tab.php:77
851
+ msgid "Choose a corner radius for your container button."
852
+ msgstr ""
853
+
854
+ #: includes/admin/theme-form-container-tab.php:93
855
+ msgid "Choose a border style for your container button."
856
+ msgstr ""
857
+
858
+ #: includes/admin/theme-form-container-tab.php:102
859
+ msgid "Choose the border color for your container button."
860
+ msgstr ""
861
+
862
+ #: includes/admin/theme-form-content-tab.php:32
863
+ msgid "Choose the font color for your content button."
864
+ msgstr ""
865
+
866
+ #: includes/admin/theme-form-general-tab.php:31
867
+ msgid "Enter a name for your theme."
868
+ msgstr ""
869
+
870
+ #: includes/admin/theme-form-overlay-tab.php:5
871
+ msgid "Overlay"
872
+ msgstr ""
873
+
874
+ #: includes/admin/theme-form-overlay-tab.php:28
875
+ msgid "Choose the overlay color."
876
+ msgstr ""
877
+
878
+ #: includes/admin/theme-form-overlay-tab.php:38
879
+ msgid "The opacity value for the overlay."
880
+ msgstr ""
881
+
882
+ #: includes/admin/theme-form-title-tab.php:32
883
+ msgid "Font color."
884
+ msgstr ""
885
+
886
+ #: includes/admin/theme-form-title-tab.php:64
887
+ msgid "Align"
888
+ msgstr ""
889
+
890
+ #: includes/admin/theme-form-title-tab.php:75
891
+ msgid "Text alignment."
892
+ msgstr ""
languages/easy-modal-ru_RU.po CHANGED
@@ -1,893 +1,893 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Easy Modal\n"
4
- "POT-Creation-Date: 2014-07-05 21:57-0500\n"
5
- "PO-Revision-Date: 2014-07-05 21:57-0500\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: ru_RU\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.6\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
19
- "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
-
22
- #: classes/admin.php:53 classes/admin/menu.php:52 classes/admin/menu.php:53
23
- msgid "Settings"
24
- msgstr ""
25
-
26
- #: classes/admin.php:55
27
- msgid "Go Pro"
28
- msgstr ""
29
-
30
- #: classes/admin/api.php:151
31
- msgid "An Unexpected HTTP Error occurred during the API request."
32
- msgstr ""
33
-
34
- #: classes/admin/api.php:158
35
- msgid "An unknown error occurred"
36
- msgstr ""
37
-
38
- #: classes/admin/menu.php:30 classes/admin/menu.php:31
39
- #: classes/controller/admin/modals.php:45
40
- msgid "Modals"
41
- msgstr ""
42
-
43
- #: classes/admin/menu.php:41 classes/admin/menu.php:42
44
- msgid "Theme"
45
- msgstr ""
46
-
47
- #: classes/admin/menu.php:63 classes/admin/menu.php:64
48
- msgid "Help"
49
- msgstr ""
50
-
51
- #: classes/controller/admin/modals.php:61
52
- msgid "Modal Updated."
53
- msgstr ""
54
-
55
- #: classes/controller/admin/modals.php:61
56
- msgid "Modal Created."
57
- msgstr ""
58
-
59
- #: classes/controller/admin/modals.php:65
60
- msgid "Edit Modal"
61
- msgstr ""
62
-
63
- #: classes/controller/admin/modals.php:65
64
- msgid "Add New Modal"
65
- msgstr ""
66
-
67
- #: classes/controller/admin/modals.php:80
68
- msgid "Modal cloned successfully"
69
- msgstr ""
70
-
71
- #: classes/controller/admin/modals.php:106
72
- msgid " modals moved to the trash"
73
- msgstr ""
74
-
75
- #: classes/controller/admin/modals.php:118
76
- msgid "Modal trash has been permanantly removed."
77
- msgstr ""
78
-
79
- #: classes/controller/admin/modals.php:143
80
- msgid " modal restored from trash."
81
- msgstr ""
82
-
83
- #: classes/controller/admin/settings.php:33
84
- msgid "Settings Updated."
85
- msgstr ""
86
-
87
- #: classes/controller/admin/settings.php:37
88
- msgid "Easy Modal Settings"
89
- msgstr ""
90
-
91
- #: classes/controller/admin/theme.php:29
92
- msgid "Theme Updated."
93
- msgstr ""
94
-
95
- #: classes/controller/admin/theme.php:33
96
- msgid "Edit Theme"
97
- msgstr ""
98
-
99
- #: classes/view/admin/modal/form.php:9 classes/view/admin/modal/index.php:9
100
- #: classes/view/admin/theme/form.php:9
101
- msgid "Add New"
102
- msgstr ""
103
-
104
- #: classes/view/admin/modal/form.php:33 classes/view/admin/modal/form.php:57
105
- #: classes/view/admin/settings/form.php:29
106
- #: classes/view/admin/settings/form.php:53
107
- #: classes/view/admin/theme/form.php:46
108
- msgid "Publish"
109
- msgstr ""
110
-
111
- #: classes/view/admin/modal/form.php:39
112
- #: classes/view/admin/settings/form.php:35
113
- msgid "Clone"
114
- msgstr ""
115
-
116
- #: classes/view/admin/modal/form.php:43
117
- #: classes/view/admin/settings/form.php:39
118
- #: classes/view/admin/theme/form.php:52
119
- msgid "Preview"
120
- msgstr ""
121
-
122
- #: classes/view/admin/modal/form.php:52
123
- #: classes/view/admin/settings/form.php:48
124
- msgid "Move to Trash"
125
- msgstr ""
126
-
127
- #: classes/view/admin/modal/index.php:129
128
- #: includes/admin/modal-form-general-tab.php:25
129
- #: includes/admin/theme-form-general-tab.php:25
130
- msgid "Name"
131
- msgstr ""
132
-
133
- #: classes/view/admin/modal/index.php:130
134
- msgid "Class"
135
- msgstr ""
136
-
137
- #: classes/view/admin/modal/index.php:131
138
- msgid "Load Method"
139
- msgstr ""
140
-
141
- #: classes/view/admin/modal/index.php:162
142
- #: classes/view/admin/modal/index.php:195
143
- msgid "Delete"
144
- msgstr ""
145
-
146
- #: classes/view/admin/modal/index.php:164
147
- msgid "Restore"
148
- msgstr ""
149
-
150
- #: classes/view/admin/modal/index.php:166
151
- msgid "Empty Trash"
152
- msgstr ""
153
-
154
- #: classes/view/admin/modal/index.php:187
155
- #, php-format
156
- msgid "Edit &#8220;%s&#8221;"
157
- msgstr ""
158
-
159
- #: classes/view/admin/modal/index.php:191
160
- msgid "Edit"
161
- msgstr ""
162
-
163
- #: classes/view/admin/modal/index.php:197
164
- msgid "View"
165
- msgstr ""
166
-
167
- #: classes/view/admin/modal/index.php:216
168
- msgid "Per Page / Post"
169
- msgstr ""
170
-
171
- #: classes/view/admin/modal/index.php:220
172
- msgid "AJAX"
173
- msgstr ""
174
-
175
- #: classes/view/admin/modal/index.php:224
176
- msgid "Sitewide"
177
- msgstr ""
178
-
179
- #: classes/view/admin/theme/form.php:25
180
- msgid "Theme Preview"
181
- msgstr ""
182
-
183
- #: classes/view/admin/theme/form.php:28
184
- msgid "Title Text"
185
- msgstr ""
186
-
187
- #: classes/view/admin/theme/form.php:30 classes/view/modal.php:80
188
- #: includes/admin/options.php:60
189
- msgid "&#215;"
190
- msgstr ""
191
-
192
- #: classes/view/admin/theme/form.php:62
193
- msgid "Save"
194
- msgstr ""
195
-
196
- #: em-core.php:77 em-core.php:78
197
- msgid "Test"
198
- msgstr ""
199
-
200
- #: em-core.php:80
201
- msgid "-test"
202
- msgstr ""
203
-
204
- #: includes/admin/modal-form-close-tab.php:5
205
- msgid "Close Options"
206
- msgstr ""
207
-
208
- #: includes/admin/modal-form-close-tab.php:25
209
- msgid "Click Overlay to Close"
210
- msgstr ""
211
-
212
- #: includes/admin/modal-form-close-tab.php:28
213
- msgid "Checking this will cause modal to close when user clicks on overlay."
214
- msgstr ""
215
-
216
- #: includes/admin/modal-form-close-tab.php:38
217
- msgid "Press ESC to Close"
218
- msgstr ""
219
-
220
- #: includes/admin/modal-form-close-tab.php:41
221
- msgid "Checking this will cause modal to close when user presses ESC key."
222
- msgstr ""
223
-
224
- #: includes/admin/modal-form-display-tab.php:5
225
- msgid "Display Options"
226
- msgstr ""
227
-
228
- #: includes/admin/modal-form-display-tab.php:27
229
- #: includes/admin/theme-form-close-tab.php:134
230
- #: includes/admin/theme-form-title-tab.php:38
231
- msgid "Size"
232
- msgstr ""
233
-
234
- #: includes/admin/modal-form-display-tab.php:40
235
- msgid "Select the size of the modal."
236
- msgstr ""
237
-
238
- #: includes/admin/modal-form-display-tab.php:51
239
- #: includes/admin/theme-form-close-tab.php:233
240
- #: includes/admin/theme-form-container-tab.php:107
241
- msgid "Width"
242
- msgstr ""
243
-
244
- #: includes/admin/modal-form-display-tab.php:64
245
- msgid "Set a custom width for the modal."
246
- msgstr ""
247
-
248
- #: includes/admin/modal-form-display-tab.php:70
249
- msgid "Auto Adjusted Height"
250
- msgstr ""
251
-
252
- #: includes/admin/modal-form-display-tab.php:73
253
- msgid "Checking this option will set height to fix the content."
254
- msgstr ""
255
-
256
- #: includes/admin/modal-form-display-tab.php:80
257
- msgid "Height"
258
- msgstr ""
259
-
260
- #: includes/admin/modal-form-display-tab.php:93
261
- msgid "Set a custom height for the modal."
262
- msgstr ""
263
-
264
- #: includes/admin/modal-form-display-tab.php:104
265
- msgid "Animation"
266
- msgstr ""
267
-
268
- #: includes/admin/modal-form-display-tab.php:109
269
- msgid "Animation Type"
270
- msgstr ""
271
-
272
- #: includes/admin/modal-form-display-tab.php:121
273
- msgid "Select an animation type for your modal."
274
- msgstr ""
275
-
276
- #: includes/admin/modal-form-display-tab.php:127
277
- msgid "Animation Speed"
278
- msgstr ""
279
-
280
- #: includes/admin/modal-form-display-tab.php:133
281
- msgid "Set the animation speed for the modal."
282
- msgstr ""
283
-
284
- #: includes/admin/modal-form-display-tab.php:139
285
- msgid "Animation Origin"
286
- msgstr ""
287
-
288
- #: includes/admin/modal-form-display-tab.php:151
289
- msgid "Choose where the animation will begin."
290
- msgstr ""
291
-
292
- #: includes/admin/modal-form-display-tab.php:162
293
- #: includes/admin/theme-form-close-tab.php:70
294
- msgid "Position"
295
- msgstr ""
296
-
297
- #: includes/admin/modal-form-display-tab.php:166
298
- #: includes/admin/theme-form-close-tab.php:55
299
- msgid "Location"
300
- msgstr ""
301
-
302
- #: includes/admin/modal-form-display-tab.php:177
303
- #: includes/admin/theme-form-close-tab.php:66
304
- msgid "Choose which corner the close button will be positioned."
305
- msgstr ""
306
-
307
- #: includes/admin/modal-form-display-tab.php:181
308
- msgid "Fixed"
309
- msgstr ""
310
-
311
- #: includes/admin/modal-form-display-tab.php:184
312
- msgid "Checking this fixes the position of the modal."
313
- msgstr ""
314
-
315
- #: includes/admin/modal-form-display-tab.php:189
316
- #: includes/admin/options.php:200 includes/admin/theme-form-close-tab.php:74
317
- msgid "Top"
318
- msgstr ""
319
-
320
- #: includes/admin/modal-form-display-tab.php:194
321
- #: includes/admin/theme-form-close-tab.php:79
322
- msgid "Top."
323
- msgstr ""
324
-
325
- #: includes/admin/modal-form-display-tab.php:199
326
- #: includes/admin/options.php:202 includes/admin/theme-form-close-tab.php:94
327
- msgid "Bottom"
328
- msgstr ""
329
-
330
- #: includes/admin/modal-form-display-tab.php:204
331
- #: includes/admin/theme-form-close-tab.php:99
332
- msgid "Bottom."
333
- msgstr ""
334
-
335
- #: includes/admin/modal-form-display-tab.php:209
336
- #: includes/admin/options.php:141 includes/admin/options.php:201
337
- #: includes/admin/theme-form-close-tab.php:84
338
- msgid "Left"
339
- msgstr ""
340
-
341
- #: includes/admin/modal-form-display-tab.php:214
342
- #: includes/admin/theme-form-close-tab.php:89
343
- msgid "Left."
344
- msgstr ""
345
-
346
- #: includes/admin/modal-form-display-tab.php:219
347
- #: includes/admin/options.php:143 includes/admin/options.php:203
348
- #: includes/admin/theme-form-close-tab.php:104
349
- msgid "Right"
350
- msgstr ""
351
-
352
- #: includes/admin/modal-form-display-tab.php:224
353
- #: includes/admin/theme-form-close-tab.php:109
354
- msgid "Right."
355
- msgstr ""
356
-
357
- #: includes/admin/modal-form-example-tab.php:5
358
- msgid "Examples"
359
- msgstr ""
360
-
361
- #: includes/admin/modal-form-example-tab.php:14
362
- msgid "Copy this class to the link/button you want to open this modal."
363
- msgstr ""
364
-
365
- #: includes/admin/modal-form-example-tab.php:18
366
- msgid "Link Example"
367
- msgstr ""
368
-
369
- #: includes/admin/modal-form-example-tab.php:19
370
- #: includes/admin/modal-form-example-tab.php:20
371
- #: includes/admin/modal-form-example-tab.php:24
372
- #: includes/admin/modal-form-example-tab.php:25
373
- msgid "Open Modal"
374
- msgstr ""
375
-
376
- #: includes/admin/modal-form-example-tab.php:23
377
- msgid "Button Example"
378
- msgstr ""
379
-
380
- #: includes/admin/modal-form-example-tab.php:27
381
- msgid "Image Example"
382
- msgstr ""
383
-
384
- #: includes/admin/modal-form-general-tab.php:5
385
- #: includes/admin/theme-form-general-tab.php:5
386
- msgid "General"
387
- msgstr ""
388
-
389
- #: includes/admin/modal-form-general-tab.php:31
390
- msgid "Enter a name for your modal."
391
- msgstr ""
392
-
393
- #: includes/admin/modal-form-general-tab.php:43
394
- msgid "Load Type"
395
- msgstr ""
396
-
397
- #: includes/admin/modal-form-general-tab.php:48
398
- msgid "Per Page/Post"
399
- msgstr ""
400
-
401
- #: includes/admin/modal-form-general-tab.php:49
402
- msgid "Load Sitewide"
403
- msgstr ""
404
-
405
- #: includes/admin/modal-form-general-tab.php:50
406
- msgid "Using AJAX"
407
- msgstr ""
408
-
409
- #: includes/admin/modal-form-general-tab.php:52
410
- msgid "Load this modal per page, sitewide or using ajax."
411
- msgstr ""
412
-
413
- #: includes/admin/modal-form-general-tab.php:64
414
- #: includes/admin/theme-form-title-tab.php:5
415
- msgid "Title"
416
- msgstr ""
417
-
418
- #: includes/admin/modal-form-general-tab.php:70
419
- msgid "The title that appears in the modal window."
420
- msgstr ""
421
-
422
- #: includes/admin/modal-form-general-tab.php:81
423
- #: includes/admin/theme-form-content-tab.php:5
424
- msgid "Content"
425
- msgstr ""
426
-
427
- #: includes/admin/modal-form-general-tab.php:96
428
- msgid "Modal content. Can contain shortcodes."
429
- msgstr ""
430
-
431
- #: includes/admin/options.php:100
432
- msgid "PX"
433
- msgstr ""
434
-
435
- #: includes/admin/options.php:101
436
- msgid "%"
437
- msgstr ""
438
-
439
- #: includes/admin/options.php:102
440
- msgid "EM"
441
- msgstr ""
442
-
443
- #: includes/admin/options.php:103
444
- msgid "REM"
445
- msgstr ""
446
-
447
- #: includes/admin/options.php:111 includes/admin/options.php:186
448
- msgid "None"
449
- msgstr ""
450
-
451
- #: includes/admin/options.php:112
452
- msgid "Solid"
453
- msgstr ""
454
-
455
- #: includes/admin/options.php:113
456
- msgid "Dotted"
457
- msgstr ""
458
-
459
- #: includes/admin/options.php:114
460
- msgid "Dashed"
461
- msgstr ""
462
-
463
- #: includes/admin/options.php:115
464
- msgid "Double"
465
- msgstr ""
466
-
467
- #: includes/admin/options.php:116
468
- msgid "Groove"
469
- msgstr ""
470
-
471
- #: includes/admin/options.php:117 includes/admin/theme-form-close-tab.php:252
472
- #: includes/admin/theme-form-container-tab.php:125
473
- msgid "Inset"
474
- msgstr ""
475
-
476
- #: includes/admin/options.php:118
477
- msgid "Outset"
478
- msgstr ""
479
-
480
- #: includes/admin/options.php:119
481
- msgid "Ridge"
482
- msgstr ""
483
-
484
- #: includes/admin/options.php:127
485
- msgid "Sans-Serif"
486
- msgstr ""
487
-
488
- #: includes/admin/options.php:128
489
- msgid "Tahoma"
490
- msgstr ""
491
-
492
- #: includes/admin/options.php:129
493
- msgid "Georgia"
494
- msgstr ""
495
-
496
- #: includes/admin/options.php:130
497
- msgid "Comic Sans MS"
498
- msgstr ""
499
-
500
- #: includes/admin/options.php:131
501
- msgid "Arial"
502
- msgstr ""
503
-
504
- #: includes/admin/options.php:132
505
- msgid "Lucida Grande"
506
- msgstr ""
507
-
508
- #: includes/admin/options.php:133
509
- msgid "Times New Roman"
510
- msgstr ""
511
-
512
- #: includes/admin/options.php:142
513
- msgid "Center"
514
- msgstr ""
515
-
516
- #: includes/admin/options.php:152
517
- msgid "-----------------------"
518
- msgstr ""
519
-
520
- #: includes/admin/options.php:160
521
- msgid "Auto"
522
- msgstr ""
523
-
524
- #: includes/admin/options.php:161
525
- msgid "Responsive"
526
- msgstr ""
527
-
528
- #: includes/admin/options.php:162
529
- msgid "Normal"
530
- msgstr ""
531
-
532
- #: includes/admin/options.php:163
533
- msgid "Nano"
534
- msgstr ""
535
-
536
- #: includes/admin/options.php:164
537
- msgid "Tiny"
538
- msgstr ""
539
-
540
- #: includes/admin/options.php:165
541
- msgid "Small"
542
- msgstr ""
543
-
544
- #: includes/admin/options.php:166
545
- msgid "Medium"
546
- msgstr ""
547
-
548
- #: includes/admin/options.php:167
549
- msgid "Large"
550
- msgstr ""
551
-
552
- #: includes/admin/options.php:168
553
- msgid "X Large"
554
- msgstr ""
555
-
556
- #: includes/admin/options.php:176
557
- msgid "Non-Responsive"
558
- msgstr ""
559
-
560
- #: includes/admin/options.php:177
561
- msgid "Custom"
562
- msgstr ""
563
-
564
- #: includes/admin/options.php:187
565
- msgid "Slide"
566
- msgstr ""
567
-
568
- #: includes/admin/options.php:188
569
- msgid "Fade"
570
- msgstr ""
571
-
572
- #: includes/admin/options.php:189
573
- msgid "Fade and Slide"
574
- msgstr ""
575
-
576
- #: includes/admin/options.php:190
577
- msgid "Grow"
578
- msgstr ""
579
-
580
- #: includes/admin/options.php:191
581
- msgid "Grow and Slide"
582
- msgstr ""
583
-
584
- #: includes/admin/options.php:204 includes/admin/options.php:221
585
- #: includes/admin/options.php:237
586
- msgid "Top Left"
587
- msgstr ""
588
-
589
- #: includes/admin/options.php:205 includes/admin/options.php:222
590
- msgid "Top Center"
591
- msgstr ""
592
-
593
- #: includes/admin/options.php:206 includes/admin/options.php:223
594
- #: includes/admin/options.php:238
595
- msgid "Top Right"
596
- msgstr ""
597
-
598
- #: includes/admin/options.php:207 includes/admin/options.php:224
599
- msgid "Middle Left"
600
- msgstr ""
601
-
602
- #: includes/admin/options.php:208 includes/admin/options.php:225
603
- msgid "Middle Center"
604
- msgstr ""
605
-
606
- #: includes/admin/options.php:209 includes/admin/options.php:226
607
- msgid "Middle Right"
608
- msgstr ""
609
-
610
- #: includes/admin/options.php:210 includes/admin/options.php:227
611
- #: includes/admin/options.php:239
612
- msgid "Bottom Left"
613
- msgstr ""
614
-
615
- #: includes/admin/options.php:211 includes/admin/options.php:228
616
- msgid "Bottom Center"
617
- msgstr ""
618
-
619
- #: includes/admin/options.php:212 includes/admin/options.php:229
620
- #: includes/admin/options.php:240
621
- msgid "Bottom Right"
622
- msgstr ""
623
-
624
- #: includes/admin/postmeta.php:9
625
- msgid "Select which modals to load"
626
- msgstr ""
627
-
628
- #: includes/admin/postmeta.php:12
629
- msgid " checked=\"checked\""
630
- msgstr ""
631
-
632
- #: includes/admin/theme-form-close-tab.php:5
633
- msgid "Close"
634
- msgstr ""
635
-
636
- #: includes/admin/theme-form-close-tab.php:24
637
- msgid "Text"
638
- msgstr ""
639
-
640
- #: includes/admin/theme-form-close-tab.php:28
641
- msgid "Enter the close button text."
642
- msgstr ""
643
-
644
- #: includes/admin/theme-form-close-tab.php:39
645
- #: includes/admin/theme-form-container-tab.php:26
646
- msgid "Padding"
647
- msgstr ""
648
-
649
- #: includes/admin/theme-form-close-tab.php:44
650
- #: includes/admin/theme-form-container-tab.php:31
651
- msgid "Padding."
652
- msgstr ""
653
-
654
- #: includes/admin/theme-form-close-tab.php:120
655
- #: includes/admin/theme-form-content-tab.php:24
656
- #: includes/admin/theme-form-title-tab.php:24
657
- msgid "Font"
658
- msgstr ""
659
-
660
- #: includes/admin/theme-form-close-tab.php:124
661
- #: includes/admin/theme-form-close-tab.php:169
662
- #: includes/admin/theme-form-close-tab.php:224
663
- #: includes/admin/theme-form-close-tab.php:308
664
- #: includes/admin/theme-form-close-tab.php:365
665
- #: includes/admin/theme-form-container-tab.php:45
666
- #: includes/admin/theme-form-container-tab.php:98
667
- #: includes/admin/theme-form-container-tab.php:181
668
- #: includes/admin/theme-form-content-tab.php:28
669
- #: includes/admin/theme-form-overlay-tab.php:24
670
- #: includes/admin/theme-form-title-tab.php:28
671
- #: includes/admin/theme-form-title-tab.php:118
672
- msgid "Color"
673
- msgstr ""
674
-
675
- #: includes/admin/theme-form-close-tab.php:128
676
- msgid "Choose the font color for your close button."
677
- msgstr ""
678
-
679
- #: includes/admin/theme-form-close-tab.php:139
680
- #: includes/admin/theme-form-title-tab.php:43
681
- msgid "Font size."
682
- msgstr ""
683
-
684
- #: includes/admin/theme-form-close-tab.php:144
685
- #: includes/admin/theme-form-content-tab.php:49
686
- #: includes/admin/theme-form-title-tab.php:48
687
- msgid "Family"
688
- msgstr ""
689
-
690
- #: includes/admin/theme-form-close-tab.php:155
691
- #: includes/admin/theme-form-content-tab.php:60
692
- #: includes/admin/theme-form-title-tab.php:59
693
- msgid "Font family."
694
- msgstr ""
695
-
696
- #: includes/admin/theme-form-close-tab.php:165
697
- #: includes/admin/theme-form-container-tab.php:41
698
- msgid "Background"
699
- msgstr ""
700
-
701
- #: includes/admin/theme-form-close-tab.php:173
702
- msgid "Choose the background color for your close button."
703
- msgstr ""
704
-
705
- #: includes/admin/theme-form-close-tab.php:178
706
- #: includes/admin/theme-form-close-tab.php:317
707
- #: includes/admin/theme-form-close-tab.php:374
708
- #: includes/admin/theme-form-container-tab.php:54
709
- #: includes/admin/theme-form-container-tab.php:190
710
- #: includes/admin/theme-form-overlay-tab.php:33
711
- #: includes/admin/theme-form-title-tab.php:127
712
- msgid "Opacity"
713
- msgstr ""
714
-
715
- #: includes/admin/theme-form-close-tab.php:183
716
- #: includes/admin/theme-form-container-tab.php:59
717
- msgid "Background opacity."
718
- msgstr ""
719
-
720
- #: includes/admin/theme-form-close-tab.php:194
721
- #: includes/admin/theme-form-container-tab.php:68
722
- msgid "Border"
723
- msgstr ""
724
-
725
- #: includes/admin/theme-form-close-tab.php:198
726
- #: includes/admin/theme-form-container-tab.php:72
727
- msgid "Radius"
728
- msgstr ""
729
-
730
- #: includes/admin/theme-form-close-tab.php:203
731
- msgid "Choose a corner radius for your close button."
732
- msgstr ""
733
-
734
- #: includes/admin/theme-form-close-tab.php:208
735
- #: includes/admin/theme-form-container-tab.php:82
736
- msgid "Style"
737
- msgstr ""
738
-
739
- #: includes/admin/theme-form-close-tab.php:219
740
- msgid "Choose a border style for your close button."
741
- msgstr ""
742
-
743
- #: includes/admin/theme-form-close-tab.php:228
744
- msgid "Choose the border color for your close button."
745
- msgstr ""
746
-
747
- #: includes/admin/theme-form-close-tab.php:238
748
- #: includes/admin/theme-form-container-tab.php:112
749
- msgid "Choose a width for your border."
750
- msgstr ""
751
-
752
- #: includes/admin/theme-form-close-tab.php:248
753
- #: includes/admin/theme-form-container-tab.php:121
754
- msgid "Drop Shadow"
755
- msgstr ""
756
-
757
- #: includes/admin/theme-form-close-tab.php:256
758
- #: includes/admin/theme-form-container-tab.php:129
759
- msgid "Yes"
760
- msgstr ""
761
-
762
- #: includes/admin/theme-form-close-tab.php:256
763
- #: includes/admin/theme-form-container-tab.php:129
764
- msgid "No"
765
- msgstr ""
766
-
767
- #: includes/admin/theme-form-close-tab.php:263
768
- #: includes/admin/theme-form-container-tab.php:136
769
- msgid "Is boxshadow inset or drop."
770
- msgstr ""
771
-
772
- #: includes/admin/theme-form-close-tab.php:268
773
- #: includes/admin/theme-form-close-tab.php:335
774
- #: includes/admin/theme-form-container-tab.php:141
775
- #: includes/admin/theme-form-title-tab.php:88
776
- msgid "Horizontal Length"
777
- msgstr ""
778
-
779
- #: includes/admin/theme-form-close-tab.php:273
780
- #: includes/admin/theme-form-close-tab.php:340
781
- #: includes/admin/theme-form-container-tab.php:146
782
- #: includes/admin/theme-form-title-tab.php:93
783
- msgid "Shadow horizontal length."
784
- msgstr ""
785
-
786
- #: includes/admin/theme-form-close-tab.php:278
787
- #: includes/admin/theme-form-close-tab.php:345
788
- #: includes/admin/theme-form-container-tab.php:151
789
- #: includes/admin/theme-form-title-tab.php:98
790
- msgid "Vertical Length"
791
- msgstr ""
792
-
793
- #: includes/admin/theme-form-close-tab.php:283
794
- #: includes/admin/theme-form-close-tab.php:350
795
- #: includes/admin/theme-form-container-tab.php:156
796
- #: includes/admin/theme-form-title-tab.php:103
797
- msgid "Shadow vertical length."
798
- msgstr ""
799
-
800
- #: includes/admin/theme-form-close-tab.php:288
801
- #: includes/admin/theme-form-close-tab.php:355
802
- #: includes/admin/theme-form-container-tab.php:161
803
- #: includes/admin/theme-form-title-tab.php:108
804
- msgid "Blur Radius"
805
- msgstr ""
806
-
807
- #: includes/admin/theme-form-close-tab.php:293
808
- #: includes/admin/theme-form-close-tab.php:360
809
- #: includes/admin/theme-form-container-tab.php:166
810
- #: includes/admin/theme-form-title-tab.php:113
811
- msgid "Shadow blur radius."
812
- msgstr ""
813
-
814
- #: includes/admin/theme-form-close-tab.php:298
815
- #: includes/admin/theme-form-container-tab.php:171
816
- msgid "Spread"
817
- msgstr ""
818
-
819
- #: includes/admin/theme-form-close-tab.php:303
820
- #: includes/admin/theme-form-container-tab.php:176
821
- msgid "Shadow spread."
822
- msgstr ""
823
-
824
- #: includes/admin/theme-form-close-tab.php:312
825
- #: includes/admin/theme-form-close-tab.php:369
826
- #: includes/admin/theme-form-container-tab.php:185
827
- #: includes/admin/theme-form-title-tab.php:122
828
- msgid "Shadow color."
829
- msgstr ""
830
-
831
- #: includes/admin/theme-form-close-tab.php:322
832
- #: includes/admin/theme-form-close-tab.php:379
833
- #: includes/admin/theme-form-container-tab.php:195
834
- #: includes/admin/theme-form-title-tab.php:132
835
- msgid "Shadow opacity."
836
- msgstr ""
837
-
838
- #: includes/admin/theme-form-close-tab.php:331
839
- #: includes/admin/theme-form-title-tab.php:84
840
- msgid "Text Shadow"
841
- msgstr ""
842
-
843
- #: includes/admin/theme-form-container-tab.php:5
844
- msgid "Container"
845
- msgstr ""
846
-
847
- #: includes/admin/theme-form-container-tab.php:49
848
- msgid "Choose the background color for your container."
849
- msgstr ""
850
-
851
- #: includes/admin/theme-form-container-tab.php:77
852
- msgid "Choose a corner radius for your container button."
853
- msgstr ""
854
-
855
- #: includes/admin/theme-form-container-tab.php:93
856
- msgid "Choose a border style for your container button."
857
- msgstr ""
858
-
859
- #: includes/admin/theme-form-container-tab.php:102
860
- msgid "Choose the border color for your container button."
861
- msgstr ""
862
-
863
- #: includes/admin/theme-form-content-tab.php:32
864
- msgid "Choose the font color for your content button."
865
- msgstr ""
866
-
867
- #: includes/admin/theme-form-general-tab.php:31
868
- msgid "Enter a name for your theme."
869
- msgstr ""
870
-
871
- #: includes/admin/theme-form-overlay-tab.php:5
872
- msgid "Overlay"
873
- msgstr ""
874
-
875
- #: includes/admin/theme-form-overlay-tab.php:28
876
- msgid "Choose the overlay color."
877
- msgstr ""
878
-
879
- #: includes/admin/theme-form-overlay-tab.php:38
880
- msgid "The opacity value for the overlay."
881
- msgstr ""
882
-
883
- #: includes/admin/theme-form-title-tab.php:32
884
- msgid "Font color."
885
- msgstr ""
886
-
887
- #: includes/admin/theme-form-title-tab.php:64
888
- msgid "Align"
889
- msgstr ""
890
-
891
- #: includes/admin/theme-form-title-tab.php:75
892
- msgid "Text alignment."
893
- msgstr ""
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Easy Modal\n"
4
+ "POT-Creation-Date: 2014-07-05 21:57-0500\n"
5
+ "PO-Revision-Date: 2014-07-05 21:57-0500\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: ru_RU\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.6\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
19
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: classes/admin.php:53 classes/admin/menu.php:52 classes/admin/menu.php:53
23
+ msgid "Settings"
24
+ msgstr ""
25
+
26
+ #: classes/admin.php:55
27
+ msgid "Go Pro"
28
+ msgstr ""
29
+
30
+ #: classes/admin/api.php:151
31
+ msgid "An Unexpected HTTP Error occurred during the API request."
32
+ msgstr ""
33
+
34
+ #: classes/admin/api.php:158
35
+ msgid "An unknown error occurred"
36
+ msgstr ""
37
+
38
+ #: classes/admin/menu.php:30 classes/admin/menu.php:31
39
+ #: classes/controller/admin/modals.php:45
40
+ msgid "Modals"
41
+ msgstr ""
42
+
43
+ #: classes/admin/menu.php:41 classes/admin/menu.php:42
44
+ msgid "Theme"
45
+ msgstr ""
46
+
47
+ #: classes/admin/menu.php:63 classes/admin/menu.php:64
48
+ msgid "Help"
49
+ msgstr ""
50
+
51
+ #: classes/controller/admin/modals.php:61
52
+ msgid "Modal Updated."
53
+ msgstr ""
54
+
55
+ #: classes/controller/admin/modals.php:61
56
+ msgid "Modal Created."
57
+ msgstr ""
58
+
59
+ #: classes/controller/admin/modals.php:65
60
+ msgid "Edit Modal"
61
+ msgstr ""
62
+
63
+ #: classes/controller/admin/modals.php:65
64
+ msgid "Add New Modal"
65
+ msgstr ""
66
+
67
+ #: classes/controller/admin/modals.php:80
68
+ msgid "Modal cloned successfully"
69
+ msgstr ""
70
+
71
+ #: classes/controller/admin/modals.php:106
72
+ msgid " modals moved to the trash"
73
+ msgstr ""
74
+
75
+ #: classes/controller/admin/modals.php:118
76
+ msgid "Modal trash has been permanantly removed."
77
+ msgstr ""
78
+
79
+ #: classes/controller/admin/modals.php:143
80
+ msgid " modal restored from trash."
81
+ msgstr ""
82
+
83
+ #: classes/controller/admin/settings.php:33
84
+ msgid "Settings Updated."
85
+ msgstr ""
86
+
87
+ #: classes/controller/admin/settings.php:37
88
+ msgid "Easy Modal Settings"
89
+ msgstr ""
90
+
91
+ #: classes/controller/admin/theme.php:29
92
+ msgid "Theme Updated."
93
+ msgstr ""
94
+
95
+ #: classes/controller/admin/theme.php:33
96
+ msgid "Edit Theme"
97
+ msgstr ""
98
+
99
+ #: classes/view/admin/modal/form.php:9 classes/view/admin/modal/index.php:9
100
+ #: classes/view/admin/theme/form.php:9
101
+ msgid "Add New"
102
+ msgstr ""
103
+
104
+ #: classes/view/admin/modal/form.php:33 classes/view/admin/modal/form.php:57
105
+ #: classes/view/admin/settings/form.php:29
106
+ #: classes/view/admin/settings/form.php:53
107
+ #: classes/view/admin/theme/form.php:46
108
+ msgid "Publish"
109
+ msgstr ""
110
+
111
+ #: classes/view/admin/modal/form.php:39
112
+ #: classes/view/admin/settings/form.php:35
113
+ msgid "Clone"
114
+ msgstr ""
115
+
116
+ #: classes/view/admin/modal/form.php:43
117
+ #: classes/view/admin/settings/form.php:39
118
+ #: classes/view/admin/theme/form.php:52
119
+ msgid "Preview"
120
+ msgstr ""
121
+
122
+ #: classes/view/admin/modal/form.php:52
123
+ #: classes/view/admin/settings/form.php:48
124
+ msgid "Move to Trash"
125
+ msgstr ""
126
+
127
+ #: classes/view/admin/modal/index.php:129
128
+ #: includes/admin/modal-form-general-tab.php:25
129
+ #: includes/admin/theme-form-general-tab.php:25
130
+ msgid "Name"
131
+ msgstr ""
132
+
133
+ #: classes/view/admin/modal/index.php:130
134
+ msgid "Class"
135
+ msgstr ""
136
+
137
+ #: classes/view/admin/modal/index.php:131
138
+ msgid "Load Method"
139
+ msgstr ""
140
+
141
+ #: classes/view/admin/modal/index.php:162
142
+ #: classes/view/admin/modal/index.php:195
143
+ msgid "Delete"
144
+ msgstr ""
145
+
146
+ #: classes/view/admin/modal/index.php:164
147
+ msgid "Restore"
148
+ msgstr ""
149
+
150
+ #: classes/view/admin/modal/index.php:166
151
+ msgid "Empty Trash"
152
+ msgstr ""
153
+
154
+ #: classes/view/admin/modal/index.php:187
155
+ #, php-format
156
+ msgid "Edit &#8220;%s&#8221;"
157
+ msgstr ""
158
+
159
+ #: classes/view/admin/modal/index.php:191
160
+ msgid "Edit"
161
+ msgstr ""
162
+
163
+ #: classes/view/admin/modal/index.php:197
164
+ msgid "View"
165
+ msgstr ""
166
+
167
+ #: classes/view/admin/modal/index.php:216
168
+ msgid "Per Page / Post"
169
+ msgstr ""
170
+
171
+ #: classes/view/admin/modal/index.php:220
172
+ msgid "AJAX"
173
+ msgstr ""
174
+
175
+ #: classes/view/admin/modal/index.php:224
176
+ msgid "Sitewide"
177
+ msgstr ""
178
+
179
+ #: classes/view/admin/theme/form.php:25
180
+ msgid "Theme Preview"
181
+ msgstr ""
182
+
183
+ #: classes/view/admin/theme/form.php:28
184
+ msgid "Title Text"
185
+ msgstr ""
186
+
187
+ #: classes/view/admin/theme/form.php:30 classes/view/modal.php:80
188
+ #: includes/admin/options.php:60
189
+ msgid "&#215;"
190
+ msgstr ""
191
+
192
+ #: classes/view/admin/theme/form.php:62
193
+ msgid "Save"
194
+ msgstr ""
195
+
196
+ #: em-core.php:77 em-core.php:78
197
+ msgid "Test"
198
+ msgstr ""
199
+
200
+ #: em-core.php:80
201
+ msgid "-test"
202
+ msgstr ""
203
+
204
+ #: includes/admin/modal-form-close-tab.php:5
205
+ msgid "Close Options"
206
+ msgstr ""
207
+
208
+ #: includes/admin/modal-form-close-tab.php:25
209
+ msgid "Click Overlay to Close"
210
+ msgstr ""
211
+
212
+ #: includes/admin/modal-form-close-tab.php:28
213
+ msgid "Checking this will cause modal to close when user clicks on overlay."
214
+ msgstr ""
215
+
216
+ #: includes/admin/modal-form-close-tab.php:38
217
+ msgid "Press ESC to Close"
218
+ msgstr ""
219
+
220
+ #: includes/admin/modal-form-close-tab.php:41
221
+ msgid "Checking this will cause modal to close when user presses ESC key."
222
+ msgstr ""
223
+
224
+ #: includes/admin/modal-form-display-tab.php:5
225
+ msgid "Display Options"
226
+ msgstr ""
227
+
228
+ #: includes/admin/modal-form-display-tab.php:27
229
+ #: includes/admin/theme-form-close-tab.php:134
230
+ #: includes/admin/theme-form-title-tab.php:38
231
+ msgid "Size"
232
+ msgstr ""
233
+
234
+ #: includes/admin/modal-form-display-tab.php:40
235
+ msgid "Select the size of the modal."
236
+ msgstr ""
237
+
238
+ #: includes/admin/modal-form-display-tab.php:51
239
+ #: includes/admin/theme-form-close-tab.php:233
240
+ #: includes/admin/theme-form-container-tab.php:107
241
+ msgid "Width"
242
+ msgstr ""
243
+
244
+ #: includes/admin/modal-form-display-tab.php:64
245
+ msgid "Set a custom width for the modal."
246
+ msgstr ""
247
+
248
+ #: includes/admin/modal-form-display-tab.php:70
249
+ msgid "Auto Adjusted Height"
250
+ msgstr ""
251
+
252
+ #: includes/admin/modal-form-display-tab.php:73
253
+ msgid "Checking this option will set height to fix the content."
254
+ msgstr ""
255
+
256
+ #: includes/admin/modal-form-display-tab.php:80
257
+ msgid "Height"
258
+ msgstr ""
259
+
260
+ #: includes/admin/modal-form-display-tab.php:93
261
+ msgid "Set a custom height for the modal."
262
+ msgstr ""
263
+
264
+ #: includes/admin/modal-form-display-tab.php:104
265
+ msgid "Animation"
266
+ msgstr ""
267
+
268
+ #: includes/admin/modal-form-display-tab.php:109
269
+ msgid "Animation Type"
270
+ msgstr ""
271
+
272
+ #: includes/admin/modal-form-display-tab.php:121
273
+ msgid "Select an animation type for your modal."
274
+ msgstr ""
275
+
276
+ #: includes/admin/modal-form-display-tab.php:127
277
+ msgid "Animation Speed"
278
+ msgstr ""
279
+
280
+ #: includes/admin/modal-form-display-tab.php:133
281
+ msgid "Set the animation speed for the modal."
282
+ msgstr ""
283
+
284
+ #: includes/admin/modal-form-display-tab.php:139
285
+ msgid "Animation Origin"
286
+ msgstr ""
287
+
288
+ #: includes/admin/modal-form-display-tab.php:151
289
+ msgid "Choose where the animation will begin."
290
+ msgstr ""
291
+
292
+ #: includes/admin/modal-form-display-tab.php:162
293
+ #: includes/admin/theme-form-close-tab.php:70
294
+ msgid "Position"
295
+ msgstr ""
296
+
297
+ #: includes/admin/modal-form-display-tab.php:166
298
+ #: includes/admin/theme-form-close-tab.php:55
299
+ msgid "Location"
300
+ msgstr ""
301
+
302
+ #: includes/admin/modal-form-display-tab.php:177
303
+ #: includes/admin/theme-form-close-tab.php:66
304
+ msgid "Choose which corner the close button will be positioned."
305
+ msgstr ""
306
+
307
+ #: includes/admin/modal-form-display-tab.php:181
308
+ msgid "Fixed"
309
+ msgstr ""
310
+
311
+ #: includes/admin/modal-form-display-tab.php:184
312
+ msgid "Checking this fixes the position of the modal."
313
+ msgstr ""
314
+
315
+ #: includes/admin/modal-form-display-tab.php:189
316
+ #: includes/admin/options.php:200 includes/admin/theme-form-close-tab.php:74
317
+ msgid "Top"
318
+ msgstr ""
319
+
320
+ #: includes/admin/modal-form-display-tab.php:194
321
+ #: includes/admin/theme-form-close-tab.php:79
322
+ msgid "Top."
323
+ msgstr ""
324
+
325
+ #: includes/admin/modal-form-display-tab.php:199
326
+ #: includes/admin/options.php:202 includes/admin/theme-form-close-tab.php:94
327
+ msgid "Bottom"
328
+ msgstr ""
329
+
330
+ #: includes/admin/modal-form-display-tab.php:204
331
+ #: includes/admin/theme-form-close-tab.php:99
332
+ msgid "Bottom."
333
+ msgstr ""
334
+
335
+ #: includes/admin/modal-form-display-tab.php:209
336
+ #: includes/admin/options.php:141 includes/admin/options.php:201
337
+ #: includes/admin/theme-form-close-tab.php:84
338
+ msgid "Left"
339
+ msgstr ""
340
+
341
+ #: includes/admin/modal-form-display-tab.php:214
342
+ #: includes/admin/theme-form-close-tab.php:89
343
+ msgid "Left."
344
+ msgstr ""
345
+
346
+ #: includes/admin/modal-form-display-tab.php:219
347
+ #: includes/admin/options.php:143 includes/admin/options.php:203
348
+ #: includes/admin/theme-form-close-tab.php:104
349
+ msgid "Right"
350
+ msgstr ""
351
+
352
+ #: includes/admin/modal-form-display-tab.php:224
353
+ #: includes/admin/theme-form-close-tab.php:109
354
+ msgid "Right."
355
+ msgstr ""
356
+
357
+ #: includes/admin/modal-form-example-tab.php:5
358
+ msgid "Examples"
359
+ msgstr ""
360
+
361
+ #: includes/admin/modal-form-example-tab.php:14
362
+ msgid "Copy this class to the link/button you want to open this modal."
363
+ msgstr ""
364
+
365
+ #: includes/admin/modal-form-example-tab.php:18
366
+ msgid "Link Example"
367
+ msgstr ""
368
+
369
+ #: includes/admin/modal-form-example-tab.php:19
370
+ #: includes/admin/modal-form-example-tab.php:20
371
+ #: includes/admin/modal-form-example-tab.php:24
372
+ #: includes/admin/modal-form-example-tab.php:25
373
+ msgid "Open Modal"
374
+ msgstr ""
375
+
376
+ #: includes/admin/modal-form-example-tab.php:23
377
+ msgid "Button Example"
378
+ msgstr ""
379
+
380
+ #: includes/admin/modal-form-example-tab.php:27
381
+ msgid "Image Example"
382
+ msgstr ""
383
+
384
+ #: includes/admin/modal-form-general-tab.php:5
385
+ #: includes/admin/theme-form-general-tab.php:5
386
+ msgid "General"
387
+ msgstr ""
388
+
389
+ #: includes/admin/modal-form-general-tab.php:31
390
+ msgid "Enter a name for your modal."
391
+ msgstr ""
392
+
393
+ #: includes/admin/modal-form-general-tab.php:43
394
+ msgid "Load Type"
395
+ msgstr ""
396
+
397
+ #: includes/admin/modal-form-general-tab.php:48
398
+ msgid "Per Page/Post"
399
+ msgstr ""
400
+
401
+ #: includes/admin/modal-form-general-tab.php:49
402
+ msgid "Load Sitewide"
403
+ msgstr ""
404
+
405
+ #: includes/admin/modal-form-general-tab.php:50
406
+ msgid "Using AJAX"
407
+ msgstr ""
408
+
409
+ #: includes/admin/modal-form-general-tab.php:52
410
+ msgid "Load this modal per page, sitewide or using ajax."
411
+ msgstr ""
412
+
413
+ #: includes/admin/modal-form-general-tab.php:64
414
+ #: includes/admin/theme-form-title-tab.php:5
415
+ msgid "Title"
416
+ msgstr ""
417
+
418
+ #: includes/admin/modal-form-general-tab.php:70
419
+ msgid "The title that appears in the modal window."
420
+ msgstr ""
421
+
422
+ #: includes/admin/modal-form-general-tab.php:81
423
+ #: includes/admin/theme-form-content-tab.php:5
424
+ msgid "Content"
425
+ msgstr ""
426
+
427
+ #: includes/admin/modal-form-general-tab.php:96
428
+ msgid "Modal content. Can contain shortcodes."
429
+ msgstr ""
430
+
431
+ #: includes/admin/options.php:100
432
+ msgid "PX"
433
+ msgstr ""
434
+
435
+ #: includes/admin/options.php:101
436
+ msgid "%"
437
+ msgstr ""
438
+
439
+ #: includes/admin/options.php:102
440
+ msgid "EM"
441
+ msgstr ""
442
+
443
+ #: includes/admin/options.php:103
444
+ msgid "REM"
445
+ msgstr ""
446
+
447
+ #: includes/admin/options.php:111 includes/admin/options.php:186
448
+ msgid "None"
449
+ msgstr ""
450
+
451
+ #: includes/admin/options.php:112
452
+ msgid "Solid"
453
+ msgstr ""
454
+
455
+ #: includes/admin/options.php:113
456
+ msgid "Dotted"
457
+ msgstr ""
458
+
459
+ #: includes/admin/options.php:114
460
+ msgid "Dashed"
461
+ msgstr ""
462
+
463
+ #: includes/admin/options.php:115
464
+ msgid "Double"
465
+ msgstr ""
466
+
467
+ #: includes/admin/options.php:116
468
+ msgid "Groove"
469
+ msgstr ""
470
+
471
+ #: includes/admin/options.php:117 includes/admin/theme-form-close-tab.php:252
472
+ #: includes/admin/theme-form-container-tab.php:125
473
+ msgid "Inset"
474
+ msgstr ""
475
+
476
+ #: includes/admin/options.php:118
477
+ msgid "Outset"
478
+ msgstr ""
479
+
480
+ #: includes/admin/options.php:119
481
+ msgid "Ridge"
482
+ msgstr ""
483
+
484
+ #: includes/admin/options.php:127
485
+ msgid "Sans-Serif"
486
+ msgstr ""
487
+
488
+ #: includes/admin/options.php:128
489
+ msgid "Tahoma"
490
+ msgstr ""
491
+
492
+ #: includes/admin/options.php:129
493
+ msgid "Georgia"
494
+ msgstr ""
495
+
496
+ #: includes/admin/options.php:130
497
+ msgid "Comic Sans MS"
498
+ msgstr ""
499
+
500
+ #: includes/admin/options.php:131
501
+ msgid "Arial"
502
+ msgstr ""
503
+
504
+ #: includes/admin/options.php:132
505
+ msgid "Lucida Grande"
506
+ msgstr ""
507
+
508
+ #: includes/admin/options.php:133
509
+ msgid "Times New Roman"
510
+ msgstr ""
511
+
512
+ #: includes/admin/options.php:142
513
+ msgid "Center"
514
+ msgstr ""
515
+
516
+ #: includes/admin/options.php:152
517
+ msgid "-----------------------"
518
+ msgstr ""
519
+
520
+ #: includes/admin/options.php:160
521
+ msgid "Auto"
522
+ msgstr ""
523
+
524
+ #: includes/admin/options.php:161
525
+ msgid "Responsive"
526
+ msgstr ""
527
+
528
+ #: includes/admin/options.php:162
529
+ msgid "Normal"
530
+ msgstr ""
531
+
532
+ #: includes/admin/options.php:163
533
+ msgid "Nano"
534
+ msgstr ""
535
+
536
+ #: includes/admin/options.php:164
537
+ msgid "Tiny"
538
+ msgstr ""
539
+
540
+ #: includes/admin/options.php:165
541
+ msgid "Small"
542
+ msgstr ""
543
+
544
+ #: includes/admin/options.php:166
545
+ msgid "Medium"
546
+ msgstr ""
547
+
548
+ #: includes/admin/options.php:167
549
+ msgid "Large"
550
+ msgstr ""
551
+
552
+ #: includes/admin/options.php:168
553
+ msgid "X Large"
554
+ msgstr ""
555
+
556
+ #: includes/admin/options.php:176
557
+ msgid "Non-Responsive"
558
+ msgstr ""
559
+
560
+ #: includes/admin/options.php:177
561
+ msgid "Custom"
562
+ msgstr ""
563
+
564
+ #: includes/admin/options.php:187
565
+ msgid "Slide"
566
+ msgstr ""
567
+
568
+ #: includes/admin/options.php:188
569
+ msgid "Fade"
570
+ msgstr ""
571
+
572
+ #: includes/admin/options.php:189
573
+ msgid "Fade and Slide"
574
+ msgstr ""
575
+
576
+ #: includes/admin/options.php:190
577
+ msgid "Grow"
578
+ msgstr ""
579
+
580
+ #: includes/admin/options.php:191
581
+ msgid "Grow and Slide"
582
+ msgstr ""
583
+
584
+ #: includes/admin/options.php:204 includes/admin/options.php:221
585
+ #: includes/admin/options.php:237
586
+ msgid "Top Left"
587
+ msgstr ""
588
+
589
+ #: includes/admin/options.php:205 includes/admin/options.php:222
590
+ msgid "Top Center"
591
+ msgstr ""
592
+
593
+ #: includes/admin/options.php:206 includes/admin/options.php:223
594
+ #: includes/admin/options.php:238
595
+ msgid "Top Right"
596
+ msgstr ""
597
+
598
+ #: includes/admin/options.php:207 includes/admin/options.php:224
599
+ msgid "Middle Left"
600
+ msgstr ""
601
+
602
+ #: includes/admin/options.php:208 includes/admin/options.php:225
603
+ msgid "Middle Center"
604
+ msgstr ""
605
+
606
+ #: includes/admin/options.php:209 includes/admin/options.php:226
607
+ msgid "Middle Right"
608
+ msgstr ""
609
+
610
+ #: includes/admin/options.php:210 includes/admin/options.php:227
611
+ #: includes/admin/options.php:239
612
+ msgid "Bottom Left"
613
+ msgstr ""
614
+
615
+ #: includes/admin/options.php:211 includes/admin/options.php:228
616
+ msgid "Bottom Center"
617
+ msgstr ""
618
+
619
+ #: includes/admin/options.php:212 includes/admin/options.php:229
620
+ #: includes/admin/options.php:240
621
+ msgid "Bottom Right"
622
+ msgstr ""
623
+
624
+ #: includes/admin/postmeta.php:9
625
+ msgid "Select which modals to load"
626
+ msgstr ""
627
+
628
+ #: includes/admin/postmeta.php:12
629
+ msgid " checked=\"checked\""
630
+ msgstr ""
631
+
632
+ #: includes/admin/theme-form-close-tab.php:5
633
+ msgid "Close"
634
+ msgstr ""
635
+
636
+ #: includes/admin/theme-form-close-tab.php:24
637
+ msgid "Text"
638
+ msgstr ""
639
+
640
+ #: includes/admin/theme-form-close-tab.php:28
641
+ msgid "Enter the close button text."
642
+ msgstr ""
643
+
644
+ #: includes/admin/theme-form-close-tab.php:39
645
+ #: includes/admin/theme-form-container-tab.php:26
646
+ msgid "Padding"
647
+ msgstr ""
648
+
649
+ #: includes/admin/theme-form-close-tab.php:44
650
+ #: includes/admin/theme-form-container-tab.php:31
651
+ msgid "Padding."
652
+ msgstr ""
653
+
654
+ #: includes/admin/theme-form-close-tab.php:120
655
+ #: includes/admin/theme-form-content-tab.php:24
656
+ #: includes/admin/theme-form-title-tab.php:24
657
+ msgid "Font"
658
+ msgstr ""
659
+
660
+ #: includes/admin/theme-form-close-tab.php:124
661
+ #: includes/admin/theme-form-close-tab.php:169
662
+ #: includes/admin/theme-form-close-tab.php:224
663
+ #: includes/admin/theme-form-close-tab.php:308
664
+ #: includes/admin/theme-form-close-tab.php:365
665
+ #: includes/admin/theme-form-container-tab.php:45
666
+ #: includes/admin/theme-form-container-tab.php:98
667
+ #: includes/admin/theme-form-container-tab.php:181
668
+ #: includes/admin/theme-form-content-tab.php:28
669
+ #: includes/admin/theme-form-overlay-tab.php:24
670
+ #: includes/admin/theme-form-title-tab.php:28
671
+ #: includes/admin/theme-form-title-tab.php:118
672
+ msgid "Color"
673
+ msgstr ""
674
+
675
+ #: includes/admin/theme-form-close-tab.php:128
676
+ msgid "Choose the font color for your close button."
677
+ msgstr ""
678
+
679
+ #: includes/admin/theme-form-close-tab.php:139
680
+ #: includes/admin/theme-form-title-tab.php:43
681
+ msgid "Font size."
682
+ msgstr ""
683
+
684
+ #: includes/admin/theme-form-close-tab.php:144
685
+ #: includes/admin/theme-form-content-tab.php:49
686
+ #: includes/admin/theme-form-title-tab.php:48
687
+ msgid "Family"
688
+ msgstr ""
689
+
690
+ #: includes/admin/theme-form-close-tab.php:155
691
+ #: includes/admin/theme-form-content-tab.php:60
692
+ #: includes/admin/theme-form-title-tab.php:59
693
+ msgid "Font family."
694
+ msgstr ""
695
+
696
+ #: includes/admin/theme-form-close-tab.php:165
697
+ #: includes/admin/theme-form-container-tab.php:41
698
+ msgid "Background"
699
+ msgstr ""
700
+
701
+ #: includes/admin/theme-form-close-tab.php:173
702
+ msgid "Choose the background color for your close button."
703
+ msgstr ""
704
+
705
+ #: includes/admin/theme-form-close-tab.php:178
706
+ #: includes/admin/theme-form-close-tab.php:317
707
+ #: includes/admin/theme-form-close-tab.php:374
708
+ #: includes/admin/theme-form-container-tab.php:54
709
+ #: includes/admin/theme-form-container-tab.php:190
710
+ #: includes/admin/theme-form-overlay-tab.php:33
711
+ #: includes/admin/theme-form-title-tab.php:127
712
+ msgid "Opacity"
713
+ msgstr ""
714
+
715
+ #: includes/admin/theme-form-close-tab.php:183
716
+ #: includes/admin/theme-form-container-tab.php:59
717
+ msgid "Background opacity."
718
+ msgstr ""
719
+
720
+ #: includes/admin/theme-form-close-tab.php:194
721
+ #: includes/admin/theme-form-container-tab.php:68
722
+ msgid "Border"
723
+ msgstr ""
724
+
725
+ #: includes/admin/theme-form-close-tab.php:198
726
+ #: includes/admin/theme-form-container-tab.php:72
727
+ msgid "Radius"
728
+ msgstr ""
729
+
730
+ #: includes/admin/theme-form-close-tab.php:203
731
+ msgid "Choose a corner radius for your close button."
732
+ msgstr ""
733
+
734
+ #: includes/admin/theme-form-close-tab.php:208
735
+ #: includes/admin/theme-form-container-tab.php:82
736
+ msgid "Style"
737
+ msgstr ""
738
+
739
+ #: includes/admin/theme-form-close-tab.php:219
740
+ msgid "Choose a border style for your close button."
741
+ msgstr ""
742
+
743
+ #: includes/admin/theme-form-close-tab.php:228
744
+ msgid "Choose the border color for your close button."
745
+ msgstr ""
746
+
747
+ #: includes/admin/theme-form-close-tab.php:238
748
+ #: includes/admin/theme-form-container-tab.php:112
749
+ msgid "Choose a width for your border."
750
+ msgstr ""
751
+
752
+ #: includes/admin/theme-form-close-tab.php:248
753
+ #: includes/admin/theme-form-container-tab.php:121
754
+ msgid "Drop Shadow"
755
+ msgstr ""
756
+
757
+ #: includes/admin/theme-form-close-tab.php:256
758
+ #: includes/admin/theme-form-container-tab.php:129
759
+ msgid "Yes"
760
+ msgstr ""
761
+
762
+ #: includes/admin/theme-form-close-tab.php:256
763
+ #: includes/admin/theme-form-container-tab.php:129
764
+ msgid "No"
765
+ msgstr ""
766
+
767
+ #: includes/admin/theme-form-close-tab.php:263
768
+ #: includes/admin/theme-form-container-tab.php:136
769
+ msgid "Is boxshadow inset or drop."
770
+ msgstr ""
771
+
772
+ #: includes/admin/theme-form-close-tab.php:268
773
+ #: includes/admin/theme-form-close-tab.php:335
774
+ #: includes/admin/theme-form-container-tab.php:141
775
+ #: includes/admin/theme-form-title-tab.php:88
776
+ msgid "Horizontal Length"
777
+ msgstr ""
778
+
779
+ #: includes/admin/theme-form-close-tab.php:273
780
+ #: includes/admin/theme-form-close-tab.php:340
781
+ #: includes/admin/theme-form-container-tab.php:146
782
+ #: includes/admin/theme-form-title-tab.php:93
783
+ msgid "Shadow horizontal length."
784
+ msgstr ""
785
+
786
+ #: includes/admin/theme-form-close-tab.php:278
787
+ #: includes/admin/theme-form-close-tab.php:345
788
+ #: includes/admin/theme-form-container-tab.php:151
789
+ #: includes/admin/theme-form-title-tab.php:98
790
+ msgid "Vertical Length"
791
+ msgstr ""
792
+
793
+ #: includes/admin/theme-form-close-tab.php:283
794
+ #: includes/admin/theme-form-close-tab.php:350
795
+ #: includes/admin/theme-form-container-tab.php:156
796
+ #: includes/admin/theme-form-title-tab.php:103
797
+ msgid "Shadow vertical length."
798
+ msgstr ""
799
+
800
+ #: includes/admin/theme-form-close-tab.php:288
801
+ #: includes/admin/theme-form-close-tab.php:355
802
+ #: includes/admin/theme-form-container-tab.php:161
803
+ #: includes/admin/theme-form-title-tab.php:108
804
+ msgid "Blur Radius"
805
+ msgstr ""
806
+
807
+ #: includes/admin/theme-form-close-tab.php:293
808
+ #: includes/admin/theme-form-close-tab.php:360
809
+ #: includes/admin/theme-form-container-tab.php:166
810
+ #: includes/admin/theme-form-title-tab.php:113
811
+ msgid "Shadow blur radius."
812
+ msgstr ""
813
+
814
+ #: includes/admin/theme-form-close-tab.php:298
815
+ #: includes/admin/theme-form-container-tab.php:171
816
+ msgid "Spread"
817
+ msgstr ""
818
+
819
+ #: includes/admin/theme-form-close-tab.php:303
820
+ #: includes/admin/theme-form-container-tab.php:176
821
+ msgid "Shadow spread."
822
+ msgstr ""
823
+
824
+ #: includes/admin/theme-form-close-tab.php:312
825
+ #: includes/admin/theme-form-close-tab.php:369
826
+ #: includes/admin/theme-form-container-tab.php:185
827
+ #: includes/admin/theme-form-title-tab.php:122
828
+ msgid "Shadow color."
829
+ msgstr ""
830
+
831
+ #: includes/admin/theme-form-close-tab.php:322
832
+ #: includes/admin/theme-form-close-tab.php:379
833
+ #: includes/admin/theme-form-container-tab.php:195
834
+ #: includes/admin/theme-form-title-tab.php:132
835
+ msgid "Shadow opacity."
836
+ msgstr ""
837
+
838
+ #: includes/admin/theme-form-close-tab.php:331
839
+ #: includes/admin/theme-form-title-tab.php:84
840
+ msgid "Text Shadow"
841
+ msgstr ""
842
+
843
+ #: includes/admin/theme-form-container-tab.php:5
844
+ msgid "Container"
845
+ msgstr ""
846
+
847
+ #: includes/admin/theme-form-container-tab.php:49
848
+ msgid "Choose the background color for your container."
849
+ msgstr ""
850
+
851
+ #: includes/admin/theme-form-container-tab.php:77
852
+ msgid "Choose a corner radius for your container button."
853
+ msgstr ""
854
+
855
+ #: includes/admin/theme-form-container-tab.php:93
856
+ msgid "Choose a border style for your container button."
857
+ msgstr ""
858
+
859
+ #: includes/admin/theme-form-container-tab.php:102
860
+ msgid "Choose the border color for your container button."
861
+ msgstr ""
862
+
863
+ #: includes/admin/theme-form-content-tab.php:32
864
+ msgid "Choose the font color for your content button."
865
+ msgstr ""
866
+
867
+ #: includes/admin/theme-form-general-tab.php:31
868
+ msgid "Enter a name for your theme."
869
+ msgstr ""
870
+
871
+ #: includes/admin/theme-form-overlay-tab.php:5
872
+ msgid "Overlay"
873
+ msgstr ""
874
+
875
+ #: includes/admin/theme-form-overlay-tab.php:28
876
+ msgid "Choose the overlay color."
877
+ msgstr ""
878
+
879
+ #: includes/admin/theme-form-overlay-tab.php:38
880
+ msgid "The opacity value for the overlay."
881
+ msgstr ""
882
+
883
+ #: includes/admin/theme-form-title-tab.php:32
884
+ msgid "Font color."
885
+ msgstr ""
886
+
887
+ #: includes/admin/theme-form-title-tab.php:64
888
+ msgid "Align"
889
+ msgstr ""
890
+
891
+ #: includes/admin/theme-form-title-tab.php:75
892
+ msgid "Text alignment."
893
+ msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
6
  Tags: modal,modal box,modal form,modal window,popup,popup box,popup form,popup window,ajax forms
7
  Requires at least: 3.4
8
  Tested up to: 3.9.2
9
- Stable tag: 2.0.12
10
  Make a pop up in minutes. Logins, Auto Exits, Scroll Pops, Age Verification Pops. Theme, customize, stream line your GUI & market your content!
11
  == Description ==
12
  Make a pop up in minutes - Logins, Auto Exits, Scroll Pops, Age Verification Pops - use EasyModal's ultimate theme capabilities and customization options to make glorious pop ups that increase your site's usability, conversion rates and market your most precious content.
6
  Tags: modal,modal box,modal form,modal window,popup,popup box,popup form,popup window,ajax forms
7
  Requires at least: 3.4
8
  Tested up to: 3.9.2
9
+ Stable tag: 2.0.13
10
  Make a pop up in minutes. Logins, Auto Exits, Scroll Pops, Age Verification Pops. Theme, customize, stream line your GUI & market your content!
11
  == Description ==
12
  Make a pop up in minutes - Logins, Auto Exits, Scroll Pops, Age Verification Pops - use EasyModal's ultimate theme capabilities and customization options to make glorious pop ups that increase your site's usability, conversion rates and market your most precious content.