Version Description
- Added: Social Network Login: Facebook, Google, Twitter, Wordpress, Vkontakte, Mail.ru, Yandex, Odnoklassniki, 500px, Windows Live, Yahoo!, LinkedIn, Reddit, Disqus, Tumblr, Stackoverflow, GitHub, Dribbble, Instagram, Foursquare, Steam, Twitch.tv, Mixi, Goodreads, Skyrock, Last.fm, AOL and PixelPin. Integrated with WordPress Social Login, Super Socializer and Social Connect plugins.
- Added: New "WebSite" field in comment form
- Added: Anonymous commenting ( Name and Email can be optional )
- Added: VK.com and OK.ru social network share buttons
- Added: New {rel, target, ...} attributes for link tag
- Added: CSS and JavaScrip file/code optimization and minifying
- Fixed Bug: Issues with comment editing
- Fixed Bug: Custom "Phrases" fail to display if apostrophes are used
IMPORTANT: If you have a Cache Plugin, please delete all caches after wpDiscuz update.
Download this release
Release Info
Developer | gzakar |
Plugin | Comments – wpDiscuz |
Version | 2.2.0 |
Comparing to | |
See all releases |
Code changes from version 2.2.10 to 2.2.0
- captcha/captcha.php +2 -0
- comment-form/form.php +222 -383
- comment-form/tpl-comment.php +44 -49
- dto/wc-comment.php +6 -6
- files/css/wpdiscuz-rtl.min.css +1 -1
- files/css/wpdiscuz.min.css +2 -1
- files/js/jquery.cookie.js +0 -117
- files/js/options-js.js +0 -89
- files/js/validator.js +0 -380
- files/js/validator.min.js +1 -1
- files/js/wc-ajax.js +0 -763
- files/js/wc-ajax.min.js +1 -1
- files/js/wc-frontend.js +0 -5
- files/js/wc-scripts.js +0 -62
- files/third-party/colorpicker/js/colorpicker.js +0 -529
- files/third-party/easy-responsive-tabs/js/easy-responsive-tabs.js +0 -224
- {includes → helper}/wc-helper.php +12 -36
- includes/wc-db-helper.php +9 -12
- languages/wpdiscuz-en.mo +0 -0
- languages/wpdiscuz-en.po +202 -378
- languages/wpdiscuz-fr_FR.mo +0 -0
- languages/wpdiscuz-fr_FR.po +0 -1223
- languages/wpdiscuz-hy_HY.mo +0 -0
- languages/wpdiscuz-hy_HY.po +0 -1160
- languages/wpdiscuz-pt_BR.mo +0 -0
- languages/wpdiscuz-pt_BR.po +0 -1109
- languages/wpdiscuz-pt_PT.mo +0 -0
- languages/wpdiscuz-pt_PT.po +418 -994
- languages/wpdiscuz-ru_RU.mo +0 -0
- languages/wpdiscuz-ru_RU.po +323 -1001
- languages/wpdiscuz.pot +0 -1207
- options/options-layouts/settings-general.php +39 -67
- options/options-layouts/settings-live-update.php +17 -17
- options/options-layouts/settings-show-hide.php +9 -29
- options/options-layouts/settings-social.php +11 -25
- options/options-layouts/settings-style.php +18 -18
- options/options-layouts/settings-subscription.php +9 -9
- options/phrases-layout/phrases-comment.php +19 -19
- options/phrases-layout/phrases-datetime.php +18 -18
- options/phrases-layout/phrases-email.php +18 -18
- options/phrases-layout/phrases-form.php +21 -21
- options/phrases-layout/phrases-general.php +13 -13
- options/phrases-layout/phrases-notification.php +22 -32
- options/wc-options-serialize.php +95 -155
- options/wc-options.php +26 -30
- readme.txt +5 -61
- wc-css.php +2 -2
- wc.php +78 -81
captcha/captcha.php
CHANGED
@@ -21,8 +21,10 @@ for ($i = 0; $i < $captcha_length; $i++) {
|
|
21 |
|
22 |
$_SESSION['wc_captcha'][$comm_id] = md5(strtolower(trim($randomString)));
|
23 |
|
|
|
24 |
$im = @imagecreatefrompng("captcha_bg_easy.png");
|
25 |
|
|
|
26 |
$font_path = './consolai.ttf';
|
27 |
|
28 |
|
21 |
|
22 |
$_SESSION['wc_captcha'][$comm_id] = md5(strtolower(trim($randomString)));
|
23 |
|
24 |
+
|
25 |
$im = @imagecreatefrompng("captcha_bg_easy.png");
|
26 |
|
27 |
+
|
28 |
$font_path = './consolai.ttf';
|
29 |
|
30 |
|
comment-form/form.php
CHANGED
@@ -3,42 +3,44 @@ global $post, $wc_core, $current_user;
|
|
3 |
get_currentuserinfo();
|
4 |
|
5 |
error_reporting(0);
|
6 |
-
|
|
|
|
|
|
|
|
|
7 |
$wc_comment_list_update_type = $wc_core->wc_options_serialized->wc_comment_list_update_type;
|
8 |
-
$wc_form_avatar = $wc_core->wc_helper->get_comment_author_avatar();
|
9 |
?>
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
wpdiscuzValidator.message['max'] = '<?php echo sprintf($wc_core->wc_options_serialized->wc_phrases['wc_msg_comment_text_max_length'], $wc_core->wc_options_serialized->wc_comment_text_max_length); ?>';
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
});
|
29 |
});
|
|
|
30 |
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
$('#wc_unsubscribe_message').delay(7000).fadeOut(1500, function () {
|
37 |
-
$(this).remove();
|
38 |
-
});
|
39 |
|
|
|
|
|
40 |
});
|
41 |
-
|
|
|
|
|
42 |
<?php
|
43 |
$textarea_placeholder = '';
|
44 |
if ($post->comment_count) {
|
@@ -55,406 +57,243 @@ $header_text .= ' "' . get_the_title($post) . '"';
|
|
55 |
$wc_is_name_field_required = ($wc_core->wc_options_serialized->wc_is_name_field_required) ? 'required="required"' : '';
|
56 |
$wc_is_email_field_required = ($wc_core->wc_options_serialized->wc_is_email_field_required) ? 'required="required"' : '';
|
57 |
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
ob_start();
|
62 |
-
do_action('comment_form_top');
|
63 |
-
$wc_comment_form_top_content = ob_get_contents();
|
64 |
-
ob_clean();
|
65 |
-
$wc_comment_form_top_content = wpdiscuz_close_divs($wc_comment_form_top_content);
|
66 |
-
} else {
|
67 |
-
$wc_ob_allowed = false;
|
68 |
-
}
|
69 |
-
$wc_validate_comment_text_length = (intval($wc_core->wc_options_serialized->wc_comment_text_max_length)) ? 'data-validate-length-range="1,' . $wc_core->wc_options_serialized->wc_comment_text_max_length . '"' : '';
|
70 |
?>
|
71 |
-
|
72 |
|
73 |
-
<?php if (comments_open($post->ID))
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
<div id="comments" class="comments-area">
|
79 |
-
<div id="respond" style="width: 0;height: 0;clear: both;margin: 0;padding: 0;"></div>
|
80 |
-
<?php }
|
81 |
-
if (isset($_GET['wpdiscuzSubscribeID']) && isset($_GET['key'])) {
|
82 |
-
$wc_core->wc_unsubscribe($_GET['wpdiscuzSubscribeID'], $_GET['key']);
|
83 |
-
?>
|
84 |
-
<div id="wc_unsubscribe_message">
|
85 |
-
<span
|
86 |
-
class="wc_unsubscribe_message"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_unsubscribe_message']; ?></span>
|
87 |
-
</div>
|
88 |
-
<?php
|
89 |
-
}
|
90 |
?>
|
91 |
-
|
|
|
|
|
92 |
<?php
|
93 |
-
|
94 |
-
|
95 |
-
?>
|
96 |
-
<div id="wc_unsubscribe_message">
|
97 |
-
<span
|
98 |
-
class="wc_unsubscribe_message"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_comfirm_success_message']; ?></span>
|
99 |
-
</div>
|
100 |
-
<?php
|
101 |
-
}
|
102 |
-
?>
|
103 |
|
104 |
-
|
105 |
-
|
106 |
-
|
|
|
|
|
|
|
|
|
107 |
<?php
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
<span class="wc_show_hide_loggedin_username">
|
116 |
-
<?php
|
117 |
-
$logout = wp_loginout(get_permalink(), false);
|
118 |
-
$logout = preg_replace('!>([^<]+)!is', '>' . $wc_core->wc_options_serialized->wc_phrases['wc_log_out'], $logout);
|
119 |
-
echo $wc_core->wc_options_serialized->wc_phrases['wc_logged_in_as'] . ' <a href="' . $user_url . '">' . $current_user->display_name . '</a> | ' . $logout;
|
120 |
-
?>
|
121 |
</span>
|
122 |
-
|
123 |
<?php
|
124 |
-
}
|
125 |
}
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
<?php
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
do_action('comment_form_top');
|
143 |
-
} ?>
|
144 |
-
</div>
|
145 |
-
<div class="wc-form-wrapper">
|
146 |
-
<?php
|
147 |
-
if ($wc_core->is_guest_can_comment()) {
|
148 |
-
?>
|
149 |
|
150 |
-
|
151 |
-
|
152 |
-
<div class="wc-field-
|
153 |
-
<?php
|
154 |
-
<div class="wc-field-avatararea">
|
155 |
-
<?php echo $wc_form_avatar; ?>
|
156 |
-
</div>
|
157 |
-
<?php } ?>
|
158 |
-
<div class="wpdiscuz-item wc-field-textarea" <?php
|
159 |
-
if ($wc_core->wc_options_serialized->wc_avatar_show_hide) {
|
160 |
-
echo ' style="margin-left: 0;"';
|
161 |
-
}
|
162 |
-
?>><textarea <?php echo $wc_validate_comment_text_length; ?>
|
163 |
-
id="wc_comment-<?php echo $unique_id; ?>" class="wc_comment wc_field_input"
|
164 |
-
name="wc_comment" required="required"
|
165 |
-
placeholder="<?php echo $textarea_placeholder; ?>"></textarea></div>
|
166 |
-
<div style="clear:both"></div>
|
167 |
</div>
|
168 |
-
<div
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
<div style="clear:both"></div>
|
185 |
-
</div>
|
186 |
-
<?php } ?>
|
187 |
-
<div class="wc-form-submit">
|
188 |
-
<?php if (!$wc_core->wc_options_serialized->wc_captcha_show_hide) { ?>
|
189 |
-
<?php if (!is_user_logged_in()) { ?>
|
190 |
-
<div class="wc-field-captcha wpdiscuz-item">
|
191 |
-
<input id="wc_captcha-<?php echo $unique_id; ?>"
|
192 |
-
class="wc_field_input wc_field_captcha" name="wc_captcha"
|
193 |
-
required="required" value="" type="text" maxlength="5"/>
|
194 |
<span class="wc-label wc-captcha-label">
|
195 |
-
<img
|
196 |
-
|
197 |
-
id="wc_captcha_img-<?php echo $unique_id; ?>" rel="nofollow"
|
198 |
-
noimageindex/>
|
199 |
-
<img
|
200 |
-
src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/refresh-16x16.png'); ?>"
|
201 |
-
id="wc_captcha_refresh_img-<?php echo $unique_id; ?>"
|
202 |
-
class="wc_captcha_refresh_img" rel="nofollow" noimageindex/>
|
203 |
</span>
|
204 |
-
|
205 |
-
|
206 |
-
</div>
|
207 |
-
<?php } ?>
|
208 |
<?php } ?>
|
209 |
-
<div class="wc-field-submit">
|
210 |
-
<?php if (!is_user_logged_in() && !$wc_core->wc_options_serialized->wc_weburl_show_hide) { ?>
|
211 |
-
<div class="wc-field-website wpdiscuz-item"><input
|
212 |
-
id="wc_website-<?php echo $unique_id; ?>"
|
213 |
-
class="wc_website wc_field_input" name="wc_website" value=""
|
214 |
-
type="url"
|
215 |
-
placeholder="<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_website_text'] ?>"/>
|
216 |
-
</div>
|
217 |
-
<?php } ?>
|
218 |
-
<input type="button" name="submit"
|
219 |
-
value="<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_submit_text']; ?>"
|
220 |
-
id="wc_comm-<?php echo $unique_id; ?>"
|
221 |
-
class="wc_comm_submit button alt"/>
|
222 |
-
</div>
|
223 |
-
<div style="clear:both"></div>
|
224 |
-
</div>
|
225 |
-
<?php if ($wc_core->wc_options_serialized->wc_show_hide_comment_checkbox || $wc_core->wc_options_serialized->wc_show_hide_reply_checkbox || $wc_core->wc_options_serialized->wc_show_hide_all_reply_checkbox) { ?>
|
226 |
-
<span
|
227 |
-
class="wc_manage_subscribtions" <?php if (class_exists('Prompt_Comment_Form_Handling') && $wc_core->wc_options_serialized->wc_use_postmatic_for_comment_notification) echo 'style="display:none"' ?>><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_manage_subscribtions']; ?> ∨</span>
|
228 |
<?php } ?>
|
229 |
-
<div
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
class="wc_notification_new_comment"
|
247 |
-
value="wc_notification_new_comment" <?php echo $post_sub_status; ?>
|
248 |
-
type="checkbox"
|
249 |
-
name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/> <label
|
250 |
-
class="wc-label-comment-notify"
|
251 |
-
for="wc_notification_new_comment-<?php echo $unique_id; ?>"><?php _e('Participate in this discussion via email', 'wpdiscuz'); ?></label>
|
252 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
} else {
|
254 |
-
if ($current_user->ID && $wc_core->wc_db_helper->
|
255 |
-
$wc_confirmation_phrase = ($wc_is_user_subscription_confirmed == 1) ? $wc_core->wc_options_serialized->wc_phrases['
|
256 |
?>
|
257 |
-
<label class="wc-label-
|
258 |
-
|
259 |
-
href="<?php echo $wc_core->wc_db_helper->wc_unsubscribe_link($post->ID, $current_user->user_email, 'post'); ?>"
|
260 |
-
rel="nofollow"
|
261 |
-
class="unsubscribe"><?php echo $wc_subscription_phrase; ?></a></label>
|
262 |
-
<?php
|
263 |
} else {
|
264 |
-
if ($
|
265 |
-
$wc_confirmation_phrase = ($wc_is_user_subscription_confirmed == 1) ? $wc_core->wc_options_serialized->wc_phrases['wc_subscribed_on_all_comment'] : $wc_core->wc_options_serialized->wc_phrases['wc_confirm_email'];
|
266 |
?>
|
267 |
-
<label class="wc-
|
268 |
-
style="cursor: default;"><?php echo $wc_confirmation_phrase; ?> |
|
269 |
-
<a href="<?php echo $wc_core->wc_db_helper->wc_unsubscribe_link($post->ID, $current_user->user_email, 'all_comment'); ?>"
|
270 |
-
rel="nofollow"
|
271 |
-
class="unsubscribe"><?php echo $wc_subscription_phrase; ?></a></label>
|
272 |
-
<br/>
|
273 |
-
<?php
|
274 |
-
} else {
|
275 |
-
if ($wc_core->wc_options_serialized->wc_show_hide_reply_checkbox || $wc_core->wc_options_serialized->wc_show_hide_all_reply_checkbox || $wc_core->wc_options_serialized->wc_show_hide_comment_checkbox) {
|
276 |
-
?>
|
277 |
-
<input id="wc_notification_none-<?php echo $unique_id; ?>"
|
278 |
-
class="wc_notification_none" <?php echo $none_status; ?>
|
279 |
-
value="wc_notification_none" type="radio"
|
280 |
-
name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/>
|
281 |
-
<label class="wc-notification-none"
|
282 |
-
for="wc_notification_none-<?php echo $unique_id; ?>"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_notify_none']; ?></label>
|
283 |
-
<br/>
|
284 |
<?php
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
class="wc_notification_new_reply"
|
290 |
-
value="wc_notification_new_reply" type="radio"
|
291 |
-
name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/>
|
292 |
-
<label class="wc-label-reply-notify"
|
293 |
-
for="wc_notification_new_reply-<?php echo $unique_id; ?>"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_notify_on_new_reply']; ?></label>
|
294 |
-
<br/>
|
295 |
<?php
|
296 |
-
|
297 |
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
class="wc_notification_all_new_reply"
|
302 |
-
value="wc_notification_all_new_reply" type="radio"
|
303 |
-
name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/>
|
304 |
-
<label class="wc-label-all-reply-notify"
|
305 |
-
for="wc_notification_all_new_reply-<?php echo $unique_id; ?>"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_notify_on_all_new_reply']; ?></label>
|
306 |
-
<br/>
|
307 |
<?php
|
308 |
-
|
309 |
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
class="wc_notification_new_comment"
|
314 |
-
value="wc_notification_new_comment" <?php echo $post_sub_status; ?>
|
315 |
-
type="radio"
|
316 |
-
name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/>
|
317 |
-
<label class="wc-label-comment-notify"
|
318 |
-
for="wc_notification_new_comment-<?php echo $unique_id; ?>"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_notify_on_new_comment']; ?></label>
|
319 |
-
<br/>
|
320 |
<?php
|
321 |
-
}
|
322 |
}
|
323 |
}
|
324 |
}
|
325 |
-
|
326 |
-
|
327 |
-
</div>
|
328 |
|
329 |
</div>
|
330 |
-
<input type="hidden" name="wc_comment_post_ID" value="<?php echo $post->ID; ?>"
|
331 |
-
id="wc_comment_post_ID-<?php echo $unique_id; ?>"/>
|
332 |
-
<input type="hidden" name="wc_comment_parent" value="0"
|
333 |
-
id="wc_comment_parent-<?php echo $unique_id; ?>"/>
|
334 |
-
</form>
|
335 |
|
336 |
-
|
337 |
-
<
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
</p>
|
343 |
<?php
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
<div class="
|
351 |
-
|
352 |
-
<div class="wc_new_reply"><span class="wc_new_reply_button_text"></span></div>
|
353 |
-
<div style="clear:both"></div>
|
354 |
-
</div>
|
355 |
<div style="clear:both"></div>
|
356 |
-
|
357 |
-
|
358 |
-
|
|
|
|
|
359 |
<div class="comments-area" style="border:none;">
|
360 |
-
|
361 |
-
<?php } else { ?>
|
362 |
<div class="comments-area" style="display:none">
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
</div>
|
374 |
<span style="display: none;">
|
375 |
-
<input type="hidden" name="wc_home_url" value="<?php echo plugins_url(); ?>" id="wc_home_url"/>
|
376 |
-
<input type="hidden" name="wc_plugin_dir_url" value="<?php echo WC_Core::$PLUGIN_DIRECTORY; ?>"
|
377 |
-
|
378 |
-
<input type="hidden" name="
|
379 |
-
<input type="hidden" name="
|
380 |
-
|
381 |
-
<input type="hidden" name="wc_parent_comments_count" id="wc_parent_comments_count"
|
382 |
-
value="<?php echo $wc_parent_comments_count; ?>"/>
|
383 |
-
<input type="hidden" name="wc_curr_user_comment_count" id="wc_curr_user_comment_count"
|
384 |
-
class="wc_curr_user_comment_count" value="0"/>
|
385 |
<?php
|
386 |
$wc_all_comments_count_old = $post->comment_count;
|
387 |
$wc_last_comment_id = $wc_core->wc_db_helper->get_last_comment_id_by_post_id($post->ID);
|
388 |
-
?>
|
389 |
-
<input type="hidden" name="wc_last_comment_id" value="<?php echo $wc_last_comment_id; ?>"
|
390 |
-
|
391 |
-
<input type="hidden" name="
|
392 |
-
|
393 |
-
<input type="hidden" name="
|
394 |
-
value="<?php echo $wc_all_comments_count_old; ?>" id="wc_all_comments_count_old"/>
|
395 |
-
<input type="hidden" name="wc_comment_list_update_type"
|
396 |
-
value="<?php echo $wc_comment_list_update_type; ?>" id="wc_comment_list_update_type"/>
|
397 |
-
<input type="hidden" name="wc_comment_list_update_timer"
|
398 |
-
value="<?php echo $wc_core->wc_options_serialized->wc_comment_list_update_timer; ?>"
|
399 |
-
id="wc_comment_list_update_timer"/>
|
400 |
|
401 |
-
<input type="hidden" name="wc_last_new_comment_id" value="<?php echo $wc_last_comment_id; ?>"
|
402 |
-
|
403 |
-
<input type="hidden" name="
|
404 |
-
id="wc_last_new_reply_id"/>
|
405 |
-
<input type="hidden" name="wc_comment_reply_checkboxes_default_checked"
|
406 |
-
value="<?php echo $wc_core->wc_options_serialized->wc_comment_reply_checkboxes_default_checked; ?>"
|
407 |
-
id="wc_comment_reply_checkboxes_default_checked"/>
|
408 |
<input type="hidden" value="<?php echo $post->ID; ?>" id="wpdiscuz_current_post_id"/>
|
409 |
</span>
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
<?php
|
422 |
-
<?php } ?>
|
423 |
-
<div id="wc_openModalFormAction" class="modalDialog">
|
424 |
-
<div id="wc_response_info" class="wc_modal">
|
425 |
-
<div id="wc_response_info_box">
|
426 |
-
<a href="#close" title="Close" class="close"> </a>
|
427 |
-
<img width="64" height="64"
|
428 |
-
src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/loader/ajax-loader-200x200.gif'); ?>"/>
|
429 |
-
</div>
|
430 |
-
</div>
|
431 |
</div>
|
432 |
</div>
|
433 |
-
<!-- wpcomm -->
|
434 |
</div>
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
@preg_match_all('|<div|is', $html, $wc_div_open, PREG_SET_ORDER);
|
441 |
-
@preg_match_all('|</div|is', $html, $wc_div_close, PREG_SET_ORDER);
|
442 |
-
$wc_div_open = count((array)$wc_div_open);
|
443 |
-
$wc_div_close = count((array)$wc_div_close);
|
444 |
-
$wc_div_delta = $wc_div_open - $wc_div_close;
|
445 |
-
if ($wc_div_delta) {
|
446 |
-
$wc_div_end_html = str_repeat('</div>', $wc_div_delta);
|
447 |
-
$html = $html . $wc_div_end_html;
|
448 |
-
}
|
449 |
-
//Custom case for social login plugin
|
450 |
-
if (strpos($html, 'champ_login') !== FALSE) {
|
451 |
-
if (preg_match_all('|<li[^><]*>.+?</li>|is', $html, $wc_social_buttons, PREG_SET_ORDER)) {
|
452 |
-
foreach ($wc_social_buttons as $wc_social_button) {
|
453 |
-
$wc_social_buttons_array[] = $wc_social_button[0];
|
454 |
-
}
|
455 |
-
$html = '<div class="wp-social-login-widget"><div class="wp-social-login-connect-with_by_the_champ">' . __('Connect with') . ':</div><div class="wp-social-login-provider-list"><ul class="wc_social_login_by_the_champ">' . implode('', $wc_social_buttons_array) . '</ul><div style="clear:both"></div></div></div>';
|
456 |
-
}
|
457 |
-
}
|
458 |
-
return $html;
|
459 |
-
}
|
460 |
-
?>
|
3 |
get_currentuserinfo();
|
4 |
|
5 |
error_reporting(0);
|
6 |
+
|
7 |
+
if ($wc_core->wc_db_helper->is_phrase_exists('wc_leave_a_reply_text')) {
|
8 |
+
$wc_core->wc_options_serialized->wc_phrases = $wc_core->wc_db_helper->get_phrases();
|
9 |
+
}
|
10 |
+
|
11 |
$wc_comment_list_update_type = $wc_core->wc_options_serialized->wc_comment_list_update_type;
|
|
|
12 |
?>
|
13 |
+
<script type="text/javascript">
|
14 |
+
// initialize the wpdiscuzValidator function
|
15 |
+
wpdiscuzValidator.message['invalid'] = '<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_invalid_field']; ?>';
|
16 |
+
wpdiscuzValidator.message['empty'] = '<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_error_empty_text']; ?>';
|
17 |
+
wpdiscuzValidator.message['email'] = '<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_error_email_text']; ?>';
|
18 |
+
wpdiscuzValidator.message['url'] = '<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_error_url_text']; ?>';
|
|
|
19 |
|
20 |
+
jQuery(document).ready(function ($) {
|
21 |
+
$(document).delegate('.wc-toggle', 'click', function () {
|
22 |
+
var toggleID = $(this).attr('id');
|
23 |
+
var uniqueID = toggleID.substring(toggleID.lastIndexOf('-') + 1);
|
24 |
+
$('#wc-comm-' + uniqueID + ' .wc-reply').slideToggle(500, function () {
|
25 |
+
if ($(this).is(':hidden')) {
|
26 |
+
$('#' + toggleID).html('<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_show_replies_text']; ?> ∨');
|
27 |
+
} else {
|
28 |
+
$('#' + toggleID).html('<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_hide_replies_text']; ?> ∧');
|
29 |
+
}
|
|
|
30 |
});
|
31 |
+
});
|
32 |
|
33 |
+
if ($.cookie('wc_author_name') !== '' && $.cookie('wc_author_email')) {
|
34 |
+
$('#wpcomm .wc_name').val($.cookie('wc_author_name'));
|
35 |
+
$('#wpcomm .wc_email').val($.cookie('wc_author_email'));
|
36 |
+
}
|
|
|
|
|
|
|
|
|
37 |
|
38 |
+
$('#wc_unsubscribe_message').delay(7000).fadeOut(1500, function () {
|
39 |
+
$(this).remove();
|
40 |
});
|
41 |
+
|
42 |
+
});
|
43 |
+
</script>
|
44 |
<?php
|
45 |
$textarea_placeholder = '';
|
46 |
if ($post->comment_count) {
|
57 |
$wc_is_name_field_required = ($wc_core->wc_options_serialized->wc_is_name_field_required) ? 'required="required"' : '';
|
58 |
$wc_is_email_field_required = ($wc_core->wc_options_serialized->wc_is_email_field_required) ? 'required="required"' : '';
|
59 |
|
60 |
+
|
61 |
+
ob_start(); do_action('comment_form_top'); $wc_comment_form_top_content = ob_get_contents(); ob_clean();
|
62 |
+
if( strpos('champ_login') !== FALSE ){ if( preg_match_all('|<li[^><]*>.+?</li>|is', $wc_comment_form_top_content, $wc_social_buttons, PREG_SET_ORDER ) ){ foreach( $wc_social_buttons as $wc_social_button ){ $wc_social_buttons_array[] = $wc_social_button[0]; } $wc_comment_form_top_content = '<div class="wp-social-login-widget"><div class="wp-social-login-connect-with_by_the_champ">'.__('Connect with').':</div><div class="wp-social-login-provider-list"><ul class="wc_social_login_by_the_champ">'.implode('', $wc_social_buttons_array).'</ul><div style="clear:both"></div></div></div>'; } }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
?>
|
64 |
+
<div style="clear:both"></div>
|
65 |
|
66 |
+
<?php if (comments_open($post->ID)): ?>
|
67 |
+
<div id="comments" class="comments-area">
|
68 |
+
<?php
|
69 |
+
if (isset($_GET['wpdiscuzSubscribeID']) && isset($_GET['key'])) {
|
70 |
+
$wc_core->wc_unsubscribe($_GET['wpdiscuzSubscribeID'], $_GET['key']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
?>
|
72 |
+
<div id="wc_unsubscribe_message">
|
73 |
+
<span class="wc_unsubscribe_message"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_unsubscribe_message']; ?></span>
|
74 |
+
</div>
|
75 |
<?php
|
76 |
+
}
|
77 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
|
79 |
+
<?php
|
80 |
+
if (isset($_GET['wpdiscuzConfirmID']) && isset($_GET['wpdiscuzConfirmKey']) && isset($_GET['wpDiscuzComfirm'])) {
|
81 |
+
$wc_core->wc_db_helper->wc_notification_confirm($_GET['wpdiscuzConfirmID'], $_GET['wpdiscuzConfirmKey']);
|
82 |
+
?>
|
83 |
+
<div id="wc_unsubscribe_message">
|
84 |
+
<span class="wc_unsubscribe_message"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_comfirm_success_message']; ?></span>
|
85 |
+
</div>
|
86 |
<?php
|
87 |
+
}
|
88 |
+
?>
|
89 |
+
|
90 |
+
<?php if (comments_open($post->ID)) { ?>
|
91 |
+
<h3 id="wc-comment-header"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_leave_a_reply_text']; ?></h3>
|
92 |
+
<?php } ?>
|
93 |
+
<?php do_action('comment_form_before'); ?>
|
94 |
+
<?php
|
95 |
+
if ($wc_core->wc_options_serialized->wc_show_hide_loggedin_username) {
|
96 |
+
if (is_user_logged_in()) {
|
97 |
+
global $current_user;
|
98 |
+
get_currentuserinfo();
|
99 |
+
$user_url = get_author_posts_url($current_user->ID);
|
100 |
+
?>
|
101 |
+
<div id="wc_show_hide_loggedin_username">
|
102 |
<span class="wc_show_hide_loggedin_username">
|
103 |
+
<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_logged_in_as'] . ' <a href="' . $user_url . '">' . $current_user->display_name . '</a> | <a href="' . wp_logout_url() . '">' . $wc_core->wc_options_serialized->wc_phrases['wc_log_out'] . '</a>'; ?>
|
|
|
|
|
|
|
|
|
104 |
</span>
|
105 |
+
</div>
|
106 |
<?php
|
|
|
107 |
}
|
108 |
+
}
|
109 |
+
?>
|
110 |
+
<div id="wpcomm">
|
111 |
+
<div class="wc-comment-bar">
|
112 |
+
<p class="wc-comment-title">
|
113 |
+
<?php echo ($post->comment_count) ? $header_text : $wc_core->wc_options_serialized->wc_phrases['wc_be_the_first_text']; ?>
|
114 |
+
</p>
|
115 |
+
<div style="clear:both"></div>
|
116 |
+
</div>
|
117 |
+
<div class="wc_social_plugin_wrapper">
|
118 |
+
<?php echo $wc_comment_form_top_content; ?>
|
119 |
+
</div>
|
120 |
+
<div class="wc-form-wrapper">
|
121 |
+
<?php
|
122 |
+
if ($wc_core->is_guest_can_comment()) {
|
123 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
+
<form action="" method="post" id="wc_comm_form-<?php echo $unique_id; ?>" class="wc_comm_form wc_main_comm_form">
|
126 |
+
<div class="wc-field-comment">
|
127 |
+
<div class="wc-field-avatararea">
|
128 |
+
<?php echo $wc_core->wc_helper->get_comment_author_avatar(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
</div>
|
130 |
+
<div class="wpdiscuz-item wc-field-textarea"><textarea id="wc_comment-<?php echo $unique_id; ?>" class="wc_comment wc_field_input" name="wc_comment" required="required" placeholder="<?php echo $textarea_placeholder; ?>"></textarea></div>
|
131 |
+
<div style="clear:both"></div>
|
132 |
+
</div>
|
133 |
+
<div id="wc-form-footer-<?php echo $unique_id; ?>" class="wc-form-footer">
|
134 |
+
<?php if (!is_user_logged_in()) { ?>
|
135 |
+
<div class="wc-author-data">
|
136 |
+
<div class="wc-field-name wpdiscuz-item"><input id="wc_name-<?php echo $unique_id; ?>" class="wc_name wc_field_input" name="wc_name" <?php echo $wc_is_name_field_required; ?> value="" type="text" placeholder="<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_name_text'] ?>"/></div>
|
137 |
+
<div class="wc-field-email wpdiscuz-item"><input id="wc_email-<?php echo $unique_id; ?>" class="wc_email wc_field_input email" name="wc_email" <?php echo $wc_is_email_field_required; ?> value="" type="email" placeholder="<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_email_text']; ?>"/></div>
|
138 |
+
<div style="clear:both"></div>
|
139 |
+
</div>
|
140 |
+
<?php } ?>
|
141 |
+
<div class="wc-form-submit">
|
142 |
+
<?php if (!$wc_core->wc_options_serialized->wc_captcha_show_hide) { ?>
|
143 |
+
<?php if (!is_user_logged_in()) { ?>
|
144 |
+
<div class="wc-field-captcha wpdiscuz-item">
|
145 |
+
<input id="wc_captcha-<?php echo $unique_id; ?>" class="wc_field_input wc_field_captcha" name="wc_captcha" required="required" value="" type="text" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
<span class="wc-label wc-captcha-label">
|
147 |
+
<img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/captcha/captcha.php?comm_id=' . $post->ID . '-' . 0); ?>" id="wc_captcha_img-<?php echo $unique_id; ?>" rel="nofollow"/>
|
148 |
+
<img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/refresh-16x16.png'); ?>" id="wc_captcha_refresh_img-<?php echo $unique_id; ?>" class="wc_captcha_refresh_img" rel="nofollow"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
</span>
|
150 |
+
<span class="captcha_msg"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_captcha_text']; ?></span>
|
151 |
+
</div>
|
|
|
|
|
152 |
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
<?php } ?>
|
154 |
+
<div class="wc-field-submit">
|
155 |
+
<?php if (!is_user_logged_in() && !$wc_core->wc_options_serialized->wc_weburl_show_hide) { ?>
|
156 |
+
<div class="wc-field-website wpdiscuz-item"><input id="wc_website-<?php echo $unique_id; ?>" class="wc_website wc_field_input" name="wc_website" value="" type="url" placeholder="<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_website_text'] ?>"/></div>
|
157 |
+
<?php } ?>
|
158 |
+
<input type="button" name="submit" value="<?php echo $wc_core->wc_options_serialized->wc_phrases['wc_submit_text']; ?>" id="wc_comm-<?php echo $unique_id; ?>" class="wc_comm_submit button alt"/>
|
159 |
+
</div>
|
160 |
+
<div style="clear:both"></div>
|
161 |
+
</div>
|
162 |
+
<?php if ($wc_core->wc_options_serialized->wc_show_hide_comment_checkbox || $wc_core->wc_options_serialized->wc_show_hide_reply_checkbox || $wc_core->wc_options_serialized->wc_show_hide_all_reply_checkbox) { ?>
|
163 |
+
<span class="wc_manage_subscribtions" <?php if (class_exists('Prompt_Comment_Form_Handling') && $wc_core->wc_options_serialized->wc_use_postmatic_for_comment_notification) echo 'style="display:none"' ?>><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_manage_subscribtions']; ?> ∨</span>
|
164 |
+
<?php } ?>
|
165 |
+
<div class="wc_notification_checkboxes" <?php if (class_exists('Prompt_Comment_Form_Handling') && $wc_core->wc_options_serialized->wc_use_postmatic_for_comment_notification) echo 'style="display:block"' ?>>
|
166 |
+
<?php
|
167 |
+
$wc_is_user_subscription_confirmed = $wc_core->wc_db_helper->wc_is_user_subscription_confirmed($post->ID, $current_user->user_email);
|
168 |
+
$wc_subscription_phrase = ($wc_is_user_subscription_confirmed == 1) ? $wc_core->wc_options_serialized->wc_phrases['wc_unsubscribe'] : $wc_core->wc_options_serialized->wc_phrases['wc_ignore_subscription'];
|
169 |
|
170 |
+
if ($wc_core->wc_options_serialized->wc_comment_reply_checkboxes_default_checked == 1) {
|
171 |
+
$none_status = '';
|
172 |
+
$post_sub_status = 'checked="checked"';
|
173 |
+
} else {
|
174 |
+
$none_status = 'checked="checked"';
|
175 |
+
$post_sub_status = '';
|
176 |
+
}
|
177 |
|
178 |
+
if (class_exists('Prompt_Comment_Form_Handling') && $wc_core->wc_options_serialized->wc_use_postmatic_for_comment_notification) {
|
179 |
+
?>
|
180 |
+
<input id="wc_notification_new_comment-<?php echo $unique_id; ?>" class="wc_notification_new_comment" value="wc_notification_new_comment" <?php echo $post_sub_status; ?> type="checkbox" name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/> <label class="wc-label-comment-notify" for="wc_notification_new_comment-<?php echo $unique_id; ?>"><?php _e('Participate in this discussion via email', 'Postmatic'); ?></label>
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
<?php
|
182 |
+
} else {
|
183 |
+
if ($current_user->ID && $wc_core->wc_db_helper->wc_has_post_notification($post->ID, $current_user->user_email)) {
|
184 |
+
$wc_confirmation_phrase = ($wc_is_user_subscription_confirmed == 1) ? $wc_core->wc_options_serialized->wc_phrases['wc_subscribed_on_post'] : $wc_core->wc_options_serialized->wc_phrases['wc_confirm_email'];
|
185 |
+
?>
|
186 |
+
<label class="wc-label-comment-notify" style="cursor: default;"><?php echo $wc_confirmation_phrase; ?> | <a href="<?php echo $wc_core->wc_db_helper->wc_unsubscribe_link($post->ID, $current_user->user_email, 'post'); ?>" rel="nofollow" class="unsubscribe"><?php echo $wc_subscription_phrase; ?></a></label>
|
187 |
+
<?php
|
188 |
} else {
|
189 |
+
if ($current_user->ID && $wc_core->wc_db_helper->wc_has_all_comments_notification($post->ID, $current_user->user_email)) {
|
190 |
+
$wc_confirmation_phrase = ($wc_is_user_subscription_confirmed == 1) ? $wc_core->wc_options_serialized->wc_phrases['wc_subscribed_on_all_comment'] : $wc_core->wc_options_serialized->wc_phrases['wc_confirm_email'];
|
191 |
?>
|
192 |
+
<label class="wc-label-all-reply-notify" style="cursor: default;"><?php echo $wc_confirmation_phrase; ?> | <a href="<?php echo $wc_core->wc_db_helper->wc_unsubscribe_link($post->ID, $current_user->user_email, 'all_comment'); ?>" rel="nofollow" class="unsubscribe"><?php echo $wc_subscription_phrase; ?></a></label><br/>
|
193 |
+
<?php
|
|
|
|
|
|
|
|
|
194 |
} else {
|
195 |
+
if ($wc_core->wc_options_serialized->wc_show_hide_reply_checkbox || $wc_core->wc_options_serialized->wc_show_hide_all_reply_checkbox || $wc_core->wc_options_serialized->wc_show_hide_comment_checkbox) {
|
|
|
196 |
?>
|
197 |
+
<input id="wc_notification_none-<?php echo $unique_id; ?>" class="wc_notification_none" <?php echo $none_status; ?> value="wc_notification_none" type="radio" name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/> <label class="wc-notification-none" for="wc_notification_none-<?php echo $unique_id; ?>"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_notify_none']; ?></label><br />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
<?php
|
199 |
+
}
|
200 |
+
if ($wc_core->wc_options_serialized->wc_show_hide_reply_checkbox) {
|
201 |
+
?>
|
202 |
+
<input id="wc_notification_new_reply-<?php echo $unique_id; ?>" class="wc_notification_new_reply" value="wc_notification_new_reply" type="radio" name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/> <label class="wc-label-reply-notify" for="wc_notification_new_reply-<?php echo $unique_id; ?>"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_notify_on_new_reply']; ?></label><br />
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
<?php
|
204 |
+
}
|
205 |
|
206 |
+
if ($wc_core->wc_options_serialized->wc_show_hide_all_reply_checkbox) {
|
207 |
+
?>
|
208 |
+
<input id="wc_notification_all_new_reply-<?php echo $unique_id; ?>" class="wc_notification_all_new_reply" value="wc_notification_all_new_reply" type="radio" name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/> <label class="wc-label-all-reply-notify" for="wc_notification_all_new_reply-<?php echo $unique_id; ?>"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_notify_on_all_new_reply']; ?></label><br />
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
<?php
|
210 |
+
}
|
211 |
|
212 |
+
if ($wc_core->wc_options_serialized->wc_show_hide_comment_checkbox) {
|
213 |
+
?>
|
214 |
+
<input id="wc_notification_new_comment-<?php echo $unique_id; ?>" class="wc_notification_new_comment" value="wc_notification_new_comment" <?php echo $post_sub_status; ?> type="radio" name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/> <label class="wc-label-comment-notify" for="wc_notification_new_comment-<?php echo $unique_id; ?>"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_notify_on_new_comment']; ?></label><br />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
<?php
|
|
|
216 |
}
|
217 |
}
|
218 |
}
|
219 |
+
}
|
220 |
+
?>
|
|
|
221 |
|
222 |
</div>
|
|
|
|
|
|
|
|
|
|
|
223 |
|
224 |
+
</div>
|
225 |
+
<input type="hidden" name="wc_comment_post_ID" value="<?php echo $post->ID; ?>" id="wc_comment_post_ID-<?php echo $unique_id; ?>" />
|
226 |
+
<input type="hidden" name="wc_comment_parent" value="0" id="wc_comment_parent-<?php echo $unique_id; ?>" />
|
227 |
+
</form>
|
228 |
+
<?php } else { ?>
|
229 |
+
<p class="wc-must-login"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_you_must_be_text']; ?> <a href="<?php echo wp_login_url(); ?>"><?php echo $wc_core->wc_options_serialized->wc_phrases['wc_logged_in_text']; ?></a> <?php echo $wc_core->wc_options_serialized->wc_phrases['wc_to_post_comment_text']; ?></p>
|
|
|
230 |
<?php
|
231 |
+
}
|
232 |
+
?>
|
233 |
+
</div>
|
234 |
+
<hr/>
|
235 |
+
<?php if ($wc_comment_list_update_type == 2) { ?>
|
236 |
+
<div class="wc_new_comment_and_replies">
|
237 |
+
<div class="wc_new_comment"><span class="wc_new_comment_button_text"></span></div>
|
238 |
+
<div class="wc_new_reply"><span class="wc_new_reply_button_text"></span></div>
|
|
|
|
|
|
|
239 |
<div style="clear:both"></div>
|
240 |
+
</div>
|
241 |
+
<div style="clear:both"></div>
|
242 |
+
<?php } ?>
|
243 |
+
<?php else: ?>
|
244 |
+
<?php if ($post->comment_count > 0): ?>
|
245 |
<div class="comments-area" style="border:none;">
|
246 |
+
<?php else: ?>
|
|
|
247 |
<div class="comments-area" style="display:none">
|
248 |
+
<?php endif; ?>
|
249 |
+
<div id="wpcomm" style="border:none;">
|
250 |
+
<?php endif; ?>
|
251 |
+
<div class="wc-thread-wrapper">
|
252 |
+
<?php
|
253 |
+
$wc_wp_comments = $wc_core->get_wp_comments(1);
|
254 |
+
$wc_parent_comments_count = $wc_wp_comments['wc_parent_comments_count'];
|
255 |
+
echo $wc_wp_comments['wc_list'];
|
256 |
+
?>
|
257 |
+
</div>
|
|
|
258 |
<span style="display: none;">
|
259 |
+
<input type="hidden" name="wc_home_url" value="<?php echo plugins_url(); ?>" id="wc_home_url" />
|
260 |
+
<input type="hidden" name="wc_plugin_dir_url" value="<?php echo WC_Core::$PLUGIN_DIRECTORY; ?>" id="wc_plugin_dir_url" />
|
261 |
+
<input type="hidden" name="wc_comments_offset" id="wc_comments_offset" value="1" />
|
262 |
+
<input type="hidden" name="wc_parent_per_page" id="wc_parent_per_page" value="<?php echo $wc_core->wc_options_serialized->wc_comment_count; ?>" />
|
263 |
+
<input type="hidden" name="wc_parent_comments_count" id="wc_parent_comments_count" value="<?php echo $wc_parent_comments_count; ?>" />
|
264 |
+
<input type="hidden" name="wc_curr_user_comment_count" id="wc_curr_user_comment_count" class="wc_curr_user_comment_count" value="0" />
|
|
|
|
|
|
|
|
|
265 |
<?php
|
266 |
$wc_all_comments_count_old = $post->comment_count;
|
267 |
$wc_last_comment_id = $wc_core->wc_db_helper->get_last_comment_id_by_post_id($post->ID);
|
268 |
+
?>
|
269 |
+
<input type="hidden" name="wc_last_comment_id" value="<?php echo $wc_last_comment_id; ?>" id="wc_last_comment_id" />
|
270 |
+
<input type="hidden" name="wc_last_comment_id_before_update" value="<?php echo $wc_last_comment_id; ?>" id="wc_last_comment_id_before_update" />
|
271 |
+
<input type="hidden" name="wc_all_comments_count_old" value="<?php echo $wc_all_comments_count_old; ?>" id="wc_all_comments_count_old" />
|
272 |
+
<input type="hidden" name="wc_comment_list_update_type" value="<?php echo $wc_comment_list_update_type; ?>" id="wc_comment_list_update_type" />
|
273 |
+
<input type="hidden" name="wc_comment_list_update_timer" value="<?php echo $wc_core->wc_options_serialized->wc_comment_list_update_timer; ?>" id="wc_comment_list_update_timer" />
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
|
275 |
+
<input type="hidden" name="wc_last_new_comment_id" value="<?php echo $wc_last_comment_id; ?>" id="wc_last_new_comment_id" />
|
276 |
+
<input type="hidden" name="wc_last_new_reply_id" value="<?php echo $wc_last_comment_id; ?>" id="wc_last_new_reply_id" />
|
277 |
+
<input type="hidden" name="wc_comment_reply_checkboxes_default_checked" value="<?php echo $wc_core->wc_options_serialized->wc_comment_reply_checkboxes_default_checked; ?>" id="wc_comment_reply_checkboxes_default_checked" />
|
|
|
|
|
|
|
|
|
278 |
<input type="hidden" value="<?php echo $post->ID; ?>" id="wpdiscuz_current_post_id"/>
|
279 |
</span>
|
280 |
+
<div style="clear:both"></div>
|
281 |
+
<?php if (comments_open($post->ID)) { ?>
|
282 |
+
<?php if ($wc_core->wc_options_serialized->wc_show_plugin_powerid_by) { ?>
|
283 |
+
<div class="by-wpdiscuz"><span id="awpdiscuz" onclick='javascript:document.getElementById("bywpdiscuz").style.display = "inline";
|
284 |
+
document.getElementById("awpdiscuz").style.display = "none";'><img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/plugin-icon/icon_info.png'); ?>" align="absmiddle" class="wpdimg"/></span> <a href="http://gvectors.com/wpdiscuz/" id="bywpdiscuz" title="wpDiscuz v<?php echo get_option($wc_core->wc_version_slug); ?> - Interactive Comment System">wpDiscuz</a></div>
|
285 |
+
<?php } ?>
|
286 |
+
<?php } ?>
|
287 |
+
<div id="wc_openModalFormAction" class="modalDialog">
|
288 |
+
<div id="wc_response_info" class="wc_modal">
|
289 |
+
<div id="wc_response_info_box">
|
290 |
+
<a href="#close" title="Close" class="close"> </a>
|
291 |
+
<img width="64" height="64" src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/loader/ajax-loader-200x200.gif'); ?>" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
</div>
|
293 |
</div>
|
|
|
294 |
</div>
|
295 |
+
</div><!-- wpcomm -->
|
296 |
+
</div><!-- comments-area -->
|
297 |
+
<?php if (comments_open($post->ID)) { ?>
|
298 |
+
<?php do_action('comment_form_after'); ?>
|
299 |
+
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
comment-form/tpl-comment.php
CHANGED
@@ -6,15 +6,13 @@ class WC_Comment_Template_Builder {
|
|
6 |
public $wc_db_helper;
|
7 |
public $wc_options;
|
8 |
public $wc_options_serialized;
|
9 |
-
private $wc_validate_comment_text_length;
|
10 |
|
11 |
function __construct($wc_helper, $wc_db_helper, $wc_options, $wc_options_serialized) {
|
12 |
$this->wc_helper = $wc_helper;
|
13 |
$this->wc_db_helper = $wc_db_helper;
|
14 |
$this->wc_options = $wc_options;
|
15 |
$this->wc_options_serialized = $wc_options_serialized;
|
16 |
-
add_action('plugins_loaded', array(&$this
|
17 |
-
$this->wc_validate_comment_text_length = (intval($this->wc_options_serialized->wc_comment_text_max_length)) ? 'data-validate-length-range="1,' . $this->wc_options_serialized->wc_comment_text_max_length . '"' : '';
|
18 |
}
|
19 |
|
20 |
/**
|
@@ -27,16 +25,24 @@ class WC_Comment_Template_Builder {
|
|
27 |
get_currentuserinfo();
|
28 |
|
29 |
|
30 |
-
$comment_content = wp_kses($comment->comment_content,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
$comment_content = $this->wc_helper->make_clickable($comment_content);
|
33 |
$comment_content = apply_filters('comment_text', $comment_content, $comment, $args);
|
34 |
-
$hide_avatar_style = $this->wc_options_serialized->wc_avatar_show_hide ? 'style = "margin-left : 0;"' : '';
|
35 |
|
36 |
$vote_cls = '';
|
37 |
$vote_title_text = '';
|
38 |
$user = get_user_by('id', $comment->user_id);
|
39 |
-
$
|
40 |
$wc_comment_author_url = ('http://' == $comment->comment_author_url) ? '' : $comment->comment_author_url;
|
41 |
$wc_comment_author_url = esc_url($wc_comment_author_url, array('http', 'https'));
|
42 |
$wc_comment_author_url = apply_filters('get_comment_author_url', $wc_comment_author_url, $comment->comment_ID, $comment);
|
@@ -44,17 +50,17 @@ class WC_Comment_Template_Builder {
|
|
44 |
$wc_comment_author_url = $wc_comment_author_url ? $wc_comment_author_url : $user->user_url;
|
45 |
$post = get_post($comment->comment_post_ID);
|
46 |
if ($user->ID == $post->post_author) {
|
47 |
-
$
|
48 |
$author_title = $this->wc_options_serialized->wc_phrases['wc_user_title_author_text'];
|
49 |
} else if (in_array('administrator', $user->roles)) {
|
50 |
-
$
|
51 |
$author_title = $this->wc_options_serialized->wc_phrases['wc_user_title_admin_text'];
|
52 |
} else {
|
53 |
-
$
|
54 |
$author_title = $this->wc_options_serialized->wc_phrases['wc_user_title_member_text'];
|
55 |
}
|
56 |
} else {
|
57 |
-
$
|
58 |
$author_title = $this->wc_options_serialized->wc_phrases['wc_user_title_guest_text'];
|
59 |
}
|
60 |
|
@@ -74,11 +80,12 @@ class WC_Comment_Template_Builder {
|
|
74 |
$share_text = $this->wc_options_serialized->wc_phrases['wc_share_text'];
|
75 |
$comment_wrapper_class = ($comment->comment_parent) ? 'wc-comment wc-reply' : 'wc-comment';
|
76 |
$textarea_placeholder = $this->get_textarea_placeholder($comment);
|
77 |
-
|
78 |
-
$vote_count = $
|
79 |
$unique_id = $this->get_unique_id($comment);
|
80 |
|
81 |
-
$wc_author_name = $
|
|
|
82 |
$wc_profile_url = $this->get_profile_url($user);
|
83 |
|
84 |
if ($wc_profile_url) {
|
@@ -88,12 +95,12 @@ class WC_Comment_Template_Builder {
|
|
88 |
}
|
89 |
|
90 |
if ($wc_comment_author_url) {
|
91 |
-
$wc_author_name = "<a
|
92 |
} else {
|
93 |
if ($wc_profile_url) {
|
94 |
$wc_author_name = "<a href='$wc_profile_url'>" . $wc_author_name . "</a>";
|
95 |
}
|
96 |
-
}
|
97 |
|
98 |
$child_comments = get_comments(array(
|
99 |
'parent' => $comment->comment_ID,
|
@@ -116,18 +123,16 @@ class WC_Comment_Template_Builder {
|
|
116 |
$wc_visible_parent_comment_ids = isset($args['wc_visible_parent_comment_ids']) ? $args['wc_visible_parent_comment_ids'] : null;
|
117 |
$comment_content_class = ($wc_visible_parent_comment_ids != null && !in_array($comment->comment_ID, $wc_visible_parent_comment_ids)) ? ' wc_new_loaded_comment' : '';
|
118 |
|
119 |
-
$output = '<div id="wc-comm-' . $unique_id . '" class="' . $comment_wrapper_class . ' ' . $
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
$output .= userpro_show_badges($comment->user_id, $inline = true);
|
127 |
-
}
|
128 |
-
$output .= '</div>';
|
129 |
}
|
130 |
-
$output .= '
|
|
|
131 |
$output .= '<div class="wc-comment-header"><div class="wc-comment-author">' . $wc_author_name . '</div><div class="wc-comment-date">' . $posted_date . '</div><div style="clear:both"></div></div>';
|
132 |
$output .= '<div class="wc-comment-text">' . $comment_content . '</div>';
|
133 |
$output .= '<div class="wc-comment-footer">';
|
@@ -196,11 +201,8 @@ class WC_Comment_Template_Builder {
|
|
196 |
|
197 |
$output_form = '<div class="wc-form-wrapper wc-secondary-forms-wrapper" id="wc-secondary-forms-wrapper-' . $unique_id . '">';
|
198 |
$output_form .= '<div class="wc-secondary-forms-social-content" id="wc-secondary-forms-social-content-' . $unique_id . '"></div>';
|
199 |
-
$output_form .= '<form action="" method="post" id="wc_comm_form-' . $unique_id . '" class="wc_comm_form wc_secondary_form"
|
200 |
-
|
201 |
-
$output_form .= '<div class="wc-field-avatararea">' . $this->wc_helper->wc_form_avatar . '</div>';
|
202 |
-
}
|
203 |
-
$output_form .= '<div class="wc-field-textarea wpdiscuz-item" ' . $hide_avatar_style . '><textarea ' . $this->wc_validate_comment_text_length . ' id="wc_comment-' . $unique_id . '" class="wc_comment wc_field_input" name="wc_comment" required="required" placeholder="' . $textarea_placeholder . '"></textarea></div><div style="clear:both"></div></div>';
|
204 |
|
205 |
$output_form .= '<div id="wc-form-footer-' . $unique_id . '" class="wc-form-footer">';
|
206 |
|
@@ -224,9 +226,9 @@ class WC_Comment_Template_Builder {
|
|
224 |
if (!$this->wc_options_serialized->wc_captcha_show_hide) {
|
225 |
if (!is_user_logged_in()) {
|
226 |
$output_form .= '<div class="wc-field-captcha wpdiscuz-item">';
|
227 |
-
$output_form .= '<input id="wc_captcha-' . $unique_id . '" class="wc_field_input wc_field_captcha" name="wc_captcha" required="required" value="" type="text"
|
228 |
-
$output_form .= '<img rel="nofollow"
|
229 |
-
$output_form .= '<img rel="nofollow"
|
230 |
$output_form .= '</span><span class="captcha_msg">' . $this->wc_options_serialized->wc_phrases['wc_captcha_text'] . '</span></div>';
|
231 |
}
|
232 |
}
|
@@ -260,7 +262,7 @@ class WC_Comment_Template_Builder {
|
|
260 |
}
|
261 |
|
262 |
if (class_exists('Prompt_Comment_Form_Handling') && $this->wc_options_serialized->wc_use_postmatic_for_comment_notification) {
|
263 |
-
$output_form .= '<input id="wc_notification_new_comment-' . $unique_id . '" class="wc_notification_new_comment" value="wc_notification_new_comment" ' . $post_sub_status . 'type="checkbox" name="wc_comment_reply_notification-' . $unique_id . '"/> <label class="wc-label-comment-notify" for="wc_notification_new_comment-' . $unique_id . '">' . __('Participate in this discussion via email',
|
264 |
} else {
|
265 |
if ($current_user->ID && $this->wc_db_helper->wc_has_post_notification($comment->comment_post_ID, $current_user->user_email)) {
|
266 |
$wc_confirmation_phrase = ($wc_is_user_subscription_confirmed == 1) ? $this->wc_options_serialized->wc_phrases['wc_subscribed_on_post'] : $this->wc_options_serialized->wc_phrases['wc_confirm_email'];
|
@@ -343,6 +345,13 @@ class WC_Comment_Template_Builder {
|
|
343 |
return $user_can_comment;
|
344 |
}
|
345 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
/**
|
347 |
*
|
348 |
* get profile url
|
@@ -376,20 +385,6 @@ class WC_Comment_Template_Builder {
|
|
376 |
return $wc_profile_url_filter ? $wc_profile_url_filter : $wc_profile_url;
|
377 |
}
|
378 |
|
379 |
-
public function get_author_name($comment) {
|
380 |
-
if (class_exists('UM_API') && isset($comment->user_id) && $comment->user_id) {
|
381 |
-
um_fetch_user($comment->user_id);
|
382 |
-
$author_name = um_user('display_name');
|
383 |
-
um_reset_user();
|
384 |
-
}else if(isset($comment->user_id) && $comment->user_id){
|
385 |
-
$author_name = get_the_author_meta( 'display_name', $comment->user_id );
|
386 |
-
$author_name = $author_name ? $author_name : get_the_author_meta('user_login',$comment->user_id );
|
387 |
-
} else {
|
388 |
-
$author_name = $comment->comment_author ? $comment->comment_author : __('Anonymous', 'wpdiscuz');
|
389 |
-
}
|
390 |
-
return $author_name;
|
391 |
-
}
|
392 |
-
|
393 |
/**
|
394 |
* returns placeholder for textarea from options page phrases
|
395 |
*/
|
6 |
public $wc_db_helper;
|
7 |
public $wc_options;
|
8 |
public $wc_options_serialized;
|
|
|
9 |
|
10 |
function __construct($wc_helper, $wc_db_helper, $wc_options, $wc_options_serialized) {
|
11 |
$this->wc_helper = $wc_helper;
|
12 |
$this->wc_db_helper = $wc_db_helper;
|
13 |
$this->wc_options = $wc_options;
|
14 |
$this->wc_options_serialized = $wc_options_serialized;
|
15 |
+
add_action('plugins_loaded', array(&$this, 'init_phrases_on_load'), 2129);
|
|
|
16 |
}
|
17 |
|
18 |
/**
|
25 |
get_currentuserinfo();
|
26 |
|
27 |
|
28 |
+
$comment_content = wp_kses($comment->comment_content, array(
|
29 |
+
'br' => array(),
|
30 |
+
'a' => array('href' => array(), 'title' => array(), 'target' => array(), 'rel' => array(), 'download' => array(), 'hreflang' => array(), 'media' => array(), 'type' => array()),
|
31 |
+
'i' => array(),
|
32 |
+
'b' => array(),
|
33 |
+
'u' => array(),
|
34 |
+
'strong' => array(),
|
35 |
+
'p' => array(),
|
36 |
+
'img' => array('src' => array(), 'width' => array(), 'height' => array(), 'alt' => array())
|
37 |
+
));
|
38 |
|
39 |
$comment_content = $this->wc_helper->make_clickable($comment_content);
|
40 |
$comment_content = apply_filters('comment_text', $comment_content, $comment, $args);
|
|
|
41 |
|
42 |
$vote_cls = '';
|
43 |
$vote_title_text = '';
|
44 |
$user = get_user_by('id', $comment->user_id);
|
45 |
+
$wc_author_title_class = '';
|
46 |
$wc_comment_author_url = ('http://' == $comment->comment_author_url) ? '' : $comment->comment_author_url;
|
47 |
$wc_comment_author_url = esc_url($wc_comment_author_url, array('http', 'https'));
|
48 |
$wc_comment_author_url = apply_filters('get_comment_author_url', $wc_comment_author_url, $comment->comment_ID, $comment);
|
50 |
$wc_comment_author_url = $wc_comment_author_url ? $wc_comment_author_url : $user->user_url;
|
51 |
$post = get_post($comment->comment_post_ID);
|
52 |
if ($user->ID == $post->post_author) {
|
53 |
+
$wc_author_title_class = 'wc-post-author';
|
54 |
$author_title = $this->wc_options_serialized->wc_phrases['wc_user_title_author_text'];
|
55 |
} else if (in_array('administrator', $user->roles)) {
|
56 |
+
$wc_author_title_class = 'wc-blog-admin';
|
57 |
$author_title = $this->wc_options_serialized->wc_phrases['wc_user_title_admin_text'];
|
58 |
} else {
|
59 |
+
$wc_author_title_class = 'wc-blog-member';
|
60 |
$author_title = $this->wc_options_serialized->wc_phrases['wc_user_title_member_text'];
|
61 |
}
|
62 |
} else {
|
63 |
+
$wc_author_title_class = 'wc-blog-guest';
|
64 |
$author_title = $this->wc_options_serialized->wc_phrases['wc_user_title_guest_text'];
|
65 |
}
|
66 |
|
80 |
$share_text = $this->wc_options_serialized->wc_phrases['wc_share_text'];
|
81 |
$comment_wrapper_class = ($comment->comment_parent) ? 'wc-comment wc-reply' : 'wc-comment';
|
82 |
$textarea_placeholder = $this->get_textarea_placeholder($comment);
|
83 |
+
|
84 |
+
$vote_count = ($comment->votes) ? $comment->votes : 0;
|
85 |
$unique_id = $this->get_unique_id($comment);
|
86 |
|
87 |
+
$wc_author_name = $comment->comment_author ? $comment->comment_author : __('Anonymous', WC_Core::$TEXT_DOMAIN);
|
88 |
+
$wc_comm_author_avatar = $this->wc_helper->get_comment_author_avatar($comment);
|
89 |
$wc_profile_url = $this->get_profile_url($user);
|
90 |
|
91 |
if ($wc_profile_url) {
|
95 |
}
|
96 |
|
97 |
if ($wc_comment_author_url) {
|
98 |
+
$wc_author_name = "<a href='$wc_comment_author_url'>" . $wc_author_name . "</a>";
|
99 |
} else {
|
100 |
if ($wc_profile_url) {
|
101 |
$wc_author_name = "<a href='$wc_profile_url'>" . $wc_author_name . "</a>";
|
102 |
}
|
103 |
+
}
|
104 |
|
105 |
$child_comments = get_comments(array(
|
106 |
'parent' => $comment->comment_ID,
|
123 |
$wc_visible_parent_comment_ids = isset($args['wc_visible_parent_comment_ids']) ? $args['wc_visible_parent_comment_ids'] : null;
|
124 |
$comment_content_class = ($wc_visible_parent_comment_ids != null && !in_array($comment->comment_ID, $wc_visible_parent_comment_ids)) ? ' wc_new_loaded_comment' : '';
|
125 |
|
126 |
+
$output = '<div id="wc-comm-' . $unique_id . '" class="' . $comment_wrapper_class . ' ' . $parent_comment . ' wc_comment_level-' . $depth . '">';
|
127 |
+
$output .= '<div class="wc-comment-left" id="comment-' . $comment->comment_ID . '">' . $wc_comm_author_avatar;
|
128 |
+
if (!$this->wc_options_serialized->wc_author_titles_show_hide) {
|
129 |
+
$output .= '<div class="' . $wc_author_title_class . ' wc-comment-label">' . $author_title . '</div>';
|
130 |
+
}
|
131 |
+
if (class_exists('userpro_api') && $comment->user_id) {
|
132 |
+
$output .= userpro_show_badges($comment->user_id, $inline = true);
|
|
|
|
|
|
|
133 |
}
|
134 |
+
$output .= '</div>';
|
135 |
+
$output .= '<div class="wc-comment-right ' . $comment_content_class . '">';
|
136 |
$output .= '<div class="wc-comment-header"><div class="wc-comment-author">' . $wc_author_name . '</div><div class="wc-comment-date">' . $posted_date . '</div><div style="clear:both"></div></div>';
|
137 |
$output .= '<div class="wc-comment-text">' . $comment_content . '</div>';
|
138 |
$output .= '<div class="wc-comment-footer">';
|
201 |
|
202 |
$output_form = '<div class="wc-form-wrapper wc-secondary-forms-wrapper" id="wc-secondary-forms-wrapper-' . $unique_id . '">';
|
203 |
$output_form .= '<div class="wc-secondary-forms-social-content" id="wc-secondary-forms-social-content-' . $unique_id . '"></div>';
|
204 |
+
$output_form .= '<form action="" method="post" id="wc_comm_form-' . $unique_id . '" class="wc_comm_form wc_secondary_form">';
|
205 |
+
$output_form .= '<div class="wc-field-comment"><div class="wc-field-avatararea">' . $this->wc_helper->get_comment_author_avatar() . '</div><div class="wc-field-textarea wpdiscuz-item"><textarea id="wc_comment-' . $unique_id . '" class="wc_comment wc_field_input" name="wc_comment" required="required" placeholder="' . $textarea_placeholder . '"></textarea></div><div style="clear:both"></div></div>';
|
|
|
|
|
|
|
206 |
|
207 |
$output_form .= '<div id="wc-form-footer-' . $unique_id . '" class="wc-form-footer">';
|
208 |
|
226 |
if (!$this->wc_options_serialized->wc_captcha_show_hide) {
|
227 |
if (!is_user_logged_in()) {
|
228 |
$output_form .= '<div class="wc-field-captcha wpdiscuz-item">';
|
229 |
+
$output_form .= '<input id="wc_captcha-' . $unique_id . '" class="wc_field_input wc_field_captcha" name="wc_captcha" required="required" value="" type="text" /><span class="wc-label wc-captcha-label">';
|
230 |
+
$output_form .= '<img rel="nofollow" src="' . plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/captcha/captcha.php?comm_id=' . $comment->comment_post_ID . '-' . $comment->comment_ID) . '" id="wc_captcha_img-' . $unique_id . '" />';
|
231 |
+
$output_form .= '<img rel="nofollow" src="' . plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/refresh-16x16.png') . '" id="wc_captcha_refresh_img-' . $unique_id . '" class="wc_captcha_refresh_img" />';
|
232 |
$output_form .= '</span><span class="captcha_msg">' . $this->wc_options_serialized->wc_phrases['wc_captcha_text'] . '</span></div>';
|
233 |
}
|
234 |
}
|
262 |
}
|
263 |
|
264 |
if (class_exists('Prompt_Comment_Form_Handling') && $this->wc_options_serialized->wc_use_postmatic_for_comment_notification) {
|
265 |
+
$output_form .= '<input id="wc_notification_new_comment-' . $unique_id . '" class="wc_notification_new_comment" value="wc_notification_new_comment" ' . $post_sub_status . 'type="checkbox" name="wc_comment_reply_notification-' . $unique_id . '"/> <label class="wc-label-comment-notify" for="wc_notification_new_comment-' . $unique_id . '">' . __('Participate in this discussion via email', 'Postmatic') . '</label>';
|
266 |
} else {
|
267 |
if ($current_user->ID && $this->wc_db_helper->wc_has_post_notification($comment->comment_post_ID, $current_user->user_email)) {
|
268 |
$wc_confirmation_phrase = ($wc_is_user_subscription_confirmed == 1) ? $this->wc_options_serialized->wc_phrases['wc_subscribed_on_post'] : $this->wc_options_serialized->wc_phrases['wc_confirm_email'];
|
345 |
return $user_can_comment;
|
346 |
}
|
347 |
|
348 |
+
public function init_phrases_on_load() {
|
349 |
+
|
350 |
+
if ($this->wc_db_helper->is_phrase_exists('wc_leave_a_reply_text')) {
|
351 |
+
$this->wc_options_serialized->wc_phrases = $this->wc_db_helper->get_phrases();
|
352 |
+
}
|
353 |
+
}
|
354 |
+
|
355 |
/**
|
356 |
*
|
357 |
* get profile url
|
385 |
return $wc_profile_url_filter ? $wc_profile_url_filter : $wc_profile_url;
|
386 |
}
|
387 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
388 |
/**
|
389 |
* returns placeholder for textarea from options page phrases
|
390 |
*/
|
dto/wc-comment.php
CHANGED
@@ -25,16 +25,16 @@ class WC_Comment {
|
|
25 |
$this->comment_author = $comment->comment_author;
|
26 |
$this->comment_author_email = $comment->comment_author_email;
|
27 |
$this->comment_author_url = $comment->comment_author_url;
|
28 |
-
$this->comment_author_IP =
|
29 |
$this->comment_date = $comment->comment_date;
|
30 |
$this->comment_date_gmt = $comment->comment_date_gmt;
|
31 |
$this->comment_content = $comment->comment_content;
|
32 |
-
$this->comment_karma =
|
33 |
-
$this->comment_approved =
|
34 |
-
$this->comment_agent =
|
35 |
-
$this->comment_type =
|
36 |
$this->comment_parent = $comment->comment_parent;
|
37 |
-
$this->user_id =
|
38 |
$this->votes = $this->get_vote_count($comment->comment_ID);
|
39 |
}
|
40 |
|
25 |
$this->comment_author = $comment->comment_author;
|
26 |
$this->comment_author_email = $comment->comment_author_email;
|
27 |
$this->comment_author_url = $comment->comment_author_url;
|
28 |
+
$this->comment_author_IP = $comment->comment_author_IP;
|
29 |
$this->comment_date = $comment->comment_date;
|
30 |
$this->comment_date_gmt = $comment->comment_date_gmt;
|
31 |
$this->comment_content = $comment->comment_content;
|
32 |
+
$this->comment_karma = $comment->comment_karma;
|
33 |
+
$this->comment_approved = $comment->comment_approved;
|
34 |
+
$this->comment_agent = $comment->comment_agent;
|
35 |
+
$this->comment_type = $comment->comment_type;
|
36 |
$this->comment_parent = $comment->comment_parent;
|
37 |
+
$this->user_id = $comment->user_id;
|
38 |
$this->votes = $this->get_vote_count($comment->comment_ID);
|
39 |
}
|
40 |
|
files/css/wpdiscuz-rtl.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#wpcomm .wc-field-comment .wc-field-textarea{margin-left:2px;margin-right:65px}#wpcomm .wc-form-wrapper .avatar{margin-top:0}#wpcomm .wc-field-comment .wc-field-avatararea{float:right}#wpcomm .wc-field-submit{float:left}#wpcomm .wc-field-captcha{float:right}#wpcomm .wc_notification_checkboxes{text-align:right}#wpcomm .wc-comment .wc-comment-right{margin-left:0;margin-right:70px}#wpcomm .wc-comment-author{float:right}#wpcomm .wc-comment-date{float:left}#wpcomm .wc-comment-footer .wc-vote-result{margin-right:0;margin-left:5px}#wpcomm .wc-toggle{float:left}
|
1 |
+
#wpcomm .wc-field-comment .wc-field-textarea{margin-left:2px;margin-right:65px}#wpcomm .wc-form-wrapper .avatar{margin-top:0}#wpcomm .wc-field-comment .wc-field-avatararea{float:right}#wpcomm .wc-field-submit{float:left}#wpcomm .wc-field-captcha{float:right}#wpcomm .wc_notification_checkboxes{text-align:right}#wpcomm .wc-comment .wc-comment-right{margin-left:0;margin-right:70px}#wpcomm .wc-comment-author{float:right}#wpcomm .wc-comment-date{float:left}#wpcomm .wc-comment-footer .wc-vote-result{margin-right:0;margin-left:5px}#wpcomm .wc-toggle{float:left}
|
files/css/wpdiscuz.min.css
CHANGED
@@ -1 +1,2 @@
|
|
1 |
-
#wc-comment-header{padding:20px 5px 1px 5px;display:block;float:none;clear:both;font-size:18px}#wpcomm form div{box-sizing:inherit}#wpcomm form .wpdiscuz-item{display:block;height:auto}.wpdiscuz-item input{border-radius:0;height:auto;width:auto}#wpcomm{margin:15px 5px;padding:1px 0 10px 0;border-top:#ddd solid 1px}#wpcomm form{margin:0;padding:0;background:0;border:0;width:auto!important}#wpcomm form div{margin:0}#wc_show_hide_loggedin_username{padding:10px 5px 5px 5px;font-size:13px}#wpcomm .wc_new_comment_and_replies{margin:0;padding:0;width:100%;height:auto;background:transparent}#wpcomm .wc_new_comment_and_replies .wc_new_comment{float:right;display:none;padding:3px 10px;font-size:12px;margin:1px 0 1px 3px;cursor:pointer;color:#fff;line-height:15px}#wpcomm .wc_new_comment_and_replies .wc_new_reply{float:right;display:none;padding:3px 10px;font-size:12px;margin:1px 0 1px 1px;cursor:pointer;color:#fff;line-height:15px}#wpcomm .wc-comment-bar{width:100%;padding:0;display:block}#wpcomm .wc-comment-title{margin:0;line-height:18px;font-weight:bold;padding:10px;margin-bottom:10px;font-size:13px;text-align:right;border-bottom:#ccc dotted 1px;padding-bottom:10px}#wpcomm .wc-form-wrapper{padding:10px;margin-top:20px;border:1px solid #f1f1f1}#wpcomm .wc-author-data{margin-bottom:3px}#wpcomm .wc-field-submit{padding:5px 0 13px 0}#wpcomm .wc-field-name{width:49%;float:left}#wpcomm .wc-field-email{width:49%;float:right;text-align:right}#wpcomm .wc-field-comment{margin:5px auto 1px auto}#wpcomm .wc-field-comment .wc-field-avatararea{width:60px;float:left}#wpcomm .wc-field-comment .wc-field-textarea{margin-left:65px}#wpcomm .wc-field-captcha{width:49%;float:left;margin:0;height:auto!important}#wpcomm .wc-field-submit{width:49%;float:right;text-align:right;margin:0}#wpcomm .wc-field-website{width:100%;padding:0 0 10px 0;margin:0;display:block}#wpcomm .wc-field-name input[type="text"]{width:99%;max-width:100%;padding:3px 5px;font-size:14px;margin:0;height:29px}#wpcomm .wc-field-website input[type="url"],#wpcomm .wc-field-website input[type="text"]{width:100%;max-width:100%;padding:3px 5px;font-size:14px;margin:0;height:29px}#wpcomm .wc-field-email input[type="email"]{width:100%;max-width:100%;padding:3px 5px;font-size:14px;margin:0;height:29px}#wpcomm .wc-field-captcha input[type="text"]{max-width:45%;min-width:85px;padding:3px 5px;font-size:14px;margin:0 5px 2px 0;height:27px}@media screen and (max-width:1000px){#wpcomm .wc-field-captcha input[type="text"]{max-width:45%;min-width:90px}}@media screen and (max-width:850px){#wpcomm .wc-field-captcha input[type="text"]{max-width:35%;min-width:90px}}@media screen and (max-width:790px){#wpcomm .wc-field-captcha input[type="text"]{max-width:30%;min-width:80px}}@media screen and (max-width:690px){#wpcomm .wc-field-captcha input[type="text"]{max-width:30%;min-width:80px}}#wpcomm .wc-field-submit input[type="submit"]{margin:1px}#wpcomm .wc-field-submit input[type="button"]{margin:1px;border:#ddd 1px solid;font-size:13px;line-height:16px;padding:6px 15px;clear:both;float:none}#wpcomm .captcha_msg{color:#999;font-family:Lato,sans-serif;font-size:13px;line-height:18px;display:block;clear:both;padding:5px 0 0 0}#wpcomm .wc-field-comment textarea,#wpcomm .wc-comment .wc-comment-right textarea{width:100%;max-width:100%;height:48px;min-height:48px!important;padding:5px;box-sizing:border-box;border-radius:0}#wpcomm .wc-label{display:block;font-size:14px;padding:5px}#wpcomm .wc_manage_subscribtions{cursor:pointer;padding:0 0 5px 0;display:block;font-size:13px;line-height:16px;font-family:Lato,sans-serif}#wpcomm .wc_notification_checkboxes{padding:7px 0 7px 0;text-align:left;display:none;border-top:1px dotted #ddd;line-height:18px;font-size:13px}#wpcomm .wc_notification_checkboxes input[type="checkbox"],#wpcomm .wc_notification_checkboxes input[type="radio"]{overflow:none;width:inherit;font-size:13px;margin:0;padding:0;display:inline;clear:both;float:none;max-height:20px;margin:0 3px}#wpcomm .wc_notification_checkboxes label{clear:both;float:none;font-weight:normal}#wpcomm .wc-label-comment-notify{display:inline;font-size:13px;padding:0;margin:0;border:0;line-height:15px;text-decoration:none;color:#999;font-family:Lato,sans-serif;cursor:pointer}#wpcomm .wc-label-reply-notify,#wpcomm .wc-notification-none{display:inline;font-size:13px;padding:0;margin:0;border:0;line-height:15px;text-decoration:none;color:#999;font-family:Lato,sans-serif;cursor:pointer}#wpcomm .wc-label-all-reply-notify{display:inline;font-size:13px;padding:0;margin:0;border:0;line-height:15px;text-decoration:none;color:#999;font-family:Lato,sans-serif;cursor:pointer}#wpcomm .wc-field-captcha .wc-label{font-size:14px;padding:5px;text-align:center;display:inline}#wpcomm input[type="text"],#wpcomm input[type="email"],#wpcomm input[type="url"],#wpcomm textarea{font-size:14px;color:#777;font-family:Lato,sans-serif;box-sizing:border-box;margin:0;clear:both;float:none;display:inline}#wpcomm .wc-copyright{margin:0 0 0 auto;text-align:right;display:block;padding-top:2px}#wpcomm .wc-copyright a{font-size:9px;color:#aaa;cursor:help;text-decoration:none;margin:0;padding:0;border:0}#wpcomm .wc-thread-wrapper{padding:10px 0;margin-bottom:10px}#wpcomm .wc-comment{margin-bottom:13px}#wpcomm .wc-comment .wc-field-submit{padding:5px 0 5px 0}#wpcomm .wc-comment .wc-form-wrapper{padding:10px 10px 7px 10px}#wpcomm .wc-comment .wc-comment-left{width:62px;float:left;position:absolute;text-align:center;font-family:Lato,sans-serif;line-height:16px}#wpcomm .wc-comment .wc-comment-right{margin-left:70px;border:#f5f5f5 1px solid;padding:10px 10px 3px 10px}#wpcomm .wc-reply .wc-comment-right{margin-left:70px;border:#f5f5f5 1px solid;padding:10px 10px 3px 10px}#wpcomm .wc-reply{margin-top:10px;margin-bottom:0;margin-left:40px}#wpcomm .wc-must-login{margin:0;font-size:14px;line-height:16px;padding:10px;text-align:center}#wpcomm hr{background-color:rgba(0,0,0,0.1);border:0 none;height:1px;margin:10px 0}#wpcomm .avatar{border:1px solid rgba(0,0,0,0.1);padding:2px;margin:0 auto;float:none;display:inline;width:48px;height:auto}#wpcomm .wc-form-wrapper .avatar{margin-top:3px}#wpcomm .wc-comment-text{text-align:left;padding-bottom:5px;line-height:20px;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}#wpcomm .wc-comment-text img{max-width:90%;height:auto}#wpcomm .wc-comment-header{margin-bottom:7px;font-family:Lato,sans-serif}#wpcomm .wc-comment-author{font-size:16px;width:40%;float:left;white-space:normal}#wpcomm .wc-comment-author a{font-size:16px;white-space:normal;text-decoration:none}#wpcomm .wc-comment-label{color:#fff;padding:2px 5px;font-size:12px;margin:4px auto;text-align:center;display:table;line-height:16px}#wpcomm .wc-comment-date{font-size:12px;color:#999;float:right;text-align:right;white-space:nowrap;line-height:27px}#wpcomm .wc-comment-footer{font-size:12px;font-weight:normal;color:#999;margin-top:12px;min-height:28px;font-family:Lato,sans-serif}#wpcomm .wc-comment-footer a,#wpcomm .wc-comment-footer span.wc_editable_comment,#wpcomm .wc-comment-footer span.wc_save_edited_comment,#wpcomm span.wc_cancel_edit{text-decoration:none;font-size:13px;font-weight:bold;cursor:pointer}#wpcomm .wc-comment-footer .share_buttons_box img{vertical-align:middle}#wpcomm .wc-comment-footer .wc-voted{color:#666;cursor:default}#wpcomm .wc-comment-footer .wc-vote-img-up{padding:0;margin:0 0 -2px 0;vertical-align:baseline;display:inline;float:none;clear:both;border:0;background:transparent;width:16px;height:16px;border-radius:0;box-shadow:none;box-sizing:border-box}#wpcomm .wc-comment-footer .wc-vote-img-down{padding:0;margin:0 0 -6px 0;vertical-align:baseline;display:inline;float:none;clear:both;border:0;background:transparent;width:16px;height:16px;border-radius:0;box-shadow:none;box-sizing:border-box}#wpcomm .wc-comment-footer .wc-vote-result{padding:2px 6px 2px 5px;color:#fff;font-size:12px;font-weight:bold;display:inline;margin-right:5px}#wpcomm .wc-toggle{float:right;text-align:right;padding-right:0;margin-right:0;color:#999;cursor:pointer;font-size:12px;white-space:nowrap}#wpcomm .wpdiscuz-item{background:0;border-radius:0;box-shadow:none}#wc_response_info img{margin:0 auto 0 auto;box-shadow:none}#wpcomm .share_buttons_box img{display:inline!important;width:16px;height:16px}#wpcomm .wc-captcha-label img{display:inline!important;border:0;padding:0 0 0 2px;margin:0;vertical-align:middle}#wpcomm .wc-reply-link,#wpcomm .wc-vote-link,#wpcomm .wc-share-link{cursor:pointer;font-size:13px;font-weight:bold}#wpcomm .wc-form-footer,#wpcomm .wc-secondary-forms-wrapper{display:none}#wpcomm .wc-field-captcha .wc-captcha-label{padding:0;display:inline-block}#wpcomm .wc_captcha_refresh_img{cursor:pointer;margin-left:3px}#wpcomm .share_buttons_box{display:none}#wpcomm .wc-comment.wc-no-left-margin{margin-left:0!important}div.wc_modal{background:none repeat scroll 0 0 #ededed;color:#444;font-size:18px;font-weight:normal;padding:45px 10px 50px 10px!important;text-align:center;line-height:25px}.wc-load-more-submit-wrap{width:100%;text-align:center;margin-bottom:20px;margin-top:25px}.wc-load-more-submit{width:auto!important;padding:10px 20px;text-align:center;background-color:#fafafa;border-radius:3px;color:#555;cursor:pointer}.wc-load-more-submit:hover{background-image:-moz-linear-gradient(center top,#f4f4f4,#e6e6e6);background-repeat:repeat-x;box-shadow:0 1px 2px rgba(64,64,64,0.1);color:#7c7c7c}#wc_openModalFormAction>div#wc_response_info{width:200px;background:none repeat scroll 0 0 #ededed;color:#444;font-size:18px;font-weight:normal;padding:45px 10px 50px 10px!important;text-align:center;line-height:25px}#wc_openModalFormAction>div#wc_response_info a.close{background-position-x:right;background-position-y:top}#wpcomm #bywpdiscuz{display:none}#wpcomm .by-wpdiscuz{text-align:right;border-top:#ddd solid 1px;padding:1px 1px 1px 1px}#wpcomm .by-wpdiscuz a{font-size:11px;font-weight:bold;text-align:right;color:#ccc;padding:1px;margin:0;line-height:12px;border:0;text-decoration:none}#wpcomm .wpdimg{border:0;padding:0;margin:0;height:12px;cursor:pointer;display:inline;clear:both}#wc_unsubscribe_message{margin:10px auto 1px auto;padding:10px;text-align:center;border:#0d0 1px dotted;background:#cfc}.wc_unsubscribe_message{font-size:14px;color:#444}#wpcomm .wc_comment_level-3{margin-left:40px!important}#wpcomm .wc_comment_level-4{margin-left:40px!important}#wpcomm .wc_comment_level-5{margin-left:40px!important}#wpcomm .wc_editable_div{-moz-appearance:textfield-multiline;-webkit-appearance:textarea;border:1px solid #ccc;border-radius:0;font:medium -moz-fixed;font:-webkit-small-control;overflow:auto;resize:both;box-sizing:border-box;height:46px;max-width:100%;min-height:46px!important;padding:5px;width:100%}#wpcomm .wc_cancel_edit{display:none}#wpcomm .wc-comment-text p{margin-bottom:10px}#wpcomm .wc-comment-right textarea.wc_edit_comment{height:80px;max-height:200px}#wpcomm .wc_social_plugin_wrapper{width:auto}#wpcomm .wc_social_plugin_wrapper .wp-social-login-connect-with{float:left;font-size:13px;padding:2px 7px 0 0;text-transform:uppercase}#wpcomm .wc_social_plugin_wrapper .wp-social-login-provider-list{padding:1px;text-align:left;margin-bottom:-10px}#wpcomm .wc-secondary-forms-social-content .wp-social-login-provider-list{padding:1px;text-align:right}#wpcomm .wc-secondary-forms-social-content .wp-social-login-provider-list img{width:20px;height:20px;float:none;display:inline;border:0}#wpcomm .wc_social_plugin_wrapper .wp-social-login-provider-list img{width:24px;height:24px;float:none;display:inline;border:0}#wpcomm .wc-form-wrapper{clear:both}#wpcomm .wc_comm_form .wc_secondary_form{clear:both}#wpcomm .wc_comm_form .wc-field-comment{clear:both}#wpcomm .wc_social_plugin_wrapper .social_connect_ui{padding:0;clear:both;margin:0;margin-top:-20px;margin-bottom:-10px}#wpcomm .wc_social_plugin_wrapper .comment-form-social-connect{display:inherit;padding:0;margin:0;float:left;line-height:35px;padding-right:10px}#wpcomm .wc_social_plugin_wrapper .social_connect_form img{width:24px;height:24px;float:none;display:inline;border:0}#wpcomm .wc_social_plugin_wrapper .social_connect_form{float:left;line-height:35px;text-align:left;vertical-align:middle}#wpcomm .wc_social_plugin_wrapper .comment-form-social-connect label{display:inherit;padding:0;margin:0;font-style:normal;font-weight:normal;border:0;font-size:13px;text-transform:uppercase}#social_connect_facebook_auth,#social_connect_twitter_auth,#social_connect_google_auth,#social_connect_google_plus_auth,#social_connect_yahoo_auth,#social_connect_wordpress_auth{clear:both;padding:0;margin:0}#wpcomm .wc-secondary-forms-social-content .social_connect_ui{padding:0;clear:both;margin:0;text-align:right}#wpcomm .wc-secondary-forms-social-content .comment-form-social-connect{display:inherit;padding:0;margin:0;float:left;line-height:35px;padding-right:10px}#wpcomm .wc-secondary-forms-social-content .social_connect_form img{width:24px;height:24px;float:none;display:inline;border:0}#wpcomm .wc-secondary-forms-social-content .social_connect_form{float:left;width:100%;text-align:right;padding:0 0 5px 0;line-height:20px;vertical-align:middle}#wpcomm .wc-secondary-forms-social-content .comment-form-social-connect label{display:inherit;padding:0;margin:0;font-style:normal;font-weight:normal;border:0;font-size:13px;text-transform:uppercase}#wpcomm .wc_social_plugin_wrapper .wp-social-login-connect-with_by_the_champ{float:left;font-size:13px;padding:5px 7px 0 0;text-transform:uppercase}#wpcomm .wc_social_plugin_wrapper ul.wc_social_login_by_the_champ{list-style:none outside none!important;margin:0!important;padding-left:0!important}#wpcomm .wc_social_plugin_wrapper ul.wc_social_login_by_the_champ .theChampLogin{width:24px!important;height:24px!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ{list-style:none outside none!important;margin:0!important;padding-left:0!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ .theChampLogin{width:24px!important;height:24px!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ li{float:right!important} #wpcomm .wc_social_plugin_wrapper .theChampFacebookButton{ display:block!important; } #wpcomm .theChampTwitterButton{background-position:-4px -68px!important}#wpcomm .theChampGoogleButton{background-position:-36px -2px!important}#wpcomm .theChampVkontakteButton{background-position:-35px -67px!important}#wpcomm .theChampLinkedinButton{background-position:-34px -34px!important}#wpcomm input[type="text"], #wpcomm input[type="email"], #wpcomm input[type="password"], #wpcomm input[type="url"]{ line-height: inherit!important;}#wpcomm .wc-form-wrapper{ clear: both; } #wpcomm .wc-comment-text ol li, #wpcomm .wc-comment-text ul li{ margin-left:20px; } #wpcomm .wc-comment-text blockquote { font-size: inherit; line-height: inherit; margin-bottom: 1em; margin-left: 1em; padding-left: 1em; }
|
|
1 |
+
#wc-comment-header{padding:20px 5px 1px 5px;display:block;float:none;clear:both;font-size:18px}#wpcomm form div{box-sizing:inherit}#wpcomm form .wpdiscuz-item{display:block;height:auto}.wpdiscuz-item input{border-radius:0;height:auto;width:auto}#wpcomm{margin:15px 5px;padding:1px 0 10px 0;border-top:#ddd solid 1px}#wpcomm form{margin:0;padding:0;background:0;border:0;width:auto!important}#wpcomm form div{margin:0}#wc_show_hide_loggedin_username{padding:10px 5px 5px 5px;font-size:13px}#wpcomm .wc_new_comment_and_replies{margin:0;padding:0;width:100%;height:auto;background:transparent}#wpcomm .wc_new_comment_and_replies .wc_new_comment{float:right;display:none;padding:3px 10px;font-size:12px;margin:1px 0 1px 3px;cursor:pointer;color:#fff;line-height:15px}#wpcomm .wc_new_comment_and_replies .wc_new_reply{float:right;display:none;padding:3px 10px;font-size:12px;margin:1px 0 1px 1px;cursor:pointer;color:#fff;line-height:15px}#wpcomm .wc-comment-bar{width:100%;padding:0;display:block}#wpcomm .wc-comment-title{margin:0;line-height:18px;font-weight:bold;padding:10px;margin-bottom:10px;font-size:13px;text-align:right;border-bottom:#ccc dotted 1px;padding-bottom:10px}#wpcomm .wc-form-wrapper{padding:10px;margin-top:20px;border:1px solid #f1f1f1}#wpcomm .wc-author-data{margin-bottom:3px}#wpcomm .wc-field-submit{padding:5px 0 13px 0}#wpcomm .wc-field-name{width:49%;float:left}#wpcomm .wc-field-email{width:49%;float:right;text-align:right}#wpcomm .wc-field-comment{margin:5px auto 1px auto}#wpcomm .wc-field-comment .wc-field-avatararea{width:60px;float:left}#wpcomm .wc-field-comment .wc-field-textarea{margin-left:65px}#wpcomm .wc-field-captcha{width:49%;float:left;margin:0;height:auto!important}#wpcomm .wc-field-submit{width:49%;float:right;text-align:right;margin:0}#wpcomm .wc-field-website{width:100%;padding:0 0 10px 0;margin:0;display:block}#wpcomm .wc-field-name input[type="text"]{width:99%;max-width:100%;padding:3px 5px;font-size:14px;margin:0;height:29px}#wpcomm .wc-field-website input[type="url"],#wpcomm .wc-field-website input[type="text"]{width:100%;max-width:100%;padding:3px 5px;font-size:14px;margin:0;height:29px}#wpcomm .wc-field-email input[type="email"]{width:100%;max-width:100%;padding:3px 5px;font-size:14px;margin:0;height:29px}#wpcomm .wc-field-captcha input[type="text"]{max-width:55%;min-width:110px;padding:3px 5px;font-size:14px;margin:0 5px 2px 0;height:27px}@media screen and (max-width:1000px){#wpcomm .wc-field-captcha input[type="text"]{max-width:45%;min-width:90px}}@media screen and (max-width:850px){#wpcomm .wc-field-captcha input[type="text"]{max-width:35%;min-width:90px}}@media screen and (max-width:790px){#wpcomm .wc-field-captcha input[type="text"]{max-width:30%;min-width:80px}}@media screen and (max-width:690px){#wpcomm .wc-field-captcha input[type="text"]{max-width:30%;min-width:80px}}#wpcomm .wc-field-submit input[type="submit"]{margin:1px}#wpcomm .wc-field-submit input[type="button"]{margin:1px;border:#ddd 1px solid;font-size:13px;line-height:16px;padding:6px 15px;clear:both;float:none}#wpcomm .captcha_msg{color:#999;font-family:Lato,sans-serif;font-size:13px;line-height:18px;display:block;clear:both;padding:5px 0 0 0}#wpcomm .wc-field-comment textarea,#wpcomm .wc-comment .wc-comment-right textarea{width:100%;max-width:100%;height:48px;min-height:48px!important;padding:5px;box-sizing:border-box;border-radius:0}#wpcomm .wc-label{display:block;font-size:14px;padding:5px}#wpcomm .wc_manage_subscribtions{cursor:pointer;padding:0 0 5px 0;display:block;font-size:13px;line-height:16px;font-family:Lato,sans-serif}#wpcomm .wc_notification_checkboxes{padding:7px 0 7px 0;text-align:left;display:none;border-top:1px dotted #ddd;line-height:18px;font-size:13px}#wpcomm .wc_notification_checkboxes input[type="checkbox"],#wpcomm .wc_notification_checkboxes input[type="radio"]{overflow:none;width:inherit;font-size:13px;margin:0;padding:0;display:inline;clear:both;float:none;max-height:20px;margin:0 3px}#wpcomm .wc_notification_checkboxes label{clear:both;float:none;font-weight:normal}#wpcomm .wc-label-comment-notify{display:inline;font-size:13px;padding:0;margin:0;border:0;line-height:15px;text-decoration:none;color:#999;font-family:Lato,sans-serif;cursor:pointer}#wpcomm .wc-label-reply-notify,#wpcomm .wc-notification-none{display:inline;font-size:13px;padding:0;margin:0;border:0;line-height:15px;text-decoration:none;color:#999;font-family:Lato,sans-serif;cursor:pointer}#wpcomm .wc-label-all-reply-notify{display:inline;font-size:13px;padding:0;margin:0;border:0;line-height:15px;text-decoration:none;color:#999;font-family:Lato,sans-serif;cursor:pointer}#wpcomm .wc-field-captcha .wc-label{font-size:14px;padding:5px;text-align:center;display:inline}#wpcomm input[type="text"],#wpcomm input[type="email"],#wpcomm input[type="url"],#wpcomm textarea{font-size:14px;color:#777;font-family:Lato,sans-serif;box-sizing:border-box;margin:0;clear:both;float:none;display:inline}#wpcomm .wc-copyright{margin:0 0 0 auto;text-align:right;display:block;padding-top:2px}#wpcomm .wc-copyright a{font-size:9px;color:#aaa;cursor:help;text-decoration:none;margin:0;padding:0;border:0}#wpcomm .wc-thread-wrapper{padding:10px 0;margin-bottom:10px}#wpcomm .wc-comment{margin-bottom:13px}#wpcomm .wc-comment .wc-field-submit{padding:5px 0 5px 0}#wpcomm .wc-comment .wc-form-wrapper{padding:10px 10px 7px 10px}#wpcomm .wc-comment .wc-comment-left{width:62px;float:left;position:absolute;text-align:center;font-family:Lato,sans-serif;line-height:16px}#wpcomm .wc-comment .wc-comment-right{margin-left:70px;border:#f5f5f5 1px solid;padding:10px 10px 3px 10px}#wpcomm .wc-reply .wc-comment-right{margin-left:70px;border:#f5f5f5 1px solid;padding:10px 10px 3px 10px}#wpcomm .wc-reply{margin-top:10px;margin-bottom:0;margin-left:40px}#wpcomm .wc-must-login{margin:0;font-size:14px;line-height:16px;padding:10px;text-align:center}#wpcomm hr{background-color:rgba(0,0,0,0.1);border:0 none;height:1px;margin:10px 0}#wpcomm .avatar{border:1px solid rgba(0,0,0,0.1);padding:2px;margin:0 auto;float:none;display:inline;width:48px;height:auto}#wpcomm .wc-form-wrapper .avatar{margin-top:3px}#wpcomm .wc-comment-text{text-align:left;padding-bottom:5px;line-height:20px;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}#wpcomm .wc-comment-text img{max-width:90%;height:auto}#wpcomm .wc-comment-header{margin-bottom:7px;font-family:Lato,sans-serif}#wpcomm .wc-comment-author{font-size:16px;width:40%;float:left;white-space:nowrap}#wpcomm .wc-comment-author a{font-size:16px;white-space:nowrap;text-decoration:none}#wpcomm .wc-comment-label{color:#fff;padding:2px 5px;font-size:12px;margin:4px auto;text-align:center;display:table;line-height:16px}#wpcomm .wc-comment-date{font-size:12px;color:#999;float:right;text-align:right;white-space:nowrap;line-height:27px}#wpcomm .wc-comment-footer{font-size:12px;font-weight:normal;color:#999;margin-top:12px;min-height:28px;font-family:Lato,sans-serif}#wpcomm .wc-comment-footer a,#wpcomm .wc-comment-footer span.wc_editable_comment,#wpcomm .wc-comment-footer span.wc_save_edited_comment,#wpcomm span.wc_cancel_edit{text-decoration:none;font-size:13px;font-weight:bold;cursor:pointer}#wpcomm .wc-comment-footer .share_buttons_box img{vertical-align:middle}#wpcomm .wc-comment-footer .wc-voted{color:#666;cursor:default}#wpcomm .wc-comment-footer .wc-vote-img-up{padding:0;margin:0 0 -2px 0;vertical-align:baseline;display:inline;float:none;clear:both;border:0;background:transparent;width:16px;height:16px;border-radius:0;box-shadow:none;box-sizing:border-box}#wpcomm .wc-comment-footer .wc-vote-img-down{padding:0;margin:0 0 -6px 0;vertical-align:baseline;display:inline;float:none;clear:both;border:0;background:transparent;width:16px;height:16px;border-radius:0;box-shadow:none;box-sizing:border-box}#wpcomm .wc-comment-footer .wc-vote-result{padding:2px 6px 2px 5px;color:#fff;font-size:12px;font-weight:bold;display:inline;margin-right:5px}#wpcomm .wc-toggle{float:right;text-align:right;padding-right:0;margin-right:0;color:#999;cursor:pointer;font-size:12px;white-space:nowrap}#wpcomm .wpdiscuz-item{background:0;border-radius:0;box-shadow:none}#wc_response_info img{margin:0 auto 0 auto;box-shadow:none}#wpcomm .share_buttons_box img{display:inline!important;width:16px;height:16px}#wpcomm .wc-captcha-label img{display:inline!important;border:0;padding:0 0 0 2px;margin:0;vertical-align:middle}#wpcomm .wc-reply-link,#wpcomm .wc-vote-link,#wpcomm .wc-share-link{cursor:pointer;font-size:13px;font-weight:bold}#wpcomm .wc-form-footer,#wpcomm .wc-secondary-forms-wrapper{display:none}#wpcomm .wc-field-captcha .wc-captcha-label{padding:0;display:inline-block}#wpcomm .wc_captcha_refresh_img{cursor:pointer;margin-left:3px}#wpcomm .share_buttons_box{display:none}#wpcomm .wc-comment.wc-no-left-margin{margin-left:0!important}div.wc_modal{background:none repeat scroll 0 0 #ededed;color:#444;font-size:18px;font-weight:normal;padding:45px 10px 50px 10px!important;text-align:center;line-height:25px}.wc-load-more-submit-wrap{width:100%;text-align:center;margin-bottom:20px;margin-top:25px}.wc-load-more-submit{width:auto!important;padding:10px 20px;text-align:center;background-color:#fafafa;border-radius:3px;color:#555;cursor:pointer}.wc-load-more-submit:hover{background-image:-moz-linear-gradient(center top,#f4f4f4,#e6e6e6);background-repeat:repeat-x;box-shadow:0 1px 2px rgba(64,64,64,0.1);color:#7c7c7c}#wc_openModalFormAction>div#wc_response_info{width:200px;background:none repeat scroll 0 0 #ededed;color:#444;font-size:18px;font-weight:normal;padding:45px 10px 50px 10px!important;text-align:center;line-height:25px}#wc_openModalFormAction>div#wc_response_info a.close{background-position-x:right;background-position-y:top}#wpcomm #bywpdiscuz{display:none}#wpcomm .by-wpdiscuz{text-align:right;border-top:#ddd solid 1px;padding:1px 1px 1px 1px}#wpcomm .by-wpdiscuz a{font-size:11px;font-weight:bold;text-align:right;color:#ccc;padding:1px;margin:0;line-height:12px;border:0;text-decoration:none}#wpcomm .wpdimg{border:0;padding:0;margin:0;height:12px;cursor:pointer;display:inline;clear:both}#wc_unsubscribe_message{margin:10px auto 1px auto;padding:10px;text-align:center;border:#0d0 1px dotted;background:#cfc}.wc_unsubscribe_message{font-size:14px;color:#444}#wpcomm .wc_comment_level-3{margin-left:40px!important}#wpcomm .wc_comment_level-4{margin-left:40px!important}#wpcomm .wc_comment_level-5{margin-left:40px!important}#wpcomm .wc_editable_div{-moz-appearance:textfield-multiline;-webkit-appearance:textarea;border:1px solid #ccc;border-radius:0;font:medium -moz-fixed;font:-webkit-small-control;overflow:auto;resize:both;box-sizing:border-box;height:46px;max-width:100%;min-height:46px!important;padding:5px;width:100%}#wpcomm .wc_cancel_edit{display:none}#wpcomm .wc-comment-text p{margin-bottom:10px}#wpcomm .wc-comment-right textarea.wc_edit_comment{height:80px;max-height:200px}#wpcomm .wc_social_plugin_wrapper{width:auto}#wpcomm .wc_social_plugin_wrapper .wp-social-login-connect-with{float:left;font-size:13px;padding:2px 7px 0 0;text-transform:uppercase}#wpcomm .wc_social_plugin_wrapper .wp-social-login-provider-list{padding:1px;text-align:left;margin-bottom:-10px}#wpcomm .wc-secondary-forms-social-content .wp-social-login-provider-list{padding:1px;text-align:right}#wpcomm .wc-secondary-forms-social-content .wp-social-login-provider-list img{width:20px;height:20px;float:none;display:inline;border:0}#wpcomm .wc_social_plugin_wrapper .wp-social-login-provider-list img{width:24px;height:24px;float:none;display:inline;border:0}#wpcomm .wc-form-wrapper{clear:both}#wpcomm .wc_comm_form .wc_secondary_form{clear:both}#wpcomm .wc_comm_form .wc-field-comment{clear:both}#wpcomm .wc_social_plugin_wrapper .social_connect_ui{padding:0;clear:both;margin:0;margin-top:-20px;margin-bottom:-10px}#wpcomm .wc_social_plugin_wrapper .comment-form-social-connect{display:inherit;padding:0;margin:0;float:left;line-height:35px;padding-right:10px}#wpcomm .wc_social_plugin_wrapper .social_connect_form img{width:24px;height:24px;float:none;display:inline;border:0}#wpcomm .wc_social_plugin_wrapper .social_connect_form{float:left;line-height:35px;text-align:left;vertical-align:middle}#wpcomm .wc_social_plugin_wrapper .comment-form-social-connect label{display:inherit;padding:0;margin:0;font-style:normal;font-weight:normal;border:0;font-size:13px;text-transform:uppercase}#social_connect_facebook_auth,#social_connect_twitter_auth,#social_connect_google_auth,#social_connect_google_plus_auth,#social_connect_yahoo_auth,#social_connect_wordpress_auth{clear:both;padding:0;margin:0}#wpcomm .wc-secondary-forms-social-content .social_connect_ui{padding:0;clear:both;margin:0;text-align:right}#wpcomm .wc-secondary-forms-social-content .comment-form-social-connect{display:inherit;padding:0;margin:0;float:left;line-height:35px;padding-right:10px}#wpcomm .wc-secondary-forms-social-content .social_connect_form img{width:24px;height:24px;float:none;display:inline;border:0}#wpcomm .wc-secondary-forms-social-content .social_connect_form{float:left;width:100%;text-align:right;padding:0 0 5px 0;line-height:20px;vertical-align:middle}#wpcomm .wc-secondary-forms-social-content .comment-form-social-connect label{display:inherit;padding:0;margin:0;font-style:normal;font-weight:normal;border:0;font-size:13px;text-transform:uppercase}#wpcomm .wc_social_plugin_wrapper .wp-social-login-connect-with_by_the_champ{float:left;font-size:13px;padding:2px 7px 0 0;text-transform:uppercase}#wpcomm .wc_social_plugin_wrapper ul.wc_social_login_by_the_champ{list-style:none outside none!important;margin:0!important;padding-left:0!important}#wpcomm .wc_social_plugin_wrapper ul.wc_social_login_by_the_champ .theChampLoginButton{width:24px!important;height:24px!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ{list-style:none outside none!important;margin:0!important;padding-left:0!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ .theChampLoginButton{width:24px!important;height:24px!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ li{float:right!important}#wpcomm .theChampTwitterButton{background-position:-4px -68px!important}#wpcomm .theChampGoogleButton{background-position:-36px -2px!important}#wpcomm .theChampVkontakteButton{background-position:-35px -67px!important}#wpcomm .theChampLinkedinButton{background-position:-34px -34px!important}#wpcomm input[type="text"], #wpcomm input[type="email"], #wpcomm input[type="password"]{
|
2 |
+
line-height: inherit!important;}#wpcomm .wc-form-wrapper{ clear: both; }
|
files/js/jquery.cookie.js
DELETED
@@ -1,117 +0,0 @@
|
|
1 |
-
/*!
|
2 |
-
* jQuery Cookie Plugin v1.4.1
|
3 |
-
* https://github.com/carhartl/jquery-cookie
|
4 |
-
*
|
5 |
-
* Copyright 2013 Klaus Hartl
|
6 |
-
* Released under the MIT license
|
7 |
-
*/
|
8 |
-
(function (factory) {
|
9 |
-
if (typeof define === 'function' && define.amd) {
|
10 |
-
// AMD
|
11 |
-
define(['jquery'], factory);
|
12 |
-
} else if (typeof exports === 'object') {
|
13 |
-
// CommonJS
|
14 |
-
factory(require('jquery'));
|
15 |
-
} else {
|
16 |
-
// Browser globals
|
17 |
-
factory(jQuery);
|
18 |
-
}
|
19 |
-
}(function ($) {
|
20 |
-
|
21 |
-
var pluses = /\+/g;
|
22 |
-
|
23 |
-
function encode(s) {
|
24 |
-
return config.raw ? s : encodeURIComponent(s);
|
25 |
-
}
|
26 |
-
|
27 |
-
function decode(s) {
|
28 |
-
return config.raw ? s : decodeURIComponent(s);
|
29 |
-
}
|
30 |
-
|
31 |
-
function stringifyCookieValue(value) {
|
32 |
-
return encode(config.json ? JSON.stringify(value) : String(value));
|
33 |
-
}
|
34 |
-
|
35 |
-
function parseCookieValue(s) {
|
36 |
-
if (s.indexOf('"') === 0) {
|
37 |
-
// This is a quoted cookie as according to RFC2068, unescape...
|
38 |
-
s = s.slice(1, -1).replace(/\\"/g, '"').replace(/\\\\/g, '\\');
|
39 |
-
}
|
40 |
-
|
41 |
-
try {
|
42 |
-
// Replace server-side written pluses with spaces.
|
43 |
-
// If we can't decode the cookie, ignore it, it's unusable.
|
44 |
-
// If we can't parse the cookie, ignore it, it's unusable.
|
45 |
-
s = decodeURIComponent(s.replace(pluses, ' '));
|
46 |
-
return config.json ? JSON.parse(s) : s;
|
47 |
-
} catch(e) {}
|
48 |
-
}
|
49 |
-
|
50 |
-
function read(s, converter) {
|
51 |
-
var value = config.raw ? s : parseCookieValue(s);
|
52 |
-
return $.isFunction(converter) ? converter(value) : value;
|
53 |
-
}
|
54 |
-
|
55 |
-
var config = $.cookie = function (key, value, options) {
|
56 |
-
|
57 |
-
// Write
|
58 |
-
|
59 |
-
if (value !== undefined && !$.isFunction(value)) {
|
60 |
-
options = $.extend({}, config.defaults, options);
|
61 |
-
|
62 |
-
if (typeof options.expires === 'number') {
|
63 |
-
var days = options.expires, t = options.expires = new Date();
|
64 |
-
t.setTime(+t + days * 864e+5);
|
65 |
-
}
|
66 |
-
|
67 |
-
return (document.cookie = [
|
68 |
-
encode(key), '=', stringifyCookieValue(value),
|
69 |
-
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
|
70 |
-
options.path ? '; path=' + options.path : '',
|
71 |
-
options.domain ? '; domain=' + options.domain : '',
|
72 |
-
options.secure ? '; secure' : ''
|
73 |
-
].join(''));
|
74 |
-
}
|
75 |
-
|
76 |
-
// Read
|
77 |
-
|
78 |
-
var result = key ? undefined : {};
|
79 |
-
|
80 |
-
// To prevent the for loop in the first place assign an empty array
|
81 |
-
// in case there are no cookies at all. Also prevents odd result when
|
82 |
-
// calling $.cookie().
|
83 |
-
var cookies = document.cookie ? document.cookie.split('; ') : [];
|
84 |
-
|
85 |
-
for (var i = 0, l = cookies.length; i < l; i++) {
|
86 |
-
var parts = cookies[i].split('=');
|
87 |
-
var name = decode(parts.shift());
|
88 |
-
var cookie = parts.join('=');
|
89 |
-
|
90 |
-
if (key && key === name) {
|
91 |
-
// If second argument (value) is a function it's a converter...
|
92 |
-
result = read(cookie, value);
|
93 |
-
break;
|
94 |
-
}
|
95 |
-
|
96 |
-
// Prevent storing a cookie that we couldn't decode.
|
97 |
-
if (!key && (cookie = read(cookie)) !== undefined) {
|
98 |
-
result[name] = cookie;
|
99 |
-
}
|
100 |
-
}
|
101 |
-
|
102 |
-
return result;
|
103 |
-
};
|
104 |
-
|
105 |
-
config.defaults = {};
|
106 |
-
|
107 |
-
$.removeCookie = function (key, options) {
|
108 |
-
if ($.cookie(key) === undefined) {
|
109 |
-
return false;
|
110 |
-
}
|
111 |
-
|
112 |
-
// Must not alter options, thus extending a fresh object...
|
113 |
-
$.cookie(key, '', $.extend({}, options, { expires: -1 }));
|
114 |
-
return !$.cookie(key);
|
115 |
-
};
|
116 |
-
|
117 |
-
}));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
files/js/options-js.js
DELETED
@@ -1,89 +0,0 @@
|
|
1 |
-
jQuery(document).ready(function ($) {
|
2 |
-
$('#wc_voting_buttons_show_hide').change(function () {
|
3 |
-
if ($(this).is(':checked')) {
|
4 |
-
$(this).val('1');
|
5 |
-
} else {
|
6 |
-
$(this).val('0');
|
7 |
-
}
|
8 |
-
});
|
9 |
-
|
10 |
-
$('#wc_share_buttons_show_hide').change(function () {
|
11 |
-
if ($(this).is(':checked')) {
|
12 |
-
$(this).val('1');
|
13 |
-
} else {
|
14 |
-
$(this).val('0');
|
15 |
-
}
|
16 |
-
});
|
17 |
-
|
18 |
-
$('#wc_captcha_show_hide').change(function () {
|
19 |
-
if ($(this).is(':checked')) {
|
20 |
-
$(this).val('1');
|
21 |
-
} else {
|
22 |
-
$(this).val('0');
|
23 |
-
}
|
24 |
-
});
|
25 |
-
|
26 |
-
$('#wc_reply_button_guests_show_hide').change(function () {
|
27 |
-
if ($(this).is(':checked')) {
|
28 |
-
$(this).val('1');
|
29 |
-
} else {
|
30 |
-
$(this).val('0');
|
31 |
-
}
|
32 |
-
});
|
33 |
-
|
34 |
-
$('#wc_reply_button_members_show_hide').change(function () {
|
35 |
-
if ($(this).is(':checked')) {
|
36 |
-
$(this).val('1');
|
37 |
-
} else {
|
38 |
-
$(this).val('0');
|
39 |
-
}
|
40 |
-
});
|
41 |
-
|
42 |
-
$('#wc_author_titles_show_hide').change(function () {
|
43 |
-
if ($(this).is(':checked')) {
|
44 |
-
$(this).val('1');
|
45 |
-
} else {
|
46 |
-
$(this).val('0');
|
47 |
-
}
|
48 |
-
});
|
49 |
-
|
50 |
-
$('#wc_jquery_ajax_features_on_off').change(function () {
|
51 |
-
if ($(this).is(':checked')) {
|
52 |
-
$(this).val('1');
|
53 |
-
} else {
|
54 |
-
$(this).val('0');
|
55 |
-
}
|
56 |
-
});
|
57 |
-
|
58 |
-
$('#wc_held_comment_to_moderate').change(function () {
|
59 |
-
if ($(this).is(':checked')) {
|
60 |
-
$(this).val('1');
|
61 |
-
} else {
|
62 |
-
$(this).val('0');
|
63 |
-
}
|
64 |
-
});
|
65 |
-
|
66 |
-
$('#wc_simple_comment_date').change(function () {
|
67 |
-
if ($(this).is(':checked')) {
|
68 |
-
$(this).val('1');
|
69 |
-
} else {
|
70 |
-
$(this).val('0');
|
71 |
-
}
|
72 |
-
});
|
73 |
-
|
74 |
-
$('#wc_show_hide_comment_checkbox').change(function () {
|
75 |
-
if ($(this).is(':checked')) {
|
76 |
-
$(this).val('1');
|
77 |
-
} else {
|
78 |
-
$(this).val('0');
|
79 |
-
}
|
80 |
-
});
|
81 |
-
|
82 |
-
$('#wc_show_hide_reply_checkbox').change(function () {
|
83 |
-
if ($(this).is(':checked')) {
|
84 |
-
$(this).val('1');
|
85 |
-
} else {
|
86 |
-
$(this).val('0');
|
87 |
-
}
|
88 |
-
});
|
89 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
files/js/validator.js
DELETED
@@ -1,380 +0,0 @@
|
|
1 |
-
/*
|
2 |
-
Validator v1.1.0
|
3 |
-
(c) Yair Even Or
|
4 |
-
https://github.com/yairEO/validator
|
5 |
-
|
6 |
-
MIT-style license.
|
7 |
-
*/
|
8 |
-
|
9 |
-
var wpdiscuzValidator = (function ($) {
|
10 |
-
var message, tests, checkField, validate, mark, unmark, field, minmax, defaults,
|
11 |
-
validateWords, lengthRange, lengthLimit, pattern, alertTxt, data,
|
12 |
-
email_illegalChars = /[\(\)\<\>\,\;\:\\\/\"\[\]]/,
|
13 |
-
email_filter = /^.+@.+\..{2,4}$/;
|
14 |
-
// email_filter = /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/;
|
15 |
-
/* general text messages
|
16 |
-
*/
|
17 |
-
message = {
|
18 |
-
invalid: 'invalid input',
|
19 |
-
empty: 'please put something here',
|
20 |
-
min: 'input is too short',
|
21 |
-
max: 'input is too long',
|
22 |
-
number_min: 'too low',
|
23 |
-
number_max: 'too high',
|
24 |
-
url: 'invalid URL',
|
25 |
-
number: 'not a number',
|
26 |
-
email: 'email address is invalid',
|
27 |
-
email_repeat: 'emails do not match',
|
28 |
-
password_repeat: 'passwords do not match',
|
29 |
-
repeat: 'no match',
|
30 |
-
complete: 'input is not complete',
|
31 |
-
select: 'Please select an option'
|
32 |
-
};
|
33 |
-
if (!window.console) {
|
34 |
-
console = {};
|
35 |
-
console.log = console.warn = function () {
|
36 |
-
return;
|
37 |
-
}
|
38 |
-
}
|
39 |
-
|
40 |
-
// defaults
|
41 |
-
defaults = {alerts: true};
|
42 |
-
/* Tests for each type of field (including Select element)
|
43 |
-
*/
|
44 |
-
tests = {
|
45 |
-
sameAsPlaceholder: function (a) {
|
46 |
-
return $.fn.placeholder && a.attr('placeholder') !== undefined && data.val == a.prop('placeholder');
|
47 |
-
},
|
48 |
-
hasValue: function (a) {
|
49 |
-
if (!a) {
|
50 |
-
alertTxt = message.empty;
|
51 |
-
return false;
|
52 |
-
}
|
53 |
-
return true;
|
54 |
-
},
|
55 |
-
// 'linked' is a special test case for inputs which their values should be equal to each other (ex. confirm email or retype password)
|
56 |
-
linked: function (a, b) {
|
57 |
-
if (b != a) {
|
58 |
-
// choose a specific message or a general one
|
59 |
-
alertTxt = message[data.type + '_repeat'] || message.no_match;
|
60 |
-
return false;
|
61 |
-
}
|
62 |
-
return true;
|
63 |
-
},
|
64 |
-
email: function (a) {
|
65 |
-
if (!email_filter.test(a) || a.match(email_illegalChars)) {
|
66 |
-
alertTxt = a ? message.email : message.empty;
|
67 |
-
return false;
|
68 |
-
}
|
69 |
-
return true;
|
70 |
-
},
|
71 |
-
text: function (a) {
|
72 |
-
// make sure there are at least X number of words, each at least 2 chars long.
|
73 |
-
// for example 'john F kenedy' should be at least 2 words and will pass validation
|
74 |
-
if (validateWords) {
|
75 |
-
var words = a.split(' ');
|
76 |
-
// iterrate on all the words
|
77 |
-
var wordsLength = function (len) {
|
78 |
-
for (var w = words.length; w--; )
|
79 |
-
if (words[w].length < len)
|
80 |
-
return false;
|
81 |
-
return true;
|
82 |
-
};
|
83 |
-
if (words.length < validateWords || !wordsLength(2)) {
|
84 |
-
alertTxt = message.complete;
|
85 |
-
return false;
|
86 |
-
}
|
87 |
-
return true;
|
88 |
-
}
|
89 |
-
if (lengthRange && a.length < lengthRange[0]) {
|
90 |
-
alertTxt = message.min;
|
91 |
-
return false;
|
92 |
-
}
|
93 |
-
|
94 |
-
// check if there is max length & field length is greater than the allowed
|
95 |
-
if (lengthRange && lengthRange[1] && a.length > lengthRange[1]) {
|
96 |
-
alertTxt = message.max;
|
97 |
-
return false;
|
98 |
-
}
|
99 |
-
// check if the field's value should obey any length limits, and if so, make sure the length of the value is as specified
|
100 |
-
if (lengthLimit && lengthLimit.length) {
|
101 |
-
var obeyLimit = false;
|
102 |
-
while (lengthLimit.length) {
|
103 |
-
if (lengthLimit.pop() == a.length)
|
104 |
-
obeyLimit = true;
|
105 |
-
}
|
106 |
-
if (!obeyLimit) {
|
107 |
-
alertTxt = message.complete;
|
108 |
-
return false;
|
109 |
-
}
|
110 |
-
}
|
111 |
-
|
112 |
-
if (pattern) {
|
113 |
-
var regex, jsRegex;
|
114 |
-
switch (pattern) {
|
115 |
-
case 'alphanumeric' :
|
116 |
-
regex = /^[a-z0-9]+$/i;
|
117 |
-
break;
|
118 |
-
case 'numeric' :
|
119 |
-
regex = /^[0-9]+$/i;
|
120 |
-
break;
|
121 |
-
case 'phone' :
|
122 |
-
regex = /^\+?([0-9]|[-|' '])+$/i;
|
123 |
-
break;
|
124 |
-
default :
|
125 |
-
regex = pattern;
|
126 |
-
}
|
127 |
-
try {
|
128 |
-
jsRegex = new RegExp(regex).test(a);
|
129 |
-
if (a && !jsRegex)
|
130 |
-
return false;
|
131 |
-
}
|
132 |
-
catch (err) {
|
133 |
-
console.log(err, field, 'regex is invalid');
|
134 |
-
return false;
|
135 |
-
}
|
136 |
-
}
|
137 |
-
return true;
|
138 |
-
},
|
139 |
-
number: function (a) {
|
140 |
-
// if not not a number
|
141 |
-
if (isNaN(parseFloat(a)) && !isFinite(a)) {
|
142 |
-
alertTxt = message.number;
|
143 |
-
return false;
|
144 |
-
}
|
145 |
-
// not enough numbers
|
146 |
-
else if (lengthRange && a.length < lengthRange[0]) {
|
147 |
-
alertTxt = message.min;
|
148 |
-
return false;
|
149 |
-
}
|
150 |
-
// check if there is max length & field length is greater than the allowed
|
151 |
-
else if (lengthRange && lengthRange[1] && a.length > lengthRange[1]) {
|
152 |
-
alertTxt = message.max;
|
153 |
-
return false;
|
154 |
-
}
|
155 |
-
else if (minmax[0] && (a | 0) < minmax[0]) {
|
156 |
-
alertTxt = message.number_min;
|
157 |
-
return false;
|
158 |
-
}
|
159 |
-
else if (minmax[1] && (a | 0) > minmax[1]) {
|
160 |
-
alertTxt = message.number_max;
|
161 |
-
return false;
|
162 |
-
}
|
163 |
-
return true;
|
164 |
-
},
|
165 |
-
// Date is validated in European format (day,month,year)
|
166 |
-
date: function (a) {
|
167 |
-
var day, A = a.split(/[-./]/g), i;
|
168 |
-
// if there is native HTML5 support:
|
169 |
-
if (field[0].valueAsNumber)
|
170 |
-
return true;
|
171 |
-
for (i = A.length; i--; ) {
|
172 |
-
if (isNaN(parseFloat(a)) && !isFinite(a))
|
173 |
-
return false;
|
174 |
-
}
|
175 |
-
try {
|
176 |
-
day = new Date(A[2], A[1] - 1, A[0]);
|
177 |
-
if (day.getMonth() + 1 == A[1] && day.getDate() == A[0])
|
178 |
-
return day;
|
179 |
-
return false;
|
180 |
-
}
|
181 |
-
catch (er) {
|
182 |
-
console.log('date test: ', err);
|
183 |
-
return false;
|
184 |
-
}
|
185 |
-
},
|
186 |
-
url: function (a) {
|
187 |
-
// minimalistic URL validation
|
188 |
-
function testUrl(url) {
|
189 |
-
// return /^(?:(?:https?|ftp):\/\/)(?:\S+(?::\S*)?@)?(?:(?!10(?:\.\d{1,3}){3})(?!127(?:\.\d{1,3}){3})(?!169\.254(?:\.\d{1,3}){2})(?!192\.168(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]+-?)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]+-?)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})))(?::\d{2,5})?(?:\/[^\s]*)?$/i.test(url);
|
190 |
-
// return /^(ht|f)tps?:\/\/[a-z0-9-\.]+\.[a-zа-я]{2,4}\/?([^\s<>\#%"\,\{\}\\|\\\^\[\]`]+)?$/.test(url);
|
191 |
-
return /^(?:(?:https?|ftp):\/\/)?(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})))(?::\d{2,5})?(?:\/\S*)?$/i.test(url);
|
192 |
-
// return /^(https?:\/\/)?([\w\d\-_]+\.+[A-Za-z]{2,})+\/?/.test(url);
|
193 |
-
}
|
194 |
-
if (!testUrl(a)) {
|
195 |
-
console.log(a);
|
196 |
-
alertTxt = a ? message.url : message.empty;
|
197 |
-
return false;
|
198 |
-
}
|
199 |
-
return true;
|
200 |
-
},
|
201 |
-
hidden: function (a) {
|
202 |
-
if (lengthRange && a.length < lengthRange[0]) {
|
203 |
-
alertTxt = message.min;
|
204 |
-
return false;
|
205 |
-
}
|
206 |
-
if (pattern) {
|
207 |
-
var regex;
|
208 |
-
if (pattern == 'alphanumeric') {
|
209 |
-
regex = /^[a-z0-9]+$/i;
|
210 |
-
if (!regex.test(a)) {
|
211 |
-
return false;
|
212 |
-
}
|
213 |
-
}
|
214 |
-
}
|
215 |
-
return true;
|
216 |
-
},
|
217 |
-
select: function (a) {
|
218 |
-
if (!tests.hasValue(a)) {
|
219 |
-
alertTxt = message.select;
|
220 |
-
return false;
|
221 |
-
}
|
222 |
-
return true;
|
223 |
-
}
|
224 |
-
};
|
225 |
-
/* marks invalid fields
|
226 |
-
*/
|
227 |
-
mark = function (field, text) {
|
228 |
-
if (!text || !field || !field.length)
|
229 |
-
return false;
|
230 |
-
// check if not already marked as a 'bad' record and add the 'alert' object.
|
231 |
-
// if already is marked as 'bad', then make sure the text is set again because it might change depending on validation
|
232 |
-
var item = field.parents('.wpdiscuz-item'),
|
233 |
-
warning;
|
234 |
-
if (item.hasClass('bad')) {
|
235 |
-
if (defaults.alerts)
|
236 |
-
item.find('.alert').html(text);
|
237 |
-
}
|
238 |
-
else if (defaults.alerts) {
|
239 |
-
warning = $('<div class="alert">').html(text);
|
240 |
-
item.append(warning);
|
241 |
-
}
|
242 |
-
|
243 |
-
item.removeClass('bad');
|
244 |
-
// a delay so the "alert" could be transitioned via CSS
|
245 |
-
setTimeout(function () {
|
246 |
-
item.addClass('bad');
|
247 |
-
}, 0);
|
248 |
-
};
|
249 |
-
/* un-marks invalid fields
|
250 |
-
*/
|
251 |
-
unmark = function (field) {
|
252 |
-
if (!field || !field.length) {
|
253 |
-
console.warn('no "field" argument, null or DOM object not found');
|
254 |
-
return false;
|
255 |
-
}
|
256 |
-
|
257 |
-
field.parents('.wpdiscuz-item')
|
258 |
-
.removeClass('bad')
|
259 |
-
.find('.alert').remove();
|
260 |
-
};
|
261 |
-
function testByType(type, value) {
|
262 |
-
if (type == 'tel')
|
263 |
-
pattern = pattern || 'phone';
|
264 |
-
if (!type || type == 'password' || type == 'tel')
|
265 |
-
type = 'text';
|
266 |
-
return tests[type](value);
|
267 |
-
}
|
268 |
-
|
269 |
-
function prepareFieldData(el) {
|
270 |
-
field = $(el);
|
271 |
-
field.data('valid', true); // initialize validity of field
|
272 |
-
field.data('type', field.attr('type')); // every field starts as 'valid=true' until proven otherwise
|
273 |
-
pattern = field.attr('pattern');
|
274 |
-
}
|
275 |
-
|
276 |
-
/* Validations per-character keypress
|
277 |
-
*/
|
278 |
-
function keypress(e) {
|
279 |
-
prepareFieldData(this);
|
280 |
-
if (e.charCode)
|
281 |
-
return testByType(this.type, String.fromCharCode(e.charCode));
|
282 |
-
}
|
283 |
-
|
284 |
-
/* Checks a single form field by it's type and specific (custom) attributes
|
285 |
-
*/
|
286 |
-
function checkField() {
|
287 |
-
// skip testing fields whom their type is not HIDDEN but they are HIDDEN via CSS.
|
288 |
-
if (this.type != 'hidden' && $(this).is(':hidden'))
|
289 |
-
return true;
|
290 |
-
prepareFieldData(this);
|
291 |
-
field.data('val', field[0].value.replace(/^\s+|\s+$/g, "")); // cache the value of the field and trim it
|
292 |
-
data = field.data();
|
293 |
-
// Check if there is a specific error message for that field, if not, use the default 'invalid' message
|
294 |
-
alertTxt = message[field.prop('name')] || message.invalid;
|
295 |
-
// SELECT / TEXTAREA nodes needs special treatment
|
296 |
-
if (field[0].nodeName.toLowerCase() === "select") {
|
297 |
-
data.type = 'select';
|
298 |
-
}
|
299 |
-
if (field[0].nodeName.toLowerCase() === "textarea") {
|
300 |
-
data.type = 'text';
|
301 |
-
}
|
302 |
-
/* Gather Custom data attributes for specific validation:
|
303 |
-
*/
|
304 |
-
validateWords = data['validateWords'] || 0;
|
305 |
-
lengthRange = data['validateLengthRange'] ? (data['validateLengthRange'] + '').split(',') : [1];
|
306 |
-
lengthLimit = data['validateLength'] ? (data['validateLength'] + '').split(',') : false;
|
307 |
-
minmax = data['validateMinmax'] ? (data['validateMinmax'] + '').split(',') : ''; // for type 'number', defines the minimum and/or maximum for the value as a number.
|
308 |
-
|
309 |
-
data.valid = tests.hasValue(data.val);
|
310 |
-
// check if field has any value
|
311 |
-
if (data.valid) {
|
312 |
-
/* Validate the field's value is different than the placeholder attribute (and attribute exists)
|
313 |
-
* this is needed when fixing the placeholders for older browsers which does not support them.
|
314 |
-
* in this case, make sure the "placeholder" jQuery plugin was even used before proceeding
|
315 |
-
*/
|
316 |
-
if (tests.sameAsPlaceholder(field)) {
|
317 |
-
alertTxt = message.empty;
|
318 |
-
data.valid = false;
|
319 |
-
}
|
320 |
-
|
321 |
-
// if this field is linked to another field (their values should be the same)
|
322 |
-
if (data.validateLinked) {
|
323 |
-
var linkedTo = data['validateLinked'].indexOf('#') == 0 ? $(data['validateLinked']) : $(':input[name=' + data['validateLinked'] + ']');
|
324 |
-
data.valid = tests.linked(data.val, linkedTo.val());
|
325 |
-
}
|
326 |
-
/* validate by type of field. use 'attr()' is proffered to get the actual value and not what the browsers sees for unsupported types.
|
327 |
-
*/
|
328 |
-
else if (data.valid || data.type == 'select') {
|
329 |
-
data.valid = testByType(data.type, data.val);
|
330 |
-
}
|
331 |
-
|
332 |
-
}
|
333 |
-
|
334 |
-
// optional fields are only validated if they are not empty
|
335 |
-
if (field.hasClass('wpdiscuz_optional') && !data.val) {
|
336 |
-
data.valid = true;
|
337 |
-
}
|
338 |
-
|
339 |
-
// mark / unmark the field, and set the general 'submit' flag accordingly
|
340 |
-
if (data.valid) {
|
341 |
-
unmark(field);
|
342 |
-
}
|
343 |
-
else {
|
344 |
-
mark(field, alertTxt);
|
345 |
-
submit = false;
|
346 |
-
}
|
347 |
-
|
348 |
-
return data.valid;
|
349 |
-
}
|
350 |
-
|
351 |
-
/* vaildates all the REQUIRED fields prior to submiting the form
|
352 |
-
*/
|
353 |
-
function checkAll($form) {
|
354 |
-
$form = $($form);
|
355 |
-
if ($form.length == 0) {
|
356 |
-
console.warn('element not found');
|
357 |
-
return false;
|
358 |
-
}
|
359 |
-
|
360 |
-
var that = this,
|
361 |
-
submit = true, // save the scope
|
362 |
-
fieldsToCheck = $form.find(':input').filter('[required=required], .required, .wpdiscuz_optional').not('[disabled=disabled]');
|
363 |
-
fieldsToCheck.each(function () {
|
364 |
-
// use an AND operation, so if any of the fields returns 'false' then the submitted result will be also FALSE
|
365 |
-
submit = submit * checkField.apply(this);
|
366 |
-
});
|
367 |
-
return !!submit; // casting the variable to make sure it's a boolean
|
368 |
-
}
|
369 |
-
|
370 |
-
return {
|
371 |
-
defaults: defaults,
|
372 |
-
checkField: checkField,
|
373 |
-
keypress: keypress,
|
374 |
-
checkAll: checkAll,
|
375 |
-
mark: mark,
|
376 |
-
unmark: unmark,
|
377 |
-
message: message,
|
378 |
-
tests: tests
|
379 |
-
}
|
380 |
-
})(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
files/js/validator.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
var wpdiscuzValidator=(function(c){var l,e,o,q,h,s,b,g,j,r,m,t,u,f,v,a=/[\(\)\<\>\,\;\:\\\/\"\[\]]/,d=/^.+@.+\..{2,
|
1 |
+
var wpdiscuzValidator=(function(c){var l,e,o,q,h,s,b,g,j,r,m,t,u,f,v,a=/[\(\)\<\>\,\;\:\\\/\"\[\]]/,d=/^.+@.+\..{2,3}$/;l={invalid:"invalid input",empty:"please put something here",min:"input is too short",max:"input is too long",number_min:"too low",number_max:"too high",url:"invalid URL",number:"not a number",email:"email address is invalid",email_repeat:"emails do not match",password_repeat:"passwords do not match",repeat:"no match",complete:"input is not complete",select:"Please select an option"};if(!window.console){console={};console.log=console.warn=function(){return}}j={alerts:true};e={sameAsPlaceholder:function(w){return c.fn.placeholder&&w.attr("placeholder")!==undefined&&v.val==w.prop("placeholder")},hasValue:function(w){if(!w){f=l.empty;return false}return true},linked:function(x,w){if(w!=x){f=l[v.type+"_repeat"]||l.no_match;return false}return true},email:function(w){if(!d.test(w)||w.match(a)){f=w?l.email:l.empty;return false}return true},text:function(x){if(r){var C=x.split(" ");var B=function(D){for(var E=C.length;E--;){if(C[E].length<D){return false}}return true};if(C.length<r||!B(2)){f=l.complete;return false}return true}if(m&&x.length<m[0]){f=l.min;return false}if(m&&m[1]&&x.length>m[1]){f=l.max;return false}if(t&&t.length){var A=false;while(t.length){if(t.pop()==x.length){A=true}}if(!A){f=l.complete;return false}}if(u){var z,w;switch(u){case"alphanumeric":z=/^[a-z0-9]+$/i;break;case"numeric":z=/^[0-9]+$/i;break;case"phone":z=/^\+?([0-9]|[-|' '])+$/i;break;default:z=u}try{w=new RegExp(z).test(x);if(x&&!w){return false}}catch(y){console.log(y,b,"regex is invalid");return false}}return true},number:function(w){if(isNaN(parseFloat(w))&&!isFinite(w)){f=l.number;return false}else{if(m&&w.length<m[0]){f=l.min;return false}else{if(m&&m[1]&&w.length>m[1]){f=l.max;return false}else{if(g[0]&&(w|0)<g[0]){f=l.number_min;return false}else{if(g[1]&&(w|0)>g[1]){f=l.number_max;return false}}}}}return true},date:function(x){var y,w=x.split(/[-./]/g),z;if(b[0].valueAsNumber){return true}for(z=w.length;z--;){if(isNaN(parseFloat(x))&&!isFinite(x)){return false}}try{y=new Date(w[2],w[1]-1,w[0]);if(y.getMonth()+1==w[1]&&y.getDate()==w[0]){return y}return false}catch(B){console.log("date test: ",err);return false}},url:function(w){function x(y){}if(!x(w)){console.log(w);f=w?l.url:l.empty;return false}return true},hidden:function(w){if(m&&w.length<m[0]){f=l.min;return false}if(u){var x;if(u=="alphanumeric"){x=/^[a-z0-9]+$/i;if(!x.test(w)){return false}}}return true},select:function(w){if(!e.hasValue(w)){f=l.select;return false}return true}};h=function(y,z){if(!z||!y||!y.length){return false}var x=y.parents(".wpdiscuz-item"),w;if(x.hasClass("bad")){if(j.alerts){x.find(".alert").html(z)}}else{if(j.alerts){w=c('<div class="alert">').html(z);x.append(w)}}x.removeClass("bad");setTimeout(function(){x.addClass("bad")},0)};s=function(w){if(!w||!w.length){console.warn('no "field" argument, null or DOM object not found');return false}w.parents(".wpdiscuz-item").removeClass("bad").find(".alert").remove()};function k(w,x){if(w=="tel"){u=u||"phone"}if(!w||w=="password"||w=="tel"){w="text"}return e[w](x)}function p(w){b=c(w);b.data("valid",true);b.data("type",b.attr("type"));u=b.attr("pattern")}function i(w){p(this);if(w.charCode){return k(this.type,String.fromCharCode(w.charCode))}}function o(){if(this.type!="hidden"&&c(this).is(":hidden")){return true}p(this);b.data("val",b[0].value.replace(/^\s+|\s+$/g,""));v=b.data();f=l[b.prop("name")]||l.invalid;if(b[0].nodeName.toLowerCase()==="select"){v.type="select"}if(b[0].nodeName.toLowerCase()==="textarea"){v.type="text"}r=v.validateWords||0;m=v.validateLengthRange?(v.validateLengthRange+"").split(","):[1];t=v.validateLength?(v.validateLength+"").split(","):false;g=v.validateMinmax?(v.validateMinmax+"").split(","):"";v.valid=e.hasValue(v.val);if(v.valid){if(e.sameAsPlaceholder(b)){f=l.empty;v.valid=false}if(v.validateLinked){var w=v.validateLinked.indexOf("#")==0?c(v.validateLinked):c(":input[name="+v.validateLinked+"]");v.valid=e.linked(v.val,w.val())}else{if(v.valid||v.type=="select"){v.valid=k(v.type,v.val)}}}if(b.hasClass("wpdiscuz_optional")&&!v.val){v.valid=true}if(v.valid){s(b)}else{h(b,f);submit=false}return v.valid}function n(w){w=c(w);if(w.length==0){console.warn("element not found");return false}var y=this,z=true,x=w.find(":input").filter("[required=required], .required, .wpdiscuz_optional").not("[disabled=disabled]");x.each(function(){z=z*o.apply(this)});return !!z}return{defaults:j,checkField:o,keypress:i,checkAll:n,mark:h,unmark:s,message:l,tests:e}})(jQuery);
|
files/js/wc-ajax.js
DELETED
@@ -1,763 +0,0 @@
|
|
1 |
-
jQuery(document).ready(function ($) {
|
2 |
-
var wc_home_url = $('#wc_home_url').val();
|
3 |
-
var wc_plugin_dir_url = $('#wc_plugin_dir_url').val();
|
4 |
-
var wc_name;
|
5 |
-
var wc_email;
|
6 |
-
var wc_comment;
|
7 |
-
var wc_website;
|
8 |
-
var wc_captcha;
|
9 |
-
var wc_comment_post_ID;
|
10 |
-
var wc_comment_parent;
|
11 |
-
var wc_form;
|
12 |
-
var wc_submitID;
|
13 |
-
var wc_comments_offset;
|
14 |
-
var wc_new_comment_id;
|
15 |
-
var wc_loading_image;
|
16 |
-
var wc_comment_list_update_type = parseInt($('#wc_comment_list_update_type').val());
|
17 |
-
var wc_comment_list_update_timer = parseInt($('#wc_comment_list_update_timer').val());
|
18 |
-
var wc_all_comments_count_new;
|
19 |
-
var wc_comment_text_before_editting;
|
20 |
-
var wc_website_placeholder_text = $('.wc_website').attr('placeholder');
|
21 |
-
|
22 |
-
$(".wc_comment").autoGrow();
|
23 |
-
|
24 |
-
$(document).delegate('#wc_openModalFormAction', 'click', function () {
|
25 |
-
$('#wc_openModalFormAction').css('opacity', '0');
|
26 |
-
$('#wc_openModalFormAction').css('pointer-events', 'none');
|
27 |
-
});
|
28 |
-
|
29 |
-
$(document).delegate('#wc_openModalFormAction .close', 'click', function () {
|
30 |
-
$('#wc_openModalFormAction').css('opacity', '0');
|
31 |
-
$('#wc_openModalFormAction').css('pointer-events', 'none');
|
32 |
-
});
|
33 |
-
|
34 |
-
wc_loading_image = "<img width='64' height='64' src='" + wc_home_url + '/' + wc_plugin_dir_url + "/files/img/loader/ajax-loader-200x200.gif' />";
|
35 |
-
wc_comments_offset = $('#wc_comments_offset');
|
36 |
-
wc_comments_offset.val('1');
|
37 |
-
|
38 |
-
$(document).delegate('.wc_comment', 'focus', function () {
|
39 |
-
var uniqueID = getUniqueID($(this));
|
40 |
-
$('#wc-form-footer-' + uniqueID).slideDown(700);
|
41 |
-
});
|
42 |
-
|
43 |
-
$(document).delegate('.wc-reply-link', 'click', function () {
|
44 |
-
var uniqueID = getUniqueID($(this));
|
45 |
-
if ($('.wc_social_plugin_wrapper .wp-social-login-provider-list').length && !($('#wc-secondary-forms-social-content-' + uniqueID + ' .wp-social-login-provider-list').length)) {
|
46 |
-
$('.wc_social_plugin_wrapper .wp-social-login-provider-list').clone().prependTo('#wc-secondary-forms-social-content-' + uniqueID);
|
47 |
-
} else if ($('.wc_social_plugin_wrapper .the_champ_login_container').length && !($('#wc-secondary-forms-social-content-' + uniqueID + ' .the_champ_login_container').length)) {
|
48 |
-
$('.wc_social_plugin_wrapper .the_champ_login_container').clone().prependTo('#wc-secondary-forms-social-content-' + uniqueID);
|
49 |
-
} else if ($('.wc_social_plugin_wrapper .social_connect_form').length && !($('#wc-secondary-forms-social-content-' + uniqueID + ' .social_connect_form').length)) {
|
50 |
-
$('.wc_social_plugin_wrapper .social_connect_form').clone().prependTo('#wc-secondary-forms-social-content-' + uniqueID);
|
51 |
-
}else if ($('.wc_social_plugin_wrapper .oneall_social_login_providers').length && !($('#wc-secondary-forms-social-content-' + uniqueID + ' .oneall_social_login_providers').length)) {
|
52 |
-
$('.wc_social_plugin_wrapper .oneall_social_login .oneall_social_login_providers').clone().prependTo('#wc-secondary-forms-social-content-' + uniqueID);
|
53 |
-
}
|
54 |
-
|
55 |
-
$('#wc-secondary-forms-wrapper-' + uniqueID).slideToggle(700);
|
56 |
-
});
|
57 |
-
|
58 |
-
$(document).delegate('.wc-share-link', 'click', function () {
|
59 |
-
var uniqueID = getUniqueID($(this));
|
60 |
-
$('#share_buttons_box-' + uniqueID).slideToggle(1000);
|
61 |
-
});
|
62 |
-
|
63 |
-
$(document).delegate('.wc_captcha_refresh_img', 'click', function () {
|
64 |
-
var uniqueID = getUniqueID($(this));
|
65 |
-
var wc_commpost_ID = $('#wc_comment_post_ID-' + uniqueID).val();
|
66 |
-
var wc_commparent = $('#wc_comment_parent-' + uniqueID).val();
|
67 |
-
$("#wc_captcha_img-" + uniqueID).attr("src", wc_home_url + "/" + wc_plugin_dir_url + "/captcha/captcha.php?comm_id=" + wc_commpost_ID + '-' + wc_commparent + '&r=' + Math.random());
|
68 |
-
});
|
69 |
-
|
70 |
-
$(document).delegate('.wc_comm_submit', 'click', function () {
|
71 |
-
wc_submitID = $(this).attr('id');
|
72 |
-
var uniqueID = wc_submitID.substring(wc_submitID.lastIndexOf('-') + 1);
|
73 |
-
wc_name = $('#wc_name-' + uniqueID).val();
|
74 |
-
wc_email = $('#wc_email-' + uniqueID).val();
|
75 |
-
wc_website = ($('#wc_website-' + uniqueID).length) ? $('#wc_website-' + uniqueID).val() : '';
|
76 |
-
if(wc_website_placeholder_text == wc_website){wc_website ='';}
|
77 |
-
wc_comment = $('textarea#wc_comment-' + uniqueID).val();
|
78 |
-
wc_captcha = $('#wc_captcha-' + uniqueID).val();
|
79 |
-
wc_comment_post_ID = $('#wc_comment_post_ID-' + uniqueID).val();
|
80 |
-
wc_comment_parent = $('#wc_comment_parent-' + uniqueID).val();
|
81 |
-
wc_form = $('#wc_comm_form-' + uniqueID);
|
82 |
-
var notification_type_radio = $("input[name='wc_comment_reply_notification-" + uniqueID + "']:checked").length ? $("input[name='wc_comment_reply_notification-" + uniqueID + "']:checked").val() : '';
|
83 |
-
|
84 |
-
var depth = '';
|
85 |
-
if (isMainFormSubmit(wc_submitID, wc_comment_post_ID)) {
|
86 |
-
depth = 1;
|
87 |
-
} else {
|
88 |
-
depth = getCommentDepth($(this).parents('.wc-comment'));
|
89 |
-
}
|
90 |
-
|
91 |
-
|
92 |
-
var notification_type = '';
|
93 |
-
if (notification_type_radio.length && notification_type_radio != 'wc_notification_none') {
|
94 |
-
if (notification_type_radio == 'wc_notification_new_reply') {
|
95 |
-
notification_type = 'comment';
|
96 |
-
}
|
97 |
-
if (notification_type_radio == 'wc_notification_all_new_reply') {
|
98 |
-
notification_type = 'all_comment';
|
99 |
-
}
|
100 |
-
if (notification_type_radio == 'wc_notification_new_comment') {
|
101 |
-
notification_type = 'post';
|
102 |
-
}
|
103 |
-
|
104 |
-
}
|
105 |
-
|
106 |
-
var submit = true;
|
107 |
-
// evaluate the form using generic validaing
|
108 |
-
if (!wpdiscuzValidator.checkAll(wc_form)) {
|
109 |
-
submit = false;
|
110 |
-
// testic heto bacel commentnery
|
111 |
-
$('#wc_captcha-' + uniqueID).val('');
|
112 |
-
$("#wc_captcha_img-" + uniqueID).attr("src", wc_home_url + "/" + wc_plugin_dir_url + "/captcha/captcha.php?comm_id=" + wc_comment_post_ID + '-' + wc_comment_parent + '&r=' + Math.random());
|
113 |
-
} else {
|
114 |
-
$('#wc_openModalFormAction .close').css('display', 'none');
|
115 |
-
$('#wc_openModalFormAction').css('opacity', '1');
|
116 |
-
$('#wc_openModalFormAction').css('pointer-events', 'auto');
|
117 |
-
$('#wc_openModalFormAction > #wc_response_info').html(wc_loading_image);
|
118 |
-
}
|
119 |
-
|
120 |
-
if (submit) {
|
121 |
-
$.ajax({
|
122 |
-
type: 'POST',
|
123 |
-
url: wc_ajax_obj.url,
|
124 |
-
data: {
|
125 |
-
name: wc_name,
|
126 |
-
email: wc_email,
|
127 |
-
website: wc_website,
|
128 |
-
comment: wc_comment,
|
129 |
-
captcha: wc_captcha,
|
130 |
-
comment_post_ID: wc_comment_post_ID,
|
131 |
-
comment_parent: wc_comment_parent,
|
132 |
-
comment_depth: depth,
|
133 |
-
notification_type: notification_type,
|
134 |
-
action: 'wc_comms_via_ajax'
|
135 |
-
}
|
136 |
-
}).done(function (response) {
|
137 |
-
|
138 |
-
$("#wc_captcha_img-" + uniqueID).attr("src", wc_home_url + "/" + wc_plugin_dir_url + "/captcha/captcha.php?comm_id=" + wc_comment_post_ID + '-' + wc_comment_parent + '&r=' + Math.random());
|
139 |
-
try {
|
140 |
-
|
141 |
-
var obj = $.parseJSON(response);
|
142 |
-
wc_new_comment_id = parseInt(obj.wc_new_comment_id);
|
143 |
-
if (obj.code === -1) {
|
144 |
-
var html = "<a href='#close' title='Close' class='close'> </a>";
|
145 |
-
$('#wc_openModalFormAction').css('opacity', '1');
|
146 |
-
$('#wc_openModalFormAction').css('pointer-events', 'auto');
|
147 |
-
$('#wc_openModalFormAction .close').css('display', 'block');
|
148 |
-
$('#wc_openModalFormAction > #wc_response_info').html(html + obj.message);
|
149 |
-
} else if (obj.code === -2) {
|
150 |
-
var html = "<a href='#close' title='Close' class='close'> </a>";
|
151 |
-
$('#wc_openModalFormAction').css('opacity', '1');
|
152 |
-
$('#wc_openModalFormAction').css('pointer-events', 'auto');
|
153 |
-
$('#wc_openModalFormAction .close').css('display', 'block');
|
154 |
-
$('#wc_openModalFormAction > #wc_response_info').html(html + obj.message);
|
155 |
-
$('#wc_comment-' + uniqueID).val('');
|
156 |
-
$('.wc_comm_form textarea').css('height', '46px');
|
157 |
-
|
158 |
-
if (wc_submitID === 'wc_comm-' + wc_comment_post_ID + '_0') {
|
159 |
-
$('#wc-form-footer-' + uniqueID).slideToggle(700);
|
160 |
-
} else {
|
161 |
-
$('#wc-secondary-forms-wrapper-' + uniqueID).slideToggle(700);
|
162 |
-
}
|
163 |
-
|
164 |
-
$.cookie('wc_author_name', wc_name);
|
165 |
-
$.cookie('wc_author_email', wc_email);
|
166 |
-
$.cookie('wc_author_website', wc_website);
|
167 |
-
} else {
|
168 |
-
wc_all_comments_count_new = obj.wc_all_comments_count_new;
|
169 |
-
$('#wc_comment-' + uniqueID).val('');
|
170 |
-
$('.wc_comm_form textarea').css('height', '46px');
|
171 |
-
|
172 |
-
if (wc_submitID === 'wc_comm-' + wc_comment_post_ID + '_0') {
|
173 |
-
$('.wc-thread-wrapper').prepend(obj.message);
|
174 |
-
$('#wc-form-footer-' + uniqueID).slideToggle(700);
|
175 |
-
$('#wc_curr_user_comment_count').val(parseInt($('#wc_curr_user_comment_count').val()) + 1);
|
176 |
-
} else {
|
177 |
-
$('#wc-secondary-forms-wrapper-' + uniqueID).slideToggle(700);
|
178 |
-
|
179 |
-
if (obj.is_in_same_container == 1) {
|
180 |
-
$('#wc-secondary-forms-wrapper-' + uniqueID).after(obj.message);
|
181 |
-
} else {
|
182 |
-
$('#wc-secondary-forms-wrapper-' + uniqueID).after(obj.message.replace('wc-reply', 'wc-reply wc-no-left-margin'));
|
183 |
-
}
|
184 |
-
}
|
185 |
-
$('#wc_openModalFormAction').css('opacity', '0');
|
186 |
-
$('#wc_openModalFormAction').css('pointer-events', 'none');
|
187 |
-
$.cookie('wc_author_name', wc_name);
|
188 |
-
$.cookie('wc_author_email', wc_email);
|
189 |
-
$.cookie('wc_author_website', wc_website);
|
190 |
-
$('#wpcomm .wc_name').val(wc_name);
|
191 |
-
$('#wpcomm .wc_email').val(wc_email);
|
192 |
-
$('#wpcomm .wc_website').val(wc_website);
|
193 |
-
if ($('.wc_header_text_count').length) {
|
194 |
-
$('.wc_header_text_count').val(parseInt($('.wc_header_text_count').val()) + 1);
|
195 |
-
}
|
196 |
-
$.cookie('wc_all_comments_count_new', wc_all_comments_count_new);
|
197 |
-
|
198 |
-
}
|
199 |
-
$('#wc_captcha-' + uniqueID).val('');
|
200 |
-
$('.wc_tooltipster').tooltipster({offsetY: 2});
|
201 |
-
$('.wc_comm_form input').css('box-shadow', '0 0 4px -2px #d4d0ba');
|
202 |
-
$('.wc_comm_form textarea').css('box-shadow', '0 0 4px -2px #d4d0ba');
|
203 |
-
|
204 |
-
notify_on_new_comment(wc_comment_post_ID, wc_new_comment_id, wc_email, notification_type);
|
205 |
-
|
206 |
-
// call redirection if comment added successfully
|
207 |
-
if (obj.code == 1 || obj.code == -2) {
|
208 |
-
$.ajax({
|
209 |
-
type: 'POST',
|
210 |
-
url: wc_ajax_obj.url,
|
211 |
-
data: {
|
212 |
-
wc_new_comment_id: wc_new_comment_id,
|
213 |
-
action: 'wpdiscuz_comment_redirect'
|
214 |
-
}
|
215 |
-
}).done(function (redirectResponse) {
|
216 |
-
try {
|
217 |
-
var redirectObj = $.parseJSON(redirectResponse);
|
218 |
-
if (redirectObj.code == 1) {
|
219 |
-
setTimeout(function () {
|
220 |
-
window.location.href = redirectObj.redirect_to;
|
221 |
-
}, 5000)
|
222 |
-
}
|
223 |
-
} catch (e) {
|
224 |
-
|
225 |
-
}
|
226 |
-
});
|
227 |
-
}
|
228 |
-
|
229 |
-
} catch (e) {
|
230 |
-
$('#wc_captcha-' + uniqueID).val('');
|
231 |
-
$('.wc_tooltipster').tooltipster({offsetY: 2});
|
232 |
-
$('.wc_comm_form input').css('box-shadow', '0 0 4px -2px #d4d0ba');
|
233 |
-
$('.wc_comm_form textarea').css('box-shadow', '0 0 4px -2px #d4d0ba');
|
234 |
-
var html = "<a href='#close' title='Close' class='close'> </a>";
|
235 |
-
$('#wc_openModalFormAction').css('opacity', '1');
|
236 |
-
$('#wc_openModalFormAction').css('pointer-events', 'auto');
|
237 |
-
$('#wc_openModalFormAction .close').css('display', 'block');
|
238 |
-
if (response.indexOf('<') >= 0 && response.indexOf('>') >= 0) {
|
239 |
-
$('#wc_openModalFormAction > #wc_response_info').html(html + e);
|
240 |
-
} else {
|
241 |
-
$('#wc_openModalFormAction > #wc_response_info').html(html + response);
|
242 |
-
}
|
243 |
-
}
|
244 |
-
});
|
245 |
-
}
|
246 |
-
else {
|
247 |
-
return false;
|
248 |
-
}
|
249 |
-
});
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
$(document).delegate('.wc_vote', 'click', function () {
|
254 |
-
var uniqueID = getUniqueID($(this));
|
255 |
-
var commentID = getCommentID(uniqueID);
|
256 |
-
var voteType;
|
257 |
-
|
258 |
-
$('#wc_openModalFormAction > #wc_response_info').html(wc_loading_image);
|
259 |
-
$('#wc_openModalFormAction .close').css('display', 'block');
|
260 |
-
$('#wc_openModalFormAction').css('opacity', '1');
|
261 |
-
$('#wc_openModalFormAction').css('pointer-events', 'auto');
|
262 |
-
if ($(this).hasClass('wc-up')) {
|
263 |
-
voteType = 1;
|
264 |
-
} else {
|
265 |
-
voteType = -1;
|
266 |
-
}
|
267 |
-
|
268 |
-
$.ajax({
|
269 |
-
dateType: 'json',
|
270 |
-
type: 'POST',
|
271 |
-
url: wc_ajax_obj.url,
|
272 |
-
data: {
|
273 |
-
comment_ID: commentID,
|
274 |
-
vote_type: voteType,
|
275 |
-
action: 'wc_vote_via_ajax'
|
276 |
-
}
|
277 |
-
}).done(function (response) {
|
278 |
-
var obj = $.parseJSON(response);
|
279 |
-
|
280 |
-
if (obj.code !== -1) {
|
281 |
-
$('#vote-count-' + uniqueID).text(parseInt($('#vote-count-' + uniqueID).text()) + voteType);
|
282 |
-
$('#wc_openModalFormAction').css('opacity', '0');
|
283 |
-
$('#wc_openModalFormAction').css('pointer-events', 'none');
|
284 |
-
} else {
|
285 |
-
var html = "<a href='#close' title='Close' class='close'> </a>";
|
286 |
-
$('#wc_response_info').html(html + obj.message);
|
287 |
-
$('#wc_openModalFormAction .close').css('display', 'block');
|
288 |
-
}
|
289 |
-
});
|
290 |
-
});
|
291 |
-
|
292 |
-
// MUST BE CHANGED IN NEXT VERSION OF PLUGIN
|
293 |
-
$(document).delegate('.wc-load-more-submit', 'click', function () {
|
294 |
-
|
295 |
-
$('#wc_openModalFormAction > #wc_response_info').html(wc_loading_image);
|
296 |
-
$('#wc_openModalFormAction .close').css('display', 'none');
|
297 |
-
$('#wc_openModalFormAction').css('opacity', '1');
|
298 |
-
$('#wc_openModalFormAction').css('pointer-events', 'auto');
|
299 |
-
|
300 |
-
var wc_comments_offset_value = wc_comments_offset.val();
|
301 |
-
var wc_post_id = getPostID($(this).attr('id'));
|
302 |
-
var wc_parent_comments_count = parseInt($('#wc_parent_comments_count').val());
|
303 |
-
var wc_parent_per_page = parseInt($('#wc_parent_per_page').val());
|
304 |
-
var wc_last_comment_id = ($('#wc_last_comment_id_before_update').val()) ? $('#wc_last_comment_id_before_update').val() : 0;
|
305 |
-
var wc_curr_user_comment_count = $('#wc_curr_user_comment_count').val();
|
306 |
-
|
307 |
-
wc_comments_offset_value = parseInt(wc_comments_offset_value);
|
308 |
-
wc_comments_offset_value++;
|
309 |
-
|
310 |
-
$.ajax({
|
311 |
-
type: 'POST',
|
312 |
-
url: wc_ajax_obj.url,
|
313 |
-
data: {
|
314 |
-
comments_offset: wc_comments_offset_value,
|
315 |
-
wc_curr_user_comment_count: wc_curr_user_comment_count,
|
316 |
-
wc_post_id: wc_post_id,
|
317 |
-
wc_last_comment_id: wc_last_comment_id,
|
318 |
-
action: 'wc_load_more_comments'
|
319 |
-
}
|
320 |
-
}).done(function (response) {
|
321 |
-
var obj = $.parseJSON(response);
|
322 |
-
wc_comments_offset.val(wc_comments_offset_value);
|
323 |
-
if (wc_parent_comments_count <= (wc_comments_offset_value * wc_parent_per_page)) {
|
324 |
-
$('.wc-load-more-submit-wrap').remove();
|
325 |
-
}
|
326 |
-
$('.wc-thread-wrapper').html(obj.message);
|
327 |
-
$('#wc_last_comment_id').val(obj.wc_last_comment_id);
|
328 |
-
$('#hidden_new_comment_count').val(obj.hidden_new_comment_count);
|
329 |
-
$('#wc_openModalFormAction').css('opacity', '0');
|
330 |
-
$('#wc_openModalFormAction').css('pointer-events', 'none');
|
331 |
-
$('.wc_tooltipster').tooltipster({offsetY: 2});
|
332 |
-
setInputsDataFromCookie();
|
333 |
-
});
|
334 |
-
});
|
335 |
-
|
336 |
-
// MUST BE CHANGED IN NEXT VERSION OF PLUGIN
|
337 |
-
$(document).delegate('.wc_new_comment', 'click', function () {
|
338 |
-
wc_submitID = $('.wc_main_comm_form input.wc_comm_submit').attr('id');
|
339 |
-
var uniqueID = wc_submitID.substring(wc_submitID.lastIndexOf('-') + 1);
|
340 |
-
wc_comment_post_ID = getPostID(uniqueID);
|
341 |
-
var wc_last_new_comment_id = $('#wc_last_new_comment_id').val();
|
342 |
-
wc_email = $.cookie('wc_author_email');
|
343 |
-
var wc_curr_user_comment_count = $('#wc_curr_user_comment_count').val();
|
344 |
-
var wc_comments_offset_value = wc_comments_offset.val();
|
345 |
-
|
346 |
-
var wc_visible_comments_ids = '';
|
347 |
-
$('.wc-thread-wrapper .wc-comment').each(function () {
|
348 |
-
var comment_id = $(this).attr('id');
|
349 |
-
var commentUniqueID = comment_id.substring(comment_id.lastIndexOf('-') + 1);
|
350 |
-
wc_visible_comments_ids += getCommentID(commentUniqueID) + ',';
|
351 |
-
});
|
352 |
-
|
353 |
-
$.ajax({
|
354 |
-
type: 'POST',
|
355 |
-
url: wc_ajax_obj.url,
|
356 |
-
data: {
|
357 |
-
wc_requested_comments_type: 1,
|
358 |
-
wc_last_comment_id: wc_last_new_comment_id,
|
359 |
-
wc_post_id: wc_comment_post_ID,
|
360 |
-
wc_author_email: wc_email,
|
361 |
-
wc_comments_offset: wc_comments_offset_value,
|
362 |
-
wc_curr_user_comment_count: wc_curr_user_comment_count,
|
363 |
-
wc_visible_comments_ids: wc_visible_comments_ids,
|
364 |
-
action: 'wc_list_new_comments'
|
365 |
-
}
|
366 |
-
}).done(function (response) {
|
367 |
-
try {
|
368 |
-
var obj = $.parseJSON(response);
|
369 |
-
if (obj.code != 0) {
|
370 |
-
$('.wc-thread-wrapper').html(obj.message);
|
371 |
-
$('#wc_last_new_comment_id').val(obj.wc_last_comment_id);
|
372 |
-
$('.wc_new_comment').hide();
|
373 |
-
$(document).delegate('.wc_new_loaded_comment', 'mouseenter', function () {
|
374 |
-
if ($(this).parent('.wc-comment').hasClass('wc-reply')) {
|
375 |
-
$(this, '.wc-comment-right').animate({
|
376 |
-
backgroundColor: "#f8f8f8"
|
377 |
-
}, 1500);
|
378 |
-
} else {
|
379 |
-
$(this, '.wc-comment-right').animate({
|
380 |
-
backgroundColor: "#fefefe"
|
381 |
-
}, 1500);
|
382 |
-
}
|
383 |
-
|
384 |
-
$(this, '.wc-comment-right').removeClass('wc_new_loaded_comment');
|
385 |
-
});
|
386 |
-
}
|
387 |
-
} catch (e) {
|
388 |
-
console.log(e);
|
389 |
-
}
|
390 |
-
});
|
391 |
-
});
|
392 |
-
|
393 |
-
// MUST BE CHANGED IN NEXT VERSION OF PLUGIN
|
394 |
-
$(document).delegate('.wc_new_reply', 'click', function () {
|
395 |
-
wc_submitID = $('.wc_main_comm_form input.wc_comm_submit').attr('id');
|
396 |
-
var uniqueID = wc_submitID.substring(wc_submitID.lastIndexOf('-') + 1);
|
397 |
-
wc_comment_post_ID = getPostID(uniqueID);
|
398 |
-
var wc_last_new_reply_id = $('#wc_last_new_reply_id').val();
|
399 |
-
wc_email = $.cookie('wc_author_email');
|
400 |
-
var wc_curr_user_comment_count = $('#wc_curr_user_comment_count').val();
|
401 |
-
var wc_comments_offset_value = wc_comments_offset.val();
|
402 |
-
|
403 |
-
var wc_visible_comments_ids = '';
|
404 |
-
$('.wc-thread-wrapper .wc-comment').each(function () {
|
405 |
-
var comment_id = $(this).attr('id');
|
406 |
-
var commentUniqueID = comment_id.substring(comment_id.lastIndexOf('-') + 1);
|
407 |
-
wc_visible_comments_ids += getCommentID(commentUniqueID) + ',';
|
408 |
-
});
|
409 |
-
|
410 |
-
$.ajax({
|
411 |
-
type: 'POST',
|
412 |
-
url: wc_ajax_obj.url,
|
413 |
-
data: {
|
414 |
-
wc_requested_comments_type: 2,
|
415 |
-
wc_last_comment_id: wc_last_new_reply_id,
|
416 |
-
wc_comments_offset: wc_comments_offset_value,
|
417 |
-
wc_curr_user_comment_count: wc_curr_user_comment_count,
|
418 |
-
wc_post_id: wc_comment_post_ID,
|
419 |
-
wc_author_email: wc_email,
|
420 |
-
wc_visible_comments_ids: wc_visible_comments_ids,
|
421 |
-
action: 'wc_list_new_comments'
|
422 |
-
}
|
423 |
-
}).done(function (response) {
|
424 |
-
try {
|
425 |
-
var obj = $.parseJSON(response);
|
426 |
-
if (obj.code != 0) {
|
427 |
-
$('.wc-thread-wrapper').html(obj.message);
|
428 |
-
$('#wc_last_new_reply_id').val(obj.wc_last_comment_id);
|
429 |
-
$('.wc_new_reply').hide();
|
430 |
-
}
|
431 |
-
} catch (e) {
|
432 |
-
console.log(e);
|
433 |
-
}
|
434 |
-
});
|
435 |
-
});
|
436 |
-
|
437 |
-
|
438 |
-
function getUniqueID(field) {
|
439 |
-
var fieldID = field.attr('id');
|
440 |
-
var uniqueID = fieldID.substring(fieldID.lastIndexOf('-') + 1);
|
441 |
-
return uniqueID;
|
442 |
-
}
|
443 |
-
|
444 |
-
function getPostID(uniqueID) {
|
445 |
-
var postID = uniqueID.substring(uniqueID.lastIndexOf('-') + 1);
|
446 |
-
postID = postID.substring(0, postID.lastIndexOf('_'));
|
447 |
-
return postID;
|
448 |
-
}
|
449 |
-
|
450 |
-
function getCommentID(uniqueID) {
|
451 |
-
var commentID = uniqueID.substring(uniqueID.indexOf('_') + 1);
|
452 |
-
return commentID;
|
453 |
-
}
|
454 |
-
|
455 |
-
function getCommentDepth(field) {
|
456 |
-
var fieldClasses = field.attr('class');
|
457 |
-
var classesArray = fieldClasses.split(' ');
|
458 |
-
var depth = '';
|
459 |
-
$.each(classesArray, function (index, value) {
|
460 |
-
;
|
461 |
-
if ('wc_comment_level' === getParentDepth(value, false)) {
|
462 |
-
depth = getParentDepth(value, true);
|
463 |
-
}
|
464 |
-
});
|
465 |
-
return parseInt(depth) + 1;
|
466 |
-
}
|
467 |
-
|
468 |
-
function getParentDepth(depthValue, isNumberPart) {
|
469 |
-
var depth = '';
|
470 |
-
if (isNumberPart) {
|
471 |
-
depth = depthValue.substring(depthValue.indexOf('-') + 1);
|
472 |
-
} else {
|
473 |
-
depth = depthValue.substring(0, depthValue.indexOf('-'));
|
474 |
-
}
|
475 |
-
return depth;
|
476 |
-
}
|
477 |
-
|
478 |
-
function isMainFormSubmit(wc_submitID, wc_comment_post_ID) {
|
479 |
-
return wc_submitID === 'wc_comm-' + wc_comment_post_ID + '_0';
|
480 |
-
}
|
481 |
-
|
482 |
-
/**
|
483 |
-
* live update
|
484 |
-
*/
|
485 |
-
// MUST BE CHANGED IN NEXT VERSION OF PLUGIN
|
486 |
-
function liveUpdate() {
|
487 |
-
var isNewComment = $.cookie('wc_all_comments_count_new') ? false : true;
|
488 |
-
if (wc_comment_list_update_type == 1) {
|
489 |
-
if (!isFieldsActive(isNewComment)) {
|
490 |
-
updateAutomatically();
|
491 |
-
}
|
492 |
-
} else if (wc_comment_list_update_type == 2) {
|
493 |
-
if (!isFieldsActive(isNewComment)) {
|
494 |
-
updateIfNewComments();
|
495 |
-
}
|
496 |
-
}
|
497 |
-
}
|
498 |
-
|
499 |
-
/**
|
500 |
-
* update automatically
|
501 |
-
*/
|
502 |
-
// MUST BE CHANGED IN NEXT VERSION OF PLUGIN
|
503 |
-
function updateAutomatically() {
|
504 |
-
// wc_submitID = $('.wc_main_comm_form input.wc_comm_submit').attr('id');
|
505 |
-
// var uniqueID = wc_submitID.substring(wc_submitID.lastIndexOf('-') + 1);
|
506 |
-
wc_comment_post_ID = $('#wpdiscuz_current_post_id').val();
|
507 |
-
var wc_last_comment_id = $('#wc_last_comment_id_before_update').val();
|
508 |
-
var wc_last_new_comment_id = $('#wc_last_new_comment_id').val();
|
509 |
-
var wc_last_new_reply_id = $('#wc_last_new_reply_id').val();
|
510 |
-
var comment_offset = $('#wc_comments_offset').length ? $('#wc_comments_offset').val() : 1;
|
511 |
-
var wc_all_comments_count_old = $.cookie('wc_all_comments_count_old');
|
512 |
-
var wc_curr_user_comment_count = $('#wc_curr_user_comment_count').val();
|
513 |
-
var wc_author_email = $.cookie('wc_author_email');
|
514 |
-
$.ajax({
|
515 |
-
type: 'POST',
|
516 |
-
url: wc_ajax_obj.url,
|
517 |
-
data: {
|
518 |
-
wc_author_email: wc_author_email,
|
519 |
-
wc_curr_user_comment_count: wc_curr_user_comment_count,
|
520 |
-
wc_last_comment_id: wc_last_comment_id,
|
521 |
-
wc_last_new_comment_id: wc_last_new_comment_id,
|
522 |
-
wc_last_new_reply_id: wc_last_new_reply_id,
|
523 |
-
wc_all_comments_count_old: wc_all_comments_count_old,
|
524 |
-
wc_comments_offset: comment_offset,
|
525 |
-
wc_comment_list_update_type: wc_comment_list_update_type,
|
526 |
-
wc_post_id: wc_comment_post_ID,
|
527 |
-
action: 'wc_live_update'
|
528 |
-
}
|
529 |
-
}).done(function (response) {
|
530 |
-
update(response);
|
531 |
-
});
|
532 |
-
}
|
533 |
-
|
534 |
-
/**
|
535 |
-
* check if post has new comments updates comment list
|
536 |
-
*/
|
537 |
-
// MUST BE CHANGED IN NEXT VERSION OF PLUGIN
|
538 |
-
function updateIfNewComments() {
|
539 |
-
wc_submitID = $('.wc_main_comm_form input.wc_comm_submit').attr('id');
|
540 |
-
var uniqueID = wc_submitID.substring(wc_submitID.lastIndexOf('-') + 1);
|
541 |
-
wc_comment_post_ID = getPostID(uniqueID);
|
542 |
-
wc_comment_parent = getCommentID(uniqueID);
|
543 |
-
var comment_offset = $('#wc_comments_offset').length ? $('#wc_comments_offset').val() : 1;
|
544 |
-
var wc_curr_user_comment_count = $('#wc_curr_user_comment_count').val();
|
545 |
-
var wc_last_comment_id = $('#wc_last_comment_id').val();
|
546 |
-
var wc_last_new_comment_id = $('#wc_last_new_comment_id').val();
|
547 |
-
var wc_last_new_reply_id = $('#wc_last_new_reply_id').val();
|
548 |
-
wc_email = $.cookie('wc_author_email');
|
549 |
-
$.ajax({
|
550 |
-
type: 'POST',
|
551 |
-
url: wc_ajax_obj.url,
|
552 |
-
data: {
|
553 |
-
wc_last_comment_id: wc_last_comment_id,
|
554 |
-
wc_last_new_comment_id: wc_last_new_comment_id,
|
555 |
-
wc_last_new_reply_id: wc_last_new_reply_id,
|
556 |
-
wc_comment_list_update_type: wc_comment_list_update_type,
|
557 |
-
wc_comments_offset: comment_offset,
|
558 |
-
wc_curr_user_comment_count: wc_curr_user_comment_count,
|
559 |
-
wc_post_id: wc_comment_post_ID,
|
560 |
-
wc_author_email: wc_email,
|
561 |
-
action: 'wc_live_update'
|
562 |
-
}
|
563 |
-
}).done(function (response) {
|
564 |
-
update(response);
|
565 |
-
});
|
566 |
-
}
|
567 |
-
|
568 |
-
/**
|
569 |
-
* update front end
|
570 |
-
*/
|
571 |
-
// MUST BE CHANGED IN NEXT VERSION OF PLUGIN
|
572 |
-
function update(response) {
|
573 |
-
try {
|
574 |
-
var obj = $.parseJSON(response);
|
575 |
-
if (obj.code == 1) {
|
576 |
-
$('.wc-thread-wrapper').html(obj.message);
|
577 |
-
if ($('.wc_header_text_count').length) {
|
578 |
-
$('.wc_header_text_count').html(obj.wc_all_comments_count_new);
|
579 |
-
}
|
580 |
-
$('#wc_last_comment_id').val(obj.wc_last_comment_id);
|
581 |
-
} else if (obj.code == 2) {
|
582 |
-
if (obj.wc_new_comment_count) {
|
583 |
-
$('.wc_new_comment_button_text').html(obj.wc_new_comment_count + ' ' + obj.wc_new_comment_button_text);
|
584 |
-
$('.wc_new_comment').css('display', 'inline-block');
|
585 |
-
} else {
|
586 |
-
$('.wc_new_comment').css('display', 'none');
|
587 |
-
}
|
588 |
-
if (obj.wc_new_reply_count) {
|
589 |
-
$('.wc_new_reply_button_text').html(obj.wc_new_reply_count + ' ' + obj.wc_new_reply_button_text);
|
590 |
-
$('.wc_new_reply').css('display', 'inline-block');
|
591 |
-
} else {
|
592 |
-
$('.wc_new_reply').css('display', 'none');
|
593 |
-
}
|
594 |
-
}
|
595 |
-
setInputsDataFromCookie();
|
596 |
-
} catch (e) {
|
597 |
-
console.log(e);
|
598 |
-
}
|
599 |
-
}
|
600 |
-
|
601 |
-
/**
|
602 |
-
* check update or not
|
603 |
-
*/
|
604 |
-
// MUST BE CHANGED IN NEXT VERSION OF PLUGIN
|
605 |
-
function isFieldsActive(isNewComment) {
|
606 |
-
var isInpFocus = $('.wc_secondary_form input.wc_field_input').is(':focus');
|
607 |
-
var isTextAreaFocused = $('.wc_secondary_form textarea.wc_field_input').is(':focus');
|
608 |
-
var isInputNotEmpty = false;
|
609 |
-
var isTextAreaNotEmpty = false;
|
610 |
-
if (isNewComment) {
|
611 |
-
$('.wc_secondary_form input.wc_field_input').each(function () {
|
612 |
-
if ($(this).val() != '') {
|
613 |
-
isInputNotEmpty = true;
|
614 |
-
}
|
615 |
-
});
|
616 |
-
}
|
617 |
-
else {
|
618 |
-
$('.wc_secondary_form input.wc_field_captcha').each(function () {
|
619 |
-
if ($(this).val() != '') {
|
620 |
-
isInputNotEmpty = true;
|
621 |
-
}
|
622 |
-
});
|
623 |
-
}
|
624 |
-
|
625 |
-
$('.wc_secondary_form textarea.wc_field_input').each(function () {
|
626 |
-
if ($(this).val() != '') {
|
627 |
-
isTextAreaNotEmpty = true;
|
628 |
-
}
|
629 |
-
});
|
630 |
-
return isInpFocus || isTextAreaFocused || isInputNotEmpty || isTextAreaNotEmpty;
|
631 |
-
}
|
632 |
-
|
633 |
-
if (wc_comment_list_update_type != 0) {
|
634 |
-
setInterval(liveUpdate, wc_comment_list_update_timer * 1000);
|
635 |
-
}
|
636 |
-
|
637 |
-
function setInputsDataFromCookie() {
|
638 |
-
if ($.cookie('wc_author_name') && $.cookie('wc_author_email')) {
|
639 |
-
$('.wc_name').val($.cookie('wc_author_name'));
|
640 |
-
$('.wc_email').val($.cookie('wc_author_email'));
|
641 |
-
}
|
642 |
-
}
|
643 |
-
|
644 |
-
function notify_on_new_comment(post_id, comment_id, email, type) {
|
645 |
-
$.ajax({
|
646 |
-
type: 'POST',
|
647 |
-
url: wc_ajax_obj.url,
|
648 |
-
data: {
|
649 |
-
wc_post_id: post_id,
|
650 |
-
wc_comment_id: comment_id,
|
651 |
-
wc_notifcattion_type: type,
|
652 |
-
wc_email: email,
|
653 |
-
action: 'wc_check_notification_type'
|
654 |
-
}
|
655 |
-
});
|
656 |
-
}
|
657 |
-
|
658 |
-
$(document).delegate('.wc_editable_comment', 'click', function () {
|
659 |
-
var uniqueID = getUniqueID($(this));
|
660 |
-
var commentID = getCommentID(uniqueID);
|
661 |
-
|
662 |
-
$.ajax({
|
663 |
-
type: 'POST',
|
664 |
-
url: wc_ajax_obj.url,
|
665 |
-
data: {
|
666 |
-
comment_id: commentID,
|
667 |
-
action: 'wc_get_editable_comment_content'
|
668 |
-
}
|
669 |
-
}).done(function (response) {
|
670 |
-
try {
|
671 |
-
var obj = $.parseJSON(response);
|
672 |
-
if (obj.code == 1) {
|
673 |
-
wc_comment_text_before_editting = obj.message;
|
674 |
-
var editableTextarea = '<textarea required="required" name="wc_comment" class="wc_comment wc_field_input wc_edit_comment" id="wc_edit_comment-' + uniqueID + '" style="min-height: 2em;">' + obj.message + '</textarea>';
|
675 |
-
$('#wc-comm-' + uniqueID + ' > .wc-comment-right .wc-comment-text').replaceWith(editableTextarea);
|
676 |
-
document.getElementById('wc_edit_comment-' + uniqueID).focus();
|
677 |
-
$('#wc_save_edited_comment-' + uniqueID).show();
|
678 |
-
editableTextarea = '';
|
679 |
-
$('#wc_editable_comment-' + uniqueID).hide();
|
680 |
-
$('#wc_cancel_edit-' + uniqueID).show();
|
681 |
-
} else {
|
682 |
-
var html = "<a href='#close' title='Close' class='close'> </a>";
|
683 |
-
$('#wc_openModalFormAction').css('opacity', '1');
|
684 |
-
$('#wc_openModalFormAction').css('pointer-events', 'auto');
|
685 |
-
$('#wc_openModalFormAction .close').css('display', 'block');
|
686 |
-
$('#wc_openModalFormAction > #wc_response_info').html(html + obj.phrase_message);
|
687 |
-
}
|
688 |
-
} catch (e) {
|
689 |
-
console.log(e);
|
690 |
-
}
|
691 |
-
});
|
692 |
-
});
|
693 |
-
|
694 |
-
$(document).delegate('.wc_save_edited_comment', 'click', function () {
|
695 |
-
var uniqueID = getUniqueID($(this));
|
696 |
-
var commentID = getCommentID(uniqueID);
|
697 |
-
var editableTextarea = $('#wc-comm-' + uniqueID + ' textarea#wc_edit_comment-' + uniqueID);
|
698 |
-
var commentContent = editableTextarea.val();
|
699 |
-
var submit = true;
|
700 |
-
var depth = getCommentDepth($(this).parents('.wc-comment')) - 1;
|
701 |
-
if ($.trim(commentContent).length <= 0) {
|
702 |
-
submit = false;
|
703 |
-
}
|
704 |
-
|
705 |
-
if (submit) {
|
706 |
-
$('#wc_openModalFormAction .close').css('display', 'none');
|
707 |
-
$('#wc_openModalFormAction').css('opacity', '1');
|
708 |
-
$('#wc_openModalFormAction').css('pointer-events', 'auto');
|
709 |
-
$('#wc_openModalFormAction > #wc_response_info').html(wc_loading_image);
|
710 |
-
|
711 |
-
$.ajax({
|
712 |
-
type: 'POST',
|
713 |
-
url: wc_ajax_obj.url,
|
714 |
-
data: {
|
715 |
-
comment_id: commentID,
|
716 |
-
comment_content: commentContent,
|
717 |
-
comment_depth: depth,
|
718 |
-
action: 'wc_save_edited_comment'
|
719 |
-
}
|
720 |
-
}).done(function (response) {
|
721 |
-
try {
|
722 |
-
var obj = $.parseJSON(response);
|
723 |
-
if (obj.code == 1) {
|
724 |
-
$('#wc_openModalFormAction').css('opacity', '0');
|
725 |
-
$('#wc_openModalFormAction').css('pointer-events', 'none');
|
726 |
-
wc_cancel_or_save(uniqueID,obj.message);
|
727 |
-
} else {
|
728 |
-
var html = "<a href='#close' title='Close' class='close'> </a>";
|
729 |
-
$('#wc_openModalFormAction').css('opacity', '1');
|
730 |
-
$('#wc_openModalFormAction').css('pointer-events', 'auto');
|
731 |
-
$('#wc_openModalFormAction .close').css('display', 'block');
|
732 |
-
$('#wc_openModalFormAction > #wc_response_info').html(html + obj.phrase_message);
|
733 |
-
}
|
734 |
-
editableTextarea = '';
|
735 |
-
commentContent = '';
|
736 |
-
} catch (e) {
|
737 |
-
console.log(e);
|
738 |
-
}
|
739 |
-
});
|
740 |
-
}
|
741 |
-
});
|
742 |
-
|
743 |
-
$(document).delegate('.wc_cancel_edit', 'click', function () {
|
744 |
-
var uniqueID = getUniqueID($(this));
|
745 |
-
wc_cancel_or_save(uniqueID,wc_comment_text_before_editting);
|
746 |
-
});
|
747 |
-
|
748 |
-
function wc_cancel_or_save(uniqueID,content){
|
749 |
-
$('#wc_editable_comment-' + uniqueID).show();
|
750 |
-
$('#wc_cancel_edit-' + uniqueID).hide();
|
751 |
-
$('#wc_save_edited_comment-' + uniqueID).hide();
|
752 |
-
var commentContentWrapper = '<div class="wc-comment-text">' + nl2br(content) + '</div>';
|
753 |
-
$('#wc-comm-' + uniqueID + ' #wc_edit_comment-' + uniqueID).replaceWith(commentContentWrapper);
|
754 |
-
}
|
755 |
-
|
756 |
-
function nl2br(str, is_xhtml) {
|
757 |
-
var breakTag = (is_xhtml || typeof is_xhtml === 'undefined') ? '<br/>' : '<br>';
|
758 |
-
var string = (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1' + breakTag + '$2');
|
759 |
-
return string.replace('<br><br>', '<br/>');
|
760 |
-
}
|
761 |
-
|
762 |
-
$('.wc_tooltipster').tooltipster({offsetY: 2});
|
763 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
files/js/wc-ajax.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(f){var E=f("#wc_home_url").val();var u=f("#wc_plugin_dir_url").val();var w;var l;var k;var s;var D;var j;var g;var z;var h;var n;var A;var d;var p=parseInt(f("#wc_comment_list_update_type").val());var e=parseInt(f("#wc_comment_list_update_timer").val());var i;var I;var m=f(".wc_website").attr("placeholder");f(".wc_comment").autoGrow();f(document).delegate("#wc_openModalFormAction","click",function(){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")});f(document).delegate("#wc_openModalFormAction .close","click",function(){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")});d="<img width='64' height='64' src='"+E+"/"+u+"/files/img/loader/ajax-loader-200x200.gif' />";n=f("#wc_comments_offset");n.val("1");f(document).delegate(".wc_comment","focus",function(){var J=a(f(this));f("#wc-form-footer-"+J).slideDown(700)});f(document).delegate(".wc-reply-link","click",function(){var J=a(f(this));if(f(".wc_social_plugin_wrapper .wp-social-login-provider-list").length&&!(f("#wc-secondary-forms-social-content-"+J+" .wp-social-login-provider-list").length)){f(".wc_social_plugin_wrapper .wp-social-login-provider-list").clone().prependTo("#wc-secondary-forms-social-content-"+J)}else{if(f(".wc_social_plugin_wrapper .the_champ_login_container").length&&!(f("#wc-secondary-forms-social-content-"+J+" .the_champ_login_container").length)){f(".wc_social_plugin_wrapper .the_champ_login_container").clone().prependTo("#wc-secondary-forms-social-content-"+J)}else{if(f(".wc_social_plugin_wrapper .social_connect_form").length&&!(f("#wc-secondary-forms-social-content-"+J+" .social_connect_form").length)){f(".wc_social_plugin_wrapper .social_connect_form").clone().prependTo("#wc-secondary-forms-social-content-"+J)}else{if(f(".wc_social_plugin_wrapper .oneall_social_login_providers").length&&!(f("#wc-secondary-forms-social-content-"+J+" .oneall_social_login_providers").length)){f(".wc_social_plugin_wrapper .oneall_social_login .oneall_social_login_providers").clone().prependTo("#wc-secondary-forms-social-content-"+J)}}}}f("#wc-secondary-forms-wrapper-"+J).slideToggle(700)});f(document).delegate(".wc-share-link","click",function(){var J=a(f(this));f("#share_buttons_box-"+J).slideToggle(1000)});f(document).delegate(".wc_captcha_refresh_img","click",function(){var L=a(f(this));var J=f("#wc_comment_post_ID-"+L).val();var K=f("#wc_comment_parent-"+L).val();f("#wc_captcha_img-"+L).attr("src",E+"/"+u+"/captcha/captcha.php?comm_id="+J+"-"+K+"&r="+Math.random())});f(document).delegate(".wc_comm_submit","click",function(){h=f(this).attr("id");var M=h.substring(h.lastIndexOf("-")+1);w=f("#wc_name-"+M).val();l=f("#wc_email-"+M).val();s=(f("#wc_website-"+M).length)?f("#wc_website-"+M).val():"";if(m==s){s=""}k=f("textarea#wc_comment-"+M).val();D=f("#wc_captcha-"+M).val();j=f("#wc_comment_post_ID-"+M).val();g=f("#wc_comment_parent-"+M).val();z=f("#wc_comm_form-"+M);var N=f("input[name='wc_comment_reply_notification-"+M+"']:checked").length?f("input[name='wc_comment_reply_notification-"+M+"']:checked").val():"";var L="";if(c(h,j)){L=1}else{L=y(f(this).parents(".wc-comment"))}var J="";if(N.length&&N!="wc_notification_none"){if(N=="wc_notification_new_reply"){J="comment"}if(N=="wc_notification_all_new_reply"){J="all_comment"}if(N=="wc_notification_new_comment"){J="post"}}var K=true;if(!wpdiscuzValidator.checkAll(z)){K=false;f("#wc_captcha-"+M).val("");f("#wc_captcha_img-"+M).attr("src",E+"/"+u+"/captcha/captcha.php?comm_id="+j+"-"+g+"&r="+Math.random())}else{f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction > #wc_response_info").html(d)}if(K){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{name:w,email:l,website:s,comment:k,captcha:D,comment_post_ID:j,comment_parent:g,comment_depth:L,notification_type:J,action:"wc_comms_via_ajax"}}).done(function(O){f("#wc_captcha_img-"+M).attr("src",E+"/"+u+"/captcha/captcha.php?comm_id="+j+"-"+g+"&r="+Math.random());try{var R=f.parseJSON(O);A=parseInt(R.wc_new_comment_id);if(R.code===-1){var P="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(P+R.message)}else{if(R.code===-2){var P="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(P+R.message);f("#wc_comment-"+M).val("");f(".wc_comm_form textarea").css("height","46px");if(h==="wc_comm-"+j+"_0"){f("#wc-form-footer-"+M).slideToggle(700)}else{f("#wc-secondary-forms-wrapper-"+M).slideToggle(700)}f.cookie("wc_author_name",w);f.cookie("wc_author_email",l);f.cookie("wc_author_website",s)}else{i=R.wc_all_comments_count_new;f("#wc_comment-"+M).val("");f(".wc_comm_form textarea").css("height","46px");if(h==="wc_comm-"+j+"_0"){f(".wc-thread-wrapper").prepend(R.message);f("#wc-form-footer-"+M).slideToggle(700);f("#wc_curr_user_comment_count").val(parseInt(f("#wc_curr_user_comment_count").val())+1)}else{f("#wc-secondary-forms-wrapper-"+M).slideToggle(700);if(R.is_in_same_container==1){f("#wc-secondary-forms-wrapper-"+M).after(R.message)}else{f("#wc-secondary-forms-wrapper-"+M).after(R.message.replace("wc-reply","wc-reply wc-no-left-margin"))}}f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");f.cookie("wc_author_name",w);f.cookie("wc_author_email",l);f.cookie("wc_author_website",s);f("#wpcomm .wc_name").val(w);f("#wpcomm .wc_email").val(l);f("#wpcomm .wc_website").val(s);if(f(".wc_header_text_count").length){f(".wc_header_text_count").val(parseInt(f(".wc_header_text_count").val())+1)}f.cookie("wc_all_comments_count_new",i)}}f("#wc_captcha-"+M).val("");f(".wc_tooltipster").tooltipster({offsetY:2});f(".wc_comm_form input").css("box-shadow","0 0 4px -2px #d4d0ba");f(".wc_comm_form textarea").css("box-shadow","0 0 4px -2px #d4d0ba");b(j,A,l,J);if(R.code==1||R.code==-2){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_new_comment_id:A,action:"wpdiscuz_comment_redirect"}}).done(function(T){try{var S=f.parseJSON(T);if(S.code==1){setTimeout(function(){window.location.href=S.redirect_to},5000)}}catch(U){}})}}catch(Q){f("#wc_captcha-"+M).val("");f(".wc_tooltipster").tooltipster({offsetY:2});f(".wc_comm_form input").css("box-shadow","0 0 4px -2px #d4d0ba");f(".wc_comm_form textarea").css("box-shadow","0 0 4px -2px #d4d0ba");var P="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");if(O.indexOf("<")>=0&&O.indexOf(">")>=0){f("#wc_openModalFormAction > #wc_response_info").html(P+Q)}else{f("#wc_openModalFormAction > #wc_response_info").html(P+O)}}})}else{return false}});f(document).delegate(".wc_vote","click",function(){var L=a(f(this));var J=G(L);var K;f("#wc_openModalFormAction > #wc_response_info").html(d);f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");if(f(this).hasClass("wc-up")){K=1}else{K=-1}f.ajax({dateType:"json",type:"POST",url:wc_ajax_obj.url,data:{comment_ID:J,vote_type:K,action:"wc_vote_via_ajax"}}).done(function(M){var O=f.parseJSON(M);if(O.code!==-1){f("#vote-count-"+L).text(parseInt(f("#vote-count-"+L).text())+K);f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")}else{var N="<a href='#close' title='Close' class='close'> </a>";f("#wc_response_info").html(N+O.message);f("#wc_openModalFormAction .close").css("display","block")}})});f(document).delegate(".wc-load-more-submit","click",function(){f("#wc_openModalFormAction > #wc_response_info").html(d);f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");var M=n.val();var N=F(f(this).attr("id"));var O=parseInt(f("#wc_parent_comments_count").val());var K=parseInt(f("#wc_parent_per_page").val());var L=(f("#wc_last_comment_id_before_update").val())?f("#wc_last_comment_id_before_update").val():0;var J=f("#wc_curr_user_comment_count").val();M=parseInt(M);M++;f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comments_offset:M,wc_curr_user_comment_count:J,wc_post_id:N,wc_last_comment_id:L,action:"wc_load_more_comments"}}).done(function(P){var Q=f.parseJSON(P);n.val(M);if(O<=(M*K)){f(".wc-load-more-submit-wrap").remove()}f(".wc-thread-wrapper").html(Q.message);f("#wc_last_comment_id").val(Q.wc_last_comment_id);f("#hidden_new_comment_count").val(Q.hidden_new_comment_count);f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");f(".wc_tooltipster").tooltipster({offsetY:2});t()})});f(document).delegate(".wc_new_comment","click",function(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var N=h.substring(h.lastIndexOf("-")+1);j=F(N);var L=f("#wc_last_new_comment_id").val();l=f.cookie("wc_author_email");var K=f("#wc_curr_user_comment_count").val();var M=n.val();var J="";f(".wc-thread-wrapper .wc-comment").each(function(){var O=f(this).attr("id");var P=O.substring(O.lastIndexOf("-")+1);J+=G(P)+","});f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_requested_comments_type:1,wc_last_comment_id:L,wc_post_id:j,wc_author_email:l,wc_comments_offset:M,wc_curr_user_comment_count:K,wc_visible_comments_ids:J,action:"wc_list_new_comments"}}).done(function(O){try{var Q=f.parseJSON(O);if(Q.code!=0){f(".wc-thread-wrapper").html(Q.message);f("#wc_last_new_comment_id").val(Q.wc_last_comment_id);f(".wc_new_comment").hide();f(document).delegate(".wc_new_loaded_comment","mouseenter",function(){if(f(this).parent(".wc-comment").hasClass("wc-reply")){f(this,".wc-comment-right").animate({backgroundColor:"#f8f8f8"},1500)}else{f(this,".wc-comment-right").animate({backgroundColor:"#fefefe"},1500)}f(this,".wc-comment-right").removeClass("wc_new_loaded_comment")})}}catch(P){console.log(P)}})});f(document).delegate(".wc_new_reply","click",function(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var N=h.substring(h.lastIndexOf("-")+1);j=F(N);var L=f("#wc_last_new_reply_id").val();l=f.cookie("wc_author_email");var K=f("#wc_curr_user_comment_count").val();var M=n.val();var J="";f(".wc-thread-wrapper .wc-comment").each(function(){var O=f(this).attr("id");var P=O.substring(O.lastIndexOf("-")+1);J+=G(P)+","});f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_requested_comments_type:2,wc_last_comment_id:L,wc_comments_offset:M,wc_curr_user_comment_count:K,wc_post_id:j,wc_author_email:l,wc_visible_comments_ids:J,action:"wc_list_new_comments"}}).done(function(O){try{var Q=f.parseJSON(O);if(Q.code!=0){f(".wc-thread-wrapper").html(Q.message);f("#wc_last_new_reply_id").val(Q.wc_last_comment_id);f(".wc_new_reply").hide()}}catch(P){console.log(P)}})});function a(K){var J=K.attr("id");var L=J.substring(J.lastIndexOf("-")+1);return L}function F(K){var J=K.substring(K.lastIndexOf("-")+1);J=J.substring(0,J.lastIndexOf("_"));return J}function G(K){var J=K.substring(K.indexOf("_")+1);return J}function y(L){var K=L.attr("class");var J=K.split(" ");var M="";f.each(J,function(N,O){if("wc_comment_level"===H(O,false)){M=H(O,true)}});return parseInt(M)+1}function H(J,K){var L="";if(K){L=J.substring(J.indexOf("-")+1)}else{L=J.substring(0,J.indexOf("-"))}return L}function c(K,J){return K==="wc_comm-"+J+"_0"}function r(){var J=f.cookie("wc_all_comments_count_new")?false:true;if(p==1){if(!v(J)){q()}}else{if(p==2){if(!v(J)){C()}}}}function q(){j=f("#wpdiscuz_current_post_id").val();var P=f("#wc_last_comment_id_before_update").val();var L=f("#wc_last_new_comment_id").val();var M=f("#wc_last_new_reply_id").val();var N=f("#wc_comments_offset").length?f("#wc_comments_offset").val():1;var O=f.cookie("wc_all_comments_count_old");var J=f("#wc_curr_user_comment_count").val();var K=f.cookie("wc_author_email");f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_author_email:K,wc_curr_user_comment_count:J,wc_last_comment_id:P,wc_last_new_comment_id:L,wc_last_new_reply_id:M,wc_all_comments_count_old:O,wc_comments_offset:N,wc_comment_list_update_type:p,wc_post_id:j,action:"wc_live_update"}}).done(function(Q){o(Q)})}function C(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var O=h.substring(h.lastIndexOf("-")+1);j=F(O);g=G(O);var M=f("#wc_comments_offset").length?f("#wc_comments_offset").val():1;var J=f("#wc_curr_user_comment_count").val();var N=f("#wc_last_comment_id").val();var K=f("#wc_last_new_comment_id").val();var L=f("#wc_last_new_reply_id").val();l=f.cookie("wc_author_email");f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_last_comment_id:N,wc_last_new_comment_id:K,wc_last_new_reply_id:L,wc_comment_list_update_type:p,wc_comments_offset:M,wc_curr_user_comment_count:J,wc_post_id:j,wc_author_email:l,action:"wc_live_update"}}).done(function(P){o(P)})}function o(J){try{var L=f.parseJSON(J);if(L.code==1){f(".wc-thread-wrapper").html(L.message);if(f(".wc_header_text_count").length){f(".wc_header_text_count").html(L.wc_all_comments_count_new)}f("#wc_last_comment_id").val(L.wc_last_comment_id)}else{if(L.code==2){if(L.wc_new_comment_count){f(".wc_new_comment_button_text").html(L.wc_new_comment_count+" "+L.wc_new_comment_button_text);f(".wc_new_comment").css("display","inline-block")}else{f(".wc_new_comment").css("display","none")}if(L.wc_new_reply_count){f(".wc_new_reply_button_text").html(L.wc_new_reply_count+" "+L.wc_new_reply_button_text);f(".wc_new_reply").css("display","inline-block")}else{f(".wc_new_reply").css("display","none")}}}t()}catch(K){console.log(K)}}function v(L){var K=f(".wc_secondary_form input.wc_field_input").is(":focus");var J=f(".wc_secondary_form textarea.wc_field_input").is(":focus");var N=false;var M=false;if(L){f(".wc_secondary_form input.wc_field_input").each(function(){if(f(this).val()!=""){N=true}})}else{f(".wc_secondary_form input.wc_field_captcha").each(function(){if(f(this).val()!=""){N=true}})}f(".wc_secondary_form textarea.wc_field_input").each(function(){if(f(this).val()!=""){M=true}});return K||J||N||M}if(p!=0){setInterval(r,e*1000)}function t(){if(f.cookie("wc_author_name")&&f.cookie("wc_author_email")){f(".wc_name").val(f.cookie("wc_author_name"));f(".wc_email").val(f.cookie("wc_author_email"))}}function b(K,M,J,L){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_post_id:K,wc_comment_id:M,wc_notifcattion_type:L,wc_email:J,action:"wc_check_notification_type"}})}f(document).delegate(".wc_editable_comment","click",function(){var K=a(f(this));var J=G(K);f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comment_id:J,action:"wc_get_editable_comment_content"}}).done(function(M){try{var P=f.parseJSON(M);if(P.code==1){I=P.message;var L='<textarea required="required" name="wc_comment" class="wc_comment wc_field_input wc_edit_comment" id="wc_edit_comment-'+K+'" style="min-height: 2em;">'+P.message+"</textarea>";f("#wc-comm-"+K+" > .wc-comment-right .wc-comment-text").replaceWith(L);document.getElementById("wc_edit_comment-"+K).focus();f("#wc_save_edited_comment-"+K).show();L="";f("#wc_editable_comment-"+K).hide();f("#wc_cancel_edit-"+K).show()}else{var N="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(N+P.phrase_message)}}catch(O){console.log(O)}})});f(document).delegate(".wc_save_edited_comment","click",function(){var O=a(f(this));var K=G(O);var J=f("#wc-comm-"+O+" textarea#wc_edit_comment-"+O);var L=J.val();var M=true;var N=y(f(this).parents(".wc-comment"))-1;if(f.trim(L).length<=0){M=false}if(M){f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction > #wc_response_info").html(d);f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comment_id:K,comment_content:L,comment_depth:N,action:"wc_save_edited_comment"}}).done(function(P){try{var S=f.parseJSON(P);if(S.code==1){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");B(O,S.message)}else{var Q="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(Q+S.phrase_message)}J="";L=""}catch(R){console.log(R)}})}});f(document).delegate(".wc_cancel_edit","click",function(){var J=a(f(this));B(J,I)});function B(L,K){f("#wc_editable_comment-"+L).show();f("#wc_cancel_edit-"+L).hide();f("#wc_save_edited_comment-"+L).hide();var J='<div class="wc-comment-text">'+x(K)+"</div>";f("#wc-comm-"+L+" #wc_edit_comment-"+L).replaceWith(J)}function x(M,L){var K=(L||typeof L==="undefined")?"<br/>":"<br>";var J=(M+"").replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g,"$1"+K+"$2");return J.replace("<br><br>","<br/>")}f(".wc_tooltipster").tooltipster({offsetY:2})});
|
1 |
+
jQuery(document).ready(function(f){var D=f("#wc_home_url").val();var t=f("#wc_plugin_dir_url").val();var v;var l;var k;var r;var C;var j;var g;var y;var h;var m;var z;var d;var o=parseInt(f("#wc_comment_list_update_type").val());var e=parseInt(f("#wc_comment_list_update_timer").val());var i;var H;f(".wc_comment").autoGrow();f(document).delegate("#wc_openModalFormAction","click",function(){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")});f(document).delegate("#wc_openModalFormAction .close","click",function(){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")});d="<img width='64' height='64' src='"+D+"/"+t+"/files/img/loader/ajax-loader-200x200.gif' />";m=f("#wc_comments_offset");m.val("1");f(document).delegate(".wc_comment","focus",function(){var I=a(f(this));f("#wc-form-footer-"+I).slideDown(700)});f(document).delegate(".wc-reply-link","click",function(){var I=a(f(this));if(f(".wc_social_plugin_wrapper .wp-social-login-provider-list").length&&!(f("#wc-secondary-forms-social-content-"+I+" .wp-social-login-provider-list").length)){f(".wc_social_plugin_wrapper .wp-social-login-provider-list").clone().prependTo("#wc-secondary-forms-social-content-"+I)}else{if(f(".wc_social_plugin_wrapper .the_champ_login_container").length&&!(f("#wc-secondary-forms-social-content-"+I+" .the_champ_login_container").length)){f(".wc_social_plugin_wrapper .the_champ_login_container").clone().prependTo("#wc-secondary-forms-social-content-"+I)}else{if(f(".wc_social_plugin_wrapper .social_connect_form").length&&!(f("#wc-secondary-forms-social-content-"+I+" .social_connect_form").length)){f(".wc_social_plugin_wrapper .social_connect_form").clone().prependTo("#wc-secondary-forms-social-content-"+I)}}}f("#wc-secondary-forms-wrapper-"+I).slideToggle(700)});f(document).delegate(".wc-share-link","click",function(){var I=a(f(this));f("#share_buttons_box-"+I).slideToggle(1000)});f(document).delegate(".wc_captcha_refresh_img","click",function(){var K=a(f(this));var I=f("#wc_comment_post_ID-"+K).val();var J=f("#wc_comment_parent-"+K).val();f("#wc_captcha_img-"+K).attr("src",D+"/"+t+"/captcha/captcha.php?comm_id="+I+"-"+J+"&r="+Math.random())});f(document).delegate(".wc_comm_submit","click",function(){h=f(this).attr("id");var L=h.substring(h.lastIndexOf("-")+1);v=f("#wc_name-"+L).val();l=f("#wc_email-"+L).val();r=(f("#wc_website-"+L).length)?f("#wc_website-"+L).val():"";k=f("textarea#wc_comment-"+L).val();C=f("#wc_captcha-"+L).val();j=f("#wc_comment_post_ID-"+L).val();g=f("#wc_comment_parent-"+L).val();y=f("#wc_comm_form-"+L);var M=f("input[name='wc_comment_reply_notification-"+L+"']:checked").length?f("input[name='wc_comment_reply_notification-"+L+"']:checked").val():"";var K="";if(c(h,j)){K=1}else{K=x(f(this).parents(".wc-comment"))}var I="";if(M.length&&M!="wc_notification_none"){if(M=="wc_notification_new_reply"){I="reply"}if(M=="wc_notification_all_new_reply"){I="all_comment"}if(M=="wc_notification_new_comment"){I="post"}}var J=true;if(!wpdiscuzValidator.checkAll(y)){J=false;f("#wc_captcha-"+L).val("");f("#wc_captcha_img-"+L).attr("src",D+"/"+t+"/captcha/captcha.php?comm_id="+j+"-"+g+"&r="+Math.random())}else{f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction > #wc_response_info").html(d)}if(J){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{name:v,email:l,website:r,comment:k,captcha:C,comment_post_ID:j,comment_parent:g,comment_depth:K,notification_type:I,action:"wc_comms_via_ajax"}}).done(function(N){f("#wc_captcha_img-"+L).attr("src",D+"/"+t+"/captcha/captcha.php?comm_id="+j+"-"+g+"&r="+Math.random());try{var Q=f.parseJSON(N);z=parseInt(Q.wc_new_comment_id);if(Q.code===-1){var O="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(O+Q.message)}else{if(Q.code===-2){var O="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(O+Q.message);f("#wc_comment-"+L).val("");f(".wc_comm_form textarea").css("height","46px");if(h==="wc_comm-"+j+"_0"){f("#wc-form-footer-"+L).slideToggle(700)}else{f("#wc-secondary-forms-wrapper-"+L).slideToggle(700)}f.cookie("wc_author_name",v);f.cookie("wc_author_email",l);f.cookie("wc_author_website",r)}else{i=Q.wc_all_comments_count_new;f("#wc_comment-"+L).val("");f(".wc_comm_form textarea").css("height","46px");if(h==="wc_comm-"+j+"_0"){f(".wc-thread-wrapper").prepend(Q.message);f("#wc-form-footer-"+L).slideToggle(700);f("#wc_curr_user_comment_count").val(parseInt(f("#wc_curr_user_comment_count").val())+1)}else{f("#wc-secondary-forms-wrapper-"+L).slideToggle(700);if(Q.is_in_same_container==1){f("#wc-secondary-forms-wrapper-"+L).after(Q.message)}else{f("#wc-secondary-forms-wrapper-"+L).after(Q.message.replace("wc-reply","wc-reply wc-no-left-margin"))}}f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");f.cookie("wc_author_name",v);f.cookie("wc_author_email",l);f.cookie("wc_author_website",r);f("#wpcomm .wc_name").val(v);f("#wpcomm .wc_email").val(l);f("#wpcomm .wc_website").val(r);if(f(".wc_header_text_count").length){f(".wc_header_text_count").val(parseInt(f(".wc_header_text_count").val())+1)}f.cookie("wc_all_comments_count_new",i)}}f("#wc_captcha-"+L).val("");f(".wc_tooltipster").tooltipster({offsetY:2});f(".wc_comm_form input").css("box-shadow","0 0 4px -2px #d4d0ba");f(".wc_comm_form textarea").css("box-shadow","0 0 4px -2px #d4d0ba");b(j,z,l,I);if(Q.code==1||Q.code==-2){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_new_comment_id:z,action:"wpdiscuz_comment_redirect"}}).done(function(S){try{var R=f.parseJSON(S);if(R.code==1){setTimeout(function(){window.location.href=R.redirect_to},5000)}}catch(T){}})}}catch(P){f("#wc_captcha-"+L).val("");f(".wc_tooltipster").tooltipster({offsetY:2});f(".wc_comm_form input").css("box-shadow","0 0 4px -2px #d4d0ba");f(".wc_comm_form textarea").css("box-shadow","0 0 4px -2px #d4d0ba");var O="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");if(N.contains("<")&&N.contains(">")){f("#wc_openModalFormAction > #wc_response_info").html(O+P)}else{f("#wc_openModalFormAction > #wc_response_info").html(O+N)}}})}else{return false}});f(document).delegate(".wc_vote","click",function(){var K=a(f(this));var I=F(K);var J;f("#wc_openModalFormAction > #wc_response_info").html(d);f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");if(f(this).hasClass("wc-up")){J=1}else{J=-1}f.ajax({dateType:"json",type:"POST",url:wc_ajax_obj.url,data:{comment_ID:I,vote_type:J,action:"wc_vote_via_ajax"}}).done(function(L){var N=f.parseJSON(L);if(N.code!==-1){f("#vote-count-"+K).text(parseInt(f("#vote-count-"+K).text())+J);f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")}else{var M="<a href='#close' title='Close' class='close'> </a>";f("#wc_response_info").html(M+N.message);f("#wc_openModalFormAction .close").css("display","block")}})});f(document).delegate(".wc-load-more-submit","click",function(){f("#wc_openModalFormAction > #wc_response_info").html(d);f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");var L=m.val();var M=E(f(this).attr("id"));var N=parseInt(f("#wc_parent_comments_count").val());var J=parseInt(f("#wc_parent_per_page").val());var K=(f("#wc_last_comment_id_before_update").val())?f("#wc_last_comment_id_before_update").val():0;var I=f("#wc_curr_user_comment_count").val();L=parseInt(L);L++;f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comments_offset:L,wc_curr_user_comment_count:I,wc_post_id:M,wc_last_comment_id:K,action:"wc_load_more_comments"}}).done(function(O){var P=f.parseJSON(O);m.val(L);if(N<=(L*J)){f(".wc-load-more-submit-wrap").remove()}f(".wc-thread-wrapper").html(P.message);f("#wc_last_comment_id").val(P.wc_last_comment_id);f("#hidden_new_comment_count").val(P.hidden_new_comment_count);f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");f(".wc_tooltipster").tooltipster({offsetY:2});s()})});f(document).delegate(".wc_new_comment","click",function(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var M=h.substring(h.lastIndexOf("-")+1);j=E(M);var K=f("#wc_last_new_comment_id").val();l=f.cookie("wc_author_email");var J=f("#wc_curr_user_comment_count").val();var L=m.val();var I="";f(".wc-thread-wrapper .wc-comment").each(function(){var N=f(this).attr("id");var O=N.substring(N.lastIndexOf("-")+1);I+=F(O)+","});f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_requested_comments_type:1,wc_last_comment_id:K,wc_post_id:j,wc_author_email:l,wc_comments_offset:L,wc_curr_user_comment_count:J,wc_visible_comments_ids:I,action:"wc_list_new_comments"}}).done(function(N){try{var P=f.parseJSON(N);if(P.code!=0){f(".wc-thread-wrapper").html(P.message);f("#wc_last_new_comment_id").val(P.wc_last_comment_id);f(".wc_new_comment").hide();f(document).delegate(".wc_new_loaded_comment","mouseenter",function(){if(f(this).parent(".wc-comment").hasClass("wc-reply")){f(this,".wc-comment-right").animate({backgroundColor:"#f8f8f8"},1500)}else{f(this,".wc-comment-right").animate({backgroundColor:"#fefefe"},1500)}f(this,".wc-comment-right").removeClass("wc_new_loaded_comment")})}}catch(O){console.log(O)}})});f(document).delegate(".wc_new_reply","click",function(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var M=h.substring(h.lastIndexOf("-")+1);j=E(M);var K=f("#wc_last_new_reply_id").val();l=f.cookie("wc_author_email");var J=f("#wc_curr_user_comment_count").val();var L=m.val();var I="";f(".wc-thread-wrapper .wc-comment").each(function(){var N=f(this).attr("id");var O=N.substring(N.lastIndexOf("-")+1);I+=F(O)+","});f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_requested_comments_type:2,wc_last_comment_id:K,wc_comments_offset:L,wc_curr_user_comment_count:J,wc_post_id:j,wc_author_email:l,wc_visible_comments_ids:I,action:"wc_list_new_comments"}}).done(function(N){try{var P=f.parseJSON(N);if(P.code!=0){f(".wc-thread-wrapper").html(P.message);f("#wc_last_new_reply_id").val(P.wc_last_comment_id);f(".wc_new_reply").hide()}}catch(O){console.log(O)}})});function a(J){var I=J.attr("id");var K=I.substring(I.lastIndexOf("-")+1);return K}function E(J){var I=J.substring(J.lastIndexOf("-")+1);I=I.substring(0,I.lastIndexOf("_"));return I}function F(J){var I=J.substring(J.indexOf("_")+1);return I}function x(K){var J=K.attr("class");var I=J.split(" ");var L="";f.each(I,function(M,N){if("wc_comment_level"===G(N,false)){L=G(N,true)}});return parseInt(L)+1}function G(I,J){var K="";if(J){K=I.substring(I.indexOf("-")+1)}else{K=I.substring(0,I.indexOf("-"))}return K}function c(J,I){return J==="wc_comm-"+I+"_0"}function q(){var I=f.cookie("wc_all_comments_count_new")?false:true;if(o==1){if(!u(I)){p()}}else{if(o==2){if(!u(I)){B()}}}}function p(){j=f("#wpdiscuz_current_post_id").val();var O=f("#wc_last_comment_id_before_update").val();var K=f("#wc_last_new_comment_id").val();var L=f("#wc_last_new_reply_id").val();var M=f("#wc_comments_offset").length?f("#wc_comments_offset").val():1;var N=f.cookie("wc_all_comments_count_old");var I=f("#wc_curr_user_comment_count").val();var J=f.cookie("wc_author_email");f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_author_email:J,wc_curr_user_comment_count:I,wc_last_comment_id:O,wc_last_new_comment_id:K,wc_last_new_reply_id:L,wc_all_comments_count_old:N,wc_comments_offset:M,wc_comment_list_update_type:o,wc_post_id:j,action:"wc_live_update"}}).done(function(P){n(P)})}function B(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var N=h.substring(h.lastIndexOf("-")+1);j=E(N);g=F(N);var L=f("#wc_comments_offset").length?f("#wc_comments_offset").val():1;var I=f("#wc_curr_user_comment_count").val();var M=f("#wc_last_comment_id").val();var J=f("#wc_last_new_comment_id").val();var K=f("#wc_last_new_reply_id").val();l=f.cookie("wc_author_email");f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_last_comment_id:M,wc_last_new_comment_id:J,wc_last_new_reply_id:K,wc_comment_list_update_type:o,wc_comments_offset:L,wc_curr_user_comment_count:I,wc_post_id:j,wc_author_email:l,action:"wc_live_update"}}).done(function(O){n(O)})}function n(I){try{var K=f.parseJSON(I);if(K.code==1){f(".wc-thread-wrapper").html(K.message);if(f(".wc_header_text_count").length){f(".wc_header_text_count").html(K.wc_all_comments_count_new)}f("#wc_last_comment_id").val(K.wc_last_comment_id)}else{if(K.code==2){if(K.wc_new_comment_count){f(".wc_new_comment_button_text").html(K.wc_new_comment_count+" "+K.wc_new_comment_button_text);f(".wc_new_comment").css("display","inline-block")}else{f(".wc_new_comment").css("display","none")}if(K.wc_new_reply_count){f(".wc_new_reply_button_text").html(K.wc_new_reply_count+" "+K.wc_new_reply_button_text);f(".wc_new_reply").css("display","inline-block")}else{f(".wc_new_reply").css("display","none")}}}s()}catch(J){console.log(J)}}function u(K){var J=f(".wc_secondary_form input.wc_field_input").is(":focus");var I=f(".wc_secondary_form textarea.wc_field_input").is(":focus");var M=false;var L=false;if(K){f(".wc_secondary_form input.wc_field_input").each(function(){if(f(this).val()!=""){M=true}})}else{f(".wc_secondary_form input.wc_field_captcha").each(function(){if(f(this).val()!=""){M=true}})}f(".wc_secondary_form textarea.wc_field_input").each(function(){if(f(this).val()!=""){L=true}});return J||I||M||L}if(o!=0){setInterval(q,e*1000)}function s(){if(f.cookie("wc_author_name")&&f.cookie("wc_author_email")){f(".wc_name").val(f.cookie("wc_author_name"));f(".wc_email").val(f.cookie("wc_author_email"))}}function b(J,L,I,K){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_post_id:J,wc_comment_id:L,wc_notifcattion_type:K,wc_email:I,action:"wc_check_notification_type"}})}f(document).delegate(".wc_editable_comment","click",function(){var J=a(f(this));var I=F(J);f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comment_id:I,action:"wc_get_editable_comment_content"}}).done(function(L){try{var O=f.parseJSON(L);if(O.code==1){H=O.message;var K='<textarea required="required" name="wc_comment" class="wc_comment wc_field_input wc_edit_comment" id="wc_edit_comment-'+J+'" style="min-height: 2em;">'+O.message+"</textarea>";f("#wc-comm-"+J+" > .wc-comment-right .wc-comment-text").replaceWith(K);document.getElementById("wc_edit_comment-"+J).focus();f("#wc_save_edited_comment-"+J).show();K="";f("#wc_editable_comment-"+J).hide();f("#wc_cancel_edit-"+J).show()}else{var M="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(M+O.phrase_message)}}catch(N){console.log(N)}})});f(document).delegate(".wc_save_edited_comment","click",function(){var N=a(f(this));var J=F(N);var I=f("#wc-comm-"+N+" textarea#wc_edit_comment-"+N);var K=I.val();var L=true;var M=x(f(this).parents(".wc-comment"))-1;if(f.trim(K).length<=0){L=false}if(L){f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction > #wc_response_info").html(d);f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comment_id:J,comment_content:K,comment_depth:M,action:"wc_save_edited_comment"}}).done(function(O){try{var R=f.parseJSON(O);if(R.code==1){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");A(N,R.message)}else{var P="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(P+R.phrase_message)}I="";K=""}catch(Q){console.log(Q)}})}});f(document).delegate(".wc_cancel_edit","click",function(){var I=a(f(this));A(I,H)});function A(K,J){f("#wc_editable_comment-"+K).show();f("#wc_cancel_edit-"+K).hide();f("#wc_save_edited_comment-"+K).hide();var I='<div class="wc-comment-text">'+w(J)+"</div>";f("#wc-comm-"+K+" #wc_edit_comment-"+K).replaceWith(I)}function w(L,K){var J=(K||typeof K==="undefined")?"<br/>":"<br>";var I=(L+"").replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g,"$1"+J+"$2");return I.replace("<br><br>","<br/>")}f(".wc_tooltipster").tooltipster({offsetY:2})});
|
files/js/wc-frontend.js
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
jQuery(document).ready(function ($) {
|
2 |
-
$(document).delegate('.wc_manage_subscribtions', 'click', function () {
|
3 |
-
$(this).next('.wc_notification_checkboxes').slideToggle(700);
|
4 |
-
});
|
5 |
-
});
|
|
|
|
|
|
|
|
|
|
files/js/wc-scripts.js
DELETED
@@ -1,62 +0,0 @@
|
|
1 |
-
jQuery(document).ready(function ($) {
|
2 |
-
var pickerImg1 = $('.wc_colorpicker_img1');
|
3 |
-
var modalBox1 = $('div#wc_box1');
|
4 |
-
var position1 = pickerImg1.position();
|
5 |
-
/*modalBox1.css('margin-left', position1.left + 200);*/
|
6 |
-
|
7 |
-
$('#wc_colorpickerHolder1').ColorPicker({
|
8 |
-
flat: true,
|
9 |
-
onChange: function (hsb, hex, rgb) {
|
10 |
-
$('#wc_comment_bg_color').val('#' + hex);
|
11 |
-
}
|
12 |
-
});
|
13 |
-
|
14 |
-
$('#wc_colorpickerHolder2').ColorPicker({
|
15 |
-
flat: true,
|
16 |
-
onChange: function (hsb, hex, rgb) {
|
17 |
-
$('#wc_reply_bg_color').val('#' + hex);
|
18 |
-
}
|
19 |
-
});
|
20 |
-
|
21 |
-
$('#wc_colorpickerHolder3').ColorPicker({
|
22 |
-
flat: true,
|
23 |
-
onChange: function (hsb, hex, rgb) {
|
24 |
-
$('#wc_comment_text_color').val('#' + hex);
|
25 |
-
}
|
26 |
-
});
|
27 |
-
|
28 |
-
$('#wc_colorpickerHolder4').ColorPicker({
|
29 |
-
flat: true,
|
30 |
-
onChange: function (hsb, hex, rgb) {
|
31 |
-
$('#wc_author_title_color').val('#' + hex);
|
32 |
-
}
|
33 |
-
});
|
34 |
-
|
35 |
-
$('#wc_colorpickerHolder5').ColorPicker({
|
36 |
-
flat: true,
|
37 |
-
onChange: function (hsb, hex, rgb) {
|
38 |
-
$('#wc_vote_reply_color').val('#' + hex);
|
39 |
-
}
|
40 |
-
});
|
41 |
-
|
42 |
-
$('#wc_colorpickerHolder6').ColorPicker({
|
43 |
-
flat: true,
|
44 |
-
onChange: function (hsb, hex, rgb) {
|
45 |
-
$('#wc_form_bg_color').val('#' + hex);
|
46 |
-
}
|
47 |
-
});
|
48 |
-
|
49 |
-
$('#wc_colorpickerHolder7').ColorPicker({
|
50 |
-
flat: true,
|
51 |
-
onChange: function (hsb, hex, rgb) {
|
52 |
-
$('#wc_new_loaded_comment_bg_color').val('rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ')');
|
53 |
-
}
|
54 |
-
});
|
55 |
-
|
56 |
-
$('#wc_colorpickerHolder8').ColorPicker({
|
57 |
-
flat: true,
|
58 |
-
onChange: function (hsb, hex, rgb) {
|
59 |
-
$('#wc_input_border_color').val('#' + hex);
|
60 |
-
}
|
61 |
-
});
|
62 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
files/third-party/colorpicker/js/colorpicker.js
DELETED
@@ -1,529 +0,0 @@
|
|
1 |
-
/**
|
2 |
-
*
|
3 |
-
* Color picker
|
4 |
-
* Author: Stefan Petre www.eyecon.ro
|
5 |
-
*
|
6 |
-
* Dual licensed under the MIT and GPL licenses
|
7 |
-
*
|
8 |
-
*/
|
9 |
-
(function ($) {
|
10 |
-
var ColorPicker = function () {
|
11 |
-
var
|
12 |
-
ids = {},
|
13 |
-
inAction,
|
14 |
-
charMin = 65,
|
15 |
-
visible,
|
16 |
-
tpl = '<div class="colorpicker"><div class="colorpicker_color"><div><div></div></div></div><div class="colorpicker_hue"><div></div></div><div class="colorpicker_new_color"></div><div class="colorpicker_current_color"></div><div class="colorpicker_hex"><input type="text" maxlength="6" size="6" /></div><div class="colorpicker_rgb_r colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_rgb_g colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_rgb_b colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_hsb_h colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_hsb_s colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_hsb_b colorpicker_field"><input type="text" maxlength="3" size="3" /><span></span></div><div class="colorpicker_submit"></div></div>',
|
17 |
-
defaults = {
|
18 |
-
eventName: 'click',
|
19 |
-
onShow: function () {},
|
20 |
-
onBeforeShow: function(){},
|
21 |
-
onHide: function () {},
|
22 |
-
onChange: function () {},
|
23 |
-
onSubmit: function () {},
|
24 |
-
color: 'ff0000',
|
25 |
-
livePreview: true,
|
26 |
-
flat: false
|
27 |
-
},
|
28 |
-
fillRGBFields = function (hsb, cal) {
|
29 |
-
var rgb = HSBToRGB(hsb);
|
30 |
-
$(cal).data('colorpicker').fields
|
31 |
-
.eq(1).val(rgb.r).end()
|
32 |
-
.eq(2).val(rgb.g).end()
|
33 |
-
.eq(3).val(rgb.b).end();
|
34 |
-
},
|
35 |
-
fillHSBFields = function (hsb, cal) {
|
36 |
-
$(cal).data('colorpicker').fields
|
37 |
-
.eq(4).val(hsb.h).end()
|
38 |
-
.eq(5).val(hsb.s).end()
|
39 |
-
.eq(6).val(hsb.b).end();
|
40 |
-
},
|
41 |
-
fillHexFields = function (hsb, cal) {
|
42 |
-
$(cal).data('colorpicker').fields
|
43 |
-
.eq(0).val(HSBToHex(hsb)).end();
|
44 |
-
},
|
45 |
-
setSelector = function (hsb, cal) {
|
46 |
-
$(cal).data('colorpicker').selector.css('backgroundColor', '#' + HSBToHex({
|
47 |
-
h: hsb.h,
|
48 |
-
s: 100,
|
49 |
-
b: 100
|
50 |
-
}));
|
51 |
-
$(cal).data('colorpicker').selectorIndic.css({
|
52 |
-
left: parseInt(150 * hsb.s/100, 10),
|
53 |
-
top: parseInt(150 * (100-hsb.b)/100, 10)
|
54 |
-
});
|
55 |
-
},
|
56 |
-
setHue = function (hsb, cal) {
|
57 |
-
$(cal).data('colorpicker').hue.css('top', parseInt(150 - 150 * hsb.h/360, 10));
|
58 |
-
},
|
59 |
-
setCurrentColor = function (hsb, cal) {
|
60 |
-
$(cal).data('colorpicker').currentColor.css('backgroundColor', '#' + HSBToHex(hsb));
|
61 |
-
},
|
62 |
-
setNewColor = function (hsb, cal) {
|
63 |
-
$(cal).data('colorpicker').newColor.css('backgroundColor', '#' + HSBToHex(hsb));
|
64 |
-
},
|
65 |
-
keyDown = function (ev) {
|
66 |
-
var pressedKey = ev.charCode || ev.keyCode || -1;
|
67 |
-
if ((pressedKey > charMin && pressedKey <= 90) || pressedKey == 32) {
|
68 |
-
return false;
|
69 |
-
}
|
70 |
-
var cal = $(this).parent().parent();
|
71 |
-
if (cal.data('colorpicker').livePreview === true) {
|
72 |
-
change.apply(this);
|
73 |
-
}
|
74 |
-
},
|
75 |
-
change = function (ev) {
|
76 |
-
var cal = $(this).parent().parent(), col;
|
77 |
-
if (this.parentNode.className.indexOf('_hex') > 0) {
|
78 |
-
cal.data('colorpicker').color = col = HexToHSB(fixHex(this.value));
|
79 |
-
} else if (this.parentNode.className.indexOf('_hsb') > 0) {
|
80 |
-
cal.data('colorpicker').color = col = fixHSB({
|
81 |
-
h: parseInt(cal.data('colorpicker').fields.eq(4).val(), 10),
|
82 |
-
s: parseInt(cal.data('colorpicker').fields.eq(5).val(), 10),
|
83 |
-
b: parseInt(cal.data('colorpicker').fields.eq(6).val(), 10)
|
84 |
-
});
|
85 |
-
} else {
|
86 |
-
cal.data('colorpicker').color = col = RGBToHSB(fixRGB({
|
87 |
-
r: parseInt(cal.data('colorpicker').fields.eq(1).val(), 10),
|
88 |
-
g: parseInt(cal.data('colorpicker').fields.eq(2).val(), 10),
|
89 |
-
b: parseInt(cal.data('colorpicker').fields.eq(3).val(), 10)
|
90 |
-
}));
|
91 |
-
}
|
92 |
-
if (ev) {
|
93 |
-
fillRGBFields(col, cal.get(0));
|
94 |
-
fillHexFields(col, cal.get(0));
|
95 |
-
fillHSBFields(col, cal.get(0));
|
96 |
-
}
|
97 |
-
setSelector(col, cal.get(0));
|
98 |
-
setHue(col, cal.get(0));
|
99 |
-
setNewColor(col, cal.get(0));
|
100 |
-
cal.data('colorpicker').onChange.apply(cal, [col, HSBToHex(col), HSBToRGB(col)]);
|
101 |
-
},
|
102 |
-
blur = function (ev) {
|
103 |
-
var cal = $(this).parent().parent();
|
104 |
-
cal.data('colorpicker').fields.parent().removeClass('colorpicker_focus');
|
105 |
-
},
|
106 |
-
focus = function () {
|
107 |
-
charMin = this.parentNode.className.indexOf('_hex') > 0 ? 70 : 65;
|
108 |
-
$(this).parent().parent().data('colorpicker').fields.parent().removeClass('colorpicker_focus');
|
109 |
-
$(this).parent().addClass('colorpicker_focus');
|
110 |
-
},
|
111 |
-
downIncrement = function (ev) {
|
112 |
-
var field = $(this).parent().find('input').focus();
|
113 |
-
var current = {
|
114 |
-
el: $(this).parent().addClass('colorpicker_slider'),
|
115 |
-
max: this.parentNode.className.indexOf('_hsb_h') > 0 ? 360 : (this.parentNode.className.indexOf('_hsb') > 0 ? 100 : 255),
|
116 |
-
y: ev.pageY,
|
117 |
-
field: field,
|
118 |
-
val: parseInt(field.val(), 10),
|
119 |
-
preview: $(this).parent().parent().data('colorpicker').livePreview
|
120 |
-
};
|
121 |
-
$(document).bind('mouseup', current, upIncrement);
|
122 |
-
$(document).bind('mousemove', current, moveIncrement);
|
123 |
-
},
|
124 |
-
moveIncrement = function (ev) {
|
125 |
-
ev.data.field.val(Math.max(0, Math.min(ev.data.max, parseInt(ev.data.val + ev.pageY - ev.data.y, 10))));
|
126 |
-
if (ev.data.preview) {
|
127 |
-
change.apply(ev.data.field.get(0), [true]);
|
128 |
-
}
|
129 |
-
return false;
|
130 |
-
},
|
131 |
-
upIncrement = function (ev) {
|
132 |
-
change.apply(ev.data.field.get(0), [true]);
|
133 |
-
ev.data.el.removeClass('colorpicker_slider').find('input').focus();
|
134 |
-
$(document).unbind('mouseup', upIncrement);
|
135 |
-
$(document).unbind('mousemove', moveIncrement);
|
136 |
-
return false;
|
137 |
-
},
|
138 |
-
downHue = function (ev) {
|
139 |
-
var current = {
|
140 |
-
cal: $(this).parent(),
|
141 |
-
y: $(this).offset().top
|
142 |
-
};
|
143 |
-
current.preview = current.cal.data('colorpicker').livePreview;
|
144 |
-
$(document).bind('mouseup', current, upHue);
|
145 |
-
$(document).bind('mousemove', current, moveHue);
|
146 |
-
},
|
147 |
-
moveHue = function (ev) {
|
148 |
-
change.apply(
|
149 |
-
ev.data.cal.data('colorpicker')
|
150 |
-
.fields
|
151 |
-
.eq(4)
|
152 |
-
.val(parseInt(360*(150 - Math.max(0,Math.min(150,(ev.pageY - ev.data.y))))/150, 10))
|
153 |
-
.get(0),
|
154 |
-
[ev.data.preview]
|
155 |
-
);
|
156 |
-
return false;
|
157 |
-
},
|
158 |
-
upHue = function (ev) {
|
159 |
-
fillRGBFields(ev.data.cal.data('colorpicker').color, ev.data.cal.get(0));
|
160 |
-
fillHexFields(ev.data.cal.data('colorpicker').color, ev.data.cal.get(0));
|
161 |
-
$(document).unbind('mouseup', upHue);
|
162 |
-
$(document).unbind('mousemove', moveHue);
|
163 |
-
return false;
|
164 |
-
},
|
165 |
-
downSelector = function (ev) {
|
166 |
-
var current = {
|
167 |
-
cal: $(this).parent(),
|
168 |
-
pos: $(this).offset()
|
169 |
-
};
|
170 |
-
current.preview = current.cal.data('colorpicker').livePreview;
|
171 |
-
$(document).bind('mouseup', current, upSelector);
|
172 |
-
$(document).bind('mousemove', current, moveSelector);
|
173 |
-
},
|
174 |
-
moveSelector = function (ev) {
|
175 |
-
change.apply(
|
176 |
-
ev.data.cal.data('colorpicker')
|
177 |
-
.fields
|
178 |
-
.eq(6)
|
179 |
-
.val(parseInt(100*(150 - Math.max(0,Math.min(150,(ev.pageY - ev.data.pos.top))))/150, 10))
|
180 |
-
.end()
|
181 |
-
.eq(5)
|
182 |
-
.val(parseInt(100*(Math.max(0,Math.min(150,(ev.pageX - ev.data.pos.left))))/150, 10))
|
183 |
-
.get(0),
|
184 |
-
[ev.data.preview]
|
185 |
-
);
|
186 |
-
return false;
|
187 |
-
},
|
188 |
-
upSelector = function (ev) {
|
189 |
-
fillRGBFields(ev.data.cal.data('colorpicker').color, ev.data.cal.get(0));
|
190 |
-
fillHexFields(ev.data.cal.data('colorpicker').color, ev.data.cal.get(0));
|
191 |
-
$(document).unbind('mouseup', upSelector);
|
192 |
-
$(document).unbind('mousemove', moveSelector);
|
193 |
-
return false;
|
194 |
-
},
|
195 |
-
enterSubmit = function (ev) {
|
196 |
-
$(this).addClass('colorpicker_focus');
|
197 |
-
},
|
198 |
-
leaveSubmit = function (ev) {
|
199 |
-
$(this).removeClass('colorpicker_focus');
|
200 |
-
},
|
201 |
-
clickSubmit = function (ev) {
|
202 |
-
var cal = $(this).parent();
|
203 |
-
var col = cal.data('colorpicker').color;
|
204 |
-
cal.data('colorpicker').origColor = col;
|
205 |
-
setCurrentColor(col, cal.get(0));
|
206 |
-
cal.data('colorpicker').onSubmit(col, HSBToHex(col), HSBToRGB(col), cal.data('colorpicker').el);
|
207 |
-
},
|
208 |
-
show = function (ev) {
|
209 |
-
var cal = $('#' + $(this).data('colorpickerId'));
|
210 |
-
cal.data('colorpicker').onBeforeShow.apply(this, [cal.get(0)]);
|
211 |
-
var pos = $(this).offset();
|
212 |
-
var viewPort = getViewport();
|
213 |
-
var top = pos.top + this.offsetHeight;
|
214 |
-
var left = pos.left;
|
215 |
-
if (top + 176 > viewPort.t + viewPort.h) {
|
216 |
-
top -= this.offsetHeight + 176;
|
217 |
-
}
|
218 |
-
if (left + 356 > viewPort.l + viewPort.w) {
|
219 |
-
left -= 356;
|
220 |
-
}
|
221 |
-
cal.css({
|
222 |
-
left: left + 'px',
|
223 |
-
top: top + 'px'
|
224 |
-
});
|
225 |
-
if (cal.data('colorpicker').onShow.apply(this, [cal.get(0)]) != false) {
|
226 |
-
cal.show();
|
227 |
-
}
|
228 |
-
$(document).bind('mousedown', {
|
229 |
-
cal: cal
|
230 |
-
}, hide);
|
231 |
-
return false;
|
232 |
-
},
|
233 |
-
hide = function (ev) {
|
234 |
-
if (!isChildOf(ev.data.cal.get(0), ev.target, ev.data.cal.get(0))) {
|
235 |
-
if (ev.data.cal.data('colorpicker').onHide.apply(this, [ev.data.cal.get(0)]) != false) {
|
236 |
-
ev.data.cal.hide();
|
237 |
-
}
|
238 |
-
$(document).unbind('mousedown', hide);
|
239 |
-
}
|
240 |
-
},
|
241 |
-
isChildOf = function(parentEl, el, container) {
|
242 |
-
if (parentEl == el) {
|
243 |
-
return true;
|
244 |
-
}
|
245 |
-
if (parentEl.contains) {
|
246 |
-
return parentEl.contains(el);
|
247 |
-
}
|
248 |
-
if ( parentEl.compareDocumentPosition ) {
|
249 |
-
return !!(parentEl.compareDocumentPosition(el) & 16);
|
250 |
-
}
|
251 |
-
var prEl = el.parentNode;
|
252 |
-
while(prEl && prEl != container) {
|
253 |
-
if (prEl == parentEl)
|
254 |
-
return true;
|
255 |
-
prEl = prEl.parentNode;
|
256 |
-
}
|
257 |
-
return false;
|
258 |
-
},
|
259 |
-
getViewport = function () {
|
260 |
-
var m = document.compatMode == 'CSS1Compat';
|
261 |
-
return {
|
262 |
-
l : window.pageXOffset || (m ? document.documentElement.scrollLeft : document.body.scrollLeft),
|
263 |
-
t : window.pageYOffset || (m ? document.documentElement.scrollTop : document.body.scrollTop),
|
264 |
-
w : window.innerWidth || (m ? document.documentElement.clientWidth : document.body.clientWidth),
|
265 |
-
h : window.innerHeight || (m ? document.documentElement.clientHeight : document.body.clientHeight)
|
266 |
-
};
|
267 |
-
},
|
268 |
-
fixHSB = function (hsb) {
|
269 |
-
return {
|
270 |
-
h: Math.min(360, Math.max(0, hsb.h)),
|
271 |
-
s: Math.min(100, Math.max(0, hsb.s)),
|
272 |
-
b: Math.min(100, Math.max(0, hsb.b))
|
273 |
-
};
|
274 |
-
},
|
275 |
-
fixRGB = function (rgb) {
|
276 |
-
return {
|
277 |
-
r: Math.min(255, Math.max(0, rgb.r)),
|
278 |
-
g: Math.min(255, Math.max(0, rgb.g)),
|
279 |
-
b: Math.min(255, Math.max(0, rgb.b))
|
280 |
-
};
|
281 |
-
},
|
282 |
-
fixHex = function (hex) {
|
283 |
-
var len = 6 - hex.length;
|
284 |
-
if (len > 0) {
|
285 |
-
var o = [];
|
286 |
-
for (var i=0; i<len; i++) {
|
287 |
-
o.push('0');
|
288 |
-
}
|
289 |
-
o.push(hex);
|
290 |
-
hex = o.join('');
|
291 |
-
}
|
292 |
-
return hex;
|
293 |
-
},
|
294 |
-
HexToRGB = function (hex) {
|
295 |
-
var hex = parseInt(((hex.indexOf('#') > -1) ? hex.substring(1) : hex), 16);
|
296 |
-
return {
|
297 |
-
r: hex >> 16,
|
298 |
-
g: (hex & 0x00FF00) >> 8,
|
299 |
-
b: (hex & 0x0000FF)
|
300 |
-
};
|
301 |
-
},
|
302 |
-
HexToHSB = function (hex) {
|
303 |
-
return RGBToHSB(HexToRGB(hex));
|
304 |
-
},
|
305 |
-
RGBToHSB = function (rgb) {
|
306 |
-
var hsb = {
|
307 |
-
h: 0,
|
308 |
-
s: 0,
|
309 |
-
b: 0
|
310 |
-
};
|
311 |
-
var min = Math.min(rgb.r, rgb.g, rgb.b);
|
312 |
-
var max = Math.max(rgb.r, rgb.g, rgb.b);
|
313 |
-
var delta = max - min;
|
314 |
-
hsb.b = max;
|
315 |
-
if (max != 0) {
|
316 |
-
|
317 |
-
}
|
318 |
-
hsb.s = max != 0 ? 255 * delta / max : 0;
|
319 |
-
if (hsb.s != 0) {
|
320 |
-
if (rgb.r == max) {
|
321 |
-
hsb.h = (rgb.g - rgb.b) / delta;
|
322 |
-
} else if (rgb.g == max) {
|
323 |
-
hsb.h = 2 + (rgb.b - rgb.r) / delta;
|
324 |
-
} else {
|
325 |
-
hsb.h = 4 + (rgb.r - rgb.g) / delta;
|
326 |
-
}
|
327 |
-
} else {
|
328 |
-
hsb.h = -1;
|
329 |
-
}
|
330 |
-
hsb.h *= 60;
|
331 |
-
if (hsb.h < 0) {
|
332 |
-
hsb.h += 360;
|
333 |
-
}
|
334 |
-
hsb.s *= 100/255;
|
335 |
-
hsb.b *= 100/255;
|
336 |
-
return hsb;
|
337 |
-
},
|
338 |
-
HSBToRGB = function (hsb) {
|
339 |
-
var rgb = {};
|
340 |
-
var h = Math.round(hsb.h);
|
341 |
-
var s = Math.round(hsb.s*255/100);
|
342 |
-
var v = Math.round(hsb.b*255/100);
|
343 |
-
if(s == 0) {
|
344 |
-
rgb.r = rgb.g = rgb.b = v;
|
345 |
-
} else {
|
346 |
-
var t1 = v;
|
347 |
-
var t2 = (255-s)*v/255;
|
348 |
-
var t3 = (t1-t2)*(h%60)/60;
|
349 |
-
if(h==360) h = 0;
|
350 |
-
if(h<60) {
|
351 |
-
rgb.r=t1;
|
352 |
-
rgb.b=t2;
|
353 |
-
rgb.g=t2+t3
|
354 |
-
}
|
355 |
-
else if(h<120) {
|
356 |
-
rgb.g=t1;
|
357 |
-
rgb.b=t2;
|
358 |
-
rgb.r=t1-t3
|
359 |
-
}
|
360 |
-
else if(h<180) {
|
361 |
-
rgb.g=t1;
|
362 |
-
rgb.r=t2;
|
363 |
-
rgb.b=t2+t3
|
364 |
-
}
|
365 |
-
else if(h<240) {
|
366 |
-
rgb.b=t1;
|
367 |
-
rgb.r=t2;
|
368 |
-
rgb.g=t1-t3
|
369 |
-
}
|
370 |
-
else if(h<300) {
|
371 |
-
rgb.b=t1;
|
372 |
-
rgb.g=t2;
|
373 |
-
rgb.r=t2+t3
|
374 |
-
}
|
375 |
-
else if(h<360) {
|
376 |
-
rgb.r=t1;
|
377 |
-
rgb.g=t2;
|
378 |
-
rgb.b=t1-t3
|
379 |
-
}
|
380 |
-
else {
|
381 |
-
rgb.r=0;
|
382 |
-
rgb.g=0;
|
383 |
-
rgb.b=0
|
384 |
-
}
|
385 |
-
}
|
386 |
-
return {
|
387 |
-
r:Math.round(rgb.r),
|
388 |
-
g:Math.round(rgb.g),
|
389 |
-
b:Math.round(rgb.b)
|
390 |
-
};
|
391 |
-
},
|
392 |
-
RGBToHex = function (rgb) {
|
393 |
-
var hex = [
|
394 |
-
rgb.r.toString(16),
|
395 |
-
rgb.g.toString(16),
|
396 |
-
rgb.b.toString(16)
|
397 |
-
];
|
398 |
-
$.each(hex, function (nr, val) {
|
399 |
-
if (val.length == 1) {
|
400 |
-
hex[nr] = '0' + val;
|
401 |
-
}
|
402 |
-
});
|
403 |
-
return hex.join('');
|
404 |
-
},
|
405 |
-
HSBToHex = function (hsb) {
|
406 |
-
return RGBToHex(HSBToRGB(hsb));
|
407 |
-
},
|
408 |
-
restoreOriginal = function () {
|
409 |
-
var cal = $(this).parent();
|
410 |
-
var col = cal.data('colorpicker').origColor;
|
411 |
-
cal.data('colorpicker').color = col;
|
412 |
-
fillRGBFields(col, cal.get(0));
|
413 |
-
fillHexFields(col, cal.get(0));
|
414 |
-
fillHSBFields(col, cal.get(0));
|
415 |
-
setSelector(col, cal.get(0));
|
416 |
-
setHue(col, cal.get(0));
|
417 |
-
setNewColor(col, cal.get(0));
|
418 |
-
};
|
419 |
-
return {
|
420 |
-
init: function (opt) {
|
421 |
-
opt = $.extend({}, defaults, opt||{});
|
422 |
-
if (typeof opt.color == 'string') {
|
423 |
-
opt.color = HexToHSB(opt.color);
|
424 |
-
} else if (opt.color.r != undefined && opt.color.g != undefined && opt.color.b != undefined) {
|
425 |
-
opt.color = RGBToHSB(opt.color);
|
426 |
-
} else if (opt.color.h != undefined && opt.color.s != undefined && opt.color.b != undefined) {
|
427 |
-
opt.color = fixHSB(opt.color);
|
428 |
-
} else {
|
429 |
-
return this;
|
430 |
-
}
|
431 |
-
return this.each(function () {
|
432 |
-
if (!$(this).data('colorpickerId')) {
|
433 |
-
var options = $.extend({}, opt);
|
434 |
-
options.origColor = opt.color;
|
435 |
-
var id = 'collorpicker_' + parseInt(Math.random() * 1000);
|
436 |
-
$(this).data('colorpickerId', id);
|
437 |
-
var cal = $(tpl).attr('id', id);
|
438 |
-
if (options.flat) {
|
439 |
-
cal.appendTo(this).show();
|
440 |
-
} else {
|
441 |
-
cal.appendTo(document.body);
|
442 |
-
}
|
443 |
-
options.fields = cal
|
444 |
-
.find('input')
|
445 |
-
.bind('keyup', keyDown)
|
446 |
-
.bind('change', change)
|
447 |
-
.bind('blur', blur)
|
448 |
-
.bind('focus', focus);
|
449 |
-
cal
|
450 |
-
.find('span').bind('mousedown', downIncrement).end()
|
451 |
-
.find('>div.colorpicker_current_color').bind('click', restoreOriginal);
|
452 |
-
options.selector = cal.find('div.colorpicker_color').bind('mousedown', downSelector);
|
453 |
-
options.selectorIndic = options.selector.find('div div');
|
454 |
-
options.el = this;
|
455 |
-
options.hue = cal.find('div.colorpicker_hue div');
|
456 |
-
cal.find('div.colorpicker_hue').bind('mousedown', downHue);
|
457 |
-
options.newColor = cal.find('div.colorpicker_new_color');
|
458 |
-
options.currentColor = cal.find('div.colorpicker_current_color');
|
459 |
-
cal.data('colorpicker', options);
|
460 |
-
cal.find('div.colorpicker_submit')
|
461 |
-
.bind('mouseenter', enterSubmit)
|
462 |
-
.bind('mouseleave', leaveSubmit)
|
463 |
-
.bind('click', clickSubmit);
|
464 |
-
fillRGBFields(options.color, cal.get(0));
|
465 |
-
fillHSBFields(options.color, cal.get(0));
|
466 |
-
fillHexFields(options.color, cal.get(0));
|
467 |
-
setHue(options.color, cal.get(0));
|
468 |
-
setSelector(options.color, cal.get(0));
|
469 |
-
setCurrentColor(options.color, cal.get(0));
|
470 |
-
setNewColor(options.color, cal.get(0));
|
471 |
-
if (options.flat) {
|
472 |
-
cal.css({
|
473 |
-
position: 'relative',
|
474 |
-
display: 'block'
|
475 |
-
});
|
476 |
-
} else {
|
477 |
-
$(this).bind(options.eventName, show);
|
478 |
-
}
|
479 |
-
}
|
480 |
-
});
|
481 |
-
},
|
482 |
-
showPicker: function() {
|
483 |
-
return this.each( function () {
|
484 |
-
if ($(this).data('colorpickerId')) {
|
485 |
-
show.apply(this);
|
486 |
-
}
|
487 |
-
});
|
488 |
-
},
|
489 |
-
hidePicker: function() {
|
490 |
-
return this.each( function () {
|
491 |
-
if ($(this).data('colorpickerId')) {
|
492 |
-
$('#' + $(this).data('colorpickerId')).hide();
|
493 |
-
}
|
494 |
-
});
|
495 |
-
},
|
496 |
-
setColor: function(col) {
|
497 |
-
if (typeof col == 'string') {
|
498 |
-
col = HexToHSB(col);
|
499 |
-
} else if (col.r != undefined && col.g != undefined && col.b != undefined) {
|
500 |
-
col = RGBToHSB(col);
|
501 |
-
} else if (col.h != undefined && col.s != undefined && col.b != undefined) {
|
502 |
-
col = fixHSB(col);
|
503 |
-
} else {
|
504 |
-
return this;
|
505 |
-
}
|
506 |
-
return this.each(function(){
|
507 |
-
if ($(this).data('colorpickerId')) {
|
508 |
-
var cal = $('#' + $(this).data('colorpickerId'));
|
509 |
-
cal.data('colorpicker').color = col;
|
510 |
-
cal.data('colorpicker').origColor = col;
|
511 |
-
fillRGBFields(col, cal.get(0));
|
512 |
-
fillHSBFields(col, cal.get(0));
|
513 |
-
fillHexFields(col, cal.get(0));
|
514 |
-
setHue(col, cal.get(0));
|
515 |
-
setSelector(col, cal.get(0));
|
516 |
-
setCurrentColor(col, cal.get(0));
|
517 |
-
setNewColor(col, cal.get(0));
|
518 |
-
}
|
519 |
-
});
|
520 |
-
}
|
521 |
-
};
|
522 |
-
}();
|
523 |
-
$.fn.extend({
|
524 |
-
ColorPicker: ColorPicker.init,
|
525 |
-
ColorPickerHide: ColorPicker.hidePicker,
|
526 |
-
ColorPickerShow: ColorPicker.showPicker,
|
527 |
-
ColorPickerSetColor: ColorPicker.setColor
|
528 |
-
});
|
529 |
-
})(jQuery)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
files/third-party/easy-responsive-tabs/js/easy-responsive-tabs.js
DELETED
@@ -1,224 +0,0 @@
|
|
1 |
-
// Easy Responsive Tabs Plugin
|
2 |
-
// Author: Samson.Onna <Email : samson3d@gmail.com>
|
3 |
-
(function ($) {
|
4 |
-
$.fn.extend({
|
5 |
-
easyResponsiveTabs: function (options) {
|
6 |
-
//Set the default values, use comma to separate the settings, example:
|
7 |
-
var defaults = {
|
8 |
-
type: 'default', //default, vertical, accordion;
|
9 |
-
width: 'auto',
|
10 |
-
fit: true,
|
11 |
-
closed: false,
|
12 |
-
tabidentify: '',
|
13 |
-
activetab_bg: 'white',
|
14 |
-
inactive_bg: '#F9F9F9',
|
15 |
-
active_border_color: '#c1c1c1',
|
16 |
-
active_content_border_color: '#c1c1c1',
|
17 |
-
activate: function () {
|
18 |
-
}
|
19 |
-
}
|
20 |
-
//Variables
|
21 |
-
var options = $.extend(defaults, options);
|
22 |
-
var opt = options, jtype = opt.type, jfit = opt.fit, jwidth = opt.width, vtabs = 'vertical', accord = 'accordion';
|
23 |
-
var hash = window.location.hash;
|
24 |
-
var historyApi = !!(window.history && history.replaceState);
|
25 |
-
|
26 |
-
//Events
|
27 |
-
$(this).bind('tabactivate', function (e, currentTab) {
|
28 |
-
if (typeof options.activate === 'function') {
|
29 |
-
options.activate.call(currentTab, e)
|
30 |
-
}
|
31 |
-
});
|
32 |
-
|
33 |
-
//Main function
|
34 |
-
this.each(function () {
|
35 |
-
var $respTabs = $(this);
|
36 |
-
var $respTabsList = $respTabs.find('ul.resp-tabs-list.' + options.tabidentify);
|
37 |
-
var respTabsId = $respTabs.attr('id');
|
38 |
-
$respTabs.find('ul.resp-tabs-list.' + options.tabidentify + ' li').addClass('resp-tab-item').addClass(options.tabidentify);
|
39 |
-
$respTabs.css({
|
40 |
-
'display': 'block',
|
41 |
-
'width': jwidth
|
42 |
-
});
|
43 |
-
|
44 |
-
// if (options.type == 'vertical')
|
45 |
-
// $respTabsList.css('margin-top', '3px');
|
46 |
-
|
47 |
-
$respTabs.find('.resp-tabs-container.' + options.tabidentify).css('border-color', options.active_content_border_color);
|
48 |
-
$respTabs.find('.resp-tabs-container.' + options.tabidentify + ' > div').addClass('resp-tab-content').addClass(options.tabidentify);
|
49 |
-
jtab_options();
|
50 |
-
//Properties Function
|
51 |
-
function jtab_options() {
|
52 |
-
if (jtype == vtabs) {
|
53 |
-
$respTabs.addClass('resp-vtabs').addClass(options.tabidentify);
|
54 |
-
}
|
55 |
-
if (jfit == true) {
|
56 |
-
$respTabs.css({ width: '100%', margin: '0px' });
|
57 |
-
}
|
58 |
-
if (jtype == accord) {
|
59 |
-
$respTabs.addClass('resp-easy-accordion').addClass(options.tabidentify);
|
60 |
-
$respTabs.find('.resp-tabs-list').css('display', 'none');
|
61 |
-
}
|
62 |
-
}
|
63 |
-
|
64 |
-
//Assigning the h2 markup to accordion title
|
65 |
-
var $tabItemh2;
|
66 |
-
$respTabs.find('.resp-tab-content.' + options.tabidentify).before("<h2 class='resp-accordion " + options.tabidentify + "' role='tab'><span class='resp-arrow'></span></h2>");
|
67 |
-
|
68 |
-
$respTabs.find('.resp-tab-content.' + options.tabidentify).prev("h2").css({
|
69 |
-
'background-color': options.inactive_bg,
|
70 |
-
'border-color': options.active_border_color
|
71 |
-
});
|
72 |
-
|
73 |
-
var itemCount = 0;
|
74 |
-
$respTabs.find('.resp-accordion').each(function () {
|
75 |
-
$tabItemh2 = $(this);
|
76 |
-
var $tabItem = $respTabs.find('.resp-tab-item:eq(' + itemCount + ')');
|
77 |
-
var $accItem = $respTabs.find('.resp-accordion:eq(' + itemCount + ')');
|
78 |
-
$accItem.append($tabItem.html());
|
79 |
-
$accItem.data($tabItem.data());
|
80 |
-
$tabItemh2.attr('aria-controls', options.tabidentify + '_tab_item-' + (itemCount));
|
81 |
-
itemCount++;
|
82 |
-
});
|
83 |
-
|
84 |
-
//Assigning the 'aria-controls' to Tab items
|
85 |
-
var count = 0,
|
86 |
-
$tabContent;
|
87 |
-
$respTabs.find('.resp-tab-item').each(function () {
|
88 |
-
$tabItem = $(this);
|
89 |
-
$tabItem.attr('aria-controls', options.tabidentify + '_tab_item-' + (count));
|
90 |
-
$tabItem.attr('role', 'tab');
|
91 |
-
$tabItem.css({
|
92 |
-
'background-color': options.inactive_bg,
|
93 |
-
'border-color': 'none'
|
94 |
-
});
|
95 |
-
|
96 |
-
//Assigning the 'aria-labelledby' attr to tab-content
|
97 |
-
var tabcount = 0;
|
98 |
-
$respTabs.find('.resp-tab-content.' + options.tabidentify).each(function () {
|
99 |
-
$tabContent = $(this);
|
100 |
-
$tabContent.attr('aria-labelledby', options.tabidentify + '_tab_item-' + (tabcount)).css({
|
101 |
-
'border-color': options.active_border_color
|
102 |
-
});
|
103 |
-
tabcount++;
|
104 |
-
});
|
105 |
-
count++;
|
106 |
-
});
|
107 |
-
|
108 |
-
// Show correct content area
|
109 |
-
var tabNum = 0;
|
110 |
-
if (hash != '') {
|
111 |
-
var matches = hash.match(new RegExp(respTabsId + "([0-9]+)"));
|
112 |
-
if (matches !== null && matches.length === 2) {
|
113 |
-
tabNum = parseInt(matches[1], 10) - 1;
|
114 |
-
if (tabNum > count) {
|
115 |
-
tabNum = 0;
|
116 |
-
}
|
117 |
-
}
|
118 |
-
}
|
119 |
-
|
120 |
-
//Active correct tab
|
121 |
-
$($respTabs.find('.resp-tab-item.' + options.tabidentify)[tabNum]).addClass('resp-tab-active').css({
|
122 |
-
'background-color': options.activetab_bg,
|
123 |
-
'border-color': options.active_border_color
|
124 |
-
});
|
125 |
-
|
126 |
-
//keep closed if option = 'closed' or option is 'accordion' and the element is in accordion mode
|
127 |
-
if (options.closed !== true && !(options.closed === 'accordion' && !$respTabsList.is(':visible')) && !(options.closed === 'tabs' && $respTabsList.is(':visible'))) {
|
128 |
-
$($respTabs.find('.resp-accordion.' + options.tabidentify)[tabNum]).addClass('resp-tab-active').css({
|
129 |
-
'background-color': options.activetab_bg + ' !important',
|
130 |
-
'border-color': options.active_border_color,
|
131 |
-
'background': 'none'
|
132 |
-
});
|
133 |
-
|
134 |
-
$($respTabs.find('.resp-tab-content.' + options.tabidentify)[tabNum]).addClass('resp-tab-content-active').addClass(options.tabidentify).attr('style', 'display:block');
|
135 |
-
}
|
136 |
-
//assign proper classes for when tabs mode is activated before making a selection in accordion mode
|
137 |
-
else {
|
138 |
-
// $($respTabs.find('.resp-tab-content.' + options.tabidentify)[tabNum]).addClass('resp-accordion-closed'); //removed resp-tab-content-active
|
139 |
-
}
|
140 |
-
|
141 |
-
//Tab Click action function
|
142 |
-
$respTabs.find("[role=tab]").each(function () {
|
143 |
-
|
144 |
-
var $currentTab = $(this);
|
145 |
-
$currentTab.click(function () {
|
146 |
-
|
147 |
-
var $currentTab = $(this);
|
148 |
-
var $tabAria = $currentTab.attr('aria-controls');
|
149 |
-
|
150 |
-
if ($currentTab.hasClass('resp-accordion') && $currentTab.hasClass('resp-tab-active')) {
|
151 |
-
$respTabs.find('.resp-tab-content-active.' + options.tabidentify).slideUp('', function () {
|
152 |
-
$(this).addClass('resp-accordion-closed');
|
153 |
-
});
|
154 |
-
$currentTab.removeClass('resp-tab-active').css({
|
155 |
-
'background-color': options.inactive_bg,
|
156 |
-
'border-color': 'none'
|
157 |
-
});
|
158 |
-
return false;
|
159 |
-
}
|
160 |
-
if (!$currentTab.hasClass('resp-tab-active') && $currentTab.hasClass('resp-accordion')) {
|
161 |
-
$respTabs.find('.resp-tab-active.' + options.tabidentify).removeClass('resp-tab-active').css({
|
162 |
-
'background-color': options.inactive_bg,
|
163 |
-
'border-color': 'none'
|
164 |
-
});
|
165 |
-
$respTabs.find('.resp-tab-content-active.' + options.tabidentify).slideUp().removeClass('resp-tab-content-active resp-accordion-closed');
|
166 |
-
$respTabs.find("[aria-controls=" + $tabAria + "]").addClass('resp-tab-active').css({
|
167 |
-
'background-color': options.activetab_bg,
|
168 |
-
'border-color': options.active_border_color
|
169 |
-
});
|
170 |
-
|
171 |
-
$respTabs.find('.resp-tab-content[aria-labelledby = ' + $tabAria + '].' + options.tabidentify).slideDown().addClass('resp-tab-content-active');
|
172 |
-
} else {
|
173 |
-
console.log('here');
|
174 |
-
$respTabs.find('.resp-tab-active.' + options.tabidentify).removeClass('resp-tab-active').css({
|
175 |
-
'background-color': options.inactive_bg,
|
176 |
-
'border-color': 'none'
|
177 |
-
});
|
178 |
-
|
179 |
-
$respTabs.find('.resp-tab-content-active.' + options.tabidentify).removeAttr('style').removeClass('resp-tab-content-active').removeClass('resp-accordion-closed');
|
180 |
-
|
181 |
-
$respTabs.find("[aria-controls=" + $tabAria + "]").addClass('resp-tab-active').css({
|
182 |
-
'background-color': options.activetab_bg,
|
183 |
-
'border-color': options.active_border_color
|
184 |
-
});
|
185 |
-
|
186 |
-
$respTabs.find('.resp-tab-content[aria-labelledby = ' + $tabAria + '].' + options.tabidentify).addClass('resp-tab-content-active').attr('style', 'display:block');
|
187 |
-
}
|
188 |
-
//Trigger tab activation event
|
189 |
-
$currentTab.trigger('tabactivate', $currentTab);
|
190 |
-
|
191 |
-
//Update Browser History
|
192 |
-
if (historyApi) {
|
193 |
-
var currentHash = window.location.hash;
|
194 |
-
var tabAriaParts = $tabAria.split('tab_item-');
|
195 |
-
// var newHash = respTabsId + (parseInt($tabAria.substring(9), 10) + 1).toString();
|
196 |
-
var newHash = respTabsId + (parseInt(tabAriaParts[1], 10) + 1).toString();
|
197 |
-
if (currentHash != "") {
|
198 |
-
var re = new RegExp(respTabsId + "[0-9]+");
|
199 |
-
if (currentHash.match(re) != null) {
|
200 |
-
newHash = currentHash.replace(re, newHash);
|
201 |
-
}
|
202 |
-
else {
|
203 |
-
newHash = currentHash + "|" + newHash;
|
204 |
-
}
|
205 |
-
}
|
206 |
-
else {
|
207 |
-
newHash = '#' + newHash;
|
208 |
-
}
|
209 |
-
|
210 |
-
history.replaceState(null, null, newHash);
|
211 |
-
}
|
212 |
-
});
|
213 |
-
|
214 |
-
});
|
215 |
-
|
216 |
-
//Window resize function
|
217 |
-
$(window).resize(function () {
|
218 |
-
$respTabs.find('.resp-accordion-closed').removeAttr('style');
|
219 |
-
});
|
220 |
-
});
|
221 |
-
}
|
222 |
-
});
|
223 |
-
})(jQuery);
|
224 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{includes → helper}/wc-helper.php
RENAMED
@@ -16,30 +16,6 @@ class WC_Helper {
|
|
16 |
public static $second = 'wc_second_text';
|
17 |
public static $seconds = 'wc_second_text_plural';
|
18 |
private $wc_options_serialized;
|
19 |
-
public $wc_form_avatar;
|
20 |
-
public $wc_allowed_tags = array(
|
21 |
-
'br' => array(),
|
22 |
-
'a' => array('href' => array(), 'title' => array(), 'target' => array(), 'rel' => array(), 'download' => array(), 'hreflang' => array(), 'media' => array(), 'type' => array()),
|
23 |
-
'i' => array(),
|
24 |
-
'b' => array(),
|
25 |
-
'u' => array(),
|
26 |
-
'strong' => array(),
|
27 |
-
's' => array(),
|
28 |
-
'p' => array(),
|
29 |
-
'img' => array('src' => array(), 'width' => array(), 'height' => array(), 'alt' => array()),
|
30 |
-
'blockquote' => array('cite' => array()),
|
31 |
-
'ul' => array(),
|
32 |
-
'li' => array(),
|
33 |
-
'ol' => array(),
|
34 |
-
'code' => array(),
|
35 |
-
'em' => array(),
|
36 |
-
'abbr' => array('title' => array()),
|
37 |
-
'q' => array('cite' => array()),
|
38 |
-
'acronym' => array('title' => array()),
|
39 |
-
'cite' => array(),
|
40 |
-
'strike' => array(),
|
41 |
-
'del' => array('datetime' => array()),
|
42 |
-
);
|
43 |
|
44 |
function __construct($wc_options_serialize) {
|
45 |
$this->wc_options_serialized = $wc_options_serialize;
|
@@ -125,16 +101,16 @@ class WC_Helper {
|
|
125 |
public function get_comment_author_avatar($comment = null) {
|
126 |
global $current_user;
|
127 |
get_currentuserinfo();
|
128 |
-
$comm_auth_user_email = $current_user->user_email;
|
129 |
-
if (function_exists('the_champ_init') && get_user_meta($current_user->ID, 'thechamp_avatar') && is_null($comment)) {
|
130 |
-
$comment = (object) array('user_id' => $current_user->ID, 'comment_author_email' => $current_user->user_email, 'comment_type' => '');
|
131 |
-
} elseif (!$comment) {
|
132 |
-
$comment = $current_user->user_email;
|
133 |
-
}
|
134 |
-
$comm_auth_avatar = get_avatar($comment, 48);
|
135 |
|
136 |
-
|
137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
}
|
139 |
return $comm_auth_avatar;
|
140 |
}
|
@@ -281,7 +257,7 @@ class WC_Helper {
|
|
281 |
* return boolean
|
282 |
*/
|
283 |
public static function is_posted_today($comment) {
|
284 |
-
return date('Ymd',
|
285 |
}
|
286 |
|
287 |
/**
|
@@ -319,9 +295,9 @@ class WC_Helper {
|
|
319 |
* return client real ip
|
320 |
*/
|
321 |
public static function get_real_ip_addr() {
|
322 |
-
if (
|
323 |
$ip = $_SERVER['HTTP_CLIENT_IP'];
|
324 |
-
} elseif (
|
325 |
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
326 |
} else {
|
327 |
$ip = $_SERVER['REMOTE_ADDR'];
|
16 |
public static $second = 'wc_second_text';
|
17 |
public static $seconds = 'wc_second_text_plural';
|
18 |
private $wc_options_serialized;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
function __construct($wc_options_serialize) {
|
21 |
$this->wc_options_serialized = $wc_options_serialize;
|
101 |
public function get_comment_author_avatar($comment = null) {
|
102 |
global $current_user;
|
103 |
get_currentuserinfo();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
|
105 |
+
$comm_auth_user_email = $current_user->user_email;
|
106 |
+
if ($comment) {
|
107 |
+
$comm_auth_avatar = get_avatar($comment->comment_author_email, 48);
|
108 |
+
} else {
|
109 |
+
if ($comm_auth_user_email) {
|
110 |
+
$comm_auth_avatar = get_avatar($comm_auth_user_email, 48);
|
111 |
+
} else {
|
112 |
+
$comm_auth_avatar = '<img width="48" height="48" class="avatar avatar-48 photo avatar-default" src="' . plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/avatar_default.png') . '" alt=""/>';
|
113 |
+
}
|
114 |
}
|
115 |
return $comm_auth_avatar;
|
116 |
}
|
257 |
* return boolean
|
258 |
*/
|
259 |
public static function is_posted_today($comment) {
|
260 |
+
return date('Ymd', strtotime(current_time('Ymd'))) <= date('Ymd', strtotime($comment->comment_date));
|
261 |
}
|
262 |
|
263 |
/**
|
295 |
* return client real ip
|
296 |
*/
|
297 |
public static function get_real_ip_addr() {
|
298 |
+
if (!empty($_SERVER['HTTP_CLIENT_IP'])) { //check ip from share internet
|
299 |
$ip = $_SERVER['HTTP_CLIENT_IP'];
|
300 |
+
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) { //to check ip is pass from proxy
|
301 |
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
302 |
} else {
|
303 |
$ip = $_SERVER['REMOTE_ADDR'];
|
includes/wc-db-helper.php
CHANGED
@@ -7,7 +7,7 @@ class WC_DB_Helper {
|
|
7 |
private $users_voted;
|
8 |
private $phrases;
|
9 |
private $email_notification;
|
10 |
-
|
11 |
function __construct() {
|
12 |
global $wpdb;
|
13 |
$this->db = $wpdb;
|
@@ -109,7 +109,7 @@ class WC_DB_Helper {
|
|
109 |
*/
|
110 |
public function add_vote_type($user_id, $comment_id, $vote_type) {
|
111 |
$is_guest = is_user_logged_in() ? 0 : 1;
|
112 |
-
$sql = $this->db->prepare("INSERT INTO `" . $this->users_voted . "`(`user_id`, `comment_id`, `vote_type`,`is_guest`)VALUES(%s,%d,%d,%d);", $user_id, $comment_id, $vote_type
|
113 |
return $this->db->query($sql);
|
114 |
}
|
115 |
|
@@ -117,7 +117,7 @@ class WC_DB_Helper {
|
|
117 |
* update vote type
|
118 |
*/
|
119 |
public function update_vote_type($user_id, $comment_id, $vote_type) {
|
120 |
-
$sql = $this->db->prepare("UPDATE `" . $this->users_voted . "` SET `vote_type` = %d WHERE `user_id` = %
|
121 |
return $this->db->query($sql);
|
122 |
}
|
123 |
|
@@ -140,9 +140,9 @@ class WC_DB_Helper {
|
|
140 |
$phrase_value = $phrase_value[WC_Helper::$datetime][0];
|
141 |
}
|
142 |
if ($this->is_phrase_exists($phrase_key)) {
|
143 |
-
$sql = $this->db->prepare("UPDATE `" . $this->phrases . "` SET `phrase_value` = %s WHERE `phrase_key` = %s;",
|
144 |
} else {
|
145 |
-
$sql = $this->db->prepare("INSERT INTO `" . $this->phrases . "`(`phrase_key`, `phrase_value`)VALUES(%s, %s);", $phrase_key,
|
146 |
}
|
147 |
$this->db->query($sql);
|
148 |
}
|
@@ -307,12 +307,11 @@ class WC_DB_Helper {
|
|
307 |
* create unsubscribe link
|
308 |
*/
|
309 |
public function wc_unsubscribe_link($id, $email, $subscribtion_type) {
|
310 |
-
global $wp_rewrite;
|
311 |
$sql_subscriber_data = $this->db->prepare("SELECT `id`, `post_id`, `activation_key` FROM `" . $this->email_notification . "` WHERE `subscribtion_type` = %s AND `subscribtion_id` = %d AND `email` LIKE %s", $subscribtion_type, $id, $email);
|
312 |
$wc_unsubscribe = $this->db->get_row($sql_subscriber_data, ARRAY_A);
|
313 |
$post_id = $wc_unsubscribe['post_id'];
|
314 |
-
|
315 |
-
$wc_unsubscribe_link
|
316 |
return $wc_unsubscribe_link;
|
317 |
}
|
318 |
|
@@ -320,12 +319,10 @@ class WC_DB_Helper {
|
|
320 |
* generate confirm link
|
321 |
*/
|
322 |
public function wc_confirm_link($subscrib_id) {
|
323 |
-
global $wp_rewrite;
|
324 |
$sql_subscriber_data = $this->db->prepare("SELECT `id`, `post_id`, `activation_key` FROM `" . $this->email_notification . "` WHERE `id` = %d ", $subscrib_id);
|
325 |
$wc_confirm = $this->db->get_row($sql_subscriber_data, ARRAY_A);
|
326 |
$post_id = $wc_confirm['post_id'];
|
327 |
-
$wc_confirm_link =
|
328 |
-
$wc_confirm_link .= "wpdiscuzConfirmID=" . $wc_confirm['id'] . "&wpdiscuzConfirmKey=" . $wc_confirm['activation_key'] . '&wpDiscuzComfirm=yes&#wc_unsubscribe_message';
|
329 |
return $wc_confirm_link;
|
330 |
}
|
331 |
|
@@ -349,7 +346,7 @@ class WC_DB_Helper {
|
|
349 |
$sql_alter = "ALTER TABLE `" . $this->phrases . "` MODIFY `phrase_value` TEXT NOT NULL;";
|
350 |
$this->db->query($sql_alter);
|
351 |
}
|
352 |
-
|
353 |
public function wc_alter_voting_table() {
|
354 |
$sql_alter = "ALTER TABLE `" . $this->users_voted . "` MODIFY `user_id` VARCHAR(255) NOT NULL, ADD COLUMN `is_guest` TINYINT(1) DEFAULT 0, ADD INDEX `is_guest` (`is_guest`);";
|
355 |
$this->db->query($sql_alter);
|
7 |
private $users_voted;
|
8 |
private $phrases;
|
9 |
private $email_notification;
|
10 |
+
|
11 |
function __construct() {
|
12 |
global $wpdb;
|
13 |
$this->db = $wpdb;
|
109 |
*/
|
110 |
public function add_vote_type($user_id, $comment_id, $vote_type) {
|
111 |
$is_guest = is_user_logged_in() ? 0 : 1;
|
112 |
+
$sql = $this->db->prepare("INSERT INTO `" . $this->users_voted . "`(`user_id`, `comment_id`, `vote_type`,`is_guest`)VALUES(%s,%d,%d,%d);", $user_id, $comment_id, $vote_type,$is_guest);
|
113 |
return $this->db->query($sql);
|
114 |
}
|
115 |
|
117 |
* update vote type
|
118 |
*/
|
119 |
public function update_vote_type($user_id, $comment_id, $vote_type) {
|
120 |
+
$sql = $this->db->prepare("UPDATE `" . $this->users_voted . "` SET `vote_type` = %d WHERE `user_id` = %d AND `comment_id` = %d", $vote_type, $user_id, $comment_id);
|
121 |
return $this->db->query($sql);
|
122 |
}
|
123 |
|
140 |
$phrase_value = $phrase_value[WC_Helper::$datetime][0];
|
141 |
}
|
142 |
if ($this->is_phrase_exists($phrase_key)) {
|
143 |
+
$sql = $this->db->prepare("UPDATE `" . $this->phrases . "` SET `phrase_value` = %s WHERE `phrase_key` = %s;", htmlentities($phrase_value), $phrase_key);
|
144 |
} else {
|
145 |
+
$sql = $this->db->prepare("INSERT INTO `" . $this->phrases . "`(`phrase_key`, `phrase_value`)VALUES(%s, %s);", $phrase_key, htmlentities($phrase_value));
|
146 |
}
|
147 |
$this->db->query($sql);
|
148 |
}
|
307 |
* create unsubscribe link
|
308 |
*/
|
309 |
public function wc_unsubscribe_link($id, $email, $subscribtion_type) {
|
|
|
310 |
$sql_subscriber_data = $this->db->prepare("SELECT `id`, `post_id`, `activation_key` FROM `" . $this->email_notification . "` WHERE `subscribtion_type` = %s AND `subscribtion_id` = %d AND `email` LIKE %s", $subscribtion_type, $id, $email);
|
311 |
$wc_unsubscribe = $this->db->get_row($sql_subscriber_data, ARRAY_A);
|
312 |
$post_id = $wc_unsubscribe['post_id'];
|
313 |
+
|
314 |
+
$wc_unsubscribe_link = get_permalink($post_id) . "?wpdiscuzSubscribeID=" . $wc_unsubscribe['id'] . "&key=" . $wc_unsubscribe['activation_key'] . '&#wc_unsubscribe_message';
|
315 |
return $wc_unsubscribe_link;
|
316 |
}
|
317 |
|
319 |
* generate confirm link
|
320 |
*/
|
321 |
public function wc_confirm_link($subscrib_id) {
|
|
|
322 |
$sql_subscriber_data = $this->db->prepare("SELECT `id`, `post_id`, `activation_key` FROM `" . $this->email_notification . "` WHERE `id` = %d ", $subscrib_id);
|
323 |
$wc_confirm = $this->db->get_row($sql_subscriber_data, ARRAY_A);
|
324 |
$post_id = $wc_confirm['post_id'];
|
325 |
+
$wc_confirm_link = get_permalink($post_id) . "?wpdiscuzConfirmID=" . $wc_confirm['id'] . "&wpdiscuzConfirmKey=" . $wc_confirm['activation_key'] . '&wpDiscuzComfirm=yes&#wc_unsubscribe_message';
|
|
|
326 |
return $wc_confirm_link;
|
327 |
}
|
328 |
|
346 |
$sql_alter = "ALTER TABLE `" . $this->phrases . "` MODIFY `phrase_value` TEXT NOT NULL;";
|
347 |
$this->db->query($sql_alter);
|
348 |
}
|
349 |
+
|
350 |
public function wc_alter_voting_table() {
|
351 |
$sql_alter = "ALTER TABLE `" . $this->users_voted . "` MODIFY `user_id` VARCHAR(255) NOT NULL, ADD COLUMN `is_guest` TINYINT(1) DEFAULT 0, ADD INDEX `is_guest` (`is_guest`);";
|
352 |
$this->db->query($sql_alter);
|
languages/wpdiscuz-en.mo
CHANGED
Binary file
|
languages/wpdiscuz-en.po
CHANGED
@@ -1,43 +1,36 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: advancedcoding <advancedcoding@mail.ru>\n"
|
7 |
"Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
-
"X-Poedit-WPHeader: wc.php\n"
|
15 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: comment-form/form.php:
|
24 |
msgid "Participate in this discussion via email"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: comment-form/
|
28 |
-
msgid "
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: comment-form/tpl-comment.php:
|
32 |
-
#: options/phrases-layout/phrases-comment.php:27
|
33 |
-
#: options/wc-options-serialize.php:439
|
34 |
msgid "Edit"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: comment-form/tpl-comment.php:385 wc.php:321
|
38 |
-
msgid "Anonymous"
|
39 |
-
msgstr ""
|
40 |
-
|
41 |
#: options/options-layouts/settings-general.php:2
|
42 |
msgid "General Settings"
|
43 |
msgstr ""
|
@@ -50,146 +43,96 @@ msgstr ""
|
|
50 |
msgid "User Must be registered to comment"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: options/options-layouts/settings-general.php:34
|
54 |
-
msgid "Yes"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: options/options-layouts/settings-general.php:38
|
58 |
-
msgid "No"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
#: options/options-layouts/settings-general.php:46
|
62 |
-
msgid "Comment author must fill out name"
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: options/options-layouts/settings-general.php:57
|
66 |
-
msgid "Comment author must fill out email"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: options/options-layouts/settings-general.php:68
|
70 |
msgid "Show the latest comments on"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: options/options-layouts/settings-general.php:
|
74 |
msgid "the top of the list"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: options/options-layouts/settings-general.php:
|
78 |
msgid "top of the threads"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: options/options-layouts/settings-general.php:
|
82 |
msgid "bottom of the threads"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: options/options-layouts/settings-general.php:
|
86 |
msgid "the bottom of the list"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: options/options-layouts/settings-general.php:
|
90 |
msgid "Comment Threads Per Page"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: options/options-layouts/settings-general.php:
|
94 |
-
msgid "Comment text max length"
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: options/options-layouts/settings-general.php:108
|
98 |
msgid "Comments max depth"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: options/options-layouts/settings-general.php:
|
102 |
msgid "Level"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: options/options-layouts/settings-general.php:
|
106 |
-
#: options/options-layouts/settings-general.php:
|
107 |
-
#: options/options-layouts/settings-general.php:
|
108 |
-
#: options/options-layouts/settings-general.php:
|
109 |
msgid "Levels"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: options/options-layouts/settings-general.php:
|
113 |
msgid "Comment text size in pixels"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: options/options-layouts/settings-general.php:
|
117 |
msgid "Allow comment editing for"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: options/options-layouts/settings-general.php:
|
121 |
msgid "Not Allow"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: options/options-layouts/settings-general.php:
|
125 |
-
#: options/options-layouts/settings-general.php:
|
126 |
#: options/options-layouts/settings-live-update.php:41
|
127 |
#: options/options-layouts/settings-live-update.php:42
|
128 |
#: options/options-layouts/settings-live-update.php:43
|
129 |
msgid "Minutes"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: options/options-layouts/settings-general.php:
|
133 |
#: options/phrases-layout/phrases-datetime.php:73
|
134 |
msgid "Hour"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: options/options-layouts/settings-general.php:
|
138 |
-
#: options/options-layouts/settings-general.php:
|
139 |
msgid "Hours"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: options/options-layouts/settings-general.php:
|
143 |
-
msgid "Redirect first commenter to"
|
144 |
-
msgstr ""
|
145 |
-
|
146 |
-
#: options/options-layouts/settings-general.php:165
|
147 |
-
msgid "Do not redirect"
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
#: options/options-layouts/settings-general.php:174
|
151 |
-
msgid "Allow guests to vote on comments"
|
152 |
-
msgstr ""
|
153 |
-
|
154 |
-
#: options/options-layouts/settings-general.php:184
|
155 |
-
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
156 |
-
msgstr ""
|
157 |
-
|
158 |
-
#: options/options-layouts/settings-general.php:195
|
159 |
msgid "Use WordPress Date/Time format"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: options/options-layouts/settings-general.php:
|
163 |
msgid ""
|
164 |
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
165 |
"show the date/time format set in WordPress General Settings."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: options/options-layouts/settings-general.php:
|
169 |
msgid "Current Wordpress date/time format"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: options/options-layouts/settings-general.php:
|
173 |
-
msgid "Use Plugin .PO/.MO files"
|
174 |
-
msgstr ""
|
175 |
-
|
176 |
-
#: options/options-layouts/settings-general.php:210
|
177 |
-
msgid ""
|
178 |
-
"wpDiscuz phrase system allows you to translate all front-end phrases. "
|
179 |
-
"However if you have a multi-language website it'll not allow you to add more "
|
180 |
-
"than one language translation. The only way to get it is the plugin "
|
181 |
-
"translation files (.PO / .MO). If wpDiscuz has the languages you need you "
|
182 |
-
"should check this option to disable phrase system and it'll automatically "
|
183 |
-
"translate all phrases based on language files according to current language."
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
#: options/options-layouts/settings-general.php:222
|
187 |
msgid ""
|
188 |
"Help wpDiscuz to grow allowing people to recognize which comment plugin you "
|
189 |
"use"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: options/options-layouts/settings-general.php:
|
193 |
msgid ""
|
194 |
"Please check this option on to help wpDiscuz get more popularity as your "
|
195 |
"thank to the hard work we do for you totally free. This option adds a very "
|
@@ -197,12 +140,12 @@ msgid ""
|
|
197 |
"visitors recognize the name of comment solution you use."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: options/options-layouts/settings-general.php:
|
201 |
msgid "Thank you!"
|
202 |
msgstr ""
|
203 |
|
204 |
#: options/options-layouts/settings-live-update.php:2
|
205 |
-
#: options/wc-options.php:
|
206 |
msgid "Live Update"
|
207 |
msgstr ""
|
208 |
|
@@ -210,13 +153,6 @@ msgstr ""
|
|
210 |
msgid "Live update options"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: options/options-layouts/settings-live-update.php:9
|
214 |
-
msgid ""
|
215 |
-
"If you use Shared Web Hosting you should make sure the \"Live Update\" "
|
216 |
-
"function doesn't overload your server resources. This function is good for "
|
217 |
-
"VPS and Dedicated Hosting Plans."
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
#: options/options-layouts/settings-live-update.php:14
|
221 |
msgid "Never update"
|
222 |
msgstr ""
|
@@ -256,7 +192,7 @@ msgstr ""
|
|
256 |
msgid "Minute"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: options/options-layouts/settings-show-hide.php:2 options/wc-options.php:
|
260 |
msgid "Show/Hide Components"
|
261 |
msgstr ""
|
262 |
|
@@ -264,73 +200,31 @@ msgstr ""
|
|
264 |
msgid "Show logged-in user name and logout link on top of main form"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: options/options-layouts/settings-show-hide.php:
|
268 |
msgid "Hide Reply button for Guests"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: options/options-layouts/settings-show-hide.php:
|
272 |
msgid "Hide Reply button for Members"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: options/options-layouts/settings-show-hide.php:
|
276 |
msgid "Hide Author Titles"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: options/options-layouts/settings-show-hide.php:
|
280 |
msgid "Hide Voting buttons"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: options/options-layouts/settings-show-hide.php:
|
284 |
-
msgid "Hide Share
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: options/options-layouts/settings-show-hide.php:
|
288 |
msgid "Hide the CAPTCHA field"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: options/options-layouts/settings-
|
292 |
-
msgid "Hide the Website URL field"
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: options/options-layouts/settings-show-hide.php:87
|
296 |
-
msgid "Hide header text"
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#: options/options-layouts/settings-show-hide.php:97
|
300 |
-
msgid "Hide user avatar"
|
301 |
-
msgstr ""
|
302 |
-
|
303 |
-
#: options/options-layouts/settings-social.php:10
|
304 |
-
#: options/options-layouts/settings-social.php:12
|
305 |
-
#: options/options-layouts/settings-social.php:14 wc.php:1018
|
306 |
-
msgid "Settings"
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: options/options-layouts/settings-social.php:19
|
310 |
-
#: options/options-layouts/settings-social.php:29
|
311 |
-
#: options/options-layouts/settings-social.php:39
|
312 |
-
msgid "Activate"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: options/options-layouts/settings-social.php:23
|
316 |
-
#: options/options-layouts/settings-social.php:33
|
317 |
-
#: options/options-layouts/settings-social.php:43
|
318 |
-
msgid "View details/Install"
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
#: options/options-layouts/settings-social.php:75 options/wc-options.php:184
|
322 |
-
msgid "Social Login"
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#: options/options-layouts/settings-social.php:76
|
326 |
-
msgid ""
|
327 |
-
"You can use one of these most popular Social Login Plugins to allow your "
|
328 |
-
"visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, "
|
329 |
-
"OK and lots of other social network service accounts. All social login "
|
330 |
-
"buttons will be fully integrated with wpDiscuz comment forms."
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: options/options-layouts/settings-style.php:2 options/wc-options.php:183
|
334 |
msgid "Background and Colors"
|
335 |
msgstr ""
|
336 |
|
@@ -431,91 +325,81 @@ msgid "Comment Template Phrases"
|
|
431 |
msgstr ""
|
432 |
|
433 |
#: options/phrases-layout/phrases-comment.php:7
|
434 |
-
#: options/wc-options-serialize.php:
|
435 |
msgid "Reply"
|
436 |
msgstr ""
|
437 |
|
438 |
#: options/phrases-layout/phrases-comment.php:17
|
439 |
-
#: options/wc-options-serialize.php:
|
440 |
msgid "Share"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: options/phrases-layout/phrases-comment.php:
|
444 |
-
#: options/wc-options-serialize.php:
|
445 |
msgid "Share On Facebook"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: options/phrases-layout/phrases-comment.php:
|
449 |
-
#: options/wc-options-serialize.php:
|
450 |
msgid "Share On Twitter"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: options/phrases-layout/phrases-comment.php:
|
454 |
-
#: options/wc-options-serialize.php:
|
455 |
msgid "Share On Google"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: options/phrases-layout/phrases-comment.php:
|
459 |
-
#: options/wc-options-serialize.php:
|
460 |
-
msgid "Share On VKontakte"
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: options/phrases-layout/phrases-comment.php:77
|
464 |
-
#: options/wc-options-serialize.php:444
|
465 |
-
msgid "Share On Odnoklassniki"
|
466 |
-
msgstr ""
|
467 |
-
|
468 |
-
#: options/phrases-layout/phrases-comment.php:87
|
469 |
-
#: options/wc-options-serialize.php:445
|
470 |
msgid "Hide Replies"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: options/phrases-layout/phrases-comment.php:
|
474 |
-
#: options/wc-options-serialize.php:
|
475 |
msgid "Show Replies"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: options/phrases-layout/phrases-comment.php:
|
479 |
msgid "Title For Guests"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: options/phrases-layout/phrases-comment.php:
|
483 |
msgid "Title For Members"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: options/phrases-layout/phrases-comment.php:
|
487 |
msgid "Title For Authors"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: options/phrases-layout/phrases-comment.php:
|
491 |
msgid "Title For Admins"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: options/phrases-layout/phrases-comment.php:
|
495 |
-
#: options/wc-options-serialize.php:
|
496 |
msgid "Vote Up"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: options/phrases-layout/phrases-comment.php:
|
500 |
-
#: options/wc-options-serialize.php:
|
501 |
msgid "Vote Down"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: options/phrases-layout/phrases-comment.php:
|
505 |
msgid "Save edited comment button text"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: options/phrases-layout/phrases-comment.php:
|
509 |
-
#: options/wc-options-serialize.php:
|
510 |
msgid "Save"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: options/phrases-layout/phrases-comment.php:
|
514 |
msgid "Cancel comment editing button text"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: options/phrases-layout/phrases-comment.php:
|
518 |
-
#: options/wc-options-serialize.php:
|
519 |
msgid "Cancel"
|
520 |
msgstr ""
|
521 |
|
@@ -580,7 +464,7 @@ msgid "\"Today\" text"
|
|
580 |
msgstr ""
|
581 |
|
582 |
#: options/phrases-layout/phrases-datetime.php:164
|
583 |
-
#: options/wc-options-serialize.php:
|
584 |
msgid "Today"
|
585 |
msgstr ""
|
586 |
|
@@ -601,8 +485,8 @@ msgid "New Reply Subject"
|
|
601 |
msgstr ""
|
602 |
|
603 |
#: options/phrases-layout/phrases-email.php:33
|
604 |
-
#: options/phrases-layout/phrases-general.php:
|
605 |
-
#: options/wc-options-serialize.php:
|
606 |
msgid "New Reply"
|
607 |
msgstr ""
|
608 |
|
@@ -612,25 +496,25 @@ msgstr ""
|
|
612 |
|
613 |
#: options/phrases-layout/phrases-email.php:50
|
614 |
#: options/phrases-layout/phrases-email.php:54
|
615 |
-
#: options/wc-options-serialize.php:
|
616 |
msgid "Unsubscribe"
|
617 |
msgstr ""
|
618 |
|
619 |
#: options/phrases-layout/phrases-email.php:61
|
620 |
#: options/phrases-layout/phrases-email.php:65
|
621 |
-
#: options/wc-options-serialize.php:
|
622 |
msgid "Ignore Subscription"
|
623 |
msgstr ""
|
624 |
|
625 |
#: options/phrases-layout/phrases-email.php:72
|
626 |
#: options/phrases-layout/phrases-email.php:76
|
627 |
-
#: options/wc-options-serialize.php:
|
628 |
-
msgid "Confirm your
|
629 |
msgstr ""
|
630 |
|
631 |
#: options/phrases-layout/phrases-email.php:82
|
632 |
#: options/phrases-layout/phrases-email.php:86
|
633 |
-
#: options/wc-options-serialize.php:
|
634 |
msgid "You've successfully confirmed your subscription."
|
635 |
msgstr ""
|
636 |
|
@@ -639,7 +523,7 @@ msgid "Subscribe Confirmation Email Subject"
|
|
639 |
msgstr ""
|
640 |
|
641 |
#: options/phrases-layout/phrases-email.php:96
|
642 |
-
#: options/wc-options-serialize.php:
|
643 |
msgid "Subscribe Confirmation"
|
644 |
msgstr ""
|
645 |
|
@@ -648,7 +532,7 @@ msgid "Subscribe Confirmation Email Content"
|
|
648 |
msgstr ""
|
649 |
|
650 |
#: options/phrases-layout/phrases-email.php:107
|
651 |
-
#: options/wc-options-serialize.php:
|
652 |
msgid ""
|
653 |
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
654 |
"you will receive an email when new comments are posted according to "
|
@@ -678,68 +562,64 @@ msgid "Name Field"
|
|
678 |
msgstr ""
|
679 |
|
680 |
#: options/phrases-layout/phrases-form.php:47
|
681 |
-
msgid "WebSite URL Field"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
-
#: options/phrases-layout/phrases-form.php:57
|
685 |
msgid "CAPTCHA Field"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: options/phrases-layout/phrases-form.php:
|
689 |
msgid "Submit Button"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: options/phrases-layout/phrases-form.php:
|
693 |
-
#: options/phrases-layout/phrases-form.php:
|
694 |
-
#: options/wc-options-serialize.php:
|
695 |
msgid "Manage Subscriptions"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: options/phrases-layout/phrases-form.php:
|
699 |
msgid "Notify \"None\""
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: options/phrases-layout/phrases-form.php:
|
703 |
-
#: options/wc-options-serialize.php:
|
704 |
msgid "None"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: options/phrases-layout/phrases-form.php:
|
708 |
msgid "Notify on new comments (checkbox)"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: options/phrases-layout/phrases-form.php:
|
712 |
-
#: options/wc-options-serialize.php:
|
713 |
msgid "Notify of all new follow-up comments"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: options/phrases-layout/phrases-form.php:
|
717 |
msgid "Notify on all new replies (checkbox)"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: options/phrases-layout/phrases-form.php:
|
721 |
-
#: options/wc-options-serialize.php:
|
722 |
msgid "Notify of new replies to all my comments"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: options/phrases-layout/phrases-form.php:
|
726 |
msgid "Notify on new replies (checkbox)"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: options/phrases-layout/phrases-form.php:
|
730 |
-
#: options/wc-options-serialize.php:
|
731 |
msgid "Notify of new replies to this comment"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: options/phrases-layout/phrases-form.php:
|
735 |
msgid "Subscribed on this comment replies"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: options/phrases-layout/phrases-form.php:
|
739 |
msgid "Subscribed on all your comments replies"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: options/phrases-layout/phrases-form.php:
|
743 |
msgid "Subscribed on this post"
|
744 |
msgstr ""
|
745 |
|
@@ -748,7 +628,7 @@ msgid "General Phrases"
|
|
748 |
msgstr ""
|
749 |
|
750 |
#: options/phrases-layout/phrases-general.php:7
|
751 |
-
#: options/wc-options-serialize.php:
|
752 |
msgid "Leave a Reply"
|
753 |
msgstr ""
|
754 |
|
@@ -757,7 +637,7 @@ msgid "Be the first to comment"
|
|
757 |
msgstr ""
|
758 |
|
759 |
#: options/phrases-layout/phrases-general.php:27
|
760 |
-
#: options/wc-options-serialize.php:
|
761 |
msgid "Comment"
|
762 |
msgstr ""
|
763 |
|
@@ -774,45 +654,40 @@ msgid "Load More Button"
|
|
774 |
msgstr ""
|
775 |
|
776 |
#: options/phrases-layout/phrases-general.php:67
|
777 |
-
#: options/wc-options-serialize.php:436
|
778 |
-
msgid "Load Rest of Comments"
|
779 |
-
msgstr ""
|
780 |
-
|
781 |
-
#: options/phrases-layout/phrases-general.php:77
|
782 |
msgid "Button text if has new comment"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: options/phrases-layout/phrases-general.php:
|
786 |
-
#: options/wc-options-serialize.php:
|
787 |
msgid "New Comment"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: options/phrases-layout/phrases-general.php:
|
791 |
-
msgid "Button text if has new comments
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: options/phrases-layout/phrases-general.php:
|
795 |
msgid "New Comments"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: options/phrases-layout/phrases-general.php:
|
799 |
msgid "Button text if has new reply"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: options/phrases-layout/phrases-general.php:
|
803 |
-
msgid "Button text if has new replies
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: options/phrases-layout/phrases-general.php:
|
807 |
msgid "New Replies"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: options/phrases-layout/phrases-general.php:
|
811 |
msgid "Text on load more button if has new comment(s)"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: options/phrases-layout/phrases-general.php:
|
815 |
-
#: options/wc-options-serialize.php:
|
816 |
msgid "New"
|
817 |
msgstr ""
|
818 |
|
@@ -821,7 +696,7 @@ msgid "Notification Phrases"
|
|
821 |
msgstr ""
|
822 |
|
823 |
#: options/phrases-layout/phrases-notification.php:7
|
824 |
-
#: options/wc-options-serialize.php:
|
825 |
msgid "You've successfully unsubscribed."
|
826 |
msgstr ""
|
827 |
|
@@ -834,376 +709,325 @@ msgid "Error message for invalid email field"
|
|
834 |
msgstr ""
|
835 |
|
836 |
#: options/phrases-layout/phrases-notification.php:38
|
837 |
-
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
#: options/phrases-layout/phrases-notification.php:48
|
841 |
-
#: options/wc-options-serialize.php:483
|
842 |
msgid "You must be"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: options/phrases-layout/phrases-notification.php:
|
846 |
msgid "Logged in as"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: options/phrases-layout/phrases-notification.php:
|
850 |
-
#: options/wc-options-serialize.php:
|
851 |
msgid "Log out"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: options/phrases-layout/phrases-notification.php:
|
855 |
msgid "Logged In"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: options/phrases-layout/phrases-notification.php:
|
859 |
msgid "To post a comment"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: options/phrases-layout/phrases-notification.php:
|
863 |
-
#: options/wc-options-serialize.php:
|
864 |
msgid "Vote Counted"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: options/phrases-layout/phrases-notification.php:
|
868 |
msgid "You can vote only 1 time"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: options/phrases-layout/phrases-notification.php:
|
872 |
-
#: options/wc-options-serialize.php:
|
873 |
msgid "Voting Error"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: options/phrases-layout/phrases-notification.php:
|
877 |
msgid "Login To Vote"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: options/phrases-layout/phrases-notification.php:
|
881 |
msgid "You Cannot Vote On Your Comment"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: options/phrases-layout/phrases-notification.php:
|
885 |
-
|
886 |
-
msgstr ""
|
887 |
-
|
888 |
-
#: options/phrases-layout/phrases-notification.php:158
|
889 |
-
#: options/wc-options-serialize.php:496
|
890 |
msgid "Invalid Captcha Code"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: options/phrases-layout/phrases-notification.php:
|
894 |
-
#: options/wc-options-serialize.php:
|
895 |
msgid "Some of field value is invalid"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: options/phrases-layout/phrases-notification.php:
|
899 |
msgid "Comment waiting moderation"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: options/phrases-layout/phrases-notification.php:
|
903 |
-
msgid "Message if comment content length is too long"
|
904 |
-
msgstr ""
|
905 |
-
|
906 |
-
#: options/phrases-layout/phrases-notification.php:198
|
907 |
msgid "Message if comment was not updated"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: options/phrases-layout/phrases-notification.php:
|
911 |
-
#: options/wc-options-serialize.php:
|
912 |
msgid "Sorry, the comment was not updated"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: options/phrases-layout/phrases-notification.php:
|
916 |
msgid "Message if comment no longer possible to edit"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: options/phrases-layout/phrases-notification.php:
|
920 |
-
#: options/wc-options-serialize.php:
|
921 |
msgid "Sorry, this comment no longer possible to edit"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: options/phrases-layout/phrases-notification.php:
|
925 |
msgid "Message if comment text not changed"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: options/phrases-layout/phrases-notification.php:
|
929 |
msgid "TYou've not made any changes"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: options/wc-options-serialize.php:
|
933 |
msgid "Be the First to Comment!"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: options/wc-options-serialize.php:
|
937 |
msgid "Comments"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: options/wc-options-serialize.php:
|
941 |
msgid "on"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: options/wc-options-serialize.php:
|
945 |
msgid "Start the discussion"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: options/wc-options-serialize.php:
|
949 |
msgid "Join the discussion"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: options/wc-options-serialize.php:
|
953 |
msgid "Email"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: options/wc-options-serialize.php:
|
957 |
msgid "Name"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: options/wc-options-serialize.php:
|
961 |
-
msgid "WebSite URL"
|
962 |
-
msgstr ""
|
963 |
-
|
964 |
-
#: options/wc-options-serialize.php:428
|
965 |
msgid "Please insert the code above to comment"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: options/wc-options-serialize.php:
|
969 |
msgid "Post Comment"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: options/wc-options-serialize.php:
|
973 |
msgid "Load More Comments"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: options/wc-options-serialize.php:
|
977 |
msgid "Guest"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: options/wc-options-serialize.php:
|
981 |
msgid "Member"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: options/wc-options-serialize.php:
|
985 |
msgid "Author"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: options/wc-options-serialize.php:
|
989 |
msgid "Admin"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: options/wc-options-serialize.php:
|
993 |
msgid "New comment on the discussion section you've been interested in"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: options/wc-options-serialize.php:
|
997 |
msgid "New reply on the discussion section you've been interested in"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: options/wc-options-serialize.php:
|
1001 |
msgid "You're subscribed for new replies on this comment"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: options/wc-options-serialize.php:
|
1005 |
msgid "You're subscribed for new replies on all your comments"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: options/wc-options-serialize.php:
|
1009 |
msgid "You're subscribed for new follow-up comments on this post"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: options/wc-options-serialize.php:
|
1013 |
msgid "please fill out this field to comment"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: options/wc-options-serialize.php:
|
1017 |
msgid "email address is invalid"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: options/wc-options-serialize.php:
|
1021 |
-
msgid "url is invalid"
|
1022 |
-
msgstr ""
|
1023 |
-
|
1024 |
-
#: options/wc-options-serialize.php:468
|
1025 |
msgid "year"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: options/wc-options-serialize.php:
|
1029 |
msgid "years"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: options/wc-options-serialize.php:
|
1033 |
msgid "month"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: options/wc-options-serialize.php:
|
1037 |
msgid "months"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: options/wc-options-serialize.php:
|
1041 |
msgid "day"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: options/wc-options-serialize.php:
|
1045 |
msgid "days"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: options/wc-options-serialize.php:
|
1049 |
msgid "hour"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: options/wc-options-serialize.php:
|
1053 |
msgid "hours"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: options/wc-options-serialize.php:
|
1057 |
msgid "minute"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: options/wc-options-serialize.php:
|
1061 |
msgid "minutes"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: options/wc-options-serialize.php:
|
1065 |
msgid "second"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: options/wc-options-serialize.php:
|
1069 |
msgid "seconds"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: options/wc-options-serialize.php:
|
1073 |
msgid "right now"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: options/wc-options-serialize.php:
|
1077 |
msgid "ago"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: options/wc-options-serialize.php:
|
1081 |
msgid "You are logged in as"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: options/wc-options-serialize.php:
|
1085 |
msgid "logged in"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: options/wc-options-serialize.php:
|
1089 |
msgid "to post a comment."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: options/wc-options-serialize.php:
|
1093 |
msgid "You've already voted for this comment"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: options/wc-options-serialize.php:
|
1097 |
msgid "You Must Be Logged In To Vote"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: options/wc-options-serialize.php:
|
1101 |
msgid "You cannot vote for your comment"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: options/wc-options-serialize.php:
|
1105 |
-
msgid "You are not allowed to vote for this comment"
|
1106 |
-
msgstr ""
|
1107 |
-
|
1108 |
-
#: options/wc-options-serialize.php:498
|
1109 |
msgid "new comment"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: options/wc-options-serialize.php:
|
1113 |
msgid "new comments"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: options/wc-options-serialize.php:
|
1117 |
-
msgid "Comment awaiting moderation"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: options/wc-options-serialize.php:
|
1121 |
msgid "new reply on your comment"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: options/wc-options-serialize.php:
|
1125 |
msgid "new replies on your comments"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: options/wc-options-serialize.php:
|
1129 |
msgid "You've not made any changes"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: options/wc-options-
|
1133 |
-
#, php-format
|
1134 |
-
msgid "Comment text is too long (maximum %s characters allowed)"
|
1135 |
-
msgstr ""
|
1136 |
-
|
1137 |
-
#: options/wc-options.php:28 options/wc-options.php:232
|
1138 |
msgid "Hacker?"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: options/wc-options.php:
|
1142 |
msgid "wpDiscuz General Settings"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: options/wc-options.php:
|
1146 |
msgid "General settings"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: options/wc-options.php:
|
1150 |
msgid "Email Subscription"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: options/wc-options.php:
|
1154 |
msgid "and Postmatic"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: options/wc-options.php:
|
1158 |
msgid "Save Changes"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: options/wc-options.php:
|
1162 |
-
msgid "Reset Options"
|
1163 |
-
msgstr ""
|
1164 |
-
|
1165 |
-
#: options/wc-options.php:341
|
1166 |
msgid "WpDiscuz Front-end Phrases"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: options/wc-options.php:
|
1170 |
msgid "General"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: options/wc-options.php:
|
1174 |
msgid "Form"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: options/wc-options.php:
|
1178 |
msgid "Date/Time"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: options/wc-options.php:
|
1182 |
msgid "Notification"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: wc.php:
|
1186 |
-
msgid "
|
1187 |
-
msgstr ""
|
1188 |
-
|
1189 |
-
#. Plugin Name of the plugin/theme
|
1190 |
-
msgid "wpDiscuz - Wordpress Comments"
|
1191 |
-
msgstr ""
|
1192 |
-
|
1193 |
-
#. Plugin URI of the plugin/theme
|
1194 |
-
msgid "http://www.gvectors.com/wpdiscuz/"
|
1195 |
-
msgstr ""
|
1196 |
-
|
1197 |
-
#. Description of the plugin/theme
|
1198 |
-
msgid ""
|
1199 |
-
"Better comment system. Wordpress post comments and discussion plugin. Allows "
|
1200 |
-
"your visitors discuss, vote for comments and share."
|
1201 |
-
msgstr ""
|
1202 |
-
|
1203 |
-
#. Author of the plugin/theme
|
1204 |
-
msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
|
1208 |
-
msgid "
|
1209 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
+
"POT-Creation-Date: 2015-03-23 01:17+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-03-23 01:17+0400\n"
|
6 |
"Last-Translator: advancedcoding <advancedcoding@mail.ru>\n"
|
7 |
"Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.5\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
|
|
|
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
+
#: comment-form/form.php:161 comment-form/tpl-comment.php:231
|
23 |
msgid "Participate in this discussion via email"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: comment-form/tpl-comment.php:83
|
27 |
+
msgid "Anonymous"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: comment-form/tpl-comment.php:165 comment-form/tpl-comment.php:168
|
|
|
|
|
31 |
msgid "Edit"
|
32 |
msgstr ""
|
33 |
|
|
|
|
|
|
|
|
|
34 |
#: options/options-layouts/settings-general.php:2
|
35 |
msgid "General Settings"
|
36 |
msgstr ""
|
43 |
msgid "User Must be registered to comment"
|
44 |
msgstr ""
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
#: options/options-layouts/settings-general.php:46
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
msgid "Show the latest comments on"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: options/options-layouts/settings-general.php:50
|
51 |
msgid "the top of the list"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: options/options-layouts/settings-general.php:52
|
55 |
msgid "top of the threads"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: options/options-layouts/settings-general.php:54
|
59 |
msgid "bottom of the threads"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: options/options-layouts/settings-general.php:56
|
63 |
msgid "the bottom of the list"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: options/options-layouts/settings-general.php:64
|
67 |
msgid "Comment Threads Per Page"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: options/options-layouts/settings-general.php:76
|
|
|
|
|
|
|
|
|
71 |
msgid "Comments max depth"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: options/options-layouts/settings-general.php:81
|
75 |
msgid "Level"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: options/options-layouts/settings-general.php:82
|
79 |
+
#: options/options-layouts/settings-general.php:83
|
80 |
+
#: options/options-layouts/settings-general.php:84
|
81 |
+
#: options/options-layouts/settings-general.php:85
|
82 |
msgid "Levels"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: options/options-layouts/settings-general.php:92
|
86 |
msgid "Comment text size in pixels"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: options/options-layouts/settings-general.php:109
|
90 |
msgid "Allow comment editing for"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: options/options-layouts/settings-general.php:114
|
94 |
msgid "Not Allow"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: options/options-layouts/settings-general.php:115
|
98 |
+
#: options/options-layouts/settings-general.php:116
|
99 |
#: options/options-layouts/settings-live-update.php:41
|
100 |
#: options/options-layouts/settings-live-update.php:42
|
101 |
#: options/options-layouts/settings-live-update.php:43
|
102 |
msgid "Minutes"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: options/options-layouts/settings-general.php:117
|
106 |
#: options/phrases-layout/phrases-datetime.php:73
|
107 |
msgid "Hour"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: options/options-layouts/settings-general.php:118
|
111 |
+
#: options/options-layouts/settings-general.php:119
|
112 |
msgid "Hours"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: options/options-layouts/settings-general.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
msgid "Use WordPress Date/Time format"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: options/options-layouts/settings-general.php:128
|
120 |
msgid ""
|
121 |
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
122 |
"show the date/time format set in WordPress General Settings."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: options/options-layouts/settings-general.php:135
|
126 |
msgid "Current Wordpress date/time format"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: options/options-layouts/settings-general.php:144
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
msgid ""
|
131 |
"Help wpDiscuz to grow allowing people to recognize which comment plugin you "
|
132 |
"use"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: options/options-layouts/settings-general.php:146
|
136 |
msgid ""
|
137 |
"Please check this option on to help wpDiscuz get more popularity as your "
|
138 |
"thank to the hard work we do for you totally free. This option adds a very "
|
140 |
"visitors recognize the name of comment solution you use."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: options/options-layouts/settings-general.php:151
|
144 |
msgid "Thank you!"
|
145 |
msgstr ""
|
146 |
|
147 |
#: options/options-layouts/settings-live-update.php:2
|
148 |
+
#: options/wc-options.php:159
|
149 |
msgid "Live Update"
|
150 |
msgstr ""
|
151 |
|
153 |
msgid "Live update options"
|
154 |
msgstr ""
|
155 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
#: options/options-layouts/settings-live-update.php:14
|
157 |
msgid "Never update"
|
158 |
msgstr ""
|
192 |
msgid "Minute"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: options/options-layouts/settings-show-hide.php:2 options/wc-options.php:160
|
196 |
msgid "Show/Hide Components"
|
197 |
msgstr ""
|
198 |
|
200 |
msgid "Show logged-in user name and logout link on top of main form"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: options/options-layouts/settings-show-hide.php:18
|
204 |
msgid "Hide Reply button for Guests"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: options/options-layouts/settings-show-hide.php:29
|
208 |
msgid "Hide Reply button for Members"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: options/options-layouts/settings-show-hide.php:40
|
212 |
msgid "Hide Author Titles"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: options/options-layouts/settings-show-hide.php:51
|
216 |
msgid "Hide Voting buttons"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: options/options-layouts/settings-show-hide.php:62
|
220 |
+
msgid "Hide Share Button"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: options/options-layouts/settings-show-hide.php:73
|
224 |
msgid "Hide the CAPTCHA field"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: options/options-layouts/settings-style.php:2 options/wc-options.php:162
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
msgid "Background and Colors"
|
229 |
msgstr ""
|
230 |
|
325 |
msgstr ""
|
326 |
|
327 |
#: options/phrases-layout/phrases-comment.php:7
|
328 |
+
#: options/wc-options-serialize.php:344
|
329 |
msgid "Reply"
|
330 |
msgstr ""
|
331 |
|
332 |
#: options/phrases-layout/phrases-comment.php:17
|
333 |
+
#: options/wc-options-serialize.php:345
|
334 |
msgid "Share"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: options/phrases-layout/phrases-comment.php:27
|
338 |
+
#: options/wc-options-serialize.php:346
|
339 |
msgid "Share On Facebook"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: options/phrases-layout/phrases-comment.php:37
|
343 |
+
#: options/wc-options-serialize.php:347
|
344 |
msgid "Share On Twitter"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: options/phrases-layout/phrases-comment.php:47
|
348 |
+
#: options/wc-options-serialize.php:348
|
349 |
msgid "Share On Google"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: options/phrases-layout/phrases-comment.php:57
|
353 |
+
#: options/wc-options-serialize.php:349
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
msgid "Hide Replies"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: options/phrases-layout/phrases-comment.php:67
|
358 |
+
#: options/wc-options-serialize.php:350
|
359 |
msgid "Show Replies"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: options/phrases-layout/phrases-comment.php:77
|
363 |
msgid "Title For Guests"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: options/phrases-layout/phrases-comment.php:87
|
367 |
msgid "Title For Members"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: options/phrases-layout/phrases-comment.php:97
|
371 |
msgid "Title For Authors"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: options/phrases-layout/phrases-comment.php:107
|
375 |
msgid "Title For Admins"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: options/phrases-layout/phrases-comment.php:117
|
379 |
+
#: options/wc-options-serialize.php:391
|
380 |
msgid "Vote Up"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: options/phrases-layout/phrases-comment.php:127
|
384 |
+
#: options/wc-options-serialize.php:392
|
385 |
msgid "Vote Down"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: options/phrases-layout/phrases-comment.php:137
|
389 |
msgid "Save edited comment button text"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: options/phrases-layout/phrases-comment.php:141
|
393 |
+
#: options/wc-options-serialize.php:409
|
394 |
msgid "Save"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: options/phrases-layout/phrases-comment.php:147
|
398 |
msgid "Cancel comment editing button text"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: options/phrases-layout/phrases-comment.php:151
|
402 |
+
#: options/wc-options-serialize.php:410
|
403 |
msgid "Cancel"
|
404 |
msgstr ""
|
405 |
|
464 |
msgstr ""
|
465 |
|
466 |
#: options/phrases-layout/phrases-datetime.php:164
|
467 |
+
#: options/wc-options-serialize.php:385
|
468 |
msgid "Today"
|
469 |
msgstr ""
|
470 |
|
485 |
msgstr ""
|
486 |
|
487 |
#: options/phrases-layout/phrases-email.php:33
|
488 |
+
#: options/phrases-layout/phrases-general.php:91
|
489 |
+
#: options/wc-options-serialize.php:357
|
490 |
msgid "New Reply"
|
491 |
msgstr ""
|
492 |
|
496 |
|
497 |
#: options/phrases-layout/phrases-email.php:50
|
498 |
#: options/phrases-layout/phrases-email.php:54
|
499 |
+
#: options/wc-options-serialize.php:362
|
500 |
msgid "Unsubscribe"
|
501 |
msgstr ""
|
502 |
|
503 |
#: options/phrases-layout/phrases-email.php:61
|
504 |
#: options/phrases-layout/phrases-email.php:65
|
505 |
+
#: options/wc-options-serialize.php:363
|
506 |
msgid "Ignore Subscription"
|
507 |
msgstr ""
|
508 |
|
509 |
#: options/phrases-layout/phrases-email.php:72
|
510 |
#: options/phrases-layout/phrases-email.php:76
|
511 |
+
#: options/wc-options-serialize.php:365
|
512 |
+
msgid "Confirm your subscribtion"
|
513 |
msgstr ""
|
514 |
|
515 |
#: options/phrases-layout/phrases-email.php:82
|
516 |
#: options/phrases-layout/phrases-email.php:86
|
517 |
+
#: options/wc-options-serialize.php:366
|
518 |
msgid "You've successfully confirmed your subscription."
|
519 |
msgstr ""
|
520 |
|
523 |
msgstr ""
|
524 |
|
525 |
#: options/phrases-layout/phrases-email.php:96
|
526 |
+
#: options/wc-options-serialize.php:367 wc.php:877
|
527 |
msgid "Subscribe Confirmation"
|
528 |
msgstr ""
|
529 |
|
532 |
msgstr ""
|
533 |
|
534 |
#: options/phrases-layout/phrases-email.php:107
|
535 |
+
#: options/wc-options-serialize.php:368 wc.php:878
|
536 |
msgid ""
|
537 |
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
538 |
"you will receive an email when new comments are posted according to "
|
562 |
msgstr ""
|
563 |
|
564 |
#: options/phrases-layout/phrases-form.php:47
|
|
|
|
|
|
|
|
|
565 |
msgid "CAPTCHA Field"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: options/phrases-layout/phrases-form.php:57
|
569 |
msgid "Submit Button"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: options/phrases-layout/phrases-form.php:67
|
573 |
+
#: options/phrases-layout/phrases-form.php:71
|
574 |
+
#: options/wc-options-serialize.php:338
|
575 |
msgid "Manage Subscriptions"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: options/phrases-layout/phrases-form.php:77
|
579 |
msgid "Notify \"None\""
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: options/phrases-layout/phrases-form.php:81
|
583 |
+
#: options/wc-options-serialize.php:339
|
584 |
msgid "None"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: options/phrases-layout/phrases-form.php:87
|
588 |
msgid "Notify on new comments (checkbox)"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: options/phrases-layout/phrases-form.php:91
|
592 |
+
#: options/wc-options-serialize.php:340
|
593 |
msgid "Notify of all new follow-up comments"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: options/phrases-layout/phrases-form.php:98
|
597 |
msgid "Notify on all new replies (checkbox)"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: options/phrases-layout/phrases-form.php:102
|
601 |
+
#: options/wc-options-serialize.php:341
|
602 |
msgid "Notify of new replies to all my comments"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: options/phrases-layout/phrases-form.php:109
|
606 |
msgid "Notify on new replies (checkbox)"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: options/phrases-layout/phrases-form.php:113
|
610 |
+
#: options/wc-options-serialize.php:342
|
611 |
msgid "Notify of new replies to this comment"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: options/phrases-layout/phrases-form.php:119
|
615 |
msgid "Subscribed on this comment replies"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: options/phrases-layout/phrases-form.php:129
|
619 |
msgid "Subscribed on all your comments replies"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: options/phrases-layout/phrases-form.php:139
|
623 |
msgid "Subscribed on this post"
|
624 |
msgstr ""
|
625 |
|
628 |
msgstr ""
|
629 |
|
630 |
#: options/phrases-layout/phrases-general.php:7
|
631 |
+
#: options/wc-options-serialize.php:327
|
632 |
msgid "Leave a Reply"
|
633 |
msgstr ""
|
634 |
|
637 |
msgstr ""
|
638 |
|
639 |
#: options/phrases-layout/phrases-general.php:27
|
640 |
+
#: options/wc-options-serialize.php:329 options/wc-options.php:323
|
641 |
msgid "Comment"
|
642 |
msgstr ""
|
643 |
|
654 |
msgstr ""
|
655 |
|
656 |
#: options/phrases-layout/phrases-general.php:67
|
|
|
|
|
|
|
|
|
|
|
657 |
msgid "Button text if has new comment"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: options/phrases-layout/phrases-general.php:71
|
661 |
+
#: options/wc-options-serialize.php:355
|
662 |
msgid "New Comment"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: options/phrases-layout/phrases-general.php:77
|
666 |
+
msgid "Button text if has new comments"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: options/phrases-layout/phrases-general.php:81
|
670 |
msgid "New Comments"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: options/phrases-layout/phrases-general.php:87
|
674 |
msgid "Button text if has new reply"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: options/phrases-layout/phrases-general.php:97
|
678 |
+
msgid "Button text if has new replies"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: options/phrases-layout/phrases-general.php:101
|
682 |
msgid "New Replies"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: options/phrases-layout/phrases-general.php:107
|
686 |
msgid "Text on load more button if has new comment(s)"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: options/phrases-layout/phrases-general.php:111
|
690 |
+
#: options/wc-options-serialize.php:405
|
691 |
msgid "New"
|
692 |
msgstr ""
|
693 |
|
696 |
msgstr ""
|
697 |
|
698 |
#: options/phrases-layout/phrases-notification.php:7
|
699 |
+
#: options/wc-options-serialize.php:364
|
700 |
msgid "You've successfully unsubscribed."
|
701 |
msgstr ""
|
702 |
|
709 |
msgstr ""
|
710 |
|
711 |
#: options/phrases-layout/phrases-notification.php:38
|
712 |
+
#: options/wc-options-serialize.php:386
|
|
|
|
|
|
|
|
|
713 |
msgid "You must be"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: options/phrases-layout/phrases-notification.php:48
|
717 |
msgid "Logged in as"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: options/phrases-layout/phrases-notification.php:58
|
721 |
+
#: options/wc-options-serialize.php:388
|
722 |
msgid "Log out"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: options/phrases-layout/phrases-notification.php:68
|
726 |
msgid "Logged In"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: options/phrases-layout/phrases-notification.php:78
|
730 |
msgid "To post a comment"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: options/phrases-layout/phrases-notification.php:88
|
734 |
+
#: options/wc-options-serialize.php:393
|
735 |
msgid "Vote Counted"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: options/phrases-layout/phrases-notification.php:98
|
739 |
msgid "You can vote only 1 time"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: options/phrases-layout/phrases-notification.php:108
|
743 |
+
#: options/wc-options-serialize.php:395
|
744 |
msgid "Voting Error"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: options/phrases-layout/phrases-notification.php:118
|
748 |
msgid "Login To Vote"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: options/phrases-layout/phrases-notification.php:128
|
752 |
msgid "You Cannot Vote On Your Comment"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: options/phrases-layout/phrases-notification.php:138
|
756 |
+
#: options/wc-options-serialize.php:398
|
|
|
|
|
|
|
|
|
757 |
msgid "Invalid Captcha Code"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: options/phrases-layout/phrases-notification.php:148
|
761 |
+
#: options/wc-options-serialize.php:399
|
762 |
msgid "Some of field value is invalid"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: options/phrases-layout/phrases-notification.php:158
|
766 |
msgid "Comment waiting moderation"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: options/phrases-layout/phrases-notification.php:168
|
|
|
|
|
|
|
|
|
770 |
msgid "Message if comment was not updated"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: options/phrases-layout/phrases-notification.php:172
|
774 |
+
#: options/wc-options-serialize.php:406
|
775 |
msgid "Sorry, the comment was not updated"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: options/phrases-layout/phrases-notification.php:178
|
779 |
msgid "Message if comment no longer possible to edit"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: options/phrases-layout/phrases-notification.php:182
|
783 |
+
#: options/wc-options-serialize.php:407
|
784 |
msgid "Sorry, this comment no longer possible to edit"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: options/phrases-layout/phrases-notification.php:189
|
788 |
msgid "Message if comment text not changed"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: options/phrases-layout/phrases-notification.php:193
|
792 |
msgid "TYou've not made any changes"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: options/wc-options-serialize.php:328
|
796 |
msgid "Be the First to Comment!"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: options/wc-options-serialize.php:330
|
800 |
msgid "Comments"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: options/wc-options-serialize.php:331
|
804 |
msgid "on"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: options/wc-options-serialize.php:332
|
808 |
msgid "Start the discussion"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: options/wc-options-serialize.php:333
|
812 |
msgid "Join the discussion"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: options/wc-options-serialize.php:334 options/wc-options.php:325
|
816 |
msgid "Email"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: options/wc-options-serialize.php:335
|
820 |
msgid "Name"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: options/wc-options-serialize.php:336
|
|
|
|
|
|
|
|
|
824 |
msgid "Please insert the code above to comment"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: options/wc-options-serialize.php:337
|
828 |
msgid "Post Comment"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: options/wc-options-serialize.php:343
|
832 |
msgid "Load More Comments"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: options/wc-options-serialize.php:351
|
836 |
msgid "Guest"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: options/wc-options-serialize.php:352
|
840 |
msgid "Member"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: options/wc-options-serialize.php:353
|
844 |
msgid "Author"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: options/wc-options-serialize.php:354
|
848 |
msgid "Admin"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: options/wc-options-serialize.php:356
|
852 |
msgid "New comment on the discussion section you've been interested in"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: options/wc-options-serialize.php:358
|
856 |
msgid "New reply on the discussion section you've been interested in"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: options/wc-options-serialize.php:359
|
860 |
msgid "You're subscribed for new replies on this comment"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: options/wc-options-serialize.php:360
|
864 |
msgid "You're subscribed for new replies on all your comments"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: options/wc-options-serialize.php:361
|
868 |
msgid "You're subscribed for new follow-up comments on this post"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: options/wc-options-serialize.php:369
|
872 |
msgid "please fill out this field to comment"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: options/wc-options-serialize.php:370
|
876 |
msgid "email address is invalid"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: options/wc-options-serialize.php:371
|
|
|
|
|
|
|
|
|
880 |
msgid "year"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: options/wc-options-serialize.php:372
|
884 |
msgid "years"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: options/wc-options-serialize.php:373
|
888 |
msgid "month"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: options/wc-options-serialize.php:374
|
892 |
msgid "months"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: options/wc-options-serialize.php:375
|
896 |
msgid "day"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: options/wc-options-serialize.php:376
|
900 |
msgid "days"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: options/wc-options-serialize.php:377
|
904 |
msgid "hour"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: options/wc-options-serialize.php:378
|
908 |
msgid "hours"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: options/wc-options-serialize.php:379
|
912 |
msgid "minute"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: options/wc-options-serialize.php:380
|
916 |
msgid "minutes"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: options/wc-options-serialize.php:381
|
920 |
msgid "second"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: options/wc-options-serialize.php:382
|
924 |
msgid "seconds"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: options/wc-options-serialize.php:383
|
928 |
msgid "right now"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: options/wc-options-serialize.php:384
|
932 |
msgid "ago"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: options/wc-options-serialize.php:387
|
936 |
msgid "You are logged in as"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: options/wc-options-serialize.php:389
|
940 |
msgid "logged in"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: options/wc-options-serialize.php:390
|
944 |
msgid "to post a comment."
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: options/wc-options-serialize.php:394
|
948 |
msgid "You've already voted for this comment"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: options/wc-options-serialize.php:396
|
952 |
msgid "You Must Be Logged In To Vote"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: options/wc-options-serialize.php:397
|
956 |
msgid "You cannot vote for your comment"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: options/wc-options-serialize.php:400
|
|
|
|
|
|
|
|
|
960 |
msgid "new comment"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: options/wc-options-serialize.php:401
|
964 |
msgid "new comments"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: options/wc-options-serialize.php:402
|
968 |
+
msgid "Your Comment awaiting moderation"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: options/wc-options-serialize.php:403
|
972 |
msgid "new reply on your comment"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: options/wc-options-serialize.php:404
|
976 |
msgid "new replies on your comments"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: options/wc-options-serialize.php:408
|
980 |
msgid "You've not made any changes"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: options/wc-options.php:29 options/wc-options.php:208
|
|
|
|
|
|
|
|
|
|
|
984 |
msgid "Hacker?"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: options/wc-options.php:78
|
988 |
msgid "wpDiscuz General Settings"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: options/wc-options.php:158
|
992 |
msgid "General settings"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: options/wc-options.php:161
|
996 |
msgid "Email Subscription"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: options/wc-options.php:161
|
1000 |
msgid "and Postmatic"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: options/wc-options.php:190 options/wc-options.php:353
|
1004 |
msgid "Save Changes"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: options/wc-options.php:311
|
|
|
|
|
|
|
|
|
1008 |
msgid "WpDiscuz Front-end Phrases"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: options/wc-options.php:321
|
1012 |
msgid "General"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: options/wc-options.php:322
|
1016 |
msgid "Form"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: options/wc-options.php:324
|
1020 |
msgid "Date/Time"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: options/wc-options.php:326
|
1024 |
msgid "Notification"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: wc.php:954
|
1028 |
+
msgid "Settings"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: wc.php:955
|
1032 |
+
msgid "Phrases"
|
1033 |
msgstr ""
|
languages/wpdiscuz-fr_FR.mo
DELETED
Binary file
|
languages/wpdiscuz-fr_FR.po
DELETED
@@ -1,1223 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
-
"POT-Creation-Date: 2015-05-28 23:58+0400\n"
|
5 |
-
"PO-Revision-Date: 2015-07-31 19:26+0200\n"
|
6 |
-
"Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
|
7 |
-
"MIME-Version: 1.0\n"
|
8 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
-
"Content-Transfer-Encoding: 8bit\n"
|
10 |
-
"X-Generator: Poedit 1.8.3\n"
|
11 |
-
"X-Poedit-Basepath: ..\n"
|
12 |
-
"X-Poedit-WPHeader: wc.php\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
-
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
-
"Last-Translator: \n"
|
19 |
-
"Language: fr_FR\n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
-
|
23 |
-
#: comment-form/form.php:185 comment-form/tpl-comment.php:263
|
24 |
-
msgid "Participate in this discussion via email"
|
25 |
-
msgstr "Participer à cette discussion par e-mail"
|
26 |
-
|
27 |
-
#: comment-form/form.php:323
|
28 |
-
msgid "Connect with"
|
29 |
-
msgstr "Se connecter avec :"
|
30 |
-
|
31 |
-
#: comment-form/tpl-comment.php:174 options/phrases-layout/phrases-comment.php:27
|
32 |
-
#: options/wc-options-serialize.php:439
|
33 |
-
msgid "Edit"
|
34 |
-
msgstr "Éditer"
|
35 |
-
|
36 |
-
#: comment-form/tpl-comment.php:385 wc.php:321
|
37 |
-
msgid "Anonymous"
|
38 |
-
msgstr "Anonyme"
|
39 |
-
|
40 |
-
#: options/options-layouts/settings-general.php:2
|
41 |
-
msgid "General Settings"
|
42 |
-
msgstr "Paramètres généraux"
|
43 |
-
|
44 |
-
#: options/options-layouts/settings-general.php:7
|
45 |
-
msgid "Display comment form for post types:"
|
46 |
-
msgstr "Afficher le formulaire de commentaires pour les contenus de type :"
|
47 |
-
|
48 |
-
#: options/options-layouts/settings-general.php:28
|
49 |
-
msgid "User Must be registered to comment"
|
50 |
-
msgstr "L'utilisateur doit être connecté pour commenter"
|
51 |
-
|
52 |
-
#: options/options-layouts/settings-general.php:34
|
53 |
-
msgid "Yes"
|
54 |
-
msgstr "Oui"
|
55 |
-
|
56 |
-
#: options/options-layouts/settings-general.php:38
|
57 |
-
msgid "No"
|
58 |
-
msgstr "Non"
|
59 |
-
|
60 |
-
#: options/options-layouts/settings-general.php:46
|
61 |
-
msgid "Comment author must fill out name"
|
62 |
-
msgstr "L'auteur du commentaire doit entrer son nom"
|
63 |
-
|
64 |
-
#: options/options-layouts/settings-general.php:57
|
65 |
-
msgid "Comment author must fill out email"
|
66 |
-
msgstr "L'auteur du commentaire doit entrer son email"
|
67 |
-
|
68 |
-
#: options/options-layouts/settings-general.php:68
|
69 |
-
msgid "Show the latest comments on"
|
70 |
-
msgstr "Montrer les derniers commentaires sur"
|
71 |
-
|
72 |
-
#: options/options-layouts/settings-general.php:72
|
73 |
-
msgid "the top of the list"
|
74 |
-
msgstr "le haut de la liste"
|
75 |
-
|
76 |
-
#: options/options-layouts/settings-general.php:74
|
77 |
-
msgid "top of the threads"
|
78 |
-
msgstr "le haut des fils de discussion"
|
79 |
-
|
80 |
-
#: options/options-layouts/settings-general.php:76
|
81 |
-
msgid "bottom of the threads"
|
82 |
-
msgstr "le bas des fils de discussion"
|
83 |
-
|
84 |
-
#: options/options-layouts/settings-general.php:78
|
85 |
-
msgid "the bottom of the list"
|
86 |
-
msgstr "le bas de la liste"
|
87 |
-
|
88 |
-
#: options/options-layouts/settings-general.php:86
|
89 |
-
msgid "Comment Threads Per Page"
|
90 |
-
msgstr "Fils de discussion par page"
|
91 |
-
|
92 |
-
#: options/options-layouts/settings-general.php:97
|
93 |
-
msgid "Comment text max length"
|
94 |
-
msgstr "Longueur maxi du texte d'un commentaire"
|
95 |
-
|
96 |
-
#: options/options-layouts/settings-general.php:108
|
97 |
-
msgid "Comments max depth"
|
98 |
-
msgstr "Profondeur maxi des commentaires"
|
99 |
-
|
100 |
-
#: options/options-layouts/settings-general.php:113
|
101 |
-
msgid "Level"
|
102 |
-
msgstr "Niveau"
|
103 |
-
|
104 |
-
#: options/options-layouts/settings-general.php:114
|
105 |
-
#: options/options-layouts/settings-general.php:115
|
106 |
-
#: options/options-layouts/settings-general.php:116
|
107 |
-
#: options/options-layouts/settings-general.php:117
|
108 |
-
msgid "Levels"
|
109 |
-
msgstr "Niveaux"
|
110 |
-
|
111 |
-
#: options/options-layouts/settings-general.php:124
|
112 |
-
msgid "Comment text size in pixels"
|
113 |
-
msgstr "Taille du texte des commentaires en pixel"
|
114 |
-
|
115 |
-
#: options/options-layouts/settings-general.php:141
|
116 |
-
msgid "Allow comment editing for"
|
117 |
-
msgstr "Autoriser l'édition de commentaire pendant"
|
118 |
-
|
119 |
-
#: options/options-layouts/settings-general.php:146
|
120 |
-
msgid "Not Allow"
|
121 |
-
msgstr "Ne pas autoriser"
|
122 |
-
|
123 |
-
#: options/options-layouts/settings-general.php:147
|
124 |
-
#: options/options-layouts/settings-general.php:148
|
125 |
-
#: options/options-layouts/settings-live-update.php:41
|
126 |
-
#: options/options-layouts/settings-live-update.php:42
|
127 |
-
#: options/options-layouts/settings-live-update.php:43
|
128 |
-
msgid "Minutes"
|
129 |
-
msgstr "Minutes"
|
130 |
-
|
131 |
-
#: options/options-layouts/settings-general.php:149
|
132 |
-
#: options/phrases-layout/phrases-datetime.php:73
|
133 |
-
msgid "Hour"
|
134 |
-
msgstr "Heure"
|
135 |
-
|
136 |
-
#: options/options-layouts/settings-general.php:150
|
137 |
-
#: options/options-layouts/settings-general.php:151
|
138 |
-
msgid "Hours"
|
139 |
-
msgstr "Heures"
|
140 |
-
|
141 |
-
#: options/options-layouts/settings-general.php:158
|
142 |
-
msgid "Redirect first commenter to"
|
143 |
-
msgstr "Rediriger le premier commentateur vers"
|
144 |
-
|
145 |
-
#: options/options-layouts/settings-general.php:165
|
146 |
-
msgid "Do not redirect"
|
147 |
-
msgstr "Ne pas rediriger"
|
148 |
-
|
149 |
-
#: options/options-layouts/settings-general.php:174
|
150 |
-
msgid "Allow guests to vote on comments"
|
151 |
-
msgstr "Autoriser les invités à voter sur les commentaires"
|
152 |
-
|
153 |
-
#: options/options-layouts/settings-general.php:184
|
154 |
-
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
155 |
-
msgstr ""
|
156 |
-
"Charger l'ensemble des commentaires restants au clic sur le bouton [Charger plus de "
|
157 |
-
"Commentaires]"
|
158 |
-
|
159 |
-
#: options/options-layouts/settings-general.php:195
|
160 |
-
msgid "Use WordPress Date/Time format"
|
161 |
-
msgstr "Utiliser le format Date/Heure WordPress"
|
162 |
-
|
163 |
-
#: options/options-layouts/settings-general.php:196
|
164 |
-
msgid ""
|
165 |
-
"wpDiscuz shows Human Readable date format. If you check this option it'll show the "
|
166 |
-
"date/time format set in WordPress General Settings."
|
167 |
-
msgstr ""
|
168 |
-
"wpDiscuz affiche en format lisible par un humain. Si vous cliquez cette option, il "
|
169 |
-
"affichera en utilisant le format Date/Heure défini dans les Paramètres Généraux de "
|
170 |
-
"WordPress."
|
171 |
-
|
172 |
-
#: options/options-layouts/settings-general.php:203
|
173 |
-
msgid "Current Wordpress date/time format"
|
174 |
-
msgstr "Format Date/Heure actuel de WordPress"
|
175 |
-
|
176 |
-
#: options/options-layouts/settings-general.php:209
|
177 |
-
msgid "Use Plugin .PO/.MO files"
|
178 |
-
msgstr "Utiliser les fichiers de plugin .PO/.MO"
|
179 |
-
|
180 |
-
#: options/options-layouts/settings-general.php:210
|
181 |
-
msgid ""
|
182 |
-
"wpDiscuz phrase system allows you to translate all front-end phrases. However if you "
|
183 |
-
"have a multi-language website it'll not allow you to add more than one language "
|
184 |
-
"translation. The only way to get it is the plugin translation files (.PO / .MO). If "
|
185 |
-
"wpDiscuz has the languages you need you should check this option to disable phrase "
|
186 |
-
"system and it'll automatically translate all phrases based on language files "
|
187 |
-
"according to current language."
|
188 |
-
msgstr ""
|
189 |
-
"wpDiscuz phrase system allows you to translate all front-end phrases. However if you "
|
190 |
-
"have a multi-language website it'll not allow you to add more than one language "
|
191 |
-
"translation. The only way to get it is the plugin translation files (.PO / .MO). If "
|
192 |
-
"wpDiscuz has the languages you need you should check this option to disable phrase "
|
193 |
-
"system and it'll automatically translate all phrases based on language files "
|
194 |
-
"according to current language."
|
195 |
-
|
196 |
-
#: options/options-layouts/settings-general.php:222
|
197 |
-
msgid "Help wpDiscuz to grow allowing people to recognize which comment plugin you use"
|
198 |
-
msgstr ""
|
199 |
-
"Help wpDiscuz to grow allowing people to recognize which comment plugin you use"
|
200 |
-
|
201 |
-
#: options/options-layouts/settings-general.php:224
|
202 |
-
msgid ""
|
203 |
-
"Please check this option on to help wpDiscuz get more popularity as your thank to "
|
204 |
-
"the hard work we do for you totally free. This option adds a very small (16x16px) "
|
205 |
-
"icon under the comment section which will allow your site visitors recognize the "
|
206 |
-
"name of comment solution you use."
|
207 |
-
msgstr ""
|
208 |
-
"Please check this option on to help wpDiscuz get more popularity as your thank to "
|
209 |
-
"the hard work we do for you totally free. This option adds a very small (16x16px) "
|
210 |
-
"icon under the comment section which will allow your site visitors recognize the "
|
211 |
-
"name of comment solution you use."
|
212 |
-
|
213 |
-
#: options/options-layouts/settings-general.php:229
|
214 |
-
msgid "Thank you!"
|
215 |
-
msgstr "Merci !"
|
216 |
-
|
217 |
-
#: options/options-layouts/settings-live-update.php:2 options/wc-options.php:180
|
218 |
-
msgid "Live Update"
|
219 |
-
msgstr "Mise à jour en temps réel"
|
220 |
-
|
221 |
-
#: options/options-layouts/settings-live-update.php:8
|
222 |
-
msgid "Live update options"
|
223 |
-
msgstr "Options de mise à jour en temps réel"
|
224 |
-
|
225 |
-
#: options/options-layouts/settings-live-update.php:9
|
226 |
-
msgid ""
|
227 |
-
"If you use Shared Web Hosting you should make sure the \"Live Update\" function "
|
228 |
-
"doesn't overload your server resources. This function is good for VPS and Dedicated "
|
229 |
-
"Hosting Plans."
|
230 |
-
msgstr ""
|
231 |
-
"If you use Shared Web Hosting you should make sure the \"Live Update\" function "
|
232 |
-
"doesn't overload your server resources. This function is good for VPS and Dedicated "
|
233 |
-
"Hosting Plans."
|
234 |
-
|
235 |
-
#: options/options-layouts/settings-live-update.php:14
|
236 |
-
msgid "Never update"
|
237 |
-
msgstr "Ne jamais mettre à jour"
|
238 |
-
|
239 |
-
#: options/options-layouts/settings-live-update.php:16
|
240 |
-
msgid "Turn off \"Live Update\" function"
|
241 |
-
msgstr "Désactiver la fonction \"Mise à jour en temps réel\""
|
242 |
-
|
243 |
-
#: options/options-layouts/settings-live-update.php:18
|
244 |
-
msgid "Show new comment/reply buttons to update manualy"
|
245 |
-
msgstr ""
|
246 |
-
"Afficher les boutons Nouveau commentaire / Répondre pour mettre à jour manuellement"
|
247 |
-
|
248 |
-
#: options/options-layouts/settings-live-update.php:20
|
249 |
-
msgid "Always check for new comments and show update buttons"
|
250 |
-
msgstr ""
|
251 |
-
"Toujours vérifier pour de nouveaux commentaires et afficher les boutons de mise à "
|
252 |
-
"jour"
|
253 |
-
|
254 |
-
#: options/options-layouts/settings-live-update.php:22
|
255 |
-
msgid "Always update"
|
256 |
-
msgstr "Toujours mettre à jour"
|
257 |
-
|
258 |
-
#: options/options-layouts/settings-live-update.php:24
|
259 |
-
msgid "Always check for new comments and update automatically"
|
260 |
-
msgstr ""
|
261 |
-
"Toujours vérifier pour de nouveaux commentaires et mettre à jour automatiquement"
|
262 |
-
|
263 |
-
#: options/options-layouts/settings-live-update.php:32
|
264 |
-
msgid "Update comment list every"
|
265 |
-
msgstr "Mettre à jour la liste des commentaires toutes les"
|
266 |
-
|
267 |
-
#: options/options-layouts/settings-live-update.php:37
|
268 |
-
#: options/options-layouts/settings-live-update.php:38
|
269 |
-
#: options/options-layouts/settings-live-update.php:39
|
270 |
-
msgid "Seconds"
|
271 |
-
msgstr "Secondes"
|
272 |
-
|
273 |
-
#: options/options-layouts/settings-live-update.php:40
|
274 |
-
#: options/phrases-layout/phrases-datetime.php:95
|
275 |
-
msgid "Minute"
|
276 |
-
msgstr "Minutes"
|
277 |
-
|
278 |
-
#: options/options-layouts/settings-show-hide.php:2 options/wc-options.php:181
|
279 |
-
msgid "Show/Hide Components"
|
280 |
-
msgstr "Afficher / Masquer les Composants"
|
281 |
-
|
282 |
-
#: options/options-layouts/settings-show-hide.php:7
|
283 |
-
msgid "Show logged-in user name and logout link on top of main form"
|
284 |
-
msgstr ""
|
285 |
-
"Afficher le nom de l'utilisateur connecté et le lien de déconnexion en haut du "
|
286 |
-
"formulaire principal"
|
287 |
-
|
288 |
-
#: options/options-layouts/settings-show-hide.php:17
|
289 |
-
msgid "Hide Reply button for Guests"
|
290 |
-
msgstr "Masquer le bouton Répondre pour les Invités"
|
291 |
-
|
292 |
-
#: options/options-layouts/settings-show-hide.php:27
|
293 |
-
msgid "Hide Reply button for Members"
|
294 |
-
msgstr "Masquer le bouton Répondre pour les Membres"
|
295 |
-
|
296 |
-
#: options/options-layouts/settings-show-hide.php:37
|
297 |
-
msgid "Hide Author Titles"
|
298 |
-
msgstr "Masquer les titres des auteurs"
|
299 |
-
|
300 |
-
#: options/options-layouts/settings-show-hide.php:47
|
301 |
-
msgid "Hide Voting buttons"
|
302 |
-
msgstr "Masquer les boutons de vote"
|
303 |
-
|
304 |
-
#: options/options-layouts/settings-show-hide.php:57
|
305 |
-
msgid "Hide Share Buttons"
|
306 |
-
msgstr "Masquer les boutons de partage"
|
307 |
-
|
308 |
-
#: options/options-layouts/settings-show-hide.php:67
|
309 |
-
msgid "Hide the CAPTCHA field"
|
310 |
-
msgstr "Masquer le champ CAPTCHA"
|
311 |
-
|
312 |
-
#: options/options-layouts/settings-show-hide.php:77
|
313 |
-
msgid "Hide the Website URL field"
|
314 |
-
msgstr "Masquer le champ URL du site Web"
|
315 |
-
|
316 |
-
#: options/options-layouts/settings-show-hide.php:87
|
317 |
-
msgid "Hide header text"
|
318 |
-
msgstr "Masquer le texte d'entête"
|
319 |
-
|
320 |
-
#: options/options-layouts/settings-show-hide.php:97
|
321 |
-
msgid "Hide user avatar"
|
322 |
-
msgstr "Masquer l'avatar utilisateur"
|
323 |
-
|
324 |
-
#: options/options-layouts/settings-social.php:10
|
325 |
-
#: options/options-layouts/settings-social.php:12
|
326 |
-
#: options/options-layouts/settings-social.php:14 wc.php:1018
|
327 |
-
msgid "Settings"
|
328 |
-
msgstr "Réglages"
|
329 |
-
|
330 |
-
#: options/options-layouts/settings-social.php:19
|
331 |
-
#: options/options-layouts/settings-social.php:29
|
332 |
-
#: options/options-layouts/settings-social.php:39
|
333 |
-
msgid "Activate"
|
334 |
-
msgstr "Activer"
|
335 |
-
|
336 |
-
#: options/options-layouts/settings-social.php:23
|
337 |
-
#: options/options-layouts/settings-social.php:33
|
338 |
-
#: options/options-layouts/settings-social.php:43
|
339 |
-
msgid "View details/Install"
|
340 |
-
msgstr "Voir les détails / Installer"
|
341 |
-
|
342 |
-
#: options/options-layouts/settings-social.php:75 options/wc-options.php:184
|
343 |
-
msgid "Social Login"
|
344 |
-
msgstr "Connexion sociale"
|
345 |
-
|
346 |
-
#: options/options-layouts/settings-social.php:76
|
347 |
-
msgid ""
|
348 |
-
"You can use one of these most popular Social Login Plugins to allow your visitors "
|
349 |
-
"login and comment with Facebook, Twitter, Google+, Wordpress, VK, OK and lots of "
|
350 |
-
"other social network service accounts. All social login buttons will be fully "
|
351 |
-
"integrated with wpDiscuz comment forms."
|
352 |
-
msgstr ""
|
353 |
-
"You can use one of these most popular Social Login Plugins to allow your visitors "
|
354 |
-
"login and comment with Facebook, Twitter, Google+, Wordpress, VK, OK and lots of "
|
355 |
-
"other social network service accounts. All social login buttons will be fully "
|
356 |
-
"integrated with wpDiscuz comment forms."
|
357 |
-
|
358 |
-
#: options/options-layouts/settings-style.php:2 options/wc-options.php:183
|
359 |
-
msgid "Background and Colors"
|
360 |
-
msgstr "Fond et couleurs"
|
361 |
-
|
362 |
-
#: options/options-layouts/settings-style.php:7
|
363 |
-
msgid "Comment Form Background Color"
|
364 |
-
msgstr "Couleur de fond du formulaire de commentaire"
|
365 |
-
|
366 |
-
#: options/options-layouts/settings-style.php:10
|
367 |
-
#: options/options-layouts/settings-style.php:34
|
368 |
-
#: options/options-layouts/settings-style.php:58
|
369 |
-
#: options/options-layouts/settings-style.php:82
|
370 |
-
#: options/options-layouts/settings-style.php:107
|
371 |
-
#: options/options-layouts/settings-style.php:132
|
372 |
-
#: options/options-layouts/settings-style.php:155
|
373 |
-
#: options/options-layouts/settings-style.php:178
|
374 |
-
msgid "Example: #00ff00"
|
375 |
-
msgstr "Exemple: #00ff00"
|
376 |
-
|
377 |
-
#: options/options-layouts/settings-style.php:31
|
378 |
-
msgid "Comment Background Color"
|
379 |
-
msgstr "Couleur de fond des commentaires"
|
380 |
-
|
381 |
-
#: options/options-layouts/settings-style.php:55
|
382 |
-
msgid "Reply Background Color"
|
383 |
-
msgstr "Couleur de fond des réponses"
|
384 |
-
|
385 |
-
#: options/options-layouts/settings-style.php:79
|
386 |
-
msgid "Comment Text Color"
|
387 |
-
msgstr "Couleur des textes des commentaires"
|
388 |
-
|
389 |
-
#: options/options-layouts/settings-style.php:104
|
390 |
-
msgid "Author title color"
|
391 |
-
msgstr "Couleur du titre de l'auteur"
|
392 |
-
|
393 |
-
#: options/options-layouts/settings-style.php:129
|
394 |
-
msgid "Vote, Reply, Share, Edit links text colors"
|
395 |
-
msgstr "Couleur des textes des liens Voter, Répondre, Partager, Editer"
|
396 |
-
|
397 |
-
#: options/options-layouts/settings-style.php:152
|
398 |
-
msgid "Comment form fields border color"
|
399 |
-
msgstr "Couleur de bordure des champs du formulaire de commentaire"
|
400 |
-
|
401 |
-
#: options/options-layouts/settings-style.php:175
|
402 |
-
msgid "New loaded comments' background color"
|
403 |
-
msgstr "Couleur de fond des nouveaux commentaires chargés"
|
404 |
-
|
405 |
-
#: options/options-layouts/settings-style.php:199
|
406 |
-
msgid "Custom CSS Code"
|
407 |
-
msgstr "Code CSS personnalisé"
|
408 |
-
|
409 |
-
#: options/options-layouts/settings-subscription.php:2
|
410 |
-
msgid "Email Subscription Settings"
|
411 |
-
msgstr "Réglages de souscription des emails"
|
412 |
-
|
413 |
-
#: options/options-layouts/settings-subscription.php:7
|
414 |
-
msgid "Show \"Notify of all new follow-up comments\""
|
415 |
-
msgstr "Afficher \"Notifier de tous les nouveaux commentaires de suivi\""
|
416 |
-
|
417 |
-
#: options/options-layouts/settings-subscription.php:8
|
418 |
-
msgid "Show \"Notify of new replies to all my comments\""
|
419 |
-
msgstr "Afficher \"Notifier des nouvelles réponses à tous mes commentaires\""
|
420 |
-
|
421 |
-
#: options/options-layouts/settings-subscription.php:9
|
422 |
-
msgid "Show \"Notify of new replies to this comment\""
|
423 |
-
msgstr "Afficher \"Notifier de toutes les réponses à ce commentaire\""
|
424 |
-
|
425 |
-
#: options/options-layouts/settings-subscription.php:11
|
426 |
-
msgid ""
|
427 |
-
"Please keep all three or at least one of those options ON, otherwise users will not "
|
428 |
-
"have any option for email notifications and they'll not get any messages."
|
429 |
-
msgstr ""
|
430 |
-
"Please keep all three or at least one of those options ON, otherwise users will not "
|
431 |
-
"have any option for email notifications and they'll not get any messages."
|
432 |
-
|
433 |
-
#: options/options-layouts/settings-subscription.php:30
|
434 |
-
msgid "Use Postmatic for subscriptions and commenting by email"
|
435 |
-
msgstr "Utiliser Postmatic pour les souscriptions et commentaires par email"
|
436 |
-
|
437 |
-
#: options/options-layouts/settings-subscription.php:31
|
438 |
-
msgid ""
|
439 |
-
"Postmatic allows your users subscribe to comments. Instead of just being notified, "
|
440 |
-
"they add a reply right from their inbox."
|
441 |
-
msgstr ""
|
442 |
-
"Postmatic allows your users subscribe to comments. Instead of just being notified, "
|
443 |
-
"they add a reply right from their inbox."
|
444 |
-
|
445 |
-
#: options/options-layouts/settings-subscription.php:42
|
446 |
-
msgid "Keep selected the email notification of all new follow-up comments by default"
|
447 |
-
msgstr ""
|
448 |
-
"Garder la notification par email de tous les nouveaux commentaires de suivi "
|
449 |
-
"sélectionné par défaut"
|
450 |
-
|
451 |
-
#: options/options-layouts/settings-subscription.php:43
|
452 |
-
msgid ""
|
453 |
-
"If this option is checked-on, in Manage Subscriptions section of comment forms will "
|
454 |
-
"only be displayed the \"Notify of all new follow-up comments\" option and this "
|
455 |
-
"option will always be selected by default."
|
456 |
-
msgstr ""
|
457 |
-
"If this option is checked-on, in Manage Subscriptions section of comment forms will "
|
458 |
-
"only be displayed the \"Notify of all new follow-up comments\" option and this "
|
459 |
-
"option will always be selected by default."
|
460 |
-
|
461 |
-
#: options/phrases-layout/phrases-comment.php:2
|
462 |
-
msgid "Comment Template Phrases"
|
463 |
-
msgstr "Phrases Modèle Commentaire"
|
464 |
-
|
465 |
-
#: options/phrases-layout/phrases-comment.php:7 options/wc-options-serialize.php:437
|
466 |
-
msgid "Reply"
|
467 |
-
msgstr "Répondre"
|
468 |
-
|
469 |
-
#: options/phrases-layout/phrases-comment.php:17 options/wc-options-serialize.php:438
|
470 |
-
msgid "Share"
|
471 |
-
msgstr "Partager"
|
472 |
-
|
473 |
-
#: options/phrases-layout/phrases-comment.php:37 options/wc-options-serialize.php:440
|
474 |
-
msgid "Share On Facebook"
|
475 |
-
msgstr "Partager sur Facebook"
|
476 |
-
|
477 |
-
#: options/phrases-layout/phrases-comment.php:47 options/wc-options-serialize.php:441
|
478 |
-
msgid "Share On Twitter"
|
479 |
-
msgstr "Partager sur Twitter"
|
480 |
-
|
481 |
-
#: options/phrases-layout/phrases-comment.php:57 options/wc-options-serialize.php:442
|
482 |
-
msgid "Share On Google"
|
483 |
-
msgstr "Partager sur Google"
|
484 |
-
|
485 |
-
#: options/phrases-layout/phrases-comment.php:67 options/wc-options-serialize.php:443
|
486 |
-
msgid "Share On VKontakte"
|
487 |
-
msgstr "Partager sur VKontakte"
|
488 |
-
|
489 |
-
#: options/phrases-layout/phrases-comment.php:77 options/wc-options-serialize.php:444
|
490 |
-
msgid "Share On Odnoklassniki"
|
491 |
-
msgstr "Partager sur Odnoklassniki"
|
492 |
-
|
493 |
-
#: options/phrases-layout/phrases-comment.php:87 options/wc-options-serialize.php:445
|
494 |
-
msgid "Hide Replies"
|
495 |
-
msgstr "Masquer les réponses"
|
496 |
-
|
497 |
-
#: options/phrases-layout/phrases-comment.php:97 options/wc-options-serialize.php:446
|
498 |
-
msgid "Show Replies"
|
499 |
-
msgstr "Afficher les réponses"
|
500 |
-
|
501 |
-
#: options/phrases-layout/phrases-comment.php:107
|
502 |
-
msgid "Title For Guests"
|
503 |
-
msgstr "Titre pour Invités"
|
504 |
-
|
505 |
-
#: options/phrases-layout/phrases-comment.php:117
|
506 |
-
msgid "Title For Members"
|
507 |
-
msgstr "Titre pour Membres"
|
508 |
-
|
509 |
-
#: options/phrases-layout/phrases-comment.php:127
|
510 |
-
msgid "Title For Authors"
|
511 |
-
msgstr "Titre pour Auteurs"
|
512 |
-
|
513 |
-
#: options/phrases-layout/phrases-comment.php:137
|
514 |
-
msgid "Title For Admins"
|
515 |
-
msgstr "Titre pour Admins"
|
516 |
-
|
517 |
-
#: options/phrases-layout/phrases-comment.php:147 options/wc-options-serialize.php:488
|
518 |
-
msgid "Vote Up"
|
519 |
-
msgstr "Vote Pour"
|
520 |
-
|
521 |
-
#: options/phrases-layout/phrases-comment.php:157 options/wc-options-serialize.php:489
|
522 |
-
msgid "Vote Down"
|
523 |
-
msgstr "Vote Contre"
|
524 |
-
|
525 |
-
#: options/phrases-layout/phrases-comment.php:167
|
526 |
-
msgid "Save edited comment button text"
|
527 |
-
msgstr "Texte du bouton Enregistrer du commentaire édité"
|
528 |
-
|
529 |
-
#: options/phrases-layout/phrases-comment.php:171 options/wc-options-serialize.php:507
|
530 |
-
msgid "Save"
|
531 |
-
msgstr "Enregistrer"
|
532 |
-
|
533 |
-
#: options/phrases-layout/phrases-comment.php:177
|
534 |
-
msgid "Cancel comment editing button text"
|
535 |
-
msgstr "Texte du bouton Annuler du commentaire édité"
|
536 |
-
|
537 |
-
#: options/phrases-layout/phrases-comment.php:181 options/wc-options-serialize.php:508
|
538 |
-
msgid "Cancel"
|
539 |
-
msgstr "Annuler"
|
540 |
-
|
541 |
-
#: options/phrases-layout/phrases-datetime.php:2
|
542 |
-
msgid "Date/Time Phrases"
|
543 |
-
msgstr "Phrases Date / Heure"
|
544 |
-
|
545 |
-
#: options/phrases-layout/phrases-datetime.php:7
|
546 |
-
msgid "Year"
|
547 |
-
msgstr "Année"
|
548 |
-
|
549 |
-
#: options/phrases-layout/phrases-datetime.php:18
|
550 |
-
msgid "Years (Plural Form)"
|
551 |
-
msgstr "Années (au pluriel)"
|
552 |
-
|
553 |
-
#: options/phrases-layout/phrases-datetime.php:22
|
554 |
-
msgid "Years"
|
555 |
-
msgstr "Années"
|
556 |
-
|
557 |
-
#: options/phrases-layout/phrases-datetime.php:29
|
558 |
-
msgid "Month"
|
559 |
-
msgstr "Mois"
|
560 |
-
|
561 |
-
#: options/phrases-layout/phrases-datetime.php:40
|
562 |
-
msgid "Months (Plural Form)"
|
563 |
-
msgstr "Mois (au pluriel)"
|
564 |
-
|
565 |
-
#: options/phrases-layout/phrases-datetime.php:51
|
566 |
-
msgid "Day"
|
567 |
-
msgstr "Jour"
|
568 |
-
|
569 |
-
#: options/phrases-layout/phrases-datetime.php:62
|
570 |
-
msgid "Days (Plural Form)"
|
571 |
-
msgstr "Jours (au pluriel)"
|
572 |
-
|
573 |
-
#: options/phrases-layout/phrases-datetime.php:84
|
574 |
-
msgid "Hours (Plural Form)"
|
575 |
-
msgstr "Heures (au pluriel)"
|
576 |
-
|
577 |
-
#: options/phrases-layout/phrases-datetime.php:106
|
578 |
-
msgid "Minutes (Plural Form)"
|
579 |
-
msgstr "Minutes (au pluriel)"
|
580 |
-
|
581 |
-
#: options/phrases-layout/phrases-datetime.php:117
|
582 |
-
msgid "Second"
|
583 |
-
msgstr "Seconde"
|
584 |
-
|
585 |
-
#: options/phrases-layout/phrases-datetime.php:128
|
586 |
-
msgid "Seconds (Plural Form)"
|
587 |
-
msgstr "Secondes (au pluriel)"
|
588 |
-
|
589 |
-
#: options/phrases-layout/phrases-datetime.php:138
|
590 |
-
msgid "Commented \"right now\" text"
|
591 |
-
msgstr "Texte commenté \"A l'instant\""
|
592 |
-
|
593 |
-
#: options/phrases-layout/phrases-datetime.php:149
|
594 |
-
msgid "Ago text"
|
595 |
-
msgstr "Texte Il y a"
|
596 |
-
|
597 |
-
#: options/phrases-layout/phrases-datetime.php:160
|
598 |
-
msgid "\"Today\" text"
|
599 |
-
msgstr "Texte \"Aujourd'hui\""
|
600 |
-
|
601 |
-
#: options/phrases-layout/phrases-datetime.php:164 options/wc-options-serialize.php:482
|
602 |
-
msgid "Today"
|
603 |
-
msgstr "Aujourd'hui"
|
604 |
-
|
605 |
-
#: options/phrases-layout/phrases-email.php:2
|
606 |
-
msgid "Email Template Phrases"
|
607 |
-
msgstr "Phrases Email Modèle"
|
608 |
-
|
609 |
-
#: options/phrases-layout/phrases-email.php:7
|
610 |
-
msgid "Email Subject"
|
611 |
-
msgstr "Sujet de l'email"
|
612 |
-
|
613 |
-
#: options/phrases-layout/phrases-email.php:18
|
614 |
-
msgid "Email Message"
|
615 |
-
msgstr "Message de l'email"
|
616 |
-
|
617 |
-
#: options/phrases-layout/phrases-email.php:29
|
618 |
-
msgid "New Reply Subject"
|
619 |
-
msgstr "Sujet nouvelle réponse"
|
620 |
-
|
621 |
-
#: options/phrases-layout/phrases-email.php:33
|
622 |
-
#: options/phrases-layout/phrases-general.php:101 options/wc-options-serialize.php:453
|
623 |
-
msgid "New Reply"
|
624 |
-
msgstr "Nouvelle réponse"
|
625 |
-
|
626 |
-
#: options/phrases-layout/phrases-email.php:40
|
627 |
-
msgid "New Reply Message"
|
628 |
-
msgstr "Message Nouvelle Réponse"
|
629 |
-
|
630 |
-
#: options/phrases-layout/phrases-email.php:50
|
631 |
-
#: options/phrases-layout/phrases-email.php:54 options/wc-options-serialize.php:458
|
632 |
-
msgid "Unsubscribe"
|
633 |
-
msgstr "Désabonner"
|
634 |
-
|
635 |
-
#: options/phrases-layout/phrases-email.php:61
|
636 |
-
#: options/phrases-layout/phrases-email.php:65 options/wc-options-serialize.php:459
|
637 |
-
msgid "Ignore Subscription"
|
638 |
-
msgstr "Ignorer l'abonnement"
|
639 |
-
|
640 |
-
#: options/phrases-layout/phrases-email.php:72
|
641 |
-
#: options/phrases-layout/phrases-email.php:76 options/wc-options-serialize.php:461
|
642 |
-
msgid "Confirm your subscription"
|
643 |
-
msgstr "Confirmer votre abonnement"
|
644 |
-
|
645 |
-
#: options/phrases-layout/phrases-email.php:82
|
646 |
-
#: options/phrases-layout/phrases-email.php:86 options/wc-options-serialize.php:462
|
647 |
-
msgid "You've successfully confirmed your subscription."
|
648 |
-
msgstr "Vous avez confirmé votre abonnement avec succès."
|
649 |
-
|
650 |
-
#: options/phrases-layout/phrases-email.php:92
|
651 |
-
msgid "Subscribe Confirmation Email Subject"
|
652 |
-
msgstr "Sujet email confirmation abonnement"
|
653 |
-
|
654 |
-
#: options/phrases-layout/phrases-email.php:96 options/wc-options-serialize.php:463
|
655 |
-
#: wc.php:941
|
656 |
-
msgid "Subscribe Confirmation"
|
657 |
-
msgstr "Confirmation d'abonnement"
|
658 |
-
|
659 |
-
#: options/phrases-layout/phrases-email.php:103
|
660 |
-
msgid "Subscribe Confirmation Email Content"
|
661 |
-
msgstr "Contenu de l'email de confirmation d'abonnement"
|
662 |
-
|
663 |
-
#: options/phrases-layout/phrases-email.php:107 options/wc-options-serialize.php:464
|
664 |
-
#: wc.php:942
|
665 |
-
msgid ""
|
666 |
-
"Hi, <br/> You just subscribed for new comments on our website. This means you will "
|
667 |
-
"receive an email when new comments are posted according to subscription option "
|
668 |
-
"you've chosen. <br/> To activate, click confirm below. If you believe this is an "
|
669 |
-
"error, ignore this message and we'll never bother you again."
|
670 |
-
msgstr ""
|
671 |
-
"Bonjour.<br/><br/> Vous venez de vous abonner au suivi des commentaires sur notre "
|
672 |
-
"site. Cela signifie que vous recevrez un email quand de nouveaux commentaires seront "
|
673 |
-
"postés en fonction de l'option de souscription que vous avez choisie. <br/><br/>Pour "
|
674 |
-
"activer, cliquer le lien de confirmation ci-dessous. <br/><br/>Si vous pensez "
|
675 |
-
"recevoir ce message par erreur, ignorer ce message et nous ne vous solliciterons "
|
676 |
-
"plus."
|
677 |
-
|
678 |
-
#: options/phrases-layout/phrases-form.php:2
|
679 |
-
msgid "Form Template Phrases"
|
680 |
-
msgstr "Phrases Modèle Formulaire"
|
681 |
-
|
682 |
-
#: options/phrases-layout/phrases-form.php:7
|
683 |
-
msgid "Comment Field Start"
|
684 |
-
msgstr "Début du Champ Commentaire"
|
685 |
-
|
686 |
-
#: options/phrases-layout/phrases-form.php:17
|
687 |
-
msgid "Comment Field Join"
|
688 |
-
msgstr "Joindre du Champ Commentaire"
|
689 |
-
|
690 |
-
#: options/phrases-layout/phrases-form.php:27
|
691 |
-
msgid "Email Field"
|
692 |
-
msgstr "Champ Email"
|
693 |
-
|
694 |
-
#: options/phrases-layout/phrases-form.php:37
|
695 |
-
msgid "Name Field"
|
696 |
-
msgstr "Champ Nom"
|
697 |
-
|
698 |
-
#: options/phrases-layout/phrases-form.php:47
|
699 |
-
msgid "WebSite URL Field"
|
700 |
-
msgstr "Champ URL du site Web"
|
701 |
-
|
702 |
-
#: options/phrases-layout/phrases-form.php:57
|
703 |
-
msgid "CAPTCHA Field"
|
704 |
-
msgstr "Champ CAPTCHA"
|
705 |
-
|
706 |
-
#: options/phrases-layout/phrases-form.php:67
|
707 |
-
msgid "Submit Button"
|
708 |
-
msgstr "Bouton Soumettre"
|
709 |
-
|
710 |
-
#: options/phrases-layout/phrases-form.php:77
|
711 |
-
#: options/phrases-layout/phrases-form.php:81 options/wc-options-serialize.php:430
|
712 |
-
msgid "Manage Subscriptions"
|
713 |
-
msgstr "Gérer les Abonnements"
|
714 |
-
|
715 |
-
#: options/phrases-layout/phrases-form.php:87
|
716 |
-
msgid "Notify \"None\""
|
717 |
-
msgstr "Notifier \"Personne\""
|
718 |
-
|
719 |
-
#: options/phrases-layout/phrases-form.php:91 options/wc-options-serialize.php:431
|
720 |
-
msgid "None"
|
721 |
-
msgstr "Aucun"
|
722 |
-
|
723 |
-
#: options/phrases-layout/phrases-form.php:97
|
724 |
-
msgid "Notify on new comments (checkbox)"
|
725 |
-
msgstr "Notifier sur les nouveaux commentaires (case à cocher)"
|
726 |
-
|
727 |
-
#: options/phrases-layout/phrases-form.php:101 options/wc-options-serialize.php:432
|
728 |
-
msgid "Notify of all new follow-up comments"
|
729 |
-
msgstr "Notifier de toutes les réponses et tous les commentaires"
|
730 |
-
|
731 |
-
#: options/phrases-layout/phrases-form.php:108
|
732 |
-
msgid "Notify on all new replies (checkbox)"
|
733 |
-
msgstr "Notifier de toutes les nouvelles réponses (case à cocher)"
|
734 |
-
|
735 |
-
#: options/phrases-layout/phrases-form.php:112 options/wc-options-serialize.php:433
|
736 |
-
msgid "Notify of new replies to all my comments"
|
737 |
-
msgstr "Notifier des nouvelles réponses à tous mes commentaires"
|
738 |
-
|
739 |
-
#: options/phrases-layout/phrases-form.php:119
|
740 |
-
msgid "Notify on new replies (checkbox)"
|
741 |
-
msgstr "Notifier des nouvelles réponses (case à cocher)"
|
742 |
-
|
743 |
-
#: options/phrases-layout/phrases-form.php:123 options/wc-options-serialize.php:434
|
744 |
-
msgid "Notify of new replies to this comment"
|
745 |
-
msgstr "Notifier des nouvelles réponses à ce commentaire"
|
746 |
-
|
747 |
-
#: options/phrases-layout/phrases-form.php:129
|
748 |
-
msgid "Subscribed on this comment replies"
|
749 |
-
msgstr "Abonné aux réponses de ce commentaire"
|
750 |
-
|
751 |
-
#: options/phrases-layout/phrases-form.php:139
|
752 |
-
msgid "Subscribed on all your comments replies"
|
753 |
-
msgstr "Abonné aux réponses à tous vos commentaires"
|
754 |
-
|
755 |
-
#: options/phrases-layout/phrases-form.php:149
|
756 |
-
msgid "Subscribed on this post"
|
757 |
-
msgstr "Abonné à cet article"
|
758 |
-
|
759 |
-
#: options/phrases-layout/phrases-general.php:2
|
760 |
-
msgid "General Phrases"
|
761 |
-
msgstr "Phrases Général"
|
762 |
-
|
763 |
-
#: options/phrases-layout/phrases-general.php:7 options/wc-options-serialize.php:418
|
764 |
-
msgid "Leave a Reply"
|
765 |
-
msgstr "Poster un Commentaire"
|
766 |
-
|
767 |
-
#: options/phrases-layout/phrases-general.php:17
|
768 |
-
msgid "Be the first to comment"
|
769 |
-
msgstr "Soyez le premier à commenter"
|
770 |
-
|
771 |
-
#: options/phrases-layout/phrases-general.php:27 options/wc-options-serialize.php:420
|
772 |
-
#: options/wc-options.php:353
|
773 |
-
msgid "Comment"
|
774 |
-
msgstr "Commentaire"
|
775 |
-
|
776 |
-
#: options/phrases-layout/phrases-general.php:37
|
777 |
-
msgid "Comment (Plural Form)"
|
778 |
-
msgstr "Commentaire (au pluriel)"
|
779 |
-
|
780 |
-
#: options/phrases-layout/phrases-general.php:47
|
781 |
-
msgid "On"
|
782 |
-
msgstr "Marche"
|
783 |
-
|
784 |
-
#: options/phrases-layout/phrases-general.php:57
|
785 |
-
msgid "Load More Button"
|
786 |
-
msgstr "Bouton Afficher plus"
|
787 |
-
|
788 |
-
#: options/phrases-layout/phrases-general.php:67 options/wc-options-serialize.php:436
|
789 |
-
msgid "Load Rest of Comments"
|
790 |
-
msgstr "Afficher le reste des Commentaires"
|
791 |
-
|
792 |
-
#: options/phrases-layout/phrases-general.php:77
|
793 |
-
msgid "Button text if has new comment"
|
794 |
-
msgstr "Bouton texte si nouveau commentaire"
|
795 |
-
|
796 |
-
#: options/phrases-layout/phrases-general.php:81 options/wc-options-serialize.php:451
|
797 |
-
msgid "New Comment"
|
798 |
-
msgstr "Nouveau Commentaire"
|
799 |
-
|
800 |
-
#: options/phrases-layout/phrases-general.php:87
|
801 |
-
msgid "Button text if has new comments (Plural Form)"
|
802 |
-
msgstr "Bouton texte si nouveau commentaire (au pluriel)"
|
803 |
-
|
804 |
-
#: options/phrases-layout/phrases-general.php:91
|
805 |
-
msgid "New Comments"
|
806 |
-
msgstr "Nouveaux Commentaires"
|
807 |
-
|
808 |
-
#: options/phrases-layout/phrases-general.php:97
|
809 |
-
msgid "Button text if has new reply"
|
810 |
-
msgstr "Bouton texte si nouvelles réponses"
|
811 |
-
|
812 |
-
#: options/phrases-layout/phrases-general.php:107
|
813 |
-
msgid "Button text if has new replies (Plural Form)"
|
814 |
-
msgstr "Bouton texte si nouvelles réponses (au pluriel)"
|
815 |
-
|
816 |
-
#: options/phrases-layout/phrases-general.php:111
|
817 |
-
msgid "New Replies"
|
818 |
-
msgstr "Nouvelles Réponses"
|
819 |
-
|
820 |
-
#: options/phrases-layout/phrases-general.php:117
|
821 |
-
msgid "Text on load more button if has new comment(s)"
|
822 |
-
msgstr "Texte bouton afficher plus si nouveaux commentaires"
|
823 |
-
|
824 |
-
#: options/phrases-layout/phrases-general.php:121 options/wc-options-serialize.php:503
|
825 |
-
msgid "New"
|
826 |
-
msgstr "Nouveau"
|
827 |
-
|
828 |
-
#: options/phrases-layout/phrases-notification.php:2
|
829 |
-
msgid "Notification Phrases"
|
830 |
-
msgstr "Phrases Notification"
|
831 |
-
|
832 |
-
#: options/phrases-layout/phrases-notification.php:7
|
833 |
-
#: options/wc-options-serialize.php:460
|
834 |
-
msgid "You've successfully unsubscribed."
|
835 |
-
msgstr "Vous vous êtes désabonné avec succès."
|
836 |
-
|
837 |
-
#: options/phrases-layout/phrases-notification.php:18
|
838 |
-
msgid "Error message for empty field"
|
839 |
-
msgstr "Message d'erreur pour champ vide"
|
840 |
-
|
841 |
-
#: options/phrases-layout/phrases-notification.php:28
|
842 |
-
msgid "Error message for invalid email field"
|
843 |
-
msgstr "Message d'erreur pour champ email invalide"
|
844 |
-
|
845 |
-
#: options/phrases-layout/phrases-notification.php:38
|
846 |
-
msgid "Error message for invalid website url field"
|
847 |
-
msgstr "Message d'erreur pour champ URL site Web invalide"
|
848 |
-
|
849 |
-
#: options/phrases-layout/phrases-notification.php:48
|
850 |
-
#: options/wc-options-serialize.php:483
|
851 |
-
msgid "You must be"
|
852 |
-
msgstr "Vous devez"
|
853 |
-
|
854 |
-
#: options/phrases-layout/phrases-notification.php:58
|
855 |
-
msgid "Logged in as"
|
856 |
-
msgstr "Connecté en tant que"
|
857 |
-
|
858 |
-
#: options/phrases-layout/phrases-notification.php:68
|
859 |
-
#: options/wc-options-serialize.php:485
|
860 |
-
msgid "Log out"
|
861 |
-
msgstr "Déconnecter"
|
862 |
-
|
863 |
-
#: options/phrases-layout/phrases-notification.php:78
|
864 |
-
msgid "Logged In"
|
865 |
-
msgstr "Connecté"
|
866 |
-
|
867 |
-
#: options/phrases-layout/phrases-notification.php:88
|
868 |
-
msgid "To post a comment"
|
869 |
-
msgstr "Pour poster un commentaire"
|
870 |
-
|
871 |
-
#: options/phrases-layout/phrases-notification.php:98
|
872 |
-
#: options/wc-options-serialize.php:490
|
873 |
-
msgid "Vote Counted"
|
874 |
-
msgstr "Votes comptabilisés"
|
875 |
-
|
876 |
-
#: options/phrases-layout/phrases-notification.php:108
|
877 |
-
msgid "You can vote only 1 time"
|
878 |
-
msgstr "Vous pouvez voter une seule fois"
|
879 |
-
|
880 |
-
#: options/phrases-layout/phrases-notification.php:118
|
881 |
-
#: options/wc-options-serialize.php:492
|
882 |
-
msgid "Voting Error"
|
883 |
-
msgstr "Erreur sur vote"
|
884 |
-
|
885 |
-
#: options/phrases-layout/phrases-notification.php:128
|
886 |
-
msgid "Login To Vote"
|
887 |
-
msgstr "Se connecter pour voter"
|
888 |
-
|
889 |
-
#: options/phrases-layout/phrases-notification.php:138
|
890 |
-
msgid "You Cannot Vote On Your Comment"
|
891 |
-
msgstr "Vous ne pouvez pas voter sur votre Commentaire"
|
892 |
-
|
893 |
-
#: options/phrases-layout/phrases-notification.php:148
|
894 |
-
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
895 |
-
msgstr "Vous n'êtes pas autorisé à voter pour ce commentaire (Vote depuis même IP)"
|
896 |
-
|
897 |
-
#: options/phrases-layout/phrases-notification.php:158
|
898 |
-
#: options/wc-options-serialize.php:496
|
899 |
-
msgid "Invalid Captcha Code"
|
900 |
-
msgstr "Code Captcha invalide"
|
901 |
-
|
902 |
-
#: options/phrases-layout/phrases-notification.php:168
|
903 |
-
#: options/wc-options-serialize.php:497
|
904 |
-
msgid "Some of field value is invalid"
|
905 |
-
msgstr "Une partie du champ est invalide"
|
906 |
-
|
907 |
-
#: options/phrases-layout/phrases-notification.php:178
|
908 |
-
msgid "Comment waiting moderation"
|
909 |
-
msgstr "Commentaire en attente de modération"
|
910 |
-
|
911 |
-
#: options/phrases-layout/phrases-notification.php:188
|
912 |
-
msgid "Message if comment content length is too long"
|
913 |
-
msgstr "Message si le contenu du commentaire est trop long"
|
914 |
-
|
915 |
-
#: options/phrases-layout/phrases-notification.php:198
|
916 |
-
msgid "Message if comment was not updated"
|
917 |
-
msgstr "Message si le commentaire n'a pas été mis à jour"
|
918 |
-
|
919 |
-
#: options/phrases-layout/phrases-notification.php:202
|
920 |
-
#: options/wc-options-serialize.php:504
|
921 |
-
msgid "Sorry, the comment was not updated"
|
922 |
-
msgstr "Désolé, le commentaire n'a pas été mis à jour"
|
923 |
-
|
924 |
-
#: options/phrases-layout/phrases-notification.php:208
|
925 |
-
msgid "Message if comment no longer possible to edit"
|
926 |
-
msgstr "Message s'il n'est plus possible d'éditer le commentaire"
|
927 |
-
|
928 |
-
#: options/phrases-layout/phrases-notification.php:212
|
929 |
-
#: options/wc-options-serialize.php:505
|
930 |
-
msgid "Sorry, this comment no longer possible to edit"
|
931 |
-
msgstr "Désolé, il n'est plus possible d'éditer ce commentaire"
|
932 |
-
|
933 |
-
#: options/phrases-layout/phrases-notification.php:219
|
934 |
-
msgid "Message if comment text not changed"
|
935 |
-
msgstr "Message si le texte du commentaire est inchangé"
|
936 |
-
|
937 |
-
#: options/phrases-layout/phrases-notification.php:223
|
938 |
-
msgid "TYou've not made any changes"
|
939 |
-
msgstr "Vous n'avez fait aucune modification"
|
940 |
-
|
941 |
-
#: options/wc-options-serialize.php:419
|
942 |
-
msgid "Be the First to Comment!"
|
943 |
-
msgstr "Soyez le premier à commenter !"
|
944 |
-
|
945 |
-
#: options/wc-options-serialize.php:421
|
946 |
-
msgid "Comments"
|
947 |
-
msgstr "Commentaires"
|
948 |
-
|
949 |
-
#: options/wc-options-serialize.php:422
|
950 |
-
msgid "on"
|
951 |
-
msgstr "sur"
|
952 |
-
|
953 |
-
#: options/wc-options-serialize.php:423
|
954 |
-
msgid "Start the discussion"
|
955 |
-
msgstr "Démarrer la discussion"
|
956 |
-
|
957 |
-
#: options/wc-options-serialize.php:424
|
958 |
-
msgid "Join the discussion"
|
959 |
-
msgstr "Rejoindre la discussion"
|
960 |
-
|
961 |
-
#: options/wc-options-serialize.php:425 options/wc-options.php:355
|
962 |
-
msgid "Email"
|
963 |
-
msgstr "Email"
|
964 |
-
|
965 |
-
#: options/wc-options-serialize.php:426
|
966 |
-
msgid "Name"
|
967 |
-
msgstr "Nom"
|
968 |
-
|
969 |
-
#: options/wc-options-serialize.php:427
|
970 |
-
msgid "WebSite URL"
|
971 |
-
msgstr "URL du site Web"
|
972 |
-
|
973 |
-
#: options/wc-options-serialize.php:428
|
974 |
-
msgid "Please insert the code above to comment"
|
975 |
-
msgstr "Merci d'insérer le code au dessus du commentaire"
|
976 |
-
|
977 |
-
#: options/wc-options-serialize.php:429
|
978 |
-
msgid "Post Comment"
|
979 |
-
msgstr "Poster le Commentaire"
|
980 |
-
|
981 |
-
#: options/wc-options-serialize.php:435
|
982 |
-
msgid "Load More Comments"
|
983 |
-
msgstr "Afficher plus de Commentaires"
|
984 |
-
|
985 |
-
#: options/wc-options-serialize.php:447
|
986 |
-
msgid "Guest"
|
987 |
-
msgstr "Invité"
|
988 |
-
|
989 |
-
#: options/wc-options-serialize.php:448
|
990 |
-
msgid "Member"
|
991 |
-
msgstr "Membre"
|
992 |
-
|
993 |
-
#: options/wc-options-serialize.php:449
|
994 |
-
msgid "Author"
|
995 |
-
msgstr "Auteur"
|
996 |
-
|
997 |
-
#: options/wc-options-serialize.php:450
|
998 |
-
msgid "Admin"
|
999 |
-
msgstr "Admin"
|
1000 |
-
|
1001 |
-
#: options/wc-options-serialize.php:452
|
1002 |
-
msgid "New comment on the discussion section you've been interested in"
|
1003 |
-
msgstr ""
|
1004 |
-
"Nouveau commentaire dans une section de la discussion à laquelle vous vous êtes "
|
1005 |
-
"intéressé"
|
1006 |
-
|
1007 |
-
#: options/wc-options-serialize.php:454
|
1008 |
-
msgid "New reply on the discussion section you've been interested in"
|
1009 |
-
msgstr ""
|
1010 |
-
"Nouvelle réponse dans une section de la discussion à laquelle vous vous êtes "
|
1011 |
-
"intéressé"
|
1012 |
-
|
1013 |
-
#: options/wc-options-serialize.php:455
|
1014 |
-
msgid "You're subscribed for new replies on this comment"
|
1015 |
-
msgstr "Vous êtes abonné aux nouvelles réponses sur ce commentaire"
|
1016 |
-
|
1017 |
-
#: options/wc-options-serialize.php:456
|
1018 |
-
msgid "You're subscribed for new replies on all your comments"
|
1019 |
-
msgstr "Vous êtes abonné aux nouvelles réponses à tous vos commentaires"
|
1020 |
-
|
1021 |
-
#: options/wc-options-serialize.php:457
|
1022 |
-
msgid "You're subscribed for new follow-up comments on this post"
|
1023 |
-
msgstr "Vous êtes abonné à tous les commentaires de cet article"
|
1024 |
-
|
1025 |
-
#: options/wc-options-serialize.php:465
|
1026 |
-
msgid "please fill out this field to comment"
|
1027 |
-
msgstr "Merci de compléter ce champ pour commenter"
|
1028 |
-
|
1029 |
-
#: options/wc-options-serialize.php:466
|
1030 |
-
msgid "email address is invalid"
|
1031 |
-
msgstr "Adresse email invalide"
|
1032 |
-
|
1033 |
-
#: options/wc-options-serialize.php:467
|
1034 |
-
msgid "url is invalid"
|
1035 |
-
msgstr "URL invalide"
|
1036 |
-
|
1037 |
-
#: options/wc-options-serialize.php:468
|
1038 |
-
msgid "year"
|
1039 |
-
msgstr "année"
|
1040 |
-
|
1041 |
-
#: options/wc-options-serialize.php:469
|
1042 |
-
msgid "years"
|
1043 |
-
msgstr "années"
|
1044 |
-
|
1045 |
-
#: options/wc-options-serialize.php:470
|
1046 |
-
msgid "month"
|
1047 |
-
msgstr "mois"
|
1048 |
-
|
1049 |
-
#: options/wc-options-serialize.php:471
|
1050 |
-
msgid "months"
|
1051 |
-
msgstr "mois"
|
1052 |
-
|
1053 |
-
#: options/wc-options-serialize.php:472
|
1054 |
-
msgid "day"
|
1055 |
-
msgstr "jour"
|
1056 |
-
|
1057 |
-
#: options/wc-options-serialize.php:473
|
1058 |
-
msgid "days"
|
1059 |
-
msgstr "jours"
|
1060 |
-
|
1061 |
-
#: options/wc-options-serialize.php:474
|
1062 |
-
msgid "hour"
|
1063 |
-
msgstr "heure"
|
1064 |
-
|
1065 |
-
#: options/wc-options-serialize.php:475
|
1066 |
-
msgid "hours"
|
1067 |
-
msgstr "heures"
|
1068 |
-
|
1069 |
-
#: options/wc-options-serialize.php:476
|
1070 |
-
msgid "minute"
|
1071 |
-
msgstr "minute"
|
1072 |
-
|
1073 |
-
#: options/wc-options-serialize.php:477
|
1074 |
-
msgid "minutes"
|
1075 |
-
msgstr "minutes"
|
1076 |
-
|
1077 |
-
#: options/wc-options-serialize.php:478
|
1078 |
-
msgid "second"
|
1079 |
-
msgstr "seconde"
|
1080 |
-
|
1081 |
-
#: options/wc-options-serialize.php:479
|
1082 |
-
msgid "seconds"
|
1083 |
-
msgstr "secondes"
|
1084 |
-
|
1085 |
-
#: options/wc-options-serialize.php:480
|
1086 |
-
msgid "right now"
|
1087 |
-
msgstr "à l'instant"
|
1088 |
-
|
1089 |
-
#: options/wc-options-serialize.php:481
|
1090 |
-
msgid "ago"
|
1091 |
-
msgstr "plus tôt"
|
1092 |
-
|
1093 |
-
#: options/wc-options-serialize.php:484
|
1094 |
-
msgid "You are logged in as"
|
1095 |
-
msgstr "Vous êtes connecté en tant que"
|
1096 |
-
|
1097 |
-
#: options/wc-options-serialize.php:486
|
1098 |
-
msgid "logged in"
|
1099 |
-
msgstr "vous connecter"
|
1100 |
-
|
1101 |
-
#: options/wc-options-serialize.php:487
|
1102 |
-
msgid "to post a comment."
|
1103 |
-
msgstr "pour poster un commentaire"
|
1104 |
-
|
1105 |
-
#: options/wc-options-serialize.php:491
|
1106 |
-
msgid "You've already voted for this comment"
|
1107 |
-
msgstr "Vous avez déjà voté pour ce commentaire"
|
1108 |
-
|
1109 |
-
#: options/wc-options-serialize.php:493
|
1110 |
-
msgid "You Must Be Logged In To Vote"
|
1111 |
-
msgstr "Vous devez être connecté pour voter"
|
1112 |
-
|
1113 |
-
#: options/wc-options-serialize.php:494
|
1114 |
-
msgid "You cannot vote for your comment"
|
1115 |
-
msgstr "Vous ne pouvez pas voter pour vos propres commentaires"
|
1116 |
-
|
1117 |
-
#: options/wc-options-serialize.php:495
|
1118 |
-
msgid "You are not allowed to vote for this comment"
|
1119 |
-
msgstr "Vous n'êtes pas autorisé à voter pour ce commentaire"
|
1120 |
-
|
1121 |
-
#: options/wc-options-serialize.php:498
|
1122 |
-
msgid "new comment"
|
1123 |
-
msgstr "nouveau commentaire"
|
1124 |
-
|
1125 |
-
#: options/wc-options-serialize.php:499
|
1126 |
-
msgid "new comments"
|
1127 |
-
msgstr "nouveaux commentaires"
|
1128 |
-
|
1129 |
-
#: options/wc-options-serialize.php:500
|
1130 |
-
msgid "Comment awaiting moderation"
|
1131 |
-
msgstr "Commentaire en attente de modération"
|
1132 |
-
|
1133 |
-
#: options/wc-options-serialize.php:501
|
1134 |
-
msgid "new reply on your comment"
|
1135 |
-
msgstr "nouvelle réponse à votre commentaire"
|
1136 |
-
|
1137 |
-
#: options/wc-options-serialize.php:502
|
1138 |
-
msgid "new replies on your comments"
|
1139 |
-
msgstr "nouvelles réponses à vos commentaires"
|
1140 |
-
|
1141 |
-
#: options/wc-options-serialize.php:506
|
1142 |
-
msgid "You've not made any changes"
|
1143 |
-
msgstr "Vous n'avez fait aucune modification"
|
1144 |
-
|
1145 |
-
#: options/wc-options-serialize.php:509
|
1146 |
-
#, php-format
|
1147 |
-
msgid "Comment text is too long (maximum %s characters allowed)"
|
1148 |
-
msgstr ""
|
1149 |
-
"Le texte du commentaire est trop long (un maximum de %s caractères est autorisé)"
|
1150 |
-
|
1151 |
-
#: options/wc-options.php:28 options/wc-options.php:232
|
1152 |
-
msgid "Hacker?"
|
1153 |
-
msgstr "Hacker ?"
|
1154 |
-
|
1155 |
-
#: options/wc-options.php:87
|
1156 |
-
msgid "wpDiscuz General Settings"
|
1157 |
-
msgstr "Paramètres Généraux wpDiscuz"
|
1158 |
-
|
1159 |
-
#: options/wc-options.php:179
|
1160 |
-
msgid "General settings"
|
1161 |
-
msgstr "Paramètres Généraux"
|
1162 |
-
|
1163 |
-
#: options/wc-options.php:182
|
1164 |
-
msgid "Email Subscription"
|
1165 |
-
msgstr "Abonnement Email"
|
1166 |
-
|
1167 |
-
#: options/wc-options.php:182
|
1168 |
-
msgid "and Postmatic"
|
1169 |
-
msgstr "et Postmatic"
|
1170 |
-
|
1171 |
-
#: options/wc-options.php:213 options/wc-options.php:383
|
1172 |
-
msgid "Save Changes"
|
1173 |
-
msgstr "Enregistrer les modifications"
|
1174 |
-
|
1175 |
-
#: options/wc-options.php:214
|
1176 |
-
msgid "Reset Options"
|
1177 |
-
msgstr "Réinitialiser les options"
|
1178 |
-
|
1179 |
-
#: options/wc-options.php:341
|
1180 |
-
msgid "WpDiscuz Front-end Phrases"
|
1181 |
-
msgstr "Phrases du front-end WpDiscuz"
|
1182 |
-
|
1183 |
-
#: options/wc-options.php:351
|
1184 |
-
msgid "General"
|
1185 |
-
msgstr "Général"
|
1186 |
-
|
1187 |
-
#: options/wc-options.php:352
|
1188 |
-
msgid "Form"
|
1189 |
-
msgstr "Formulaire"
|
1190 |
-
|
1191 |
-
#: options/wc-options.php:354
|
1192 |
-
msgid "Date/Time"
|
1193 |
-
msgstr "Date / Heure"
|
1194 |
-
|
1195 |
-
#: options/wc-options.php:356
|
1196 |
-
msgid "Notification"
|
1197 |
-
msgstr "Notification"
|
1198 |
-
|
1199 |
-
#: wc.php:1020
|
1200 |
-
msgid "Phrases"
|
1201 |
-
msgstr "Phrases"
|
1202 |
-
|
1203 |
-
#. Plugin Name of the plugin/theme
|
1204 |
-
msgid "wpDiscuz - Wordpress Comments"
|
1205 |
-
msgstr ""
|
1206 |
-
|
1207 |
-
#. Plugin URI of the plugin/theme
|
1208 |
-
msgid "http://www.gvectors.com/wpdiscuz/"
|
1209 |
-
msgstr ""
|
1210 |
-
|
1211 |
-
#. Description of the plugin/theme
|
1212 |
-
msgid ""
|
1213 |
-
"Better comment system. Wordpress post comments and discussion plugin. Allows your "
|
1214 |
-
"visitors discuss, vote for comments and share."
|
1215 |
-
msgstr ""
|
1216 |
-
|
1217 |
-
#. Author of the plugin/theme
|
1218 |
-
msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
|
1219 |
-
msgstr ""
|
1220 |
-
|
1221 |
-
#. Author URI of the plugin/theme
|
1222 |
-
msgid "http://www.gvectors.com/"
|
1223 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpdiscuz-hy_HY.mo
DELETED
Binary file
|
languages/wpdiscuz-hy_HY.po
DELETED
@@ -1,1160 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
-
"POT-Creation-Date: 2015-05-15 22:52+0400\n"
|
5 |
-
"PO-Revision-Date: 2015-05-15 23:57+0400\n"
|
6 |
-
"Last-Translator: advancedcoding <advancedcoding@mail.ru>\n"
|
7 |
-
"Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
|
8 |
-
"Language: en\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.7.6\n"
|
13 |
-
"X-Poedit-Basepath: ..\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
-
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
-
|
22 |
-
#: comment-form/form.php:178 comment-form/tpl-comment.php:265
|
23 |
-
msgid "Participate in this discussion via email"
|
24 |
-
msgstr "Մասնակցել այս քննարկմանը էլ-փոստով"
|
25 |
-
|
26 |
-
#: comment-form/form.php:316
|
27 |
-
msgid "Connect with"
|
28 |
-
msgstr "Մուտք գործել"
|
29 |
-
|
30 |
-
#: comment-form/tpl-comment.php:87 wc.php:318
|
31 |
-
msgid "Anonymous"
|
32 |
-
msgstr "Անանուն"
|
33 |
-
|
34 |
-
#: comment-form/tpl-comment.php:179
|
35 |
-
#: options/phrases-layout/phrases-comment.php:27
|
36 |
-
#: options/wc-options-serialize.php:402
|
37 |
-
msgid "Edit"
|
38 |
-
msgstr "Խմբագրել"
|
39 |
-
|
40 |
-
#: options/options-layouts/settings-general.php:2
|
41 |
-
msgid "General Settings"
|
42 |
-
msgstr "Գլխավոր պարամետրեր"
|
43 |
-
|
44 |
-
#: options/options-layouts/settings-general.php:7
|
45 |
-
msgid "Display comment form for post types:"
|
46 |
-
msgstr "Միացնել մեկնաբանությունները այս տիպերի համար"
|
47 |
-
|
48 |
-
#: options/options-layouts/settings-general.php:28
|
49 |
-
msgid "User Must be registered to comment"
|
50 |
-
msgstr "Մեկնաբանություն թողնելու համար գրանցվելը պարտադիր է"
|
51 |
-
|
52 |
-
#: options/options-layouts/settings-general.php:34
|
53 |
-
msgid "Yes"
|
54 |
-
msgstr "Այո"
|
55 |
-
|
56 |
-
#: options/options-layouts/settings-general.php:38
|
57 |
-
msgid "No"
|
58 |
-
msgstr "Ոչ"
|
59 |
-
|
60 |
-
#: options/options-layouts/settings-general.php:46
|
61 |
-
msgid "Comment author must fill out name"
|
62 |
-
msgstr "Մեկնաբանության հեղինակը պետք է պարտադիր լրացնի անունը"
|
63 |
-
|
64 |
-
#: options/options-layouts/settings-general.php:57
|
65 |
-
msgid "Comment author must fill out email"
|
66 |
-
msgstr "Մեկնաբանության հեղինակը պետք է պարտադիր լրացնի էլ-փոստը"
|
67 |
-
|
68 |
-
#: options/options-layouts/settings-general.php:68
|
69 |
-
msgid "Show the latest comments on"
|
70 |
-
msgstr "Ցույց տալ վերջին մեկնաբանությունները"
|
71 |
-
|
72 |
-
#: options/options-layouts/settings-general.php:72
|
73 |
-
msgid "the top of the list"
|
74 |
-
msgstr "վերևում"
|
75 |
-
|
76 |
-
#: options/options-layouts/settings-general.php:74
|
77 |
-
msgid "top of the threads"
|
78 |
-
msgstr "վերևում"
|
79 |
-
|
80 |
-
#: options/options-layouts/settings-general.php:76
|
81 |
-
msgid "bottom of the threads"
|
82 |
-
msgstr "ներքևում"
|
83 |
-
|
84 |
-
#: options/options-layouts/settings-general.php:78
|
85 |
-
msgid "the bottom of the list"
|
86 |
-
msgstr "ներքևում"
|
87 |
-
|
88 |
-
#: options/options-layouts/settings-general.php:86
|
89 |
-
msgid "Comment Threads Per Page"
|
90 |
-
msgstr "Գլպավոր մեկնաբանությունների քանակը "
|
91 |
-
|
92 |
-
#: options/options-layouts/settings-general.php:98
|
93 |
-
msgid "Comments max depth"
|
94 |
-
msgstr "Մեկնաբանությունների խորությունը"
|
95 |
-
|
96 |
-
#: options/options-layouts/settings-general.php:103
|
97 |
-
msgid "Level"
|
98 |
-
msgstr "Մակարդակ"
|
99 |
-
|
100 |
-
#: options/options-layouts/settings-general.php:104
|
101 |
-
#: options/options-layouts/settings-general.php:105
|
102 |
-
#: options/options-layouts/settings-general.php:106
|
103 |
-
#: options/options-layouts/settings-general.php:107
|
104 |
-
msgid "Levels"
|
105 |
-
msgstr "Մակարդակներ"
|
106 |
-
|
107 |
-
#: options/options-layouts/settings-general.php:114
|
108 |
-
msgid "Comment text size in pixels"
|
109 |
-
msgstr "Մեկնաբանության տեքստի չափը "
|
110 |
-
|
111 |
-
#: options/options-layouts/settings-general.php:131
|
112 |
-
msgid "Allow comment editing for"
|
113 |
-
msgstr "Թույլատրել մեկնաբանությունների խմբագրումը"
|
114 |
-
|
115 |
-
#: options/options-layouts/settings-general.php:136
|
116 |
-
msgid "Not Allow"
|
117 |
-
msgstr "Չթույլատրել"
|
118 |
-
|
119 |
-
#: options/options-layouts/settings-general.php:137
|
120 |
-
#: options/options-layouts/settings-general.php:138
|
121 |
-
#: options/options-layouts/settings-live-update.php:41
|
122 |
-
#: options/options-layouts/settings-live-update.php:42
|
123 |
-
#: options/options-layouts/settings-live-update.php:43
|
124 |
-
msgid "Minutes"
|
125 |
-
msgstr "Րոպեներ"
|
126 |
-
|
127 |
-
#: options/options-layouts/settings-general.php:139
|
128 |
-
#: options/phrases-layout/phrases-datetime.php:73
|
129 |
-
msgid "Hour"
|
130 |
-
msgstr "Ժամ"
|
131 |
-
|
132 |
-
#: options/options-layouts/settings-general.php:140
|
133 |
-
#: options/options-layouts/settings-general.php:141
|
134 |
-
msgid "Hours"
|
135 |
-
msgstr "Ժամեր"
|
136 |
-
|
137 |
-
#: options/options-layouts/settings-general.php:148
|
138 |
-
msgid "Redirect first commenter to"
|
139 |
-
msgstr "Վերահղել առաջին մեկնաբանություն անողին դեպի"
|
140 |
-
|
141 |
-
#: options/options-layouts/settings-general.php:155
|
142 |
-
msgid "Do not redirect"
|
143 |
-
msgstr "Չվերահղել"
|
144 |
-
|
145 |
-
#: options/options-layouts/settings-general.php:164
|
146 |
-
msgid "Allow guests to vote on comments"
|
147 |
-
msgstr "Թույլատրել \"հյուրերին\" քվեարկել մեկնաբանություններին"
|
148 |
-
|
149 |
-
#: options/options-layouts/settings-general.php:174
|
150 |
-
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
151 |
-
msgstr "Ցույց տալ բոլոր մեկնաբանությունները"
|
152 |
-
|
153 |
-
#: options/options-layouts/settings-general.php:185
|
154 |
-
msgid "Use WordPress Date/Time format"
|
155 |
-
msgstr "Օգտվել WordPress-ի ամսաթվային ֆորմատից"
|
156 |
-
|
157 |
-
#: options/options-layouts/settings-general.php:186
|
158 |
-
msgid ""
|
159 |
-
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
160 |
-
"show the date/time format set in WordPress General Settings."
|
161 |
-
msgstr "wpDiscuz-ը ցույց ե տալիս ամսաթիվը ընթռնելի ֆորմատով"
|
162 |
-
|
163 |
-
#: options/options-layouts/settings-general.php:193
|
164 |
-
msgid "Current Wordpress date/time format"
|
165 |
-
msgstr "Wordpress-ի Ընթացիկ ամսաթվային ֆորմատ"
|
166 |
-
|
167 |
-
#: options/options-layouts/settings-general.php:202
|
168 |
-
msgid ""
|
169 |
-
"Help wpDiscuz to grow allowing people to recognize which comment plugin you "
|
170 |
-
"use"
|
171 |
-
msgstr ""
|
172 |
-
"Օգնեք wpDiscuz-ին զարգանալու համար, թույլ տալով մարդկանց տեսնելու թե ինչ "
|
173 |
-
"plugin եք դուք օգտագործում"
|
174 |
-
|
175 |
-
#: options/options-layouts/settings-general.php:204
|
176 |
-
msgid ""
|
177 |
-
"Please check this option on to help wpDiscuz get more popularity as your "
|
178 |
-
"thank to the hard work we do for you totally free. This option adds a very "
|
179 |
-
"small (16x16px) icon under the comment section which will allow your site "
|
180 |
-
"visitors recognize the name of comment solution you use."
|
181 |
-
msgstr ""
|
182 |
-
"Խնդրում ենք միացրեք այս օպցիան որպեսզի օգնեք wpDiscuz-ին ավելի ճանաչելի "
|
183 |
-
"դառնալու ճանապարհին"
|
184 |
-
|
185 |
-
#: options/options-layouts/settings-general.php:209
|
186 |
-
msgid "Thank you!"
|
187 |
-
msgstr "Շնորհակալություն"
|
188 |
-
|
189 |
-
#: options/options-layouts/settings-live-update.php:2
|
190 |
-
#: options/wc-options.php:176
|
191 |
-
msgid "Live Update"
|
192 |
-
msgstr "Մեկնաբանությունների ընթացիկ թարմացում"
|
193 |
-
|
194 |
-
#: options/options-layouts/settings-live-update.php:8
|
195 |
-
msgid "Live update options"
|
196 |
-
msgstr "ընթացիկ թարմացման օպցիաներ"
|
197 |
-
|
198 |
-
#: options/options-layouts/settings-live-update.php:9
|
199 |
-
msgid ""
|
200 |
-
"If you use Shared Web Hosting you should make sure the \"Live Update\" "
|
201 |
-
"function doesn't overload your server resources. This function is good for "
|
202 |
-
"VPS and Dedicated Hosting Plans."
|
203 |
-
msgstr ""
|
204 |
-
"Եթե դուք օգտագործում եք Shared Վեբ Հոսթինգ դուք պետք է համոզվեք, որ \"Live "
|
205 |
-
"Update \" օպցիան չի ծանրաբեռնել ձեր սերվերի ռեսուրսները. Այս օպցաին լավ է "
|
206 |
-
"VPS սերվերների համար."
|
207 |
-
|
208 |
-
#: options/options-layouts/settings-live-update.php:14
|
209 |
-
msgid "Never update"
|
210 |
-
msgstr "Չթարմացնել"
|
211 |
-
|
212 |
-
#: options/options-layouts/settings-live-update.php:16
|
213 |
-
msgid "Turn off \"Live Update\" function"
|
214 |
-
msgstr "Անջատել ընթացիկ թարմացումը"
|
215 |
-
|
216 |
-
#: options/options-layouts/settings-live-update.php:18
|
217 |
-
msgid "Show new comment/reply buttons to update manualy"
|
218 |
-
msgstr ""
|
219 |
-
"Ցույց տալ նոր մեկնաբանություն / պատասխան կոճակները ձեռքով թարմացնելու համար"
|
220 |
-
|
221 |
-
#: options/options-layouts/settings-live-update.php:20
|
222 |
-
msgid "Always check for new comments and show update buttons"
|
223 |
-
msgstr "Միշտ ստուգել նոր մեկնաբանությունները եւ ցույց տալ թարմացման կոճակները"
|
224 |
-
|
225 |
-
#: options/options-layouts/settings-live-update.php:22
|
226 |
-
msgid "Always update"
|
227 |
-
msgstr "Միշտ թարմացնել"
|
228 |
-
|
229 |
-
#: options/options-layouts/settings-live-update.php:24
|
230 |
-
msgid "Always check for new comments and update automatically"
|
231 |
-
msgstr "Միշտ ստուգել նոր մեկնաբանությունները եւ թարմացնել ավտոմատ կերպով"
|
232 |
-
|
233 |
-
#: options/options-layouts/settings-live-update.php:32
|
234 |
-
msgid "Update comment list every"
|
235 |
-
msgstr "Թարմացնել մեկնաբանությունները ամեն"
|
236 |
-
|
237 |
-
#: options/options-layouts/settings-live-update.php:37
|
238 |
-
#: options/options-layouts/settings-live-update.php:38
|
239 |
-
#: options/options-layouts/settings-live-update.php:39
|
240 |
-
msgid "Seconds"
|
241 |
-
msgstr "Վարկյաններ"
|
242 |
-
|
243 |
-
#: options/options-layouts/settings-live-update.php:40
|
244 |
-
#: options/phrases-layout/phrases-datetime.php:95
|
245 |
-
msgid "Minute"
|
246 |
-
msgstr "Րոպե"
|
247 |
-
|
248 |
-
#: options/options-layouts/settings-show-hide.php:2 options/wc-options.php:177
|
249 |
-
msgid "Show/Hide Components"
|
250 |
-
msgstr "Ցույց տալ / չտալ կոմպոնենտներ"
|
251 |
-
|
252 |
-
#: options/options-layouts/settings-show-hide.php:7
|
253 |
-
msgid "Show logged-in user name and logout link on top of main form"
|
254 |
-
msgstr ""
|
255 |
-
"Ցույց տալ լոգին եխած օգտագործողների անունը և լոգաուտ լինկը ֆորմի վերևում"
|
256 |
-
|
257 |
-
#: options/options-layouts/settings-show-hide.php:17
|
258 |
-
msgid "Hide Reply button for Guests"
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: options/options-layouts/settings-show-hide.php:27
|
262 |
-
msgid "Hide Reply button for Members"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: options/options-layouts/settings-show-hide.php:37
|
266 |
-
msgid "Hide Author Titles"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: options/options-layouts/settings-show-hide.php:47
|
270 |
-
msgid "Hide Voting buttons"
|
271 |
-
msgstr ""
|
272 |
-
|
273 |
-
#: options/options-layouts/settings-show-hide.php:57
|
274 |
-
msgid "Hide Share Buttons"
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
-
#: options/options-layouts/settings-show-hide.php:67
|
278 |
-
msgid "Hide the CAPTCHA field"
|
279 |
-
msgstr ""
|
280 |
-
|
281 |
-
#: options/options-layouts/settings-show-hide.php:77
|
282 |
-
msgid "Hide the Website URL field"
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
#: options/options-layouts/settings-social.php:10
|
286 |
-
#: options/options-layouts/settings-social.php:12
|
287 |
-
#: options/options-layouts/settings-social.php:14 wc.php:1021
|
288 |
-
msgid "Settings"
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: options/options-layouts/settings-social.php:19
|
292 |
-
#: options/options-layouts/settings-social.php:29
|
293 |
-
#: options/options-layouts/settings-social.php:39
|
294 |
-
msgid "Activate"
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: options/options-layouts/settings-social.php:23
|
298 |
-
#: options/options-layouts/settings-social.php:33
|
299 |
-
#: options/options-layouts/settings-social.php:43
|
300 |
-
msgid "View details/Install"
|
301 |
-
msgstr ""
|
302 |
-
|
303 |
-
#: options/options-layouts/settings-social.php:75 options/wc-options.php:180
|
304 |
-
msgid "Social Login"
|
305 |
-
msgstr ""
|
306 |
-
|
307 |
-
#: options/options-layouts/settings-social.php:76
|
308 |
-
msgid ""
|
309 |
-
"You can use one of these most popular Social Login Plugins to allow your "
|
310 |
-
"visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, "
|
311 |
-
"OK and lots of other social network service accounts. All social login "
|
312 |
-
"buttons will be fully integrated with wpDiscuz comment forms."
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: options/options-layouts/settings-style.php:2 options/wc-options.php:179
|
316 |
-
msgid "Background and Colors"
|
317 |
-
msgstr ""
|
318 |
-
|
319 |
-
#: options/options-layouts/settings-style.php:7
|
320 |
-
msgid "Comment Form Background Color"
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: options/options-layouts/settings-style.php:10
|
324 |
-
#: options/options-layouts/settings-style.php:34
|
325 |
-
#: options/options-layouts/settings-style.php:58
|
326 |
-
#: options/options-layouts/settings-style.php:82
|
327 |
-
#: options/options-layouts/settings-style.php:107
|
328 |
-
#: options/options-layouts/settings-style.php:132
|
329 |
-
#: options/options-layouts/settings-style.php:155
|
330 |
-
#: options/options-layouts/settings-style.php:178
|
331 |
-
msgid "Example: #00ff00"
|
332 |
-
msgstr ""
|
333 |
-
|
334 |
-
#: options/options-layouts/settings-style.php:31
|
335 |
-
msgid "Comment Background Color"
|
336 |
-
msgstr ""
|
337 |
-
|
338 |
-
#: options/options-layouts/settings-style.php:55
|
339 |
-
msgid "Reply Background Color"
|
340 |
-
msgstr ""
|
341 |
-
|
342 |
-
#: options/options-layouts/settings-style.php:79
|
343 |
-
msgid "Comment Text Color"
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: options/options-layouts/settings-style.php:104
|
347 |
-
msgid "Author title color"
|
348 |
-
msgstr ""
|
349 |
-
|
350 |
-
#: options/options-layouts/settings-style.php:129
|
351 |
-
msgid "Vote, Reply, Share, Edit links text colors"
|
352 |
-
msgstr ""
|
353 |
-
|
354 |
-
#: options/options-layouts/settings-style.php:152
|
355 |
-
msgid "Comment form fields border color"
|
356 |
-
msgstr ""
|
357 |
-
|
358 |
-
#: options/options-layouts/settings-style.php:175
|
359 |
-
msgid "New loaded comments' background color"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: options/options-layouts/settings-style.php:199
|
363 |
-
msgid "Custom CSS Code"
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: options/options-layouts/settings-subscription.php:2
|
367 |
-
msgid "Email Subscription Settings"
|
368 |
-
msgstr ""
|
369 |
-
|
370 |
-
#: options/options-layouts/settings-subscription.php:7
|
371 |
-
msgid "Show \"Notify of all new follow-up comments\""
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: options/options-layouts/settings-subscription.php:8
|
375 |
-
msgid "Show \"Notify of new replies to all my comments\""
|
376 |
-
msgstr ""
|
377 |
-
|
378 |
-
#: options/options-layouts/settings-subscription.php:9
|
379 |
-
msgid "Show \"Notify of new replies to this comment\""
|
380 |
-
msgstr ""
|
381 |
-
|
382 |
-
#: options/options-layouts/settings-subscription.php:11
|
383 |
-
msgid ""
|
384 |
-
"Please keep all three or at least one of those options ON, otherwise users "
|
385 |
-
"will not have any option for email notifications and they'll not get any "
|
386 |
-
"messages."
|
387 |
-
msgstr ""
|
388 |
-
|
389 |
-
#: options/options-layouts/settings-subscription.php:30
|
390 |
-
msgid "Use Postmatic for subscriptions and commenting by email"
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: options/options-layouts/settings-subscription.php:31
|
394 |
-
msgid ""
|
395 |
-
"Postmatic allows your users subscribe to comments. Instead of just being "
|
396 |
-
"notified, they add a reply right from their inbox."
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
#: options/options-layouts/settings-subscription.php:42
|
400 |
-
msgid ""
|
401 |
-
"Keep selected the email notification of all new follow-up comments by default"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: options/options-layouts/settings-subscription.php:43
|
405 |
-
msgid ""
|
406 |
-
"If this option is checked-on, in Manage Subscriptions section of comment "
|
407 |
-
"forms will only be displayed the \"Notify of all new follow-up comments\" "
|
408 |
-
"option and this option will always be selected by default."
|
409 |
-
msgstr ""
|
410 |
-
|
411 |
-
#: options/phrases-layout/phrases-comment.php:2
|
412 |
-
msgid "Comment Template Phrases"
|
413 |
-
msgstr ""
|
414 |
-
|
415 |
-
#: options/phrases-layout/phrases-comment.php:7
|
416 |
-
#: options/wc-options-serialize.php:400
|
417 |
-
msgid "Reply"
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: options/phrases-layout/phrases-comment.php:17
|
421 |
-
#: options/wc-options-serialize.php:401
|
422 |
-
msgid "Share"
|
423 |
-
msgstr ""
|
424 |
-
|
425 |
-
#: options/phrases-layout/phrases-comment.php:37
|
426 |
-
#: options/wc-options-serialize.php:403
|
427 |
-
msgid "Share On Facebook"
|
428 |
-
msgstr ""
|
429 |
-
|
430 |
-
#: options/phrases-layout/phrases-comment.php:47
|
431 |
-
#: options/wc-options-serialize.php:404
|
432 |
-
msgid "Share On Twitter"
|
433 |
-
msgstr ""
|
434 |
-
|
435 |
-
#: options/phrases-layout/phrases-comment.php:57
|
436 |
-
#: options/wc-options-serialize.php:405
|
437 |
-
msgid "Share On Google"
|
438 |
-
msgstr ""
|
439 |
-
|
440 |
-
#: options/phrases-layout/phrases-comment.php:67
|
441 |
-
#: options/wc-options-serialize.php:406
|
442 |
-
msgid "Share On VKontakte"
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: options/phrases-layout/phrases-comment.php:77
|
446 |
-
#: options/wc-options-serialize.php:407
|
447 |
-
msgid "Share On Odnoklassniki"
|
448 |
-
msgstr ""
|
449 |
-
|
450 |
-
#: options/phrases-layout/phrases-comment.php:87
|
451 |
-
#: options/wc-options-serialize.php:408
|
452 |
-
msgid "Hide Replies"
|
453 |
-
msgstr ""
|
454 |
-
|
455 |
-
#: options/phrases-layout/phrases-comment.php:97
|
456 |
-
#: options/wc-options-serialize.php:409
|
457 |
-
msgid "Show Replies"
|
458 |
-
msgstr ""
|
459 |
-
|
460 |
-
#: options/phrases-layout/phrases-comment.php:107
|
461 |
-
msgid "Title For Guests"
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: options/phrases-layout/phrases-comment.php:117
|
465 |
-
msgid "Title For Members"
|
466 |
-
msgstr ""
|
467 |
-
|
468 |
-
#: options/phrases-layout/phrases-comment.php:127
|
469 |
-
msgid "Title For Authors"
|
470 |
-
msgstr ""
|
471 |
-
|
472 |
-
#: options/phrases-layout/phrases-comment.php:137
|
473 |
-
msgid "Title For Admins"
|
474 |
-
msgstr ""
|
475 |
-
|
476 |
-
#: options/phrases-layout/phrases-comment.php:147
|
477 |
-
#: options/wc-options-serialize.php:451
|
478 |
-
msgid "Vote Up"
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: options/phrases-layout/phrases-comment.php:157
|
482 |
-
#: options/wc-options-serialize.php:452
|
483 |
-
msgid "Vote Down"
|
484 |
-
msgstr ""
|
485 |
-
|
486 |
-
#: options/phrases-layout/phrases-comment.php:167
|
487 |
-
msgid "Save edited comment button text"
|
488 |
-
msgstr ""
|
489 |
-
|
490 |
-
#: options/phrases-layout/phrases-comment.php:171
|
491 |
-
#: options/wc-options-serialize.php:470
|
492 |
-
msgid "Save"
|
493 |
-
msgstr ""
|
494 |
-
|
495 |
-
#: options/phrases-layout/phrases-comment.php:177
|
496 |
-
msgid "Cancel comment editing button text"
|
497 |
-
msgstr ""
|
498 |
-
|
499 |
-
#: options/phrases-layout/phrases-comment.php:181
|
500 |
-
#: options/wc-options-serialize.php:471
|
501 |
-
msgid "Cancel"
|
502 |
-
msgstr ""
|
503 |
-
|
504 |
-
#: options/phrases-layout/phrases-datetime.php:2
|
505 |
-
msgid "Date/Time Phrases"
|
506 |
-
msgstr ""
|
507 |
-
|
508 |
-
#: options/phrases-layout/phrases-datetime.php:7
|
509 |
-
msgid "Year"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: options/phrases-layout/phrases-datetime.php:18
|
513 |
-
msgid "Years (Plural Form)"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: options/phrases-layout/phrases-datetime.php:22
|
517 |
-
msgid "Years"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: options/phrases-layout/phrases-datetime.php:29
|
521 |
-
msgid "Month"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: options/phrases-layout/phrases-datetime.php:40
|
525 |
-
msgid "Months (Plural Form)"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: options/phrases-layout/phrases-datetime.php:51
|
529 |
-
msgid "Day"
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: options/phrases-layout/phrases-datetime.php:62
|
533 |
-
msgid "Days (Plural Form)"
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: options/phrases-layout/phrases-datetime.php:84
|
537 |
-
msgid "Hours (Plural Form)"
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
#: options/phrases-layout/phrases-datetime.php:106
|
541 |
-
msgid "Minutes (Plural Form)"
|
542 |
-
msgstr ""
|
543 |
-
|
544 |
-
#: options/phrases-layout/phrases-datetime.php:117
|
545 |
-
msgid "Second"
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: options/phrases-layout/phrases-datetime.php:128
|
549 |
-
msgid "Seconds (Plural Form)"
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
#: options/phrases-layout/phrases-datetime.php:138
|
553 |
-
msgid "Commented \"right now\" text"
|
554 |
-
msgstr ""
|
555 |
-
|
556 |
-
#: options/phrases-layout/phrases-datetime.php:149
|
557 |
-
msgid "Ago text"
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: options/phrases-layout/phrases-datetime.php:160
|
561 |
-
msgid "\"Today\" text"
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
#: options/phrases-layout/phrases-datetime.php:164
|
565 |
-
#: options/wc-options-serialize.php:445
|
566 |
-
msgid "Today"
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: options/phrases-layout/phrases-email.php:2
|
570 |
-
msgid "Email Template Phrases"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: options/phrases-layout/phrases-email.php:7
|
574 |
-
msgid "Email Subject"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: options/phrases-layout/phrases-email.php:18
|
578 |
-
msgid "Email Message"
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: options/phrases-layout/phrases-email.php:29
|
582 |
-
msgid "New Reply Subject"
|
583 |
-
msgstr ""
|
584 |
-
|
585 |
-
#: options/phrases-layout/phrases-email.php:33
|
586 |
-
#: options/phrases-layout/phrases-general.php:101
|
587 |
-
#: options/wc-options-serialize.php:416
|
588 |
-
msgid "New Reply"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: options/phrases-layout/phrases-email.php:40
|
592 |
-
msgid "New Reply Message"
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: options/phrases-layout/phrases-email.php:50
|
596 |
-
#: options/phrases-layout/phrases-email.php:54
|
597 |
-
#: options/wc-options-serialize.php:421
|
598 |
-
msgid "Unsubscribe"
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: options/phrases-layout/phrases-email.php:61
|
602 |
-
#: options/phrases-layout/phrases-email.php:65
|
603 |
-
#: options/wc-options-serialize.php:422
|
604 |
-
msgid "Ignore Subscription"
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: options/phrases-layout/phrases-email.php:72
|
608 |
-
#: options/phrases-layout/phrases-email.php:76
|
609 |
-
#: options/wc-options-serialize.php:424
|
610 |
-
msgid "Confirm your subscription"
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: options/phrases-layout/phrases-email.php:82
|
614 |
-
#: options/phrases-layout/phrases-email.php:86
|
615 |
-
#: options/wc-options-serialize.php:425
|
616 |
-
msgid "You've successfully confirmed your subscription."
|
617 |
-
msgstr ""
|
618 |
-
|
619 |
-
#: options/phrases-layout/phrases-email.php:92
|
620 |
-
msgid "Subscribe Confirmation Email Subject"
|
621 |
-
msgstr ""
|
622 |
-
|
623 |
-
#: options/phrases-layout/phrases-email.php:96
|
624 |
-
#: options/wc-options-serialize.php:426 wc.php:944
|
625 |
-
msgid "Subscribe Confirmation"
|
626 |
-
msgstr ""
|
627 |
-
|
628 |
-
#: options/phrases-layout/phrases-email.php:103
|
629 |
-
msgid "Subscribe Confirmation Email Content"
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: options/phrases-layout/phrases-email.php:107
|
633 |
-
#: options/wc-options-serialize.php:427 wc.php:945
|
634 |
-
msgid ""
|
635 |
-
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
636 |
-
"you will receive an email when new comments are posted according to "
|
637 |
-
"subscription option you've chosen. <br/> To activate, click confirm below. "
|
638 |
-
"If you believe this is an error, ignore this message and we'll never bother "
|
639 |
-
"you again."
|
640 |
-
msgstr ""
|
641 |
-
|
642 |
-
#: options/phrases-layout/phrases-form.php:2
|
643 |
-
msgid "Form Template Phrases"
|
644 |
-
msgstr ""
|
645 |
-
|
646 |
-
#: options/phrases-layout/phrases-form.php:7
|
647 |
-
msgid "Comment Field Start"
|
648 |
-
msgstr ""
|
649 |
-
|
650 |
-
#: options/phrases-layout/phrases-form.php:17
|
651 |
-
msgid "Comment Field Join"
|
652 |
-
msgstr ""
|
653 |
-
|
654 |
-
#: options/phrases-layout/phrases-form.php:27
|
655 |
-
msgid "Email Field"
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: options/phrases-layout/phrases-form.php:37
|
659 |
-
msgid "Name Field"
|
660 |
-
msgstr ""
|
661 |
-
|
662 |
-
#: options/phrases-layout/phrases-form.php:47
|
663 |
-
msgid "WebSite URL Field"
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
#: options/phrases-layout/phrases-form.php:57
|
667 |
-
msgid "CAPTCHA Field"
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
-
#: options/phrases-layout/phrases-form.php:67
|
671 |
-
msgid "Submit Button"
|
672 |
-
msgstr ""
|
673 |
-
|
674 |
-
#: options/phrases-layout/phrases-form.php:77
|
675 |
-
#: options/phrases-layout/phrases-form.php:81
|
676 |
-
#: options/wc-options-serialize.php:393
|
677 |
-
msgid "Manage Subscriptions"
|
678 |
-
msgstr ""
|
679 |
-
|
680 |
-
#: options/phrases-layout/phrases-form.php:87
|
681 |
-
msgid "Notify \"None\""
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
-
#: options/phrases-layout/phrases-form.php:91
|
685 |
-
#: options/wc-options-serialize.php:394
|
686 |
-
msgid "None"
|
687 |
-
msgstr ""
|
688 |
-
|
689 |
-
#: options/phrases-layout/phrases-form.php:97
|
690 |
-
msgid "Notify on new comments (checkbox)"
|
691 |
-
msgstr ""
|
692 |
-
|
693 |
-
#: options/phrases-layout/phrases-form.php:101
|
694 |
-
#: options/wc-options-serialize.php:395
|
695 |
-
msgid "Notify of all new follow-up comments"
|
696 |
-
msgstr ""
|
697 |
-
|
698 |
-
#: options/phrases-layout/phrases-form.php:108
|
699 |
-
msgid "Notify on all new replies (checkbox)"
|
700 |
-
msgstr ""
|
701 |
-
|
702 |
-
#: options/phrases-layout/phrases-form.php:112
|
703 |
-
#: options/wc-options-serialize.php:396
|
704 |
-
msgid "Notify of new replies to all my comments"
|
705 |
-
msgstr ""
|
706 |
-
|
707 |
-
#: options/phrases-layout/phrases-form.php:119
|
708 |
-
msgid "Notify on new replies (checkbox)"
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
#: options/phrases-layout/phrases-form.php:123
|
712 |
-
#: options/wc-options-serialize.php:397
|
713 |
-
msgid "Notify of new replies to this comment"
|
714 |
-
msgstr ""
|
715 |
-
|
716 |
-
#: options/phrases-layout/phrases-form.php:129
|
717 |
-
msgid "Subscribed on this comment replies"
|
718 |
-
msgstr ""
|
719 |
-
|
720 |
-
#: options/phrases-layout/phrases-form.php:139
|
721 |
-
msgid "Subscribed on all your comments replies"
|
722 |
-
msgstr ""
|
723 |
-
|
724 |
-
#: options/phrases-layout/phrases-form.php:149
|
725 |
-
msgid "Subscribed on this post"
|
726 |
-
msgstr ""
|
727 |
-
|
728 |
-
#: options/phrases-layout/phrases-general.php:2
|
729 |
-
msgid "General Phrases"
|
730 |
-
msgstr ""
|
731 |
-
|
732 |
-
#: options/phrases-layout/phrases-general.php:7
|
733 |
-
#: options/wc-options-serialize.php:381
|
734 |
-
msgid "Leave a Reply"
|
735 |
-
msgstr ""
|
736 |
-
|
737 |
-
#: options/phrases-layout/phrases-general.php:17
|
738 |
-
msgid "Be the first to comment"
|
739 |
-
msgstr ""
|
740 |
-
|
741 |
-
#: options/phrases-layout/phrases-general.php:27
|
742 |
-
#: options/wc-options-serialize.php:383 options/wc-options.php:350
|
743 |
-
msgid "Comment"
|
744 |
-
msgstr ""
|
745 |
-
|
746 |
-
#: options/phrases-layout/phrases-general.php:37
|
747 |
-
msgid "Comment (Plural Form)"
|
748 |
-
msgstr ""
|
749 |
-
|
750 |
-
#: options/phrases-layout/phrases-general.php:47
|
751 |
-
msgid "On"
|
752 |
-
msgstr ""
|
753 |
-
|
754 |
-
#: options/phrases-layout/phrases-general.php:57
|
755 |
-
msgid "Load More Button"
|
756 |
-
msgstr ""
|
757 |
-
|
758 |
-
#: options/phrases-layout/phrases-general.php:67
|
759 |
-
#: options/wc-options-serialize.php:399
|
760 |
-
msgid "Load Rest of Comments"
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: options/phrases-layout/phrases-general.php:77
|
764 |
-
msgid "Button text if has new comment"
|
765 |
-
msgstr ""
|
766 |
-
|
767 |
-
#: options/phrases-layout/phrases-general.php:81
|
768 |
-
#: options/wc-options-serialize.php:414
|
769 |
-
msgid "New Comment"
|
770 |
-
msgstr ""
|
771 |
-
|
772 |
-
#: options/phrases-layout/phrases-general.php:87
|
773 |
-
msgid "Button text if has new comments (Plural Form)"
|
774 |
-
msgstr ""
|
775 |
-
|
776 |
-
#: options/phrases-layout/phrases-general.php:91
|
777 |
-
msgid "New Comments"
|
778 |
-
msgstr ""
|
779 |
-
|
780 |
-
#: options/phrases-layout/phrases-general.php:97
|
781 |
-
msgid "Button text if has new reply"
|
782 |
-
msgstr ""
|
783 |
-
|
784 |
-
#: options/phrases-layout/phrases-general.php:107
|
785 |
-
msgid "Button text if has new replies (Plural Form)"
|
786 |
-
msgstr ""
|
787 |
-
|
788 |
-
#: options/phrases-layout/phrases-general.php:111
|
789 |
-
msgid "New Replies"
|
790 |
-
msgstr ""
|
791 |
-
|
792 |
-
#: options/phrases-layout/phrases-general.php:117
|
793 |
-
msgid "Text on load more button if has new comment(s)"
|
794 |
-
msgstr ""
|
795 |
-
|
796 |
-
#: options/phrases-layout/phrases-general.php:121
|
797 |
-
#: options/wc-options-serialize.php:466
|
798 |
-
msgid "New"
|
799 |
-
msgstr ""
|
800 |
-
|
801 |
-
#: options/phrases-layout/phrases-notification.php:2
|
802 |
-
msgid "Notification Phrases"
|
803 |
-
msgstr ""
|
804 |
-
|
805 |
-
#: options/phrases-layout/phrases-notification.php:7
|
806 |
-
#: options/wc-options-serialize.php:423
|
807 |
-
msgid "You've successfully unsubscribed."
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: options/phrases-layout/phrases-notification.php:18
|
811 |
-
msgid "Error message for empty field"
|
812 |
-
msgstr ""
|
813 |
-
|
814 |
-
#: options/phrases-layout/phrases-notification.php:28
|
815 |
-
msgid "Error message for invalid email field"
|
816 |
-
msgstr ""
|
817 |
-
|
818 |
-
#: options/phrases-layout/phrases-notification.php:38
|
819 |
-
msgid "Error message for invalid website url field"
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
#: options/phrases-layout/phrases-notification.php:48
|
823 |
-
#: options/wc-options-serialize.php:446
|
824 |
-
msgid "You must be"
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: options/phrases-layout/phrases-notification.php:58
|
828 |
-
msgid "Logged in as"
|
829 |
-
msgstr ""
|
830 |
-
|
831 |
-
#: options/phrases-layout/phrases-notification.php:68
|
832 |
-
#: options/wc-options-serialize.php:448
|
833 |
-
msgid "Log out"
|
834 |
-
msgstr ""
|
835 |
-
|
836 |
-
#: options/phrases-layout/phrases-notification.php:78
|
837 |
-
msgid "Logged In"
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
#: options/phrases-layout/phrases-notification.php:88
|
841 |
-
msgid "To post a comment"
|
842 |
-
msgstr ""
|
843 |
-
|
844 |
-
#: options/phrases-layout/phrases-notification.php:98
|
845 |
-
#: options/wc-options-serialize.php:453
|
846 |
-
msgid "Vote Counted"
|
847 |
-
msgstr ""
|
848 |
-
|
849 |
-
#: options/phrases-layout/phrases-notification.php:108
|
850 |
-
msgid "You can vote only 1 time"
|
851 |
-
msgstr ""
|
852 |
-
|
853 |
-
#: options/phrases-layout/phrases-notification.php:118
|
854 |
-
#: options/wc-options-serialize.php:455
|
855 |
-
msgid "Voting Error"
|
856 |
-
msgstr ""
|
857 |
-
|
858 |
-
#: options/phrases-layout/phrases-notification.php:128
|
859 |
-
msgid "Login To Vote"
|
860 |
-
msgstr ""
|
861 |
-
|
862 |
-
#: options/phrases-layout/phrases-notification.php:138
|
863 |
-
msgid "You Cannot Vote On Your Comment"
|
864 |
-
msgstr ""
|
865 |
-
|
866 |
-
#: options/phrases-layout/phrases-notification.php:148
|
867 |
-
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
868 |
-
msgstr ""
|
869 |
-
|
870 |
-
#: options/phrases-layout/phrases-notification.php:158
|
871 |
-
#: options/wc-options-serialize.php:459
|
872 |
-
msgid "Invalid Captcha Code"
|
873 |
-
msgstr ""
|
874 |
-
|
875 |
-
#: options/phrases-layout/phrases-notification.php:168
|
876 |
-
#: options/wc-options-serialize.php:460
|
877 |
-
msgid "Some of field value is invalid"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: options/phrases-layout/phrases-notification.php:178
|
881 |
-
msgid "Comment waiting moderation"
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: options/phrases-layout/phrases-notification.php:188
|
885 |
-
msgid "Message if comment was not updated"
|
886 |
-
msgstr ""
|
887 |
-
|
888 |
-
#: options/phrases-layout/phrases-notification.php:192
|
889 |
-
#: options/wc-options-serialize.php:467
|
890 |
-
msgid "Sorry, the comment was not updated"
|
891 |
-
msgstr ""
|
892 |
-
|
893 |
-
#: options/phrases-layout/phrases-notification.php:198
|
894 |
-
msgid "Message if comment no longer possible to edit"
|
895 |
-
msgstr ""
|
896 |
-
|
897 |
-
#: options/phrases-layout/phrases-notification.php:202
|
898 |
-
#: options/wc-options-serialize.php:468
|
899 |
-
msgid "Sorry, this comment no longer possible to edit"
|
900 |
-
msgstr ""
|
901 |
-
|
902 |
-
#: options/phrases-layout/phrases-notification.php:209
|
903 |
-
msgid "Message if comment text not changed"
|
904 |
-
msgstr ""
|
905 |
-
|
906 |
-
#: options/phrases-layout/phrases-notification.php:213
|
907 |
-
msgid "TYou've not made any changes"
|
908 |
-
msgstr ""
|
909 |
-
|
910 |
-
#: options/wc-options-serialize.php:382
|
911 |
-
msgid "Be the First to Comment!"
|
912 |
-
msgstr ""
|
913 |
-
|
914 |
-
#: options/wc-options-serialize.php:384
|
915 |
-
msgid "Comments"
|
916 |
-
msgstr ""
|
917 |
-
|
918 |
-
#: options/wc-options-serialize.php:385
|
919 |
-
msgid "on"
|
920 |
-
msgstr ""
|
921 |
-
|
922 |
-
#: options/wc-options-serialize.php:386
|
923 |
-
msgid "Start the discussion"
|
924 |
-
msgstr ""
|
925 |
-
|
926 |
-
#: options/wc-options-serialize.php:387
|
927 |
-
msgid "Join the discussion"
|
928 |
-
msgstr ""
|
929 |
-
|
930 |
-
#: options/wc-options-serialize.php:388 options/wc-options.php:352
|
931 |
-
msgid "Email"
|
932 |
-
msgstr ""
|
933 |
-
|
934 |
-
#: options/wc-options-serialize.php:389
|
935 |
-
msgid "Name"
|
936 |
-
msgstr ""
|
937 |
-
|
938 |
-
#: options/wc-options-serialize.php:390
|
939 |
-
msgid "WebSite URL"
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
#: options/wc-options-serialize.php:391
|
943 |
-
msgid "Please insert the code above to comment"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: options/wc-options-serialize.php:392
|
947 |
-
msgid "Post Comment"
|
948 |
-
msgstr ""
|
949 |
-
|
950 |
-
#: options/wc-options-serialize.php:398
|
951 |
-
msgid "Load More Comments"
|
952 |
-
msgstr ""
|
953 |
-
|
954 |
-
#: options/wc-options-serialize.php:410
|
955 |
-
msgid "Guest"
|
956 |
-
msgstr ""
|
957 |
-
|
958 |
-
#: options/wc-options-serialize.php:411
|
959 |
-
msgid "Member"
|
960 |
-
msgstr ""
|
961 |
-
|
962 |
-
#: options/wc-options-serialize.php:412
|
963 |
-
msgid "Author"
|
964 |
-
msgstr ""
|
965 |
-
|
966 |
-
#: options/wc-options-serialize.php:413
|
967 |
-
msgid "Admin"
|
968 |
-
msgstr ""
|
969 |
-
|
970 |
-
#: options/wc-options-serialize.php:415
|
971 |
-
msgid "New comment on the discussion section you've been interested in"
|
972 |
-
msgstr ""
|
973 |
-
|
974 |
-
#: options/wc-options-serialize.php:417
|
975 |
-
msgid "New reply on the discussion section you've been interested in"
|
976 |
-
msgstr ""
|
977 |
-
|
978 |
-
#: options/wc-options-serialize.php:418
|
979 |
-
msgid "You're subscribed for new replies on this comment"
|
980 |
-
msgstr ""
|
981 |
-
|
982 |
-
#: options/wc-options-serialize.php:419
|
983 |
-
msgid "You're subscribed for new replies on all your comments"
|
984 |
-
msgstr ""
|
985 |
-
|
986 |
-
#: options/wc-options-serialize.php:420
|
987 |
-
msgid "You're subscribed for new follow-up comments on this post"
|
988 |
-
msgstr ""
|
989 |
-
|
990 |
-
#: options/wc-options-serialize.php:428
|
991 |
-
msgid "please fill out this field to comment"
|
992 |
-
msgstr ""
|
993 |
-
|
994 |
-
#: options/wc-options-serialize.php:429
|
995 |
-
msgid "email address is invalid"
|
996 |
-
msgstr ""
|
997 |
-
|
998 |
-
#: options/wc-options-serialize.php:430
|
999 |
-
msgid "url is invalid"
|
1000 |
-
msgstr ""
|
1001 |
-
|
1002 |
-
#: options/wc-options-serialize.php:431
|
1003 |
-
msgid "year"
|
1004 |
-
msgstr ""
|
1005 |
-
|
1006 |
-
#: options/wc-options-serialize.php:432
|
1007 |
-
msgid "years"
|
1008 |
-
msgstr ""
|
1009 |
-
|
1010 |
-
#: options/wc-options-serialize.php:433
|
1011 |
-
msgid "month"
|
1012 |
-
msgstr ""
|
1013 |
-
|
1014 |
-
#: options/wc-options-serialize.php:434
|
1015 |
-
msgid "months"
|
1016 |
-
msgstr ""
|
1017 |
-
|
1018 |
-
#: options/wc-options-serialize.php:435
|
1019 |
-
msgid "day"
|
1020 |
-
msgstr ""
|
1021 |
-
|
1022 |
-
#: options/wc-options-serialize.php:436
|
1023 |
-
msgid "days"
|
1024 |
-
msgstr ""
|
1025 |
-
|
1026 |
-
#: options/wc-options-serialize.php:437
|
1027 |
-
msgid "hour"
|
1028 |
-
msgstr ""
|
1029 |
-
|
1030 |
-
#: options/wc-options-serialize.php:438
|
1031 |
-
msgid "hours"
|
1032 |
-
msgstr ""
|
1033 |
-
|
1034 |
-
#: options/wc-options-serialize.php:439
|
1035 |
-
msgid "minute"
|
1036 |
-
msgstr ""
|
1037 |
-
|
1038 |
-
#: options/wc-options-serialize.php:440
|
1039 |
-
msgid "minutes"
|
1040 |
-
msgstr ""
|
1041 |
-
|
1042 |
-
#: options/wc-options-serialize.php:441
|
1043 |
-
msgid "second"
|
1044 |
-
msgstr ""
|
1045 |
-
|
1046 |
-
#: options/wc-options-serialize.php:442
|
1047 |
-
msgid "seconds"
|
1048 |
-
msgstr ""
|
1049 |
-
|
1050 |
-
#: options/wc-options-serialize.php:443
|
1051 |
-
msgid "right now"
|
1052 |
-
msgstr ""
|
1053 |
-
|
1054 |
-
#: options/wc-options-serialize.php:444
|
1055 |
-
msgid "ago"
|
1056 |
-
msgstr ""
|
1057 |
-
|
1058 |
-
#: options/wc-options-serialize.php:447
|
1059 |
-
msgid "You are logged in as"
|
1060 |
-
msgstr ""
|
1061 |
-
|
1062 |
-
#: options/wc-options-serialize.php:449
|
1063 |
-
msgid "logged in"
|
1064 |
-
msgstr ""
|
1065 |
-
|
1066 |
-
#: options/wc-options-serialize.php:450
|
1067 |
-
msgid "to post a comment."
|
1068 |
-
msgstr ""
|
1069 |
-
|
1070 |
-
#: options/wc-options-serialize.php:454
|
1071 |
-
msgid "You've already voted for this comment"
|
1072 |
-
msgstr ""
|
1073 |
-
|
1074 |
-
#: options/wc-options-serialize.php:456
|
1075 |
-
msgid "You Must Be Logged In To Vote"
|
1076 |
-
msgstr ""
|
1077 |
-
|
1078 |
-
#: options/wc-options-serialize.php:457
|
1079 |
-
msgid "You cannot vote for your comment"
|
1080 |
-
msgstr ""
|
1081 |
-
|
1082 |
-
#: options/wc-options-serialize.php:458
|
1083 |
-
msgid "You are not allowed to vote for this comment"
|
1084 |
-
msgstr ""
|
1085 |
-
|
1086 |
-
#: options/wc-options-serialize.php:461
|
1087 |
-
msgid "new comment"
|
1088 |
-
msgstr ""
|
1089 |
-
|
1090 |
-
#: options/wc-options-serialize.php:462
|
1091 |
-
msgid "new comments"
|
1092 |
-
msgstr ""
|
1093 |
-
|
1094 |
-
#: options/wc-options-serialize.php:463
|
1095 |
-
msgid "Comment awaiting moderation"
|
1096 |
-
msgstr ""
|
1097 |
-
|
1098 |
-
#: options/wc-options-serialize.php:464
|
1099 |
-
msgid "new reply on your comment"
|
1100 |
-
msgstr ""
|
1101 |
-
|
1102 |
-
#: options/wc-options-serialize.php:465
|
1103 |
-
msgid "new replies on your comments"
|
1104 |
-
msgstr ""
|
1105 |
-
|
1106 |
-
#: options/wc-options-serialize.php:469
|
1107 |
-
msgid "You've not made any changes"
|
1108 |
-
msgstr ""
|
1109 |
-
|
1110 |
-
#: options/wc-options.php:28 options/wc-options.php:228
|
1111 |
-
msgid "Hacker?"
|
1112 |
-
msgstr ""
|
1113 |
-
|
1114 |
-
#: options/wc-options.php:83
|
1115 |
-
msgid "wpDiscuz General Settings"
|
1116 |
-
msgstr ""
|
1117 |
-
|
1118 |
-
#: options/wc-options.php:175
|
1119 |
-
msgid "General settings"
|
1120 |
-
msgstr ""
|
1121 |
-
|
1122 |
-
#: options/wc-options.php:178
|
1123 |
-
msgid "Email Subscription"
|
1124 |
-
msgstr ""
|
1125 |
-
|
1126 |
-
#: options/wc-options.php:178
|
1127 |
-
msgid "and Postmatic"
|
1128 |
-
msgstr ""
|
1129 |
-
|
1130 |
-
#: options/wc-options.php:209 options/wc-options.php:380
|
1131 |
-
msgid "Save Changes"
|
1132 |
-
msgstr ""
|
1133 |
-
|
1134 |
-
#: options/wc-options.php:210
|
1135 |
-
msgid "Reset Options"
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
-
#: options/wc-options.php:338
|
1139 |
-
msgid "WpDiscuz Front-end Phrases"
|
1140 |
-
msgstr ""
|
1141 |
-
|
1142 |
-
#: options/wc-options.php:348
|
1143 |
-
msgid "General"
|
1144 |
-
msgstr ""
|
1145 |
-
|
1146 |
-
#: options/wc-options.php:349
|
1147 |
-
msgid "Form"
|
1148 |
-
msgstr ""
|
1149 |
-
|
1150 |
-
#: options/wc-options.php:351
|
1151 |
-
msgid "Date/Time"
|
1152 |
-
msgstr ""
|
1153 |
-
|
1154 |
-
#: options/wc-options.php:353
|
1155 |
-
msgid "Notification"
|
1156 |
-
msgstr ""
|
1157 |
-
|
1158 |
-
#: wc.php:1022
|
1159 |
-
msgid "Phrases"
|
1160 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpdiscuz-pt_BR.mo
DELETED
Binary file
|
languages/wpdiscuz-pt_BR.po
DELETED
@@ -1,1109 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
-
"POT-Creation-Date: 2015-05-12 10:16-0300\n"
|
5 |
-
"PO-Revision-Date: 2015-05-12 10:19-0300\n"
|
6 |
-
"Last-Translator: Moisés <moisbach@gmail.com>\n"
|
7 |
-
"Language-Team: Celso Azevedo <mail@celsoazevedo.net>\n"
|
8 |
-
"Language: pt_PT\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.7.6\n"
|
13 |
-
"X-Poedit-Basepath: ..\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
-
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
-
|
22 |
-
#: comment-form/form.php:161 comment-form/tpl-comment.php:231
|
23 |
-
msgid "Participate in this discussion via email"
|
24 |
-
msgstr "Participar desta discussão via e-mail"
|
25 |
-
|
26 |
-
#: comment-form/tpl-comment.php:83
|
27 |
-
msgid "Anonymous"
|
28 |
-
msgstr "Anônimo"
|
29 |
-
|
30 |
-
#: comment-form/tpl-comment.php:165 comment-form/tpl-comment.php:168
|
31 |
-
msgid "Edit"
|
32 |
-
msgstr "Editar"
|
33 |
-
|
34 |
-
#: options/options-layouts/settings-general.php:2
|
35 |
-
msgid "General Settings"
|
36 |
-
msgstr "Configurações Gerais"
|
37 |
-
|
38 |
-
#: options/options-layouts/settings-general.php:7
|
39 |
-
msgid "Display comment form for post types:"
|
40 |
-
msgstr "Mostrar o formulário de comentário em:"
|
41 |
-
|
42 |
-
#: options/options-layouts/settings-general.php:28
|
43 |
-
msgid "User Must be registered to comment"
|
44 |
-
msgstr "O utilizador deve estar registrado para comentar"
|
45 |
-
|
46 |
-
#: options/options-layouts/settings-general.php:46
|
47 |
-
msgid "Show the latest comments on"
|
48 |
-
msgstr "Mostrar os últimos comentários no"
|
49 |
-
|
50 |
-
#: options/options-layouts/settings-general.php:50
|
51 |
-
msgid "the top of the list"
|
52 |
-
msgstr "no topo da lista de comentários"
|
53 |
-
|
54 |
-
#: options/options-layouts/settings-general.php:52
|
55 |
-
msgid "top of the threads"
|
56 |
-
msgstr "no topo"
|
57 |
-
|
58 |
-
#: options/options-layouts/settings-general.php:54
|
59 |
-
msgid "bottom of the threads"
|
60 |
-
msgstr "no fim"
|
61 |
-
|
62 |
-
#: options/options-layouts/settings-general.php:56
|
63 |
-
msgid "the bottom of the list"
|
64 |
-
msgstr "no fim da lista de comentários"
|
65 |
-
|
66 |
-
#: options/options-layouts/settings-general.php:64
|
67 |
-
msgid "Comment Threads Per Page"
|
68 |
-
msgstr "Comentários Por Página"
|
69 |
-
|
70 |
-
#: options/options-layouts/settings-general.php:76
|
71 |
-
msgid "Comments max depth"
|
72 |
-
msgstr "Níveis de respostas a comentários"
|
73 |
-
|
74 |
-
#: options/options-layouts/settings-general.php:81
|
75 |
-
msgid "Level"
|
76 |
-
msgstr "Nível"
|
77 |
-
|
78 |
-
#: options/options-layouts/settings-general.php:82
|
79 |
-
#: options/options-layouts/settings-general.php:83
|
80 |
-
#: options/options-layouts/settings-general.php:84
|
81 |
-
#: options/options-layouts/settings-general.php:85
|
82 |
-
msgid "Levels"
|
83 |
-
msgstr "Níveis"
|
84 |
-
|
85 |
-
#: options/options-layouts/settings-general.php:92
|
86 |
-
msgid "Comment text size in pixels"
|
87 |
-
msgstr "Tamanho do texto do comentário em pixeis."
|
88 |
-
|
89 |
-
#: options/options-layouts/settings-general.php:109
|
90 |
-
msgid "Allow comment editing for"
|
91 |
-
msgstr "Permitir a edição de comentários por"
|
92 |
-
|
93 |
-
#: options/options-layouts/settings-general.php:114
|
94 |
-
msgid "Not Allow"
|
95 |
-
msgstr "Não Permitir"
|
96 |
-
|
97 |
-
#: options/options-layouts/settings-general.php:115
|
98 |
-
#: options/options-layouts/settings-general.php:116
|
99 |
-
#: options/options-layouts/settings-live-update.php:41
|
100 |
-
#: options/options-layouts/settings-live-update.php:42
|
101 |
-
#: options/options-layouts/settings-live-update.php:43
|
102 |
-
msgid "Minutes"
|
103 |
-
msgstr "Minutos"
|
104 |
-
|
105 |
-
#: options/options-layouts/settings-general.php:117
|
106 |
-
#: options/phrases-layout/phrases-datetime.php:73
|
107 |
-
msgid "Hour"
|
108 |
-
msgstr "Hora"
|
109 |
-
|
110 |
-
#: options/options-layouts/settings-general.php:118
|
111 |
-
#: options/options-layouts/settings-general.php:119
|
112 |
-
msgid "Hours"
|
113 |
-
msgstr "Horas"
|
114 |
-
|
115 |
-
#: options/options-layouts/settings-general.php:126
|
116 |
-
msgid "Redirect first commenter to"
|
117 |
-
msgstr "Redirecionar o primeiro comentarista para"
|
118 |
-
|
119 |
-
#: options/options-layouts/settings-general.php:133
|
120 |
-
msgid "Do not redirect"
|
121 |
-
msgstr "Não redirecionar"
|
122 |
-
|
123 |
-
#: options/options-layouts/settings-general.php:142
|
124 |
-
msgid "Allow guests to vote on comments"
|
125 |
-
msgstr "Permitir que os visitantes votem em comentários"
|
126 |
-
|
127 |
-
#: options/options-layouts/settings-general.php:152
|
128 |
-
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
129 |
-
msgstr ""
|
130 |
-
"Carregar todos os outros comentários ao clicar no botão [Carregar Mais "
|
131 |
-
"Comentários]"
|
132 |
-
|
133 |
-
#: options/options-layouts/settings-general.php:163
|
134 |
-
msgid "Use WordPress Date/Time format"
|
135 |
-
msgstr "Usar o formato de data e hora do WordPress"
|
136 |
-
|
137 |
-
#: options/options-layouts/settings-general.php:164
|
138 |
-
msgid ""
|
139 |
-
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
140 |
-
"show the date/time format set in WordPress General Settings."
|
141 |
-
msgstr ""
|
142 |
-
"O wpDiscuz mostra uma data mais amigável. Ao selecionar esta opção, o plugin "
|
143 |
-
"vai usar o formato de data/hora definido na página de Opções do WordPress."
|
144 |
-
|
145 |
-
#: options/options-layouts/settings-general.php:171
|
146 |
-
msgid "Current Wordpress date/time format"
|
147 |
-
msgstr "Formato atual de data e hora do WordPress"
|
148 |
-
|
149 |
-
#: options/options-layouts/settings-general.php:180
|
150 |
-
msgid ""
|
151 |
-
"Help wpDiscuz to grow allowing people to recognize which comment plugin you "
|
152 |
-
"use"
|
153 |
-
msgstr ""
|
154 |
-
"Ajude o wpDiscuz a crescer permitindo que as pessoas possam reconhecer qual "
|
155 |
-
"plugin de comentário você usa"
|
156 |
-
|
157 |
-
#: options/options-layouts/settings-general.php:182
|
158 |
-
msgid ""
|
159 |
-
"Please check this option on to help wpDiscuz get more popularity as your "
|
160 |
-
"thank to the hard work we do for you totally free. This option adds a very "
|
161 |
-
"small (16x16px) icon under the comment section which will allow your site "
|
162 |
-
"visitors recognize the name of comment solution you use."
|
163 |
-
msgstr ""
|
164 |
-
"Por favor, ative esta opção para ajudar o wpDiscuz a obter mais popularidade "
|
165 |
-
"e como forma de agradecer pelo trabalho duro que fazemos para você "
|
166 |
-
"totalmente grátis. Esta opção adiciona um ícone muito pequeno (16x16px) sob "
|
167 |
-
"a seção de comentário que permitirá que os visitantes do seu site reconheçam "
|
168 |
-
"o nome da solução de comentários que você usa."
|
169 |
-
|
170 |
-
#: options/options-layouts/settings-general.php:187
|
171 |
-
msgid "Thank you!"
|
172 |
-
msgstr "Obrigado!"
|
173 |
-
|
174 |
-
#: options/options-layouts/settings-live-update.php:2
|
175 |
-
#: options/wc-options.php:174
|
176 |
-
msgid "Live Update"
|
177 |
-
msgstr "Atualização em Tempo Real"
|
178 |
-
|
179 |
-
#: options/options-layouts/settings-live-update.php:8
|
180 |
-
msgid "Live update options"
|
181 |
-
msgstr "Opções de atualização automática"
|
182 |
-
|
183 |
-
#: options/options-layouts/settings-live-update.php:14
|
184 |
-
msgid "Never update"
|
185 |
-
msgstr "Nunca atualizar"
|
186 |
-
|
187 |
-
#: options/options-layouts/settings-live-update.php:16
|
188 |
-
msgid "Turn off \"Live Update\" function"
|
189 |
-
msgstr "Desligar a opção \"Atualização automática\""
|
190 |
-
|
191 |
-
#: options/options-layouts/settings-live-update.php:18
|
192 |
-
msgid "Show new comment/reply buttons to update manualy"
|
193 |
-
msgstr ""
|
194 |
-
"Mostrar os botões de novo comentário e resposta para atualizar manualmente"
|
195 |
-
|
196 |
-
#: options/options-layouts/settings-live-update.php:20
|
197 |
-
msgid "Always check for new comments and show update buttons"
|
198 |
-
msgstr "Sempre verificar novos comentários e exibir botões de atualização"
|
199 |
-
|
200 |
-
#: options/options-layouts/settings-live-update.php:22
|
201 |
-
msgid "Always update"
|
202 |
-
msgstr "Atualizar sempre"
|
203 |
-
|
204 |
-
#: options/options-layouts/settings-live-update.php:24
|
205 |
-
msgid "Always check for new comments and update automatically"
|
206 |
-
msgstr "Sempre verificar novos comentários e atualizar automaticamente"
|
207 |
-
|
208 |
-
#: options/options-layouts/settings-live-update.php:32
|
209 |
-
msgid "Update comment list every"
|
210 |
-
msgstr "Atualizar a lista de comentário a cada"
|
211 |
-
|
212 |
-
#: options/options-layouts/settings-live-update.php:37
|
213 |
-
#: options/options-layouts/settings-live-update.php:38
|
214 |
-
#: options/options-layouts/settings-live-update.php:39
|
215 |
-
msgid "Seconds"
|
216 |
-
msgstr "Segundos"
|
217 |
-
|
218 |
-
#: options/options-layouts/settings-live-update.php:40
|
219 |
-
#: options/phrases-layout/phrases-datetime.php:95
|
220 |
-
msgid "Minute"
|
221 |
-
msgstr "Minuto"
|
222 |
-
|
223 |
-
#: options/options-layouts/settings-show-hide.php:2 options/wc-options.php:175
|
224 |
-
msgid "Show/Hide Components"
|
225 |
-
msgstr "Mostrar/Esconder Componentes"
|
226 |
-
|
227 |
-
#: options/options-layouts/settings-show-hide.php:7
|
228 |
-
msgid "Show logged-in user name and logout link on top of main form"
|
229 |
-
msgstr ""
|
230 |
-
"Exibir o username no topo do formulário principal quando o utilizador tem o "
|
231 |
-
"login feito"
|
232 |
-
|
233 |
-
#: options/options-layouts/settings-show-hide.php:18
|
234 |
-
msgid "Hide Reply button for Guests"
|
235 |
-
msgstr "Esconder o botão Responder de visitantes"
|
236 |
-
|
237 |
-
#: options/options-layouts/settings-show-hide.php:29
|
238 |
-
msgid "Hide Reply button for Members"
|
239 |
-
msgstr "Esconder o botão Responder de membros"
|
240 |
-
|
241 |
-
#: options/options-layouts/settings-show-hide.php:40
|
242 |
-
msgid "Hide Author Titles"
|
243 |
-
msgstr "Esconder título do autor do comentário"
|
244 |
-
|
245 |
-
#: options/options-layouts/settings-show-hide.php:51
|
246 |
-
msgid "Hide Voting buttons"
|
247 |
-
msgstr "Esconder os botões de votação"
|
248 |
-
|
249 |
-
#: options/options-layouts/settings-show-hide.php:62
|
250 |
-
msgid "Hide Share Button"
|
251 |
-
msgstr "Esconder o botão de compartilhar"
|
252 |
-
|
253 |
-
#: options/options-layouts/settings-show-hide.php:73
|
254 |
-
msgid "Hide the CAPTCHA field"
|
255 |
-
msgstr "Esconder o campo Captcha"
|
256 |
-
|
257 |
-
#: options/options-layouts/settings-style.php:2 options/wc-options.php:177
|
258 |
-
msgid "Background and Colors"
|
259 |
-
msgstr "Fundo e Cores"
|
260 |
-
|
261 |
-
#: options/options-layouts/settings-style.php:7
|
262 |
-
msgid "Comment Form Background Color"
|
263 |
-
msgstr "Cor de fundo do formulário de comentário"
|
264 |
-
|
265 |
-
#: options/options-layouts/settings-style.php:10
|
266 |
-
#: options/options-layouts/settings-style.php:34
|
267 |
-
#: options/options-layouts/settings-style.php:58
|
268 |
-
#: options/options-layouts/settings-style.php:82
|
269 |
-
#: options/options-layouts/settings-style.php:107
|
270 |
-
#: options/options-layouts/settings-style.php:132
|
271 |
-
#: options/options-layouts/settings-style.php:155
|
272 |
-
#: options/options-layouts/settings-style.php:178
|
273 |
-
msgid "Example: #00ff00"
|
274 |
-
msgstr "Exemplo: #00ff00"
|
275 |
-
|
276 |
-
#: options/options-layouts/settings-style.php:31
|
277 |
-
msgid "Comment Background Color"
|
278 |
-
msgstr "Cor de fundo do comentário"
|
279 |
-
|
280 |
-
#: options/options-layouts/settings-style.php:55
|
281 |
-
msgid "Reply Background Color"
|
282 |
-
msgstr "Cor de fundo da resposta"
|
283 |
-
|
284 |
-
#: options/options-layouts/settings-style.php:79
|
285 |
-
msgid "Comment Text Color"
|
286 |
-
msgstr "Cor do texto do comentário"
|
287 |
-
|
288 |
-
#: options/options-layouts/settings-style.php:104
|
289 |
-
msgid "Author title color"
|
290 |
-
msgstr "Cor do título do autor"
|
291 |
-
|
292 |
-
#: options/options-layouts/settings-style.php:129
|
293 |
-
msgid "Vote, Reply, Share, Edit links text colors"
|
294 |
-
msgstr "Cor dos links Votar, Responder, Compartilhar e Editar"
|
295 |
-
|
296 |
-
#: options/options-layouts/settings-style.php:152
|
297 |
-
msgid "Comment form fields border color"
|
298 |
-
msgstr "Cor da borda nos campos do formulário"
|
299 |
-
|
300 |
-
#: options/options-layouts/settings-style.php:175
|
301 |
-
msgid "New loaded comments' background color"
|
302 |
-
msgstr "Cor de fundo dos novos comentários carregados"
|
303 |
-
|
304 |
-
#: options/options-layouts/settings-style.php:199
|
305 |
-
msgid "Custom CSS Code"
|
306 |
-
msgstr "CSS personalizado"
|
307 |
-
|
308 |
-
#: options/options-layouts/settings-subscription.php:2
|
309 |
-
msgid "Email Subscription Settings"
|
310 |
-
msgstr "Configurações de assinatura de e-mail"
|
311 |
-
|
312 |
-
#: options/options-layouts/settings-subscription.php:7
|
313 |
-
msgid "Show \"Notify of all new follow-up comments\""
|
314 |
-
msgstr "Mostrar \"Notificar-me de novos comentários\""
|
315 |
-
|
316 |
-
#: options/options-layouts/settings-subscription.php:8
|
317 |
-
msgid "Show \"Notify of new replies to all my comments\""
|
318 |
-
msgstr "Mostrar \"Notificar-me de novos comentários\""
|
319 |
-
|
320 |
-
#: options/options-layouts/settings-subscription.php:9
|
321 |
-
msgid "Show \"Notify of new replies to this comment\""
|
322 |
-
msgstr "Mostrar \"Notificar-me de respostas a este comentário\""
|
323 |
-
|
324 |
-
#: options/options-layouts/settings-subscription.php:11
|
325 |
-
msgid ""
|
326 |
-
"Please keep all three or at least one of those options ON, otherwise users "
|
327 |
-
"will not have any option for email notifications and they'll not get any "
|
328 |
-
"messages."
|
329 |
-
msgstr ""
|
330 |
-
"Mantenha pelo menos uma destas opções ativas para exibir uma opção de "
|
331 |
-
"subscrição aos utilizadores."
|
332 |
-
|
333 |
-
#: options/options-layouts/settings-subscription.php:30
|
334 |
-
msgid "Use Postmatic for subscriptions and commenting by email"
|
335 |
-
msgstr "Usar o Postmatic para subscrições e comentários via email"
|
336 |
-
|
337 |
-
#: options/options-layouts/settings-subscription.php:31
|
338 |
-
msgid ""
|
339 |
-
"Postmatic allows your users subscribe to comments. Instead of just being "
|
340 |
-
"notified, they add a reply right from their inbox."
|
341 |
-
msgstr ""
|
342 |
-
"O Postmatic permite que os seus utilizadores assinem os comentários. Em vez "
|
343 |
-
"de serem apenas notificados, eles podem responder diretamente via email."
|
344 |
-
|
345 |
-
#: options/options-layouts/settings-subscription.php:42
|
346 |
-
msgid ""
|
347 |
-
"Keep selected the email notification of all new follow-up comments by default"
|
348 |
-
msgstr ""
|
349 |
-
"Deixar a opção de notificação por email no formulário de comentário ativa "
|
350 |
-
"por padrão"
|
351 |
-
|
352 |
-
#: options/options-layouts/settings-subscription.php:43
|
353 |
-
msgid ""
|
354 |
-
"If this option is checked-on, in Manage Subscriptions section of comment "
|
355 |
-
"forms will only be displayed the \"Notify of all new follow-up comments\" "
|
356 |
-
"option and this option will always be selected by default."
|
357 |
-
msgstr ""
|
358 |
-
"Se esta opção estiver marcada, na seção Assinaturas de Email no formulário "
|
359 |
-
"de comentário será exibida a opção \"Notificar sobre novos comentários neste "
|
360 |
-
"post\" e essa opção será sempre selecionada por padrão."
|
361 |
-
|
362 |
-
#: options/phrases-layout/phrases-comment.php:2
|
363 |
-
msgid "Comment Template Phrases"
|
364 |
-
msgstr "Modelo de Frases de Comentários"
|
365 |
-
|
366 |
-
#: options/phrases-layout/phrases-comment.php:7
|
367 |
-
#: options/wc-options-serialize.php:372
|
368 |
-
msgid "Reply"
|
369 |
-
msgstr "Responder"
|
370 |
-
|
371 |
-
#: options/phrases-layout/phrases-comment.php:17
|
372 |
-
#: options/wc-options-serialize.php:373
|
373 |
-
msgid "Share"
|
374 |
-
msgstr "Compartilhar"
|
375 |
-
|
376 |
-
#: options/phrases-layout/phrases-comment.php:27
|
377 |
-
#: options/wc-options-serialize.php:374
|
378 |
-
msgid "Share On Facebook"
|
379 |
-
msgstr "Compartilhar no Facebook"
|
380 |
-
|
381 |
-
#: options/phrases-layout/phrases-comment.php:37
|
382 |
-
#: options/wc-options-serialize.php:375
|
383 |
-
msgid "Share On Twitter"
|
384 |
-
msgstr "Compartilhar no Twitter"
|
385 |
-
|
386 |
-
#: options/phrases-layout/phrases-comment.php:47
|
387 |
-
#: options/wc-options-serialize.php:376
|
388 |
-
msgid "Share On Google"
|
389 |
-
msgstr "Compartilhar no Google"
|
390 |
-
|
391 |
-
#: options/phrases-layout/phrases-comment.php:57
|
392 |
-
#: options/wc-options-serialize.php:377
|
393 |
-
msgid "Hide Replies"
|
394 |
-
msgstr "Esconder Respostas"
|
395 |
-
|
396 |
-
#: options/phrases-layout/phrases-comment.php:67
|
397 |
-
#: options/wc-options-serialize.php:378
|
398 |
-
msgid "Show Replies"
|
399 |
-
msgstr "Mostrar Respostas"
|
400 |
-
|
401 |
-
#: options/phrases-layout/phrases-comment.php:77
|
402 |
-
msgid "Title For Guests"
|
403 |
-
msgstr "Título para Visitantes"
|
404 |
-
|
405 |
-
#: options/phrases-layout/phrases-comment.php:87
|
406 |
-
msgid "Title For Members"
|
407 |
-
msgstr "Título para Membros"
|
408 |
-
|
409 |
-
#: options/phrases-layout/phrases-comment.php:97
|
410 |
-
msgid "Title For Authors"
|
411 |
-
msgstr "Título para Autores"
|
412 |
-
|
413 |
-
#: options/phrases-layout/phrases-comment.php:107
|
414 |
-
msgid "Title For Admins"
|
415 |
-
msgstr "Título para Administradores"
|
416 |
-
|
417 |
-
#: options/phrases-layout/phrases-comment.php:117
|
418 |
-
#: options/wc-options-serialize.php:419
|
419 |
-
msgid "Vote Up"
|
420 |
-
msgstr "Voto Positivo"
|
421 |
-
|
422 |
-
#: options/phrases-layout/phrases-comment.php:127
|
423 |
-
#: options/wc-options-serialize.php:420
|
424 |
-
msgid "Vote Down"
|
425 |
-
msgstr "Voto Negativo"
|
426 |
-
|
427 |
-
#: options/phrases-layout/phrases-comment.php:137
|
428 |
-
msgid "Save edited comment button text"
|
429 |
-
msgstr "Texto do botão para guardar comentário editado"
|
430 |
-
|
431 |
-
#: options/phrases-layout/phrases-comment.php:141
|
432 |
-
#: options/wc-options-serialize.php:438
|
433 |
-
msgid "Save"
|
434 |
-
msgstr "Guardar"
|
435 |
-
|
436 |
-
#: options/phrases-layout/phrases-comment.php:147
|
437 |
-
msgid "Cancel comment editing button text"
|
438 |
-
msgstr "Texto do botão para cancelar a edição do comentário"
|
439 |
-
|
440 |
-
#: options/phrases-layout/phrases-comment.php:151
|
441 |
-
#: options/wc-options-serialize.php:439
|
442 |
-
msgid "Cancel"
|
443 |
-
msgstr "Cancelar"
|
444 |
-
|
445 |
-
#: options/phrases-layout/phrases-datetime.php:2
|
446 |
-
msgid "Date/Time Phrases"
|
447 |
-
msgstr "Frases de data/hora"
|
448 |
-
|
449 |
-
#: options/phrases-layout/phrases-datetime.php:7
|
450 |
-
msgid "Year"
|
451 |
-
msgstr "Ano"
|
452 |
-
|
453 |
-
#: options/phrases-layout/phrases-datetime.php:18
|
454 |
-
msgid "Years (Plural Form)"
|
455 |
-
msgstr "Anos (forma Plural)"
|
456 |
-
|
457 |
-
#: options/phrases-layout/phrases-datetime.php:22
|
458 |
-
msgid "Years"
|
459 |
-
msgstr "Anos"
|
460 |
-
|
461 |
-
#: options/phrases-layout/phrases-datetime.php:29
|
462 |
-
msgid "Month"
|
463 |
-
msgstr "Mês"
|
464 |
-
|
465 |
-
#: options/phrases-layout/phrases-datetime.php:40
|
466 |
-
msgid "Months (Plural Form)"
|
467 |
-
msgstr "Meses (forma Plural)"
|
468 |
-
|
469 |
-
#: options/phrases-layout/phrases-datetime.php:51
|
470 |
-
msgid "Day"
|
471 |
-
msgstr "Dia"
|
472 |
-
|
473 |
-
#: options/phrases-layout/phrases-datetime.php:62
|
474 |
-
msgid "Days (Plural Form)"
|
475 |
-
msgstr "Dias (forma Plural)"
|
476 |
-
|
477 |
-
#: options/phrases-layout/phrases-datetime.php:84
|
478 |
-
msgid "Hours (Plural Form)"
|
479 |
-
msgstr "Horas (forma Plural)"
|
480 |
-
|
481 |
-
#: options/phrases-layout/phrases-datetime.php:106
|
482 |
-
msgid "Minutes (Plural Form)"
|
483 |
-
msgstr "Minutos (forma Plural)"
|
484 |
-
|
485 |
-
#: options/phrases-layout/phrases-datetime.php:117
|
486 |
-
msgid "Second"
|
487 |
-
msgstr "Segundo"
|
488 |
-
|
489 |
-
#: options/phrases-layout/phrases-datetime.php:128
|
490 |
-
msgid "Seconds (Plural Form)"
|
491 |
-
msgstr "Segundos (forma Plural)"
|
492 |
-
|
493 |
-
#: options/phrases-layout/phrases-datetime.php:138
|
494 |
-
msgid "Commented \"right now\" text"
|
495 |
-
msgstr "Comentário enviado \"agora mesmo\" texto"
|
496 |
-
|
497 |
-
#: options/phrases-layout/phrases-datetime.php:149
|
498 |
-
msgid "Ago text"
|
499 |
-
msgstr "\"Atrás\" texto"
|
500 |
-
|
501 |
-
#: options/phrases-layout/phrases-datetime.php:160
|
502 |
-
msgid "\"Today\" text"
|
503 |
-
msgstr "\"Hoje\" texto"
|
504 |
-
|
505 |
-
#: options/phrases-layout/phrases-datetime.php:164
|
506 |
-
#: options/wc-options-serialize.php:413
|
507 |
-
msgid "Today"
|
508 |
-
msgstr "Hoje"
|
509 |
-
|
510 |
-
#: options/phrases-layout/phrases-email.php:2
|
511 |
-
msgid "Email Template Phrases"
|
512 |
-
msgstr "Modelo de Frases para Email"
|
513 |
-
|
514 |
-
#: options/phrases-layout/phrases-email.php:7
|
515 |
-
msgid "Email Subject"
|
516 |
-
msgstr "Assunto do Email"
|
517 |
-
|
518 |
-
#: options/phrases-layout/phrases-email.php:18
|
519 |
-
msgid "Email Message"
|
520 |
-
msgstr "Mensagem do Email"
|
521 |
-
|
522 |
-
#: options/phrases-layout/phrases-email.php:29
|
523 |
-
msgid "New Reply Subject"
|
524 |
-
msgstr "Assunto do alerta de Nova Resposta"
|
525 |
-
|
526 |
-
#: options/phrases-layout/phrases-email.php:33
|
527 |
-
#: options/phrases-layout/phrases-general.php:101
|
528 |
-
#: options/wc-options-serialize.php:385
|
529 |
-
msgid "New Reply"
|
530 |
-
msgstr "Nova Resposta"
|
531 |
-
|
532 |
-
#: options/phrases-layout/phrases-email.php:40
|
533 |
-
msgid "New Reply Message"
|
534 |
-
msgstr "Mensagem do alerta de Nova Resposta"
|
535 |
-
|
536 |
-
#: options/phrases-layout/phrases-email.php:50
|
537 |
-
#: options/phrases-layout/phrases-email.php:54
|
538 |
-
#: options/wc-options-serialize.php:390
|
539 |
-
msgid "Unsubscribe"
|
540 |
-
msgstr "Cancelar Inscrição"
|
541 |
-
|
542 |
-
#: options/phrases-layout/phrases-email.php:61
|
543 |
-
#: options/phrases-layout/phrases-email.php:65
|
544 |
-
#: options/wc-options-serialize.php:391
|
545 |
-
msgid "Ignore Subscription"
|
546 |
-
msgstr "Ignorar Inscrição"
|
547 |
-
|
548 |
-
#: options/phrases-layout/phrases-email.php:72
|
549 |
-
#: options/phrases-layout/phrases-email.php:76
|
550 |
-
#: options/wc-options-serialize.php:393
|
551 |
-
msgid "Confirm your subscribtion"
|
552 |
-
msgstr "Confirme a sua inscrição"
|
553 |
-
|
554 |
-
#: options/phrases-layout/phrases-email.php:82
|
555 |
-
#: options/phrases-layout/phrases-email.php:86
|
556 |
-
#: options/wc-options-serialize.php:394
|
557 |
-
msgid "You've successfully confirmed your subscription."
|
558 |
-
msgstr "A sua inscrição foi confirmada com sucesso."
|
559 |
-
|
560 |
-
#: options/phrases-layout/phrases-email.php:92
|
561 |
-
msgid "Subscribe Confirmation Email Subject"
|
562 |
-
msgstr "Assunto do email de confirmação da inscrição"
|
563 |
-
|
564 |
-
#: options/phrases-layout/phrases-email.php:96
|
565 |
-
#: options/wc-options-serialize.php:395 wc.php:924
|
566 |
-
msgid "Subscribe Confirmation"
|
567 |
-
msgstr "Confirmação de inscrição"
|
568 |
-
|
569 |
-
#: options/phrases-layout/phrases-email.php:103
|
570 |
-
msgid "Subscribe Confirmation Email Content"
|
571 |
-
msgstr "Conteúdo do email sobre a confirmação da inscrição"
|
572 |
-
|
573 |
-
#: options/phrases-layout/phrases-email.php:107
|
574 |
-
#: options/wc-options-serialize.php:396 wc.php:925
|
575 |
-
msgid ""
|
576 |
-
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
577 |
-
"you will receive an email when new comments are posted according to "
|
578 |
-
"subscription option you've chosen. <br/> To activate, click confirm below. "
|
579 |
-
"If you believe this is an error, ignore this message and we'll never bother "
|
580 |
-
"you again."
|
581 |
-
msgstr ""
|
582 |
-
"Olá, <br/> Você se inscreveu para receber notificações sobre novos "
|
583 |
-
"comentários no nosso site. Estas notificações serão enviadas a você de "
|
584 |
-
"acordo com a opção que selecionou quando pediu a inscrição no site. <br/> "
|
585 |
-
"Para ativar, clique em CONFIRMAR INSCRIÇÃO abaixo. No entanto, se você "
|
586 |
-
"acredita que este é um erro e você não fez esta solicitação, apenas ignore "
|
587 |
-
"esta mensagem."
|
588 |
-
|
589 |
-
#: options/phrases-layout/phrases-form.php:2
|
590 |
-
msgid "Form Template Phrases"
|
591 |
-
msgstr "Modelo de Frases em Formulários"
|
592 |
-
|
593 |
-
#: options/phrases-layout/phrases-form.php:7
|
594 |
-
msgid "Comment Field Start"
|
595 |
-
msgstr "Mensagem de incentivo a discussão"
|
596 |
-
|
597 |
-
#: options/phrases-layout/phrases-form.php:17
|
598 |
-
msgid "Comment Field Join"
|
599 |
-
msgstr "Mensagem de incentivo no formulário"
|
600 |
-
|
601 |
-
#: options/phrases-layout/phrases-form.php:27
|
602 |
-
msgid "Email Field"
|
603 |
-
msgstr "Campo de Email"
|
604 |
-
|
605 |
-
#: options/phrases-layout/phrases-form.php:37
|
606 |
-
msgid "Name Field"
|
607 |
-
msgstr "Campo do Nome"
|
608 |
-
|
609 |
-
#: options/phrases-layout/phrases-form.php:47
|
610 |
-
msgid "CAPTCHA Field"
|
611 |
-
msgstr "Campo do Captcha"
|
612 |
-
|
613 |
-
#: options/phrases-layout/phrases-form.php:57
|
614 |
-
msgid "Submit Button"
|
615 |
-
msgstr "Botão de Enviar"
|
616 |
-
|
617 |
-
#: options/phrases-layout/phrases-form.php:67
|
618 |
-
#: options/phrases-layout/phrases-form.php:71
|
619 |
-
#: options/wc-options-serialize.php:365
|
620 |
-
msgid "Manage Subscriptions"
|
621 |
-
msgstr "Gerenciar Assinaturas"
|
622 |
-
|
623 |
-
#: options/phrases-layout/phrases-form.php:77
|
624 |
-
msgid "Notify \"None\""
|
625 |
-
msgstr "Notificar \"Nenhum\""
|
626 |
-
|
627 |
-
#: options/phrases-layout/phrases-form.php:81
|
628 |
-
#: options/wc-options-serialize.php:366
|
629 |
-
msgid "None"
|
630 |
-
msgstr "Nenhum"
|
631 |
-
|
632 |
-
#: options/phrases-layout/phrases-form.php:87
|
633 |
-
msgid "Notify on new comments (checkbox)"
|
634 |
-
msgstr "Notificar ao receber novos comentários (checkbox)"
|
635 |
-
|
636 |
-
#: options/phrases-layout/phrases-form.php:91
|
637 |
-
#: options/wc-options-serialize.php:367
|
638 |
-
msgid "Notify of all new follow-up comments"
|
639 |
-
msgstr "Notificar-me de novos comentários"
|
640 |
-
|
641 |
-
#: options/phrases-layout/phrases-form.php:98
|
642 |
-
msgid "Notify on all new replies (checkbox)"
|
643 |
-
msgstr "Notificar em todas as respostas (checkbox)"
|
644 |
-
|
645 |
-
#: options/phrases-layout/phrases-form.php:102
|
646 |
-
#: options/wc-options-serialize.php:368
|
647 |
-
msgid "Notify of new replies to all my comments"
|
648 |
-
msgstr "Notificar-me de respostas a todos os meus comentários"
|
649 |
-
|
650 |
-
#: options/phrases-layout/phrases-form.php:109
|
651 |
-
msgid "Notify on new replies (checkbox)"
|
652 |
-
msgstr "Notificar de respostas ao comentário (checkbox)"
|
653 |
-
|
654 |
-
#: options/phrases-layout/phrases-form.php:113
|
655 |
-
#: options/wc-options-serialize.php:369
|
656 |
-
msgid "Notify of new replies to this comment"
|
657 |
-
msgstr "Notificar-me de respostas a este comentário"
|
658 |
-
|
659 |
-
#: options/phrases-layout/phrases-form.php:119
|
660 |
-
msgid "Subscribed on this comment replies"
|
661 |
-
msgstr "Inscrito para respostas a este comentário"
|
662 |
-
|
663 |
-
#: options/phrases-layout/phrases-form.php:129
|
664 |
-
msgid "Subscribed on all your comments replies"
|
665 |
-
msgstr "Inscrito para respostas a todos os seus comentários"
|
666 |
-
|
667 |
-
#: options/phrases-layout/phrases-form.php:139
|
668 |
-
msgid "Subscribed on this post"
|
669 |
-
msgstr "Inscrito neste artigo"
|
670 |
-
|
671 |
-
#: options/phrases-layout/phrases-general.php:2
|
672 |
-
msgid "General Phrases"
|
673 |
-
msgstr "Frases Gerais"
|
674 |
-
|
675 |
-
#: options/phrases-layout/phrases-general.php:7
|
676 |
-
#: options/wc-options-serialize.php:354
|
677 |
-
msgid "Leave a Reply"
|
678 |
-
msgstr "Deixe um comentário"
|
679 |
-
|
680 |
-
#: options/phrases-layout/phrases-general.php:17
|
681 |
-
msgid "Be the first to comment"
|
682 |
-
msgstr "Seja o primeiro a comentar"
|
683 |
-
|
684 |
-
#: options/phrases-layout/phrases-general.php:27
|
685 |
-
#: options/wc-options-serialize.php:356 options/wc-options.php:341
|
686 |
-
msgid "Comment"
|
687 |
-
msgstr "Comentário"
|
688 |
-
|
689 |
-
#: options/phrases-layout/phrases-general.php:37
|
690 |
-
msgid "Comment (Plural Form)"
|
691 |
-
msgstr "Comentário (forma Plural)"
|
692 |
-
|
693 |
-
#: options/phrases-layout/phrases-general.php:47
|
694 |
-
msgid "On"
|
695 |
-
msgstr "Em"
|
696 |
-
|
697 |
-
#: options/phrases-layout/phrases-general.php:57
|
698 |
-
msgid "Load More Button"
|
699 |
-
msgstr "Botão Mostrar Mais"
|
700 |
-
|
701 |
-
#: options/phrases-layout/phrases-general.php:67
|
702 |
-
#: options/wc-options-serialize.php:371
|
703 |
-
msgid "Load Rest of Comments"
|
704 |
-
msgstr "Carregar o resto dos comentários"
|
705 |
-
|
706 |
-
#: options/phrases-layout/phrases-general.php:77
|
707 |
-
msgid "Button text if has new comment"
|
708 |
-
msgstr "Texto no botão se houver um novo comentário"
|
709 |
-
|
710 |
-
#: options/phrases-layout/phrases-general.php:81
|
711 |
-
#: options/wc-options-serialize.php:383
|
712 |
-
msgid "New Comment"
|
713 |
-
msgstr "Novo Comentário"
|
714 |
-
|
715 |
-
#: options/phrases-layout/phrases-general.php:87
|
716 |
-
msgid "Button text if has new comments (Plural Form)"
|
717 |
-
msgstr "Texto do botão se tem novos comentários (forma Plural)"
|
718 |
-
|
719 |
-
#: options/phrases-layout/phrases-general.php:91
|
720 |
-
msgid "New Comments"
|
721 |
-
msgstr "Novos Comentários"
|
722 |
-
|
723 |
-
#: options/phrases-layout/phrases-general.php:97
|
724 |
-
msgid "Button text if has new reply"
|
725 |
-
msgstr "Texto no botão se tiver uma resposta nova"
|
726 |
-
|
727 |
-
#: options/phrases-layout/phrases-general.php:107
|
728 |
-
msgid "Button text if has new replies (Plural Form)"
|
729 |
-
msgstr "Texto do botão se tem novas respostas (forma Plural)"
|
730 |
-
|
731 |
-
#: options/phrases-layout/phrases-general.php:111
|
732 |
-
msgid "New Replies"
|
733 |
-
msgstr "Novas Respostas"
|
734 |
-
|
735 |
-
#: options/phrases-layout/phrases-general.php:117
|
736 |
-
msgid "Text on load more button if has new comment(s)"
|
737 |
-
msgstr "Texto no botão Mostrar Mais"
|
738 |
-
|
739 |
-
#: options/phrases-layout/phrases-general.php:121
|
740 |
-
#: options/wc-options-serialize.php:434
|
741 |
-
msgid "New"
|
742 |
-
msgstr "Novo"
|
743 |
-
|
744 |
-
#: options/phrases-layout/phrases-notification.php:2
|
745 |
-
msgid "Notification Phrases"
|
746 |
-
msgstr "Frases de notificação"
|
747 |
-
|
748 |
-
#: options/phrases-layout/phrases-notification.php:7
|
749 |
-
#: options/wc-options-serialize.php:392
|
750 |
-
msgid "You've successfully unsubscribed."
|
751 |
-
msgstr "A sua inscrição foi cancelada com sucesso."
|
752 |
-
|
753 |
-
#: options/phrases-layout/phrases-notification.php:18
|
754 |
-
msgid "Error message for empty field"
|
755 |
-
msgstr "Mensagem de erro para campos vazios"
|
756 |
-
|
757 |
-
#: options/phrases-layout/phrases-notification.php:28
|
758 |
-
msgid "Error message for invalid email field"
|
759 |
-
msgstr "Mensagem de erro para email inválido"
|
760 |
-
|
761 |
-
#: options/phrases-layout/phrases-notification.php:38
|
762 |
-
#: options/wc-options-serialize.php:414
|
763 |
-
msgid "You must be"
|
764 |
-
msgstr "Você deve"
|
765 |
-
|
766 |
-
#: options/phrases-layout/phrases-notification.php:48
|
767 |
-
msgid "Logged in as"
|
768 |
-
msgstr "Autenticado como"
|
769 |
-
|
770 |
-
#: options/phrases-layout/phrases-notification.php:58
|
771 |
-
#: options/wc-options-serialize.php:416
|
772 |
-
msgid "Log out"
|
773 |
-
msgstr "Sair"
|
774 |
-
|
775 |
-
#: options/phrases-layout/phrases-notification.php:68
|
776 |
-
msgid "Logged In"
|
777 |
-
msgstr "Fazer o login"
|
778 |
-
|
779 |
-
#: options/phrases-layout/phrases-notification.php:78
|
780 |
-
msgid "To post a comment"
|
781 |
-
msgstr "Para publicar um comentário"
|
782 |
-
|
783 |
-
#: options/phrases-layout/phrases-notification.php:88
|
784 |
-
#: options/wc-options-serialize.php:421
|
785 |
-
msgid "Vote Counted"
|
786 |
-
msgstr "Votos Contados"
|
787 |
-
|
788 |
-
#: options/phrases-layout/phrases-notification.php:98
|
789 |
-
msgid "You can vote only 1 time"
|
790 |
-
msgstr "Apenas pode votar uma vez"
|
791 |
-
|
792 |
-
#: options/phrases-layout/phrases-notification.php:108
|
793 |
-
#: options/wc-options-serialize.php:423
|
794 |
-
msgid "Voting Error"
|
795 |
-
msgstr "Erro ao votar"
|
796 |
-
|
797 |
-
#: options/phrases-layout/phrases-notification.php:118
|
798 |
-
msgid "Login To Vote"
|
799 |
-
msgstr "Faça o login para votar"
|
800 |
-
|
801 |
-
#: options/phrases-layout/phrases-notification.php:128
|
802 |
-
msgid "You Cannot Vote On Your Comment"
|
803 |
-
msgstr "Não pode votar no seu comentário"
|
804 |
-
|
805 |
-
#: options/phrases-layout/phrases-notification.php:138
|
806 |
-
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
807 |
-
msgstr "Você não tem permissão para votar neste comentário (votos do mesmo IP)"
|
808 |
-
|
809 |
-
#: options/phrases-layout/phrases-notification.php:148
|
810 |
-
#: options/wc-options-serialize.php:427
|
811 |
-
msgid "Invalid Captcha Code"
|
812 |
-
msgstr "Captcha Inválida"
|
813 |
-
|
814 |
-
#: options/phrases-layout/phrases-notification.php:158
|
815 |
-
#: options/wc-options-serialize.php:428
|
816 |
-
msgid "Some of field value is invalid"
|
817 |
-
msgstr "A informação de algum campo é inválida"
|
818 |
-
|
819 |
-
#: options/phrases-layout/phrases-notification.php:168
|
820 |
-
msgid "Comment waiting moderation"
|
821 |
-
msgstr "O comentário aguarda moderação"
|
822 |
-
|
823 |
-
#: options/phrases-layout/phrases-notification.php:178
|
824 |
-
msgid "Message if comment was not updated"
|
825 |
-
msgstr "Mensagem se o comentário não for atualizado"
|
826 |
-
|
827 |
-
#: options/phrases-layout/phrases-notification.php:182
|
828 |
-
#: options/wc-options-serialize.php:435
|
829 |
-
msgid "Sorry, the comment was not updated"
|
830 |
-
msgstr "Lamentamos, mas o comentário não foi atualizado"
|
831 |
-
|
832 |
-
#: options/phrases-layout/phrases-notification.php:188
|
833 |
-
msgid "Message if comment no longer possible to edit"
|
834 |
-
msgstr "Mensagem se não for mais possível editar"
|
835 |
-
|
836 |
-
#: options/phrases-layout/phrases-notification.php:192
|
837 |
-
#: options/wc-options-serialize.php:436
|
838 |
-
msgid "Sorry, this comment no longer possible to edit"
|
839 |
-
msgstr "Lamentamos, mas já não é possível editar o comentário"
|
840 |
-
|
841 |
-
#: options/phrases-layout/phrases-notification.php:199
|
842 |
-
msgid "Message if comment text not changed"
|
843 |
-
msgstr "Mensagem se o texto do comentário não for alterado"
|
844 |
-
|
845 |
-
#: options/phrases-layout/phrases-notification.php:203
|
846 |
-
msgid "TYou've not made any changes"
|
847 |
-
msgstr "Você não fez nenhuma alteração"
|
848 |
-
|
849 |
-
#: options/wc-options-serialize.php:355
|
850 |
-
msgid "Be the First to Comment!"
|
851 |
-
msgstr "Seja o Primeiro a Comentar!"
|
852 |
-
|
853 |
-
#: options/wc-options-serialize.php:357
|
854 |
-
msgid "Comments"
|
855 |
-
msgstr "Comentários"
|
856 |
-
|
857 |
-
#: options/wc-options-serialize.php:358
|
858 |
-
msgid "on"
|
859 |
-
msgstr "em"
|
860 |
-
|
861 |
-
#: options/wc-options-serialize.php:359
|
862 |
-
msgid "Start the discussion"
|
863 |
-
msgstr "Iniciar a discussão"
|
864 |
-
|
865 |
-
#: options/wc-options-serialize.php:360
|
866 |
-
msgid "Join the discussion"
|
867 |
-
msgstr "Entre na discussão"
|
868 |
-
|
869 |
-
#: options/wc-options-serialize.php:361 options/wc-options.php:343
|
870 |
-
msgid "Email"
|
871 |
-
msgstr "Email"
|
872 |
-
|
873 |
-
#: options/wc-options-serialize.php:362
|
874 |
-
msgid "Name"
|
875 |
-
msgstr "Nome"
|
876 |
-
|
877 |
-
#: options/wc-options-serialize.php:363
|
878 |
-
msgid "Please insert the code above to comment"
|
879 |
-
msgstr "Por favor, insira o código acima para comentar"
|
880 |
-
|
881 |
-
#: options/wc-options-serialize.php:364
|
882 |
-
msgid "Post Comment"
|
883 |
-
msgstr "Publicar Comentário."
|
884 |
-
|
885 |
-
#: options/wc-options-serialize.php:370
|
886 |
-
msgid "Load More Comments"
|
887 |
-
msgstr "Carregar mais comentários"
|
888 |
-
|
889 |
-
#: options/wc-options-serialize.php:379
|
890 |
-
msgid "Guest"
|
891 |
-
msgstr "Visitante"
|
892 |
-
|
893 |
-
#: options/wc-options-serialize.php:380
|
894 |
-
msgid "Member"
|
895 |
-
msgstr "Membro"
|
896 |
-
|
897 |
-
#: options/wc-options-serialize.php:381
|
898 |
-
msgid "Author"
|
899 |
-
msgstr "Autor"
|
900 |
-
|
901 |
-
#: options/wc-options-serialize.php:382
|
902 |
-
msgid "Admin"
|
903 |
-
msgstr "Admin"
|
904 |
-
|
905 |
-
#: options/wc-options-serialize.php:384
|
906 |
-
msgid "New comment on the discussion section you've been interested in"
|
907 |
-
msgstr "Novo comentário na discussão de seu interesse em"
|
908 |
-
|
909 |
-
#: options/wc-options-serialize.php:386
|
910 |
-
msgid "New reply on the discussion section you've been interested in"
|
911 |
-
msgstr "Nova resposta na discussão de seu interesse em"
|
912 |
-
|
913 |
-
#: options/wc-options-serialize.php:387
|
914 |
-
msgid "You're subscribed for new replies on this comment"
|
915 |
-
msgstr "Você está inscrito para saber de novas respostas a este comentário"
|
916 |
-
|
917 |
-
#: options/wc-options-serialize.php:388
|
918 |
-
msgid "You're subscribed for new replies on all your comments"
|
919 |
-
msgstr ""
|
920 |
-
"Você está inscrito para saber de novas respostas a todos os seus comentários"
|
921 |
-
|
922 |
-
#: options/wc-options-serialize.php:389
|
923 |
-
msgid "You're subscribed for new follow-up comments on this post"
|
924 |
-
msgstr ""
|
925 |
-
"Você está inscrito para acompanhamento de novos comentários nesta publicação"
|
926 |
-
|
927 |
-
#: options/wc-options-serialize.php:397
|
928 |
-
msgid "please fill out this field to comment"
|
929 |
-
msgstr "por favor, preencha este campo para comentar"
|
930 |
-
|
931 |
-
#: options/wc-options-serialize.php:398
|
932 |
-
msgid "email address is invalid"
|
933 |
-
msgstr "Endereço de e-mail inválido"
|
934 |
-
|
935 |
-
#: options/wc-options-serialize.php:399
|
936 |
-
msgid "year"
|
937 |
-
msgstr "ano"
|
938 |
-
|
939 |
-
#: options/wc-options-serialize.php:400
|
940 |
-
msgid "years"
|
941 |
-
msgstr "anos"
|
942 |
-
|
943 |
-
#: options/wc-options-serialize.php:401
|
944 |
-
msgid "month"
|
945 |
-
msgstr "mês"
|
946 |
-
|
947 |
-
#: options/wc-options-serialize.php:402
|
948 |
-
msgid "months"
|
949 |
-
msgstr "meses"
|
950 |
-
|
951 |
-
#: options/wc-options-serialize.php:403
|
952 |
-
msgid "day"
|
953 |
-
msgstr "dia"
|
954 |
-
|
955 |
-
#: options/wc-options-serialize.php:404
|
956 |
-
msgid "days"
|
957 |
-
msgstr "dias"
|
958 |
-
|
959 |
-
#: options/wc-options-serialize.php:405
|
960 |
-
msgid "hour"
|
961 |
-
msgstr "hora"
|
962 |
-
|
963 |
-
#: options/wc-options-serialize.php:406
|
964 |
-
msgid "hours"
|
965 |
-
msgstr "horas"
|
966 |
-
|
967 |
-
#: options/wc-options-serialize.php:407
|
968 |
-
msgid "minute"
|
969 |
-
msgstr "minuto"
|
970 |
-
|
971 |
-
#: options/wc-options-serialize.php:408
|
972 |
-
msgid "minutes"
|
973 |
-
msgstr "minutos"
|
974 |
-
|
975 |
-
#: options/wc-options-serialize.php:409
|
976 |
-
msgid "second"
|
977 |
-
msgstr "segundo"
|
978 |
-
|
979 |
-
#: options/wc-options-serialize.php:410
|
980 |
-
msgid "seconds"
|
981 |
-
msgstr "segundos"
|
982 |
-
|
983 |
-
#: options/wc-options-serialize.php:411
|
984 |
-
msgid "right now"
|
985 |
-
msgstr "agora mesmo"
|
986 |
-
|
987 |
-
#: options/wc-options-serialize.php:412
|
988 |
-
msgid "ago"
|
989 |
-
msgstr "atrás"
|
990 |
-
|
991 |
-
#: options/wc-options-serialize.php:415
|
992 |
-
msgid "You are logged in as"
|
993 |
-
msgstr "Você está autenticado como"
|
994 |
-
|
995 |
-
#: options/wc-options-serialize.php:417
|
996 |
-
msgid "logged in"
|
997 |
-
msgstr "Autenticado como"
|
998 |
-
|
999 |
-
#: options/wc-options-serialize.php:418
|
1000 |
-
msgid "to post a comment."
|
1001 |
-
msgstr "para publicar um comentário."
|
1002 |
-
|
1003 |
-
#: options/wc-options-serialize.php:422
|
1004 |
-
msgid "You've already voted for this comment"
|
1005 |
-
msgstr "Você já votou para este comentário"
|
1006 |
-
|
1007 |
-
#: options/wc-options-serialize.php:424
|
1008 |
-
msgid "You Must Be Logged In To Vote"
|
1009 |
-
msgstr "Você deve estar autenticado para votar"
|
1010 |
-
|
1011 |
-
#: options/wc-options-serialize.php:425
|
1012 |
-
msgid "You cannot vote for your comment"
|
1013 |
-
msgstr "Não pode votar no seu comentário"
|
1014 |
-
|
1015 |
-
#: options/wc-options-serialize.php:426
|
1016 |
-
msgid "You are not allowed to vote for this comment"
|
1017 |
-
msgstr "Você não tem permissão para votar neste comentário"
|
1018 |
-
|
1019 |
-
#: options/wc-options-serialize.php:429
|
1020 |
-
msgid "new comment"
|
1021 |
-
msgstr "novo comentário"
|
1022 |
-
|
1023 |
-
#: options/wc-options-serialize.php:430
|
1024 |
-
msgid "new comments"
|
1025 |
-
msgstr "novos comentários"
|
1026 |
-
|
1027 |
-
#: options/wc-options-serialize.php:431
|
1028 |
-
msgid "Your Comment awaiting moderation"
|
1029 |
-
msgstr "Seu comentário aguarda moderação"
|
1030 |
-
|
1031 |
-
#: options/wc-options-serialize.php:432
|
1032 |
-
msgid "new reply on your comment"
|
1033 |
-
msgstr "notificar-me de respostas ao meu comentário"
|
1034 |
-
|
1035 |
-
#: options/wc-options-serialize.php:433
|
1036 |
-
msgid "new replies on your comments"
|
1037 |
-
msgstr "notificar-me de respostas a todos os meus comentários"
|
1038 |
-
|
1039 |
-
#: options/wc-options-serialize.php:437
|
1040 |
-
msgid "You've not made any changes"
|
1041 |
-
msgstr "Você não fez alterações"
|
1042 |
-
|
1043 |
-
#: options/wc-options.php:29 options/wc-options.php:224
|
1044 |
-
msgid "Hacker?"
|
1045 |
-
msgstr "Hacker?"
|
1046 |
-
|
1047 |
-
#: options/wc-options.php:81
|
1048 |
-
msgid "wpDiscuz General Settings"
|
1049 |
-
msgstr "wpDiscuz - Opções Gerais"
|
1050 |
-
|
1051 |
-
#: options/wc-options.php:173
|
1052 |
-
msgid "General settings"
|
1053 |
-
msgstr "Opções gerais"
|
1054 |
-
|
1055 |
-
#: options/wc-options.php:176
|
1056 |
-
msgid "Email Subscription"
|
1057 |
-
msgstr "Assinatura de e-mail"
|
1058 |
-
|
1059 |
-
#: options/wc-options.php:176
|
1060 |
-
msgid "and Postmatic"
|
1061 |
-
msgstr "e Postmatic"
|
1062 |
-
|
1063 |
-
#: options/wc-options.php:205 options/wc-options.php:371
|
1064 |
-
msgid "Save Changes"
|
1065 |
-
msgstr "Guardar Alterações"
|
1066 |
-
|
1067 |
-
#: options/wc-options.php:206
|
1068 |
-
msgid "Reset Options"
|
1069 |
-
msgstr "Reiniciar Opções"
|
1070 |
-
|
1071 |
-
#: options/wc-options.php:329
|
1072 |
-
msgid "WpDiscuz Front-end Phrases"
|
1073 |
-
msgstr "wpDiscuz - Frases do Front-end"
|
1074 |
-
|
1075 |
-
#: options/wc-options.php:339
|
1076 |
-
msgid "General"
|
1077 |
-
msgstr "Geral"
|
1078 |
-
|
1079 |
-
#: options/wc-options.php:340
|
1080 |
-
msgid "Form"
|
1081 |
-
msgstr "Formulário"
|
1082 |
-
|
1083 |
-
#: options/wc-options.php:342
|
1084 |
-
msgid "Date/Time"
|
1085 |
-
msgstr "Data/Hora"
|
1086 |
-
|
1087 |
-
#: options/wc-options.php:344
|
1088 |
-
msgid "Notification"
|
1089 |
-
msgstr "Notificação"
|
1090 |
-
|
1091 |
-
#: wc.php:1001
|
1092 |
-
msgid "Settings"
|
1093 |
-
msgstr "Opções"
|
1094 |
-
|
1095 |
-
#: wc.php:1002
|
1096 |
-
msgid "Phrases"
|
1097 |
-
msgstr "Frases"
|
1098 |
-
|
1099 |
-
#~ msgid "Held new comments for moderation"
|
1100 |
-
#~ msgstr "Reter os novos comentários para moderação"
|
1101 |
-
|
1102 |
-
#~ msgid "Show plugin powered by link"
|
1103 |
-
#~ msgstr "Adicionar um link para o site do wpDiscuz"
|
1104 |
-
|
1105 |
-
#~ msgid "Front-end phrases"
|
1106 |
-
#~ msgstr "Frases do Front-end"
|
1107 |
-
|
1108 |
-
#~ msgid "Plural (Ex. user -> user + s)"
|
1109 |
-
#~ msgstr "Plural (Ex: user -> user + s)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpdiscuz-pt_PT.mo
CHANGED
Binary file
|
languages/wpdiscuz-pt_PT.po
CHANGED
@@ -1,695 +1,481 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Celso Azevedo <mail@celsoazevedo.net>\n"
|
7 |
"Language-Team: Celso Azevedo <mail@celsoazevedo.net>\n"
|
8 |
"Language: pt_PT\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
-
"X-Poedit-Basepath:
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
-
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;
|
17 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "Participate in this discussion via email"
|
24 |
-
msgstr "Participar nesta discussão via e-mail"
|
25 |
-
|
26 |
-
#: wpdiscuz/comment-form/form.php:455
|
27 |
-
msgid "Connect with"
|
28 |
-
msgstr "Conectar-se com"
|
29 |
-
|
30 |
-
#: wpdiscuz/comment-form/tpl-comment.php:174
|
31 |
-
#: wpdiscuz/options/phrases-layout/phrases-comment.php:27
|
32 |
-
#: wpdiscuz/options/wc-options-serialize.php:449
|
33 |
msgid "Edit"
|
34 |
msgstr "Editar"
|
35 |
|
36 |
-
#:
|
37 |
-
msgid "
|
38 |
-
msgstr "
|
39 |
-
|
40 |
-
#: wpdiscuz/options/options-layouts/settings-general.php:2
|
41 |
-
msgid "General Settings"
|
42 |
-
msgstr "Opções Gerais"
|
43 |
|
44 |
-
#:
|
45 |
msgid "Display comment form for post types:"
|
46 |
-
msgstr "
|
47 |
-
|
48 |
-
#: wpdiscuz/options/options-layouts/settings-general.php:28
|
49 |
-
msgid "User Must be registered to comment"
|
50 |
-
msgstr "O utilizador deve estar registado para comentar"
|
51 |
-
|
52 |
-
#: wpdiscuz/options/options-layouts/settings-general.php:34
|
53 |
-
msgid "Yes"
|
54 |
-
msgstr "Sim"
|
55 |
|
56 |
-
#:
|
57 |
-
msgid "No"
|
58 |
-
msgstr "Não"
|
59 |
-
|
60 |
-
#: wpdiscuz/options/options-layouts/settings-general.php:46
|
61 |
-
msgid "Comment author must fill out name"
|
62 |
-
msgstr "O autor do comentário tem que preencher o nome"
|
63 |
-
|
64 |
-
#: wpdiscuz/options/options-layouts/settings-general.php:57
|
65 |
-
msgid "Comment author must fill out email"
|
66 |
-
msgstr "O autor do comentário tem que preencher o email"
|
67 |
-
|
68 |
-
#: wpdiscuz/options/options-layouts/settings-general.php:68
|
69 |
msgid "Show the latest comments on"
|
70 |
msgstr "Mostrar os últimos comentários no"
|
71 |
|
72 |
-
#:
|
73 |
msgid "the top of the list"
|
74 |
msgstr "no topo da lista de comentários"
|
75 |
|
76 |
-
#:
|
77 |
msgid "top of the threads"
|
78 |
msgstr "no topo"
|
79 |
|
80 |
-
#:
|
81 |
msgid "bottom of the threads"
|
82 |
msgstr "no fim"
|
83 |
|
84 |
-
#:
|
85 |
msgid "the bottom of the list"
|
86 |
msgstr "no fim da lista de comentários"
|
87 |
|
88 |
-
#:
|
89 |
-
msgid "
|
90 |
-
msgstr "
|
91 |
|
92 |
-
#:
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#:
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#:
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
|
|
103 |
|
104 |
-
#:
|
105 |
-
|
106 |
-
|
107 |
-
#: wpdiscuz/options/options-layouts/settings-general.php:117
|
108 |
-
msgid "Levels"
|
109 |
-
msgstr "Níveis"
|
110 |
|
111 |
-
#:
|
112 |
-
msgid "
|
113 |
-
msgstr "
|
114 |
|
115 |
-
#:
|
116 |
-
msgid "
|
117 |
-
msgstr "
|
118 |
|
119 |
-
#:
|
120 |
-
msgid "
|
121 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
|
123 |
-
#:
|
124 |
-
#:
|
125 |
-
|
126 |
-
|
127 |
-
|
|
|
|
|
|
|
|
|
|
|
128 |
msgid "Minutes"
|
129 |
msgstr "Minutos"
|
130 |
|
131 |
-
#:
|
132 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
msgid "Hour"
|
134 |
msgstr "Hora"
|
135 |
|
136 |
-
#:
|
137 |
-
#:
|
138 |
msgid "Hours"
|
139 |
msgstr "Horas"
|
140 |
|
141 |
-
#:
|
142 |
-
msgid "
|
143 |
-
msgstr "
|
144 |
|
145 |
-
#:
|
146 |
-
msgid "
|
147 |
-
msgstr "
|
148 |
|
149 |
-
#:
|
150 |
-
msgid "
|
151 |
-
msgstr "
|
152 |
|
153 |
-
#:
|
154 |
-
msgid "
|
155 |
-
msgstr "
|
156 |
|
157 |
-
#:
|
158 |
-
msgid "
|
159 |
msgstr ""
|
160 |
-
"
|
161 |
-
"
|
162 |
|
163 |
-
#:
|
164 |
-
msgid "
|
165 |
-
msgstr "
|
166 |
|
167 |
-
#:
|
168 |
-
msgid ""
|
169 |
-
"
|
170 |
-
"show the date/time format set in WordPress General Settings."
|
171 |
-
msgstr ""
|
172 |
-
"O wpDiscuz mostra a data num formato mais amigável. Ao selecionar esta "
|
173 |
-
"opção, o plugin vai usar o formato de data/hora definido na página de opções "
|
174 |
-
"do WordPress."
|
175 |
|
176 |
-
#:
|
177 |
-
msgid "
|
178 |
-
msgstr "
|
179 |
|
180 |
-
#:
|
181 |
-
msgid "
|
182 |
-
msgstr "
|
183 |
|
184 |
-
#:
|
185 |
-
msgid ""
|
186 |
-
"
|
187 |
-
"However if you have a multi-language website it'll not allow you to add more "
|
188 |
-
"than one language translation. The only way to get it is the plugin "
|
189 |
-
"translation files (.PO / .MO). If wpDiscuz has the languages you need you "
|
190 |
-
"should check this option to disable phrase system and it'll automatically "
|
191 |
-
"translate all phrases based on language files according to current language."
|
192 |
-
msgstr ""
|
193 |
-
"O sistema de frases do wpDiscuz permite a tradução de todas as frases do "
|
194 |
-
"front-end. No entanto, se o site site for multi-língua, não é possível "
|
195 |
-
"adicionar mais do que uma tradução. A única forma de resolver este problema "
|
196 |
-
"passa por utilizar os ficheiros de tradução do plugin (.PO / .MO). Se o "
|
197 |
-
"wpDiscuz tiver as traduções que você precisa, marque esta opção para "
|
198 |
-
"desativar o sistema de tradução das frases e o plugin usará automaticamente "
|
199 |
-
"os ficheiros de tradução de acordo com a língua utilizada."
|
200 |
-
|
201 |
-
#: wpdiscuz/options/options-layouts/settings-general.php:231
|
202 |
-
msgid ""
|
203 |
-
"Help wpDiscuz to grow allowing people to recognize which comment plugin you "
|
204 |
-
"use"
|
205 |
-
msgstr "Ajude o wpDiscuz a crescer divulgando o plugin"
|
206 |
|
207 |
-
#:
|
208 |
-
msgid ""
|
209 |
-
"
|
210 |
-
"thank to the hard work we do for you totally free. This option adds a very "
|
211 |
-
"small (16x16px) icon under the comment section which will allow your site "
|
212 |
-
"visitors recognize the name of comment solution you use."
|
213 |
-
msgstr ""
|
214 |
-
"Marque esta opção para ajudar a divulgar o wpDiscuz e agradecer pelo nosso "
|
215 |
-
"trabalho na criação deste plugin gratuito. Esta opção adiciona um pequeno "
|
216 |
-
"icon (16x16px) no fim da secção de comentários e permite que os visitantes "
|
217 |
-
"fiquem a saber o nome do plugin que você usa."
|
218 |
|
219 |
-
#:
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
222 |
|
223 |
-
#:
|
224 |
-
#:
|
225 |
-
|
226 |
-
|
|
|
|
|
227 |
|
228 |
-
#:
|
229 |
-
msgid "
|
230 |
-
msgstr "
|
231 |
|
232 |
-
#:
|
233 |
msgid ""
|
234 |
-
"
|
235 |
-
"
|
236 |
-
"VPS and Dedicated Hosting Plans."
|
237 |
msgstr ""
|
238 |
-
"
|
239 |
-
"
|
240 |
-
"
|
241 |
-
|
242 |
-
#: wpdiscuz/options/options-layouts/settings-live-update.php:14
|
243 |
-
msgid "Never update"
|
244 |
-
msgstr "Nunca atualizar"
|
245 |
-
|
246 |
-
#: wpdiscuz/options/options-layouts/settings-live-update.php:16
|
247 |
-
msgid "Turn off \"Live Update\" function"
|
248 |
-
msgstr "Desligar a opção \"Atualização em tempo real\""
|
249 |
-
|
250 |
-
#: wpdiscuz/options/options-layouts/settings-live-update.php:18
|
251 |
-
msgid "Show new comment/reply buttons to update manualy"
|
252 |
-
msgstr "Mostrar novos botões de comentário/resposta para atualizar manualmente"
|
253 |
-
|
254 |
-
#: wpdiscuz/options/options-layouts/settings-live-update.php:20
|
255 |
-
msgid "Always check for new comments and show update buttons"
|
256 |
-
msgstr "Verificar novos comentários e mostrar botões de atualização"
|
257 |
-
|
258 |
-
#: wpdiscuz/options/options-layouts/settings-live-update.php:22
|
259 |
-
msgid "Always update"
|
260 |
-
msgstr "Atualizar sempre"
|
261 |
-
|
262 |
-
#: wpdiscuz/options/options-layouts/settings-live-update.php:24
|
263 |
-
msgid "Always check for new comments and update automatically"
|
264 |
-
msgstr "Verificar novos comentários e atualizar automaticamente"
|
265 |
-
|
266 |
-
#: wpdiscuz/options/options-layouts/settings-live-update.php:32
|
267 |
-
msgid "Update comment list every"
|
268 |
-
msgstr "Atualizar a lista de comentários a cada"
|
269 |
-
|
270 |
-
#: wpdiscuz/options/options-layouts/settings-live-update.php:37
|
271 |
-
#: wpdiscuz/options/options-layouts/settings-live-update.php:38
|
272 |
-
#: wpdiscuz/options/options-layouts/settings-live-update.php:39
|
273 |
-
msgid "Seconds"
|
274 |
-
msgstr "Segundos"
|
275 |
|
276 |
-
#:
|
277 |
-
|
278 |
-
|
279 |
-
msgstr "Minuto"
|
280 |
-
|
281 |
-
#: wpdiscuz/options/options-layouts/settings-show-hide.php:2
|
282 |
-
#: wpdiscuz/options/wc-options.php:182
|
283 |
-
msgid "Show/Hide Components"
|
284 |
-
msgstr "Mostrar/Ocultar Componentes"
|
285 |
-
|
286 |
-
#: wpdiscuz/options/options-layouts/settings-show-hide.php:7
|
287 |
-
msgid "Show logged-in user name and logout link on top of main form"
|
288 |
msgstr ""
|
289 |
-
"
|
290 |
-
"
|
291 |
|
292 |
-
#:
|
293 |
-
msgid "
|
294 |
-
msgstr "
|
295 |
-
|
296 |
-
#: wpdiscuz/options/options-layouts/settings-show-hide.php:27
|
297 |
-
msgid "Hide Reply button for Members"
|
298 |
-
msgstr "Ocultar o botão Responder a membros"
|
299 |
-
|
300 |
-
#: wpdiscuz/options/options-layouts/settings-show-hide.php:37
|
301 |
-
msgid "Hide Author Titles"
|
302 |
-
msgstr "Ocultar título do autor do comentário"
|
303 |
-
|
304 |
-
#: wpdiscuz/options/options-layouts/settings-show-hide.php:47
|
305 |
-
msgid "Hide Voting buttons"
|
306 |
-
msgstr "Ocultar os botões de votação"
|
307 |
-
|
308 |
-
#: wpdiscuz/options/options-layouts/settings-show-hide.php:57
|
309 |
-
msgid "Hide Share Buttons"
|
310 |
-
msgstr "Ocultar botões de partilha"
|
311 |
-
|
312 |
-
#: wpdiscuz/options/options-layouts/settings-show-hide.php:67
|
313 |
-
msgid "Hide the CAPTCHA field"
|
314 |
-
msgstr "Ocultar o campo captcha"
|
315 |
|
316 |
-
#:
|
317 |
-
msgid "
|
318 |
-
msgstr "
|
319 |
|
320 |
-
#:
|
321 |
-
msgid "
|
322 |
-
msgstr "
|
323 |
|
324 |
-
#:
|
325 |
-
msgid "
|
326 |
-
|
|
|
|
|
|
|
|
|
|
|
327 |
|
328 |
-
#:
|
329 |
-
|
330 |
-
|
331 |
-
#: wpdiscuz/options/options-layouts/settings-social.php:16 wpdiscuz/wc.php:1024
|
332 |
-
msgid "Settings"
|
333 |
-
msgstr "Opções"
|
334 |
|
335 |
-
#:
|
336 |
-
#: wpdiscuz/options/options-layouts/settings-social.php:31
|
337 |
-
#: wpdiscuz/options/options-layouts/settings-social.php:41
|
338 |
-
#: wpdiscuz/options/options-layouts/settings-social.php:52
|
339 |
-
msgid "Activate"
|
340 |
-
msgstr "Ativar"
|
341 |
-
|
342 |
-
#: wpdiscuz/options/options-layouts/settings-social.php:25
|
343 |
-
#: wpdiscuz/options/options-layouts/settings-social.php:35
|
344 |
-
#: wpdiscuz/options/options-layouts/settings-social.php:45
|
345 |
-
#: wpdiscuz/options/options-layouts/settings-social.php:56
|
346 |
-
msgid "View details/Install"
|
347 |
-
msgstr "Ver detalhes/instalar"
|
348 |
-
|
349 |
-
#: wpdiscuz/options/options-layouts/settings-social.php:89
|
350 |
-
#: wpdiscuz/options/wc-options.php:185
|
351 |
-
msgid "Social Login"
|
352 |
-
msgstr "Login Social"
|
353 |
-
|
354 |
-
#: wpdiscuz/options/options-layouts/settings-social.php:90
|
355 |
msgid ""
|
356 |
-
"
|
357 |
-
"
|
358 |
-
"OK and lots of other social network service accounts. All social login "
|
359 |
-
"buttons will be fully integrated with wpDiscuz comment forms."
|
360 |
msgstr ""
|
361 |
-
"
|
362 |
-
"
|
363 |
-
"OK e outros serviços. Todos os botões de login serão integrados no "
|
364 |
-
"formulário de comentário do wpDiscuz."
|
365 |
|
366 |
-
#:
|
367 |
-
|
368 |
-
|
369 |
-
msgstr "Fundo e Cores"
|
370 |
|
371 |
-
#:
|
372 |
msgid "Comment Form Background Color"
|
373 |
msgstr "Cor de fundo do formulário de comentário"
|
374 |
|
375 |
-
#:
|
376 |
-
#:
|
377 |
-
#:
|
378 |
-
#:
|
379 |
-
#:
|
380 |
-
#:
|
381 |
-
#:
|
382 |
-
#: wpdiscuz/options/options-layouts/settings-style.php:178
|
383 |
msgid "Example: #00ff00"
|
384 |
msgstr "Exemplo: #00ff00"
|
385 |
|
386 |
-
#:
|
387 |
msgid "Comment Background Color"
|
388 |
msgstr "Cor de fundo do comentário"
|
389 |
|
390 |
-
#:
|
391 |
msgid "Reply Background Color"
|
392 |
msgstr "Cor de fundo da resposta"
|
393 |
|
394 |
-
#:
|
395 |
msgid "Comment Text Color"
|
396 |
msgstr "Cor do texto do comentário"
|
397 |
|
398 |
-
#:
|
399 |
msgid "Author title color"
|
400 |
msgstr "Cor do título do autor"
|
401 |
|
402 |
-
#:
|
403 |
msgid "Vote, Reply, Share, Edit links text colors"
|
404 |
msgstr "Cor dos links Votar, Responder, Partilhar e Editar"
|
405 |
|
406 |
-
#:
|
407 |
-
msgid "Comment form fields border color"
|
408 |
-
msgstr "Cor das bordas nos campos do formulário"
|
409 |
-
|
410 |
-
#: wpdiscuz/options/options-layouts/settings-style.php:175
|
411 |
msgid "New loaded comments' background color"
|
412 |
msgstr "Cor de fundo dos novos comentários carregados"
|
413 |
|
414 |
-
#:
|
415 |
msgid "Custom CSS Code"
|
416 |
msgstr "CSS personalizado"
|
417 |
|
418 |
-
#:
|
419 |
-
msgid "
|
420 |
-
msgstr "
|
421 |
|
422 |
-
#:
|
423 |
-
msgid "
|
424 |
-
msgstr "
|
425 |
|
426 |
-
#:
|
427 |
-
msgid "
|
428 |
-
msgstr "
|
429 |
|
430 |
-
#:
|
431 |
-
msgid "
|
432 |
-
msgstr "
|
433 |
|
434 |
-
#:
|
435 |
-
msgid ""
|
436 |
-
|
437 |
-
"will not have any option for email notifications and they'll not get any "
|
438 |
-
"messages."
|
439 |
-
msgstr ""
|
440 |
-
"Mantenha pelo menos uma destas opções ativas para exibir a opção de "
|
441 |
-
"subscrição aos utilizadores."
|
442 |
|
443 |
-
#:
|
444 |
-
msgid "
|
445 |
-
msgstr "
|
446 |
|
447 |
-
#:
|
448 |
-
msgid ""
|
449 |
-
"
|
450 |
-
"notified, they add a reply right from their inbox."
|
451 |
-
msgstr ""
|
452 |
-
"O Postmatic permite que os seus utilizadores subscrevam aos comentários. Em "
|
453 |
-
"vez de serem apenas notificados, eles podem responder diretamente via email."
|
454 |
|
455 |
-
#:
|
456 |
-
msgid ""
|
457 |
-
"
|
458 |
-
msgstr "Deixar a opção de notificação via email ativa por omissão"
|
459 |
|
460 |
-
#:
|
461 |
-
msgid ""
|
462 |
-
"
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
|
470 |
-
#:
|
471 |
-
msgid "
|
472 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
|
474 |
-
#:
|
475 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
msgid "Reply"
|
477 |
msgstr "Responder"
|
478 |
|
479 |
-
#:
|
480 |
-
#: wpdiscuz/options/wc-options-serialize.php:448
|
481 |
msgid "Share"
|
482 |
msgstr "Partilhar"
|
483 |
|
484 |
-
#:
|
485 |
-
#: wpdiscuz/options/wc-options-serialize.php:450
|
486 |
msgid "Share On Facebook"
|
487 |
msgstr "Partilhar no Facebook"
|
488 |
|
489 |
-
#:
|
490 |
-
#: wpdiscuz/options/wc-options-serialize.php:451
|
491 |
msgid "Share On Twitter"
|
492 |
msgstr "Partilhar no Twitter"
|
493 |
|
494 |
-
#:
|
495 |
-
#: wpdiscuz/options/wc-options-serialize.php:452
|
496 |
msgid "Share On Google"
|
497 |
msgstr "Partilhar no Google"
|
498 |
|
499 |
-
#:
|
500 |
-
#: wpdiscuz/options/wc-options-serialize.php:453
|
501 |
-
msgid "Share On VKontakte"
|
502 |
-
msgstr "Partilhar no VKontakte"
|
503 |
-
|
504 |
-
#: wpdiscuz/options/phrases-layout/phrases-comment.php:77
|
505 |
-
#: wpdiscuz/options/wc-options-serialize.php:454
|
506 |
-
msgid "Share On Odnoklassniki"
|
507 |
-
msgstr "Partilhar no Odnoklassniki"
|
508 |
-
|
509 |
-
#: wpdiscuz/options/phrases-layout/phrases-comment.php:87
|
510 |
-
#: wpdiscuz/options/wc-options-serialize.php:455
|
511 |
msgid "Hide Replies"
|
512 |
-
msgstr "
|
513 |
|
514 |
-
#:
|
515 |
-
#: wpdiscuz/options/wc-options-serialize.php:456
|
516 |
msgid "Show Replies"
|
517 |
msgstr "Mostrar Respostas"
|
518 |
|
519 |
-
#:
|
520 |
msgid "Title For Guests"
|
521 |
msgstr "Título para Visitantes"
|
522 |
|
523 |
-
#:
|
524 |
msgid "Title For Members"
|
525 |
msgstr "Título para Membros"
|
526 |
|
527 |
-
#:
|
528 |
msgid "Title For Authors"
|
529 |
msgstr "Título para Autores"
|
530 |
|
531 |
-
#:
|
532 |
msgid "Title For Admins"
|
533 |
msgstr "Título para Administradores"
|
534 |
|
535 |
-
#:
|
536 |
-
#: wpdiscuz/options/wc-options-serialize.php:498
|
537 |
-
msgid "Vote Up"
|
538 |
-
msgstr "Voto Positivo"
|
539 |
-
|
540 |
-
#: wpdiscuz/options/phrases-layout/phrases-comment.php:157
|
541 |
-
#: wpdiscuz/options/wc-options-serialize.php:499
|
542 |
-
msgid "Vote Down"
|
543 |
-
msgstr "Voto Negativo"
|
544 |
-
|
545 |
-
#: wpdiscuz/options/phrases-layout/phrases-comment.php:167
|
546 |
-
msgid "Save edited comment button text"
|
547 |
-
msgstr "Texto do botão para guardar comentário editado"
|
548 |
-
|
549 |
-
#: wpdiscuz/options/phrases-layout/phrases-comment.php:171
|
550 |
-
#: wpdiscuz/options/wc-options-serialize.php:517
|
551 |
-
msgid "Save"
|
552 |
-
msgstr "Guardar"
|
553 |
-
|
554 |
-
#: wpdiscuz/options/phrases-layout/phrases-comment.php:177
|
555 |
-
msgid "Cancel comment editing button text"
|
556 |
-
msgstr "Texto do botão para cancelar a edição do comentário"
|
557 |
-
|
558 |
-
#: wpdiscuz/options/phrases-layout/phrases-comment.php:181
|
559 |
-
#: wpdiscuz/options/wc-options-serialize.php:518
|
560 |
-
msgid "Cancel"
|
561 |
-
msgstr "Cancelar"
|
562 |
-
|
563 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:2
|
564 |
-
msgid "Date/Time Phrases"
|
565 |
-
msgstr "Frases da data/hora"
|
566 |
-
|
567 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:7
|
568 |
-
msgid "Year"
|
569 |
-
msgstr "Ano"
|
570 |
-
|
571 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:18
|
572 |
-
msgid "Years (Plural Form)"
|
573 |
-
msgstr "Anos (plural)"
|
574 |
-
|
575 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:22
|
576 |
-
msgid "Years"
|
577 |
-
msgstr "Anos"
|
578 |
-
|
579 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:29
|
580 |
-
msgid "Month"
|
581 |
-
msgstr "Mês"
|
582 |
-
|
583 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:40
|
584 |
-
msgid "Months (Plural Form)"
|
585 |
-
msgstr "Mês (plural)"
|
586 |
-
|
587 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:51
|
588 |
-
msgid "Day"
|
589 |
-
msgstr "Dia"
|
590 |
-
|
591 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:62
|
592 |
-
msgid "Days (Plural Form)"
|
593 |
-
msgstr "Dias (plural)"
|
594 |
-
|
595 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:84
|
596 |
-
msgid "Hours (Plural Form)"
|
597 |
-
msgstr "Horas (plural)"
|
598 |
-
|
599 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:106
|
600 |
-
msgid "Minutes (Plural Form)"
|
601 |
-
msgstr "Minutos (plural)"
|
602 |
-
|
603 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:117
|
604 |
-
msgid "Second"
|
605 |
-
msgstr "Segundo"
|
606 |
-
|
607 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:128
|
608 |
-
msgid "Seconds (Plural Form)"
|
609 |
-
msgstr "Segundos (plural)"
|
610 |
-
|
611 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:138
|
612 |
-
msgid "Commented \"right now\" text"
|
613 |
-
msgstr "Comentário enviado \"agora mesmo\""
|
614 |
-
|
615 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:149
|
616 |
-
msgid "Ago text"
|
617 |
-
msgstr "\"Atrás\""
|
618 |
-
|
619 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:160
|
620 |
-
msgid "\"Today\" text"
|
621 |
-
msgstr "\"Hoje\""
|
622 |
-
|
623 |
-
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:164
|
624 |
-
#: wpdiscuz/options/wc-options-serialize.php:492
|
625 |
-
msgid "Today"
|
626 |
-
msgstr "Hoje"
|
627 |
-
|
628 |
-
#: wpdiscuz/options/phrases-layout/phrases-email.php:2
|
629 |
-
msgid "Email Template Phrases"
|
630 |
-
msgstr "Frases dos emails"
|
631 |
-
|
632 |
-
#: wpdiscuz/options/phrases-layout/phrases-email.php:7
|
633 |
msgid "Email Subject"
|
634 |
msgstr "Assunto do Email"
|
635 |
|
636 |
-
#:
|
637 |
msgid "Email Message"
|
638 |
msgstr "Mensagem do Email"
|
639 |
|
640 |
-
#:
|
641 |
msgid "New Reply Subject"
|
642 |
msgstr "Assunto do alerta de Nova Resposta"
|
643 |
|
644 |
-
#:
|
645 |
-
#:
|
646 |
-
#: wpdiscuz/options/wc-options-serialize.php:463 wpdiscuz/wc.php:934
|
647 |
msgid "New Reply"
|
648 |
msgstr "Nova Resposta"
|
649 |
|
650 |
-
#:
|
|
|
651 |
msgid "New Reply Message"
|
652 |
msgstr "Mensagem do alerta de Nova Resposta"
|
653 |
|
654 |
-
#:
|
655 |
-
|
656 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
msgid "Unsubscribe"
|
658 |
msgstr "Cancelar Subscrição"
|
659 |
|
660 |
-
#:
|
661 |
-
#:
|
662 |
-
#: wpdiscuz/options/wc-options-serialize.php:469
|
663 |
msgid "Ignore Subscription"
|
664 |
msgstr "Ignorar Subscrição"
|
665 |
|
666 |
-
#:
|
667 |
-
#:
|
668 |
-
|
669 |
-
msgid "Confirm your subscription"
|
670 |
msgstr "Confirme a sua subscrição"
|
671 |
|
672 |
-
#:
|
673 |
-
#:
|
674 |
-
#: wpdiscuz/options/wc-options-serialize.php:472
|
675 |
msgid "You've successfully confirmed your subscription."
|
676 |
msgstr "A sua subscrição foi confirmada com sucesso."
|
677 |
|
678 |
-
#:
|
679 |
msgid "Subscribe Confirmation Email Subject"
|
680 |
msgstr "Assunto do email de confirmação da subscrição"
|
681 |
|
682 |
-
#:
|
683 |
-
#: wpdiscuz/options/wc-options-serialize.php:473 wpdiscuz/wc.php:945
|
684 |
msgid "Subscribe Confirmation"
|
685 |
msgstr "Confirmação de subscrição"
|
686 |
|
687 |
-
#:
|
688 |
msgid "Subscribe Confirmation Email Content"
|
689 |
msgstr "Conteúdo do email sobre a confirmação da subscrição"
|
690 |
|
691 |
-
#:
|
692 |
-
#: wpdiscuz/options/wc-options-serialize.php:474 wpdiscuz/wc.php:946
|
693 |
msgid ""
|
694 |
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
695 |
"you will receive an email when new comments are posted according to "
|
@@ -698,577 +484,215 @@ msgid ""
|
|
698 |
"you again."
|
699 |
msgstr ""
|
700 |
"Olá, <br/> Você de subscrever os novos comentários no nosso website. Isto "
|
701 |
-
"significa que irá receber um email quando novos comentários forem
|
702 |
-
"de acordo com as opções que escolheu. <br/> Para ativar, clique
|
703 |
-
"baixo. Se acha que este email foi enviado por engano, por favor
|
704 |
-
"mensagem e nunca o contactaremos de novo."
|
705 |
-
|
706 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:2
|
707 |
-
msgid "Form Template Phrases"
|
708 |
-
msgstr "Frases do formulário de contacto"
|
709 |
-
|
710 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:7
|
711 |
-
msgid "Comment Field Start"
|
712 |
-
msgstr "Mensagem de incentivo a discussão"
|
713 |
-
|
714 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:17
|
715 |
-
msgid "Comment Field Join"
|
716 |
-
msgstr "Mensagem de incentivo no formulário"
|
717 |
|
718 |
-
#:
|
719 |
-
msgid "
|
720 |
-
msgstr "
|
721 |
-
|
722 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:37
|
723 |
-
msgid "Name Field"
|
724 |
-
msgstr "Campo do Nome"
|
725 |
-
|
726 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:47
|
727 |
-
msgid "WebSite URL Field"
|
728 |
-
msgstr "Campo do URL"
|
729 |
-
|
730 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:57
|
731 |
-
msgid "CAPTCHA Field"
|
732 |
-
msgstr "Campo do Captcha"
|
733 |
-
|
734 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:67
|
735 |
-
msgid "Submit Button"
|
736 |
-
msgstr "Botão de Submissão"
|
737 |
-
|
738 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:77
|
739 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:81
|
740 |
-
#: wpdiscuz/options/wc-options-serialize.php:440
|
741 |
-
msgid "Manage Subscriptions"
|
742 |
-
msgstr "Gerir Subscrições"
|
743 |
-
|
744 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:87
|
745 |
-
msgid "Notify \"None\""
|
746 |
-
msgstr "Não notificar (checkbox)"
|
747 |
-
|
748 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:91
|
749 |
-
#: wpdiscuz/options/wc-options-serialize.php:441
|
750 |
-
msgid "None"
|
751 |
-
msgstr "Não notificar"
|
752 |
-
|
753 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:97
|
754 |
-
msgid "Notify on new comments (checkbox)"
|
755 |
-
msgstr "Notificar quando novos comentários forem publicados (checkbox)"
|
756 |
-
|
757 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:101
|
758 |
-
#: wpdiscuz/options/wc-options-serialize.php:442
|
759 |
-
msgid "Notify of all new follow-up comments"
|
760 |
-
msgstr "Notificar-me de novos comentários"
|
761 |
-
|
762 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:108
|
763 |
-
msgid "Notify on all new replies (checkbox)"
|
764 |
-
msgstr ""
|
765 |
-
"Notificar ao receber respostas a todos os comentários do utilizador "
|
766 |
-
"(checkbox)"
|
767 |
-
|
768 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:112
|
769 |
-
#: wpdiscuz/options/wc-options-serialize.php:443
|
770 |
-
msgid "Notify of new replies to all my comments"
|
771 |
-
msgstr "Notificar-me de respostas a todos os meus comentários"
|
772 |
-
|
773 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:119
|
774 |
-
msgid "Notify on new replies (checkbox)"
|
775 |
-
msgstr "Notificar ao receber respostas ao comentário (checkbox)"
|
776 |
-
|
777 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:123
|
778 |
-
#: wpdiscuz/options/wc-options-serialize.php:444
|
779 |
-
msgid "Notify of new replies to this comment"
|
780 |
-
msgstr "Notificar-me de respostas a este comentário"
|
781 |
-
|
782 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:129
|
783 |
-
msgid "Subscribed on this comment replies"
|
784 |
-
msgstr "Está subscrito a respostas a este comentário"
|
785 |
-
|
786 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:139
|
787 |
-
msgid "Subscribed on all your comments replies"
|
788 |
-
msgstr "Está subscrito a respostas a todos os seus comentários"
|
789 |
-
|
790 |
-
#: wpdiscuz/options/phrases-layout/phrases-form.php:149
|
791 |
-
msgid "Subscribed on this post"
|
792 |
-
msgstr "Está subscrito a novos comentários neste artigo"
|
793 |
-
|
794 |
-
#: wpdiscuz/options/phrases-layout/phrases-general.php:2
|
795 |
-
msgid "General Phrases"
|
796 |
-
msgstr "Frases gerais"
|
797 |
-
|
798 |
-
#: wpdiscuz/options/phrases-layout/phrases-general.php:7
|
799 |
-
#: wpdiscuz/options/wc-options-serialize.php:428
|
800 |
-
msgid "Leave a Reply"
|
801 |
-
msgstr "Deixe um comentário"
|
802 |
-
|
803 |
-
#: wpdiscuz/options/phrases-layout/phrases-general.php:17
|
804 |
-
msgid "Be the first to comment"
|
805 |
-
msgstr "Seja o primeiro a comentar"
|
806 |
-
|
807 |
-
#: wpdiscuz/options/phrases-layout/phrases-general.php:27
|
808 |
-
#: wpdiscuz/options/wc-options-serialize.php:430
|
809 |
-
#: wpdiscuz/options/wc-options.php:354
|
810 |
-
msgid "Comment"
|
811 |
-
msgstr "Comentário"
|
812 |
-
|
813 |
-
#: wpdiscuz/options/phrases-layout/phrases-general.php:37
|
814 |
-
msgid "Comment (Plural Form)"
|
815 |
-
msgstr "Comentário (Plural)"
|
816 |
-
|
817 |
-
#: wpdiscuz/options/phrases-layout/phrases-general.php:47
|
818 |
-
msgid "On"
|
819 |
-
msgstr "Em"
|
820 |
-
|
821 |
-
#: wpdiscuz/options/phrases-layout/phrases-general.php:57
|
822 |
-
msgid "Load More Button"
|
823 |
-
msgstr "Botão Carregar Mais Comentários"
|
824 |
-
|
825 |
-
#: wpdiscuz/options/phrases-layout/phrases-general.php:67
|
826 |
-
#: wpdiscuz/options/wc-options-serialize.php:446
|
827 |
-
msgid "Load Rest of Comments"
|
828 |
-
msgstr "Carregar o resto dos comentários"
|
829 |
-
|
830 |
-
#: wpdiscuz/options/phrases-layout/phrases-general.php:77
|
831 |
-
msgid "Button text if has new comment"
|
832 |
-
msgstr "Texto do botão se houver um novo comentário"
|
833 |
-
|
834 |
-
#: wpdiscuz/options/phrases-layout/phrases-general.php:81
|
835 |
-
#: wpdiscuz/options/wc-options-serialize.php:461
|
836 |
-
msgid "New Comment"
|
837 |
-
msgstr "Novo Comentário"
|
838 |
-
|
839 |
-
#: wpdiscuz/options/phrases-layout/phrases-general.php:87
|
840 |
-
msgid "Button text if has new comments (Plural Form)"
|
841 |
-
msgstr "Texto do botão se tiver novos comentários (plural)"
|
842 |
|
843 |
-
#:
|
844 |
-
msgid "
|
845 |
-
msgstr "
|
846 |
|
847 |
-
#:
|
848 |
-
msgid "
|
849 |
-
msgstr "
|
850 |
|
851 |
-
#:
|
852 |
-
msgid "
|
853 |
-
msgstr "
|
854 |
|
855 |
-
#:
|
856 |
-
msgid "
|
857 |
-
msgstr "
|
858 |
|
859 |
-
#:
|
860 |
-
msgid "
|
861 |
-
msgstr ""
|
862 |
-
"Texto do botão \"carregar novos comentários\" se existirem novos comentários"
|
863 |
|
864 |
-
#:
|
865 |
-
|
866 |
-
|
867 |
-
msgstr "Novo"
|
868 |
|
869 |
-
#:
|
870 |
-
msgid "
|
871 |
-
msgstr "
|
872 |
|
873 |
-
#:
|
874 |
-
|
875 |
-
|
876 |
-
msgstr "A subscrição foi cancelada com sucesso."
|
877 |
|
878 |
-
#:
|
879 |
-
msgid "
|
880 |
-
msgstr "
|
881 |
|
882 |
-
#:
|
883 |
-
msgid "
|
884 |
-
msgstr "
|
885 |
|
886 |
-
#:
|
887 |
-
msgid "
|
888 |
-
msgstr "
|
889 |
|
890 |
-
#:
|
891 |
-
#: wpdiscuz/options/wc-options-serialize.php:493
|
892 |
msgid "You must be"
|
893 |
msgstr "Você deve"
|
894 |
|
895 |
-
#:
|
896 |
msgid "Logged in as"
|
897 |
msgstr "Autenticado como"
|
898 |
|
899 |
-
#:
|
900 |
-
#: wpdiscuz/options/wc-options-serialize.php:495
|
901 |
msgid "Log out"
|
902 |
msgstr "Sair"
|
903 |
|
904 |
-
#:
|
905 |
msgid "Logged In"
|
906 |
msgstr "Fazer o login"
|
907 |
|
908 |
-
#:
|
909 |
msgid "To post a comment"
|
910 |
msgstr "Para publicar um comentário"
|
911 |
|
912 |
-
#:
|
913 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
914 |
msgid "Vote Counted"
|
915 |
-
msgstr "
|
916 |
|
917 |
-
#:
|
918 |
msgid "You can vote only 1 time"
|
919 |
msgstr "Apenas pode votar uma vez"
|
920 |
|
921 |
-
#:
|
922 |
-
#: wpdiscuz/options/wc-options-serialize.php:502
|
923 |
msgid "Voting Error"
|
924 |
msgstr "Erro ao votar"
|
925 |
|
926 |
-
#:
|
927 |
msgid "Login To Vote"
|
928 |
msgstr "Faça o login para votar"
|
929 |
|
930 |
-
#:
|
931 |
msgid "You Cannot Vote On Your Comment"
|
932 |
msgstr "Não pode votar no seu comentário"
|
933 |
|
934 |
-
#:
|
935 |
-
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
936 |
-
msgstr ""
|
937 |
-
"Não tem permissões para votar neste comentário (votando usando o mesmo IP)"
|
938 |
-
|
939 |
-
#: wpdiscuz/options/phrases-layout/phrases-notification.php:158
|
940 |
-
#: wpdiscuz/options/wc-options-serialize.php:506
|
941 |
msgid "Invalid Captcha Code"
|
942 |
msgstr "Captcha Inválida"
|
943 |
|
944 |
-
#:
|
945 |
-
#: wpdiscuz/options/wc-options-serialize.php:507
|
946 |
msgid "Some of field value is invalid"
|
947 |
msgstr "A informação de algum campo é inválida"
|
948 |
|
949 |
-
#:
|
950 |
msgid "Comment waiting moderation"
|
951 |
msgstr "O comentário aguarda moderação"
|
952 |
|
953 |
-
#:
|
954 |
-
msgid "
|
955 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
956 |
|
957 |
-
#:
|
|
|
|
|
|
|
|
|
958 |
msgid "Message if comment was not updated"
|
959 |
msgstr "Mensagem se o comentário não for atualizado"
|
960 |
|
961 |
-
#:
|
962 |
-
#: wpdiscuz/options/wc-options-serialize.php:514
|
963 |
msgid "Sorry, the comment was not updated"
|
964 |
msgstr "Lamentamos, mas o comentário não foi atualizado"
|
965 |
|
966 |
-
#:
|
967 |
msgid "Message if comment no longer possible to edit"
|
968 |
-
msgstr "Mensagem se não for mais possível editar
|
969 |
|
970 |
-
#:
|
971 |
-
#: wpdiscuz/options/wc-options-serialize.php:515
|
972 |
msgid "Sorry, this comment no longer possible to edit"
|
973 |
msgstr "Lamentamos, mas já não é possível editar o comentário"
|
974 |
|
975 |
-
#:
|
976 |
msgid "Message if comment text not changed"
|
977 |
msgstr "Mensagem se o texto do comentário não for alterado"
|
978 |
|
979 |
-
#:
|
980 |
msgid "TYou've not made any changes"
|
981 |
msgstr "Você não fez nenhuma alteração"
|
982 |
|
983 |
-
#:
|
984 |
-
msgid "
|
985 |
-
msgstr "
|
986 |
-
|
987 |
-
#: wpdiscuz/options/wc-options-serialize.php:431
|
988 |
-
msgid "Comments"
|
989 |
-
msgstr "Comentários"
|
990 |
-
|
991 |
-
#: wpdiscuz/options/wc-options-serialize.php:432
|
992 |
-
msgid "on"
|
993 |
-
msgstr "em"
|
994 |
-
|
995 |
-
#: wpdiscuz/options/wc-options-serialize.php:433
|
996 |
-
msgid "Start the discussion"
|
997 |
-
msgstr "Comece a discussão"
|
998 |
-
|
999 |
-
#: wpdiscuz/options/wc-options-serialize.php:434
|
1000 |
-
msgid "Join the discussion"
|
1001 |
-
msgstr "Entre na discussão"
|
1002 |
-
|
1003 |
-
#: wpdiscuz/options/wc-options-serialize.php:435
|
1004 |
-
#: wpdiscuz/options/wc-options.php:356
|
1005 |
-
msgid "Email"
|
1006 |
-
msgstr "Email"
|
1007 |
-
|
1008 |
-
#: wpdiscuz/options/wc-options-serialize.php:436
|
1009 |
-
msgid "Name"
|
1010 |
-
msgstr "Nome"
|
1011 |
-
|
1012 |
-
#: wpdiscuz/options/wc-options-serialize.php:437
|
1013 |
-
msgid "WebSite URL"
|
1014 |
-
msgstr "Website"
|
1015 |
-
|
1016 |
-
#: wpdiscuz/options/wc-options-serialize.php:438
|
1017 |
-
msgid "Please insert the code above to comment"
|
1018 |
-
msgstr "Por favor insira o código acima para comentar"
|
1019 |
-
|
1020 |
-
#: wpdiscuz/options/wc-options-serialize.php:439
|
1021 |
-
msgid "Post Comment"
|
1022 |
-
msgstr "Publicar Comentário"
|
1023 |
-
|
1024 |
-
#: wpdiscuz/options/wc-options-serialize.php:445
|
1025 |
-
msgid "Load More Comments"
|
1026 |
-
msgstr "Carregar Mais Comentários"
|
1027 |
-
|
1028 |
-
#: wpdiscuz/options/wc-options-serialize.php:457
|
1029 |
-
msgid "Guest"
|
1030 |
-
msgstr "Visitante"
|
1031 |
-
|
1032 |
-
#: wpdiscuz/options/wc-options-serialize.php:458
|
1033 |
-
msgid "Member"
|
1034 |
-
msgstr "Membro"
|
1035 |
-
|
1036 |
-
#: wpdiscuz/options/wc-options-serialize.php:459
|
1037 |
-
msgid "Author"
|
1038 |
-
msgstr "Autor"
|
1039 |
-
|
1040 |
-
#: wpdiscuz/options/wc-options-serialize.php:460
|
1041 |
-
msgid "Admin"
|
1042 |
-
msgstr "Admin"
|
1043 |
-
|
1044 |
-
#: wpdiscuz/options/wc-options-serialize.php:462
|
1045 |
-
msgid "New comment on the discussion section you've been interested in"
|
1046 |
-
msgstr "Novo comentário numa discussão do seu interesse"
|
1047 |
-
|
1048 |
-
#: wpdiscuz/options/wc-options-serialize.php:464 wpdiscuz/wc.php:935
|
1049 |
-
msgid "New reply on the discussion section you've been interested in"
|
1050 |
-
msgstr "Nova resposta numa discussão do seu interesse "
|
1051 |
-
|
1052 |
-
#: wpdiscuz/options/wc-options-serialize.php:465
|
1053 |
-
msgid "You're subscribed for new replies on this comment"
|
1054 |
-
msgstr "Subscreveu a alertas de novas respostas a este comentário"
|
1055 |
-
|
1056 |
-
#: wpdiscuz/options/wc-options-serialize.php:466
|
1057 |
-
msgid "You're subscribed for new replies on all your comments"
|
1058 |
-
msgstr "Subscreveu a alertas de novas respostas a todos os meus comentários"
|
1059 |
-
|
1060 |
-
#: wpdiscuz/options/wc-options-serialize.php:467
|
1061 |
-
msgid "You're subscribed for new follow-up comments on this post"
|
1062 |
-
msgstr "Subscreveu a alertas de novos comentários neste artigo"
|
1063 |
-
|
1064 |
-
#: wpdiscuz/options/wc-options-serialize.php:475
|
1065 |
-
msgid "please fill out this field to comment"
|
1066 |
-
msgstr "preencha este campo para comentar"
|
1067 |
-
|
1068 |
-
#: wpdiscuz/options/wc-options-serialize.php:476
|
1069 |
-
msgid "email address is invalid"
|
1070 |
-
msgstr "o endereço de email é inválido"
|
1071 |
-
|
1072 |
-
#: wpdiscuz/options/wc-options-serialize.php:477
|
1073 |
-
msgid "url is invalid"
|
1074 |
-
msgstr "o url é inválido"
|
1075 |
-
|
1076 |
-
#: wpdiscuz/options/wc-options-serialize.php:478
|
1077 |
-
msgid "year"
|
1078 |
-
msgstr "ano"
|
1079 |
-
|
1080 |
-
#: wpdiscuz/options/wc-options-serialize.php:479
|
1081 |
-
msgid "years"
|
1082 |
-
msgstr "anos"
|
1083 |
-
|
1084 |
-
#: wpdiscuz/options/wc-options-serialize.php:480
|
1085 |
-
msgid "month"
|
1086 |
-
msgstr "mês"
|
1087 |
-
|
1088 |
-
#: wpdiscuz/options/wc-options-serialize.php:481
|
1089 |
-
msgid "months"
|
1090 |
-
msgstr "meses"
|
1091 |
-
|
1092 |
-
#: wpdiscuz/options/wc-options-serialize.php:482
|
1093 |
-
msgid "day"
|
1094 |
-
msgstr "dia"
|
1095 |
-
|
1096 |
-
#: wpdiscuz/options/wc-options-serialize.php:483
|
1097 |
-
msgid "days"
|
1098 |
-
msgstr "dias"
|
1099 |
-
|
1100 |
-
#: wpdiscuz/options/wc-options-serialize.php:484
|
1101 |
-
msgid "hour"
|
1102 |
-
msgstr "hora"
|
1103 |
-
|
1104 |
-
#: wpdiscuz/options/wc-options-serialize.php:485
|
1105 |
-
msgid "hours"
|
1106 |
-
msgstr "horas"
|
1107 |
-
|
1108 |
-
#: wpdiscuz/options/wc-options-serialize.php:486
|
1109 |
-
msgid "minute"
|
1110 |
-
msgstr "minuto"
|
1111 |
-
|
1112 |
-
#: wpdiscuz/options/wc-options-serialize.php:487
|
1113 |
-
msgid "minutes"
|
1114 |
-
msgstr "minutos"
|
1115 |
-
|
1116 |
-
#: wpdiscuz/options/wc-options-serialize.php:488
|
1117 |
-
msgid "second"
|
1118 |
-
msgstr "segundo"
|
1119 |
-
|
1120 |
-
#: wpdiscuz/options/wc-options-serialize.php:489
|
1121 |
-
msgid "seconds"
|
1122 |
-
msgstr "segundos"
|
1123 |
-
|
1124 |
-
#: wpdiscuz/options/wc-options-serialize.php:490
|
1125 |
-
msgid "right now"
|
1126 |
-
msgstr "agora mesmo"
|
1127 |
-
|
1128 |
-
#: wpdiscuz/options/wc-options-serialize.php:491
|
1129 |
-
msgid "ago"
|
1130 |
-
msgstr "atrás"
|
1131 |
-
|
1132 |
-
#: wpdiscuz/options/wc-options-serialize.php:494
|
1133 |
-
msgid "You are logged in as"
|
1134 |
-
msgstr "Autenticado como"
|
1135 |
-
|
1136 |
-
#: wpdiscuz/options/wc-options-serialize.php:496
|
1137 |
-
msgid "logged in"
|
1138 |
-
msgstr "fazer o login"
|
1139 |
-
|
1140 |
-
#: wpdiscuz/options/wc-options-serialize.php:497
|
1141 |
-
msgid "to post a comment."
|
1142 |
-
msgstr "para publicar um comentário."
|
1143 |
-
|
1144 |
-
#: wpdiscuz/options/wc-options-serialize.php:501
|
1145 |
-
msgid "You've already voted for this comment"
|
1146 |
-
msgstr "Já votou neste comentário"
|
1147 |
-
|
1148 |
-
#: wpdiscuz/options/wc-options-serialize.php:503
|
1149 |
-
msgid "You Must Be Logged In To Vote"
|
1150 |
-
msgstr "Faça o login para votar"
|
1151 |
-
|
1152 |
-
#: wpdiscuz/options/wc-options-serialize.php:504
|
1153 |
-
msgid "You cannot vote for your comment"
|
1154 |
-
msgstr "Não pode votar no seu comentário"
|
1155 |
-
|
1156 |
-
#: wpdiscuz/options/wc-options-serialize.php:505
|
1157 |
-
msgid "You are not allowed to vote for this comment"
|
1158 |
-
msgstr "Não tem permissão para votar neste comentário"
|
1159 |
-
|
1160 |
-
#: wpdiscuz/options/wc-options-serialize.php:508
|
1161 |
-
msgid "new comment"
|
1162 |
-
msgstr "novo comentário"
|
1163 |
-
|
1164 |
-
#: wpdiscuz/options/wc-options-serialize.php:509
|
1165 |
-
msgid "new comments"
|
1166 |
-
msgstr "novos comentários"
|
1167 |
-
|
1168 |
-
#: wpdiscuz/options/wc-options-serialize.php:510
|
1169 |
-
msgid "Comment awaiting moderation"
|
1170 |
-
msgstr "O seu comentário aguarda moderação"
|
1171 |
-
|
1172 |
-
#: wpdiscuz/options/wc-options-serialize.php:511
|
1173 |
-
msgid "new reply on your comment"
|
1174 |
-
msgstr "nova resposta ao seu comentário"
|
1175 |
|
1176 |
-
#:
|
1177 |
-
msgid "
|
1178 |
-
msgstr "
|
1179 |
|
1180 |
-
#:
|
1181 |
-
msgid "
|
1182 |
-
msgstr "
|
1183 |
|
1184 |
-
#:
|
1185 |
-
|
1186 |
-
|
1187 |
-
msgstr ""
|
1188 |
-
"Texto do comentário é muito longo (o máximo de caracteres permitidos é de %s)"
|
1189 |
|
1190 |
-
#:
|
1191 |
msgid "Hacker?"
|
1192 |
msgstr "Hacker?"
|
1193 |
|
1194 |
-
#:
|
1195 |
msgid "wpDiscuz General Settings"
|
1196 |
msgstr "wpDiscuz - Opções Gerais"
|
1197 |
|
1198 |
-
#:
|
1199 |
-
msgid "General settings"
|
1200 |
-
msgstr "Opções Gerais"
|
1201 |
-
|
1202 |
-
#: wpdiscuz/options/wc-options.php:183
|
1203 |
-
msgid "Email Subscription"
|
1204 |
-
msgstr "Subscrição via Email"
|
1205 |
-
|
1206 |
-
#: wpdiscuz/options/wc-options.php:183
|
1207 |
-
msgid "and Postmatic"
|
1208 |
-
msgstr "e Postmatic"
|
1209 |
-
|
1210 |
-
#: wpdiscuz/options/wc-options.php:214 wpdiscuz/options/wc-options.php:384
|
1211 |
msgid "Save Changes"
|
1212 |
-
msgstr "Guardar
|
1213 |
-
|
1214 |
-
#: wpdiscuz/options/wc-options.php:215
|
1215 |
-
msgid "Reset Options"
|
1216 |
-
msgstr "Repor opções"
|
1217 |
|
1218 |
-
#:
|
1219 |
msgid "WpDiscuz Front-end Phrases"
|
1220 |
-
msgstr "wpDiscuz - Frases do
|
1221 |
-
|
1222 |
-
#: wpdiscuz/options/wc-options.php:352
|
1223 |
-
msgid "General"
|
1224 |
-
msgstr "Geral"
|
1225 |
|
1226 |
-
#:
|
1227 |
-
msgid "
|
1228 |
-
msgstr "
|
1229 |
-
|
1230 |
-
#: wpdiscuz/options/wc-options.php:355
|
1231 |
-
msgid "Date/Time"
|
1232 |
-
msgstr "Data/hora"
|
1233 |
-
|
1234 |
-
#: wpdiscuz/options/wc-options.php:357
|
1235 |
-
msgid "Notification"
|
1236 |
-
msgstr "Notificação"
|
1237 |
|
1238 |
-
#:
|
1239 |
msgid "Phrases"
|
1240 |
msgstr "Frases"
|
1241 |
-
|
1242 |
-
#~ msgid "Share On vKontakte"
|
1243 |
-
#~ msgstr "Partilhar no vKontakte"
|
1244 |
-
|
1245 |
-
#~ msgid "Confirm your subscribtion"
|
1246 |
-
#~ msgstr "Confirme a sua subscrição"
|
1247 |
-
|
1248 |
-
#~ msgid "Hide Share Button"
|
1249 |
-
#~ msgstr "Esconder o botão de partilha"
|
1250 |
-
|
1251 |
-
#~ msgid "Held new comments for moderation"
|
1252 |
-
#~ msgstr "Reter os novos comentários para moderação"
|
1253 |
-
|
1254 |
-
#~ msgid ""
|
1255 |
-
#~ "Keep checked-on the email notification checkboxes on comment form by "
|
1256 |
-
#~ "default"
|
1257 |
-
#~ msgstr ""
|
1258 |
-
#~ "Deixar as opções de notificação por email no formulário de comentário "
|
1259 |
-
#~ "ativas por defeito"
|
1260 |
-
|
1261 |
-
#~ msgid "Show plugin powered by link"
|
1262 |
-
#~ msgstr "Adicionar um link para o site do wpDiscuz"
|
1263 |
-
|
1264 |
-
#~ msgid "Front-end phrases"
|
1265 |
-
#~ msgstr "Frases do Front-end"
|
1266 |
-
|
1267 |
-
#~ msgid "Plural (Ex. user -> user + s)"
|
1268 |
-
#~ msgstr "Plural (Ex: user -> user + s)"
|
1269 |
-
|
1270 |
-
#~ msgid "Button text if has new comments"
|
1271 |
-
#~ msgstr "Texto no botão se houverem novos comentários"
|
1272 |
-
|
1273 |
-
#~ msgid "Button text if has new replies"
|
1274 |
-
#~ msgstr "Texto no botão se tiver várias respostas novas"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
+
"POT-Creation-Date: 2015-03-11 01:00-0000\n"
|
5 |
+
"PO-Revision-Date: 2015-03-12 00:47-0000\n"
|
6 |
"Last-Translator: Celso Azevedo <mail@celsoazevedo.net>\n"
|
7 |
"Language-Team: Celso Azevedo <mail@celsoazevedo.net>\n"
|
8 |
"Language: pt_PT\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.4\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
|
17 |
+
"_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
+
#: comment-form/tpl-comment.php:158 comment-form/tpl-comment.php:161
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msgid "Edit"
|
24 |
msgstr "Editar"
|
25 |
|
26 |
+
#: options-templates/options-template-main.php:1
|
27 |
+
msgid "General settings"
|
28 |
+
msgstr "Opções gerais"
|
|
|
|
|
|
|
|
|
29 |
|
30 |
+
#: options-templates/options-template-main.php:5
|
31 |
msgid "Display comment form for post types:"
|
32 |
+
msgstr "Mostrar o formulário de comentário em:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
+
#: options-templates/options-template-main.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid "Show the latest comments on"
|
36 |
msgstr "Mostrar os últimos comentários no"
|
37 |
|
38 |
+
#: options-templates/options-template-main.php:30
|
39 |
msgid "the top of the list"
|
40 |
msgstr "no topo da lista de comentários"
|
41 |
|
42 |
+
#: options-templates/options-template-main.php:32
|
43 |
msgid "top of the threads"
|
44 |
msgstr "no topo"
|
45 |
|
46 |
+
#: options-templates/options-template-main.php:34
|
47 |
msgid "bottom of the threads"
|
48 |
msgstr "no fim"
|
49 |
|
50 |
+
#: options-templates/options-template-main.php:36
|
51 |
msgid "the bottom of the list"
|
52 |
msgstr "no fim da lista de comentários"
|
53 |
|
54 |
+
#: options-templates/options-template-main.php:44
|
55 |
+
msgid "Live update options"
|
56 |
+
msgstr "Opções de atualização automática"
|
57 |
|
58 |
+
#: options-templates/options-template-main.php:50
|
59 |
+
msgid "Never update"
|
60 |
+
msgstr "Nunca atualizar"
|
61 |
|
62 |
+
#: options-templates/options-template-main.php:52
|
63 |
+
msgid "Turn off \"Live Update\" function"
|
64 |
+
msgstr "Desligar a opção \"Atualização automática\""
|
65 |
|
66 |
+
#: options-templates/options-template-main.php:54
|
67 |
+
msgid "Show new comment/reply buttons to update manualy"
|
68 |
+
msgstr ""
|
69 |
+
"Mostrar os botões de novo comentário e resposta para atualizar manualmente"
|
70 |
|
71 |
+
#: options-templates/options-template-main.php:56
|
72 |
+
msgid "Always check for new comments and show update buttons"
|
73 |
+
msgstr "Sempre verificar novos comentários e exibir botões de atualização"
|
|
|
|
|
|
|
74 |
|
75 |
+
#: options-templates/options-template-main.php:58
|
76 |
+
msgid "Always update"
|
77 |
+
msgstr "Atualizar sempre"
|
78 |
|
79 |
+
#: options-templates/options-template-main.php:60
|
80 |
+
msgid "Always check for new comments and update automatically"
|
81 |
+
msgstr "Sempre verificar novos comentários e atualizar automaticamente"
|
82 |
|
83 |
+
#: options-templates/options-template-main.php:68
|
84 |
+
msgid "Update comment list every"
|
85 |
+
msgstr "Atualizar a lista de comentário a cada"
|
86 |
+
|
87 |
+
#: options-templates/options-template-main.php:73
|
88 |
+
#: options-templates/options-template-main.php:74
|
89 |
+
#: options-templates/options-template-main.php:75
|
90 |
+
msgid "Seconds"
|
91 |
+
msgstr "Segundos"
|
92 |
|
93 |
+
#: options-templates/options-template-main.php:76
|
94 |
+
#: options-templates/options-template-phrases.php:519
|
95 |
+
msgid "Minute"
|
96 |
+
msgstr "Minuto"
|
97 |
+
|
98 |
+
#: options-templates/options-template-main.php:77
|
99 |
+
#: options-templates/options-template-main.php:78
|
100 |
+
#: options-templates/options-template-main.php:79
|
101 |
+
#: options-templates/options-template-main.php:92
|
102 |
+
#: options-templates/options-template-main.php:93
|
103 |
msgid "Minutes"
|
104 |
msgstr "Minutos"
|
105 |
|
106 |
+
#: options-templates/options-template-main.php:86
|
107 |
+
msgid "Allow comment editing for"
|
108 |
+
msgstr "Permitir a edição de comentários por"
|
109 |
+
|
110 |
+
#: options-templates/options-template-main.php:91
|
111 |
+
msgid "Not Allow"
|
112 |
+
msgstr "Não Permitir"
|
113 |
+
|
114 |
+
#: options-templates/options-template-main.php:94
|
115 |
+
#: options-templates/options-template-phrases.php:508
|
116 |
msgid "Hour"
|
117 |
msgstr "Hora"
|
118 |
|
119 |
+
#: options-templates/options-template-main.php:95
|
120 |
+
#: options-templates/options-template-main.php:96
|
121 |
msgid "Hours"
|
122 |
msgstr "Horas"
|
123 |
|
124 |
+
#: options-templates/options-template-main.php:103
|
125 |
+
msgid "Hide Voting buttons"
|
126 |
+
msgstr "Esconder os botões de votação"
|
127 |
|
128 |
+
#: options-templates/options-template-main.php:114
|
129 |
+
msgid "Hide Share Button"
|
130 |
+
msgstr "Esconder o botão de partilha"
|
131 |
|
132 |
+
#: options-templates/options-template-main.php:125
|
133 |
+
msgid "Hide the CAPTCHA field"
|
134 |
+
msgstr "Esconder o campo Captcha"
|
135 |
|
136 |
+
#: options-templates/options-template-main.php:136
|
137 |
+
msgid "User Must be registered to comment"
|
138 |
+
msgstr "O utilizador deve estar registado para comentar"
|
139 |
|
140 |
+
#: options-templates/options-template-main.php:154
|
141 |
+
msgid "Show logged-in user name and logout link on top of main form"
|
142 |
msgstr ""
|
143 |
+
"Exibir o username no topo do formulário principal quando o utilizador tem o "
|
144 |
+
"login feito"
|
145 |
|
146 |
+
#: options-templates/options-template-main.php:165
|
147 |
+
msgid "Held new comments for moderation"
|
148 |
+
msgstr "Reter os novos comentários para moderação"
|
149 |
|
150 |
+
#: options-templates/options-template-main.php:176
|
151 |
+
msgid "Hide Reply button for Guests"
|
152 |
+
msgstr "Esconder o botão Responder a visitantes"
|
|
|
|
|
|
|
|
|
|
|
153 |
|
154 |
+
#: options-templates/options-template-main.php:187
|
155 |
+
msgid "Hide Reply button for Members"
|
156 |
+
msgstr "Esconder o botão Responder a membros"
|
157 |
|
158 |
+
#: options-templates/options-template-main.php:198
|
159 |
+
msgid "Hide Author Titles"
|
160 |
+
msgstr "Esconder título do autor do comentário"
|
161 |
|
162 |
+
#: options-templates/options-template-main.php:209
|
163 |
+
msgid "Comment Threads Per Page"
|
164 |
+
msgstr "Comentários Por Página"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
|
166 |
+
#: options-templates/options-template-main.php:220
|
167 |
+
msgid "Comments max depth"
|
168 |
+
msgstr "Níveis de respostas a comentários"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
|
170 |
+
#: options-templates/options-template-main.php:225
|
171 |
+
msgid "Level"
|
172 |
+
msgstr "Nível"
|
173 |
|
174 |
+
#: options-templates/options-template-main.php:226
|
175 |
+
#: options-templates/options-template-main.php:227
|
176 |
+
#: options-templates/options-template-main.php:228
|
177 |
+
#: options-templates/options-template-main.php:229
|
178 |
+
msgid "Levels"
|
179 |
+
msgstr "Níveis"
|
180 |
|
181 |
+
#: options-templates/options-template-main.php:236
|
182 |
+
msgid "Use WordPress Date/Time format"
|
183 |
+
msgstr "Usar o formato de data e tempo do WordPress"
|
184 |
|
185 |
+
#: options-templates/options-template-main.php:237
|
186 |
msgid ""
|
187 |
+
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
188 |
+
"show the date/time format set in WordPress General Settings."
|
|
|
189 |
msgstr ""
|
190 |
+
"O wpDiscuz mostra uma data mais amigável. Ao selecionar esta opção, o "
|
191 |
+
"plugin vai usar o formato de data/hora definido na página de Opções do "
|
192 |
+
"WordPress."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
|
194 |
+
#: options-templates/options-template-main.php:248
|
195 |
+
msgid ""
|
196 |
+
"Keep checked-on the email notification checkboxes on comment form by default"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
msgstr ""
|
198 |
+
"Deixar as opções de notificação por email no formulário de comentário "
|
199 |
+
"ativas por defeito"
|
200 |
|
201 |
+
#: options-templates/options-template-main.php:259
|
202 |
+
msgid "Show \"Notify of all new follow-up comments\""
|
203 |
+
msgstr "Mostrar \"Notificar-me de novos comentários\""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
|
205 |
+
#: options-templates/options-template-main.php:260
|
206 |
+
msgid "Show \"Notify of new replies to all my comments\""
|
207 |
+
msgstr "Mostrar \"Notificar-me de novos comentários\""
|
208 |
|
209 |
+
#: options-templates/options-template-main.php:261
|
210 |
+
msgid "Show \"Notify of new replies to this comment\""
|
211 |
+
msgstr "Mostrar \"Notificar-me de respostas a este comentário\""
|
212 |
|
213 |
+
#: options-templates/options-template-main.php:263
|
214 |
+
msgid ""
|
215 |
+
"Please keep all three or at least one of those options ON, otherwise users "
|
216 |
+
"will not have any option for email notifications and they'll not get any "
|
217 |
+
"messages."
|
218 |
+
msgstr ""
|
219 |
+
"Mantenha pelo menos uma destas opções ativas para exibir uma opção de "
|
220 |
+
"subscrição aos utilizadores."
|
221 |
|
222 |
+
#: options-templates/options-template-main.php:282
|
223 |
+
msgid "Use Postmatic for subscriptions and commenting by email"
|
224 |
+
msgstr "Usar o Postmatic para subscrições e comentários via email"
|
|
|
|
|
|
|
225 |
|
226 |
+
#: options-templates/options-template-main.php:283
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
msgid ""
|
228 |
+
"Postmatic allows your users subscribe to comments. Instead of just being "
|
229 |
+
"notified, they add a reply right from their inbox."
|
|
|
|
|
230 |
msgstr ""
|
231 |
+
"O Postmatic permite que os seus utilizadores subscrevam aos comentários. Em "
|
232 |
+
"vez de serem apenas notificados, eles podem responder diretamente via email."
|
|
|
|
|
233 |
|
234 |
+
#: options-templates/options-template-main.php:294
|
235 |
+
msgid "Comment text size in pixels"
|
236 |
+
msgstr "Tamanho do texto do comentário em pixeis."
|
|
|
237 |
|
238 |
+
#: options-templates/options-template-main.php:310
|
239 |
msgid "Comment Form Background Color"
|
240 |
msgstr "Cor de fundo do formulário de comentário"
|
241 |
|
242 |
+
#: options-templates/options-template-main.php:313
|
243 |
+
#: options-templates/options-template-main.php:337
|
244 |
+
#: options-templates/options-template-main.php:361
|
245 |
+
#: options-templates/options-template-main.php:385
|
246 |
+
#: options-templates/options-template-main.php:410
|
247 |
+
#: options-templates/options-template-main.php:435
|
248 |
+
#: options-templates/options-template-main.php:459
|
|
|
249 |
msgid "Example: #00ff00"
|
250 |
msgstr "Exemplo: #00ff00"
|
251 |
|
252 |
+
#: options-templates/options-template-main.php:334
|
253 |
msgid "Comment Background Color"
|
254 |
msgstr "Cor de fundo do comentário"
|
255 |
|
256 |
+
#: options-templates/options-template-main.php:358
|
257 |
msgid "Reply Background Color"
|
258 |
msgstr "Cor de fundo da resposta"
|
259 |
|
260 |
+
#: options-templates/options-template-main.php:382
|
261 |
msgid "Comment Text Color"
|
262 |
msgstr "Cor do texto do comentário"
|
263 |
|
264 |
+
#: options-templates/options-template-main.php:407
|
265 |
msgid "Author title color"
|
266 |
msgstr "Cor do título do autor"
|
267 |
|
268 |
+
#: options-templates/options-template-main.php:432
|
269 |
msgid "Vote, Reply, Share, Edit links text colors"
|
270 |
msgstr "Cor dos links Votar, Responder, Partilhar e Editar"
|
271 |
|
272 |
+
#: options-templates/options-template-main.php:456
|
|
|
|
|
|
|
|
|
273 |
msgid "New loaded comments' background color"
|
274 |
msgstr "Cor de fundo dos novos comentários carregados"
|
275 |
|
276 |
+
#: options-templates/options-template-main.php:480
|
277 |
msgid "Custom CSS Code"
|
278 |
msgstr "CSS personalizado"
|
279 |
|
280 |
+
#: options-templates/options-template-main.php:489
|
281 |
+
msgid "Show plugin powered by link"
|
282 |
+
msgstr "Adicionar um link para o site do wpDiscuz"
|
283 |
|
284 |
+
#: options-templates/options-template-phrases.php:1
|
285 |
+
msgid "Front-end phrases"
|
286 |
+
msgstr "Frases do Front-end"
|
287 |
|
288 |
+
#: options-templates/options-template-phrases.php:5
|
289 |
+
msgid "Leave a Reply"
|
290 |
+
msgstr "Deixe um comentário"
|
291 |
|
292 |
+
#: options-templates/options-template-phrases.php:16
|
293 |
+
msgid "Be the first to comment"
|
294 |
+
msgstr "Seja o primeiro a comentar"
|
295 |
|
296 |
+
#: options-templates/options-template-phrases.php:27
|
297 |
+
msgid "Comment"
|
298 |
+
msgstr "Comentário"
|
|
|
|
|
|
|
|
|
|
|
299 |
|
300 |
+
#: options-templates/options-template-phrases.php:38
|
301 |
+
msgid "On"
|
302 |
+
msgstr "Em"
|
303 |
|
304 |
+
#: options-templates/options-template-phrases.php:49
|
305 |
+
msgid "Comment Field Start"
|
306 |
+
msgstr "Mensagem de incentivo a discussão"
|
|
|
|
|
|
|
|
|
307 |
|
308 |
+
#: options-templates/options-template-phrases.php:60
|
309 |
+
msgid "Comment Field Join"
|
310 |
+
msgstr "Mensagem de incentivo no formulário"
|
|
|
311 |
|
312 |
+
#: options-templates/options-template-phrases.php:71
|
313 |
+
msgid "Email Field"
|
314 |
+
msgstr "Campo de Email"
|
315 |
+
|
316 |
+
#: options-templates/options-template-phrases.php:82
|
317 |
+
msgid "Name Field"
|
318 |
+
msgstr "Campo do Nome"
|
319 |
+
|
320 |
+
#: options-templates/options-template-phrases.php:93
|
321 |
+
msgid "CAPTCHA Field"
|
322 |
+
msgstr "Campo do Captcha"
|
323 |
+
|
324 |
+
#: options-templates/options-template-phrases.php:104
|
325 |
+
msgid "Submit Button"
|
326 |
+
msgstr "Botão de Submissão"
|
327 |
+
|
328 |
+
#: options-templates/options-template-phrases.php:115
|
329 |
+
#: options-templates/options-template-phrases.php:119
|
330 |
+
msgid "Manage Subscriptions"
|
331 |
+
msgstr "Gerir Subscrições"
|
332 |
+
|
333 |
+
#: options-templates/options-template-phrases.php:126
|
334 |
+
msgid "Notify \"None\""
|
335 |
+
msgstr "Notificar \"Nenhum\""
|
336 |
|
337 |
+
#: options-templates/options-template-phrases.php:130
|
338 |
+
msgid "None"
|
339 |
+
msgstr "Nenhum"
|
340 |
+
|
341 |
+
#: options-templates/options-template-phrases.php:137
|
342 |
+
msgid "Notify on new comments (checkbox)"
|
343 |
+
msgstr "Notificar ao receber novos comentários (checkbox)"
|
344 |
+
|
345 |
+
#: options-templates/options-template-phrases.php:141
|
346 |
+
msgid "Notify of all new follow-up comments"
|
347 |
+
msgstr "Notificar-me de novos comentários"
|
348 |
+
|
349 |
+
#: options-templates/options-template-phrases.php:148
|
350 |
+
msgid "Notify on all new replies (checkbox)"
|
351 |
+
msgstr "Notificar em todas as respostas (checkbox)"
|
352 |
|
353 |
+
#: options-templates/options-template-phrases.php:152
|
354 |
+
msgid "Notify of new replies to all my comments"
|
355 |
+
msgstr "Notificar-me de respostas a todos os meus comentários"
|
356 |
+
|
357 |
+
#: options-templates/options-template-phrases.php:159
|
358 |
+
msgid "Notify on new replies (checkbox)"
|
359 |
+
msgstr "Notificar de respostas ao comentário (checkbox)"
|
360 |
+
|
361 |
+
#: options-templates/options-template-phrases.php:163
|
362 |
+
msgid "Notify of new replies to this comment"
|
363 |
+
msgstr "Notificar-me de respostas a este comentário"
|
364 |
+
|
365 |
+
#: options-templates/options-template-phrases.php:170
|
366 |
+
msgid "Load More Button"
|
367 |
+
msgstr "Botão Mostrar Mais"
|
368 |
+
|
369 |
+
#: options-templates/options-template-phrases.php:181
|
370 |
msgid "Reply"
|
371 |
msgstr "Responder"
|
372 |
|
373 |
+
#: options-templates/options-template-phrases.php:192
|
|
|
374 |
msgid "Share"
|
375 |
msgstr "Partilhar"
|
376 |
|
377 |
+
#: options-templates/options-template-phrases.php:203
|
|
|
378 |
msgid "Share On Facebook"
|
379 |
msgstr "Partilhar no Facebook"
|
380 |
|
381 |
+
#: options-templates/options-template-phrases.php:214
|
|
|
382 |
msgid "Share On Twitter"
|
383 |
msgstr "Partilhar no Twitter"
|
384 |
|
385 |
+
#: options-templates/options-template-phrases.php:225
|
|
|
386 |
msgid "Share On Google"
|
387 |
msgstr "Partilhar no Google"
|
388 |
|
389 |
+
#: options-templates/options-template-phrases.php:236
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid "Hide Replies"
|
391 |
+
msgstr "Esconder Respostas"
|
392 |
|
393 |
+
#: options-templates/options-template-phrases.php:247
|
|
|
394 |
msgid "Show Replies"
|
395 |
msgstr "Mostrar Respostas"
|
396 |
|
397 |
+
#: options-templates/options-template-phrases.php:258
|
398 |
msgid "Title For Guests"
|
399 |
msgstr "Título para Visitantes"
|
400 |
|
401 |
+
#: options-templates/options-template-phrases.php:269
|
402 |
msgid "Title For Members"
|
403 |
msgstr "Título para Membros"
|
404 |
|
405 |
+
#: options-templates/options-template-phrases.php:280
|
406 |
msgid "Title For Authors"
|
407 |
msgstr "Título para Autores"
|
408 |
|
409 |
+
#: options-templates/options-template-phrases.php:291
|
410 |
msgid "Title For Admins"
|
411 |
msgstr "Título para Administradores"
|
412 |
|
413 |
+
#: options-templates/options-template-phrases.php:302
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
414 |
msgid "Email Subject"
|
415 |
msgstr "Assunto do Email"
|
416 |
|
417 |
+
#: options-templates/options-template-phrases.php:313
|
418 |
msgid "Email Message"
|
419 |
msgstr "Mensagem do Email"
|
420 |
|
421 |
+
#: options-templates/options-template-phrases.php:324
|
422 |
msgid "New Reply Subject"
|
423 |
msgstr "Assunto do alerta de Nova Resposta"
|
424 |
|
425 |
+
#: options-templates/options-template-phrases.php:328
|
426 |
+
#: options-templates/options-template-phrases.php:779
|
|
|
427 |
msgid "New Reply"
|
428 |
msgstr "Nova Resposta"
|
429 |
|
430 |
+
#: options-templates/options-template-phrases.php:335
|
431 |
+
#: options-templates/options-template-phrases.php:379
|
432 |
msgid "New Reply Message"
|
433 |
msgstr "Mensagem do alerta de Nova Resposta"
|
434 |
|
435 |
+
#: options-templates/options-template-phrases.php:346
|
436 |
+
msgid "Subscribed on this comment replies"
|
437 |
+
msgstr "Subscrito a repostas a este comentário"
|
438 |
+
|
439 |
+
#: options-templates/options-template-phrases.php:357
|
440 |
+
msgid "Subscribed on all your comments replies"
|
441 |
+
msgstr "Subscrito a respostas a todos os seus comentários"
|
442 |
+
|
443 |
+
#: options-templates/options-template-phrases.php:368
|
444 |
+
msgid "Subscribed on this post"
|
445 |
+
msgstr "Subscrito neste artigo"
|
446 |
+
|
447 |
+
#: options-templates/options-template-phrases.php:383
|
448 |
msgid "Unsubscribe"
|
449 |
msgstr "Cancelar Subscrição"
|
450 |
|
451 |
+
#: options-templates/options-template-phrases.php:390
|
452 |
+
#: options-templates/options-template-phrases.php:394
|
|
|
453 |
msgid "Ignore Subscription"
|
454 |
msgstr "Ignorar Subscrição"
|
455 |
|
456 |
+
#: options-templates/options-template-phrases.php:401
|
457 |
+
#: options-templates/options-template-phrases.php:405
|
458 |
+
msgid "Confirm your subscribtion"
|
|
|
459 |
msgstr "Confirme a sua subscrição"
|
460 |
|
461 |
+
#: options-templates/options-template-phrases.php:411
|
462 |
+
#: options-templates/options-template-phrases.php:415
|
|
|
463 |
msgid "You've successfully confirmed your subscription."
|
464 |
msgstr "A sua subscrição foi confirmada com sucesso."
|
465 |
|
466 |
+
#: options-templates/options-template-phrases.php:421
|
467 |
msgid "Subscribe Confirmation Email Subject"
|
468 |
msgstr "Assunto do email de confirmação da subscrição"
|
469 |
|
470 |
+
#: options-templates/options-template-phrases.php:425 wc.php:875
|
|
|
471 |
msgid "Subscribe Confirmation"
|
472 |
msgstr "Confirmação de subscrição"
|
473 |
|
474 |
+
#: options-templates/options-template-phrases.php:432
|
475 |
msgid "Subscribe Confirmation Email Content"
|
476 |
msgstr "Conteúdo do email sobre a confirmação da subscrição"
|
477 |
|
478 |
+
#: options-templates/options-template-phrases.php:436 wc.php:876
|
|
|
479 |
msgid ""
|
480 |
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
481 |
"you will receive an email when new comments are posted according to "
|
484 |
"you again."
|
485 |
msgstr ""
|
486 |
"Olá, <br/> Você de subscrever os novos comentários no nosso website. Isto "
|
487 |
+
"significa que irá receber um email quando novos comentários forem "
|
488 |
+
"publicados de acordo com as opções que escolheu. <br/> Para ativar, clique "
|
489 |
+
"no link em baixo. Se acha que este email foi enviado por engano, por favor "
|
490 |
+
"ignore esta mensagem e nunca o contactaremos de novo."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
491 |
|
492 |
+
#: options-templates/options-template-phrases.php:442
|
493 |
+
msgid "You've successfully unsubscribed."
|
494 |
+
msgstr "A sua subscrição foi cancelada com sucesso."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
|
496 |
+
#: options-templates/options-template-phrases.php:453
|
497 |
+
msgid "Error message for empty field"
|
498 |
+
msgstr "Mensagem de erro para campos vazios"
|
499 |
|
500 |
+
#: options-templates/options-template-phrases.php:464
|
501 |
+
msgid "Error message for invalid email field"
|
502 |
+
msgstr "Mensagem de erro para email inválido"
|
503 |
|
504 |
+
#: options-templates/options-template-phrases.php:475
|
505 |
+
msgid "Year"
|
506 |
+
msgstr "Ano"
|
507 |
|
508 |
+
#: options-templates/options-template-phrases.php:486
|
509 |
+
msgid "Month"
|
510 |
+
msgstr "Mês"
|
511 |
|
512 |
+
#: options-templates/options-template-phrases.php:497
|
513 |
+
msgid "Day"
|
514 |
+
msgstr "Dia"
|
|
|
515 |
|
516 |
+
#: options-templates/options-template-phrases.php:530
|
517 |
+
msgid "Second"
|
518 |
+
msgstr "Segundo"
|
|
|
519 |
|
520 |
+
#: options-templates/options-template-phrases.php:541
|
521 |
+
msgid "Plural (Ex. user -> user + s)"
|
522 |
+
msgstr "Plural (Ex: user -> user + s)"
|
523 |
|
524 |
+
#: options-templates/options-template-phrases.php:552
|
525 |
+
msgid "Commented \"right now\" text"
|
526 |
+
msgstr "Comentário enviado \"agora mesmo\" texto"
|
|
|
527 |
|
528 |
+
#: options-templates/options-template-phrases.php:563
|
529 |
+
msgid "Ago text"
|
530 |
+
msgstr "\"Atrás\" texto"
|
531 |
|
532 |
+
#: options-templates/options-template-phrases.php:574
|
533 |
+
msgid "\"Today\" text"
|
534 |
+
msgstr "\"Hoje\" texto"
|
535 |
|
536 |
+
#: options-templates/options-template-phrases.php:578
|
537 |
+
msgid "Today"
|
538 |
+
msgstr "Hoje"
|
539 |
|
540 |
+
#: options-templates/options-template-phrases.php:585
|
|
|
541 |
msgid "You must be"
|
542 |
msgstr "Você deve"
|
543 |
|
544 |
+
#: options-templates/options-template-phrases.php:597
|
545 |
msgid "Logged in as"
|
546 |
msgstr "Autenticado como"
|
547 |
|
548 |
+
#: options-templates/options-template-phrases.php:607
|
|
|
549 |
msgid "Log out"
|
550 |
msgstr "Sair"
|
551 |
|
552 |
+
#: options-templates/options-template-phrases.php:621
|
553 |
msgid "Logged In"
|
554 |
msgstr "Fazer o login"
|
555 |
|
556 |
+
#: options-templates/options-template-phrases.php:632
|
557 |
msgid "To post a comment"
|
558 |
msgstr "Para publicar um comentário"
|
559 |
|
560 |
+
#: options-templates/options-template-phrases.php:643
|
561 |
+
msgid "Vote Up"
|
562 |
+
msgstr "Voto Positivo"
|
563 |
+
|
564 |
+
#: options-templates/options-template-phrases.php:654
|
565 |
+
msgid "Vote Down"
|
566 |
+
msgstr "Voto Negativo"
|
567 |
+
|
568 |
+
#: options-templates/options-template-phrases.php:665
|
569 |
msgid "Vote Counted"
|
570 |
+
msgstr "Votos Contados"
|
571 |
|
572 |
+
#: options-templates/options-template-phrases.php:676
|
573 |
msgid "You can vote only 1 time"
|
574 |
msgstr "Apenas pode votar uma vez"
|
575 |
|
576 |
+
#: options-templates/options-template-phrases.php:687
|
|
|
577 |
msgid "Voting Error"
|
578 |
msgstr "Erro ao votar"
|
579 |
|
580 |
+
#: options-templates/options-template-phrases.php:698
|
581 |
msgid "Login To Vote"
|
582 |
msgstr "Faça o login para votar"
|
583 |
|
584 |
+
#: options-templates/options-template-phrases.php:709
|
585 |
msgid "You Cannot Vote On Your Comment"
|
586 |
msgstr "Não pode votar no seu comentário"
|
587 |
|
588 |
+
#: options-templates/options-template-phrases.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
589 |
msgid "Invalid Captcha Code"
|
590 |
msgstr "Captcha Inválida"
|
591 |
|
592 |
+
#: options-templates/options-template-phrases.php:731
|
|
|
593 |
msgid "Some of field value is invalid"
|
594 |
msgstr "A informação de algum campo é inválida"
|
595 |
|
596 |
+
#: options-templates/options-template-phrases.php:742
|
597 |
msgid "Comment waiting moderation"
|
598 |
msgstr "O comentário aguarda moderação"
|
599 |
|
600 |
+
#: options-templates/options-template-phrases.php:753
|
601 |
+
msgid "Button text if has new comment"
|
602 |
+
msgstr "Texto no botão se houver um novo comentário"
|
603 |
+
|
604 |
+
#: options-templates/options-template-phrases.php:757
|
605 |
+
msgid "New Comment"
|
606 |
+
msgstr "Novo Comentário"
|
607 |
+
|
608 |
+
#: options-templates/options-template-phrases.php:764
|
609 |
+
msgid "Button text if has new comments"
|
610 |
+
msgstr "Texto no botão se houverem novos comentários"
|
611 |
+
|
612 |
+
#: options-templates/options-template-phrases.php:768
|
613 |
+
msgid "New Comments"
|
614 |
+
msgstr "Novos Comentários"
|
615 |
+
|
616 |
+
#: options-templates/options-template-phrases.php:775
|
617 |
+
msgid "Button text if has new reply"
|
618 |
+
msgstr "Texto no botão se tiver uma resposta nova"
|
619 |
+
|
620 |
+
#: options-templates/options-template-phrases.php:786
|
621 |
+
msgid "Button text if has new replies"
|
622 |
+
msgstr "Texto no botão se tiver várias respostas novas"
|
623 |
+
|
624 |
+
#: options-templates/options-template-phrases.php:790
|
625 |
+
msgid "New Replies"
|
626 |
+
msgstr "Novas Respostas"
|
627 |
+
|
628 |
+
#: options-templates/options-template-phrases.php:797
|
629 |
+
msgid "Text on load more button if has new comment(s)"
|
630 |
+
msgstr "Texto no botão Mostrar Mais"
|
631 |
|
632 |
+
#: options-templates/options-template-phrases.php:801
|
633 |
+
msgid "New"
|
634 |
+
msgstr "Novo"
|
635 |
+
|
636 |
+
#: options-templates/options-template-phrases.php:808
|
637 |
msgid "Message if comment was not updated"
|
638 |
msgstr "Mensagem se o comentário não for atualizado"
|
639 |
|
640 |
+
#: options-templates/options-template-phrases.php:812
|
|
|
641 |
msgid "Sorry, the comment was not updated"
|
642 |
msgstr "Lamentamos, mas o comentário não foi atualizado"
|
643 |
|
644 |
+
#: options-templates/options-template-phrases.php:818
|
645 |
msgid "Message if comment no longer possible to edit"
|
646 |
+
msgstr "Mensagem se não for mais possível editar"
|
647 |
|
648 |
+
#: options-templates/options-template-phrases.php:822
|
|
|
649 |
msgid "Sorry, this comment no longer possible to edit"
|
650 |
msgstr "Lamentamos, mas já não é possível editar o comentário"
|
651 |
|
652 |
+
#: options-templates/options-template-phrases.php:829
|
653 |
msgid "Message if comment text not changed"
|
654 |
msgstr "Mensagem se o texto do comentário não for alterado"
|
655 |
|
656 |
+
#: options-templates/options-template-phrases.php:833
|
657 |
msgid "TYou've not made any changes"
|
658 |
msgstr "Você não fez nenhuma alteração"
|
659 |
|
660 |
+
#: options-templates/options-template-phrases.php:840
|
661 |
+
msgid "Save edited comment button text"
|
662 |
+
msgstr "Texto do botão para guardar comentário editado"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
663 |
|
664 |
+
#: options-templates/options-template-phrases.php:844
|
665 |
+
msgid "Save"
|
666 |
+
msgstr "Guardar"
|
667 |
|
668 |
+
#: options-templates/options-template-phrases.php:850
|
669 |
+
msgid "Cancel comment editing button text"
|
670 |
+
msgstr "Texto do botão para cancelar a edição do comentário"
|
671 |
|
672 |
+
#: options-templates/options-template-phrases.php:854
|
673 |
+
msgid "Cancel"
|
674 |
+
msgstr "Cancelar"
|
|
|
|
|
675 |
|
676 |
+
#: wc-options.php:31 wc-options.php:187
|
677 |
msgid "Hacker?"
|
678 |
msgstr "Hacker?"
|
679 |
|
680 |
+
#: wc-options.php:80
|
681 |
msgid "wpDiscuz General Settings"
|
682 |
msgstr "wpDiscuz - Opções Gerais"
|
683 |
|
684 |
+
#: wc-options.php:168 wc-options.php:308
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
685 |
msgid "Save Changes"
|
686 |
+
msgstr "Guardar Alterações"
|
|
|
|
|
|
|
|
|
687 |
|
688 |
+
#: wc-options.php:283
|
689 |
msgid "WpDiscuz Front-end Phrases"
|
690 |
+
msgstr "wpDiscuz - Frases do Front-end"
|
|
|
|
|
|
|
|
|
691 |
|
692 |
+
#: wc.php:950
|
693 |
+
msgid "Settings"
|
694 |
+
msgstr "Opções"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
695 |
|
696 |
+
#: wc.php:951
|
697 |
msgid "Phrases"
|
698 |
msgstr "Frases"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpdiscuz-ru_RU.mo
CHANGED
Binary file
|
languages/wpdiscuz-ru_RU.po
CHANGED
@@ -1,1257 +1,579 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: advancedcoding <advancedcoding@mail.ru>\n"
|
7 |
"Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
|
8 |
-
"Language:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
-
"X-Poedit-WPHeader: wc.php\n"
|
15 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
16 |
-
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
19 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
20 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
-
#: comment-form/
|
25 |
-
msgid "Participate in this discussion via email"
|
26 |
-
msgstr "Участвовать в этой дискуссии через электронную почту"
|
27 |
-
|
28 |
-
#: comment-form/form.php:323
|
29 |
-
msgid "Connect with"
|
30 |
-
msgstr "Соединить с"
|
31 |
-
|
32 |
-
#: comment-form/tpl-comment.php:174
|
33 |
-
#: options/phrases-layout/phrases-comment.php:27
|
34 |
-
#: options/wc-options-serialize.php:439
|
35 |
msgid "Edit"
|
36 |
msgstr "Редактировать"
|
37 |
|
38 |
-
#:
|
39 |
-
msgid "
|
40 |
-
msgstr "Анонимно"
|
41 |
-
|
42 |
-
#: options/options-layouts/settings-general.php:2
|
43 |
-
msgid "General Settings"
|
44 |
msgstr "Основные настройки"
|
45 |
|
46 |
-
#: options/options-
|
47 |
msgid "Display comment form for post types:"
|
48 |
msgstr "Отображать форму комментариев для следующих типов записей:"
|
49 |
|
50 |
-
#: options/options-
|
51 |
-
msgid "User Must be registered to comment"
|
52 |
-
msgstr "Пользователь должен быть зарегистрирован, чтобы комментировать"
|
53 |
-
|
54 |
-
#: options/options-layouts/settings-general.php:34
|
55 |
-
msgid "Yes"
|
56 |
-
msgstr "Да"
|
57 |
-
|
58 |
-
#: options/options-layouts/settings-general.php:38
|
59 |
-
msgid "No"
|
60 |
-
msgstr "Нет"
|
61 |
-
|
62 |
-
#: options/options-layouts/settings-general.php:46
|
63 |
-
msgid "Comment author must fill out name"
|
64 |
-
msgstr "Автору комментария необходимо указать имя"
|
65 |
-
|
66 |
-
#: options/options-layouts/settings-general.php:57
|
67 |
-
msgid "Comment author must fill out email"
|
68 |
-
msgstr "Автору комментария необходимо указать e-mail"
|
69 |
-
|
70 |
-
#: options/options-layouts/settings-general.php:68
|
71 |
msgid "Show the latest comments on"
|
72 |
msgstr "Показывать последние комментарии"
|
73 |
|
74 |
-
#: options/options-
|
75 |
msgid "the top of the list"
|
76 |
msgstr "наверху списка"
|
77 |
|
78 |
-
#: options/options-
|
79 |
msgid "top of the threads"
|
80 |
-
msgstr "наверху
|
81 |
|
82 |
-
#: options/options-
|
83 |
msgid "bottom of the threads"
|
84 |
msgstr "внизу темы"
|
85 |
|
86 |
-
#: options/options-
|
87 |
msgid "the bottom of the list"
|
88 |
msgstr "внизу списка"
|
89 |
|
90 |
-
#: options/options-
|
91 |
-
msgid "Comment Threads Per Page"
|
92 |
-
msgstr "Количество веток комментариев на странице"
|
93 |
-
|
94 |
-
#: options/options-layouts/settings-general.php:97
|
95 |
-
msgid "Comment text max length"
|
96 |
-
msgstr "Максимальная длинна текста комментария"
|
97 |
-
|
98 |
-
#: options/options-layouts/settings-general.php:108
|
99 |
-
msgid "Comments max depth"
|
100 |
-
msgstr "Максимальная глубина вложенности комментов"
|
101 |
-
|
102 |
-
#: options/options-layouts/settings-general.php:113
|
103 |
-
msgid "Level"
|
104 |
-
msgstr "уровень"
|
105 |
-
|
106 |
-
#: options/options-layouts/settings-general.php:114
|
107 |
-
#: options/options-layouts/settings-general.php:115
|
108 |
-
#: options/options-layouts/settings-general.php:116
|
109 |
-
#: options/options-layouts/settings-general.php:117
|
110 |
-
msgid "Levels"
|
111 |
-
msgstr "уровней"
|
112 |
-
|
113 |
-
#: options/options-layouts/settings-general.php:124
|
114 |
-
msgid "Comment text size in pixels"
|
115 |
-
msgstr "Размер шрифта комментария в пикселях"
|
116 |
-
|
117 |
-
#: options/options-layouts/settings-general.php:141
|
118 |
-
msgid "Allow comment editing for"
|
119 |
-
msgstr "Разрешить редактирование комментария для"
|
120 |
-
|
121 |
-
#: options/options-layouts/settings-general.php:146
|
122 |
-
msgid "Not Allow"
|
123 |
-
msgstr "Не разрешать"
|
124 |
-
|
125 |
-
#: options/options-layouts/settings-general.php:147
|
126 |
-
#: options/options-layouts/settings-general.php:148
|
127 |
-
#: options/options-layouts/settings-live-update.php:41
|
128 |
-
#: options/options-layouts/settings-live-update.php:42
|
129 |
-
#: options/options-layouts/settings-live-update.php:43
|
130 |
-
msgid "Minutes"
|
131 |
-
msgstr "Минут"
|
132 |
-
|
133 |
-
#: options/options-layouts/settings-general.php:149
|
134 |
-
#: options/phrases-layout/phrases-datetime.php:73
|
135 |
-
msgid "Hour"
|
136 |
-
msgstr "Час"
|
137 |
-
|
138 |
-
#: options/options-layouts/settings-general.php:150
|
139 |
-
#: options/options-layouts/settings-general.php:151
|
140 |
-
msgid "Hours"
|
141 |
-
msgstr "Часов"
|
142 |
-
|
143 |
-
#: options/options-layouts/settings-general.php:158
|
144 |
-
msgid "Redirect first commenter to"
|
145 |
-
msgstr "Перенаправить первому комментатору"
|
146 |
-
|
147 |
-
#: options/options-layouts/settings-general.php:165
|
148 |
-
msgid "Do not redirect"
|
149 |
-
msgstr "Не перенаправлять"
|
150 |
-
|
151 |
-
#: options/options-layouts/settings-general.php:174
|
152 |
-
msgid "Allow guests to vote on comments"
|
153 |
-
msgstr "Разрешить гостям голосовать за комментарии"
|
154 |
-
|
155 |
-
#: options/options-layouts/settings-general.php:184
|
156 |
-
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
157 |
-
msgstr ""
|
158 |
-
"Загрузить остальные комментарии после нажатия кнопки [Загрузить больше "
|
159 |
-
"комментарий]"
|
160 |
-
|
161 |
-
#: options/options-layouts/settings-general.php:195
|
162 |
-
msgid "Use WordPress Date/Time format"
|
163 |
-
msgstr "Использовать формат времени и даты WordPress"
|
164 |
-
|
165 |
-
#: options/options-layouts/settings-general.php:196
|
166 |
-
msgid ""
|
167 |
-
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
168 |
-
"show the date/time format set in WordPress General Settings."
|
169 |
-
msgstr ""
|
170 |
-
"wpDiscuz по-умолчанию показывает формат времени в своем формате, удобном для "
|
171 |
-
"чтения. При включении этой опции, дата и время будут показаны в формате, "
|
172 |
-
"указанном в основных настройках WordPress"
|
173 |
-
|
174 |
-
#: options/options-layouts/settings-general.php:203
|
175 |
-
msgid "Current Wordpress date/time format"
|
176 |
-
msgstr "Текущий формат даты/времени Wordpress"
|
177 |
-
|
178 |
-
#: options/options-layouts/settings-general.php:209
|
179 |
-
msgid "Use Plugin .PO/.MO files"
|
180 |
-
msgstr "Используйте редактор PO/.MO файлов"
|
181 |
-
|
182 |
-
#: options/options-layouts/settings-general.php:210
|
183 |
-
msgid ""
|
184 |
-
"wpDiscuz phrase system allows you to translate all front-end phrases. "
|
185 |
-
"However if you have a multi-language website it'll not allow you to add more "
|
186 |
-
"than one language translation. The only way to get it is the plugin "
|
187 |
-
"translation files (.PO / .MO). If wpDiscuz has the languages you need you "
|
188 |
-
"should check this option to disable phrase system and it'll automatically "
|
189 |
-
"translate all phrases based on language files according to current language."
|
190 |
-
msgstr ""
|
191 |
-
"Система wpDiscuz позволяет переводить все интерфейсные фразы. Однако, если у "
|
192 |
-
"вас есть веб-сайт на разных языках плагин не будет позволять вам добавить "
|
193 |
-
"больше чем один язык перевода. Единственный способ певевести плагин - это "
|
194 |
-
"редактировать файлы перевода плагина (.po / .mo). Если wpDiscuz уже имеет "
|
195 |
-
"языки, которые вам нужны, вы должны отметить эту опцию, чтобы отключить "
|
196 |
-
"систему фраз, и он будет автоматически переводить все слова и предложения, "
|
197 |
-
"основанные на языковых файлов в соответствии с действующим языком."
|
198 |
-
|
199 |
-
#: options/options-layouts/settings-general.php:222
|
200 |
-
msgid ""
|
201 |
-
"Help wpDiscuz to grow allowing people to recognize which comment plugin you "
|
202 |
-
"use"
|
203 |
-
msgstr ""
|
204 |
-
"Помогите wpDiscuz развиваться, указывая каким комментатором вы пользуетесь"
|
205 |
-
|
206 |
-
#: options/options-layouts/settings-general.php:224
|
207 |
-
msgid ""
|
208 |
-
"Please check this option on to help wpDiscuz get more popularity as your "
|
209 |
-
"thank to the hard work we do for you totally free. This option adds a very "
|
210 |
-
"small (16x16px) icon under the comment section which will allow your site "
|
211 |
-
"visitors recognize the name of comment solution you use."
|
212 |
-
msgstr ""
|
213 |
-
"Пожалуйста, отметьте эту опцию, чтобы помочь на wpDiscuz получить большую "
|
214 |
-
"популярность в качестве благодарности к тяжелой работе, которую мы делаем "
|
215 |
-
"для вас совершенно бесплатно. Эта опция добавляет очень небольшой (16x16px) "
|
216 |
-
"значок под комментариями, который позволят посетителям вашего сайта увидеть "
|
217 |
-
"название плагина, который вы используете."
|
218 |
-
|
219 |
-
#: options/options-layouts/settings-general.php:229
|
220 |
-
msgid "Thank you!"
|
221 |
-
msgstr "Спасибо!"
|
222 |
-
|
223 |
-
#: options/options-layouts/settings-live-update.php:2
|
224 |
-
#: options/wc-options.php:180
|
225 |
-
msgid "Live Update"
|
226 |
-
msgstr "Настройки обновления в реальном времени"
|
227 |
-
|
228 |
-
#: options/options-layouts/settings-live-update.php:8
|
229 |
msgid "Live update options"
|
230 |
msgstr "Настройки обновления в реальном времени"
|
231 |
|
232 |
-
#: options/options-
|
233 |
-
msgid ""
|
234 |
-
"If you use Shared Web Hosting you should make sure the \"Live Update\" "
|
235 |
-
"function doesn't overload your server resources. This function is good for "
|
236 |
-
"VPS and Dedicated Hosting Plans."
|
237 |
-
msgstr ""
|
238 |
-
"Если вы используете виртуальный хостинг вы должны убедиться, что функция "
|
239 |
-
"\"Автоматическое обновление\" не перегружает сервер. Эта функция хорошо "
|
240 |
-
"подходит для VPS и выделенных хостингов."
|
241 |
-
|
242 |
-
#: options/options-layouts/settings-live-update.php:14
|
243 |
msgid "Never update"
|
244 |
msgstr "Никогда не обновлять"
|
245 |
|
246 |
-
#: options/options-
|
247 |
msgid "Turn off \"Live Update\" function"
|
248 |
msgstr "Выключить функцию \"Обновление в реальном времени\""
|
249 |
|
250 |
-
#: options/options-
|
251 |
msgid "Show new comment/reply buttons to update manualy"
|
252 |
msgstr "Показывать кнопки новых комментариев/ответов для обновления вручную"
|
253 |
|
254 |
-
#: options/options-
|
255 |
msgid "Always check for new comments and show update buttons"
|
256 |
msgstr ""
|
257 |
"Всегда проверять наличие новых комментов и показывать кнопки обновления"
|
258 |
|
259 |
-
#: options/options-
|
260 |
msgid "Always update"
|
261 |
-
msgstr "
|
262 |
|
263 |
-
#: options/options-
|
264 |
msgid "Always check for new comments and update automatically"
|
265 |
msgstr "Всегда проверять наличие новых комментов и обновлять автоматически"
|
266 |
|
267 |
-
#: options/options-
|
268 |
msgid "Update comment list every"
|
269 |
-
msgstr "
|
270 |
|
271 |
-
#: options/options-
|
272 |
-
#: options/options-
|
273 |
-
#: options/options-
|
274 |
msgid "Seconds"
|
275 |
msgstr "секунд"
|
276 |
|
277 |
-
#: options/options-
|
278 |
-
#: options/
|
279 |
msgid "Minute"
|
280 |
msgstr "Минута"
|
281 |
|
282 |
-
#: options/options-
|
283 |
-
|
284 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
|
286 |
-
#: options/options-
|
287 |
-
msgid "Show logged-in user
|
288 |
-
msgstr "Показывать имя пользователя
|
289 |
|
290 |
-
#: options/options-
|
|
|
|
|
|
|
|
|
291 |
msgid "Hide Reply button for Guests"
|
292 |
msgstr "Скрыть кнопку ответа от гостей"
|
293 |
|
294 |
-
#: options/options-
|
295 |
msgid "Hide Reply button for Members"
|
296 |
msgstr "Скрыть кнопку ответа от пользователей"
|
297 |
|
298 |
-
#: options/options-
|
299 |
msgid "Hide Author Titles"
|
300 |
msgstr "Скрыть подписи под никами"
|
301 |
|
302 |
-
#: options/options-
|
303 |
-
msgid "
|
304 |
-
msgstr "
|
305 |
|
306 |
-
#: options/options-
|
307 |
-
msgid "
|
308 |
-
msgstr "
|
309 |
|
310 |
-
#: options/options-
|
311 |
-
msgid "
|
312 |
-
msgstr "
|
313 |
|
314 |
-
#: options/options-
|
315 |
-
|
316 |
-
|
|
|
|
|
|
|
317 |
|
318 |
-
#: options/options-
|
319 |
-
msgid "
|
320 |
-
msgstr "
|
321 |
|
322 |
-
#: options/options-
|
323 |
-
msgid "
|
324 |
-
|
|
|
|
|
|
|
|
|
|
|
325 |
|
326 |
-
#: options/options-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
|
|
331 |
|
332 |
-
#: options/options-
|
333 |
-
|
334 |
-
|
335 |
-
msgid "Activate"
|
336 |
-
msgstr "Активировать"
|
337 |
|
338 |
-
#: options/options-
|
339 |
-
|
340 |
-
|
341 |
-
msgid "View details/Install"
|
342 |
-
msgstr "Показать детали/установку"
|
343 |
|
344 |
-
#: options/options-
|
345 |
-
msgid "
|
346 |
-
msgstr "
|
347 |
|
348 |
-
#: options/options-
|
349 |
msgid ""
|
350 |
-
"
|
351 |
-
"
|
352 |
-
"
|
353 |
-
"buttons will be fully integrated with wpDiscuz comment forms."
|
354 |
msgstr ""
|
355 |
-
"
|
356 |
-
"
|
357 |
-
"
|
358 |
-
"интегрированы в форму комментарий."
|
359 |
|
360 |
-
#: options/options-
|
361 |
-
msgid "
|
362 |
-
msgstr "
|
363 |
|
364 |
-
#: options/options-
|
365 |
msgid "Comment Form Background Color"
|
366 |
-
msgstr "
|
367 |
-
|
368 |
-
#: options/options-
|
369 |
-
#: options/options-
|
370 |
-
#: options/options-
|
371 |
-
#: options/options-
|
372 |
-
#: options/options-
|
373 |
-
#: options/options-
|
374 |
-
#: options/options-
|
375 |
-
#: options/options-layouts/settings-style.php:178
|
376 |
msgid "Example: #00ff00"
|
377 |
-
msgstr "
|
378 |
|
379 |
-
#: options/options-
|
380 |
msgid "Comment Background Color"
|
381 |
msgstr "Цвет фона коментария"
|
382 |
|
383 |
-
#: options/options-
|
384 |
msgid "Reply Background Color"
|
385 |
-
msgstr "
|
386 |
|
387 |
-
#: options/options-
|
388 |
msgid "Comment Text Color"
|
389 |
msgstr "Цвет шрифта комментария"
|
390 |
|
391 |
-
#: options/options-
|
392 |
msgid "Author title color"
|
393 |
msgstr "Цвет подписи автора"
|
394 |
|
395 |
-
#: options/options-
|
396 |
msgid "Vote, Reply, Share, Edit links text colors"
|
397 |
msgstr "Цвет ссылок Голосовать, Ответить, Поделиться и Редактировать"
|
398 |
|
399 |
-
#: options/options-
|
400 |
-
msgid "Comment form fields border color"
|
401 |
-
msgstr "Цвет границы формы комментарий"
|
402 |
-
|
403 |
-
#: options/options-layouts/settings-style.php:175
|
404 |
msgid "New loaded comments' background color"
|
405 |
msgstr "Цвет фона новых загруженных комментариев"
|
406 |
|
407 |
-
#: options/options-
|
408 |
msgid "Custom CSS Code"
|
409 |
msgstr "Свой CSS код"
|
410 |
|
411 |
-
#: options/options-
|
412 |
-
msgid "
|
413 |
-
msgstr "
|
414 |
|
415 |
-
#: options/options-
|
416 |
-
msgid "
|
417 |
-
msgstr "
|
418 |
|
419 |
-
#: options/options-
|
420 |
-
msgid "
|
421 |
-
msgstr "
|
422 |
|
423 |
-
#: options/options-
|
424 |
-
msgid "
|
425 |
-
msgstr "
|
426 |
|
427 |
-
#: options/options-
|
428 |
-
msgid ""
|
429 |
-
|
430 |
-
"will not have any option for email notifications and they'll not get any "
|
431 |
-
"messages."
|
432 |
-
msgstr ""
|
433 |
-
"Пожалуйста, выберите все три, или как минимум одну опцию, иначе пользователи "
|
434 |
-
"не смогут увидеть их на странице комментариев и не будут получать никаких "
|
435 |
-
"уведомлений."
|
436 |
|
437 |
-
#: options/options-
|
438 |
-
msgid "
|
439 |
-
msgstr ""
|
440 |
-
"Используйте Postmatic, чтобы подписаться и комментировать по электронной "
|
441 |
-
"почте"
|
442 |
|
443 |
-
#: options/options-
|
444 |
-
msgid ""
|
445 |
-
"
|
446 |
-
"notified, they add a reply right from their inbox."
|
447 |
-
msgstr ""
|
448 |
-
"Postmatic позволяет пользователям подписаться на новые комментарии. Вместо "
|
449 |
-
"того чтобы просто получать уведомление, они добавляют ответ прямо на их "
|
450 |
-
"почтовый ящик."
|
451 |
|
452 |
-
#: options/options-
|
453 |
-
msgid ""
|
454 |
-
|
455 |
-
msgstr ""
|
456 |
-
"Выделите уведомление по электронной почте о всех новых последующих "
|
457 |
-
"комментариях по умолчанию"
|
458 |
|
459 |
-
#: options/options-
|
460 |
-
msgid ""
|
461 |
-
|
462 |
-
"forms will only be displayed the \"Notify of all new follow-up comments\" "
|
463 |
-
"option and this option will always be selected by default."
|
464 |
-
msgstr ""
|
465 |
-
"Если эта опция включена, в \"Управление Подписки\" раздела формы комментарий "
|
466 |
-
"будут отображаться только вариант \"Уведомлять о всех новых комментариях\" и "
|
467 |
-
"этот вариант всегда будет выбран по умолчанию."
|
468 |
|
469 |
-
#: options/
|
470 |
-
msgid "
|
471 |
-
msgstr "
|
472 |
|
473 |
-
#: options/
|
474 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
475 |
msgid "Reply"
|
476 |
msgstr "Ответить "
|
477 |
|
478 |
-
#: options/
|
479 |
-
#: options/wc-options-serialize.php:438
|
480 |
msgid "Share"
|
481 |
msgstr "Поделиться"
|
482 |
|
483 |
-
#: options/
|
484 |
-
#: options/wc-options-serialize.php:440
|
485 |
msgid "Share On Facebook"
|
486 |
msgstr "Поделиться через Facebook"
|
487 |
|
488 |
-
#: options/
|
489 |
-
#: options/wc-options-serialize.php:441
|
490 |
msgid "Share On Twitter"
|
491 |
msgstr "Поделиться через Twitter"
|
492 |
|
493 |
-
#: options/
|
494 |
-
#: options/wc-options-serialize.php:442
|
495 |
msgid "Share On Google"
|
496 |
msgstr "Поделиться через Google"
|
497 |
|
498 |
-
#: options/
|
499 |
-
#: options/wc-options-serialize.php:443
|
500 |
-
msgid "Share On VKontakte"
|
501 |
-
msgstr "Поделиться через Вконтакте"
|
502 |
-
|
503 |
-
#: options/phrases-layout/phrases-comment.php:77
|
504 |
-
#: options/wc-options-serialize.php:444
|
505 |
-
msgid "Share On Odnoklassniki"
|
506 |
-
msgstr "Поделиться через Одноклассники"
|
507 |
-
|
508 |
-
#: options/phrases-layout/phrases-comment.php:87
|
509 |
-
#: options/wc-options-serialize.php:445
|
510 |
msgid "Hide Replies"
|
511 |
msgstr "Спрятать ответы"
|
512 |
|
513 |
-
#: options/
|
514 |
-
#: options/wc-options-serialize.php:446
|
515 |
msgid "Show Replies"
|
516 |
msgstr "Показать ответы"
|
517 |
|
518 |
-
#: options/
|
519 |
msgid "Title For Guests"
|
520 |
msgstr "Подпись для Гостей"
|
521 |
|
522 |
-
#: options/
|
523 |
msgid "Title For Members"
|
524 |
msgstr "Подпись для Пользователей"
|
525 |
|
526 |
-
#: options/
|
527 |
msgid "Title For Authors"
|
528 |
msgstr "Подпись для Авторов"
|
529 |
|
530 |
-
#: options/
|
531 |
msgid "Title For Admins"
|
532 |
msgstr "Подпись для Админов"
|
533 |
|
534 |
-
#: options/
|
535 |
-
#: options/wc-options-serialize.php:488
|
536 |
-
msgid "Vote Up"
|
537 |
-
msgstr "Голос за"
|
538 |
-
|
539 |
-
#: options/phrases-layout/phrases-comment.php:157
|
540 |
-
#: options/wc-options-serialize.php:489
|
541 |
-
msgid "Vote Down"
|
542 |
-
msgstr "Голос против"
|
543 |
-
|
544 |
-
#: options/phrases-layout/phrases-comment.php:167
|
545 |
-
msgid "Save edited comment button text"
|
546 |
-
msgstr "Сохранить отредактированный текст кнопки комментария"
|
547 |
-
|
548 |
-
#: options/phrases-layout/phrases-comment.php:171
|
549 |
-
#: options/wc-options-serialize.php:507
|
550 |
-
msgid "Save"
|
551 |
-
msgstr "Сохранить"
|
552 |
-
|
553 |
-
#: options/phrases-layout/phrases-comment.php:177
|
554 |
-
msgid "Cancel comment editing button text"
|
555 |
-
msgstr "Отменить текст кнопки редактирования комментария"
|
556 |
-
|
557 |
-
#: options/phrases-layout/phrases-comment.php:181
|
558 |
-
#: options/wc-options-serialize.php:508
|
559 |
-
msgid "Cancel"
|
560 |
-
msgstr "Отменить"
|
561 |
-
|
562 |
-
#: options/phrases-layout/phrases-datetime.php:2
|
563 |
-
msgid "Date/Time Phrases"
|
564 |
-
msgstr "Дата/Время фразы"
|
565 |
-
|
566 |
-
#: options/phrases-layout/phrases-datetime.php:7
|
567 |
-
msgid "Year"
|
568 |
-
msgstr "Год"
|
569 |
-
|
570 |
-
#: options/phrases-layout/phrases-datetime.php:18
|
571 |
-
msgid "Years (Plural Form)"
|
572 |
-
msgstr "Годы (форма множественного числа)"
|
573 |
-
|
574 |
-
#: options/phrases-layout/phrases-datetime.php:22
|
575 |
-
msgid "Years"
|
576 |
-
msgstr "Лет"
|
577 |
-
|
578 |
-
#: options/phrases-layout/phrases-datetime.php:29
|
579 |
-
msgid "Month"
|
580 |
-
msgstr "Месяц"
|
581 |
-
|
582 |
-
#: options/phrases-layout/phrases-datetime.php:40
|
583 |
-
msgid "Months (Plural Form)"
|
584 |
-
msgstr "Месяцв (форма множественного числа)"
|
585 |
-
|
586 |
-
#: options/phrases-layout/phrases-datetime.php:51
|
587 |
-
msgid "Day"
|
588 |
-
msgstr "День"
|
589 |
-
|
590 |
-
#: options/phrases-layout/phrases-datetime.php:62
|
591 |
-
msgid "Days (Plural Form)"
|
592 |
-
msgstr "Дни (форма множественного числа)"
|
593 |
-
|
594 |
-
#: options/phrases-layout/phrases-datetime.php:84
|
595 |
-
msgid "Hours (Plural Form)"
|
596 |
-
msgstr "Часы (форма множественного числа)"
|
597 |
-
|
598 |
-
#: options/phrases-layout/phrases-datetime.php:106
|
599 |
-
msgid "Minutes (Plural Form)"
|
600 |
-
msgstr "Минуты (форма множественного числа)"
|
601 |
-
|
602 |
-
#: options/phrases-layout/phrases-datetime.php:117
|
603 |
-
msgid "Second"
|
604 |
-
msgstr "Секунды"
|
605 |
-
|
606 |
-
#: options/phrases-layout/phrases-datetime.php:128
|
607 |
-
msgid "Seconds (Plural Form)"
|
608 |
-
msgstr "Секунды (форма множественного числа)"
|
609 |
-
|
610 |
-
#: options/phrases-layout/phrases-datetime.php:138
|
611 |
-
msgid "Commented \"right now\" text"
|
612 |
-
msgstr "Текст \"только что\" прокомментировано"
|
613 |
-
|
614 |
-
#: options/phrases-layout/phrases-datetime.php:149
|
615 |
-
msgid "Ago text"
|
616 |
-
msgstr "Тест \"тому назад\""
|
617 |
-
|
618 |
-
#: options/phrases-layout/phrases-datetime.php:160
|
619 |
-
msgid "\"Today\" text"
|
620 |
-
msgstr "Текст \"Сегодня\""
|
621 |
-
|
622 |
-
#: options/phrases-layout/phrases-datetime.php:164
|
623 |
-
#: options/wc-options-serialize.php:482
|
624 |
-
msgid "Today"
|
625 |
-
msgstr "Сегодня"
|
626 |
-
|
627 |
-
#: options/phrases-layout/phrases-email.php:2
|
628 |
-
msgid "Email Template Phrases"
|
629 |
-
msgstr "Шаблон электронного письма"
|
630 |
-
|
631 |
-
#: options/phrases-layout/phrases-email.php:7
|
632 |
msgid "Email Subject"
|
633 |
-
msgstr "
|
634 |
|
635 |
-
#: options/
|
636 |
msgid "Email Message"
|
637 |
-
msgstr "
|
638 |
|
639 |
-
#: options/
|
640 |
msgid "New Reply Subject"
|
641 |
-
msgstr "
|
642 |
|
643 |
-
#: options/
|
644 |
-
#: options/
|
645 |
-
#: options/wc-options-serialize.php:453
|
646 |
msgid "New Reply"
|
647 |
msgstr "Новый ответ"
|
648 |
|
649 |
-
#: options/
|
|
|
650 |
msgid "New Reply Message"
|
651 |
-
msgstr "Новый ответ на сообщение"
|
652 |
-
|
653 |
-
#: options/phrases-layout/phrases-email.php:50
|
654 |
-
#: options/phrases-layout/phrases-email.php:54
|
655 |
-
#: options/wc-options-serialize.php:458
|
656 |
-
msgid "Unsubscribe"
|
657 |
msgstr "Отписаться"
|
658 |
|
659 |
-
#: options/
|
660 |
-
#: options/phrases-layout/phrases-email.php:65
|
661 |
-
#: options/wc-options-serialize.php:459
|
662 |
-
msgid "Ignore Subscription"
|
663 |
-
msgstr "Игнорировать подписку"
|
664 |
-
|
665 |
-
#: options/phrases-layout/phrases-email.php:72
|
666 |
-
#: options/phrases-layout/phrases-email.php:76
|
667 |
-
#: options/wc-options-serialize.php:461
|
668 |
-
msgid "Confirm your subscription"
|
669 |
-
msgstr "Подтвердить подписку"
|
670 |
-
|
671 |
-
#: options/phrases-layout/phrases-email.php:82
|
672 |
-
#: options/phrases-layout/phrases-email.php:86
|
673 |
-
#: options/wc-options-serialize.php:462
|
674 |
-
msgid "You've successfully confirmed your subscription."
|
675 |
-
msgstr "Вы успешпо подтвердили подписку"
|
676 |
-
|
677 |
-
#: options/phrases-layout/phrases-email.php:92
|
678 |
-
msgid "Subscribe Confirmation Email Subject"
|
679 |
-
msgstr "Тема подписки по электронной почте"
|
680 |
-
|
681 |
-
#: options/phrases-layout/phrases-email.php:96
|
682 |
-
#: options/wc-options-serialize.php:463 wc.php:941
|
683 |
-
msgid "Subscribe Confirmation"
|
684 |
-
msgstr "Подтверждение подписки"
|
685 |
-
|
686 |
-
#: options/phrases-layout/phrases-email.php:103
|
687 |
-
msgid "Subscribe Confirmation Email Content"
|
688 |
-
msgstr "Содержание формы подписки"
|
689 |
-
|
690 |
-
#: options/phrases-layout/phrases-email.php:107
|
691 |
-
#: options/wc-options-serialize.php:464 wc.php:942
|
692 |
-
msgid ""
|
693 |
-
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
694 |
-
"you will receive an email when new comments are posted according to "
|
695 |
-
"subscription option you've chosen. <br/> To activate, click confirm below. "
|
696 |
-
"If you believe this is an error, ignore this message and we'll never bother "
|
697 |
-
"you again."
|
698 |
-
msgstr ""
|
699 |
-
"Здравствуйте, <br/> Вы подписались на новые комментарии на нашем сайте. Это "
|
700 |
-
"означает, что вы получите по электронной почте сообщение при появлении новых "
|
701 |
-
"комментарий в соответствии с выбранным вариантом подписки. <br/> Для "
|
702 |
-
"активации нажмите подтверждение ниже. Если вы считаете, что это ошибка, "
|
703 |
-
"проигнорируйте это сообщение, и мы никогда не будем беспокоить вас снова. "
|
704 |
-
"<br/> С уважением, команда Bowandtie.ru"
|
705 |
-
|
706 |
-
#: options/phrases-layout/phrases-form.php:2
|
707 |
-
msgid "Form Template Phrases"
|
708 |
-
msgstr "Шаблон сообщений"
|
709 |
-
|
710 |
-
#: options/phrases-layout/phrases-form.php:7
|
711 |
-
msgid "Comment Field Start"
|
712 |
-
msgstr "Фраза \"Начать обсуждение\""
|
713 |
-
|
714 |
-
#: options/phrases-layout/phrases-form.php:17
|
715 |
-
msgid "Comment Field Join"
|
716 |
-
msgstr "Фраза \"Присоединиться к обсуждению\""
|
717 |
-
|
718 |
-
#: options/phrases-layout/phrases-form.php:27
|
719 |
-
msgid "Email Field"
|
720 |
-
msgstr "Email"
|
721 |
-
|
722 |
-
#: options/phrases-layout/phrases-form.php:37
|
723 |
-
msgid "Name Field"
|
724 |
-
msgstr "Имя"
|
725 |
-
|
726 |
-
#: options/phrases-layout/phrases-form.php:47
|
727 |
-
msgid "WebSite URL Field"
|
728 |
-
msgstr "Поле URL вебсайта"
|
729 |
-
|
730 |
-
#: options/phrases-layout/phrases-form.php:57
|
731 |
-
msgid "CAPTCHA Field"
|
732 |
-
msgstr "CAPTCHA"
|
733 |
-
|
734 |
-
#: options/phrases-layout/phrases-form.php:67
|
735 |
-
msgid "Submit Button"
|
736 |
-
msgstr "Кнопка подписки"
|
737 |
-
|
738 |
-
#: options/phrases-layout/phrases-form.php:77
|
739 |
-
#: options/phrases-layout/phrases-form.php:81
|
740 |
-
#: options/wc-options-serialize.php:430
|
741 |
-
msgid "Manage Subscriptions"
|
742 |
-
msgstr "Управление Подпиской"
|
743 |
-
|
744 |
-
#: options/phrases-layout/phrases-form.php:87
|
745 |
-
msgid "Notify \"None\""
|
746 |
-
msgstr "Сообщите \"Нет\""
|
747 |
-
|
748 |
-
#: options/phrases-layout/phrases-form.php:91
|
749 |
-
#: options/wc-options-serialize.php:431
|
750 |
-
msgid "None"
|
751 |
-
msgstr "Ничего"
|
752 |
-
|
753 |
-
#: options/phrases-layout/phrases-form.php:97
|
754 |
-
msgid "Notify on new comments (checkbox)"
|
755 |
-
msgstr "Сообщать о новых ответах на этот коментарий (галочка)"
|
756 |
-
|
757 |
-
#: options/phrases-layout/phrases-form.php:101
|
758 |
-
#: options/wc-options-serialize.php:432
|
759 |
-
msgid "Notify of all new follow-up comments"
|
760 |
-
msgstr "Сообщать о всех последующих комментариях (галочка)"
|
761 |
-
|
762 |
-
#: options/phrases-layout/phrases-form.php:108
|
763 |
-
msgid "Notify on all new replies (checkbox)"
|
764 |
-
msgstr "Сообщать об ответах на все мои коментарии (галочка)"
|
765 |
-
|
766 |
-
#: options/phrases-layout/phrases-form.php:112
|
767 |
-
#: options/wc-options-serialize.php:433
|
768 |
-
msgid "Notify of new replies to all my comments"
|
769 |
-
msgstr "Сообщать о всех новых ответах на мои комментарии"
|
770 |
-
|
771 |
-
#: options/phrases-layout/phrases-form.php:119
|
772 |
-
msgid "Notify on new replies (checkbox)"
|
773 |
-
msgstr "Сообщать о новых ответах (галочка)"
|
774 |
-
|
775 |
-
#: options/phrases-layout/phrases-form.php:123
|
776 |
-
#: options/wc-options-serialize.php:434
|
777 |
-
msgid "Notify of new replies to this comment"
|
778 |
-
msgstr "Сообщать о новых ответах на этот комментарий"
|
779 |
-
|
780 |
-
#: options/phrases-layout/phrases-form.php:129
|
781 |
msgid "Subscribed on this comment replies"
|
782 |
msgstr "Подписка на ответы на этот коммент"
|
783 |
|
784 |
-
#: options/
|
785 |
msgid "Subscribed on all your comments replies"
|
786 |
msgstr "Подписка на ответы на все комменты пользователя"
|
787 |
|
788 |
-
#: options/
|
789 |
msgid "Subscribed on this post"
|
790 |
msgstr "Подписка на все комменты к записи"
|
791 |
|
792 |
-
#: options/
|
793 |
-
msgid "
|
794 |
-
msgstr "
|
795 |
-
|
796 |
-
#: options/phrases-layout/phrases-general.php:7
|
797 |
-
#: options/wc-options-serialize.php:418
|
798 |
-
msgid "Leave a Reply"
|
799 |
-
msgstr "Отправить ответ"
|
800 |
-
|
801 |
-
#: options/phrases-layout/phrases-general.php:17
|
802 |
-
msgid "Be the first to comment"
|
803 |
-
msgstr "Оставьте первый комментарий"
|
804 |
-
|
805 |
-
#: options/phrases-layout/phrases-general.php:27
|
806 |
-
#: options/wc-options-serialize.php:420 options/wc-options.php:353
|
807 |
-
msgid "Comment"
|
808 |
-
msgstr "Комментарий"
|
809 |
-
|
810 |
-
#: options/phrases-layout/phrases-general.php:37
|
811 |
-
msgid "Comment (Plural Form)"
|
812 |
-
msgstr "Комментарий (форма множественного числа)"
|
813 |
-
|
814 |
-
#: options/phrases-layout/phrases-general.php:47
|
815 |
-
msgid "On"
|
816 |
-
msgstr "Включено"
|
817 |
-
|
818 |
-
#: options/phrases-layout/phrases-general.php:57
|
819 |
-
msgid "Load More Button"
|
820 |
-
msgstr "Кнопка \"Загрузить ещё\""
|
821 |
-
|
822 |
-
#: options/phrases-layout/phrases-general.php:67
|
823 |
-
#: options/wc-options-serialize.php:436
|
824 |
-
msgid "Load Rest of Comments"
|
825 |
-
msgstr "Загрузить остальные комментарии"
|
826 |
-
|
827 |
-
#: options/phrases-layout/phrases-general.php:77
|
828 |
-
msgid "Button text if has new comment"
|
829 |
-
msgstr "Текст кнопки, если есть новый комментарий"
|
830 |
|
831 |
-
#: options/
|
832 |
-
|
833 |
-
|
834 |
-
msgstr "Новый комментарий"
|
835 |
|
836 |
-
#: options/
|
837 |
-
msgid "
|
838 |
-
msgstr "
|
839 |
|
840 |
-
#: options/
|
841 |
-
msgid "
|
842 |
-
msgstr "
|
843 |
|
844 |
-
#: options/
|
845 |
-
msgid "
|
846 |
-
msgstr "
|
847 |
|
848 |
-
#: options/
|
849 |
-
msgid "
|
850 |
-
msgstr "
|
851 |
|
852 |
-
#: options/
|
853 |
-
msgid "
|
854 |
-
msgstr "
|
855 |
|
856 |
-
#: options/
|
857 |
-
msgid "
|
858 |
-
msgstr "
|
859 |
|
860 |
-
#: options/
|
861 |
-
|
862 |
-
|
863 |
-
msgstr "Новое"
|
864 |
|
865 |
-
#: options/
|
866 |
-
msgid "
|
867 |
-
msgstr "
|
868 |
|
869 |
-
#: options/
|
870 |
-
|
871 |
-
|
872 |
-
msgstr "Вы успешно отписались."
|
873 |
|
874 |
-
#: options/
|
875 |
-
msgid "
|
876 |
-
msgstr "
|
877 |
|
878 |
-
#: options/
|
879 |
-
msgid "
|
880 |
-
msgstr "
|
881 |
|
882 |
-
#: options/
|
883 |
-
msgid "
|
884 |
-
msgstr "
|
885 |
|
886 |
-
#: options/
|
887 |
-
#: options/wc-options-serialize.php:483
|
888 |
msgid "You must be"
|
889 |
msgstr "Вы должны быть "
|
890 |
|
891 |
-
#: options/
|
892 |
msgid "Logged in as"
|
893 |
msgstr "Вошли как"
|
894 |
|
895 |
-
#: options/
|
896 |
-
#: options/wc-options-serialize.php:485
|
897 |
msgid "Log out"
|
898 |
msgstr "Выйти"
|
899 |
|
900 |
-
#: options/
|
901 |
msgid "Logged In"
|
902 |
msgstr "Зарегистрированы"
|
903 |
|
904 |
-
#: options/
|
905 |
msgid "To post a comment"
|
906 |
msgstr "Чтобы оставить комментарий"
|
907 |
|
908 |
-
#: options/
|
909 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
910 |
msgid "Vote Counted"
|
911 |
msgstr "Голос учтен"
|
912 |
|
913 |
-
#: options/
|
914 |
msgid "You can vote only 1 time"
|
915 |
msgstr "Вы можете проголосовать только один раз"
|
916 |
|
917 |
-
#: options/
|
918 |
-
#: options/wc-options-serialize.php:492
|
919 |
msgid "Voting Error"
|
920 |
msgstr "Ошибка голосования"
|
921 |
|
922 |
-
#: options/
|
923 |
msgid "Login To Vote"
|
924 |
msgstr "Залогиньтесь, чтобы голосовать"
|
925 |
|
926 |
-
#: options/
|
927 |
msgid "You Cannot Vote On Your Comment"
|
928 |
msgstr "Вы не можете проголосовать за свой комментарий"
|
929 |
|
930 |
-
#: options/
|
931 |
-
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
932 |
-
msgstr ""
|
933 |
-
"Вы не можете проголосовать за этот комментарий (голосование с того же IP "
|
934 |
-
"адреса)"
|
935 |
-
|
936 |
-
#: options/phrases-layout/phrases-notification.php:158
|
937 |
-
#: options/wc-options-serialize.php:496
|
938 |
msgid "Invalid Captcha Code"
|
939 |
msgstr "Неверно введен код"
|
940 |
|
941 |
-
#: options/
|
942 |
-
#: options/wc-options-serialize.php:497
|
943 |
msgid "Some of field value is invalid"
|
944 |
msgstr "Некоторые поля заполнены неверно"
|
945 |
|
946 |
-
#: options/
|
947 |
msgid "Comment waiting moderation"
|
948 |
msgstr "Комментарий ожидает модерации"
|
949 |
|
950 |
-
#: options/
|
951 |
-
msgid "
|
952 |
-
msgstr "
|
953 |
-
|
954 |
-
#: options/phrases-layout/phrases-notification.php:198
|
955 |
-
msgid "Message if comment was not updated"
|
956 |
-
msgstr "Сообщить, если комментарий не был обновлен"
|
957 |
-
|
958 |
-
#: options/phrases-layout/phrases-notification.php:202
|
959 |
-
#: options/wc-options-serialize.php:504
|
960 |
-
msgid "Sorry, the comment was not updated"
|
961 |
-
msgstr "Извините, комментарий не был обновлен"
|
962 |
-
|
963 |
-
#: options/phrases-layout/phrases-notification.php:208
|
964 |
-
msgid "Message if comment no longer possible to edit"
|
965 |
-
msgstr "Сообщить, если комментарий уже нельзя обновить"
|
966 |
-
|
967 |
-
#: options/phrases-layout/phrases-notification.php:212
|
968 |
-
#: options/wc-options-serialize.php:505
|
969 |
-
msgid "Sorry, this comment no longer possible to edit"
|
970 |
-
msgstr "Извините, но комментарий уже нельзя обновить"
|
971 |
-
|
972 |
-
#: options/phrases-layout/phrases-notification.php:219
|
973 |
-
msgid "Message if comment text not changed"
|
974 |
-
msgstr "Сообщить, если комментарий не был изменён"
|
975 |
-
|
976 |
-
#: options/phrases-layout/phrases-notification.php:223
|
977 |
-
msgid "TYou've not made any changes"
|
978 |
-
msgstr "Вы не сделали никаких изменений"
|
979 |
-
|
980 |
-
#: options/wc-options-serialize.php:419
|
981 |
-
msgid "Be the First to Comment!"
|
982 |
-
msgstr "Оставьте первый комментарий!"
|
983 |
-
|
984 |
-
#: options/wc-options-serialize.php:421
|
985 |
-
msgid "Comments"
|
986 |
-
msgstr "Комментарий"
|
987 |
-
|
988 |
-
#: options/wc-options-serialize.php:422
|
989 |
-
msgid "on"
|
990 |
-
msgstr "на"
|
991 |
-
|
992 |
-
#: options/wc-options-serialize.php:423
|
993 |
-
msgid "Start the discussion"
|
994 |
-
msgstr "Начать обсуждение"
|
995 |
-
|
996 |
-
#: options/wc-options-serialize.php:424
|
997 |
-
msgid "Join the discussion"
|
998 |
-
msgstr "Присоединиться к обсуждению"
|
999 |
-
|
1000 |
-
#: options/wc-options-serialize.php:425 options/wc-options.php:355
|
1001 |
-
msgid "Email"
|
1002 |
-
msgstr "Email"
|
1003 |
-
|
1004 |
-
#: options/wc-options-serialize.php:426
|
1005 |
-
msgid "Name"
|
1006 |
-
msgstr "Имя"
|
1007 |
-
|
1008 |
-
#: options/wc-options-serialize.php:427
|
1009 |
-
msgid "WebSite URL"
|
1010 |
-
msgstr "URL веб-сайта"
|
1011 |
-
|
1012 |
-
#: options/wc-options-serialize.php:428
|
1013 |
-
msgid "Please insert the code above to comment"
|
1014 |
-
msgstr "Пожалуйста, введите код, указанный выше"
|
1015 |
-
|
1016 |
-
#: options/wc-options-serialize.php:429
|
1017 |
-
msgid "Post Comment"
|
1018 |
-
msgstr "Оставить комментарий"
|
1019 |
-
|
1020 |
-
#: options/wc-options-serialize.php:435
|
1021 |
-
msgid "Load More Comments"
|
1022 |
-
msgstr "Загрузить ещё комментарии"
|
1023 |
-
|
1024 |
-
#: options/wc-options-serialize.php:447
|
1025 |
-
msgid "Guest"
|
1026 |
-
msgstr "Гость"
|
1027 |
-
|
1028 |
-
#: options/wc-options-serialize.php:448
|
1029 |
-
msgid "Member"
|
1030 |
-
msgstr "Участник"
|
1031 |
-
|
1032 |
-
#: options/wc-options-serialize.php:449
|
1033 |
-
msgid "Author"
|
1034 |
-
msgstr "Автор"
|
1035 |
-
|
1036 |
-
#: options/wc-options-serialize.php:450
|
1037 |
-
msgid "Admin"
|
1038 |
-
msgstr "Администратор"
|
1039 |
-
|
1040 |
-
#: options/wc-options-serialize.php:452
|
1041 |
-
msgid "New comment on the discussion section you've been interested in"
|
1042 |
-
msgstr "Новый комментарий в обсуждении, в котором вы были заинтересованы"
|
1043 |
-
|
1044 |
-
#: options/wc-options-serialize.php:454
|
1045 |
-
msgid "New reply on the discussion section you've been interested in"
|
1046 |
-
msgstr "Новый ответ в обсуждении, в котором вы были заинтересованы"
|
1047 |
-
|
1048 |
-
#: options/wc-options-serialize.php:455
|
1049 |
-
msgid "You're subscribed for new replies on this comment"
|
1050 |
-
msgstr "Вы подписались на новые ответы на этот комментарий"
|
1051 |
-
|
1052 |
-
#: options/wc-options-serialize.php:456
|
1053 |
-
msgid "You're subscribed for new replies on all your comments"
|
1054 |
-
msgstr "Вы подписались на все новые комментарии"
|
1055 |
-
|
1056 |
-
#: options/wc-options-serialize.php:457
|
1057 |
-
msgid "You're subscribed for new follow-up comments on this post"
|
1058 |
-
msgstr "Вы подписались на новые комментарии в этой статье"
|
1059 |
-
|
1060 |
-
#: options/wc-options-serialize.php:465
|
1061 |
-
msgid "please fill out this field to comment"
|
1062 |
-
msgstr "пожалуйста, заполните это поле, чтобы комментировать"
|
1063 |
-
|
1064 |
-
#: options/wc-options-serialize.php:466
|
1065 |
-
msgid "email address is invalid"
|
1066 |
-
msgstr "Адрес электронной почты недействителен"
|
1067 |
-
|
1068 |
-
#: options/wc-options-serialize.php:467
|
1069 |
-
msgid "url is invalid"
|
1070 |
-
msgstr "Ссылка недействительна"
|
1071 |
-
|
1072 |
-
#: options/wc-options-serialize.php:468
|
1073 |
-
msgid "year"
|
1074 |
-
msgstr "год"
|
1075 |
-
|
1076 |
-
#: options/wc-options-serialize.php:469
|
1077 |
-
msgid "years"
|
1078 |
-
msgstr "лет"
|
1079 |
-
|
1080 |
-
#: options/wc-options-serialize.php:470
|
1081 |
-
msgid "month"
|
1082 |
-
msgstr "месяц"
|
1083 |
-
|
1084 |
-
#: options/wc-options-serialize.php:471
|
1085 |
-
msgid "months"
|
1086 |
-
msgstr "месяцев"
|
1087 |
-
|
1088 |
-
#: options/wc-options-serialize.php:472
|
1089 |
-
msgid "day"
|
1090 |
-
msgstr "день"
|
1091 |
-
|
1092 |
-
#: options/wc-options-serialize.php:473
|
1093 |
-
msgid "days"
|
1094 |
-
msgstr "дней"
|
1095 |
-
|
1096 |
-
#: options/wc-options-serialize.php:474
|
1097 |
-
msgid "hour"
|
1098 |
-
msgstr "час"
|
1099 |
-
|
1100 |
-
#: options/wc-options-serialize.php:475
|
1101 |
-
msgid "hours"
|
1102 |
-
msgstr "часов"
|
1103 |
-
|
1104 |
-
#: options/wc-options-serialize.php:476
|
1105 |
-
msgid "minute"
|
1106 |
-
msgstr "минута"
|
1107 |
-
|
1108 |
-
#: options/wc-options-serialize.php:477
|
1109 |
-
msgid "minutes"
|
1110 |
-
msgstr "минут"
|
1111 |
-
|
1112 |
-
#: options/wc-options-serialize.php:478
|
1113 |
-
msgid "second"
|
1114 |
-
msgstr "секунда"
|
1115 |
-
|
1116 |
-
#: options/wc-options-serialize.php:479
|
1117 |
-
msgid "seconds"
|
1118 |
-
msgstr "секунд"
|
1119 |
-
|
1120 |
-
#: options/wc-options-serialize.php:480
|
1121 |
-
msgid "right now"
|
1122 |
-
msgstr "прямо сейчас"
|
1123 |
-
|
1124 |
-
#: options/wc-options-serialize.php:481
|
1125 |
-
msgid "ago"
|
1126 |
-
msgstr "назад"
|
1127 |
-
|
1128 |
-
#: options/wc-options-serialize.php:484
|
1129 |
-
msgid "You are logged in as"
|
1130 |
-
msgstr "Вы вошли как"
|
1131 |
-
|
1132 |
-
#: options/wc-options-serialize.php:486
|
1133 |
-
msgid "logged in"
|
1134 |
-
msgstr "зарегистрированы"
|
1135 |
-
|
1136 |
-
#: options/wc-options-serialize.php:487
|
1137 |
-
msgid "to post a comment."
|
1138 |
-
msgstr "чтобы оставить комментарий"
|
1139 |
-
|
1140 |
-
#: options/wc-options-serialize.php:491
|
1141 |
-
msgid "You've already voted for this comment"
|
1142 |
-
msgstr "Вы уже голосовали за этот комментарий"
|
1143 |
-
|
1144 |
-
#: options/wc-options-serialize.php:493
|
1145 |
-
msgid "You Must Be Logged In To Vote"
|
1146 |
-
msgstr "Вы должны войти , чтобы проголосовать"
|
1147 |
-
|
1148 |
-
#: options/wc-options-serialize.php:494
|
1149 |
-
msgid "You cannot vote for your comment"
|
1150 |
-
msgstr "Вы не можете голосовать за свой комментарий"
|
1151 |
|
1152 |
-
#: options/
|
1153 |
-
msgid "
|
1154 |
-
msgstr "
|
1155 |
|
1156 |
-
#: options/
|
1157 |
-
msgid "new
|
1158 |
-
msgstr "
|
1159 |
|
1160 |
-
#: options/
|
1161 |
-
msgid "
|
1162 |
-
msgstr "
|
1163 |
|
1164 |
-
#: options/
|
1165 |
-
msgid "
|
1166 |
-
msgstr "
|
1167 |
|
1168 |
-
#: options/
|
1169 |
-
msgid "
|
1170 |
-
msgstr "
|
1171 |
|
1172 |
-
#: options/
|
1173 |
-
msgid "
|
1174 |
-
msgstr "
|
1175 |
|
1176 |
-
#: options/
|
1177 |
-
msgid "
|
1178 |
-
msgstr "
|
1179 |
|
1180 |
-
#: options/
|
1181 |
-
|
1182 |
-
|
1183 |
-
msgstr "Комментарий слишком длинный (доступно максимум %s символов)"
|
1184 |
|
1185 |
-
#:
|
1186 |
msgid "Hacker?"
|
1187 |
msgstr "Хакер?"
|
1188 |
|
1189 |
-
#:
|
1190 |
msgid "wpDiscuz General Settings"
|
1191 |
msgstr "Основные настройки wpDiscuz"
|
1192 |
|
1193 |
-
#: options
|
1194 |
-
msgid "General settings"
|
1195 |
-
msgstr "Основные настройки"
|
1196 |
-
|
1197 |
-
#: options/wc-options.php:182
|
1198 |
-
msgid "Email Subscription"
|
1199 |
-
msgstr "E-mail подписка"
|
1200 |
-
|
1201 |
-
#: options/wc-options.php:182
|
1202 |
-
msgid "and Postmatic"
|
1203 |
-
msgstr "и Postmatic?"
|
1204 |
-
|
1205 |
-
#: options/wc-options.php:213 options/wc-options.php:383
|
1206 |
msgid "Save Changes"
|
1207 |
msgstr "Сохранить изменения"
|
1208 |
|
1209 |
-
#:
|
1210 |
-
msgid "Reset Options"
|
1211 |
-
msgstr "Сбросить настройки"
|
1212 |
-
|
1213 |
-
#: options/wc-options.php:341
|
1214 |
msgid "WpDiscuz Front-end Phrases"
|
1215 |
msgstr "Фронт-энд фразы WpDiscuz"
|
1216 |
|
1217 |
-
#:
|
1218 |
-
msgid "
|
1219 |
-
msgstr "
|
1220 |
-
|
1221 |
-
#: options/wc-options.php:352
|
1222 |
-
msgid "Form"
|
1223 |
-
msgstr "Форма"
|
1224 |
-
|
1225 |
-
#: options/wc-options.php:354
|
1226 |
-
msgid "Date/Time"
|
1227 |
-
msgstr "Дата/Время"
|
1228 |
-
|
1229 |
-
#: options/wc-options.php:356
|
1230 |
-
msgid "Notification"
|
1231 |
-
msgstr "Уведомление"
|
1232 |
|
1233 |
-
#: wc.php:
|
1234 |
msgid "Phrases"
|
1235 |
msgstr "Фразы"
|
1236 |
-
|
1237 |
-
#. Plugin Name of the plugin/theme
|
1238 |
-
msgid "wpDiscuz - Wordpress Comments"
|
1239 |
-
msgstr ""
|
1240 |
-
|
1241 |
-
#. Plugin URI of the plugin/theme
|
1242 |
-
msgid "http://www.gvectors.com/wpdiscuz/"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#. Description of the plugin/theme
|
1246 |
-
msgid ""
|
1247 |
-
"Better comment system. Wordpress post comments and discussion plugin. Allows "
|
1248 |
-
"your visitors discuss, vote for comments and share."
|
1249 |
-
msgstr ""
|
1250 |
-
|
1251 |
-
#. Author of the plugin/theme
|
1252 |
-
msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#. Author URI of the plugin/theme
|
1256 |
-
msgid "http://www.gvectors.com/"
|
1257 |
-
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
+
"POT-Creation-Date: 2015-02-08 00:36+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-03-02 14:33+0300\n"
|
6 |
"Last-Translator: advancedcoding <advancedcoding@mail.ru>\n"
|
7 |
"Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
|
8 |
+
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.8\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
|
|
|
|
|
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
+
#: comment-form/tpl-comment.php:152
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msgid "Edit"
|
24 |
msgstr "Редактировать"
|
25 |
|
26 |
+
#: options-templates/options-template-main.php:1
|
27 |
+
msgid "General settings"
|
|
|
|
|
|
|
|
|
28 |
msgstr "Основные настройки"
|
29 |
|
30 |
+
#: options-templates/options-template-main.php:5
|
31 |
msgid "Display comment form for post types:"
|
32 |
msgstr "Отображать форму комментариев для следующих типов записей:"
|
33 |
|
34 |
+
#: options-templates/options-template-main.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid "Show the latest comments on"
|
36 |
msgstr "Показывать последние комментарии"
|
37 |
|
38 |
+
#: options-templates/options-template-main.php:30
|
39 |
msgid "the top of the list"
|
40 |
msgstr "наверху списка"
|
41 |
|
42 |
+
#: options-templates/options-template-main.php:32
|
43 |
msgid "top of the threads"
|
44 |
+
msgstr "наверху веток"
|
45 |
|
46 |
+
#: options-templates/options-template-main.php:34
|
47 |
msgid "bottom of the threads"
|
48 |
msgstr "внизу темы"
|
49 |
|
50 |
+
#: options-templates/options-template-main.php:36
|
51 |
msgid "the bottom of the list"
|
52 |
msgstr "внизу списка"
|
53 |
|
54 |
+
#: options-templates/options-template-main.php:44
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "Live update options"
|
56 |
msgstr "Настройки обновления в реальном времени"
|
57 |
|
58 |
+
#: options-templates/options-template-main.php:50
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
msgid "Never update"
|
60 |
msgstr "Никогда не обновлять"
|
61 |
|
62 |
+
#: options-templates/options-template-main.php:52
|
63 |
msgid "Turn off \"Live Update\" function"
|
64 |
msgstr "Выключить функцию \"Обновление в реальном времени\""
|
65 |
|
66 |
+
#: options-templates/options-template-main.php:54
|
67 |
msgid "Show new comment/reply buttons to update manualy"
|
68 |
msgstr "Показывать кнопки новых комментариев/ответов для обновления вручную"
|
69 |
|
70 |
+
#: options-templates/options-template-main.php:56
|
71 |
msgid "Always check for new comments and show update buttons"
|
72 |
msgstr ""
|
73 |
"Всегда проверять наличие новых комментов и показывать кнопки обновления"
|
74 |
|
75 |
+
#: options-templates/options-template-main.php:58
|
76 |
msgid "Always update"
|
77 |
+
msgstr "Обновлять всегда"
|
78 |
|
79 |
+
#: options-templates/options-template-main.php:60
|
80 |
msgid "Always check for new comments and update automatically"
|
81 |
msgstr "Всегда проверять наличие новых комментов и обновлять автоматически"
|
82 |
|
83 |
+
#: options-templates/options-template-main.php:68
|
84 |
msgid "Update comment list every"
|
85 |
+
msgstr "Обновлять список комментариев каждые"
|
86 |
|
87 |
+
#: options-templates/options-template-main.php:73
|
88 |
+
#: options-templates/options-template-main.php:74
|
89 |
+
#: options-templates/options-template-main.php:75
|
90 |
msgid "Seconds"
|
91 |
msgstr "секунд"
|
92 |
|
93 |
+
#: options-templates/options-template-main.php:76
|
94 |
+
#: options-templates/options-template-phrases.php:459
|
95 |
msgid "Minute"
|
96 |
msgstr "Минута"
|
97 |
|
98 |
+
#: options-templates/options-template-main.php:77
|
99 |
+
#: options-templates/options-template-main.php:78
|
100 |
+
#: options-templates/options-template-main.php:79
|
101 |
+
msgid "Minutes"
|
102 |
+
msgstr "минут"
|
103 |
+
|
104 |
+
#: options-templates/options-template-main.php:86
|
105 |
+
msgid "Hide Voting buttons"
|
106 |
+
msgstr "Скрыть кнопки голосования"
|
107 |
+
|
108 |
+
#: options-templates/options-template-main.php:97
|
109 |
+
msgid "Hide Share Button"
|
110 |
+
msgstr "Скрыть кнопки \"поделиться\""
|
111 |
+
|
112 |
+
#: options-templates/options-template-main.php:108
|
113 |
+
msgid "Hide the CAPTCHA field"
|
114 |
+
msgstr "Скрыть капчу (CAPTCHA)"
|
115 |
+
|
116 |
+
#: options-templates/options-template-main.php:119
|
117 |
+
msgid "User Must be registered to comment"
|
118 |
+
msgstr "Пользователь должен зарегистрироваться для комментирования"
|
119 |
|
120 |
+
#: options-templates/options-template-main.php:137
|
121 |
+
msgid "Show logged-in user username on top of main form"
|
122 |
+
msgstr "Показывать имя пользователя сверху основной формы"
|
123 |
|
124 |
+
#: options-templates/options-template-main.php:148
|
125 |
+
msgid "Held new comments for moderation"
|
126 |
+
msgstr "Отправлять первые комментарии новых пользователей на модерацию"
|
127 |
+
|
128 |
+
#: options-templates/options-template-main.php:159
|
129 |
msgid "Hide Reply button for Guests"
|
130 |
msgstr "Скрыть кнопку ответа от гостей"
|
131 |
|
132 |
+
#: options-templates/options-template-main.php:170
|
133 |
msgid "Hide Reply button for Members"
|
134 |
msgstr "Скрыть кнопку ответа от пользователей"
|
135 |
|
136 |
+
#: options-templates/options-template-main.php:181
|
137 |
msgid "Hide Author Titles"
|
138 |
msgstr "Скрыть подписи под никами"
|
139 |
|
140 |
+
#: options-templates/options-template-main.php:192
|
141 |
+
msgid "Comment Threads Per Page"
|
142 |
+
msgstr "Количество веток комментариев на странице"
|
143 |
|
144 |
+
#: options-templates/options-template-main.php:203
|
145 |
+
msgid "Comments max depth"
|
146 |
+
msgstr "Максимальная глубина вложенности комментов"
|
147 |
|
148 |
+
#: options-templates/options-template-main.php:208
|
149 |
+
msgid "Level"
|
150 |
+
msgstr "уровень"
|
151 |
|
152 |
+
#: options-templates/options-template-main.php:209
|
153 |
+
#: options-templates/options-template-main.php:210
|
154 |
+
#: options-templates/options-template-main.php:211
|
155 |
+
#: options-templates/options-template-main.php:212
|
156 |
+
msgid "Levels"
|
157 |
+
msgstr "уровней"
|
158 |
|
159 |
+
#: options-templates/options-template-main.php:219
|
160 |
+
msgid "Use WordPress Date/Time format"
|
161 |
+
msgstr "Использовать формат времени и даты WordPress"
|
162 |
|
163 |
+
#: options-templates/options-template-main.php:220
|
164 |
+
msgid ""
|
165 |
+
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
166 |
+
"show the date/time format set in WordPress General Settings."
|
167 |
+
msgstr ""
|
168 |
+
"wpDiscuz по-умолчанию показывает формат времени в своем формате, удобном для "
|
169 |
+
"чтения. При включении этой опции, дата и время будут показаны в формате, "
|
170 |
+
"указанном в основных настройках WordPress"
|
171 |
|
172 |
+
#: options-templates/options-template-main.php:231
|
173 |
+
msgid ""
|
174 |
+
"Keep checked-on the email notification checkboxes on comment form by default"
|
175 |
+
msgstr ""
|
176 |
+
"Включить галочки подписки на уведомления по-умолчанию (осторожно, "
|
177 |
+
"пользователи могут получать большое колиество уведомлений)"
|
178 |
|
179 |
+
#: options-templates/options-template-main.php:242
|
180 |
+
msgid "Show \"Notify of all new follow-up comments\""
|
181 |
+
msgstr "Показывать \"Подписаться на все последующие комментарии\""
|
|
|
|
|
182 |
|
183 |
+
#: options-templates/options-template-main.php:243
|
184 |
+
msgid "Show \"Notify of new replies to all my comments\""
|
185 |
+
msgstr "Показывать \"Подписаться на все новые ответы на мои комментарии\""
|
|
|
|
|
186 |
|
187 |
+
#: options-templates/options-template-main.php:244
|
188 |
+
msgid "Show \"Notify of new replies to this comment\""
|
189 |
+
msgstr "Показывать \"Подписаться на новые ответы на этот комментарий\""
|
190 |
|
191 |
+
#: options-templates/options-template-main.php:246
|
192 |
msgid ""
|
193 |
+
"Please keep all three or at least one of those options ON, otherwise users "
|
194 |
+
"will not have any option for email notifications and they'll not get any "
|
195 |
+
"messages."
|
|
|
196 |
msgstr ""
|
197 |
+
"Пожалуйста, выберите все три, или как минимум одну опцию, иначе пользователи "
|
198 |
+
"не смогут увидеть их на странице комментариев и не будут получать никаких "
|
199 |
+
"уведомлений."
|
|
|
200 |
|
201 |
+
#: options-templates/options-template-main.php:264
|
202 |
+
msgid "Comment text size in pixels"
|
203 |
+
msgstr "Размер шрифта комментария в пикселях"
|
204 |
|
205 |
+
#: options-templates/options-template-main.php:280
|
206 |
msgid "Comment Form Background Color"
|
207 |
+
msgstr "Цвет фона формы комментария"
|
208 |
+
|
209 |
+
#: options-templates/options-template-main.php:283
|
210 |
+
#: options-templates/options-template-main.php:307
|
211 |
+
#: options-templates/options-template-main.php:331
|
212 |
+
#: options-templates/options-template-main.php:355
|
213 |
+
#: options-templates/options-template-main.php:380
|
214 |
+
#: options-templates/options-template-main.php:405
|
215 |
+
#: options-templates/options-template-main.php:429
|
|
|
216 |
msgid "Example: #00ff00"
|
217 |
+
msgstr "Например: #00ff00"
|
218 |
|
219 |
+
#: options-templates/options-template-main.php:304
|
220 |
msgid "Comment Background Color"
|
221 |
msgstr "Цвет фона коментария"
|
222 |
|
223 |
+
#: options-templates/options-template-main.php:328
|
224 |
msgid "Reply Background Color"
|
225 |
+
msgstr "Цвето фона ответа"
|
226 |
|
227 |
+
#: options-templates/options-template-main.php:352
|
228 |
msgid "Comment Text Color"
|
229 |
msgstr "Цвет шрифта комментария"
|
230 |
|
231 |
+
#: options-templates/options-template-main.php:377
|
232 |
msgid "Author title color"
|
233 |
msgstr "Цвет подписи автора"
|
234 |
|
235 |
+
#: options-templates/options-template-main.php:402
|
236 |
msgid "Vote, Reply, Share, Edit links text colors"
|
237 |
msgstr "Цвет ссылок Голосовать, Ответить, Поделиться и Редактировать"
|
238 |
|
239 |
+
#: options-templates/options-template-main.php:426
|
|
|
|
|
|
|
|
|
240 |
msgid "New loaded comments' background color"
|
241 |
msgstr "Цвет фона новых загруженных комментариев"
|
242 |
|
243 |
+
#: options-templates/options-template-main.php:450
|
244 |
msgid "Custom CSS Code"
|
245 |
msgstr "Свой CSS код"
|
246 |
|
247 |
+
#: options-templates/options-template-phrases.php:1
|
248 |
+
msgid "Front-end phrases"
|
249 |
+
msgstr "Фразы фронт-энда"
|
250 |
|
251 |
+
#: options-templates/options-template-phrases.php:5
|
252 |
+
msgid "Leave a Reply"
|
253 |
+
msgstr "Оставить ответ"
|
254 |
|
255 |
+
#: options-templates/options-template-phrases.php:16
|
256 |
+
msgid "Be the first to comment"
|
257 |
+
msgstr "Будьте первым, кто оставит комментарий!"
|
258 |
|
259 |
+
#: options-templates/options-template-phrases.php:27
|
260 |
+
msgid "Comment"
|
261 |
+
msgstr "Комментариев"
|
262 |
|
263 |
+
#: options-templates/options-template-phrases.php:38
|
264 |
+
msgid "On"
|
265 |
+
msgstr "На"
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
|
267 |
+
#: options-templates/options-template-phrases.php:49
|
268 |
+
msgid "Comment Field Start"
|
269 |
+
msgstr "Фраза \"Начать обсуждение\""
|
|
|
|
|
270 |
|
271 |
+
#: options-templates/options-template-phrases.php:60
|
272 |
+
msgid "Comment Field Join"
|
273 |
+
msgstr "Фраза \"Присоединиться к обсуждению\""
|
|
|
|
|
|
|
|
|
|
|
274 |
|
275 |
+
#: options-templates/options-template-phrases.php:71
|
276 |
+
msgid "Email Field"
|
277 |
+
msgstr "Email"
|
|
|
|
|
|
|
278 |
|
279 |
+
#: options-templates/options-template-phrases.php:82
|
280 |
+
msgid "Name Field"
|
281 |
+
msgstr "Имя"
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
|
283 |
+
#: options-templates/options-template-phrases.php:93
|
284 |
+
msgid "CAPTCHA Field"
|
285 |
+
msgstr "CAPTCHA "
|
286 |
|
287 |
+
#: options-templates/options-template-phrases.php:104
|
288 |
+
msgid "Submit Button"
|
289 |
+
msgstr "Кнопка Отправить"
|
290 |
+
|
291 |
+
#: options-templates/options-template-phrases.php:115
|
292 |
+
msgid "Manage subscribtions"
|
293 |
+
msgstr "Управление подпиской"
|
294 |
+
|
295 |
+
#: options-templates/options-template-phrases.php:119
|
296 |
+
msgid "Manage Subscribtions"
|
297 |
+
msgstr "Управление Подпиской"
|
298 |
+
|
299 |
+
#: options-templates/options-template-phrases.php:126
|
300 |
+
msgid "Notify on new comments (checkbox)"
|
301 |
+
msgstr "Сообщать о новых ответах на этот коментарий (галочка)"
|
302 |
+
|
303 |
+
#: options-templates/options-template-phrases.php:130
|
304 |
+
msgid "Notify of all new follow-up comments"
|
305 |
+
msgstr "Сообщать о всех последующих комментариях (галочка)"
|
306 |
+
|
307 |
+
#: options-templates/options-template-phrases.php:137
|
308 |
+
msgid "Notify on all new replies (checkbox)"
|
309 |
+
msgstr "Сообщать об ответах на все мои коментарии (галочка)"
|
310 |
+
|
311 |
+
#: options-templates/options-template-phrases.php:141
|
312 |
+
msgid "Notify of new replies to all my comments"
|
313 |
+
msgstr "Сообщать о всех новых ответах на мои комментарии"
|
314 |
+
|
315 |
+
#: options-templates/options-template-phrases.php:148
|
316 |
+
msgid "Notify on new replies (checkbox)"
|
317 |
+
msgstr "Сообщать о новых ответах (галочка)"
|
318 |
+
|
319 |
+
#: options-templates/options-template-phrases.php:152
|
320 |
+
msgid "Notify of new replies to this comment"
|
321 |
+
msgstr "Сообщать о новых ответах на этот комментарий"
|
322 |
+
|
323 |
+
#: options-templates/options-template-phrases.php:159
|
324 |
+
msgid "Load More Button"
|
325 |
+
msgstr "Кнопка Загрузить следующие"
|
326 |
+
|
327 |
+
#: options-templates/options-template-phrases.php:170
|
328 |
msgid "Reply"
|
329 |
msgstr "Ответить "
|
330 |
|
331 |
+
#: options-templates/options-template-phrases.php:181
|
|
|
332 |
msgid "Share"
|
333 |
msgstr "Поделиться"
|
334 |
|
335 |
+
#: options-templates/options-template-phrases.php:192
|
|
|
336 |
msgid "Share On Facebook"
|
337 |
msgstr "Поделиться через Facebook"
|
338 |
|
339 |
+
#: options-templates/options-template-phrases.php:203
|
|
|
340 |
msgid "Share On Twitter"
|
341 |
msgstr "Поделиться через Twitter"
|
342 |
|
343 |
+
#: options-templates/options-template-phrases.php:214
|
|
|
344 |
msgid "Share On Google"
|
345 |
msgstr "Поделиться через Google"
|
346 |
|
347 |
+
#: options-templates/options-template-phrases.php:225
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
msgid "Hide Replies"
|
349 |
msgstr "Спрятать ответы"
|
350 |
|
351 |
+
#: options-templates/options-template-phrases.php:236
|
|
|
352 |
msgid "Show Replies"
|
353 |
msgstr "Показать ответы"
|
354 |
|
355 |
+
#: options-templates/options-template-phrases.php:247
|
356 |
msgid "Title For Guests"
|
357 |
msgstr "Подпись для Гостей"
|
358 |
|
359 |
+
#: options-templates/options-template-phrases.php:258
|
360 |
msgid "Title For Members"
|
361 |
msgstr "Подпись для Пользователей"
|
362 |
|
363 |
+
#: options-templates/options-template-phrases.php:272
|
364 |
msgid "Title For Authors"
|
365 |
msgstr "Подпись для Авторов"
|
366 |
|
367 |
+
#: options-templates/options-template-phrases.php:283
|
368 |
msgid "Title For Admins"
|
369 |
msgstr "Подпись для Админов"
|
370 |
|
371 |
+
#: options-templates/options-template-phrases.php:294
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
msgid "Email Subject"
|
373 |
+
msgstr "Заголовок письма"
|
374 |
|
375 |
+
#: options-templates/options-template-phrases.php:305
|
376 |
msgid "Email Message"
|
377 |
+
msgstr "Тело письма"
|
378 |
|
379 |
+
#: options-templates/options-template-phrases.php:316
|
380 |
msgid "New Reply Subject"
|
381 |
+
msgstr "Тема Новый Ответ"
|
382 |
|
383 |
+
#: options-templates/options-template-phrases.php:320
|
384 |
+
#: options-templates/options-template-phrases.php:719
|
|
|
385 |
msgid "New Reply"
|
386 |
msgstr "Новый ответ"
|
387 |
|
388 |
+
#: options-templates/options-template-phrases.php:327
|
389 |
+
#: options-templates/options-template-phrases.php:371
|
390 |
msgid "New Reply Message"
|
|
|
|
|
|
|
|
|
|
|
|
|
391 |
msgstr "Отписаться"
|
392 |
|
393 |
+
#: options-templates/options-template-phrases.php:338
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
msgid "Subscribed on this comment replies"
|
395 |
msgstr "Подписка на ответы на этот коммент"
|
396 |
|
397 |
+
#: options-templates/options-template-phrases.php:349
|
398 |
msgid "Subscribed on all your comments replies"
|
399 |
msgstr "Подписка на ответы на все комменты пользователя"
|
400 |
|
401 |
+
#: options-templates/options-template-phrases.php:360
|
402 |
msgid "Subscribed on this post"
|
403 |
msgstr "Подписка на все комменты к записи"
|
404 |
|
405 |
+
#: options-templates/options-template-phrases.php:375
|
406 |
+
msgid "Unsubscribe"
|
407 |
+
msgstr "Отписаться"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
408 |
|
409 |
+
#: options-templates/options-template-phrases.php:382
|
410 |
+
msgid "You've successfully unsubscribed."
|
411 |
+
msgstr "Вы успешно отписались"
|
|
|
412 |
|
413 |
+
#: options-templates/options-template-phrases.php:393
|
414 |
+
msgid "Error message for empty field"
|
415 |
+
msgstr "Сообщение об ошибке - пустое поле"
|
416 |
|
417 |
+
#: options-templates/options-template-phrases.php:404
|
418 |
+
msgid "Error message for invalid email field"
|
419 |
+
msgstr "Сообщение об ошибке - неверный email адрес"
|
420 |
|
421 |
+
#: options-templates/options-template-phrases.php:415
|
422 |
+
msgid "Year"
|
423 |
+
msgstr "Год"
|
424 |
|
425 |
+
#: options-templates/options-template-phrases.php:426
|
426 |
+
msgid "Month"
|
427 |
+
msgstr "Месяц"
|
428 |
|
429 |
+
#: options-templates/options-template-phrases.php:437
|
430 |
+
msgid "Day"
|
431 |
+
msgstr "День"
|
432 |
|
433 |
+
#: options-templates/options-template-phrases.php:448
|
434 |
+
msgid "Hour"
|
435 |
+
msgstr "Час"
|
436 |
|
437 |
+
#: options-templates/options-template-phrases.php:470
|
438 |
+
msgid "Second"
|
439 |
+
msgstr "Секунда"
|
|
|
440 |
|
441 |
+
#: options-templates/options-template-phrases.php:481
|
442 |
+
msgid "Plural (Ex. user -> user + s)"
|
443 |
+
msgstr "Множественное число (напр - юзер -> юзер + ы)"
|
444 |
|
445 |
+
#: options-templates/options-template-phrases.php:492
|
446 |
+
msgid "Commented \"right now\" text"
|
447 |
+
msgstr "Текст \"только что\" прокомментировано"
|
|
|
448 |
|
449 |
+
#: options-templates/options-template-phrases.php:503
|
450 |
+
msgid "Ago text"
|
451 |
+
msgstr "Тест \"тому назад\""
|
452 |
|
453 |
+
#: options-templates/options-template-phrases.php:514
|
454 |
+
msgid "\"Today\" text"
|
455 |
+
msgstr "Текст \"Сегодня\""
|
456 |
|
457 |
+
#: options-templates/options-template-phrases.php:518
|
458 |
+
msgid "Today"
|
459 |
+
msgstr "Сегодня"
|
460 |
|
461 |
+
#: options-templates/options-template-phrases.php:525
|
|
|
462 |
msgid "You must be"
|
463 |
msgstr "Вы должны быть "
|
464 |
|
465 |
+
#: options-templates/options-template-phrases.php:537
|
466 |
msgid "Logged in as"
|
467 |
msgstr "Вошли как"
|
468 |
|
469 |
+
#: options-templates/options-template-phrases.php:547
|
|
|
470 |
msgid "Log out"
|
471 |
msgstr "Выйти"
|
472 |
|
473 |
+
#: options-templates/options-template-phrases.php:561
|
474 |
msgid "Logged In"
|
475 |
msgstr "Зарегистрированы"
|
476 |
|
477 |
+
#: options-templates/options-template-phrases.php:572
|
478 |
msgid "To post a comment"
|
479 |
msgstr "Чтобы оставить комментарий"
|
480 |
|
481 |
+
#: options-templates/options-template-phrases.php:583
|
482 |
+
msgid "Vote Up"
|
483 |
+
msgstr "Голос за"
|
484 |
+
|
485 |
+
#: options-templates/options-template-phrases.php:594
|
486 |
+
msgid "Vote Down"
|
487 |
+
msgstr "Голос против"
|
488 |
+
|
489 |
+
#: options-templates/options-template-phrases.php:605
|
490 |
msgid "Vote Counted"
|
491 |
msgstr "Голос учтен"
|
492 |
|
493 |
+
#: options-templates/options-template-phrases.php:616
|
494 |
msgid "You can vote only 1 time"
|
495 |
msgstr "Вы можете проголосовать только один раз"
|
496 |
|
497 |
+
#: options-templates/options-template-phrases.php:627
|
|
|
498 |
msgid "Voting Error"
|
499 |
msgstr "Ошибка голосования"
|
500 |
|
501 |
+
#: options-templates/options-template-phrases.php:638
|
502 |
msgid "Login To Vote"
|
503 |
msgstr "Залогиньтесь, чтобы голосовать"
|
504 |
|
505 |
+
#: options-templates/options-template-phrases.php:649
|
506 |
msgid "You Cannot Vote On Your Comment"
|
507 |
msgstr "Вы не можете проголосовать за свой комментарий"
|
508 |
|
509 |
+
#: options-templates/options-template-phrases.php:660
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
msgid "Invalid Captcha Code"
|
511 |
msgstr "Неверно введен код"
|
512 |
|
513 |
+
#: options-templates/options-template-phrases.php:671
|
|
|
514 |
msgid "Some of field value is invalid"
|
515 |
msgstr "Некоторые поля заполнены неверно"
|
516 |
|
517 |
+
#: options-templates/options-template-phrases.php:682
|
518 |
msgid "Comment waiting moderation"
|
519 |
msgstr "Комментарий ожидает модерации"
|
520 |
|
521 |
+
#: options-templates/options-template-phrases.php:693
|
522 |
+
msgid "Button text if has new comment"
|
523 |
+
msgstr "Текст кнопки если есть новый комментарий"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
524 |
|
525 |
+
#: options-templates/options-template-phrases.php:697
|
526 |
+
msgid "New Comment"
|
527 |
+
msgstr "Новый комментарий"
|
528 |
|
529 |
+
#: options-templates/options-template-phrases.php:704
|
530 |
+
msgid "Button text if has new comments"
|
531 |
+
msgstr "Текст кнопки если есть новые комментарии"
|
532 |
|
533 |
+
#: options-templates/options-template-phrases.php:708
|
534 |
+
msgid "New Comments"
|
535 |
+
msgstr "Новые комментарии"
|
536 |
|
537 |
+
#: options-templates/options-template-phrases.php:715
|
538 |
+
msgid "Button text if has new reply"
|
539 |
+
msgstr "Текст кнопки если есть новый ответ"
|
540 |
|
541 |
+
#: options-templates/options-template-phrases.php:726
|
542 |
+
msgid "Button text if has new replies"
|
543 |
+
msgstr "Текст кнопки если есть новые ответы"
|
544 |
|
545 |
+
#: options-templates/options-template-phrases.php:730
|
546 |
+
msgid "New Replies"
|
547 |
+
msgstr "Новые ответы"
|
548 |
|
549 |
+
#: options-templates/options-template-phrases.php:737
|
550 |
+
msgid "Text on load more button if has new comment(s)"
|
551 |
+
msgstr "Текст кнопки \"загрузить ещё\", если есть новые комментарии"
|
552 |
|
553 |
+
#: options-templates/options-template-phrases.php:741
|
554 |
+
msgid "New"
|
555 |
+
msgstr "Новый"
|
|
|
556 |
|
557 |
+
#: wc-options.php:31 wc-options.php:184
|
558 |
msgid "Hacker?"
|
559 |
msgstr "Хакер?"
|
560 |
|
561 |
+
#: wc-options.php:77
|
562 |
msgid "wpDiscuz General Settings"
|
563 |
msgstr "Основные настройки wpDiscuz"
|
564 |
|
565 |
+
#: wc-options.php:165 wc-options.php:296
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
566 |
msgid "Save Changes"
|
567 |
msgstr "Сохранить изменения"
|
568 |
|
569 |
+
#: wc-options.php:271
|
|
|
|
|
|
|
|
|
570 |
msgid "WpDiscuz Front-end Phrases"
|
571 |
msgstr "Фронт-энд фразы WpDiscuz"
|
572 |
|
573 |
+
#: wc.php:899
|
574 |
+
msgid "Settings"
|
575 |
+
msgstr "Настройки"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
576 |
|
577 |
+
#: wc.php:900
|
578 |
msgid "Phrases"
|
579 |
msgstr "Фразы"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wpdiscuz.pot
DELETED
@@ -1,1207 +0,0 @@
|
|
1 |
-
# Copyright (C) 2015 wpDiscuz - Wordpress Comments
|
2 |
-
# This file is distributed under the same license as the wpDiscuz - Wordpress Comments package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"Project-Id-Version: wpDiscuz - Wordpress Comments 2.2.10\n"
|
6 |
-
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpdiscuz\n"
|
7 |
-
"POT-Creation-Date: 2015-10-01 19:50:02+00:00\n"
|
8 |
-
"MIME-Version: 1.0\n"
|
9 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
-
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
12 |
-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
-
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
-
|
15 |
-
#: comment-form/form.php:251 comment-form/tpl-comment.php:263
|
16 |
-
msgid "Participate in this discussion via email"
|
17 |
-
msgstr ""
|
18 |
-
|
19 |
-
#: comment-form/form.php:455
|
20 |
-
msgid "Connect with"
|
21 |
-
msgstr ""
|
22 |
-
|
23 |
-
#: comment-form/tpl-comment.php:174
|
24 |
-
#: options/phrases-layout/phrases-comment.php:27
|
25 |
-
#: options/wc-options-serialize.php:449
|
26 |
-
msgid "Edit"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: comment-form/tpl-comment.php:388 wc.php:325
|
30 |
-
msgid "Anonymous"
|
31 |
-
msgstr ""
|
32 |
-
|
33 |
-
#: options/options-layouts/settings-general.php:2
|
34 |
-
msgid "General Settings"
|
35 |
-
msgstr ""
|
36 |
-
|
37 |
-
#: options/options-layouts/settings-general.php:7
|
38 |
-
msgid "Display comment form for post types:"
|
39 |
-
msgstr ""
|
40 |
-
|
41 |
-
#: options/options-layouts/settings-general.php:28
|
42 |
-
msgid "User Must be registered to comment"
|
43 |
-
msgstr ""
|
44 |
-
|
45 |
-
#: options/options-layouts/settings-general.php:34
|
46 |
-
msgid "Yes"
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#: options/options-layouts/settings-general.php:38
|
50 |
-
msgid "No"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: options/options-layouts/settings-general.php:46
|
54 |
-
msgid "Comment author must fill out name"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: options/options-layouts/settings-general.php:57
|
58 |
-
msgid "Comment author must fill out email"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: options/options-layouts/settings-general.php:68
|
62 |
-
msgid "Show the latest comments on"
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: options/options-layouts/settings-general.php:72
|
66 |
-
msgid "the top of the list"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: options/options-layouts/settings-general.php:74
|
70 |
-
msgid "top of the threads"
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: options/options-layouts/settings-general.php:76
|
74 |
-
msgid "bottom of the threads"
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#: options/options-layouts/settings-general.php:78
|
78 |
-
msgid "the bottom of the list"
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
#: options/options-layouts/settings-general.php:86
|
82 |
-
msgid "Comment Threads Per Page"
|
83 |
-
msgstr ""
|
84 |
-
|
85 |
-
#: options/options-layouts/settings-general.php:97
|
86 |
-
msgid "Comment text max length"
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: options/options-layouts/settings-general.php:108
|
90 |
-
msgid "Comments max depth"
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: options/options-layouts/settings-general.php:113
|
94 |
-
msgid "Level"
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: options/options-layouts/settings-general.php:114
|
98 |
-
#: options/options-layouts/settings-general.php:115
|
99 |
-
#: options/options-layouts/settings-general.php:116
|
100 |
-
#: options/options-layouts/settings-general.php:117
|
101 |
-
msgid "Levels"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: options/options-layouts/settings-general.php:124
|
105 |
-
msgid "Comment text size in pixels"
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: options/options-layouts/settings-general.php:141
|
109 |
-
msgid "Allow comment editing for"
|
110 |
-
msgstr ""
|
111 |
-
|
112 |
-
#: options/options-layouts/settings-general.php:146
|
113 |
-
msgid "Not Allow"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: options/options-layouts/settings-general.php:147
|
117 |
-
#: options/options-layouts/settings-general.php:148
|
118 |
-
#: options/options-layouts/settings-live-update.php:41
|
119 |
-
#: options/options-layouts/settings-live-update.php:42
|
120 |
-
#: options/options-layouts/settings-live-update.php:43
|
121 |
-
msgid "Minutes"
|
122 |
-
msgstr ""
|
123 |
-
|
124 |
-
#: options/options-layouts/settings-general.php:149
|
125 |
-
#: options/phrases-layout/phrases-datetime.php:73
|
126 |
-
msgid "Hour"
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: options/options-layouts/settings-general.php:150
|
130 |
-
#: options/options-layouts/settings-general.php:151
|
131 |
-
msgid "Hours"
|
132 |
-
msgstr ""
|
133 |
-
|
134 |
-
#: options/options-layouts/settings-general.php:158
|
135 |
-
msgid "Redirect first commenter to"
|
136 |
-
msgstr ""
|
137 |
-
|
138 |
-
#: options/options-layouts/settings-general.php:165
|
139 |
-
msgid "Do not redirect"
|
140 |
-
msgstr ""
|
141 |
-
|
142 |
-
#: options/options-layouts/settings-general.php:174
|
143 |
-
msgid "Allow guests to vote on comments"
|
144 |
-
msgstr ""
|
145 |
-
|
146 |
-
#: options/options-layouts/settings-general.php:184
|
147 |
-
msgid "Load WpDiscuz CSS and JS on home page"
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
#: options/options-layouts/settings-general.php:194
|
151 |
-
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
152 |
-
msgstr ""
|
153 |
-
|
154 |
-
#: options/options-layouts/settings-general.php:205
|
155 |
-
msgid "Use WordPress Date/Time format"
|
156 |
-
msgstr ""
|
157 |
-
|
158 |
-
#: options/options-layouts/settings-general.php:206
|
159 |
-
msgid ""
|
160 |
-
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
161 |
-
"show the date/time format set in WordPress General Settings."
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: options/options-layouts/settings-general.php:213
|
165 |
-
msgid "Current Wordpress date/time format"
|
166 |
-
msgstr ""
|
167 |
-
|
168 |
-
#: options/options-layouts/settings-general.php:219
|
169 |
-
msgid "Use Plugin .PO/.MO files"
|
170 |
-
msgstr ""
|
171 |
-
|
172 |
-
#: options/options-layouts/settings-general.php:220
|
173 |
-
msgid ""
|
174 |
-
"wpDiscuz phrase system allows you to translate all front-end phrases. "
|
175 |
-
"However if you have a multi-language website it'll not allow you to add more "
|
176 |
-
"than one language translation. The only way to get it is the plugin "
|
177 |
-
"translation files (.PO / .MO). If wpDiscuz has the languages you need you "
|
178 |
-
"should check this option to disable phrase system and it'll automatically "
|
179 |
-
"translate all phrases based on language files according to current language."
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#: options/options-layouts/settings-general.php:231
|
183 |
-
msgid ""
|
184 |
-
"Help wpDiscuz to grow allowing people to recognize which comment plugin you "
|
185 |
-
"use"
|
186 |
-
msgstr ""
|
187 |
-
|
188 |
-
#: options/options-layouts/settings-general.php:233
|
189 |
-
msgid ""
|
190 |
-
"Please check this option on to help wpDiscuz get more popularity as your "
|
191 |
-
"thank to the hard work we do for you totally free. This option adds a very "
|
192 |
-
"small (16x16px) icon under the comment section which will allow your site "
|
193 |
-
"visitors recognize the name of comment solution you use."
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: options/options-layouts/settings-general.php:238
|
197 |
-
msgid "Thank you!"
|
198 |
-
msgstr ""
|
199 |
-
|
200 |
-
#: options/options-layouts/settings-live-update.php:2
|
201 |
-
#: options/wc-options.php:181
|
202 |
-
msgid "Live Update"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#: options/options-layouts/settings-live-update.php:8
|
206 |
-
msgid "Live update options"
|
207 |
-
msgstr ""
|
208 |
-
|
209 |
-
#: options/options-layouts/settings-live-update.php:9
|
210 |
-
msgid ""
|
211 |
-
"If you use Shared Web Hosting you should make sure the \"Live Update\" "
|
212 |
-
"function doesn't overload your server resources. This function is good for "
|
213 |
-
"VPS and Dedicated Hosting Plans."
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: options/options-layouts/settings-live-update.php:14
|
217 |
-
msgid "Never update"
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: options/options-layouts/settings-live-update.php:16
|
221 |
-
msgid "Turn off \"Live Update\" function"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: options/options-layouts/settings-live-update.php:18
|
225 |
-
msgid "Show new comment/reply buttons to update manualy"
|
226 |
-
msgstr ""
|
227 |
-
|
228 |
-
#: options/options-layouts/settings-live-update.php:20
|
229 |
-
msgid "Always check for new comments and show update buttons"
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: options/options-layouts/settings-live-update.php:22
|
233 |
-
msgid "Always update"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: options/options-layouts/settings-live-update.php:24
|
237 |
-
msgid "Always check for new comments and update automatically"
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: options/options-layouts/settings-live-update.php:32
|
241 |
-
msgid "Update comment list every"
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: options/options-layouts/settings-live-update.php:37
|
245 |
-
#: options/options-layouts/settings-live-update.php:38
|
246 |
-
#: options/options-layouts/settings-live-update.php:39
|
247 |
-
msgid "Seconds"
|
248 |
-
msgstr ""
|
249 |
-
|
250 |
-
#: options/options-layouts/settings-live-update.php:40
|
251 |
-
#: options/phrases-layout/phrases-datetime.php:95
|
252 |
-
msgid "Minute"
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
#: options/options-layouts/settings-show-hide.php:2 options/wc-options.php:182
|
256 |
-
msgid "Show/Hide Components"
|
257 |
-
msgstr ""
|
258 |
-
|
259 |
-
#: options/options-layouts/settings-show-hide.php:7
|
260 |
-
msgid "Show logged-in user name and logout link on top of main form"
|
261 |
-
msgstr ""
|
262 |
-
|
263 |
-
#: options/options-layouts/settings-show-hide.php:17
|
264 |
-
msgid "Hide Reply button for Guests"
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
#: options/options-layouts/settings-show-hide.php:27
|
268 |
-
msgid "Hide Reply button for Members"
|
269 |
-
msgstr ""
|
270 |
-
|
271 |
-
#: options/options-layouts/settings-show-hide.php:37
|
272 |
-
msgid "Hide Author Titles"
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
-
#: options/options-layouts/settings-show-hide.php:47
|
276 |
-
msgid "Hide Voting buttons"
|
277 |
-
msgstr ""
|
278 |
-
|
279 |
-
#: options/options-layouts/settings-show-hide.php:57
|
280 |
-
msgid "Hide Share Buttons"
|
281 |
-
msgstr ""
|
282 |
-
|
283 |
-
#: options/options-layouts/settings-show-hide.php:67
|
284 |
-
msgid "Hide the CAPTCHA field"
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: options/options-layouts/settings-show-hide.php:77
|
288 |
-
msgid "Hide the Website URL field"
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: options/options-layouts/settings-show-hide.php:87
|
292 |
-
msgid "Hide header text"
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: options/options-layouts/settings-show-hide.php:97
|
296 |
-
msgid "Hide user avatar"
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#: options/options-layouts/settings-social.php:10
|
300 |
-
#: options/options-layouts/settings-social.php:12
|
301 |
-
#: options/options-layouts/settings-social.php:14
|
302 |
-
#: options/options-layouts/settings-social.php:16 wc.php:1024
|
303 |
-
msgid "Settings"
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
#: options/options-layouts/settings-social.php:21
|
307 |
-
#: options/options-layouts/settings-social.php:31
|
308 |
-
#: options/options-layouts/settings-social.php:41
|
309 |
-
#: options/options-layouts/settings-social.php:52
|
310 |
-
msgid "Activate"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: options/options-layouts/settings-social.php:25
|
314 |
-
#: options/options-layouts/settings-social.php:35
|
315 |
-
#: options/options-layouts/settings-social.php:45
|
316 |
-
#: options/options-layouts/settings-social.php:56
|
317 |
-
msgid "View details/Install"
|
318 |
-
msgstr ""
|
319 |
-
|
320 |
-
#: options/options-layouts/settings-social.php:89 options/wc-options.php:185
|
321 |
-
msgid "Social Login"
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#: options/options-layouts/settings-social.php:90
|
325 |
-
msgid ""
|
326 |
-
"You can use one of these most popular Social Login Plugins to allow your "
|
327 |
-
"visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, "
|
328 |
-
"OK and lots of other social network service accounts. All social login "
|
329 |
-
"buttons will be fully integrated with wpDiscuz comment forms."
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: options/options-layouts/settings-style.php:2 options/wc-options.php:184
|
333 |
-
msgid "Background and Colors"
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: options/options-layouts/settings-style.php:7
|
337 |
-
msgid "Comment Form Background Color"
|
338 |
-
msgstr ""
|
339 |
-
|
340 |
-
#: options/options-layouts/settings-style.php:10
|
341 |
-
#: options/options-layouts/settings-style.php:34
|
342 |
-
#: options/options-layouts/settings-style.php:58
|
343 |
-
#: options/options-layouts/settings-style.php:82
|
344 |
-
#: options/options-layouts/settings-style.php:107
|
345 |
-
#: options/options-layouts/settings-style.php:132
|
346 |
-
#: options/options-layouts/settings-style.php:155
|
347 |
-
#: options/options-layouts/settings-style.php:178
|
348 |
-
msgid "Example: #00ff00"
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
#: options/options-layouts/settings-style.php:31
|
352 |
-
msgid "Comment Background Color"
|
353 |
-
msgstr ""
|
354 |
-
|
355 |
-
#: options/options-layouts/settings-style.php:55
|
356 |
-
msgid "Reply Background Color"
|
357 |
-
msgstr ""
|
358 |
-
|
359 |
-
#: options/options-layouts/settings-style.php:79
|
360 |
-
msgid "Comment Text Color"
|
361 |
-
msgstr ""
|
362 |
-
|
363 |
-
#: options/options-layouts/settings-style.php:104
|
364 |
-
msgid "Author title color"
|
365 |
-
msgstr ""
|
366 |
-
|
367 |
-
#: options/options-layouts/settings-style.php:129
|
368 |
-
msgid "Vote, Reply, Share, Edit links text colors"
|
369 |
-
msgstr ""
|
370 |
-
|
371 |
-
#: options/options-layouts/settings-style.php:152
|
372 |
-
msgid "Comment form fields border color"
|
373 |
-
msgstr ""
|
374 |
-
|
375 |
-
#: options/options-layouts/settings-style.php:175
|
376 |
-
msgid "New loaded comments' background color"
|
377 |
-
msgstr ""
|
378 |
-
|
379 |
-
#: options/options-layouts/settings-style.php:199
|
380 |
-
msgid "Custom CSS Code"
|
381 |
-
msgstr ""
|
382 |
-
|
383 |
-
#: options/options-layouts/settings-subscription.php:2
|
384 |
-
msgid "Email Subscription Settings"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: options/options-layouts/settings-subscription.php:7
|
388 |
-
msgid "Show \"Notify of all new follow-up comments\""
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
#: options/options-layouts/settings-subscription.php:8
|
392 |
-
msgid "Show \"Notify of new replies to all my comments\""
|
393 |
-
msgstr ""
|
394 |
-
|
395 |
-
#: options/options-layouts/settings-subscription.php:9
|
396 |
-
msgid "Show \"Notify of new replies to this comment\""
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
#: options/options-layouts/settings-subscription.php:11
|
400 |
-
msgid ""
|
401 |
-
"Please keep all three or at least one of those options ON, otherwise users "
|
402 |
-
"will not have any option for email notifications and they'll not get any "
|
403 |
-
"messages."
|
404 |
-
msgstr ""
|
405 |
-
|
406 |
-
#: options/options-layouts/settings-subscription.php:30
|
407 |
-
msgid "Use Postmatic for subscriptions and commenting by email"
|
408 |
-
msgstr ""
|
409 |
-
|
410 |
-
#: options/options-layouts/settings-subscription.php:31
|
411 |
-
msgid ""
|
412 |
-
"Postmatic allows your users subscribe to comments. Instead of just being "
|
413 |
-
"notified, they add a reply right from their inbox."
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: options/options-layouts/settings-subscription.php:42
|
417 |
-
msgid ""
|
418 |
-
"Keep selected the email notification of all new follow-up comments by default"
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: options/options-layouts/settings-subscription.php:43
|
422 |
-
msgid ""
|
423 |
-
"If this option is checked-on, in Manage Subscriptions section of comment "
|
424 |
-
"forms will only be displayed the \"Notify of all new follow-up comments\" "
|
425 |
-
"option and this option will always be selected by default."
|
426 |
-
msgstr ""
|
427 |
-
|
428 |
-
#: options/phrases-layout/phrases-comment.php:2
|
429 |
-
msgid "Comment Template Phrases"
|
430 |
-
msgstr ""
|
431 |
-
|
432 |
-
#: options/phrases-layout/phrases-comment.php:7
|
433 |
-
#: options/wc-options-serialize.php:447
|
434 |
-
msgid "Reply"
|
435 |
-
msgstr ""
|
436 |
-
|
437 |
-
#: options/phrases-layout/phrases-comment.php:17
|
438 |
-
#: options/wc-options-serialize.php:448
|
439 |
-
msgid "Share"
|
440 |
-
msgstr ""
|
441 |
-
|
442 |
-
#: options/phrases-layout/phrases-comment.php:37
|
443 |
-
#: options/wc-options-serialize.php:450
|
444 |
-
msgid "Share On Facebook"
|
445 |
-
msgstr ""
|
446 |
-
|
447 |
-
#: options/phrases-layout/phrases-comment.php:47
|
448 |
-
#: options/wc-options-serialize.php:451
|
449 |
-
msgid "Share On Twitter"
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: options/phrases-layout/phrases-comment.php:57
|
453 |
-
#: options/wc-options-serialize.php:452
|
454 |
-
msgid "Share On Google"
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: options/phrases-layout/phrases-comment.php:67
|
458 |
-
#: options/wc-options-serialize.php:453
|
459 |
-
msgid "Share On VKontakte"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
#: options/phrases-layout/phrases-comment.php:77
|
463 |
-
#: options/wc-options-serialize.php:454
|
464 |
-
msgid "Share On Odnoklassniki"
|
465 |
-
msgstr ""
|
466 |
-
|
467 |
-
#: options/phrases-layout/phrases-comment.php:87
|
468 |
-
#: options/wc-options-serialize.php:455
|
469 |
-
msgid "Hide Replies"
|
470 |
-
msgstr ""
|
471 |
-
|
472 |
-
#: options/phrases-layout/phrases-comment.php:97
|
473 |
-
#: options/wc-options-serialize.php:456
|
474 |
-
msgid "Show Replies"
|
475 |
-
msgstr ""
|
476 |
-
|
477 |
-
#: options/phrases-layout/phrases-comment.php:107
|
478 |
-
msgid "Title For Guests"
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: options/phrases-layout/phrases-comment.php:117
|
482 |
-
msgid "Title For Members"
|
483 |
-
msgstr ""
|
484 |
-
|
485 |
-
#: options/phrases-layout/phrases-comment.php:127
|
486 |
-
msgid "Title For Authors"
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: options/phrases-layout/phrases-comment.php:137
|
490 |
-
msgid "Title For Admins"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: options/phrases-layout/phrases-comment.php:147
|
494 |
-
#: options/wc-options-serialize.php:498
|
495 |
-
msgid "Vote Up"
|
496 |
-
msgstr ""
|
497 |
-
|
498 |
-
#: options/phrases-layout/phrases-comment.php:157
|
499 |
-
#: options/wc-options-serialize.php:499
|
500 |
-
msgid "Vote Down"
|
501 |
-
msgstr ""
|
502 |
-
|
503 |
-
#: options/phrases-layout/phrases-comment.php:167
|
504 |
-
msgid "Save edited comment button text"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#: options/phrases-layout/phrases-comment.php:171
|
508 |
-
#: options/wc-options-serialize.php:517
|
509 |
-
msgid "Save"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: options/phrases-layout/phrases-comment.php:177
|
513 |
-
msgid "Cancel comment editing button text"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: options/phrases-layout/phrases-comment.php:181
|
517 |
-
#: options/wc-options-serialize.php:518
|
518 |
-
msgid "Cancel"
|
519 |
-
msgstr ""
|
520 |
-
|
521 |
-
#: options/phrases-layout/phrases-datetime.php:2
|
522 |
-
msgid "Date/Time Phrases"
|
523 |
-
msgstr ""
|
524 |
-
|
525 |
-
#: options/phrases-layout/phrases-datetime.php:7
|
526 |
-
msgid "Year"
|
527 |
-
msgstr ""
|
528 |
-
|
529 |
-
#: options/phrases-layout/phrases-datetime.php:18
|
530 |
-
msgid "Years (Plural Form)"
|
531 |
-
msgstr ""
|
532 |
-
|
533 |
-
#: options/phrases-layout/phrases-datetime.php:22
|
534 |
-
msgid "Years"
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: options/phrases-layout/phrases-datetime.php:29
|
538 |
-
msgid "Month"
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: options/phrases-layout/phrases-datetime.php:40
|
542 |
-
msgid "Months (Plural Form)"
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: options/phrases-layout/phrases-datetime.php:51
|
546 |
-
msgid "Day"
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: options/phrases-layout/phrases-datetime.php:62
|
550 |
-
msgid "Days (Plural Form)"
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: options/phrases-layout/phrases-datetime.php:84
|
554 |
-
msgid "Hours (Plural Form)"
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: options/phrases-layout/phrases-datetime.php:106
|
558 |
-
msgid "Minutes (Plural Form)"
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: options/phrases-layout/phrases-datetime.php:117
|
562 |
-
msgid "Second"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: options/phrases-layout/phrases-datetime.php:128
|
566 |
-
msgid "Seconds (Plural Form)"
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: options/phrases-layout/phrases-datetime.php:138
|
570 |
-
msgid "Commented \"right now\" text"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: options/phrases-layout/phrases-datetime.php:149
|
574 |
-
msgid "Ago text"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: options/phrases-layout/phrases-datetime.php:160
|
578 |
-
msgid "\"Today\" text"
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: options/phrases-layout/phrases-datetime.php:164
|
582 |
-
#: options/wc-options-serialize.php:492
|
583 |
-
msgid "Today"
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: options/phrases-layout/phrases-email.php:2
|
587 |
-
msgid "Email Template Phrases"
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
-
#: options/phrases-layout/phrases-email.php:7
|
591 |
-
msgid "Email Subject"
|
592 |
-
msgstr ""
|
593 |
-
|
594 |
-
#: options/phrases-layout/phrases-email.php:18
|
595 |
-
msgid "Email Message"
|
596 |
-
msgstr ""
|
597 |
-
|
598 |
-
#: options/phrases-layout/phrases-email.php:29
|
599 |
-
msgid "New Reply Subject"
|
600 |
-
msgstr ""
|
601 |
-
|
602 |
-
#: options/phrases-layout/phrases-email.php:33
|
603 |
-
#: options/phrases-layout/phrases-general.php:101
|
604 |
-
#: options/wc-options-serialize.php:463 wc.php:934
|
605 |
-
msgid "New Reply"
|
606 |
-
msgstr ""
|
607 |
-
|
608 |
-
#: options/phrases-layout/phrases-email.php:40
|
609 |
-
msgid "New Reply Message"
|
610 |
-
msgstr ""
|
611 |
-
|
612 |
-
#: options/phrases-layout/phrases-email.php:50
|
613 |
-
#: options/phrases-layout/phrases-email.php:54
|
614 |
-
#: options/wc-options-serialize.php:468
|
615 |
-
msgid "Unsubscribe"
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: options/phrases-layout/phrases-email.php:61
|
619 |
-
#: options/phrases-layout/phrases-email.php:65
|
620 |
-
#: options/wc-options-serialize.php:469
|
621 |
-
msgid "Ignore Subscription"
|
622 |
-
msgstr ""
|
623 |
-
|
624 |
-
#: options/phrases-layout/phrases-email.php:72
|
625 |
-
#: options/phrases-layout/phrases-email.php:76
|
626 |
-
#: options/wc-options-serialize.php:471
|
627 |
-
msgid "Confirm your subscription"
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: options/phrases-layout/phrases-email.php:82
|
631 |
-
#: options/phrases-layout/phrases-email.php:86
|
632 |
-
#: options/wc-options-serialize.php:472
|
633 |
-
msgid "You've successfully confirmed your subscription."
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: options/phrases-layout/phrases-email.php:92
|
637 |
-
msgid "Subscribe Confirmation Email Subject"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: options/phrases-layout/phrases-email.php:96
|
641 |
-
#: options/wc-options-serialize.php:473 wc.php:945
|
642 |
-
msgid "Subscribe Confirmation"
|
643 |
-
msgstr ""
|
644 |
-
|
645 |
-
#: options/phrases-layout/phrases-email.php:103
|
646 |
-
msgid "Subscribe Confirmation Email Content"
|
647 |
-
msgstr ""
|
648 |
-
|
649 |
-
#: options/phrases-layout/phrases-email.php:107
|
650 |
-
#: options/wc-options-serialize.php:474 wc.php:946
|
651 |
-
msgid ""
|
652 |
-
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
653 |
-
"you will receive an email when new comments are posted according to "
|
654 |
-
"subscription option you've chosen. <br/> To activate, click confirm below. "
|
655 |
-
"If you believe this is an error, ignore this message and we'll never bother "
|
656 |
-
"you again."
|
657 |
-
msgstr ""
|
658 |
-
|
659 |
-
#: options/phrases-layout/phrases-form.php:2
|
660 |
-
msgid "Form Template Phrases"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: options/phrases-layout/phrases-form.php:7
|
664 |
-
msgid "Comment Field Start"
|
665 |
-
msgstr ""
|
666 |
-
|
667 |
-
#: options/phrases-layout/phrases-form.php:17
|
668 |
-
msgid "Comment Field Join"
|
669 |
-
msgstr ""
|
670 |
-
|
671 |
-
#: options/phrases-layout/phrases-form.php:27
|
672 |
-
msgid "Email Field"
|
673 |
-
msgstr ""
|
674 |
-
|
675 |
-
#: options/phrases-layout/phrases-form.php:37
|
676 |
-
msgid "Name Field"
|
677 |
-
msgstr ""
|
678 |
-
|
679 |
-
#: options/phrases-layout/phrases-form.php:47
|
680 |
-
msgid "WebSite URL Field"
|
681 |
-
msgstr ""
|
682 |
-
|
683 |
-
#: options/phrases-layout/phrases-form.php:57
|
684 |
-
msgid "CAPTCHA Field"
|
685 |
-
msgstr ""
|
686 |
-
|
687 |
-
#: options/phrases-layout/phrases-form.php:67
|
688 |
-
msgid "Submit Button"
|
689 |
-
msgstr ""
|
690 |
-
|
691 |
-
#: options/phrases-layout/phrases-form.php:77
|
692 |
-
#: options/phrases-layout/phrases-form.php:81
|
693 |
-
#: options/wc-options-serialize.php:440
|
694 |
-
msgid "Manage Subscriptions"
|
695 |
-
msgstr ""
|
696 |
-
|
697 |
-
#: options/phrases-layout/phrases-form.php:87
|
698 |
-
msgid "Notify \"None\""
|
699 |
-
msgstr ""
|
700 |
-
|
701 |
-
#: options/phrases-layout/phrases-form.php:91
|
702 |
-
#: options/wc-options-serialize.php:441
|
703 |
-
msgid "None"
|
704 |
-
msgstr ""
|
705 |
-
|
706 |
-
#: options/phrases-layout/phrases-form.php:97
|
707 |
-
msgid "Notify on new comments (checkbox)"
|
708 |
-
msgstr ""
|
709 |
-
|
710 |
-
#: options/phrases-layout/phrases-form.php:101
|
711 |
-
#: options/wc-options-serialize.php:442
|
712 |
-
msgid "Notify of all new follow-up comments"
|
713 |
-
msgstr ""
|
714 |
-
|
715 |
-
#: options/phrases-layout/phrases-form.php:108
|
716 |
-
msgid "Notify on all new replies (checkbox)"
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
#: options/phrases-layout/phrases-form.php:112
|
720 |
-
#: options/wc-options-serialize.php:443
|
721 |
-
msgid "Notify of new replies to all my comments"
|
722 |
-
msgstr ""
|
723 |
-
|
724 |
-
#: options/phrases-layout/phrases-form.php:119
|
725 |
-
msgid "Notify on new replies (checkbox)"
|
726 |
-
msgstr ""
|
727 |
-
|
728 |
-
#: options/phrases-layout/phrases-form.php:123
|
729 |
-
#: options/wc-options-serialize.php:444
|
730 |
-
msgid "Notify of new replies to this comment"
|
731 |
-
msgstr ""
|
732 |
-
|
733 |
-
#: options/phrases-layout/phrases-form.php:129
|
734 |
-
msgid "Subscribed on this comment replies"
|
735 |
-
msgstr ""
|
736 |
-
|
737 |
-
#: options/phrases-layout/phrases-form.php:139
|
738 |
-
msgid "Subscribed on all your comments replies"
|
739 |
-
msgstr ""
|
740 |
-
|
741 |
-
#: options/phrases-layout/phrases-form.php:149
|
742 |
-
msgid "Subscribed on this post"
|
743 |
-
msgstr ""
|
744 |
-
|
745 |
-
#: options/phrases-layout/phrases-general.php:2
|
746 |
-
msgid "General Phrases"
|
747 |
-
msgstr ""
|
748 |
-
|
749 |
-
#: options/phrases-layout/phrases-general.php:7
|
750 |
-
#: options/wc-options-serialize.php:428
|
751 |
-
msgid "Leave a Reply"
|
752 |
-
msgstr ""
|
753 |
-
|
754 |
-
#: options/phrases-layout/phrases-general.php:17
|
755 |
-
msgid "Be the first to comment"
|
756 |
-
msgstr ""
|
757 |
-
|
758 |
-
#: options/phrases-layout/phrases-general.php:27
|
759 |
-
#: options/wc-options-serialize.php:430 options/wc-options.php:354
|
760 |
-
msgid "Comment"
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: options/phrases-layout/phrases-general.php:37
|
764 |
-
msgid "Comment (Plural Form)"
|
765 |
-
msgstr ""
|
766 |
-
|
767 |
-
#: options/phrases-layout/phrases-general.php:47
|
768 |
-
msgid "On"
|
769 |
-
msgstr ""
|
770 |
-
|
771 |
-
#: options/phrases-layout/phrases-general.php:57
|
772 |
-
msgid "Load More Button"
|
773 |
-
msgstr ""
|
774 |
-
|
775 |
-
#: options/phrases-layout/phrases-general.php:67
|
776 |
-
#: options/wc-options-serialize.php:446
|
777 |
-
msgid "Load Rest of Comments"
|
778 |
-
msgstr ""
|
779 |
-
|
780 |
-
#: options/phrases-layout/phrases-general.php:77
|
781 |
-
msgid "Button text if has new comment"
|
782 |
-
msgstr ""
|
783 |
-
|
784 |
-
#: options/phrases-layout/phrases-general.php:81
|
785 |
-
#: options/wc-options-serialize.php:461
|
786 |
-
msgid "New Comment"
|
787 |
-
msgstr ""
|
788 |
-
|
789 |
-
#: options/phrases-layout/phrases-general.php:87
|
790 |
-
msgid "Button text if has new comments (Plural Form)"
|
791 |
-
msgstr ""
|
792 |
-
|
793 |
-
#: options/phrases-layout/phrases-general.php:91
|
794 |
-
msgid "New Comments"
|
795 |
-
msgstr ""
|
796 |
-
|
797 |
-
#: options/phrases-layout/phrases-general.php:97
|
798 |
-
msgid "Button text if has new reply"
|
799 |
-
msgstr ""
|
800 |
-
|
801 |
-
#: options/phrases-layout/phrases-general.php:107
|
802 |
-
msgid "Button text if has new replies (Plural Form)"
|
803 |
-
msgstr ""
|
804 |
-
|
805 |
-
#: options/phrases-layout/phrases-general.php:111
|
806 |
-
msgid "New Replies"
|
807 |
-
msgstr ""
|
808 |
-
|
809 |
-
#: options/phrases-layout/phrases-general.php:117
|
810 |
-
msgid "Text on load more button if has new comment(s)"
|
811 |
-
msgstr ""
|
812 |
-
|
813 |
-
#: options/phrases-layout/phrases-general.php:121
|
814 |
-
#: options/wc-options-serialize.php:513
|
815 |
-
msgid "New"
|
816 |
-
msgstr ""
|
817 |
-
|
818 |
-
#: options/phrases-layout/phrases-notification.php:2
|
819 |
-
msgid "Notification Phrases"
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
#: options/phrases-layout/phrases-notification.php:7
|
823 |
-
#: options/wc-options-serialize.php:470
|
824 |
-
msgid "You've successfully unsubscribed."
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: options/phrases-layout/phrases-notification.php:18
|
828 |
-
msgid "Error message for empty field"
|
829 |
-
msgstr ""
|
830 |
-
|
831 |
-
#: options/phrases-layout/phrases-notification.php:28
|
832 |
-
msgid "Error message for invalid email field"
|
833 |
-
msgstr ""
|
834 |
-
|
835 |
-
#: options/phrases-layout/phrases-notification.php:38
|
836 |
-
msgid "Error message for invalid website url field"
|
837 |
-
msgstr ""
|
838 |
-
|
839 |
-
#: options/phrases-layout/phrases-notification.php:48
|
840 |
-
#: options/wc-options-serialize.php:493
|
841 |
-
msgid "You must be"
|
842 |
-
msgstr ""
|
843 |
-
|
844 |
-
#: options/phrases-layout/phrases-notification.php:58
|
845 |
-
msgid "Logged in as"
|
846 |
-
msgstr ""
|
847 |
-
|
848 |
-
#: options/phrases-layout/phrases-notification.php:68
|
849 |
-
#: options/wc-options-serialize.php:495
|
850 |
-
msgid "Log out"
|
851 |
-
msgstr ""
|
852 |
-
|
853 |
-
#: options/phrases-layout/phrases-notification.php:78
|
854 |
-
msgid "Logged In"
|
855 |
-
msgstr ""
|
856 |
-
|
857 |
-
#: options/phrases-layout/phrases-notification.php:88
|
858 |
-
msgid "To post a comment"
|
859 |
-
msgstr ""
|
860 |
-
|
861 |
-
#: options/phrases-layout/phrases-notification.php:98
|
862 |
-
#: options/wc-options-serialize.php:500
|
863 |
-
msgid "Vote Counted"
|
864 |
-
msgstr ""
|
865 |
-
|
866 |
-
#: options/phrases-layout/phrases-notification.php:108
|
867 |
-
msgid "You can vote only 1 time"
|
868 |
-
msgstr ""
|
869 |
-
|
870 |
-
#: options/phrases-layout/phrases-notification.php:118
|
871 |
-
#: options/wc-options-serialize.php:502
|
872 |
-
msgid "Voting Error"
|
873 |
-
msgstr ""
|
874 |
-
|
875 |
-
#: options/phrases-layout/phrases-notification.php:128
|
876 |
-
msgid "Login To Vote"
|
877 |
-
msgstr ""
|
878 |
-
|
879 |
-
#: options/phrases-layout/phrases-notification.php:138
|
880 |
-
msgid "You Cannot Vote On Your Comment"
|
881 |
-
msgstr ""
|
882 |
-
|
883 |
-
#: options/phrases-layout/phrases-notification.php:148
|
884 |
-
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
885 |
-
msgstr ""
|
886 |
-
|
887 |
-
#: options/phrases-layout/phrases-notification.php:158
|
888 |
-
#: options/wc-options-serialize.php:506
|
889 |
-
msgid "Invalid Captcha Code"
|
890 |
-
msgstr ""
|
891 |
-
|
892 |
-
#: options/phrases-layout/phrases-notification.php:168
|
893 |
-
#: options/wc-options-serialize.php:507
|
894 |
-
msgid "Some of field value is invalid"
|
895 |
-
msgstr ""
|
896 |
-
|
897 |
-
#: options/phrases-layout/phrases-notification.php:178
|
898 |
-
msgid "Comment waiting moderation"
|
899 |
-
msgstr ""
|
900 |
-
|
901 |
-
#: options/phrases-layout/phrases-notification.php:188
|
902 |
-
msgid "Message if comment content length is too long"
|
903 |
-
msgstr ""
|
904 |
-
|
905 |
-
#: options/phrases-layout/phrases-notification.php:198
|
906 |
-
msgid "Message if comment was not updated"
|
907 |
-
msgstr ""
|
908 |
-
|
909 |
-
#: options/phrases-layout/phrases-notification.php:202
|
910 |
-
#: options/wc-options-serialize.php:514
|
911 |
-
msgid "Sorry, the comment was not updated"
|
912 |
-
msgstr ""
|
913 |
-
|
914 |
-
#: options/phrases-layout/phrases-notification.php:208
|
915 |
-
msgid "Message if comment no longer possible to edit"
|
916 |
-
msgstr ""
|
917 |
-
|
918 |
-
#: options/phrases-layout/phrases-notification.php:212
|
919 |
-
#: options/wc-options-serialize.php:515
|
920 |
-
msgid "Sorry, this comment no longer possible to edit"
|
921 |
-
msgstr ""
|
922 |
-
|
923 |
-
#: options/phrases-layout/phrases-notification.php:219
|
924 |
-
msgid "Message if comment text not changed"
|
925 |
-
msgstr ""
|
926 |
-
|
927 |
-
#: options/phrases-layout/phrases-notification.php:223
|
928 |
-
msgid "TYou've not made any changes"
|
929 |
-
msgstr ""
|
930 |
-
|
931 |
-
#: options/wc-options-serialize.php:429
|
932 |
-
msgid "Be the First to Comment!"
|
933 |
-
msgstr ""
|
934 |
-
|
935 |
-
#: options/wc-options-serialize.php:431
|
936 |
-
msgid "Comments"
|
937 |
-
msgstr ""
|
938 |
-
|
939 |
-
#: options/wc-options-serialize.php:432
|
940 |
-
msgid "on"
|
941 |
-
msgstr ""
|
942 |
-
|
943 |
-
#: options/wc-options-serialize.php:433
|
944 |
-
msgid "Start the discussion"
|
945 |
-
msgstr ""
|
946 |
-
|
947 |
-
#: options/wc-options-serialize.php:434
|
948 |
-
msgid "Join the discussion"
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: options/wc-options-serialize.php:435 options/wc-options.php:356
|
952 |
-
msgid "Email"
|
953 |
-
msgstr ""
|
954 |
-
|
955 |
-
#: options/wc-options-serialize.php:436
|
956 |
-
msgid "Name"
|
957 |
-
msgstr ""
|
958 |
-
|
959 |
-
#: options/wc-options-serialize.php:437
|
960 |
-
msgid "WebSite URL"
|
961 |
-
msgstr ""
|
962 |
-
|
963 |
-
#: options/wc-options-serialize.php:438
|
964 |
-
msgid "Please insert the code above to comment"
|
965 |
-
msgstr ""
|
966 |
-
|
967 |
-
#: options/wc-options-serialize.php:439
|
968 |
-
msgid "Post Comment"
|
969 |
-
msgstr ""
|
970 |
-
|
971 |
-
#: options/wc-options-serialize.php:445
|
972 |
-
msgid "Load More Comments"
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
#: options/wc-options-serialize.php:457
|
976 |
-
msgid "Guest"
|
977 |
-
msgstr ""
|
978 |
-
|
979 |
-
#: options/wc-options-serialize.php:458
|
980 |
-
msgid "Member"
|
981 |
-
msgstr ""
|
982 |
-
|
983 |
-
#: options/wc-options-serialize.php:459
|
984 |
-
msgid "Author"
|
985 |
-
msgstr ""
|
986 |
-
|
987 |
-
#: options/wc-options-serialize.php:460
|
988 |
-
msgid "Admin"
|
989 |
-
msgstr ""
|
990 |
-
|
991 |
-
#: options/wc-options-serialize.php:462
|
992 |
-
msgid "New comment on the discussion section you've been interested in"
|
993 |
-
msgstr ""
|
994 |
-
|
995 |
-
#: options/wc-options-serialize.php:464 wc.php:935
|
996 |
-
msgid "New reply on the discussion section you've been interested in"
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
#: options/wc-options-serialize.php:465
|
1000 |
-
msgid "You're subscribed for new replies on this comment"
|
1001 |
-
msgstr ""
|
1002 |
-
|
1003 |
-
#: options/wc-options-serialize.php:466
|
1004 |
-
msgid "You're subscribed for new replies on all your comments"
|
1005 |
-
msgstr ""
|
1006 |
-
|
1007 |
-
#: options/wc-options-serialize.php:467
|
1008 |
-
msgid "You're subscribed for new follow-up comments on this post"
|
1009 |
-
msgstr ""
|
1010 |
-
|
1011 |
-
#: options/wc-options-serialize.php:475
|
1012 |
-
msgid "please fill out this field to comment"
|
1013 |
-
msgstr ""
|
1014 |
-
|
1015 |
-
#: options/wc-options-serialize.php:476
|
1016 |
-
msgid "email address is invalid"
|
1017 |
-
msgstr ""
|
1018 |
-
|
1019 |
-
#: options/wc-options-serialize.php:477
|
1020 |
-
msgid "url is invalid"
|
1021 |
-
msgstr ""
|
1022 |
-
|
1023 |
-
#: options/wc-options-serialize.php:478
|
1024 |
-
msgid "year"
|
1025 |
-
msgstr ""
|
1026 |
-
|
1027 |
-
#: options/wc-options-serialize.php:479
|
1028 |
-
msgid "years"
|
1029 |
-
msgstr ""
|
1030 |
-
|
1031 |
-
#: options/wc-options-serialize.php:480
|
1032 |
-
msgid "month"
|
1033 |
-
msgstr ""
|
1034 |
-
|
1035 |
-
#: options/wc-options-serialize.php:481
|
1036 |
-
msgid "months"
|
1037 |
-
msgstr ""
|
1038 |
-
|
1039 |
-
#: options/wc-options-serialize.php:482
|
1040 |
-
msgid "day"
|
1041 |
-
msgstr ""
|
1042 |
-
|
1043 |
-
#: options/wc-options-serialize.php:483
|
1044 |
-
msgid "days"
|
1045 |
-
msgstr ""
|
1046 |
-
|
1047 |
-
#: options/wc-options-serialize.php:484
|
1048 |
-
msgid "hour"
|
1049 |
-
msgstr ""
|
1050 |
-
|
1051 |
-
#: options/wc-options-serialize.php:485
|
1052 |
-
msgid "hours"
|
1053 |
-
msgstr ""
|
1054 |
-
|
1055 |
-
#: options/wc-options-serialize.php:486
|
1056 |
-
msgid "minute"
|
1057 |
-
msgstr ""
|
1058 |
-
|
1059 |
-
#: options/wc-options-serialize.php:487
|
1060 |
-
msgid "minutes"
|
1061 |
-
msgstr ""
|
1062 |
-
|
1063 |
-
#: options/wc-options-serialize.php:488
|
1064 |
-
msgid "second"
|
1065 |
-
msgstr ""
|
1066 |
-
|
1067 |
-
#: options/wc-options-serialize.php:489
|
1068 |
-
msgid "seconds"
|
1069 |
-
msgstr ""
|
1070 |
-
|
1071 |
-
#: options/wc-options-serialize.php:490
|
1072 |
-
msgid "right now"
|
1073 |
-
msgstr ""
|
1074 |
-
|
1075 |
-
#: options/wc-options-serialize.php:491
|
1076 |
-
msgid "ago"
|
1077 |
-
msgstr ""
|
1078 |
-
|
1079 |
-
#: options/wc-options-serialize.php:494
|
1080 |
-
msgid "You are logged in as"
|
1081 |
-
msgstr ""
|
1082 |
-
|
1083 |
-
#: options/wc-options-serialize.php:496
|
1084 |
-
msgid "logged in"
|
1085 |
-
msgstr ""
|
1086 |
-
|
1087 |
-
#: options/wc-options-serialize.php:497
|
1088 |
-
msgid "to post a comment."
|
1089 |
-
msgstr ""
|
1090 |
-
|
1091 |
-
#: options/wc-options-serialize.php:501
|
1092 |
-
msgid "You've already voted for this comment"
|
1093 |
-
msgstr ""
|
1094 |
-
|
1095 |
-
#: options/wc-options-serialize.php:503
|
1096 |
-
msgid "You Must Be Logged In To Vote"
|
1097 |
-
msgstr ""
|
1098 |
-
|
1099 |
-
#: options/wc-options-serialize.php:504
|
1100 |
-
msgid "You cannot vote for your comment"
|
1101 |
-
msgstr ""
|
1102 |
-
|
1103 |
-
#: options/wc-options-serialize.php:505
|
1104 |
-
msgid "You are not allowed to vote for this comment"
|
1105 |
-
msgstr ""
|
1106 |
-
|
1107 |
-
#: options/wc-options-serialize.php:508
|
1108 |
-
msgid "new comment"
|
1109 |
-
msgstr ""
|
1110 |
-
|
1111 |
-
#: options/wc-options-serialize.php:509
|
1112 |
-
msgid "new comments"
|
1113 |
-
msgstr ""
|
1114 |
-
|
1115 |
-
#: options/wc-options-serialize.php:510
|
1116 |
-
msgid "Comment awaiting moderation"
|
1117 |
-
msgstr ""
|
1118 |
-
|
1119 |
-
#: options/wc-options-serialize.php:511
|
1120 |
-
msgid "new reply on your comment"
|
1121 |
-
msgstr ""
|
1122 |
-
|
1123 |
-
#: options/wc-options-serialize.php:512
|
1124 |
-
msgid "new replies on your comments"
|
1125 |
-
msgstr ""
|
1126 |
-
|
1127 |
-
#: options/wc-options-serialize.php:516
|
1128 |
-
msgid "You've not made any changes"
|
1129 |
-
msgstr ""
|
1130 |
-
|
1131 |
-
#: options/wc-options-serialize.php:519
|
1132 |
-
msgid "Comment text is too long (maximum %s characters allowed)"
|
1133 |
-
msgstr ""
|
1134 |
-
|
1135 |
-
#: options/wc-options.php:28 options/wc-options.php:233
|
1136 |
-
msgid "Hacker?"
|
1137 |
-
msgstr ""
|
1138 |
-
|
1139 |
-
#: options/wc-options.php:88
|
1140 |
-
msgid "wpDiscuz General Settings"
|
1141 |
-
msgstr ""
|
1142 |
-
|
1143 |
-
#: options/wc-options.php:180
|
1144 |
-
msgid "General settings"
|
1145 |
-
msgstr ""
|
1146 |
-
|
1147 |
-
#: options/wc-options.php:183
|
1148 |
-
msgid "Email Subscription"
|
1149 |
-
msgstr ""
|
1150 |
-
|
1151 |
-
#: options/wc-options.php:183
|
1152 |
-
msgid "and Postmatic"
|
1153 |
-
msgstr ""
|
1154 |
-
|
1155 |
-
#: options/wc-options.php:214 options/wc-options.php:384
|
1156 |
-
msgid "Save Changes"
|
1157 |
-
msgstr ""
|
1158 |
-
|
1159 |
-
#: options/wc-options.php:215
|
1160 |
-
msgid "Reset Options"
|
1161 |
-
msgstr ""
|
1162 |
-
|
1163 |
-
#: options/wc-options.php:342
|
1164 |
-
msgid "WpDiscuz Front-end Phrases"
|
1165 |
-
msgstr ""
|
1166 |
-
|
1167 |
-
#: options/wc-options.php:352
|
1168 |
-
msgid "General"
|
1169 |
-
msgstr ""
|
1170 |
-
|
1171 |
-
#: options/wc-options.php:353
|
1172 |
-
msgid "Form"
|
1173 |
-
msgstr ""
|
1174 |
-
|
1175 |
-
#: options/wc-options.php:355
|
1176 |
-
msgid "Date/Time"
|
1177 |
-
msgstr ""
|
1178 |
-
|
1179 |
-
#: options/wc-options.php:357
|
1180 |
-
msgid "Notification"
|
1181 |
-
msgstr ""
|
1182 |
-
|
1183 |
-
#: wc.php:1026
|
1184 |
-
msgid "Phrases"
|
1185 |
-
msgstr ""
|
1186 |
-
|
1187 |
-
#. Plugin Name of the plugin/theme
|
1188 |
-
msgid "wpDiscuz - Wordpress Comments"
|
1189 |
-
msgstr ""
|
1190 |
-
|
1191 |
-
#. Plugin URI of the plugin/theme
|
1192 |
-
msgid "http://www.gvectors.com/wpdiscuz/"
|
1193 |
-
msgstr ""
|
1194 |
-
|
1195 |
-
#. Description of the plugin/theme
|
1196 |
-
msgid ""
|
1197 |
-
"Better comment system. Wordpress post comments and discussion plugin. Allows "
|
1198 |
-
"your visitors discuss, vote for comments and share."
|
1199 |
-
msgstr ""
|
1200 |
-
|
1201 |
-
#. Author of the plugin/theme
|
1202 |
-
msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
|
1203 |
-
msgstr ""
|
1204 |
-
|
1205 |
-
#. Author URI of the plugin/theme
|
1206 |
-
msgid "http://www.gvectors.com/"
|
1207 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
options/options-layouts/settings-general.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('General Settings',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
-
<?php _e('Display comment form for post types:',
|
8 |
</th>
|
9 |
<td>
|
10 |
<?php
|
@@ -25,17 +25,17 @@
|
|
25 |
|
26 |
<tr valign="top">
|
27 |
<th scope="row">
|
28 |
-
<?php _e('User Must be registered to comment',
|
29 |
</th>
|
30 |
<td>
|
31 |
<fieldset>
|
32 |
<label title="Yes">
|
33 |
<input type="radio" value="1" <?php checked('1' == $this->wc_options_serialized->wc_user_must_be_registered); ?> name="wc_user_must_be_registered" id="wc_user_must_be_registered_yes" />
|
34 |
-
<span
|
35 |
</label>
|
36 |
<label title="No">
|
37 |
<input type="radio" value="0" <?php checked('0' == $this->wc_options_serialized->wc_user_must_be_registered); ?> name="wc_user_must_be_registered" id="wc_user_must_be_registered_no" />
|
38 |
-
<span
|
39 |
</label><br>
|
40 |
</fieldset>
|
41 |
</td>
|
@@ -43,7 +43,7 @@
|
|
43 |
|
44 |
<tr valign="top">
|
45 |
<th scope="row" style="width:55%">
|
46 |
-
<?php _e('Comment author must fill out name',
|
47 |
</th>
|
48 |
<td>
|
49 |
<label for="wc_is_name_field_required">
|
@@ -54,7 +54,7 @@
|
|
54 |
|
55 |
<tr valign="top">
|
56 |
<th scope="row" style="width:55%">
|
57 |
-
<?php _e('Comment author must fill out email',
|
58 |
</th>
|
59 |
<td>
|
60 |
<label for="wc_is_email_field_required">
|
@@ -65,17 +65,17 @@
|
|
65 |
|
66 |
<tr valign="top">
|
67 |
<th scope="row">
|
68 |
-
<?php _e('Show the latest comments on',
|
69 |
</th>
|
70 |
<td>
|
71 |
<fieldset class="comment_list_order">
|
72 |
-
<label title="<?php _e('the top of the list',
|
73 |
<input type="radio" value="desc" <?php checked('desc' == $this->wc_options_serialized->wc_comment_list_order); ?> name="wc_comment_list_order" id="wc_comment_list_order" />
|
74 |
-
<span><?php _e('top of the threads',
|
75 |
</label> <br/>
|
76 |
-
<label title="<?php _e('bottom of the threads',
|
77 |
<input type="radio" value="asc" <?php checked('asc' == $this->wc_options_serialized->wc_comment_list_order); ?> name="wc_comment_list_order" id="wc_comment_list_order" />
|
78 |
-
<span><?php _e('the bottom of the list',
|
79 |
</label><br>
|
80 |
</fieldset>
|
81 |
</td>
|
@@ -83,7 +83,7 @@
|
|
83 |
|
84 |
<tr valign="top">
|
85 |
<th scope="row">
|
86 |
-
<?php _e('Comment Threads Per Page',
|
87 |
</th>
|
88 |
<td>
|
89 |
<label for="wc_comment_count">
|
@@ -92,36 +92,26 @@
|
|
92 |
</td>
|
93 |
</tr>
|
94 |
|
95 |
-
<tr valign="top">
|
96 |
-
<th scope="row">
|
97 |
-
<?php _e('Comment text max length', 'wpdiscuz'); ?>
|
98 |
-
</th>
|
99 |
-
<td>
|
100 |
-
<label for="wc_comment_text_max_length">
|
101 |
-
<input type="number" value="<?php echo isset($this->wc_options_serialized->wc_comment_text_max_length) ? $this->wc_options_serialized->wc_comment_text_max_length : ''; ?>" name="wc_comment_text_max_length" id="wc_comment_text_max_length" />
|
102 |
-
</label><br/>
|
103 |
-
</td>
|
104 |
-
</tr>
|
105 |
|
106 |
<tr valign="top">
|
107 |
<th scope="row">
|
108 |
-
<label for="wc_comments_max_depth"><?php _e('Comments max depth',
|
109 |
</th>
|
110 |
<td colspan="3">
|
111 |
<select id="wc_comments_max_depth" name="wc_comments_max_depth">
|
112 |
<?php $wc_comments_max_depth = isset($this->wc_options_serialized->wc_comments_max_depth) ? $this->wc_options_serialized->wc_comments_max_depth : 3; ?>
|
113 |
-
<option value="1" <?php selected($wc_comments_max_depth, '1'); ?>>1 <?php _e('Level',
|
114 |
-
<option value="2" <?php selected($wc_comments_max_depth, '2'); ?>>2 <?php _e('Levels',
|
115 |
-
<option value="3" <?php selected($wc_comments_max_depth, '3'); ?>>3 <?php _e('Levels',
|
116 |
-
<option value="4" <?php selected($wc_comments_max_depth, '4'); ?>>4 <?php _e('Levels',
|
117 |
-
<option value="5" <?php selected($wc_comments_max_depth, '5'); ?>>5 <?php _e('Levels',
|
118 |
</select>
|
119 |
</td>
|
120 |
</tr>
|
121 |
|
122 |
<tr valign="top">
|
123 |
<th scope="row">
|
124 |
-
<label for="wc_comment_text_size"><?php _e('Comment text size in pixels',
|
125 |
</th>
|
126 |
<td>
|
127 |
<select id="wc_comment_text_size" name="wc_comment_text_size">
|
@@ -138,24 +128,24 @@
|
|
138 |
|
139 |
<tr valign="top">
|
140 |
<th scope="row">
|
141 |
-
<label for="wc_comment_editable_time"><?php _e('Allow comment editing for',
|
142 |
</th>
|
143 |
<td>
|
144 |
<select id="wc_comment_editable_time" name="wc_comment_editable_time">
|
145 |
<?php $wc_comment_editable_time = isset($this->wc_options_serialized->wc_comment_editable_time) ? $this->wc_options_serialized->wc_comment_editable_time : 0; ?>
|
146 |
-
<option value="0" <?php selected($wc_comment_editable_time, '0'); ?>><?php _e('Not Allow',
|
147 |
-
<option value="900" <?php selected($wc_comment_editable_time, '900'); ?>>15 <?php _e('Minutes',
|
148 |
-
<option value="1800" <?php selected($wc_comment_editable_time, '1800'); ?>>30 <?php _e('Minutes',
|
149 |
-
<option value="3600" <?php selected($wc_comment_editable_time, '3600'); ?>>1 <?php _e('Hour',
|
150 |
-
<option value="10800" <?php selected($wc_comment_editable_time, '10800'); ?>>3 <?php _e('Hours',
|
151 |
-
<option value="86400" <?php selected($wc_comment_editable_time, '86400'); ?>>24 <?php _e('Hours',
|
152 |
</select>
|
153 |
</td>
|
154 |
</tr>
|
155 |
|
156 |
<tr valign="top">
|
157 |
<th scope="row">
|
158 |
-
<?php _e('Redirect first commenter to',
|
159 |
</th>
|
160 |
<td>
|
161 |
<?php
|
@@ -171,7 +161,7 @@
|
|
171 |
|
172 |
<tr valign="top">
|
173 |
<th scope="row">
|
174 |
-
<?php _e('Allow guests to vote on comments',
|
175 |
</th>
|
176 |
<td>
|
177 |
<label for="wc_is_guest_can_vote">
|
@@ -179,19 +169,9 @@
|
|
179 |
</label>
|
180 |
</td>
|
181 |
</tr>
|
182 |
-
<tr valign="top">
|
183 |
-
<th scope="row" >
|
184 |
-
<?php _e('Load WpDiscuz CSS and JS on home page', 'wpdiscuz'); ?>
|
185 |
-
</th>
|
186 |
-
<td colspan="3">
|
187 |
-
<label for="wc_load_js_css_on_home">
|
188 |
-
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_load_js_css_on_home == 1) ?> value="1" name="wc_load_js_css_on_home" id="wc_load_js_css_on_home" />
|
189 |
-
</label>
|
190 |
-
</td>
|
191 |
-
</tr>
|
192 |
<tr valign="top">
|
193 |
<th scope="row">
|
194 |
-
<?php _e('Load rest of all comments on clicking the [Load More Comments] button',
|
195 |
</th>
|
196 |
<td>
|
197 |
<label for="wc_load_all_comments">
|
@@ -202,43 +182,35 @@
|
|
202 |
|
203 |
<tr valign="top">
|
204 |
<th scope="row">
|
205 |
-
<?php _e('Use WordPress Date/Time format',
|
206 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('wpDiscuz shows Human Readable date format. If you check this option it\'ll show the date/time format set in WordPress General Settings.',
|
207 |
</th>
|
208 |
<td>
|
209 |
<label for="wc_simple_comment_date">
|
210 |
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_simple_comment_date == 1) ?> value="1" name="wc_simple_comment_date" id="wc_simple_comment_date" />
|
211 |
<span style="font-size:13px; color:#999999; padding-left:0px; margin-left:0px; line-height:15px">
|
212 |
<?php echo date(get_option('date_format')); ?> / <?php echo date(get_option('time_format')); ?><br />
|
213 |
-
<?php _e('Current Wordpress date/time format',
|
214 |
</label>
|
215 |
</td>
|
216 |
</tr>
|
217 |
-
|
218 |
-
|
219 |
-
<?php _e('Use Plugin .PO/.MO files', 'wpdiscuz'); ?>
|
220 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('wpDiscuz phrase system allows you to translate all front-end phrases. However if you have a multi-language website it\'ll not allow you to add more than one language translation. The only way to get it is the plugin translation files (.PO / .MO). If wpDiscuz has the languages you need you should check this option to disable phrase system and it\'ll automatically translate all phrases based on language files according to current language.', 'wpdiscuz'); ?></p>
|
221 |
-
</th>
|
222 |
-
<td colspan="3">
|
223 |
-
<label for="wc_is_use_po_mo">
|
224 |
-
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_is_use_po_mo == 1) ?> value="1" name="wc_is_use_po_mo" id="wc_is_use_po_mo" />
|
225 |
-
</label>
|
226 |
-
</td>
|
227 |
-
</tr>
|
228 |
<tr valign="top">
|
229 |
<th scope="row" >
|
230 |
<label for="wc_show_plugin_powerid_by">
|
231 |
-
<?php _e('Help wpDiscuz to grow allowing people to recognize which comment plugin you use',
|
232 |
</label>
|
233 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('Please check this option on to help wpDiscuz get more popularity as your thank to the hard work we do for you totally free. This option adds a very small (16x16px) icon under the comment section which will allow your site visitors recognize the name of comment solution you use.',
|
234 |
</th>
|
235 |
<td colspan="3">
|
236 |
<label for="wc_show_plugin_powerid_by">
|
237 |
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_show_plugin_powerid_by == 1) ?> value="1" name="wc_show_plugin_powerid_by" id="wc_show_plugin_powerid_by" />
|
238 |
-
<span id="wpdiscuz_thank_you" style="color:#006600; font-size:13px;"><?php _e('Thank you!',
|
239 |
</label>
|
240 |
</td>
|
241 |
</tr>
|
|
|
242 |
</tbody>
|
243 |
</table>
|
244 |
</div>
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('General Settings', WC_Core::$TEXT_DOMAIN); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
+
<?php _e('Display comment form for post types:', WC_Core::$TEXT_DOMAIN); ?>
|
8 |
</th>
|
9 |
<td>
|
10 |
<?php
|
25 |
|
26 |
<tr valign="top">
|
27 |
<th scope="row">
|
28 |
+
<?php _e('User Must be registered to comment', WC_Core::$TEXT_DOMAIN); ?>
|
29 |
</th>
|
30 |
<td>
|
31 |
<fieldset>
|
32 |
<label title="Yes">
|
33 |
<input type="radio" value="1" <?php checked('1' == $this->wc_options_serialized->wc_user_must_be_registered); ?> name="wc_user_must_be_registered" id="wc_user_must_be_registered_yes" />
|
34 |
+
<span>Yes</span>
|
35 |
</label>
|
36 |
<label title="No">
|
37 |
<input type="radio" value="0" <?php checked('0' == $this->wc_options_serialized->wc_user_must_be_registered); ?> name="wc_user_must_be_registered" id="wc_user_must_be_registered_no" />
|
38 |
+
<span>No</span>
|
39 |
</label><br>
|
40 |
</fieldset>
|
41 |
</td>
|
43 |
|
44 |
<tr valign="top">
|
45 |
<th scope="row" style="width:55%">
|
46 |
+
<?php _e('Comment author must fill out name', WC_Core::$TEXT_DOMAIN); ?>
|
47 |
</th>
|
48 |
<td>
|
49 |
<label for="wc_is_name_field_required">
|
54 |
|
55 |
<tr valign="top">
|
56 |
<th scope="row" style="width:55%">
|
57 |
+
<?php _e('Comment author must fill out email', WC_Core::$TEXT_DOMAIN); ?>
|
58 |
</th>
|
59 |
<td>
|
60 |
<label for="wc_is_email_field_required">
|
65 |
|
66 |
<tr valign="top">
|
67 |
<th scope="row">
|
68 |
+
<?php _e('Show the latest comments on', WC_Core::$TEXT_DOMAIN); ?>
|
69 |
</th>
|
70 |
<td>
|
71 |
<fieldset class="comment_list_order">
|
72 |
+
<label title="<?php _e('the top of the list', WC_Core::$TEXT_DOMAIN) ?>">
|
73 |
<input type="radio" value="desc" <?php checked('desc' == $this->wc_options_serialized->wc_comment_list_order); ?> name="wc_comment_list_order" id="wc_comment_list_order" />
|
74 |
+
<span><?php _e('top of the threads', WC_Core::$TEXT_DOMAIN) ?></span>
|
75 |
</label> <br/>
|
76 |
+
<label title="<?php _e('bottom of the threads', WC_Core::$TEXT_DOMAIN) ?>">
|
77 |
<input type="radio" value="asc" <?php checked('asc' == $this->wc_options_serialized->wc_comment_list_order); ?> name="wc_comment_list_order" id="wc_comment_list_order" />
|
78 |
+
<span><?php _e('the bottom of the list', WC_Core::$TEXT_DOMAIN) ?></span>
|
79 |
</label><br>
|
80 |
</fieldset>
|
81 |
</td>
|
83 |
|
84 |
<tr valign="top">
|
85 |
<th scope="row">
|
86 |
+
<?php _e('Comment Threads Per Page', WC_Core::$TEXT_DOMAIN); ?>
|
87 |
</th>
|
88 |
<td>
|
89 |
<label for="wc_comment_count">
|
92 |
</td>
|
93 |
</tr>
|
94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
|
96 |
<tr valign="top">
|
97 |
<th scope="row">
|
98 |
+
<label for="wc_comments_max_depth"><?php _e('Comments max depth', WC_Core::$TEXT_DOMAIN); ?></label>
|
99 |
</th>
|
100 |
<td colspan="3">
|
101 |
<select id="wc_comments_max_depth" name="wc_comments_max_depth">
|
102 |
<?php $wc_comments_max_depth = isset($this->wc_options_serialized->wc_comments_max_depth) ? $this->wc_options_serialized->wc_comments_max_depth : 3; ?>
|
103 |
+
<option value="1" <?php selected($wc_comments_max_depth, '1'); ?>>1 <?php _e('Level', WC_Core::$TEXT_DOMAIN); ?></option>
|
104 |
+
<option value="2" <?php selected($wc_comments_max_depth, '2'); ?>>2 <?php _e('Levels', WC_Core::$TEXT_DOMAIN); ?></option>
|
105 |
+
<option value="3" <?php selected($wc_comments_max_depth, '3'); ?>>3 <?php _e('Levels', WC_Core::$TEXT_DOMAIN); ?></option>
|
106 |
+
<option value="4" <?php selected($wc_comments_max_depth, '4'); ?>>4 <?php _e('Levels', WC_Core::$TEXT_DOMAIN); ?></option>
|
107 |
+
<option value="5" <?php selected($wc_comments_max_depth, '5'); ?>>5 <?php _e('Levels', WC_Core::$TEXT_DOMAIN); ?></option>
|
108 |
</select>
|
109 |
</td>
|
110 |
</tr>
|
111 |
|
112 |
<tr valign="top">
|
113 |
<th scope="row">
|
114 |
+
<label for="wc_comment_text_size"><?php _e('Comment text size in pixels', WC_Core::$TEXT_DOMAIN); ?></label>
|
115 |
</th>
|
116 |
<td>
|
117 |
<select id="wc_comment_text_size" name="wc_comment_text_size">
|
128 |
|
129 |
<tr valign="top">
|
130 |
<th scope="row">
|
131 |
+
<label for="wc_comment_editable_time"><?php _e('Allow comment editing for', WC_Core::$TEXT_DOMAIN); ?></label>
|
132 |
</th>
|
133 |
<td>
|
134 |
<select id="wc_comment_editable_time" name="wc_comment_editable_time">
|
135 |
<?php $wc_comment_editable_time = isset($this->wc_options_serialized->wc_comment_editable_time) ? $this->wc_options_serialized->wc_comment_editable_time : 0; ?>
|
136 |
+
<option value="0" <?php selected($wc_comment_editable_time, '0'); ?>><?php _e('Not Allow', WC_Core::$TEXT_DOMAIN); ?></option>
|
137 |
+
<option value="900" <?php selected($wc_comment_editable_time, '900'); ?>>15 <?php _e('Minutes', WC_Core::$TEXT_DOMAIN); ?></option>
|
138 |
+
<option value="1800" <?php selected($wc_comment_editable_time, '1800'); ?>>30 <?php _e('Minutes', WC_Core::$TEXT_DOMAIN); ?></option>
|
139 |
+
<option value="3600" <?php selected($wc_comment_editable_time, '3600'); ?>>1 <?php _e('Hour', WC_Core::$TEXT_DOMAIN); ?></option>
|
140 |
+
<option value="10800" <?php selected($wc_comment_editable_time, '10800'); ?>>3 <?php _e('Hours', WC_Core::$TEXT_DOMAIN); ?></option>
|
141 |
+
<option value="86400" <?php selected($wc_comment_editable_time, '86400'); ?>>24 <?php _e('Hours', WC_Core::$TEXT_DOMAIN); ?></option>
|
142 |
</select>
|
143 |
</td>
|
144 |
</tr>
|
145 |
|
146 |
<tr valign="top">
|
147 |
<th scope="row">
|
148 |
+
<?php _e('Redirect first commenter to', WC_Core::$TEXT_DOMAIN); ?>
|
149 |
</th>
|
150 |
<td>
|
151 |
<?php
|
161 |
|
162 |
<tr valign="top">
|
163 |
<th scope="row">
|
164 |
+
<?php _e('Allow guests to vote on comments', WC_Core::$TEXT_DOMAIN); ?>
|
165 |
</th>
|
166 |
<td>
|
167 |
<label for="wc_is_guest_can_vote">
|
169 |
</label>
|
170 |
</td>
|
171 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
<tr valign="top">
|
173 |
<th scope="row">
|
174 |
+
<?php _e('Load rest of all comments on clicking the [Load More Comments] button', WC_Core::$TEXT_DOMAIN); ?>
|
175 |
</th>
|
176 |
<td>
|
177 |
<label for="wc_load_all_comments">
|
182 |
|
183 |
<tr valign="top">
|
184 |
<th scope="row">
|
185 |
+
<?php _e('Use WordPress Date/Time format', WC_Core::$TEXT_DOMAIN); ?>
|
186 |
+
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('wpDiscuz shows Human Readable date format. If you check this option it\'ll show the date/time format set in WordPress General Settings.', WC_Core::$TEXT_DOMAIN); ?></p>
|
187 |
</th>
|
188 |
<td>
|
189 |
<label for="wc_simple_comment_date">
|
190 |
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_simple_comment_date == 1) ?> value="1" name="wc_simple_comment_date" id="wc_simple_comment_date" />
|
191 |
<span style="font-size:13px; color:#999999; padding-left:0px; margin-left:0px; line-height:15px">
|
192 |
<?php echo date(get_option('date_format')); ?> / <?php echo date(get_option('time_format')); ?><br />
|
193 |
+
<?php _e('Current Wordpress date/time format', WC_Core::$TEXT_DOMAIN); ?></span>
|
194 |
</label>
|
195 |
</td>
|
196 |
</tr>
|
197 |
+
|
198 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
<tr valign="top">
|
200 |
<th scope="row" >
|
201 |
<label for="wc_show_plugin_powerid_by">
|
202 |
+
<?php _e('Help wpDiscuz to grow allowing people to recognize which comment plugin you use', WC_Core::$TEXT_DOMAIN); ?>
|
203 |
</label>
|
204 |
+
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('Please check this option on to help wpDiscuz get more popularity as your thank to the hard work we do for you totally free. This option adds a very small (16x16px) icon under the comment section which will allow your site visitors recognize the name of comment solution you use.', WC_Core::$TEXT_DOMAIN); ?></p>
|
205 |
</th>
|
206 |
<td colspan="3">
|
207 |
<label for="wc_show_plugin_powerid_by">
|
208 |
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_show_plugin_powerid_by == 1) ?> value="1" name="wc_show_plugin_powerid_by" id="wc_show_plugin_powerid_by" />
|
209 |
+
<span id="wpdiscuz_thank_you" style="color:#006600; font-size:13px;"><?php _e('Thank you!', WC_Core::$TEXT_DOMAIN); ?></span>
|
210 |
</label>
|
211 |
</td>
|
212 |
</tr>
|
213 |
+
|
214 |
</tbody>
|
215 |
</table>
|
216 |
</div>
|
options/options-layouts/settings-live-update.php
CHANGED
@@ -1,27 +1,27 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Live Update',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
|
6 |
<tr valign="top">
|
7 |
<th scope="row" style="width:55%;">
|
8 |
-
<?php _e('Live update options',
|
9 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"
|
10 |
</th>
|
11 |
<td>
|
12 |
<fieldset class="wc_comment_list_update_type">
|
13 |
<?php $wc_comment_list_update_type = isset($this->wc_options_serialized->wc_comment_list_update_type) ? $this->wc_options_serialized->wc_comment_list_update_type : 1; ?>
|
14 |
-
<label title="<?php _e('Never update',
|
15 |
<input type="radio" value="0" <?php checked('0' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_never" />
|
16 |
-
<span><?php _e('Turn off "Live Update" function',
|
17 |
</label> <br/>
|
18 |
-
<label title="<?php _e('Show new comment/reply buttons to update manualy',
|
19 |
<input type="radio" value="2" <?php checked('2' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_new" />
|
20 |
-
<span><?php _e('Always check for new comments and show update buttons',
|
21 |
</label><br>
|
22 |
-
<label title="<?php _e('Always update',
|
23 |
<input type="radio" value="1" <?php checked('1' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_always" />
|
24 |
-
<span><?php _e('Always check for new comments and update automatically',
|
25 |
</label> <br/>
|
26 |
</fieldset>
|
27 |
</td>
|
@@ -29,18 +29,18 @@
|
|
29 |
|
30 |
<tr valign="top">
|
31 |
<th scope="row">
|
32 |
-
<label for="wc_comment_list_update_timer"><?php _e('Update comment list every',
|
33 |
</th>
|
34 |
<td>
|
35 |
<select id="wc_comment_list_update_timer" name="wc_comment_list_update_timer">
|
36 |
<?php $wc_comment_list_update_timer = isset($this->wc_options_serialized->wc_comment_list_update_timer) ? $this->wc_options_serialized->wc_comment_list_update_timer : 30; ?>
|
37 |
-
<option value="10" <?php selected($wc_comment_list_update_timer, '10'); ?>>10 <?php _e('Seconds',
|
38 |
-
<option value="20" <?php selected($wc_comment_list_update_timer, '20'); ?>>20 <?php _e('Seconds',
|
39 |
-
<option value="30" <?php selected($wc_comment_list_update_timer, '30'); ?>>30 <?php _e('Seconds',
|
40 |
-
<option value="60" <?php selected($wc_comment_list_update_timer, '60'); ?>>1 <?php _e('Minute',
|
41 |
-
<option value="180" <?php selected($wc_comment_list_update_timer, '180'); ?>>3 <?php _e('Minutes',
|
42 |
-
<option value="300" <?php selected($wc_comment_list_update_timer, '300'); ?>>5 <?php _e('Minutes',
|
43 |
-
<option value="600" <?php selected($wc_comment_list_update_timer, '600'); ?>>10 <?php _e('Minutes',
|
44 |
</select>
|
45 |
</td>
|
46 |
</tr>
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Live Update', WC_Core::$TEXT_DOMAIN); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
|
6 |
<tr valign="top">
|
7 |
<th scope="row" style="width:55%;">
|
8 |
+
<?php _e('Live update options', WC_Core::$TEXT_DOMAIN); ?>
|
9 |
+
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;">If you use Shared Web Hosting you should make sure the "Live Update" function doesn't overload your server resources. This function is good for VPS and Dedicated Hosting Plans.</p>
|
10 |
</th>
|
11 |
<td>
|
12 |
<fieldset class="wc_comment_list_update_type">
|
13 |
<?php $wc_comment_list_update_type = isset($this->wc_options_serialized->wc_comment_list_update_type) ? $this->wc_options_serialized->wc_comment_list_update_type : 1; ?>
|
14 |
+
<label title="<?php _e('Never update', WC_Core::$TEXT_DOMAIN) ?>">
|
15 |
<input type="radio" value="0" <?php checked('0' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_never" />
|
16 |
+
<span><?php _e('Turn off "Live Update" function', WC_Core::$TEXT_DOMAIN) ?></span>
|
17 |
</label> <br/>
|
18 |
+
<label title="<?php _e('Show new comment/reply buttons to update manualy', WC_Core::$TEXT_DOMAIN) ?>">
|
19 |
<input type="radio" value="2" <?php checked('2' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_new" />
|
20 |
+
<span><?php _e('Always check for new comments and show update buttons', WC_Core::$TEXT_DOMAIN) ?></span>
|
21 |
</label><br>
|
22 |
+
<label title="<?php _e('Always update', WC_Core::$TEXT_DOMAIN) ?>">
|
23 |
<input type="radio" value="1" <?php checked('1' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_always" />
|
24 |
+
<span><?php _e('Always check for new comments and update automatically', WC_Core::$TEXT_DOMAIN) ?></span>
|
25 |
</label> <br/>
|
26 |
</fieldset>
|
27 |
</td>
|
29 |
|
30 |
<tr valign="top">
|
31 |
<th scope="row">
|
32 |
+
<label for="wc_comment_list_update_timer"><?php _e('Update comment list every', WC_Core::$TEXT_DOMAIN); ?></label>
|
33 |
</th>
|
34 |
<td>
|
35 |
<select id="wc_comment_list_update_timer" name="wc_comment_list_update_timer">
|
36 |
<?php $wc_comment_list_update_timer = isset($this->wc_options_serialized->wc_comment_list_update_timer) ? $this->wc_options_serialized->wc_comment_list_update_timer : 30; ?>
|
37 |
+
<option value="10" <?php selected($wc_comment_list_update_timer, '10'); ?>>10 <?php _e('Seconds', WC_Core::$TEXT_DOMAIN); ?></option>
|
38 |
+
<option value="20" <?php selected($wc_comment_list_update_timer, '20'); ?>>20 <?php _e('Seconds', WC_Core::$TEXT_DOMAIN); ?></option>
|
39 |
+
<option value="30" <?php selected($wc_comment_list_update_timer, '30'); ?>>30 <?php _e('Seconds', WC_Core::$TEXT_DOMAIN); ?></option>
|
40 |
+
<option value="60" <?php selected($wc_comment_list_update_timer, '60'); ?>>1 <?php _e('Minute', WC_Core::$TEXT_DOMAIN); ?></option>
|
41 |
+
<option value="180" <?php selected($wc_comment_list_update_timer, '180'); ?>>3 <?php _e('Minutes', WC_Core::$TEXT_DOMAIN); ?></option>
|
42 |
+
<option value="300" <?php selected($wc_comment_list_update_timer, '300'); ?>>5 <?php _e('Minutes', WC_Core::$TEXT_DOMAIN); ?></option>
|
43 |
+
<option value="600" <?php selected($wc_comment_list_update_timer, '600'); ?>>10 <?php _e('Minutes', WC_Core::$TEXT_DOMAIN); ?></option>
|
44 |
</select>
|
45 |
</td>
|
46 |
</tr>
|
options/options-layouts/settings-show-hide.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Show/Hide Components',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%">
|
7 |
-
<?php _e('Show logged-in user name and logout link on top of main form',
|
8 |
</th>
|
9 |
<td>
|
10 |
<label for="wc_show_hide_loggedin_username">
|
@@ -14,7 +14,7 @@
|
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
-
<?php _e('Hide Reply button for Guests',
|
18 |
</th>
|
19 |
<td>
|
20 |
<label for="wc_reply_button_guests_show_hide">
|
@@ -24,7 +24,7 @@
|
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
-
<?php _e('Hide Reply button for Members',
|
28 |
</th>
|
29 |
<td>
|
30 |
<label for="wc_reply_button_members_show_hide">
|
@@ -34,7 +34,7 @@
|
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
-
<?php _e('Hide Author Titles',
|
38 |
</th>
|
39 |
<td>
|
40 |
<label for="wc_author_titles_show_hide">
|
@@ -44,7 +44,7 @@
|
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
-
<?php _e('Hide Voting buttons',
|
48 |
</th>
|
49 |
<td>
|
50 |
<label for="wc_voting_buttons_show_hide">
|
@@ -54,7 +54,7 @@
|
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
-
<?php _e('Hide Share Buttons',
|
58 |
</th>
|
59 |
<td>
|
60 |
<label for="wc_share_buttons_show_hide">
|
@@ -64,7 +64,7 @@
|
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
-
<?php _e('Hide the CAPTCHA field',
|
68 |
</th>
|
69 |
<td>
|
70 |
<label for="wc_captcha_show_hide">
|
@@ -74,33 +74,13 @@
|
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
-
<?php _e('Hide the Website URL field',
|
78 |
</th>
|
79 |
<td>
|
80 |
<label for="wc_weburl_show_hide">
|
81 |
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_weburl_show_hide == 1) ?> value="1" name="wc_weburl_show_hide" id="wc_weburl_show_hide" />
|
82 |
</label>
|
83 |
</td>
|
84 |
-
</tr>
|
85 |
-
<tr valign="top">
|
86 |
-
<th scope="row">
|
87 |
-
<?php _e('Hide header text', 'wpdiscuz'); ?>
|
88 |
-
</th>
|
89 |
-
<td>
|
90 |
-
<label for="wc_header_text_show_hide">
|
91 |
-
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_header_text_show_hide == 1) ?> value="1" name="wc_header_text_show_hide" id="wc_header_text_show_hide" />
|
92 |
-
</label>
|
93 |
-
</td>
|
94 |
-
</tr>
|
95 |
-
<tr valign="top">
|
96 |
-
<th scope="row">
|
97 |
-
<?php _e('Hide user avatar', 'wpdiscuz'); ?>
|
98 |
-
</th>
|
99 |
-
<td>
|
100 |
-
<label for="wc_avatar_show_hide">
|
101 |
-
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_avatar_show_hide == 1) ?> value="1" name="wc_avatar_show_hide" id="wc_avatar_show_hide" />
|
102 |
-
</label>
|
103 |
-
</td>
|
104 |
</tr>
|
105 |
</tbody>
|
106 |
</table>
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Show/Hide Components', WC_Core::$TEXT_DOMAIN); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%">
|
7 |
+
<?php _e('Show logged-in user name and logout link on top of main form', WC_Core::$TEXT_DOMAIN); ?>
|
8 |
</th>
|
9 |
<td>
|
10 |
<label for="wc_show_hide_loggedin_username">
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
+
<?php _e('Hide Reply button for Guests', WC_Core::$TEXT_DOMAIN); ?>
|
18 |
</th>
|
19 |
<td>
|
20 |
<label for="wc_reply_button_guests_show_hide">
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
+
<?php _e('Hide Reply button for Members', WC_Core::$TEXT_DOMAIN); ?>
|
28 |
</th>
|
29 |
<td>
|
30 |
<label for="wc_reply_button_members_show_hide">
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
+
<?php _e('Hide Author Titles', WC_Core::$TEXT_DOMAIN); ?>
|
38 |
</th>
|
39 |
<td>
|
40 |
<label for="wc_author_titles_show_hide">
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
+
<?php _e('Hide Voting buttons', WC_Core::$TEXT_DOMAIN); ?>
|
48 |
</th>
|
49 |
<td>
|
50 |
<label for="wc_voting_buttons_show_hide">
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
+
<?php _e('Hide Share Buttons', WC_Core::$TEXT_DOMAIN); ?>
|
58 |
</th>
|
59 |
<td>
|
60 |
<label for="wc_share_buttons_show_hide">
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
+
<?php _e('Hide the CAPTCHA field', WC_Core::$TEXT_DOMAIN); ?>
|
68 |
</th>
|
69 |
<td>
|
70 |
<label for="wc_captcha_show_hide">
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
+
<?php _e('Hide the Website URL field', WC_Core::$TEXT_DOMAIN); ?>
|
78 |
</th>
|
79 |
<td>
|
80 |
<label for="wc_weburl_show_hide">
|
81 |
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_weburl_show_hide == 1) ?> value="1" name="wc_weburl_show_hide" id="wc_weburl_show_hide" />
|
82 |
</label>
|
83 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
</tr>
|
85 |
</tbody>
|
86 |
</table>
|
options/options-layouts/settings-social.php
CHANGED
@@ -9,59 +9,45 @@ add_thickbox();
|
|
9 |
if (function_exists('wsl_render_auth_widget_in_comment_form')) {
|
10 |
$wc_social_plugin = '<tr valign="top"><td>WordPress Social Login</td><td><a href="options-general.php?page=wordpress-social-login" class="button button-primary">' . __('Settings', 'default') . '</a></td></tr>';
|
11 |
} else if (function_exists('the_champ_login_button')) {
|
12 |
-
$wc_social_plugin = '<tr valign="top"><td>Super Socializer</td><td><a href="admin.php?page=
|
13 |
} else if (function_exists('sc_render_comment_form_social_connect')) {
|
14 |
$wc_social_plugin = '<tr valign="top"><td>Social Connect</td><td><a href="options-general.php?page=social-connect-id" class="button button-primary">' . __('Settings', 'default') . '</a></td></tr>';
|
15 |
-
} else
|
16 |
-
$wc_social_plugin = '<tr valign="top"><td>Social Login</td><td><a href="admin.php?page=oa_social_login_setup" class="button button-primary">' . __('Settings', 'default') . '</a></td></tr>';
|
17 |
-
}else {
|
18 |
$plugins_directory = ABSPATH . 'wp-content/plugins/';
|
19 |
// wordpress social login
|
20 |
if (file_exists($plugins_directory . 'wordpress-social-login/')) {
|
21 |
-
$wc_wordpress_social_login_text = __('Activate',
|
22 |
$wc_wordpress_social_login_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=wordpress-social-login';
|
23 |
$wc_wordpress_social_login_thickbox = '';
|
24 |
} else {
|
25 |
-
$wc_wordpress_social_login_text = __('View details/Install',
|
26 |
$wc_wordpress_social_login_link = 'plugin-install.php?tab=plugin-information&plugin=wordpress-social-login&TB_iframe=true&width=772&height=342';
|
27 |
$wc_wordpress_social_login_thickbox = 'thickbox';
|
28 |
}
|
29 |
// super socializer
|
30 |
if (file_exists($plugins_directory . 'super-socializer/')) {
|
31 |
-
$wc_super_socializer_text = __('Activate',
|
32 |
$wc_super_socializer_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=super-socializer';
|
33 |
$wc_super_socializer_thickbox = '';
|
34 |
} else {
|
35 |
-
$wc_super_socializer_text = __('View details/Install',
|
36 |
$wc_super_socializer_link = 'plugin-install.php?tab=plugin-information&plugin=super-socializer&TB_iframe=true&width=772&height=342';
|
37 |
$wc_super_socializer_thickbox = 'thickbox';
|
38 |
}
|
39 |
// social connect
|
40 |
if (file_exists($plugins_directory . 'social-connect/')) {
|
41 |
-
$wc_social_connect_text = __('Activate',
|
42 |
$wc_social_connect_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=social-connect';
|
43 |
$wc_social_connect_thickbox = '';
|
44 |
} else {
|
45 |
-
$wc_social_connect_text = __('View details/Install',
|
46 |
$wc_social_connect_link = 'plugin-install.php?tab=plugin-information&plugin=social-connect&TB_iframe=true&width=772&height=342';
|
47 |
$wc_social_connect_thickbox = 'thickbox';
|
48 |
}
|
49 |
|
50 |
-
// social login
|
51 |
-
if (file_exists($plugins_directory . 'oa-social-login/')) {
|
52 |
-
$wc_oa_social_login_text = __('Activate', 'wpdiscuz');
|
53 |
-
$wc_oa_social_login_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=oa-social-login';
|
54 |
-
$wc_oa_social_login_thickbox = '';
|
55 |
-
} else {
|
56 |
-
$wc_oa_social_login_text = __('View details/Install', 'wpdiscuz');
|
57 |
-
$wc_oa_social_login_link = 'plugin-install.php?tab=plugin-information&plugin=oa-social-login&TB_iframe=true&width=772&height=342';
|
58 |
-
$wc_oa_social_login_thickbox = 'thickbox';
|
59 |
-
}
|
60 |
-
|
61 |
$wc_social_plugin = '<tr valign="top"><td>WordPress Social Login</td><td><a href="' . $wc_wordpress_social_login_link . '" class="button button-primary ' . $wc_wordpress_social_login_thickbox . '">' . $wc_wordpress_social_login_text . '</a></td></tr>';
|
62 |
$wc_social_plugin .= '<tr valign="top"><td>Super Socializer</td><td><a href="' . $wc_super_socializer_link . '" class="button button-primary ' . $wc_super_socializer_thickbox . '">' . $wc_super_socializer_text . '</a></td></tr>';
|
63 |
$wc_social_plugin .= '<tr valign="top"><td>Social Connect</td><td><a href="' . $wc_social_connect_link . '" class="button button-primary ' . $wc_social_connect_thickbox . '">' . $wc_social_connect_text . '</a></td></tr>';
|
64 |
-
$wc_social_plugin .= '<tr valign="top"><td>Social Login</td><td><a href="' . $wc_oa_social_login_link . '" class="button button-primary ' . $wc_oa_social_login_thickbox . '">' . $wc_oa_social_login_text . '</a></td></tr>';
|
65 |
}
|
66 |
|
67 |
if (isset($_GET['wc_social_action'])) {
|
@@ -74,7 +60,7 @@ if (isset($_GET['wc_social_action'])) {
|
|
74 |
$wc_social_plugin_file = 'wordpress-social-login/wp-social-login.php';
|
75 |
break;
|
76 |
case 'super-socializer':
|
77 |
-
$wc_activation_redirect_url = 'admin.php?page=
|
78 |
$wc_social_plugin_file = 'super-socializer/super_socializer.php';
|
79 |
break;
|
80 |
case 'social-connect':
|
@@ -86,8 +72,8 @@ if (isset($_GET['wc_social_action'])) {
|
|
86 |
}
|
87 |
?>
|
88 |
<div>
|
89 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Social Login',
|
90 |
-
<p style="padding-bottom:10px; padding-left:10px;"
|
91 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
92 |
<tbody>
|
93 |
<?php echo $wc_social_plugin; ?>
|
9 |
if (function_exists('wsl_render_auth_widget_in_comment_form')) {
|
10 |
$wc_social_plugin = '<tr valign="top"><td>WordPress Social Login</td><td><a href="options-general.php?page=wordpress-social-login" class="button button-primary">' . __('Settings', 'default') . '</a></td></tr>';
|
11 |
} else if (function_exists('the_champ_login_button')) {
|
12 |
+
$wc_social_plugin = '<tr valign="top"><td>Super Socializer</td><td><a href="admin.php?page=the-champ-social-login" class="button button-primary">' . __('Settings', 'default') . '</a></td></tr>';
|
13 |
} else if (function_exists('sc_render_comment_form_social_connect')) {
|
14 |
$wc_social_plugin = '<tr valign="top"><td>Social Connect</td><td><a href="options-general.php?page=social-connect-id" class="button button-primary">' . __('Settings', 'default') . '</a></td></tr>';
|
15 |
+
} else {
|
|
|
|
|
16 |
$plugins_directory = ABSPATH . 'wp-content/plugins/';
|
17 |
// wordpress social login
|
18 |
if (file_exists($plugins_directory . 'wordpress-social-login/')) {
|
19 |
+
$wc_wordpress_social_login_text = __('Activate', WC_Core::$TEXT_DOMAIN);
|
20 |
$wc_wordpress_social_login_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=wordpress-social-login';
|
21 |
$wc_wordpress_social_login_thickbox = '';
|
22 |
} else {
|
23 |
+
$wc_wordpress_social_login_text = __('View details/Install', WC_Core::$TEXT_DOMAIN);
|
24 |
$wc_wordpress_social_login_link = 'plugin-install.php?tab=plugin-information&plugin=wordpress-social-login&TB_iframe=true&width=772&height=342';
|
25 |
$wc_wordpress_social_login_thickbox = 'thickbox';
|
26 |
}
|
27 |
// super socializer
|
28 |
if (file_exists($plugins_directory . 'super-socializer/')) {
|
29 |
+
$wc_super_socializer_text = __('Activate', WC_Core::$TEXT_DOMAIN);
|
30 |
$wc_super_socializer_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=super-socializer';
|
31 |
$wc_super_socializer_thickbox = '';
|
32 |
} else {
|
33 |
+
$wc_super_socializer_text = __('View details/Install', WC_Core::$TEXT_DOMAIN);
|
34 |
$wc_super_socializer_link = 'plugin-install.php?tab=plugin-information&plugin=super-socializer&TB_iframe=true&width=772&height=342';
|
35 |
$wc_super_socializer_thickbox = 'thickbox';
|
36 |
}
|
37 |
// social connect
|
38 |
if (file_exists($plugins_directory . 'social-connect/')) {
|
39 |
+
$wc_social_connect_text = __('Activate', WC_Core::$TEXT_DOMAIN);
|
40 |
$wc_social_connect_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=social-connect';
|
41 |
$wc_social_connect_thickbox = '';
|
42 |
} else {
|
43 |
+
$wc_social_connect_text = __('View details/Install', WC_Core::$TEXT_DOMAIN);
|
44 |
$wc_social_connect_link = 'plugin-install.php?tab=plugin-information&plugin=social-connect&TB_iframe=true&width=772&height=342';
|
45 |
$wc_social_connect_thickbox = 'thickbox';
|
46 |
}
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
$wc_social_plugin = '<tr valign="top"><td>WordPress Social Login</td><td><a href="' . $wc_wordpress_social_login_link . '" class="button button-primary ' . $wc_wordpress_social_login_thickbox . '">' . $wc_wordpress_social_login_text . '</a></td></tr>';
|
49 |
$wc_social_plugin .= '<tr valign="top"><td>Super Socializer</td><td><a href="' . $wc_super_socializer_link . '" class="button button-primary ' . $wc_super_socializer_thickbox . '">' . $wc_super_socializer_text . '</a></td></tr>';
|
50 |
$wc_social_plugin .= '<tr valign="top"><td>Social Connect</td><td><a href="' . $wc_social_connect_link . '" class="button button-primary ' . $wc_social_connect_thickbox . '">' . $wc_social_connect_text . '</a></td></tr>';
|
|
|
51 |
}
|
52 |
|
53 |
if (isset($_GET['wc_social_action'])) {
|
60 |
$wc_social_plugin_file = 'wordpress-social-login/wp-social-login.php';
|
61 |
break;
|
62 |
case 'super-socializer':
|
63 |
+
$wc_activation_redirect_url = 'admin.php?page=the-champ-social-login';
|
64 |
$wc_social_plugin_file = 'super-socializer/super_socializer.php';
|
65 |
break;
|
66 |
case 'social-connect':
|
72 |
}
|
73 |
?>
|
74 |
<div>
|
75 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Social Login', WC_Core::$TEXT_DOMAIN); ?> </h2>
|
76 |
+
<p style="padding-bottom:10px; padding-left:10px;">You can use one of these most popular Social Login Plugins to allow your visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, OK and lots of other social network service accounts. All social login buttons will be fully integrated with wpDiscuz comment forms. </p>
|
77 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
78 |
<tbody>
|
79 |
<?php echo $wc_social_plugin; ?>
|
options/options-layouts/settings-style.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Background and Colors',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
-
<label for="wc_form_bg_color"><?php _e('Comment Form Background Color',
|
8 |
</th>
|
9 |
<td width="1">
|
10 |
-
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_form_bg_color) ? $this->wc_options_serialized->wc_form_bg_color : '#f9f9f9'; ?>" id="wc_form_bg_color" name="wc_form_bg_color" placeholder="<?php _e('Example: #00ff00',
|
11 |
</td>
|
12 |
|
13 |
<td class="picker_img_cell">
|
@@ -28,10 +28,10 @@
|
|
28 |
|
29 |
<tr valign="top">
|
30 |
<th scope="row">
|
31 |
-
<label for="wc_comment_bg_color"><?php _e('Comment Background Color',
|
32 |
</th>
|
33 |
<td width="1">
|
34 |
-
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_comment_bg_color; ?>" id="wc_comment_bg_color" name="wc_comment_bg_color" placeholder="<?php _e('Example: #00ff00',
|
35 |
</td>
|
36 |
|
37 |
<td class="picker_img_cell">
|
@@ -52,10 +52,10 @@
|
|
52 |
|
53 |
<tr valign="top">
|
54 |
<th scope="row">
|
55 |
-
<label for="wc_reply_bg_color"><?php _e('Reply Background Color',
|
56 |
</th>
|
57 |
<td>
|
58 |
-
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_reply_bg_color; ?>" id="wc_reply_bg_color" name="wc_reply_bg_color" placeholder="<?php _e('Example: #00ff00',
|
59 |
</td>
|
60 |
|
61 |
<td class="picker_img_cell">
|
@@ -76,10 +76,10 @@
|
|
76 |
|
77 |
<tr valign="top">
|
78 |
<th scope="row">
|
79 |
-
<label for="wc_comment_text_color"><?php _e('Comment Text Color',
|
80 |
</th>
|
81 |
<td>
|
82 |
-
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_comment_text_color; ?>" id="wc_comment_text_color" name="wc_comment_text_color" placeholder="<?php _e('Example: #00ff00',
|
83 |
</td>
|
84 |
|
85 |
<td class="picker_img_cell">
|
@@ -101,10 +101,10 @@
|
|
101 |
|
102 |
<tr valign="top">
|
103 |
<th scope="row">
|
104 |
-
<label for="wc_author_title_color"><?php _e('Author title color',
|
105 |
</th>
|
106 |
<td>
|
107 |
-
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_author_title_color; ?>" id="wc_author_title_color" name="wc_author_title_color" placeholder="<?php _e('Example: #00ff00',
|
108 |
</td>
|
109 |
|
110 |
<td class="picker_img_cell">
|
@@ -126,10 +126,10 @@
|
|
126 |
|
127 |
<tr valign="top">
|
128 |
<th scope="row">
|
129 |
-
<label for="wc_vote_reply_color"><?php _e('Vote, Reply, Share, Edit links text colors',
|
130 |
</th>
|
131 |
<td>
|
132 |
-
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_vote_reply_color; ?>" id="wc_vote_reply_color" name="wc_vote_reply_color" placeholder="<?php _e('Example: #00ff00',
|
133 |
</td>
|
134 |
|
135 |
<td class="picker_img_cell">
|
@@ -149,10 +149,10 @@
|
|
149 |
</tr>
|
150 |
<tr valign="top">
|
151 |
<th scope="row">
|
152 |
-
<label for="wc_input_border_color"><?php _e('Comment form fields border color',
|
153 |
</th>
|
154 |
<td>
|
155 |
-
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_input_border_color) ? $this->wc_options_serialized->wc_input_border_color : '#d9d9d9'; ?>" id="wc_input_border_color" name="wc_input_border_color" placeholder="<?php _e('Example: #00ff00',
|
156 |
</td>
|
157 |
|
158 |
<td class="picker_img_cell">
|
@@ -172,10 +172,10 @@
|
|
172 |
</tr>
|
173 |
<tr valign="top">
|
174 |
<th scope="row">
|
175 |
-
<label for="wc_new_loaded_comment_bg_color"><?php _e('New loaded comments\' background color',
|
176 |
</th>
|
177 |
<td>
|
178 |
-
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_new_loaded_comment_bg_color) ? $this->wc_options_serialized->wc_new_loaded_comment_bg_color : 'rgb(254,254,254)'; ?>" id="wc_new_loaded_comment_bg_color" name="wc_new_loaded_comment_bg_color" placeholder="<?php _e('Example: #00ff00',
|
179 |
</td>
|
180 |
|
181 |
<td class="picker_img_cell">
|
@@ -196,7 +196,7 @@
|
|
196 |
|
197 |
<tr valign="top">
|
198 |
<th scope="row">
|
199 |
-
<label for="wc_custom_css"><?php _e('Custom CSS Code',
|
200 |
</th>
|
201 |
<td>
|
202 |
<textarea cols="50" rows="10" class="regular-text" id="wc_custom_css" name="wc_custom_css" placeholder=""><?php echo stripslashes($this->wc_options_serialized->wc_custom_css); ?></textarea>
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Background and Colors', WC_Core::$TEXT_DOMAIN); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
+
<label for="wc_form_bg_color"><?php _e('Comment Form Background Color', WC_Core::$TEXT_DOMAIN); ?></label>
|
8 |
</th>
|
9 |
<td width="1">
|
10 |
+
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_form_bg_color) ? $this->wc_options_serialized->wc_form_bg_color : '#f9f9f9'; ?>" id="wc_form_bg_color" name="wc_form_bg_color" placeholder="<?php _e('Example: #00ff00', WC_Core::$TEXT_DOMAIN); ?>"/>
|
11 |
</td>
|
12 |
|
13 |
<td class="picker_img_cell">
|
28 |
|
29 |
<tr valign="top">
|
30 |
<th scope="row">
|
31 |
+
<label for="wc_comment_bg_color"><?php _e('Comment Background Color', WC_Core::$TEXT_DOMAIN); ?></label>
|
32 |
</th>
|
33 |
<td width="1">
|
34 |
+
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_comment_bg_color; ?>" id="wc_comment_bg_color" name="wc_comment_bg_color" placeholder="<?php _e('Example: #00ff00', WC_Core::$TEXT_DOMAIN); ?>"/>
|
35 |
</td>
|
36 |
|
37 |
<td class="picker_img_cell">
|
52 |
|
53 |
<tr valign="top">
|
54 |
<th scope="row">
|
55 |
+
<label for="wc_reply_bg_color"><?php _e('Reply Background Color', WC_Core::$TEXT_DOMAIN); ?></label>
|
56 |
</th>
|
57 |
<td>
|
58 |
+
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_reply_bg_color; ?>" id="wc_reply_bg_color" name="wc_reply_bg_color" placeholder="<?php _e('Example: #00ff00', WC_Core::$TEXT_DOMAIN); ?>"/>
|
59 |
</td>
|
60 |
|
61 |
<td class="picker_img_cell">
|
76 |
|
77 |
<tr valign="top">
|
78 |
<th scope="row">
|
79 |
+
<label for="wc_comment_text_color"><?php _e('Comment Text Color', WC_Core::$TEXT_DOMAIN); ?></label>
|
80 |
</th>
|
81 |
<td>
|
82 |
+
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_comment_text_color; ?>" id="wc_comment_text_color" name="wc_comment_text_color" placeholder="<?php _e('Example: #00ff00', WC_Core::$TEXT_DOMAIN); ?>"/>
|
83 |
</td>
|
84 |
|
85 |
<td class="picker_img_cell">
|
101 |
|
102 |
<tr valign="top">
|
103 |
<th scope="row">
|
104 |
+
<label for="wc_author_title_color"><?php _e('Author title color', WC_Core::$TEXT_DOMAIN); ?></label>
|
105 |
</th>
|
106 |
<td>
|
107 |
+
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_author_title_color; ?>" id="wc_author_title_color" name="wc_author_title_color" placeholder="<?php _e('Example: #00ff00', WC_Core::$TEXT_DOMAIN); ?>"/>
|
108 |
</td>
|
109 |
|
110 |
<td class="picker_img_cell">
|
126 |
|
127 |
<tr valign="top">
|
128 |
<th scope="row">
|
129 |
+
<label for="wc_vote_reply_color"><?php _e('Vote, Reply, Share, Edit links text colors', WC_Core::$TEXT_DOMAIN); ?></label>
|
130 |
</th>
|
131 |
<td>
|
132 |
+
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_vote_reply_color; ?>" id="wc_vote_reply_color" name="wc_vote_reply_color" placeholder="<?php _e('Example: #00ff00', WC_Core::$TEXT_DOMAIN); ?>"/>
|
133 |
</td>
|
134 |
|
135 |
<td class="picker_img_cell">
|
149 |
</tr>
|
150 |
<tr valign="top">
|
151 |
<th scope="row">
|
152 |
+
<label for="wc_input_border_color"><?php _e('Comment form fields border color', WC_Core::$TEXT_DOMAIN); ?></label>
|
153 |
</th>
|
154 |
<td>
|
155 |
+
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_input_border_color) ? $this->wc_options_serialized->wc_input_border_color : '#d9d9d9'; ?>" id="wc_input_border_color" name="wc_input_border_color" placeholder="<?php _e('Example: #00ff00', WC_Core::$TEXT_DOMAIN); ?>"/>
|
156 |
</td>
|
157 |
|
158 |
<td class="picker_img_cell">
|
172 |
</tr>
|
173 |
<tr valign="top">
|
174 |
<th scope="row">
|
175 |
+
<label for="wc_new_loaded_comment_bg_color"><?php _e('New loaded comments\' background color', WC_Core::$TEXT_DOMAIN); ?></label>
|
176 |
</th>
|
177 |
<td>
|
178 |
+
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_new_loaded_comment_bg_color) ? $this->wc_options_serialized->wc_new_loaded_comment_bg_color : 'rgb(254,254,254)'; ?>" id="wc_new_loaded_comment_bg_color" name="wc_new_loaded_comment_bg_color" placeholder="<?php _e('Example: #00ff00', WC_Core::$TEXT_DOMAIN); ?>"/>
|
179 |
</td>
|
180 |
|
181 |
<td class="picker_img_cell">
|
196 |
|
197 |
<tr valign="top">
|
198 |
<th scope="row">
|
199 |
+
<label for="wc_custom_css"><?php _e('Custom CSS Code', WC_Core::$TEXT_DOMAIN); ?></label>
|
200 |
</th>
|
201 |
<td>
|
202 |
<textarea cols="50" rows="10" class="regular-text" id="wc_custom_css" name="wc_custom_css" placeholder=""><?php echo stripslashes($this->wc_options_serialized->wc_custom_css); ?></textarea>
|
options/options-layouts/settings-subscription.php
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Email Subscription Settings',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
-
<span><?php _e('Show "Notify of all new follow-up comments"',
|
8 |
-
<span style="line-height:22px;"><?php _e('Show "Notify of new replies to all my comments"',
|
9 |
-
<span style="line-height:22px;"><?php _e('Show "Notify of new replies to this comment"',
|
10 |
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;">
|
11 |
-
<?php _e('Please keep all three or at least one of those options ON, otherwise users will not have any option for email notifications and they\'ll not get any messages.',
|
12 |
</p>
|
13 |
</th>
|
14 |
<td>
|
@@ -27,8 +27,8 @@
|
|
27 |
<?php if (class_exists('Prompt_Comment_Form_Handling')) { ?>
|
28 |
<tr valign="top">
|
29 |
<th scope="row">
|
30 |
-
<?php _e('Use Postmatic for subscriptions and commenting by email',
|
31 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('Postmatic allows your users subscribe to comments. Instead of just being notified, they add a reply right from their inbox.',
|
32 |
</th>
|
33 |
<td>
|
34 |
<label for="wc_use_postmatic_for_comment_notification">
|
@@ -39,8 +39,8 @@
|
|
39 |
<?php } ?>
|
40 |
<tr valign="top">
|
41 |
<th scope="row">
|
42 |
-
<?php _e('Keep selected the email notification of all new follow-up comments by default',
|
43 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('If this option is checked-on, in Manage Subscriptions section of comment forms will only be displayed the "Notify of all new follow-up comments" option and this option will always be selected by default.',
|
44 |
</th>
|
45 |
<td>
|
46 |
<label for="wc_comment_reply_checkboxes_default_checked">
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Email Subscription Settings', WC_Core::$TEXT_DOMAIN); ?> </h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
+
<span><?php _e('Show "Notify of all new follow-up comments"', WC_Core::$TEXT_DOMAIN); ?></span><br />
|
8 |
+
<span style="line-height:22px;"><?php _e('Show "Notify of new replies to all my comments"', WC_Core::$TEXT_DOMAIN); ?></span><br />
|
9 |
+
<span style="line-height:22px;"><?php _e('Show "Notify of new replies to this comment"', WC_Core::$TEXT_DOMAIN); ?></span><br />
|
10 |
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;">
|
11 |
+
<?php _e('Please keep all three or at least one of those options ON, otherwise users will not have any option for email notifications and they\'ll not get any messages.', WC_Core::$TEXT_DOMAIN) ?>
|
12 |
</p>
|
13 |
</th>
|
14 |
<td>
|
27 |
<?php if (class_exists('Prompt_Comment_Form_Handling')) { ?>
|
28 |
<tr valign="top">
|
29 |
<th scope="row">
|
30 |
+
<?php _e('Use Postmatic for subscriptions and commenting by email', WC_Core::$TEXT_DOMAIN); ?>
|
31 |
+
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('Postmatic allows your users subscribe to comments. Instead of just being notified, they add a reply right from their inbox.', WC_Core::$TEXT_DOMAIN); ?></p>
|
32 |
</th>
|
33 |
<td>
|
34 |
<label for="wc_use_postmatic_for_comment_notification">
|
39 |
<?php } ?>
|
40 |
<tr valign="top">
|
41 |
<th scope="row">
|
42 |
+
<?php _e('Keep selected the email notification of all new follow-up comments by default', WC_Core::$TEXT_DOMAIN); ?>
|
43 |
+
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('If this option is checked-on, in Manage Subscriptions section of comment forms will only be displayed the "Notify of all new follow-up comments" option and this option will always be selected by default.', WC_Core::$TEXT_DOMAIN); ?> </p>
|
44 |
</th>
|
45 |
<td>
|
46 |
<label for="wc_comment_reply_checkboxes_default_checked">
|
options/phrases-layout/phrases-comment.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Comment Template Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('Reply',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_reply_text">
|
@@ -14,7 +14,7 @@
|
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
-
<?php _e('Share',
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_share_text">
|
@@ -24,7 +24,7 @@
|
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
-
<?php _e('Edit',
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_edit_text">
|
@@ -34,7 +34,7 @@
|
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
-
<?php _e('Share On Facebook',
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_share_facebook">
|
@@ -44,7 +44,7 @@
|
|
44 |
</tr>
|
45 |
<tr valign="top" >
|
46 |
<th scope="row">
|
47 |
-
<?php _e('Share On Twitter',
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_share_twitter">
|
@@ -54,7 +54,7 @@
|
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
-
<?php _e('Share On Google',
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_share_google">
|
@@ -64,7 +64,7 @@
|
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
-
<?php _e('Share On
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_share_vk">
|
@@ -74,7 +74,7 @@
|
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
-
<?php _e('Share On Odnoklassniki',
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_share_ok">
|
@@ -84,7 +84,7 @@
|
|
84 |
</tr>
|
85 |
<tr valign="top" >
|
86 |
<th scope="row">
|
87 |
-
<?php _e('Hide Replies',
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_hide_replies_text">
|
@@ -94,7 +94,7 @@
|
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
-
<?php _e('Show Replies',
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_show_replies_text">
|
@@ -104,7 +104,7 @@
|
|
104 |
</tr>
|
105 |
<tr valign="top">
|
106 |
<th scope="row">
|
107 |
-
<?php _e('Title For Guests',
|
108 |
</th>
|
109 |
<td colspan="3">
|
110 |
<label for="wc_user_title_guest_text">
|
@@ -114,7 +114,7 @@
|
|
114 |
</tr>
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
-
<?php _e('Title For Members',
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_user_title_member_text">
|
@@ -124,7 +124,7 @@
|
|
124 |
</tr>
|
125 |
<tr valign="top">
|
126 |
<th scope="row">
|
127 |
-
<?php _e('Title For Authors',
|
128 |
</th>
|
129 |
<td colspan="3">
|
130 |
<label for="wc_user_title_author_text">
|
@@ -134,7 +134,7 @@
|
|
134 |
</tr>
|
135 |
<tr valign="top">
|
136 |
<th scope="row">
|
137 |
-
<?php _e('Title For Admins',
|
138 |
</th>
|
139 |
<td colspan="3">
|
140 |
<label for="wc_user_title_admin_text">
|
@@ -144,7 +144,7 @@
|
|
144 |
</tr>
|
145 |
<tr valign="top">
|
146 |
<th scope="row">
|
147 |
-
<?php _e('Vote Up',
|
148 |
</th>
|
149 |
<td colspan="3">
|
150 |
<label for="wc_vote_up">
|
@@ -154,7 +154,7 @@
|
|
154 |
</tr>
|
155 |
<tr valign="top">
|
156 |
<th scope="row">
|
157 |
-
<?php _e('Vote Down',
|
158 |
</th>
|
159 |
<td colspan="3">
|
160 |
<label for="wc_vote_down">
|
@@ -164,7 +164,7 @@
|
|
164 |
</tr>
|
165 |
<tr valign="top">
|
166 |
<th scope="row">
|
167 |
-
<?php _e('Save edited comment button text',
|
168 |
</th>
|
169 |
<td colspan="3">
|
170 |
<label for="wc_comment_edit_save_button">
|
@@ -174,7 +174,7 @@
|
|
174 |
</tr>
|
175 |
<tr valign="top">
|
176 |
<th scope="row">
|
177 |
-
<?php _e('Cancel comment editing button text',
|
178 |
</th>
|
179 |
<td colspan="3">
|
180 |
<label for="wc_comment_edit_cancel_button">
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Comment Template Phrases', WC_Core::$TEXT_DOMAIN); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('Reply', WC_Core::$TEXT_DOMAIN); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_reply_text">
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
+
<?php _e('Share', WC_Core::$TEXT_DOMAIN); ?>
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_share_text">
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
+
<?php _e('Edit', WC_Core::$TEXT_DOMAIN); ?>
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_edit_text">
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
+
<?php _e('Share On Facebook', WC_Core::$TEXT_DOMAIN); ?>
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_share_facebook">
|
44 |
</tr>
|
45 |
<tr valign="top" >
|
46 |
<th scope="row">
|
47 |
+
<?php _e('Share On Twitter', WC_Core::$TEXT_DOMAIN); ?>
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_share_twitter">
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
+
<?php _e('Share On Google', WC_Core::$TEXT_DOMAIN); ?>
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_share_google">
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
+
<?php _e('Share On vKontakte', WC_Core::$TEXT_DOMAIN); ?>
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_share_vk">
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
+
<?php _e('Share On Odnoklassniki', WC_Core::$TEXT_DOMAIN); ?>
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_share_ok">
|
84 |
</tr>
|
85 |
<tr valign="top" >
|
86 |
<th scope="row">
|
87 |
+
<?php _e('Hide Replies', WC_Core::$TEXT_DOMAIN); ?>
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_hide_replies_text">
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
+
<?php _e('Show Replies', WC_Core::$TEXT_DOMAIN); ?>
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_show_replies_text">
|
104 |
</tr>
|
105 |
<tr valign="top">
|
106 |
<th scope="row">
|
107 |
+
<?php _e('Title For Guests', WC_Core::$TEXT_DOMAIN); ?>
|
108 |
</th>
|
109 |
<td colspan="3">
|
110 |
<label for="wc_user_title_guest_text">
|
114 |
</tr>
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
+
<?php _e('Title For Members', WC_Core::$TEXT_DOMAIN); ?>
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_user_title_member_text">
|
124 |
</tr>
|
125 |
<tr valign="top">
|
126 |
<th scope="row">
|
127 |
+
<?php _e('Title For Authors', WC_Core::$TEXT_DOMAIN); ?>
|
128 |
</th>
|
129 |
<td colspan="3">
|
130 |
<label for="wc_user_title_author_text">
|
134 |
</tr>
|
135 |
<tr valign="top">
|
136 |
<th scope="row">
|
137 |
+
<?php _e('Title For Admins', WC_Core::$TEXT_DOMAIN); ?>
|
138 |
</th>
|
139 |
<td colspan="3">
|
140 |
<label for="wc_user_title_admin_text">
|
144 |
</tr>
|
145 |
<tr valign="top">
|
146 |
<th scope="row">
|
147 |
+
<?php _e('Vote Up', WC_Core::$TEXT_DOMAIN); ?>
|
148 |
</th>
|
149 |
<td colspan="3">
|
150 |
<label for="wc_vote_up">
|
154 |
</tr>
|
155 |
<tr valign="top">
|
156 |
<th scope="row">
|
157 |
+
<?php _e('Vote Down', WC_Core::$TEXT_DOMAIN); ?>
|
158 |
</th>
|
159 |
<td colspan="3">
|
160 |
<label for="wc_vote_down">
|
164 |
</tr>
|
165 |
<tr valign="top">
|
166 |
<th scope="row">
|
167 |
+
<?php _e('Save edited comment button text', WC_Core::$TEXT_DOMAIN); ?>
|
168 |
</th>
|
169 |
<td colspan="3">
|
170 |
<label for="wc_comment_edit_save_button">
|
174 |
</tr>
|
175 |
<tr valign="top">
|
176 |
<th scope="row">
|
177 |
+
<?php _e('Cancel comment editing button text', WC_Core::$TEXT_DOMAIN); ?>
|
178 |
</th>
|
179 |
<td colspan="3">
|
180 |
<label for="wc_comment_edit_cancel_button">
|
options/phrases-layout/phrases-datetime.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Date/Time Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('Year',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_year_text">
|
@@ -15,18 +15,18 @@
|
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
-
<?php _e('Years (Plural Form)',
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_year_text_plural">
|
22 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_year_text_plural']['datetime'][0]) ? $this->wc_options_serialized->wc_phrases['wc_year_text_plural']['datetime'][0] : __('Years',
|
23 |
</label>
|
24 |
</td>
|
25 |
</tr>
|
26 |
|
27 |
<tr valign="top">
|
28 |
<th scope="row">
|
29 |
-
<?php _e('Month',
|
30 |
</th>
|
31 |
<td colspan="3">
|
32 |
<label for="wc_month_text">
|
@@ -37,7 +37,7 @@
|
|
37 |
|
38 |
<tr valign="top">
|
39 |
<th scope="row">
|
40 |
-
<?php _e('Months (Plural Form)',
|
41 |
</th>
|
42 |
<td colspan="3">
|
43 |
<label for="wc_month_text_plural">
|
@@ -48,7 +48,7 @@
|
|
48 |
|
49 |
<tr valign="top">
|
50 |
<th scope="row">
|
51 |
-
<?php _e('Day',
|
52 |
</th>
|
53 |
<td colspan="3">
|
54 |
<label for="wc_day_text">
|
@@ -59,7 +59,7 @@
|
|
59 |
|
60 |
<tr valign="top">
|
61 |
<th scope="row">
|
62 |
-
<?php _e('Days (Plural Form)',
|
63 |
</th>
|
64 |
<td colspan="3">
|
65 |
<label for="wc_day_text_plural">
|
@@ -70,7 +70,7 @@
|
|
70 |
|
71 |
<tr valign="top">
|
72 |
<th scope="row">
|
73 |
-
<?php _e('Hour',
|
74 |
</th>
|
75 |
<td colspan="3">
|
76 |
<label for="wc_hour_text">
|
@@ -81,7 +81,7 @@
|
|
81 |
|
82 |
<tr valign="top">
|
83 |
<th scope="row">
|
84 |
-
<?php _e('Hours (Plural Form)',
|
85 |
</th>
|
86 |
<td colspan="3">
|
87 |
<label for="wc_hour_text_plural">
|
@@ -92,7 +92,7 @@
|
|
92 |
|
93 |
<tr valign="top">
|
94 |
<th scope="row">
|
95 |
-
<?php _e('Minute',
|
96 |
</th>
|
97 |
<td colspan="3">
|
98 |
<label for="wc_minute_text">
|
@@ -103,7 +103,7 @@
|
|
103 |
|
104 |
<tr valign="top">
|
105 |
<th scope="row">
|
106 |
-
<?php _e('Minutes (Plural Form)',
|
107 |
</th>
|
108 |
<td colspan="3">
|
109 |
<label for="wc_minute_text_plural">
|
@@ -114,7 +114,7 @@
|
|
114 |
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
-
<?php _e('Second',
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_second_text">
|
@@ -125,7 +125,7 @@
|
|
125 |
|
126 |
<tr valign="top">
|
127 |
<th scope="row">
|
128 |
-
<?php _e('Seconds (Plural Form)',
|
129 |
</th>
|
130 |
<td colspan="3">
|
131 |
<label for="wc_second_text_plural">
|
@@ -135,7 +135,7 @@
|
|
135 |
</tr>
|
136 |
<tr valign="top">
|
137 |
<th scope="row">
|
138 |
-
<?php _e('Commented "right now" text',
|
139 |
</th>
|
140 |
<td colspan="3">
|
141 |
<label for="wc_right_now_text">
|
@@ -146,7 +146,7 @@
|
|
146 |
|
147 |
<tr valign="top">
|
148 |
<th scope="row">
|
149 |
-
<?php _e('Ago text',
|
150 |
</th>
|
151 |
<td colspan="3">
|
152 |
<label for="wc_ago_text">
|
@@ -157,11 +157,11 @@
|
|
157 |
|
158 |
<tr valign="top">
|
159 |
<th scope="row">
|
160 |
-
<?php _e('"Today" text',
|
161 |
</th>
|
162 |
<td colspan="3">
|
163 |
<label for="wc_posted_today_text">
|
164 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_posted_today_text']) ? $this->wc_options_serialized->wc_phrases['wc_posted_today_text'] : __('Today',
|
165 |
</label>
|
166 |
</td>
|
167 |
</tr>
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Date/Time Phrases', WC_Core::$TEXT_DOMAIN); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('Year', WC_Core::$TEXT_DOMAIN); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_year_text">
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
+
<?php _e('Years (Plural Form)', WC_Core::$TEXT_DOMAIN); ?>
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_year_text_plural">
|
22 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_year_text_plural']['datetime'][0]) ? $this->wc_options_serialized->wc_phrases['wc_year_text_plural']['datetime'][0] : __('Years', WC_Core::$TEXT_DOMAIN); ?>" name="wc_year_text_plural" id="wc_year_text_plural" />
|
23 |
</label>
|
24 |
</td>
|
25 |
</tr>
|
26 |
|
27 |
<tr valign="top">
|
28 |
<th scope="row">
|
29 |
+
<?php _e('Month', WC_Core::$TEXT_DOMAIN); ?>
|
30 |
</th>
|
31 |
<td colspan="3">
|
32 |
<label for="wc_month_text">
|
37 |
|
38 |
<tr valign="top">
|
39 |
<th scope="row">
|
40 |
+
<?php _e('Months (Plural Form)', WC_Core::$TEXT_DOMAIN); ?>
|
41 |
</th>
|
42 |
<td colspan="3">
|
43 |
<label for="wc_month_text_plural">
|
48 |
|
49 |
<tr valign="top">
|
50 |
<th scope="row">
|
51 |
+
<?php _e('Day', WC_Core::$TEXT_DOMAIN); ?>
|
52 |
</th>
|
53 |
<td colspan="3">
|
54 |
<label for="wc_day_text">
|
59 |
|
60 |
<tr valign="top">
|
61 |
<th scope="row">
|
62 |
+
<?php _e('Days (Plural Form)', WC_Core::$TEXT_DOMAIN); ?>
|
63 |
</th>
|
64 |
<td colspan="3">
|
65 |
<label for="wc_day_text_plural">
|
70 |
|
71 |
<tr valign="top">
|
72 |
<th scope="row">
|
73 |
+
<?php _e('Hour', WC_Core::$TEXT_DOMAIN); ?>
|
74 |
</th>
|
75 |
<td colspan="3">
|
76 |
<label for="wc_hour_text">
|
81 |
|
82 |
<tr valign="top">
|
83 |
<th scope="row">
|
84 |
+
<?php _e('Hours (Plural Form)', WC_Core::$TEXT_DOMAIN); ?>
|
85 |
</th>
|
86 |
<td colspan="3">
|
87 |
<label for="wc_hour_text_plural">
|
92 |
|
93 |
<tr valign="top">
|
94 |
<th scope="row">
|
95 |
+
<?php _e('Minute', WC_Core::$TEXT_DOMAIN); ?>
|
96 |
</th>
|
97 |
<td colspan="3">
|
98 |
<label for="wc_minute_text">
|
103 |
|
104 |
<tr valign="top">
|
105 |
<th scope="row">
|
106 |
+
<?php _e('Minutes (Plural Form)', WC_Core::$TEXT_DOMAIN); ?>
|
107 |
</th>
|
108 |
<td colspan="3">
|
109 |
<label for="wc_minute_text_plural">
|
114 |
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
+
<?php _e('Second', WC_Core::$TEXT_DOMAIN); ?>
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_second_text">
|
125 |
|
126 |
<tr valign="top">
|
127 |
<th scope="row">
|
128 |
+
<?php _e('Seconds (Plural Form)', WC_Core::$TEXT_DOMAIN); ?>
|
129 |
</th>
|
130 |
<td colspan="3">
|
131 |
<label for="wc_second_text_plural">
|
135 |
</tr>
|
136 |
<tr valign="top">
|
137 |
<th scope="row">
|
138 |
+
<?php _e('Commented "right now" text', WC_Core::$TEXT_DOMAIN); ?>
|
139 |
</th>
|
140 |
<td colspan="3">
|
141 |
<label for="wc_right_now_text">
|
146 |
|
147 |
<tr valign="top">
|
148 |
<th scope="row">
|
149 |
+
<?php _e('Ago text', WC_Core::$TEXT_DOMAIN); ?>
|
150 |
</th>
|
151 |
<td colspan="3">
|
152 |
<label for="wc_ago_text">
|
157 |
|
158 |
<tr valign="top">
|
159 |
<th scope="row">
|
160 |
+
<?php _e('"Today" text', WC_Core::$TEXT_DOMAIN); ?>
|
161 |
</th>
|
162 |
<td colspan="3">
|
163 |
<label for="wc_posted_today_text">
|
164 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_posted_today_text']) ? $this->wc_options_serialized->wc_phrases['wc_posted_today_text'] : __('Today', WC_Core::$TEXT_DOMAIN); ?>" name="wc_posted_today_text" id="wc_posted_today_text" placeholder="<?php _e('Today', WC_Core::$TEXT_DOMAIN); ?> 9:26 PM"/>
|
165 |
</label>
|
166 |
</td>
|
167 |
</tr>
|
options/phrases-layout/phrases-email.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Email Template Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('Email Subject',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_email_subject">
|
@@ -15,7 +15,7 @@
|
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
-
<?php _e('Email Message',
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_email_message">
|
@@ -26,18 +26,18 @@
|
|
26 |
|
27 |
<tr valign="top">
|
28 |
<th scope="row">
|
29 |
-
<?php _e('New Reply Subject',
|
30 |
</th>
|
31 |
<td colspan="3">
|
32 |
<label for="wc_new_reply_email_subject">
|
33 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject'] : _e('New Reply',
|
34 |
</label>
|
35 |
</td>
|
36 |
</tr>
|
37 |
|
38 |
<tr valign="top">
|
39 |
<th scope="row">
|
40 |
-
<?php _e('New Reply Message',
|
41 |
</th>
|
42 |
<td colspan="3">
|
43 |
<label for="wc_new_reply_email_message">
|
@@ -47,64 +47,64 @@
|
|
47 |
</tr>
|
48 |
<tr valign="top">
|
49 |
<th scope="row">
|
50 |
-
<?php _e('Unsubscribe',
|
51 |
</th>
|
52 |
<td colspan="3">
|
53 |
<label for="wc_unsubscribe">
|
54 |
-
<input type="text" name="wc_unsubscribe" id="wc_unsubscribe" class="wc_unsubscribe" value="<?php echo $this->wc_options_serialized->wc_phrases['wc_unsubscribe']; ?>" placeholder="<?php echo _e('Unsubscribe',
|
55 |
</label>
|
56 |
</td>
|
57 |
</tr>
|
58 |
|
59 |
<tr valign="top">
|
60 |
<th scope="row">
|
61 |
-
<?php _e('Ignore Subscription',
|
62 |
</th>
|
63 |
<td colspan="3">
|
64 |
<label for="wc_ignore_subscription">
|
65 |
-
<input type="text" name="wc_ignore_subscription" id="wc_ignore_subscription" class="wc_ignore_subscription" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_ignore_subscription']) ? $this->wc_options_serialized->wc_phrases['wc_ignore_subscription'] : __('Ignore Subscription', 'wpdiscuz'); ?>" placeholder="<?php echo _e('Ignore Subscription',
|
66 |
</label>
|
67 |
</td>
|
68 |
</tr>
|
69 |
|
70 |
<tr valign="top">
|
71 |
<th scope="row">
|
72 |
-
<?php _e('Confirm your
|
73 |
</th>
|
74 |
<td colspan="3">
|
75 |
<label for="wc_confirm_email">
|
76 |
-
<input type="text" name="wc_confirm_email" id="wc_confirm_email" class="wc_confirm_email" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email'] : __('Confirm your
|
77 |
</label>
|
78 |
</td>
|
79 |
</tr>
|
80 |
<tr valign="top">
|
81 |
<th scope="row">
|
82 |
-
<?php _e('You\'ve successfully confirmed your subscription.',
|
83 |
</th>
|
84 |
<td colspan="3">
|
85 |
<label for="wc_comfirm_success_message">
|
86 |
-
<textarea name="wc_comfirm_success_message" id="wc_comfirm_success_message"><?php echo isset($this->wc_options_serialized->wc_phrases['wc_comfirm_success_message']) ? $this->wc_options_serialized->wc_phrases['wc_comfirm_success_message'] : __('You\'ve successfully confirmed your subscription.',
|
87 |
</label>
|
88 |
</td>
|
89 |
</tr>
|
90 |
<tr valign="top">
|
91 |
<th scope="row">
|
92 |
-
<?php _e('Subscribe Confirmation Email Subject',
|
93 |
</th>
|
94 |
<td colspan="3">
|
95 |
<label for="wc_confirm_email_subject">
|
96 |
-
<input type="text" name="wc_confirm_email_subject" id="wc_confirm_email_subject" class="wc_confirm_email_subject" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_subject'] : __('Subscribe Confirmation',
|
97 |
</label>
|
98 |
</td>
|
99 |
</tr>
|
100 |
|
101 |
<tr valign="top">
|
102 |
<th scope="row">
|
103 |
-
<?php _e('Subscribe Confirmation Email Content',
|
104 |
</th>
|
105 |
<td colspan="3">
|
106 |
<label for="wc_confirm_email_message">
|
107 |
-
<textarea name="wc_confirm_email_message" id="wc_confirm_email_message"><?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_message'] : __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.',
|
108 |
</label>
|
109 |
</td>
|
110 |
</tr>
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Email Template Phrases', WC_Core::$TEXT_DOMAIN); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('Email Subject', WC_Core::$TEXT_DOMAIN); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_email_subject">
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
+
<?php _e('Email Message', WC_Core::$TEXT_DOMAIN); ?>
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_email_message">
|
26 |
|
27 |
<tr valign="top">
|
28 |
<th scope="row">
|
29 |
+
<?php _e('New Reply Subject', WC_Core::$TEXT_DOMAIN); ?>
|
30 |
</th>
|
31 |
<td colspan="3">
|
32 |
<label for="wc_new_reply_email_subject">
|
33 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject'] : _e('New Reply', WC_Core::$TEXT_DOMAIN); ?>" name="wc_new_reply_email_subject" id="wc_new_reply_email_subject" />
|
34 |
</label>
|
35 |
</td>
|
36 |
</tr>
|
37 |
|
38 |
<tr valign="top">
|
39 |
<th scope="row">
|
40 |
+
<?php _e('New Reply Message', WC_Core::$TEXT_DOMAIN); ?>
|
41 |
</th>
|
42 |
<td colspan="3">
|
43 |
<label for="wc_new_reply_email_message">
|
47 |
</tr>
|
48 |
<tr valign="top">
|
49 |
<th scope="row">
|
50 |
+
<?php _e('Unsubscribe', WC_Core::$TEXT_DOMAIN); ?>
|
51 |
</th>
|
52 |
<td colspan="3">
|
53 |
<label for="wc_unsubscribe">
|
54 |
+
<input type="text" name="wc_unsubscribe" id="wc_unsubscribe" class="wc_unsubscribe" value="<?php echo $this->wc_options_serialized->wc_phrases['wc_unsubscribe']; ?>" placeholder="<?php echo _e('Unsubscribe', WC_Core::$TEXT_DOMAIN); ?>"/>
|
55 |
</label>
|
56 |
</td>
|
57 |
</tr>
|
58 |
|
59 |
<tr valign="top">
|
60 |
<th scope="row">
|
61 |
+
<?php _e('Ignore Subscription', WC_Core::$TEXT_DOMAIN); ?>
|
62 |
</th>
|
63 |
<td colspan="3">
|
64 |
<label for="wc_ignore_subscription">
|
65 |
+
<input type="text" name="wc_ignore_subscription" id="wc_ignore_subscription" class="wc_ignore_subscription" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_ignore_subscription']) ? $this->wc_options_serialized->wc_phrases['wc_ignore_subscription'] : __('Ignore Subscription', 'wpdiscuz'); ?>" placeholder="<?php echo _e('Ignore Subscription', WC_Core::$TEXT_DOMAIN); ?>"/>
|
66 |
</label>
|
67 |
</td>
|
68 |
</tr>
|
69 |
|
70 |
<tr valign="top">
|
71 |
<th scope="row">
|
72 |
+
<?php _e('Confirm your subscribtion', WC_Core::$TEXT_DOMAIN); ?>
|
73 |
</th>
|
74 |
<td colspan="3">
|
75 |
<label for="wc_confirm_email">
|
76 |
+
<input type="text" name="wc_confirm_email" id="wc_confirm_email" class="wc_confirm_email" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email'] : __('Confirm your subscribtion', WC_Core::$TEXT_DOMAIN); ?>" placeholder="<?php echo _e('Confirm your subscribtion', WC_Core::$TEXT_DOMAIN); ?>"/>
|
77 |
</label>
|
78 |
</td>
|
79 |
</tr>
|
80 |
<tr valign="top">
|
81 |
<th scope="row">
|
82 |
+
<?php _e('You\'ve successfully confirmed your subscription.', WC_Core::$TEXT_DOMAIN); ?>
|
83 |
</th>
|
84 |
<td colspan="3">
|
85 |
<label for="wc_comfirm_success_message">
|
86 |
+
<textarea name="wc_comfirm_success_message" id="wc_comfirm_success_message"><?php echo isset($this->wc_options_serialized->wc_phrases['wc_comfirm_success_message']) ? $this->wc_options_serialized->wc_phrases['wc_comfirm_success_message'] : __('You\'ve successfully confirmed your subscription.', WC_Core::$TEXT_DOMAIN); ?></textarea>
|
87 |
</label>
|
88 |
</td>
|
89 |
</tr>
|
90 |
<tr valign="top">
|
91 |
<th scope="row">
|
92 |
+
<?php _e('Subscribe Confirmation Email Subject', WC_Core::$TEXT_DOMAIN); ?>
|
93 |
</th>
|
94 |
<td colspan="3">
|
95 |
<label for="wc_confirm_email_subject">
|
96 |
+
<input type="text" name="wc_confirm_email_subject" id="wc_confirm_email_subject" class="wc_confirm_email_subject" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_subject'] : __('Subscribe Confirmation', WC_Core::$TEXT_DOMAIN); ?>" placeholder="<?php echo _e('Subscribe Confirmation', WC_Core::$TEXT_DOMAIN); ?>"/>
|
97 |
</label>
|
98 |
</td>
|
99 |
</tr>
|
100 |
|
101 |
<tr valign="top">
|
102 |
<th scope="row">
|
103 |
+
<?php _e('Subscribe Confirmation Email Content', WC_Core::$TEXT_DOMAIN); ?>
|
104 |
</th>
|
105 |
<td colspan="3">
|
106 |
<label for="wc_confirm_email_message">
|
107 |
+
<textarea name="wc_confirm_email_message" id="wc_confirm_email_message"><?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_message'] : __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.', WC_Core::$TEXT_DOMAIN); ?></textarea>
|
108 |
</label>
|
109 |
</td>
|
110 |
</tr>
|
options/phrases-layout/phrases-form.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Form Template Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('Comment Field Start',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_comment_start_text">
|
@@ -14,7 +14,7 @@
|
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
-
<?php _e('Comment Field Join',
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_comment_join_text">
|
@@ -24,7 +24,7 @@
|
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
-
<?php _e('Email Field',
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_email_text">
|
@@ -34,7 +34,7 @@
|
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
-
<?php _e('Name Field',
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_name_text">
|
@@ -44,7 +44,7 @@
|
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
-
<?php _e('WebSite URL Field',
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_website_text">
|
@@ -54,7 +54,7 @@
|
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
-
<?php _e('CAPTCHA Field',
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_captcha_text">
|
@@ -64,7 +64,7 @@
|
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
-
<?php _e('Submit Button',
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_submit_text">
|
@@ -74,59 +74,59 @@
|
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
-
<?php _e('Manage Subscriptions',
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_manage_subscribtions">
|
81 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_manage_subscribtions']) ? $this->wc_options_serialized->wc_phrases['wc_manage_subscribtions'] : __('Manage Subscriptions',
|
82 |
</label>
|
83 |
</td>
|
84 |
</tr>
|
85 |
<tr valign="top">
|
86 |
<th scope="row">
|
87 |
-
<?php _e('Notify "None"',
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_notify_none">
|
91 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_none']) ? $this->wc_options_serialized->wc_phrases['wc_notify_none'] : __('None',
|
92 |
</label>
|
93 |
</td>
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
-
<?php _e('Notify on new comments (checkbox)',
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_notify_on_new_comment">
|
101 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_new_comment']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_new_comment'] : __('Notify of all new follow-up comments',
|
102 |
</label>
|
103 |
</td>
|
104 |
</tr>
|
105 |
|
106 |
<tr valign="top">
|
107 |
<th scope="row">
|
108 |
-
<?php _e('Notify on all new replies (checkbox)',
|
109 |
</th>
|
110 |
<td colspan="3">
|
111 |
<label for="wc_notify_on_all_new_reply">
|
112 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_all_new_reply']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_all_new_reply'] : __('Notify of new replies to all my comments',
|
113 |
</label>
|
114 |
</td>
|
115 |
</tr>
|
116 |
|
117 |
<tr valign="top">
|
118 |
<th scope="row">
|
119 |
-
<?php _e('Notify on new replies (checkbox)',
|
120 |
</th>
|
121 |
<td colspan="3">
|
122 |
<label for="wc_notify_on_new_reply">
|
123 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_new_reply']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_new_reply'] : __('Notify of new replies to this comment',
|
124 |
</label>
|
125 |
</td>
|
126 |
</tr>
|
127 |
<tr valign="top">
|
128 |
<th scope="row">
|
129 |
-
<?php _e('Subscribed on this comment replies',
|
130 |
</th>
|
131 |
<td colspan="3">
|
132 |
<label for="wc_subscribed_on_comment">
|
@@ -136,7 +136,7 @@
|
|
136 |
</tr>
|
137 |
<tr valign="top">
|
138 |
<th scope="row">
|
139 |
-
<?php _e('Subscribed on all your comments replies',
|
140 |
</th>
|
141 |
<td colspan="3">
|
142 |
<label for="wc_subscribed_on_all_comment">
|
@@ -146,7 +146,7 @@
|
|
146 |
</tr>
|
147 |
<tr valign="top">
|
148 |
<th scope="row">
|
149 |
-
<?php _e('Subscribed on this post',
|
150 |
</th>
|
151 |
<td colspan="3">
|
152 |
<label for="wc_subscribed_on_post">
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Form Template Phrases', WC_Core::$TEXT_DOMAIN); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('Comment Field Start', WC_Core::$TEXT_DOMAIN); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_comment_start_text">
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
+
<?php _e('Comment Field Join', WC_Core::$TEXT_DOMAIN); ?>
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_comment_join_text">
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
+
<?php _e('Email Field', WC_Core::$TEXT_DOMAIN); ?>
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_email_text">
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
+
<?php _e('Name Field', WC_Core::$TEXT_DOMAIN); ?>
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_name_text">
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
+
<?php _e('WebSite URL Field', WC_Core::$TEXT_DOMAIN); ?>
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_website_text">
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
+
<?php _e('CAPTCHA Field', WC_Core::$TEXT_DOMAIN); ?>
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_captcha_text">
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
+
<?php _e('Submit Button', WC_Core::$TEXT_DOMAIN); ?>
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_submit_text">
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
+
<?php _e('Manage Subscriptions', WC_Core::$TEXT_DOMAIN); ?>
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_manage_subscribtions">
|
81 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_manage_subscribtions']) ? $this->wc_options_serialized->wc_phrases['wc_manage_subscribtions'] : __('Manage Subscriptions', WC_Core::$TEXT_DOMAIN); ?>" name="wc_manage_subscribtions" id="wc_manage_subscribtions" />
|
82 |
</label>
|
83 |
</td>
|
84 |
</tr>
|
85 |
<tr valign="top">
|
86 |
<th scope="row">
|
87 |
+
<?php _e('Notify "None"', WC_Core::$TEXT_DOMAIN); ?>
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_notify_none">
|
91 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_none']) ? $this->wc_options_serialized->wc_phrases['wc_notify_none'] : __('None', WC_Core::$TEXT_DOMAIN); ?>" name="wc_notify_none" id="wc_notify_none" />
|
92 |
</label>
|
93 |
</td>
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
+
<?php _e('Notify on new comments (checkbox)', WC_Core::$TEXT_DOMAIN); ?>
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_notify_on_new_comment">
|
101 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_new_comment']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_new_comment'] : __('Notify of all new follow-up comments', WC_Core::$TEXT_DOMAIN); ?>" name="wc_notify_on_new_comment" id="wc_notify_on_new_comment" />
|
102 |
</label>
|
103 |
</td>
|
104 |
</tr>
|
105 |
|
106 |
<tr valign="top">
|
107 |
<th scope="row">
|
108 |
+
<?php _e('Notify on all new replies (checkbox)', WC_Core::$TEXT_DOMAIN); ?>
|
109 |
</th>
|
110 |
<td colspan="3">
|
111 |
<label for="wc_notify_on_all_new_reply">
|
112 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_all_new_reply']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_all_new_reply'] : __('Notify of new replies to all my comments', WC_Core::$TEXT_DOMAIN); ?>" name="wc_notify_on_all_new_reply" id="wc_notify_on_all_new_reply" />
|
113 |
</label>
|
114 |
</td>
|
115 |
</tr>
|
116 |
|
117 |
<tr valign="top">
|
118 |
<th scope="row">
|
119 |
+
<?php _e('Notify on new replies (checkbox)', WC_Core::$TEXT_DOMAIN); ?>
|
120 |
</th>
|
121 |
<td colspan="3">
|
122 |
<label for="wc_notify_on_new_reply">
|
123 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_new_reply']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_new_reply'] : __('Notify of new replies to this comment', WC_Core::$TEXT_DOMAIN); ?>" name="wc_notify_on_new_reply" id="wc_notify_on_new_reply" />
|
124 |
</label>
|
125 |
</td>
|
126 |
</tr>
|
127 |
<tr valign="top">
|
128 |
<th scope="row">
|
129 |
+
<?php _e('Subscribed on this comment replies', WC_Core::$TEXT_DOMAIN); ?>
|
130 |
</th>
|
131 |
<td colspan="3">
|
132 |
<label for="wc_subscribed_on_comment">
|
136 |
</tr>
|
137 |
<tr valign="top">
|
138 |
<th scope="row">
|
139 |
+
<?php _e('Subscribed on all your comments replies', WC_Core::$TEXT_DOMAIN); ?>
|
140 |
</th>
|
141 |
<td colspan="3">
|
142 |
<label for="wc_subscribed_on_all_comment">
|
146 |
</tr>
|
147 |
<tr valign="top">
|
148 |
<th scope="row">
|
149 |
+
<?php _e('Subscribed on this post', WC_Core::$TEXT_DOMAIN); ?>
|
150 |
</th>
|
151 |
<td colspan="3">
|
152 |
<label for="wc_subscribed_on_post">
|
options/phrases-layout/phrases-general.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('General Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('Leave a Reply',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_leave_a_reply_text">
|
@@ -14,7 +14,7 @@
|
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
-
<?php _e('Be the first to comment',
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_be_the_first_text">
|
@@ -24,7 +24,7 @@
|
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
-
<?php _e('Comment',
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_header_text">
|
@@ -34,7 +34,7 @@
|
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
-
<?php _e('Comment (Plural Form)',
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_header_text_plural">
|
@@ -44,7 +44,7 @@
|
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
-
<?php _e('On',
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_header_on_text">
|
@@ -54,7 +54,7 @@
|
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
-
<?php _e('Load More Button',
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_load_more_submit_text">
|
@@ -64,7 +64,7 @@
|
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
-
<?php _e('Load Rest of Comments',
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_load_rest_comments_submit_text">
|
@@ -74,7 +74,7 @@
|
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
-
<?php _e('Button text if has new comment',
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_new_comment_button_text">
|
@@ -84,7 +84,7 @@
|
|
84 |
</tr>
|
85 |
<tr valign="top">
|
86 |
<th scope="row">
|
87 |
-
<?php _e('Button text if has new comments (Plural Form)',
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_new_comments_button_text">
|
@@ -94,7 +94,7 @@
|
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
-
<?php _e('Button text if has new reply',
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_new_reply_button_text">
|
@@ -104,7 +104,7 @@
|
|
104 |
</tr>
|
105 |
<tr valign="top">
|
106 |
<th scope="row">
|
107 |
-
<?php _e('Button text if has new replies (Plural Form)',
|
108 |
</th>
|
109 |
<td colspan="3">
|
110 |
<label for="wc_new_replies_button_text">
|
@@ -114,7 +114,7 @@
|
|
114 |
</tr>
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
-
<?php _e('Text on load more button if has new comment(s)',
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_new_comments_text">
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('General Phrases', WC_Core::$TEXT_DOMAIN); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('Leave a Reply', WC_Core::$TEXT_DOMAIN); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_leave_a_reply_text">
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
+
<?php _e('Be the first to comment', WC_Core::$TEXT_DOMAIN); ?>
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_be_the_first_text">
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
+
<?php _e('Comment', WC_Core::$TEXT_DOMAIN); ?>
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_header_text">
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
+
<?php _e('Comment (Plural Form)', WC_Core::$TEXT_DOMAIN); ?>
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_header_text_plural">
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
+
<?php _e('On', WC_Core::$TEXT_DOMAIN); ?>
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_header_on_text">
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
+
<?php _e('Load More Button', WC_Core::$TEXT_DOMAIN); ?>
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_load_more_submit_text">
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
+
<?php _e('Load Rest of Comments', WC_Core::$TEXT_DOMAIN); ?>
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_load_rest_comments_submit_text">
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
+
<?php _e('Button text if has new comment', WC_Core::$TEXT_DOMAIN); ?>
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_new_comment_button_text">
|
84 |
</tr>
|
85 |
<tr valign="top">
|
86 |
<th scope="row">
|
87 |
+
<?php _e('Button text if has new comments (Plural Form)', WC_Core::$TEXT_DOMAIN); ?>
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_new_comments_button_text">
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
+
<?php _e('Button text if has new reply', WC_Core::$TEXT_DOMAIN); ?>
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_new_reply_button_text">
|
104 |
</tr>
|
105 |
<tr valign="top">
|
106 |
<th scope="row">
|
107 |
+
<?php _e('Button text if has new replies (Plural Form)', WC_Core::$TEXT_DOMAIN); ?>
|
108 |
</th>
|
109 |
<td colspan="3">
|
110 |
<label for="wc_new_replies_button_text">
|
114 |
</tr>
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
+
<?php _e('Text on load more button if has new comment(s)', WC_Core::$TEXT_DOMAIN); ?>
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_new_comments_text">
|
options/phrases-layout/phrases-notification.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Notification Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('You\'ve successfully unsubscribed.',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_unsubscribe_message">
|
@@ -15,7 +15,7 @@
|
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
-
<?php _e('Error message for empty field',
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_error_empty_text">
|
@@ -25,7 +25,7 @@
|
|
25 |
</tr>
|
26 |
<tr valign="top">
|
27 |
<th scope="row">
|
28 |
-
<?php _e('Error message for invalid email field',
|
29 |
</th>
|
30 |
<td colspan="3">
|
31 |
<label for="wc_error_email_text">
|
@@ -35,7 +35,7 @@
|
|
35 |
</tr>
|
36 |
<tr valign="top">
|
37 |
<th scope="row">
|
38 |
-
<?php _e('Error message for invalid website url field',
|
39 |
</th>
|
40 |
<td colspan="3">
|
41 |
<label for="wc_error_url_text">
|
@@ -45,7 +45,7 @@
|
|
45 |
</tr>
|
46 |
<tr valign="top">
|
47 |
<th scope="row">
|
48 |
-
<?php _e('You must be',
|
49 |
</th>
|
50 |
<td colspan="3">
|
51 |
<label for="wc_you_must_be_text">
|
@@ -55,7 +55,7 @@
|
|
55 |
</tr>
|
56 |
<tr valign="top">
|
57 |
<th scope="row">
|
58 |
-
<?php _e('Logged in as',
|
59 |
</th>
|
60 |
<td colspan="3">
|
61 |
<label for="wc_logged_in_as">
|
@@ -65,7 +65,7 @@
|
|
65 |
</tr>
|
66 |
<tr valign="top">
|
67 |
<th scope="row">
|
68 |
-
<?php _e('Log out',
|
69 |
</th>
|
70 |
<td colspan="3">
|
71 |
<label for="wc_log_out">
|
@@ -75,7 +75,7 @@
|
|
75 |
</tr>
|
76 |
<tr valign="top">
|
77 |
<th scope="row">
|
78 |
-
<?php _e('Logged In',
|
79 |
</th>
|
80 |
<td colspan="3">
|
81 |
<label for="wc_logged_in_text">
|
@@ -85,7 +85,7 @@
|
|
85 |
</tr>
|
86 |
<tr valign="top">
|
87 |
<th scope="row">
|
88 |
-
<?php _e('To post a comment',
|
89 |
</th>
|
90 |
<td colspan="3">
|
91 |
<label for="wc_to_post_comment_text">
|
@@ -95,7 +95,7 @@
|
|
95 |
</tr>
|
96 |
<tr valign="top">
|
97 |
<th scope="row">
|
98 |
-
<?php _e('Vote Counted',
|
99 |
</th>
|
100 |
<td colspan="3">
|
101 |
<label for="wc_vote_counted">
|
@@ -105,7 +105,7 @@
|
|
105 |
</tr>
|
106 |
<tr valign="top">
|
107 |
<th scope="row">
|
108 |
-
<?php _e('You can vote only 1 time',
|
109 |
</th>
|
110 |
<td colspan="3">
|
111 |
<label for="wc_vote_only_one_time">
|
@@ -115,7 +115,7 @@
|
|
115 |
</tr>
|
116 |
<tr valign="top">
|
117 |
<th scope="row">
|
118 |
-
<?php _e('Voting Error',
|
119 |
</th>
|
120 |
<td colspan="3">
|
121 |
<label for="wc_voting_error">
|
@@ -125,7 +125,7 @@
|
|
125 |
</tr>
|
126 |
<tr valign="top">
|
127 |
<th scope="row">
|
128 |
-
<?php _e('Login To Vote',
|
129 |
</th>
|
130 |
<td colspan="3">
|
131 |
<label for="wc_login_to_vote">
|
@@ -135,7 +135,7 @@
|
|
135 |
</tr>
|
136 |
<tr valign="top">
|
137 |
<th scope="row">
|
138 |
-
<?php _e('You Cannot Vote On Your Comment',
|
139 |
</th>
|
140 |
<td colspan="3">
|
141 |
<label for="wc_self_vote">
|
@@ -145,7 +145,7 @@
|
|
145 |
</tr>
|
146 |
<tr valign="top">
|
147 |
<th scope="row">
|
148 |
-
<?php _e('You are not allowed to vote for this comment (Voting from same IP)',
|
149 |
</th>
|
150 |
<td colspan="3">
|
151 |
<label for="wc_deny_voting_from_same_ip">
|
@@ -155,7 +155,7 @@
|
|
155 |
</tr>
|
156 |
<tr valign="top">
|
157 |
<th scope="row">
|
158 |
-
<?php _e('Invalid Captcha Code',
|
159 |
</th>
|
160 |
<td colspan="3">
|
161 |
<label for="wc_invalid_captcha">
|
@@ -165,7 +165,7 @@
|
|
165 |
</tr>
|
166 |
<tr valign="top">
|
167 |
<th scope="row">
|
168 |
-
<?php _e('Some of field value is invalid',
|
169 |
</th>
|
170 |
<td colspan="3">
|
171 |
<label for="wc_invalid_field">
|
@@ -175,7 +175,7 @@
|
|
175 |
</tr>
|
176 |
<tr valign="top">
|
177 |
<th scope="row">
|
178 |
-
<?php _e('Comment waiting moderation',
|
179 |
</th>
|
180 |
<td colspan="3">
|
181 |
<label for="wc_held_for_moderate">
|
@@ -185,17 +185,7 @@
|
|
185 |
</tr>
|
186 |
<tr valign="top">
|
187 |
<th scope="row">
|
188 |
-
<?php _e('Message if comment
|
189 |
-
</th>
|
190 |
-
<td colspan="3">
|
191 |
-
<label for="wc_msg_comment_text_max_length">
|
192 |
-
<input type="text" value="<?php echo $this->wc_options_serialized->wc_phrases['wc_msg_comment_text_max_length']; ?>" name="wc_msg_comment_text_max_length" id="wc_msg_comment_text_max_length" />
|
193 |
-
</label>
|
194 |
-
</td>
|
195 |
-
</tr>
|
196 |
-
<tr valign="top">
|
197 |
-
<th scope="row">
|
198 |
-
<?php _e('Message if comment was not updated', 'wpdiscuz'); ?>
|
199 |
</th>
|
200 |
<td colspan="3">
|
201 |
<label for="wc_comment_not_updated">
|
@@ -205,7 +195,7 @@
|
|
205 |
</tr>
|
206 |
<tr valign="top">
|
207 |
<th scope="row">
|
208 |
-
<?php _e('Message if comment no longer possible to edit',
|
209 |
</th>
|
210 |
<td colspan="3">
|
211 |
<label for="wc_comment_edit_not_possible">
|
@@ -216,7 +206,7 @@
|
|
216 |
|
217 |
<tr valign="top">
|
218 |
<th scope="row">
|
219 |
-
<?php _e('Message if comment text not changed',
|
220 |
</th>
|
221 |
<td colspan="3">
|
222 |
<label for="wc_comment_not_edited">
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Notification Phrases', WC_Core::$TEXT_DOMAIN); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('You\'ve successfully unsubscribed.', WC_Core::$TEXT_DOMAIN); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_unsubscribe_message">
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
+
<?php _e('Error message for empty field', WC_Core::$TEXT_DOMAIN); ?>
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_error_empty_text">
|
25 |
</tr>
|
26 |
<tr valign="top">
|
27 |
<th scope="row">
|
28 |
+
<?php _e('Error message for invalid email field', WC_Core::$TEXT_DOMAIN); ?>
|
29 |
</th>
|
30 |
<td colspan="3">
|
31 |
<label for="wc_error_email_text">
|
35 |
</tr>
|
36 |
<tr valign="top">
|
37 |
<th scope="row">
|
38 |
+
<?php _e('Error message for invalid website url field', WC_Core::$TEXT_DOMAIN); ?>
|
39 |
</th>
|
40 |
<td colspan="3">
|
41 |
<label for="wc_error_url_text">
|
45 |
</tr>
|
46 |
<tr valign="top">
|
47 |
<th scope="row">
|
48 |
+
<?php _e('You must be', WC_Core::$TEXT_DOMAIN); ?>
|
49 |
</th>
|
50 |
<td colspan="3">
|
51 |
<label for="wc_you_must_be_text">
|
55 |
</tr>
|
56 |
<tr valign="top">
|
57 |
<th scope="row">
|
58 |
+
<?php _e('Logged in as', WC_Core::$TEXT_DOMAIN); ?>
|
59 |
</th>
|
60 |
<td colspan="3">
|
61 |
<label for="wc_logged_in_as">
|
65 |
</tr>
|
66 |
<tr valign="top">
|
67 |
<th scope="row">
|
68 |
+
<?php _e('Log out', WC_Core::$TEXT_DOMAIN); ?>
|
69 |
</th>
|
70 |
<td colspan="3">
|
71 |
<label for="wc_log_out">
|
75 |
</tr>
|
76 |
<tr valign="top">
|
77 |
<th scope="row">
|
78 |
+
<?php _e('Logged In', WC_Core::$TEXT_DOMAIN); ?>
|
79 |
</th>
|
80 |
<td colspan="3">
|
81 |
<label for="wc_logged_in_text">
|
85 |
</tr>
|
86 |
<tr valign="top">
|
87 |
<th scope="row">
|
88 |
+
<?php _e('To post a comment', WC_Core::$TEXT_DOMAIN); ?>
|
89 |
</th>
|
90 |
<td colspan="3">
|
91 |
<label for="wc_to_post_comment_text">
|
95 |
</tr>
|
96 |
<tr valign="top">
|
97 |
<th scope="row">
|
98 |
+
<?php _e('Vote Counted', WC_Core::$TEXT_DOMAIN); ?>
|
99 |
</th>
|
100 |
<td colspan="3">
|
101 |
<label for="wc_vote_counted">
|
105 |
</tr>
|
106 |
<tr valign="top">
|
107 |
<th scope="row">
|
108 |
+
<?php _e('You can vote only 1 time', WC_Core::$TEXT_DOMAIN); ?>
|
109 |
</th>
|
110 |
<td colspan="3">
|
111 |
<label for="wc_vote_only_one_time">
|
115 |
</tr>
|
116 |
<tr valign="top">
|
117 |
<th scope="row">
|
118 |
+
<?php _e('Voting Error', WC_Core::$TEXT_DOMAIN); ?>
|
119 |
</th>
|
120 |
<td colspan="3">
|
121 |
<label for="wc_voting_error">
|
125 |
</tr>
|
126 |
<tr valign="top">
|
127 |
<th scope="row">
|
128 |
+
<?php _e('Login To Vote', WC_Core::$TEXT_DOMAIN); ?>
|
129 |
</th>
|
130 |
<td colspan="3">
|
131 |
<label for="wc_login_to_vote">
|
135 |
</tr>
|
136 |
<tr valign="top">
|
137 |
<th scope="row">
|
138 |
+
<?php _e('You Cannot Vote On Your Comment', WC_Core::$TEXT_DOMAIN); ?>
|
139 |
</th>
|
140 |
<td colspan="3">
|
141 |
<label for="wc_self_vote">
|
145 |
</tr>
|
146 |
<tr valign="top">
|
147 |
<th scope="row">
|
148 |
+
<?php _e('You are not allowed to vote for this comment (Voting from same IP)', WC_Core::$TEXT_DOMAIN); ?>
|
149 |
</th>
|
150 |
<td colspan="3">
|
151 |
<label for="wc_deny_voting_from_same_ip">
|
155 |
</tr>
|
156 |
<tr valign="top">
|
157 |
<th scope="row">
|
158 |
+
<?php _e('Invalid Captcha Code', WC_Core::$TEXT_DOMAIN); ?>
|
159 |
</th>
|
160 |
<td colspan="3">
|
161 |
<label for="wc_invalid_captcha">
|
165 |
</tr>
|
166 |
<tr valign="top">
|
167 |
<th scope="row">
|
168 |
+
<?php _e('Some of field value is invalid', WC_Core::$TEXT_DOMAIN); ?>
|
169 |
</th>
|
170 |
<td colspan="3">
|
171 |
<label for="wc_invalid_field">
|
175 |
</tr>
|
176 |
<tr valign="top">
|
177 |
<th scope="row">
|
178 |
+
<?php _e('Comment waiting moderation', WC_Core::$TEXT_DOMAIN); ?>
|
179 |
</th>
|
180 |
<td colspan="3">
|
181 |
<label for="wc_held_for_moderate">
|
185 |
</tr>
|
186 |
<tr valign="top">
|
187 |
<th scope="row">
|
188 |
+
<?php _e('Message if comment was not updated', WC_Core::$TEXT_DOMAIN); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
</th>
|
190 |
<td colspan="3">
|
191 |
<label for="wc_comment_not_updated">
|
195 |
</tr>
|
196 |
<tr valign="top">
|
197 |
<th scope="row">
|
198 |
+
<?php _e('Message if comment no longer possible to edit', WC_Core::$TEXT_DOMAIN); ?>
|
199 |
</th>
|
200 |
<td colspan="3">
|
201 |
<label for="wc_comment_edit_not_possible">
|
206 |
|
207 |
<tr valign="top">
|
208 |
<th scope="row">
|
209 |
+
<?php _e('Message if comment text not changed', WC_Core::$TEXT_DOMAIN); ?>
|
210 |
</th>
|
211 |
<td colspan="3">
|
212 |
<label for="wc_comment_not_edited">
|
options/wc-options-serialize.php
CHANGED
@@ -99,23 +99,7 @@ class WC_Options_Serialize {
|
|
99 |
* Default Value - Unchecked
|
100 |
*/
|
101 |
public $wc_weburl_show_hide;
|
102 |
-
|
103 |
-
/*
|
104 |
-
* Type - Checkbox
|
105 |
-
* Available Values - Checked/Unchecked
|
106 |
-
* Description - Show/Hide header text
|
107 |
-
* Default Value - Unchecked
|
108 |
-
*/
|
109 |
-
public $wc_header_text_show_hide;
|
110 |
|
111 |
-
|
112 |
-
/*
|
113 |
-
* Type - Checkbox
|
114 |
-
* Available Values - Checked/Unchecked
|
115 |
-
* Description - Show/Hide user avatar
|
116 |
-
* Default Value - Unchecked
|
117 |
-
*/
|
118 |
-
public $wc_avatar_show_hide;
|
119 |
/**
|
120 |
* Type - Radiobutton
|
121 |
* Available Values - Yes/No
|
@@ -338,32 +322,6 @@ class WC_Options_Serialize {
|
|
338 |
* Default Value - Unchecked
|
339 |
*/
|
340 |
public $wc_show_plugin_powerid_by;
|
341 |
-
|
342 |
-
/**
|
343 |
-
* Type - Checkbox
|
344 |
-
* Available Values - Checked/Unchecked
|
345 |
-
* Description - Use .PO/.MO files
|
346 |
-
* Default Value - Unchecked
|
347 |
-
*/
|
348 |
-
public $wc_is_use_po_mo;
|
349 |
-
|
350 |
-
/**
|
351 |
-
* Type - Input
|
352 |
-
* Available Values - Integer (comment text length)
|
353 |
-
* Description - Define comment text max length (leave blank for unlimit length)
|
354 |
-
* Default Value - Unlimit
|
355 |
-
*/
|
356 |
-
public $wc_comment_text_max_length;
|
357 |
-
|
358 |
-
|
359 |
-
/**
|
360 |
-
* Type - Checkbox
|
361 |
-
* Available Values - Checked/Unchecked
|
362 |
-
* Description - Disable / Enable wpdiscuz js and css loading on home page
|
363 |
-
* Default Value - Checked
|
364 |
-
*/
|
365 |
-
public $wc_load_js_css_on_home;
|
366 |
-
|
367 |
|
368 |
function __construct($wc_db_helper) {
|
369 |
$this->wc_db_helper = $wc_db_helper;
|
@@ -387,8 +345,6 @@ class WC_Options_Serialize {
|
|
387 |
$this->wc_share_buttons_show_hide = $options['wc_share_buttons_show_hide'];
|
388 |
$this->wc_captcha_show_hide = $options['wc_captcha_show_hide'];
|
389 |
$this->wc_weburl_show_hide = isset($options['wc_weburl_show_hide']) ? $options['wc_weburl_show_hide'] : 0;
|
390 |
-
$this->wc_header_text_show_hide = isset($options['wc_header_text_show_hide']) ? $options['wc_header_text_show_hide'] : 0;
|
391 |
-
$this->wc_avatar_show_hide = isset($options['wc_avatar_show_hide']) ? $options['wc_avatar_show_hide'] : 0;
|
392 |
$this->wc_user_must_be_registered = $options['wc_user_must_be_registered'];
|
393 |
$this->wc_is_name_field_required = isset($options['wc_is_name_field_required']) ? $options['wc_is_name_field_required'] : 0;
|
394 |
$this->wc_is_email_field_required = isset($options['wc_is_email_field_required']) ? $options['wc_is_email_field_required'] : 0;
|
@@ -396,7 +352,7 @@ class WC_Options_Serialize {
|
|
396 |
$this->wc_reply_button_guests_show_hide = $options['wc_reply_button_guests_show_hide'];
|
397 |
$this->wc_reply_button_members_show_hide = $options['wc_reply_button_members_show_hide'];
|
398 |
$this->wc_author_titles_show_hide = $options['wc_author_titles_show_hide'];
|
399 |
-
$this->wc_comment_count =
|
400 |
$this->wc_comments_max_depth = isset($options['wc_comments_max_depth']) ? $options['wc_comments_max_depth'] : 2;
|
401 |
$this->wc_simple_comment_date = isset($options['wc_simple_comment_date']) ? $options['wc_simple_comment_date'] : 0;
|
402 |
$this->wc_comment_reply_checkboxes_default_checked = isset($options['wc_comment_reply_checkboxes_default_checked']) ? $options['wc_comment_reply_checkboxes_default_checked'] : 0;
|
@@ -415,9 +371,6 @@ class WC_Options_Serialize {
|
|
415 |
$this->wc_new_loaded_comment_bg_color = isset($options['wc_new_loaded_comment_bg_color']) ? $options['wc_new_loaded_comment_bg_color'] : "rgb(255,250,214)";
|
416 |
$this->wc_custom_css = isset($options['wc_custom_css']) ? $options['wc_custom_css'] : '.comments-area{width:auto; margin: 0 auto;}';
|
417 |
$this->wc_show_plugin_powerid_by = isset($options['wc_show_plugin_powerid_by']) ? $options['wc_show_plugin_powerid_by'] : 0;
|
418 |
-
$this->wc_is_use_po_mo = isset($options['wc_is_use_po_mo']) ? $options['wc_is_use_po_mo'] : 0;
|
419 |
-
$this->wc_comment_text_max_length = isset($options['wc_comment_text_max_length']) ? $options['wc_comment_text_max_length'] : '';
|
420 |
-
$this->wc_load_js_css_on_home = isset($options['wc_load_js_css_on_home']) ? $options['wc_load_js_css_on_home'] : 1;
|
421 |
}
|
422 |
|
423 |
/**
|
@@ -425,98 +378,97 @@ class WC_Options_Serialize {
|
|
425 |
*/
|
426 |
public function init_phrases() {
|
427 |
$this->wc_phrases = array(
|
428 |
-
'wc_leave_a_reply_text' => __('Leave a Reply',
|
429 |
-
'wc_be_the_first_text' => __('Be the First to Comment!',
|
430 |
-
'wc_header_text' => __('Comment',
|
431 |
-
'wc_header_text_plural' => __('Comments',
|
432 |
-
'wc_header_on_text' => __('on',
|
433 |
-
'wc_comment_start_text' => __('Start the discussion',
|
434 |
-
'wc_comment_join_text' => __('Join the discussion',
|
435 |
-
'wc_email_text' => __('Email',
|
436 |
-
'wc_name_text' => __('Name',
|
437 |
-
'wc_website_text' => __('WebSite URL',
|
438 |
-
'wc_captcha_text' => __('Please insert the code above to comment',
|
439 |
-
'wc_submit_text' => __('Post Comment',
|
440 |
-
'wc_manage_subscribtions' => __('Manage Subscriptions',
|
441 |
-
'wc_notify_none' => __('None',
|
442 |
-
'wc_notify_on_new_comment' => __('Notify of all new follow-up comments',
|
443 |
-
'wc_notify_on_all_new_reply' => __('Notify of new replies to all my comments',
|
444 |
-
'wc_notify_on_new_reply' => __('Notify of new replies to this comment',
|
445 |
-
'wc_load_more_submit_text' => __('Load More Comments',
|
446 |
-
'wc_load_rest_comments_submit_text' => __('Load Rest of Comments',
|
447 |
-
'wc_reply_text' => __('Reply',
|
448 |
-
'wc_share_text' => __('Share',
|
449 |
-
'wc_edit_text' => __('Edit',
|
450 |
-
'wc_share_facebook' => __('Share On Facebook',
|
451 |
-
'wc_share_twitter' => __('Share On Twitter',
|
452 |
-
'wc_share_google' => __('Share On Google',
|
453 |
-
'wc_share_vk' => __('Share On
|
454 |
-
'wc_share_ok' => __('Share On Odnoklassniki',
|
455 |
-
'wc_hide_replies_text' => __('Hide Replies',
|
456 |
-
'wc_show_replies_text' => __('Show Replies',
|
457 |
-
'wc_user_title_guest_text' => __('Guest',
|
458 |
-
'wc_user_title_member_text' => __('Member',
|
459 |
-
'wc_user_title_author_text' => __('Author',
|
460 |
-
'wc_user_title_admin_text' => __('Admin',
|
461 |
-
'wc_email_subject' => __('New Comment',
|
462 |
-
'wc_email_message' => __('New comment on the discussion section you\'ve been interested in',
|
463 |
-
'wc_new_reply_email_subject' => __('New Reply',
|
464 |
-
'wc_new_reply_email_message' => __('New reply on the discussion section you\'ve been interested in',
|
465 |
-
'wc_subscribed_on_comment' => __('You\'re subscribed for new replies on this comment',
|
466 |
-
'wc_subscribed_on_all_comment' => __('You\'re subscribed for new replies on all your comments',
|
467 |
-
'wc_subscribed_on_post' => __('You\'re subscribed for new follow-up comments on this post',
|
468 |
-
'wc_unsubscribe' => __('Unsubscribe',
|
469 |
-
'wc_ignore_subscription' => __('Ignore Subscription',
|
470 |
-
'wc_unsubscribe_message' => __('You\'ve successfully unsubscribed.',
|
471 |
-
'wc_confirm_email' => __('Confirm your
|
472 |
-
'wc_comfirm_success_message' => __('You\'ve successfully confirmed your subscription.',
|
473 |
-
'wc_confirm_email_subject' => __('Subscribe Confirmation',
|
474 |
-
'wc_confirm_email_message' => __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.',
|
475 |
-
'wc_error_empty_text' => __('please fill out this field to comment',
|
476 |
-
'wc_error_email_text' => __('email address is invalid',
|
477 |
-
'wc_error_url_text' => __('url is invalid',
|
478 |
-
'wc_year_text' => array('datetime' => array(__('year',
|
479 |
-
'wc_year_text_plural' => array('datetime' => array(__('years',
|
480 |
-
'wc_month_text' => array('datetime' => array(__('month',
|
481 |
-
'wc_month_text_plural' => array('datetime' => array(__('months',
|
482 |
-
'wc_day_text' => array('datetime' => array(__('day',
|
483 |
-
'wc_day_text_plural' => array('datetime' => array(__('days',
|
484 |
-
'wc_hour_text' => array('datetime' => array(__('hour',
|
485 |
-
'wc_hour_text_plural' => array('datetime' => array(__('hours',
|
486 |
-
'wc_minute_text' => array('datetime' => array(__('minute',
|
487 |
-
'wc_minute_text_plural' => array('datetime' => array(__('minutes',
|
488 |
-
'wc_second_text' => array('datetime' => array(__('second',
|
489 |
-
'wc_second_text_plural' => array('datetime' => array(__('seconds',
|
490 |
-
'wc_right_now_text' => __('right now',
|
491 |
-
'wc_ago_text' => __('ago',
|
492 |
-
'wc_posted_today_text' => __('Today',
|
493 |
-
'wc_you_must_be_text' => __('You must be',
|
494 |
-
'wc_logged_in_as' => __('You are logged in as',
|
495 |
-
'wc_log_out' => __('Log out',
|
496 |
-
'wc_logged_in_text' => __('logged in',
|
497 |
-
'wc_to_post_comment_text' => __('to post a comment.',
|
498 |
-
'wc_vote_up' => __('Vote Up',
|
499 |
-
'wc_vote_down' => __('Vote Down',
|
500 |
-
'wc_vote_counted' => __('Vote Counted',
|
501 |
-
'wc_vote_only_one_time' => __("You've already voted for this comment",
|
502 |
-
'wc_voting_error' => __('Voting Error',
|
503 |
-
'wc_login_to_vote' => __('You Must Be Logged In To Vote',
|
504 |
-
'wc_self_vote' => __('You cannot vote for your comment',
|
505 |
-
'wc_deny_voting_from_same_ip' => __('You are not allowed to vote for this comment',
|
506 |
-
'wc_invalid_captcha' => __('Invalid Captcha Code',
|
507 |
-
'wc_invalid_field' => __('Some of field value is invalid',
|
508 |
-
'wc_new_comment_button_text' => __('new comment',
|
509 |
-
'wc_new_comments_button_text' => __('new comments',
|
510 |
-
'wc_held_for_moderate' => __('Comment awaiting moderation',
|
511 |
-
'wc_new_reply_button_text' => __('new reply on your comment',
|
512 |
-
'wc_new_replies_button_text' => __('new replies on your comments',
|
513 |
-
'wc_new_comments_text' => __('New',
|
514 |
-
'wc_comment_not_updated' => __('Sorry, the comment was not updated',
|
515 |
-
'wc_comment_edit_not_possible' => __('Sorry, this comment no longer possible to edit',
|
516 |
-
'wc_comment_not_edited' => __('You\'ve not made any changes',
|
517 |
-
'wc_comment_edit_save_button' => __('Save',
|
518 |
-
'wc_comment_edit_cancel_button' => __('Cancel',
|
519 |
-
'wc_msg_comment_text_max_length' => __('Comment text is too long (maximum %s characters allowed)', 'wpdiscuz')
|
520 |
);
|
521 |
}
|
522 |
|
@@ -534,8 +486,6 @@ class WC_Options_Serialize {
|
|
534 |
'wc_share_buttons_show_hide' => $this->wc_share_buttons_show_hide,
|
535 |
'wc_captcha_show_hide' => $this->wc_captcha_show_hide,
|
536 |
'wc_weburl_show_hide' => $this->wc_weburl_show_hide,
|
537 |
-
'wc_header_text_show_hide' => $this->wc_header_text_show_hide,
|
538 |
-
'wc_avatar_show_hide' => $this->wc_avatar_show_hide,
|
539 |
'wc_user_must_be_registered' => $this->wc_user_must_be_registered,
|
540 |
'wc_is_name_field_required' => $this->wc_is_name_field_required,
|
541 |
'wc_is_email_field_required' => $this->wc_is_email_field_required,
|
@@ -561,10 +511,7 @@ class WC_Options_Serialize {
|
|
561 |
'wc_input_border_color' => $this->wc_input_border_color,
|
562 |
'wc_new_loaded_comment_bg_color' => $this->wc_new_loaded_comment_bg_color,
|
563 |
'wc_custom_css' => $this->wc_custom_css,
|
564 |
-
'wc_show_plugin_powerid_by' => $this->wc_show_plugin_powerid_by
|
565 |
-
'wc_is_use_po_mo' => $this->wc_is_use_po_mo,
|
566 |
-
'wc_comment_text_max_length' => $this->wc_comment_text_max_length,
|
567 |
-
'wc_load_js_css_on_home' => $this->wc_load_js_css_on_home
|
568 |
);
|
569 |
|
570 |
return $options;
|
@@ -588,8 +535,6 @@ class WC_Options_Serialize {
|
|
588 |
'wc_share_buttons_show_hide' => '0',
|
589 |
'wc_captcha_show_hide' => '0',
|
590 |
'wc_weburl_show_hide' => '1',
|
591 |
-
'wc_header_text_show_hide' => '0',
|
592 |
-
'wc_avatar_show_hide' => '0',
|
593 |
'wc_user_must_be_registered' => '0',
|
594 |
'wc_is_name_field_required' => '1',
|
595 |
'wc_is_email_field_required' => '1',
|
@@ -615,19 +560,14 @@ class WC_Options_Serialize {
|
|
615 |
'wc_input_border_color' => '#d9d9d9',
|
616 |
'wc_new_loaded_comment_bg_color' => 'rgb(255,250,214)',
|
617 |
'wc_custom_css' => '.comments-area{width:auto;}',
|
618 |
-
'wc_show_plugin_powerid_by' => '0'
|
619 |
-
'wc_is_use_po_mo' => '0',
|
620 |
-
'wc_comment_text_max_length' => '',
|
621 |
-
'wc_load_js_css_on_home' => '1'
|
622 |
);
|
623 |
add_option($this->wc_options_slug, serialize($options));
|
624 |
}
|
625 |
|
626 |
public function init_phrases_on_load() {
|
627 |
-
if (
|
628 |
$this->wc_phrases = $this->wc_db_helper->get_phrases();
|
629 |
-
}else{
|
630 |
-
$this->init_phrases();
|
631 |
}
|
632 |
}
|
633 |
|
99 |
* Default Value - Unchecked
|
100 |
*/
|
101 |
public $wc_weburl_show_hide;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
/**
|
104 |
* Type - Radiobutton
|
105 |
* Available Values - Yes/No
|
322 |
* Default Value - Unchecked
|
323 |
*/
|
324 |
public $wc_show_plugin_powerid_by;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
|
326 |
function __construct($wc_db_helper) {
|
327 |
$this->wc_db_helper = $wc_db_helper;
|
345 |
$this->wc_share_buttons_show_hide = $options['wc_share_buttons_show_hide'];
|
346 |
$this->wc_captcha_show_hide = $options['wc_captcha_show_hide'];
|
347 |
$this->wc_weburl_show_hide = isset($options['wc_weburl_show_hide']) ? $options['wc_weburl_show_hide'] : 0;
|
|
|
|
|
348 |
$this->wc_user_must_be_registered = $options['wc_user_must_be_registered'];
|
349 |
$this->wc_is_name_field_required = isset($options['wc_is_name_field_required']) ? $options['wc_is_name_field_required'] : 0;
|
350 |
$this->wc_is_email_field_required = isset($options['wc_is_email_field_required']) ? $options['wc_is_email_field_required'] : 0;
|
352 |
$this->wc_reply_button_guests_show_hide = $options['wc_reply_button_guests_show_hide'];
|
353 |
$this->wc_reply_button_members_show_hide = $options['wc_reply_button_members_show_hide'];
|
354 |
$this->wc_author_titles_show_hide = $options['wc_author_titles_show_hide'];
|
355 |
+
$this->wc_comment_count = $options['wc_comment_count'];
|
356 |
$this->wc_comments_max_depth = isset($options['wc_comments_max_depth']) ? $options['wc_comments_max_depth'] : 2;
|
357 |
$this->wc_simple_comment_date = isset($options['wc_simple_comment_date']) ? $options['wc_simple_comment_date'] : 0;
|
358 |
$this->wc_comment_reply_checkboxes_default_checked = isset($options['wc_comment_reply_checkboxes_default_checked']) ? $options['wc_comment_reply_checkboxes_default_checked'] : 0;
|
371 |
$this->wc_new_loaded_comment_bg_color = isset($options['wc_new_loaded_comment_bg_color']) ? $options['wc_new_loaded_comment_bg_color'] : "rgb(255,250,214)";
|
372 |
$this->wc_custom_css = isset($options['wc_custom_css']) ? $options['wc_custom_css'] : '.comments-area{width:auto; margin: 0 auto;}';
|
373 |
$this->wc_show_plugin_powerid_by = isset($options['wc_show_plugin_powerid_by']) ? $options['wc_show_plugin_powerid_by'] : 0;
|
|
|
|
|
|
|
374 |
}
|
375 |
|
376 |
/**
|
378 |
*/
|
379 |
public function init_phrases() {
|
380 |
$this->wc_phrases = array(
|
381 |
+
'wc_leave_a_reply_text' => __('Leave a Reply', WC_Core::$TEXT_DOMAIN),
|
382 |
+
'wc_be_the_first_text' => __('Be the First to Comment!', WC_Core::$TEXT_DOMAIN),
|
383 |
+
'wc_header_text' => __('Comment', WC_Core::$TEXT_DOMAIN),
|
384 |
+
'wc_header_text_plural' => __('Comments', WC_Core::$TEXT_DOMAIN), // PLURAL
|
385 |
+
'wc_header_on_text' => __('on', WC_Core::$TEXT_DOMAIN),
|
386 |
+
'wc_comment_start_text' => __('Start the discussion', WC_Core::$TEXT_DOMAIN),
|
387 |
+
'wc_comment_join_text' => __('Join the discussion', WC_Core::$TEXT_DOMAIN),
|
388 |
+
'wc_email_text' => __('Email', WC_Core::$TEXT_DOMAIN),
|
389 |
+
'wc_name_text' => __('Name', WC_Core::$TEXT_DOMAIN),
|
390 |
+
'wc_website_text' => __('WebSite URL', WC_Core::$TEXT_DOMAIN),
|
391 |
+
'wc_captcha_text' => __('Please insert the code above to comment', WC_Core::$TEXT_DOMAIN),
|
392 |
+
'wc_submit_text' => __('Post Comment', WC_Core::$TEXT_DOMAIN),
|
393 |
+
'wc_manage_subscribtions' => __('Manage Subscriptions', WC_Core::$TEXT_DOMAIN),
|
394 |
+
'wc_notify_none' => __('None', WC_Core::$TEXT_DOMAIN),
|
395 |
+
'wc_notify_on_new_comment' => __('Notify of all new follow-up comments', WC_Core::$TEXT_DOMAIN),
|
396 |
+
'wc_notify_on_all_new_reply' => __('Notify of new replies to all my comments', WC_Core::$TEXT_DOMAIN),
|
397 |
+
'wc_notify_on_new_reply' => __('Notify of new replies to this comment', WC_Core::$TEXT_DOMAIN),
|
398 |
+
'wc_load_more_submit_text' => __('Load More Comments', WC_Core::$TEXT_DOMAIN),
|
399 |
+
'wc_load_rest_comments_submit_text' => __('Load Rest of Comments', WC_Core::$TEXT_DOMAIN),
|
400 |
+
'wc_reply_text' => __('Reply', WC_Core::$TEXT_DOMAIN),
|
401 |
+
'wc_share_text' => __('Share', WC_Core::$TEXT_DOMAIN),
|
402 |
+
'wc_edit_text' => __('Edit', WC_Core::$TEXT_DOMAIN),
|
403 |
+
'wc_share_facebook' => __('Share On Facebook', WC_Core::$TEXT_DOMAIN),
|
404 |
+
'wc_share_twitter' => __('Share On Twitter', WC_Core::$TEXT_DOMAIN),
|
405 |
+
'wc_share_google' => __('Share On Google', WC_Core::$TEXT_DOMAIN),
|
406 |
+
'wc_share_vk' => __('Share On vKontakte', WC_Core::$TEXT_DOMAIN),
|
407 |
+
'wc_share_ok' => __('Share On Odnoklassniki', WC_Core::$TEXT_DOMAIN),
|
408 |
+
'wc_hide_replies_text' => __('Hide Replies', WC_Core::$TEXT_DOMAIN),
|
409 |
+
'wc_show_replies_text' => __('Show Replies', WC_Core::$TEXT_DOMAIN),
|
410 |
+
'wc_user_title_guest_text' => __('Guest', WC_Core::$TEXT_DOMAIN),
|
411 |
+
'wc_user_title_member_text' => __('Member', WC_Core::$TEXT_DOMAIN),
|
412 |
+
'wc_user_title_author_text' => __('Author', WC_Core::$TEXT_DOMAIN),
|
413 |
+
'wc_user_title_admin_text' => __('Admin', WC_Core::$TEXT_DOMAIN),
|
414 |
+
'wc_email_subject' => __('New Comment', WC_Core::$TEXT_DOMAIN),
|
415 |
+
'wc_email_message' => __('New comment on the discussion section you\'ve been interested in', WC_Core::$TEXT_DOMAIN),
|
416 |
+
'wc_new_reply_email_subject' => __('New Reply', WC_Core::$TEXT_DOMAIN),
|
417 |
+
'wc_new_reply_email_message' => __('New reply on the discussion section you\'ve been interested in', WC_Core::$TEXT_DOMAIN),
|
418 |
+
'wc_subscribed_on_comment' => __('You\'re subscribed for new replies on this comment', WC_Core::$TEXT_DOMAIN),
|
419 |
+
'wc_subscribed_on_all_comment' => __('You\'re subscribed for new replies on all your comments', WC_Core::$TEXT_DOMAIN),
|
420 |
+
'wc_subscribed_on_post' => __('You\'re subscribed for new follow-up comments on this post', WC_Core::$TEXT_DOMAIN),
|
421 |
+
'wc_unsubscribe' => __('Unsubscribe', WC_Core::$TEXT_DOMAIN),
|
422 |
+
'wc_ignore_subscription' => __('Ignore Subscription', WC_Core::$TEXT_DOMAIN),
|
423 |
+
'wc_unsubscribe_message' => __('You\'ve successfully unsubscribed.', WC_Core::$TEXT_DOMAIN),
|
424 |
+
'wc_confirm_email' => __('Confirm your subscribtion', WC_Core::$TEXT_DOMAIN),
|
425 |
+
'wc_comfirm_success_message' => __('You\'ve successfully confirmed your subscription.', WC_Core::$TEXT_DOMAIN),
|
426 |
+
'wc_confirm_email_subject' => __('Subscribe Confirmation', WC_Core::$TEXT_DOMAIN),
|
427 |
+
'wc_confirm_email_message' => __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.', WC_Core::$TEXT_DOMAIN),
|
428 |
+
'wc_error_empty_text' => __('please fill out this field to comment', WC_Core::$TEXT_DOMAIN),
|
429 |
+
'wc_error_email_text' => __('email address is invalid', WC_Core::$TEXT_DOMAIN),
|
430 |
+
'wc_error_url_text' => __('url is invalid', WC_Core::$TEXT_DOMAIN),
|
431 |
+
'wc_year_text' => array('datetime' => array(__('year', WC_Core::$TEXT_DOMAIN), 1)),
|
432 |
+
'wc_year_text_plural' => array('datetime' => array(__('years', WC_Core::$TEXT_DOMAIN), 1)), // PLURAL
|
433 |
+
'wc_month_text' => array('datetime' => array(__('month', WC_Core::$TEXT_DOMAIN), 2)),
|
434 |
+
'wc_month_text_plural' => array('datetime' => array(__('months', WC_Core::$TEXT_DOMAIN), 2)), // PLURAL
|
435 |
+
'wc_day_text' => array('datetime' => array(__('day', WC_Core::$TEXT_DOMAIN), 3)),
|
436 |
+
'wc_day_text_plural' => array('datetime' => array(__('days', WC_Core::$TEXT_DOMAIN), 3)), // PLURAL
|
437 |
+
'wc_hour_text' => array('datetime' => array(__('hour', WC_Core::$TEXT_DOMAIN), 4)),
|
438 |
+
'wc_hour_text_plural' => array('datetime' => array(__('hours', WC_Core::$TEXT_DOMAIN), 4)), // PLURAL
|
439 |
+
'wc_minute_text' => array('datetime' => array(__('minute', WC_Core::$TEXT_DOMAIN), 5)),
|
440 |
+
'wc_minute_text_plural' => array('datetime' => array(__('minutes', WC_Core::$TEXT_DOMAIN), 5)), // PLURAL
|
441 |
+
'wc_second_text' => array('datetime' => array(__('second', WC_Core::$TEXT_DOMAIN), 6)),
|
442 |
+
'wc_second_text_plural' => array('datetime' => array(__('seconds', WC_Core::$TEXT_DOMAIN), 6)), // PLURAL
|
443 |
+
'wc_right_now_text' => __('right now', WC_Core::$TEXT_DOMAIN),
|
444 |
+
'wc_ago_text' => __('ago', WC_Core::$TEXT_DOMAIN),
|
445 |
+
'wc_posted_today_text' => __('Today', WC_Core::$TEXT_DOMAIN),
|
446 |
+
'wc_you_must_be_text' => __('You must be', WC_Core::$TEXT_DOMAIN),
|
447 |
+
'wc_logged_in_as' => __('You are logged in as', WC_Core::$TEXT_DOMAIN),
|
448 |
+
'wc_log_out' => __('Log out', WC_Core::$TEXT_DOMAIN),
|
449 |
+
'wc_logged_in_text' => __('logged in', WC_Core::$TEXT_DOMAIN),
|
450 |
+
'wc_to_post_comment_text' => __('to post a comment.', WC_Core::$TEXT_DOMAIN),
|
451 |
+
'wc_vote_up' => __('Vote Up', WC_Core::$TEXT_DOMAIN),
|
452 |
+
'wc_vote_down' => __('Vote Down', WC_Core::$TEXT_DOMAIN),
|
453 |
+
'wc_vote_counted' => __('Vote Counted', WC_Core::$TEXT_DOMAIN),
|
454 |
+
'wc_vote_only_one_time' => __("You've already voted for this comment", WC_Core::$TEXT_DOMAIN),
|
455 |
+
'wc_voting_error' => __('Voting Error', WC_Core::$TEXT_DOMAIN),
|
456 |
+
'wc_login_to_vote' => __('You Must Be Logged In To Vote', WC_Core::$TEXT_DOMAIN),
|
457 |
+
'wc_self_vote' => __('You cannot vote for your comment', WC_Core::$TEXT_DOMAIN),
|
458 |
+
'wc_deny_voting_from_same_ip' => __('You are not allowed to vote for this comment', WC_Core::$TEXT_DOMAIN),
|
459 |
+
'wc_invalid_captcha' => __('Invalid Captcha Code', WC_Core::$TEXT_DOMAIN),
|
460 |
+
'wc_invalid_field' => __('Some of field value is invalid', WC_Core::$TEXT_DOMAIN),
|
461 |
+
'wc_new_comment_button_text' => __('new comment', WC_Core::$TEXT_DOMAIN),
|
462 |
+
'wc_new_comments_button_text' => __('new comments', WC_Core::$TEXT_DOMAIN), // PLURAL
|
463 |
+
'wc_held_for_moderate' => __('Comment awaiting moderation', WC_Core::$TEXT_DOMAIN),
|
464 |
+
'wc_new_reply_button_text' => __('new reply on your comment', WC_Core::$TEXT_DOMAIN),
|
465 |
+
'wc_new_replies_button_text' => __('new replies on your comments', WC_Core::$TEXT_DOMAIN), // PLURAL
|
466 |
+
'wc_new_comments_text' => __('New', WC_Core::$TEXT_DOMAIN),
|
467 |
+
'wc_comment_not_updated' => __('Sorry, the comment was not updated', WC_Core::$TEXT_DOMAIN),
|
468 |
+
'wc_comment_edit_not_possible' => __('Sorry, this comment no longer possible to edit', WC_Core::$TEXT_DOMAIN),
|
469 |
+
'wc_comment_not_edited' => __('You\'ve not made any changes', WC_Core::$TEXT_DOMAIN),
|
470 |
+
'wc_comment_edit_save_button' => __('Save', WC_Core::$TEXT_DOMAIN),
|
471 |
+
'wc_comment_edit_cancel_button' => __('Cancel', WC_Core::$TEXT_DOMAIN),
|
|
|
472 |
);
|
473 |
}
|
474 |
|
486 |
'wc_share_buttons_show_hide' => $this->wc_share_buttons_show_hide,
|
487 |
'wc_captcha_show_hide' => $this->wc_captcha_show_hide,
|
488 |
'wc_weburl_show_hide' => $this->wc_weburl_show_hide,
|
|
|
|
|
489 |
'wc_user_must_be_registered' => $this->wc_user_must_be_registered,
|
490 |
'wc_is_name_field_required' => $this->wc_is_name_field_required,
|
491 |
'wc_is_email_field_required' => $this->wc_is_email_field_required,
|
511 |
'wc_input_border_color' => $this->wc_input_border_color,
|
512 |
'wc_new_loaded_comment_bg_color' => $this->wc_new_loaded_comment_bg_color,
|
513 |
'wc_custom_css' => $this->wc_custom_css,
|
514 |
+
'wc_show_plugin_powerid_by' => $this->wc_show_plugin_powerid_by
|
|
|
|
|
|
|
515 |
);
|
516 |
|
517 |
return $options;
|
535 |
'wc_share_buttons_show_hide' => '0',
|
536 |
'wc_captcha_show_hide' => '0',
|
537 |
'wc_weburl_show_hide' => '1',
|
|
|
|
|
538 |
'wc_user_must_be_registered' => '0',
|
539 |
'wc_is_name_field_required' => '1',
|
540 |
'wc_is_email_field_required' => '1',
|
560 |
'wc_input_border_color' => '#d9d9d9',
|
561 |
'wc_new_loaded_comment_bg_color' => 'rgb(255,250,214)',
|
562 |
'wc_custom_css' => '.comments-area{width:auto;}',
|
563 |
+
'wc_show_plugin_powerid_by' => '0'
|
|
|
|
|
|
|
564 |
);
|
565 |
add_option($this->wc_options_slug, serialize($options));
|
566 |
}
|
567 |
|
568 |
public function init_phrases_on_load() {
|
569 |
+
if ($this->wc_db_helper->is_phrase_exists('wc_leave_a_reply_text')) {
|
570 |
$this->wc_phrases = $this->wc_db_helper->get_phrases();
|
|
|
|
|
571 |
}
|
572 |
}
|
573 |
|
options/wc-options.php
CHANGED
@@ -25,7 +25,7 @@ class WC_Options {
|
|
25 |
if (isset($_POST['wc_submit_options'])) {
|
26 |
|
27 |
if (function_exists('current_user_can') && !current_user_can('manage_options')) {
|
28 |
-
die(_e('Hacker?',
|
29 |
}
|
30 |
|
31 |
if (function_exists('check_admin_referer')) {
|
@@ -44,8 +44,6 @@ class WC_Options {
|
|
44 |
$this->wc_options_serialized->wc_share_buttons_show_hide = isset($_POST['wc_share_buttons_show_hide']) ? $_POST['wc_share_buttons_show_hide'] : 0;
|
45 |
$this->wc_options_serialized->wc_captcha_show_hide = isset($_POST['wc_captcha_show_hide']) ? $_POST['wc_captcha_show_hide'] : 0;
|
46 |
$this->wc_options_serialized->wc_weburl_show_hide = isset($_POST['wc_weburl_show_hide']) ? $_POST['wc_weburl_show_hide'] : 0;
|
47 |
-
$this->wc_options_serialized->wc_header_text_show_hide = isset($_POST['wc_header_text_show_hide']) ? $_POST['wc_header_text_show_hide'] : 0;
|
48 |
-
$this->wc_options_serialized->wc_avatar_show_hide = isset($_POST['wc_avatar_show_hide']) ? $_POST['wc_avatar_show_hide'] : 0;
|
49 |
$this->wc_options_serialized->wc_user_must_be_registered = isset($_POST['wc_user_must_be_registered']) ? $_POST['wc_user_must_be_registered'] : 0;
|
50 |
$this->wc_options_serialized->wc_is_name_field_required = isset($_POST['wc_is_name_field_required']) ? $_POST['wc_is_name_field_required'] : 0;
|
51 |
$this->wc_options_serialized->wc_is_email_field_required = isset($_POST['wc_is_email_field_required']) ? $_POST['wc_is_email_field_required'] : 0;
|
@@ -72,9 +70,6 @@ class WC_Options {
|
|
72 |
$this->wc_options_serialized->wc_new_loaded_comment_bg_color = isset($_POST['wc_new_loaded_comment_bg_color']) ? $_POST['wc_new_loaded_comment_bg_color'] : 'rgb(254,254,254)';
|
73 |
$this->wc_options_serialized->wc_custom_css = isset($_POST['wc_custom_css']) ? $_POST['wc_custom_css'] : '.comments-area{width:auto; margin: 0 auto;}';
|
74 |
$this->wc_options_serialized->wc_show_plugin_powerid_by = isset($_POST['wc_show_plugin_powerid_by']) ? $_POST['wc_show_plugin_powerid_by'] : 0;
|
75 |
-
$this->wc_options_serialized->wc_is_use_po_mo = isset($_POST['wc_is_use_po_mo']) ? $_POST['wc_is_use_po_mo'] : 0;
|
76 |
-
$this->wc_options_serialized->wc_comment_text_max_length = (isset($_POST['wc_comment_text_max_length']) && intval($_POST['wc_comment_text_max_length']) && intval($_POST['wc_comment_text_max_length']) > 0) ? intval($_POST['wc_comment_text_max_length']) : '';
|
77 |
-
$this->wc_options_serialized->wc_load_js_css_on_home = isset($_POST['wc_load_js_css_on_home']) ? $_POST['wc_load_js_css_on_home'] : 0;
|
78 |
|
79 |
$this->wc_options_serialized->update_options();
|
80 |
}
|
@@ -85,7 +80,7 @@ class WC_Options {
|
|
85 |
<div style="float:left; width:50px; height:55px; margin:10px 10px 20px 0px;">
|
86 |
<img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/plugin-icon/plugin-icon-48.png'); ?>"/>
|
87 |
</div>
|
88 |
-
<h2 style="padding-bottom:20px; padding-top:15px;"><?php _e('wpDiscuz General Settings',
|
89 |
<br style="clear:both" />
|
90 |
|
91 |
|
@@ -116,7 +111,7 @@ class WC_Options {
|
|
116 |
</thead>
|
117 |
<tr valign="top">
|
118 |
<td style="background:#FFF; text-align:left; font-size:13px;">
|
119 |
-
wpDiscuz is
|
120 |
</td>
|
121 |
</tr>
|
122 |
</table><br />
|
@@ -131,7 +126,7 @@ class WC_Options {
|
|
131 |
<td style="background:#FFF; text-align:left; font-size:13px;">
|
132 |
We do our best to make wpDiscuz the best self-hosted comment plugin for Wordpress. Thousands users are currently satisfied with wpDiscuz but only about 1% of them give us 5 start rating.
|
133 |
However we have a very few users who for some very specific reasons are not satisfied and they are very active in decreasing wpDiscuz rating.
|
134 |
-
Please help us keep plugin rating high, encouraging us to develop and maintain this plugin. Take a one minute to leave <a href="https://wordpress.org/support/view/plugin-reviews/wpdiscuz?filter=5" title="Go to wpDiscuz Reviews section on Wordpress.org"><img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/'); ?>files/img/gc/5s.png" border="0" align="absmiddle" /></a> star review on <a href="https://wordpress.org/support/view/plugin-reviews/wpdiscuz?filter=5">Wordpress.org</a
|
135 |
<hr style="border-style:dotted;" />
|
136 |
<div style="width:200px; float:right;">
|
137 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
|
@@ -177,12 +172,12 @@ class WC_Options {
|
|
177 |
|
178 |
<div id="parentHorizontalTab">
|
179 |
<ul class="resp-tabs-list hor_1">
|
180 |
-
<li><?php _e('General settings',
|
181 |
-
<li><?php _e('Live Update',
|
182 |
-
<li><?php _e('Show/Hide Components',
|
183 |
-
<li><?php _e('Email Subscription',
|
184 |
-
<li><?php _e('Background and Colors',
|
185 |
-
<li><?php _e('Social Login',
|
186 |
</ul>
|
187 |
<div class="resp-tabs-container hor_1">
|
188 |
<?php
|
@@ -202,7 +197,7 @@ class WC_Options {
|
|
202 |
type: 'default', //Types: default, vertical, accordion
|
203 |
width: 'auto', //auto or any width like 600px
|
204 |
fit: true, // 100% fit in a container
|
205 |
-
tabidentify: 'hor_1' // The tab groups identifier
|
206 |
});
|
207 |
});
|
208 |
</script>
|
@@ -211,8 +206,8 @@ class WC_Options {
|
|
211 |
<tr valign="top">
|
212 |
<td colspan="4">
|
213 |
<p class="submit">
|
214 |
-
<input type="submit" class="button button-primary" name="wc_submit_options" value="<?php _e('Save Changes',
|
215 |
-
<a style="float: right;" class="button button-secondary" href="<?php echo admin_url(); ?>admin.php?page=wpdiscuz_options_page&wpdiscuz_reset_options=1"><?php _e('Reset Options',
|
216 |
</p>
|
217 |
</td>
|
218 |
</tr>
|
@@ -230,7 +225,7 @@ class WC_Options {
|
|
230 |
if (isset($_POST['wc_submit_phrases'])) {
|
231 |
|
232 |
if (function_exists('current_user_can') && !current_user_can('manage_options')) {
|
233 |
-
die(_e('Hacker?',
|
234 |
}
|
235 |
|
236 |
if (function_exists('check_admin_referer')) {
|
@@ -328,18 +323,19 @@ class WC_Options {
|
|
328 |
$this->wc_options_serialized->wc_phrases['wc_comment_not_edited'] = $_POST['wc_comment_not_edited'];
|
329 |
$this->wc_options_serialized->wc_phrases['wc_comment_edit_save_button'] = $_POST['wc_comment_edit_save_button'];
|
330 |
$this->wc_options_serialized->wc_phrases['wc_comment_edit_cancel_button'] = $_POST['wc_comment_edit_cancel_button'];
|
331 |
-
$this->wc_options_serialized->wc_phrases['wc_msg_comment_text_max_length'] = $_POST['wc_msg_comment_text_max_length'];
|
332 |
|
333 |
$this->wc_db_helper->update_phrases($this->wc_options_serialized->wc_phrases);
|
334 |
}
|
335 |
-
|
|
|
|
|
336 |
?>
|
337 |
<div class="wrap wpdiscuz_options_page">
|
338 |
|
339 |
<div style="float:left; width:50px; height:55px; margin:10px 10px 20px 0px;">
|
340 |
<img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/plugin-icon/plugin-icon-48.png'); ?>" style="height:43px;"/>
|
341 |
</div>
|
342 |
-
<h2 style="padding-bottom:20px; padding-top:15px;"><?php _e('WpDiscuz Front-end Phrases',
|
343 |
<br style="clear:both" />
|
344 |
<form action="<?php echo admin_url(); ?>admin.php?page=wpdiscuz_phrases_page&updated=true" method="post" name="wpdiscuz_phrases_page" class="wc-phrases-settings-form wc-form">
|
345 |
<?php
|
@@ -349,12 +345,12 @@ class WC_Options {
|
|
349 |
?>
|
350 |
<div id="parentHorizontalTab1">
|
351 |
<ul class="resp-tabs-list hor_2">
|
352 |
-
<li><?php _e('General',
|
353 |
-
<li><?php _e('Form',
|
354 |
-
<li><?php _e('Comment',
|
355 |
-
<li><?php _e('Date/Time',
|
356 |
-
<li><?php _e('Email',
|
357 |
-
<li><?php _e('Notification',
|
358 |
</ul>
|
359 |
<div class="resp-tabs-container hor_2">
|
360 |
<?php include 'phrases-layout/phrases-general.php'; ?>
|
@@ -372,7 +368,7 @@ class WC_Options {
|
|
372 |
type: 'default', //Types: default, vertical, accordion
|
373 |
width: 'auto', //auto or any width like 600px
|
374 |
fit: true, // 100% fit in a container
|
375 |
-
tabidentify: 'hor_2' // The tab groups identifier
|
376 |
});
|
377 |
});
|
378 |
</script>
|
@@ -381,7 +377,7 @@ class WC_Options {
|
|
381 |
<tr valign="top">
|
382 |
<td colspan="4">
|
383 |
<p class="submit">
|
384 |
-
<input type="submit" class="button button-primary" name="wc_submit_phrases" value="<?php _e('Save Changes',
|
385 |
</p>
|
386 |
</td>
|
387 |
</tr>
|
25 |
if (isset($_POST['wc_submit_options'])) {
|
26 |
|
27 |
if (function_exists('current_user_can') && !current_user_can('manage_options')) {
|
28 |
+
die(_e('Hacker?', WC_Core::$TEXT_DOMAIN));
|
29 |
}
|
30 |
|
31 |
if (function_exists('check_admin_referer')) {
|
44 |
$this->wc_options_serialized->wc_share_buttons_show_hide = isset($_POST['wc_share_buttons_show_hide']) ? $_POST['wc_share_buttons_show_hide'] : 0;
|
45 |
$this->wc_options_serialized->wc_captcha_show_hide = isset($_POST['wc_captcha_show_hide']) ? $_POST['wc_captcha_show_hide'] : 0;
|
46 |
$this->wc_options_serialized->wc_weburl_show_hide = isset($_POST['wc_weburl_show_hide']) ? $_POST['wc_weburl_show_hide'] : 0;
|
|
|
|
|
47 |
$this->wc_options_serialized->wc_user_must_be_registered = isset($_POST['wc_user_must_be_registered']) ? $_POST['wc_user_must_be_registered'] : 0;
|
48 |
$this->wc_options_serialized->wc_is_name_field_required = isset($_POST['wc_is_name_field_required']) ? $_POST['wc_is_name_field_required'] : 0;
|
49 |
$this->wc_options_serialized->wc_is_email_field_required = isset($_POST['wc_is_email_field_required']) ? $_POST['wc_is_email_field_required'] : 0;
|
70 |
$this->wc_options_serialized->wc_new_loaded_comment_bg_color = isset($_POST['wc_new_loaded_comment_bg_color']) ? $_POST['wc_new_loaded_comment_bg_color'] : 'rgb(254,254,254)';
|
71 |
$this->wc_options_serialized->wc_custom_css = isset($_POST['wc_custom_css']) ? $_POST['wc_custom_css'] : '.comments-area{width:auto; margin: 0 auto;}';
|
72 |
$this->wc_options_serialized->wc_show_plugin_powerid_by = isset($_POST['wc_show_plugin_powerid_by']) ? $_POST['wc_show_plugin_powerid_by'] : 0;
|
|
|
|
|
|
|
73 |
|
74 |
$this->wc_options_serialized->update_options();
|
75 |
}
|
80 |
<div style="float:left; width:50px; height:55px; margin:10px 10px 20px 0px;">
|
81 |
<img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/plugin-icon/plugin-icon-48.png'); ?>"/>
|
82 |
</div>
|
83 |
+
<h2 style="padding-bottom:20px; padding-top:15px;"><?php _e('wpDiscuz General Settings', WC_Core::$TEXT_DOMAIN); ?></h2>
|
84 |
<br style="clear:both" />
|
85 |
|
86 |
|
111 |
</thead>
|
112 |
<tr valign="top">
|
113 |
<td style="background:#FFF; text-align:left; font-size:13px;">
|
114 |
+
wpDiscuz is alsow available for WooCommerce. The WooCommerce Comments plugin name is <a href="https://wordpress.org/plugins/woodiscuz-woocommerce-comments/" style="color:#993399; text-decoration:underline;"><strong>WooDiscuz</strong></a>. It adds a new "Discussion" Tab on product page and allows your customers ask Pre-Sale Questions and discuss about your products.
|
115 |
</td>
|
116 |
</tr>
|
117 |
</table><br />
|
126 |
<td style="background:#FFF; text-align:left; font-size:13px;">
|
127 |
We do our best to make wpDiscuz the best self-hosted comment plugin for Wordpress. Thousands users are currently satisfied with wpDiscuz but only about 1% of them give us 5 start rating.
|
128 |
However we have a very few users who for some very specific reasons are not satisfied and they are very active in decreasing wpDiscuz rating.
|
129 |
+
Please help us keep plugin rating high, encouraging us to develop and maintain this plugin. Take a one minute to leave <a href="https://wordpress.org/support/view/plugin-reviews/wpdiscuz?filter=5" title="Go to wpDiscuz Reviews section on Wordpress.org"><img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/'); ?>files/img/gc/5s.png" border="0" align="absmiddle" /></a> star review on <a href="https://wordpress.org/support/view/plugin-reviews/wpdiscuz?filter=5">Wordpress.org</a>
|
130 |
<hr style="border-style:dotted;" />
|
131 |
<div style="width:200px; float:right;">
|
132 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
|
172 |
|
173 |
<div id="parentHorizontalTab">
|
174 |
<ul class="resp-tabs-list hor_1">
|
175 |
+
<li><?php _e('General settings', WC_Core::$TEXT_DOMAIN); ?></li>
|
176 |
+
<li><?php _e('Live Update', WC_Core::$TEXT_DOMAIN); ?></li>
|
177 |
+
<li><?php _e('Show/Hide Components', WC_Core::$TEXT_DOMAIN); ?></li>
|
178 |
+
<li><?php _e('Email Subscription', WC_Core::$TEXT_DOMAIN); ?> <?php if (class_exists('Prompt_Comment_Form_Handling')): ?> <?php _e('and Postmatic', WC_Core::$TEXT_DOMAIN); ?> <?php endif; ?></li>
|
179 |
+
<li><?php _e('Background and Colors', WC_Core::$TEXT_DOMAIN); ?></li>
|
180 |
+
<li><?php _e('Social Login', WC_Core::$TEXT_DOMAIN); ?></li>
|
181 |
</ul>
|
182 |
<div class="resp-tabs-container hor_1">
|
183 |
<?php
|
197 |
type: 'default', //Types: default, vertical, accordion
|
198 |
width: 'auto', //auto or any width like 600px
|
199 |
fit: true, // 100% fit in a container
|
200 |
+
tabidentify: 'hor_1', // The tab groups identifier
|
201 |
});
|
202 |
});
|
203 |
</script>
|
206 |
<tr valign="top">
|
207 |
<td colspan="4">
|
208 |
<p class="submit">
|
209 |
+
<input type="submit" class="button button-primary" name="wc_submit_options" value="<?php _e('Save Changes', WC_Core::$TEXT_DOMAIN); ?>" />
|
210 |
+
<a style="float: right;" class="button button-secondary" href="<?php echo admin_url(); ?>admin.php?page=wpdiscuz_options_page&wpdiscuz_reset_options=1"><?php _e('Reset Options', WC_Core::$TEXT_DOMAIN); ?></a>
|
211 |
</p>
|
212 |
</td>
|
213 |
</tr>
|
225 |
if (isset($_POST['wc_submit_phrases'])) {
|
226 |
|
227 |
if (function_exists('current_user_can') && !current_user_can('manage_options')) {
|
228 |
+
die(_e('Hacker?', WC_Core::$TEXT_DOMAIN));
|
229 |
}
|
230 |
|
231 |
if (function_exists('check_admin_referer')) {
|
323 |
$this->wc_options_serialized->wc_phrases['wc_comment_not_edited'] = $_POST['wc_comment_not_edited'];
|
324 |
$this->wc_options_serialized->wc_phrases['wc_comment_edit_save_button'] = $_POST['wc_comment_edit_save_button'];
|
325 |
$this->wc_options_serialized->wc_phrases['wc_comment_edit_cancel_button'] = $_POST['wc_comment_edit_cancel_button'];
|
|
|
326 |
|
327 |
$this->wc_db_helper->update_phrases($this->wc_options_serialized->wc_phrases);
|
328 |
}
|
329 |
+
if ($this->wc_db_helper->is_phrase_exists('wc_leave_a_reply_text')) {
|
330 |
+
$this->wc_options_serialized->wc_phrases = $this->wc_db_helper->get_phrases();
|
331 |
+
}
|
332 |
?>
|
333 |
<div class="wrap wpdiscuz_options_page">
|
334 |
|
335 |
<div style="float:left; width:50px; height:55px; margin:10px 10px 20px 0px;">
|
336 |
<img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/plugin-icon/plugin-icon-48.png'); ?>" style="height:43px;"/>
|
337 |
</div>
|
338 |
+
<h2 style="padding-bottom:20px; padding-top:15px;"><?php _e('WpDiscuz Front-end Phrases', WC_Core::$TEXT_DOMAIN); ?></h2>
|
339 |
<br style="clear:both" />
|
340 |
<form action="<?php echo admin_url(); ?>admin.php?page=wpdiscuz_phrases_page&updated=true" method="post" name="wpdiscuz_phrases_page" class="wc-phrases-settings-form wc-form">
|
341 |
<?php
|
345 |
?>
|
346 |
<div id="parentHorizontalTab1">
|
347 |
<ul class="resp-tabs-list hor_2">
|
348 |
+
<li><?php _e('General', WC_Core::$TEXT_DOMAIN); ?></li>
|
349 |
+
<li><?php _e('Form', WC_Core::$TEXT_DOMAIN); ?></li>
|
350 |
+
<li><?php _e('Comment', WC_Core::$TEXT_DOMAIN); ?></li>
|
351 |
+
<li><?php _e('Date/Time', WC_Core::$TEXT_DOMAIN); ?></li>
|
352 |
+
<li><?php _e('Email', WC_Core::$TEXT_DOMAIN); ?></li>
|
353 |
+
<li><?php _e('Notification', WC_Core::$TEXT_DOMAIN); ?></li>
|
354 |
</ul>
|
355 |
<div class="resp-tabs-container hor_2">
|
356 |
<?php include 'phrases-layout/phrases-general.php'; ?>
|
368 |
type: 'default', //Types: default, vertical, accordion
|
369 |
width: 'auto', //auto or any width like 600px
|
370 |
fit: true, // 100% fit in a container
|
371 |
+
tabidentify: 'hor_2', // The tab groups identifier
|
372 |
});
|
373 |
});
|
374 |
</script>
|
377 |
<tr valign="top">
|
378 |
<td colspan="4">
|
379 |
<p class="submit">
|
380 |
+
<input type="submit" class="button button-primary" name="wc_submit_phrases" value="<?php _e('Save Changes', WC_Core::$TEXT_DOMAIN); ?>" />
|
381 |
</p>
|
382 |
</td>
|
383 |
</tr>
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: gVectors Team
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UC44WQM5XJFPA
|
4 |
Tags: wordpress comments, ajax comments, ajax, live update, theme, post comments, comments box, community, discussion, discuss, comment form, reply, comments, discussions, comment template, activity, comment author, comment system, redirect, comment redirect, first commenter, social login
|
5 |
Requires at least: 2.7
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -130,64 +130,6 @@ http://www.gvectors.com/questions/wpdiscuz-comment-form-is-missing/
|
|
130 |
|
131 |
== Changelog ==
|
132 |
|
133 |
-
= NEXT =
|
134 |
-
|
135 |
-
Updated: Portuguese (pt_PT) translation, thanks again to Celso Azevedo
|
136 |
-
|
137 |
-
IMPORTANT: If you have a Cache Plugin, please delete all caches after wpDiscuz update.
|
138 |
-
|
139 |
-
= 2.2.10 =
|
140 |
-
* Fixed Bug : Manage subscriptions issue
|
141 |
-
|
142 |
-
= 2.2.9 =
|
143 |
-
* Fixed Bug : RTL issues
|
144 |
-
* Added : Compatibility with Super Socializer social comments (tabbed comment systems)
|
145 |
-
* Added : Option to turn on/off loading of wpDiscuz JS and CSS files on home page
|
146 |
-
|
147 |
-
= 2.2.8 =
|
148 |
-
* Added : French (fr_FR) translation, thanks to Eric Malalel
|
149 |
-
* Fixed Bug : You do not have sufficient permissions to access WP Super Socializer setting page
|
150 |
-
* Compatibility : To make "Comments Evolved for WordPress" plugin compatible with wpDiscuz please read this support topic: https://wordpress.org/support/topic/add-compatibility-with-plugin-comments-evolved?replies=7#post-7255442
|
151 |
-
|
152 |
-
= 2.2.7 =
|
153 |
-
* Fixed Bug : Slashes removing issue
|
154 |
-
* Fixed Bug : JavaScript Uncaught TypeError issue
|
155 |
-
|
156 |
-
= 2.2.6 =
|
157 |
-
* Added: Supports "Social Login" Plugin
|
158 |
-
* Added: Redirection to current page after login/logout
|
159 |
-
* Fixed Bug: Super Socializer comment author avatar problem
|
160 |
-
* Fixed Bug: Author website URL rel="nofollow"
|
161 |
-
* Fixed Bug: Other small bugs
|
162 |
-
|
163 |
-
= 2.2.5 =
|
164 |
-
* Fixed Bug: Comment author profile image issue when using Gravatar
|
165 |
-
* Fixed Bug: Conditional php session start (optimized).
|
166 |
-
|
167 |
-
= 2.2.4 =
|
168 |
-
* Fixed Bug: CSS/Layout issue. Breaks some theme layout.
|
169 |
-
|
170 |
-
= 2.2.3 =
|
171 |
-
* Added: Option to hide/show user avatars on comment form and list
|
172 |
-
* Added: Option to hide/show comment form header text
|
173 |
-
* Added: Option to set maximum character limit for comment text
|
174 |
-
* Added: Option to enable .po/.mo translation files for mult-language sites
|
175 |
-
* Added: Allowed new HTML tags (blockquote, ul, ol, li, code, em, abbr...)
|
176 |
-
* Fixed Bug: Avatar duplication on reply form
|
177 |
-
* Fixed Bug: Author display name update when it changed on UM profile page
|
178 |
-
* Fixed Bug: 404 error on clicking subscription confirmation link
|
179 |
-
* Fixed Bug: Email validation issue with .info and other TLD with more than 3 chars
|
180 |
-
|
181 |
-
= 2.2.2 =
|
182 |
-
* Fixed Bug: Some phrases were not translate-able
|
183 |
-
* Fixed Bug: Social Network Avatar display problem
|
184 |
-
* Fixed Bug: Issues with site layout, website field and Facebook login button
|
185 |
-
* Fixed Bug: Error message "URL is invalid" for Website URLs starting with http://
|
186 |
-
* Fixed Bug: Unlimited voting issue for guests
|
187 |
-
|
188 |
-
= 2.2.1 =
|
189 |
-
* Fixed Bug: Front-end Phrases don't suport Special Characters
|
190 |
-
|
191 |
= 2.2.0 =
|
192 |
* Added: Social Network Login:
|
193 |
Facebook, Google, Twitter, Wordpress, Vkontakte, Mail.ru, Yandex, Odnoklassniki, 500px, Windows Live, Yahoo!, LinkedIn, Reddit, Disqus, Tumblr, Stackoverflow, GitHub, Dribbble, Instagram, Foursquare, Steam, Twitch.tv, Mixi, Goodreads, Skyrock, Last.fm, AOL and PixelPin.
|
@@ -200,6 +142,8 @@ Integrated with WordPress Social Login, Super Socializer and Social Connect plug
|
|
200 |
* Fixed Bug: Issues with comment editing
|
201 |
* Fixed Bug: Custom "Phrases" fail to display if apostrophes are used
|
202 |
|
|
|
|
|
203 |
= 2.1.10 =
|
204 |
* Fixed Bug: First comment redirection without setting the destination page
|
205 |
|
@@ -252,7 +196,7 @@ Integrated with WordPress Social Login, Super Socializer and Social Connect plug
|
|
252 |
* Added : Integration with UserPro - User badges under comment author avatar
|
253 |
* Added : Integration with Postmatic for subscriptions and commenting by email
|
254 |
* Added : Persian (fa_IR) language, thanks to Vahid (VSG24)
|
255 |
-
* Added : Russian (ru_RU) language, thanks to OlafKS
|
256 |
* Added : Close pop-up messages by clicking outside of message-box
|
257 |
* Added : Scroll-down to comment are on clicking comments/replies link
|
258 |
* Added : Filter hooks on email fields
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UC44WQM5XJFPA
|
4 |
Tags: wordpress comments, ajax comments, ajax, live update, theme, post comments, comments box, community, discussion, discuss, comment form, reply, comments, discussions, comment template, activity, comment author, comment system, redirect, comment redirect, first commenter, social login
|
5 |
Requires at least: 2.7
|
6 |
+
Tested up to: 4.2.1
|
7 |
+
Stable tag: 2.2.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
130 |
|
131 |
== Changelog ==
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
= 2.2.0 =
|
134 |
* Added: Social Network Login:
|
135 |
Facebook, Google, Twitter, Wordpress, Vkontakte, Mail.ru, Yandex, Odnoklassniki, 500px, Windows Live, Yahoo!, LinkedIn, Reddit, Disqus, Tumblr, Stackoverflow, GitHub, Dribbble, Instagram, Foursquare, Steam, Twitch.tv, Mixi, Goodreads, Skyrock, Last.fm, AOL and PixelPin.
|
142 |
* Fixed Bug: Issues with comment editing
|
143 |
* Fixed Bug: Custom "Phrases" fail to display if apostrophes are used
|
144 |
|
145 |
+
IMPORTANT: If you have a Cache Plugin, please delete all caches after wpDiscuz update.
|
146 |
+
|
147 |
= 2.1.10 =
|
148 |
* Fixed Bug: First comment redirection without setting the destination page
|
149 |
|
196 |
* Added : Integration with UserPro - User badges under comment author avatar
|
197 |
* Added : Integration with Postmatic for subscriptions and commenting by email
|
198 |
* Added : Persian (fa_IR) language, thanks to Vahid (VSG24)
|
199 |
+
* Added : Russian (ru_RU) language, thanks to OlafKS
|
200 |
* Added : Close pop-up messages by clicking outside of message-box
|
201 |
* Added : Scroll-down to comment are on clicking comments/replies link
|
202 |
* Added : Filter hooks on email fields
|
wc-css.php
CHANGED
@@ -9,12 +9,12 @@ class WC_CSS {
|
|
9 |
}
|
10 |
|
11 |
/**
|
12 |
-
* init
|
13 |
*/
|
14 |
public function init_styles() {
|
15 |
if (is_singular()) {
|
16 |
?>
|
17 |
-
<style type="text/css"> .wc_new_comment{ background:<?php echo $this->wc_options_serialized->wc_author_title_color; ?>;} #wpcomm .wc_new_comment_and_replies .wc_new_reply{background:<?php echo $this->wc_options_serialized->wc_author_title_color; ?>;}#wpcomm .wc-form-wrapper{background:<?php echo isset($this->wc_options_serialized->wc_form_bg_color) ? $this->wc_options_serialized->wc_form_bg_color : '#f9f9f9'; ?>;} #wpcomm .wc_manage_subscribtions {color: <?php echo $this->wc_options_serialized->wc_author_title_color; ?>; }#wpcomm textarea,
|
18 |
<?php
|
19 |
}
|
20 |
}
|
9 |
}
|
10 |
|
11 |
/**
|
12 |
+
* init woo discuss styles
|
13 |
*/
|
14 |
public function init_styles() {
|
15 |
if (is_singular()) {
|
16 |
?>
|
17 |
+
<style type="text/css"> .wc_new_comment{ background:<?php echo $this->wc_options_serialized->wc_author_title_color; ?>;} #wpcomm .wc_new_comment_and_replies .wc_new_reply{background:<?php echo $this->wc_options_serialized->wc_author_title_color; ?>;}#wpcomm .wc-form-wrapper{background:<?php echo isset($this->wc_options_serialized->wc_form_bg_color) ? $this->wc_options_serialized->wc_form_bg_color : '#f9f9f9'; ?>;} #wpcomm .wc_manage_subscribtions {color: <?php echo $this->wc_options_serialized->wc_author_title_color; ?>; }#wpcomm textarea, input[type="text"], input[type="email"]{ border:<?php echo $this->wc_options_serialized->wc_input_border_color; ?> 1px solid;}#wpcomm .wc-comment .wc-comment-right{ background:<?php echo $this->wc_options_serialized->wc_comment_bg_color; ?>;} #wpcomm .wc-reply .wc-comment-right{ background:<?php echo $this->wc_options_serialized->wc_reply_bg_color; ?>; }#wpcomm .wc-comment-text{ font-size:<?php echo isset($this->wc_options_serialized->wc_comment_text_size) ? $this->wc_options_serialized->wc_comment_text_size : '14px'; ?>;color:<?php echo $this->wc_options_serialized->wc_comment_text_color; ?>;} #wpcomm .wc-comment-author{ color:<?php echo $this->wc_options_serialized->wc_author_title_color; ?>; }#wpcomm .wc-comment-author a{ color:<?php echo $this->wc_options_serialized->wc_author_title_color; ?>;} #wpcomm .wc-comment-label{ background:<?php echo $this->wc_options_serialized->wc_author_title_color; ?>; } #wpcomm .wc-comment-footer a, #wpcomm .wc-comment-footer span.wc_editable_comment, #wpcomm .wc-comment-footer span.wc_save_edited_comment, #wpcomm span.wc_cancel_edit { color:<?php echo $this->wc_options_serialized->wc_vote_reply_color; ?>; } #wpcomm .wc-comment-footer .wc-vote-result{ background:<?php echo $this->wc_options_serialized->wc_vote_reply_color; ?>;} #wpcomm .wc-reply-link, #wpcomm .wc-vote-link, #wpcomm .wc-share-link {color: <?php echo $this->wc_options_serialized->wc_vote_reply_color; ?>; }.wc-load-more-submit {border: 1px solid <?php echo $this->wc_options_serialized->wc_input_border_color; ?>;} #wc_openModalFormAction > div#wc_response_info a.close { background: url("<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/x.png'); ?>") no-repeat;}#wpcomm .wc-comment.wc-comment-right.wc_new_loaded_comment {background: <?php echo $this->wc_options_serialized->wc_new_loaded_comment_bg_color; ?>;} <?php echo stripslashes($this->wc_options_serialized->wc_custom_css); ?> </style>
|
18 |
<?php
|
19 |
}
|
20 |
}
|
wc.php
CHANGED
@@ -1,21 +1,20 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
* Text Domain: wpdiscuz
|
11 |
-
* Domain Path: /languages/
|
12 |
*/
|
13 |
|
14 |
include_once 'options/wc-options.php';
|
15 |
include_once 'options/wc-options-serialize.php';
|
16 |
-
include_once '
|
17 |
include_once 'includes/wc-db-helper.php';
|
18 |
include_once 'comment-form/tpl-comment.php';
|
|
|
19 |
include_once 'wc-css.php';
|
20 |
|
21 |
class WC_Core {
|
@@ -32,12 +31,13 @@ class WC_Core {
|
|
32 |
public $commetns_count = 0;
|
33 |
public $comment_count_text;
|
34 |
public static $PLUGIN_DIRECTORY;
|
|
|
35 |
public $post_type;
|
36 |
public $wc_version_slug = 'wc_plugin_version';
|
37 |
public $wc_user_agent = '';
|
38 |
|
39 |
function __construct() {
|
40 |
-
$this->wc_user_agent =
|
41 |
add_action('plugins_loaded', array(&$this, 'load_wpdiscuz_text_domain'));
|
42 |
add_action('init', array(&$this, 'init_plugin_dir_name'), 1);
|
43 |
|
@@ -50,10 +50,8 @@ class WC_Core {
|
|
50 |
$this->wc_helper = new WC_Helper($this->wc_options_serialized);
|
51 |
$this->wc_css = new WC_CSS($this->wc_options_serialized);
|
52 |
$this->comment_tpl_builder = new WC_Comment_Template_Builder($this->wc_helper, $this->wc_db_helper, $this->wc_options, $this->wc_options_serialized);
|
53 |
-
|
54 |
-
|
55 |
-
add_action('init', array(&$this, 'register_session'), 2);
|
56 |
-
}
|
57 |
add_action('admin_init', array(&$this, 'wc_plugin_new_version'), 2);
|
58 |
|
59 |
add_action('admin_enqueue_scripts', array(&$this, 'admin_page_styles_scripts'), 2315);
|
@@ -123,11 +121,11 @@ class WC_Core {
|
|
123 |
} else {
|
124 |
update_option($this->wc_version_slug, $wc_plugin_data['Version']);
|
125 |
}
|
126 |
-
if (version_compare($wc_version, '2.1.2', '<=')
|
127 |
$this->wc_db_helper->wc_alter_phrases_table();
|
128 |
}
|
129 |
|
130 |
-
if (version_compare($wc_version, '2.1.7', '<=')
|
131 |
$this->wc_db_helper->wc_alter_voting_table();
|
132 |
}
|
133 |
}
|
@@ -154,7 +152,7 @@ class WC_Core {
|
|
154 |
*/
|
155 |
|
156 |
public function register_session() {
|
157 |
-
if (!session_id()
|
158 |
@session_start();
|
159 |
}
|
160 |
}
|
@@ -190,9 +188,7 @@ class WC_Core {
|
|
190 |
public function add_plugin_options_page() {
|
191 |
if (function_exists('add_options_page')) {
|
192 |
add_menu_page('WpDiscuz', 'WpDiscuz', 'manage_options', 'wpdiscuz_options_page', array(&$this->wc_options, 'main_options_form'), plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/plugin-icon/plugin-icon-20.png'), 1246);
|
193 |
-
|
194 |
-
add_submenu_page('wpdiscuz_options_page', 'Phrases', 'Phrases', 'manage_options', 'wpdiscuz_phrases_page', array(&$this->wc_options, 'phrases_options_form'));
|
195 |
-
}
|
196 |
}
|
197 |
}
|
198 |
|
@@ -200,10 +196,6 @@ class WC_Core {
|
|
200 |
* Styles and scripts registration to use on front page
|
201 |
*/
|
202 |
public function front_end_styles_scripts() {
|
203 |
-
|
204 |
-
if(!$this->wc_options_serialized->wc_load_js_css_on_home && (is_home() || is_front_page())){
|
205 |
-
return;
|
206 |
-
}
|
207 |
if (is_singular()) {
|
208 |
$u_agent = $_SERVER['HTTP_USER_AGENT'];
|
209 |
|
@@ -272,6 +264,9 @@ class WC_Core {
|
|
272 |
wp_register_style('wpdiscuz-options-css', plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/css/options-css.min.css'));
|
273 |
wp_enqueue_style('wpdiscuz-options-css');
|
274 |
|
|
|
|
|
|
|
275 |
wp_register_script('wpdiscuz-scripts-js', plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/js/wc-scripts.min.js'), array('jquery'));
|
276 |
wp_enqueue_script('wpdiscuz-scripts-js');
|
277 |
|
@@ -312,7 +307,7 @@ class WC_Core {
|
|
312 |
}
|
313 |
}
|
314 |
}
|
315 |
-
$
|
316 |
$website_url = '';
|
317 |
if (is_user_logged_in()) {
|
318 |
$user_id = get_current_user_id();
|
@@ -323,7 +318,7 @@ class WC_Core {
|
|
323 |
if ($this->wc_options_serialized->wc_is_name_field_required) {
|
324 |
$name = filter_input(INPUT_POST, 'name');
|
325 |
} else {
|
326 |
-
$name = !(filter_input(INPUT_POST, 'name')) ? __('Anonymous',
|
327 |
}
|
328 |
if ($this->wc_options_serialized->wc_is_email_field_required) {
|
329 |
$email = filter_input(INPUT_POST, 'email');
|
@@ -334,37 +329,37 @@ class WC_Core {
|
|
334 |
$website_url = filter_input(INPUT_POST, 'website');
|
335 |
}
|
336 |
|
337 |
-
if ($website_url != '' && (strpos($website_url, 'http://') !== '' && strpos($website_url, 'http://') !== 0) && (strpos($website_url, 'https://') !== '' && strpos($website_url, 'https://') !== 0)) {
|
338 |
-
$website_url = 'http://' . $website_url;
|
339 |
-
}
|
340 |
-
if ($website_url != '' && (filter_var($website_url, FILTER_VALIDATE_URL) === false)) {
|
341 |
-
$message_array['code'] = -1;
|
342 |
-
$message_array['message'] = $this->wc_options_serialized->wc_phrases['wc_error_url_text'];
|
343 |
-
echo json_encode($message_array);
|
344 |
-
exit;
|
345 |
-
}
|
346 |
|
347 |
-
$comment_content = wp_kses($comment_content, $this->wc_helper->wc_allowed_tags);
|
348 |
-
$wc_comment_text_max_length = intval($this->wc_options_serialized->wc_comment_text_max_length);
|
349 |
|
350 |
-
if ($
|
351 |
$message_array['code'] = -1;
|
352 |
-
$message_array['message'] = $this->wc_options_serialized->wc_phrases['
|
353 |
echo json_encode($message_array);
|
354 |
exit;
|
355 |
}
|
356 |
|
357 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
|
359 |
$author_ip = WC_Helper::get_real_ip_addr();
|
360 |
-
|
361 |
$new_commentdata = array(
|
362 |
'user_id' => $user_id,
|
363 |
'comment_post_ID' => $comment_post_ID,
|
364 |
'comment_parent' => $comment_parent,
|
365 |
'comment_author' => $name,
|
366 |
'comment_author_email' => $email,
|
367 |
-
'comment_content' => $
|
368 |
'comment_author_url' => $website_url,
|
369 |
'comment_author_IP' => $author_ip,
|
370 |
'comment_agent' => $this->wc_user_agent
|
@@ -386,7 +381,7 @@ class WC_Core {
|
|
386 |
}
|
387 |
} else if ($notification_type == 'all_comment' && !$this->wc_db_helper->wc_has_all_comments_notification($comment_post_ID, $email)) {
|
388 |
$wc_notification_inserted_id = $this->wc_db_helper->wc_add_email_notification($comment_post_ID, $comment_post_ID, $email, 2);
|
389 |
-
} else if ($notification_type == '
|
390 |
$wc_notification_inserted_id = $this->wc_db_helper->wc_add_email_notification($new_comment_id, $comment_post_ID, $email, 3);
|
391 |
}
|
392 |
|
@@ -394,7 +389,7 @@ class WC_Core {
|
|
394 |
$this->wc_confirm_email_sender($wc_notification_inserted_id, $email, $comment_post_ID, $new_comment_id, $notification_type);
|
395 |
}
|
396 |
|
397 |
-
$new_comment = get_comment($new_comment_id, OBJECT);
|
398 |
if ($held_moderate) {
|
399 |
$message_array['code'] = -2;
|
400 |
$message_array['message'] = $this->wc_options_serialized->wc_phrases['wc_held_for_moderate'];
|
@@ -443,8 +438,10 @@ class WC_Core {
|
|
443 |
if ($this->wc_options_serialized->wc_voting_buttons_show_hide) {
|
444 |
exit();
|
445 |
}
|
446 |
-
|
447 |
-
$this->
|
|
|
|
|
448 |
$messageArray = array();
|
449 |
$messageArray['code'] = -1;
|
450 |
$comment_id = '';
|
@@ -627,7 +624,6 @@ class WC_Core {
|
|
627 |
'max_depth' => $wc_comments_max_depth,
|
628 |
'reverse_top_level' => false,
|
629 |
'echo' => false,
|
630 |
-
'page' => 1,
|
631 |
'wc_visible_parent_comment_ids' => $wc_visible_parent_comment_ids
|
632 |
);
|
633 |
|
@@ -639,7 +635,7 @@ class WC_Core {
|
|
639 |
}
|
640 |
|
641 |
$wc_parent_comments = $this->get_comments_tree($wc_parent_comments, $wc_child_comments);
|
642 |
-
$this->init_wc_comments($wc_parent_comments);
|
643 |
$message_array['wc_last_comment_id'] = max($wc_new_comments_ids);
|
644 |
$message_array['message'] = wp_list_comments($comm_list_args, $wc_parent_comments);
|
645 |
$wc_post_parent_comments_count = $this->wc_db_helper->get_post_parent_comments_count($wc_post_id);
|
@@ -742,7 +738,10 @@ class WC_Core {
|
|
742 |
// MUST BE CHANGED IN NEXT VERSION OF PLUGIN
|
743 |
public function get_wp_comments($comments_offset, $post_id = null, $wc_curr_user_comment_count = 0, $wc_hidden_new_comment_count = 0) {
|
744 |
global $post;
|
745 |
-
$this->
|
|
|
|
|
|
|
746 |
if (!$post_id) {
|
747 |
$post_id = $post->ID;
|
748 |
}
|
@@ -756,14 +755,13 @@ class WC_Core {
|
|
756 |
'per_page' => $comments_offset ? $comments_offset * $wc_comment_count + $wc_curr_user_comment_count : '',
|
757 |
'max_depth' => $wc_comments_max_depth,
|
758 |
'reverse_top_level' => false,
|
759 |
-
'page' => 1,
|
760 |
'echo' => false
|
761 |
);
|
762 |
|
763 |
$wc_wp_comments = array();
|
764 |
$comments = get_comments(array('post_id' => $post_id, 'status' => 'approve', 'order' => $wc_comment_list_order));
|
765 |
-
$this->init_wc_comments($comments);
|
766 |
-
$wc_wp_comments['wc_list'] = wp_list_comments($comm_list_args, $
|
767 |
$wc_button_comments_count_style = $wc_hidden_new_comment_count > 0 ? "inline-block" : "none";
|
768 |
|
769 |
if ($this->wc_parent_comments_count > $this->wc_options_serialized->wc_comment_count * $comments_offset + $wc_curr_user_comment_count && $comments_offset) {
|
@@ -799,7 +797,6 @@ class WC_Core {
|
|
799 |
$post_id = intval($_POST['wc_post_id']);
|
800 |
$message_array = array();
|
801 |
if ($post_id) {
|
802 |
-
$this->wc_helper->get_comment_author_avatar();
|
803 |
$wc_limit = $c_offset ? $c_offset * $this->wc_options_serialized->wc_comment_count : $this->wc_db_helper->get_comments_count($post_id);
|
804 |
$wc_last_comment_id = isset($_POST['wc_last_comment_id']) ? $_POST['wc_last_comment_id'] : 0;
|
805 |
$wc_curr_user_comment_count = isset($_POST['wc_curr_user_comment_count']) ? $_POST['wc_curr_user_comment_count'] : 0;
|
@@ -826,13 +823,16 @@ class WC_Core {
|
|
826 |
* initialize WPC comments
|
827 |
*/
|
828 |
public function init_wc_comments($comments) {
|
|
|
829 |
if ($comments) {
|
830 |
foreach ($comments as $comment) {
|
831 |
if (!$comment->comment_parent) {
|
832 |
$this->wc_parent_comments_count++;
|
833 |
}
|
|
|
834 |
}
|
835 |
}
|
|
|
836 |
}
|
837 |
|
838 |
public function wc_comment_callback($comment, $args, $depth) {
|
@@ -859,7 +859,7 @@ class WC_Core {
|
|
859 |
|
860 |
public function init_current_post_type() {
|
861 |
global $post;
|
862 |
-
if ($post && in_array($post->post_type, $this->wc_options_serialized->wc_post_types)
|
863 |
add_filter('comments_template', array(&$this, 'remove_comments_template_on_pages'), 10);
|
864 |
}
|
865 |
}
|
@@ -932,8 +932,8 @@ class WC_Core {
|
|
932 |
*/
|
933 |
public function wc_notify_on_new_reply($parent_comment_id, $new_comment_id, $email) {
|
934 |
$emails_array = $this->wc_db_helper->wc_get_post_new_reply_notification($parent_comment_id, $email);
|
935 |
-
$subject = ($this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject'] :
|
936 |
-
$message = ($this->wc_options_serialized->wc_phrases['wc_new_reply_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_message'] :
|
937 |
foreach ($emails_array as $e_row) {
|
938 |
$this->wc_email_sender($e_row, $new_comment_id, $subject, $message);
|
939 |
}
|
@@ -943,10 +943,10 @@ class WC_Core {
|
|
943 |
$curr_post = get_post($post_id);
|
944 |
$curr_post_author = get_userdata($curr_post->post_author);
|
945 |
|
946 |
-
$subject = isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_subject'] : __('Subscribe Confirmation',
|
947 |
-
$message = isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_message'] : __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.',
|
948 |
|
949 |
-
if ($subscribtion_type == 'post' || $subscribtion_type
|
950 |
$comment_or_post_subscrib_id = $post_id;
|
951 |
} else {
|
952 |
$comment_or_post_subscrib_id = $new_comment_id;
|
@@ -969,7 +969,6 @@ class WC_Core {
|
|
969 |
* send email
|
970 |
*/
|
971 |
public function wc_email_sender($email_data, $wc_new_comment_id, $subject, $message) {
|
972 |
-
global $wp_rewrite;
|
973 |
$comment = get_comment($wc_new_comment_id);
|
974 |
$curr_post = get_post($comment->comment_post_ID);
|
975 |
$curr_post_author = get_userdata($curr_post->post_author);
|
@@ -984,8 +983,7 @@ class WC_Core {
|
|
984 |
|
985 |
$wc_new_comment_content = $comment->comment_content;
|
986 |
$permalink = get_comment_link($wc_new_comment_id);
|
987 |
-
$unsubscribe_url =
|
988 |
-
$unsubscribe_url .= "wpdiscuzSubscribeID=" . $email_data['id'] . "&key=" . $email_data['activation_key'] . '&#wc_unsubscribe_message';
|
989 |
$message .= "<br/><br/><a href='$permalink'>$permalink</a>";
|
990 |
$message .= "<br/><br/>$wc_new_comment_content";
|
991 |
$message .= "<br/><br/><a href='$unsubscribe_url'>" . $this->wc_options_serialized->wc_phrases['wc_unsubscribe'] . "</a>";
|
@@ -1022,10 +1020,8 @@ class WC_Core {
|
|
1022 |
|
1023 |
// Add settings link on plugin page
|
1024 |
public function wc_add_plugin_settings_link($links) {
|
1025 |
-
$settings_link = '<a href="' . admin_url() . 'admin.php?page=wpdiscuz_options_page">' . __('Settings', '
|
1026 |
-
|
1027 |
-
$settings_link .= ' | <a href="' . admin_url() . 'admin.php?page=wpdiscuz_phrases_page">' . __('Phrases', 'wpdiscuz') . '</a>';
|
1028 |
-
}
|
1029 |
array_unshift($links, $settings_link);
|
1030 |
return $links;
|
1031 |
}
|
@@ -1034,21 +1030,17 @@ class WC_Core {
|
|
1034 |
* get comment text from db
|
1035 |
*/
|
1036 |
public function wc_get_editable_comment_content() {
|
1037 |
-
$current_user = wp_get_current_user();
|
1038 |
$message_array = array();
|
1039 |
$comment_ID = intval(filter_input(INPUT_POST, 'comment_id'));
|
1040 |
if ($comment_ID) {
|
1041 |
$comment = get_comment($comment_ID);
|
1042 |
-
if (
|
1043 |
$message_array['code'] = 1;
|
1044 |
$message_array['message'] = $comment->comment_content;
|
1045 |
} else {
|
1046 |
$message_array['code'] = -1;
|
1047 |
$message_array['phrase_message'] = $this->wc_options_serialized->wc_phrases['wc_comment_edit_not_possible'];
|
1048 |
}
|
1049 |
-
} else {
|
1050 |
-
$message_array['code'] = -1;
|
1051 |
-
$message_array['phrase_message'] = $this->wc_options_serialized->wc_phrases['wc_comment_edit_not_possible'];
|
1052 |
}
|
1053 |
echo json_encode($message_array);
|
1054 |
exit();
|
@@ -1061,17 +1053,26 @@ class WC_Core {
|
|
1061 |
$message_array = array();
|
1062 |
$comment_ID = intval(filter_input(INPUT_POST, 'comment_id'));
|
1063 |
$comment_content = filter_input(INPUT_POST, 'comment_content');
|
|
|
1064 |
$comment = get_comment($comment_ID);
|
1065 |
-
|
1066 |
$trimmed_comment_content = trim($comment_content);
|
1067 |
// Change messages in next version - shoud be diff. messages for each specific error
|
1068 |
-
if ($trimmed_comment_content
|
1069 |
if ($trimmed_comment_content != $comment->comment_content) {
|
1070 |
-
$comment_content = wp_kses($comment_content,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
|
1072 |
$author_ip = WC_Helper::get_real_ip_addr();
|
1073 |
-
$this->wc_user_agent =
|
1074 |
-
$comment_content = addslashes($comment_content);
|
1075 |
$commentarr = array(
|
1076 |
'comment_ID' => $comment_ID,
|
1077 |
'comment_content' => apply_filters('pre_comment_content', $comment_content),
|
@@ -1090,11 +1091,7 @@ class WC_Core {
|
|
1090 |
$message_array['code'] = -2;
|
1091 |
$message_array['phrase_message'] = $this->wc_options_serialized->wc_phrases['wc_comment_not_edited'];
|
1092 |
}
|
1093 |
-
} else {
|
1094 |
-
$message_array['code'] = -1;
|
1095 |
-
$message_array['phrase_message'] = $this->wc_options_serialized->wc_phrases['wc_comment_edit_not_possible'];
|
1096 |
}
|
1097 |
-
|
1098 |
echo json_encode($message_array);
|
1099 |
exit;
|
1100 |
}
|
1 |
<?php
|
2 |
|
3 |
+
/*
|
4 |
+
Plugin Name: wpDiscuz - Wordpress Comments
|
5 |
+
Description: Better comment system. Wordpress post comments and discussion plugin. Allows your visitors discuss, vote for comments and share.
|
6 |
+
Version: 2.2.0
|
7 |
+
Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
|
8 |
+
Author URI: http://www.gvectors.com/
|
9 |
+
Plugin URI: http://www.gvectors.com/wpdiscuz/
|
|
|
|
|
10 |
*/
|
11 |
|
12 |
include_once 'options/wc-options.php';
|
13 |
include_once 'options/wc-options-serialize.php';
|
14 |
+
include_once 'helper/wc-helper.php';
|
15 |
include_once 'includes/wc-db-helper.php';
|
16 |
include_once 'comment-form/tpl-comment.php';
|
17 |
+
include_once 'dto/wc-comment.php';
|
18 |
include_once 'wc-css.php';
|
19 |
|
20 |
class WC_Core {
|
31 |
public $commetns_count = 0;
|
32 |
public $comment_count_text;
|
33 |
public static $PLUGIN_DIRECTORY;
|
34 |
+
public static $TEXT_DOMAIN = 'wpdiscuz';
|
35 |
public $post_type;
|
36 |
public $wc_version_slug = 'wc_plugin_version';
|
37 |
public $wc_user_agent = '';
|
38 |
|
39 |
function __construct() {
|
40 |
+
$this->wc_user_agent = $_SERVER['HTTP_USER_AGENT'];
|
41 |
add_action('plugins_loaded', array(&$this, 'load_wpdiscuz_text_domain'));
|
42 |
add_action('init', array(&$this, 'init_plugin_dir_name'), 1);
|
43 |
|
50 |
$this->wc_helper = new WC_Helper($this->wc_options_serialized);
|
51 |
$this->wc_css = new WC_CSS($this->wc_options_serialized);
|
52 |
$this->comment_tpl_builder = new WC_Comment_Template_Builder($this->wc_helper, $this->wc_db_helper, $this->wc_options, $this->wc_options_serialized);
|
53 |
+
|
54 |
+
add_action('init', array(&$this, 'register_session'), 2);
|
|
|
|
|
55 |
add_action('admin_init', array(&$this, 'wc_plugin_new_version'), 2);
|
56 |
|
57 |
add_action('admin_enqueue_scripts', array(&$this, 'admin_page_styles_scripts'), 2315);
|
121 |
} else {
|
122 |
update_option($this->wc_version_slug, $wc_plugin_data['Version']);
|
123 |
}
|
124 |
+
if (version_compare($wc_version, '2.1.2', '<=')) {
|
125 |
$this->wc_db_helper->wc_alter_phrases_table();
|
126 |
}
|
127 |
|
128 |
+
if (version_compare($wc_version, '2.1.7', '<=')) {
|
129 |
$this->wc_db_helper->wc_alter_voting_table();
|
130 |
}
|
131 |
}
|
152 |
*/
|
153 |
|
154 |
public function register_session() {
|
155 |
+
if (!session_id()) {
|
156 |
@session_start();
|
157 |
}
|
158 |
}
|
188 |
public function add_plugin_options_page() {
|
189 |
if (function_exists('add_options_page')) {
|
190 |
add_menu_page('WpDiscuz', 'WpDiscuz', 'manage_options', 'wpdiscuz_options_page', array(&$this->wc_options, 'main_options_form'), plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/plugin-icon/plugin-icon-20.png'), 1246);
|
191 |
+
add_submenu_page('wpdiscuz_options_page', 'Phrases', 'Phrases', 'manage_options', 'wpdiscuz_phrases_page', array(&$this->wc_options, 'phrases_options_form'));
|
|
|
|
|
192 |
}
|
193 |
}
|
194 |
|
196 |
* Styles and scripts registration to use on front page
|
197 |
*/
|
198 |
public function front_end_styles_scripts() {
|
|
|
|
|
|
|
|
|
199 |
if (is_singular()) {
|
200 |
$u_agent = $_SERVER['HTTP_USER_AGENT'];
|
201 |
|
264 |
wp_register_style('wpdiscuz-options-css', plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/css/options-css.min.css'));
|
265 |
wp_enqueue_style('wpdiscuz-options-css');
|
266 |
|
267 |
+
wp_register_script('wpdiscuz-option-js', plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/js/options-js.min.js'), array('jquery'));
|
268 |
+
wp_enqueue_script('wpdiscuz-option-js');
|
269 |
+
|
270 |
wp_register_script('wpdiscuz-scripts-js', plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/js/wc-scripts.min.js'), array('jquery'));
|
271 |
wp_enqueue_script('wpdiscuz-scripts-js');
|
272 |
|
307 |
}
|
308 |
}
|
309 |
}
|
310 |
+
$comment = filter_input(INPUT_POST, 'comment');
|
311 |
$website_url = '';
|
312 |
if (is_user_logged_in()) {
|
313 |
$user_id = get_current_user_id();
|
318 |
if ($this->wc_options_serialized->wc_is_name_field_required) {
|
319 |
$name = filter_input(INPUT_POST, 'name');
|
320 |
} else {
|
321 |
+
$name = !(filter_input(INPUT_POST, 'name')) ? __('Anonymous', WC_Core::$TEXT_DOMAIN) : filter_input(INPUT_POST, 'name');
|
322 |
}
|
323 |
if ($this->wc_options_serialized->wc_is_email_field_required) {
|
324 |
$email = filter_input(INPUT_POST, 'email');
|
329 |
$website_url = filter_input(INPUT_POST, 'website');
|
330 |
}
|
331 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
332 |
|
|
|
|
|
333 |
|
334 |
+
if (!filter_var($website_url, FILTER_VALIDATE_URL) === false) {
|
335 |
$message_array['code'] = -1;
|
336 |
+
$message_array['message'] = $this->wc_options_serialized->wc_phrases['wc_error_url_text'];
|
337 |
echo json_encode($message_array);
|
338 |
exit;
|
339 |
}
|
340 |
|
341 |
+
$comment = wp_kses($comment, array(
|
342 |
+
'br' => array(),
|
343 |
+
'a' => array('href' => array(), 'title' => array()),
|
344 |
+
'i' => array(),
|
345 |
+
'b' => array(),
|
346 |
+
'u' => array(),
|
347 |
+
'strong' => array(),
|
348 |
+
'p' => array(),
|
349 |
+
'img' => array('src' => array(), 'width' => array(), 'height' => array(), 'alt' => array())
|
350 |
+
));
|
351 |
+
|
352 |
+
if ($name && filter_var($email, FILTER_VALIDATE_EMAIL) && $comment && filter_var($comment_post_ID)) {
|
353 |
|
354 |
$author_ip = WC_Helper::get_real_ip_addr();
|
355 |
+
|
356 |
$new_commentdata = array(
|
357 |
'user_id' => $user_id,
|
358 |
'comment_post_ID' => $comment_post_ID,
|
359 |
'comment_parent' => $comment_parent,
|
360 |
'comment_author' => $name,
|
361 |
'comment_author_email' => $email,
|
362 |
+
'comment_content' => $comment,
|
363 |
'comment_author_url' => $website_url,
|
364 |
'comment_author_IP' => $author_ip,
|
365 |
'comment_agent' => $this->wc_user_agent
|
381 |
}
|
382 |
} else if ($notification_type == 'all_comment' && !$this->wc_db_helper->wc_has_all_comments_notification($comment_post_ID, $email)) {
|
383 |
$wc_notification_inserted_id = $this->wc_db_helper->wc_add_email_notification($comment_post_ID, $comment_post_ID, $email, 2);
|
384 |
+
} else if ($notification_type == 'reply' && !$this->wc_db_helper->wc_has_comment_notification($comment_post_ID, $new_comment_id, $email)) {
|
385 |
$wc_notification_inserted_id = $this->wc_db_helper->wc_add_email_notification($new_comment_id, $comment_post_ID, $email, 3);
|
386 |
}
|
387 |
|
389 |
$this->wc_confirm_email_sender($wc_notification_inserted_id, $email, $comment_post_ID, $new_comment_id, $notification_type);
|
390 |
}
|
391 |
|
392 |
+
$new_comment = new WC_Comment(get_comment($new_comment_id, OBJECT));
|
393 |
if ($held_moderate) {
|
394 |
$message_array['code'] = -2;
|
395 |
$message_array['message'] = $this->wc_options_serialized->wc_phrases['wc_held_for_moderate'];
|
438 |
if ($this->wc_options_serialized->wc_voting_buttons_show_hide) {
|
439 |
exit();
|
440 |
}
|
441 |
+
|
442 |
+
if ($this->wc_db_helper->is_phrase_exists('wc_leave_a_reply_text')) {
|
443 |
+
$this->wc_options_serialized->wc_phrases = $this->wc_db_helper->get_phrases();
|
444 |
+
}
|
445 |
$messageArray = array();
|
446 |
$messageArray['code'] = -1;
|
447 |
$comment_id = '';
|
624 |
'max_depth' => $wc_comments_max_depth,
|
625 |
'reverse_top_level' => false,
|
626 |
'echo' => false,
|
|
|
627 |
'wc_visible_parent_comment_ids' => $wc_visible_parent_comment_ids
|
628 |
);
|
629 |
|
635 |
}
|
636 |
|
637 |
$wc_parent_comments = $this->get_comments_tree($wc_parent_comments, $wc_child_comments);
|
638 |
+
$wc_parent_comments = $this->init_wc_comments($wc_parent_comments);
|
639 |
$message_array['wc_last_comment_id'] = max($wc_new_comments_ids);
|
640 |
$message_array['message'] = wp_list_comments($comm_list_args, $wc_parent_comments);
|
641 |
$wc_post_parent_comments_count = $this->wc_db_helper->get_post_parent_comments_count($wc_post_id);
|
738 |
// MUST BE CHANGED IN NEXT VERSION OF PLUGIN
|
739 |
public function get_wp_comments($comments_offset, $post_id = null, $wc_curr_user_comment_count = 0, $wc_hidden_new_comment_count = 0) {
|
740 |
global $post;
|
741 |
+
if ($this->wc_db_helper->is_phrase_exists('wc_leave_a_reply_text')) {
|
742 |
+
$this->wc_options_serialized->wc_phrases = $this->wc_db_helper->get_phrases();
|
743 |
+
}
|
744 |
+
|
745 |
if (!$post_id) {
|
746 |
$post_id = $post->ID;
|
747 |
}
|
755 |
'per_page' => $comments_offset ? $comments_offset * $wc_comment_count + $wc_curr_user_comment_count : '',
|
756 |
'max_depth' => $wc_comments_max_depth,
|
757 |
'reverse_top_level' => false,
|
|
|
758 |
'echo' => false
|
759 |
);
|
760 |
|
761 |
$wc_wp_comments = array();
|
762 |
$comments = get_comments(array('post_id' => $post_id, 'status' => 'approve', 'order' => $wc_comment_list_order));
|
763 |
+
$wc_comments = $this->init_wc_comments($comments);
|
764 |
+
$wc_wp_comments['wc_list'] = wp_list_comments($comm_list_args, $wc_comments);
|
765 |
$wc_button_comments_count_style = $wc_hidden_new_comment_count > 0 ? "inline-block" : "none";
|
766 |
|
767 |
if ($this->wc_parent_comments_count > $this->wc_options_serialized->wc_comment_count * $comments_offset + $wc_curr_user_comment_count && $comments_offset) {
|
797 |
$post_id = intval($_POST['wc_post_id']);
|
798 |
$message_array = array();
|
799 |
if ($post_id) {
|
|
|
800 |
$wc_limit = $c_offset ? $c_offset * $this->wc_options_serialized->wc_comment_count : $this->wc_db_helper->get_comments_count($post_id);
|
801 |
$wc_last_comment_id = isset($_POST['wc_last_comment_id']) ? $_POST['wc_last_comment_id'] : 0;
|
802 |
$wc_curr_user_comment_count = isset($_POST['wc_curr_user_comment_count']) ? $_POST['wc_curr_user_comment_count'] : 0;
|
823 |
* initialize WPC comments
|
824 |
*/
|
825 |
public function init_wc_comments($comments) {
|
826 |
+
$wc_comments = array();
|
827 |
if ($comments) {
|
828 |
foreach ($comments as $comment) {
|
829 |
if (!$comment->comment_parent) {
|
830 |
$this->wc_parent_comments_count++;
|
831 |
}
|
832 |
+
$wc_comments[] = new WC_Comment($comment);
|
833 |
}
|
834 |
}
|
835 |
+
return $wc_comments;
|
836 |
}
|
837 |
|
838 |
public function wc_comment_callback($comment, $args, $depth) {
|
859 |
|
860 |
public function init_current_post_type() {
|
861 |
global $post;
|
862 |
+
if ($post && in_array($post->post_type, $this->wc_options_serialized->wc_post_types)) {
|
863 |
add_filter('comments_template', array(&$this, 'remove_comments_template_on_pages'), 10);
|
864 |
}
|
865 |
}
|
932 |
*/
|
933 |
public function wc_notify_on_new_reply($parent_comment_id, $new_comment_id, $email) {
|
934 |
$emails_array = $this->wc_db_helper->wc_get_post_new_reply_notification($parent_comment_id, $email);
|
935 |
+
$subject = ($this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject'] : 'New Reply';
|
936 |
+
$message = ($this->wc_options_serialized->wc_phrases['wc_new_reply_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_message'] : 'New reply on the discussion section you\'ve been interested in';
|
937 |
foreach ($emails_array as $e_row) {
|
938 |
$this->wc_email_sender($e_row, $new_comment_id, $subject, $message);
|
939 |
}
|
943 |
$curr_post = get_post($post_id);
|
944 |
$curr_post_author = get_userdata($curr_post->post_author);
|
945 |
|
946 |
+
$subject = isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_subject'] : __('Subscribe Confirmation', WC_Core::$TEXT_DOMAIN);
|
947 |
+
$message = isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_message'] : __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.', WC_Core::$TEXT_DOMAIN);
|
948 |
|
949 |
+
if ($subscribtion_type == 'post' || $subscribtion_type = '') {
|
950 |
$comment_or_post_subscrib_id = $post_id;
|
951 |
} else {
|
952 |
$comment_or_post_subscrib_id = $new_comment_id;
|
969 |
* send email
|
970 |
*/
|
971 |
public function wc_email_sender($email_data, $wc_new_comment_id, $subject, $message) {
|
|
|
972 |
$comment = get_comment($wc_new_comment_id);
|
973 |
$curr_post = get_post($comment->comment_post_ID);
|
974 |
$curr_post_author = get_userdata($curr_post->post_author);
|
983 |
|
984 |
$wc_new_comment_content = $comment->comment_content;
|
985 |
$permalink = get_comment_link($wc_new_comment_id);
|
986 |
+
$unsubscribe_url = get_permalink($comment->comment_post_ID) . "?wpdiscuzSubscribeID=" . $email_data['id'] . "&key=" . $email_data['activation_key'] . '&#wc_unsubscribe_message';
|
|
|
987 |
$message .= "<br/><br/><a href='$permalink'>$permalink</a>";
|
988 |
$message .= "<br/><br/>$wc_new_comment_content";
|
989 |
$message .= "<br/><br/><a href='$unsubscribe_url'>" . $this->wc_options_serialized->wc_phrases['wc_unsubscribe'] . "</a>";
|
1020 |
|
1021 |
// Add settings link on plugin page
|
1022 |
public function wc_add_plugin_settings_link($links) {
|
1023 |
+
$settings_link = '<a href="' . admin_url() . 'admin.php?page=wpdiscuz_options_page">' . __('Settings', 'default') . '</a> |';
|
1024 |
+
$settings_link .= '<a href="' . admin_url() . 'admin.php?page=wpdiscuz_phrases_page">' . __('Phrases', 'default') . '</a>';
|
|
|
|
|
1025 |
array_unshift($links, $settings_link);
|
1026 |
return $links;
|
1027 |
}
|
1030 |
* get comment text from db
|
1031 |
*/
|
1032 |
public function wc_get_editable_comment_content() {
|
|
|
1033 |
$message_array = array();
|
1034 |
$comment_ID = intval(filter_input(INPUT_POST, 'comment_id'));
|
1035 |
if ($comment_ID) {
|
1036 |
$comment = get_comment($comment_ID);
|
1037 |
+
if ($this->wc_helper->is_comment_editable($comment)) {
|
1038 |
$message_array['code'] = 1;
|
1039 |
$message_array['message'] = $comment->comment_content;
|
1040 |
} else {
|
1041 |
$message_array['code'] = -1;
|
1042 |
$message_array['phrase_message'] = $this->wc_options_serialized->wc_phrases['wc_comment_edit_not_possible'];
|
1043 |
}
|
|
|
|
|
|
|
1044 |
}
|
1045 |
echo json_encode($message_array);
|
1046 |
exit();
|
1053 |
$message_array = array();
|
1054 |
$comment_ID = intval(filter_input(INPUT_POST, 'comment_id'));
|
1055 |
$comment_content = filter_input(INPUT_POST, 'comment_content');
|
1056 |
+
$comment_depth = intval(filter_input(INPUT_POST, 'comment_depth'));
|
1057 |
$comment = get_comment($comment_ID);
|
1058 |
+
|
1059 |
$trimmed_comment_content = trim($comment_content);
|
1060 |
// Change messages in next version - shoud be diff. messages for each specific error
|
1061 |
+
if ($trimmed_comment_content) {
|
1062 |
if ($trimmed_comment_content != $comment->comment_content) {
|
1063 |
+
$comment_content = wp_kses($comment_content, array(
|
1064 |
+
'br' => array(),
|
1065 |
+
'a' => array('href' => array(), 'title' => array(), 'target' => array(), 'rel' => array(), 'download' => array(), 'hreflang' => array(), 'media' => array(), 'type' => array()),
|
1066 |
+
'i' => array(),
|
1067 |
+
'b' => array(),
|
1068 |
+
'u' => array(),
|
1069 |
+
'strong' => array(),
|
1070 |
+
'p' => array(),
|
1071 |
+
'img' => array('src' => array(), 'width' => array(), 'height' => array(), 'alt' => array())
|
1072 |
+
));
|
1073 |
|
1074 |
$author_ip = WC_Helper::get_real_ip_addr();
|
1075 |
+
$this->wc_user_agent = $_SERVER['HTTP_USER_AGENT'];
|
|
|
1076 |
$commentarr = array(
|
1077 |
'comment_ID' => $comment_ID,
|
1078 |
'comment_content' => apply_filters('pre_comment_content', $comment_content),
|
1091 |
$message_array['code'] = -2;
|
1092 |
$message_array['phrase_message'] = $this->wc_options_serialized->wc_phrases['wc_comment_not_edited'];
|
1093 |
}
|
|
|
|
|
|
|
1094 |
}
|
|
|
1095 |
echo json_encode($message_array);
|
1096 |
exit;
|
1097 |
}
|