I Recommend This - Version 2.5.4

Version Description

Download this release

Release Info

Developer hchouhan
Plugin Icon 128x128 I Recommend This
Version 2.5.4
Comparing to
See all releases

Code changes from version 2.5.3 to 2.5.4

dot-irecommendthis.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: I Recommend This
4
  * Plugin URI: http://www.harishchouhan.com/personal-projects/i-recommend-this/
5
  * Description: This plugin allows your visitors to simply recommend or like your posts instead of commment it.
6
- * Version: 2.5.3
7
  * Author: Harish Chouhan
8
  * Author URI: http://www.harishchouhan.com
9
  * Author Email: me@harishchouhan.com
@@ -38,7 +38,7 @@ if ( ! class_exists( 'DOT_IRecommendThis' ) )
38
 
39
  class DOT_IRecommendThis {
40
 
41
- public $version = '2.5.3';
42
 
43
  /*--------------------------------------------*
44
  * Constructor
@@ -117,6 +117,36 @@ if ( ! class_exists( 'DOT_IRecommendThis' ) )
117
  } // End load_localisation()
118
 
119
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  /*--------------------------------------------*
121
  * Admin Menu
122
  *--------------------------------------------*/
@@ -328,37 +358,6 @@ if ( ! class_exists( 'DOT_IRecommendThis' ) )
328
  }
329
 
330
 
331
- /*--------------------------------------------*
332
- * Enqueue Scripts
333
- *--------------------------------------------*/
334
-
335
- function dot_enqueue_scripts()
336
- {
337
- $options = get_option( 'dot_irecommendthis_settings' );
338
- if( !isset($options['disable_css']) ) $options['disable_css'] = '0';
339
- if( !isset($options['recommend_style']) ) $options['recommend_style'] = '0';
340
-
341
- if ($options['disable_css'] == '0') {
342
-
343
- if ($options['recommend_style'] == '0') {
344
- wp_enqueue_style( 'dot-irecommendthis', plugins_url( '/css/dot-irecommendthis.css', __FILE__ ) );
345
- }
346
- else {
347
- wp_enqueue_style( 'dot-irecommendthis', plugins_url( '/css/dot-irecommendthis-heart.css', __FILE__ ) );
348
- }
349
- }
350
-
351
- wp_enqueue_script( 'dot-irecommendthis', plugins_url( '/js/dot_irecommendthis.js', __FILE__ ), array('jquery') );
352
- wp_enqueue_script( 'jquery' );
353
-
354
- wp_localize_script('dot-irecommendthis', 'dot', array(
355
- 'ajaxurl' => admin_url('admin-ajax.php'),
356
- ));
357
-
358
- wp_localize_script( 'dot-irecommendthis', 'dot_irecommendthis', array('ajaxurl' => admin_url('admin-ajax.php')) );
359
-
360
- } //dot_enqueue_scripts
361
-
362
 
363
  /*--------------------------------------------*
364
  * Content / Front-end view
@@ -718,6 +717,7 @@ if ( ! class_exists( 'DOT_IRecommendThis' ) )
718
 
719
  } //dot_recommended_top_posts
720
 
 
721
  /*--------------------------------------------*
722
  * Widget
723
  *--------------------------------------------*/
@@ -755,8 +755,8 @@ if ( ! class_exists( 'DOT_IRecommendThis' ) )
755
  if (!is_array( $options ))
756
  {
757
  $options = array(
758
- 'title' => 'Most recommended posts',
759
- 'number' => '5',
760
  'show_count' => '0'
761
  );
762
  }
@@ -773,20 +773,22 @@ if ( ! class_exists( 'DOT_IRecommendThis' ) )
773
  echo '</ul>';
774
  echo $after_widget;
775
  }
776
- wp_register_sidebar_widget('most_recommended_posts', 'Most recommended posts', 'widget_most_recommended_posts');
 
777
 
778
  function options_widget_most_recommended_posts() {
779
  $options = get_option("most_recommended_posts");
780
 
781
  if (!is_array( $options )) {
782
  $options = array(
783
- 'title' => 'Most recommended posts',
784
- 'number' => '5',
785
  'show_count' => '0'
786
  );
787
  }
788
 
789
- if ($_POST['mrp-submit']) {
 
790
  $options['title'] = htmlspecialchars($_POST['mrp-title']);
791
  $options['number'] = htmlspecialchars($_POST['mrp-number']);
792
  $options['show_count'] = $_POST['mrp-show-count'];
@@ -795,18 +797,18 @@ if ( ! class_exists( 'DOT_IRecommendThis' ) )
795
  update_option("most_recommended_posts", $options);
796
  }
797
  ?>
798
- <p><label for="mrp-title"><?php _e('Title:', 'i-recommend-this'); ?><br />
799
  <input class="widefat" type="text" id="mrp-title" name="mrp-title" value="<?php echo $options['title'];?>" /></label></p>
800
 
801
- <p><label for="mrp-number"><?php _e('Number of posts to show:', 'i-recommend-this'); ?><br />
802
  <input type="text" id="mrp-number" name="mrp-number" style="width: 25px;" value="<?php echo $options['number'];?>" /> <small>(max. 15)</small></label></p>
803
 
804
- <p><label for="mrp-show-count"><input type="checkbox" id="mrp-show-count" name="mrp-show-count" value="1"<?php if($options['show_count'] == '1') echo 'checked="checked"'; ?> /> <?php _e('Show post count', 'i-recommend-this'); ?></label></p>
805
 
806
  <input type="hidden" id="mrp-submit" name="mrp-submit" value="1" />
807
  <?php
808
  }
809
- wp_register_widget_control('most_recommended_posts', 'Most recommended posts', 'options_widget_most_recommended_posts');
810
  }
811
 
812
 
3
  * Plugin Name: I Recommend This
4
  * Plugin URI: http://www.harishchouhan.com/personal-projects/i-recommend-this/
5
  * Description: This plugin allows your visitors to simply recommend or like your posts instead of commment it.
6
+ * Version: 2.5.4
7
  * Author: Harish Chouhan
8
  * Author URI: http://www.harishchouhan.com
9
  * Author Email: me@harishchouhan.com
38
 
39
  class DOT_IRecommendThis {
40
 
41
+ public $version = '2.5.4';
42
 
43
  /*--------------------------------------------*
44
  * Constructor
117
  } // End load_localisation()
118
 
119
 
120
+
121
+ /*--------------------------------------------*
122
+ * Enqueue Scripts
123
+ *--------------------------------------------*/
124
+
125
+ function dot_enqueue_scripts()
126
+ {
127
+ $options = get_option( 'dot_irecommendthis_settings' );
128
+ if( !isset($options['disable_css']) ) $options['disable_css'] = '0';
129
+ if( !isset($options['recommend_style']) ) $options['recommend_style'] = '0';
130
+
131
+ if ($options['disable_css'] == '0') {
132
+
133
+ if ($options['recommend_style'] == '0') {
134
+ wp_enqueue_style( 'dot-irecommendthis', plugins_url( '/css/dot-irecommendthis.css', __FILE__ ) );
135
+ }
136
+ else {
137
+ wp_enqueue_style( 'dot-irecommendthis', plugins_url( '/css/dot-irecommendthis-heart.css', __FILE__ ) );
138
+ }
139
+ }
140
+ wp_register_script('dot-irecommendthis', plugins_url( '/js/dot_irecommendthis.js', __FILE__ ), 'jquery', '2.5.4', FALSE);
141
+
142
+ wp_enqueue_script( 'jquery' );
143
+ wp_enqueue_script( 'dot-irecommendthis' );
144
+
145
+ wp_localize_script( 'dot-irecommendthis', 'dot_irecommendthis', array( 'ajaxurl' => admin_url('admin-ajax.php')) );
146
+
147
+ } //dot_enqueue_scripts
148
+
149
+
150
  /*--------------------------------------------*
151
  * Admin Menu
152
  *--------------------------------------------*/
358
  }
359
 
360
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
 
362
  /*--------------------------------------------*
363
  * Content / Front-end view
717
 
718
  } //dot_recommended_top_posts
719
 
720
+
721
  /*--------------------------------------------*
722
  * Widget
723
  *--------------------------------------------*/
755
  if (!is_array( $options ))
756
  {
757
  $options = array(
758
+ 'title' => __('Most recommended posts', 'dot'),
759
+ 'number' => __('5', 'dot'),
760
  'show_count' => '0'
761
  );
762
  }
773
  echo '</ul>';
774
  echo $after_widget;
775
  }
776
+
777
+ wp_register_sidebar_widget('most_recommended_posts', __('Most recommended posts', 'dot'), 'widget_most_recommended_posts');
778
 
779
  function options_widget_most_recommended_posts() {
780
  $options = get_option("most_recommended_posts");
781
 
782
  if (!is_array( $options )) {
783
  $options = array(
784
+ 'title' => __('Most recommended posts', 'dot'),
785
+ 'number' => __('5', 'dot'),
786
  'show_count' => '0'
787
  );
788
  }
789
 
790
+
791
+ if ( isset($_POST['mrp-submit']) ) {
792
  $options['title'] = htmlspecialchars($_POST['mrp-title']);
793
  $options['number'] = htmlspecialchars($_POST['mrp-number']);
794
  $options['show_count'] = $_POST['mrp-show-count'];
797
  update_option("most_recommended_posts", $options);
798
  }
799
  ?>
800
+ <p><label for="mrp-title"><?php _e('Title:', 'dot'); ?><br />
801
  <input class="widefat" type="text" id="mrp-title" name="mrp-title" value="<?php echo $options['title'];?>" /></label></p>
802
 
803
+ <p><label for="mrp-number"><?php _e('Number of posts to show:', 'dot'); ?><br />
804
  <input type="text" id="mrp-number" name="mrp-number" style="width: 25px;" value="<?php echo $options['number'];?>" /> <small>(max. 15)</small></label></p>
805
 
806
+ <p><label for="mrp-show-count"><input type="checkbox" id="mrp-show-count" name="mrp-show-count" value="1"<?php if($options['show_count'] == '1') echo 'checked="checked"'; ?> /> <?php _e('Show post count', 'dot'); ?></label></p>
807
 
808
  <input type="hidden" id="mrp-submit" name="mrp-submit" value="1" />
809
  <?php
810
  }
811
+ wp_register_widget_control('most_recommended_posts', __('Most recommended posts', 'dot'), 'options_widget_most_recommended_posts');
812
  }
813
 
814
 
languages/dot-en.mo CHANGED
Binary file
languages/dot-en.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: I Recommend This 2.5.3\n"
4
- "POT-Creation-Date: 2013-09-28 11:55+0530\n"
5
- "PO-Revision-Date: 2013-09-28 12:10+0530\n"
6
  "Last-Translator: DOT <hello@dreamsmedia.in>\n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
@@ -16,73 +16,73 @@ msgstr ""
16
  "\\trunk\n"
17
 
18
  #: D:\Projects\Plugin
19
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:126
20
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:127
21
  msgid "I Recommend This"
22
  msgstr ""
23
 
24
  #: D:\Projects\Plugin
25
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:146
26
  msgid "Automatically display on"
27
  msgstr ""
28
 
29
  #: D:\Projects\Plugin
30
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:148
31
  msgid "Text after 0 Count"
32
  msgstr ""
33
 
34
  #: D:\Projects\Plugin
35
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:150
36
  msgid "Text after 1 Count"
37
  msgstr ""
38
 
39
  #: D:\Projects\Plugin
40
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:152
41
  msgid "Text after more than 1 Count"
42
  msgstr ""
43
 
44
  #: D:\Projects\Plugin
45
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:154
46
  msgid "Title for New posts"
47
  msgstr ""
48
 
49
  #: D:\Projects\Plugin
50
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:156
51
  msgid "Title for already voted posts"
52
  msgstr ""
53
 
54
  #: D:\Projects\Plugin
55
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:158
56
  msgid "Disable CSS"
57
  msgstr ""
58
 
59
  #: D:\Projects\Plugin
60
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:160
61
  msgid "Hide Zero Count"
62
  msgstr ""
63
 
64
  #: D:\Projects\Plugin
65
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:162
66
  msgid "Disable IP saving"
67
  msgstr ""
68
 
69
  #: D:\Projects\Plugin
70
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:164
71
  msgid "Choose a style"
72
  msgstr ""
73
 
74
  #: D:\Projects\Plugin
75
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:166
76
  msgid "Shortcode and Template Tag"
77
  msgstr ""
78
 
79
  #: D:\Projects\Plugin
80
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:194
81
  msgid "Save Changes"
82
  msgstr ""
83
 
84
  #: D:\Projects\Plugin
85
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:208
86
  msgid ""
87
  "<a href=\"https://twitter.com/harishchouhan\" class=\"twitter-follow-button"
88
  "\" data-show-count=\"false\">Follow @harishchouhan</a>\n"
@@ -93,131 +93,145 @@ msgid ""
93
  msgstr ""
94
 
95
  #: D:\Projects\Plugin
96
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:210
97
  msgid ""
98
  "or Check out our other themes & plugins at <a href=\"http://www.dreamsonline."
99
  "net\">Dreams Online Themes</a>."
100
  msgstr ""
101
 
102
  #: D:\Projects\Plugin
103
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:211
104
  msgid ""
105
  "This plugin allows your visitors to simply recommend or like your posts "
106
  "instead of commment it."
107
  msgstr ""
108
 
109
  #: D:\Projects\Plugin
110
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:223
111
  msgid "Posts"
112
  msgstr ""
113
 
114
  #: D:\Projects\Plugin
115
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:226
116
  msgid "All other pages like Index, Archive, etc."
117
  msgstr ""
118
 
119
  #: D:\Projects\Plugin
120
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:236
121
  msgid "Hide count if count is zero"
122
  msgstr ""
123
 
124
  #: D:\Projects\Plugin
125
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:246
126
  msgid ""
127
  "Disable saving of IP Address. Will only save cookies to track user votes."
128
  msgstr ""
129
 
130
  #: D:\Projects\Plugin
131
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:256
132
  msgid "I want to use my own CSS styles"
133
  msgstr ""
134
 
135
  #: D:\Projects\Plugin
136
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:265
137
  msgid ""
138
  "Text to display after zero count. Leave blank for no text after the count."
139
  msgstr ""
140
 
141
  #: D:\Projects\Plugin
142
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:273
143
  msgid ""
144
  "Text to display after 1 person has recommended. Leave blank for no text "
145
  "after the count."
146
  msgstr ""
147
 
148
  #: D:\Projects\Plugin
149
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:282
150
  msgid ""
151
  "Text to display after more than 1 person have recommended. Leave blank for "
152
  "no text after the count."
153
  msgstr ""
154
 
155
  #: D:\Projects\Plugin
156
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:291
157
  msgid "Link Title element for posts not yet voted by a user."
158
  msgstr ""
159
 
160
  #: D:\Projects\Plugin
161
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:300
162
  msgid "Link Title element for posts already voted by a user."
163
  msgstr ""
164
 
165
  #: D:\Projects\Plugin
166
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:309
167
  msgid "Default style - Thumb"
168
  msgstr ""
169
 
170
  #: D:\Projects\Plugin
171
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:312
172
  msgid "Heart"
173
  msgstr ""
174
 
175
  #: D:\Projects\Plugin
176
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:317
177
  msgid ""
178
  "To use I Recomment This in your posts and pages you can use the shortcode:"
179
  msgstr ""
180
 
181
  #: D:\Projects\Plugin
182
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:319
183
  msgid ""
184
  "To use I Recomment This manually in your theme template use the following "
185
  "PHP code:"
186
  msgstr ""
187
 
188
  #: D:\Projects\Plugin
189
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:321
190
  msgid "To show top recommended post from a particular date use below shortcode"
191
  msgstr ""
192
 
193
  #: D:\Projects\Plugin
194
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:596
195
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:629
196
  msgid "Recommend this"
197
  msgstr ""
198
 
199
  #: D:\Projects\Plugin
200
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:611
201
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:644
202
  msgid "You already recommended this"
203
  msgstr ""
204
 
205
  #: D:\Projects\Plugin
206
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:798
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgid "Title:"
208
  msgstr ""
209
 
210
  #: D:\Projects\Plugin
211
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:801
212
  msgid "Number of posts to show:"
213
  msgstr ""
214
 
215
  #: D:\Projects\Plugin
216
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:804
217
  msgid "Show post count"
218
  msgstr ""
219
 
220
  #: D:\Projects\Plugin
221
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:842
222
  msgid "Settings"
223
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: I Recommend This 2.5.3\n"
4
+ "POT-Creation-Date: 2013-10-12 19:50+0530\n"
5
+ "PO-Revision-Date: 2013-10-12 19:50+0530\n"
6
  "Last-Translator: DOT <hello@dreamsmedia.in>\n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
16
  "\\trunk\n"
17
 
18
  #: D:\Projects\Plugin
19
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:156
20
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:157
21
  msgid "I Recommend This"
22
  msgstr ""
23
 
24
  #: D:\Projects\Plugin
25
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:176
26
  msgid "Automatically display on"
27
  msgstr ""
28
 
29
  #: D:\Projects\Plugin
30
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:178
31
  msgid "Text after 0 Count"
32
  msgstr ""
33
 
34
  #: D:\Projects\Plugin
35
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:180
36
  msgid "Text after 1 Count"
37
  msgstr ""
38
 
39
  #: D:\Projects\Plugin
40
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:182
41
  msgid "Text after more than 1 Count"
42
  msgstr ""
43
 
44
  #: D:\Projects\Plugin
45
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:184
46
  msgid "Title for New posts"
47
  msgstr ""
48
 
49
  #: D:\Projects\Plugin
50
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:186
51
  msgid "Title for already voted posts"
52
  msgstr ""
53
 
54
  #: D:\Projects\Plugin
55
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:188
56
  msgid "Disable CSS"
57
  msgstr ""
58
 
59
  #: D:\Projects\Plugin
60
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:190
61
  msgid "Hide Zero Count"
62
  msgstr ""
63
 
64
  #: D:\Projects\Plugin
65
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:192
66
  msgid "Disable IP saving"
67
  msgstr ""
68
 
69
  #: D:\Projects\Plugin
70
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:194
71
  msgid "Choose a style"
72
  msgstr ""
73
 
74
  #: D:\Projects\Plugin
75
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:196
76
  msgid "Shortcode and Template Tag"
77
  msgstr ""
78
 
79
  #: D:\Projects\Plugin
80
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:224
81
  msgid "Save Changes"
82
  msgstr ""
83
 
84
  #: D:\Projects\Plugin
85
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:238
86
  msgid ""
87
  "<a href=\"https://twitter.com/harishchouhan\" class=\"twitter-follow-button"
88
  "\" data-show-count=\"false\">Follow @harishchouhan</a>\n"
93
  msgstr ""
94
 
95
  #: D:\Projects\Plugin
96
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:240
97
  msgid ""
98
  "or Check out our other themes & plugins at <a href=\"http://www.dreamsonline."
99
  "net\">Dreams Online Themes</a>."
100
  msgstr ""
101
 
102
  #: D:\Projects\Plugin
103
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:241
104
  msgid ""
105
  "This plugin allows your visitors to simply recommend or like your posts "
106
  "instead of commment it."
107
  msgstr ""
108
 
109
  #: D:\Projects\Plugin
110
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:253
111
  msgid "Posts"
112
  msgstr ""
113
 
114
  #: D:\Projects\Plugin
115
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:256
116
  msgid "All other pages like Index, Archive, etc."
117
  msgstr ""
118
 
119
  #: D:\Projects\Plugin
120
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:266
121
  msgid "Hide count if count is zero"
122
  msgstr ""
123
 
124
  #: D:\Projects\Plugin
125
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:276
126
  msgid ""
127
  "Disable saving of IP Address. Will only save cookies to track user votes."
128
  msgstr ""
129
 
130
  #: D:\Projects\Plugin
131
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:286
132
  msgid "I want to use my own CSS styles"
133
  msgstr ""
134
 
135
  #: D:\Projects\Plugin
136
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:295
137
  msgid ""
138
  "Text to display after zero count. Leave blank for no text after the count."
139
  msgstr ""
140
 
141
  #: D:\Projects\Plugin
142
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:303
143
  msgid ""
144
  "Text to display after 1 person has recommended. Leave blank for no text "
145
  "after the count."
146
  msgstr ""
147
 
148
  #: D:\Projects\Plugin
149
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:312
150
  msgid ""
151
  "Text to display after more than 1 person have recommended. Leave blank for "
152
  "no text after the count."
153
  msgstr ""
154
 
155
  #: D:\Projects\Plugin
156
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:321
157
  msgid "Link Title element for posts not yet voted by a user."
158
  msgstr ""
159
 
160
  #: D:\Projects\Plugin
161
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:330
162
  msgid "Link Title element for posts already voted by a user."
163
  msgstr ""
164
 
165
  #: D:\Projects\Plugin
166
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:339
167
  msgid "Default style - Thumb"
168
  msgstr ""
169
 
170
  #: D:\Projects\Plugin
171
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:342
172
  msgid "Heart"
173
  msgstr ""
174
 
175
  #: D:\Projects\Plugin
176
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:347
177
  msgid ""
178
  "To use I Recomment This in your posts and pages you can use the shortcode:"
179
  msgstr ""
180
 
181
  #: D:\Projects\Plugin
182
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:349
183
  msgid ""
184
  "To use I Recomment This manually in your theme template use the following "
185
  "PHP code:"
186
  msgstr ""
187
 
188
  #: D:\Projects\Plugin
189
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:351
190
  msgid "To show top recommended post from a particular date use below shortcode"
191
  msgstr ""
192
 
193
  #: D:\Projects\Plugin
194
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:595
195
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:628
196
  msgid "Recommend this"
197
  msgstr ""
198
 
199
  #: D:\Projects\Plugin
200
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:610
201
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:643
202
  msgid "You already recommended this"
203
  msgstr ""
204
 
205
  #: D:\Projects\Plugin
206
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:758
207
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:777
208
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:784
209
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:811
210
+ msgid "Most recommended posts"
211
+ msgstr ""
212
+
213
+ #: D:\Projects\Plugin
214
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:759
215
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:785
216
+ msgid "5"
217
+ msgstr ""
218
+
219
+ #: D:\Projects\Plugin
220
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:800
221
  msgid "Title:"
222
  msgstr ""
223
 
224
  #: D:\Projects\Plugin
225
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:803
226
  msgid "Number of posts to show:"
227
  msgstr ""
228
 
229
  #: D:\Projects\Plugin
230
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:806
231
  msgid "Show post count"
232
  msgstr ""
233
 
234
  #: D:\Projects\Plugin
235
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:844
236
  msgid "Settings"
237
  msgstr ""
languages/dot-pt_BR.mo CHANGED
Binary file
languages/dot-pt_BR.po CHANGED
@@ -1,10 +1,11 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: I Recommend This 2.5.3\n"
4
- "POT-Creation-Date: 2013-09-28 11:55+0530\n"
5
- "PO-Revision-Date: 2013-09-28 03:46-0300\n"
6
- "Last-Translator: Darlan ten Caten <darlantc@i9solucoesdigitais.com.br>\n"
7
  "Language-Team: Darlan ten Caten <darlan@i9solucoesdigitais.com.br>\n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,78 +13,77 @@ msgstr ""
12
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;__\n"
13
  "X-Poedit-Basepath: D:\\Projects\\Plugin Development\\i-recommend-this"
14
  "\\trunk\n"
15
- "Language: pt_BR\n"
16
  "X-Poedit-SearchPath-0: D:\\Projects\\Plugin Development\\i-recommend-this"
17
  "\\trunk\n"
18
 
19
  #: D:\Projects\Plugin
20
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:126
21
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:127
22
  msgid "I Recommend This"
23
  msgstr "Eu Recomendo Isso"
24
 
25
  #: D:\Projects\Plugin
26
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:146
27
  msgid "Automatically display on"
28
  msgstr "Mostrar automaticamente"
29
 
30
  #: D:\Projects\Plugin
31
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:148
32
  msgid "Text after 0 Count"
33
  msgstr "Texto exibido para contador Zerado"
34
 
35
  #: D:\Projects\Plugin
36
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:150
37
  msgid "Text after 1 Count"
38
  msgstr "Texto exibido para contador em 1"
39
 
40
  #: D:\Projects\Plugin
41
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:152
42
  msgid "Text after more than 1 Count"
43
  msgstr "Texto exibido para contador maior que 1"
44
 
45
  #: D:\Projects\Plugin
46
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:154
47
  msgid "Title for New posts"
48
  msgstr "Título para Novos posts"
49
 
50
  #: D:\Projects\Plugin
51
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:156
52
  msgid "Title for already voted posts"
53
  msgstr "Título para post já votado"
54
 
55
  #: D:\Projects\Plugin
56
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:158
57
  msgid "Disable CSS"
58
  msgstr "Desabilitar CSS"
59
 
60
  #: D:\Projects\Plugin
61
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:160
62
  msgid "Hide Zero Count"
63
  msgstr "Esconder contador Zerado"
64
 
65
  #: D:\Projects\Plugin
66
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:162
67
  msgid "Disable IP saving"
68
  msgstr "Desabilitar salvamento de IP"
69
 
70
  #: D:\Projects\Plugin
71
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:164
72
  msgid "Choose a style"
73
  msgstr "Escolha um estilo"
74
 
75
  #: D:\Projects\Plugin
76
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:166
77
  msgid "Shortcode and Template Tag"
78
  msgstr "Shortcode e Template Tag"
79
 
80
  #: D:\Projects\Plugin
81
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:194
82
  msgid "Save Changes"
83
  msgstr "Salvar Alterações"
84
 
85
  #: D:\Projects\Plugin
86
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:208
87
  msgid ""
88
  "<a href=\"https://twitter.com/harishchouhan\" class=\"twitter-follow-button"
89
  "\" data-show-count=\"false\">Follow @harishchouhan</a>\n"
@@ -100,7 +100,7 @@ msgstr ""
100
  "\"script\",\"twitter-wjs\");</script>"
101
 
102
  #: D:\Projects\Plugin
103
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:210
104
  msgid ""
105
  "or Check out our other themes & plugins at <a href=\"http://www.dreamsonline."
106
  "net\">Dreams Online Themes</a>."
@@ -109,7 +109,7 @@ msgstr ""
109
  "\">Dreams Online Themes</a>."
110
 
111
  #: D:\Projects\Plugin
112
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:211
113
  msgid ""
114
  "This plugin allows your visitors to simply recommend or like your posts "
115
  "instead of commment it."
@@ -118,22 +118,22 @@ msgstr ""
118
  "invés de comenta-los."
119
 
120
  #: D:\Projects\Plugin
121
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:223
122
  msgid "Posts"
123
  msgstr ""
124
 
125
  #: D:\Projects\Plugin
126
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:226
127
  msgid "All other pages like Index, Archive, etc."
128
  msgstr "Todas as outras páginas como Inicial, Arquivo, etc."
129
 
130
  #: D:\Projects\Plugin
131
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:236
132
  msgid "Hide count if count is zero"
133
  msgstr "Esconder contador se está zerado"
134
 
135
  #: D:\Projects\Plugin
136
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:246
137
  msgid ""
138
  "Disable saving of IP Address. Will only save cookies to track user votes."
139
  msgstr ""
@@ -141,12 +141,12 @@ msgstr ""
141
  "para seguir os votos de usuários."
142
 
143
  #: D:\Projects\Plugin
144
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:256
145
  msgid "I want to use my own CSS styles"
146
  msgstr "Eu quero usar meu próprio estilo CSS"
147
 
148
  #: D:\Projects\Plugin
149
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:265
150
  msgid ""
151
  "Text to display after zero count. Leave blank for no text after the count."
152
  msgstr ""
@@ -154,7 +154,7 @@ msgstr ""
154
  "texto depois do contador."
155
 
156
  #: D:\Projects\Plugin
157
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:273
158
  msgid ""
159
  "Text to display after 1 person has recommended. Leave blank for no text "
160
  "after the count."
@@ -163,7 +163,7 @@ msgstr ""
163
  "exibir texto depois do contador."
164
 
165
  #: D:\Projects\Plugin
166
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:282
167
  msgid ""
168
  "Text to display after more than 1 person have recommended. Leave blank for "
169
  "no text after the count."
@@ -172,33 +172,33 @@ msgstr ""
172
  "não exibir texto depois do contador."
173
 
174
  #: D:\Projects\Plugin
175
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:291
176
  msgid "Link Title element for posts not yet voted by a user."
177
  msgstr "Título de Link para posts ainda não votados pelo usuário."
178
 
179
  #: D:\Projects\Plugin
180
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:300
181
  msgid "Link Title element for posts already voted by a user."
182
  msgstr "Título de Link para posts que o usuário já votou."
183
 
184
  #: D:\Projects\Plugin
185
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:309
186
  msgid "Default style - Thumb"
187
  msgstr "Estilo Padrão - Thumb"
188
 
189
  #: D:\Projects\Plugin
190
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:312
191
  msgid "Heart"
192
  msgstr "Coração"
193
 
194
  #: D:\Projects\Plugin
195
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:317
196
  msgid ""
197
  "To use I Recomment This in your posts and pages you can use the shortcode:"
198
  msgstr "Para usar o I Recomment This em seus posts e páginas use o shortcode:"
199
 
200
  #: D:\Projects\Plugin
201
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:319
202
  msgid ""
203
  "To use I Recomment This manually in your theme template use the following "
204
  "PHP code:"
@@ -207,40 +207,55 @@ msgstr ""
207
  "PHP:"
208
 
209
  #: D:\Projects\Plugin
210
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:321
211
  msgid "To show top recommended post from a particular date use below shortcode"
212
  msgstr ""
213
  "Para mostrar os posts mais recomendados de uma data particular use o "
214
  "shortcode abaixo"
215
 
216
  #: D:\Projects\Plugin
217
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:596
218
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:629
219
  msgid "Recommend this"
220
  msgstr "Recomendo Isso"
221
 
222
  #: D:\Projects\Plugin
223
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:611
224
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:644
225
  msgid "You already recommended this"
226
  msgstr "Você já recomendou isso"
227
 
228
  #: D:\Projects\Plugin
229
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:798
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  msgid "Title:"
231
  msgstr "Título:"
232
 
233
  #: D:\Projects\Plugin
234
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:801
235
  msgid "Number of posts to show:"
236
  msgstr "Número de posts para mostrar:"
237
 
238
  #: D:\Projects\Plugin
239
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:804
240
  msgid "Show post count"
241
  msgstr "Mostrar contador de post"
242
 
243
  #: D:\Projects\Plugin
244
- #: Development\i-recommend-this\trunk/dot-irecommendthis.php:842
245
  msgid "Settings"
246
  msgstr "Configurações"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: I Recommend This 2.5.3\n"
4
+ "POT-Creation-Date: 2013-10-12 19:50+0530\n"
5
+ "PO-Revision-Date: 2013-10-12 19:50+0530\n"
6
+ "Last-Translator: DOT <hello@dreamsmedia.in>\n"
7
  "Language-Team: Darlan ten Caten <darlan@i9solucoesdigitais.com.br>\n"
8
+ "Language: pt_BR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;__\n"
14
  "X-Poedit-Basepath: D:\\Projects\\Plugin Development\\i-recommend-this"
15
  "\\trunk\n"
 
16
  "X-Poedit-SearchPath-0: D:\\Projects\\Plugin Development\\i-recommend-this"
17
  "\\trunk\n"
18
 
19
  #: D:\Projects\Plugin
20
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:156
21
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:157
22
  msgid "I Recommend This"
23
  msgstr "Eu Recomendo Isso"
24
 
25
  #: D:\Projects\Plugin
26
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:176
27
  msgid "Automatically display on"
28
  msgstr "Mostrar automaticamente"
29
 
30
  #: D:\Projects\Plugin
31
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:178
32
  msgid "Text after 0 Count"
33
  msgstr "Texto exibido para contador Zerado"
34
 
35
  #: D:\Projects\Plugin
36
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:180
37
  msgid "Text after 1 Count"
38
  msgstr "Texto exibido para contador em 1"
39
 
40
  #: D:\Projects\Plugin
41
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:182
42
  msgid "Text after more than 1 Count"
43
  msgstr "Texto exibido para contador maior que 1"
44
 
45
  #: D:\Projects\Plugin
46
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:184
47
  msgid "Title for New posts"
48
  msgstr "Título para Novos posts"
49
 
50
  #: D:\Projects\Plugin
51
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:186
52
  msgid "Title for already voted posts"
53
  msgstr "Título para post já votado"
54
 
55
  #: D:\Projects\Plugin
56
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:188
57
  msgid "Disable CSS"
58
  msgstr "Desabilitar CSS"
59
 
60
  #: D:\Projects\Plugin
61
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:190
62
  msgid "Hide Zero Count"
63
  msgstr "Esconder contador Zerado"
64
 
65
  #: D:\Projects\Plugin
66
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:192
67
  msgid "Disable IP saving"
68
  msgstr "Desabilitar salvamento de IP"
69
 
70
  #: D:\Projects\Plugin
71
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:194
72
  msgid "Choose a style"
73
  msgstr "Escolha um estilo"
74
 
75
  #: D:\Projects\Plugin
76
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:196
77
  msgid "Shortcode and Template Tag"
78
  msgstr "Shortcode e Template Tag"
79
 
80
  #: D:\Projects\Plugin
81
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:224
82
  msgid "Save Changes"
83
  msgstr "Salvar Alterações"
84
 
85
  #: D:\Projects\Plugin
86
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:238
87
  msgid ""
88
  "<a href=\"https://twitter.com/harishchouhan\" class=\"twitter-follow-button"
89
  "\" data-show-count=\"false\">Follow @harishchouhan</a>\n"
100
  "\"script\",\"twitter-wjs\");</script>"
101
 
102
  #: D:\Projects\Plugin
103
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:240
104
  msgid ""
105
  "or Check out our other themes & plugins at <a href=\"http://www.dreamsonline."
106
  "net\">Dreams Online Themes</a>."
109
  "\">Dreams Online Themes</a>."
110
 
111
  #: D:\Projects\Plugin
112
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:241
113
  msgid ""
114
  "This plugin allows your visitors to simply recommend or like your posts "
115
  "instead of commment it."
118
  "invés de comenta-los."
119
 
120
  #: D:\Projects\Plugin
121
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:253
122
  msgid "Posts"
123
  msgstr ""
124
 
125
  #: D:\Projects\Plugin
126
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:256
127
  msgid "All other pages like Index, Archive, etc."
128
  msgstr "Todas as outras páginas como Inicial, Arquivo, etc."
129
 
130
  #: D:\Projects\Plugin
131
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:266
132
  msgid "Hide count if count is zero"
133
  msgstr "Esconder contador se está zerado"
134
 
135
  #: D:\Projects\Plugin
136
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:276
137
  msgid ""
138
  "Disable saving of IP Address. Will only save cookies to track user votes."
139
  msgstr ""
141
  "para seguir os votos de usuários."
142
 
143
  #: D:\Projects\Plugin
144
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:286
145
  msgid "I want to use my own CSS styles"
146
  msgstr "Eu quero usar meu próprio estilo CSS"
147
 
148
  #: D:\Projects\Plugin
149
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:295
150
  msgid ""
151
  "Text to display after zero count. Leave blank for no text after the count."
152
  msgstr ""
154
  "texto depois do contador."
155
 
156
  #: D:\Projects\Plugin
157
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:303
158
  msgid ""
159
  "Text to display after 1 person has recommended. Leave blank for no text "
160
  "after the count."
163
  "exibir texto depois do contador."
164
 
165
  #: D:\Projects\Plugin
166
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:312
167
  msgid ""
168
  "Text to display after more than 1 person have recommended. Leave blank for "
169
  "no text after the count."
172
  "não exibir texto depois do contador."
173
 
174
  #: D:\Projects\Plugin
175
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:321
176
  msgid "Link Title element for posts not yet voted by a user."
177
  msgstr "Título de Link para posts ainda não votados pelo usuário."
178
 
179
  #: D:\Projects\Plugin
180
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:330
181
  msgid "Link Title element for posts already voted by a user."
182
  msgstr "Título de Link para posts que o usuário já votou."
183
 
184
  #: D:\Projects\Plugin
185
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:339
186
  msgid "Default style - Thumb"
187
  msgstr "Estilo Padrão - Thumb"
188
 
189
  #: D:\Projects\Plugin
190
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:342
191
  msgid "Heart"
192
  msgstr "Coração"
193
 
194
  #: D:\Projects\Plugin
195
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:347
196
  msgid ""
197
  "To use I Recomment This in your posts and pages you can use the shortcode:"
198
  msgstr "Para usar o I Recomment This em seus posts e páginas use o shortcode:"
199
 
200
  #: D:\Projects\Plugin
201
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:349
202
  msgid ""
203
  "To use I Recomment This manually in your theme template use the following "
204
  "PHP code:"
207
  "PHP:"
208
 
209
  #: D:\Projects\Plugin
210
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:351
211
  msgid "To show top recommended post from a particular date use below shortcode"
212
  msgstr ""
213
  "Para mostrar os posts mais recomendados de uma data particular use o "
214
  "shortcode abaixo"
215
 
216
  #: D:\Projects\Plugin
217
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:595
218
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:628
219
  msgid "Recommend this"
220
  msgstr "Recomendo Isso"
221
 
222
  #: D:\Projects\Plugin
223
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:610
224
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:643
225
  msgid "You already recommended this"
226
  msgstr "Você já recomendou isso"
227
 
228
  #: D:\Projects\Plugin
229
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:758
230
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:777
231
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:784
232
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:811
233
+ #, fuzzy
234
+ msgid "Most recommended posts"
235
+ msgstr "Você já recomendou isso"
236
+
237
+ #: D:\Projects\Plugin
238
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:759
239
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:785
240
+ msgid "5"
241
+ msgstr ""
242
+
243
+ #: D:\Projects\Plugin
244
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:800
245
  msgid "Title:"
246
  msgstr "Título:"
247
 
248
  #: D:\Projects\Plugin
249
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:803
250
  msgid "Number of posts to show:"
251
  msgstr "Número de posts para mostrar:"
252
 
253
  #: D:\Projects\Plugin
254
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:806
255
  msgid "Show post count"
256
  msgstr "Mostrar contador de post"
257
 
258
  #: D:\Projects\Plugin
259
+ #: Development\i-recommend-this\trunk/dot-irecommendthis.php:844
260
  msgid "Settings"
261
  msgstr "Configurações"
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: http://www.dreamsonline.net
4
  Tags: recommend, like, love, post, rate, rating, post rating, heart, dribbble like, tumblr like
5
  Requires at least: 3.3
6
  Tested up to: 3.6.1
7
- Stable tag: 2.5.3
8
- Last Updated: 2013-September-28
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -85,6 +85,10 @@ You can also visit the [support center](http://www.dreamsonline.net/wordpress-pl
85
 
86
  == Changelog ==
87
 
 
 
 
 
88
  = 2.5.3
89
  * Fixed textdomain problem. Added portuguese translation. Thanks to @Darlan ten Caten.
90
 
4
  Tags: recommend, like, love, post, rate, rating, post rating, heart, dribbble like, tumblr like
5
  Requires at least: 3.3
6
  Tested up to: 3.6.1
7
+ Stable tag: 2.5.4
8
+ Last Updated: 2013-October-11
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
85
 
86
  == Changelog ==
87
 
88
+ = 2.5.4
89
+ * Fixed PHP error in Widget.
90
+ * Converted text strings in widget to be translatable.
91
+
92
  = 2.5.3
93
  * Fixed textdomain problem. Added portuguese translation. Thanks to @Darlan ten Caten.
94