Easy Coming Soon - Version 1.9.3

Version Description

  1. Language translation feature added.
Download this release

Release Info

Developer priyanshu.mittal
Plugin Icon 128x128 Easy Coming Soon
Version 1.9.3
Comparing to
See all releases

Code changes from version 1.9.2 to 1.9.3

coming-soon-plugin.php CHANGED
@@ -1,67 +1,72 @@
1
  <?php
2
- /*
3
- Plugin Name:Easy Coming Soon
4
- Description: Easy coming Soon plugin allows you to quickly create a launch / under construction page for your website. Collect E-mails and connect with users on Social Networks.
5
- Version: 1.9.2
6
- Author:Ankit Agarwal, Priyanshu Mittal
7
- Author URI: http://easycomingsoon.com/
8
- Plugin URI: http://easycomingsoon.com/
9
- */
10
-
11
 
 
 
 
 
12
 
13
- add_action('admin_menu','cmgs_menu');
14
 
15
 
16
- /*
17
- * Coming Soon menu
18
- *
19
- * Create the Plugin Menu
20
- *
21
- */
22
- function cmgs_menu()
23
- {
24
-
25
- $menu = add_menu_page('Easy coming soon', 'Easy coming soon','administrator', 'coming_soon', 'construction');
26
 
27
- add_action( 'admin_print_styles-' . $menu, 'cmgs_plugin_js_css' );
28
- }
29
 
30
- /*
31
- * Coming Soon plugin js and css
32
- *
33
- * attach file css and js from plugin directory
34
- *
35
- */
 
 
 
36
 
37
 
38
- function cmgs_plugin_js_css()
39
- {
40
- // enqueue script for coming soon plugin
41
-
42
- wp_enqueue_media();
43
- wp_enqueue_script( 'theme-preview' );
44
- wp_enqueue_script('tab',plugins_url('/js/spa-tab.js',__FILE__));
45
- // wp_enqueue_script('tab-content',plugins_url('/js/jquery.option.tree.js',__FILE__));
46
- wp_enqueue_script('media-uploads',plugins_url('/js/media-upload-script.js',__FILE__),array('media-upload','thickbox','jquery'));
47
- wp_enqueue_script('my-color-picker-script', plugins_url('js/my-color-picker-script.js',__FILE__), array( 'wp-color-picker' ), false, true );
48
-
49
-
50
-
51
-
52
- wp_enqueue_style('dashboard');
53
-
54
- wp_enqueue_style('wp-color-picker');
55
- //enqueue css for coming soon plugin
56
- wp_enqueue_style('spa_flexslider', plugins_url('/css/theme-admin.css',__FILE__));
57
- wp_enqueue_style('classic',plugins_url('/css/style-classic.css',__FILE__));
58
- wp_enqueue_style('option',plugins_url('/css/style-option.css',__FILE__));
59
- wp_enqueue_style('bootsrap',plugins_url('/css/cs-bootstrap.css',__FILE__));
60
- wp_enqueue_style('thickbox');
61
- wp_enqueue_style('farbtasticss',plugins_url('/css/farbtasticss.css',__FILE__));
62
-
63
-
64
- }
65
 
66
 
67
  function cmgs_wp_admin_style() {
@@ -91,103 +96,103 @@ function cmgs_my_custom_menu()
91
  }
92
 
93
 
94
- /*
95
- * Construction
96
- *
97
- * This function is render all setting page on coming soon plugin page
98
- *
99
- */
100
- function construction()
101
- {
102
- require "theme_options/webriti_option_pannel.php";
103
- }
104
 
105
- /*
106
- * Function my_page_template_redirect
107
- *
108
- * To redirect our site url by coming soon page,after redirecting only our coming soon page can display
109
- *
110
- */
111
- function my_page_template_redirect()
112
- {
113
- //get status value from option table for enable or disable coming soon page
114
- $value=get_option('soon_page_settings');
115
-
116
- //condition matching if status is not disable for coming soon then page is redirect
117
- if($value['status']!=='0')
118
- {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  if(!is_feed())
120
  {
121
- //if user not login page is redirect on coming soon template page
122
- if ( !is_user_logged_in() )
123
- {
124
- //get path of our coming soon display page and redirecting
125
- $file = plugin_dir_path(__FILE__).'template/coming_soon_display.php';
126
- include($file);
127
- exit();
128
- }
129
  }
130
- //if user is log-in then we check role.
131
- if (is_user_logged_in() )
132
- {
133
- //get logined in user role
134
- global $current_user; /* Global variable already have the current user info so need to call get_currentuserinfo or wp_get_current_user */
135
- // get_currentuserinfo(); /* Function is deprecated in the version 4.5 and above new function wp_get_current_user added */
136
- $LoggedInUserID = $current_user->ID;
137
- $UserData = get_userdata( $LoggedInUserID );
138
- //if user role not 'administrator' redirect him to message page
139
- if($UserData->roles[0] != "administrator")
140
- {
141
- if(!is_feed())
142
- {
143
- $file = plugin_dir_path(__FILE__).'template/coming_soon_display.php';
144
- include($file);
145
- exit();
146
- }
147
- }
148
- }
149
- }
150
- }
151
-
152
- /*
153
- * add action to call function my_page_template_redirect
154
- */
155
- // add_action( 'template_redirect', 'my_page_template_redirect' );
156
-
157
- //get page for live preview when my_preview is true,that mean when this page is call on live preview
158
- if ( (isset($_GET['my_preview']) && $_GET['my_preview'] == 'true') )
159
- {
160
- $file = plugin_dir_path(__FILE__).'template/coming_soon_display.php';
161
- include($file);
162
- exit();
163
- }
164
-
165
-
166
-
167
- /*
168
- * We will wrap the template redirect action in this function. We will check if the page is wp-login.php.
169
- The template redirect action will not be called on login pages.
170
- */
171
-
172
- add_action('init','ecs_skip_redirect_on_login');
173
-
174
- function ecs_skip_redirect_on_login ()
175
-
176
  {
177
- global $pagenow;
178
- if ('wp-login.php' == $pagenow)
179
- {
180
- return;
181
-
182
- } else
183
- {
184
- add_action( 'template_redirect', 'my_page_template_redirect' );
185
-
186
-
187
- }
188
-
189
-
190
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
 
192
 
193
 
1
  <?php
2
+ /*
3
+ Plugin Name:Easy Coming Soon
4
+ Description: Easy coming Soon plugin allows you to quickly create a launch / under construction page for your website. Collect E-mails and connect with users on Social Networks.
5
+ Version: 1.9.3
6
+ Author:Ankit Agarwal, Priyanshu Mittal
7
+ Author URI: http://easycomingsoon.com/
8
+ Plugin URI: http://easycomingsoon.com/
9
+ */
 
10
 
11
+ // Plugin Root File.
12
+ if ( ! defined( 'COMINGSOON_PLUGIN_FILE' ) ) {
13
+ define( 'COMINGSOON_PLUGIN_FILE', __FILE__ );
14
+ }
15
 
16
+ add_action('admin_menu','cmgs_menu');
17
 
18
 
19
+ /*
20
+ * Coming Soon menu
21
+ *
22
+ * Create the Plugin Menu
23
+ *
24
+ */
25
+ function cmgs_menu()
26
+ {
27
+ $comingsoon_lang_dir = dirname( plugin_basename( COMINGSOON_PLUGIN_FILE ) ) . '/lang/';
28
+ load_plugin_textdomain( 'commingsoon', false, $comingsoon_lang_dir );
29
 
30
+ $menu = add_menu_page('Easy coming soon', 'Easy coming soon','administrator', 'coming_soon', 'construction');
 
31
 
32
+ add_action( 'admin_print_styles-' . $menu, 'cmgs_plugin_js_css' );
33
+ }
34
+
35
+ /*
36
+ * Coming Soon plugin js and css
37
+ *
38
+ * attach file css and js from plugin directory
39
+ *
40
+ */
41
 
42
 
43
+ function cmgs_plugin_js_css()
44
+ {
45
+ // enqueue script for coming soon plugin
46
+
47
+ wp_enqueue_media();
48
+ wp_enqueue_script( 'theme-preview' );
49
+ wp_enqueue_script('tab',plugins_url('/js/spa-tab.js',__FILE__));
50
+ // wp_enqueue_script('tab-content',plugins_url('/js/jquery.option.tree.js',__FILE__));
51
+ wp_enqueue_script('media-uploads',plugins_url('/js/media-upload-script.js',__FILE__),array('media-upload','thickbox','jquery'));
52
+ wp_enqueue_script('my-color-picker-script', plugins_url('js/my-color-picker-script.js',__FILE__), array( 'wp-color-picker' ), false, true );
53
+
54
+
55
+
56
+
57
+ wp_enqueue_style('dashboard');
58
+
59
+ wp_enqueue_style('wp-color-picker');
60
+ //enqueue css for coming soon plugin
61
+ wp_enqueue_style('spa_flexslider', plugins_url('/css/theme-admin.css',__FILE__));
62
+ wp_enqueue_style('classic',plugins_url('/css/style-classic.css',__FILE__));
63
+ wp_enqueue_style('option',plugins_url('/css/style-option.css',__FILE__));
64
+ wp_enqueue_style('bootsrap',plugins_url('/css/cs-bootstrap.css',__FILE__));
65
+ wp_enqueue_style('thickbox');
66
+ wp_enqueue_style('farbtasticss',plugins_url('/css/farbtasticss.css',__FILE__));
67
+
68
+
69
+ }
70
 
71
 
72
  function cmgs_wp_admin_style() {
96
  }
97
 
98
 
99
+ /*
100
+ * Construction
101
+ *
102
+ * This function is render all setting page on coming soon plugin page
103
+ *
104
+ */
105
+ function construction()
106
+ {
107
+ require "theme_options/webriti_option_pannel.php";
108
+ }
109
 
110
+ /*
111
+ * Function my_page_template_redirect
112
+ *
113
+ * To redirect our site url by coming soon page,after redirecting only our coming soon page can display
114
+ *
115
+ */
116
+ function my_page_template_redirect()
117
+ {
118
+ //get status value from option table for enable or disable coming soon page
119
+ $value=get_option('soon_page_settings');
120
+
121
+ //condition matching if status is not disable for coming soon then page is redirect
122
+ if($value['status']!=='0')
123
+ {
124
+ if(!is_feed())
125
+ {
126
+ //if user not login page is redirect on coming soon template page
127
+ if ( !is_user_logged_in() )
128
+ {
129
+ //get path of our coming soon display page and redirecting
130
+ $file = plugin_dir_path(__FILE__).'template/coming_soon_display.php';
131
+ include($file);
132
+ exit();
133
+ }
134
+ }
135
+ //if user is log-in then we check role.
136
+ if (is_user_logged_in() )
137
+ {
138
+ //get logined in user role
139
+ global $current_user; /* Global variable already have the current user info so need to call get_currentuserinfo or wp_get_current_user */
140
+ // get_currentuserinfo(); /* Function is deprecated in the version 4.5 and above new function wp_get_current_user added */
141
+ $LoggedInUserID = $current_user->ID;
142
+ $UserData = get_userdata( $LoggedInUserID );
143
+ //if user role not 'administrator' redirect him to message page
144
+ if($UserData->roles[0] != "administrator")
145
+ {
146
  if(!is_feed())
147
  {
148
+ $file = plugin_dir_path(__FILE__).'template/coming_soon_display.php';
149
+ include($file);
150
+ exit();
 
 
 
 
 
151
  }
152
+ }
153
+ }
154
+ }
155
+ }
156
+
157
+ /*
158
+ * add action to call function my_page_template_redirect
159
+ */
160
+ // add_action( 'template_redirect', 'my_page_template_redirect' );
161
+
162
+ //get page for live preview when my_preview is true,that mean when this page is call on live preview
163
+ if ( (isset($_GET['my_preview']) && $_GET['my_preview'] == 'true') )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  {
165
+ $file = plugin_dir_path(__FILE__).'template/coming_soon_display.php';
166
+ include($file);
167
+ exit();
 
 
 
 
 
 
 
 
 
 
168
  }
169
+
170
+
171
+
172
+ /*
173
+ * We will wrap the template redirect action in this function. We will check if the page is wp-login.php.
174
+ The template redirect action will not be called on login pages.
175
+ */
176
+
177
+ add_action('init','ecs_skip_redirect_on_login');
178
+
179
+ function ecs_skip_redirect_on_login ()
180
+
181
+ {
182
+ global $pagenow;
183
+ if ('wp-login.php' == $pagenow)
184
+ {
185
+ return;
186
+
187
+ } else
188
+ {
189
+ add_action( 'template_redirect', 'my_page_template_redirect' );
190
+
191
+
192
+ }
193
+
194
+
195
+ }
196
 
197
 
198
 
lang/commingsoon.pot ADDED
@@ -0,0 +1,1164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: commingsoon\n"
4
+ "POT-Creation-Date: 2016-11-24 14:53+0530\n"
5
+ "PO-Revision-Date: 2016-11-24 14:53+0530\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.5.5\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
13
+ "X-Poedit-Basepath: D:\\xampp\\htdocs\\wordpress\\wp-content\\plugins"
14
+ "\\coming_soon_lite\n"
15
+ "X-Poedit-SearchPath-0: D:\\xampp\\htdocs\\wordpress\\wp-content\\plugins"
16
+ "\\coming_soon_lite\n"
17
+
18
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:96
19
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:14
20
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:14
21
+ msgid "Coming Soon Pro Features"
22
+ msgstr ""
23
+
24
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:101
25
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:19
26
+ msgid "Hey There,"
27
+ msgstr ""
28
+
29
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:101
30
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:19
31
+ msgid ""
32
+ "Thanks for using the lite version of Easy Coming Soon. I hope the plugin "
33
+ "will enable you to quickly and easily create a landing page."
34
+ msgstr ""
35
+
36
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:103
37
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:21
38
+ msgid ""
39
+ "If you are looking to create a more feature rich landing page then I would "
40
+ "suggest you to have a look at the premium version of the Easy Coming Soon "
41
+ "Plugin.\n"
42
+ "It has a lot of additional features which will allow you to quickly create a "
43
+ "good looking landing page."
44
+ msgstr ""
45
+
46
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:106
47
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:24
48
+ msgid "I would suggest you to checkout the"
49
+ msgstr ""
50
+
51
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:106
52
+ msgid "Sample Coming Soon Page"
53
+ msgstr ""
54
+
55
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:106
56
+ msgid "created by the premium version of the plugin."
57
+ msgstr ""
58
+
59
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:107
60
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:25
61
+ msgid "Also Check out the Admin Panel"
62
+ msgstr ""
63
+
64
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:107
65
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:25
66
+ msgid "here"
67
+ msgstr ""
68
+
69
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:107
70
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:26
71
+ msgid ". User Login: user and Password: user"
72
+ msgstr ""
73
+
74
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:120
75
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:39
76
+ msgid "Here is the complete List of Features in Pro Version "
77
+ msgstr ""
78
+
79
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:128
80
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:47
81
+ msgid "1. Multiple Design Templates "
82
+ msgstr ""
83
+
84
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:129
85
+ msgid ""
86
+ "A Launch Page can play an important role in branding so we made sure that "
87
+ "all included templates are good looking."
88
+ msgstr ""
89
+
90
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:129
91
+ msgid ""
92
+ "\n"
93
+ "As a user you just have to fill in the data via option panel and a Coming "
94
+ "Soon Page will be created as per the selected template."
95
+ msgstr ""
96
+
97
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:133
98
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:52
99
+ msgid "2. Email Capture Form"
100
+ msgstr ""
101
+
102
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:134
103
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:53
104
+ msgid ""
105
+ "A Launch Page is ideal for collecting Email address of the interested "
106
+ "visitors. You can quickly setup a Email Capture Form and Start collecting "
107
+ "Email Address. All the Emails are stored on in your Website Database "
108
+ msgstr ""
109
+
110
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:136
111
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:55
112
+ msgid "3. Newsletter / Autoresponder Integration"
113
+ msgstr ""
114
+
115
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:137
116
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:56
117
+ msgid ""
118
+ "Easy Coming Soon integrates with MailChimp, Aweber, Constant Contact , "
119
+ "CampaignMonitor and Madmimi. You can connect the plugin to third party "
120
+ "services and started building your Email List"
121
+ msgstr ""
122
+
123
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:140
124
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:59
125
+ msgid "4. User White List"
126
+ msgstr ""
127
+
128
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:142
129
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:61
130
+ msgid ""
131
+ "This feature is very useful if you are building the website for a client. "
132
+ "With this feature you can allow client / contributor to view the live site "
133
+ "while all others will be presented with the Coming Soon Page. "
134
+ msgstr ""
135
+
136
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:144
137
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:63
138
+ msgid "5. Landing Page Mode"
139
+ msgstr ""
140
+
141
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:145
142
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:64
143
+ msgid ""
144
+ "With this feature you can choose to display the Coming Soon Page on the "
145
+ "entire site or on a single Page. <br> Here is a Use Case: Suppose you want "
146
+ "the blog to be accessible to all users while displaying the coming soon page "
147
+ "on the font page. It can be done with the Landing Page Mode."
148
+ msgstr ""
149
+
150
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:153
151
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:72
152
+ msgid "6. Custom Favicon and Logo Support "
153
+ msgstr ""
154
+
155
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:155
156
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:74
157
+ msgid ""
158
+ "You can quickly upload a Custom Logo and favicon via the option Panel. We "
159
+ "make use of Wordpress Mdeia Uploader, so you can also insert the logo from "
160
+ "the Wordpress Media Library."
161
+ msgstr ""
162
+
163
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:158
164
+ msgid "7. Count-Down Timer Support "
165
+ msgstr ""
166
+
167
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:160
168
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:79
169
+ msgid ""
170
+ "This feature was implemented as a response to a suggestion by one of our "
171
+ "user. With this feature you can display a count down timer on the coming "
172
+ "soon page. The timer can be quickly configure via option panel."
173
+ msgstr ""
174
+
175
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:164
176
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:83
177
+ msgid "8. Progress Bar Support "
178
+ msgstr ""
179
+
180
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:166
181
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:85
182
+ msgid ""
183
+ "It is also possible to display a Progress Bar on the coming soon page. "
184
+ "Currently 3 styles of progress bars are supported, Basic, Striped and "
185
+ "Animated. "
186
+ msgstr ""
187
+
188
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:168
189
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:87
190
+ msgid "9. Custom Text Strings"
191
+ msgstr ""
192
+
193
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:169
194
+ msgid ""
195
+ "This feature allows you to quickly change the labels of the Text Fields and "
196
+ "Buttons."
197
+ msgstr ""
198
+
199
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:172
200
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:91
201
+ msgid "10. BackGround Slide-Show"
202
+ msgstr ""
203
+
204
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:173
205
+ msgid ""
206
+ "You can create a SlideShow and display it as a background with this feature. "
207
+ "You may add as many slides as you want. It is also possible to display a "
208
+ "Static Image or simply a color as a background."
209
+ msgstr ""
210
+
211
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:175
212
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:94
213
+ msgid "11. Video BackGround Support"
214
+ msgstr ""
215
+
216
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:176
217
+ msgid ""
218
+ "This feature allows you to create a Full Screen Video BackGround. Just "
219
+ "upload the video on Youtube and configure the settings via the Admin Panel. "
220
+ "Its that simple!"
221
+ msgstr ""
222
+
223
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:178
224
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:97
225
+ msgid "12. Social Icon Support"
226
+ msgstr ""
227
+
228
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:179
229
+ msgid ""
230
+ "The premium version has support for 20 Social Media Network. You just need "
231
+ "to fill in the url and the respective icon will be displayed on the coming "
232
+ "soon page."
233
+ msgstr ""
234
+
235
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:181
236
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:100
237
+ msgid "13. Design Customization Options"
238
+ msgstr ""
239
+
240
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:182
241
+ msgid ""
242
+ "The plugin allows you to quickly customize the settings like Font Color, "
243
+ "Font Size, Font type, Button Color etc. All of these settings can be "
244
+ "accessed via the Option Panel."
245
+ msgstr ""
246
+
247
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:184
248
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:103
249
+ msgid "14. Custom CSS Support"
250
+ msgstr ""
251
+
252
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:185
253
+ msgid ""
254
+ "A lot of times the inbuilt settings are just not enough. With the Custom CSS "
255
+ "support you can quikly add style rules to the coming soon page."
256
+ msgstr ""
257
+
258
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:187
259
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:106
260
+ msgid "15. Google Analytics Support"
261
+ msgstr ""
262
+
263
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:188
264
+ msgid ""
265
+ "You can paste the google analytics tracking code and track the pageviews. No "
266
+ "need to install a separate plugin.."
267
+ msgstr ""
268
+
269
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:208
270
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:32
271
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:7
272
+ msgid "Pricing"
273
+ msgstr ""
274
+
275
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:209
276
+ msgid ""
277
+ "The pro version is priced at <strong>very reasonable 29 USD</strong> and "
278
+ "entitles you to receive <strong>support and updates for 1 year</strong>. "
279
+ "<br><br>If you need updates and support after one year, then simply renew "
280
+ "the license. If not, then you may keep using the plugin. <br>You may use the "
281
+ "plugin on any number of websites you want"
282
+ msgstr ""
283
+
284
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:212
285
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:16
286
+ msgid "How to Purchase."
287
+ msgstr ""
288
+
289
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:213
290
+ msgid "If you are interested then you can buy the plugin "
291
+ msgstr ""
292
+
293
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:213
294
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:17
295
+ msgid "here."
296
+ msgstr ""
297
+
298
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:215
299
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:19
300
+ msgid "I look Forward to Working with you"
301
+ msgstr ""
302
+
303
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:216
304
+ msgid ""
305
+ "Thousands of users have enjoyed using our. I hope you will also enjoy "
306
+ "working with us"
307
+ msgstr ""
308
+
309
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:236
310
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:121
311
+ msgid "Cheers"
312
+ msgstr ""
313
+
314
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:238
315
+ msgid "Co-Founder, Webriti Themes and Plugins"
316
+ msgstr ""
317
+
318
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:277
319
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:136
320
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:36
321
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:20
322
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:224
323
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:516
324
+ msgid "Upgrade To Pro Version"
325
+ msgstr ""
326
+
327
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/pro-detail.php:278
328
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:137
329
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:37
330
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:21
331
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:225
332
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:517
333
+ msgid "View Live demo"
334
+ msgstr ""
335
+
336
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/template/coming_soon_display.php:131
337
+ msgid "Social Links:"
338
+ msgstr ""
339
+
340
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:2
341
+ msgid "Settings >>"
342
+ msgstr ""
343
+
344
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:6
345
+ msgid "Easy Coming Soon Plugin"
346
+ msgstr ""
347
+
348
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:7
349
+ msgid "Preview"
350
+ msgstr ""
351
+
352
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:8
353
+ msgid "Upgrade to Pro version"
354
+ msgstr ""
355
+
356
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:9
357
+ msgid "Share Your Feedback"
358
+ msgstr ""
359
+
360
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:18
361
+ msgid "General Settings"
362
+ msgstr ""
363
+
364
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:20
365
+ msgid "Design"
366
+ msgstr ""
367
+
368
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:22
369
+ msgid "Notification"
370
+ msgstr ""
371
+
372
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:24
373
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/template_page_settings.php:70
374
+ msgid "Templates"
375
+ msgstr ""
376
+
377
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:26
378
+ msgid "Live Preview"
379
+ msgstr ""
380
+
381
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:28
382
+ msgid "Pro Features"
383
+ msgstr ""
384
+
385
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:30
386
+ msgid "Whats included in the Pro Version"
387
+ msgstr ""
388
+
389
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:34
390
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:181
391
+ msgid "Show Some Love"
392
+ msgstr ""
393
+
394
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:36
395
+ msgid "Video Tutorial"
396
+ msgstr ""
397
+
398
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:183
399
+ msgid "Like this plugin? Show your support by:"
400
+ msgstr ""
401
+
402
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:194
403
+ msgid "Rate It"
404
+ msgstr ""
405
+
406
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:195
407
+ msgid "Tweet It"
408
+ msgstr ""
409
+
410
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:196
411
+ msgid "Buy Pro"
412
+ msgstr ""
413
+
414
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:220
415
+ msgid "Fully Functional Coming Soon Page in 30 minutes"
416
+ msgstr ""
417
+
418
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:222
419
+ msgid "In this"
420
+ msgstr ""
421
+
422
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:222
423
+ msgid " Video Tutorial"
424
+ msgstr ""
425
+
426
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:222
427
+ msgid ""
428
+ " , I will demonstrate how you can create a fully functional Coming Soon Page "
429
+ "in as little as 30 minutes."
430
+ msgstr ""
431
+
432
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:223
433
+ msgid "Here is what we the Landing page will look like."
434
+ msgstr ""
435
+
436
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:229
437
+ msgid ""
438
+ "This video tutorial is for the premium version of the plugin. As you can "
439
+ "see, it has:"
440
+ msgstr ""
441
+
442
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:232
443
+ msgid "1. Company Logo"
444
+ msgstr ""
445
+
446
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:233
447
+ msgid "2. An Image Slide Show BackGround"
448
+ msgstr ""
449
+
450
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:234
451
+ msgid "3. Email Capture Box, with option to Capture First Name and Last Name"
452
+ msgstr ""
453
+
454
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:235
455
+ msgid "4. CountDown Timer"
456
+ msgstr ""
457
+
458
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:236
459
+ msgid "5. A Progress Bar"
460
+ msgstr ""
461
+
462
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:237
463
+ msgid "6. Social Media Icons"
464
+ msgstr ""
465
+
466
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:238
467
+ msgid ""
468
+ "7. The Video also contains a brief overview of the features like Multiple "
469
+ "Templates, Ip based access, Newsletter Integration etc. "
470
+ msgstr ""
471
+
472
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:241
473
+ msgid ""
474
+ "The premium version is priced at 29 USD and lets you use the plugin on "
475
+ "unlimited website."
476
+ msgstr ""
477
+
478
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:242
479
+ msgid "Here is the "
480
+ msgstr ""
481
+
482
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:242
483
+ msgid "link to the Video."
484
+ msgstr ""
485
+
486
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:242
487
+ msgid "Enjoy!!!"
488
+ msgstr ""
489
+
490
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/webriti_option_pannel.php:316
491
+ msgid "Thanks for subscribing this page"
492
+ msgstr ""
493
+
494
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:24
495
+ msgid ""
496
+ "Sample Coming Soon Page</a> created by the premium version of the plugin."
497
+ msgstr ""
498
+
499
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:48
500
+ msgid ""
501
+ "A Launch Page can play an important role in branding so we made sure that "
502
+ "all included templates are good looking. <br>\n"
503
+ "As a user you just have to fill in the data via option panel and a Coming "
504
+ "Soon Page will be created as per the selected template."
505
+ msgstr ""
506
+
507
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:77
508
+ msgid "7. Count-Down Timer Support"
509
+ msgstr ""
510
+
511
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:88
512
+ msgid ""
513
+ "This feature allows you to quickly change the labels of the Text Fields and "
514
+ "Buttons. "
515
+ msgstr ""
516
+
517
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:92
518
+ msgid ""
519
+ "You can create a SlideShow and display it as a background with this feature. "
520
+ "You may add as many slides as you want. It is also possible to display a "
521
+ "Static Image or simply a color as a background. "
522
+ msgstr ""
523
+
524
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:95
525
+ msgid ""
526
+ "This feature allows you to create a Full Screen Video BackGround. Just "
527
+ "upload the video on Youtube and configure the settings via the Admin Panel. "
528
+ "Its that simple! "
529
+ msgstr ""
530
+
531
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:98
532
+ msgid ""
533
+ "The premium version has support for 20 Social Media Network. You just need "
534
+ "to fill in the url and the respective icon will be displayed on the coming "
535
+ "soon page. "
536
+ msgstr ""
537
+
538
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:101
539
+ msgid ""
540
+ "The plugin allows you to quickly customize the settings like Font Color, "
541
+ "Font Size, Font type, Button Color etc. All of these settings can be "
542
+ "accessed via the Option Panel. "
543
+ msgstr ""
544
+
545
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:104
546
+ msgid ""
547
+ "A lot of times the inbuilt settings are just not enough. With the Custom CSS "
548
+ "support you can quikly add style rules to the coming soon page. "
549
+ msgstr ""
550
+
551
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:107
552
+ msgid ""
553
+ "You can paste the google analytics tracking code and track the pageviews. No "
554
+ "need to install a separate plugin.. "
555
+ msgstr ""
556
+
557
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:122
558
+ msgid "Priyanshu"
559
+ msgstr ""
560
+
561
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/aboutpro_version_settings.php:123
562
+ msgid "Co-Founder, EasyComingSoon"
563
+ msgstr ""
564
+
565
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:29
566
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:51
567
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:27
568
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/template_page_settings.php:28
569
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/template_page_settings.php:43
570
+ msgid "Sorry, your nonce did not verify."
571
+ msgstr ""
572
+
573
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:72
574
+ msgid "Design Settings"
575
+ msgstr ""
576
+
577
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:75
578
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:63
579
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/live_preview_settings.php:8
580
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:51
581
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/template_page_settings.php:56
582
+ msgid "Options data successfully Saved"
583
+ msgstr ""
584
+
585
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:76
586
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:64
587
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/live_preview_settings.php:9
588
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:52
589
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/template_page_settings.php:57
590
+ msgid "Options data successfully reset"
591
+ msgstr ""
592
+
593
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:87
594
+ msgid "Background Color"
595
+ msgstr ""
596
+
597
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:92
598
+ msgid "Headline font-color"
599
+ msgstr ""
600
+
601
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:97
602
+ msgid "Headline font-size"
603
+ msgstr ""
604
+
605
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:107
606
+ msgid "Headline font-style"
607
+ msgstr ""
608
+
609
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:136
610
+ msgid "Description font-color"
611
+ msgstr ""
612
+
613
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:141
614
+ msgid "Description font-size"
615
+ msgstr ""
616
+
617
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/design_page_settings.php:151
618
+ msgid "Description font-style"
619
+ msgstr ""
620
+
621
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:60
622
+ msgid "Quick Start Settings"
623
+ msgstr ""
624
+
625
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:77
626
+ msgid "Select status"
627
+ msgstr ""
628
+
629
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:78
630
+ msgid "Disabled"
631
+ msgstr ""
632
+
633
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:79
634
+ msgid "Coming soon enabled"
635
+ msgstr ""
636
+
637
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:85
638
+ msgid "Enter background image"
639
+ msgstr ""
640
+
641
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:97
642
+ msgid "Enter the title"
643
+ msgstr ""
644
+
645
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:104
646
+ msgid "Enter description"
647
+ msgstr ""
648
+
649
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:111
650
+ msgid "Google Analytics Code"
651
+ msgstr ""
652
+
653
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:118
654
+ msgid "Enter facebook URL"
655
+ msgstr ""
656
+
657
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:125
658
+ msgid "Enter twitter URL"
659
+ msgstr ""
660
+
661
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/header_page_settings.php:132
662
+ msgid "Enter google-plus URL"
663
+ msgstr ""
664
+
665
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/live_preview_settings.php:5
666
+ msgid "Live Preview Page"
667
+ msgstr ""
668
+
669
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/live_preview_settings.php:20
670
+ msgid "Click here"
671
+ msgstr ""
672
+
673
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/live_preview_settings.php:20
674
+ msgid "for live preview template"
675
+ msgstr ""
676
+
677
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:48
678
+ msgid "Mailing Option settings"
679
+ msgstr ""
680
+
681
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:65
682
+ msgid "Mail option"
683
+ msgstr ""
684
+
685
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:67
686
+ msgid "Do not display signup field"
687
+ msgstr ""
688
+
689
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:68
690
+ msgid "Mail to the Owner"
691
+ msgstr ""
692
+
693
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:75
694
+ msgid "Owner Email Address"
695
+ msgstr ""
696
+
697
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:82
698
+ msgid "Display Message after user subscribing"
699
+ msgstr ""
700
+
701
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:89
702
+ msgid "Subscribe Button"
703
+ msgstr ""
704
+
705
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:96
706
+ msgid "Email Textbox Placeholder"
707
+ msgstr ""
708
+
709
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:103
710
+ msgid "Custom Email message to owner"
711
+ msgstr ""
712
+
713
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:105
714
+ msgid "Use Shortcode :"
715
+ msgstr ""
716
+
717
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/notification_page_setting.php:105
718
+ msgid "to include the email address entered by the Subscriber"
719
+ msgstr ""
720
+
721
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:8
722
+ msgid "We have 2 set of licenses"
723
+ msgstr ""
724
+
725
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:10
726
+ msgid ""
727
+ "<strong>Single Site License</strong> - The price of this license is <b>$29</"
728
+ "b>. Which allow you to use the Premium Plugin on Single Site."
729
+ msgstr ""
730
+
731
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:11
732
+ msgid ""
733
+ "<strong>Unlimited Site License</strong> - This price of this license is <b>"
734
+ "$59</b>. Which allow you to use the plugin on Unlimited WordPress Websites."
735
+ msgstr ""
736
+
737
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:13
738
+ msgid ""
739
+ "Support and Updates will be given for 1 year. <br>If you need updates and "
740
+ "support after one year, then simply renew the license. If not, then you may "
741
+ "keep using the plugin."
742
+ msgstr ""
743
+
744
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:17
745
+ msgid "If you are interested then you can buy the plugin"
746
+ msgstr ""
747
+
748
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:17
749
+ msgid ""
750
+ "Once the purchase process gets complete, the license key will be emailed to "
751
+ "you. Add and activate this license key in the License option page in the "
752
+ "Premium version of this plugin. Make sure that you activate this license key "
753
+ "in order to enjoy the continue support and plugin updates."
754
+ msgstr ""
755
+
756
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pricing_settings.php:20
757
+ msgid ""
758
+ "Thousands of users have enjoyed using our. I hope you will also enjoy "
759
+ "working with us "
760
+ msgstr ""
761
+
762
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:19
763
+ msgid ""
764
+ "The premium version allows you to capture Visitor Email address, integrates "
765
+ "with various AutoResponders , Comes with 2 different Template and provide "
766
+ "loads of Design Customization Options."
767
+ msgstr ""
768
+
769
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:40
770
+ msgid "Email Capture Field"
771
+ msgstr ""
772
+
773
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:41
774
+ msgid ""
775
+ "Collect email address of your visitors with an email Capture Field. The "
776
+ "Captured Email address are stored in your Wordpress website."
777
+ msgstr ""
778
+
779
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:61
780
+ msgid "Newsletter Integration"
781
+ msgstr ""
782
+
783
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:62
784
+ msgid ""
785
+ "Premium version integrates with popular newsletter services like <ul style="
786
+ "\"list-style-type: disc;margin-left:5%;font-size:15px\"><li> Mailchimp</"
787
+ "li><li>Aweber</li><li>Madmimi</li><li>Constant Contact</li><li>Campaign "
788
+ "Monitor</li><li>FeedBurner</li></ul>"
789
+ msgstr ""
790
+
791
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:81
792
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:266
793
+ msgid "Responsive Design"
794
+ msgstr ""
795
+
796
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:82
797
+ msgid ""
798
+ "Create a Responsive Landing Page Mode. Easy coming soon support Bootstrap "
799
+ "Based landing page which display perfectly on mobile and tablet device."
800
+ msgstr ""
801
+
802
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:96
803
+ msgid "4 additional Design Templates"
804
+ msgstr ""
805
+
806
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:97
807
+ msgid ""
808
+ "The premium version comes with 4 extra templates. All the templates are "
809
+ "completely customizable."
810
+ msgstr ""
811
+
812
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:115
813
+ msgid "Powerful Design Settings"
814
+ msgstr ""
815
+
816
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:116
817
+ msgid ""
818
+ "Make your maintenance page look Sexy!!! The premium version comes with loads "
819
+ "of design settings like : <ul style=\"list-style-type: disc;margin-left:5%;"
820
+ "font-size:15px\"><li>Video Back-Grounds</li><li>Background Slideshow</"
821
+ "li><li>Google Font integration</li><li>Text color Customization</"
822
+ "li><li>Custom Css</li></ul>"
823
+ msgstr ""
824
+
825
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:127
826
+ msgid "Landing Page Mode"
827
+ msgstr ""
828
+
829
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:128
830
+ msgid ""
831
+ "Design and Publish a Landing Page on your Wordpress Website. The premium "
832
+ "version enables you add a landing page to your existing wordpress website. "
833
+ msgstr ""
834
+
835
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:146
836
+ msgid "Access Controls"
837
+ msgstr ""
838
+
839
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:147
840
+ msgid ""
841
+ "Powerful Access Control feature lets you decide which users can view the "
842
+ "Live Website. Whitelist IP address and User Roles. Assign Coming Soon Page "
843
+ "to a particualr Wordpress Page."
844
+ msgstr ""
845
+
846
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:164
847
+ msgid "Social Media Icons Support"
848
+ msgstr ""
849
+
850
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:165
851
+ msgid ""
852
+ "Quickly add links to your social profiles. The plugin supports adding links "
853
+ "to Facebook, Twitter, Google+, Pinterest, Youtube, Tumblr, Viemo etc.."
854
+ msgstr ""
855
+
856
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:180
857
+ msgid "All Browser Support"
858
+ msgstr ""
859
+
860
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:181
861
+ msgid ""
862
+ "Plugin Tested with all popular browsers like <ul style=\"list-style-type: "
863
+ "disc;margin-left:5%;font-size:15px\"><li> IE 9 +</li><li> Google Chrome</"
864
+ "li><li> Mozilla Firefox </li><li> Apple Safari</li></ul>"
865
+ msgstr ""
866
+
867
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:196
868
+ msgid "Translation Ready"
869
+ msgstr ""
870
+
871
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:197
872
+ msgid "Quickly translate the plugin in the language of your choice."
873
+ msgstr ""
874
+
875
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:218
876
+ msgid "Upgarde to Coming Soon Pro Here"
877
+ msgstr ""
878
+
879
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:241
880
+ msgid "Comparison Table of Free And Pro Version"
881
+ msgstr ""
882
+
883
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:247
884
+ msgid "Features"
885
+ msgstr ""
886
+
887
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:248
888
+ msgid "Free"
889
+ msgstr ""
890
+
891
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:249
892
+ msgid "Premium"
893
+ msgstr ""
894
+
895
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:257
896
+ msgid "Plugin is work with any wordpress theme easily."
897
+ msgstr ""
898
+
899
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:258
900
+ msgid "Works With Any Wordpress Theme"
901
+ msgstr ""
902
+
903
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:265
904
+ msgid ""
905
+ "Plugin template is compatible with all devices. It have completely resposive "
906
+ "feature."
907
+ msgstr ""
908
+
909
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:273
910
+ msgid "Defalut template is availale in both pro and free ."
911
+ msgstr ""
912
+
913
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:274
914
+ msgid "Free Coming Soon Page Template"
915
+ msgstr ""
916
+
917
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:280
918
+ msgid "Easily customizable admin panel and very user friendly."
919
+ msgstr ""
920
+
921
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:281
922
+ msgid "User-friendly Setup"
923
+ msgstr ""
924
+
925
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:288
926
+ msgid "Default fonts are availabel in both."
927
+ msgstr ""
928
+
929
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:289
930
+ msgid "Default fonts"
931
+ msgstr ""
932
+
933
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:297
934
+ msgid "Buddy Press Supportive."
935
+ msgstr ""
936
+
937
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:298
938
+ msgid "BuddyPress Support"
939
+ msgstr ""
940
+
941
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:306
942
+ msgid ""
943
+ "Visible only non loggeed user, if you are not login then you are not able to "
944
+ "view regular site."
945
+ msgstr ""
946
+
947
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:307
948
+ msgid "Visible only non logged user"
949
+ msgstr ""
950
+
951
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:315
952
+ msgid "Easily collect user notify mail."
953
+ msgstr ""
954
+
955
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:316
956
+ msgid "Easily collect visitor emails"
957
+ msgstr ""
958
+
959
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:327
960
+ msgid "Google Analytics supportive."
961
+ msgstr ""
962
+
963
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:328
964
+ msgid "Google Analytics Support"
965
+ msgstr ""
966
+
967
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:335
968
+ msgid "Get social support."
969
+ msgstr ""
970
+
971
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:336
972
+ msgid "Social Follow Icons"
973
+ msgstr ""
974
+
975
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:337
976
+ msgid "Facebook, Twitter, Google+"
977
+ msgstr ""
978
+
979
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:338
980
+ msgid ""
981
+ "Twitter, Facebook, Linkedin, Google+, Youtube, Email, Pinterest, Yahoo etc."
982
+ msgstr ""
983
+
984
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:343
985
+ msgid "Google fonts api are integreted with coming soon."
986
+ msgstr ""
987
+
988
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:344
989
+ msgid "Google Fonts Support"
990
+ msgstr ""
991
+
992
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:351
993
+ msgid "Get our fast and friendly support."
994
+ msgstr ""
995
+
996
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:352
997
+ msgid "Multisite Support"
998
+ msgstr ""
999
+
1000
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:360
1001
+ msgid "laguage Translation is available in premium."
1002
+ msgstr ""
1003
+
1004
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:361
1005
+ msgid "Language Translation Support"
1006
+ msgstr ""
1007
+
1008
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:368
1009
+ msgid "limit access with clients who want to view regular sites."
1010
+ msgstr ""
1011
+
1012
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:369
1013
+ msgid "Limit Access with Client View"
1014
+ msgstr ""
1015
+
1016
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:376
1017
+ msgid "Multiple page template is available for coming soon page."
1018
+ msgstr ""
1019
+
1020
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:377
1021
+ msgid "Multiple Page Templates"
1022
+ msgstr ""
1023
+
1024
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:384
1025
+ msgid "Add user whitelist who access the site after login."
1026
+ msgstr ""
1027
+
1028
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:385
1029
+ msgid "Add User Whitelist"
1030
+ msgstr ""
1031
+
1032
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:392
1033
+ msgid "Add ip access for user."
1034
+ msgstr ""
1035
+
1036
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:393
1037
+ msgid "Access By Ip"
1038
+ msgstr ""
1039
+
1040
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:400
1041
+ msgid ""
1042
+ "page landing mode is available that mean you will able to add coming soon "
1043
+ "template for single site page ."
1044
+ msgstr ""
1045
+
1046
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:401
1047
+ msgid "Single Page View Access"
1048
+ msgstr ""
1049
+
1050
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:408
1051
+ msgid "Add fullscreen background slideshow."
1052
+ msgstr ""
1053
+
1054
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:409
1055
+ msgid "Background Image SlideShow"
1056
+ msgstr ""
1057
+
1058
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:416
1059
+ msgid "Add youtube video background."
1060
+ msgstr ""
1061
+
1062
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:417
1063
+ msgid "Youtube Video background"
1064
+ msgstr ""
1065
+
1066
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:424
1067
+ msgid "Mailchimp Integration for Email Marketing & Data Capture."
1068
+ msgstr ""
1069
+
1070
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:425
1071
+ msgid "Mailchimp Support"
1072
+ msgstr ""
1073
+
1074
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:432
1075
+ msgid "Compaign Monitor for Email Marketing & Data Capture."
1076
+ msgstr ""
1077
+
1078
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:433
1079
+ msgid "Compaign Monitor"
1080
+ msgstr ""
1081
+
1082
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:439
1083
+ msgid "Constant Contact for Email Marketing & Data Capture."
1084
+ msgstr ""
1085
+
1086
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:440
1087
+ msgid "Constant Contact"
1088
+ msgstr ""
1089
+
1090
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:446
1091
+ msgid "Madmimi Integration for Email Marketing & Data Capture."
1092
+ msgstr ""
1093
+
1094
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:447
1095
+ msgid "Madmimi Support"
1096
+ msgstr ""
1097
+
1098
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:453
1099
+ msgid "Aweber Integration for Email Marketing & Data Capture."
1100
+ msgstr ""
1101
+
1102
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:454
1103
+ msgid "Aweber Support"
1104
+ msgstr ""
1105
+
1106
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:461
1107
+ msgid "feedburner Integration for Email Marketing & Data Capture."
1108
+ msgstr ""
1109
+
1110
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:462
1111
+ msgid "Feedburner Support"
1112
+ msgstr ""
1113
+
1114
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:470
1115
+ msgid "Add countdown timer for coming soon page."
1116
+ msgstr ""
1117
+
1118
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:471
1119
+ msgid "Countdown Timer"
1120
+ msgstr ""
1121
+
1122
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:480
1123
+ msgid "progress bar enable"
1124
+ msgstr ""
1125
+
1126
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:481
1127
+ msgid "Progress Bar"
1128
+ msgstr ""
1129
+
1130
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:488
1131
+ msgid "SEO supportive. Add meta title, description and favicon image. "
1132
+ msgstr ""
1133
+
1134
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:489
1135
+ msgid "Custom Faviceon, Meta Title and Description"
1136
+ msgstr ""
1137
+
1138
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:496
1139
+ msgid ""
1140
+ "Get multiple mode of coming soon like Maintanance mode,Landing mode etc."
1141
+ msgstr ""
1142
+
1143
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:497
1144
+ msgid "Enable Multiple Mode of Coming Soon"
1145
+ msgstr ""
1146
+
1147
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:503
1148
+ msgid "Company logo and credit image insertig option."
1149
+ msgstr ""
1150
+
1151
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/pro_features_settings.php:504
1152
+ msgid "Company Logo and Credit Links"
1153
+ msgstr ""
1154
+
1155
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/template_page_settings.php:53
1156
+ msgid "Templates Settings"
1157
+ msgstr ""
1158
+
1159
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/template_page_settings.php:111
1160
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/template_page_settings.php:133
1161
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/template_page_settings.php:155
1162
+ #: D:\xampp\htdocs\wordpress\wp-content\plugins\coming_soon_lite/theme_options/pages/template_page_settings.php:177
1163
+ msgid "Available In Pro"
1164
+ msgstr ""
pro-detail.php CHANGED
@@ -93,18 +93,18 @@ line-height:1.1;
93
  color: #000;
94
  letter-spacing: -1px;
95
  text-align: center;
96
- ">Coming Soon Pro Features</h3>
97
  <p style="font-size: 18px;
98
  font-style: normal;
99
 
100
  color: #707070;
101
- text-align: left;">Hey There, <br><br>Thanks for using the lite version of Easy Coming Soon. I hope the plugin will enable you to quickly and easily create a landing page.<br><br>
102
 
103
- If you are looking to create a more feature rich landing page then I would suggest you to have a look at the premium version of the Easy Coming Soon Plugin.
104
- It has a lot of additional features which will allow you to quickly create a good looking landing page. <br><br>
105
 
106
- I would suggest you to checkout the <a href = "http://easycomingsoon.com/demos/" target="_blank">Sample Coming Soon Page</a> created by the premium version of the plugin. <br><br>
107
- Also Check out the Admin Panel <a href = "http://easycomingsoon.com/demos/" target="_blank">here</a>. User Login: user and Password: user
108
  <br><br>
109
  </p>
110
  </div>
@@ -117,7 +117,7 @@ Also Check out the Admin Panel <a href = "http://easycomingsoon.com/demos/" targ
117
  <!-- Email Capture Feature Start -->
118
 
119
  <div class = "row" style="margin-left:25px;background:#f7f7f7;">
120
- <h3 style="margin-left:25px;">Here is the complete List of Features in Pro Version </h3><br>
121
  </div>
122
  <div class="row" style="margin-left:10px;background:white;padding-top:70px;padding-bottom:70px;">
123
 
@@ -125,24 +125,24 @@ Also Check out the Admin Panel <a href = "http://easycomingsoon.com/demos/" targ
125
 
126
  <div class="span6" style="width:84%;margin-top: auto;margin-left:5%; font-size:15px;">
127
 
128
- <h3>1. Multiple Design Templates </h3>
129
- <p>A Launch Page can play an important role in branding so we made sure that all included templates are good looking. <br>
130
- As a user you just have to fill in the data via option panel and a Coming Soon Page will be created as per the selected template.</p>
131
 
132
 
133
- <h3>2. Email Capture Form</h3>
134
- <p>A Launch Page is ideal for collecting Email address of the interested visitors. You can quickly setup a Email Capture Form and Start collecting Email Address. All the Emails are stored on in your Website Database </p>
135
 
136
- <h3>3. Newsletter / Autoresponder Integration</h3>
137
- <p>Easy Coming Soon integrates with MailChimp, Aweber, Constant Contact , CampaignMonitor and Madmimi. You can connect the plugin to third party services and started building your Email List
138
  </p>
139
 
140
- <h3>4. User White List</h3>
141
 
142
- <p>This feature is very useful if you are building the website for a client. With this feature you can allow client / contributor to view the live site while all others will be presented with the Coming Soon Page. </p>
143
 
144
- <h3>5. Landing Page Mode</h3>
145
- <p> With this feature you can choose to display the Coming Soon Page on the entire site or on a single Page. <br> Here is a Use Case: Suppose you want the blog to be accessible to all users while displaying the coming soon page on the font page. It can be done with the Landing Page Mode. </p>
146
 
147
 
148
 
@@ -150,42 +150,42 @@ As a user you just have to fill in the data via option panel and a Coming Soon P
150
 
151
 
152
 
153
- <h3>6. Custom Favicon and Logo Support </h3>
154
 
155
- <p>You can quickly upload a Custom Logo and favicon via the option Panel. We make use of Wordpress Mdeia Uploader, so you can also insert the logo from the Wordpress Media Library.</p>
156
 
157
 
158
- <h3>7. Count-Down Timer Support </h3>
159
 
160
- <p> This feature was implemented as a response to a suggestion by one of our user. With this feature you can display a count down timer on the coming soon page. The timer can be quickly configure via option panel.</p>
161
 
162
 
163
 
164
- <h3>8. Progress Bar Support </h3>
165
 
166
- <p>It is also possible to display a Progress Bar on the coming soon page. Currently 3 styles of progress bars are supported, Basic, Striped and Animated. </p>
167
 
168
- <h3>9. Custom Text Strings</h3>
169
- <p>This feature allows you to quickly change the labels of the Text Fields and Buttons. </p>
170
 
171
 
172
- <h3>10. BackGround Slide-Show</h3>
173
- <p>You can create a SlideShow and display it as a background with this feature. You may add as many slides as you want. It is also possible to display a Static Image or simply a color as a background. </p>
174
 
175
- <h3>11. Video BackGround Support</h3>
176
- <p>This feature allows you to create a Full Screen Video BackGround. Just upload the video on Youtube and configure the settings via the Admin Panel. Its that simple! </p>
177
 
178
- <h3>12. Social Icon Support</h3>
179
- <p>The premium version has support for 20 Social Media Network. You just need to fill in the url and the respective icon will be displayed on the coming soon page. </p>
180
 
181
- <h3>13. Design Customization Options</h3>
182
- <p>The plugin allows you to quickly customize the settings like Font Color, Font Size, Font type, Button Color etc. All of these settings can be accessed via the Option Panel. </p>
183
 
184
- <h3>14. Custom CSS Support</h3>
185
- <p>A lot of times the inbuilt settings are just not enough. With the Custom CSS support you can quikly add style rules to the coming soon page. </p>
186
 
187
- <h3>15. Google Analytics Support</h3>
188
- <p>You can paste the google analytics tracking code and track the pageviews. No need to install a separate plugin.. </p>
189
 
190
 
191
 
@@ -205,15 +205,15 @@ As a user you just have to fill in the data via option panel and a Coming Soon P
205
  <div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
206
 
207
  <div class="span6" style="width:85%;margin-top: auto;">
208
- <h3>Pricing</h3>
209
- <p> The pro version is priced at <strong>very reasonable 29 USD</strong> and entitles you to receive <strong>support and updates for 1 year</strong>. <br><br>If you need updates and support after one year, then simply renew the license. If not, then you may keep using the plugin. <br>You may use the plugin on any number of websites you want</p>
210
 
211
 
212
- <h3>How to Purchase.</h3>
213
- <p>If you are interested then you can buy the plugin <a href = "http://easycomingsoon.com/features/" target = "_blank">here.</a> </p>
214
 
215
- <h3>I look Forward to Working with you</h3>
216
- <p>Thousands of users have enjoyed using our. I hope you will also enjoy working with us </p>
217
 
218
 
219
 
@@ -233,9 +233,9 @@ As a user you just have to fill in the data via option panel and a Coming Soon P
233
  <div class="span6" style="width:45%;margin-top: auto;">
234
 
235
 
236
- <h3>Cheers</h3>
237
  <h3>Priyanshu</h3>
238
- <h3>Co-Founder, Webriti Themes and Plugins</p></h3>
239
  </div>
240
 
241
 
@@ -274,8 +274,8 @@ As a user you just have to fill in the data via option panel and a Coming Soon P
274
 
275
  <br>
276
  <div style="text-align: center;">
277
- <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/features/" target="_new">Upgrade To Pro Version</a>&nbsp;
278
- <a class="btn btn-success btn-large" href="http://easycomingsoon.com/features/" target="_new">View Live demo</a>
279
  </div>
280
  <br>
281
  </div>
93
  color: #000;
94
  letter-spacing: -1px;
95
  text-align: center;
96
+ "><?php _e('Coming Soon Pro Features','commingsoon') ?></h3>
97
  <p style="font-size: 18px;
98
  font-style: normal;
99
 
100
  color: #707070;
101
+ text-align: left;"><?php _e('Hey There,','commingsoon'); ?> <br><br><?php _e('Thanks for using the lite version of Easy Coming Soon. I hope the plugin will enable you to quickly and easily create a landing page.','commingsoon') ?><br><br>
102
 
103
+ <?php _e('If you are looking to create a more feature rich landing page then I would suggest you to have a look at the premium version of the Easy Coming Soon Plugin.
104
+ It has a lot of additional features which will allow you to quickly create a good looking landing page.','commingsoon') ?> <br><br>
105
 
106
+ <?php _e('I would suggest you to checkout the','commingsoon') ?> <a href = "http://easycomingsoon.com/demos/" target="_blank"><?php _e('Sample Coming Soon Page','commingsoon') ?></a> <?php _e('created by the premium version of the plugin.','commingsoon') ?> <br><br>
107
+ <?php _e('Also Check out the Admin Panel','commingsoon') ?> <a href = "http://easycomingsoon.com/demos/" target="_blank"><?php _e('here','commingsoon') ?></a><?php _e('. User Login: user and Password: user','commingsoon') ?>
108
  <br><br>
109
  </p>
110
  </div>
117
  <!-- Email Capture Feature Start -->
118
 
119
  <div class = "row" style="margin-left:25px;background:#f7f7f7;">
120
+ <h3 style="margin-left:25px;"><?php _e('Here is the complete List of Features in Pro Version ','commingsoon') ?></h3><br>
121
  </div>
122
  <div class="row" style="margin-left:10px;background:white;padding-top:70px;padding-bottom:70px;">
123
 
125
 
126
  <div class="span6" style="width:84%;margin-top: auto;margin-left:5%; font-size:15px;">
127
 
128
+ <h3><?php _e('1. Multiple Design Templates ','commingsoon') ?></h3>
129
+ <p><?php _e('A Launch Page can play an important role in branding so we made sure that all included templates are good looking.','commingsoon') ?> <br><?php printf( __('
130
+ As a user you just have to fill in the data via option panel and a Coming Soon Page will be created as per the selected template.','commingsoon') ) ?></p>
131
 
132
 
133
+ <h3><?php _e('2. Email Capture Form','commingsoon') ?></h3>
134
+ <p><?php _e('A Launch Page is ideal for collecting Email address of the interested visitors. You can quickly setup a Email Capture Form and Start collecting Email Address. All the Emails are stored on in your Website Database ','commingsoon') ?></p>
135
 
136
+ <h3><?php _e('3. Newsletter / Autoresponder Integration','commingsoon') ?></h3>
137
+ <p><?php _e('Easy Coming Soon integrates with MailChimp, Aweber, Constant Contact , CampaignMonitor and Madmimi. You can connect the plugin to third party services and started building your Email List','commingsoon') ?>
138
  </p>
139
 
140
+ <h3><?php _e('4. User White List','commingsoon') ?></h3>
141
 
142
+ <p><?php _e('This feature is very useful if you are building the website for a client. With this feature you can allow client / contributor to view the live site while all others will be presented with the Coming Soon Page. ','commingsoon') ?></p>
143
 
144
+ <h3><?php _e('5. Landing Page Mode','commingsoon') ?></h3>
145
+ <p> <?php printf(__('With this feature you can choose to display the Coming Soon Page on the entire site or on a single Page. <br> Here is a Use Case: Suppose you want the blog to be accessible to all users while displaying the coming soon page on the font page. It can be done with the Landing Page Mode.','commingsoon')) ?> </p>
146
 
147
 
148
 
150
 
151
 
152
 
153
+ <h3><?php _e('6. Custom Favicon and Logo Support ','commingsoon') ?></h3>
154
 
155
+ <p><?php _e('You can quickly upload a Custom Logo and favicon via the option Panel. We make use of Wordpress Mdeia Uploader, so you can also insert the logo from the Wordpress Media Library.','commingsoon') ?></p>
156
 
157
 
158
+ <h3><?php _e('7. Count-Down Timer Support ','commingsoon') ?></h3>
159
 
160
+ <p> <?php _e('This feature was implemented as a response to a suggestion by one of our user. With this feature you can display a count down timer on the coming soon page. The timer can be quickly configure via option panel.','commingsoon') ?></p>
161
 
162
 
163
 
164
+ <h3><?php _e('8. Progress Bar Support ','commingsoon') ?></h3>
165
 
166
+ <p><?php _e('It is also possible to display a Progress Bar on the coming soon page. Currently 3 styles of progress bars are supported, Basic, Striped and Animated. ','commingsoon') ?></p>
167
 
168
+ <h3><?php _e('9. Custom Text Strings','commingsoon') ?></h3>
169
+ <p><?php _e('This feature allows you to quickly change the labels of the Text Fields and Buttons.','commingsoon') ?> </p>
170
 
171
 
172
+ <h3><?php _e('10. BackGround Slide-Show','commingsoon') ?></h3>
173
+ <p><?php _e('You can create a SlideShow and display it as a background with this feature. You may add as many slides as you want. It is also possible to display a Static Image or simply a color as a background.','commingsoon') ?> </p>
174
 
175
+ <h3><?php _e('11. Video BackGround Support','commingsoon') ?></h3>
176
+ <p><?php _e('This feature allows you to create a Full Screen Video BackGround. Just upload the video on Youtube and configure the settings via the Admin Panel. Its that simple!','commingsoon') ?> </p>
177
 
178
+ <h3><?php _e('12. Social Icon Support','commingsoon') ?></h3>
179
+ <p><?php _e('The premium version has support for 20 Social Media Network. You just need to fill in the url and the respective icon will be displayed on the coming soon page.','commingsoon') ?> </p>
180
 
181
+ <h3><?php _e('13. Design Customization Options','commingsoon') ?></h3>
182
+ <p><?php _e('The plugin allows you to quickly customize the settings like Font Color, Font Size, Font type, Button Color etc. All of these settings can be accessed via the Option Panel.','commingsoon') ?> </p>
183
 
184
+ <h3><?php _e('14. Custom CSS Support','commingsoon') ?></h3>
185
+ <p><?php _e('A lot of times the inbuilt settings are just not enough. With the Custom CSS support you can quikly add style rules to the coming soon page.','commingsoon') ?> </p>
186
 
187
+ <h3><?php _e('15. Google Analytics Support','commingsoon') ?></h3>
188
+ <p><?php _e('You can paste the google analytics tracking code and track the pageviews. No need to install a separate plugin..','commingsoon') ?> </p>
189
 
190
 
191
 
205
  <div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
206
 
207
  <div class="span6" style="width:85%;margin-top: auto;">
208
+ <h3><?php _e('Pricing','commingsoon') ?></h3>
209
+ <p> <?php _e('The pro version is priced at <strong>very reasonable 29 USD</strong> and entitles you to receive <strong>support and updates for 1 year</strong>. <br><br>If you need updates and support after one year, then simply renew the license. If not, then you may keep using the plugin. <br>You may use the plugin on any number of websites you want','commingsoon') ?></p>
210
 
211
 
212
+ <h3><?php _e('How to Purchase.','commingsoon') ?></h3>
213
+ <p><?php printf(__('If you are interested then you can buy the plugin ','commingsoon')) ?><a href = "http://easycomingsoon.com/features/" target = "_blank"><?php _e('here.','commingsoon') ?></a> </p>
214
 
215
+ <h3><?php _e('I look Forward to Working with you','commingsoon') ?></h3>
216
+ <p><?php _e('Thousands of users have enjoyed using our. I hope you will also enjoy working with us','commingsoon') ?> </p>
217
 
218
 
219
 
233
  <div class="span6" style="width:45%;margin-top: auto;">
234
 
235
 
236
+ <h3><?php _e('Cheers','commingsoon') ?></h3>
237
  <h3>Priyanshu</h3>
238
+ <h3><?php _e('Co-Founder, Webriti Themes and Plugins','commingsoon') ?></p></h3>
239
  </div>
240
 
241
 
274
 
275
  <br>
276
  <div style="text-align: center;">
277
+ <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/features/" target="_new"><?php _e('Upgrade To Pro Version','commingsoon') ?></a>&nbsp;
278
+ <a class="btn btn-success btn-large" href="http://easycomingsoon.com/features/" target="_new"><?php _e('View Live demo','commingsoon') ?></a>
279
  </div>
280
  <br>
281
  </div>
readme.txt CHANGED
@@ -112,6 +112,8 @@ In case you face any problem, contact us via the [Forums](http://wordpress.org/s
112
 
113
  == Changelog ==
114
 
 
 
115
  = 1.9.2 =
116
  1. Test WordPress version 4.6 compatibility.
117
 
112
 
113
  == Changelog ==
114
 
115
+ = 1.9.3 =
116
+ 1. Language translation feature added.
117
  = 1.9.2 =
118
  1. Test WordPress version 4.6 compatibility.
119
 
template/coming_soon_display.php CHANGED
@@ -128,7 +128,7 @@ $notification_settings =get_option('soon_page_notification_settings');
128
 
129
 
130
  <div id="social_links" style="margin-right:10px;padding-top:1%;float:right" >
131
- Social Links:&nbsp;
132
  <?php if($general_settings['fb']!='')
133
  {?>
134
  <a href="<?php echo $general_settings['fb']; ?>"> <img src="<?php echo plugins_url('images/facebook.png',__FILE__); ?>"></a>
@@ -167,6 +167,7 @@ $notification_settings =get_option('soon_page_notification_settings');
167
  </div> <!-- /container -->
168
 
169
  <?php
 
170
  if(isset($_POST['notify'])) {
171
 
172
  $email = $_POST['email'];
@@ -202,35 +203,37 @@ $notification_settings =get_option('soon_page_notification_settings');
202
  else
203
  {
204
  $regex = '/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/';
205
- if(preg_match($regex, $email))
206
- {
207
- if(wp_mail($to,$subject,$message,$headers))
208
  {
209
- if($notification_settings['message']=='')
210
  {
211
- $display='Thanks for submitting your email. We will notify you once we launch.';
212
- }
213
- else
 
 
 
 
 
 
 
 
 
 
214
  {
215
- $display = $notification_settings['message'];
 
216
  }
217
 
218
- echo "<script>alert('$display');
219
- location.href='';</script>";
220
  }
221
  else
222
- {
223
- echo 'Message could not be sent.';
224
- echo "<script>location.href='';</script>";
 
225
  }
226
-
227
- wp_mail($to1,$subject1,$message1,$headers1);
228
- }
229
- else
230
- {
231
- echo "<script>alert('Invalid email address Please enter valid email.');
232
- location.href='';
233
- </script>";
234
  }
235
  }
236
  }
128
 
129
 
130
  <div id="social_links" style="margin-right:10px;padding-top:1%;float:right" >
131
+ <?php _e('Social Links:','commingsoon') ?>&nbsp;
132
  <?php if($general_settings['fb']!='')
133
  {?>
134
  <a href="<?php echo $general_settings['fb']; ?>"> <img src="<?php echo plugins_url('images/facebook.png',__FILE__); ?>"></a>
167
  </div> <!-- /container -->
168
 
169
  <?php
170
+ $_GET['my_preview'] = isset($_GET['my_preview'])?$_GET['my_preview']:false;
171
  if(isset($_POST['notify'])) {
172
 
173
  $email = $_POST['email'];
203
  else
204
  {
205
  $regex = '/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/';
206
+ if( isset($_GET['my_preview']) && $_GET['my_preview'] != 'true' ){
207
+ if(preg_match($regex, $email))
 
208
  {
209
+ if(wp_mail($to,$subject,$message,$headers))
210
  {
211
+ if($notification_settings['message']=='')
212
+ {
213
+ $display='Thanks for submitting your email. We will notify you once we launch.';
214
+ }
215
+ else
216
+ {
217
+ $display = $notification_settings['message'];
218
+ }
219
+
220
+ echo "<script>alert('$display');
221
+ location.href='';</script>";
222
+ }
223
+ else
224
  {
225
+ echo 'Message could not be sent.';
226
+ echo "<script>location.href='';</script>";
227
  }
228
 
229
+ wp_mail($to1,$subject1,$message1,$headers1);
 
230
  }
231
  else
232
+ {
233
+ echo "<script>alert('Invalid email address Please enter valid email.');
234
+ location.href='';
235
+ </script>";
236
  }
 
 
 
 
 
 
 
 
237
  }
238
  }
239
  }
theme_options/pages/aboutpro_version_settings.php CHANGED
@@ -11,18 +11,19 @@ line-height:1.1;
11
  color: #000;
12
  letter-spacing: -1px;
13
  text-align: center;
14
- ">Coming Soon Pro Features</h3>
15
  <p style="font-size: 18px;
16
  font-style: normal;
17
 
18
  color: #707070;
19
- text-align: left;">Hey There, <br><br>Thanks for using the lite version of Easy Coming Soon. I hope the plugin will enable you to quickly and easily create a landing page.<br><br>
20
 
21
- If you are looking to create a more feature rich landing page then I would suggest you to have a look at the premium version of the Easy Coming Soon Plugin.
22
- It has a lot of additional features which will allow you to quickly create a good looking landing page. <br><br>
23
 
24
- I would suggest you to checkout the <a href = "http://easycomingsoon.com/demos/" target="_blank">Sample Coming Soon Page</a> created by the premium version of the plugin. <br><br>
25
- Also Check out the Admin Panel <a href = "http://easycomingsoon.com/demos/" target="_blank">here</a>. User Login: user and Password: user
 
26
  <br><br>
27
  </p>
28
  </div>
@@ -35,7 +36,7 @@ Also Check out the Admin Panel <a href = "http://easycomingsoon.com/demos/" targ
35
  <!-- Email Capture Feature Start -->
36
 
37
  <div class = "row" style="margin-left:25px;background:#f7f7f7;">
38
- <h3 style="margin-left:25px;font-size:20px;">Here is the complete List of Features in Pro Version </h3><br>
39
  </div>
40
  <div class="row" style="margin-left:10px;background:white;padding-top:70px;padding-bottom:10px;">
41
 
@@ -43,24 +44,24 @@ Also Check out the Admin Panel <a href = "http://easycomingsoon.com/demos/" targ
43
 
44
  <div class="span6" style="width:84%;margin-top: auto;margin-left:5%; font-size:15px;">
45
 
46
- <h3>1. Multiple Design Templates </h3>
47
- <p>A Launch Page can play an important role in branding so we made sure that all included templates are good looking. <br>
48
- As a user you just have to fill in the data via option panel and a Coming Soon Page will be created as per the selected template.</p>
49
 
50
 
51
- <h3>2. Email Capture Form</h3>
52
- <p>A Launch Page is ideal for collecting Email address of the interested visitors. You can quickly setup a Email Capture Form and Start collecting Email Address. All the Emails are stored on in your Website Database </p>
53
 
54
- <h3>3. Newsletter / Autoresponder Integration</h3>
55
- <p>Easy Coming Soon integrates with MailChimp, Aweber, Constant Contact , CampaignMonitor and Madmimi. You can connect the plugin to third party services and started building your Email List
56
  </p>
57
 
58
- <h3>4. User White List</h3>
59
 
60
- <p>This feature is very useful if you are building the website for a client. With this feature you can allow client / contributor to view the live site while all others will be presented with the Coming Soon Page. </p>
61
 
62
- <h3>5. Landing Page Mode</h3>
63
- <p> With this feature you can choose to display the Coming Soon Page on the entire site or on a single Page. <br> Here is a Use Case: Suppose you want the blog to be accessible to all users while displaying the coming soon page on the font page. It can be done with the Landing Page Mode. </p>
64
 
65
 
66
 
@@ -68,42 +69,42 @@ As a user you just have to fill in the data via option panel and a Coming Soon P
68
 
69
 
70
 
71
- <h3>6. Custom Favicon and Logo Support </h3>
72
 
73
- <p>You can quickly upload a Custom Logo and favicon via the option Panel. We make use of Wordpress Mdeia Uploader, so you can also insert the logo from the Wordpress Media Library.</p>
74
 
75
 
76
- <h3>7. Count-Down Timer Support </h3>
77
 
78
- <p> This feature was implemented as a response to a suggestion by one of our user. With this feature you can display a count down timer on the coming soon page. The timer can be quickly configure via option panel.</p>
79
 
80
 
81
 
82
- <h3>8. Progress Bar Support </h3>
83
 
84
- <p>It is also possible to display a Progress Bar on the coming soon page. Currently 3 styles of progress bars are supported, Basic, Striped and Animated. </p>
85
 
86
- <h3>9. Custom Text Strings</h3>
87
- <p>This feature allows you to quickly change the labels of the Text Fields and Buttons. </p>
88
 
89
 
90
- <h3>10. BackGround Slide-Show</h3>
91
- <p>You can create a SlideShow and display it as a background with this feature. You may add as many slides as you want. It is also possible to display a Static Image or simply a color as a background. </p>
92
 
93
- <h3>11. Video BackGround Support</h3>
94
- <p>This feature allows you to create a Full Screen Video BackGround. Just upload the video on Youtube and configure the settings via the Admin Panel. Its that simple! </p>
95
 
96
- <h3>12. Social Icon Support</h3>
97
- <p>The premium version has support for 20 Social Media Network. You just need to fill in the url and the respective icon will be displayed on the coming soon page. </p>
98
 
99
- <h3>13. Design Customization Options</h3>
100
- <p>The plugin allows you to quickly customize the settings like Font Color, Font Size, Font type, Button Color etc. All of these settings can be accessed via the Option Panel. </p>
101
 
102
- <h3>14. Custom CSS Support</h3>
103
- <p>A lot of times the inbuilt settings are just not enough. With the Custom CSS support you can quikly add style rules to the coming soon page. </p>
104
 
105
- <h3>15. Google Analytics Support</h3>
106
- <p>You can paste the google analytics tracking code and track the pageviews. No need to install a separate plugin.. </p>
107
 
108
 
109
 
@@ -117,9 +118,9 @@ As a user you just have to fill in the data via option panel and a Coming Soon P
117
  <div class="row" style="margin-left:10px;background:white;padding-top:10px;padding-bottom: 10px;">
118
  <div class="span6" style="width:45%;margin-top: auto;"></div>
119
  <div class="span6" style="width:45%;margin-top: auto;">
120
- <h3>Cheers</h3>
121
- <h3>Priyanshu</h3>
122
- <h3>Co-Founder, EasyComingSoon</p></h3>
123
  </div>
124
  </div>
125
 
@@ -132,8 +133,8 @@ As a user you just have to fill in the data via option panel and a Coming Soon P
132
 
133
  <br>
134
  <div style="text-align: center;">
135
- <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/" target="_new">Upgrade To Pro Version</a>&nbsp;
136
- <a class="btn btn-success btn-large" href="http://easycomingsoon.com/demos/" target="_new">View Live demo</a>
137
  </div>
138
  <br>
139
 
11
  color: #000;
12
  letter-spacing: -1px;
13
  text-align: center;
14
+ "><?php _e('Coming Soon Pro Features','commingsoon') ?></h3>
15
  <p style="font-size: 18px;
16
  font-style: normal;
17
 
18
  color: #707070;
19
+ text-align: left;"><?php _e('Hey There,','commingsoon') ?> <br><br><?php _e('Thanks for using the lite version of Easy Coming Soon. I hope the plugin will enable you to quickly and easily create a landing page.','commingsoon') ?><br><br>
20
 
21
+ <?php _e('If you are looking to create a more feature rich landing page then I would suggest you to have a look at the premium version of the Easy Coming Soon Plugin.
22
+ It has a lot of additional features which will allow you to quickly create a good looking landing page.','commingsoon') ?> <br><br>
23
 
24
+ <?php _e('I would suggest you to checkout the','commingsoon') ?> <a href = "http://easycomingsoon.com/demos/" target="_blank"><?php _e('Sample Coming Soon Page</a> created by the premium version of the plugin.','commingsoon') ?> <br><br>
25
+ <?php _e('Also Check out the Admin Panel','commingsoon') ?> <a href = "http://easycomingsoon.com/demos/" target="_blank"><?php _e('here','commingsoon') ?></a>
26
+ <?php printf(__('. User Login: user and Password: user','commingsoon')) ?>
27
  <br><br>
28
  </p>
29
  </div>
36
  <!-- Email Capture Feature Start -->
37
 
38
  <div class = "row" style="margin-left:25px;background:#f7f7f7;">
39
+ <h3 style="margin-left:25px;font-size:20px;"><?php _e('Here is the complete List of Features in Pro Version ','commingsoon') ?></h3><br>
40
  </div>
41
  <div class="row" style="margin-left:10px;background:white;padding-top:70px;padding-bottom:10px;">
42
 
44
 
45
  <div class="span6" style="width:84%;margin-top: auto;margin-left:5%; font-size:15px;">
46
 
47
+ <h3><?php _e('1. Multiple Design Templates ','commingsoon') ?></h3>
48
+ <p><?php printf(__('A Launch Page can play an important role in branding so we made sure that all included templates are good looking. <br>
49
+ As a user you just have to fill in the data via option panel and a Coming Soon Page will be created as per the selected template.','commingsoon')) ?></p>
50
 
51
 
52
+ <h3><?php _e('2. Email Capture Form','commingsoon') ?></h3>
53
+ <p><?php _e('A Launch Page is ideal for collecting Email address of the interested visitors. You can quickly setup a Email Capture Form and Start collecting Email Address. All the Emails are stored on in your Website Database ','commingsoon') ?></p>
54
 
55
+ <h3><?php _e('3. Newsletter / Autoresponder Integration','commingsoon') ?></h3>
56
+ <p><?php _e('Easy Coming Soon integrates with MailChimp, Aweber, Constant Contact , CampaignMonitor and Madmimi. You can connect the plugin to third party services and started building your Email List','commingsoon') ?>
57
  </p>
58
 
59
+ <h3><?php _e('4. User White List','commingsoon') ?></h3>
60
 
61
+ <p><?php _e('This feature is very useful if you are building the website for a client. With this feature you can allow client / contributor to view the live site while all others will be presented with the Coming Soon Page. ','commingsoon') ?></p>
62
 
63
+ <h3><?php _e('5. Landing Page Mode','commingsoon') ?></h3>
64
+ <p> <?php _e('With this feature you can choose to display the Coming Soon Page on the entire site or on a single Page. <br> Here is a Use Case: Suppose you want the blog to be accessible to all users while displaying the coming soon page on the font page. It can be done with the Landing Page Mode.','commingsoon') ?> </p>
65
 
66
 
67
 
69
 
70
 
71
 
72
+ <h3><?php _e('6. Custom Favicon and Logo Support ','commingsoon') ?></h3>
73
 
74
+ <p><?php _e('You can quickly upload a Custom Logo and favicon via the option Panel. We make use of Wordpress Mdeia Uploader, so you can also insert the logo from the Wordpress Media Library.','commingsoon') ?></p>
75
 
76
 
77
+ <h3><?php _e('7. Count-Down Timer Support','commingsoon') ?> </h3>
78
 
79
+ <p> <?php _e('This feature was implemented as a response to a suggestion by one of our user. With this feature you can display a count down timer on the coming soon page. The timer can be quickly configure via option panel.','commingsoon') ?></p>
80
 
81
 
82
 
83
+ <h3><?php _e('8. Progress Bar Support ','commingsoon') ?></h3>
84
 
85
+ <p><?php _e('It is also possible to display a Progress Bar on the coming soon page. Currently 3 styles of progress bars are supported, Basic, Striped and Animated. ','commingsoon') ?></p>
86
 
87
+ <h3><?php _e('9. Custom Text Strings','commingsoon') ?></h3>
88
+ <p><?php _e('This feature allows you to quickly change the labels of the Text Fields and Buttons. ','commingsoon') ?></p>
89
 
90
 
91
+ <h3><?php _e('10. BackGround Slide-Show','commingsoon') ?></h3>
92
+ <p><?php _e('You can create a SlideShow and display it as a background with this feature. You may add as many slides as you want. It is also possible to display a Static Image or simply a color as a background. ','commingsoon') ?></p>
93
 
94
+ <h3><?php _e('11. Video BackGround Support','commingsoon') ?></h3>
95
+ <p><?php _e('This feature allows you to create a Full Screen Video BackGround. Just upload the video on Youtube and configure the settings via the Admin Panel. Its that simple! ','commingsoon') ?></p>
96
 
97
+ <h3><?php _e('12. Social Icon Support','commingsoon') ?></h3>
98
+ <p><?php _e('The premium version has support for 20 Social Media Network. You just need to fill in the url and the respective icon will be displayed on the coming soon page. ','commingsoon') ?></p>
99
 
100
+ <h3><?php _e('13. Design Customization Options','commingsoon') ?></h3>
101
+ <p><?php _e('The plugin allows you to quickly customize the settings like Font Color, Font Size, Font type, Button Color etc. All of these settings can be accessed via the Option Panel. ','commingsoon') ?></p>
102
 
103
+ <h3><?php _e('14. Custom CSS Support','commingsoon') ?></h3>
104
+ <p><?php _e('A lot of times the inbuilt settings are just not enough. With the Custom CSS support you can quikly add style rules to the coming soon page. ','commingsoon') ?></p>
105
 
106
+ <h3><?php _e('15. Google Analytics Support','commingsoon') ?></h3>
107
+ <p><?php _e('You can paste the google analytics tracking code and track the pageviews. No need to install a separate plugin.. ','commingsoon') ?></p>
108
 
109
 
110
 
118
  <div class="row" style="margin-left:10px;background:white;padding-top:10px;padding-bottom: 10px;">
119
  <div class="span6" style="width:45%;margin-top: auto;"></div>
120
  <div class="span6" style="width:45%;margin-top: auto;">
121
+ <h3><?php _e('Cheers','commingsoon') ?></h3>
122
+ <h3><?php _e('Priyanshu','commingsoon') ?></h3>
123
+ <h3><?php _e('Co-Founder, EasyComingSoon','commingsoon') ?></p></h3>
124
  </div>
125
  </div>
126
 
133
 
134
  <br>
135
  <div style="text-align: center;">
136
+ <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/" target="_new"><?php _e('Upgrade To Pro Version','commingsoon') ?></a>&nbsp;
137
+ <a class="btn btn-success btn-large" href="http://easycomingsoon.com/demos/" target="_new"><?php _e('View Live demo','commingsoon') ?></a>
138
  </div>
139
  <br>
140
 
theme_options/pages/header_page_settings.php CHANGED
@@ -74,15 +74,15 @@ $general_default_settings = array(
74
 
75
  <div class="section">
76
  <div class="element">
77
- <h3>Select status</h3>
78
- <input type="radio" name="status" value="0" id="status" <?php if($current_options['status']=='0') echo 'checked' ?>/>&nbsp;Disabled<br>
79
- <input type="radio" name="status" value="1" id="status" <?php if($current_options['status']=='1') echo 'checked' ?>/>&nbsp;Coming soon enabled
80
  </div>
81
  </div>
82
 
83
  <div class="section">
84
  <div class="element">
85
- <h3>Enter background image</h3>
86
  <input type="text" value="<?php if(!empty($current_options['background'])){ echo $current_options['background']; } ?>" id="background" name="background" size="36">
87
  <input type="button" value="Upload Background Image" class="button-primary upload-primary" style="margin-left:10px;height:30px">
88
  </div>
@@ -94,42 +94,42 @@ $general_default_settings = array(
94
 
95
  <div class="section">
96
  <div class="element">
97
- <h3>Enter the title</h3>
98
  <input type="text" id="title" name="title" value="<?php if(!empty($current_options['title'])){ echo $current_options['title']; } ?>"/>
99
  </div>
100
  </div>
101
 
102
  <div class="section">
103
  <div class="element">
104
- <h3>Enter description</h3>
105
  <textarea id="descrip" name="descrip" rows="5"><?php if(!empty($current_options['descrip'])){ echo $current_options['descrip']; } ?></textarea>
106
  </div>
107
  </div>
108
 
109
  <div class="section">
110
  <div class="element">
111
- <h3>Google Analytics Code</h3>
112
  <textarea id="google_code" name="google_code" rows="5"><?php if(!empty($current_options['google_code'])){ echo $current_options['google_code']; } ?></textarea>
113
  </div>
114
  </div>
115
 
116
  <div class="section">
117
  <div class="element">
118
- <h3>Enter facebook URL</h3>
119
  <input type="text" id="fb" name="fb" placeholder="Enter facebook url" value="<?php if(!empty($current_options['fb'])){ echo $current_options['fb']; } ?>"/>
120
  </div>
121
  </div>
122
 
123
  <div class="section">
124
  <div class="element">
125
- <h3>Enter twitter URL</h3>
126
  <input type="text" id="twit" name="twit" placeholder="Enter twitter url" value="<?php if(!empty($current_options['twit'])){ echo $current_options['twit']; } ?>"/>
127
  </div>
128
  </div>
129
 
130
  <div class="section">
131
  <div class="element">
132
- <h3>Enter google-plus URL</h3>
133
  <input type="text" id="gp" name="gp" placeholder="Enter google-plus url" value="<?php if(!empty($current_options['gp'])){ echo $current_options['gp']; } ?>"/>
134
  </div>
135
  </div>
74
 
75
  <div class="section">
76
  <div class="element">
77
+ <h3><?php _e('Select status','commingsoon') ?></h3>
78
+ <input type="radio" name="status" value="0" id="status" <?php if($current_options['status']=='0') echo 'checked' ?>/>&nbsp;<?php _e('Disabled','commingsoon') ?><br>
79
+ <input type="radio" name="status" value="1" id="status" <?php if($current_options['status']=='1') echo 'checked' ?>/>&nbsp;<?php _e('Coming soon enabled','commingsoon') ?>
80
  </div>
81
  </div>
82
 
83
  <div class="section">
84
  <div class="element">
85
+ <h3><?php _e('Enter background image','commingsoon') ?></h3>
86
  <input type="text" value="<?php if(!empty($current_options['background'])){ echo $current_options['background']; } ?>" id="background" name="background" size="36">
87
  <input type="button" value="Upload Background Image" class="button-primary upload-primary" style="margin-left:10px;height:30px">
88
  </div>
94
 
95
  <div class="section">
96
  <div class="element">
97
+ <h3><?php _e('Enter the title','commingsoon') ?></h3>
98
  <input type="text" id="title" name="title" value="<?php if(!empty($current_options['title'])){ echo $current_options['title']; } ?>"/>
99
  </div>
100
  </div>
101
 
102
  <div class="section">
103
  <div class="element">
104
+ <h3><?php _e('Enter description','commingsoon') ?></h3>
105
  <textarea id="descrip" name="descrip" rows="5"><?php if(!empty($current_options['descrip'])){ echo $current_options['descrip']; } ?></textarea>
106
  </div>
107
  </div>
108
 
109
  <div class="section">
110
  <div class="element">
111
+ <h3><?php _e('Google Analytics Code','commingsoon') ?></h3>
112
  <textarea id="google_code" name="google_code" rows="5"><?php if(!empty($current_options['google_code'])){ echo $current_options['google_code']; } ?></textarea>
113
  </div>
114
  </div>
115
 
116
  <div class="section">
117
  <div class="element">
118
+ <h3><?php _e('Enter facebook URL','commingsoon') ?></h3>
119
  <input type="text" id="fb" name="fb" placeholder="Enter facebook url" value="<?php if(!empty($current_options['fb'])){ echo $current_options['fb']; } ?>"/>
120
  </div>
121
  </div>
122
 
123
  <div class="section">
124
  <div class="element">
125
+ <h3><?php _e('Enter twitter URL','commingsoon') ?></h3>
126
  <input type="text" id="twit" name="twit" placeholder="Enter twitter url" value="<?php if(!empty($current_options['twit'])){ echo $current_options['twit']; } ?>"/>
127
  </div>
128
  </div>
129
 
130
  <div class="section">
131
  <div class="element">
132
+ <h3><?php _e('Enter google-plus URL','commingsoon') ?></h3>
133
  <input type="text" id="gp" name="gp" placeholder="Enter google-plus url" value="<?php if(!empty($current_options['gp'])){ echo $current_options['gp']; } ?>"/>
134
  </div>
135
  </div>
theme_options/pages/live_preview_settings.php CHANGED
@@ -17,7 +17,7 @@
17
  </div>
18
 
19
  <div class="section">
20
- <p><a href="<?php echo bloginfo("url"); ?>?my_preview=true&TB_iframe=true&width=500&height=532">Click here</a> for live preview template</p>
21
  </div>
22
 
23
 
17
  </div>
18
 
19
  <div class="section">
20
+ <p><a href="<?php echo bloginfo("url"); ?>?my_preview=true&TB_iframe=true&width=500&height=532"><?php _e('Click here','commingsoon') ?></a> <?php _e('for live preview template','commingsoon') ?></p>
21
  </div>
22
 
23
 
theme_options/pages/notification_page_setting.php CHANGED
@@ -62,47 +62,47 @@ $notification_default_settings = array(
62
 
63
  <div class="section">
64
  <div class="element">
65
- <h3>Mail option</h3>
66
  <select name="mailto" id="mailto" onchange="mail_field_display()">
67
- <option onclick="hideAll()" value="no" <?php if($current_options['mailto'] == 'no'){ echo "selected"; } ?>>Do not display signup field</option>
68
- <option onclick="show_mail_field()" value="yes" <?php if($current_options['mailto'] == 'yes'){ echo "selected"; } ?>>Mail to the Owner</option>
69
  </select>
70
  </div>
71
  </div>
72
 
73
  <div class="section email_address_section">
74
  <div class="element">
75
- <h3>Owner Email Address</h3>
76
  <input onchange="return email_check();" type="text" id="email_address" name="email_address" placeholder="example@gmail.com" value="<?php if(!empty($current_options['email_address'])){ echo $current_options['email_address']; } ?>">
77
  </div>
78
  </div>
79
 
80
  <div class="section message_section">
81
  <div class="element">
82
- <h3>Display Message after user subscribing</h3>
83
  <input type="text" id="message" name="message" placeholder="Thanks you for subscribing" value="<?php if(!empty($current_options['message'])){ echo $current_options['message']; } ?>">
84
  </div>
85
  </div>
86
 
87
  <div class="section sb_btn_section">
88
  <div class="element">
89
- <h3>Subscribe Button</h3>
90
  <input type="text" id="sb_btn" name="sb_btn" placeholder="Notify Me!" value="<?php if(!empty($current_options['sb_btn'])){ echo $current_options['sb_btn']; } ?>">
91
  </div>
92
  </div>
93
 
94
  <div class="section placeholder_text_section">
95
  <div class="element">
96
- <h3>Email Textbox Placeholder</h3>
97
  <input type="text" id="placeholder_text" name="placeholder_text" placeholder="Enter your email to notify" value="<?php if(!empty($current_options['placeholder_text'])){ echo $current_options['placeholder_text']; } ?>">
98
  </div>
99
  </div>
100
 
101
  <div class="section placeholder_text_section">
102
  <div class="element">
103
- <h3>Custom Email message to owner</h3>
104
  <textarea rows="5" type="text" id="user_message" name="user_message" placeholder="Custom Email message to owner"><?php if(!empty($current_options['user_message'])){ echo $current_options['user_message']; } ?></textarea>
105
- <p>Use Shortcode : <strong style="font-size:15px;">[email]</strong> to include the email address entered by the Subscriber</p>
106
  </div>
107
  </div>
108
 
62
 
63
  <div class="section">
64
  <div class="element">
65
+ <h3><?php _e('Mail option','commingsoon') ?></h3>
66
  <select name="mailto" id="mailto" onchange="mail_field_display()">
67
+ <option onclick="hideAll()" value="no" <?php if($current_options['mailto'] == 'no'){ echo "selected"; } ?>><?php _e('Do not display signup field','commingsoon') ?></option>
68
+ <option onclick="show_mail_field()" value="yes" <?php if($current_options['mailto'] == 'yes'){ echo "selected"; } ?>><?php _e('Mail to the Owner','commingsoon') ?></option>
69
  </select>
70
  </div>
71
  </div>
72
 
73
  <div class="section email_address_section">
74
  <div class="element">
75
+ <h3><?php _e('Owner Email Address','commingsoon') ?></h3>
76
  <input onchange="return email_check();" type="text" id="email_address" name="email_address" placeholder="example@gmail.com" value="<?php if(!empty($current_options['email_address'])){ echo $current_options['email_address']; } ?>">
77
  </div>
78
  </div>
79
 
80
  <div class="section message_section">
81
  <div class="element">
82
+ <h3><?php _e('Display Message after user subscribing','commingsoon') ?></h3>
83
  <input type="text" id="message" name="message" placeholder="Thanks you for subscribing" value="<?php if(!empty($current_options['message'])){ echo $current_options['message']; } ?>">
84
  </div>
85
  </div>
86
 
87
  <div class="section sb_btn_section">
88
  <div class="element">
89
+ <h3><?php _e('Subscribe Button','commingsoon') ?></h3>
90
  <input type="text" id="sb_btn" name="sb_btn" placeholder="Notify Me!" value="<?php if(!empty($current_options['sb_btn'])){ echo $current_options['sb_btn']; } ?>">
91
  </div>
92
  </div>
93
 
94
  <div class="section placeholder_text_section">
95
  <div class="element">
96
+ <h3><?php _e('Email Textbox Placeholder','commingsoon') ?></h3>
97
  <input type="text" id="placeholder_text" name="placeholder_text" placeholder="Enter your email to notify" value="<?php if(!empty($current_options['placeholder_text'])){ echo $current_options['placeholder_text']; } ?>">
98
  </div>
99
  </div>
100
 
101
  <div class="section placeholder_text_section">
102
  <div class="element">
103
+ <h3><?php _e('Custom Email message to owner','commingsoon') ?></h3>
104
  <textarea rows="5" type="text" id="user_message" name="user_message" placeholder="Custom Email message to owner"><?php if(!empty($current_options['user_message'])){ echo $current_options['user_message']; } ?></textarea>
105
+ <p><?php _e('Use Shortcode :','commingsoon') ?> <strong style="font-size:15px;">[email]</strong> <?php _e('to include the email address entered by the Subscriber','commingsoon') ?></p>
106
  </div>
107
  </div>
108
 
theme_options/pages/pricing_settings.php CHANGED
@@ -4,20 +4,20 @@
4
  <div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 10px;padding-bottom: 70px;">
5
 
6
  <div class="span6" style="width:85%;margin-top: auto;">
7
- <h3>Pricing</h3>
8
- <p> We have 2 set of licenses</p>
9
 
10
- <ul><li><strong>Single Site License</strong> - The price of this license is <b>$29</b>. Which allow you to use the Premium Plugin on Single Site.</li>
11
- <li><strong>Unlimited Site License</strong> - This price of this license is <b>$59</b>. Which allow you to use the plugin on Unlimited WordPress Websites.
12
  </li></ul>
13
- <p>Support and Updates will be given for 1 year. <br>If you need updates and support after one year, then simply renew the license. If not, then you may keep using the plugin.</p>
14
 
15
 
16
- <h3>How to Purchase.</h3>
17
- <p>If you are interested then you can buy the plugin <a href = "http://member.easycomingsoon.com/pricing/" target = "_blank">here.</a> Once the purchase process gets complete, the license key will be emailed to you. Add and activate this license key in the License option page in the Premium version of this plugin. Make sure that you activate this license key in order to enjoy the continue support and plugin updates. </p>
18
 
19
- <h3>I look Forward to Working with you</h3>
20
- <p>Thousands of users have enjoyed using our. I hope you will also enjoy working with us </p>
21
 
22
  </div>
23
 
@@ -33,8 +33,8 @@
33
 
34
  <br>
35
  <div style="text-align: center;">
36
- <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/" target="_new">Upgrade To Pro Version</a>&nbsp;
37
- <a class="btn btn-success btn-large" href="http://easycomingsoon.com/demos/" target="_new">View Live demo</a>
38
  </div>
39
  <br>
40
 
4
  <div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 10px;padding-bottom: 70px;">
5
 
6
  <div class="span6" style="width:85%;margin-top: auto;">
7
+ <h3><?php _e('Pricing','commingsoon') ?></h3>
8
+ <p> <?php _e('We have 2 set of licenses','commingsoon') ?></p>
9
 
10
+ <ul><li><?php printf(__('<strong>Single Site License</strong> - The price of this license is <b>$29</b>. Which allow you to use the Premium Plugin on Single Site.','commingsoon')) ?></li>
11
+ <li><?php printf(__('<strong>Unlimited Site License</strong> - This price of this license is <b>$59</b>. Which allow you to use the plugin on Unlimited WordPress Websites.','commingsoon')) ?>
12
  </li></ul>
13
+ <p><?php printf(__('Support and Updates will be given for 1 year. <br>If you need updates and support after one year, then simply renew the license. If not, then you may keep using the plugin.','commingsoon')) ?></p>
14
 
15
 
16
+ <h3><?php _e('How to Purchase.','commingsoon') ?></h3>
17
+ <p><?php _e('If you are interested then you can buy the plugin','commingsoon') ?> <a href = "http://member.easycomingsoon.com/pricing/" target = "_blank"><?php _e('here.','commingsoon') ?></a> <?php printf(__('Once the purchase process gets complete, the license key will be emailed to you. Add and activate this license key in the License option page in the Premium version of this plugin. Make sure that you activate this license key in order to enjoy the continue support and plugin updates.','commingsoon')) ?></p>
18
 
19
+ <h3><?php _e('I look Forward to Working with you','commingsoon') ?></h3>
20
+ <p><?php _e('Thousands of users have enjoyed using our. I hope you will also enjoy working with us ','commingsoon') ?></p>
21
 
22
  </div>
23
 
33
 
34
  <br>
35
  <div style="text-align: center;">
36
+ <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/" target="_new"><?php _e('Upgrade To Pro Version','commingsoon') ?></a>&nbsp;
37
+ <a class="btn btn-success btn-large" href="http://easycomingsoon.com/demos/" target="_new"><?php _e('View Live demo','commingsoon') ?></a>
38
  </div>
39
  <br>
40
 
theme_options/pages/pro_features_settings.php CHANGED
@@ -11,14 +11,14 @@ line-height:1.1;
11
  color: #000;
12
  letter-spacing: -1px;
13
  text-align: center;
14
- ">Coming Soon Pro Features</h3>
15
  <p style="font-size: 22px;
16
  font-style: normal;
17
  font-weight: 300;
18
  color: #707070;
19
- text-align: center;">The premium version allows you to capture Visitor Email address, integrates with various AutoResponders , Comes with 2 different Template and provide loads of Design Customization Options. <br><br>
20
- <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/" target="_new">Upgrade To Pro Version</a>
21
- <a class="btn btn-success btn-large" href="http://easycomingsoon.com/demos/" target="_new">View Live demo</a>
22
  </p>
23
  </div>
24
 
@@ -37,8 +37,8 @@ text-align: center;">The premium version allows you to capture Visitor Email add
37
  <img src="<?php echo plugins_url('/images/img/subscriber.png',__FILE__);?>" alt="" style="width:100%">
38
  </div>
39
  <div class="span6" style="width:45%;margin-top: auto;margin-left:5%; font-size:15px;">
40
- <h3>Email Capture Field</h3>
41
- <p>Collect email address of your visitors with an email Capture Field. The Captured Email address are stored in your Wordpress website.</p>
42
  </div>
43
 
44
 
@@ -58,8 +58,8 @@ text-align: center;">The premium version allows you to capture Visitor Email add
58
  <div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
59
 
60
  <div class="span6" style="width:45%;margin-top: auto;">
61
- <h3>Newsletter Integration</h3>
62
- <p>Premium version integrates with popular newsletter services like <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li> Mailchimp</li><li>Aweber</li><li>Madmimi</li><li>Constant Contact</li><li>Campaign Monitor</li><li>FeedBurner</li></ul></p>
63
  </div>
64
 
65
  <div class="span6" style="width:45%">
@@ -78,8 +78,8 @@ text-align: center;">The premium version allows you to capture Visitor Email add
78
  </div>
79
 
80
  <div class="span6" style="width:45%;margin-top: auto;">
81
- <h3>Responsive Design</h3>
82
- <p>Create a Responsive Landing Page Mode. Easy coming soon support Bootstrap Based landing page which display perfectly on mobile and tablet device.</p>
83
  </div>
84
 
85
 
@@ -93,8 +93,8 @@ text-align: center;">The premium version allows you to capture Visitor Email add
93
 
94
 
95
  <div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
96
- <h3>4 additional Design Templates</h3>
97
- <p>The premium version comes with 4 extra templates. All the templates are completely customizable.</p>
98
  </div>
99
  <div class="span6" style="width:45%">
100
  <img src="<?php echo plugins_url('/images/img/laptop1.png',__FILE__);?>" alt="" style="width:100%">
@@ -112,8 +112,8 @@ text-align: center;">The premium version allows you to capture Visitor Email add
112
  </div>
113
 
114
  <div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
115
- <h3>Powerful Design Settings</h3>
116
- <p>Make your maintenance page look Sexy!!! The premium version comes with loads of design settings like : <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li>Video Back-Grounds</li><li>Background Slideshow</li><li>Google Font integration</li><li>Text color Customization</li><li>Custom Css</li></ul></p>
117
  </div>
118
 
119
 
@@ -124,8 +124,8 @@ text-align: center;">The premium version allows you to capture Visitor Email add
124
  <div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
125
 
126
  <div class="span6" style="width:45%;margin-top: auto;">
127
- <h3>Landing Page Mode</h3>
128
- <p>Design and Publish a Landing Page on your Wordpress Website. The premium version enables you add a landing page to your existing wordpress website. </p>
129
  </div>
130
 
131
  <div class="span6" style="width:45%">
@@ -143,8 +143,8 @@ text-align: center;">The premium version allows you to capture Visitor Email add
143
  <img src="<?php echo plugins_url('/images/img/users_lock.png',__FILE__);?>" alt="" style="width:70%;margin-left:5%">
144
  </div>
145
  <div class="span6" style="width:45%;margin-top:auto;margin-left:5%">
146
- <h3>Access Controls</h3>
147
- <p>Powerful Access Control feature lets you decide which users can view the Live Website. Whitelist IP address and User Roles. Assign Coming Soon Page to a particualr Wordpress Page.</p>
148
  </div>
149
 
150
 
@@ -161,8 +161,8 @@ text-align: center;">The premium version allows you to capture Visitor Email add
161
 
162
 
163
  <div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
164
- <h3>Social Media Icons Support</h3>
165
- <p>Quickly add links to your social profiles. The plugin supports adding links to Facebook, Twitter, Google+, Pinterest, Youtube, Tumblr, Viemo etc..</p>
166
  </div>
167
  <div class="span6" style="width:45%">
168
  <img src="<?php echo plugins_url('/images/img/social.jpg',__FILE__);?>" alt="" style="width:100%">
@@ -177,8 +177,8 @@ text-align: center;">The premium version allows you to capture Visitor Email add
177
  <img src="<?php echo plugins_url('/images/img/browsericons.png',__FILE__);?>" alt="" style="width:100%">
178
  </div>
179
  <div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
180
- <h3>All Browser Support</h3>
181
- <p>Plugin Tested with all popular browsers like <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li> IE 9 +</li><li> Google Chrome</li><li> Mozilla Firefox </li><li> Apple Safari</li></ul></p>
182
  </div>
183
 
184
 
@@ -193,8 +193,8 @@ text-align: center;">The premium version allows you to capture Visitor Email add
193
 
194
 
195
  <div class="span6" style="width:45%;margin-top: auto;">
196
- <h3>Translation Ready</h3>
197
- <p>Quickly translate the plugin in the language of your choice.</p>
198
  </div>
199
 
200
  <div class="span6" style="width:45%">
@@ -215,14 +215,14 @@ line-height:1.1;
215
  color: #000;
216
  letter-spacing: -1px;
217
  text-align: center;
218
- ">Upgarde to Coming Soon Pro Here</h3>
219
  <p style="font-size: 22px;
220
  font-style: normal;
221
  font-weight: 300;
222
  color: #707070;
223
  text-align: center;">
224
- <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/" target="_new">Upgrade To Pro Version</a>&nbsp;
225
- <a class="btn btn-success btn-large" href="http://easycomingsoon.com/demos/" target="_new">View Live demo</a>
226
  </p>
227
  </div>
228
 
@@ -238,15 +238,15 @@ line-height:1.1;
238
  color: #000;
239
  letter-spacing: -1px;
240
  text-align: center;
241
- ">Comparison Table of Free And Pro Version</h3>
242
  <br>
243
  <table class="table table-hover table-bordered" style="font-size:15px;margin-bottom:0px;" >
244
  <thead class="alert alert-info">
245
  <tr>
246
  <th></th>
247
- <th style="text-align: center; font-size: 16px;">Features</th>
248
- <th style="text-align: center; font-size: 16px;">Free</th>
249
- <th style="text-align: center; font-size: 16px;">Premium</th>
250
  </tr>
251
  </thead>
252
  <tbody>
@@ -255,7 +255,7 @@ text-align: center;
255
  <tr style="height:6px;">
256
  <td><span class="icon1 help" style="float:right">
257
  <span class="tooltip1"><?php _e('Plugin is work with any wordpress theme easily.');?></span></span></td>
258
- <td><p style="font-size:16px"><strong>Works With Any Wordpress Theme</strong></p></td>
259
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
260
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
261
  </tr>
@@ -263,7 +263,7 @@ text-align: center;
263
  <tr>
264
  <td><span class="icon1 help" style="float:right">
265
  <span class="tooltip1"><?php _e('Plugin template is compatible with all devices. It have completely resposive feature.');?></span></span></td>
266
- <td><p style="font-size:16px"><b>Responsive Design</b></p></td>
267
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
268
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
269
  </tr>
@@ -271,14 +271,14 @@ text-align: center;
271
  <tr>
272
  <td><span class="icon1 help" style="float:right">
273
  <span class="tooltip1"><?php _e('Defalut template is availale in both pro and free .');?></span></span></td>
274
- <td><p style="font-size:16px"><b>Free Coming Soon Page Template</b></p></td>
275
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
276
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
277
  </tr>
278
  <tr>
279
  <td><span class="icon1 help" style="float:right">
280
  <span class="tooltip1"><?php _e('Easily customizable admin panel and very user friendly.');?></span></span></td>
281
- <td><p style="font-size:16px"><b> User-friendly Setup</b> </p></td>
282
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
283
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
284
  </tr>
@@ -286,7 +286,7 @@ text-align: center;
286
  <tr>
287
  <td><span class="icon1 help" style="float:right">
288
  <span class="tooltip1"><?php _e('Default fonts are availabel in both.');?></span></span></td>
289
- <td><p style="font-size:16px"><b>Default fonts</b> </p></td>
290
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
291
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
292
  </tr>
@@ -295,7 +295,7 @@ text-align: center;
295
  <tr>
296
  <td><span class="icon1 help" style="float:right">
297
  <span class="tooltip1"><?php _e('Buddy Press Supportive.','sis_spa');?></span></span></td>
298
- <td><p style="font-size:16px"><b>BuddyPress Support</b></p></td>
299
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
300
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
301
  </tr>
@@ -304,7 +304,7 @@ text-align: center;
304
  <tr>
305
  <td><span class="icon1 help" style="float:right">
306
  <span class="tooltip1"><?php _e('Visible only non loggeed user, if you are not login then you are not able to view regular site.');?></span></span></td>
307
- <td><p style="font-size:16px"><b>Visible only non logged user</b></p></td>
308
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
309
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
310
  </tr>
@@ -313,7 +313,7 @@ text-align: center;
313
  <tr>
314
  <td><span class="icon1 help" style="float:right">
315
  <span class="tooltip1"><?php _e('Easily collect user notify mail.');?></span></span></td>
316
- <td><p style="font-size:16px"><b>Easily collect visitor emails</b> </p></td>
317
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
318
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
319
  </tr>
@@ -325,7 +325,7 @@ text-align: center;
325
  <tr>
326
  <td><span class="icon1 help" style="float:right">
327
  <span class="tooltip1"><?php _e('Google Analytics supportive.');?></span></span></td>
328
- <td><p style="font-size:16px"><b>Google Analytics Support</b></p></td>
329
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
330
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
331
  </tr>
@@ -333,15 +333,15 @@ text-align: center;
333
  <tr>
334
  <td><span class="icon1 help" style="float:right">
335
  <span class="tooltip1"><?php _e('Get social support.','sis_spa');?></span></span></td>
336
- <td><p style="font-size:16px"><b>Social Follow Icons</b></p></td>
337
- <td style="text-align: center;"><p>Facebook, Twitter, Google+</p></td>
338
- <td style="text-align: center;">Twitter, Facebook, Linkedin, Google+, Youtube, Email, Pinterest, Yahoo etc.</td>
339
  </tr>
340
 
341
  <tr>
342
  <td><span class="icon1 help" style="float:right">
343
  <span class="tooltip1"><?php _e('Google fonts api are integreted with coming soon.');?></span></span></td>
344
- <td><p style="font-size:16px"><b>Google Fonts Support</b></p></td>
345
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
346
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
347
  </tr>
@@ -349,7 +349,7 @@ text-align: center;
349
  <tr>
350
  <td><span class="icon1 help" style="float:right">
351
  <span class="tooltip1"><?php _e('Get our fast and friendly support.');?></span></span></td>
352
- <td><p style="font-size:16px"><b>Multisite Support</b></p></td>
353
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
354
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
355
  </tr>
@@ -358,7 +358,7 @@ text-align: center;
358
  <tr>
359
  <td><span class="icon1 help" style="float:right">
360
  <span class="tooltip1"><?php _e('laguage Translation is available in premium.');?></span></span></td>
361
- <td><p style="font-size:16px"><b>Language Translation Support</b></p></td>
362
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
363
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
364
  </tr>
@@ -366,7 +366,7 @@ text-align: center;
366
  <tr>
367
  <td><span class="icon1 help" style="float:right">
368
  <span class="tooltip1"><?php _e('limit access with clients who want to view regular sites.');?></span></span></td>
369
- <td><p style="font-size:16px"><b>Limit Access with Client View</b></p></td>
370
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
371
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
372
  </tr>
@@ -374,7 +374,7 @@ text-align: center;
374
  <tr>
375
  <td><span class="icon1 help" style="float:right">
376
  <span class="tooltip1"><?php _e('Multiple page template is available for coming soon page.');?></span></span></td>
377
- <td><p style="font-size:16px"><b>Multiple Page Templates</b></p></td>
378
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
379
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
380
  </tr>
@@ -382,7 +382,7 @@ text-align: center;
382
  <tr>
383
  <td><span class="icon1 help" style="float:right">
384
  <span class="tooltip1"><?php _e('Add user whitelist who access the site after login.');?></span></span></td>
385
- <td><p style="font-size:16px"><b>Add User Whitelist</b></p></td>
386
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
387
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
388
  </tr>
@@ -390,7 +390,7 @@ text-align: center;
390
  <tr>
391
  <td><span class="icon1 help" style="float:right">
392
  <span class="tooltip1"><?php _e('Add ip access for user.');?></span></span></td>
393
- <td><p style="font-size:16px"><b>Access By Ip</b></p></td>
394
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
395
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
396
  </tr>
@@ -398,7 +398,7 @@ text-align: center;
398
  <tr>
399
  <td><span class="icon1 help" style="float:right">
400
  <span class="tooltip1"><?php _e('page landing mode is available that mean you will able to add coming soon template for single site page .');?></span></span></td>
401
- <td><p style="font-size:16px"><b>Single Page View Access</b></p></td>
402
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
403
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
404
  </tr>
@@ -406,7 +406,7 @@ text-align: center;
406
  <tr>
407
  <td><span class="icon1 help" style="float:right">
408
  <span class="tooltip1"><?php _e('Add fullscreen background slideshow.');?></span></span></td>
409
- <td><p style="font-size:16px"><b>Background Image SlideShow</b></p></td>
410
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
411
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
412
  </tr>
@@ -414,7 +414,7 @@ text-align: center;
414
  <tr>
415
  <td><span class="icon1 help" style="float:right">
416
  <span class="tooltip1"><?php _e('Add youtube video background.');?></span></span></td>
417
- <td><p style="font-size:16px"><b>Youtube Video background</b></p></td>
418
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
419
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
420
  </tr>
@@ -422,7 +422,7 @@ text-align: center;
422
  <tr>
423
  <td><span class="icon1 help" style="float:right">
424
  <span class="tooltip1"><?php _e('Mailchimp Integration for Email Marketing & Data Capture.');?></span></span></td>
425
- <td><p style="font-size:16px"><b>Mailchimp Support</b></p></td>
426
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
427
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
428
  </tr>
@@ -430,28 +430,28 @@ text-align: center;
430
  <tr>
431
  <td><span class="icon1 help" style="float:right">
432
  <span class="tooltip1"><?php _e('Compaign Monitor for Email Marketing & Data Capture.');?></span></span></td>
433
- <td><p style="font-size:16px"><b>Compaign Monitor</b></p></td>
434
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
435
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
436
  </tr>
437
  <tr>
438
  <td><span class="icon1 help" style="float:right">
439
  <span class="tooltip1"><?php _e('Constant Contact for Email Marketing & Data Capture.');?></span></span></td>
440
- <td><p style="font-size:16px"><b>Constant Contact</b></p></td>
441
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
442
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
443
  </tr>
444
  <tr>
445
  <td><span class="icon1 help" style="float:right">
446
  <span class="tooltip1"><?php _e('Madmimi Integration for Email Marketing & Data Capture.');?></span></span></td>
447
- <td><p style="font-size:16px"><b>Madmimi Support</b></p></td>
448
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
449
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
450
  </tr>
451
  <tr>
452
  <td><span class="icon1 help" style="float:right">
453
  <span class="tooltip1"><?php _e('Aweber Integration for Email Marketing & Data Capture.');?></span></span></td>
454
- <td><p style="font-size:16px"><b>Aweber Support</b></p></td>
455
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
456
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
457
  </tr>
@@ -459,7 +459,7 @@ text-align: center;
459
  <tr>
460
  <td><span class="icon1 help" style="float:right">
461
  <span class="tooltip1"><?php _e('feedburner Integration for Email Marketing & Data Capture.');?></span></span></td>
462
- <td><p style="font-size:16px"><b>Feedburner Support</b></p></td>
463
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
464
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
465
  </tr>
@@ -468,7 +468,7 @@ text-align: center;
468
  <tr>
469
  <td><span class="icon1 help" style="float:right">
470
  <span class="tooltip1"><?php _e('Add countdown timer for coming soon page.');?></span></span></td>
471
- <td><p style="font-size:16px"><b>Countdown Timer</b></p></td>
472
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
473
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
474
  </tr>
@@ -478,7 +478,7 @@ text-align: center;
478
  <tr>
479
  <td><span class="icon1 help" style="float:right">
480
  <span class="tooltip1"><?php _e('progress bar enable');?></span></span></td>
481
- <td><p style="font-size:16px"><b>Progress Bar</b></p></td>
482
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
483
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
484
  </tr>
@@ -486,7 +486,7 @@ text-align: center;
486
  <tr>
487
  <td><span class="icon1 help" style="float:right">
488
  <span class="tooltip1"><?php _e('SEO supportive. Add meta title, description and favicon image. ');?></span></span></td>
489
- <td><p style="font-size:16px"><b>Custom Faviceon, Meta Title and Description </b></p></td>
490
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
491
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
492
  </tr>
@@ -494,14 +494,14 @@ text-align: center;
494
  <tr>
495
  <td><span class="icon1 help" style="float:right">
496
  <span class="tooltip1"><?php _e('Get multiple mode of coming soon like Maintanance mode,Landing mode etc.');?></span></span></td>
497
- <td><p style="font-size:16px"><b>Enable Multiple Mode of Coming Soon</b></p></td>
498
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
499
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
500
  </tr>
501
  <tr>
502
  <td><span class="icon1 help" style="float:right">
503
  <span class="tooltip1"><?php _e('Company logo and credit image insertig option.','sis_spa');?></span></span></td>
504
- <td><p style="font-size:16px"><b>Company Logo and Credit Links</b></p></td>
505
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
506
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
507
  </tr>
@@ -513,8 +513,8 @@ text-align: center;
513
  </table>
514
  <br>
515
  <div style="text-align: center;">
516
- <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/" target="_new">Upgrade To Pro Version</a>&nbsp;
517
- <a class="btn btn-success btn-large" href="http://easycomingsoon.com/demos/" target="_new">View Live demo</a>
518
  </div>
519
  <br>
520
 
11
  color: #000;
12
  letter-spacing: -1px;
13
  text-align: center;
14
+ "><?php _e('Coming Soon Pro Features','commingsoon') ?></h3>
15
  <p style="font-size: 22px;
16
  font-style: normal;
17
  font-weight: 300;
18
  color: #707070;
19
+ text-align: center;"><?php printf(__('The premium version allows you to capture Visitor Email address, integrates with various AutoResponders , Comes with 2 different Template and provide loads of Design Customization Options.','commingsoon')) ?> <br><br>
20
+ <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/" target="_new"><?php printf(__('Upgrade To Pro Version','commingsoon')) ?></a>
21
+ <a class="btn btn-success btn-large" href="http://easycomingsoon.com/demos/" target="_new"><?php printf(__('View Live demo','commingsoon')) ?></a>
22
  </p>
23
  </div>
24
 
37
  <img src="<?php echo plugins_url('/images/img/subscriber.png',__FILE__);?>" alt="" style="width:100%">
38
  </div>
39
  <div class="span6" style="width:45%;margin-top: auto;margin-left:5%; font-size:15px;">
40
+ <h3><?php _e('Email Capture Field','commingsoon') ?></h3>
41
+ <p><?php _e('Collect email address of your visitors with an email Capture Field. The Captured Email address are stored in your Wordpress website.','commingsoon') ?></p>
42
  </div>
43
 
44
 
58
  <div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
59
 
60
  <div class="span6" style="width:45%;margin-top: auto;">
61
+ <h3><?php _e('Newsletter Integration','commingsoon') ?></h3>
62
+ <p><?php printf(__('Premium version integrates with popular newsletter services like <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li> Mailchimp</li><li>Aweber</li><li>Madmimi</li><li>Constant Contact</li><li>Campaign Monitor</li><li>FeedBurner</li></ul>','commingsoon')) ?></p>
63
  </div>
64
 
65
  <div class="span6" style="width:45%">
78
  </div>
79
 
80
  <div class="span6" style="width:45%;margin-top: auto;">
81
+ <h3><?php _e('Responsive Design','commingsoon') ?></h3>
82
+ <p><?php _e('Create a Responsive Landing Page Mode. Easy coming soon support Bootstrap Based landing page which display perfectly on mobile and tablet device.','commingsoon') ?></p>
83
  </div>
84
 
85
 
93
 
94
 
95
  <div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
96
+ <h3><?php _e('4 additional Design Templates','commingsoon') ?></h3>
97
+ <p><?php _e('The premium version comes with 4 extra templates. All the templates are completely customizable.','commingsoon') ?></p>
98
  </div>
99
  <div class="span6" style="width:45%">
100
  <img src="<?php echo plugins_url('/images/img/laptop1.png',__FILE__);?>" alt="" style="width:100%">
112
  </div>
113
 
114
  <div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
115
+ <h3><?php _e('Powerful Design Settings','commingsoon') ?></h3>
116
+ <p><?php printf(__('Make your maintenance page look Sexy!!! The premium version comes with loads of design settings like : <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li>Video Back-Grounds</li><li>Background Slideshow</li><li>Google Font integration</li><li>Text color Customization</li><li>Custom Css</li></ul>','commingsoon')) ?></p>
117
  </div>
118
 
119
 
124
  <div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 70px;padding-bottom: 70px;">
125
 
126
  <div class="span6" style="width:45%;margin-top: auto;">
127
+ <h3><?php _e('Landing Page Mode','commingsoon') ?></h3>
128
+ <p><?php _e('Design and Publish a Landing Page on your Wordpress Website. The premium version enables you add a landing page to your existing wordpress website. ','commingsoon') ?></p>
129
  </div>
130
 
131
  <div class="span6" style="width:45%">
143
  <img src="<?php echo plugins_url('/images/img/users_lock.png',__FILE__);?>" alt="" style="width:70%;margin-left:5%">
144
  </div>
145
  <div class="span6" style="width:45%;margin-top:auto;margin-left:5%">
146
+ <h3><?php _e('Access Controls','commingsoon') ?></h3>
147
+ <p><?php _e('Powerful Access Control feature lets you decide which users can view the Live Website. Whitelist IP address and User Roles. Assign Coming Soon Page to a particualr Wordpress Page.','commingsoon') ?></p>
148
  </div>
149
 
150
 
161
 
162
 
163
  <div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
164
+ <h3><?php _e('Social Media Icons Support','commingsoon') ?></h3>
165
+ <p><?php _e('Quickly add links to your social profiles. The plugin supports adding links to Facebook, Twitter, Google+, Pinterest, Youtube, Tumblr, Viemo etc..','commingsoon') ?></p>
166
  </div>
167
  <div class="span6" style="width:45%">
168
  <img src="<?php echo plugins_url('/images/img/social.jpg',__FILE__);?>" alt="" style="width:100%">
177
  <img src="<?php echo plugins_url('/images/img/browsericons.png',__FILE__);?>" alt="" style="width:100%">
178
  </div>
179
  <div class="span6" style="width:45%;margin-top: auto;margin-left:5%">
180
+ <h3><?php _e('All Browser Support','commingsoon') ?></h3>
181
+ <p><?php printf(__('Plugin Tested with all popular browsers like <ul style="list-style-type: disc;margin-left:5%;font-size:15px"><li> IE 9 +</li><li> Google Chrome</li><li> Mozilla Firefox </li><li> Apple Safari</li></ul>','commingsoon')) ?></p>
182
  </div>
183
 
184
 
193
 
194
 
195
  <div class="span6" style="width:45%;margin-top: auto;">
196
+ <h3><?php _e('Translation Ready','commingsoon') ?></h3>
197
+ <p><?php _e('Quickly translate the plugin in the language of your choice.','commingsoon') ?></p>
198
  </div>
199
 
200
  <div class="span6" style="width:45%">
215
  color: #000;
216
  letter-spacing: -1px;
217
  text-align: center;
218
+ "><?php _e('Upgarde to Coming Soon Pro Here','commingsoon') ?></h3>
219
  <p style="font-size: 22px;
220
  font-style: normal;
221
  font-weight: 300;
222
  color: #707070;
223
  text-align: center;">
224
+ <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/" target="_new"><?php _e('Upgrade To Pro Version','commingsoon') ?></a>&nbsp;
225
+ <a class="btn btn-success btn-large" href="http://easycomingsoon.com/demos/" target="_new"><?php _e('View Live demo','commingsoon') ?></a>
226
  </p>
227
  </div>
228
 
238
  color: #000;
239
  letter-spacing: -1px;
240
  text-align: center;
241
+ "><?php _e('Comparison Table of Free And Pro Version','commingsoon') ?></h3>
242
  <br>
243
  <table class="table table-hover table-bordered" style="font-size:15px;margin-bottom:0px;" >
244
  <thead class="alert alert-info">
245
  <tr>
246
  <th></th>
247
+ <th style="text-align: center; font-size: 16px;"><?php _e('Features','commingsoon') ?></th>
248
+ <th style="text-align: center; font-size: 16px;"><?php _e('Free','commingsoon') ?></th>
249
+ <th style="text-align: center; font-size: 16px;"><?php _e('Premium','commingsoon') ?></th>
250
  </tr>
251
  </thead>
252
  <tbody>
255
  <tr style="height:6px;">
256
  <td><span class="icon1 help" style="float:right">
257
  <span class="tooltip1"><?php _e('Plugin is work with any wordpress theme easily.');?></span></span></td>
258
+ <td><p style="font-size:16px"><strong><?php _e('Works With Any Wordpress Theme','commingsoon') ?></strong></p></td>
259
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
260
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
261
  </tr>
263
  <tr>
264
  <td><span class="icon1 help" style="float:right">
265
  <span class="tooltip1"><?php _e('Plugin template is compatible with all devices. It have completely resposive feature.');?></span></span></td>
266
+ <td><p style="font-size:16px"><b><?php _e('Responsive Design','commingsoon') ?></b></p></td>
267
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
268
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
269
  </tr>
271
  <tr>
272
  <td><span class="icon1 help" style="float:right">
273
  <span class="tooltip1"><?php _e('Defalut template is availale in both pro and free .');?></span></span></td>
274
+ <td><p style="font-size:16px"><b><?php _e('Free Coming Soon Page Template','commingsoon') ?></b></p></td>
275
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
276
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
277
  </tr>
278
  <tr>
279
  <td><span class="icon1 help" style="float:right">
280
  <span class="tooltip1"><?php _e('Easily customizable admin panel and very user friendly.');?></span></span></td>
281
+ <td><p style="font-size:16px"><b> <?php _e('User-friendly Setup','commingsoon') ?></b> </p></td>
282
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
283
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
284
  </tr>
286
  <tr>
287
  <td><span class="icon1 help" style="float:right">
288
  <span class="tooltip1"><?php _e('Default fonts are availabel in both.');?></span></span></td>
289
+ <td><p style="font-size:16px"><b><?php _e('Default fonts','commingsoon') ?></b> </p></td>
290
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
291
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
292
  </tr>
295
  <tr>
296
  <td><span class="icon1 help" style="float:right">
297
  <span class="tooltip1"><?php _e('Buddy Press Supportive.','sis_spa');?></span></span></td>
298
+ <td><p style="font-size:16px"><b><?php _e('BuddyPress Support','commingsoon') ?></b></p></td>
299
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
300
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
301
  </tr>
304
  <tr>
305
  <td><span class="icon1 help" style="float:right">
306
  <span class="tooltip1"><?php _e('Visible only non loggeed user, if you are not login then you are not able to view regular site.');?></span></span></td>
307
+ <td><p style="font-size:16px"><b><?php _e('Visible only non logged user','commingsoon') ?></b></p></td>
308
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
309
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
310
  </tr>
313
  <tr>
314
  <td><span class="icon1 help" style="float:right">
315
  <span class="tooltip1"><?php _e('Easily collect user notify mail.');?></span></span></td>
316
+ <td><p style="font-size:16px"><b><?php _e('Easily collect visitor emails','commingsoon') ?></b> </p></td>
317
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
318
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
319
  </tr>
325
  <tr>
326
  <td><span class="icon1 help" style="float:right">
327
  <span class="tooltip1"><?php _e('Google Analytics supportive.');?></span></span></td>
328
+ <td><p style="font-size:16px"><b><?php _e('Google Analytics Support','commingsoon') ?></b></p></td>
329
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
330
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
331
  </tr>
333
  <tr>
334
  <td><span class="icon1 help" style="float:right">
335
  <span class="tooltip1"><?php _e('Get social support.','sis_spa');?></span></span></td>
336
+ <td><p style="font-size:16px"><b><?php _e('Social Follow Icons','commingsoon') ?></b></p></td>
337
+ <td style="text-align: center;"><p><?php _e('Facebook, Twitter, Google+','commingsoon') ?></p></td>
338
+ <td style="text-align: center;"><?php _e('Twitter, Facebook, Linkedin, Google+, Youtube, Email, Pinterest, Yahoo etc.','commingsoon') ?></td>
339
  </tr>
340
 
341
  <tr>
342
  <td><span class="icon1 help" style="float:right">
343
  <span class="tooltip1"><?php _e('Google fonts api are integreted with coming soon.');?></span></span></td>
344
+ <td><p style="font-size:16px"><b><?php _e('Google Fonts Support','commingsoon') ?></b></p></td>
345
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
346
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
347
  </tr>
349
  <tr>
350
  <td><span class="icon1 help" style="float:right">
351
  <span class="tooltip1"><?php _e('Get our fast and friendly support.');?></span></span></td>
352
+ <td><p style="font-size:16px"><b><?php _e('Multisite Support','commingsoon') ?></b></p></td>
353
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
354
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
355
  </tr>
358
  <tr>
359
  <td><span class="icon1 help" style="float:right">
360
  <span class="tooltip1"><?php _e('laguage Translation is available in premium.');?></span></span></td>
361
+ <td><p style="font-size:16px"><b><?php _e('Language Translation Support','commingsoon') ?></b></p></td>
362
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
363
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
364
  </tr>
366
  <tr>
367
  <td><span class="icon1 help" style="float:right">
368
  <span class="tooltip1"><?php _e('limit access with clients who want to view regular sites.');?></span></span></td>
369
+ <td><p style="font-size:16px"><b><?php _e('Limit Access with Client View','commingsoon') ?></b></p></td>
370
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
371
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
372
  </tr>
374
  <tr>
375
  <td><span class="icon1 help" style="float:right">
376
  <span class="tooltip1"><?php _e('Multiple page template is available for coming soon page.');?></span></span></td>
377
+ <td><p style="font-size:16px"><b><?php _e('Multiple Page Templates','commingsoon') ?></b></p></td>
378
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
379
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
380
  </tr>
382
  <tr>
383
  <td><span class="icon1 help" style="float:right">
384
  <span class="tooltip1"><?php _e('Add user whitelist who access the site after login.');?></span></span></td>
385
+ <td><p style="font-size:16px"><b><?php _e('Add User Whitelist','commingsoon') ?></b></p></td>
386
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
387
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
388
  </tr>
390
  <tr>
391
  <td><span class="icon1 help" style="float:right">
392
  <span class="tooltip1"><?php _e('Add ip access for user.');?></span></span></td>
393
+ <td><p style="font-size:16px"><b><?php _e('Access By Ip','commingsoon') ?></b></p></td>
394
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
395
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
396
  </tr>
398
  <tr>
399
  <td><span class="icon1 help" style="float:right">
400
  <span class="tooltip1"><?php _e('page landing mode is available that mean you will able to add coming soon template for single site page .');?></span></span></td>
401
+ <td><p style="font-size:16px"><b><?php _e('Single Page View Access','commingsoon') ?></b></p></td>
402
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
403
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
404
  </tr>
406
  <tr>
407
  <td><span class="icon1 help" style="float:right">
408
  <span class="tooltip1"><?php _e('Add fullscreen background slideshow.');?></span></span></td>
409
+ <td><p style="font-size:16px"><b><?php _e('Background Image SlideShow','commingsoon') ?></b></p></td>
410
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
411
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
412
  </tr>
414
  <tr>
415
  <td><span class="icon1 help" style="float:right">
416
  <span class="tooltip1"><?php _e('Add youtube video background.');?></span></span></td>
417
+ <td><p style="font-size:16px"><b><?php _e('Youtube Video background','commingsoon') ?></b></p></td>
418
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
419
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
420
  </tr>
422
  <tr>
423
  <td><span class="icon1 help" style="float:right">
424
  <span class="tooltip1"><?php _e('Mailchimp Integration for Email Marketing & Data Capture.');?></span></span></td>
425
+ <td><p style="font-size:16px"><b><?php _e('Mailchimp Support','commingsoon') ?></b></p></td>
426
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
427
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
428
  </tr>
430
  <tr>
431
  <td><span class="icon1 help" style="float:right">
432
  <span class="tooltip1"><?php _e('Compaign Monitor for Email Marketing & Data Capture.');?></span></span></td>
433
+ <td><p style="font-size:16px"><b><?php _e('Compaign Monitor','commingsoon') ?></b></p></td>
434
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
435
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
436
  </tr>
437
  <tr>
438
  <td><span class="icon1 help" style="float:right">
439
  <span class="tooltip1"><?php _e('Constant Contact for Email Marketing & Data Capture.');?></span></span></td>
440
+ <td><p style="font-size:16px"><b><?php _e('Constant Contact','commingsoon') ?></b></p></td>
441
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
442
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
443
  </tr>
444
  <tr>
445
  <td><span class="icon1 help" style="float:right">
446
  <span class="tooltip1"><?php _e('Madmimi Integration for Email Marketing & Data Capture.');?></span></span></td>
447
+ <td><p style="font-size:16px"><b><?php _e('Madmimi Support','commingsoon') ?></b></p></td>
448
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
449
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
450
  </tr>
451
  <tr>
452
  <td><span class="icon1 help" style="float:right">
453
  <span class="tooltip1"><?php _e('Aweber Integration for Email Marketing & Data Capture.');?></span></span></td>
454
+ <td><p style="font-size:16px"><b><?php _e('Aweber Support','commingsoon') ?></b></p></td>
455
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
456
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
457
  </tr>
459
  <tr>
460
  <td><span class="icon1 help" style="float:right">
461
  <span class="tooltip1"><?php _e('feedburner Integration for Email Marketing & Data Capture.');?></span></span></td>
462
+ <td><p style="font-size:16px"><b><?php _e('Feedburner Support','commingsoon') ?></b></p></td>
463
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
464
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
465
  </tr>
468
  <tr>
469
  <td><span class="icon1 help" style="float:right">
470
  <span class="tooltip1"><?php _e('Add countdown timer for coming soon page.');?></span></span></td>
471
+ <td><p style="font-size:16px"><b><?php _e('Countdown Timer','commingsoon') ?></b></p></td>
472
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
473
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
474
  </tr>
478
  <tr>
479
  <td><span class="icon1 help" style="float:right">
480
  <span class="tooltip1"><?php _e('progress bar enable');?></span></span></td>
481
+ <td><p style="font-size:16px"><b><?php _e('Progress Bar','commingsoon') ?></b></p></td>
482
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
483
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
484
  </tr>
486
  <tr>
487
  <td><span class="icon1 help" style="float:right">
488
  <span class="tooltip1"><?php _e('SEO supportive. Add meta title, description and favicon image. ');?></span></span></td>
489
+ <td><p style="font-size:16px"><b><?php _e('Custom Faviceon, Meta Title and Description','commingsoon') ?> </b></p></td>
490
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
491
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
492
  </tr>
494
  <tr>
495
  <td><span class="icon1 help" style="float:right">
496
  <span class="tooltip1"><?php _e('Get multiple mode of coming soon like Maintanance mode,Landing mode etc.');?></span></span></td>
497
+ <td><p style="font-size:16px"><b><?php _e('Enable Multiple Mode of Coming Soon','commingsoon') ?></b></p></td>
498
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
499
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
500
  </tr>
501
  <tr>
502
  <td><span class="icon1 help" style="float:right">
503
  <span class="tooltip1"><?php _e('Company logo and credit image insertig option.','sis_spa');?></span></span></td>
504
+ <td><p style="font-size:16px"><b><?php _e('Company Logo and Credit Links','commingsoon') ?></b></p></td>
505
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/cross.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
506
  <td style="text-align: center;"><p><img src="<?php echo plugins_url('/images/icon_check.png',__FILE__); ?>" style="vertical-align: middle;"/></p></td>
507
  </tr>
513
  </table>
514
  <br>
515
  <div style="text-align: center;">
516
+ <a class="btn btn-danger btn-large" href="http://easycomingsoon.com/" target="_new"><?php _e('Upgrade To Pro Version','commingsoon') ?></a>&nbsp;
517
+ <a class="btn btn-success btn-large" href="http://easycomingsoon.com/demos/" target="_new"><?php _e('View Live demo','commingsoon') ?></a>
518
  </div>
519
  <br>
520
 
theme_options/pages/template_page_settings.php CHANGED
@@ -108,8 +108,8 @@ $general_default_settings = array(
108
  <div class="template-actions">
109
 
110
 
 
111
 
112
- <a class="btn btn-danger" href="http://easycomingsoon.com/" target= "_new" style="vertical-align:middle;">Available In Pro</a>
113
 
114
 
115
  </div>
@@ -130,8 +130,8 @@ $general_default_settings = array(
130
  <div class="template-actions">
131
 
132
 
 
133
 
134
- <a class="btn btn-danger" href="http://easycomingsoon.com/" target= "_new" style="vertical-align:middle;">Available In Pro</a>
135
 
136
 
137
 
@@ -152,8 +152,8 @@ $general_default_settings = array(
152
  <div class="template-actions">
153
 
154
 
 
155
 
156
- <a class="btn btn-danger" href="http://easycomingsoon.com/" target= "_new" style="vertical-align:middle;">Available In Pro</a>
157
 
158
 
159
 
@@ -174,8 +174,8 @@ $general_default_settings = array(
174
  <div class="template-actions">
175
 
176
 
 
177
 
178
- <a class="btn btn-danger" href="http://easycomingsoon.com/" target= "_new" style="vertical-align:middle;">Available In Pro</a>
179
 
180
 
181
 
108
  <div class="template-actions">
109
 
110
 
111
+ <a class="btn btn-danger" href="http://easycomingsoon.com/" target= "_new" style="vertical-align:middle;"><?php printf(__('Available In Pro','commingsoon')) ?></a>
112
 
 
113
 
114
 
115
  </div>
130
  <div class="template-actions">
131
 
132
 
133
+ <a class="btn btn-danger" href="http://easycomingsoon.com/" target= "_new" style="vertical-align:middle;"><?php printf(__('Available In Pro','commingsoon')) ?></a>
134
 
 
135
 
136
 
137
 
152
  <div class="template-actions">
153
 
154
 
155
+ <a class="btn btn-danger" href="http://easycomingsoon.com/" target= "_new" style="vertical-align:middle;"><?php printf(__('Available In Pro','commingsoon')) ?></a>
156
 
 
157
 
158
 
159
 
174
  <div class="template-actions">
175
 
176
 
177
+ <a class="btn btn-danger" href="http://easycomingsoon.com/" target= "_new" style="vertical-align:middle;"><?php printf(__('Available In Pro','commingsoon')) ?></a>
178
 
 
179
 
180
 
181
 
theme_options/webriti_option_pannel.php CHANGED
@@ -180,7 +180,7 @@
180
  <table style="width:100%;"><tr>
181
  <td><h2><?php _e('Show Some Love','commingsoon');?></h2>
182
  <br>
183
- <p>Like this plugin? Show your support by:</p>
184
  </td>
185
  <td style="width:30%;">
186
  </td>
@@ -191,9 +191,9 @@
191
  </div>
192
 
193
  <div class="section">
194
- <a class="button button-primary button-large" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/easy-coming-soon">Rate It</a>
195
- <a class="button button-primary button-large" target="_blank" href="http://twitter.com/share?url=https%3A%2F%2Fwordpress.org%2Fplugins%2Feasy-coming-soon%2F&amp;text=Check out this awesome %23WordPress Plugin I'm using, Easy Coming Soon by @webriti"><i class="fa fa-twitter"></i>Tweet It</a>
196
- <a class="button button-primary button-large" target="_blank" href="http://member.easycomingsoon.com/pricing/">Buy Pro</a>
197
  </div>
198
  </form>
199
  </div>
@@ -219,27 +219,27 @@
219
  <table style="width:100%;"><tr>
220
  <td><h2><?php _e('Fully Functional Coming Soon Page in 30 minutes','commingsoon');?></h2>
221
  <br>
222
- <p>In this <a target = "_blank" href = "https://www.youtube.com/watch?v=jwXOO9DDSpY"> Video Tutorial </a> , I will demonstrate how you can create a fully functional Coming Soon Page in as little as 30 minutes.</p>
223
- <p> Here is what we the Landing page will look like.
224
  <div class="span6" style="width:100%">
225
  <img style="height:50%; width:50%" src="<?php echo plugins_url('/pages/images/img/video-thumb.jpg',__FILE__);?>" alt="" style="width:100%">
226
  </div>
227
  <br></br>
228
 
229
- <b>This video tutorial is for the premium version of the plugin. As you can see, it has:</b>
230
  <br></br>
231
 
232
- <ul>1. Company Logo</ul>
233
- <ul>2. An Image Slide Show BackGround</ul>
234
- <ul>3. Email Capture Box, with option to Capture First Name and Last Name</ul>
235
- <ul>4. CountDown Timer</ul>
236
- <ul>5. A Progress Bar</ul>
237
- <ul>6. Social Media Icons</ul>
238
- <ul>7. The Video also contains a brief overview of the features like Multiple Templates, Ip based access, Newsletter Integration etc. </ul>
239
 
240
 
241
- </p>The premium version is priced at 29 USD and lets you use the plugin on unlimited website. </p>
242
- <p>Here is the <a target = "_blank" href = "https://youtu.be/JEbKUdvbzys">link to the Video.</a> Enjoy!!!</p>
243
  </td>
244
  <td style="width:30%;">
245
  </td>
@@ -313,7 +313,7 @@ $notification_default_settings = array(
313
 
314
  'mailto'=>'no',
315
  'email_address'=>'',
316
- 'message'=>'Thanks for subscribing this page',
317
  'sb_btn'=>'',
318
  'placeholder_text'=>''
319
 
180
  <table style="width:100%;"><tr>
181
  <td><h2><?php _e('Show Some Love','commingsoon');?></h2>
182
  <br>
183
+ <p><?php _e('Like this plugin? Show your support by:','commingsoon') ?></p>
184
  </td>
185
  <td style="width:30%;">
186
  </td>
191
  </div>
192
 
193
  <div class="section">
194
+ <a class="button button-primary button-large" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/easy-coming-soon"><?php _e('Rate It','commingsoon') ?></a>
195
+ <a class="button button-primary button-large" target="_blank" href="http://twitter.com/share?url=https%3A%2F%2Fwordpress.org%2Fplugins%2Feasy-coming-soon%2F&amp;text=Check out this awesome %23WordPress Plugin I'm using, Easy Coming Soon by @webriti"><i class="fa fa-twitter"></i><?php _e('Tweet It','commingsoon') ?></a>
196
+ <a class="button button-primary button-large" target="_blank" href="http://member.easycomingsoon.com/pricing/"><?php _e('Buy Pro','commingsoon') ?></a>
197
  </div>
198
  </form>
199
  </div>
219
  <table style="width:100%;"><tr>
220
  <td><h2><?php _e('Fully Functional Coming Soon Page in 30 minutes','commingsoon');?></h2>
221
  <br>
222
+ <p><?php _e('In this','commingsoon') ?> <a target = "_blank" href = "https://www.youtube.com/watch?v=jwXOO9DDSpY"><?php _e(' Video Tutorial','commingsoon') ?> </a><?php printf(__(' , I will demonstrate how you can create a fully functional Coming Soon Page in as little as 30 minutes.','commingsoon')); ?></p>
223
+ <p> <?php _e('Here is what we the Landing page will look like.','commingsoon') ?>
224
  <div class="span6" style="width:100%">
225
  <img style="height:50%; width:50%" src="<?php echo plugins_url('/pages/images/img/video-thumb.jpg',__FILE__);?>" alt="" style="width:100%">
226
  </div>
227
  <br></br>
228
 
229
+ <b><?php _e('This video tutorial is for the premium version of the plugin. As you can see, it has:','commingsoon') ?></b>
230
  <br></br>
231
 
232
+ <ul><?php _e('1. Company Logo','commingsoon') ?></ul>
233
+ <ul><?php _e('2. An Image Slide Show BackGround','commingsoon') ?></ul>
234
+ <ul><?php _e('3. Email Capture Box, with option to Capture First Name and Last Name','commingsoon') ?></ul>
235
+ <ul><?php _e('4. CountDown Timer','commingsoon') ?></ul>
236
+ <ul><?php _e('5. A Progress Bar','commingsoon') ?></ul>
237
+ <ul><?php _e('6. Social Media Icons','commingsoon') ?></ul>
238
+ <ul><?php _e('7. The Video also contains a brief overview of the features like Multiple Templates, Ip based access, Newsletter Integration etc. ','commingsoon') ?></ul>
239
 
240
 
241
+ </p><?php _e('The premium version is priced at 29 USD and lets you use the plugin on unlimited website.','commingsoon') ?> </p>
242
+ <p><?php printf(__('Here is the ','commingsoon')) ?><a target = "_blank" href = "https://youtu.be/JEbKUdvbzys"><?php _e('link to the Video.','commingsoon') ?></a> <?php _e('Enjoy!!!','commingsoon') ?></p>
243
  </td>
244
  <td style="width:30%;">
245
  </td>
313
 
314
  'mailto'=>'no',
315
  'email_address'=>'',
316
+ 'message'=>__('Thanks for subscribing this page','commingsoon'),
317
  'sb_btn'=>'',
318
  'placeholder_text'=>''
319