Feed & LikeBox For Facebook - Version 2.7.4

Version Description

[11-08-2018] 1. Add Settings, Try Pro link on Plugin's page 2. Add Setting to change language for Like button 3. PO files Updated

Download this release

Release Info

Developer weblizar
Plugin Icon 128x128 Feed & LikeBox For Facebook
Version 2.7.4
Comparing to
See all releases

Code changes from version 2.7.3 to 2.7.4

facebook-by-weblizar.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Feed & LikeBox For Facebook
4
- * Version: 2.7.3
5
  * Description: Display the Facebook Feed and Like box on your website. Its completely customizable, responsive and search engine optimization feeds contents.
6
  * Author: Weblizar
7
  * Author URI: https://www.weblizar.com
@@ -60,6 +60,17 @@ function weblizar_feed_code_script()
60
  }
61
  add_action('wp_enqueue_scripts', 'weblizar_feed_code_script');
62
 
 
 
 
 
 
 
 
 
 
 
 
63
  /*** Load Facebook Like Box widgets ***/
64
  require_once("function/facebook-by-weblizar-widgets.php");
65
  require_once("function/facebook-feed-widget.php");
1
  <?php
2
  /**
3
  * Plugin Name: Feed & LikeBox For Facebook
4
+ * Version: 2.7.4
5
  * Description: Display the Facebook Feed and Like box on your website. Its completely customizable, responsive and search engine optimization feeds contents.
6
  * Author: Weblizar
7
  * Author URI: https://www.weblizar.com
60
  }
61
  add_action('wp_enqueue_scripts', 'weblizar_feed_code_script');
62
 
63
+ /*Plugin Setting Link*/
64
+ function weblizar_plugin_add_settings_link( $links ) {
65
+ $fbw_pro_link = '<a href="https://weblizar.com/plugins/facebook-feed-pro/" target="_blank">Try Pro</a>';
66
+ array_unshift($links,$fbw_pro_link);
67
+ $settings_link = '<a href="options-general.php?page=facebooky-by-weblizar">' . __( 'Settings' ) . '</a>';
68
+ array_unshift( $links,$settings_link );
69
+ return $links;
70
+ }
71
+ $plugin_fbw = plugin_basename( __FILE__ );
72
+ add_filter( "plugin_action_links_$plugin_fbw", 'weblizar_plugin_add_settings_link' );
73
+
74
  /*** Load Facebook Like Box widgets ***/
75
  require_once("function/facebook-by-weblizar-widgets.php");
76
  require_once("function/facebook-feed-widget.php");
function/facebook-by-weblizar-data.php CHANGED
@@ -11,7 +11,8 @@ if(isset($_POST['facebook-page-url']) && isset($_POST['fb-app-id'])){
11
  'FbAppId' => $_POST['fb-app-id'],
12
  'ShowBorder' => 'true',
13
  'ShowFaces' => $_POST['show-fan-faces'],
14
- 'ForceWall' => 'false'
 
15
  )
16
  );
17
  update_option("weblizar_facebook_shortcode_settings", $FacebookSettingsArray);
@@ -62,4 +63,9 @@ if(isset($_POST['facebook-page-url']) && isset($_POST['fb-app-id'])){
62
  if ( isset( $FacebookSettings[ 'FbAppId' ] ) ) {
63
  $FbAppId = $FacebookSettings[ 'FbAppId' ];
64
  }
 
 
 
 
 
65
  ?>
11
  'FbAppId' => $_POST['fb-app-id'],
12
  'ShowBorder' => 'true',
13
  'ShowFaces' => $_POST['show-fan-faces'],
14
+ 'ForceWall' => 'false',
15
+ 'weblizar_locale_fb' => $_POST['weblizar_locale_fb']
16
  )
17
  );
18
  update_option("weblizar_facebook_shortcode_settings", $FacebookSettingsArray);
63
  if ( isset( $FacebookSettings[ 'FbAppId' ] ) ) {
64
  $FbAppId = $FacebookSettings[ 'FbAppId' ];
65
  }
66
+
67
+ $weblizar_locale_fb = "en_GB";
68
+ if ( isset( $FacebookSettings[ 'weblizar_locale_fb' ] ) ) {
69
+ $weblizar_locale_fb = $FacebookSettings[ 'weblizar_locale_fb' ];
70
+ }
71
  ?>
function/facebook-by-weblizar-short-code.php CHANGED
@@ -47,14 +47,20 @@ function FacebookLikeBox() {
47
  $FbAppId = '529331510739033';
48
  if ( isset( $FacebookSettings[ 'FbAppId' ] ) ) {
49
  $FbAppId = $FacebookSettings[ 'FbAppId' ];
50
- } ?>
 
 
 
 
 
 
51
  <div id="fb-root"></div>
52
  <script>
53
  (function(d, s, id) {
54
  var js, fjs = d.getElementsByTagName(s)[0];
55
  if (d.getElementById(id)) return;
56
  js = d.createElement(s); js.id = id;
57
- js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.7";
58
  fjs.parentNode.insertBefore(js, fjs);
59
  }(document, 'script', 'facebook-jssdk'));
60
  </script>
47
  $FbAppId = '529331510739033';
48
  if ( isset( $FacebookSettings[ 'FbAppId' ] ) ) {
49
  $FbAppId = $FacebookSettings[ 'FbAppId' ];
50
+ }
51
+
52
+ $weblizar_locale_fb = "en_GB";
53
+ if ( isset( $FacebookSettings[ 'weblizar_locale_fb' ] ) ) {
54
+ $weblizar_locale_fb = $FacebookSettings[ 'weblizar_locale_fb' ];
55
+ }
56
+ ?>
57
  <div id="fb-root"></div>
58
  <script>
59
  (function(d, s, id) {
60
  var js, fjs = d.getElementsByTagName(s)[0];
61
  if (d.getElementById(id)) return;
62
  js = d.createElement(s); js.id = id;
63
+ js.src = "//connect.facebook.net/<?php echo $weblizar_locale_fb; ?>/sdk.js#xfbml=1&version=v2.7";
64
  fjs.parentNode.insertBefore(js, fjs);
65
  }(document, 'script', 'facebook-jssdk'));
66
  </script>
function/facebook-by-weblizar-widgets.php CHANGED
@@ -47,6 +47,7 @@ class WeblizarFacebook extends WP_Widget {
47
  $ShowFaces = apply_filters( 'facebook_show_faces', $instance['ShowFaces'] );
48
  $Stream = apply_filters( 'facebook_stream', $instance['Stream'] );
49
  $Width = apply_filters( 'facebook_width', $instance['Width'] );
 
50
  ?>
51
  <style>
52
  @media (max-width:767px) {
@@ -71,7 +72,7 @@ class WeblizarFacebook extends WP_Widget {
71
  var js, fjs = d.getElementsByTagName(s)[0];
72
  if (d.getElementById(id)) return;
73
  js = d.createElement(s); js.id = id;
74
- js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.4";
75
  fjs.parentNode.insertBefore(js, fjs);
76
  }(document, 'script', 'facebook-jssdk'));</script>
77
  <div class="fb-like-box" style="background-color: auto;" data-small-header="<?php echo $Header; ?>" data-height="<?php echo $Height; ?>" data-href="<?php echo $FacebookPageURL; ?>" data-show-border="<?php echo $ShowBorder; ?>" data-show-faces="<?php echo $ShowFaces; ?>" data-stream="<?php echo $Stream; ?>" data-width="<?php echo $Width; ?>" data-force-wall="<?php echo $ForceWall; ?>"></div>
@@ -144,6 +145,12 @@ class WeblizarFacebook extends WP_Widget {
144
  if ( isset( $instance[ 'title' ] ) ) {
145
  $title = $instance[ 'title' ];
146
  }
 
 
 
 
 
 
147
  else {
148
  $title = __( 'LikeBox', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN' );
149
  }
@@ -184,6 +191,91 @@ class WeblizarFacebook extends WP_Widget {
184
  <?php _e("Get Your Facebook App. Id",WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?>: <a href="http://weblizar.com/get-facebook-app-id/" target="_blank"><?php _e( 'HERE', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?></a>
185
  </p>
186
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  <p>
188
  <a style="display:block;" target="_new" href="https://wordpress.org/plugins/facebook-by-weblizar/"><img src="<?php echo WEBLIZAR_FACEBOOK_PLUGIN_URL.'images/star.png' ;?>" /> </a>
189
  <a href="https://wordpress.org/plugins/facebook-by-weblizar/" target="_new"> <?php _e("Rate Us on ",WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?> Wordpress.org</a>
@@ -213,6 +305,7 @@ class WeblizarFacebook extends WP_Widget {
213
  $instance['ShowBorder'] = ( ! empty( $new_instance['ShowBorder'] ) ) ? strip_tags( $new_instance['ShowBorder'] ) : 'true';
214
  $instance['ForceWall'] = ( ! empty( $new_instance['ForceWall'] ) ) ? strip_tags( $new_instance['ForceWall'] ) : 'false';
215
  $instance['FbAppId'] = ( ! empty( $new_instance['FbAppId'] ) ) ? strip_tags( $new_instance['FbAppId'] ) : '529331510739033';
 
216
  return $instance;
217
  }
218
  } // class WeblizarFacebook
47
  $ShowFaces = apply_filters( 'facebook_show_faces', $instance['ShowFaces'] );
48
  $Stream = apply_filters( 'facebook_stream', $instance['Stream'] );
49
  $Width = apply_filters( 'facebook_width', $instance['Width'] );
50
+ $weblizar_lang_fb = apply_filters('weblizar_lang_fb', $instance['weblizar_lang_fb']);
51
  ?>
52
  <style>
53
  @media (max-width:767px) {
72
  var js, fjs = d.getElementsByTagName(s)[0];
73
  if (d.getElementById(id)) return;
74
  js = d.createElement(s); js.id = id;
75
+ js.src = "//connect.facebook.net/<?php echo $weblizar_lang_fb; ?>/sdk.js#xfbml=1&version=v2.4";
76
  fjs.parentNode.insertBefore(js, fjs);
77
  }(document, 'script', 'facebook-jssdk'));</script>
78
  <div class="fb-like-box" style="background-color: auto;" data-small-header="<?php echo $Header; ?>" data-height="<?php echo $Height; ?>" data-href="<?php echo $FacebookPageURL; ?>" data-show-border="<?php echo $ShowBorder; ?>" data-show-faces="<?php echo $ShowFaces; ?>" data-stream="<?php echo $Stream; ?>" data-width="<?php echo $Width; ?>" data-force-wall="<?php echo $ForceWall; ?>"></div>
145
  if ( isset( $instance[ 'title' ] ) ) {
146
  $title = $instance[ 'title' ];
147
  }
148
+
149
+ $weblizar_lang_fb = 'en_GB';
150
+ if ( isset( $instance[ 'weblizar_lang_fb' ] ) ) {
151
+ $weblizar_lang_fb = $instance[ 'weblizar_lang_fb' ];
152
+ }
153
+
154
  else {
155
  $title = __( 'LikeBox', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN' );
156
  }
191
  <?php _e("Get Your Facebook App. Id",WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?>: <a href="http://weblizar.com/get-facebook-app-id/" target="_blank"><?php _e( 'HERE', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?></a>
192
  </p>
193
 
194
+ <p>
195
+ <!--weblizar_locale_fb-->
196
+ <label for="<?php echo $this->get_field_id( 'weblizar_lang_fb' ); ?>"><?php _e( 'Like Button Language', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?></label>
197
+
198
+ <select class="widefat" id="<?php echo $this->get_field_id( 'weblizar_lang_fb' ); ?>" name="<?php echo $this->get_field_name( 'weblizar_lang_fb' ); ?>" >
199
+ <option value="af_ZA" <?php if($weblizar_lang_fb == "af_ZA") echo 'selected="selected"' ?> ><?php _e('Afrikaans', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
200
+ <option value="ar_AR" <?php if($weblizar_lang_fb == "ar_AR") echo 'selected="selected"' ?> ><?php _e('Arabic', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
201
+ <option value="az_AZ" <?php if($weblizar_lang_fb == "az_AZ") echo 'selected="selected"' ?> ><?php _e('Azerbaijani', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
202
+ <option value="be_BY" <?php if($weblizar_lang_fb == "be_BY") echo 'selected="selected"' ?> ><?php _e('Belarusian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
203
+ <option value="bg_BG" <?php if($weblizar_lang_fb == "bg_BG") echo 'selected="selected"' ?> ><?php _e('Bulgarian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
204
+ <option value="bn_IN" <?php if($weblizar_lang_fb == "bn_IN") echo 'selected="selected"' ?> ><?php _e('Bengali', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
205
+ <option value="bs_BA" <?php if($weblizar_lang_fb == "bs_BA") echo 'selected="selected"' ?> ><?php _e('Bosnian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
206
+ <option value="ca_ES" <?php if($weblizar_lang_fb == "ca_ES") echo 'selected="selected"' ?> ><?php _e('Catalan', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
207
+ <option value="cs_CZ" <?php if($weblizar_lang_fb == "cs_CZ") echo 'selected="selected"' ?> ><?php _e('Czech', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
208
+ <option value="cy_GB" <?php if($weblizar_lang_fb == "cy_GB") echo 'selected="selected"' ?> ><?php _e('Welsh', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
209
+ <option value="da_DK" <?php if($weblizar_lang_fb == "da_DK") echo 'selected="selected"' ?> ><?php _e('Danish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
210
+ <option value="de_DE" <?php if($weblizar_lang_fb == "de_DE") echo 'selected="selected"' ?> ><?php _e('German', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
211
+ <option value="el_GR" <?php if($weblizar_lang_fb == "el_GR") echo 'selected="selected"' ?> ><?php _e('Greek', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
212
+ <option value="en_GB" <?php if($weblizar_lang_fb == "en_GB") echo 'selected="selected"' ?> ><?php _e('English (UK)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
213
+ <option value="en_PI" <?php if($weblizar_lang_fb == "en_PI") echo 'selected="selected"' ?> ><?php _e('English (Pirate)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
214
+ <option value="en_UD" <?php if($weblizar_lang_fb == "en_UD") echo 'selected="selected"' ?> ><?php _e('English (Upside Down)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
215
+ <option value="en_US" <?php if($weblizar_lang_fb == "en_US") echo 'selected="selected"' ?> ><?php _e('English (US)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
216
+ <option value="eo_EO" <?php if($weblizar_lang_fb == "eo_EO") echo 'selected="selected"' ?> ><?php _e('Esperanto', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
217
+ <option value="es_ES" <?php if($weblizar_lang_fb == "es_ES") echo 'selected="selected"' ?> ><?php _e('Spanish (Spain)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
218
+ <option value="es_LA" <?php if($weblizar_lang_fb == "es_LA") echo 'selected="selected"' ?> ><?php _e('Spanish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
219
+ <option value="et_EE" <?php if($weblizar_lang_fb == "et_EE") echo 'selected="selected"' ?> ><?php _e('Estonian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
220
+ <option value="eu_ES" <?php if($weblizar_lang_fb == "eu_ES") echo 'selected="selected"' ?> ><?php _e('Basque', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
221
+ <option value="fa_IR" <?php if($weblizar_lang_fb == "fa_IR") echo 'selected="selected"' ?> ><?php _e('Persian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
222
+ <option value="fb_LT" <?php if($weblizar_lang_fb == "fb_LT") echo 'selected="selected"' ?> ><?php _e('Leet Speak', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
223
+ <option value="fi_FI" <?php if($weblizar_lang_fb == "fi_FI") echo 'selected="selected"' ?> ><?php _e('Finnish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
224
+ <option value="fo_FO" <?php if($weblizar_lang_fb == "fo_FO") echo 'selected="selected"' ?> ><?php _e('Faroese', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
225
+ <option value="fr_CA" <?php if($weblizar_lang_fb == "fr_CA") echo 'selected="selected"' ?> ><?php _e('French (Canada)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
226
+ <option value="fr_FR" <?php if($weblizar_lang_fb == "fr_FR") echo 'selected="selected"' ?> ><?php _e('French (France)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
227
+ <option value="fy_NL" <?php if($weblizar_lang_fb == "fy_NL") echo 'selected="selected"' ?> ><?php _e('Frisian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
228
+ <option value="ga_IE" <?php if($weblizar_lang_fb == "ga_IE") echo 'selected="selected"' ?> ><?php _e('Irish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
229
+ <option value="gl_ES" <?php if($weblizar_lang_fb == "gl_ES") echo 'selected="selected"' ?> ><?php _e('Galician', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
230
+ <option value="he_IL" <?php if($weblizar_lang_fb == "he_IL") echo 'selected="selected"' ?> ><?php _e('Hebrew', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
231
+ <option value="hi_IN" <?php if($weblizar_lang_fb == "hi_IN") echo 'selected="selected"' ?> ><?php _e('Hindi', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
232
+ <option value="hr_HR" <?php if($weblizar_lang_fb == "hr_HR") echo 'selected="selected"' ?> ><?php _e('Croatian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
233
+ <option value="hu_HU" <?php if($weblizar_lang_fb == "hu_HU") echo 'selected="selected"' ?> ><?php _e('Hungarian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
234
+ <option value="hy_AM" <?php if($weblizar_lang_fb == "hy_AM") echo 'selected="selected"' ?> ><?php _e('Armenian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
235
+ <option value="id_ID" <?php if($weblizar_lang_fb == "id_ID") echo 'selected="selected"' ?> ><?php _e('Indonesian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
236
+ <option value="is_IS" <?php if($weblizar_lang_fb == "is_IS") echo 'selected="selected"' ?> ><?php _e('Icelandic', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
237
+ <option value="it_IT" <?php if($weblizar_lang_fb == "it_IT") echo 'selected="selected"' ?> ><?php _e('Italian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
238
+ <option value="ja_JP" <?php if($weblizar_lang_fb == "ja_JP") echo 'selected="selected"' ?> ><?php _e('Japanese', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
239
+ <option value="ka_GE" <?php if($weblizar_lang_fb == "ka_GE") echo 'selected="selected"' ?> ><?php _e('Georgian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
240
+ <option value="km_KH" <?php if($weblizar_lang_fb == "km_KH") echo 'selected="selected"' ?> ><?php _e('Khmer', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
241
+ <option value="ko_KR" <?php if($weblizar_lang_fb == "ko_KR") echo 'selected="selected"' ?> ><?php _e('Korean', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
242
+ <option value="ku_TR" <?php if($weblizar_lang_fb == "ku_TR") echo 'selected="selected"' ?> ><?php _e('Kurdish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
243
+ <option value="la_VA" <?php if($weblizar_lang_fb == "la_VA") echo 'selected="selected"' ?> ><?php _e('Latin', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
244
+ <option value="lt_LT" <?php if($weblizar_lang_fb == "lt_LT") echo 'selected="selected"' ?> ><?php _e('Lithuanian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
245
+ <option value="lv_LV" <?php if($weblizar_lang_fb == "lv_LV") echo 'selected="selected"' ?> ><?php _e('Latvian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
246
+ <option value="mk_MK" <?php if($weblizar_lang_fb == "mk_MK") echo 'selected="selected"' ?> ><?php _e('Macedonian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
247
+ <option value="ml_IN" <?php if($weblizar_lang_fb == "ml_IN") echo 'selected="selected"' ?> ><?php _e('Malayalam', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
248
+ <option value="ms_MY" <?php if($weblizar_lang_fb == "ms_MY") echo 'selected="selected"' ?> ><?php _e('Malay', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
249
+ <option value="nb_NO" <?php if($weblizar_lang_fb == "nb_NO") echo 'selected="selected"' ?> ><?php _e('Norwegian (bokmal)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
250
+ <option value="ne_NP" <?php if($weblizar_lang_fb == "ne_NP") echo 'selected="selected"' ?> ><?php _e('Nepali', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
251
+ <option value="nl_NL" <?php if($weblizar_lang_fb == "nl_NL") echo 'selected="selected"' ?> ><?php _e('Dutch', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
252
+ <option value="nn_NO" <?php if($weblizar_lang_fb == "nn_NO") echo 'selected="selected"' ?> ><?php _e('Norwegian (nynorsk)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
253
+ <option value="pa_IN" <?php if($weblizar_lang_fb == "pa_IN") echo 'selected="selected"' ?> ><?php _e('Punjabi', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
254
+ <option value="pl_PL" <?php if($weblizar_lang_fb == "pl_PL") echo 'selected="selected"' ?> ><?php _e('Polish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
255
+ <option value="ps_AF" <?php if($weblizar_lang_fb == "ps_AF") echo 'selected="selected"' ?> ><?php _e('Pashto', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
256
+ <option value="pt_BR" <?php if($weblizar_lang_fb == "pt_BR") echo 'selected="selected"' ?> ><?php _e('Portuguese (Brazil)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
257
+ <option value="pt_PT" <?php if($weblizar_lang_fb == "pt_PT") echo 'selected="selected"' ?> ><?php _e('Portuguese (Portugal)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
258
+ <option value="ro_RO" <?php if($weblizar_lang_fb == "ro_RO") echo 'selected="selected"' ?> ><?php _e('Romanian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
259
+ <option value="ru_RU" <?php if($weblizar_lang_fb == "ru_RU") echo 'selected="selected"' ?> ><?php _e('Russian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
260
+ <option value="sk_SK" <?php if($weblizar_lang_fb == "sk_SK") echo 'selected="selected"' ?> ><?php _e('Slovak', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
261
+ <option value="sl_SI" <?php if($weblizar_lang_fb == "sl_SI") echo 'selected="selected"' ?> ><?php _e('Slovenian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
262
+ <option value="sq_AL" <?php if($weblizar_lang_fb == "sq_AL") echo 'selected="selected"' ?> ><?php _e('Albanian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
263
+ <option value="sr_RS" <?php if($weblizar_lang_fb == "sr_RS") echo 'selected="selected"' ?> ><?php _e('Serbian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
264
+ <option value="sv_SE" <?php if($weblizar_lang_fb == "sv_SE") echo 'selected="selected"' ?> ><?php _e('Swedish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
265
+ <option value="sw_KE" <?php if($weblizar_lang_fb == "sw_KE") echo 'selected="selected"' ?> ><?php _e('Swahili', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
266
+ <option value="ta_IN" <?php if($weblizar_lang_fb == "ta_IN") echo 'selected="selected"' ?> ><?php _e('Tamil', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
267
+ <option value="te_IN" <?php if($weblizar_lang_fb == "te_IN") echo 'selected="selected"' ?> ><?php _e('Telugu', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
268
+ <option value="th_TH" <?php if($weblizar_lang_fb == "th_TH") echo 'selected="selected"' ?> ><?php _e('Thai', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
269
+ <option value="tl_PH" <?php if($weblizar_lang_fb == "tl_PH") echo 'selected="selected"' ?> ><?php _e('Filipino', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
270
+ <option value="tr_TR" <?php if($weblizar_lang_fb == "tr_TR") echo 'selected="selected"' ?> ><?php _e('Turkish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
271
+ <option value="uk_UA" <?php if($weblizar_lang_fb == "uk_UA") echo 'selected="selected"' ?> ><?php _e('Ukrainian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
272
+ <option value="vi_VN" <?php if($weblizar_lang_fb == "vi_VN") echo 'selected="selected"' ?> ><?php _e('Vietnamese', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
273
+ <option value="zh_CN" <?php if($weblizar_lang_fb == "zh_CN") echo 'selected="selected"' ?> ><?php _e('Simplified Chinese (China)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
274
+ <option value="zh_HK" <?php if($weblizar_lang_fb == "zh_HK") echo 'selected="selected"' ?> ><?php _e('Traditional Chinese (Hong Kong)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
275
+ <option value="zh_TW" <?php if($weblizar_lang_fb == "zh_TW") echo 'selected="selected"' ?> ><?php _e('Traditional Chinese (Taiwan)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
276
+ </select>
277
+ </p>
278
+
279
  <p>
280
  <a style="display:block;" target="_new" href="https://wordpress.org/plugins/facebook-by-weblizar/"><img src="<?php echo WEBLIZAR_FACEBOOK_PLUGIN_URL.'images/star.png' ;?>" /> </a>
281
  <a href="https://wordpress.org/plugins/facebook-by-weblizar/" target="_new"> <?php _e("Rate Us on ",WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?> Wordpress.org</a>
305
  $instance['ShowBorder'] = ( ! empty( $new_instance['ShowBorder'] ) ) ? strip_tags( $new_instance['ShowBorder'] ) : 'true';
306
  $instance['ForceWall'] = ( ! empty( $new_instance['ForceWall'] ) ) ? strip_tags( $new_instance['ForceWall'] ) : 'false';
307
  $instance['FbAppId'] = ( ! empty( $new_instance['FbAppId'] ) ) ? strip_tags( $new_instance['FbAppId'] ) : '529331510739033';
308
+ $instance['weblizar_lang_fb'] = ( ! empty( $new_instance['weblizar_lang_fb'] ) ) ? strip_tags( $new_instance['weblizar_lang_fb'] ) : 'en_GB';
309
  return $instance;
310
  }
311
  } // class WeblizarFacebook
function/help-body.php CHANGED
@@ -40,6 +40,100 @@
40
  <input class="widefat" id="fb-app-id" name="fb-app-id" type="text" value="<?php echo esc_attr( $FbAppId ); ?>">
41
  <?php _e('Get Your Own Facebook APP Id', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?>: <a href="http://weblizar.com/get-facebook-app-id/" target="_blank"><?php _e( 'HERE', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?></a>
42
  </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  <br>
44
  <p>
45
  <input onclick="return SaveSettings();" type="button" class="button button-primary button-hero" id="fb-save-settings" name="fb-save-settings" value="<?php _e( 'SAVE', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?>">
@@ -65,7 +159,7 @@
65
  var js, fjs = d.getElementsByTagName(s)[0];
66
  if (d.getElementById(id)) return;
67
  js = d.createElement(s); js.id = id;
68
- js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&appId=<?php echo $FbAppId; ?>&version=v2.0";
69
  fjs.parentNode.insertBefore(js, fjs);
70
  }(document, 'script', 'facebook-jssdk'));
71
  </script>
40
  <input class="widefat" id="fb-app-id" name="fb-app-id" type="text" value="<?php echo esc_attr( $FbAppId ); ?>">
41
  <?php _e('Get Your Own Facebook APP Id', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?>: <a href="http://weblizar.com/get-facebook-app-id/" target="_blank"><?php _e( 'HERE', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?></a>
42
  </p>
43
+ <br>
44
+ <p>
45
+ <p><label><?php _e('Select Language for Like Button', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></label></p>
46
+ <!-- <?php
47
+ if(!isset($locale_fb_like)){
48
+ wp_dropdown_languages( $args = array() );
49
+ }
50
+ else{
51
+ wp_dropdown_languages( $args = array(
52
+ 'selected' => $locale_fb_like,
53
+ ) );
54
+ }
55
+
56
+ ?> -->
57
+ <select name="weblizar_locale_fb" id="weblizar_locale_fb">
58
+ <option value="af_ZA" <?php if($weblizar_locale_fb == "af_ZA") echo 'selected="selected"' ?> ><?php _e('Afrikaans', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
59
+ <option value="ar_AR" <?php if($weblizar_locale_fb == "ar_AR") echo 'selected="selected"' ?> ><?php _e('Arabic', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
60
+ <option value="az_AZ" <?php if($weblizar_locale_fb == "az_AZ") echo 'selected="selected"' ?> ><?php _e('Azerbaijani', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
61
+ <option value="be_BY" <?php if($weblizar_locale_fb == "be_BY") echo 'selected="selected"' ?> ><?php _e('Belarusian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
62
+ <option value="bg_BG" <?php if($weblizar_locale_fb == "bg_BG") echo 'selected="selected"' ?> ><?php _e('Bulgarian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
63
+ <option value="bn_IN" <?php if($weblizar_locale_fb == "bn_IN") echo 'selected="selected"' ?> ><?php _e('Bengali', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
64
+ <option value="bs_BA" <?php if($weblizar_locale_fb == "bs_BA") echo 'selected="selected"' ?> ><?php _e('Bosnian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
65
+ <option value="ca_ES" <?php if($weblizar_locale_fb == "ca_ES") echo 'selected="selected"' ?> ><?php _e('Catalan', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
66
+ <option value="cs_CZ" <?php if($weblizar_locale_fb == "cs_CZ") echo 'selected="selected"' ?> ><?php _e('Czech', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
67
+ <option value="cy_GB" <?php if($weblizar_locale_fb == "cy_GB") echo 'selected="selected"' ?> ><?php _e('Welsh', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
68
+ <option value="da_DK" <?php if($weblizar_locale_fb == "da_DK") echo 'selected="selected"' ?> ><?php _e('Danish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
69
+ <option value="de_DE" <?php if($weblizar_locale_fb == "de_DE") echo 'selected="selected"' ?> ><?php _e('German', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
70
+ <option value="el_GR" <?php if($weblizar_locale_fb == "el_GR") echo 'selected="selected"' ?> ><?php _e('Greek', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
71
+ <option value="en_GB" <?php if($weblizar_locale_fb == "en_GB") echo 'selected="selected"' ?> ><?php _e('English (UK)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
72
+ <option value="en_PI" <?php if($weblizar_locale_fb == "en_PI") echo 'selected="selected"' ?> ><?php _e('English (Pirate)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
73
+ <option value="en_UD" <?php if($weblizar_locale_fb == "en_UD") echo 'selected="selected"' ?> ><?php _e('English (Upside Down)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
74
+ <option value="en_US" <?php if($weblizar_locale_fb == "en_US") echo 'selected="selected"' ?> ><?php _e('English (US)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
75
+ <option value="eo_EO" <?php if($weblizar_locale_fb == "eo_EO") echo 'selected="selected"' ?> ><?php _e('Esperanto', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
76
+ <option value="es_ES" <?php if($weblizar_locale_fb == "es_ES") echo 'selected="selected"' ?> ><?php _e('Spanish (Spain)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
77
+ <option value="es_LA" <?php if($weblizar_locale_fb == "es_LA") echo 'selected="selected"' ?> ><?php _e('Spanish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
78
+ <option value="et_EE" <?php if($weblizar_locale_fb == "et_EE") echo 'selected="selected"' ?> ><?php _e('Estonian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
79
+ <option value="eu_ES" <?php if($weblizar_locale_fb == "eu_ES") echo 'selected="selected"' ?> ><?php _e('Basque', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
80
+ <option value="fa_IR" <?php if($weblizar_locale_fb == "fa_IR") echo 'selected="selected"' ?> ><?php _e('Persian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
81
+ <option value="fb_LT" <?php if($weblizar_locale_fb == "fb_LT") echo 'selected="selected"' ?> ><?php _e('Leet Speak', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
82
+ <option value="fi_FI" <?php if($weblizar_locale_fb == "fi_FI") echo 'selected="selected"' ?> ><?php _e('Finnish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
83
+ <option value="fo_FO" <?php if($weblizar_locale_fb == "fo_FO") echo 'selected="selected"' ?> ><?php _e('Faroese', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
84
+ <option value="fr_CA" <?php if($weblizar_locale_fb == "fr_CA") echo 'selected="selected"' ?> ><?php _e('French (Canada)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
85
+ <option value="fr_FR" <?php if($weblizar_locale_fb == "fr_FR") echo 'selected="selected"' ?> ><?php _e('French (France)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
86
+ <option value="fy_NL" <?php if($weblizar_locale_fb == "fy_NL") echo 'selected="selected"' ?> ><?php _e('Frisian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
87
+ <option value="ga_IE" <?php if($weblizar_locale_fb == "ga_IE") echo 'selected="selected"' ?> ><?php _e('Irish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
88
+ <option value="gl_ES" <?php if($weblizar_locale_fb == "gl_ES") echo 'selected="selected"' ?> ><?php _e('Galician', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
89
+ <option value="he_IL" <?php if($weblizar_locale_fb == "he_IL") echo 'selected="selected"' ?> ><?php _e('Hebrew', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
90
+ <option value="hi_IN" <?php if($weblizar_locale_fb == "hi_IN") echo 'selected="selected"' ?> ><?php _e('Hindi', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
91
+ <option value="hr_HR" <?php if($weblizar_locale_fb == "hr_HR") echo 'selected="selected"' ?> ><?php _e('Croatian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
92
+ <option value="hu_HU" <?php if($weblizar_locale_fb == "hu_HU") echo 'selected="selected"' ?> ><?php _e('Hungarian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
93
+ <option value="hy_AM" <?php if($weblizar_locale_fb == "hy_AM") echo 'selected="selected"' ?> ><?php _e('Armenian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
94
+ <option value="id_ID" <?php if($weblizar_locale_fb == "id_ID") echo 'selected="selected"' ?> ><?php _e('Indonesian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
95
+ <option value="is_IS" <?php if($weblizar_locale_fb == "is_IS") echo 'selected="selected"' ?> ><?php _e('Icelandic', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
96
+ <option value="it_IT" <?php if($weblizar_locale_fb == "it_IT") echo 'selected="selected"' ?> ><?php _e('Italian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
97
+ <option value="ja_JP" <?php if($weblizar_locale_fb == "ja_JP") echo 'selected="selected"' ?> ><?php _e('Japanese', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
98
+ <option value="ka_GE" <?php if($weblizar_locale_fb == "ka_GE") echo 'selected="selected"' ?> ><?php _e('Georgian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
99
+ <option value="km_KH" <?php if($weblizar_locale_fb == "km_KH") echo 'selected="selected"' ?> ><?php _e('Khmer', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
100
+ <option value="ko_KR" <?php if($weblizar_locale_fb == "ko_KR") echo 'selected="selected"' ?> ><?php _e('Korean', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
101
+ <option value="ku_TR" <?php if($weblizar_locale_fb == "ku_TR") echo 'selected="selected"' ?> ><?php _e('Kurdish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
102
+ <option value="la_VA" <?php if($weblizar_locale_fb == "la_VA") echo 'selected="selected"' ?> ><?php _e('Latin', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
103
+ <option value="lt_LT" <?php if($weblizar_locale_fb == "lt_LT") echo 'selected="selected"' ?> ><?php _e('Lithuanian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
104
+ <option value="lv_LV" <?php if($weblizar_locale_fb == "lv_LV") echo 'selected="selected"' ?> ><?php _e('Latvian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
105
+ <option value="mk_MK" <?php if($weblizar_locale_fb == "mk_MK") echo 'selected="selected"' ?> ><?php _e('Macedonian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
106
+ <option value="ml_IN" <?php if($weblizar_locale_fb == "ml_IN") echo 'selected="selected"' ?> ><?php _e('Malayalam', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
107
+ <option value="ms_MY" <?php if($weblizar_locale_fb == "ms_MY") echo 'selected="selected"' ?> ><?php _e('Malay', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
108
+ <option value="nb_NO" <?php if($weblizar_locale_fb == "nb_NO") echo 'selected="selected"' ?> ><?php _e('Norwegian (bokmal)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
109
+ <option value="ne_NP" <?php if($weblizar_locale_fb == "ne_NP") echo 'selected="selected"' ?> ><?php _e('Nepali', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
110
+ <option value="nl_NL" <?php if($weblizar_locale_fb == "nl_NL") echo 'selected="selected"' ?> ><?php _e('Dutch', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
111
+ <option value="nn_NO" <?php if($weblizar_locale_fb == "nn_NO") echo 'selected="selected"' ?> ><?php _e('Norwegian (nynorsk)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
112
+ <option value="pa_IN" <?php if($weblizar_locale_fb == "pa_IN") echo 'selected="selected"' ?> ><?php _e('Punjabi', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
113
+ <option value="pl_PL" <?php if($weblizar_locale_fb == "pl_PL") echo 'selected="selected"' ?> ><?php _e('Polish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
114
+ <option value="ps_AF" <?php if($weblizar_locale_fb == "ps_AF") echo 'selected="selected"' ?> ><?php _e('Pashto', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
115
+ <option value="pt_BR" <?php if($weblizar_locale_fb == "pt_BR") echo 'selected="selected"' ?> ><?php _e('Portuguese (Brazil)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
116
+ <option value="pt_PT" <?php if($weblizar_locale_fb == "pt_PT") echo 'selected="selected"' ?> ><?php _e('Portuguese (Portugal)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
117
+ <option value="ro_RO" <?php if($weblizar_locale_fb == "ro_RO") echo 'selected="selected"' ?> ><?php _e('Romanian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
118
+ <option value="ru_RU" <?php if($weblizar_locale_fb == "ru_RU") echo 'selected="selected"' ?> ><?php _e('Russian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
119
+ <option value="sk_SK" <?php if($weblizar_locale_fb == "sk_SK") echo 'selected="selected"' ?> ><?php _e('Slovak', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
120
+ <option value="sl_SI" <?php if($weblizar_locale_fb == "sl_SI") echo 'selected="selected"' ?> ><?php _e('Slovenian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
121
+ <option value="sq_AL" <?php if($weblizar_locale_fb == "sq_AL") echo 'selected="selected"' ?> ><?php _e('Albanian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
122
+ <option value="sr_RS" <?php if($weblizar_locale_fb == "sr_RS") echo 'selected="selected"' ?> ><?php _e('Serbian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
123
+ <option value="sv_SE" <?php if($weblizar_locale_fb == "sv_SE") echo 'selected="selected"' ?> ><?php _e('Swedish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
124
+ <option value="sw_KE" <?php if($weblizar_locale_fb == "sw_KE") echo 'selected="selected"' ?> ><?php _e('Swahili', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
125
+ <option value="ta_IN" <?php if($weblizar_locale_fb == "ta_IN") echo 'selected="selected"' ?> ><?php _e('Tamil', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
126
+ <option value="te_IN" <?php if($weblizar_locale_fb == "te_IN") echo 'selected="selected"' ?> ><?php _e('Telugu', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
127
+ <option value="th_TH" <?php if($weblizar_locale_fb == "th_TH") echo 'selected="selected"' ?> ><?php _e('Thai', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
128
+ <option value="tl_PH" <?php if($weblizar_locale_fb == "tl_PH") echo 'selected="selected"' ?> ><?php _e('Filipino', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
129
+ <option value="tr_TR" <?php if($weblizar_locale_fb == "tr_TR") echo 'selected="selected"' ?> ><?php _e('Turkish', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
130
+ <option value="uk_UA" <?php if($weblizar_locale_fb == "uk_UA") echo 'selected="selected"' ?> ><?php _e('Ukrainian', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
131
+ <option value="vi_VN" <?php if($weblizar_locale_fb == "vi_VN") echo 'selected="selected"' ?> ><?php _e('Vietnamese', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
132
+ <option value="zh_CN" <?php if($weblizar_locale_fb == "zh_CN") echo 'selected="selected"' ?> ><?php _e('Simplified Chinese (China)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
133
+ <option value="zh_HK" <?php if($weblizar_locale_fb == "zh_HK") echo 'selected="selected"' ?> ><?php _e('Traditional Chinese (Hong Kong)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
134
+ <option value="zh_TW" <?php if($weblizar_locale_fb == "zh_TW") echo 'selected="selected"' ?> ><?php _e('Traditional Chinese (Taiwan)', 'WEBLIZAR_FACEBOOK_TEXT_DOMAIN'); ?></option>
135
+ </select>
136
+ </p>
137
  <br>
138
  <p>
139
  <input onclick="return SaveSettings();" type="button" class="button button-primary button-hero" id="fb-save-settings" name="fb-save-settings" value="<?php _e( 'SAVE', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?>">
159
  var js, fjs = d.getElementsByTagName(s)[0];
160
  if (d.getElementById(id)) return;
161
  js = d.createElement(s); js.id = id;
162
+ js.src = "//connect.facebook.net/<?php echo $weblizar_locale_fb; ?>/sdk.js#xfbml=1&appId=<?php echo $FbAppId; ?>&version=v2.0";
163
  fjs.parentNode.insertBefore(js, fjs);
164
  }(document, 'script', 'facebook-jssdk'));
165
  </script>
js/option-js.js CHANGED
@@ -436,6 +436,7 @@ success: function (html) {
436
  var Width = jQuery("#widget-width").val();
437
  var Height = jQuery("#widget-height").val();
438
  var FbAppId = jQuery("#fb-app-id").val();
 
439
  if(!FacebookPageUrl) {
440
  jQuery("#facebook-page-url").focus();
441
  return false;
436
  var Width = jQuery("#widget-width").val();
437
  var Height = jQuery("#widget-height").val();
438
  var FbAppId = jQuery("#fb-app-id").val();
439
+ var weblizar_locale_fb = jQuery("#weblizar_locale_fb").val();
440
  if(!FacebookPageUrl) {
441
  jQuery("#facebook-page-url").focus();
442
  return false;
lang/wl_facebook-fr_FR.mo CHANGED
Binary file
lang/wl_facebook-fr_FR.po CHANGED
@@ -1,295 +1,729 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Facebook By Weblizar\n"
4
- "POT-Creation-Date: 2017-06-30 12:40+0530\n"
5
- "PO-Revision-Date: 2017-06-30 12:44+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr\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.8.7.1\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: facebook-by-weblizar-help.php:4 help-body.php:538
19
- msgid "Facebook By Weblizar"
20
- msgstr "Facebook par Weblizar"
21
 
22
- #: facebook-by-weblizar-help.php:8
 
 
 
 
 
 
23
  msgid "Support Forum"
24
  msgstr "Forum d'entraide"
25
 
26
- #: facebook-by-weblizar-help.php:9
27
  msgid "Plugin Change Log"
28
  msgstr "Journal de changement de plugin"
29
 
30
- #: facebook-by-weblizar-help.php:18
31
- msgid "Settings"
32
- msgstr "Réglages"
 
 
 
 
 
 
 
 
 
 
 
 
33
 
34
- #: facebook-by-weblizar-help.php:23
35
- msgid "Plugin Recommendation"
36
- msgstr "Recommandation de plugin"
 
 
37
 
38
- #: facebook-by-weblizar-help.php:29
39
- msgid "Need Help"
 
 
 
 
 
 
 
 
 
 
 
 
40
  msgstr "Besoin d'aide ?"
41
 
42
- #: facebook-by-weblizar-help.php:34
43
- msgid "Our Products"
44
- msgstr "Nos Produits"
45
 
46
- #: facebook-by-weblizar-help.php:39
47
- msgid "Rate Us"
48
- msgstr "Évaluez nous"
 
 
49
 
50
- #: facebook-by-weblizar-short-code.php:63 facebook-by-weblizar.php:96
 
51
  msgid "Facebook By Weblizar Powered By Weblizar"
52
  msgstr "Facebook par Weblizar Powered By Weblizar"
53
 
54
- #: facebook-by-weblizar.php:38
55
  msgid "Display Facebook Page Live Stream & Fans"
56
  msgstr "Afficher la Page Facebook Live Stream & Fans"
57
 
58
- #: facebook-by-weblizar.php:166
59
  msgid "LikeBox"
60
  msgstr "LikeBox"
61
 
62
- #: facebook-by-weblizar.php:170
63
  msgid "Title:"
64
  msgstr "Titre:"
65
 
66
- #: facebook-by-weblizar.php:174 help-body.php:127
 
67
  msgid "Facebook Page URL"
68
  msgstr "URL de la page Facebook"
69
 
70
- #: facebook-by-weblizar.php:178 help-body.php:133
71
  msgid "Show Faces"
72
  msgstr "Afficher les visages"
73
 
74
- #: facebook-by-weblizar.php:185 help-body.php:142
75
  msgid "Show Live Stream"
76
  msgstr "Afficher les nouvelles en direct"
77
 
78
- #: facebook-by-weblizar.php:192 help-body.php:151
79
  msgid "Widget Width"
80
  msgstr "Largeur du widget"
81
 
82
- #: facebook-by-weblizar.php:196 help-body.php:157
83
  msgid "Widget Height"
84
  msgstr "Hauteur du widget"
85
 
86
- #: facebook-by-weblizar.php:200 help-body.php:163
87
  msgid "Facebook App ID"
88
  msgstr "Facebook App ID"
89
 
90
- #: facebook-by-weblizar.php:200 help-body.php:163
91
- msgid "Required"
92
- msgstr "Nécessaire"
93
 
94
- #: facebook-by-weblizar.php:202
95
  msgid "Get Your Facebook App. Id"
96
  msgstr "Obtenir votre Facebook App. ID"
97
 
98
- #: facebook-by-weblizar.php:202 help-body.php:165
99
  msgid "HERE"
100
  msgstr "ICI"
101
 
102
- #: facebook-by-weblizar.php:207
103
  msgid "Rate Us on "
104
  msgstr "Évaluez-nous sur"
105
 
106
- #: help-body.php:75
107
- msgid "Shortcode Settings"
108
- msgstr "Réglage du ShortCode"
 
109
 
110
- #: help-body.php:135 help-body.php:144
111
- msgid "Yes"
112
- msgstr "Oui"
 
 
113
 
114
- #: help-body.php:136 help-body.php:145
115
- msgid "No"
116
- msgstr "Non"
 
117
 
118
- #: help-body.php:165
119
- msgid "Get Your Own Facebook APP Id"
120
- msgstr "Obtenir votre Facebook App. ID"
121
 
122
- #: help-body.php:170
123
- msgid "SAVE"
124
- msgstr "ENREGISTRER"
 
 
125
 
126
- #: help-body.php:175
127
- msgid "Settings successfully saved. Reloading page for generating preview below."
128
- msgstr "Réglages sauvegardés. Rafraichissez la page pour les générer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
 
130
- #: help-body.php:183
131
- msgid "Preview"
132
- msgstr "Aperçu"
133
 
134
- #: help-body.php:263
135
- #, php-format
136
- msgid "%s rating"
137
  msgstr ""
138
 
139
- #: help-body.php:282
140
- msgid "Get More Free Wordpress Plguins From Weblizar"
141
- msgstr "Obtenez plus gratuitement Wordpress Plguins de Weblizar"
142
 
143
- #: help-body.php:331
144
- msgid "More Details"
145
- msgstr "Plus de détails"
146
 
147
- #: help-body.php:342
148
- msgid "Install Now"
149
- msgstr "Installer maintenant"
150
 
151
- #: help-body.php:349
152
- msgid "Update Now"
153
- msgstr "Mettre à jour maintenant"
154
 
155
- #: help-body.php:376
156
- msgid "By "
157
- msgstr "par"
158
 
159
- #: help-body.php:395 help-body.php:405 help-body.php:415 help-body.php:425 help-body.php:435 help-body.php:445
160
- msgid "Premium Editions"
161
- msgstr "Editions Premium"
162
 
163
- #: help-body.php:398 help-body.php:408 help-body.php:418 help-body.php:428 help-body.php:438 help-body.php:448
164
- msgid "Visit Website"
165
- msgstr "Visiter le site web"
 
 
166
 
167
- #: help-body.php:466
168
- msgid "Last Updated:"
169
- msgstr "Dernière mise à jour:"
170
 
171
- #: help-body.php:477
172
- msgid "Untested with your version of WordPress"
173
- msgstr "Non testé avec votre version de WordPress"
174
 
175
- #: help-body.php:481
176
- msgid "Incompatible with your version of WordPress"
177
- msgstr "Incompatible avec votre version de WordPress"
178
 
179
- #: help-body.php:485
180
- msgid "Compatible with your version of WordPress"
181
- msgstr "Compatible avec votre version de WordPress"
182
 
183
- #: help-body.php:527
184
- msgid "Facebook Like Box Help Section"
185
- msgstr "Section d'aide Facebook Like Box"
186
 
187
- #: help-body.php:529
188
- msgid "Facebook By Weblizar plugin comes with 2 functionality"
189
- msgstr "Facebook By Weblizar plugin est livré avec 2 fonctionnalités"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
 
191
- #: help-body.php:531 help-body.php:535
192
  msgid "Facebook Like Box Widget"
193
  msgstr "Facebook Like Box Widget"
194
 
195
- #: help-body.php:532 help-body.php:541
196
- msgid "Facebook Like Box Shoertcode"
 
 
197
  msgstr "Facebook Like Box Shoertcode"
198
 
199
- #: help-body.php:537
200
  msgid "You can use the widget to display your Facebook Like Box in any theme Widget Sections"
201
  msgstr ""
202
- "Vous pouvez utiliser le widget pour afficher votre Facebook Like Box dans n'importe quelle section Widget "
203
- "Widget"
204
 
205
- #: help-body.php:538
206
  msgid "Simple go to your"
207
  msgstr "Simple, passez à votre"
208
 
209
- #: help-body.php:538
210
  msgid "Widgets"
211
  msgstr "Widgets"
212
 
213
- #: help-body.php:538
214
  msgid "section and activate available"
215
  msgstr "Section et activation disponible"
216
 
217
- #: help-body.php:538
 
 
 
 
 
 
218
  msgid "widget in any sidebar section, like in left sidebar, right sidebar or footer sidebar"
219
  msgstr ""
220
- "Widget dans n'importe quelle section de la barre latérale, comme dans la barre latérale gauche, la barre "
221
- "latérale droite ou la barre latérale du pied de page"
222
 
223
- #: help-body.php:543
224
- msgid "shortcode give ability to display Facebook Like Box in any Page / Post with content"
 
 
 
 
 
 
 
 
225
  msgstr ""
226
- "Shortcode donne la possibilité d'afficher Facebook Like Box dans n'importe quelle page / Poste avec du contenu"
 
227
 
228
- #: help-body.php:544
229
  msgid "To use shortcode, just copy "
230
  msgstr "Pour utiliser shortcode, il suffit de copier"
231
 
232
- #: help-body.php:544
233
  msgid "shortcode and paste into content editor of any Page / Post"
234
  msgstr "Shortcode et collez dans l'éditeur de contenu de toute page / post"
235
 
236
- #: help-body.php:547
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  msgid "What is Facebook Page URL"
238
  msgstr "Qu'est-ce que l'URL de la page Facebook"
239
 
240
- #: help-body.php:548
241
  msgid ""
242
- "is your Facebook page your where you promote your business. Here your customers, clients, friends, guests can "
243
- "like, share, comment review your POST"
244
  msgstr ""
245
- "Est-ce que votre page Facebook est là où vous faites la promotion de votre entreprise? Ici, vos clients, "
246
- "clients, amis, les clients peuvent aimer, partager, commenter votre POST"
247
 
248
- #: help-body.php:550
249
  msgid "What is Facebook APP ID"
250
  msgstr "Qu'est-ce que Facebook APP ID"
251
 
252
- #: help-body.php:551
253
  msgid "Facebook Application ID"
254
  msgstr "ID de l'application Facebook"
255
 
256
- #: help-body.php:551
257
  msgid ""
258
- " used to authenticate your Facebook Page data & settings. To get your own Facebook APP ID please read our 4 "
259
- "Steps very simple and easy "
260
  msgstr ""
261
- "Utilisé pour authentifier vos données et paramètres de la page Facebook. Pour obtenir votre propre ID d'APP de "
262
- "Facebook, lisez nos 4 étapes très simples et faciles"
263
 
264
- #: help-body.php:551
265
  msgid " Tutorial"
266
  msgstr "Didacticiel"
267
 
268
- #: help-body.php:563
269
- msgid "Weblizar Responsive WordPress Theme"
270
- msgstr "Weblizar Responsive WordPress Theme"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
 
272
- #: help-body.php:564
273
- msgid "Get The Premium, And Create your website Beautifully"
274
- msgstr "Obtenez la prime, et créez votre site Web magnifiquement"
275
 
276
- #: help-body.php:568
277
- msgid "Premium Themes"
278
- msgstr "Thèmes Premium"
279
 
280
- #: help-body.php:579
281
- msgid "Premium Plugins"
282
- msgstr "Plugins Premium"
 
 
 
 
283
 
284
- #: help-body.php:593
285
- msgid "Note: More details to click on weblizar Products site link are below given view site button"
286
  msgstr ""
287
- "Remarque: Plus de détails pour cliquer sur Weblizar. Le lien du site des produits est ci-dessous, voir le "
288
- "bouton du site"
289
 
290
- #: help-body.php:597
291
- msgid "View Site"
292
- msgstr "Voir le site"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
 
294
  #~ msgid "Tutorial"
295
  #~ msgstr "Didacticiel"
@@ -297,9 +731,6 @@ msgstr "Voir le site"
297
  #~ msgid "Widget Color Scheme"
298
  #~ msgstr "Couleur du widget"
299
 
300
- #~ msgid "Show Widget Header"
301
- #~ msgstr "Afficher l'en-tête du widget"
302
-
303
  #~ msgid "Light Color Theme"
304
  #~ msgstr "Couleur du thème claire"
305
 
@@ -310,10 +741,11 @@ msgstr "Voir le site"
310
  #~ msgstr "कोइ समय चुनें"
311
 
312
  #~ msgid ""
313
- #~ "Thank you for scheduling appointment with us.<br>A confirmation mail will be forward to you soon after "
314
- #~ "admin approval."
315
  #~ msgstr ""
316
- #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द ही आपको भेजा जाएगा।"
 
317
 
318
  #~ msgid "Select any service."
319
  #~ msgstr "कोइ सेवा चुनें"
@@ -337,13 +769,11 @@ msgstr "Voir le site"
337
  #~ msgstr "नई नियुक्ति बनायें"
338
 
339
  #~ msgid ""
340
- #~ "Thank you for scheduling appointment with us. A confirmation mail will be sent to you soon after admin "
341
- #~ "approval."
342
  #~ msgstr ""
343
- #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द ही आपको भेजा जाएगा।"
344
-
345
- #~ msgid "Click Here"
346
- #~ msgstr "यहाँ क्लिक करें"
347
 
348
  #~ msgid "to book another appointment."
349
  #~ msgstr "एक और नियुक्ति बुक करने के लिए."
@@ -372,9 +802,6 @@ msgstr "Voir le site"
372
  #~ msgid "Back"
373
  #~ msgstr "पीछे जायें"
374
 
375
- #~ msgid "Available Time For"
376
- #~ msgstr "समय का चयन इस सेवा के लिए"
377
-
378
  #~ msgid "On"
379
  #~ msgstr "पर"
380
 
@@ -451,10 +878,11 @@ msgstr "Voir le site"
451
  #~ msgstr "अमान्य ईमेल"
452
 
453
  #~ msgid ""
454
- #~ "Thank you for scheduling appointment with us. A confirmation mail will be forward to you soon after admin "
455
- #~ "approval."
456
  #~ msgstr ""
457
- #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द ही आपको भेजा जाएगा।"
 
458
 
459
  #~ msgid "Sorry! Today's all appointments has been booked."
460
  #~ msgstr "क्षमा करें! आज सभी नियुक्तियों को बुक किया जा चुका है।"
@@ -483,7 +911,9 @@ msgstr "Voir le site"
483
  #~ msgid "Help & Support"
484
  #~ msgstr "मदद और समर्थन"
485
 
486
- #~ msgid "Appointment Calendar Plugin has been successfully removed. It can be re-activated from the "
 
 
487
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन सफलतापूर्वक हटा दिया गया है। आप इसे फिर से सक्रिय कर सकते हैं"
488
 
489
  #~ msgid "Plugins Page"
@@ -493,17 +923,18 @@ msgstr "Voir le site"
493
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन हटायें।"
494
 
495
  #~ msgid ""
496
- #~ "This operation wiil delete all Appointment Calendar data & settings. If you continue, You will not be able "
497
- #~ "to retrieve or restore your appointments entries."
498
  #~ msgstr ""
499
- #~ "यह कार्यवाही नियुक्ति कैलेंडर डेटा की नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर देगी. यह पूर्ववत प्राप्त नहीं किया जा सकता है।"
 
500
 
501
  #~ msgid ""
502
- #~ "Warning! Appointment Calendar data & settings, including appointment entries will be deleted. This cannot "
503
- #~ "be undone. OK to delete, CANCEL to stop"
504
  #~ msgstr ""
505
- #~ "चेतावनी! नियुक्ति कैलेंडर डेटा और नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर दिया जाएगा. यह पूर्ववत प्राप्त नहीं किया जा सकता "
506
- #~ "है. इसको रोकने के लिए रद्द करें।"
507
 
508
  #~ msgid "REMOVE PLUGIN"
509
  #~ msgstr "प्लगइन हटायें"
@@ -574,9 +1005,6 @@ msgstr "Voir le site"
574
  #~ msgid "Time"
575
  #~ msgstr "समय"
576
 
577
- #~ msgid "Status"
578
- #~ msgstr "अवस्था"
579
-
580
  #~ msgid "Action"
581
  #~ msgstr "कार्रवाई"
582
 
@@ -886,9 +1314,6 @@ msgstr "Voir le site"
886
  #~ msgid "300 Minutes (5 Hour)"
887
  #~ msgstr "300 मिनट (5 घंटे)"
888
 
889
- #~ msgid "Select slot time."
890
- #~ msgstr "स्लॉट समय चुनें"
891
-
892
  #~ msgid "Select start time."
893
  #~ msgstr "प्रारम्भ समय चुनें"
894
 
@@ -925,9 +1350,6 @@ msgstr "Voir le site"
925
  #~ msgid "Notification settings successfully updated."
926
  #~ msgstr "अधिसूचना सेटिंग सफलतापूर्वक नवीनतम हो चुकी है।"
927
 
928
- #~ msgid "Save"
929
- #~ msgstr "बनायें"
930
-
931
  #~ msgid "Rename Category"
932
  #~ msgstr "श्रेणी का नाम बदलें"
933
 
@@ -937,9 +1359,6 @@ msgstr "Voir le site"
937
  #~ msgid "Do you want to delete this Category?"
938
  #~ msgstr "क्या आप यह श्रेणी हटाना चाहते हैं?"
939
 
940
- #~ msgid "Do you want to delete this service?"
941
- #~ msgstr "क्या आप ये सेवा हटाना चाहते हैं?"
942
-
943
  #~ msgid "Add New Service to this Category"
944
  #~ msgstr "इस श्रेणी में नई सेवा जोंडे़"
945
 
@@ -1081,9 +1500,6 @@ msgstr "Voir le site"
1081
  #~ msgid "Appointment End Time"
1082
  #~ msgstr "नियुक्ति का अंतिम समय"
1083
 
1084
- #~ msgid "Appointment Date"
1085
- #~ msgstr "नियुक्ति की तारीख"
1086
-
1087
  #~ msgid "Appointment Description"
1088
  #~ msgstr "नियुक्ति विवरण"
1089
 
@@ -1175,19 +1591,24 @@ msgstr "Voir le site"
1175
  #~ msgstr "नियुक्त हो चुकी"
1176
 
1177
  #~ msgid ""
1178
- #~ "<strong>Appointment Calendar Lite</strong> is a simple but effective plugin which enables you to take "
1179
- #~ "appointments on your wordpress blog."
1180
  #~ msgstr ""
1181
- #~ "<strong>नियुक्ति कैलेंडर एक सरल लेकिन प्रभावी प्लगइन जो आपको अपने वर्डप्रैस ब्लॉग पर नियुक्तियों को लेने के लिए सक्षम बनाता है। "
1182
- #~ "</strong>"
1183
 
1184
- #~ msgid "If you are a consultant/doctor/lawyer etc, you can harness the power of appointment calendar."
1185
- #~ msgstr "यदि आप एक परामर्शदाता चिकित्सक, वकील आदि हैं, तो आप नियुक्ति कैलेंडर की शक्ति का दोहन कर सकते हैं।"
 
 
 
1186
 
1187
  #~ msgid ""
1188
- #~ "Simply unzip and upload appointment-calendar directory to /wp-content/plugins/ directory and activate the "
1189
- #~ "plugin."
1190
- #~ msgstr "बस खोलें और नियुक्ति कैलेंडर प्रीमियम प्लगइन को /wp-content/plugins/ डयरेक्ट्री में अपलोड करें और प्लगइन को सक्रिय करें।"
 
 
1191
 
1192
  #~ msgid "To insert Appointment Calendar into any post or page, use the shortcode:"
1193
  #~ msgstr "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर डालने के लिए इस शोर्टकोड का उपयोग करें:"
@@ -1240,9 +1661,6 @@ msgstr "Voir le site"
1240
  #~ msgid "Select Service:"
1241
  #~ msgstr "सेवा चयन करें:"
1242
 
1243
- #~ msgid "Loading Staff..."
1244
- #~ msgstr "कर्मचारी लोड हो रहें हैं ..."
1245
-
1246
  #~ msgid "Select Staff:"
1247
  #~ msgstr "कर्मचारी चयन करें:"
1248
 
@@ -1369,9 +1787,6 @@ msgstr "Voir le site"
1369
  #~ msgid "Sorry! No Time Available Today."
1370
  #~ msgstr "क्षमा करें! आज कोई समय उपलब्ध नहीं है।"
1371
 
1372
- #~ msgid "None"
1373
- #~ msgstr "नहीं"
1374
-
1375
  #~ msgid "Particular Dates"
1376
  #~ msgstr "विशेष तिथियाँ"
1377
 
@@ -1416,9 +1831,6 @@ msgstr "Voir le site"
1416
  #~ msgid "Appointment History"
1417
  #~ msgstr "नियुक्ति बनाने वाला"
1418
 
1419
- #~ msgid "Do you want to delete this client"
1420
- #~ msgstr "क्या आप यह ग्राहक हटाना चाहते हैं?"
1421
-
1422
  #~ msgid "First"
1423
  #~ msgstr "प्रथम"
1424
 
@@ -1548,9 +1960,6 @@ msgstr "Voir le site"
1548
  #~ msgid "New service added successfully."
1549
  #~ msgstr "टाईम आफ हटा दिया गया है।"
1550
 
1551
- #~ msgid "Service updated successfully."
1552
- #~ msgstr "सेवा सफलतापूर्वक नवीनतम कर दी गई है।"
1553
-
1554
  #, fuzzy
1555
  #~ msgid "Capacity cannot be blank."
1556
  #~ msgstr "शहर खाली नहीं हो सकता."
@@ -1581,9 +1990,6 @@ msgstr "Voir le site"
1581
  #~ msgid "Staff Experience(In year)."
1582
  #~ msgstr "कर्मचारी अनुभव (वर्ष में)"
1583
 
1584
- #~ msgid "Group Name"
1585
- #~ msgstr "समूह का नाम"
1586
-
1587
  #~ msgid "Select Staff Group"
1588
  #~ msgstr "कर्मचारी की समूह का चयन करें"
1589
 
@@ -1639,9 +2045,6 @@ msgstr "Voir le site"
1639
  #~ msgid "Invalid value."
1640
  #~ msgstr "अमान्य तथ्य"
1641
 
1642
- #~ msgid "Select any group."
1643
- #~ msgstr "कोई समूह चुनें"
1644
-
1645
  #~ msgid "Assign any service."
1646
  #~ msgstr "कोई भी सेवा जोंडे़"
1647
 
@@ -1690,9 +2093,6 @@ msgstr "Voir le site"
1690
  #~ msgid "Settings Panel"
1691
  #~ msgstr "सेटिंग्स पैनल"
1692
 
1693
- #~ msgid "Business Profile"
1694
- #~ msgstr "व्यापार रूपरेखा"
1695
-
1696
  #~ msgid "Business Hours"
1697
  #~ msgstr "व्यापार के घटें"
1698
 
@@ -1789,7 +2189,8 @@ msgstr "Voir le site"
1789
  #~ msgid "Appointment Calendar Premium"
1790
  #~ msgstr "नियुक्ति कैलेंडर प्रीमियम"
1791
 
1792
- #~ msgid "To insert Appointment Calendar Premium Button into any post or page, use the shortcode:"
 
1793
  #~ msgstr "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर प्रीमियम बटन डालने के लिए इस शोर्टकोड का उपयोग करें:"
1794
 
1795
  #, fuzzy
@@ -1878,9 +2279,6 @@ msgstr "Voir le site"
1878
  #~ msgid "Language"
1879
  #~ msgstr "भाषा"
1880
 
1881
- #~ msgid "Time Zone"
1882
- #~ msgstr "समय क्षेत्र"
1883
-
1884
  #~ msgid "Currency"
1885
  #~ msgstr "मुद्रा"
1886
 
@@ -1977,9 +2375,6 @@ msgstr "Voir le site"
1977
  #~ msgid "Business Name"
1978
  #~ msgstr "व्यापार नाम"
1979
 
1980
- #~ msgid "Owner"
1981
- #~ msgstr "मालिक"
1982
-
1983
  #~ msgid "Fax"
1984
  #~ msgstr "फैक्स"
1985
 
@@ -1995,9 +2390,6 @@ msgstr "Voir le site"
1995
  #~ msgid "Business Name."
1996
  #~ msgstr "व्यापार नाम"
1997
 
1998
- #~ msgid "Owner Name."
1999
- #~ msgstr "मालिक का नाम"
2000
-
2001
  #~ msgid "Address."
2002
  #~ msgstr "पता"
2003
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Facebook By Weblizar\n"
4
+ "POT-Creation-Date: 2018-08-11 11:50+0530\n"
5
+ "PO-Revision-Date: 2018-08-11 11:52+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr\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 2.0.8\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: function/facebook-by-weblizar-help.php:15
19
+ msgid "Feed & LikeBox For Facebook"
20
+ msgstr ""
21
 
22
+ #: function/facebook-by-weblizar-help.php:16
23
+ msgid ""
24
+ "Display a completely responsive & customizable facebook feed on your website which match "
25
+ "with the look and feel of your website"
26
+ msgstr ""
27
+
28
+ #: function/facebook-by-weblizar-help.php:22
29
  msgid "Support Forum"
30
  msgstr "Forum d'entraide"
31
 
32
+ #: function/facebook-by-weblizar-help.php:23
33
  msgid "Plugin Change Log"
34
  msgstr "Journal de changement de plugin"
35
 
36
+ #: function/facebook-by-weblizar-help.php:24
37
+ msgid "Upgrade To Pro"
38
+ msgstr ""
39
+
40
+ #: function/facebook-by-weblizar-help.php:26
41
+ msgid "Do you like this plugin"
42
+ msgstr ""
43
+
44
+ #: function/facebook-by-weblizar-help.php:26
45
+ msgid "Please take a few seconds to"
46
+ msgstr ""
47
+
48
+ #: function/facebook-by-weblizar-help.php:27
49
+ msgid "Rate it on WordPress.org"
50
+ msgstr ""
51
 
52
+ #: function/facebook-by-weblizar-help.php:46
53
+ #, fuzzy
54
+ #| msgid "LikeBox"
55
+ msgid " Like Box"
56
+ msgstr "LikeBox"
57
 
58
+ #: function/facebook-by-weblizar-help.php:47
59
+ #, fuzzy
60
+ #| msgid "Facebook Page URL"
61
+ msgid " Facebook Feed"
62
+ msgstr "URL de la page Facebook"
63
+
64
+ #: function/facebook-by-weblizar-help.php:48
65
+ msgid " Feed Tab"
66
+ msgstr ""
67
+
68
+ #: function/facebook-by-weblizar-help.php:49
69
+ #, fuzzy
70
+ #| msgid "Need Help"
71
+ msgid " Need Help"
72
  msgstr "Besoin d'aide ?"
73
 
74
+ #: function/facebook-by-weblizar-help.php:50
75
+ msgid " Upgrade to Pro"
76
+ msgstr ""
77
 
78
+ #: function/facebook-by-weblizar-help.php:51
79
+ #, fuzzy
80
+ #| msgid "Our Products"
81
+ msgid " Our Product"
82
+ msgstr "Nos Produits"
83
 
84
+ #: function/facebook-by-weblizar-short-code.php:62
85
+ #: function/facebook-by-weblizar-widgets.php:78
86
  msgid "Facebook By Weblizar Powered By Weblizar"
87
  msgstr "Facebook par Weblizar Powered By Weblizar"
88
 
89
+ #: function/facebook-by-weblizar-widgets.php:20
90
  msgid "Display Facebook Page Live Stream & Fans"
91
  msgstr "Afficher la Page Facebook Live Stream & Fans"
92
 
93
+ #: function/facebook-by-weblizar-widgets.php:148
94
  msgid "LikeBox"
95
  msgstr "LikeBox"
96
 
97
+ #: function/facebook-by-weblizar-widgets.php:152
98
  msgid "Title:"
99
  msgstr "Titre:"
100
 
101
+ #: function/facebook-by-weblizar-widgets.php:156 function/help-body.php:8
102
+ #: function/help-body.php:129
103
  msgid "Facebook Page URL"
104
  msgstr "URL de la page Facebook"
105
 
106
+ #: function/facebook-by-weblizar-widgets.php:160 function/help-body.php:13
107
  msgid "Show Faces"
108
  msgstr "Afficher les visages"
109
 
110
+ #: function/facebook-by-weblizar-widgets.php:167 function/help-body.php:21
111
  msgid "Show Live Stream"
112
  msgstr "Afficher les nouvelles en direct"
113
 
114
+ #: function/facebook-by-weblizar-widgets.php:174 function/help-body.php:29
115
  msgid "Widget Width"
116
  msgstr "Largeur du widget"
117
 
118
+ #: function/facebook-by-weblizar-widgets.php:178 function/help-body.php:34
119
  msgid "Widget Height"
120
  msgstr "Hauteur du widget"
121
 
122
+ #: function/facebook-by-weblizar-widgets.php:182 function/help-body.php:39
123
  msgid "Facebook App ID"
124
  msgstr "Facebook App ID"
125
 
126
+ #: function/facebook-by-weblizar-widgets.php:182 function/help-body.php:39
127
+ msgid "Optional"
128
+ msgstr ""
129
 
130
+ #: function/facebook-by-weblizar-widgets.php:184
131
  msgid "Get Your Facebook App. Id"
132
  msgstr "Obtenir votre Facebook App. ID"
133
 
134
+ #: function/facebook-by-weblizar-widgets.php:184 function/help-body.php:41
135
  msgid "HERE"
136
  msgstr "ICI"
137
 
138
+ #: function/facebook-by-weblizar-widgets.php:189
139
  msgid "Rate Us on "
140
  msgstr "Évaluez-nous sur"
141
 
142
+ #: function/facebook-feed-shortcode-data.php:124 function/facebook-feed-shortcode.php:113
143
+ #: function/facebook-feed-shortcode.php:170 function/facebook-feed-widget.php:143
144
+ msgid "...See more"
145
+ msgstr ""
146
 
147
+ #: function/facebook-feed-shortcode-data.php:140
148
+ #, fuzzy
149
+ #| msgid "LikeBox"
150
+ msgid "Like"
151
+ msgstr "LikeBox"
152
 
153
+ #: function/facebook-feed-shortcode-data.php:162 function/facebook-feed-shortcode.php:213
154
+ #: function/facebook-feed-widget.php:200
155
+ msgid "Comment on Facebook"
156
+ msgstr ""
157
 
158
+ #: function/facebook-feed-shortcode-data.php:197
159
+ msgid "reply"
160
+ msgstr ""
161
 
162
+ #: function/facebook-feed-shortcode.php:41 function/facebook-feed-widget.php:66
163
+ #, fuzzy
164
+ #| msgid "LikeBox"
165
+ msgid "Likes"
166
+ msgstr "LikeBox"
167
 
168
+ #: function/facebook-feed-shortcode.php:47
169
+ msgid "Share"
170
+ msgstr ""
171
+
172
+ #: function/facebook-feed-shortcode.php:207 function/facebook-feed-widget.php:194
173
+ msgid "people reacted to this"
174
+ msgstr ""
175
+
176
+ #: function/facebook-feed-shortcode.php:246 function/facebook-feed-widget.php:234
177
+ msgid "Posted:"
178
+ msgstr ""
179
+
180
+ #: function/facebook-feed-shortcode.php:249 function/facebook-feed-widget.php:237
181
+ msgid "Replies"
182
+ msgstr ""
183
+
184
+ #: function/facebook-feed-widget.php:310
185
+ #, fuzzy
186
+ #| msgid "Widget Width"
187
+ msgid "Widget Title"
188
+ msgstr "Largeur du widget"
189
+
190
+ #: function/facebook-feed.php:31
191
+ #, fuzzy
192
+ #| msgid "Settings"
193
+ msgid "Feed Settings"
194
+ msgstr "Réglages"
195
+
196
+ #: function/facebook-feed.php:37
197
+ msgid "Choose page, Group or Profile:"
198
+ msgstr ""
199
+
200
+ #: function/facebook-feed.php:40
201
+ msgid "Page"
202
+ msgstr ""
203
+
204
+ #: function/facebook-feed.php:41
205
+ msgid "Group"
206
+ msgstr ""
207
+
208
+ #: function/facebook-feed.php:42
209
+ msgid "Profile"
210
+ msgstr ""
211
+
212
+ #: function/facebook-feed.php:49
213
+ msgid "Page url:"
214
+ msgstr ""
215
+
216
+ #: function/facebook-feed.php:55
217
+ msgid "Group id:"
218
+ msgstr ""
219
+
220
+ #: function/facebook-feed.php:56
221
+ msgid "This Options Available in pro version"
222
+ msgstr ""
223
+
224
+ #: function/facebook-feed.php:59
225
+ msgid "Acess Token:"
226
+ msgstr ""
227
+
228
+ #: function/facebook-feed.php:60
229
+ msgid "This Option Available in pro version"
230
+ msgstr ""
231
+
232
+ #: function/facebook-feed.php:65
233
+ msgid "Content type:"
234
+ msgstr ""
235
+
236
+ #: function/facebook-feed.php:68
237
+ msgid "Timeline"
238
+ msgstr ""
239
+
240
+ #: function/facebook-feed.php:70
241
+ msgid "Specific"
242
+ msgstr ""
243
+
244
+ #: function/facebook-feed.php:74
245
+ msgid "Show posts by:"
246
+ msgstr ""
247
+
248
+ #: function/facebook-feed.php:77
249
+ msgid "Owner"
250
+ msgstr ""
251
+
252
+ #: function/facebook-feed.php:78
253
+ msgid "Owner and other"
254
+ msgstr ""
255
+
256
+ #: function/facebook-feed.php:80 function/facebook-feed.php:116 function/facebook-feed.php:127
257
+ #: function/facebook-feed.php:135 function/facebook-feed.php:165
258
+ msgid "Available in pro version."
259
+ msgstr ""
260
+
261
+ #: function/facebook-feed.php:84
262
+ msgid "Post type:"
263
+ msgstr ""
264
+
265
+ #: function/facebook-feed.php:87
266
+ msgid "Statuses"
267
+ msgstr ""
268
+
269
+ #: function/facebook-feed.php:90 function/facebook-feed.php:106
270
+ msgid "Photos"
271
+ msgstr ""
272
+
273
+ #: function/facebook-feed.php:93 function/facebook-feed.php:109
274
+ msgid "Videos"
275
+ msgstr ""
276
+
277
+ #: function/facebook-feed.php:96
278
+ msgid "Links"
279
+ msgstr ""
280
+
281
+ #: function/facebook-feed.php:99 function/facebook-feed.php:115
282
+ msgid "Events"
283
+ msgstr ""
284
+
285
+ #: function/facebook-feed.php:103
286
+ msgid "Use page s:"
287
+ msgstr ""
288
+
289
+ #: function/facebook-feed.php:112
290
+ msgid "Albums"
291
+ msgstr ""
292
+
293
+ #: function/facebook-feed.php:120
294
+ msgid "Layout"
295
+ msgstr ""
296
+
297
+ #: function/facebook-feed.php:124
298
+ msgid "5+ Column Layouts "
299
+ msgstr ""
300
+
301
+ #: function/facebook-feed.php:130
302
+ msgid "Hover Effect"
303
+ msgstr ""
304
+
305
+ #: function/facebook-feed.php:133
306
+ msgid "60+ Image Effects"
307
+ msgstr ""
308
+
309
+ #: function/facebook-feed.php:147
310
+ msgid "Hover color"
311
+ msgstr ""
312
+
313
+ #: function/facebook-feed.php:150
314
+ msgid "Choose feed hover color."
315
+ msgstr ""
316
+
317
+ #: function/facebook-feed.php:154
318
+ msgid "Number of posts:"
319
+ msgstr ""
320
+
321
+ #: function/facebook-feed.php:160
322
+ msgid "Loading effect:"
323
+ msgstr ""
324
+
325
+ #: function/facebook-feed.php:163
326
+ msgid "None"
327
+ msgstr ""
328
+
329
+ #: function/facebook-feed.php:169
330
+ #, fuzzy
331
+ #| msgid "Show Widget Header"
332
+ msgid "Show Header:"
333
+ msgstr "Afficher l'en-tête du widget"
334
+
335
+ #: function/facebook-feed.php:172
336
+ msgid "Do you want to show cover image."
337
+ msgstr ""
338
+
339
+ #: function/facebook-feed.php:176
340
+ msgid "Select layout:"
341
+ msgstr ""
342
+
343
+ #: function/facebook-feed.php:181
344
+ msgid "Full-width"
345
+ msgstr ""
346
+
347
+ #: function/facebook-feed.php:182
348
+ msgid "Half-width"
349
+ msgstr ""
350
+
351
+ #: function/facebook-feed.php:183
352
+ msgid "Thumbnail"
353
+ msgstr ""
354
+
355
+ #: function/facebook-feed.php:186
356
+ msgid "Select time-line(Posts) layout."
357
+ msgstr ""
358
+
359
+ #: function/facebook-feed.php:190
360
+ msgid "Light Box Styles"
361
+ msgstr ""
362
+
363
+ #: function/facebook-feed.php:194
364
+ msgid "Custom Box"
365
+ msgstr ""
366
 
367
+ #: function/facebook-feed.php:195
368
+ msgid " 8+Light-Box Layouts available in Pro"
369
+ msgstr ""
370
 
371
+ #: function/facebook-feed.php:198
372
+ msgid "Select lightbox Styles."
 
373
  msgstr ""
374
 
375
+ #: function/facebook-feed.php:215
376
+ msgid "Save"
377
+ msgstr ""
378
 
379
+ #: function/facebook-feed.php:221
380
+ msgid "Success!"
381
+ msgstr ""
382
 
383
+ #: function/facebook-feed.php:221
384
+ msgid "Data Save Successfully."
385
+ msgstr ""
386
 
387
+ #: function/facebook-feed.php:227
388
+ msgid "Plugin Shortcode"
389
+ msgstr ""
390
 
391
+ #: function/facebook-feed.php:228
392
+ msgid "copy this shortcode"
393
+ msgstr ""
394
 
395
+ #: function/facebook-feed.php:228
396
+ msgid "to any page, post or widget where you want to showcase your Facebook feed."
397
+ msgstr ""
398
 
399
+ #: function/help-body.php:4
400
+ #, fuzzy
401
+ #| msgid "Facebook Like Box Shoertcode"
402
+ msgid "Facebook Like Box Shortcode Settings"
403
+ msgstr "Facebook Like Box Shoertcode"
404
 
405
+ #: function/help-body.php:15 function/help-body.php:23
406
+ msgid "Yes"
407
+ msgstr "Oui"
408
 
409
+ #: function/help-body.php:16 function/help-body.php:24
410
+ msgid "No"
411
+ msgstr "Non"
412
 
413
+ #: function/help-body.php:41
414
+ msgid "Get Your Own Facebook APP Id"
415
+ msgstr "Obtenir votre Facebook App. ID"
416
 
417
+ #: function/help-body.php:45
418
+ msgid "SAVE"
419
+ msgstr "ENREGISTRER"
420
 
421
+ #: function/help-body.php:50
422
+ msgid "Settings successfully saved. Reloading page for generating preview below."
423
+ msgstr "Réglages sauvegardés. Rafraichissez la page pour les générer"
424
 
425
+ #: function/help-body.php:60
426
+ #, fuzzy
427
+ #| msgid "Facebook Like Box Shoertcode"
428
+ msgid "Facebook Likebox \" [FBW] \" Shortcode Preview"
429
+ msgstr "Facebook Like Box Shoertcode"
430
+
431
+ #: function/help-body.php:84 function/help-body.php:117
432
+ #, fuzzy
433
+ #| msgid "Facebook Like Box Widget"
434
+ msgid "Facebook Feed & Like Box"
435
+ msgstr "Facebook Like Box Widget"
436
+
437
+ #: function/help-body.php:89
438
+ #, fuzzy
439
+ #| msgid "Facebook Page URL"
440
+ msgid "Facebook Page Like Box"
441
+ msgstr "URL de la page Facebook"
442
 
443
+ #: function/help-body.php:91
444
  msgid "Facebook Like Box Widget"
445
  msgstr "Facebook Like Box Widget"
446
 
447
+ #: function/help-body.php:92
448
+ #, fuzzy
449
+ #| msgid "Facebook Like Box Shoertcode"
450
+ msgid "Facebook Like Box Short-code"
451
  msgstr "Facebook Like Box Shoertcode"
452
 
453
+ #: function/help-body.php:94
454
  msgid "You can use the widget to display your Facebook Like Box in any theme Widget Sections"
455
  msgstr ""
456
+ "Vous pouvez utiliser le widget pour afficher votre Facebook Like Box dans n'importe quelle "
457
+ "section Widget Widget"
458
 
459
+ #: function/help-body.php:95 function/help-body.php:114
460
  msgid "Simple go to your"
461
  msgstr "Simple, passez à votre"
462
 
463
+ #: function/help-body.php:96 function/help-body.php:115
464
  msgid "Widgets"
465
  msgstr "Widgets"
466
 
467
+ #: function/help-body.php:96 function/help-body.php:116
468
  msgid "section and activate available"
469
  msgstr "Section et activation disponible"
470
 
471
+ #: function/help-body.php:97
472
+ #, fuzzy
473
+ #| msgid "Facebook Like Box Widget"
474
+ msgid "Facebook Like Box"
475
+ msgstr "Facebook Like Box Widget"
476
+
477
+ #: function/help-body.php:98 function/help-body.php:118
478
  msgid "widget in any sidebar section, like in left sidebar, right sidebar or footer sidebar"
479
  msgstr ""
480
+ "Widget dans n'importe quelle section de la barre latérale, comme dans la barre latérale "
481
+ "gauche, la barre latérale droite ou la barre latérale du pied de page"
482
 
483
+ #: function/help-body.php:101
484
+ #, fuzzy
485
+ #| msgid "Facebook Like Box Shoertcode"
486
+ msgid "Facebook Like Box Short-Code"
487
+ msgstr "Facebook Like Box Shoertcode"
488
+
489
+ #: function/help-body.php:103
490
+ #, fuzzy
491
+ #| msgid "shortcode give ability to display Facebook Like Box in any Page / Post with content"
492
+ msgid "Shortcode give ability to display Facebook Like Box in any Page / Post with content"
493
  msgstr ""
494
+ "Shortcode donne la possibilité d'afficher Facebook Like Box dans n'importe quelle page / "
495
+ "Poste avec du contenu"
496
 
497
+ #: function/help-body.php:104 function/help-body.php:123
498
  msgid "To use shortcode, just copy "
499
  msgstr "Pour utiliser shortcode, il suffit de copier"
500
 
501
+ #: function/help-body.php:105 function/help-body.php:124
502
  msgid "shortcode and paste into content editor of any Page / Post"
503
  msgstr "Shortcode et collez dans l'éditeur de contenu de toute page / post"
504
 
505
+ #: function/help-body.php:109
506
+ #, fuzzy
507
+ #| msgid "Facebook Page URL"
508
+ msgid "Facebook Page Feed"
509
+ msgstr "URL de la page Facebook"
510
+
511
+ #: function/help-body.php:111
512
+ #, fuzzy
513
+ #| msgid "Facebook Like Box Widget"
514
+ msgid "Facebook Page Feed Widget"
515
+ msgstr "Facebook Like Box Widget"
516
+
517
+ #: function/help-body.php:112 function/help-body.php:120
518
+ #, fuzzy
519
+ #| msgid "Facebook Like Box Shoertcode"
520
+ msgid "Facebook Page Feed Short-Code"
521
+ msgstr "Facebook Like Box Shoertcode"
522
+
523
+ #: function/help-body.php:113
524
+ #, fuzzy
525
+ #| msgid ""
526
+ #| "You can use the widget to display your Facebook Like Box in any theme Widget Sections"
527
+ msgid "You can use the widget to display your Facebook Page Feed in any theme Widget Sections"
528
+ msgstr ""
529
+ "Vous pouvez utiliser le widget pour afficher votre Facebook Like Box dans n'importe quelle "
530
+ "section Widget Widget"
531
+
532
+ #: function/help-body.php:122
533
+ msgid "shortcode give ability to display Facebook Like Box in any Page / Post with content"
534
+ msgstr ""
535
+ "Shortcode donne la possibilité d'afficher Facebook Like Box dans n'importe quelle page / "
536
+ "Poste avec du contenu"
537
+
538
+ #: function/help-body.php:128
539
  msgid "What is Facebook Page URL"
540
  msgstr "Qu'est-ce que l'URL de la page Facebook"
541
 
542
+ #: function/help-body.php:129
543
  msgid ""
544
+ "is your Facebook page your where you promote your business. Here your customers, clients, "
545
+ "friends, guests can like, share, comment review your POST"
546
  msgstr ""
547
+ "Est-ce que votre page Facebook est là où vous faites la promotion de votre entreprise? Ici, "
548
+ "vos clients, clients, amis, les clients peuvent aimer, partager, commenter votre POST"
549
 
550
+ #: function/help-body.php:131
551
  msgid "What is Facebook APP ID"
552
  msgstr "Qu'est-ce que Facebook APP ID"
553
 
554
+ #: function/help-body.php:132
555
  msgid "Facebook Application ID"
556
  msgstr "ID de l'application Facebook"
557
 
558
+ #: function/help-body.php:133
559
  msgid ""
560
+ " used to authenticate your Facebook Page data & settings. To get your own Facebook APP ID "
561
+ "please read our 4 Steps very simple and easy "
562
  msgstr ""
563
+ "Utilisé pour authentifier vos données et paramètres de la page Facebook. Pour obtenir votre "
564
+ "propre ID d'APP de Facebook, lisez nos 4 étapes très simples et faciles"
565
 
566
+ #: function/help-body.php:134
567
  msgid " Tutorial"
568
  msgstr "Didacticiel"
569
 
570
+ #: function/help-body.php:146
571
+ #, fuzzy
572
+ #| msgid "Facebook Page URL"
573
+ msgid "Facebook Feed Pro"
574
+ msgstr "URL de la page Facebook"
575
+
576
+ #: function/help-body.php:150
577
+ msgid "Unlimited Profile, Page & Group Feeds"
578
+ msgstr ""
579
+
580
+ #: function/help-body.php:151
581
+ msgid "Unlimited Feeds Per Page/Post"
582
+ msgstr ""
583
+
584
+ #: function/help-body.php:152
585
+ msgid "Light-Box Layouts 9+"
586
+ msgstr ""
587
+
588
+ #: function/help-body.php:153
589
+ msgid "Tons of Feed Short-Code"
590
+ msgstr ""
591
+
592
+ #: function/help-body.php:154
593
+ msgid "Specific Content Facebook Feeds"
594
+ msgstr ""
595
+
596
+ #: function/help-body.php:155
597
+ msgid "Many Loading & Hover CSS Effect"
598
+ msgstr ""
599
+
600
+ #: function/help-body.php:156
601
+ msgid "Auto-Update Feeds"
602
+ msgstr ""
603
+
604
+ #: function/help-body.php:159
605
+ msgid "Top Level & Stream Type Comment Display"
606
+ msgstr ""
607
+
608
+ #: function/help-body.php:160
609
+ msgid "Sharing On Social Media"
610
+ msgstr ""
611
+
612
+ #: function/help-body.php:161
613
+ #, fuzzy
614
+ #| msgid "Required"
615
+ msgid "No Code Require"
616
+ msgstr "Nécessaire"
617
+
618
+ #: function/help-body.php:162
619
+ #, fuzzy
620
+ #| msgid "Widgets"
621
+ msgid "Feed Widgets"
622
+ msgstr "Widgets"
623
+
624
+ #: function/help-body.php:163
625
+ msgid "Like & Share Button For Each Feed in Like-box"
626
+ msgstr ""
627
 
628
+ #: function/help-body.php:164
629
+ msgid "Fast & Friendly Support"
630
+ msgstr ""
631
 
632
+ #: function/help-body.php:165
633
+ msgid "Fully Responsive And Optimized"
634
+ msgstr ""
635
 
636
+ #: function/help-body.php:170
637
+ msgid "Try Live Demo"
638
+ msgstr ""
639
+
640
+ #: function/help-body.php:171 function/help-body.php:175
641
+ msgid "Click Here"
642
+ msgstr ""
643
 
644
+ #: function/help-body.php:174
645
+ msgid "Try Before Buy Using Admin Demo"
646
  msgstr ""
 
 
647
 
648
+ #: function/help-body.php:179
649
+ msgid "Buy Now ($19)"
650
+ msgstr ""
651
+
652
+ #~ msgid "Facebook By Weblizar"
653
+ #~ msgstr "Facebook par Weblizar"
654
+
655
+ #~ msgid "Plugin Recommendation"
656
+ #~ msgstr "Recommandation de plugin"
657
+
658
+ #~ msgid "Rate Us"
659
+ #~ msgstr "Évaluez nous"
660
+
661
+ #~ msgid "Shortcode Settings"
662
+ #~ msgstr "Réglage du ShortCode"
663
+
664
+ #~ msgid "Preview"
665
+ #~ msgstr "Aperçu"
666
+
667
+ #~ msgid "Get More Free Wordpress Plguins From Weblizar"
668
+ #~ msgstr "Obtenez plus gratuitement Wordpress Plguins de Weblizar"
669
+
670
+ #~ msgid "More Details"
671
+ #~ msgstr "Plus de détails"
672
+
673
+ #~ msgid "Install Now"
674
+ #~ msgstr "Installer maintenant"
675
+
676
+ #~ msgid "Update Now"
677
+ #~ msgstr "Mettre à jour maintenant"
678
+
679
+ #~ msgid "By "
680
+ #~ msgstr "par"
681
+
682
+ #~ msgid "Premium Editions"
683
+ #~ msgstr "Editions Premium"
684
+
685
+ #~ msgid "Visit Website"
686
+ #~ msgstr "Visiter le site web"
687
+
688
+ #~ msgid "Last Updated:"
689
+ #~ msgstr "Dernière mise à jour:"
690
+
691
+ #~ msgid "Untested with your version of WordPress"
692
+ #~ msgstr "Non testé avec votre version de WordPress"
693
+
694
+ #~ msgid "Incompatible with your version of WordPress"
695
+ #~ msgstr "Incompatible avec votre version de WordPress"
696
+
697
+ #~ msgid "Compatible with your version of WordPress"
698
+ #~ msgstr "Compatible avec votre version de WordPress"
699
+
700
+ #~ msgid "Facebook Like Box Help Section"
701
+ #~ msgstr "Section d'aide Facebook Like Box"
702
+
703
+ #~ msgid "Facebook By Weblizar plugin comes with 2 functionality"
704
+ #~ msgstr "Facebook By Weblizar plugin est livré avec 2 fonctionnalités"
705
+
706
+ #~ msgid "Weblizar Responsive WordPress Theme"
707
+ #~ msgstr "Weblizar Responsive WordPress Theme"
708
+
709
+ #~ msgid "Get The Premium, And Create your website Beautifully"
710
+ #~ msgstr "Obtenez la prime, et créez votre site Web magnifiquement"
711
+
712
+ #~ msgid "Premium Themes"
713
+ #~ msgstr "Thèmes Premium"
714
+
715
+ #~ msgid "Premium Plugins"
716
+ #~ msgstr "Plugins Premium"
717
+
718
+ #~ msgid ""
719
+ #~ "Note: More details to click on weblizar Products site link are below given view site "
720
+ #~ "button"
721
+ #~ msgstr ""
722
+ #~ "Remarque: Plus de détails pour cliquer sur Weblizar. Le lien du site des produits est ci-"
723
+ #~ "dessous, voir le bouton du site"
724
+
725
+ #~ msgid "View Site"
726
+ #~ msgstr "Voir le site"
727
 
728
  #~ msgid "Tutorial"
729
  #~ msgstr "Didacticiel"
731
  #~ msgid "Widget Color Scheme"
732
  #~ msgstr "Couleur du widget"
733
 
 
 
 
734
  #~ msgid "Light Color Theme"
735
  #~ msgstr "Couleur du thème claire"
736
 
741
  #~ msgstr "कोइ समय चुनें"
742
 
743
  #~ msgid ""
744
+ #~ "Thank you for scheduling appointment with us.<br>A confirmation mail will be forward to "
745
+ #~ "you soon after admin approval."
746
  #~ msgstr ""
747
+ #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द "
748
+ #~ "ही आपको भेजा जाएगा।"
749
 
750
  #~ msgid "Select any service."
751
  #~ msgstr "कोइ सेवा चुनें"
769
  #~ msgstr "नई नियुक्ति बनायें"
770
 
771
  #~ msgid ""
772
+ #~ "Thank you for scheduling appointment with us. A confirmation mail will be sent to you "
773
+ #~ "soon after admin approval."
774
  #~ msgstr ""
775
+ #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द "
776
+ #~ "ही आपको भेजा जाएगा।"
 
 
777
 
778
  #~ msgid "to book another appointment."
779
  #~ msgstr "एक और नियुक्ति बुक करने के लिए."
802
  #~ msgid "Back"
803
  #~ msgstr "पीछे जायें"
804
 
 
 
 
805
  #~ msgid "On"
806
  #~ msgstr "पर"
807
 
878
  #~ msgstr "अमान्य ईमेल"
879
 
880
  #~ msgid ""
881
+ #~ "Thank you for scheduling appointment with us. A confirmation mail will be forward to you "
882
+ #~ "soon after admin approval."
883
  #~ msgstr ""
884
+ #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द "
885
+ #~ "ही आपको भेजा जाएगा।"
886
 
887
  #~ msgid "Sorry! Today's all appointments has been booked."
888
  #~ msgstr "क्षमा करें! आज सभी नियुक्तियों को बुक किया जा चुका है।"
911
  #~ msgid "Help & Support"
912
  #~ msgstr "मदद और समर्थन"
913
 
914
+ #~ msgid ""
915
+ #~ "Appointment Calendar Plugin has been successfully removed. It can be re-activated from "
916
+ #~ "the "
917
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन सफलतापूर्वक हटा दिया गया है। आप इसे फिर से सक्रिय कर सकते हैं"
918
 
919
  #~ msgid "Plugins Page"
923
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन हटायें।"
924
 
925
  #~ msgid ""
926
+ #~ "This operation wiil delete all Appointment Calendar data & settings. If you continue, "
927
+ #~ "You will not be able to retrieve or restore your appointments entries."
928
  #~ msgstr ""
929
+ #~ "यह कार्यवाही नियुक्ति कैलेंडर डेटा की नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर देगी. यह पूर्ववत प्राप्त "
930
+ #~ "नहीं किया जा सकता है।"
931
 
932
  #~ msgid ""
933
+ #~ "Warning! Appointment Calendar data & settings, including appointment entries will be "
934
+ #~ "deleted. This cannot be undone. OK to delete, CANCEL to stop"
935
  #~ msgstr ""
936
+ #~ "चेतावनी! नियुक्ति कैलेंडर डेटा और नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर दिया जाएगा. यह पूर्ववत "
937
+ #~ "प्राप्त नहीं किया जा सकता है. इसको रोकने के लिए रद्द करें।"
938
 
939
  #~ msgid "REMOVE PLUGIN"
940
  #~ msgstr "प्लगइन हटायें"
1005
  #~ msgid "Time"
1006
  #~ msgstr "समय"
1007
 
 
 
 
1008
  #~ msgid "Action"
1009
  #~ msgstr "कार्रवाई"
1010
 
1314
  #~ msgid "300 Minutes (5 Hour)"
1315
  #~ msgstr "300 मिनट (5 घंटे)"
1316
 
 
 
 
1317
  #~ msgid "Select start time."
1318
  #~ msgstr "प्रारम्भ समय चुनें"
1319
 
1350
  #~ msgid "Notification settings successfully updated."
1351
  #~ msgstr "अधिसूचना सेटिंग सफलतापूर्वक नवीनतम हो चुकी है।"
1352
 
 
 
 
1353
  #~ msgid "Rename Category"
1354
  #~ msgstr "श्रेणी का नाम बदलें"
1355
 
1359
  #~ msgid "Do you want to delete this Category?"
1360
  #~ msgstr "क्या आप यह श्रेणी हटाना चाहते हैं?"
1361
 
 
 
 
1362
  #~ msgid "Add New Service to this Category"
1363
  #~ msgstr "इस श्रेणी में नई सेवा जोंडे़"
1364
 
1500
  #~ msgid "Appointment End Time"
1501
  #~ msgstr "नियुक्ति का अंतिम समय"
1502
 
 
 
 
1503
  #~ msgid "Appointment Description"
1504
  #~ msgstr "नियुक्ति विवरण"
1505
 
1591
  #~ msgstr "नियुक्त हो चुकी"
1592
 
1593
  #~ msgid ""
1594
+ #~ "<strong>Appointment Calendar Lite</strong> is a simple but effective plugin which "
1595
+ #~ "enables you to take appointments on your wordpress blog."
1596
  #~ msgstr ""
1597
+ #~ "<strong>नियुक्ति कैलेंडर एक सरल लेकिन प्रभावी प्लगइन जो आपको अपने वर्डप्रैस ब्लॉग पर नियुक्तियों को लेने के "
1598
+ #~ "लिए सक्षम बनाता है। </strong>"
1599
 
1600
+ #~ msgid ""
1601
+ #~ "If you are a consultant/doctor/lawyer etc, you can harness the power of appointment "
1602
+ #~ "calendar."
1603
+ #~ msgstr ""
1604
+ #~ "यदि आप एक परामर्शदाता चिकित्सक, वकील आदि हैं, तो आप नियुक्ति कैलेंडर की शक्ति का दोहन कर सकते हैं।"
1605
 
1606
  #~ msgid ""
1607
+ #~ "Simply unzip and upload appointment-calendar directory to /wp-content/plugins/ directory "
1608
+ #~ "and activate the plugin."
1609
+ #~ msgstr ""
1610
+ #~ "बस खोलें और नियुक्ति कैलेंडर प्रीमियम प्लगइन को /wp-content/plugins/ डयरेक्ट्री में अपलोड करें और प्लगइन "
1611
+ #~ "को सक्रिय करें।"
1612
 
1613
  #~ msgid "To insert Appointment Calendar into any post or page, use the shortcode:"
1614
  #~ msgstr "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर डालने के लिए इस शोर्टकोड का उपयोग करें:"
1661
  #~ msgid "Select Service:"
1662
  #~ msgstr "सेवा चयन करें:"
1663
 
 
 
 
1664
  #~ msgid "Select Staff:"
1665
  #~ msgstr "कर्मचारी चयन करें:"
1666
 
1787
  #~ msgid "Sorry! No Time Available Today."
1788
  #~ msgstr "क्षमा करें! आज कोई समय उपलब्ध नहीं है।"
1789
 
 
 
 
1790
  #~ msgid "Particular Dates"
1791
  #~ msgstr "विशेष तिथियाँ"
1792
 
1831
  #~ msgid "Appointment History"
1832
  #~ msgstr "नियुक्ति बनाने वाला"
1833
 
 
 
 
1834
  #~ msgid "First"
1835
  #~ msgstr "प्रथम"
1836
 
1960
  #~ msgid "New service added successfully."
1961
  #~ msgstr "टाईम आफ हटा दिया गया है।"
1962
 
 
 
 
1963
  #, fuzzy
1964
  #~ msgid "Capacity cannot be blank."
1965
  #~ msgstr "शहर खाली नहीं हो सकता."
1990
  #~ msgid "Staff Experience(In year)."
1991
  #~ msgstr "कर्मचारी अनुभव (वर्ष में)"
1992
 
 
 
 
1993
  #~ msgid "Select Staff Group"
1994
  #~ msgstr "कर्मचारी की समूह का चयन करें"
1995
 
2045
  #~ msgid "Invalid value."
2046
  #~ msgstr "अमान्य तथ्य"
2047
 
 
 
 
2048
  #~ msgid "Assign any service."
2049
  #~ msgstr "कोई भी सेवा जोंडे़"
2050
 
2093
  #~ msgid "Settings Panel"
2094
  #~ msgstr "सेटिंग्स पैनल"
2095
 
 
 
 
2096
  #~ msgid "Business Hours"
2097
  #~ msgstr "व्यापार के घटें"
2098
 
2189
  #~ msgid "Appointment Calendar Premium"
2190
  #~ msgstr "नियुक्ति कैलेंडर प्रीमियम"
2191
 
2192
+ #~ msgid ""
2193
+ #~ "To insert Appointment Calendar Premium Button into any post or page, use the shortcode:"
2194
  #~ msgstr "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर प्रीमियम बटन डालने के लिए इस शोर्टकोड का उपयोग करें:"
2195
 
2196
  #, fuzzy
2279
  #~ msgid "Language"
2280
  #~ msgstr "भाषा"
2281
 
 
 
 
2282
  #~ msgid "Currency"
2283
  #~ msgstr "मुद्रा"
2284
 
2375
  #~ msgid "Business Name"
2376
  #~ msgstr "व्यापार नाम"
2377
 
 
 
 
2378
  #~ msgid "Fax"
2379
  #~ msgstr "फैक्स"
2380
 
2390
  #~ msgid "Business Name."
2391
  #~ msgstr "व्यापार नाम"
2392
 
 
 
 
2393
  #~ msgid "Address."
2394
  #~ msgstr "पता"
2395
 
lang/wl_facebook-hi_IN.mo CHANGED
Binary file
lang/wl_facebook-hi_IN.po CHANGED
@@ -1,27 +1,27 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wl_facebook\n"
4
- "POT-Creation-Date: 2018-02-10 13:38+0530\n"
5
- "PO-Revision-Date: 2018-02-10 13:39+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: hi\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 2.0.5\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: facebook-by-weblizar-help.php:14
19
  #, fuzzy
20
- #| msgid "Facebook Page URL"
21
- msgid "Facebook Feed & LikeBox"
22
- msgstr "फेसबुक पेज यूआरएल"
23
 
24
- #: facebook-by-weblizar-help.php:15
25
  msgid ""
26
  "Display a completely responsive & customizable facebook feed on your website which match "
27
  "with the look and feel of your website"
@@ -29,1151 +29,1247 @@ msgstr ""
29
  "अपनी वेबसाइट पर पूरी तरह से उत्तरदायी और अनुकूलन वाले फेसबुक फ़ीड प्रदर्शित करें जो आपकी वेबसाइट के नज़र और "
30
  "अनुभव से मेल खाता है"
31
 
32
- #: facebook-by-weblizar-help.php:18
33
  msgid "Support Forum"
34
  msgstr "सहयता मंच"
35
 
36
- #: facebook-by-weblizar-help.php:19
37
  #, fuzzy
38
  #| msgid "Plugins Page"
39
  msgid "Plugin Change Log"
40
  msgstr "प्लगइन पृष्ठ"
41
 
42
- #: facebook-by-weblizar-help.php:20
 
 
 
 
 
 
43
  #, fuzzy
44
- #| msgid "Start Date"
45
- msgid "Start Rating"
46
- msgstr "प्रारम्भ दिनांक"
47
 
48
- #: facebook-by-weblizar-help.php:33
49
- msgid "Like Box"
 
 
 
 
 
 
 
 
 
 
50
  msgstr "बॉक्स की तरह"
51
 
52
- #: facebook-by-weblizar-help.php:38
53
  #, fuzzy
54
  #| msgid "Facebook Page URL"
55
- msgid "Facebook Feed"
56
  msgstr "फेसबुक पेज यूआरएल"
57
 
58
- #: facebook-by-weblizar-help.php:43
59
- msgid "Plugin Recommendation"
60
- msgstr "प्लगइन की सिफारिश"
61
 
62
- #: facebook-by-weblizar-help.php:49
63
- msgid "Need Help"
 
 
64
  msgstr "कोई मदद चाहिए"
65
 
66
- #: facebook-by-weblizar-help.php:54
67
- msgid "Our Products"
68
- msgstr "हमारे उत्पाद"
69
-
70
- #: facebook-by-weblizar-help.php:59
71
- msgid "Rate Us"
72
- msgstr "हमें रेटिंग दें"
73
-
74
- #: facebook-by-weblizar-help.php:64
75
- msgid "Upgrade TO Pro"
76
  msgstr "प्रो में अपग्रेड"
77
 
78
- #: facebook-by-weblizar-short-code.php:63 facebook-by-weblizar-widgets.php:78
 
 
 
 
 
 
 
79
  msgid "Facebook By Weblizar Powered By Weblizar"
80
  msgstr "वेबलिज़र द्वारा वेबलिज़र द्वारा संचालित"
81
 
82
- #: facebook-by-weblizar-widgets.php:20
83
  msgid "Display Facebook Page Live Stream & Fans"
84
  msgstr "फेसबुक पेज लाइव स्ट्रीम और प्रशंसक प्रदर्शित"
85
 
86
- #: facebook-by-weblizar-widgets.php:148
87
  msgid "LikeBox"
88
  msgstr "बॉक्स की तरह"
89
 
90
- #: facebook-by-weblizar-widgets.php:152
91
  msgid "Title:"
92
  msgstr "शीर्षक:"
93
 
94
- #: facebook-by-weblizar-widgets.php:156 help-body.php:153
 
95
  msgid "Facebook Page URL"
96
  msgstr "फेसबुक पेज यूआरएल"
97
 
98
- #: facebook-by-weblizar-widgets.php:160 help-body.php:159
99
  msgid "Show Faces"
100
  msgstr "चेहरे दिखाएँ"
101
 
102
- #: facebook-by-weblizar-widgets.php:167 help-body.php:168
103
  msgid "Show Live Stream"
104
  msgstr "लाइव स्ट्रीम दिखाएँ"
105
 
106
- #: facebook-by-weblizar-widgets.php:174 help-body.php:177
107
  msgid "Widget Width"
108
  msgstr "विजेट चौड़ाई"
109
 
110
- #: facebook-by-weblizar-widgets.php:178 help-body.php:183
111
  msgid "Widget Height"
112
  msgstr "विजेट लंबाई"
113
 
114
- #: facebook-by-weblizar-widgets.php:182 help-body.php:189
115
  msgid "Facebook App ID"
116
  msgstr "फेसबुक एप्लिकेशन आईडी"
117
 
118
- #: facebook-by-weblizar-widgets.php:182 help-body.php:189
119
- msgid "Required"
120
- msgstr "आवश्यक"
121
 
122
- #: facebook-by-weblizar-widgets.php:184
123
  msgid "Get Your Facebook App. Id"
124
  msgstr "आपका फेसबुक एप्लिकेशन प्राप्त करें"
125
 
126
- #: facebook-by-weblizar-widgets.php:184 help-body.php:191
127
  msgid "HERE"
128
  msgstr "यहाँ जायें"
129
 
130
- #: facebook-by-weblizar-widgets.php:189
131
  msgid "Rate Us on "
132
  msgstr "हमें रेट करें"
133
 
134
- #: facebook-feed.php:8
135
- msgid "Success!"
136
- msgstr "सफलता!"
 
137
 
138
- #: facebook-feed.php:8
139
- msgid "Data Save Successfully."
140
- msgstr "सेवा सफलतापूर्वक नवीनतम कर दी गई है"
 
 
141
 
142
- #: facebook-feed.php:16
143
- msgid "\" Facebook Feed \" Coming Soon"
144
- msgstr "\"फेसबुक फ़ीड\" जल्द ही आ रहा है"
 
 
 
145
 
146
- #: facebook-feed.php:22
147
- msgid "Here"
148
- msgstr "यहाँ"
149
 
150
- #: facebook-feed.php:23
151
  #, fuzzy
152
- #| msgid "Click Here"
153
- msgid " Click here"
154
- msgstr "यहाँ क्लिक करें"
 
 
 
 
 
 
 
 
155
 
156
- #: facebook-feed.php:31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
  msgid "Feed Settings"
158
  msgstr "फीड सेटिंग"
159
 
160
- #: facebook-feed.php:37
161
- msgid "Choose page,group or profile:"
 
 
162
  msgstr "पृष्ठ, समूह या प्रोफ़ाइल चुनें:"
163
 
164
- #: facebook-feed.php:41
165
  msgid "Page"
166
  msgstr "पृष्ठ"
167
 
168
- #: facebook-feed.php:42
169
  #, fuzzy
170
  #| msgid "Group Name"
171
  msgid "Group"
172
  msgstr "समूह का नाम"
173
 
174
- #: facebook-feed.php:43
175
  #, fuzzy
176
  #| msgid "Business Profile"
177
  msgid "Profile"
178
  msgstr "व्यापार रूपरेखा"
179
 
180
- #: facebook-feed.php:50
181
  msgid "Page url:"
182
  msgstr "यूआरएल पृष्ठ:"
183
 
184
- #: facebook-feed.php:58
185
  #, fuzzy
186
  #| msgid "Group Name"
187
  msgid "Group id:"
188
  msgstr "समूह का नाम"
189
 
190
- #: facebook-feed.php:62
 
 
 
 
191
  msgid "Acess Token:"
192
  msgstr "एक्सेस टोकन:"
193
 
194
- #: facebook-feed.php:70
 
 
 
 
195
  #, fuzzy
196
  #| msgid "Appointment Date"
197
  msgid "Content type:"
198
  msgstr "नियुक्ति की तारीख"
199
 
200
- #: facebook-feed.php:73
201
  #, fuzzy
202
  #| msgid "Time Zone"
203
  msgid "Timeline"
204
  msgstr "समय क्षेत्र"
205
 
206
- #: facebook-feed.php:75
207
  msgid "Specific"
208
  msgstr "विशिष्ट"
209
 
210
- #: facebook-feed.php:80
211
  msgid "Show posts by:"
212
  msgstr "द्वारा पोस्ट दिखाएं:"
213
 
214
- #: facebook-feed.php:83
215
  msgid "Owner"
216
  msgstr "मालिक"
217
 
218
- #: facebook-feed.php:84
219
  msgid "Owner and other"
220
  msgstr "मालिक और अन्य"
221
 
222
- #: facebook-feed.php:90
 
 
 
 
 
 
 
223
  msgid "Post type:"
224
  msgstr "पद प्रकार:"
225
 
226
- #: facebook-feed.php:95
227
  #, fuzzy
228
  #| msgid "Status"
229
  msgid "Statuses"
230
  msgstr "अवस्था"
231
 
232
- #: facebook-feed.php:99 facebook-feed.php:123
233
  msgid "Photos"
234
  msgstr "तस्वीरें"
235
 
236
- #: facebook-feed.php:103 facebook-feed.php:126
237
  msgid "Videos"
238
  msgstr "वीडियो"
239
 
240
- #: facebook-feed.php:107
241
  msgid "Links"
242
  msgstr "लिंक"
243
 
244
- #: facebook-feed.php:111 facebook-feed.php:132
245
  msgid "Events"
246
  msgstr "आयोजन"
247
 
248
- #: facebook-feed.php:119
249
  msgid "Use page s:"
250
  msgstr "पृष्ठ का उपयोग करें:"
251
 
252
- #: facebook-feed.php:129
253
  msgid "Albums"
254
  msgstr "एल्बम"
255
 
256
- #: facebook-feed.php:144
257
  msgid "Layout"
258
  msgstr "ख़ाका"
259
 
260
- #: facebook-feed.php:148
261
- msgid "One Column"
262
- msgstr "एक कॉलम"
263
 
264
- #: facebook-feed.php:149
265
- msgid "Two Column"
266
- msgstr "दो स्तंभ"
 
 
267
 
268
- #: facebook-feed.php:150
269
- msgid "Three Column"
270
- msgstr "तीन स्तंभ"
271
 
272
- #: facebook-feed.php:151
273
- msgid "Four Column"
274
- msgstr "चार स्तंभ"
 
 
275
 
276
- #: facebook-feed.php:152
277
- msgid "Six Column"
278
- msgstr "छह स्तंभ"
 
 
279
 
280
- #: facebook-feed.php:155
281
- msgid "Choose a column layout."
282
- msgstr "एक स्तंभ लेआउट चुनें।"
283
 
284
- #: facebook-feed.php:167
285
- msgid "hover Effect"
286
- msgstr "मंडराना प्रभाव"
 
 
287
 
288
- #: facebook-feed.php:171
289
- msgid "Image top Move"
290
- msgstr "छवि शीर्ष स्थानांतरित करें"
291
 
292
- #: facebook-feed.php:172
293
- msgid "Image bottom Move"
294
- msgstr "छवि तल हटो"
 
 
295
 
296
- #: facebook-feed.php:173
297
- msgid "Image left Move"
298
- msgstr "छवि बाएँ हटो"
 
 
299
 
300
- #: facebook-feed.php:174
301
- msgid "Image right Move"
302
- msgstr "इमेज राइट मूव"
 
 
303
 
304
- #: facebook-feed.php:177
305
- msgid "Image hange up"
306
- msgstr "छवि हंगेर अप"
307
 
308
- #: facebook-feed.php:178
309
- msgid "Image hange down"
310
- msgstr "छवि हेंगे नीचे"
311
 
312
- #: facebook-feed.php:179
313
- msgid "Image hange right"
314
- msgstr "छवि हंगेर सही"
315
 
316
- #: facebook-feed.php:180
317
- msgid "Image hange left"
318
- msgstr "छवि हेंगे छोड़ दिया"
319
 
320
- #: facebook-feed.php:183
321
- msgid "Image flip horizontal"
322
- msgstr "छवि फ्लिप क्षैतिज"
323
 
324
- #: facebook-feed.php:184
325
- msgid "Image flip vertical"
326
- msgstr "चित्र ऊर्ध्वाधर फ्लिप"
327
 
328
- #: facebook-feed.php:185
329
- msgid "Image flip diag-1"
330
- msgstr "छवि फ्लिप डायग -1"
331
 
332
- #: facebook-feed.php:186
333
- msgid "Image flip diag-2"
334
- msgstr "छवि फ्लिप डायग -2"
 
 
335
 
336
- #: facebook-feed.php:190
337
- msgid "Image fold up"
338
- msgstr "छवि ऊपर गुना"
339
 
340
- #: facebook-feed.php:191
341
- msgid "Image fold down"
342
- msgstr "छवि नीचे गुना"
343
 
344
- #: facebook-feed.php:192
345
- msgid "Image fold right"
346
- msgstr "छवि गुना सही"
347
 
348
- #: facebook-feed.php:193
349
- msgid "Image fold left"
350
- msgstr "छवि गुना छोड़ दिया"
351
 
352
- #: facebook-feed.php:196
353
- msgid "Image zoom-out"
354
- msgstr "छवि ज़ूम-आउट"
355
 
356
- #: facebook-feed.php:197
357
- msgid "Image zoom-out-up"
358
- msgstr "छवि ज़ूम आउट-अप"
359
 
360
- #: facebook-feed.php:198
361
- msgid "Image zoom-down"
362
- msgstr "छवि ज़ूम-डाउन"
 
 
363
 
364
- #: facebook-feed.php:199
365
- msgid "Image zoom-out-left"
366
- msgstr "छवि ज़ूम-आउट-बाएं"
367
 
368
- #: facebook-feed.php:200
369
- msgid "Image zoom-out-right"
370
- msgstr "छवि ज़ूम-आउट-दाएं"
371
 
372
- #: facebook-feed.php:201
373
- msgid "Image zoom-out-flip-horizontal"
374
- msgstr "छवि ज़ूम-आउट-फ्लिप-क्षैतिज"
375
 
376
- #: facebook-feed.php:202
377
- msgid "Image zoom-out-flip-vertical"
378
- msgstr "छवि ज़ूम-आउट- फ्लिप-लंबवत"
379
 
380
- #: facebook-feed.php:206
381
- msgid "Slide effect left"
382
- msgstr "स्लाइड प्रभाव छोड़ दिया"
383
 
384
- #: facebook-feed.php:207
385
- msgid "Slide effect right"
386
- msgstr "स्लाइड प्रभाव सही"
 
 
387
 
388
- #: facebook-feed.php:208
389
- msgid "Slide effect bottom left"
390
- msgstr "स्लाइड प्रभाव नीचे बायां"
 
 
391
 
392
- #: facebook-feed.php:209
393
- msgid "Slide effect bottom right"
394
- msgstr "स्लाइड प्रभाव नीचे सही"
 
 
395
 
396
- #: facebook-feed.php:210
397
- msgid "Slide effect circle right"
398
- msgstr "स्लाइड प्रभाव सर्कल सही"
399
 
400
- #: facebook-feed.php:211
401
- msgid "Slide effect circle left"
402
- msgstr "स्लाइड प्रभाव सर्कल छोड़ दिया"
 
 
403
 
404
- #: facebook-feed.php:214
405
- msgid "Outline-border"
406
- msgstr "रूपरेखा सीमा"
 
407
 
408
- #: facebook-feed.php:215
409
- msgid "dotted-border"
410
- msgstr "बिंदीदार सीमा"
411
 
412
- #: facebook-feed.php:222
413
- msgid "hover color"
414
- msgstr "हॉवर रंग"
415
 
416
- #: facebook-feed.php:230
417
- msgid "Number of posts:"
418
- msgstr "पदो कि संख्या:"
419
 
420
- #: facebook-feed.php:235
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421
  #, fuzzy
422
  #| msgid "Loading Staff..."
423
- msgid "Loading effect:"
424
  msgstr "कर्मचारी लोड हो रहें हैं ..."
425
 
426
- #: facebook-feed.php:239
427
- msgid "None"
428
- msgstr "नहीं"
 
 
 
 
429
 
430
- #: facebook-feed.php:241
431
- msgid "bounce"
432
- msgstr "उछाल"
433
 
434
- #: facebook-feed.php:242
435
- msgid "flash"
436
- msgstr "फ़्लैश"
 
 
437
 
438
- #: facebook-feed.php:243
439
- msgid "pulse"
440
- msgstr "नाड़ी"
 
 
441
 
442
- #: facebook-feed.php:244
443
- msgid "rubberBand"
444
- msgstr "रबर बैंड"
445
 
446
- #: facebook-feed.php:245
447
- msgid "shake"
448
- msgstr "हिलाना"
449
 
450
- #: facebook-feed.php:246
451
- msgid "swing"
452
- msgstr "झूला"
453
 
454
- #: facebook-feed.php:247
455
- msgid "tada"
456
- msgstr "तो"
457
 
458
- #: facebook-feed.php:248
459
- msgid "wobble"
460
- msgstr "लडखडाना"
 
 
461
 
462
- #: facebook-feed.php:249
463
- msgid "jello"
464
- msgstr "जेलो"
465
 
466
- #: facebook-feed.php:253
467
- msgid "bounceIn"
468
- msgstr "उछाल में"
469
 
470
- #: facebook-feed.php:254
471
- msgid "bounceInDown"
472
- msgstr "उछाल नीचे"
 
473
 
474
- #: facebook-feed.php:255
475
- msgid "bounceInLeft"
476
- msgstr "उछाल बाएं"
477
 
478
- #: facebook-feed.php:256
479
- msgid "bounceInRight"
480
- msgstr "बाउंस में सही"
481
 
482
- #: facebook-feed.php:257
483
- msgid "bounceInUp"
484
- msgstr "उछाल में ऊपर"
485
 
486
- #: facebook-feed.php:261
487
- msgid "bounceOut"
488
- msgstr "बाउंस आउट"
489
 
490
- #: facebook-feed.php:262
491
- msgid "bounceOutDown"
492
- msgstr "बाउंस आउट डाउन"
493
 
494
- #: facebook-feed.php:263
495
- msgid "bounceOutLeft"
496
- msgstr "बाउंस आउट बाएं"
497
 
498
- #: facebook-feed.php:264
499
- msgid "bounceOutRight"
500
- msgstr "बाउंस आउट राइट"
501
 
502
- #: facebook-feed.php:265
503
- msgid "bounceOutUp"
504
- msgstr "बाउंस आउटअप"
505
 
506
- #: facebook-feed.php:269
507
- msgid "fadeIn"
508
- msgstr "में फीका"
509
 
510
- #: facebook-feed.php:270
511
- msgid "fadeInDown"
512
- msgstr "फीका इनडाउन"
513
 
514
- #: facebook-feed.php:271
515
- msgid "fadeInDownBig"
516
- msgstr "नीचे बिग में फीका"
517
 
518
- #: facebook-feed.php:272
519
- msgid "fadeInLeft"
520
- msgstr "फीका इनलाइन"
521
 
522
- #: facebook-feed.php:273
523
- msgid "fadeInLeftBig"
524
- msgstr "फीका इनफ़ेल्ट बिग"
525
 
526
- #: facebook-feed.php:274
527
- msgid "fadeInRight"
528
- msgstr "फीका इनराइट"
529
 
530
- #: facebook-feed.php:275
531
- msgid "fadeInRightBig"
532
- msgstr "फीडइन राइटबिग"
533
 
534
- #: facebook-feed.php:276
535
- msgid "fadeInUp"
536
- msgstr "फीडइन अप"
537
 
538
- #: facebook-feed.php:277
539
- msgid "fadeInUpBig"
540
- msgstr "फीडइन अपबिग"
541
 
542
- #: facebook-feed.php:281
543
- msgid "fadeOut"
544
- msgstr "फेड आउट"
545
 
546
- #: facebook-feed.php:282
547
- msgid "fadeOutDown"
548
- msgstr "फीका आउटडाऊन"
549
 
550
- #: facebook-feed.php:283
551
- msgid "fadeOutDownBig"
552
- msgstr "फीका आउटडाउनबाग"
553
 
554
- #: facebook-feed.php:284
555
- msgid "fadeOutLeft"
556
- msgstr "फीका आउटफ़ाईट"
557
 
558
- #: facebook-feed.php:285
559
- msgid "fadeOutLeftBig"
560
- msgstr "फीका आउट-लेफ्टबॉल"
561
 
562
- #: facebook-feed.php:286
563
- msgid "fadeOutRight"
564
- msgstr "फीका आउटराइट"
565
 
566
- #: facebook-feed.php:287
567
- msgid "fadeOutRightBig"
568
- msgstr "फीका आउटग्रेड"
569
 
570
- #: facebook-feed.php:288
571
- msgid "fadeOutUp"
572
- msgstr "फीका आउट आउट"
573
 
574
- #: facebook-feed.php:289
575
- msgid "fadeOutUpBig"
576
- msgstr "फीका आउटअपबिग"
577
 
578
- #: facebook-feed.php:293
579
- msgid "flip"
580
- msgstr "फ्लिप"
581
 
582
- #: facebook-feed.php:294
583
- msgid "flipInX"
584
- msgstr "flip In X"
585
 
586
- #: facebook-feed.php:295
587
- msgid "flipInY"
588
- msgstr "flip In Y"
589
 
590
- #: facebook-feed.php:296
591
- msgid "flipOutX"
592
- msgstr "पागल हो जाना"
593
 
594
- #: facebook-feed.php:297
595
- msgid "flipOutY"
596
- msgstr "पागल हो जाना"
597
 
598
- #: facebook-feed.php:301
599
- msgid "lightSpeedIn"
600
- msgstr "प्रकाश गति में"
601
 
602
- #: facebook-feed.php:302
603
- msgid "lightSpeedOut"
604
- msgstr "प्रकाश स्पीडऑट"
605
 
606
- #: facebook-feed.php:306
607
- msgid "rotateIn"
608
- msgstr "घुमाएंगे में"
609
 
610
- #: facebook-feed.php:307
611
- msgid "rotateInDownLeft"
612
- msgstr "नीचे की ओर घुमाएं"
613
 
614
- #: facebook-feed.php:308
615
- msgid "rotateInDownRight"
616
- msgstr "नीचे में राइट बारी बारी से"
617
 
618
- #: facebook-feed.php:309
619
- msgid "rotateInUpLeft"
620
- msgstr "ऊपर की तरफ घुमाएं"
621
 
622
- #: facebook-feed.php:310
623
- msgid "rotateInUpRight"
624
- msgstr "रोटेट इन अप राइट"
625
 
626
- #: facebook-feed.php:314
627
- msgid "rotateOut"
628
- msgstr "घुमाएंगे आउट"
629
 
630
- #: facebook-feed.php:315
631
- msgid "rotateOutDownLeft"
632
- msgstr "आउटडाउन-लेफ्ट घुमाएँ"
633
 
634
- #: facebook-feed.php:316
635
- msgid "rotateOutDownRight"
636
- msgstr "घुमाएंगे आउटडाउन राइट"
637
 
638
- #: facebook-feed.php:317
639
- msgid "rotateOutUpLeft"
640
- msgstr "आउटपुट लिफ्ट को घुमाएं"
641
 
642
- #: facebook-feed.php:318
643
- msgid "rotateOutUpRight"
644
- msgstr "आउटवेयर को घुमाएं"
645
 
646
- #: facebook-feed.php:322
647
- msgid "slideInUp"
648
- msgstr "स्लाइड इन-अप"
649
 
650
- #: facebook-feed.php:323
651
- msgid "slideInDown"
652
- msgstr "स्लाइड डाउन में"
653
 
654
- #: facebook-feed.php:324
655
- msgid "slideInLeft"
656
- msgstr "बाएं में स्लाइड"
657
 
658
- #: facebook-feed.php:325
659
- msgid "slideInRight"
660
- msgstr "इनराइट स्लाइड"
661
 
662
- #: facebook-feed.php:329
663
- msgid "slideOutUp"
664
- msgstr "स्लाइड आउट आउट"
665
 
666
- #: facebook-feed.php:330
667
- msgid "slideOutDown"
668
- msgstr "स्लाइड आउटडाउन"
669
 
670
- #: facebook-feed.php:331
671
- msgid "slideOutLeft"
672
- msgstr "स्लाइड आउटलेफ़्ट"
673
 
674
- #: facebook-feed.php:332
675
- #, fuzzy
676
- #| msgid "Widget Height"
677
- msgid "slideOutRight"
678
- msgstr "विजेट लंबाई"
679
 
680
- #: facebook-feed.php:337
681
- msgid "zoomIn"
682
- msgstr "ज़ूम इन"
683
 
684
- #: facebook-feed.php:338
685
- msgid "zoomInDown"
686
- msgstr "ज़ूम इन डाउन"
687
 
688
- #: facebook-feed.php:339
689
- msgid "zoomInLeft"
690
- msgstr "ज़ूम इन-लेट"
691
 
692
- #: facebook-feed.php:340
693
- msgid "zoomInRight"
694
- msgstr "ज़ूम इनराइट"
695
 
696
- #: facebook-feed.php:341
697
- msgid "zoomInUp"
698
- msgstr "ज़ूम इन अप करें"
699
 
700
- #: facebook-feed.php:345
701
- msgid "zoomOut"
702
- msgstr "ज़ूम आउट"
703
 
704
- #: facebook-feed.php:346
705
- msgid "zoomOutDown"
706
- msgstr "ज़ूम आउटडाउन"
707
 
708
- #: facebook-feed.php:347
709
- msgid "zoomOutLeft"
710
- msgstr "ज़ूम आउट-लेफ्ट"
711
 
712
- #: facebook-feed.php:348
713
- msgid "zoomOutRight"
714
- msgstr "आउटपुट ज़ूम करें"
715
 
716
- #: facebook-feed.php:349
717
- msgid "zoomOutUp"
718
- msgstr "आउट आउट ज़ूम करें"
719
 
720
- #: facebook-feed.php:353
721
- msgid "hinge"
722
- msgstr "काज"
723
 
724
- #: facebook-feed.php:354
725
- msgid "rollIn"
726
- msgstr "रोलिंग"
727
 
728
- #: facebook-feed.php:355
729
- msgid "rollOut"
730
- msgstr "रोल आउट"
731
 
732
- #: facebook-feed.php:363
733
- #, fuzzy
734
- #| msgid "Show Widget Header"
735
- msgid "Show Header:"
736
- msgstr "विजेट हैडर दिखाएँ "
737
 
738
- #: facebook-feed.php:370
739
- #, fuzzy
740
- #| msgid "Select any group."
741
- msgid "Select layout:"
742
- msgstr "कोई समूह चुनें"
743
 
744
- #: facebook-feed.php:375
745
- msgid "Full-width"
746
- msgstr "पूर्ण चौड़ाई"
747
 
748
- #: facebook-feed.php:376
749
- msgid "Half-width"
750
- msgstr "आधी चौड़ाई"
751
 
752
- #: facebook-feed.php:377
753
- msgid "Thumbnail"
754
- msgstr "थंबनेल"
755
 
756
- #: facebook-feed.php:384 facebook-feed.php:402
757
- msgid "Light Box Styles"
758
- msgstr "लाइट बॉक्स शैलियाँ"
759
 
760
- #: facebook-feed.php:389
761
- msgid "Photo Box"
762
- msgstr "फोटो बॉक्स"
763
 
764
- #: facebook-feed.php:390 facebook-feed.php:408
765
- msgid "Pretty Photo"
766
- msgstr "\\सुंदर तस्वीर"
767
 
768
- #: facebook-feed.php:391 facebook-feed.php:413
769
- msgid "Fancy Box"
770
- msgstr "फैंसी बॉक्स"
771
 
772
- #: facebook-feed.php:392
773
- msgid "Magnific Box "
774
- msgstr "शानदार बॉक्स"
775
 
776
- #: facebook-feed.php:393
777
- msgid "Nivo"
778
- msgstr "स्तर"
779
 
780
- #: facebook-feed.php:394 facebook-feed.php:416
781
- msgid "Custom Box"
782
- msgstr "कस्टम बॉक्स"
783
 
784
- #: facebook-feed.php:397 facebook-feed.php:419
785
- msgid "Choose a image preview light box style."
786
- msgstr "एक छवि पूर्वावलोकन प्रकाश बॉक्स शैली चुनें।"
787
 
788
- #: facebook-feed.php:407
789
- msgid "Photo Box "
790
- msgstr "फोटो बॉक्स"
791
 
792
- #: facebook-feed.php:409
793
- msgid "Window Box"
794
- msgstr "विंडो बॉक्स"
795
 
796
- #: facebook-feed.php:410
797
- msgid "Smoodiv Box"
798
- msgstr "एसमुदिव बॉक्स"
799
 
800
- #: facebook-feed.php:411
801
- msgid "Swipe Box"
802
- msgstr "स्वाइप बॉक्स"
803
 
804
- #: facebook-feed.php:412
805
- msgid "Ion Box"
806
- msgstr "आयन बॉक्स"
807
 
808
- #: facebook-feed.php:414
809
- msgid "Magnific Box"
810
- msgstr "शानदार बॉक्स"
811
 
812
- #: facebook-feed.php:432
813
- msgid "Timeline / Posts Options"
814
- msgstr "समयरेखा / पोस्ट विकल्प"
815
 
816
- #: facebook-feed.php:434
817
- msgid "Post-background-color"
818
- msgstr "पोस्ट-पृष्ठभूमि रंग"
819
 
820
- #: facebook-feed.php:440
821
- msgid "Post-font-color "
822
- msgstr "पोस्ट लिपि का रंग"
823
 
824
- #: facebook-feed.php:446
825
- msgid "Post-font-size"
826
- msgstr "पोस्ट फ़ॉन्ट आकार"
827
 
828
- #: facebook-feed.php:452
829
- msgid "Show post author image:"
830
- msgstr "पोस्ट लेखक की छवि दिखाएं:"
831
 
832
- #: facebook-feed.php:455 facebook-feed.php:462 facebook-feed.php:469 facebook-feed.php:476
833
- #: facebook-feed.php:483 facebook-feed.php:490 facebook-feed.php:498 facebook-feed.php:506
834
- #: facebook-feed.php:541 facebook-feed.php:549 facebook-feed.php:557 facebook-feed.php:565
835
- #: facebook-feed.php:573 facebook-feed.php:581 facebook-feed.php:589 facebook-feed.php:597
836
- #: facebook-feed.php:611 facebook-feed.php:619 facebook-feed.php:628 facebook-feed.php:636
837
- #: facebook-feed.php:644 facebook-feed.php:652 help-body.php:161 help-body.php:170
838
- msgid "Yes"
839
- msgstr "हाँ"
840
 
841
- #: facebook-feed.php:459
842
- msgid "Show post author name:"
843
- msgstr "पोस्ट लेखक का नाम दिखाएं:"
844
 
845
- #: facebook-feed.php:466
846
- msgid "Show post date:"
847
- msgstr "पोस्ट की तारीख दिखाएं:"
848
 
849
- #: facebook-feed.php:473
850
- msgid "Show comments author name:"
851
- msgstr "टिप्पणियाँ लेखक का नाम दिखाएँ:"
852
 
853
- #: facebook-feed.php:480
854
- msgid "Show comments author image:"
855
- msgstr "टिप्पणियाँ लेखक छवि दिखाएं:"
856
 
857
- #: facebook-feed.php:488
858
- msgid "Show comments message(description):"
859
- msgstr "टिप्पणी संदेश (विवरण) दिखाएं"
860
 
861
- #: facebook-feed.php:496
862
- msgid "Show comments reply count:"
863
- msgstr "टिप्पणियों का उत्तर दिखाएं:"
864
 
865
- #: facebook-feed.php:504
866
- #, fuzzy
867
- #| msgid "Show Faces"
868
- msgid "Show likes:"
869
- msgstr "चेहरे दिखाएँ"
870
 
871
- #: facebook-feed.php:518
872
- msgid "Event Options"
873
- msgstr "ईवेंट विकल्प"
874
 
875
- #: facebook-feed.php:520
876
- msgid "Event background-color"
877
- msgstr "इवेंट पृष्ठभूमि-रंग"
878
 
879
- #: facebook-feed.php:526
880
- msgid "Event font-color"
881
- msgstr "इवेंट फ़ॉन्ट-रंग"
882
 
883
- #: facebook-feed.php:532
884
- msgid "Event font-size"
885
- msgstr "इवेंट फ़ॉन्ट-आकार"
886
 
887
- #: facebook-feed.php:539
888
- msgid "Show event image:"
889
- msgstr "ईवेंट छवि दिखाएं:"
890
 
891
- #: facebook-feed.php:547
892
- #, fuzzy
893
- #| msgid "Show Live Stream"
894
- msgid "Show event title:"
895
- msgstr "लाइव स्ट्रीम दिखाएँ"
896
 
897
- #: facebook-feed.php:555
898
  #, fuzzy
899
- #| msgid "Show Live Stream"
900
- msgid "Show event date:"
901
- msgstr "लाइव स्ट्रीम दिखाएँ"
902
 
903
- #: facebook-feed.php:563
904
- msgid "Show event place:"
905
- msgstr "ईवेंट स्थान दिखाएं:"
906
 
907
- #: facebook-feed.php:571
908
- msgid "Show event interested:"
909
- msgstr "रुचि रखने वाली घटना दिखाएँ:"
910
 
911
- #: facebook-feed.php:579
912
- msgid "Show event going:"
913
- msgstr "ईवेंट को दिखाएं:"
914
 
915
- #: facebook-feed.php:587
916
- msgid "Show event Buy ticket:"
917
- msgstr "ईवेंट खरीदें टिकट दिखाएं:"
918
 
919
- #: facebook-feed.php:595
920
- #, fuzzy
921
- #| msgid "Service Description"
922
- msgid "Show event description:"
923
- msgstr "सेवा विवरण"
924
 
925
- #: facebook-feed.php:606
926
- msgid "Social Sharing Options"
927
- msgstr "सामाजिक साझा विकल्प"
928
 
929
- #: facebook-feed.php:609
930
- msgid "Show share buttons:"
931
- msgstr "शेयर बटन दिखाएं:"
932
 
933
- #: facebook-feed.php:617
934
- msgid "Show Facebook button:"
935
- msgstr "फेसबुक बटन दिखाएं:"
936
 
937
- #: facebook-feed.php:626
938
- msgid "Show Twitter button:"
939
- msgstr "ट्विटर बटन दिखाएं:"
940
 
941
- #: facebook-feed.php:634
942
- msgid "Show Google+ button:"
943
- msgstr "गूगल+ बटन दिखाएं:"
944
 
945
- #: facebook-feed.php:642
946
- msgid "Show Linkedin button:"
947
- msgstr "लिंक्डइन बटन दिखाएं:"
948
 
949
- #: facebook-feed.php:650
950
- msgid "Show View on Facebook:"
951
- msgstr "फेसबुक पर दिखाना देखें"
952
 
953
- #: facebook-feed.php:666
954
- msgid "Image Onclick:"
955
- msgstr "छवि ऑनक्लिक:"
956
 
957
- #: facebook-feed.php:668
958
- msgid "Open Lightbox"
959
- msgstr "ओपन लाइटबॉक्स"
960
 
961
- #: facebook-feed.php:669
962
- msgid "Redirect To Facebook"
963
- msgstr "फेसबुक पर रीडायरेक्ट"
964
 
965
- #: facebook-feed.php:670
966
- msgid "Do Nothing"
967
- msgstr "कुछ मत करो"
968
 
969
- #: facebook-feed.php:674
970
- msgid "Google font:"
971
- msgstr "गूगल फ़ॉन्ट:"
972
 
973
- #: facebook-feed.php:1230
974
- msgid "Save"
975
- msgstr "बनायें"
976
 
977
- #: facebook-feed.php:1233
978
- msgid "Plugin Shortcode"
979
- msgstr "प्लगइन शोर्ट"
980
 
981
- #: facebook-feed.php:1234
982
- msgid "copy this shortcode"
983
- msgstr "इस शोर्ट को कॉपी करें"
984
 
985
- #: facebook-feed.php:1234
986
- msgid "to any page, post or widget where you want to showcase your Facebook feed."
987
- msgstr "किसी भी पृष्ठ, पोस्ट या विजेट पर जहां आप अपने फेसबुक फ़ीड को प्रदर्शित करना चाहते हैं"
988
 
989
- #: help-body.php:101
990
- msgid "Shortcode Settings"
991
- msgstr "लघु कोड सेटिंग्स"
992
 
993
- #: help-body.php:162 help-body.php:171
994
- msgid "No"
995
- msgstr "नहीं"
996
 
997
- #: help-body.php:191
998
- msgid "Get Your Own Facebook APP Id"
999
- msgstr "अपनी खुद फेसबुक एपीपी आईडी प्राप्त करें"
1000
 
1001
- #: help-body.php:196
1002
- msgid "SAVE"
1003
- msgstr "बचाना"
1004
 
1005
- #: help-body.php:201
1006
- msgid "Settings successfully saved. Reloading page for generating preview below."
1007
- msgstr "सेटिंग्स सफलतापूर्वक बना दी गई है। नीचे पूर्वावलोकन पैदा करने के लिए पेज को पुन: लोड किया जा रहा है।"
 
 
1008
 
1009
- #: help-body.php:209
1010
- msgid "Preview"
1011
- msgstr "पूर्वावलोकन"
1012
 
1013
- #: help-body.php:289
1014
- #, php-format
1015
- msgid "%s rating"
1016
- msgstr "रेटिंग"
1017
 
1018
- #: help-body.php:308
1019
- msgid "Get More Free Wordpress Plguins From Weblizar"
1020
- msgstr "वेबलिज़र से अधिक नि: शुल्क वर्डप्रेस प्लगइन्स प्राप्त करें"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1021
 
1022
- #: help-body.php:357
1023
  #, fuzzy
1024
- #| msgid "Details"
1025
- msgid "More Details"
1026
- msgstr "विवरण"
1027
 
1028
- #: help-body.php:368
1029
- msgid "Install Now"
1030
- msgstr "अभी स्थापित करें"
1031
 
1032
- #: help-body.php:375
1033
- msgid "Update Now"
1034
- msgstr "अभी अद्यतन करें"
1035
 
1036
- #: help-body.php:402
1037
- msgid "By "
1038
- msgstr "द्वारा"
1039
 
1040
- #: help-body.php:416
1041
- msgid "Last Updated:"
1042
- msgstr "आखरी अपडेट"
1043
 
1044
- #: help-body.php:427
1045
- msgid "Untested with your version of WordPress"
1046
- msgstr "वर्डप्रेस के आपके संस्करण के साथ अनचेस्टर"
1047
 
1048
- #: help-body.php:431
1049
- msgid "Incompatible with your version of WordPress"
1050
- msgstr "वर्डप्रेस के आपके संस्करण के साथ असंगत"
 
1051
 
1052
- #: help-body.php:435
1053
- msgid "Compatible with your version of WordPress"
1054
- msgstr "वर्डप्रेस के आपके संस्करण के साथ संगत"
 
1055
 
1056
- #: help-body.php:475
1057
- msgid "Facebook Like Box Help Section"
1058
- msgstr "फेसबुक की तरह बॉक्स सहायता अनुभाग"
1059
 
1060
- #: help-body.php:477
1061
- msgid "Facebook By Weblizar plugin comes with 2 functionality"
1062
- msgstr "वेबलिज़र प्लगइन द्वारा फेसबुक 2 कार्यक्षमता के साथ आता है"
1063
 
1064
- #: help-body.php:479 help-body.php:483
1065
- msgid "Facebook Like Box Widget"
1066
- msgstr "फेसबुक की तरह बॉक्स विजेट"
1067
 
1068
- #: help-body.php:480 help-body.php:489
1069
- msgid "Facebook Like Box Shoertcode"
1070
- msgstr "फेसबुक की तरह बॉक्स शूटरकोड"
1071
 
1072
- #: help-body.php:485
1073
- msgid "You can use the widget to display your Facebook Like Box in any theme Widget Sections"
1074
- msgstr ""
1075
- "आप किसी भी थीम विजेट अनुभाग में अपने फेसबुक की तरह बॉक्स प्रदर्शित करने के लिए विजेट का उपयोग कर सकते हैं"
1076
 
1077
- #: help-body.php:486
1078
- msgid "Simple go to your"
1079
- msgstr "सरल अपने जाओ"
1080
 
1081
- #: help-body.php:486
1082
- msgid "Widgets"
1083
- msgstr "विजेट"
1084
 
1085
- #: help-body.php:486
1086
- msgid "section and activate available"
1087
- msgstr "अनुभाग और उपलब्ध सक्रिय करें"
1088
 
1089
- #: help-body.php:486
1090
- msgid "Facebook By Weblizar"
1091
- msgstr "वेबलिज़र द्वारा फेसबुक"
1092
 
1093
- #: help-body.php:486
1094
- msgid "widget in any sidebar section, like in left sidebar, right sidebar or footer sidebar"
1095
- msgstr "किसी भी साइडबार अनुभाग में विजेट, जैसे बाएं साइडबार, सही साइडबार या पाद लेख साइडबार में"
1096
 
1097
- #: help-body.php:491
1098
- msgid "shortcode give ability to display Facebook Like Box in any Page / Post with content"
1099
- msgstr "शोर्टकोड सामग्री के साथ किसी भी पेज / पोस्ट में फेसबुक की तरह बॉक्स प्रदर्शित करने की क्षमता देते हैं"
1100
 
1101
- #: help-body.php:492
1102
- msgid "To use shortcode, just copy "
1103
- msgstr "शोर्ट का उपयोग करने के लिए, बस कॉपी करें"
1104
 
1105
- #: help-body.php:492
1106
- msgid "shortcode and paste into content editor of any Page / Post"
1107
- msgstr "किसी भी पृष्ठ / पोस्ट के सामग्री संपादक में शोर्ट और पेस्ट करें"
1108
 
1109
- #: help-body.php:495
1110
- #, fuzzy
1111
- #| msgid "Facebook Page URL"
1112
- msgid "What is Facebook Page URL"
1113
- msgstr "फेसबुक पेज यूआरएल"
1114
 
1115
- #: help-body.php:496
1116
- msgid ""
1117
- "is your Facebook page your where you promote your business. Here your customers, clients, "
1118
- "friends, guests can like, share, comment review your POST"
1119
- msgstr ""
1120
- "आपका फेसबुक पेज आपका है जहां आप अपने व्यापार का प्रचार करते हैं यहां आपके ग्राहक, ग्राहक, मित्र, मेहमान आपके "
1121
- "पोस्ट की समीक्षा, साझा, टिप्पणी कर सकते हैं"
1122
 
1123
- #: help-body.php:498
1124
- #, fuzzy
1125
- #| msgid "Facebook App ID"
1126
- msgid "What is Facebook APP ID"
1127
- msgstr "फेसबुक एप्लिकेशन आईडी"
 
 
 
 
 
 
1128
 
1129
- #: help-body.php:499
1130
  #, fuzzy
1131
- #| msgid "Facebook App ID"
1132
- msgid "Facebook Application ID"
1133
- msgstr "फेसबुक एप्लिकेशन आईडी"
1134
 
1135
- #: help-body.php:499
1136
- msgid ""
1137
- " used to authenticate your Facebook Page data & settings. To get your own Facebook APP ID "
1138
- "please read our 4 Steps very simple and easy "
1139
- msgstr ""
1140
- "अपने फेसबुक पेज डेटा और सेटिंग्स को प्रमाणित करने के लिए उपयोग किया जाता है अपनी खुद की फेसबुक एपीपी आईडी "
1141
- "प्राप्त करने के लिए कृपया हमारे 4 कदम बहुत सरल और आसान पढ़ें"
1142
 
1143
- #: help-body.php:499
1144
- msgid " Tutorial"
1145
- msgstr "ट्यूटोरियल"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1146
 
1147
- #: help-body.php:511
1148
- msgid "Weblizar Responsive WordPress Theme"
1149
- msgstr "वेबलिजर उत्तरदायी वर्डप्रेस थीम"
1150
 
1151
- #: help-body.php:512
1152
- msgid "Get The Premium, And Create your website Beautifully"
1153
- msgstr "प्रीमियम प्राप्त करें, और अपनी वेबसाइट खूबसूरती से बनाएं"
 
 
 
 
 
 
 
 
1154
 
1155
- #: help-body.php:516
1156
  #, fuzzy
1157
- #| msgid "Get Premium Version"
1158
- msgid "Premium Themes"
1159
- msgstr "प्रीमियम संस्करण प्राप्त करें"
1160
 
1161
- #: help-body.php:536
1162
  #, fuzzy
1163
- #| msgid "Remove Plugin"
1164
- msgid "Premium Plugins"
1165
- msgstr "प्लगइन हटायें"
1166
 
1167
- #: help-body.php:557
1168
- msgid ""
1169
- "Note: More details to click on weblizar Products site link are below given view site button"
1170
- msgstr "नोट: वेबलिज़र पर क्लिक करने के लिए अधिक विवरण उत्पाद साइट लिंक नीचे दी गई साइट देखें बटन है"
1171
 
1172
- #: help-body.php:561
1173
  #, fuzzy
1174
- #| msgid "View Staff"
1175
- msgid "View Site"
1176
- msgstr "कर्मचारी देखें"
1177
 
1178
  #~ msgid "Widget Color Scheme"
1179
  #~ msgstr "विजेट रंग योजना"
@@ -1249,9 +1345,6 @@ msgstr "कर्मचारी देखें"
1249
  #~ msgid "Back"
1250
  #~ msgstr "पीछे जायें"
1251
 
1252
- #~ msgid "Available Time For"
1253
- #~ msgstr "समय का चयन इस सेवा के लिए"
1254
-
1255
  #~ msgid "On"
1256
  #~ msgstr "पर"
1257
 
@@ -1797,9 +1890,6 @@ msgstr "कर्मचारी देखें"
1797
  #~ msgid "Do you want to delete this Category?"
1798
  #~ msgstr "क्या आप यह श्रेणी हटाना चाहते हैं?"
1799
 
1800
- #~ msgid "Do you want to delete this service?"
1801
- #~ msgstr "क्या आप ये सेवा हटाना चाहते हैं?"
1802
-
1803
  #~ msgid "Add New Service to this Category"
1804
  #~ msgstr "इस श्रेणी में नई सेवा जोंडे़"
1805
 
@@ -2269,9 +2359,6 @@ msgstr "कर्मचारी देखें"
2269
  #~ msgid "Appointment History"
2270
  #~ msgstr "नियुक्ति बनाने वाला"
2271
 
2272
- #~ msgid "Do you want to delete this client"
2273
- #~ msgstr "क्या आप यह ग्राहक हटाना चाहते हैं?"
2274
-
2275
  #~ msgid "First"
2276
  #~ msgstr "प्रथम"
2277
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wl_facebook\n"
4
+ "POT-Creation-Date: 2018-08-11 11:53+0530\n"
5
+ "PO-Revision-Date: 2018-08-11 12:06+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: hi\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 2.0.8\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: function/facebook-by-weblizar-help.php:15
19
  #, fuzzy
20
+ #| msgid "Redirect To Facebook"
21
+ msgid "Feed & LikeBox For Facebook"
22
+ msgstr "फेसबुक पर रीडायरेक्ट"
23
 
24
+ #: function/facebook-by-weblizar-help.php:16
25
  msgid ""
26
  "Display a completely responsive & customizable facebook feed on your website which match "
27
  "with the look and feel of your website"
29
  "अपनी वेबसाइट पर पूरी तरह से उत्तरदायी और अनुकूलन वाले फेसबुक फ़ीड प्रदर्शित करें जो आपकी वेबसाइट के नज़र और "
30
  "अनुभव से मेल खाता है"
31
 
32
+ #: function/facebook-by-weblizar-help.php:22
33
  msgid "Support Forum"
34
  msgstr "सहयता मंच"
35
 
36
+ #: function/facebook-by-weblizar-help.php:23
37
  #, fuzzy
38
  #| msgid "Plugins Page"
39
  msgid "Plugin Change Log"
40
  msgstr "प्लगइन पृष्ठ"
41
 
42
+ #: function/facebook-by-weblizar-help.php:24
43
+ #, fuzzy
44
+ #| msgid "Upgrade TO Pro"
45
+ msgid "Upgrade To Pro"
46
+ msgstr "प्रो में अपग्रेड"
47
+
48
+ #: function/facebook-by-weblizar-help.php:26
49
  #, fuzzy
50
+ #| msgid "Do you want to delete this client"
51
+ msgid "Do you like this plugin"
52
+ msgstr "क्या आप यह ग्राहक हटाना चाहते हैं?"
53
 
54
+ #: function/facebook-by-weblizar-help.php:26
55
+ msgid "Please take a few seconds to"
56
+ msgstr "कृपया कुछ सेकंड ले लो"
57
+
58
+ #: function/facebook-by-weblizar-help.php:27
59
+ msgid "Rate it on WordPress.org"
60
+ msgstr "इसे WordPress.org पर रेट करें"
61
+
62
+ #: function/facebook-by-weblizar-help.php:46
63
+ #, fuzzy
64
+ #| msgid "Like Box"
65
+ msgid " Like Box"
66
  msgstr "बॉक्स की तरह"
67
 
68
+ #: function/facebook-by-weblizar-help.php:47
69
  #, fuzzy
70
  #| msgid "Facebook Page URL"
71
+ msgid " Facebook Feed"
72
  msgstr "फेसबुक पेज यूआरएल"
73
 
74
+ #: function/facebook-by-weblizar-help.php:48
75
+ msgid " Feed Tab"
76
+ msgstr "फ़ीड टैब"
77
 
78
+ #: function/facebook-by-weblizar-help.php:49
79
+ #, fuzzy
80
+ #| msgid "Need Help"
81
+ msgid " Need Help"
82
  msgstr "कोई मदद चाहिए"
83
 
84
+ #: function/facebook-by-weblizar-help.php:50
85
+ #, fuzzy
86
+ #| msgid "Upgrade TO Pro"
87
+ msgid " Upgrade to Pro"
 
 
 
 
 
 
88
  msgstr "प्रो में अपग्रेड"
89
 
90
+ #: function/facebook-by-weblizar-help.php:51
91
+ #, fuzzy
92
+ #| msgid "Our Products"
93
+ msgid " Our Product"
94
+ msgstr "हमारे उत्पाद"
95
+
96
+ #: function/facebook-by-weblizar-short-code.php:62
97
+ #: function/facebook-by-weblizar-widgets.php:78
98
  msgid "Facebook By Weblizar Powered By Weblizar"
99
  msgstr "वेबलिज़र द्वारा वेबलिज़र द्वारा संचालित"
100
 
101
+ #: function/facebook-by-weblizar-widgets.php:20
102
  msgid "Display Facebook Page Live Stream & Fans"
103
  msgstr "फेसबुक पेज लाइव स्ट्रीम और प्रशंसक प्रदर्शित"
104
 
105
+ #: function/facebook-by-weblizar-widgets.php:148
106
  msgid "LikeBox"
107
  msgstr "बॉक्स की तरह"
108
 
109
+ #: function/facebook-by-weblizar-widgets.php:152
110
  msgid "Title:"
111
  msgstr "शीर्षक:"
112
 
113
+ #: function/facebook-by-weblizar-widgets.php:156 function/help-body.php:8
114
+ #: function/help-body.php:129
115
  msgid "Facebook Page URL"
116
  msgstr "फेसबुक पेज यूआरएल"
117
 
118
+ #: function/facebook-by-weblizar-widgets.php:160 function/help-body.php:13
119
  msgid "Show Faces"
120
  msgstr "चेहरे दिखाएँ"
121
 
122
+ #: function/facebook-by-weblizar-widgets.php:167 function/help-body.php:21
123
  msgid "Show Live Stream"
124
  msgstr "लाइव स्ट्रीम दिखाएँ"
125
 
126
+ #: function/facebook-by-weblizar-widgets.php:174 function/help-body.php:29
127
  msgid "Widget Width"
128
  msgstr "विजेट चौड़ाई"
129
 
130
+ #: function/facebook-by-weblizar-widgets.php:178 function/help-body.php:34
131
  msgid "Widget Height"
132
  msgstr "विजेट लंबाई"
133
 
134
+ #: function/facebook-by-weblizar-widgets.php:182 function/help-body.php:39
135
  msgid "Facebook App ID"
136
  msgstr "फेसबुक एप्लिकेशन आईडी"
137
 
138
+ #: function/facebook-by-weblizar-widgets.php:182 function/help-body.php:39
139
+ msgid "Optional"
140
+ msgstr "ऐच्छिक"
141
 
142
+ #: function/facebook-by-weblizar-widgets.php:184
143
  msgid "Get Your Facebook App. Id"
144
  msgstr "आपका फेसबुक एप्लिकेशन प्राप्त करें"
145
 
146
+ #: function/facebook-by-weblizar-widgets.php:184 function/help-body.php:41
147
  msgid "HERE"
148
  msgstr "यहाँ जायें"
149
 
150
+ #: function/facebook-by-weblizar-widgets.php:189
151
  msgid "Rate Us on "
152
  msgstr "हमें रेट करें"
153
 
154
+ #: function/facebook-feed-shortcode-data.php:124 function/facebook-feed-shortcode.php:113
155
+ #: function/facebook-feed-shortcode.php:170 function/facebook-feed-widget.php:143
156
+ msgid "...See more"
157
+ msgstr "...और देखें"
158
 
159
+ #: function/facebook-feed-shortcode-data.php:140
160
+ #, fuzzy
161
+ #| msgid "LikeBox"
162
+ msgid "Like"
163
+ msgstr "बॉक्स की तरह"
164
 
165
+ #: function/facebook-feed-shortcode-data.php:162 function/facebook-feed-shortcode.php:213
166
+ #: function/facebook-feed-widget.php:200
167
+ #, fuzzy
168
+ #| msgid "Show View on Facebook:"
169
+ msgid "Comment on Facebook"
170
+ msgstr "फेसबुक पर दिखाना देखें"
171
 
172
+ #: function/facebook-feed-shortcode-data.php:197
173
+ msgid "reply"
174
+ msgstr "जवाब दे दो"
175
 
176
+ #: function/facebook-feed-shortcode.php:41 function/facebook-feed-widget.php:66
177
  #, fuzzy
178
+ #| msgid "LikeBox"
179
+ msgid "Likes"
180
+ msgstr "बॉक्स की तरह"
181
+
182
+ #: function/facebook-feed-shortcode.php:47
183
+ msgid "Share"
184
+ msgstr "शेयर"
185
+
186
+ #: function/facebook-feed-shortcode.php:207 function/facebook-feed-widget.php:194
187
+ msgid "people reacted to this"
188
+ msgstr "लोगों ने इस पर प्रतिक्रिया व्यक्त की"
189
 
190
+ #: function/facebook-feed-shortcode.php:246 function/facebook-feed-widget.php:234
191
+ #, fuzzy
192
+ #| msgid "Post type:"
193
+ msgid "Posted:"
194
+ msgstr "पद प्रकार:"
195
+
196
+ #: function/facebook-feed-shortcode.php:249 function/facebook-feed-widget.php:237
197
+ msgid "Replies"
198
+ msgstr "जवाब"
199
+
200
+ #: function/facebook-feed-widget.php:310
201
+ #, fuzzy
202
+ #| msgid "Widget Width"
203
+ msgid "Widget Title"
204
+ msgstr "विजेट चौड़ाई"
205
+
206
+ #: function/facebook-feed.php:31
207
  msgid "Feed Settings"
208
  msgstr "फीड सेटिंग"
209
 
210
+ #: function/facebook-feed.php:37
211
+ #, fuzzy
212
+ #| msgid "Choose page,group or profile:"
213
+ msgid "Choose page, Group or Profile:"
214
  msgstr "पृष्ठ, समूह या प्रोफ़ाइल चुनें:"
215
 
216
+ #: function/facebook-feed.php:40
217
  msgid "Page"
218
  msgstr "पृष्ठ"
219
 
220
+ #: function/facebook-feed.php:41
221
  #, fuzzy
222
  #| msgid "Group Name"
223
  msgid "Group"
224
  msgstr "समूह का नाम"
225
 
226
+ #: function/facebook-feed.php:42
227
  #, fuzzy
228
  #| msgid "Business Profile"
229
  msgid "Profile"
230
  msgstr "व्यापार रूपरेखा"
231
 
232
+ #: function/facebook-feed.php:49
233
  msgid "Page url:"
234
  msgstr "यूआरएल पृष्ठ:"
235
 
236
+ #: function/facebook-feed.php:55
237
  #, fuzzy
238
  #| msgid "Group Name"
239
  msgid "Group id:"
240
  msgstr "समूह का नाम"
241
 
242
+ #: function/facebook-feed.php:56
243
+ msgid "This Options Available in pro version"
244
+ msgstr "समर्थक संस्करण में यह विकल्प उपलब्ध हैं"
245
+
246
+ #: function/facebook-feed.php:59
247
  msgid "Acess Token:"
248
  msgstr "एक्सेस टोकन:"
249
 
250
+ #: function/facebook-feed.php:60
251
+ msgid "This Option Available in pro version"
252
+ msgstr "समर्थक संस्करण में यह विकल्प उपलब्ध है"
253
+
254
+ #: function/facebook-feed.php:65
255
  #, fuzzy
256
  #| msgid "Appointment Date"
257
  msgid "Content type:"
258
  msgstr "नियुक्ति की तारीख"
259
 
260
+ #: function/facebook-feed.php:68
261
  #, fuzzy
262
  #| msgid "Time Zone"
263
  msgid "Timeline"
264
  msgstr "समय क्षेत्र"
265
 
266
+ #: function/facebook-feed.php:70
267
  msgid "Specific"
268
  msgstr "विशिष्ट"
269
 
270
+ #: function/facebook-feed.php:74
271
  msgid "Show posts by:"
272
  msgstr "द्वारा पोस्ट दिखाएं:"
273
 
274
+ #: function/facebook-feed.php:77
275
  msgid "Owner"
276
  msgstr "मालिक"
277
 
278
+ #: function/facebook-feed.php:78
279
  msgid "Owner and other"
280
  msgstr "मालिक और अन्य"
281
 
282
+ #: function/facebook-feed.php:80 function/facebook-feed.php:116 function/facebook-feed.php:127
283
+ #: function/facebook-feed.php:135 function/facebook-feed.php:165
284
+ #, fuzzy
285
+ #| msgid "Available Time For"
286
+ msgid "Available in pro version."
287
+ msgstr "समय का चयन इस सेवा के लिए"
288
+
289
+ #: function/facebook-feed.php:84
290
  msgid "Post type:"
291
  msgstr "पद प्रकार:"
292
 
293
+ #: function/facebook-feed.php:87
294
  #, fuzzy
295
  #| msgid "Status"
296
  msgid "Statuses"
297
  msgstr "अवस्था"
298
 
299
+ #: function/facebook-feed.php:90 function/facebook-feed.php:106
300
  msgid "Photos"
301
  msgstr "तस्वीरें"
302
 
303
+ #: function/facebook-feed.php:93 function/facebook-feed.php:109
304
  msgid "Videos"
305
  msgstr "वीडियो"
306
 
307
+ #: function/facebook-feed.php:96
308
  msgid "Links"
309
  msgstr "लिंक"
310
 
311
+ #: function/facebook-feed.php:99 function/facebook-feed.php:115
312
  msgid "Events"
313
  msgstr "आयोजन"
314
 
315
+ #: function/facebook-feed.php:103
316
  msgid "Use page s:"
317
  msgstr "पृष्ठ का उपयोग करें:"
318
 
319
+ #: function/facebook-feed.php:112
320
  msgid "Albums"
321
  msgstr "एल्बम"
322
 
323
+ #: function/facebook-feed.php:120
324
  msgid "Layout"
325
  msgstr "ख़ाका"
326
 
327
+ #: function/facebook-feed.php:124
328
+ msgid "5+ Column Layouts "
329
+ msgstr "5+ कॉलम लेआउट"
330
 
331
+ #: function/facebook-feed.php:130
332
+ #, fuzzy
333
+ #| msgid "hover Effect"
334
+ msgid "Hover Effect"
335
+ msgstr "मंडराना प्रभाव"
336
 
337
+ #: function/facebook-feed.php:133
338
+ msgid "60+ Image Effects"
339
+ msgstr "60+ छवि प्रभाव"
340
 
341
+ #: function/facebook-feed.php:147
342
+ #, fuzzy
343
+ #| msgid "hover color"
344
+ msgid "Hover color"
345
+ msgstr "हॉवर रंग"
346
 
347
+ #: function/facebook-feed.php:150
348
+ #, fuzzy
349
+ #| msgid "hover color"
350
+ msgid "Choose feed hover color."
351
+ msgstr "हॉवर रंग"
352
 
353
+ #: function/facebook-feed.php:154
354
+ msgid "Number of posts:"
355
+ msgstr "पदो कि संख्या:"
356
 
357
+ #: function/facebook-feed.php:160
358
+ #, fuzzy
359
+ #| msgid "Loading Staff..."
360
+ msgid "Loading effect:"
361
+ msgstr "कर्मचारी लोड हो रहें हैं ..."
362
 
363
+ #: function/facebook-feed.php:163
364
+ msgid "None"
365
+ msgstr "नहीं"
366
 
367
+ #: function/facebook-feed.php:169
368
+ #, fuzzy
369
+ #| msgid "Show Widget Header"
370
+ msgid "Show Header:"
371
+ msgstr "विजेट हैडर दिखाएँ "
372
 
373
+ #: function/facebook-feed.php:172
374
+ #, fuzzy
375
+ #| msgid "Do you want to delete this service?"
376
+ msgid "Do you want to show cover image."
377
+ msgstr "क्या आप ये सेवा हटाना चाहते हैं?"
378
 
379
+ #: function/facebook-feed.php:176
380
+ #, fuzzy
381
+ #| msgid "Select any group."
382
+ msgid "Select layout:"
383
+ msgstr "कोई समूह चुनें"
384
 
385
+ #: function/facebook-feed.php:181
386
+ msgid "Full-width"
387
+ msgstr "पूर्ण चौड़ाई"
388
 
389
+ #: function/facebook-feed.php:182
390
+ msgid "Half-width"
391
+ msgstr "आधी चौड़ाई"
392
 
393
+ #: function/facebook-feed.php:183
394
+ msgid "Thumbnail"
395
+ msgstr "थंबनेल"
396
 
397
+ #: function/facebook-feed.php:186
398
+ msgid "Select time-line(Posts) layout."
399
+ msgstr "समय रेखा (पोस्ट) लेआउट का चयन करें।"
400
 
401
+ #: function/facebook-feed.php:190
402
+ msgid "Light Box Styles"
403
+ msgstr "लाइट बॉक्स शैलियाँ"
404
 
405
+ #: function/facebook-feed.php:194
406
+ msgid "Custom Box"
407
+ msgstr "कस्टम बॉक्स"
408
 
409
+ #: function/facebook-feed.php:195
410
+ msgid " 8+Light-Box Layouts available in Pro"
411
+ msgstr "प्रो में उपलब्ध 8 + लाइट-बॉक्स लेआउट"
412
 
413
+ #: function/facebook-feed.php:198
414
+ #, fuzzy
415
+ #| msgid "Light Box Styles"
416
+ msgid "Select lightbox Styles."
417
+ msgstr "लाइट बॉक्स शैलियाँ"
418
 
419
+ #: function/facebook-feed.php:215
420
+ msgid "Save"
421
+ msgstr "बनायें"
422
 
423
+ #: function/facebook-feed.php:221
424
+ msgid "Success!"
425
+ msgstr "सफलता!"
426
 
427
+ #: function/facebook-feed.php:221
428
+ msgid "Data Save Successfully."
429
+ msgstr "सेवा सफलतापूर्वक नवीनतम कर दी गई है"
430
 
431
+ #: function/facebook-feed.php:227
432
+ msgid "Plugin Shortcode"
433
+ msgstr "प्लगइन शोर्ट"
434
 
435
+ #: function/facebook-feed.php:228
436
+ msgid "copy this shortcode"
437
+ msgstr "इस शोर्ट को कॉपी करें"
438
 
439
+ #: function/facebook-feed.php:228
440
+ msgid "to any page, post or widget where you want to showcase your Facebook feed."
441
+ msgstr "किसी भी पृष्ठ, पोस्ट या विजेट पर जहां आप अपने फेसबुक फ़ीड को प्रदर्शित करना चाहते हैं"
442
 
443
+ #: function/help-body.php:4
444
+ #, fuzzy
445
+ #| msgid "Facebook Like Box Shoertcode"
446
+ msgid "Facebook Like Box Shortcode Settings"
447
+ msgstr "फेसबुक की तरह बॉक्स शूटरकोड"
448
 
449
+ #: function/help-body.php:15 function/help-body.php:23
450
+ msgid "Yes"
451
+ msgstr "हाँ"
452
 
453
+ #: function/help-body.php:16 function/help-body.php:24
454
+ msgid "No"
455
+ msgstr "नहीं"
456
 
457
+ #: function/help-body.php:41
458
+ msgid "Get Your Own Facebook APP Id"
459
+ msgstr "अपनी खुद फेसबुक एपीपी आईडी प्राप्त करें"
460
 
461
+ #: function/help-body.php:45
462
+ msgid "SAVE"
463
+ msgstr "बचाना"
464
 
465
+ #: function/help-body.php:50
466
+ msgid "Settings successfully saved. Reloading page for generating preview below."
467
+ msgstr "सेटिंग्स सफलतापूर्वक बना दी गई है। नीचे पूर्वावलोकन पैदा करने के लिए पेज को पुन: लोड किया जा रहा है।"
468
 
469
+ #: function/help-body.php:60
470
+ #, fuzzy
471
+ #| msgid "Facebook Like Box Shoertcode"
472
+ msgid "Facebook Likebox \" [FBW] \" Shortcode Preview"
473
+ msgstr "फेसबुक की तरह बॉक्स शूटरकोड"
474
 
475
+ #: function/help-body.php:84 function/help-body.php:117
476
+ #, fuzzy
477
+ #| msgid "Facebook Page URL"
478
+ msgid "Facebook Feed & Like Box"
479
+ msgstr "फेसबुक पेज यूआरएल"
480
 
481
+ #: function/help-body.php:89
482
+ #, fuzzy
483
+ #| msgid "Facebook Page URL"
484
+ msgid "Facebook Page Like Box"
485
+ msgstr "फेसबुक पेज यूआरएल"
486
 
487
+ #: function/help-body.php:91
488
+ msgid "Facebook Like Box Widget"
489
+ msgstr "फेसबुक की तरह बॉक्स विजेट"
490
 
491
+ #: function/help-body.php:92
492
+ #, fuzzy
493
+ #| msgid "Facebook Like Box Shoertcode"
494
+ msgid "Facebook Like Box Short-code"
495
+ msgstr "फेसबुक की तरह बॉक्स शूटरकोड"
496
 
497
+ #: function/help-body.php:94
498
+ msgid "You can use the widget to display your Facebook Like Box in any theme Widget Sections"
499
+ msgstr ""
500
+ "आप किसी भी थीम विजेट अनुभाग में अपने फेसबुक की तरह बॉक्स प्रदर्शित करने के लिए विजेट का उपयोग कर सकते हैं"
501
 
502
+ #: function/help-body.php:95 function/help-body.php:114
503
+ msgid "Simple go to your"
504
+ msgstr "सरल अपने जाओ"
505
 
506
+ #: function/help-body.php:96 function/help-body.php:115
507
+ msgid "Widgets"
508
+ msgstr "विजेट"
509
 
510
+ #: function/help-body.php:96 function/help-body.php:116
511
+ msgid "section and activate available"
512
+ msgstr "अनुभाग और उपलब्ध सक्रिय करें"
513
 
514
+ #: function/help-body.php:97
515
+ #, fuzzy
516
+ #| msgid "Facebook Like Box Widget"
517
+ msgid "Facebook Like Box"
518
+ msgstr "फेसबुक की तरह बॉक्स विजेट"
519
+
520
+ #: function/help-body.php:98 function/help-body.php:118
521
+ msgid "widget in any sidebar section, like in left sidebar, right sidebar or footer sidebar"
522
+ msgstr "किसी भी साइडबार अनुभाग में विजेट, जैसे बाएं साइडबार, सही साइडबार या पाद लेख साइडबार में"
523
+
524
+ #: function/help-body.php:101
525
+ #, fuzzy
526
+ #| msgid "Facebook Like Box Shoertcode"
527
+ msgid "Facebook Like Box Short-Code"
528
+ msgstr "फेसबुक की तरह बॉक्स शूटरकोड"
529
+
530
+ #: function/help-body.php:103
531
+ #, fuzzy
532
+ #| msgid "shortcode give ability to display Facebook Like Box in any Page / Post with content"
533
+ msgid "Shortcode give ability to display Facebook Like Box in any Page / Post with content"
534
+ msgstr "शोर्टकोड सामग्री के साथ किसी भी पेज / पोस्ट में फेसबुक की तरह बॉक्स प्रदर्शित करने की क्षमता देते हैं"
535
+
536
+ #: function/help-body.php:104 function/help-body.php:123
537
+ msgid "To use shortcode, just copy "
538
+ msgstr "शोर्ट का उपयोग करने के लिए, बस कॉपी करें"
539
+
540
+ #: function/help-body.php:105 function/help-body.php:124
541
+ msgid "shortcode and paste into content editor of any Page / Post"
542
+ msgstr "किसी भी पृष्ठ / पोस्ट के सामग्री संपादक में शोर्ट और पेस्ट करें"
543
+
544
+ #: function/help-body.php:109
545
+ #, fuzzy
546
+ #| msgid "Facebook Page URL"
547
+ msgid "Facebook Page Feed"
548
+ msgstr "फेसबुक पेज यूआरएल"
549
+
550
+ #: function/help-body.php:111
551
+ #, fuzzy
552
+ #| msgid "Facebook Like Box Widget"
553
+ msgid "Facebook Page Feed Widget"
554
+ msgstr "फेसबुक की तरह बॉक्स विजेट"
555
+
556
+ #: function/help-body.php:112 function/help-body.php:120
557
+ #, fuzzy
558
+ #| msgid "Facebook Like Box Shoertcode"
559
+ msgid "Facebook Page Feed Short-Code"
560
+ msgstr "फेसबुक की तरह बॉक्स शूटरकोड"
561
+
562
+ #: function/help-body.php:113
563
+ #, fuzzy
564
+ #| msgid ""
565
+ #| "You can use the widget to display your Facebook Like Box in any theme Widget Sections"
566
+ msgid "You can use the widget to display your Facebook Page Feed in any theme Widget Sections"
567
+ msgstr ""
568
+ "आप किसी भी थीम विजेट अनुभाग में अपने फेसबुक की तरह बॉक्स प्रदर्शित करने के लिए विजेट का उपयोग कर सकते हैं"
569
+
570
+ #: function/help-body.php:122
571
+ msgid "shortcode give ability to display Facebook Like Box in any Page / Post with content"
572
+ msgstr "शोर्टकोड सामग्री के साथ किसी भी पेज / पोस्ट में फेसबुक की तरह बॉक्स प्रदर्शित करने की क्षमता देते हैं"
573
+
574
+ #: function/help-body.php:128
575
+ #, fuzzy
576
+ #| msgid "Facebook Page URL"
577
+ msgid "What is Facebook Page URL"
578
+ msgstr "फेसबुक पेज यूआरएल"
579
+
580
+ #: function/help-body.php:129
581
+ msgid ""
582
+ "is your Facebook page your where you promote your business. Here your customers, clients, "
583
+ "friends, guests can like, share, comment review your POST"
584
+ msgstr ""
585
+ "आपका फेसबुक पेज आपका है जहां आप अपने व्यापार का प्रचार करते हैं यहां आपके ग्राहक, ग्राहक, मित्र, मेहमान आपके "
586
+ "पोस्ट की समीक्षा, साझा, टिप्पणी कर सकते हैं"
587
+
588
+ #: function/help-body.php:131
589
+ #, fuzzy
590
+ #| msgid "Facebook App ID"
591
+ msgid "What is Facebook APP ID"
592
+ msgstr "फेसबुक एप्लिकेशन आईडी"
593
+
594
+ #: function/help-body.php:132
595
+ #, fuzzy
596
+ #| msgid "Facebook App ID"
597
+ msgid "Facebook Application ID"
598
+ msgstr "फेसबुक एप्लिकेशन आईडी"
599
+
600
+ #: function/help-body.php:133
601
+ msgid ""
602
+ " used to authenticate your Facebook Page data & settings. To get your own Facebook APP ID "
603
+ "please read our 4 Steps very simple and easy "
604
+ msgstr ""
605
+ "अपने फेसबुक पेज डेटा और सेटिंग्स को प्रमाणित करने के लिए उपयोग किया जाता है अपनी खुद की फेसबुक एपीपी आईडी "
606
+ "प्राप्त करने के लिए कृपया हमारे 4 कदम बहुत सरल और आसान पढ़ें"
607
+
608
+ #: function/help-body.php:134
609
+ msgid " Tutorial"
610
+ msgstr "ट्यूटोरियल"
611
+
612
+ #: function/help-body.php:146
613
+ #, fuzzy
614
+ #| msgid "Facebook Page URL"
615
+ msgid "Facebook Feed Pro"
616
+ msgstr "फेसबुक पेज यूआरएल"
617
+
618
+ #: function/help-body.php:150
619
+ msgid "Unlimited Profile, Page & Group Feeds"
620
+ msgstr "असीमित प्रोफाइल, पेज और समूह फ़ीड्स"
621
+
622
+ #: function/help-body.php:151
623
+ msgid "Unlimited Feeds Per Page/Post"
624
+ msgstr "पृष्ठ / पोस्ट प्रति असीमित फ़ीड्स"
625
+
626
+ #: function/help-body.php:152
627
+ #, fuzzy
628
+ #| msgid "Light Box Styles"
629
+ msgid "Light-Box Layouts 9+"
630
+ msgstr "लाइट बॉक्स शैलियाँ"
631
+
632
+ #: function/help-body.php:153
633
+ msgid "Tons of Feed Short-Code"
634
+ msgstr "फीड शॉर्ट-कोड के टन"
635
+
636
+ #: function/help-body.php:154
637
+ msgid "Specific Content Facebook Feeds"
638
+ msgstr "विशिष्ट सामग्री फेसबुक फ़ीड्स"
639
+
640
+ #: function/help-body.php:155
641
  #, fuzzy
642
  #| msgid "Loading Staff..."
643
+ msgid "Many Loading & Hover CSS Effect"
644
  msgstr "कर्मचारी लोड हो रहें हैं ..."
645
 
646
+ #: function/help-body.php:156
647
+ msgid "Auto-Update Feeds"
648
+ msgstr "ऑटो अपडेट फ़ीड्स"
649
+
650
+ #: function/help-body.php:159
651
+ msgid "Top Level & Stream Type Comment Display"
652
+ msgstr "शीर्ष स्तर और स्ट्रीम प्रकार टिप्पणी प्रदर्शन"
653
 
654
+ #: function/help-body.php:160
655
+ msgid "Sharing On Social Media"
656
+ msgstr "सोशल मीडिया पर साझा करना"
657
 
658
+ #: function/help-body.php:161
659
+ #, fuzzy
660
+ #| msgid "Required"
661
+ msgid "No Code Require"
662
+ msgstr "आवश्यक"
663
 
664
+ #: function/help-body.php:162
665
+ #, fuzzy
666
+ #| msgid "Widgets"
667
+ msgid "Feed Widgets"
668
+ msgstr "विजेट"
669
 
670
+ #: function/help-body.php:163
671
+ msgid "Like & Share Button For Each Feed in Like-box"
672
+ msgstr "लाइक-बॉक्स में प्रत्येक फ़ीड के लिए बटन की तरह और साझा करें"
673
 
674
+ #: function/help-body.php:164
675
+ msgid "Fast & Friendly Support"
676
+ msgstr "तेज़ और दोस्ताना समर्थन"
677
 
678
+ #: function/help-body.php:165
679
+ msgid "Fully Responsive And Optimized"
680
+ msgstr "पूरी तरह से उत्तरदायी और अनुकूलित"
681
 
682
+ #: function/help-body.php:170
683
+ msgid "Try Live Demo"
684
+ msgstr "लाइव डेमो आज़माएं"
685
 
686
+ #: function/help-body.php:171 function/help-body.php:175
687
+ #, fuzzy
688
+ #| msgid "Click Here"
689
+ msgid "Click Here"
690
+ msgstr "यहाँ क्लिक करें"
691
 
692
+ #: function/help-body.php:174
693
+ msgid "Try Before Buy Using Admin Demo"
694
+ msgstr "व्यवस्थापक डेमो का उपयोग करने से पहले खरीदने का प्रयास करें"
695
 
696
+ #: function/help-body.php:179
697
+ msgid "Buy Now ($19)"
698
+ msgstr "अभी खरीदें ($ 1 9)"
699
 
700
+ #, fuzzy
701
+ #~| msgid "Start Date"
702
+ #~ msgid "Start Rating"
703
+ #~ msgstr "प्रारम्भ दिनांक"
704
 
705
+ #~ msgid "Plugin Recommendation"
706
+ #~ msgstr "प्लगइन की सिफारिश"
 
707
 
708
+ #~ msgid "Rate Us"
709
+ #~ msgstr "हमें रेटिंग दें"
 
710
 
711
+ #~ msgid "\" Facebook Feed \" Coming Soon"
712
+ #~ msgstr "\"फेसबुक फ़ीड\" जल्द ही आ रहा है"
 
713
 
714
+ #~ msgid "Here"
715
+ #~ msgstr "यहाँ"
 
716
 
717
+ #~ msgid "One Column"
718
+ #~ msgstr "एक कॉलम"
 
719
 
720
+ #~ msgid "Two Column"
721
+ #~ msgstr "दो स्तंभ"
 
722
 
723
+ #~ msgid "Three Column"
724
+ #~ msgstr "तीन स्तंभ"
 
725
 
726
+ #~ msgid "Four Column"
727
+ #~ msgstr "चार स्तंभ"
 
728
 
729
+ #~ msgid "Six Column"
730
+ #~ msgstr "छह स्तंभ"
 
731
 
732
+ #~ msgid "Choose a column layout."
733
+ #~ msgstr "एक स्तंभ लेआउट चुनें।"
 
734
 
735
+ #~ msgid "Image top Move"
736
+ #~ msgstr "छवि शीर्ष स्थानांतरित करें"
 
737
 
738
+ #~ msgid "Image bottom Move"
739
+ #~ msgstr "छवि तल हटो"
 
740
 
741
+ #~ msgid "Image left Move"
742
+ #~ msgstr "छवि बाएँ हटो"
 
743
 
744
+ #~ msgid "Image right Move"
745
+ #~ msgstr "इमेज राइट मूव"
 
746
 
747
+ #~ msgid "Image hange up"
748
+ #~ msgstr "छवि हंगेर अप"
 
749
 
750
+ #~ msgid "Image hange down"
751
+ #~ msgstr "छवि हेंगे नीचे"
 
752
 
753
+ #~ msgid "Image hange right"
754
+ #~ msgstr "छवि हंगेर सही"
 
755
 
756
+ #~ msgid "Image hange left"
757
+ #~ msgstr "छवि हेंगे छोड़ दिया"
 
758
 
759
+ #~ msgid "Image flip horizontal"
760
+ #~ msgstr "छवि फ्लिप क्षैतिज"
 
761
 
762
+ #~ msgid "Image flip vertical"
763
+ #~ msgstr "चित्र ऊर्ध्वाधर फ्लिप"
 
764
 
765
+ #~ msgid "Image flip diag-1"
766
+ #~ msgstr "छवि फ्लिप डायग -1"
 
767
 
768
+ #~ msgid "Image flip diag-2"
769
+ #~ msgstr "छवि फ्लिप डायग -2"
 
770
 
771
+ #~ msgid "Image fold up"
772
+ #~ msgstr "छवि ऊपर गुना"
 
773
 
774
+ #~ msgid "Image fold down"
775
+ #~ msgstr "छवि नीचे गुना"
 
776
 
777
+ #~ msgid "Image fold right"
778
+ #~ msgstr "छवि गुना सही"
 
779
 
780
+ #~ msgid "Image fold left"
781
+ #~ msgstr "छवि गुना छोड़ दिया"
 
782
 
783
+ #~ msgid "Image zoom-out"
784
+ #~ msgstr "छवि ज़ूम-आउट"
 
785
 
786
+ #~ msgid "Image zoom-out-up"
787
+ #~ msgstr "छवि ज़ूम आउट-अप"
 
788
 
789
+ #~ msgid "Image zoom-down"
790
+ #~ msgstr "छवि ज़ूम-डाउन"
 
791
 
792
+ #~ msgid "Image zoom-out-left"
793
+ #~ msgstr "छवि ज़ूम-आउट-बाएं"
 
794
 
795
+ #~ msgid "Image zoom-out-right"
796
+ #~ msgstr "छवि ज़ूम-आउट-दाएं"
 
797
 
798
+ #~ msgid "Image zoom-out-flip-horizontal"
799
+ #~ msgstr "छवि ज़ूम-आउट-फ्लिप-क्षैतिज"
 
800
 
801
+ #~ msgid "Image zoom-out-flip-vertical"
802
+ #~ msgstr "छवि ज़ूम-आउट- फ्लिप-लंबवत"
 
803
 
804
+ #~ msgid "Slide effect left"
805
+ #~ msgstr "स्लाइड प्रभाव छोड़ दिया"
 
806
 
807
+ #~ msgid "Slide effect right"
808
+ #~ msgstr "स्लाइड प्रभाव सही"
 
809
 
810
+ #~ msgid "Slide effect bottom left"
811
+ #~ msgstr "स्लाइड प्रभाव नीचे बायां"
 
812
 
813
+ #~ msgid "Slide effect bottom right"
814
+ #~ msgstr "स्लाइड प्रभाव नीचे सही"
 
815
 
816
+ #~ msgid "Slide effect circle right"
817
+ #~ msgstr "स्लाइड प्रभाव सर्कल सही"
 
818
 
819
+ #~ msgid "Slide effect circle left"
820
+ #~ msgstr "स्लाइड प्रभाव सर्कल छोड़ दिया"
 
821
 
822
+ #~ msgid "Outline-border"
823
+ #~ msgstr "रूपरेखा सीमा"
 
824
 
825
+ #~ msgid "dotted-border"
826
+ #~ msgstr "बिंदीदार सीमा"
 
827
 
828
+ #~ msgid "bounce"
829
+ #~ msgstr "उछाल"
 
830
 
831
+ #~ msgid "flash"
832
+ #~ msgstr "फ़्लैश"
 
833
 
834
+ #~ msgid "pulse"
835
+ #~ msgstr "नाड़ी"
 
836
 
837
+ #~ msgid "rubberBand"
838
+ #~ msgstr "रबर बैंड"
 
839
 
840
+ #~ msgid "shake"
841
+ #~ msgstr "हिलाना"
 
842
 
843
+ #~ msgid "swing"
844
+ #~ msgstr "झूला"
 
845
 
846
+ #~ msgid "tada"
847
+ #~ msgstr "तो"
 
848
 
849
+ #~ msgid "wobble"
850
+ #~ msgstr "लडखडाना"
 
851
 
852
+ #~ msgid "jello"
853
+ #~ msgstr "जेलो"
 
854
 
855
+ #~ msgid "bounceIn"
856
+ #~ msgstr "उछाल में"
 
 
 
857
 
858
+ #~ msgid "bounceInDown"
859
+ #~ msgstr "उछाल नीचे"
 
860
 
861
+ #~ msgid "bounceInLeft"
862
+ #~ msgstr "उछाल बाएं"
 
863
 
864
+ #~ msgid "bounceInRight"
865
+ #~ msgstr "बाउंस में सही"
 
866
 
867
+ #~ msgid "bounceInUp"
868
+ #~ msgstr "उछाल में ऊपर"
 
869
 
870
+ #~ msgid "bounceOut"
871
+ #~ msgstr "बाउंस आउट"
 
872
 
873
+ #~ msgid "bounceOutDown"
874
+ #~ msgstr "बाउंस आउट डाउन"
 
875
 
876
+ #~ msgid "bounceOutLeft"
877
+ #~ msgstr "बाउंस आउट बाएं"
 
878
 
879
+ #~ msgid "bounceOutRight"
880
+ #~ msgstr "बाउंस आउट राइट"
 
881
 
882
+ #~ msgid "bounceOutUp"
883
+ #~ msgstr "बाउंस आउटअप"
 
884
 
885
+ #~ msgid "fadeIn"
886
+ #~ msgstr "में फीका"
 
887
 
888
+ #~ msgid "fadeInDown"
889
+ #~ msgstr "फीका इनडाउन"
 
890
 
891
+ #~ msgid "fadeInDownBig"
892
+ #~ msgstr "नीचे बिग में फीका"
 
893
 
894
+ #~ msgid "fadeInLeft"
895
+ #~ msgstr "फीका इनलाइन"
 
896
 
897
+ #~ msgid "fadeInLeftBig"
898
+ #~ msgstr "फीका इनफ़ेल्ट बिग"
 
 
 
899
 
900
+ #~ msgid "fadeInRight"
901
+ #~ msgstr "फीका इनराइट"
 
 
 
902
 
903
+ #~ msgid "fadeInRightBig"
904
+ #~ msgstr "फीडइन राइटबिग"
 
905
 
906
+ #~ msgid "fadeInUp"
907
+ #~ msgstr "फीडइन अप"
 
908
 
909
+ #~ msgid "fadeInUpBig"
910
+ #~ msgstr "फीडइन अपबिग"
 
911
 
912
+ #~ msgid "fadeOut"
913
+ #~ msgstr "फेड आउट"
 
914
 
915
+ #~ msgid "fadeOutDown"
916
+ #~ msgstr "फीका आउटडाऊन"
 
917
 
918
+ #~ msgid "fadeOutDownBig"
919
+ #~ msgstr "फीका आउटडाउनबाग"
 
920
 
921
+ #~ msgid "fadeOutLeft"
922
+ #~ msgstr "फीका आउटफ़ाईट"
 
923
 
924
+ #~ msgid "fadeOutLeftBig"
925
+ #~ msgstr "फीका आउट-लेफ्टबॉल"
 
926
 
927
+ #~ msgid "fadeOutRight"
928
+ #~ msgstr "फीका आउटराइट"
 
929
 
930
+ #~ msgid "fadeOutRightBig"
931
+ #~ msgstr "फीका आउटग्रेड"
 
932
 
933
+ #~ msgid "fadeOutUp"
934
+ #~ msgstr "फीका आउट आउट"
 
935
 
936
+ #~ msgid "fadeOutUpBig"
937
+ #~ msgstr "फीका आउटअपबिग"
 
938
 
939
+ #~ msgid "flip"
940
+ #~ msgstr "फ्लिप"
 
941
 
942
+ #~ msgid "flipInX"
943
+ #~ msgstr "flip In X"
 
944
 
945
+ #~ msgid "flipInY"
946
+ #~ msgstr "flip In Y"
 
947
 
948
+ #~ msgid "flipOutX"
949
+ #~ msgstr "पागल हो जाना"
 
950
 
951
+ #~ msgid "flipOutY"
952
+ #~ msgstr "पागल हो जाना"
 
953
 
954
+ #~ msgid "lightSpeedIn"
955
+ #~ msgstr "प्रकाश गति में"
 
956
 
957
+ #~ msgid "lightSpeedOut"
958
+ #~ msgstr "प्रकाश स्पीडऑट"
 
959
 
960
+ #~ msgid "rotateIn"
961
+ #~ msgstr "घुमाएंगे में"
 
962
 
963
+ #~ msgid "rotateInDownLeft"
964
+ #~ msgstr "नीचे की ओर घुमाएं"
 
965
 
966
+ #~ msgid "rotateInDownRight"
967
+ #~ msgstr "नीचे में राइट बारी बारी से"
 
968
 
969
+ #~ msgid "rotateInUpLeft"
970
+ #~ msgstr "ऊपर की तरफ घुमाएं"
 
 
 
 
 
 
971
 
972
+ #~ msgid "rotateInUpRight"
973
+ #~ msgstr "रोटेट इन अप राइट"
 
974
 
975
+ #~ msgid "rotateOut"
976
+ #~ msgstr "घुमाएंगे आउट"
 
977
 
978
+ #~ msgid "rotateOutDownLeft"
979
+ #~ msgstr "आउटडाउन-लेफ्ट घुमाएँ"
 
980
 
981
+ #~ msgid "rotateOutDownRight"
982
+ #~ msgstr "घुमाएंगे आउटडाउन राइट"
 
983
 
984
+ #~ msgid "rotateOutUpLeft"
985
+ #~ msgstr "आउटपुट लिफ्ट को घुमाएं"
 
986
 
987
+ #~ msgid "rotateOutUpRight"
988
+ #~ msgstr "आउटवेयर को घुमाएं"
 
989
 
990
+ #~ msgid "slideInUp"
991
+ #~ msgstr "स्लाइड इन-अप"
 
 
 
992
 
993
+ #~ msgid "slideInDown"
994
+ #~ msgstr "स्लाइड डाउन में"
 
995
 
996
+ #~ msgid "slideInLeft"
997
+ #~ msgstr "बाएं में स्लाइड"
 
998
 
999
+ #~ msgid "slideInRight"
1000
+ #~ msgstr "इनराइट स्लाइड"
 
1001
 
1002
+ #~ msgid "slideOutUp"
1003
+ #~ msgstr "स्लाइड आउट आउट"
 
1004
 
1005
+ #~ msgid "slideOutDown"
1006
+ #~ msgstr "स्लाइड आउटडाउन"
 
1007
 
1008
+ #~ msgid "slideOutLeft"
1009
+ #~ msgstr "स्लाइड आउटलेफ़्ट"
 
 
 
1010
 
 
1011
  #, fuzzy
1012
+ #~| msgid "Widget Height"
1013
+ #~ msgid "slideOutRight"
1014
+ #~ msgstr "विजेट लंबाई"
1015
 
1016
+ #~ msgid "zoomIn"
1017
+ #~ msgstr "ज़ूम इन"
 
1018
 
1019
+ #~ msgid "zoomInDown"
1020
+ #~ msgstr "ज़ूम इन डाउन"
 
1021
 
1022
+ #~ msgid "zoomInLeft"
1023
+ #~ msgstr "ज़ूम इन-लेट"
 
1024
 
1025
+ #~ msgid "zoomInRight"
1026
+ #~ msgstr "ज़ूम इनराइट"
 
1027
 
1028
+ #~ msgid "zoomInUp"
1029
+ #~ msgstr "ज़ूम इन अप करें"
 
 
 
1030
 
1031
+ #~ msgid "zoomOut"
1032
+ #~ msgstr "ज़ूम आउट"
 
1033
 
1034
+ #~ msgid "zoomOutDown"
1035
+ #~ msgstr "ज़ूम आउटडाउन"
 
1036
 
1037
+ #~ msgid "zoomOutLeft"
1038
+ #~ msgstr "ज़ूम आउट-लेफ्ट"
 
1039
 
1040
+ #~ msgid "zoomOutRight"
1041
+ #~ msgstr "आउटपुट ज़ूम करें"
 
1042
 
1043
+ #~ msgid "zoomOutUp"
1044
+ #~ msgstr "आउट आउट ज़ूम करें"
 
1045
 
1046
+ #~ msgid "hinge"
1047
+ #~ msgstr "काज"
 
1048
 
1049
+ #~ msgid "rollIn"
1050
+ #~ msgstr "रोलिंग"
 
1051
 
1052
+ #~ msgid "rollOut"
1053
+ #~ msgstr "रोल आउट"
 
1054
 
1055
+ #~ msgid "Photo Box"
1056
+ #~ msgstr "फोटो बॉक्स"
 
1057
 
1058
+ #~ msgid "Pretty Photo"
1059
+ #~ msgstr "\\सुंदर तस्वीर"
 
1060
 
1061
+ #~ msgid "Fancy Box"
1062
+ #~ msgstr "फैंसी बॉक्स"
 
1063
 
1064
+ #~ msgid "Magnific Box "
1065
+ #~ msgstr "शानदार बॉक्स"
 
1066
 
1067
+ #~ msgid "Nivo"
1068
+ #~ msgstr "स्तर"
 
1069
 
1070
+ #~ msgid "Choose a image preview light box style."
1071
+ #~ msgstr "एक छवि पूर्वावलोकन प्रकाश बॉक्स शैली चुनें।"
 
1072
 
1073
+ #~ msgid "Photo Box "
1074
+ #~ msgstr "फोटो बॉक्स"
 
1075
 
1076
+ #~ msgid "Window Box"
1077
+ #~ msgstr "विंडो बॉक्स"
 
1078
 
1079
+ #~ msgid "Smoodiv Box"
1080
+ #~ msgstr "एसमुदिव बॉक्स"
 
1081
 
1082
+ #~ msgid "Swipe Box"
1083
+ #~ msgstr "स्वाइप बॉक्स"
 
1084
 
1085
+ #~ msgid "Ion Box"
1086
+ #~ msgstr "आयन बॉक्स"
 
1087
 
1088
+ #~ msgid "Magnific Box"
1089
+ #~ msgstr "शानदार बॉक्स"
 
1090
 
1091
+ #~ msgid "Timeline / Posts Options"
1092
+ #~ msgstr "समयरेखा / पोस्ट विकल्प"
1093
+
1094
+ #~ msgid "Post-background-color"
1095
+ #~ msgstr "पोस्ट-पृष्ठभूमि रंग"
1096
 
1097
+ #~ msgid "Post-font-color "
1098
+ #~ msgstr "पोस्ट लिपि का रंग"
 
1099
 
1100
+ #~ msgid "Post-font-size"
1101
+ #~ msgstr "पोस्ट फ़ॉन्ट आकार"
 
 
1102
 
1103
+ #~ msgid "Show post author image:"
1104
+ #~ msgstr "पोस्ट लेखक की छवि दिखाएं:"
1105
+
1106
+ #~ msgid "Show post author name:"
1107
+ #~ msgstr "पोस्ट लेखक का नाम दिखाएं:"
1108
+
1109
+ #~ msgid "Show post date:"
1110
+ #~ msgstr "पोस्ट की तारीख दिखाएं:"
1111
+
1112
+ #~ msgid "Show comments author name:"
1113
+ #~ msgstr "टिप्पणियाँ लेखक का नाम दिखाएँ:"
1114
+
1115
+ #~ msgid "Show comments author image:"
1116
+ #~ msgstr "टिप्पणियाँ लेखक छवि दिखाएं:"
1117
+
1118
+ #~ msgid "Show comments message(description):"
1119
+ #~ msgstr "टिप्पणी संदेश (विवरण) दिखाएं"
1120
+
1121
+ #~ msgid "Show comments reply count:"
1122
+ #~ msgstr "टिप्पणियों का उत्तर दिखाएं:"
1123
 
 
1124
  #, fuzzy
1125
+ #~| msgid "Show Faces"
1126
+ #~ msgid "Show likes:"
1127
+ #~ msgstr "चेहरे दिखाएँ"
1128
 
1129
+ #~ msgid "Event Options"
1130
+ #~ msgstr "ईवेंट विकल्प"
 
1131
 
1132
+ #~ msgid "Event background-color"
1133
+ #~ msgstr "इवेंट पृष्ठभूमि-रंग"
 
1134
 
1135
+ #~ msgid "Event font-color"
1136
+ #~ msgstr "इवेंट फ़ॉन्ट-रंग"
 
1137
 
1138
+ #~ msgid "Event font-size"
1139
+ #~ msgstr "इवेंट फ़ॉन्ट-आकार"
 
1140
 
1141
+ #~ msgid "Show event image:"
1142
+ #~ msgstr "ईवेंट छवि दिखाएं:"
 
1143
 
1144
+ #, fuzzy
1145
+ #~| msgid "Show Live Stream"
1146
+ #~ msgid "Show event title:"
1147
+ #~ msgstr "लाइव स्ट्रीम दिखाएँ"
1148
 
1149
+ #, fuzzy
1150
+ #~| msgid "Show Live Stream"
1151
+ #~ msgid "Show event date:"
1152
+ #~ msgstr "लाइव स्ट्रीम दिखाएँ"
1153
 
1154
+ #~ msgid "Show event place:"
1155
+ #~ msgstr "ईवेंट स्थान दिखाएं:"
 
1156
 
1157
+ #~ msgid "Show event interested:"
1158
+ #~ msgstr "रुचि रखने वाली घटना दिखाएँ:"
 
1159
 
1160
+ #~ msgid "Show event going:"
1161
+ #~ msgstr "ईवेंट को दिखाएं:"
 
1162
 
1163
+ #~ msgid "Show event Buy ticket:"
1164
+ #~ msgstr "ईवेंट खरीदें टिकट दिखाएं:"
 
1165
 
1166
+ #, fuzzy
1167
+ #~| msgid "Service Description"
1168
+ #~ msgid "Show event description:"
1169
+ #~ msgstr "सेवा विवरण"
1170
 
1171
+ #~ msgid "Social Sharing Options"
1172
+ #~ msgstr "सामाजिक साझा विकल्प"
 
1173
 
1174
+ #~ msgid "Show share buttons:"
1175
+ #~ msgstr "शेयर बटन दिखाएं:"
 
1176
 
1177
+ #~ msgid "Show Facebook button:"
1178
+ #~ msgstr "फेसबुक बटन दिखाएं:"
 
1179
 
1180
+ #~ msgid "Show Twitter button:"
1181
+ #~ msgstr "ट्विटर बटन दिखाएं:"
 
1182
 
1183
+ #~ msgid "Show Google+ button:"
1184
+ #~ msgstr "गूगल+ बटन दिखाएं:"
 
1185
 
1186
+ #~ msgid "Show Linkedin button:"
1187
+ #~ msgstr "लिंक्डइन बटन दिखाएं:"
 
1188
 
1189
+ #~ msgid "Image Onclick:"
1190
+ #~ msgstr "छवि ऑनक्लिक:"
 
1191
 
1192
+ #~ msgid "Open Lightbox"
1193
+ #~ msgstr "ओपन लाइटबॉक्स"
 
1194
 
1195
+ #~ msgid "Do Nothing"
1196
+ #~ msgstr "कुछ मत करो"
 
 
 
1197
 
1198
+ #~ msgid "Google font:"
1199
+ #~ msgstr "गूगल फ़ॉन्ट:"
 
 
 
 
 
1200
 
1201
+ #~ msgid "Shortcode Settings"
1202
+ #~ msgstr "लघु कोड सेटिंग्स"
1203
+
1204
+ #~ msgid "Preview"
1205
+ #~ msgstr "पूर्वावलोकन"
1206
+
1207
+ #~ msgid "%s rating"
1208
+ #~ msgstr "रेटिंग"
1209
+
1210
+ #~ msgid "Get More Free Wordpress Plguins From Weblizar"
1211
+ #~ msgstr "वेबलिज़र से अधिक नि: शुल्क वर्डप्रेस प्लगइन्स प्राप्त करें"
1212
 
 
1213
  #, fuzzy
1214
+ #~| msgid "Details"
1215
+ #~ msgid "More Details"
1216
+ #~ msgstr "विवरण"
1217
 
1218
+ #~ msgid "Install Now"
1219
+ #~ msgstr "अभी स्थापित करें"
 
 
 
 
 
1220
 
1221
+ #~ msgid "Update Now"
1222
+ #~ msgstr "अभी अद्यतन करें"
1223
+
1224
+ #~ msgid "By "
1225
+ #~ msgstr "द्वारा"
1226
+
1227
+ #~ msgid "Last Updated:"
1228
+ #~ msgstr "आखरी अपडेट"
1229
+
1230
+ #~ msgid "Untested with your version of WordPress"
1231
+ #~ msgstr "वर्डप्रेस के आपके संस्करण के साथ अनचेस्टर"
1232
+
1233
+ #~ msgid "Incompatible with your version of WordPress"
1234
+ #~ msgstr "वर्डप्रेस के आपके संस्करण के साथ असंगत"
1235
+
1236
+ #~ msgid "Compatible with your version of WordPress"
1237
+ #~ msgstr "वर्डप्रेस के आपके संस्करण के साथ संगत"
1238
 
1239
+ #~ msgid "Facebook Like Box Help Section"
1240
+ #~ msgstr "फेसबुक की तरह बॉक्स सहायता अनुभाग"
 
1241
 
1242
+ #~ msgid "Facebook By Weblizar plugin comes with 2 functionality"
1243
+ #~ msgstr "वेबलिज़र प्लगइन द्वारा फेसबुक 2 कार्यक्षमता के साथ आता है"
1244
+
1245
+ #~ msgid "Facebook By Weblizar"
1246
+ #~ msgstr "वेबलिज़र द्वारा फेसबुक"
1247
+
1248
+ #~ msgid "Weblizar Responsive WordPress Theme"
1249
+ #~ msgstr "वेबलिजर उत्तरदायी वर्डप्रेस थीम"
1250
+
1251
+ #~ msgid "Get The Premium, And Create your website Beautifully"
1252
+ #~ msgstr "प्रीमियम प्राप्त करें, और अपनी वेबसाइट खूबसूरती से बनाएं"
1253
 
 
1254
  #, fuzzy
1255
+ #~| msgid "Get Premium Version"
1256
+ #~ msgid "Premium Themes"
1257
+ #~ msgstr "प्रीमियम संस्करण प्राप्त करें"
1258
 
 
1259
  #, fuzzy
1260
+ #~| msgid "Remove Plugin"
1261
+ #~ msgid "Premium Plugins"
1262
+ #~ msgstr "प्लगइन हटायें"
1263
 
1264
+ #~ msgid ""
1265
+ #~ "Note: More details to click on weblizar Products site link are below given view site "
1266
+ #~ "button"
1267
+ #~ msgstr "नोट: वेबलिज़र पर क्लिक करने के लिए अधिक विवरण उत्पाद साइट लिंक नीचे दी गई साइट देखें बटन है"
1268
 
 
1269
  #, fuzzy
1270
+ #~| msgid "View Staff"
1271
+ #~ msgid "View Site"
1272
+ #~ msgstr "कर्मचारी देखें"
1273
 
1274
  #~ msgid "Widget Color Scheme"
1275
  #~ msgstr "विजेट रंग योजना"
1345
  #~ msgid "Back"
1346
  #~ msgstr "पीछे जायें"
1347
 
 
 
 
1348
  #~ msgid "On"
1349
  #~ msgstr "पर"
1350
 
1890
  #~ msgid "Do you want to delete this Category?"
1891
  #~ msgstr "क्या आप यह श्रेणी हटाना चाहते हैं?"
1892
 
 
 
 
1893
  #~ msgid "Add New Service to this Category"
1894
  #~ msgstr "इस श्रेणी में नई सेवा जोंडे़"
1895
 
2359
  #~ msgid "Appointment History"
2360
  #~ msgstr "नियुक्ति बनाने वाला"
2361
 
 
 
 
2362
  #~ msgid "First"
2363
  #~ msgstr "प्रथम"
2364
 
lang/wl_facebook-pt_BR.mo CHANGED
Binary file
lang/wl_facebook-pt_BR.po CHANGED
@@ -1,113 +1,649 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Facebook By Weblizar\n"
4
- "POT-Creation-Date: 2014-09-05 16:47+0530\n"
5
- "PO-Revision-Date: 2016-05-27 06:18-0300\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: pt_BR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.6\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: facebook-by-weblizar-help.php:18
19
- msgid "Settings"
20
- msgstr "Configurações"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
- #: facebook-by-weblizar-help.php:23
23
- msgid "Need Help"
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgstr "Precisa de ajuda"
25
 
26
- #: facebook-by-weblizar-help.php:28
27
- msgid "Our Products"
 
 
 
 
 
 
28
  msgstr "Nossos produtos"
29
 
30
- #: facebook-by-weblizar.php:51
 
 
 
 
 
31
  msgid "Display Facebook Page Live Stream & Fans"
32
  msgstr "Mostrar página do Facebook ao vivo & fãs"
33
 
34
- #: facebook-by-weblizar.php:169 help-body.php:132
35
- msgid "Facebook Page URL"
36
- msgstr "URL página no Facebook"
37
 
38
- #: facebook-by-weblizar.php:173 help-body.php:138
39
- msgid "Widget Color Scheme"
40
- msgstr "Esquema de cores Widget"
41
 
42
- #: facebook-by-weblizar.php:180 help-body.php:147
43
- msgid "Show Widget Header"
44
- msgstr "Mostrar Widget Header"
 
45
 
46
- #: facebook-by-weblizar.php:187 help-body.php:156
47
  msgid "Show Faces"
48
  msgstr "Mostrar Faces"
49
 
50
- #: facebook-by-weblizar.php:194 help-body.php:165
51
  msgid "Show Live Stream"
52
  msgstr "Mostrar Live Stream"
53
 
54
- #: facebook-by-weblizar.php:201 help-body.php:174
55
  msgid "Widget Width"
56
  msgstr "widget Largura"
57
 
58
- #: facebook-by-weblizar.php:205 help-body.php:180
59
  msgid "Widget Height"
60
  msgstr "widget Altura"
61
 
62
- #: facebook-by-weblizar.php:209 help-body.php:186
63
  msgid "Facebook App ID"
64
  msgstr "Facebook App ID"
65
 
66
- #: facebook-by-weblizar.php:209 help-body.php:186
67
- msgid "Required"
68
- msgstr "Requeridos"
69
 
70
- #: facebook-by-weblizar.php:211
71
  msgid "Get Your Facebook App. Id"
72
  msgstr "Get Your Facebook App. Identidade"
73
 
74
- #: help-body.php:75
75
- msgid "Shortcode Settings"
76
- msgstr "Configurações Shortcode"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
 
78
- #: help-body.php:140
79
- msgid "Light Color Theme"
80
- msgstr "Color Light Tema"
81
 
82
- #: help-body.php:141
83
- msgid "Dark Color Theme"
84
- msgstr "Escuro Cor Tema"
85
 
86
- #: help-body.php:149 help-body.php:158 help-body.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  msgid "Yes"
88
  msgstr "sim"
89
 
90
- #: help-body.php:150 help-body.php:159 help-body.php:168
91
  msgid "No"
92
  msgstr "Não"
93
 
94
- #: help-body.php:188
95
  msgid "Get Your Own Facebook APP Id"
96
  msgstr "Obtenha seu próprio Facebook APP Id"
97
 
98
- #: help-body.php:198
 
 
 
 
99
  msgid "Settings successfully saved. Reloading page for generating preview below."
100
- msgstr "Configurações salvas com sucesso. Recarregar a página para gerar pré-visualização abaixo."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
 
102
- #: help-body.php:206
103
- msgid "Preview"
104
- msgstr "visualização"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
 
106
  #~ msgid "Select any time."
107
  #~ msgstr "कोइ समय चुनें"
108
 
109
- #~ msgid "Thank you for scheduling appointment with us.<br>A confirmation mail will be forward to you soon after admin approval."
110
- #~ msgstr "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द ही आपको भेजा जाएगा।"
 
 
 
 
111
 
112
  #~ msgid "Select any service."
113
  #~ msgstr "कोइ सेवा चुनें"
@@ -130,11 +666,12 @@ msgstr "visualização"
130
  #~ msgid "Schedule New Appointment"
131
  #~ msgstr "नई नियुक्ति बनायें"
132
 
133
- #~ msgid "Thank you for scheduling appointment with us. A confirmation mail will be sent to you soon after admin approval."
134
- #~ msgstr "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द ही आपको भेजा जाएगा।"
135
-
136
- #~ msgid "Click Here"
137
- #~ msgstr "यहाँ क्लिक करें"
 
138
 
139
  #~ msgid "to book another appointment."
140
  #~ msgstr "एक और नियुक्ति बुक करने के लिए."
@@ -163,9 +700,6 @@ msgstr "visualização"
163
  #~ msgid "Back"
164
  #~ msgstr "पीछे जायें"
165
 
166
- #~ msgid "Available Time For"
167
- #~ msgstr "समय का चयन इस सेवा के लिए"
168
-
169
  #~ msgid "On"
170
  #~ msgstr "पर"
171
 
@@ -241,8 +775,12 @@ msgstr "visualização"
241
  #~ msgid "Invalid Email"
242
  #~ msgstr "अमान्य ईमेल"
243
 
244
- #~ msgid "Thank you for scheduling appointment with us. A confirmation mail will be forward to you soon after admin approval."
245
- #~ msgstr "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द ही आपको भेजा जाएगा।"
 
 
 
 
246
 
247
  #~ msgid "Sorry! Today's all appointments has been booked."
248
  #~ msgstr "क्षमा करें! आज सभी नियुक्तियों को बुक किया जा चुका है।"
@@ -271,20 +809,27 @@ msgstr "visualização"
271
  #~ msgid "Help & Support"
272
  #~ msgstr "मदद और समर्थन"
273
 
274
- #~ msgid "Appointment Calendar Plugin has been successfully removed. It can be re-activated from the "
 
 
275
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन सफलतापूर्वक हटा दिया गया है। आप इसे फिर से सक्रिय कर सकते हैं"
276
 
277
- #~ msgid "Plugins Page"
278
- #~ msgstr "प्लगइन पृष्ठ"
279
-
280
  #~ msgid "Remove Appointment Calendar Plugin"
281
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन हटायें।"
282
 
283
- #~ msgid "This operation wiil delete all Appointment Calendar data & settings. If you continue, You will not be able to retrieve or restore your appointments entries."
284
- #~ msgstr "यह कार्यवाही नियुक्ति कैलेंडर डेटा की नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर देगी. यह पूर्ववत प्राप्त नहीं किया जा सकता है।"
 
 
 
 
285
 
286
- #~ msgid "Warning! Appointment Calendar data & settings, including appointment entries will be deleted. This cannot be undone. OK to delete, CANCEL to stop"
287
- #~ msgstr "चेतावनी! नियुक्ति कैलेंडर डेटा और नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर दिया जाएगा. यह पूर्ववत प्राप्त नहीं किया जा सकता है. इसको रोकने के लिए रद्द करें।"
 
 
 
 
288
 
289
  #~ msgid "REMOVE PLUGIN"
290
  #~ msgstr "प्लगइन हटायें"
@@ -355,9 +900,6 @@ msgstr "visualização"
355
  #~ msgid "Time"
356
  #~ msgstr "समय"
357
 
358
- #~ msgid "Status"
359
- #~ msgstr "अवस्था"
360
-
361
  #~ msgid "Action"
362
  #~ msgstr "कार्रवाई"
363
 
@@ -667,9 +1209,6 @@ msgstr "visualização"
667
  #~ msgid "300 Minutes (5 Hour)"
668
  #~ msgstr "300 मिनट (5 घंटे)"
669
 
670
- #~ msgid "Select slot time."
671
- #~ msgstr "स्लॉट समय चुनें"
672
-
673
  #~ msgid "Select start time."
674
  #~ msgstr "प्रारम्भ समय चुनें"
675
 
@@ -706,9 +1245,6 @@ msgstr "visualização"
706
  #~ msgid "Notification settings successfully updated."
707
  #~ msgstr "अधिसूचना सेटिंग सफलतापूर्वक नवीनतम हो चुकी है।"
708
 
709
- #~ msgid "Save"
710
- #~ msgstr "बनायें"
711
-
712
  #~ msgid "Rename Category"
713
  #~ msgstr "श्रेणी का नाम बदलें"
714
 
@@ -718,9 +1254,6 @@ msgstr "visualização"
718
  #~ msgid "Do you want to delete this Category?"
719
  #~ msgstr "क्या आप यह श्रेणी हटाना चाहते हैं?"
720
 
721
- #~ msgid "Do you want to delete this service?"
722
- #~ msgstr "क्या आप ये सेवा हटाना चाहते हैं?"
723
-
724
  #~ msgid "Add New Service to this Category"
725
  #~ msgstr "इस श्रेणी में नई सेवा जोंडे़"
726
 
@@ -862,9 +1395,6 @@ msgstr "visualização"
862
  #~ msgid "Appointment End Time"
863
  #~ msgstr "नियुक्ति का अंतिम समय"
864
 
865
- #~ msgid "Appointment Date"
866
- #~ msgstr "नियुक्ति की तारीख"
867
-
868
  #~ msgid "Appointment Description"
869
  #~ msgstr "नियुक्ति विवरण"
870
 
@@ -955,14 +1485,25 @@ msgstr "visualização"
955
  #~ msgid "Done"
956
  #~ msgstr "नियुक्त हो चुकी"
957
 
958
- #~ msgid "<strong>Appointment Calendar Lite</strong> is a simple but effective plugin which enables you to take appointments on your wordpress blog."
959
- #~ msgstr "<strong>नियुक्ति कैलेंडर एक सरल लेकिन प्रभावी प्लगइन जो आपको अपने वर्डप्रैस ब्लॉग पर नियुक्तियों को लेने के लिए सक्षम बनाता है। </strong>"
960
-
961
- #~ msgid "If you are a consultant/doctor/lawyer etc, you can harness the power of appointment calendar."
962
- #~ msgstr "यदि आप एक परामर्शदाता चिकित्सक, वकील आदि हैं, तो आप नियुक्ति कैलेंडर की शक्ति का दोहन कर सकते हैं।"
963
-
964
- #~ msgid "Simply unzip and upload appointment-calendar directory to /wp-content/plugins/ directory and activate the plugin."
965
- #~ msgstr "बस खोलें और नियुक्ति कैलेंडर प्रीमियम प्लगइन को /wp-content/plugins/ डयरेक्ट्री में अपलोड करें और प्लगइन को सक्रिय करें।"
 
 
 
 
 
 
 
 
 
 
 
966
 
967
  #~ msgid "To insert Appointment Calendar into any post or page, use the shortcode:"
968
  #~ msgstr "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर डालने के लिए इस शोर्टकोड का उपयोग करें:"
@@ -979,9 +1520,6 @@ msgstr "visualização"
979
  #~ msgid "WordPress Forum Support"
980
  #~ msgstr "वर्डप्रेस फोरम सहायता"
981
 
982
- #~ msgid "HERE"
983
- #~ msgstr "यहाँ जायें"
984
-
985
  #~ msgid "Documentation For Appointment Calendar Plugin"
986
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन के लिए प्रलेखन"
987
 
@@ -1018,9 +1556,6 @@ msgstr "visualização"
1018
  #~ msgid "Select Service:"
1019
  #~ msgstr "सेवा चयन करें:"
1020
 
1021
- #~ msgid "Loading Staff..."
1022
- #~ msgstr "कर्मचारी लोड हो रहें हैं ..."
1023
-
1024
  #~ msgid "Select Staff:"
1025
  #~ msgstr "कर्मचारी चयन करें:"
1026
 
@@ -1147,9 +1682,6 @@ msgstr "visualização"
1147
  #~ msgid "Sorry! No Time Available Today."
1148
  #~ msgstr "क्षमा करें! आज कोई समय उपलब्ध नहीं है।"
1149
 
1150
- #~ msgid "None"
1151
- #~ msgstr "नहीं"
1152
-
1153
  #~ msgid "Particular Dates"
1154
  #~ msgstr "विशेष तिथियाँ"
1155
 
@@ -1194,9 +1726,6 @@ msgstr "visualização"
1194
  #~ msgid "Appointment History"
1195
  #~ msgstr "नियुक्ति बनाने वाला"
1196
 
1197
- #~ msgid "Do you want to delete this client"
1198
- #~ msgstr "क्या आप यह ग्राहक हटाना चाहते हैं?"
1199
-
1200
  #~ msgid "First"
1201
  #~ msgstr "प्रथम"
1202
 
@@ -1326,9 +1855,6 @@ msgstr "visualização"
1326
  #~ msgid "New service added successfully."
1327
  #~ msgstr "टाईम आफ हटा दिया गया है।"
1328
 
1329
- #~ msgid "Service updated successfully."
1330
- #~ msgstr "सेवा सफलतापूर्वक नवीनतम कर दी गई है।"
1331
-
1332
  #, fuzzy
1333
  #~ msgid "Capacity cannot be blank."
1334
  #~ msgstr "शहर खाली नहीं हो सकता."
@@ -1359,9 +1885,6 @@ msgstr "visualização"
1359
  #~ msgid "Staff Experience(In year)."
1360
  #~ msgstr "कर्मचारी अनुभव (वर्ष में)"
1361
 
1362
- #~ msgid "Group Name"
1363
- #~ msgstr "समूह का नाम"
1364
-
1365
  #~ msgid "Select Staff Group"
1366
  #~ msgstr "कर्मचारी की समूह का चयन करें"
1367
 
@@ -1417,9 +1940,6 @@ msgstr "visualização"
1417
  #~ msgid "Invalid value."
1418
  #~ msgstr "अमान्य तथ्य"
1419
 
1420
- #~ msgid "Select any group."
1421
- #~ msgstr "कोई समूह चुनें"
1422
-
1423
  #~ msgid "Assign any service."
1424
  #~ msgstr "कोई भी सेवा जोंडे़"
1425
 
@@ -1468,9 +1988,6 @@ msgstr "visualização"
1468
  #~ msgid "Settings Panel"
1469
  #~ msgstr "सेटिंग्स पैनल"
1470
 
1471
- #~ msgid "Business Profile"
1472
- #~ msgstr "व्यापार रूपरेखा"
1473
-
1474
  #~ msgid "Business Hours"
1475
  #~ msgstr "व्यापार के घटें"
1476
 
@@ -1567,7 +2084,8 @@ msgstr "visualização"
1567
  #~ msgid "Appointment Calendar Premium"
1568
  #~ msgstr "नियुक्ति कैलेंडर प्रीमियम"
1569
 
1570
- #~ msgid "To insert Appointment Calendar Premium Button into any post or page, use the shortcode:"
 
1571
  #~ msgstr "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर प्रीमियम बटन डालने के लिए इस शोर्टकोड का उपयोग करें:"
1572
 
1573
  #, fuzzy
@@ -1656,9 +2174,6 @@ msgstr "visualização"
1656
  #~ msgid "Language"
1657
  #~ msgstr "भाषा"
1658
 
1659
- #~ msgid "Time Zone"
1660
- #~ msgstr "समय क्षेत्र"
1661
-
1662
  #~ msgid "Currency"
1663
  #~ msgstr "मुद्रा"
1664
 
@@ -1755,9 +2270,6 @@ msgstr "visualização"
1755
  #~ msgid "Business Name"
1756
  #~ msgstr "व्यापार नाम"
1757
 
1758
- #~ msgid "Owner"
1759
- #~ msgstr "मालिक"
1760
-
1761
  #~ msgid "Fax"
1762
  #~ msgstr "फैक्स"
1763
 
@@ -1773,9 +2285,6 @@ msgstr "visualização"
1773
  #~ msgid "Business Name."
1774
  #~ msgstr "व्यापार नाम"
1775
 
1776
- #~ msgid "Owner Name."
1777
- #~ msgstr "मालिक का नाम"
1778
-
1779
  #~ msgid "Address."
1780
  #~ msgstr "पता"
1781
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Facebook By Weblizar\n"
4
+ "POT-Creation-Date: 2018-08-11 11:47+0530\n"
5
+ "PO-Revision-Date: 2018-08-11 11:49+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: pt_BR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.8\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: function/facebook-by-weblizar-help.php:15
19
+ msgid "Feed & LikeBox For Facebook"
20
+ msgstr ""
21
+
22
+ #: function/facebook-by-weblizar-help.php:16
23
+ msgid ""
24
+ "Display a completely responsive & customizable facebook feed on your website which match "
25
+ "with the look and feel of your website"
26
+ msgstr ""
27
+
28
+ #: function/facebook-by-weblizar-help.php:22
29
+ msgid "Support Forum"
30
+ msgstr ""
31
+
32
+ #: function/facebook-by-weblizar-help.php:23
33
+ msgid "Plugin Change Log"
34
+ msgstr ""
35
+
36
+ #: function/facebook-by-weblizar-help.php:24
37
+ msgid "Upgrade To Pro"
38
+ msgstr ""
39
+
40
+ #: function/facebook-by-weblizar-help.php:26
41
+ msgid "Do you like this plugin"
42
+ msgstr ""
43
+
44
+ #: function/facebook-by-weblizar-help.php:26
45
+ msgid "Please take a few seconds to"
46
+ msgstr ""
47
+
48
+ #: function/facebook-by-weblizar-help.php:27
49
+ msgid "Rate it on WordPress.org"
50
+ msgstr ""
51
+
52
+ #: function/facebook-by-weblizar-help.php:46
53
+ msgid " Like Box"
54
+ msgstr ""
55
 
56
+ #: function/facebook-by-weblizar-help.php:47
57
+ #, fuzzy
58
+ #| msgid "Facebook Page URL"
59
+ msgid " Facebook Feed"
60
+ msgstr "URL página no Facebook"
61
+
62
+ #: function/facebook-by-weblizar-help.php:48
63
+ msgid " Feed Tab"
64
+ msgstr ""
65
+
66
+ #: function/facebook-by-weblizar-help.php:49
67
+ #, fuzzy
68
+ #| msgid "Need Help"
69
+ msgid " Need Help"
70
  msgstr "Precisa de ajuda"
71
 
72
+ #: function/facebook-by-weblizar-help.php:50
73
+ msgid " Upgrade to Pro"
74
+ msgstr ""
75
+
76
+ #: function/facebook-by-weblizar-help.php:51
77
+ #, fuzzy
78
+ #| msgid "Our Products"
79
+ msgid " Our Product"
80
  msgstr "Nossos produtos"
81
 
82
+ #: function/facebook-by-weblizar-short-code.php:62
83
+ #: function/facebook-by-weblizar-widgets.php:78
84
+ msgid "Facebook By Weblizar Powered By Weblizar"
85
+ msgstr ""
86
+
87
+ #: function/facebook-by-weblizar-widgets.php:20
88
  msgid "Display Facebook Page Live Stream & Fans"
89
  msgstr "Mostrar página do Facebook ao vivo & fãs"
90
 
91
+ #: function/facebook-by-weblizar-widgets.php:148
92
+ msgid "LikeBox"
93
+ msgstr ""
94
 
95
+ #: function/facebook-by-weblizar-widgets.php:152
96
+ msgid "Title:"
97
+ msgstr ""
98
 
99
+ #: function/facebook-by-weblizar-widgets.php:156 function/help-body.php:8
100
+ #: function/help-body.php:129
101
+ msgid "Facebook Page URL"
102
+ msgstr "URL página no Facebook"
103
 
104
+ #: function/facebook-by-weblizar-widgets.php:160 function/help-body.php:13
105
  msgid "Show Faces"
106
  msgstr "Mostrar Faces"
107
 
108
+ #: function/facebook-by-weblizar-widgets.php:167 function/help-body.php:21
109
  msgid "Show Live Stream"
110
  msgstr "Mostrar Live Stream"
111
 
112
+ #: function/facebook-by-weblizar-widgets.php:174 function/help-body.php:29
113
  msgid "Widget Width"
114
  msgstr "widget Largura"
115
 
116
+ #: function/facebook-by-weblizar-widgets.php:178 function/help-body.php:34
117
  msgid "Widget Height"
118
  msgstr "widget Altura"
119
 
120
+ #: function/facebook-by-weblizar-widgets.php:182 function/help-body.php:39
121
  msgid "Facebook App ID"
122
  msgstr "Facebook App ID"
123
 
124
+ #: function/facebook-by-weblizar-widgets.php:182 function/help-body.php:39
125
+ msgid "Optional"
126
+ msgstr ""
127
 
128
+ #: function/facebook-by-weblizar-widgets.php:184
129
  msgid "Get Your Facebook App. Id"
130
  msgstr "Get Your Facebook App. Identidade"
131
 
132
+ #: function/facebook-by-weblizar-widgets.php:184 function/help-body.php:41
133
+ msgid "HERE"
134
+ msgstr ""
135
+
136
+ #: function/facebook-by-weblizar-widgets.php:189
137
+ msgid "Rate Us on "
138
+ msgstr ""
139
+
140
+ #: function/facebook-feed-shortcode-data.php:124 function/facebook-feed-shortcode.php:113
141
+ #: function/facebook-feed-shortcode.php:170 function/facebook-feed-widget.php:143
142
+ msgid "...See more"
143
+ msgstr ""
144
+
145
+ #: function/facebook-feed-shortcode-data.php:140
146
+ msgid "Like"
147
+ msgstr ""
148
+
149
+ #: function/facebook-feed-shortcode-data.php:162 function/facebook-feed-shortcode.php:213
150
+ #: function/facebook-feed-widget.php:200
151
+ msgid "Comment on Facebook"
152
+ msgstr ""
153
+
154
+ #: function/facebook-feed-shortcode-data.php:197
155
+ msgid "reply"
156
+ msgstr ""
157
+
158
+ #: function/facebook-feed-shortcode.php:41 function/facebook-feed-widget.php:66
159
+ msgid "Likes"
160
+ msgstr ""
161
+
162
+ #: function/facebook-feed-shortcode.php:47
163
+ msgid "Share"
164
+ msgstr ""
165
+
166
+ #: function/facebook-feed-shortcode.php:207 function/facebook-feed-widget.php:194
167
+ msgid "people reacted to this"
168
+ msgstr ""
169
+
170
+ #: function/facebook-feed-shortcode.php:246 function/facebook-feed-widget.php:234
171
+ msgid "Posted:"
172
+ msgstr ""
173
+
174
+ #: function/facebook-feed-shortcode.php:249 function/facebook-feed-widget.php:237
175
+ msgid "Replies"
176
+ msgstr ""
177
+
178
+ #: function/facebook-feed-widget.php:310
179
+ #, fuzzy
180
+ #| msgid "Widget Width"
181
+ msgid "Widget Title"
182
+ msgstr "widget Largura"
183
+
184
+ #: function/facebook-feed.php:31
185
+ #, fuzzy
186
+ #| msgid "Settings"
187
+ msgid "Feed Settings"
188
+ msgstr "Configurações"
189
+
190
+ #: function/facebook-feed.php:37
191
+ msgid "Choose page, Group or Profile:"
192
+ msgstr ""
193
+
194
+ #: function/facebook-feed.php:40
195
+ msgid "Page"
196
+ msgstr ""
197
+
198
+ #: function/facebook-feed.php:41
199
+ msgid "Group"
200
+ msgstr ""
201
+
202
+ #: function/facebook-feed.php:42
203
+ msgid "Profile"
204
+ msgstr ""
205
+
206
+ #: function/facebook-feed.php:49
207
+ msgid "Page url:"
208
+ msgstr ""
209
+
210
+ #: function/facebook-feed.php:55
211
+ msgid "Group id:"
212
+ msgstr ""
213
+
214
+ #: function/facebook-feed.php:56
215
+ msgid "This Options Available in pro version"
216
+ msgstr ""
217
+
218
+ #: function/facebook-feed.php:59
219
+ msgid "Acess Token:"
220
+ msgstr ""
221
+
222
+ #: function/facebook-feed.php:60
223
+ msgid "This Option Available in pro version"
224
+ msgstr ""
225
+
226
+ #: function/facebook-feed.php:65
227
+ msgid "Content type:"
228
+ msgstr ""
229
+
230
+ #: function/facebook-feed.php:68
231
+ msgid "Timeline"
232
+ msgstr ""
233
+
234
+ #: function/facebook-feed.php:70
235
+ msgid "Specific"
236
+ msgstr ""
237
+
238
+ #: function/facebook-feed.php:74
239
+ msgid "Show posts by:"
240
+ msgstr ""
241
+
242
+ #: function/facebook-feed.php:77
243
+ msgid "Owner"
244
+ msgstr ""
245
+
246
+ #: function/facebook-feed.php:78
247
+ msgid "Owner and other"
248
+ msgstr ""
249
+
250
+ #: function/facebook-feed.php:80 function/facebook-feed.php:116 function/facebook-feed.php:127
251
+ #: function/facebook-feed.php:135 function/facebook-feed.php:165
252
+ msgid "Available in pro version."
253
+ msgstr ""
254
+
255
+ #: function/facebook-feed.php:84
256
+ msgid "Post type:"
257
+ msgstr ""
258
+
259
+ #: function/facebook-feed.php:87
260
+ msgid "Statuses"
261
+ msgstr ""
262
+
263
+ #: function/facebook-feed.php:90 function/facebook-feed.php:106
264
+ msgid "Photos"
265
+ msgstr ""
266
+
267
+ #: function/facebook-feed.php:93 function/facebook-feed.php:109
268
+ msgid "Videos"
269
+ msgstr ""
270
+
271
+ #: function/facebook-feed.php:96
272
+ msgid "Links"
273
+ msgstr ""
274
+
275
+ #: function/facebook-feed.php:99 function/facebook-feed.php:115
276
+ msgid "Events"
277
+ msgstr ""
278
+
279
+ #: function/facebook-feed.php:103
280
+ msgid "Use page s:"
281
+ msgstr ""
282
+
283
+ #: function/facebook-feed.php:112
284
+ msgid "Albums"
285
+ msgstr ""
286
+
287
+ #: function/facebook-feed.php:120
288
+ msgid "Layout"
289
+ msgstr ""
290
+
291
+ #: function/facebook-feed.php:124
292
+ msgid "5+ Column Layouts "
293
+ msgstr ""
294
+
295
+ #: function/facebook-feed.php:130
296
+ msgid "Hover Effect"
297
+ msgstr ""
298
+
299
+ #: function/facebook-feed.php:133
300
+ msgid "60+ Image Effects"
301
+ msgstr ""
302
+
303
+ #: function/facebook-feed.php:147
304
+ msgid "Hover color"
305
+ msgstr ""
306
+
307
+ #: function/facebook-feed.php:150
308
+ msgid "Choose feed hover color."
309
+ msgstr ""
310
+
311
+ #: function/facebook-feed.php:154
312
+ msgid "Number of posts:"
313
+ msgstr ""
314
+
315
+ #: function/facebook-feed.php:160
316
+ msgid "Loading effect:"
317
+ msgstr "."
318
+
319
+ #: function/facebook-feed.php:163
320
+ msgid "None"
321
+ msgstr ""
322
+
323
+ #: function/facebook-feed.php:169
324
+ #, fuzzy
325
+ #| msgid "Show Widget Header"
326
+ msgid "Show Header:"
327
+ msgstr "Mostrar Widget Header"
328
+
329
+ #: function/facebook-feed.php:172
330
+ msgid "Do you want to show cover image."
331
+ msgstr ""
332
+
333
+ #: function/facebook-feed.php:176
334
+ msgid "Select layout:"
335
+ msgstr ""
336
+
337
+ #: function/facebook-feed.php:181
338
+ msgid "Full-width"
339
+ msgstr ""
340
+
341
+ #: function/facebook-feed.php:182
342
+ msgid "Half-width"
343
+ msgstr ""
344
+
345
+ #: function/facebook-feed.php:183
346
+ msgid "Thumbnail"
347
+ msgstr ""
348
+
349
+ #: function/facebook-feed.php:186
350
+ msgid "Select time-line(Posts) layout."
351
+ msgstr ""
352
+
353
+ #: function/facebook-feed.php:190
354
+ msgid "Light Box Styles"
355
+ msgstr ""
356
+
357
+ #: function/facebook-feed.php:194
358
+ msgid "Custom Box"
359
+ msgstr ""
360
+
361
+ #: function/facebook-feed.php:195
362
+ msgid " 8+Light-Box Layouts available in Pro"
363
+ msgstr ""
364
+
365
+ #: function/facebook-feed.php:198
366
+ msgid "Select lightbox Styles."
367
+ msgstr ""
368
+
369
+ #: function/facebook-feed.php:215
370
+ msgid "Save"
371
+ msgstr ""
372
 
373
+ #: function/facebook-feed.php:221
374
+ msgid "Success!"
375
+ msgstr ""
376
 
377
+ #: function/facebook-feed.php:221
378
+ msgid "Data Save Successfully."
379
+ msgstr ""
380
 
381
+ #: function/facebook-feed.php:227
382
+ msgid "Plugin Shortcode"
383
+ msgstr ""
384
+
385
+ #: function/facebook-feed.php:228
386
+ msgid "copy this shortcode"
387
+ msgstr ""
388
+
389
+ #: function/facebook-feed.php:228
390
+ msgid "to any page, post or widget where you want to showcase your Facebook feed."
391
+ msgstr ""
392
+
393
+ #: function/help-body.php:4
394
+ #, fuzzy
395
+ #| msgid "Shortcode Settings"
396
+ msgid "Facebook Like Box Shortcode Settings"
397
+ msgstr "Configurações Shortcode"
398
+
399
+ #: function/help-body.php:15 function/help-body.php:23
400
  msgid "Yes"
401
  msgstr "sim"
402
 
403
+ #: function/help-body.php:16 function/help-body.php:24
404
  msgid "No"
405
  msgstr "Não"
406
 
407
+ #: function/help-body.php:41
408
  msgid "Get Your Own Facebook APP Id"
409
  msgstr "Obtenha seu próprio Facebook APP Id"
410
 
411
+ #: function/help-body.php:45
412
+ msgid "SAVE"
413
+ msgstr ""
414
+
415
+ #: function/help-body.php:50
416
  msgid "Settings successfully saved. Reloading page for generating preview below."
417
+ msgstr ""
418
+ "Configurações salvas com sucesso. Recarregar a página para gerar pré-visualização abaixo."
419
+
420
+ #: function/help-body.php:60
421
+ msgid "Facebook Likebox \" [FBW] \" Shortcode Preview"
422
+ msgstr ""
423
+
424
+ #: function/help-body.php:84 function/help-body.php:117
425
+ msgid "Facebook Feed & Like Box"
426
+ msgstr ""
427
+
428
+ #: function/help-body.php:89
429
+ #, fuzzy
430
+ #| msgid "Facebook Page URL"
431
+ msgid "Facebook Page Like Box"
432
+ msgstr "URL página no Facebook"
433
+
434
+ #: function/help-body.php:91
435
+ msgid "Facebook Like Box Widget"
436
+ msgstr ""
437
+
438
+ #: function/help-body.php:92
439
+ msgid "Facebook Like Box Short-code"
440
+ msgstr ""
441
+
442
+ #: function/help-body.php:94
443
+ msgid "You can use the widget to display your Facebook Like Box in any theme Widget Sections"
444
+ msgstr ""
445
+
446
+ #: function/help-body.php:95 function/help-body.php:114
447
+ msgid "Simple go to your"
448
+ msgstr ""
449
+
450
+ #: function/help-body.php:96 function/help-body.php:115
451
+ #, fuzzy
452
+ #| msgid "Widget Width"
453
+ msgid "Widgets"
454
+ msgstr "widget Largura"
455
+
456
+ #: function/help-body.php:96 function/help-body.php:116
457
+ msgid "section and activate available"
458
+ msgstr ""
459
+
460
+ #: function/help-body.php:97
461
+ #, fuzzy
462
+ #| msgid "Facebook Page URL"
463
+ msgid "Facebook Like Box"
464
+ msgstr "URL página no Facebook"
465
+
466
+ #: function/help-body.php:98 function/help-body.php:118
467
+ msgid "widget in any sidebar section, like in left sidebar, right sidebar or footer sidebar"
468
+ msgstr ""
469
+
470
+ #: function/help-body.php:101
471
+ msgid "Facebook Like Box Short-Code"
472
+ msgstr ""
473
+
474
+ #: function/help-body.php:103
475
+ msgid "Shortcode give ability to display Facebook Like Box in any Page / Post with content"
476
+ msgstr ""
477
+
478
+ #: function/help-body.php:104 function/help-body.php:123
479
+ msgid "To use shortcode, just copy "
480
+ msgstr ""
481
+
482
+ #: function/help-body.php:105 function/help-body.php:124
483
+ msgid "shortcode and paste into content editor of any Page / Post"
484
+ msgstr ""
485
+
486
+ #: function/help-body.php:109
487
+ #, fuzzy
488
+ #| msgid "Facebook Page URL"
489
+ msgid "Facebook Page Feed"
490
+ msgstr "URL página no Facebook"
491
+
492
+ #: function/help-body.php:111
493
+ #, fuzzy
494
+ #| msgid "Facebook Page URL"
495
+ msgid "Facebook Page Feed Widget"
496
+ msgstr "URL página no Facebook"
497
+
498
+ #: function/help-body.php:112 function/help-body.php:120
499
+ #, fuzzy
500
+ #| msgid "Facebook Page URL"
501
+ msgid "Facebook Page Feed Short-Code"
502
+ msgstr "URL página no Facebook"
503
+
504
+ #: function/help-body.php:113
505
+ msgid "You can use the widget to display your Facebook Page Feed in any theme Widget Sections"
506
+ msgstr ""
507
+
508
+ #: function/help-body.php:122
509
+ msgid "shortcode give ability to display Facebook Like Box in any Page / Post with content"
510
+ msgstr ""
511
+
512
+ #: function/help-body.php:128
513
+ #, fuzzy
514
+ #| msgid "Facebook Page URL"
515
+ msgid "What is Facebook Page URL"
516
+ msgstr "URL página no Facebook"
517
+
518
+ #: function/help-body.php:129
519
+ msgid ""
520
+ "is your Facebook page your where you promote your business. Here your customers, clients, "
521
+ "friends, guests can like, share, comment review your POST"
522
+ msgstr ""
523
+
524
+ #: function/help-body.php:131
525
+ #, fuzzy
526
+ #| msgid "Facebook App ID"
527
+ msgid "What is Facebook APP ID"
528
+ msgstr "Facebook App ID"
529
+
530
+ #: function/help-body.php:132
531
+ #, fuzzy
532
+ #| msgid "Facebook App ID"
533
+ msgid "Facebook Application ID"
534
+ msgstr "Facebook App ID"
535
+
536
+ #: function/help-body.php:133
537
+ msgid ""
538
+ " used to authenticate your Facebook Page data & settings. To get your own Facebook APP ID "
539
+ "please read our 4 Steps very simple and easy "
540
+ msgstr ""
541
+
542
+ #: function/help-body.php:134
543
+ msgid " Tutorial"
544
+ msgstr ""
545
+
546
+ #: function/help-body.php:146
547
+ #, fuzzy
548
+ #| msgid "Facebook Page URL"
549
+ msgid "Facebook Feed Pro"
550
+ msgstr "URL página no Facebook"
551
+
552
+ #: function/help-body.php:150
553
+ msgid "Unlimited Profile, Page & Group Feeds"
554
+ msgstr ""
555
+
556
+ #: function/help-body.php:151
557
+ msgid "Unlimited Feeds Per Page/Post"
558
+ msgstr ""
559
+
560
+ #: function/help-body.php:152
561
+ msgid "Light-Box Layouts 9+"
562
+ msgstr ""
563
+
564
+ #: function/help-body.php:153
565
+ msgid "Tons of Feed Short-Code"
566
+ msgstr ""
567
+
568
+ #: function/help-body.php:154
569
+ msgid "Specific Content Facebook Feeds"
570
+ msgstr ""
571
+
572
+ #: function/help-body.php:155
573
+ msgid "Many Loading & Hover CSS Effect"
574
+ msgstr ""
575
+
576
+ #: function/help-body.php:156
577
+ msgid "Auto-Update Feeds"
578
+ msgstr ""
579
+
580
+ #: function/help-body.php:159
581
+ msgid "Top Level & Stream Type Comment Display"
582
+ msgstr ""
583
+
584
+ #: function/help-body.php:160
585
+ msgid "Sharing On Social Media"
586
+ msgstr ""
587
+
588
+ #: function/help-body.php:161
589
+ #, fuzzy
590
+ #| msgid "Required"
591
+ msgid "No Code Require"
592
+ msgstr "Requeridos"
593
+
594
+ #: function/help-body.php:162
595
+ msgid "Feed Widgets"
596
+ msgstr ""
597
+
598
+ #: function/help-body.php:163
599
+ msgid "Like & Share Button For Each Feed in Like-box"
600
+ msgstr ""
601
+
602
+ #: function/help-body.php:164
603
+ msgid "Fast & Friendly Support"
604
+ msgstr ""
605
+
606
+ #: function/help-body.php:165
607
+ msgid "Fully Responsive And Optimized"
608
+ msgstr ""
609
 
610
+ #: function/help-body.php:170
611
+ msgid "Try Live Demo"
612
+ msgstr ""
613
+
614
+ #: function/help-body.php:171 function/help-body.php:175
615
+ msgid "Click Here"
616
+ msgstr ""
617
+
618
+ #: function/help-body.php:174
619
+ msgid "Try Before Buy Using Admin Demo"
620
+ msgstr ""
621
+
622
+ #: function/help-body.php:179
623
+ msgid "Buy Now ($19)"
624
+ msgstr ""
625
+
626
+ #~ msgid "Widget Color Scheme"
627
+ #~ msgstr "Esquema de cores Widget"
628
+
629
+ #~ msgid "Light Color Theme"
630
+ #~ msgstr "Color Light Tema"
631
+
632
+ #~ msgid "Dark Color Theme"
633
+ #~ msgstr "Escuro Cor Tema"
634
+
635
+ #~ msgid "Preview"
636
+ #~ msgstr "visualização"
637
 
638
  #~ msgid "Select any time."
639
  #~ msgstr "कोइ समय चुनें"
640
 
641
+ #~ msgid ""
642
+ #~ "Thank you for scheduling appointment with us.<br>A confirmation mail will be forward to "
643
+ #~ "you soon after admin approval."
644
+ #~ msgstr ""
645
+ #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द "
646
+ #~ "ही आपको भेजा जाएगा।"
647
 
648
  #~ msgid "Select any service."
649
  #~ msgstr "कोइ सेवा चुनें"
666
  #~ msgid "Schedule New Appointment"
667
  #~ msgstr "नई नियुक्ति बनायें"
668
 
669
+ #~ msgid ""
670
+ #~ "Thank you for scheduling appointment with us. A confirmation mail will be sent to you "
671
+ #~ "soon after admin approval."
672
+ #~ msgstr ""
673
+ #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द "
674
+ #~ "ही आपको भेजा जाएगा।"
675
 
676
  #~ msgid "to book another appointment."
677
  #~ msgstr "एक और नियुक्ति बुक करने के लिए."
700
  #~ msgid "Back"
701
  #~ msgstr "पीछे जायें"
702
 
 
 
 
703
  #~ msgid "On"
704
  #~ msgstr "पर"
705
 
775
  #~ msgid "Invalid Email"
776
  #~ msgstr "अमान्य ईमेल"
777
 
778
+ #~ msgid ""
779
+ #~ "Thank you for scheduling appointment with us. A confirmation mail will be forward to you "
780
+ #~ "soon after admin approval."
781
+ #~ msgstr ""
782
+ #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द "
783
+ #~ "ही आपको भेजा जाएगा।"
784
 
785
  #~ msgid "Sorry! Today's all appointments has been booked."
786
  #~ msgstr "क्षमा करें! आज सभी नियुक्तियों को बुक किया जा चुका है।"
809
  #~ msgid "Help & Support"
810
  #~ msgstr "मदद और समर्थन"
811
 
812
+ #~ msgid ""
813
+ #~ "Appointment Calendar Plugin has been successfully removed. It can be re-activated from "
814
+ #~ "the "
815
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन सफलतापूर्वक हटा दिया गया है। आप इसे फिर से सक्रिय कर सकते हैं"
816
 
 
 
 
817
  #~ msgid "Remove Appointment Calendar Plugin"
818
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन हटायें।"
819
 
820
+ #~ msgid ""
821
+ #~ "This operation wiil delete all Appointment Calendar data & settings. If you continue, "
822
+ #~ "You will not be able to retrieve or restore your appointments entries."
823
+ #~ msgstr ""
824
+ #~ "यह कार्यवाही नियुक्ति कैलेंडर डेटा की नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर देगी. यह पूर्ववत प्राप्त "
825
+ #~ "नहीं किया जा सकता है।"
826
 
827
+ #~ msgid ""
828
+ #~ "Warning! Appointment Calendar data & settings, including appointment entries will be "
829
+ #~ "deleted. This cannot be undone. OK to delete, CANCEL to stop"
830
+ #~ msgstr ""
831
+ #~ "चेतावनी! नियुक्ति कैलेंडर डेटा और नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर दिया जाएगा. यह पूर्ववत "
832
+ #~ "प्राप्त नहीं किया जा सकता है. इसको रोकने के लिए रद्द करें।"
833
 
834
  #~ msgid "REMOVE PLUGIN"
835
  #~ msgstr "प्लगइन हटायें"
900
  #~ msgid "Time"
901
  #~ msgstr "समय"
902
 
 
 
 
903
  #~ msgid "Action"
904
  #~ msgstr "कार्रवाई"
905
 
1209
  #~ msgid "300 Minutes (5 Hour)"
1210
  #~ msgstr "300 मिनट (5 घंटे)"
1211
 
 
 
 
1212
  #~ msgid "Select start time."
1213
  #~ msgstr "प्रारम्भ समय चुनें"
1214
 
1245
  #~ msgid "Notification settings successfully updated."
1246
  #~ msgstr "अधिसूचना सेटिंग सफलतापूर्वक नवीनतम हो चुकी है।"
1247
 
 
 
 
1248
  #~ msgid "Rename Category"
1249
  #~ msgstr "श्रेणी का नाम बदलें"
1250
 
1254
  #~ msgid "Do you want to delete this Category?"
1255
  #~ msgstr "क्या आप यह श्रेणी हटाना चाहते हैं?"
1256
 
 
 
 
1257
  #~ msgid "Add New Service to this Category"
1258
  #~ msgstr "इस श्रेणी में नई सेवा जोंडे़"
1259
 
1395
  #~ msgid "Appointment End Time"
1396
  #~ msgstr "नियुक्ति का अंतिम समय"
1397
 
 
 
 
1398
  #~ msgid "Appointment Description"
1399
  #~ msgstr "नियुक्ति विवरण"
1400
 
1485
  #~ msgid "Done"
1486
  #~ msgstr "नियुक्त हो चुकी"
1487
 
1488
+ #~ msgid ""
1489
+ #~ "<strong>Appointment Calendar Lite</strong> is a simple but effective plugin which "
1490
+ #~ "enables you to take appointments on your wordpress blog."
1491
+ #~ msgstr ""
1492
+ #~ "<strong>नियुक्ति कैलेंडर एक सरल लेकिन प्रभावी प्लगइन जो आपको अपने वर्डप्रैस ब्लॉग पर नियुक्तियों को लेने के "
1493
+ #~ "लिए सक्षम बनाता है। </strong>"
1494
+
1495
+ #~ msgid ""
1496
+ #~ "If you are a consultant/doctor/lawyer etc, you can harness the power of appointment "
1497
+ #~ "calendar."
1498
+ #~ msgstr ""
1499
+ #~ "यदि आप एक परामर्शदाता चिकित्सक, वकील आदि हैं, तो आप नियुक्ति कैलेंडर की शक्ति का दोहन कर सकते हैं।"
1500
+
1501
+ #~ msgid ""
1502
+ #~ "Simply unzip and upload appointment-calendar directory to /wp-content/plugins/ directory "
1503
+ #~ "and activate the plugin."
1504
+ #~ msgstr ""
1505
+ #~ "बस खोलें और नियुक्ति कैलेंडर प्रीमियम प्लगइन को /wp-content/plugins/ डयरेक्ट्री में अपलोड करें और प्लगइन "
1506
+ #~ "को सक्रिय करें।"
1507
 
1508
  #~ msgid "To insert Appointment Calendar into any post or page, use the shortcode:"
1509
  #~ msgstr "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर डालने के लिए इस शोर्टकोड का उपयोग करें:"
1520
  #~ msgid "WordPress Forum Support"
1521
  #~ msgstr "वर्डप्रेस फोरम सहायता"
1522
 
 
 
 
1523
  #~ msgid "Documentation For Appointment Calendar Plugin"
1524
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन के लिए प्रलेखन"
1525
 
1556
  #~ msgid "Select Service:"
1557
  #~ msgstr "सेवा चयन करें:"
1558
 
 
 
 
1559
  #~ msgid "Select Staff:"
1560
  #~ msgstr "कर्मचारी चयन करें:"
1561
 
1682
  #~ msgid "Sorry! No Time Available Today."
1683
  #~ msgstr "क्षमा करें! आज कोई समय उपलब्ध नहीं है।"
1684
 
 
 
 
1685
  #~ msgid "Particular Dates"
1686
  #~ msgstr "विशेष तिथियाँ"
1687
 
1726
  #~ msgid "Appointment History"
1727
  #~ msgstr "नियुक्ति बनाने वाला"
1728
 
 
 
 
1729
  #~ msgid "First"
1730
  #~ msgstr "प्रथम"
1731
 
1855
  #~ msgid "New service added successfully."
1856
  #~ msgstr "टाईम आफ हटा दिया गया है।"
1857
 
 
 
 
1858
  #, fuzzy
1859
  #~ msgid "Capacity cannot be blank."
1860
  #~ msgstr "शहर खाली नहीं हो सकता."
1885
  #~ msgid "Staff Experience(In year)."
1886
  #~ msgstr "कर्मचारी अनुभव (वर्ष में)"
1887
 
 
 
 
1888
  #~ msgid "Select Staff Group"
1889
  #~ msgstr "कर्मचारी की समूह का चयन करें"
1890
 
1940
  #~ msgid "Invalid value."
1941
  #~ msgstr "अमान्य तथ्य"
1942
 
 
 
 
1943
  #~ msgid "Assign any service."
1944
  #~ msgstr "कोई भी सेवा जोंडे़"
1945
 
1988
  #~ msgid "Settings Panel"
1989
  #~ msgstr "सेटिंग्स पैनल"
1990
 
 
 
 
1991
  #~ msgid "Business Hours"
1992
  #~ msgstr "व्यापार के घटें"
1993
 
2084
  #~ msgid "Appointment Calendar Premium"
2085
  #~ msgstr "नियुक्ति कैलेंडर प्रीमियम"
2086
 
2087
+ #~ msgid ""
2088
+ #~ "To insert Appointment Calendar Premium Button into any post or page, use the shortcode:"
2089
  #~ msgstr "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर प्रीमियम बटन डालने के लिए इस शोर्टकोड का उपयोग करें:"
2090
 
2091
  #, fuzzy
2174
  #~ msgid "Language"
2175
  #~ msgstr "भाषा"
2176
 
 
 
 
2177
  #~ msgid "Currency"
2178
  #~ msgstr "मुद्रा"
2179
 
2270
  #~ msgid "Business Name"
2271
  #~ msgstr "व्यापार नाम"
2272
 
 
 
 
2273
  #~ msgid "Fax"
2274
  #~ msgstr "फैक्स"
2275
 
2285
  #~ msgid "Business Name."
2286
  #~ msgstr "व्यापार नाम"
2287
 
 
 
 
2288
  #~ msgid "Address."
2289
  #~ msgstr "पता"
2290
 
lang/wl_facebook-sr_RS.mo CHANGED
Binary file
lang/wl_facebook-sr_RS.po CHANGED
@@ -1,120 +1,649 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Facebook By Weblizar\n"
4
- "POT-Creation-Date: 2014-09-05 16:47+0530\n"
5
- "PO-Revision-Date: 2014-09-16 14:41+0100\n"
6
  "Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
7
  "Language-Team: \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.5.7\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: facebook-by-weblizar-help.php:18
19
- msgid "Settings"
20
- msgstr "Podešavanja"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
- #: facebook-by-weblizar-help.php:23
23
- msgid "Need Help"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgstr "Treba vam pomoć?"
25
 
26
- #: facebook-by-weblizar-help.php:28
27
- msgid "Our Products"
 
 
 
 
 
 
28
  msgstr "Naši proizvodi"
29
 
30
- #: facebook-by-weblizar.php:51
 
 
 
 
 
31
  msgid "Display Facebook Page Live Stream & Fans"
32
  msgstr "Prikaži stranicu Facebook Live Stream & Fans"
33
 
34
- #: facebook-by-weblizar.php:169 help-body.php:132
35
- msgid "Facebook Page URL"
36
- msgstr "URL Facebook stranice"
37
 
38
- #: facebook-by-weblizar.php:173 help-body.php:138
39
- msgid "Widget Color Scheme"
40
- msgstr "Shema boja widget-a"
41
 
42
- #: facebook-by-weblizar.php:180 help-body.php:147
43
- msgid "Show Widget Header"
44
- msgstr "Prikaži zaglavlje widget-a"
 
45
 
46
- #: facebook-by-weblizar.php:187 help-body.php:156
47
  msgid "Show Faces"
48
  msgstr "Prikaži lica"
49
 
50
- #: facebook-by-weblizar.php:194 help-body.php:165
51
  msgid "Show Live Stream"
52
  msgstr "Prikaži Live Stream"
53
 
54
- #: facebook-by-weblizar.php:201 help-body.php:174
55
  msgid "Widget Width"
56
  msgstr "Širina widget-a"
57
 
58
- #: facebook-by-weblizar.php:205 help-body.php:180
59
  msgid "Widget Height"
60
  msgstr "Visina widget-a"
61
 
62
- #: facebook-by-weblizar.php:209 help-body.php:186
63
  msgid "Facebook App ID"
64
  msgstr "ID Facebook aplikacije"
65
 
66
- #: facebook-by-weblizar.php:209 help-body.php:186
67
- msgid "Required"
68
- msgstr "Obavezan"
69
 
70
- #: facebook-by-weblizar.php:211
71
  msgid "Get Your Facebook App. Id"
72
  msgstr "Nađite ID svoje Facebook aplikacije"
73
 
74
- #: help-body.php:75
75
- msgid "Shortcode Settings"
76
- msgstr "Shortcode Podešavanja"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
 
78
- #: help-body.php:140
79
- msgid "Light Color Theme"
80
- msgstr "Tema Svetla boja "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
 
82
- #: help-body.php:141
83
- msgid "Dark Color Theme"
84
- msgstr "Tema Tamna boja"
 
 
85
 
86
- #: help-body.php:149 help-body.php:158 help-body.php:167
87
  msgid "Yes"
88
  msgstr "Da"
89
 
90
- #: help-body.php:150 help-body.php:159 help-body.php:168
91
  msgid "No"
92
  msgstr "Ne"
93
 
94
- #: help-body.php:188
95
  msgid "Get Your Own Facebook APP Id"
96
  msgstr "Uzmite svoj ID Facebook aplikacije"
97
 
98
- #: help-body.php:198
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  msgid ""
100
- "Settings successfully saved. Reloading page for generating preview below."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  msgstr ""
102
- "Podešavanje uspešno sačuvano. Ponovo učitavanje stranice za generisanje "
103
- "pregleda koji sledi."
104
 
105
- #: help-body.php:206
106
- msgid "Preview"
107
- msgstr "Pregled"
 
 
 
 
 
 
 
 
108
 
109
  #~ msgid "Select any time."
110
  #~ msgstr "कोइ समय चुनें"
111
 
112
  #~ msgid ""
113
- #~ "Thank you for scheduling appointment with us.<br>A confirmation mail will "
114
- #~ "be forward to you soon after admin approval."
115
  #~ msgstr ""
116
- #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक "
117
- #~ "अनुमोदन के बाद जल्द ही आपको भेजा जाएगा।"
118
 
119
  #~ msgid "Select any service."
120
  #~ msgstr "कोइ सेवा चुनें"
@@ -138,14 +667,11 @@ msgstr "Pregled"
138
  #~ msgstr "नई नियुक्ति बनायें"
139
 
140
  #~ msgid ""
141
- #~ "Thank you for scheduling appointment with us. A confirmation mail will be "
142
- #~ "sent to you soon after admin approval."
143
  #~ msgstr ""
144
- #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक "
145
- #~ "अनुमोदन के बाद जल्द ही आपको भेजा जाएगा।"
146
-
147
- #~ msgid "Click Here"
148
- #~ msgstr "यहाँ क्लिक करें"
149
 
150
  #~ msgid "to book another appointment."
151
  #~ msgstr "एक और नियुक्ति बुक करने के लिए."
@@ -174,9 +700,6 @@ msgstr "Pregled"
174
  #~ msgid "Back"
175
  #~ msgstr "पीछे जायें"
176
 
177
- #~ msgid "Available Time For"
178
- #~ msgstr "समय का चयन इस सेवा के लिए"
179
-
180
  #~ msgid "On"
181
  #~ msgstr "पर"
182
 
@@ -253,11 +776,11 @@ msgstr "Pregled"
253
  #~ msgstr "अमान्य ईमेल"
254
 
255
  #~ msgid ""
256
- #~ "Thank you for scheduling appointment with us. A confirmation mail will be "
257
- #~ "forward to you soon after admin approval."
258
  #~ msgstr ""
259
- #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक "
260
- #~ "अनुमोदन के बाद जल्द ही आपको भेजा जाएगा।"
261
 
262
  #~ msgid "Sorry! Today's all appointments has been booked."
263
  #~ msgstr "क्षमा करें! आज सभी नियुक्तियों को बुक किया जा चुका है।"
@@ -287,32 +810,26 @@ msgstr "Pregled"
287
  #~ msgstr "मदद और समर्थन"
288
 
289
  #~ msgid ""
290
- #~ "Appointment Calendar Plugin has been successfully removed. It can be re-"
291
- #~ "activated from the "
292
- #~ msgstr ""
293
- #~ "नियुक्ति कैलेंडर प्लगइन सफलतापूर्वक हटा दिया गया है। आप इसे फिर से सक्रिय कर सकते हैं"
294
-
295
- #~ msgid "Plugins Page"
296
- #~ msgstr "प्लगइन पृष्ठ"
297
 
298
  #~ msgid "Remove Appointment Calendar Plugin"
299
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन हटायें।"
300
 
301
  #~ msgid ""
302
- #~ "This operation wiil delete all Appointment Calendar data & settings. If "
303
- #~ "you continue, You will not be able to retrieve or restore your "
304
- #~ "appointments entries."
305
  #~ msgstr ""
306
- #~ "यह कार्यवाही नियुक्ति कैलेंडर डेटा की नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर देगी. "
307
- #~ "यह पूर्ववत प्राप्त नहीं किया जा सकता है।"
308
 
309
  #~ msgid ""
310
- #~ "Warning! Appointment Calendar data & settings, including appointment "
311
- #~ "entries will be deleted. This cannot be undone. OK to delete, CANCEL to "
312
- #~ "stop"
313
  #~ msgstr ""
314
- #~ "चेतावनी! नियुक्ति कैलेंडर डेटा और नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर दिया "
315
- #~ "जाएगा. यह पूर्ववत प्राप्त नहीं किया जा सकता है. इसको रोकने के लिए रद्द करें।"
316
 
317
  #~ msgid "REMOVE PLUGIN"
318
  #~ msgstr "प्लगइन हटायें"
@@ -338,9 +855,7 @@ msgstr "Pregled"
338
  #~ msgid "Phone cannot be blank."
339
  #~ msgstr "फोन खाली नहीं हो सकता"
340
 
341
- #~ msgid ""
342
- #~ "Thank you, appointment has been scheduled. Confirmation mail sent to the "
343
- #~ "client."
344
  #~ msgstr "धन्यवाद! आपकी नियुक्ति निर्धारित की जा चुकी है।"
345
 
346
  #~ msgid "Setect Date & Service"
@@ -385,9 +900,6 @@ msgstr "Pregled"
385
  #~ msgid "Time"
386
  #~ msgstr "समय"
387
 
388
- #~ msgid "Status"
389
- #~ msgstr "अवस्था"
390
-
391
  #~ msgid "Action"
392
  #~ msgstr "कार्रवाई"
393
 
@@ -697,9 +1209,6 @@ msgstr "Pregled"
697
  #~ msgid "300 Minutes (5 Hour)"
698
  #~ msgstr "300 मिनट (5 घंटे)"
699
 
700
- #~ msgid "Select slot time."
701
- #~ msgstr "स्लॉट समय चुनें"
702
-
703
  #~ msgid "Select start time."
704
  #~ msgstr "प्रारम्भ समय चुनें"
705
 
@@ -736,9 +1245,6 @@ msgstr "Pregled"
736
  #~ msgid "Notification settings successfully updated."
737
  #~ msgstr "अधिसूचना सेटिंग सफलतापूर्वक नवीनतम हो चुकी है।"
738
 
739
- #~ msgid "Save"
740
- #~ msgstr "बनायें"
741
-
742
  #~ msgid "Rename Category"
743
  #~ msgstr "श्रेणी का नाम बदलें"
744
 
@@ -748,9 +1254,6 @@ msgstr "Pregled"
748
  #~ msgid "Do you want to delete this Category?"
749
  #~ msgstr "क्या आप यह श्रेणी हटाना चाहते हैं?"
750
 
751
- #~ msgid "Do you want to delete this service?"
752
- #~ msgstr "क्या आप ये सेवा हटाना चाहते हैं?"
753
-
754
  #~ msgid "Add New Service to this Category"
755
  #~ msgstr "इस श्रेणी में नई सेवा जोंडे़"
756
 
@@ -892,9 +1395,6 @@ msgstr "Pregled"
892
  #~ msgid "Appointment End Time"
893
  #~ msgstr "नियुक्ति का अंतिम समय"
894
 
895
- #~ msgid "Appointment Date"
896
- #~ msgstr "नियुक्ति की तारीख"
897
-
898
  #~ msgid "Appointment Description"
899
  #~ msgstr "नियुक्ति विवरण"
900
 
@@ -986,36 +1486,32 @@ msgstr "Pregled"
986
  #~ msgstr "नियुक्त हो चुकी"
987
 
988
  #~ msgid ""
989
- #~ "<strong>Appointment Calendar Lite</strong> is a simple but effective "
990
- #~ "plugin which enables you to take appointments on your wordpress blog."
991
  #~ msgstr ""
992
- #~ "<strong>नियुक्ति कैलेंडर एक सरल लेकिन प्रभावी प्लगइन जो आपको अपने वर्डप्रैस ब्लॉग पर "
993
- #~ "नियुक्तियों को लेने के लिए सक्षम बनाता है। </strong>"
994
 
995
  #~ msgid ""
996
- #~ "If you are a consultant/doctor/lawyer etc, you can harness the power of "
997
- #~ "appointment calendar."
998
  #~ msgstr ""
999
- #~ "यदि आप एक परामर्शदाता चिकित्सक, वकील आदि हैं, तो आप नियुक्ति कैलेंडर की शक्ति का "
1000
- #~ "दोहन कर सकते हैं।"
1001
 
1002
  #~ msgid ""
1003
- #~ "Simply unzip and upload appointment-calendar directory to /wp-content/"
1004
- #~ "plugins/ directory and activate the plugin."
1005
  #~ msgstr ""
1006
- #~ "बस खोलें और नियुक्ति कैलेंडर प्रीमियम प्लगइन को /wp-content/plugins/ डयरेक्ट्री में "
1007
- #~ "अपलोड करें और प्लगइन को सक्रिय करें।"
1008
 
1009
- #~ msgid ""
1010
- #~ "To insert Appointment Calendar into any post or page, use the shortcode:"
1011
- #~ msgstr ""
1012
- #~ "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर डालने के लिए इस शोर्टकोड का उपयोग करें:"
1013
 
1014
  #~ msgid "Appointment Calendar shortcode for Mobile Devices:"
1015
  #~ msgstr "मोबाइल उपकरणों के लिए नियुक्ति कैलेंडर शोर्टकोड"
1016
 
1017
- #~ msgid ""
1018
- #~ "That's it, you can now start taking appointments on your wordpress site."
1019
  #~ msgstr "यह ठीक है, अब आप अपने वर्डप्रैस साइट पर नियुक्तियों लेने शुरू कर सकते हैं।"
1020
 
1021
  #~ msgid "<strong>WordPress Forum Support:</strong>"
@@ -1024,9 +1520,6 @@ msgstr "Pregled"
1024
  #~ msgid "WordPress Forum Support"
1025
  #~ msgstr "वर्डप्रेस फोरम सहायता"
1026
 
1027
- #~ msgid "HERE"
1028
- #~ msgstr "यहाँ जायें"
1029
-
1030
  #~ msgid "Documentation For Appointment Calendar Plugin"
1031
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन के लिए प्रलेखन"
1032
 
@@ -1063,9 +1556,6 @@ msgstr "Pregled"
1063
  #~ msgid "Select Service:"
1064
  #~ msgstr "सेवा चयन करें:"
1065
 
1066
- #~ msgid "Loading Staff..."
1067
- #~ msgstr "कर्मचारी लोड हो रहें हैं ..."
1068
-
1069
  #~ msgid "Select Staff:"
1070
  #~ msgstr "कर्मचारी चयन करें:"
1071
 
@@ -1192,9 +1682,6 @@ msgstr "Pregled"
1192
  #~ msgid "Sorry! No Time Available Today."
1193
  #~ msgstr "क्षमा करें! आज कोई समय उपलब्ध नहीं है।"
1194
 
1195
- #~ msgid "None"
1196
- #~ msgstr "नहीं"
1197
-
1198
  #~ msgid "Particular Dates"
1199
  #~ msgstr "विशेष तिथियाँ"
1200
 
@@ -1239,9 +1726,6 @@ msgstr "Pregled"
1239
  #~ msgid "Appointment History"
1240
  #~ msgstr "नियुक्ति बनाने वाला"
1241
 
1242
- #~ msgid "Do you want to delete this client"
1243
- #~ msgstr "क्या आप यह ग्राहक हटाना चाहते हैं?"
1244
-
1245
  #~ msgid "First"
1246
  #~ msgstr "प्रथम"
1247
 
@@ -1351,8 +1835,7 @@ msgstr "Pregled"
1351
  #~ msgstr "कोई नियुक्ति हटाने के लिये नहीं चुना गया।"
1352
 
1353
  #, fuzzy
1354
- #~ msgid ""
1355
- #~ "Service Duration<br>Enter Numeric Value In Multiple Of 5<br>Eg: 15, 30, 60"
1356
  #~ msgstr "अवधि 5 के गुणांक में हो, उदहरण: 5, 10, 15, 20, 25"
1357
 
1358
  #, fuzzy
@@ -1366,16 +1849,12 @@ msgstr "Pregled"
1366
  #~ msgstr "CTRL को दबाकर ज्यादा स्टाफ जोंडे़"
1367
 
1368
  #, fuzzy
1369
- #~ msgid ""
1370
- #~ "Assign Staff(s) To This Service<br>Use CTRL To Select Multiple Staffs"
1371
  #~ msgstr "CTRL को दबाकर ज्यादा स्टाफ को इस सेवा से जोंडे़"
1372
 
1373
  #~ msgid "New service added successfully."
1374
  #~ msgstr "टाईम आफ हटा दिया गया है।"
1375
 
1376
- #~ msgid "Service updated successfully."
1377
- #~ msgstr "सेवा सफलतापूर्वक नवीनतम कर दी गई है।"
1378
-
1379
  #, fuzzy
1380
  #~ msgid "Capacity cannot be blank."
1381
  #~ msgstr "शहर खाली नहीं हो सकता."
@@ -1406,9 +1885,6 @@ msgstr "Pregled"
1406
  #~ msgid "Staff Experience(In year)."
1407
  #~ msgstr "कर्मचारी अनुभव (वर्ष में)"
1408
 
1409
- #~ msgid "Group Name"
1410
- #~ msgstr "समूह का नाम"
1411
-
1412
  #~ msgid "Select Staff Group"
1413
  #~ msgstr "कर्मचारी की समूह का चयन करें"
1414
 
@@ -1433,9 +1909,7 @@ msgstr "Pregled"
1433
  #~ msgid "Use CTRL to Select Multiple Service(s)"
1434
  #~ msgstr "CTRL को दबाकर ज्यादा सेवांए जोंडे़"
1435
 
1436
- #~ msgid ""
1437
- #~ "Assign Staff(s) To This Service.&lt;br&gt;Use CTRL To Select Multiple "
1438
- #~ "Staffs"
1439
  #~ msgstr "CTRL को दबाकर ज्यादा स्टाफ को इस सेवा से जोंडे़"
1440
 
1441
  #~ msgid "View Staff"
@@ -1466,9 +1940,6 @@ msgstr "Pregled"
1466
  #~ msgid "Invalid value."
1467
  #~ msgstr "अमान्य तथ्य"
1468
 
1469
- #~ msgid "Select any group."
1470
- #~ msgstr "कोई समूह चुनें"
1471
-
1472
  #~ msgid "Assign any service."
1473
  #~ msgstr "कोई भी सेवा जोंडे़"
1474
 
@@ -1517,9 +1988,6 @@ msgstr "Pregled"
1517
  #~ msgid "Settings Panel"
1518
  #~ msgstr "सेटिंग्स पैनल"
1519
 
1520
- #~ msgid "Business Profile"
1521
- #~ msgstr "व्यापार रूपरेखा"
1522
-
1523
  #~ msgid "Business Hours"
1524
  #~ msgstr "व्यापार के घटें"
1525
 
@@ -1617,11 +2085,8 @@ msgstr "Pregled"
1617
  #~ msgstr "नियुक्ति कैलेंडर प्रीमियम"
1618
 
1619
  #~ msgid ""
1620
- #~ "To insert Appointment Calendar Premium Button into any post or page, use "
1621
- #~ "the shortcode:"
1622
- #~ msgstr ""
1623
- #~ "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर प्रीमियम बटन डालने के लिए इस शोर्टकोड का "
1624
- #~ "उपयोग करें:"
1625
 
1626
  #, fuzzy
1627
  #~ msgid "AppointZilla Documentation"
@@ -1709,9 +2174,6 @@ msgstr "Pregled"
1709
  #~ msgid "Language"
1710
  #~ msgstr "भाषा"
1711
 
1712
- #~ msgid "Time Zone"
1713
- #~ msgstr "समय क्षेत्र"
1714
-
1715
  #~ msgid "Currency"
1716
  #~ msgstr "मुद्रा"
1717
 
@@ -1808,9 +2270,6 @@ msgstr "Pregled"
1808
  #~ msgid "Business Name"
1809
  #~ msgstr "व्यापार नाम"
1810
 
1811
- #~ msgid "Owner"
1812
- #~ msgstr "मालिक"
1813
-
1814
  #~ msgid "Fax"
1815
  #~ msgstr "फैक्स"
1816
 
@@ -1826,9 +2285,6 @@ msgstr "Pregled"
1826
  #~ msgid "Business Name."
1827
  #~ msgstr "व्यापार नाम"
1828
 
1829
- #~ msgid "Owner Name."
1830
- #~ msgstr "मालिक का नाम"
1831
-
1832
  #~ msgid "Address."
1833
  #~ msgstr "पता"
1834
 
@@ -2013,11 +2469,8 @@ msgstr "Pregled"
2013
  #~ msgid "Notify Admin On New Appointment Message sucessfully updated."
2014
  #~ msgstr "नई नियुक्ति पर व्यवस्थापक के संदेश को सफलतापूर्वक नवीनतम बना दिया गया है।"
2015
 
2016
- #~ msgid ""
2017
- #~ "Notify Client On Approve/Cancel Appointment Message sucessfully updated."
2018
- #~ msgstr ""
2019
- #~ "नियुक्ति स्वीकार या रद्द करने पर ग्राहक के संदेश को सफलतापूर्वक नवीनतम बना दिया गया "
2020
- #~ "है।"
2021
 
2022
  #, fuzzy
2023
  #~ msgid "Payment setting successfully saved"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Facebook By Weblizar\n"
4
+ "POT-Creation-Date: 2018-08-11 11:45+0530\n"
5
+ "PO-Revision-Date: 2018-08-11 11:47+0530\n"
6
  "Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
7
  "Language-Team: \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 2.0.8\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: function/facebook-by-weblizar-help.php:15
19
+ msgid "Feed & LikeBox For Facebook"
20
+ msgstr ""
21
+
22
+ #: function/facebook-by-weblizar-help.php:16
23
+ msgid ""
24
+ "Display a completely responsive & customizable facebook feed on your website which match "
25
+ "with the look and feel of your website"
26
+ msgstr ""
27
+
28
+ #: function/facebook-by-weblizar-help.php:22
29
+ msgid "Support Forum"
30
+ msgstr ""
31
+
32
+ #: function/facebook-by-weblizar-help.php:23
33
+ msgid "Plugin Change Log"
34
+ msgstr ""
35
+
36
+ #: function/facebook-by-weblizar-help.php:24
37
+ msgid "Upgrade To Pro"
38
+ msgstr ""
39
+
40
+ #: function/facebook-by-weblizar-help.php:26
41
+ msgid "Do you like this plugin"
42
+ msgstr ""
43
+
44
+ #: function/facebook-by-weblizar-help.php:26
45
+ msgid "Please take a few seconds to"
46
+ msgstr ""
47
 
48
+ #: function/facebook-by-weblizar-help.php:27
49
+ msgid "Rate it on WordPress.org"
50
+ msgstr ""
51
+
52
+ #: function/facebook-by-weblizar-help.php:46
53
+ msgid " Like Box"
54
+ msgstr ""
55
+
56
+ #: function/facebook-by-weblizar-help.php:47
57
+ #, fuzzy
58
+ #| msgid "Facebook Page URL"
59
+ msgid " Facebook Feed"
60
+ msgstr "URL Facebook stranice"
61
+
62
+ #: function/facebook-by-weblizar-help.php:48
63
+ msgid " Feed Tab"
64
+ msgstr ""
65
+
66
+ #: function/facebook-by-weblizar-help.php:49
67
+ #, fuzzy
68
+ #| msgid "Need Help"
69
+ msgid " Need Help"
70
  msgstr "Treba vam pomoć?"
71
 
72
+ #: function/facebook-by-weblizar-help.php:50
73
+ msgid " Upgrade to Pro"
74
+ msgstr ""
75
+
76
+ #: function/facebook-by-weblizar-help.php:51
77
+ #, fuzzy
78
+ #| msgid "Our Products"
79
+ msgid " Our Product"
80
  msgstr "Naši proizvodi"
81
 
82
+ #: function/facebook-by-weblizar-short-code.php:62
83
+ #: function/facebook-by-weblizar-widgets.php:78
84
+ msgid "Facebook By Weblizar Powered By Weblizar"
85
+ msgstr ""
86
+
87
+ #: function/facebook-by-weblizar-widgets.php:20
88
  msgid "Display Facebook Page Live Stream & Fans"
89
  msgstr "Prikaži stranicu Facebook Live Stream & Fans"
90
 
91
+ #: function/facebook-by-weblizar-widgets.php:148
92
+ msgid "LikeBox"
93
+ msgstr ""
94
 
95
+ #: function/facebook-by-weblizar-widgets.php:152
96
+ msgid "Title:"
97
+ msgstr ""
98
 
99
+ #: function/facebook-by-weblizar-widgets.php:156 function/help-body.php:8
100
+ #: function/help-body.php:129
101
+ msgid "Facebook Page URL"
102
+ msgstr "URL Facebook stranice"
103
 
104
+ #: function/facebook-by-weblizar-widgets.php:160 function/help-body.php:13
105
  msgid "Show Faces"
106
  msgstr "Prikaži lica"
107
 
108
+ #: function/facebook-by-weblizar-widgets.php:167 function/help-body.php:21
109
  msgid "Show Live Stream"
110
  msgstr "Prikaži Live Stream"
111
 
112
+ #: function/facebook-by-weblizar-widgets.php:174 function/help-body.php:29
113
  msgid "Widget Width"
114
  msgstr "Širina widget-a"
115
 
116
+ #: function/facebook-by-weblizar-widgets.php:178 function/help-body.php:34
117
  msgid "Widget Height"
118
  msgstr "Visina widget-a"
119
 
120
+ #: function/facebook-by-weblizar-widgets.php:182 function/help-body.php:39
121
  msgid "Facebook App ID"
122
  msgstr "ID Facebook aplikacije"
123
 
124
+ #: function/facebook-by-weblizar-widgets.php:182 function/help-body.php:39
125
+ msgid "Optional"
126
+ msgstr ""
127
 
128
+ #: function/facebook-by-weblizar-widgets.php:184
129
  msgid "Get Your Facebook App. Id"
130
  msgstr "Nađite ID svoje Facebook aplikacije"
131
 
132
+ #: function/facebook-by-weblizar-widgets.php:184 function/help-body.php:41
133
+ msgid "HERE"
134
+ msgstr ""
135
+
136
+ #: function/facebook-by-weblizar-widgets.php:189
137
+ msgid "Rate Us on "
138
+ msgstr ""
139
+
140
+ #: function/facebook-feed-shortcode-data.php:124 function/facebook-feed-shortcode.php:113
141
+ #: function/facebook-feed-shortcode.php:170 function/facebook-feed-widget.php:143
142
+ msgid "...See more"
143
+ msgstr ""
144
+
145
+ #: function/facebook-feed-shortcode-data.php:140
146
+ msgid "Like"
147
+ msgstr ""
148
+
149
+ #: function/facebook-feed-shortcode-data.php:162 function/facebook-feed-shortcode.php:213
150
+ #: function/facebook-feed-widget.php:200
151
+ msgid "Comment on Facebook"
152
+ msgstr ""
153
+
154
+ #: function/facebook-feed-shortcode-data.php:197
155
+ msgid "reply"
156
+ msgstr ""
157
+
158
+ #: function/facebook-feed-shortcode.php:41 function/facebook-feed-widget.php:66
159
+ msgid "Likes"
160
+ msgstr ""
161
+
162
+ #: function/facebook-feed-shortcode.php:47
163
+ msgid "Share"
164
+ msgstr ""
165
+
166
+ #: function/facebook-feed-shortcode.php:207 function/facebook-feed-widget.php:194
167
+ msgid "people reacted to this"
168
+ msgstr ""
169
+
170
+ #: function/facebook-feed-shortcode.php:246 function/facebook-feed-widget.php:234
171
+ msgid "Posted:"
172
+ msgstr ""
173
+
174
+ #: function/facebook-feed-shortcode.php:249 function/facebook-feed-widget.php:237
175
+ msgid "Replies"
176
+ msgstr ""
177
+
178
+ #: function/facebook-feed-widget.php:310
179
+ #, fuzzy
180
+ #| msgid "Widget Width"
181
+ msgid "Widget Title"
182
+ msgstr "Širina widget-a"
183
+
184
+ #: function/facebook-feed.php:31
185
+ #, fuzzy
186
+ #| msgid "Settings"
187
+ msgid "Feed Settings"
188
+ msgstr "Podešavanja"
189
+
190
+ #: function/facebook-feed.php:37
191
+ msgid "Choose page, Group or Profile:"
192
+ msgstr ""
193
+
194
+ #: function/facebook-feed.php:40
195
+ msgid "Page"
196
+ msgstr ""
197
+
198
+ #: function/facebook-feed.php:41
199
+ msgid "Group"
200
+ msgstr ""
201
+
202
+ #: function/facebook-feed.php:42
203
+ msgid "Profile"
204
+ msgstr ""
205
+
206
+ #: function/facebook-feed.php:49
207
+ msgid "Page url:"
208
+ msgstr ""
209
+
210
+ #: function/facebook-feed.php:55
211
+ msgid "Group id:"
212
+ msgstr ""
213
+
214
+ #: function/facebook-feed.php:56
215
+ msgid "This Options Available in pro version"
216
+ msgstr ""
217
+
218
+ #: function/facebook-feed.php:59
219
+ msgid "Acess Token:"
220
+ msgstr ""
221
+
222
+ #: function/facebook-feed.php:60
223
+ msgid "This Option Available in pro version"
224
+ msgstr ""
225
+
226
+ #: function/facebook-feed.php:65
227
+ msgid "Content type:"
228
+ msgstr ""
229
+
230
+ #: function/facebook-feed.php:68
231
+ msgid "Timeline"
232
+ msgstr ""
233
+
234
+ #: function/facebook-feed.php:70
235
+ msgid "Specific"
236
+ msgstr ""
237
+
238
+ #: function/facebook-feed.php:74
239
+ msgid "Show posts by:"
240
+ msgstr ""
241
+
242
+ #: function/facebook-feed.php:77
243
+ msgid "Owner"
244
+ msgstr ""
245
+
246
+ #: function/facebook-feed.php:78
247
+ msgid "Owner and other"
248
+ msgstr ""
249
+
250
+ #: function/facebook-feed.php:80 function/facebook-feed.php:116 function/facebook-feed.php:127
251
+ #: function/facebook-feed.php:135 function/facebook-feed.php:165
252
+ msgid "Available in pro version."
253
+ msgstr ""
254
+
255
+ #: function/facebook-feed.php:84
256
+ msgid "Post type:"
257
+ msgstr ""
258
+
259
+ #: function/facebook-feed.php:87
260
+ msgid "Statuses"
261
+ msgstr ""
262
+
263
+ #: function/facebook-feed.php:90 function/facebook-feed.php:106
264
+ msgid "Photos"
265
+ msgstr ""
266
+
267
+ #: function/facebook-feed.php:93 function/facebook-feed.php:109
268
+ msgid "Videos"
269
+ msgstr ""
270
+
271
+ #: function/facebook-feed.php:96
272
+ msgid "Links"
273
+ msgstr ""
274
+
275
+ #: function/facebook-feed.php:99 function/facebook-feed.php:115
276
+ msgid "Events"
277
+ msgstr ""
278
+
279
+ #: function/facebook-feed.php:103
280
+ msgid "Use page s:"
281
+ msgstr ""
282
+
283
+ #: function/facebook-feed.php:112
284
+ msgid "Albums"
285
+ msgstr ""
286
+
287
+ #: function/facebook-feed.php:120
288
+ msgid "Layout"
289
+ msgstr ""
290
+
291
+ #: function/facebook-feed.php:124
292
+ msgid "5+ Column Layouts "
293
+ msgstr ""
294
+
295
+ #: function/facebook-feed.php:130
296
+ msgid "Hover Effect"
297
+ msgstr ""
298
+
299
+ #: function/facebook-feed.php:133
300
+ msgid "60+ Image Effects"
301
+ msgstr ""
302
+
303
+ #: function/facebook-feed.php:147
304
+ msgid "Hover color"
305
+ msgstr ""
306
+
307
+ #: function/facebook-feed.php:150
308
+ msgid "Choose feed hover color."
309
+ msgstr ""
310
+
311
+ #: function/facebook-feed.php:154
312
+ msgid "Number of posts:"
313
+ msgstr ""
314
+
315
+ #: function/facebook-feed.php:160
316
+ msgid "Loading effect:"
317
+ msgstr ""
318
+
319
+ #: function/facebook-feed.php:163
320
+ msgid "None"
321
+ msgstr ""
322
+
323
+ #: function/facebook-feed.php:169
324
+ #, fuzzy
325
+ #| msgid "Show Widget Header"
326
+ msgid "Show Header:"
327
+ msgstr "Prikaži zaglavlje widget-a"
328
+
329
+ #: function/facebook-feed.php:172
330
+ msgid "Do you want to show cover image."
331
+ msgstr ""
332
+
333
+ #: function/facebook-feed.php:176
334
+ msgid "Select layout:"
335
+ msgstr ""
336
+
337
+ #: function/facebook-feed.php:181
338
+ msgid "Full-width"
339
+ msgstr ""
340
+
341
+ #: function/facebook-feed.php:182
342
+ msgid "Half-width"
343
+ msgstr ""
344
+
345
+ #: function/facebook-feed.php:183
346
+ msgid "Thumbnail"
347
+ msgstr ""
348
+
349
+ #: function/facebook-feed.php:186
350
+ msgid "Select time-line(Posts) layout."
351
+ msgstr ""
352
+
353
+ #: function/facebook-feed.php:190
354
+ msgid "Light Box Styles"
355
+ msgstr ""
356
+
357
+ #: function/facebook-feed.php:194
358
+ msgid "Custom Box"
359
+ msgstr ""
360
+
361
+ #: function/facebook-feed.php:195
362
+ msgid " 8+Light-Box Layouts available in Pro"
363
+ msgstr ""
364
+
365
+ #: function/facebook-feed.php:198
366
+ msgid "Select lightbox Styles."
367
+ msgstr ""
368
 
369
+ #: function/facebook-feed.php:215
370
+ msgid "Save"
371
+ msgstr ""
372
+
373
+ #: function/facebook-feed.php:221
374
+ msgid "Success!"
375
+ msgstr ""
376
+
377
+ #: function/facebook-feed.php:221
378
+ msgid "Data Save Successfully."
379
+ msgstr ""
380
+
381
+ #: function/facebook-feed.php:227
382
+ msgid "Plugin Shortcode"
383
+ msgstr ""
384
+
385
+ #: function/facebook-feed.php:228
386
+ msgid "copy this shortcode"
387
+ msgstr ""
388
+
389
+ #: function/facebook-feed.php:228
390
+ msgid "to any page, post or widget where you want to showcase your Facebook feed."
391
+ msgstr ""
392
 
393
+ #: function/help-body.php:4
394
+ #, fuzzy
395
+ #| msgid "Shortcode Settings"
396
+ msgid "Facebook Like Box Shortcode Settings"
397
+ msgstr "Shortcode Podešavanja"
398
 
399
+ #: function/help-body.php:15 function/help-body.php:23
400
  msgid "Yes"
401
  msgstr "Da"
402
 
403
+ #: function/help-body.php:16 function/help-body.php:24
404
  msgid "No"
405
  msgstr "Ne"
406
 
407
+ #: function/help-body.php:41
408
  msgid "Get Your Own Facebook APP Id"
409
  msgstr "Uzmite svoj ID Facebook aplikacije"
410
 
411
+ #: function/help-body.php:45
412
+ msgid "SAVE"
413
+ msgstr ""
414
+
415
+ #: function/help-body.php:50
416
+ msgid "Settings successfully saved. Reloading page for generating preview below."
417
+ msgstr ""
418
+ "Podešavanje uspešno sačuvano. Ponovo učitavanje stranice za generisanje pregleda koji sledi."
419
+
420
+ #: function/help-body.php:60
421
+ msgid "Facebook Likebox \" [FBW] \" Shortcode Preview"
422
+ msgstr ""
423
+
424
+ #: function/help-body.php:84 function/help-body.php:117
425
+ msgid "Facebook Feed & Like Box"
426
+ msgstr ""
427
+
428
+ #: function/help-body.php:89
429
+ #, fuzzy
430
+ #| msgid "Facebook Page URL"
431
+ msgid "Facebook Page Like Box"
432
+ msgstr "URL Facebook stranice"
433
+
434
+ #: function/help-body.php:91
435
+ msgid "Facebook Like Box Widget"
436
+ msgstr ""
437
+
438
+ #: function/help-body.php:92
439
+ msgid "Facebook Like Box Short-code"
440
+ msgstr ""
441
+
442
+ #: function/help-body.php:94
443
+ msgid "You can use the widget to display your Facebook Like Box in any theme Widget Sections"
444
+ msgstr ""
445
+
446
+ #: function/help-body.php:95 function/help-body.php:114
447
+ msgid "Simple go to your"
448
+ msgstr ""
449
+
450
+ #: function/help-body.php:96 function/help-body.php:115
451
+ #, fuzzy
452
+ #| msgid "Widget Width"
453
+ msgid "Widgets"
454
+ msgstr "Širina widget-a"
455
+
456
+ #: function/help-body.php:96 function/help-body.php:116
457
+ msgid "section and activate available"
458
+ msgstr ""
459
+
460
+ #: function/help-body.php:97
461
+ #, fuzzy
462
+ #| msgid "Facebook Page URL"
463
+ msgid "Facebook Like Box"
464
+ msgstr "URL Facebook stranice"
465
+
466
+ #: function/help-body.php:98 function/help-body.php:118
467
+ msgid "widget in any sidebar section, like in left sidebar, right sidebar or footer sidebar"
468
+ msgstr ""
469
+
470
+ #: function/help-body.php:101
471
+ msgid "Facebook Like Box Short-Code"
472
+ msgstr ""
473
+
474
+ #: function/help-body.php:103
475
+ msgid "Shortcode give ability to display Facebook Like Box in any Page / Post with content"
476
+ msgstr ""
477
+
478
+ #: function/help-body.php:104 function/help-body.php:123
479
+ msgid "To use shortcode, just copy "
480
+ msgstr ""
481
+
482
+ #: function/help-body.php:105 function/help-body.php:124
483
+ msgid "shortcode and paste into content editor of any Page / Post"
484
+ msgstr ""
485
+
486
+ #: function/help-body.php:109
487
+ #, fuzzy
488
+ #| msgid "Facebook Page URL"
489
+ msgid "Facebook Page Feed"
490
+ msgstr "URL Facebook stranice"
491
+
492
+ #: function/help-body.php:111
493
+ #, fuzzy
494
+ #| msgid "Facebook Page URL"
495
+ msgid "Facebook Page Feed Widget"
496
+ msgstr "URL Facebook stranice"
497
+
498
+ #: function/help-body.php:112 function/help-body.php:120
499
+ #, fuzzy
500
+ #| msgid "Facebook Page URL"
501
+ msgid "Facebook Page Feed Short-Code"
502
+ msgstr "URL Facebook stranice"
503
+
504
+ #: function/help-body.php:113
505
+ msgid "You can use the widget to display your Facebook Page Feed in any theme Widget Sections"
506
+ msgstr ""
507
+
508
+ #: function/help-body.php:122
509
+ msgid "shortcode give ability to display Facebook Like Box in any Page / Post with content"
510
+ msgstr ""
511
+
512
+ #: function/help-body.php:128
513
+ #, fuzzy
514
+ #| msgid "Facebook Page URL"
515
+ msgid "What is Facebook Page URL"
516
+ msgstr "URL Facebook stranice"
517
+
518
+ #: function/help-body.php:129
519
  msgid ""
520
+ "is your Facebook page your where you promote your business. Here your customers, clients, "
521
+ "friends, guests can like, share, comment review your POST"
522
+ msgstr ""
523
+
524
+ #: function/help-body.php:131
525
+ #, fuzzy
526
+ #| msgid "Facebook App ID"
527
+ msgid "What is Facebook APP ID"
528
+ msgstr "ID Facebook aplikacije"
529
+
530
+ #: function/help-body.php:132
531
+ #, fuzzy
532
+ #| msgid "Facebook App ID"
533
+ msgid "Facebook Application ID"
534
+ msgstr "ID Facebook aplikacije"
535
+
536
+ #: function/help-body.php:133
537
+ msgid ""
538
+ " used to authenticate your Facebook Page data & settings. To get your own Facebook APP ID "
539
+ "please read our 4 Steps very simple and easy "
540
+ msgstr ""
541
+
542
+ #: function/help-body.php:134
543
+ msgid " Tutorial"
544
+ msgstr ""
545
+
546
+ #: function/help-body.php:146
547
+ #, fuzzy
548
+ #| msgid "Facebook Page URL"
549
+ msgid "Facebook Feed Pro"
550
+ msgstr "URL Facebook stranice"
551
+
552
+ #: function/help-body.php:150
553
+ msgid "Unlimited Profile, Page & Group Feeds"
554
+ msgstr ""
555
+
556
+ #: function/help-body.php:151
557
+ msgid "Unlimited Feeds Per Page/Post"
558
+ msgstr ""
559
+
560
+ #: function/help-body.php:152
561
+ msgid "Light-Box Layouts 9+"
562
+ msgstr ""
563
+
564
+ #: function/help-body.php:153
565
+ msgid "Tons of Feed Short-Code"
566
+ msgstr ""
567
+
568
+ #: function/help-body.php:154
569
+ msgid "Specific Content Facebook Feeds"
570
+ msgstr ""
571
+
572
+ #: function/help-body.php:155
573
+ msgid "Many Loading & Hover CSS Effect"
574
+ msgstr ""
575
+
576
+ #: function/help-body.php:156
577
+ msgid "Auto-Update Feeds"
578
+ msgstr ""
579
+
580
+ #: function/help-body.php:159
581
+ msgid "Top Level & Stream Type Comment Display"
582
+ msgstr ""
583
+
584
+ #: function/help-body.php:160
585
+ msgid "Sharing On Social Media"
586
+ msgstr ""
587
+
588
+ #: function/help-body.php:161
589
+ #, fuzzy
590
+ #| msgid "Required"
591
+ msgid "No Code Require"
592
+ msgstr "Obavezan"
593
+
594
+ #: function/help-body.php:162
595
+ msgid "Feed Widgets"
596
+ msgstr ""
597
+
598
+ #: function/help-body.php:163
599
+ msgid "Like & Share Button For Each Feed in Like-box"
600
+ msgstr ""
601
+
602
+ #: function/help-body.php:164
603
+ msgid "Fast & Friendly Support"
604
+ msgstr ""
605
+
606
+ #: function/help-body.php:165
607
+ msgid "Fully Responsive And Optimized"
608
+ msgstr ""
609
+
610
+ #: function/help-body.php:170
611
+ msgid "Try Live Demo"
612
+ msgstr ""
613
+
614
+ #: function/help-body.php:171 function/help-body.php:175
615
+ msgid "Click Here"
616
+ msgstr ""
617
+
618
+ #: function/help-body.php:174
619
+ msgid "Try Before Buy Using Admin Demo"
620
+ msgstr ""
621
+
622
+ #: function/help-body.php:179
623
+ msgid "Buy Now ($19)"
624
  msgstr ""
 
 
625
 
626
+ #~ msgid "Widget Color Scheme"
627
+ #~ msgstr "Shema boja widget-a"
628
+
629
+ #~ msgid "Light Color Theme"
630
+ #~ msgstr "Tema Svetla boja "
631
+
632
+ #~ msgid "Dark Color Theme"
633
+ #~ msgstr "Tema Tamna boja"
634
+
635
+ #~ msgid "Preview"
636
+ #~ msgstr "Pregled"
637
 
638
  #~ msgid "Select any time."
639
  #~ msgstr "कोइ समय चुनें"
640
 
641
  #~ msgid ""
642
+ #~ "Thank you for scheduling appointment with us.<br>A confirmation mail will be forward to "
643
+ #~ "you soon after admin approval."
644
  #~ msgstr ""
645
+ #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द "
646
+ #~ "ही आपको भेजा जाएगा।"
647
 
648
  #~ msgid "Select any service."
649
  #~ msgstr "कोइ सेवा चुनें"
667
  #~ msgstr "नई नियुक्ति बनायें"
668
 
669
  #~ msgid ""
670
+ #~ "Thank you for scheduling appointment with us. A confirmation mail will be sent to you "
671
+ #~ "soon after admin approval."
672
  #~ msgstr ""
673
+ #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द "
674
+ #~ "ही आपको भेजा जाएगा।"
 
 
 
675
 
676
  #~ msgid "to book another appointment."
677
  #~ msgstr "एक और नियुक्ति बुक करने के लिए."
700
  #~ msgid "Back"
701
  #~ msgstr "पीछे जायें"
702
 
 
 
 
703
  #~ msgid "On"
704
  #~ msgstr "पर"
705
 
776
  #~ msgstr "अमान्य ईमेल"
777
 
778
  #~ msgid ""
779
+ #~ "Thank you for scheduling appointment with us. A confirmation mail will be forward to you "
780
+ #~ "soon after admin approval."
781
  #~ msgstr ""
782
+ #~ "हमारे साथ नियुक्ति का समय निर्धारण करने के लिए धन्यवाद। एक संपुष्टि मेल व्यवस्थापक अनुमोदन के बाद जल्द "
783
+ #~ "ही आपको भेजा जाएगा।"
784
 
785
  #~ msgid "Sorry! Today's all appointments has been booked."
786
  #~ msgstr "क्षमा करें! आज सभी नियुक्तियों को बुक किया जा चुका है।"
810
  #~ msgstr "मदद और समर्थन"
811
 
812
  #~ msgid ""
813
+ #~ "Appointment Calendar Plugin has been successfully removed. It can be re-activated from "
814
+ #~ "the "
815
+ #~ msgstr "नियुक्ति कैलेंडर प्लगइन सफलतापूर्वक हटा दिया गया है। आप इसे फिर से सक्रिय कर सकते हैं"
 
 
 
 
816
 
817
  #~ msgid "Remove Appointment Calendar Plugin"
818
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन हटायें।"
819
 
820
  #~ msgid ""
821
+ #~ "This operation wiil delete all Appointment Calendar data & settings. If you continue, "
822
+ #~ "You will not be able to retrieve or restore your appointments entries."
 
823
  #~ msgstr ""
824
+ #~ "यह कार्यवाही नियुक्ति कैलेंडर डेटा की नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर देगी. यह पूर्ववत प्राप्त "
825
+ #~ "नहीं किया जा सकता है।"
826
 
827
  #~ msgid ""
828
+ #~ "Warning! Appointment Calendar data & settings, including appointment entries will be "
829
+ #~ "deleted. This cannot be undone. OK to delete, CANCEL to stop"
 
830
  #~ msgstr ""
831
+ #~ "चेतावनी! नियुक्ति कैलेंडर डेटा और नियुक्ति प्रविष्टियों सहित सेटिंग्स, नष्ट कर दिया जाएगा. यह पूर्ववत "
832
+ #~ "प्राप्त नहीं किया जा सकता है. इसको रोकने के लिए रद्द करें।"
833
 
834
  #~ msgid "REMOVE PLUGIN"
835
  #~ msgstr "प्लगइन हटायें"
855
  #~ msgid "Phone cannot be blank."
856
  #~ msgstr "फोन खाली नहीं हो सकता"
857
 
858
+ #~ msgid "Thank you, appointment has been scheduled. Confirmation mail sent to the client."
 
 
859
  #~ msgstr "धन्यवाद! आपकी नियुक्ति निर्धारित की जा चुकी है।"
860
 
861
  #~ msgid "Setect Date & Service"
900
  #~ msgid "Time"
901
  #~ msgstr "समय"
902
 
 
 
 
903
  #~ msgid "Action"
904
  #~ msgstr "कार्रवाई"
905
 
1209
  #~ msgid "300 Minutes (5 Hour)"
1210
  #~ msgstr "300 मिनट (5 घंटे)"
1211
 
 
 
 
1212
  #~ msgid "Select start time."
1213
  #~ msgstr "प्रारम्भ समय चुनें"
1214
 
1245
  #~ msgid "Notification settings successfully updated."
1246
  #~ msgstr "अधिसूचना सेटिंग सफलतापूर्वक नवीनतम हो चुकी है।"
1247
 
 
 
 
1248
  #~ msgid "Rename Category"
1249
  #~ msgstr "श्रेणी का नाम बदलें"
1250
 
1254
  #~ msgid "Do you want to delete this Category?"
1255
  #~ msgstr "क्या आप यह श्रेणी हटाना चाहते हैं?"
1256
 
 
 
 
1257
  #~ msgid "Add New Service to this Category"
1258
  #~ msgstr "इस श्रेणी में नई सेवा जोंडे़"
1259
 
1395
  #~ msgid "Appointment End Time"
1396
  #~ msgstr "नियुक्ति का अंतिम समय"
1397
 
 
 
 
1398
  #~ msgid "Appointment Description"
1399
  #~ msgstr "नियुक्ति विवरण"
1400
 
1486
  #~ msgstr "नियुक्त हो चुकी"
1487
 
1488
  #~ msgid ""
1489
+ #~ "<strong>Appointment Calendar Lite</strong> is a simple but effective plugin which "
1490
+ #~ "enables you to take appointments on your wordpress blog."
1491
  #~ msgstr ""
1492
+ #~ "<strong>नियुक्ति कैलेंडर एक सरल लेकिन प्रभावी प्लगइन जो आपको अपने वर्डप्रैस ब्लॉग पर नियुक्तियों को लेने के "
1493
+ #~ "लिए सक्षम बनाता है। </strong>"
1494
 
1495
  #~ msgid ""
1496
+ #~ "If you are a consultant/doctor/lawyer etc, you can harness the power of appointment "
1497
+ #~ "calendar."
1498
  #~ msgstr ""
1499
+ #~ "यदि आप एक परामर्शदाता चिकित्सक, वकील आदि हैं, तो आप नियुक्ति कैलेंडर की शक्ति का दोहन कर सकते हैं।"
 
1500
 
1501
  #~ msgid ""
1502
+ #~ "Simply unzip and upload appointment-calendar directory to /wp-content/plugins/ directory "
1503
+ #~ "and activate the plugin."
1504
  #~ msgstr ""
1505
+ #~ "बस खोलें और नियुक्ति कैलेंडर प्रीमियम प्लगइन को /wp-content/plugins/ डयरेक्ट्री में अपलोड करें और प्लगइन "
1506
+ #~ "को सक्रिय करें।"
1507
 
1508
+ #~ msgid "To insert Appointment Calendar into any post or page, use the shortcode:"
1509
+ #~ msgstr "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर डालने के लिए इस शोर्टकोड का उपयोग करें:"
 
 
1510
 
1511
  #~ msgid "Appointment Calendar shortcode for Mobile Devices:"
1512
  #~ msgstr "मोबाइल उपकरणों के लिए नियुक्ति कैलेंडर शोर्टकोड"
1513
 
1514
+ #~ msgid "That's it, you can now start taking appointments on your wordpress site."
 
1515
  #~ msgstr "यह ठीक है, अब आप अपने वर्डप्रैस साइट पर नियुक्तियों लेने शुरू कर सकते हैं।"
1516
 
1517
  #~ msgid "<strong>WordPress Forum Support:</strong>"
1520
  #~ msgid "WordPress Forum Support"
1521
  #~ msgstr "वर्डप्रेस फोरम सहायता"
1522
 
 
 
 
1523
  #~ msgid "Documentation For Appointment Calendar Plugin"
1524
  #~ msgstr "नियुक्ति कैलेंडर प्लगइन के लिए प्रलेखन"
1525
 
1556
  #~ msgid "Select Service:"
1557
  #~ msgstr "सेवा चयन करें:"
1558
 
 
 
 
1559
  #~ msgid "Select Staff:"
1560
  #~ msgstr "कर्मचारी चयन करें:"
1561
 
1682
  #~ msgid "Sorry! No Time Available Today."
1683
  #~ msgstr "क्षमा करें! आज कोई समय उपलब्ध नहीं है।"
1684
 
 
 
 
1685
  #~ msgid "Particular Dates"
1686
  #~ msgstr "विशेष तिथियाँ"
1687
 
1726
  #~ msgid "Appointment History"
1727
  #~ msgstr "नियुक्ति बनाने वाला"
1728
 
 
 
 
1729
  #~ msgid "First"
1730
  #~ msgstr "प्रथम"
1731
 
1835
  #~ msgstr "कोई नियुक्ति हटाने के लिये नहीं चुना गया।"
1836
 
1837
  #, fuzzy
1838
+ #~ msgid "Service Duration<br>Enter Numeric Value In Multiple Of 5<br>Eg: 15, 30, 60"
 
1839
  #~ msgstr "अवधि 5 के गुणांक में हो, उदहरण: 5, 10, 15, 20, 25"
1840
 
1841
  #, fuzzy
1849
  #~ msgstr "CTRL को दबाकर ज्यादा स्टाफ जोंडे़"
1850
 
1851
  #, fuzzy
1852
+ #~ msgid "Assign Staff(s) To This Service<br>Use CTRL To Select Multiple Staffs"
 
1853
  #~ msgstr "CTRL को दबाकर ज्यादा स्टाफ को इस सेवा से जोंडे़"
1854
 
1855
  #~ msgid "New service added successfully."
1856
  #~ msgstr "टाईम आफ हटा दिया गया है।"
1857
 
 
 
 
1858
  #, fuzzy
1859
  #~ msgid "Capacity cannot be blank."
1860
  #~ msgstr "शहर खाली नहीं हो सकता."
1885
  #~ msgid "Staff Experience(In year)."
1886
  #~ msgstr "कर्मचारी अनुभव (वर्ष में)"
1887
 
 
 
 
1888
  #~ msgid "Select Staff Group"
1889
  #~ msgstr "कर्मचारी की समूह का चयन करें"
1890
 
1909
  #~ msgid "Use CTRL to Select Multiple Service(s)"
1910
  #~ msgstr "CTRL को दबाकर ज्यादा सेवांए जोंडे़"
1911
 
1912
+ #~ msgid "Assign Staff(s) To This Service.&lt;br&gt;Use CTRL To Select Multiple Staffs"
 
 
1913
  #~ msgstr "CTRL को दबाकर ज्यादा स्टाफ को इस सेवा से जोंडे़"
1914
 
1915
  #~ msgid "View Staff"
1940
  #~ msgid "Invalid value."
1941
  #~ msgstr "अमान्य तथ्य"
1942
 
 
 
 
1943
  #~ msgid "Assign any service."
1944
  #~ msgstr "कोई भी सेवा जोंडे़"
1945
 
1988
  #~ msgid "Settings Panel"
1989
  #~ msgstr "सेटिंग्स पैनल"
1990
 
 
 
 
1991
  #~ msgid "Business Hours"
1992
  #~ msgstr "व्यापार के घटें"
1993
 
2085
  #~ msgstr "नियुक्ति कैलेंडर प्रीमियम"
2086
 
2087
  #~ msgid ""
2088
+ #~ "To insert Appointment Calendar Premium Button into any post or page, use the shortcode:"
2089
+ #~ msgstr "किसी भी पोस्ट या पृष्ठ में नियुक्ति कैलेंडर प्रीमियम बटन डालने के लिए इस शोर्टकोड का उपयोग करें:"
 
 
 
2090
 
2091
  #, fuzzy
2092
  #~ msgid "AppointZilla Documentation"
2174
  #~ msgid "Language"
2175
  #~ msgstr "भाषा"
2176
 
 
 
 
2177
  #~ msgid "Currency"
2178
  #~ msgstr "मुद्रा"
2179
 
2270
  #~ msgid "Business Name"
2271
  #~ msgstr "व्यापार नाम"
2272
 
 
 
 
2273
  #~ msgid "Fax"
2274
  #~ msgstr "फैक्स"
2275
 
2285
  #~ msgid "Business Name."
2286
  #~ msgstr "व्यापार नाम"
2287
 
 
 
 
2288
  #~ msgid "Address."
2289
  #~ msgstr "पता"
2290
 
2469
  #~ msgid "Notify Admin On New Appointment Message sucessfully updated."
2470
  #~ msgstr "नई नियुक्ति पर व्यवस्थापक के संदेश को सफलतापूर्वक नवीनतम बना दिया गया है।"
2471
 
2472
+ #~ msgid "Notify Client On Approve/Cancel Appointment Message sucessfully updated."
2473
+ #~ msgstr "नियुक्ति स्वीकार या रद्द करने पर ग्राहक के संदेश को सफलतापूर्वक नवीनतम बना दिया गया है।"
 
 
 
2474
 
2475
  #, fuzzy
2476
  #~ msgid "Payment setting successfully saved"
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Feed & LikeBox For Facebook ===
2
  Contributors: weblizar
3
- Donate link: http://www.weblizar.com/
4
  Tags: facebook, facebook feed, facebook like box, facebook posts, facebook page, Facebook posts, facebook widget, Facebook profile, Facebook group, facebook page feed, facebook page like box, feed, likebox
5
  Requires at least: 3.8
6
- Tested up to: 4.9.6
7
- Stable tag: 2.7.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -216,6 +216,11 @@ Go to admin dashboard => appearance => widgets => Here are available our two fac
216
 
217
  For more information, see [Weblizar](https://weblizar.com/) .
218
 
 
 
 
 
 
219
  = 2.7.3 = [30-06-2018]
220
  1. Add Our Product Page
221
 
1
  === Feed & LikeBox For Facebook ===
2
  Contributors: weblizar
3
+ Donate link: https://www.weblizar.com/
4
  Tags: facebook, facebook feed, facebook like box, facebook posts, facebook page, Facebook posts, facebook widget, Facebook profile, Facebook group, facebook page feed, facebook page like box, feed, likebox
5
  Requires at least: 3.8
6
+ Tested up to: 4.9.8
7
+ Stable tag: 2.7.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
216
 
217
  For more information, see [Weblizar](https://weblizar.com/) .
218
 
219
+ = 2.7.4 = [11-08-2018]
220
+ 1. Add Settings, Try Pro link on Plugin's page
221
+ 2. Add Setting to change language for Like button
222
+ 3. PO files Updated
223
+
224
  = 2.7.3 = [30-06-2018]
225
  1. Add Our Product Page
226