Seo Optimized Images - Version 1.6.5

Version Description

  1. Language translation checking.
Download this release

Release Info

Developer priyanshu.mittal
Plugin Icon 128x128 Seo Optimized Images
Version 1.6.5
Comparing to
See all releases

Code changes from version 1.6.4 to 1.6.5

lang/{seoimages.pot → seo-optimized-images.pot} RENAMED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: seoimages\n"
4
- "POT-Creation-Date: 2016-11-30 11:48+0530\n"
5
- "PO-Revision-Date: 2016-11-30 11:48+0530\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
@@ -268,6 +268,6 @@ msgstr ""
268
  msgid "Upgrade To Pro Version"
269
  msgstr ""
270
 
271
- #: D:\xampp\htdocs\translate\wp-content\plugins\seo_images_lite/seo-optimized-images.php:24
272
  msgid "Seo Optimized Images"
273
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: seo-optimized-images\n"
4
+ "POT-Creation-Date: 2016-12-01 12:39+0530\n"
5
+ "PO-Revision-Date: 2016-12-01 12:39+0530\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
268
  msgid "Upgrade To Pro Version"
269
  msgstr ""
270
 
271
+ #: D:\xampp\htdocs\translate\wp-content\plugins\seo_images_lite/seo-optimized-images.php:25
272
  msgid "Seo Optimized Images"
273
  msgstr ""
readme.txt CHANGED
@@ -50,6 +50,8 @@ In case you face any problem, contact us via the [Forums](https://wordpress.org/
50
 
51
 
52
  == Changelog ==
 
 
53
  = 1.6.4 =
54
  1. Language translation feature working properly.
55
  = 1.6.3 =
50
 
51
 
52
  == Changelog ==
53
+ = 1.6.5 =
54
+ 1. Language translation checking.
55
  = 1.6.4 =
56
  1. Language translation feature working properly.
57
  = 1.6.3 =
seo-optimized-images-settings.php CHANGED
@@ -35,12 +35,12 @@ if(isset($_POST['submit_general_settings_tab'])){
35
  ?>
36
 
37
  <div class="wrap settings-wrap" id="page-settings">
38
- <h2><?php _e('Settings','seoimages') ?></h2>
39
  <div id="option-tree-header-wrap">
40
  <ul id="option-tree-header">
41
  <li id=""><a href="" target="_blank"></a>
42
  </li>
43
- <li id="option-tree-version"><span><?php _e('SEO Optimized Images','seoimages') ?></span>
44
  </li>
45
  </ul>
46
  </div>
@@ -50,13 +50,13 @@ if(isset($_POST['submit_general_settings_tab'])){
50
 
51
  <!-- Tabs Begin-->
52
  <ul >
53
- <li id="tab_create_setting"><a href="#section_general"><?php _e('General Settings','seoimages') ?></a>
54
  </li>
55
- <li id="tab_faq" ><a href="#section_faq"><?php _e('FAQ','seoimages') ?></a>
56
  </li>
57
- <li id="tab_support" ><a href="#section_support"><?php _e('Support','seoimages') ?></a>
58
  </li>
59
- <li id="tab_other" ><a href="#section_other"><?php _e('Upgrade to Pro','seoimages') ?></a>
60
  </li>
61
  </ul>
62
  <!-- Tabs End-->
@@ -74,7 +74,7 @@ if(isset($_POST['submit_general_settings_tab'])){
74
  <div class = "format-setting-inner">
75
  <form method="post" action="#section_general">
76
  <div class="format-setting-label">
77
- <h3 class="label"><?php _e('General Settings','seoimages') ?></h3>
78
  </div>
79
 
80
  <table class="form-table table_custom">
@@ -82,93 +82,93 @@ if(isset($_POST['submit_general_settings_tab'])){
82
 
83
 
84
  <tr valign="top">
85
- <th scope="row"><?php _e('Alt Attribute Value','seoimages');?></th>
86
  <td><input type="text" name="soi_alt_value" value="<?php echo esc_attr( $soi_options_array['soi_alt_value'] ); ?>" />
87
- <p class=""><?php _e('The Alt attributes will be dynamically replaced by the above value.', 'seoimages') ?></p>
88
  <p class="">
89
- %name - <?php _e('It will insert Image Name.','seoimages') ?><br> %title- <?php _e('It will insert Post Title.','seoimages') ?><br>
90
- %category - <?php _e('It will insert Post Categories.','seoimages') ?>
91
  </p>
92
  </td>
93
  </tr>
94
 
95
  <tr valign="top">
96
- <th scope="row"><?php _e('Override Existing Alt Tag','seoimages');?></th>
97
  <td><select id="soi_override_alt_value" name="soi_override_alt_value">
98
  <?php $override_setting = array(
99
  '1'=>'YES',
100
  '0'=>'NO'); ?>
101
  <?php foreach($override_setting as $key => $value) { ?>
102
  <option value="<?php echo $key; ?>" <?php if ($soi_options_array['soi_override_alt_value']==$key) { echo 'selected="selected"'; } ?> >
103
- <?php _e($value,'seoimages') ?> </option>
104
  <?php } ?>
105
  </select>
106
- <p class=""><?php _e('Do you want to Over Ride existing alt tags?','seoimages') ?></p>
107
  </td>
108
  </tr>
109
 
110
 
111
 
112
  <tr valign="top">
113
- <th scope="row"><?php _e('Title Attribute Value','seoimages');?></th>
114
  <td><input type="text" name="soi_title_value" value="<?php echo esc_attr( $soi_options_array['soi_title_value'] ); ?>" />
115
- <p class=""><?php _e('The Title attribute will be dynamically replaced by the above value.', 'seoimages') ?></p>
116
 
117
  </td>
118
  </tr>
119
 
120
  <tr valign="top">
121
- <th scope="row"><?php _e('Override Existing Title Tag','seoimages');?></th>
122
  <td><select id="soi_override_title_value" name="soi_override_title_value">
123
  <?php $override_setting = array(
124
  '1'=>'YES',
125
  '0'=>'NO'); ?>
126
  <?php foreach($override_setting as $key => $value) { ?>
127
  <option value="<?php echo $key; ?>" <?php if ($soi_options_array['soi_override_title_value']==$key) { echo 'selected="selected"'; } ?> >
128
- <?php _e($value,'seoimages') ?> </option>
129
  <?php } ?>
130
  </select>
131
- <p class=""><?php _e('Do you want to Over Ride existing title tags?','seoimages') ?></p>
132
  </td>
133
  </tr>
134
 
135
  <tr valign="top">
136
- <th scope="row"><?php _e('Override alt and title attributes of feature / thumbnail images.','seoimages');?></th>
137
  <td><select disabled>
138
  <?php $override_setting = array(
139
  '1'=>'YES',
140
  '0'=>'NO'); ?>
141
  <?php foreach($override_setting as $key => $value) { ?>
142
  <option value="<?php echo $key; ?>" <?php if (isset($soi_options_array['soi_override_thumbnail_images'])==$key) { echo 'selected="selected"'; } ?> >
143
- <?php _e($value,'seoimages') ?> </option>
144
  <?php } ?>
145
  </select>
146
- <p class=""><?php _e('Do you want to optimize post / page thumbnail images or want to make seo friendly images?','seoimages') ?> &nbsp;&nbsp;<a class="prolinkbtn"><?php _e('Available In Pro','seoimages') ?></a></p>
147
  </td>
148
  </tr>
149
 
150
 
151
 
152
  <tr valign="top">
153
- <th scope="row"><?php _e('Override alt and title tags of woocommerce products images.','seoimages');?></th>
154
  <td><select disabled>
155
  <?php $override_setting = array(
156
  '1'=>'YES',
157
  '0'=>'NO'); ?>
158
  <?php foreach($override_setting as $key => $value) { ?>
159
  <option value="<?php echo $key; ?>" <?php if (isset($soi_options_array['soi_override_woo_thumbnail_images'])==$key) { echo 'selected="selected"'; } ?> >
160
- <?php _e($value,'seoimages') ?> </option>
161
  <?php } ?>
162
  </select>
163
- <p class=""><?php _e('Do you want to optimize woocommerce images or want to make search engine friendly?','seoimages') ?> &nbsp;&nbsp;<a class="prolinkbtn" ><?php _e('Available In Pro','seoimages') ?></a></p>
164
  </td>
165
  </tr>
166
 
167
  <tr valign="top">
168
- <th scope="row"><?php _e('Enable yoast pirmary category','seoimages');?></th>
169
  <td>
170
  <input type="checkbox" id="soi_override_yost_primary_cat" name="soi_override_yost_primary_cat" value="1" <?php if( isset($soi_options_array['soi_override_yost_primary_cat']) == true ) echo "checked"; ?> disabled>
171
- <p class=""><?php _e('Only Show Primary Category created by Yoast SEO Plugin.', 'seoimages') ?>&nbsp;&nbsp;<a class="prolinkbtn" ><?php _e('Available In Pro','seoimages') ?></a></p>
172
  </td>
173
  </tr>
174
 
@@ -197,29 +197,29 @@ if(isset($_POST['submit_general_settings_tab'])){
197
  <div class="format-settings">
198
  <div class="format-setting-wrap">
199
  <div class="format-setting-label">
200
- <h3 class="label"><?php _e('How Does it Work?','seoimages') ?> </h3>
201
  </div>
202
  </div>
203
  </div>
204
 
205
- <p><span class="description"><?php _e('1. The plugin dynamically replaces the alt tags with the pattern specified by you. It makes no changes to the database.','seoimages') ?> </span></p>
206
- <p><span class="description"><?php _e('2. Since there are no changes to the database, one can have different alt tags for same images on different pages / posts.','seoimages') ?></span></p>
207
- <p><span class="description">3. %name - <?php _e('It will insert Image Name.','seoimages') ?></span></p>
208
- <p><span class="description">4. %title- <?php _e('It will insert Post Title.','seoimages') ?></span></p>
209
- <p><span class="description">5. %category - <?php _e('It will insert Post Categories.','seoimages') ?> </span></p>
210
  </div>
211
 
212
  <div class="inside">
213
  <div class="format-settings">
214
  <div class="format-setting-wrap">
215
  <div class="format-setting-label">
216
- <h3 class="label"> <?php _e('Why Optimize Alt Tags','seoimages') ?> </h3>
217
  </div>
218
  </div>
219
  </div>
220
 
221
- <p><span class="description"><?php _e('1. According to','seoimages') ?> <a target = "_blank" href = "http://googlewebmastercentral.blogspot.in/2007/12/using-alt-attributes-smartly.html"><?php _e('this post','seoimages') ?> </a> <?php _e('on the Google Webmaster Blog, Google tends to focus on the information in the ALT text. Creating a optimized alt tags can bring more traffic from Search Engines','seoimages') ?> </span></p>
222
- <p><span class="description"><?php _e('2. Take note that the plugin does not makes changes to the database. It dynamically replaces the tags at the times of page load.','seoimages') ?></span></p>
223
 
224
  </div>
225
 
@@ -232,13 +232,13 @@ if(isset($_POST['submit_general_settings_tab'])){
232
  <div class="format-settings">
233
  <div class="format-setting-wrap">
234
  <div class="format-setting-label">
235
- <h3 class="label"><?php _e('Support','seoimages') ?> </h3>
236
  </div>
237
  </div>
238
  </div>
239
 
240
- <p><span class="description"><?php _e('1. For any queries contact us via the','seoimages') ?> <a href = "https://wordpress.org/support/plugin/seo-optimized-images" target = "_blank"><?php _e('support forums.','seoimages') ?></a></span></p>
241
- <p><span class="description"><?php _e('2. If you like our plugin and support than kindly share your','seoimages') ?> <a href = "https://wordpress.org/support/view/plugin-reviews/seo-optimized-images" target = "_blank"><?php _e('feedback.','seoimages') ?></a> <?php _e('Your feedback is valuable.','seoimages') ?></span></p>
242
 
243
 
244
  </div>
@@ -249,7 +249,7 @@ if(isset($_POST['submit_general_settings_tab'])){
249
  <div class="format-settings">
250
  <div class="format-setting-wrap">
251
  <div class="format-setting-label">
252
- <h3 class="label"><?php _e('Upgrade to Pro','seoimages') ?> </h3>
253
  </div>
254
  </div>
255
  </div>
@@ -259,20 +259,20 @@ if(isset($_POST['submit_general_settings_tab'])){
259
  <div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 10px;padding-bottom: 70px;">
260
 
261
  <div class="span6" style="width:85%;margin-top: auto;">
262
- <h3><?php _e('Pricing','seoimages') ?></h3>
263
- <p> <?php _e('We have 2 packages','seoimages') ?></p>
264
 
265
- <ul><li class="ui-corner-left"><h3><?php _e('SEO - Business Package','seoimages') ?></h3> <p><?php _e('The package have a support for','seoimages') ?> <b><?php _e('Featured Images, Custom Post Type Image and Custom Rules','seoimages') ?></b><?php _e('.The price of this Package is','seoimages') ?> <b>$59</b>.</p></li>
266
- <li class="ui-corner-left"><h3><?php _e('SEO - Business With WooCommerce Package','seoimages') ?></h3> <p><?php _e('The package have a support for','seoimages') ?> <b><?php _e('WooCommerce Images, Featured Images, Custom Post Type Image and Custom Rules','seoimages') ?></b> <?php _e('. The price of this package is','seoimages') ?> <b>$79</b>.</p>
267
  </li></ul>
268
- <p><?php _e('Support and Updates will be given for 1 year.','seoimages') ?> <br><?php _e('If you need updates and support after one year, then simply renew your subscription. If not, then you may still keep using the plugin.','seoimages') ?></p>
269
 
270
 
271
- <h3><?php _e('How to Purchase.','seoimages') ?></h3>
272
- <p><?php _e('If you are interested then you can buy the plugin','seoimages') ?> <a href="http://webriti.com/seo-optimized-images/" target="_blank"><?php _e('here.','seoimages') ?></a> <?php _e('Once the purchase process gets complete,','seoimages') ?> <a href="http://webriti.com/amember/login/index" target="_blank"><?php _e('login','seoimages') ?></a> <?php _e('to your account and download the package.','seoimages') ?> </p>
273
 
274
- <h3><?php _e('Looking Forward to work with you','seoimages') ?></h3>
275
- <p><?php _e('Thousands of users have enjoyed using our plugin.','seoimages') ?></p>
276
 
277
  </div>
278
 
@@ -288,7 +288,7 @@ if(isset($_POST['submit_general_settings_tab'])){
288
 
289
  <br>
290
  <div style="text-align: center;">
291
- <a class="btn btn-danger btn-large" href="http://webriti.com/seo-optimized-images/" target="_new"><?php _e('Upgrade To Pro Version','seoimages') ?></a>&nbsp;
292
  </div>
293
  <br>
294
 
35
  ?>
36
 
37
  <div class="wrap settings-wrap" id="page-settings">
38
+ <h2><?php _e('Settings','seo-optimized-images') ?></h2>
39
  <div id="option-tree-header-wrap">
40
  <ul id="option-tree-header">
41
  <li id=""><a href="" target="_blank"></a>
42
  </li>
43
+ <li id="option-tree-version"><span><?php _e('SEO Optimized Images','seo-optimized-images') ?></span>
44
  </li>
45
  </ul>
46
  </div>
50
 
51
  <!-- Tabs Begin-->
52
  <ul >
53
+ <li id="tab_create_setting"><a href="#section_general"><?php _e('General Settings','seo-optimized-images') ?></a>
54
  </li>
55
+ <li id="tab_faq" ><a href="#section_faq"><?php _e('FAQ','seo-optimized-images') ?></a>
56
  </li>
57
+ <li id="tab_support" ><a href="#section_support"><?php _e('Support','seo-optimized-images') ?></a>
58
  </li>
59
+ <li id="tab_other" ><a href="#section_other"><?php _e('Upgrade to Pro','seo-optimized-images') ?></a>
60
  </li>
61
  </ul>
62
  <!-- Tabs End-->
74
  <div class = "format-setting-inner">
75
  <form method="post" action="#section_general">
76
  <div class="format-setting-label">
77
+ <h3 class="label"><?php _e('General Settings','seo-optimized-images') ?></h3>
78
  </div>
79
 
80
  <table class="form-table table_custom">
82
 
83
 
84
  <tr valign="top">
85
+ <th scope="row"><?php _e('Alt Attribute Value','seo-optimized-images');?></th>
86
  <td><input type="text" name="soi_alt_value" value="<?php echo esc_attr( $soi_options_array['soi_alt_value'] ); ?>" />
87
+ <p class=""><?php _e('The Alt attributes will be dynamically replaced by the above value.', 'seo-optimized-images') ?></p>
88
  <p class="">
89
+ %name - <?php _e('It will insert Image Name.','seo-optimized-images') ?><br> %title- <?php _e('It will insert Post Title.','seo-optimized-images') ?><br>
90
+ %category - <?php _e('It will insert Post Categories.','seo-optimized-images') ?>
91
  </p>
92
  </td>
93
  </tr>
94
 
95
  <tr valign="top">
96
+ <th scope="row"><?php _e('Override Existing Alt Tag','seo-optimized-images');?></th>
97
  <td><select id="soi_override_alt_value" name="soi_override_alt_value">
98
  <?php $override_setting = array(
99
  '1'=>'YES',
100
  '0'=>'NO'); ?>
101
  <?php foreach($override_setting as $key => $value) { ?>
102
  <option value="<?php echo $key; ?>" <?php if ($soi_options_array['soi_override_alt_value']==$key) { echo 'selected="selected"'; } ?> >
103
+ <?php _e($value,'seo-optimized-images') ?> </option>
104
  <?php } ?>
105
  </select>
106
+ <p class=""><?php _e('Do you want to Over Ride existing alt tags?','seo-optimized-images') ?></p>
107
  </td>
108
  </tr>
109
 
110
 
111
 
112
  <tr valign="top">
113
+ <th scope="row"><?php _e('Title Attribute Value','seo-optimized-images');?></th>
114
  <td><input type="text" name="soi_title_value" value="<?php echo esc_attr( $soi_options_array['soi_title_value'] ); ?>" />
115
+ <p class=""><?php _e('The Title attribute will be dynamically replaced by the above value.', 'seo-optimized-images') ?></p>
116
 
117
  </td>
118
  </tr>
119
 
120
  <tr valign="top">
121
+ <th scope="row"><?php _e('Override Existing Title Tag','seo-optimized-images');?></th>
122
  <td><select id="soi_override_title_value" name="soi_override_title_value">
123
  <?php $override_setting = array(
124
  '1'=>'YES',
125
  '0'=>'NO'); ?>
126
  <?php foreach($override_setting as $key => $value) { ?>
127
  <option value="<?php echo $key; ?>" <?php if ($soi_options_array['soi_override_title_value']==$key) { echo 'selected="selected"'; } ?> >
128
+ <?php _e($value,'seo-optimized-images') ?> </option>
129
  <?php } ?>
130
  </select>
131
+ <p class=""><?php _e('Do you want to Over Ride existing title tags?','seo-optimized-images') ?></p>
132
  </td>
133
  </tr>
134
 
135
  <tr valign="top">
136
+ <th scope="row"><?php _e('Override alt and title attributes of feature / thumbnail images.','seo-optimized-images');?></th>
137
  <td><select disabled>
138
  <?php $override_setting = array(
139
  '1'=>'YES',
140
  '0'=>'NO'); ?>
141
  <?php foreach($override_setting as $key => $value) { ?>
142
  <option value="<?php echo $key; ?>" <?php if (isset($soi_options_array['soi_override_thumbnail_images'])==$key) { echo 'selected="selected"'; } ?> >
143
+ <?php _e($value,'seo-optimized-images') ?> </option>
144
  <?php } ?>
145
  </select>
146
+ <p class=""><?php _e('Do you want to optimize post / page thumbnail images or want to make seo friendly images?','seo-optimized-images') ?> &nbsp;&nbsp;<a class="prolinkbtn"><?php _e('Available In Pro','seo-optimized-images') ?></a></p>
147
  </td>
148
  </tr>
149
 
150
 
151
 
152
  <tr valign="top">
153
+ <th scope="row"><?php _e('Override alt and title tags of woocommerce products images.','seo-optimized-images');?></th>
154
  <td><select disabled>
155
  <?php $override_setting = array(
156
  '1'=>'YES',
157
  '0'=>'NO'); ?>
158
  <?php foreach($override_setting as $key => $value) { ?>
159
  <option value="<?php echo $key; ?>" <?php if (isset($soi_options_array['soi_override_woo_thumbnail_images'])==$key) { echo 'selected="selected"'; } ?> >
160
+ <?php _e($value,'seo-optimized-images') ?> </option>
161
  <?php } ?>
162
  </select>
163
+ <p class=""><?php _e('Do you want to optimize woocommerce images or want to make search engine friendly?','seo-optimized-images') ?> &nbsp;&nbsp;<a class="prolinkbtn" ><?php _e('Available In Pro','seo-optimized-images') ?></a></p>
164
  </td>
165
  </tr>
166
 
167
  <tr valign="top">
168
+ <th scope="row"><?php _e('Enable yoast pirmary category','seo-optimized-images');?></th>
169
  <td>
170
  <input type="checkbox" id="soi_override_yost_primary_cat" name="soi_override_yost_primary_cat" value="1" <?php if( isset($soi_options_array['soi_override_yost_primary_cat']) == true ) echo "checked"; ?> disabled>
171
+ <p class=""><?php _e('Only Show Primary Category created by Yoast SEO Plugin.', 'seo-optimized-images') ?>&nbsp;&nbsp;<a class="prolinkbtn" ><?php _e('Available In Pro','seo-optimized-images') ?></a></p>
172
  </td>
173
  </tr>
174
 
197
  <div class="format-settings">
198
  <div class="format-setting-wrap">
199
  <div class="format-setting-label">
200
+ <h3 class="label"><?php _e('How Does it Work?','seo-optimized-images') ?> </h3>
201
  </div>
202
  </div>
203
  </div>
204
 
205
+ <p><span class="description"><?php _e('1. The plugin dynamically replaces the alt tags with the pattern specified by you. It makes no changes to the database.','seo-optimized-images') ?> </span></p>
206
+ <p><span class="description"><?php _e('2. Since there are no changes to the database, one can have different alt tags for same images on different pages / posts.','seo-optimized-images') ?></span></p>
207
+ <p><span class="description">3. %name - <?php _e('It will insert Image Name.','seo-optimized-images') ?></span></p>
208
+ <p><span class="description">4. %title- <?php _e('It will insert Post Title.','seo-optimized-images') ?></span></p>
209
+ <p><span class="description">5. %category - <?php _e('It will insert Post Categories.','seo-optimized-images') ?> </span></p>
210
  </div>
211
 
212
  <div class="inside">
213
  <div class="format-settings">
214
  <div class="format-setting-wrap">
215
  <div class="format-setting-label">
216
+ <h3 class="label"> <?php _e('Why Optimize Alt Tags','seo-optimized-images') ?> </h3>
217
  </div>
218
  </div>
219
  </div>
220
 
221
+ <p><span class="description"><?php _e('1. According to','seo-optimized-images') ?> <a target = "_blank" href = "http://googlewebmastercentral.blogspot.in/2007/12/using-alt-attributes-smartly.html"><?php _e('this post','seo-optimized-images') ?> </a> <?php _e('on the Google Webmaster Blog, Google tends to focus on the information in the ALT text. Creating a optimized alt tags can bring more traffic from Search Engines','seo-optimized-images') ?> </span></p>
222
+ <p><span class="description"><?php _e('2. Take note that the plugin does not makes changes to the database. It dynamically replaces the tags at the times of page load.','seo-optimized-images') ?></span></p>
223
 
224
  </div>
225
 
232
  <div class="format-settings">
233
  <div class="format-setting-wrap">
234
  <div class="format-setting-label">
235
+ <h3 class="label"><?php _e('Support','seo-optimized-images') ?> </h3>
236
  </div>
237
  </div>
238
  </div>
239
 
240
+ <p><span class="description"><?php _e('1. For any queries contact us via the','seo-optimized-images') ?> <a href = "https://wordpress.org/support/plugin/seo-optimized-images" target = "_blank"><?php _e('support forums.','seo-optimized-images') ?></a></span></p>
241
+ <p><span class="description"><?php _e('2. If you like our plugin and support than kindly share your','seo-optimized-images') ?> <a href = "https://wordpress.org/support/view/plugin-reviews/seo-optimized-images" target = "_blank"><?php _e('feedback.','seo-optimized-images') ?></a> <?php _e('Your feedback is valuable.','seo-optimized-images') ?></span></p>
242
 
243
 
244
  </div>
249
  <div class="format-settings">
250
  <div class="format-setting-wrap">
251
  <div class="format-setting-label">
252
+ <h3 class="label"><?php _e('Upgrade to Pro','seo-optimized-images') ?> </h3>
253
  </div>
254
  </div>
255
  </div>
259
  <div class="row" style="margin-left:10px;background: #f7f7f7;padding-top: 10px;padding-bottom: 70px;">
260
 
261
  <div class="span6" style="width:85%;margin-top: auto;">
262
+ <h3><?php _e('Pricing','seo-optimized-images') ?></h3>
263
+ <p> <?php _e('We have 2 packages','seo-optimized-images') ?></p>
264
 
265
+ <ul><li class="ui-corner-left"><h3><?php _e('SEO - Business Package','seo-optimized-images') ?></h3> <p><?php _e('The package have a support for','seo-optimized-images') ?> <b><?php _e('Featured Images, Custom Post Type Image and Custom Rules','seo-optimized-images') ?></b><?php _e('.The price of this Package is','seo-optimized-images') ?> <b>$59</b>.</p></li>
266
+ <li class="ui-corner-left"><h3><?php _e('SEO - Business With WooCommerce Package','seo-optimized-images') ?></h3> <p><?php _e('The package have a support for','seo-optimized-images') ?> <b><?php _e('WooCommerce Images, Featured Images, Custom Post Type Image and Custom Rules','seo-optimized-images') ?></b> <?php _e('. The price of this package is','seo-optimized-images') ?> <b>$79</b>.</p>
267
  </li></ul>
268
+ <p><?php _e('Support and Updates will be given for 1 year.','seo-optimized-images') ?> <br><?php _e('If you need updates and support after one year, then simply renew your subscription. If not, then you may still keep using the plugin.','seo-optimized-images') ?></p>
269
 
270
 
271
+ <h3><?php _e('How to Purchase.','seo-optimized-images') ?></h3>
272
+ <p><?php _e('If you are interested then you can buy the plugin','seo-optimized-images') ?> <a href="http://webriti.com/seo-optimized-images/" target="_blank"><?php _e('here.','seo-optimized-images') ?></a> <?php _e('Once the purchase process gets complete,','seo-optimized-images') ?> <a href="http://webriti.com/amember/login/index" target="_blank"><?php _e('login','seo-optimized-images') ?></a> <?php _e('to your account and download the package.','seo-optimized-images') ?> </p>
273
 
274
+ <h3><?php _e('Looking Forward to work with you','seo-optimized-images') ?></h3>
275
+ <p><?php _e('Thousands of users have enjoyed using our plugin.','seo-optimized-images') ?></p>
276
 
277
  </div>
278
 
288
 
289
  <br>
290
  <div style="text-align: center;">
291
+ <a class="btn btn-danger btn-large" href="http://webriti.com/seo-optimized-images/" target="_new"><?php _e('Upgrade To Pro Version','seo-optimized-images') ?></a>&nbsp;
292
  </div>
293
  <br>
294
 
seo-optimized-images.php CHANGED
@@ -4,10 +4,10 @@
4
  Plugin Name: SEO Optimized Images
5
  Plugin URI: http://webriti.com
6
  Description: The **SEO Optimized Images** plugin Seo Optmized Images Plugin lets you dynamically insert Seo Friendly alt attributes and title attributes to your Images . Simply activate the plugin, provide the pattern and you are ready to go.
7
- Version: 1.6.4
8
  Author: priyanshu.mittal
9
  Author URI: http://webriti.com
10
- Text Domain: seoimages
11
  Domain Path: /lang
12
  */
13
 
@@ -20,9 +20,9 @@ add_action('admin_menu', 'soi_add_menu_page');
20
  function soi_add_menu_page()
21
  {
22
  $seoimageslite_lang_dir = dirname( plugin_basename( SEO_IMAGES_LITE_PLUGIN_FILE ) ) . '/lang/';
23
- load_plugin_textdomain( 'seoimages', false, $seoimageslite_lang_dir );
24
 
25
- add_menu_page( 'soi_settings_page', __('Seo Optimized Images','seoimages'), 'administrator', 'soi_setting','soi_create_setting_page','');
26
  }
27
 
28
  function soi_create_setting_page()
4
  Plugin Name: SEO Optimized Images
5
  Plugin URI: http://webriti.com
6
  Description: The **SEO Optimized Images** plugin Seo Optmized Images Plugin lets you dynamically insert Seo Friendly alt attributes and title attributes to your Images . Simply activate the plugin, provide the pattern and you are ready to go.
7
+ Version: 1.6.5
8
  Author: priyanshu.mittal
9
  Author URI: http://webriti.com
10
+ Text Domain: seo-optimized-images
11
  Domain Path: /lang
12
  */
13
 
20
  function soi_add_menu_page()
21
  {
22
  $seoimageslite_lang_dir = dirname( plugin_basename( SEO_IMAGES_LITE_PLUGIN_FILE ) ) . '/lang/';
23
+ load_plugin_textdomain( 'seo-optimized-images', false, $seoimageslite_lang_dir );
24
 
25
+ add_menu_page( 'soi_settings_page', __('Seo Optimized Images','seo-optimized-images'), 'administrator', 'soi_setting','soi_create_setting_page','');
26
  }
27
 
28
  function soi_create_setting_page()