Ultimate FAQ - Version 1.5.33

Version Description

  • Updated the text domain of the plugin, to use the improved WordPress standard
Download this release

Release Info

Developer Rustaurius
Plugin Icon 128x128 Ultimate FAQ
Version 1.5.33
Comparing to
See all releases

Code changes from version 1.5.32 to 1.5.33

Functions/EWD_UFAQ_Add_Social_Media_Buttons.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
 
3
  function EWD_UFAQ_Add_Social_Media_Buttons($Social_Media, $Permalink, $Title) {
4
- $Text = __("Check out this helpful FAQ", "EWD_UFAQ");
5
 
6
  $URL_Encoded_Text = urlencode($Text);
7
  $URL_Encoded_Permalink = urlencode($Permalink);
1
  <?php
2
 
3
  function EWD_UFAQ_Add_Social_Media_Buttons($Social_Media, $Permalink, $Title) {
4
+ $Text = __("Check out this helpful FAQ", 'ultimate-faqs');
5
 
6
  $URL_Encoded_Text = urlencode($Text);
7
  $URL_Encoded_Permalink = urlencode($Permalink);
Functions/EWD_UFAQ_Add_Views_Column.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  // Add in a new column option for the UFAQ post type
3
  function EWD_UFAQ_Columns_Head($defaults) {
4
- $defaults['number_of_views'] = __('# of Views', 'EWD_UFAQ');
5
- $defaults['ufaq_categories'] = __('Categories', 'EWD_UFAQ');
6
- $defaults['ufaq_ID'] = __('Post ID', 'EWD_UFAQ');
7
 
8
  return $defaults;
9
  }
1
  <?php
2
  // Add in a new column option for the UFAQ post type
3
  function EWD_UFAQ_Columns_Head($defaults) {
4
+ $defaults['number_of_views'] = __('# of Views', 'ultimate-faqs');
5
+ $defaults['ufaq_categories'] = __('Categories', 'ultimate-faqs');
6
+ $defaults['ufaq_ID'] = __('Post ID', 'ultimate-faqs');
7
 
8
  return $defaults;
9
  }
Functions/EWD_UFAQ_Import.php CHANGED
@@ -110,7 +110,7 @@ function Add_EWD_UFAQs_From_Spreadsheet($Excel_File_Name){
110
  unset($Tag_IDs);
111
  }
112
 
113
- return __("FAQs added successfully.", 'EWD_UFAQ');
114
  }
115
 
116
  function EWD_UFAQ_Import_From_Spreadsheet() {
@@ -122,40 +122,40 @@ function EWD_UFAQ_Import_From_Spreadsheet() {
122
  {
123
 
124
  case '1':
125
- $error = __('The uploaded file exceeds the upload_max_filesize directive in php.ini', 'EWD_UFAQ');
126
  break;
127
  case '2':
128
- $error = __('The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form', 'EWD_UFAQ');
129
  break;
130
  case '3':
131
- $error = __('The uploaded file was only partially uploaded', 'EWD_UFAQ');
132
  break;
133
  case '4':
134
- $error = __('No file was uploaded.', 'EWD_UFAQ');
135
  break;
136
 
137
  case '6':
138
- $error = __('Missing a temporary folder', 'EWD_UFAQ');
139
  break;
140
  case '7':
141
- $error = __('Failed to write file to disk', 'EWD_UFAQ');
142
  break;
143
  case '8':
144
- $error = __('File upload stopped by extension', 'EWD_UFAQ');
145
  break;
146
  case '999':
147
  default:
148
- $error = __('No error code avaiable', 'EWD_UFAQ');
149
  }
150
  }
151
  /* Make sure that the file exists */
152
  elseif (empty($_FILES['FAQs_Spreadsheet']['tmp_name']) || $_FILES['FAQs_Spreadsheet']['tmp_name'] == 'none') {
153
- $error = __('No file was uploaded here..', 'EWD_UFAQ');
154
  }
155
  /* Move the file and store the URL to pass it onwards*/
156
  /* Check that it is a .xls or .xlsx file */
157
  if(!preg_match("/\.(xls.?)$/", $_FILES['FAQs_Spreadsheet']['name']) and !preg_match("/\.(csv.?)$/", $_FILES['FAQs_Spreadsheet']['name'])) {
158
- $error = __('File must be .csv, .xls or .xlsx', 'EWD_UFAQ');
159
  }
160
  else {
161
  $msg .= $_FILES['FAQs_Spreadsheet']['name'];
110
  unset($Tag_IDs);
111
  }
112
 
113
+ return __("FAQs added successfully.", 'ultimate-faqs');
114
  }
115
 
116
  function EWD_UFAQ_Import_From_Spreadsheet() {
122
  {
123
 
124
  case '1':
125
+ $error = __('The uploaded file exceeds the upload_max_filesize directive in php.ini', 'ultimate-faqs');
126
  break;
127
  case '2':
128
+ $error = __('The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form', 'ultimate-faqs');
129
  break;
130
  case '3':
131
+ $error = __('The uploaded file was only partially uploaded', 'ultimate-faqs');
132
  break;
133
  case '4':
134
+ $error = __('No file was uploaded.', 'ultimate-faqs');
135
  break;
136
 
137
  case '6':
138
+ $error = __('Missing a temporary folder', 'ultimate-faqs');
139
  break;
140
  case '7':
141
+ $error = __('Failed to write file to disk', 'ultimate-faqs');
142
  break;
143
  case '8':
144
+ $error = __('File upload stopped by extension', 'ultimate-faqs');
145
  break;
146
  case '999':
147
  default:
148
+ $error = __('No error code avaiable', 'ultimate-faqs');
149
  }
150
  }
151
  /* Make sure that the file exists */
152
  elseif (empty($_FILES['FAQs_Spreadsheet']['tmp_name']) || $_FILES['FAQs_Spreadsheet']['tmp_name'] == 'none') {
153
+ $error = __('No file was uploaded here..', 'ultimate-faqs');
154
  }
155
  /* Move the file and store the URL to pass it onwards*/
156
  /* Check that it is a .xls or .xlsx file */
157
  if(!preg_match("/\.(xls.?)$/", $_FILES['FAQs_Spreadsheet']['name']) and !preg_match("/\.(csv.?)$/", $_FILES['FAQs_Spreadsheet']['name'])) {
158
+ $error = __('File must be .csv, .xls or .xlsx', 'ultimate-faqs');
159
  }
160
  else {
161
  $msg .= $_FILES['FAQs_Spreadsheet']['name'];
Functions/EWD_UFAQ_Meta_Boxes.php CHANGED
@@ -4,7 +4,7 @@ add_filter("get_sample_permalink_html", "EWD_UFAQ_Add_FAQ_Shortcode", 10, 5);
4
  function EWD_UFAQ_Add_FAQ_Shortcode($HTML, $post_id, $title, $slug, $post) {
5
  if ($post->post_type == "ufaq") {
6
  $HTML .= "<div class='ewd-ufaq-shortcode-help'>";
7
- $HTML .= __("Use the following shortcode to add this FAQ to a page:", 'EWD_UFAQ') . "<br>";
8
  $HTML .= "[select-faq faq_id='" . $post_id . "']";
9
  $HTML .= "</div>";
10
  }
@@ -14,12 +14,12 @@ function EWD_UFAQ_Add_FAQ_Shortcode($HTML, $post_id, $title, $slug, $post) {
14
 
15
  add_action("ufaq-category_edit_form_fields", "EWD_UFAQ_Taxonomy_Page", 10, 2);
16
  function EWD_UFAQ_Taxonomy_Page($tag, $taxonomy) {
17
- echo __("FAQ shortcode for this category", 'EWD_UFAQ') . ":<br />[ultimate-faqs include_category='" . $tag->slug . "']";
18
  }
19
 
20
  add_action( 'add_meta_boxes', 'EWD_UFAQ_Add_Meta_Boxes' );
21
  function EWD_UFAQ_Add_Meta_Boxes () {
22
- add_meta_box("ufaq-meta", __("FAQ Details", 'EWD_UFAQ'), "EWD_UFAQ_Meta_Box", "ufaq", "normal", "high");
23
  }
24
 
25
  /**
@@ -204,7 +204,7 @@ function EWD_UFAQ_Save_Meta_Box_Data($post_id) {
204
  update_post_meta($post_id, "Custom_Field_" . $FAQ_Field_Item['FieldID'], $Value);
205
  }
206
  }
207
- elseif ($InArray == false) {$CustomFieldError = __(" One or more custom field values were incorrect.", 'EWD_UFAQ');}
208
  unset($Value);
209
  unset($InArray);
210
  unset($NoFile);
4
  function EWD_UFAQ_Add_FAQ_Shortcode($HTML, $post_id, $title, $slug, $post) {
5
  if ($post->post_type == "ufaq") {
6
  $HTML .= "<div class='ewd-ufaq-shortcode-help'>";
7
+ $HTML .= __("Use the following shortcode to add this FAQ to a page:", 'ultimate-faqs') . "<br>";
8
  $HTML .= "[select-faq faq_id='" . $post_id . "']";
9
  $HTML .= "</div>";
10
  }
14
 
15
  add_action("ufaq-category_edit_form_fields", "EWD_UFAQ_Taxonomy_Page", 10, 2);
16
  function EWD_UFAQ_Taxonomy_Page($tag, $taxonomy) {
17
+ echo __("FAQ shortcode for this category", 'ultimate-faqs') . ":<br />[ultimate-faqs include_category='" . $tag->slug . "']";
18
  }
19
 
20
  add_action( 'add_meta_boxes', 'EWD_UFAQ_Add_Meta_Boxes' );
21
  function EWD_UFAQ_Add_Meta_Boxes () {
22
+ add_meta_box("ufaq-meta", __("FAQ Details", 'ultimate-faqs'), "EWD_UFAQ_Meta_Box", "ufaq", "normal", "high");
23
  }
24
 
25
  /**
204
  update_post_meta($post_id, "Custom_Field_" . $FAQ_Field_Item['FieldID'], $Value);
205
  }
206
  }
207
+ elseif ($InArray == false) {$CustomFieldError = __(" One or more custom field values were incorrect.", 'ultimate-faqs');}
208
  unset($Value);
209
  unset($InArray);
210
  unset($NoFile);
Functions/EWD_UFAQ_Submit_Question.php CHANGED
@@ -13,7 +13,7 @@ function EWD_UFAQ_Submit_Question($success_message) {
13
  'post_status' => 'draft' //Can create an option for admin approval of reviews here
14
  );
15
  $post_id = wp_insert_post($post);
16
- if ($post_id == 0) {$user_message = __("FAQ was not created succesfully.", 'EWD_UFAQ'); return $user_message;}
17
 
18
  update_post_meta($post_id, "EWD_UFAQ_Post_Author", $Post_Author);
19
 
@@ -29,17 +29,17 @@ function EWD_UFAQ_Send_Admin_Notification_Email($post_id, $Post_Title, $Post_Bod
29
 
30
  $ReviewLink = site_url() . "/wp-admin/post.php?post=" . $post_id . "&action=edit";
31
 
32
- $Subject_Line = __("New Question Received", 'EWD_UFAQ');
33
 
34
- $Message_Body = __("Hello Admin,", 'EWD_UFAQ') . "<br/><br/>";
35
- $Message_Body .= __("You've received a new question titled", 'EWD_UFAQ') . " '" . $Post_Title . "'.<br/><br/>";
36
  if ($Post_Body != "") {
37
- $Message_Body .= __("The answer reads:<br>", 'EWD_UFAQ');
38
  $Message_Body .= $Post_Body . "<br><br><br>";
39
  }
40
- $Message_Body .= __("You can view the question in the admin area by going to the following link:<br>", 'EWD_UFAQ');
41
- $Message_Body .= "<a href='" . $ReviewLink . "' />" . __("See the review", 'EWD_UFAQ') . "</a><br/><br/>";
42
- $Message_Body .= __("Have a great day,", 'EWD_UFAQ') . "<br/><br/>";
43
  $Message_Body .= __("Ultimate FAQs Team");
44
 
45
  $headers = array('Content-Type: text/html; charset=UTF-8');
13
  'post_status' => 'draft' //Can create an option for admin approval of reviews here
14
  );
15
  $post_id = wp_insert_post($post);
16
+ if ($post_id == 0) {$user_message = __("FAQ was not created succesfully.", 'ultimate-faqs'); return $user_message;}
17
 
18
  update_post_meta($post_id, "EWD_UFAQ_Post_Author", $Post_Author);
19
 
29
 
30
  $ReviewLink = site_url() . "/wp-admin/post.php?post=" . $post_id . "&action=edit";
31
 
32
+ $Subject_Line = __("New Question Received", 'ultimate-faqs');
33
 
34
+ $Message_Body = __("Hello Admin,", 'ultimate-faqs') . "<br/><br/>";
35
+ $Message_Body .= __("You've received a new question titled", 'ultimate-faqs') . " '" . $Post_Title . "'.<br/><br/>";
36
  if ($Post_Body != "") {
37
+ $Message_Body .= __("The answer reads:<br>", 'ultimate-faqs');
38
  $Message_Body .= $Post_Body . "<br><br><br>";
39
  }
40
+ $Message_Body .= __("You can view the question in the admin area by going to the following link:<br>", 'ultimate-faqs');
41
+ $Message_Body .= "<a href='" . $ReviewLink . "' />" . __("See the review", 'ultimate-faqs') . "</a><br/><br/>";
42
+ $Message_Body .= __("Have a great day,", 'ultimate-faqs') . "<br/><br/>";
43
  $Message_Body .= __("Ultimate FAQs Team");
44
 
45
  $headers = array('Content-Type: text/html; charset=UTF-8');
Functions/EWD_UFAQ_Upgrade_Box.php CHANGED
@@ -4,9 +4,9 @@ function EWD_UFAQ_Upgrade_Box() {
4
  ?>
5
  <div id="side-sortables" class="metabox-holder ">
6
  <div id="upcp_pro" class="postbox " >
7
- <div class="handlediv" title="Click to toggle"></div><h3 class='hndle'><span><?php _e("Full Version", 'EWD_UFAQ') ?></span></h3>
8
  <div class="inside">
9
- <ul><li><a href="http://www.etoilewebdesign.com/plugins/ultimate-faq/"><?php _e("Upgrade to the full version ", "EWD_UFAQ"); ?></a><?php _e("to take advantage of all the available features of the Ultimate FAQs for Wordpress!", 'EWD_UFAQ'); ?></li></ul>
10
  <h3 class='hndle'><span><?php _e("What you get by upgrading:", 'EWD_URP') ?></span></h3>
11
  <ul>
12
  <li>Ability to add a unique FAQ tab to each WooCommerce product page.</li>
@@ -17,10 +17,10 @@ function EWD_UFAQ_Upgrade_Box() {
17
  <div class="full-version-form-div">
18
  <form action="edit.php?post_type=ufaq" method="post">
19
  <div class="form-field form-required">
20
- <label for="Key"><?php _e("Product Key", 'EWD_UFAQ') ?></label>
21
  <input name="Key" type="text" value="" size="40" />
22
  </div>
23
- <input type="submit" name="Upgrade_To_Full" value="<?php _e('Upgrade', 'EWD_UFAQ') ?>">
24
  </form>
25
  </div>
26
  </div>
@@ -34,9 +34,9 @@ function EWD_UFAQ_Upgrade_Notice() {
34
  ?>
35
  <div id="side-sortables" class="metabox-holder ">
36
  <div id="upcp_pro" class="postbox " >
37
- <div class="handlediv" title="Click to toggle"></div><h3 class='hndle'><span><?php _e("Upgrade Complete!", 'EWD_UFAQ') ?></span></h3>
38
  <div class="inside">
39
- <ul><li><?php _E("Thanks for upgrading!", 'EWD_UFAQ'); ?></li></ul>
40
  </div>
41
  </div>
42
  </div>
4
  ?>
5
  <div id="side-sortables" class="metabox-holder ">
6
  <div id="upcp_pro" class="postbox " >
7
+ <div class="handlediv" title="Click to toggle"></div><h3 class='hndle'><span><?php _e("Full Version", 'ultimate-faqs') ?></span></h3>
8
  <div class="inside">
9
+ <ul><li><a href="http://www.etoilewebdesign.com/plugins/ultimate-faq/"><?php _e("Upgrade to the full version ", 'ultimate-faqs'); ?></a><?php _e("to take advantage of all the available features of the Ultimate FAQs for Wordpress!", 'ultimate-faqs'); ?></li></ul>
10
  <h3 class='hndle'><span><?php _e("What you get by upgrading:", 'EWD_URP') ?></span></h3>
11
  <ul>
12
  <li>Ability to add a unique FAQ tab to each WooCommerce product page.</li>
17
  <div class="full-version-form-div">
18
  <form action="edit.php?post_type=ufaq" method="post">
19
  <div class="form-field form-required">
20
+ <label for="Key"><?php _e("Product Key", 'ultimate-faqs') ?></label>
21
  <input name="Key" type="text" value="" size="40" />
22
  </div>
23
+ <input type="submit" name="Upgrade_To_Full" value="<?php _e('Upgrade', 'ultimate-faqs') ?>">
24
  </form>
25
  </div>
26
  </div>
34
  ?>
35
  <div id="side-sortables" class="metabox-holder ">
36
  <div id="upcp_pro" class="postbox " >
37
+ <div class="handlediv" title="Click to toggle"></div><h3 class='hndle'><span><?php _e("Upgrade Complete!", 'ultimate-faqs') ?></span></h3>
38
  <div class="inside">
39
+ <ul><li><?php _E("Thanks for upgrading!", 'ultimate-faqs'); ?></li></ul>
40
  </div>
41
  </div>
42
  </div>
Functions/EWD_UFAQ_Version_Update.php CHANGED
@@ -60,26 +60,26 @@ function EWD_UFAQ_Version_Update_Box() { /*
60
  <div id="side-sortables" class="metabox-holder ">
61
  <div id="EWD_UFAQ_pro" class="postbox " >
62
  <div class="handlediv" title="Click to toggle"></div>
63
- <h3 class='hndle'><span><?php _e("Thank You!", 'EWD_UFAQ') ?></span></h3>
64
  <div class="inside">
65
- <?php if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate FAQs plugin.", "EWD_UFAQ"); ?><br> <a href='https://www.youtube.com/channel/UCZPuaoetCJB1vZOmpnMxJNw'><?php _e("Subscribe to our YouTube channel ", "EWD_UFAQ"); ?></a> <?php _e("for tutorial videos on this and our other plugins!", "EWD_UFAQ");?> </li></ul>
66
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 1.4.1!", "EWD_UFAQ"); ?><br> <a href='https://wordpress.org/support/view/plugin-reviews/ultimate-faqs?filter=5'><?php _e("Please rate our plugin", "EWD_UFAQ"); ?></a> <?php _e("if you find Ultimate FAQs useful!", "EWD_UFAQ");?> </li></ul><?php } ?>
67
 
68
- <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
69
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 2.2.9!", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul><?php } */ ?>
70
 
71
- <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
72
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.0.16!", "EWD_UFAQ"); ?><br> <a href='http://wordpress.org/support/view/plugin-reviews/ultimate-product-catalogue'><?php _e("Please rate our plugin", "EWD_UFAQ"); ?></a> <?php _e("if you find the Ultimate Product Catalogue Plugin useful!", "EWD_UFAQ");?> </li></ul><?php } */ ?>
73
 
74
- <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
75
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.4.8!", "EWD_UFAQ"); ?><br> <a href='http://wordpress.org/plugins/order-tracking/'><?php _e("Try out order tracking plugin ", "EWD_UFAQ"); ?></a> <?php _e("if you ship orders and find the Ultimate Product Catalogue Plugin useful!", "EWD_UFAQ");?> </li></ul><?php } */ ?>
76
 
77
- <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
78
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 2.3.9!", "EWD_UFAQ"); ?><br> <a href='http://wordpress.org/support/topic/error-hunt'><?php _e("Please let us know about any small display/functionality errors. ", "EWD_UFAQ"); ?></a> <?php _e("We've noticed a couple, and would like to eliminate as many as possible.", "EWD_UFAQ");?> </li></ul><?php } */ ?>
79
 
80
- <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='https://www.youtube.com/channel/UCZPuaoetCJB1vZOmpnMxJNw'><?php _e("Check out our YouTube channel ", "EWD_UFAQ"); ?></a> <?php _e("for tutorial videos on this and our other plugins!", "EWD_UFAQ");?> </li></ul>
81
- <?php } elseif ($Full_Version == "Yes") { ?><ul><li><?php _e("Thanks for upgrading to version 3.5.0!", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
82
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.4!", "EWD_UFAQ"); ?><br> <?php _e("Love the plugin but don't need the premium version? Help us speed up product support and development by donating. Thanks for using the plugin!", "EWD_UFAQ");?>
83
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
84
  <input type="hidden" name="cmd" value="_s-xclick">
85
  <input type="hidden" name="hosted_button_id" value="AQLMJFJ62GEFJ">
60
  <div id="side-sortables" class="metabox-holder ">
61
  <div id="EWD_UFAQ_pro" class="postbox " >
62
  <div class="handlediv" title="Click to toggle"></div>
63
+ <h3 class='hndle'><span><?php _e("Thank You!", 'ultimate-faqs') ?></span></h3>
64
  <div class="inside">
65
+ <?php if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate FAQs plugin.", 'ultimate-faqs'); ?><br> <a href='https://www.youtube.com/channel/UCZPuaoetCJB1vZOmpnMxJNw'><?php _e("Subscribe to our YouTube channel ", 'ultimate-faqs'); ?></a> <?php _e("for tutorial videos on this and our other plugins!", 'ultimate-faqs');?> </li></ul>
66
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 1.4.1!", 'ultimate-faqs'); ?><br> <a href='https://wordpress.org/support/view/plugin-reviews/ultimate-faqs?filter=5'><?php _e("Please rate our plugin", 'ultimate-faqs'); ?></a> <?php _e("if you find Ultimate FAQs useful!", 'ultimate-faqs');?> </li></ul><?php } ?>
67
 
68
+ <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul>
69
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 2.2.9!", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul><?php } */ ?>
70
 
71
+ <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul>
72
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.0.16!", 'ultimate-faqs'); ?><br> <a href='http://wordpress.org/support/view/plugin-reviews/ultimate-product-catalogue'><?php _e("Please rate our plugin", 'ultimate-faqs'); ?></a> <?php _e("if you find the Ultimate Product Catalogue Plugin useful!", 'ultimate-faqs');?> </li></ul><?php } */ ?>
73
 
74
+ <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul>
75
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.4.8!", 'ultimate-faqs'); ?><br> <a href='http://wordpress.org/plugins/order-tracking/'><?php _e("Try out order tracking plugin ", 'ultimate-faqs'); ?></a> <?php _e("if you ship orders and find the Ultimate Product Catalogue Plugin useful!", 'ultimate-faqs');?> </li></ul><?php } */ ?>
76
 
77
+ <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul>
78
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 2.3.9!", 'ultimate-faqs'); ?><br> <a href='http://wordpress.org/support/topic/error-hunt'><?php _e("Please let us know about any small display/functionality errors. ", 'ultimate-faqs'); ?></a> <?php _e("We've noticed a couple, and would like to eliminate as many as possible.", 'ultimate-faqs');?> </li></ul><?php } */ ?>
79
 
80
+ <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", 'ultimate-faqs'); ?><br> <a href='https://www.youtube.com/channel/UCZPuaoetCJB1vZOmpnMxJNw'><?php _e("Check out our YouTube channel ", 'ultimate-faqs'); ?></a> <?php _e("for tutorial videos on this and our other plugins!", 'ultimate-faqs');?> </li></ul>
81
+ <?php } elseif ($Full_Version == "Yes") { ?><ul><li><?php _e("Thanks for upgrading to version 3.5.0!", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul>
82
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.4!", 'ultimate-faqs'); ?><br> <?php _e("Love the plugin but don't need the premium version? Help us speed up product support and development by donating. Thanks for using the plugin!", 'ultimate-faqs');?>
83
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
84
  <input type="hidden" name="cmd" value="_s-xclick">
85
  <input type="hidden" name="hosted_button_id" value="AQLMJFJ62GEFJ">
Functions/EWD_UFAQ_Widgets.php CHANGED
@@ -7,7 +7,7 @@ class EWD_UFAQ_Display_FAQ_Post_List extends WP_Widget {
7
  public function __construct() {
8
  parent::__construct(
9
  'ewd_ufaq_display_faq_post_list', // Base ID
10
- __('UFAQ FAQ ID List', 'EWD_UFAQ'), // Name
11
  array( 'description' => __( 'Insert FAQ posts using a comma-separated list of post IDs', 'EWD_UFAQ' ), ) // Args
12
  );
13
  }
@@ -69,7 +69,7 @@ class EWD_UFAQ_Display_Recent_FAQS extends WP_Widget {
69
  public function __construct() {
70
  parent::__construct(
71
  'ewd_ufaq_display_recent_faqs', // Base ID
72
- __('Recent FAQs', 'EWD_UFAQ'), // Name
73
  array( 'description' => __( 'Insert a number of the most recent FAQs', 'EWD_UFAQ' ), ) // Args
74
  );
75
  }
@@ -131,7 +131,7 @@ class EWD_UFAQ_Display_Popular_FAQS extends WP_Widget {
131
  public function __construct() {
132
  parent::__construct(
133
  'ewd_ufaq_display_popular_faqs', // Base ID
134
- __('Popular FAQs', 'EWD_UFAQ'), // Name
135
  array( 'description' => __( 'Insert a number of the most popular FAQs', 'EWD_UFAQ' ), ) // Args
136
  );
137
  }
@@ -193,7 +193,7 @@ class EWD_UFAQ_Display_Random_FAQ extends WP_Widget {
193
  public function __construct() {
194
  parent::__construct(
195
  'ewd_ufaq_display_random_faq', // Base ID
196
- __('Random FAQ', 'EWD_UFAQ'), // Name
197
  array( 'description' => __( 'Display a random FAQ', 'EWD_UFAQ' ), ) // Args
198
  );
199
  }
@@ -251,7 +251,7 @@ class EWD_UFAQ_Display_FAQ_Categories extends WP_Widget {
251
  public function __construct() {
252
  parent::__construct(
253
  'ewd_ufaq_display_faq_categories', // Base ID
254
- __('UFAQ FAQ Category List', 'EWD_UFAQ'), // Name
255
  array( 'description' => __( 'Insert FAQ posts using a comma-separated list of categories', 'EWD_UFAQ' ), ) // Args
256
  );
257
  }
7
  public function __construct() {
8
  parent::__construct(
9
  'ewd_ufaq_display_faq_post_list', // Base ID
10
+ __('UFAQ FAQ ID List', 'ultimate-faqs'), // Name
11
  array( 'description' => __( 'Insert FAQ posts using a comma-separated list of post IDs', 'EWD_UFAQ' ), ) // Args
12
  );
13
  }
69
  public function __construct() {
70
  parent::__construct(
71
  'ewd_ufaq_display_recent_faqs', // Base ID
72
+ __('Recent FAQs', 'ultimate-faqs'), // Name
73
  array( 'description' => __( 'Insert a number of the most recent FAQs', 'EWD_UFAQ' ), ) // Args
74
  );
75
  }
131
  public function __construct() {
132
  parent::__construct(
133
  'ewd_ufaq_display_popular_faqs', // Base ID
134
+ __('Popular FAQs', 'ultimate-faqs'), // Name
135
  array( 'description' => __( 'Insert a number of the most popular FAQs', 'EWD_UFAQ' ), ) // Args
136
  );
137
  }
193
  public function __construct() {
194
  parent::__construct(
195
  'ewd_ufaq_display_random_faq', // Base ID
196
+ __('Random FAQ', 'ultimate-faqs'), // Name
197
  array( 'description' => __( 'Display a random FAQ', 'EWD_UFAQ' ), ) // Args
198
  );
199
  }
251
  public function __construct() {
252
  parent::__construct(
253
  'ewd_ufaq_display_faq_categories', // Base ID
254
+ __('UFAQ FAQ Category List', 'ultimate-faqs'), // Name
255
  array( 'description' => __( 'Insert FAQ posts using a comma-separated list of categories', 'EWD_UFAQ' ), ) // Args
256
  );
257
  }
Functions/EWD_UFAQ_WooCommerce_Tab.php CHANGED
@@ -75,7 +75,7 @@ function EWD_UFAQ_Woo_FAQ_Tab_Content() {
75
 
76
  function EWD_UFAQ_Add_FAQs_Product_Tab($array) {
77
  $Add_Tab = array(
78
- 'label' => __('FAQs', 'EWD_UFAQ'),
79
  'target' => 'ewd_ufaq_faqs',
80
  'class' => array()
81
  );
@@ -101,20 +101,20 @@ function EWD_UFAQ_WooCommerce_Product_Page_FAQs() {
101
  echo "<div id='ewd_ufaq_faqs' class='panel woocommerce_options_panel'>";
102
 
103
  echo "<div class='ewd-ufaq-explanation'>";
104
- echo __("You can use the form below to select which FAQs to display for this product, or leave it blank to use the default category naming system.", 'EWD_UFAQ');
105
  echo "</div>";
106
 
107
  echo "<div id='ewd-ufaq-add-delete-faq-form-container'>";
108
  echo "<div id='ewd-ufaq-add-faq-form-div'>";
109
  echo "<form id='ewd-ufaq-add-faq-form'>";
110
  echo "<select class='ewd-ufaq-category-filter' name='ewd-ufaq-category-filter'>";
111
- echo "<option value=''>" . __("All Categories", 'EWD_UFAQ') . "</option>";
112
  foreach ($Categories as $Category) {echo "<option value='" . $Category->term_id . "'>" . $Category->name . "</option>";}
113
  echo "</select>";
114
  echo "<table class='form-table ewd-ufaq-faq-add-table'>";
115
  echo "<tr>";
116
- echo "<th>" . __("Add?", 'EWD_UFAQ') . "</th>";
117
- echo "<th>" . __("FAQ", 'EWD_UFAQ') . "</th>";
118
  echo "</tr>";
119
  foreach ($All_FAQs as $FAQ) {
120
  echo "<tr class='ewd-ufaq-faq-row' data-faqid='" . $FAQ->ID . "'>";
@@ -124,7 +124,7 @@ function EWD_UFAQ_WooCommerce_Product_Page_FAQs() {
124
  }
125
  echo "</table>";
126
  echo "</form>";
127
- echo "<button class='ewd-ufaq-add-faq-button'>" . __('Add FAQs', 'EWD_UFAQ') . "</button>";
128
  echo "</div>"; // ewd-ufaq-add-faq-form-div
129
 
130
  echo "<div id='ewd-ufaq-delete-faq-form-div'>";
@@ -132,8 +132,8 @@ function EWD_UFAQ_WooCommerce_Product_Page_FAQs() {
132
  echo "<input type='hidden' id='ewd-ufaq-post-id' value='" . $thepostid . "' />";
133
  echo "<table class='form-table ewd-ufaq-delete-table'>";
134
  echo "<tr>";
135
- echo "<th>" . __("Delete?", 'EWD_UFAQ') . "</th>";
136
- echo "<th>" . __("FAQ", 'EWD_UFAQ') . "</th>";
137
  echo "</tr>";
138
  foreach ($Current_FAQs as $FAQ_ID) {
139
  $FAQ = get_post($FAQ_ID);
@@ -145,7 +145,7 @@ function EWD_UFAQ_WooCommerce_Product_Page_FAQs() {
145
  }
146
  echo "</table>";
147
  echo "</form>";
148
- echo "<button class='ewd-ufaq-delete-faq-button'>" . __('Delete FAQs', 'EWD_UFAQ') . "</button>";
149
  echo "</div>"; // ewd-ufaq-delete-faq-form-div
150
  echo "</div>"; // ewd-ufaq-add-delete-faq-form-container
151
  echo "</div>";
75
 
76
  function EWD_UFAQ_Add_FAQs_Product_Tab($array) {
77
  $Add_Tab = array(
78
+ 'label' => __('FAQs', 'ultimate-faqs'),
79
  'target' => 'ewd_ufaq_faqs',
80
  'class' => array()
81
  );
101
  echo "<div id='ewd_ufaq_faqs' class='panel woocommerce_options_panel'>";
102
 
103
  echo "<div class='ewd-ufaq-explanation'>";
104
+ echo __("You can use the form below to select which FAQs to display for this product, or leave it blank to use the default category naming system.", 'ultimate-faqs');
105
  echo "</div>";
106
 
107
  echo "<div id='ewd-ufaq-add-delete-faq-form-container'>";
108
  echo "<div id='ewd-ufaq-add-faq-form-div'>";
109
  echo "<form id='ewd-ufaq-add-faq-form'>";
110
  echo "<select class='ewd-ufaq-category-filter' name='ewd-ufaq-category-filter'>";
111
+ echo "<option value=''>" . __("All Categories", 'ultimate-faqs') . "</option>";
112
  foreach ($Categories as $Category) {echo "<option value='" . $Category->term_id . "'>" . $Category->name . "</option>";}
113
  echo "</select>";
114
  echo "<table class='form-table ewd-ufaq-faq-add-table'>";
115
  echo "<tr>";
116
+ echo "<th>" . __("Add?", 'ultimate-faqs') . "</th>";
117
+ echo "<th>" . __("FAQ", 'ultimate-faqs') . "</th>";
118
  echo "</tr>";
119
  foreach ($All_FAQs as $FAQ) {
120
  echo "<tr class='ewd-ufaq-faq-row' data-faqid='" . $FAQ->ID . "'>";
124
  }
125
  echo "</table>";
126
  echo "</form>";
127
+ echo "<button class='ewd-ufaq-add-faq-button'>" . __('Add FAQs', 'ultimate-faqs') . "</button>";
128
  echo "</div>"; // ewd-ufaq-add-faq-form-div
129
 
130
  echo "<div id='ewd-ufaq-delete-faq-form-div'>";
132
  echo "<input type='hidden' id='ewd-ufaq-post-id' value='" . $thepostid . "' />";
133
  echo "<table class='form-table ewd-ufaq-delete-table'>";
134
  echo "<tr>";
135
+ echo "<th>" . __("Delete?", 'ultimate-faqs') . "</th>";
136
+ echo "<th>" . __("FAQ", 'ultimate-faqs') . "</th>";
137
  echo "</tr>";
138
  foreach ($Current_FAQs as $FAQ_ID) {
139
  $FAQ = get_post($FAQ_ID);
145
  }
146
  echo "</table>";
147
  echo "</form>";
148
+ echo "<button class='ewd-ufaq-delete-faq-button'>" . __('Delete FAQs', 'ultimate-faqs') . "</button>";
149
  echo "</div>"; // ewd-ufaq-delete-faq-form-div
150
  echo "</div>"; // ewd-ufaq-add-delete-faq-form-container
151
  echo "</div>";
Functions/Full_Upgrade.php CHANGED
@@ -5,7 +5,7 @@ function EWD_UFAQ_Upgrade_To_Full() {
5
  $Key = $_POST['Key'];
6
 
7
  if ($Key == "EWD Trial" and !get_option("EWD_UFAQ_Trial_Happening")) {
8
- $ewd_urp_message = array("Message_Type" => "Update", "Message" => __("Trial successfully started!", 'EWD_UFAQ'));
9
 
10
  update_option("EWD_UFAQ_Trial_Expiry_Time", time() + (7*24*60*60));
11
  update_option("EWD_UFAQ_Trial_Happening", "Yes");
5
  $Key = $_POST['Key'];
6
 
7
  if ($Key == "EWD Trial" and !get_option("EWD_UFAQ_Trial_Happening")) {
8
+ $ewd_urp_message = array("Message_Type" => "Update", "Message" => __("Trial successfully started!", 'ultimate-faqs'));
9
 
10
  update_option("EWD_UFAQ_Trial_Expiry_Time", time() + (7*24*60*60));
11
  update_option("EWD_UFAQ_Trial_Happening", "Yes");
Functions/Process_Ajax.php CHANGED
@@ -124,8 +124,8 @@ function EWD_UFAQ_WC_FAQ_Category() {
124
 
125
  $ReturnString .= "<table class='form-table ewd-ufaq-faq-add-table'>";
126
  $ReturnString .= "<tr>";
127
- $ReturnString .= "<th>" . __("Add?", 'EWD_UFAQ') . "</th>";
128
- $ReturnString .= "<th>" . __("FAQ", 'EWD_UFAQ') . "</th>";
129
  $ReturnString .= "</tr>";
130
  foreach ($All_FAQs as $FAQ) {
131
  $ReturnString .= "<tr class='ewd-ufaq-faq-row' data-faqid='" . $FAQ->ID . "'>";
124
 
125
  $ReturnString .= "<table class='form-table ewd-ufaq-faq-add-table'>";
126
  $ReturnString .= "<tr>";
127
+ $ReturnString .= "<th>" . __("Add?", 'ultimate-faqs') . "</th>";
128
+ $ReturnString .= "<th>" . __("FAQ", 'ultimate-faqs') . "</th>";
129
  $ReturnString .= "</tr>";
130
  foreach ($All_FAQs as $FAQ) {
131
  $ReturnString .= "<tr class='ewd-ufaq-faq-row' data-faqid='" . $FAQ->ID . "'>";
Functions/Register_EWD_UFAQ_Posts_Taxonomies.php CHANGED
@@ -4,17 +4,17 @@ function EWD_UFAQ_Create_Posttype() {
4
  $Slug_Base = get_option("EWD_UFAQ_Slug_Base");
5
 
6
  $labels = array(
7
- 'name' => __('FAQs', 'EWD_UFAQ'),
8
- 'singular_name' => __('FAQ', 'EWD_UFAQ'),
9
- 'menu_name' => __('FAQs', 'EWD_UFAQ'),
10
- 'add_new' => __('Add New', 'EWD_UFAQ'),
11
- 'add_new_item' => __('Add New FAQ', 'EWD_UFAQ'),
12
- 'edit_item' => __('Edit FAQ', 'EWD_UFAQ'),
13
- 'new_item' => __('New FAQ', 'EWD_UFAQ'),
14
- 'view_item' => __('View FAQ', 'EWD_UFAQ'),
15
- 'search_items' => __('Search FAQs', 'EWD_UFAQ'),
16
- 'not_found' => __('Nothing found', 'EWD_UFAQ'),
17
- 'not_found_in_trash' => __('Nothing found in Trash', 'EWD_UFAQ'),
18
  'parent_item_colon' => ''
19
  );
20
 
@@ -43,17 +43,17 @@ function EWD_UFAQ_Create_Category_Taxonomy() {
43
  'hierarchical' => true,
44
  // This array of options controls the labels displayed in the WordPress Admin UI
45
  'labels' => array(
46
- 'name' => __('FAQ Categories', 'EWD_UFAQ'),
47
- 'singular_name' => __('FAQ Category', 'EWD_UFAQ'),
48
- 'search_items' => __('Search FAQ Categories', 'EWD_UFAQ'),
49
- 'all_items' => __('All FAQ Categories', 'EWD_UFAQ'),
50
- 'parent_item' => __('Parent FAQ Category', 'EWD_UFAQ'),
51
- 'parent_item_colon' => __('Parent FAQ Category:', 'EWD_UFAQ'),
52
- 'edit_item' => __('Edit FAQ Category', 'EWD_UFAQ'),
53
- 'update_item' => __('Update FAQ Category', 'EWD_UFAQ'),
54
- 'add_new_item' => __('Add New FAQ Category', 'EWD_UFAQ'),
55
- 'new_item_name' => __('New FAQ Category Name', 'EWD_UFAQ'),
56
- 'menu_name' => __('FAQ Categories', 'EWD_UFAQ'),
57
  ),
58
  'query_var' => true
59
  ));
@@ -63,17 +63,17 @@ function EWD_UFAQ_Create_Category_Taxonomy() {
63
  'hierarchical' => false,
64
  // This array of options controls the labels displayed in the WordPress Admin UI
65
  'labels' => array(
66
- 'name' => __('FAQ Tags', 'EWD_UFAQ'),
67
- 'singular_name' => __('FAQ Tag', 'EWD_UFAQ'),
68
- 'search_items' => __('Search FAQ Tags', 'EWD_UFAQ'),
69
- 'all_items' => __('All FAQ Tags', 'EWD_UFAQ'),
70
- 'parent_item' => __('Parent FAQ Tag', 'EWD_UFAQ'),
71
- 'parent_item_colon' => __('Parent FAQ Tag:', 'EWD_UFAQ'),
72
- 'edit_item' => __('Edit FAQ Tag', 'EWD_UFAQ'),
73
- 'update_item' => __('Update FAQ Tag', 'EWD_UFAQ'),
74
- 'add_new_item' => __('Add New FAQ Tag', 'EWD_UFAQ'),
75
- 'new_item_name' => __('New FAQ Tag Name', 'EWD_UFAQ'),
76
- 'menu_name' => __('FAQ Tags', 'EWD_UFAQ'),
77
  )
78
  ));
79
  }
4
  $Slug_Base = get_option("EWD_UFAQ_Slug_Base");
5
 
6
  $labels = array(
7
+ 'name' => __('FAQs', 'ultimate-faqs'),
8
+ 'singular_name' => __('FAQ', 'ultimate-faqs'),
9
+ 'menu_name' => __('FAQs', 'ultimate-faqs'),
10
+ 'add_new' => __('Add New', 'ultimate-faqs'),
11
+ 'add_new_item' => __('Add New FAQ', 'ultimate-faqs'),
12
+ 'edit_item' => __('Edit FAQ', 'ultimate-faqs'),
13
+ 'new_item' => __('New FAQ', 'ultimate-faqs'),
14
+ 'view_item' => __('View FAQ', 'ultimate-faqs'),
15
+ 'search_items' => __('Search FAQs', 'ultimate-faqs'),
16
+ 'not_found' => __('Nothing found', 'ultimate-faqs'),
17
+ 'not_found_in_trash' => __('Nothing found in Trash', 'ultimate-faqs'),
18
  'parent_item_colon' => ''
19
  );
20
 
43
  'hierarchical' => true,
44
  // This array of options controls the labels displayed in the WordPress Admin UI
45
  'labels' => array(
46
+ 'name' => __('FAQ Categories', 'ultimate-faqs'),
47
+ 'singular_name' => __('FAQ Category', 'ultimate-faqs'),
48
+ 'search_items' => __('Search FAQ Categories', 'ultimate-faqs'),
49
+ 'all_items' => __('All FAQ Categories', 'ultimate-faqs'),
50
+ 'parent_item' => __('Parent FAQ Category', 'ultimate-faqs'),
51
+ 'parent_item_colon' => __('Parent FAQ Category:', 'ultimate-faqs'),
52
+ 'edit_item' => __('Edit FAQ Category', 'ultimate-faqs'),
53
+ 'update_item' => __('Update FAQ Category', 'ultimate-faqs'),
54
+ 'add_new_item' => __('Add New FAQ Category', 'ultimate-faqs'),
55
+ 'new_item_name' => __('New FAQ Category Name', 'ultimate-faqs'),
56
+ 'menu_name' => __('FAQ Categories', 'ultimate-faqs'),
57
  ),
58
  'query_var' => true
59
  ));
63
  'hierarchical' => false,
64
  // This array of options controls the labels displayed in the WordPress Admin UI
65
  'labels' => array(
66
+ 'name' => __('FAQ Tags', 'ultimate-faqs'),
67
+ 'singular_name' => __('FAQ Tag', 'ultimate-faqs'),
68
+ 'search_items' => __('Search FAQ Tags', 'ultimate-faqs'),
69
+ 'all_items' => __('All FAQ Tags', 'ultimate-faqs'),
70
+ 'parent_item' => __('Parent FAQ Tag', 'ultimate-faqs'),
71
+ 'parent_item_colon' => __('Parent FAQ Tag:', 'ultimate-faqs'),
72
+ 'edit_item' => __('Edit FAQ Tag', 'ultimate-faqs'),
73
+ 'update_item' => __('Update FAQ Tag', 'ultimate-faqs'),
74
+ 'add_new_item' => __('Add New FAQ Tag', 'ultimate-faqs'),
75
+ 'new_item_name' => __('New FAQ Tag Name', 'ultimate-faqs'),
76
+ 'menu_name' => __('FAQ Tags', 'ultimate-faqs'),
77
  )
78
  ));
79
  }
Main.php CHANGED
@@ -6,8 +6,8 @@ Description: A plugin that lets you create FAQs (frequently asked questions), or
6
  Author: Etoile Web Design
7
  Author URI: http://www.EtoileWebDesign.com/wordpress-plugins/
8
  Terms and Conditions: http://www.etoilewebdesign.com/plugin-terms-and-conditions/
9
- Text Domain: EWD_UFAQ
10
- Version: 1.5.32
11
  */
12
 
13
  global $ewd_ufaq_message;
@@ -75,19 +75,19 @@ function EWD_UFAQ_Add_Header_Bar($Called = "No") {
75
 
76
  <div class="EWD_UFAQ_Menu">
77
  <h2 class="nav-tab-wrapper">
78
- <a id="Dashboard_Menu" href='admin.php?page=EWD-UFAQ-Options' class="MenuTab nav-tab <?php if (!isset($_GET['post_type']) and ($_GET['DisplayPage'] == '' or $_GET['DisplayPage'] == 'Dashboard')) {echo 'nav-tab-active';}?>"><?php _e("Dashboard", "EWD_UFAQ"); ?></a>
79
  <?php if ($Admin_Approval == "Yes") { ?>
80
- <a id="Approved_FAQs_Menu" href='edit.php?post_type=ufaq&post_status=publish' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'edit.php' and (!isset($_GET['post_status']) or $_GET['post_status'] == 'publish')) {echo 'nav-tab-active';}?>"><?php _e("Approved FAQs", "EWD_UFAQ"); ?></a>
81
- <a id="FAQs_Awaiting_Approval_Menu" href='edit.php?post_type=ufaq&post_status=draft' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'edit.php' and $_GET['post_status'] == 'draft') {echo 'nav-tab-active';}?>"><?php _e("Awaiting Approval", "EWD_UFAQ"); ?></a>
82
  <?php } else { ?>
83
- <a id="FAQs_Menu" href='edit.php?post_type=ufaq' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'edit.php') {echo 'nav-tab-active';}?>"><?php _e("FAQs", "EWD_UFAQ"); ?></a>
84
  <?php } ?>
85
- <a id="Add_New_Menu" href='post-new.php?post_type=ufaq' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'post-new.php') {echo 'nav-tab-active';}?>"><?php _e("Add New", "EWD_UFAQ"); ?></a>
86
- <a id="FAQ_Categories_Menu" href='edit-tags.php?taxonomy=ufaq-category&post_type=ufaq' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'edit-tags.php' and $_GET['taxonomy'] == "ufaq-category") {echo 'nav-tab-active';}?>"><?php _e("Categories", "EWD_UFAQ"); ?></a>
87
- <a id="FAQ_Categories_Menu" href='edit-tags.php?taxonomy=ufaq-tag&post_type=ufaq' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'edit-tags.php' and $_GET['taxonomy'] == "ufaq-tag") {echo 'nav-tab-active';}?>"><?php _e("Tags", "EWD_UFAQ"); ?></a>
88
- <a id="Options_Menu" href='admin.php?page=EWD-UFAQ-Options&DisplayPage=Options' class="MenuTab nav-tab <?php if (!isset($_GET['post_type']) and $_GET['DisplayPage'] == 'Options') {echo 'nav-tab-active';}?>"><?php _e("Settings", "EWD_UFAQ"); ?></a>
89
- <a id="WooCommerce_Import_Menu" href='admin.php?page=EWD-UFAQ-Options&DisplayPage=Export' class="MenuTab nav-tab <?php if (!isset($_GET['post_type']) and $_GET['DisplayPage'] == 'Export') {echo 'nav-tab-active';}?>"><?php _e("Export", "EWD_UFAQ"); ?></a>
90
- <a id="WooCommerce_Import_Menu" href='admin.php?page=EWD-UFAQ-Options&DisplayPage=ImportPosts' class="MenuTab nav-tab <?php if (!isset($_GET['post_type']) and $_GET['DisplayPage'] == 'ImportPosts') {echo 'nav-tab-active';}?>"><?php _e("Import", "EWD_UFAQ"); ?></a>
91
  </h2>
92
  </div>
93
  <?php }
@@ -95,7 +95,7 @@ add_action('admin_notices', 'EWD_UFAQ_Add_Header_Bar');
95
 
96
  /* Add localization support */
97
  function EWD_UFAQ_localization_setup() {
98
- load_plugin_textdomain('EWD_UFAQ', false, dirname(plugin_basename(__FILE__)) . '/lang/');
99
  }
100
  add_action('after_setup_theme', 'EWD_UFAQ_localization_setup');
101
 
@@ -142,7 +142,7 @@ function Add_EWD_UFAQ_FrontEnd_Scripts() {
142
  wp_enqueue_script('ewd-ufaq-js', plugins_url( '/js/ewd-ufaq-js.js' , __FILE__ ), array( 'jquery' ));
143
 
144
  $Retrieving_Results = get_option("EWD_UFAQ_Retrieving_Results");
145
- if ($Retrieving_Results == "") {$Retrieving_Results = __("Retrieving Results", 'EWD_UFAQ') . "...";}
146
 
147
  $ewd_ufaq_php_data = array(
148
  'retrieving_results' => $Retrieving_Results
6
  Author: Etoile Web Design
7
  Author URI: http://www.EtoileWebDesign.com/wordpress-plugins/
8
  Terms and Conditions: http://www.etoilewebdesign.com/plugin-terms-and-conditions/
9
+ Text Domain: ultimate-faqs
10
+ Version: 1.5.33
11
  */
12
 
13
  global $ewd_ufaq_message;
75
 
76
  <div class="EWD_UFAQ_Menu">
77
  <h2 class="nav-tab-wrapper">
78
+ <a id="Dashboard_Menu" href='admin.php?page=EWD-UFAQ-Options' class="MenuTab nav-tab <?php if (!isset($_GET['post_type']) and ($_GET['DisplayPage'] == '' or $_GET['DisplayPage'] == 'Dashboard')) {echo 'nav-tab-active';}?>"><?php _e("Dashboard", 'ultimate-faqs'); ?></a>
79
  <?php if ($Admin_Approval == "Yes") { ?>
80
+ <a id="Approved_FAQs_Menu" href='edit.php?post_type=ufaq&post_status=publish' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'edit.php' and (!isset($_GET['post_status']) or $_GET['post_status'] == 'publish')) {echo 'nav-tab-active';}?>"><?php _e("Approved FAQs", 'ultimate-faqs'); ?></a>
81
+ <a id="FAQs_Awaiting_Approval_Menu" href='edit.php?post_type=ufaq&post_status=draft' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'edit.php' and $_GET['post_status'] == 'draft') {echo 'nav-tab-active';}?>"><?php _e("Awaiting Approval", 'ultimate-faqs'); ?></a>
82
  <?php } else { ?>
83
+ <a id="FAQs_Menu" href='edit.php?post_type=ufaq' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'edit.php') {echo 'nav-tab-active';}?>"><?php _e("FAQs", 'ultimate-faqs'); ?></a>
84
  <?php } ?>
85
+ <a id="Add_New_Menu" href='post-new.php?post_type=ufaq' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'post-new.php') {echo 'nav-tab-active';}?>"><?php _e("Add New", 'ultimate-faqs'); ?></a>
86
+ <a id="FAQ_Categories_Menu" href='edit-tags.php?taxonomy=ufaq-category&post_type=ufaq' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'edit-tags.php' and $_GET['taxonomy'] == "ufaq-category") {echo 'nav-tab-active';}?>"><?php _e("Categories", 'ultimate-faqs'); ?></a>
87
+ <a id="FAQ_Categories_Menu" href='edit-tags.php?taxonomy=ufaq-tag&post_type=ufaq' class="MenuTab nav-tab <?php if (isset($_GET['post_type']) and $_GET['post_type'] == 'ufaq' and $pagenow == 'edit-tags.php' and $_GET['taxonomy'] == "ufaq-tag") {echo 'nav-tab-active';}?>"><?php _e("Tags", 'ultimate-faqs'); ?></a>
88
+ <a id="Options_Menu" href='admin.php?page=EWD-UFAQ-Options&DisplayPage=Options' class="MenuTab nav-tab <?php if (!isset($_GET['post_type']) and $_GET['DisplayPage'] == 'Options') {echo 'nav-tab-active';}?>"><?php _e("Settings", 'ultimate-faqs'); ?></a>
89
+ <a id="WooCommerce_Import_Menu" href='admin.php?page=EWD-UFAQ-Options&DisplayPage=Export' class="MenuTab nav-tab <?php if (!isset($_GET['post_type']) and $_GET['DisplayPage'] == 'Export') {echo 'nav-tab-active';}?>"><?php _e("Export", 'ultimate-faqs'); ?></a>
90
+ <a id="WooCommerce_Import_Menu" href='admin.php?page=EWD-UFAQ-Options&DisplayPage=ImportPosts' class="MenuTab nav-tab <?php if (!isset($_GET['post_type']) and $_GET['DisplayPage'] == 'ImportPosts') {echo 'nav-tab-active';}?>"><?php _e("Import", 'ultimate-faqs'); ?></a>
91
  </h2>
92
  </div>
93
  <?php }
95
 
96
  /* Add localization support */
97
  function EWD_UFAQ_localization_setup() {
98
+ load_plugin_textdomain('ultimate-faqs', false, dirname(plugin_basename(__FILE__)) . '/lang/');
99
  }
100
  add_action('after_setup_theme', 'EWD_UFAQ_localization_setup');
101
 
142
  wp_enqueue_script('ewd-ufaq-js', plugins_url( '/js/ewd-ufaq-js.js' , __FILE__ ), array( 'jquery' ));
143
 
144
  $Retrieving_Results = get_option("EWD_UFAQ_Retrieving_Results");
145
+ if ($Retrieving_Results == "") {$Retrieving_Results = __("Retrieving Results", 'ultimate-faqs') . "...";}
146
 
147
  $ewd_ufaq_php_data = array(
148
  'retrieving_results' => $Retrieving_Results
Shortcodes/DisplayFAQs.php CHANGED
@@ -37,19 +37,19 @@ function Display_FAQs($atts) {
37
  $Hide_Blank_Fields = get_option("EWD_UFAQ_Hide_Blank_Fields");
38
 
39
  $Posted_Label = get_option("EWD_UFAQ_Posted_Label");
40
- if ($Posted_Label == "") {$Posted_Label = __("Posted ", 'EWD_UFAQ');}
41
  $By_Label = get_option("EWD_UFAQ_By_Label");
42
- if ($By_Label == "") {$By_Label = __("by ", 'EWD_UFAQ');}
43
  $On_Label = get_option("EWD_UFAQ_On_Label");
44
- if ($On_Label == "") {$On_Label = __("on ", 'EWD_UFAQ');}
45
  $Category_Label = get_option("EWD_UFAQ_Category_Label");
46
  $Tag_Label = get_option("EWD_UFAQ_Tag_Label");
47
  $Back_To_Top_Label = get_option("EWD_UFAQ_Back_To_Top_Label");
48
- if ($Back_To_Top_Label == "") {$Back_To_Top_Label = __("Back to Top", 'EWD_UFAQ');}
49
  $Permalink_Label = get_option("EWD_UFAQ_Permalink_Label");
50
- if ($Permalink_Label == "") {$Permalink_Label = __("Permalink", 'EWD_UFAQ');}
51
  $No_Results_Found_Text = get_option("EWD_UFAQ_No_Results_Found_Text");
52
- if ($No_Results_Found_Text == "") {$No_Results_Found_Text = __("No result FAQ's contained the term '%s'", 'EWD_UFAQ');}
53
 
54
  $UFAQ_Styling_Category_Heading_Type = get_option("EWD_UFAQ_Styling_Category_Heading_Type");
55
  $UFAQ_Styling_FAQ_Heading_Type = get_option("EWD_UFAQ_Styling_FAQ_Heading_Type");
@@ -199,8 +199,8 @@ function Display_FAQs($atts) {
199
 
200
  if ($Expand_Collapse_All == "Yes") {
201
  $ReturnString .= "<div class='ewd-ufaq-expand-collapse-div'><a>";
202
- $ReturnString .= "<span class='ewd-ufaq-expand-all'><span class='ewd-ufaq-toggle-all-symbol'>c</span> " . __("Expand All", 'EWD_UFAQ') . "</span>";
203
- $ReturnString .= "<span class='ewd-ufaq-collapse-all ewd-ufaq-hidden'><span class='ewd-ufaq-toggle-all-symbol'>C</span> " . __("Collapse All", 'EWD_UFAQ') . "</span>";
204
  $ReturnString .= "</div></a>";
205
  }
206
 
@@ -368,7 +368,7 @@ function Display_FAQs($atts) {
368
 
369
  $ReturnString .= "<div class='ewd-ufaq-ratings'>";
370
  $ReturnString .= "<div class='ewd-ufaq-ratings-label'>";
371
- $ReturnString .= __("Did you find this FAQ helpful?", 'EWD_UFAQ');
372
  $ReturnString .= "</div>";
373
  $ReturnString .= "<div class='ewd-ufaq-rating-button ewd-ufaq-up-vote' data-ratingfaqid='" . $faq->ID . "' itemprop='upvoteCount'>" . $Up_Votes . "</div>";
374
  $ReturnString .= "<div class='ewd-ufaq-rating-button ewd-ufaq-down-vote' data-ratingfaqid='" . $faq->ID . "' itemprop='downvoteCount'>" . $Down_Votes . "</div>";
37
  $Hide_Blank_Fields = get_option("EWD_UFAQ_Hide_Blank_Fields");
38
 
39
  $Posted_Label = get_option("EWD_UFAQ_Posted_Label");
40
+ if ($Posted_Label == "") {$Posted_Label = __("Posted ", 'ultimate-faqs');}
41
  $By_Label = get_option("EWD_UFAQ_By_Label");
42
+ if ($By_Label == "") {$By_Label = __("by ", 'ultimate-faqs');}
43
  $On_Label = get_option("EWD_UFAQ_On_Label");
44
+ if ($On_Label == "") {$On_Label = __("on ", 'ultimate-faqs');}
45
  $Category_Label = get_option("EWD_UFAQ_Category_Label");
46
  $Tag_Label = get_option("EWD_UFAQ_Tag_Label");
47
  $Back_To_Top_Label = get_option("EWD_UFAQ_Back_To_Top_Label");
48
+ if ($Back_To_Top_Label == "") {$Back_To_Top_Label = __("Back to Top", 'ultimate-faqs');}
49
  $Permalink_Label = get_option("EWD_UFAQ_Permalink_Label");
50
+ if ($Permalink_Label == "") {$Permalink_Label = __("Permalink", 'ultimate-faqs');}
51
  $No_Results_Found_Text = get_option("EWD_UFAQ_No_Results_Found_Text");
52
+ if ($No_Results_Found_Text == "") {$No_Results_Found_Text = __("No result FAQ's contained the term '%s'", 'ultimate-faqs');}
53
 
54
  $UFAQ_Styling_Category_Heading_Type = get_option("EWD_UFAQ_Styling_Category_Heading_Type");
55
  $UFAQ_Styling_FAQ_Heading_Type = get_option("EWD_UFAQ_Styling_FAQ_Heading_Type");
199
 
200
  if ($Expand_Collapse_All == "Yes") {
201
  $ReturnString .= "<div class='ewd-ufaq-expand-collapse-div'><a>";
202
+ $ReturnString .= "<span class='ewd-ufaq-expand-all'><span class='ewd-ufaq-toggle-all-symbol'>c</span> " . __("Expand All", 'ultimate-faqs') . "</span>";
203
+ $ReturnString .= "<span class='ewd-ufaq-collapse-all ewd-ufaq-hidden'><span class='ewd-ufaq-toggle-all-symbol'>C</span> " . __("Collapse All", 'ultimate-faqs') . "</span>";
204
  $ReturnString .= "</div></a>";
205
  }
206
 
368
 
369
  $ReturnString .= "<div class='ewd-ufaq-ratings'>";
370
  $ReturnString .= "<div class='ewd-ufaq-ratings-label'>";
371
+ $ReturnString .= __("Did you find this FAQ helpful?", 'ultimate-faqs');
372
  $ReturnString .= "</div>";
373
  $ReturnString .= "<div class='ewd-ufaq-rating-button ewd-ufaq-up-vote' data-ratingfaqid='" . $faq->ID . "' itemprop='upvoteCount'>" . $Up_Votes . "</div>";
374
  $ReturnString .= "<div class='ewd-ufaq-rating-button ewd-ufaq-down-vote' data-ratingfaqid='" . $faq->ID . "' itemprop='downvoteCount'>" . $Down_Votes . "</div>";
Shortcodes/Display_FAQ_Search.php CHANGED
@@ -18,9 +18,9 @@ function UFAQ_AJAX_Search($atts) {
18
  )
19
  );
20
  $Enter_Question_Label = get_option("EWD_UFAQ_Enter_Question_Label");
21
- if ($Enter_Question_Label == "") {$Enter_Question_Label = __('Enter your question', "EWD_UFAQ");}
22
  $Search_Label = get_option("EWD_UFAQ_Search_Label");
23
- if ($Search_Label == "") {$Search_Label = __("Search", 'EWD_UFAQ');}
24
 
25
  $ReturnString .= "<style type='text/css'>";
26
  $ReturnString .= ".ui-autocomplete {background:#FFF; border: #000 solid 1px; max-width:400px; max-height:200px; overflow:auto;}";
18
  )
19
  );
20
  $Enter_Question_Label = get_option("EWD_UFAQ_Enter_Question_Label");
21
+ if ($Enter_Question_Label == "") {$Enter_Question_Label = __('Enter your question', 'ultimate-faqs');}
22
  $Search_Label = get_option("EWD_UFAQ_Search_Label");
23
+ if ($Search_Label == "") {$Search_Label = __("Search", 'ultimate-faqs');}
24
 
25
  $ReturnString .= "<style type='text/css'>";
26
  $ReturnString .= ".ui-autocomplete {background:#FFF; border: #000 solid 1px; max-width:400px; max-height:200px; overflow:auto;}";
Shortcodes/SubmitFAQ.php CHANGED
@@ -12,10 +12,10 @@ function Insert_Question_Form($atts) {
12
 
13
  // Get the attributes passed by the shortcode, and store them in new variables for processing
14
  extract( shortcode_atts( array(
15
- 'success_message' => __('Thank you for submitting an FAQ.', 'EWD_UFAQ'),
16
- 'submit_faq_form_title' => __('Submit a Question', 'EWD_UFAQ'),
17
- 'submit_faq_instructions' => __('Please fill out the form below to submit a question.', 'EWD_UFAQ'),
18
- 'submit_text' => __('Send Question', 'EWD_UFAQ')),
19
  $atts
20
  )
21
  );
@@ -24,15 +24,15 @@ function Insert_Question_Form($atts) {
24
  if (get_option("EWD_UFAQ_Please_Fill_Form_Below_Label") != "") {$submit_faq_instructions = get_option("EWD_UFAQ_Please_Fill_Form_Below_Label");}
25
  if (get_option("EWD_UFAQ_Send_Question_Label") != "") {$submit_text = get_option("EWD_UFAQ_Send_Question_Label");}
26
  $Question_Title_Label = get_option("EWD_UFAQ_Question_Title_Label");
27
- if ($Question_Title_Label == "") {$Question_Title_Label = __("Question Title", 'EWD_UFAQ');}
28
  $What_Question_Being_Answered_Label = get_option("EWD_UFAQ_What_Question_Being_Answered_Label");
29
- if ($What_Question_Being_Answered_Label == "") {$What_Question_Being_Answered_Label = __("What question is being answered?", 'EWD_UFAQ');}
30
  $Proposed_Answer_Label = get_option("EWD_UFAQ_Proposed_Answer_Label");
31
- if ($Proposed_Answer_Label == "") {$Proposed_Answer_Label = __("Proposed Answer", 'EWD_UFAQ');}
32
  $Review_Author_Label = get_option("EWD_UFAQ_Review_Author_Label");
33
- if ($Review_Author_Label == "") {$Review_Author_Label = __("FAQ Author", 'EWD_UFAQ');}
34
  $What_Name_With_Review_Label = get_option("EWD_UFAQ_What_Name_With_Review_Label");
35
- if ($What_Name_With_Review_Label == "") {$What_Name_With_Review_Label = __("What name should be displayed with your FAQ?", 'EWD_UFAQ');}
36
 
37
  if (isset($_POST['Submit_Question'])) {$user_update = EWD_UFAQ_Submit_Question($success_message);}
38
 
12
 
13
  // Get the attributes passed by the shortcode, and store them in new variables for processing
14
  extract( shortcode_atts( array(
15
+ 'success_message' => __('Thank you for submitting an FAQ.', 'ultimate-faqs'),
16
+ 'submit_faq_form_title' => __('Submit a Question', 'ultimate-faqs'),
17
+ 'submit_faq_instructions' => __('Please fill out the form below to submit a question.', 'ultimate-faqs'),
18
+ 'submit_text' => __('Send Question', 'ultimate-faqs')),
19
  $atts
20
  )
21
  );
24
  if (get_option("EWD_UFAQ_Please_Fill_Form_Below_Label") != "") {$submit_faq_instructions = get_option("EWD_UFAQ_Please_Fill_Form_Below_Label");}
25
  if (get_option("EWD_UFAQ_Send_Question_Label") != "") {$submit_text = get_option("EWD_UFAQ_Send_Question_Label");}
26
  $Question_Title_Label = get_option("EWD_UFAQ_Question_Title_Label");
27
+ if ($Question_Title_Label == "") {$Question_Title_Label = __("Question Title", 'ultimate-faqs');}
28
  $What_Question_Being_Answered_Label = get_option("EWD_UFAQ_What_Question_Being_Answered_Label");
29
+ if ($What_Question_Being_Answered_Label == "") {$What_Question_Being_Answered_Label = __("What question is being answered?", 'ultimate-faqs');}
30
  $Proposed_Answer_Label = get_option("EWD_UFAQ_Proposed_Answer_Label");
31
+ if ($Proposed_Answer_Label == "") {$Proposed_Answer_Label = __("Proposed Answer", 'ultimate-faqs');}
32
  $Review_Author_Label = get_option("EWD_UFAQ_Review_Author_Label");
33
+ if ($Review_Author_Label == "") {$Review_Author_Label = __("FAQ Author", 'ultimate-faqs');}
34
  $What_Name_With_Review_Label = get_option("EWD_UFAQ_What_Name_With_Review_Label");
35
+ if ($What_Name_With_Review_Label == "") {$What_Name_With_Review_Label = __("What name should be displayed with your FAQ?", 'ultimate-faqs');}
36
 
37
  if (isset($_POST['Submit_Question'])) {$user_update = EWD_UFAQ_Submit_Question($success_message);}
38
 
html/AdminHeader.php CHANGED
@@ -1,5 +1,5 @@
1
  <div class="wrap">
2
- <div class="Header"><h2><?php _e("Ultimate FAQ Settings", 'EWD_UFAQ') ?></h2></div>
3
 
4
  <?php EWD_UFAQ_Add_Header_Bar("Yes"); ?>
5
 
1
  <div class="wrap">
2
+ <div class="Header"><h2><?php _e("Ultimate FAQ Settings", 'ultimate-faqs') ?></h2></div>
3
 
4
  <?php EWD_UFAQ_Add_Header_Bar("Yes"); ?>
5
 
html/DashboardPage.php CHANGED
@@ -25,9 +25,9 @@
25
  <div id="ewd-ufaq-dashboard-top-upgrade">
26
  <div id="ewd-ufaq-dashboard-top-upgrade-left">
27
  <div id="ewd-dashboard-pro" class="postbox ewd-ufaq-postbox-collapsible" >
28
- <div class="handlediv" title="Click to toggle"></div><h3 class='hndle ewd-ufaq-dashboard-h3'><span><?php _e("UPGRADE TO FULL VERSION", 'EWD_UFAQ') ?></span></h3>
29
  <div class="inside">
30
- <h3><?php _e("What you get by upgrading:", 'EWD_UFAQ') ?></h3>
31
  <div class="clear"></div>
32
  <ul>
33
  <li><span>Ability to add a unique FAQ tab to each WooCommerce product page.</span></li>
@@ -43,10 +43,10 @@
43
  <div class="full-version-form-div">
44
  <form action="edit.php?post_type=ufaq" method="post">
45
  <div class="form-field form-required">
46
- <!-- <label for="Catalogue_Name"><?php _e("Product Key", 'EWD_UFAQ') ?></label> -->
47
- <input name="Key" type="text" value="" size="40" placeholder="<?php _e('Enter product key or free trial code here', 'EWD_UFAQ'); ?>" />
48
  </div>
49
- <input type="submit" name="EWD_UFAQ_Upgrade_To_Full" value="<?php _e('UPGRADE', 'EWD_UFAQ'); ?>">
50
  </form>
51
  </div>
52
  </div>
@@ -61,10 +61,10 @@
61
  <div class="topPart">
62
  <?php
63
  if(!get_option("EWD_UFAQ_Trial_Happening")){
64
- _e("Want to try out the premium features first?", 'EWD_UFAQ');
65
  }
66
  else{
67
- _e("Your free trial is currently active", 'EWD_UFAQ');
68
  }
69
  ?>
70
  </div>
@@ -93,26 +93,26 @@ if (get_option("EWD_UFAQ_Update_Flag") == "Yes" or get_option("EWD_UFAQ_Install_
93
  <div id="side-sortables" class="metabox-holder ">
94
  <div id="EWD_UFAQ_pro" class="postbox " >
95
  <div class="handlediv" title="Click to toggle"></div>
96
- <h3 class='hndle'><span><?php _e("Thank You!", 'EWD_UFAQ') ?></span></h3>
97
  <div class="inside">
98
- <?php if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate FAQs plugin.", "EWD_UFAQ"); ?><br> <a href='https://www.youtube.com/channel/UCZPuaoetCJB1vZOmpnMxJNw'><?php _e("Subscribe to our YouTube channel ", "EWD_UFAQ"); ?></a> <?php _e("for tutorial videos on this and our other plugins!", "EWD_UFAQ");?> </li></ul>
99
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 1.3.1!", "EWD_UFAQ"); ?><br> <a href='https://wordpress.org/support/view/plugin-reviews/ultimate-faqs?filter=5'><?php _e("Please rate our plugin", "EWD_UFAQ"); ?></a> <?php _e("if you find Ultimate FAQs useful!", "EWD_UFAQ");?> </li></ul><?php } ?>
100
 
101
- <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
102
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 2.2.9!", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul><?php } */ ?>
103
 
104
- <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
105
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.0.16!", "EWD_UFAQ"); ?><br> <a href='http://wordpress.org/support/view/plugin-reviews/ultimate-product-catalogue'><?php _e("Please rate our plugin", "EWD_UFAQ"); ?></a> <?php _e("if you find the Ultimate Product Catalogue Plugin useful!", "EWD_UFAQ");?> </li></ul><?php } */ ?>
106
 
107
- <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
108
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.4.8!", "EWD_UFAQ"); ?><br> <a href='http://wordpress.org/plugins/order-tracking/'><?php _e("Try out order tracking plugin ", "EWD_UFAQ"); ?></a> <?php _e("if you ship orders and find the Ultimate Product Catalogue Plugin useful!", "EWD_UFAQ");?> </li></ul><?php } */ ?>
109
 
110
- <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
111
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 2.3.9!", "EWD_UFAQ"); ?><br> <a href='http://wordpress.org/support/topic/error-hunt'><?php _e("Please let us know about any small display/functionality errors. ", "EWD_UFAQ"); ?></a> <?php _e("We've noticed a couple, and would like to eliminate as many as possible.", "EWD_UFAQ");?> </li></ul><?php } */ ?>
112
 
113
- <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", "EWD_UFAQ"); ?><br> <a href='https://www.youtube.com/channel/UCZPuaoetCJB1vZOmpnMxJNw'><?php _e("Check out our YouTube channel ", "EWD_UFAQ"); ?></a> <?php _e("for tutorial videos on this and our other plugins!", "EWD_UFAQ");?> </li></ul>
114
- <?php } elseif ($Full_Version == "Yes") { ?><ul><li><?php _e("Thanks for upgrading to version 3.5.0!", "EWD_UFAQ"); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", "EWD_UFAQ"); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", "EWD_UFAQ");?> </li></ul>
115
- <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.4!", "EWD_UFAQ"); ?><br> <?php _e("Love the plugin but don't need the premium version? Help us speed up product support and development by donating. Thanks for using the plugin!", "EWD_UFAQ");?>
116
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
117
  <input type="hidden" name="cmd" value="_s-xclick">
118
  <input type="hidden" name="hosted_button_id" value="AQLMJFJ62GEFJ">
@@ -224,7 +224,7 @@ if (get_option("EWD_UFAQ_Update_Flag") == "Yes" or get_option("EWD_UFAQ_Install_
224
  $Dashboard_FAQs_Query = new WP_Query($args);
225
  $Dashboard_FAQs = $Dashboard_FAQs_Query->get_posts();
226
 
227
- if (sizeOf($Dashboard_FAQs) == 0) {echo "<tr><td colspan='3'>" . __("No FAQs to display yet. Create an FAQ and then view it for it to be displayed here.", 'EWD_UFAQ') . "</td></tr>";}
228
  else {
229
  foreach ($Dashboard_FAQs as $Dashboard_FAQ) { ?>
230
  <tr>
@@ -263,16 +263,16 @@ if (get_option("EWD_UFAQ_Update_Flag") == "Yes" or get_option("EWD_UFAQ_Install_
263
  <?php if ($Ask_Review_Date < time() and $Install_Time < time() - 3600*24*4) { ?>
264
  <div id='ewd-ufaq-review-ask-overlay'></div>
265
  <div class='ewd-ufaq-review-ask-popup'>
266
- <div class='ewd-ufaq-review-ask-title'><?php _e('Thank You!', 'EWD_UFAQ'); ?></div>
267
  <div class='ewd-ufaq-review-ask-content'>
268
- <p><?php _e('We wanted to thank the users of our plugins for all of their great reviews recently.', 'EWD_UFAQ'); ?></p>
269
- <p><?php _e('Your positive feedback and constructive suggestions on how to improve our plugins make coming in to work every day worth it for us.', 'EWD_UFAQ'); ?></p>
270
- <p><strong><?php _e("Haven't had a chance to leave a review yet? You can do so at:", 'EWD_UFAQ'); ?></strong></p>
271
  <a href='https://wordpress.org/support/plugin/ultimate-faqs/reviews/' target="_blank" class='ewd-ufaq-review-ask-content-link'>Leave a Review!</a>
272
  </div>
273
  <div class='ewd-ufaq-review-ask-footer-links'>
274
- <div class='ewd-ufaq-hide-review-ask' id="ewd-ufaq-hide-review-ask-week" data-askreviewdelay='7'><?php _e('Ask me in a week', 'EWD_UFAQ'); ?></div>
275
- <div class='ewd-ufaq-hide-review-ask' id="ewd-ufaq-hide-review-ask-never" data-askreviewdelay='2000'><?php _e('Never ask me again', 'EWD_UFAQ'); ?></div>
276
  </div>
277
  </div>
278
  <?php } ?>
@@ -283,7 +283,7 @@ if (get_option("EWD_UFAQ_Update_Flag") == "Yes" or get_option("EWD_UFAQ_Install_
283
  <!-- A list of the products in the catalogue -->
284
  <div class="ewd-dashboard-footer">
285
  <div id='ewd-dashboard-updates' class='ewd-ufaq-updates postbox ewd-ufaq-postbox-collapsible'>
286
- <h3 class='hndle ewd-ufaq-dashboard-h3' id='ewd-recent-changes'><?php _e("Recent Changes", 'EWD_UFAQ'); ?> <i class="fa fa-cog" aria-hidden="true"></i></h3>
287
  <div class='ewd-dashboard-content' ><?php echo get_option('EWD_UFAQ_Changelog_Content'); ?></div>
288
  </div>
289
 
@@ -293,7 +293,7 @@ if (get_option("EWD_UFAQ_Update_Flag") == "Yes" or get_option("EWD_UFAQ_Install_
293
  </div>
294
 
295
  <div id="ewd-dashboard-plugins" class='ewd-ufaq-plugins postbox ewd-ufaq-postbox-collapsible' >
296
- <h3 class='hndle ewd-ufaq-dashboard-h3'><span><?php _e("Goes great with:", 'EWD_UFAQ') ?></span><i class="fa fa-plug" aria-hidden="true"></i></h3>
297
  <div class="inside">
298
  <div class="ewd-dashboard-plugin-icons">
299
  <div style="width:50%">
25
  <div id="ewd-ufaq-dashboard-top-upgrade">
26
  <div id="ewd-ufaq-dashboard-top-upgrade-left">
27
  <div id="ewd-dashboard-pro" class="postbox ewd-ufaq-postbox-collapsible" >
28
+ <div class="handlediv" title="Click to toggle"></div><h3 class='hndle ewd-ufaq-dashboard-h3'><span><?php _e("UPGRADE TO FULL VERSION", 'ultimate-faqs') ?></span></h3>
29
  <div class="inside">
30
+ <h3><?php _e("What you get by upgrading:", 'ultimate-faqs') ?></h3>
31
  <div class="clear"></div>
32
  <ul>
33
  <li><span>Ability to add a unique FAQ tab to each WooCommerce product page.</span></li>
43
  <div class="full-version-form-div">
44
  <form action="edit.php?post_type=ufaq" method="post">
45
  <div class="form-field form-required">
46
+ <!-- <label for="Catalogue_Name"><?php _e("Product Key", 'ultimate-faqs') ?></label> -->
47
+ <input name="Key" type="text" value="" size="40" placeholder="<?php _e('Enter product key or free trial code here', 'ultimate-faqs'); ?>" />
48
  </div>
49
+ <input type="submit" name="EWD_UFAQ_Upgrade_To_Full" value="<?php _e('UPGRADE', 'ultimate-faqs'); ?>">
50
  </form>
51
  </div>
52
  </div>
61
  <div class="topPart">
62
  <?php
63
  if(!get_option("EWD_UFAQ_Trial_Happening")){
64
+ _e("Want to try out the premium features first?", 'ultimate-faqs');
65
  }
66
  else{
67
+ _e("Your free trial is currently active", 'ultimate-faqs');
68
  }
69
  ?>
70
  </div>
93
  <div id="side-sortables" class="metabox-holder ">
94
  <div id="EWD_UFAQ_pro" class="postbox " >
95
  <div class="handlediv" title="Click to toggle"></div>
96
+ <h3 class='hndle'><span><?php _e("Thank You!", 'ultimate-faqs') ?></span></h3>
97
  <div class="inside">
98
+ <?php if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate FAQs plugin.", 'ultimate-faqs'); ?><br> <a href='https://www.youtube.com/channel/UCZPuaoetCJB1vZOmpnMxJNw'><?php _e("Subscribe to our YouTube channel ", 'ultimate-faqs'); ?></a> <?php _e("for tutorial videos on this and our other plugins!", 'ultimate-faqs');?> </li></ul>
99
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 1.3.1!", 'ultimate-faqs'); ?><br> <a href='https://wordpress.org/support/view/plugin-reviews/ultimate-faqs?filter=5'><?php _e("Please rate our plugin", 'ultimate-faqs'); ?></a> <?php _e("if you find Ultimate FAQs useful!", 'ultimate-faqs');?> </li></ul><?php } ?>
100
 
101
+ <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul>
102
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 2.2.9!", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul><?php } */ ?>
103
 
104
+ <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul>
105
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.0.16!", 'ultimate-faqs'); ?><br> <a href='http://wordpress.org/support/view/plugin-reviews/ultimate-product-catalogue'><?php _e("Please rate our plugin", 'ultimate-faqs'); ?></a> <?php _e("if you find the Ultimate Product Catalogue Plugin useful!", 'ultimate-faqs');?> </li></ul><?php } */ ?>
106
 
107
+ <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul>
108
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.4.8!", 'ultimate-faqs'); ?><br> <a href='http://wordpress.org/plugins/order-tracking/'><?php _e("Try out order tracking plugin ", 'ultimate-faqs'); ?></a> <?php _e("if you ship orders and find the Ultimate Product Catalogue Plugin useful!", 'ultimate-faqs');?> </li></ul><?php } */ ?>
109
 
110
+ <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul>
111
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 2.3.9!", 'ultimate-faqs'); ?><br> <a href='http://wordpress.org/support/topic/error-hunt'><?php _e("Please let us know about any small display/functionality errors. ", 'ultimate-faqs'); ?></a> <?php _e("We've noticed a couple, and would like to eliminate as many as possible.", 'ultimate-faqs');?> </li></ul><?php } */ ?>
112
 
113
+ <?php /* if (get_option("EWD_UFAQ_Install_Flag") == "Yes") { ?><ul><li><?php _e("Thanks for installing the Ultimate Product Catalogue Plugin.", 'ultimate-faqs'); ?><br> <a href='https://www.youtube.com/channel/UCZPuaoetCJB1vZOmpnMxJNw'><?php _e("Check out our YouTube channel ", 'ultimate-faqs'); ?></a> <?php _e("for tutorial videos on this and our other plugins!", 'ultimate-faqs');?> </li></ul>
114
+ <?php } elseif ($Full_Version == "Yes") { ?><ul><li><?php _e("Thanks for upgrading to version 3.5.0!", 'ultimate-faqs'); ?><br> <a href='http://www.facebook.com/EtoileWebDesign'><?php _e("Follow us on Facebook", 'ultimate-faqs'); ?></a> <?php _e("to suggest new features or hear about upcoming ones!", 'ultimate-faqs');?> </li></ul>
115
+ <?php } else { ?><ul><li><?php _e("Thanks for upgrading to version 3.4!", 'ultimate-faqs'); ?><br> <?php _e("Love the plugin but don't need the premium version? Help us speed up product support and development by donating. Thanks for using the plugin!", 'ultimate-faqs');?>
116
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
117
  <input type="hidden" name="cmd" value="_s-xclick">
118
  <input type="hidden" name="hosted_button_id" value="AQLMJFJ62GEFJ">
224
  $Dashboard_FAQs_Query = new WP_Query($args);
225
  $Dashboard_FAQs = $Dashboard_FAQs_Query->get_posts();
226
 
227
+ if (sizeOf($Dashboard_FAQs) == 0) {echo "<tr><td colspan='3'>" . __("No FAQs to display yet. Create an FAQ and then view it for it to be displayed here.", 'ultimate-faqs') . "</td></tr>";}
228
  else {
229
  foreach ($Dashboard_FAQs as $Dashboard_FAQ) { ?>
230
  <tr>
263
  <?php if ($Ask_Review_Date < time() and $Install_Time < time() - 3600*24*4) { ?>
264
  <div id='ewd-ufaq-review-ask-overlay'></div>
265
  <div class='ewd-ufaq-review-ask-popup'>
266
+ <div class='ewd-ufaq-review-ask-title'><?php _e('Thank You!', 'ultimate-faqs'); ?></div>
267
  <div class='ewd-ufaq-review-ask-content'>
268
+ <p><?php _e('We wanted to thank the users of our plugins for all of their great reviews recently.', 'ultimate-faqs'); ?></p>
269
+ <p><?php _e('Your positive feedback and constructive suggestions on how to improve our plugins make coming in to work every day worth it for us.', 'ultimate-faqs'); ?></p>
270
+ <p><strong><?php _e("Haven't had a chance to leave a review yet? You can do so at:", 'ultimate-faqs'); ?></strong></p>
271
  <a href='https://wordpress.org/support/plugin/ultimate-faqs/reviews/' target="_blank" class='ewd-ufaq-review-ask-content-link'>Leave a Review!</a>
272
  </div>
273
  <div class='ewd-ufaq-review-ask-footer-links'>
274
+ <div class='ewd-ufaq-hide-review-ask' id="ewd-ufaq-hide-review-ask-week" data-askreviewdelay='7'><?php _e('Ask me in a week', 'ultimate-faqs'); ?></div>
275
+ <div class='ewd-ufaq-hide-review-ask' id="ewd-ufaq-hide-review-ask-never" data-askreviewdelay='2000'><?php _e('Never ask me again', 'ultimate-faqs'); ?></div>
276
  </div>
277
  </div>
278
  <?php } ?>
283
  <!-- A list of the products in the catalogue -->
284
  <div class="ewd-dashboard-footer">
285
  <div id='ewd-dashboard-updates' class='ewd-ufaq-updates postbox ewd-ufaq-postbox-collapsible'>
286
+ <h3 class='hndle ewd-ufaq-dashboard-h3' id='ewd-recent-changes'><?php _e("Recent Changes", 'ultimate-faqs'); ?> <i class="fa fa-cog" aria-hidden="true"></i></h3>
287
  <div class='ewd-dashboard-content' ><?php echo get_option('EWD_UFAQ_Changelog_Content'); ?></div>
288
  </div>
289
 
293
  </div>
294
 
295
  <div id="ewd-dashboard-plugins" class='ewd-ufaq-plugins postbox ewd-ufaq-postbox-collapsible' >
296
+ <h3 class='hndle ewd-ufaq-dashboard-h3'><span><?php _e("Goes great with:", 'ultimate-faqs') ?></span><i class="fa fa-plug" aria-hidden="true"></i></h3>
297
  <div class="inside">
298
  <div class="ewd-dashboard-plugin-icons">
299
  <div style="width:50%">
html/ImportPage.php CHANGED
@@ -20,7 +20,7 @@
20
  <h4>Import FAQs from a spreadsheet</h4>
21
  <form method="post" action="admin.php?page=EWD-UFAQ-Options&DisplayPage=ImportPosts&Action=EWD_UFAQ_ImportFaqsFromSpreadsheet" enctype="multipart/form-data">
22
  <div class="form-field form-required">
23
- <label for="FAQs_Spreadsheet"><?php _e("Spreadhsheet Containing FAQs", 'EWD_UFAQ') ?></label><br />
24
  <input name="FAQs_Spreadsheet" id="FAQs_Spreadsheet" type="file" value=""/>
25
  </div>
26
 
20
  <h4>Import FAQs from a spreadsheet</h4>
21
  <form method="post" action="admin.php?page=EWD-UFAQ-Options&DisplayPage=ImportPosts&Action=EWD_UFAQ_ImportFaqsFromSpreadsheet" enctype="multipart/form-data">
22
  <div class="form-field form-required">
23
+ <label for="FAQs_Spreadsheet"><?php _e("Spreadhsheet Containing FAQs", 'ultimate-faqs') ?></label><br />
24
  <input name="FAQs_Spreadsheet" id="FAQs_Spreadsheet" type="file" value=""/>
25
  </div>
26
 
html/OptionsPage.php CHANGED
@@ -130,7 +130,7 @@
130
  </div>
131
 
132
  <br />
133
- <h3 id="general-options" class="ufaq-options-page-tab-title"><?php _e('General', 'EWD_UFAQ'); ?></h3>
134
  <table class="form-table">
135
  <tr>
136
  <th scope="row">Custom CSS</th>
@@ -194,7 +194,7 @@
194
  </table>
195
 
196
  <br />
197
- <h3 id="functionality-options" class="ufaq-options-page-tab-title"><?php _e('Functionality', 'EWD_UFAQ'); ?></h3>
198
 
199
  <table class="form-table">
200
  <tr>
@@ -240,7 +240,7 @@
240
  </table>
241
 
242
  <br />
243
- <h3 id="display-options" class="ufaq-options-page-tab-title"><?php _e('Display', 'EWD_UFAQ'); ?></h3>
244
 
245
  <table class="form-table">
246
  <tr>
@@ -310,7 +310,7 @@
310
  <div id='Premium' class='ufaq-option-set ufaq-hidden'>
311
  <h2 id='label-premium-options' class='ufaq-options-page-tab-title'>Premium Options</h2>
312
  <br />
313
- <h3 id="premium-display-options" class="ufaq-options-page-tab-title"><?php _e('Display', 'EWD_UFAQ'); ?></h3>
314
  <table class="form-table">
315
  <tr>
316
  <th scope="row">FAQ Display Style</th>
@@ -366,7 +366,7 @@
366
  </table>
367
 
368
  <br />
369
- <h3 id="premium-general-options" class="ufaq-options-page-tab-title"><?php _e('General', 'EWD_UFAQ'); ?></h3>
370
 
371
  <table class="form-table">
372
  <tr>
@@ -425,7 +425,7 @@
425
  </table>
426
 
427
  <br />
428
- <h3 id="premium-woocommerce-options" class="ufaq-options-page-tab-title"><?php _e('WooCommerce', 'EWD_UFAQ'); ?></h3>
429
 
430
  <table class="form-table">
431
  <tr>
@@ -451,7 +451,7 @@
451
  </table>
452
 
453
  <br />
454
- <h3 id="premium-submit-faq-options" class="ufaq-options-page-tab-title"><?php _e('Submit FAQ', 'EWD_UFAQ'); ?></h3>
455
 
456
  <table class="form-table">
457
  <tr>
@@ -546,8 +546,8 @@
546
  </table>
547
 
548
  <div class='ufaq-order-table'>
549
- <h3><?php echo __("Order Table", 'EWD_UFAQ'); ?></h3>
550
- <p><?php _e("Drag and drop the posts below to reorder them, if you have 'Selected Order' set for the 'FAQ Ordering' option", 'EWD_UFAQ'); ?></p>
551
  <?php
552
  if ($UFAQ_Full_Version != "Yes") {echo "<p>Upgrade to premium to access this feature.</p>";}
553
  else {
@@ -562,10 +562,10 @@
562
  <table class="wp-list-table widefat tags sorttable ewd-ufaq-list">
563
  <thead>
564
  <tr>
565
- <th><?php _e("Question", 'EWD_UFAQ') ?></th>
566
- <th><?php _e("Views", 'EWD_UFAQ') ?></th>
567
- <th><?php _e("Categories", 'EWD_UFAQ') ?></th>
568
- <th><?php _e("Tags", 'EWD_UFAQ') ?></th>
569
  </tr>
570
  </thead>
571
  <tbody>
@@ -595,10 +595,10 @@
595
  </tbody>
596
  <tfoot>
597
  <tr>
598
- <th><?php _e("Question", 'EWD_UFAQ') ?></th>
599
- <th><?php _e("Views", 'EWD_UFAQ') ?></th>
600
- <th><?php _e("Categories", 'EWD_UFAQ') ?></th>
601
- <th><?php _e("Tags", 'EWD_UFAQ') ?></th>
602
  </tr>
603
  </tfoot>
604
  </table>
@@ -677,61 +677,61 @@
677
  <div class='ufaq-subsection'>
678
  <div class='ufaq-subsection-content' id='ufaq-subsection-inline'>
679
  <div class='ufaq-option ufaq-label-option'>
680
- <?php _e("Posted", 'EWD_UFAQ')?>
681
  <fieldset>
682
  <input type='text' name='posted_label' value='<?php echo $Posted_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
683
  </fieldset>
684
  </div>
685
  <div class='ufaq-option ufaq-label-option'>
686
- <?php _e("By", 'EWD_UFAQ')?>
687
  <fieldset>
688
  <input type='text' name='by_label' value='<?php echo $By_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
689
  </fieldset>
690
  </div>
691
  <div class='ufaq-option ufaq-label-option'>
692
- <?php _e("On", 'EWD_UFAQ')?>
693
  <fieldset>
694
  <input type='text' name='on_label' value='<?php echo $On_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
695
  </fieldset>
696
  </div>
697
  <div class='ufaq-option ufaq-label-option'>
698
- <?php _e("Categories", 'EWD_UFAQ')?>
699
  <fieldset>
700
  <input type='text' name='category_label' value='<?php echo $Category_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
701
  </fieldset>
702
  </div>
703
  <div class='ufaq-option ufaq-label-option'>
704
- <?php _e("Tags", 'EWD_UFAQ')?>
705
  <fieldset>
706
  <input type='text' name='tag_label' value='<?php echo $Tag_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
707
  </fieldset>
708
  </div>
709
  <div class='ufaq-option ufaq-label-option'>
710
- <?php _e("Enter your question", 'EWD_UFAQ')?>
711
  <fieldset>
712
  <input type='text' name='enter_question_label' value='<?php echo $Enter_Question_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
713
  </fieldset>
714
  </div>
715
  <div class='ufaq-option ufaq-label-option'>
716
- <?php _e("Search", 'EWD_UFAQ')?>
717
  <fieldset>
718
  <input type='text' name='search_label' value='<?php echo $Search_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
719
  </fieldset>
720
  </div>
721
  <div class='ufaq-option ufaq-label-option'>
722
- <?php _e("Permalink", 'EWD_UFAQ')?>
723
  <fieldset>
724
  <input type='text' name='permalink_label' value='<?php echo $Permalink_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
725
  </fieldset>
726
  </div>
727
  <div class='ufaq-option ufaq-label-option'>
728
- <?php _e("Back To Top", 'EWD_UFAQ')?>
729
  <fieldset>
730
  <input type='text' name='back_to_top_label' value='<?php echo $Back_To_Top_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
731
  </fieldset>
732
  </div>
733
  <div class='ufaq-option ufaq-label-option'>
734
- <?php _e("WooCommerce Tab Label", 'EWD_UFAQ')?>
735
  <fieldset>
736
  <input type='text' name='woocommerce_tab_label' value='<?php echo $WooCommerce_Tab_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
737
  </fieldset>
@@ -741,67 +741,67 @@
741
  <div class='ufaq-subsection'>
742
  <div class='ufaq-subsection-content' id='ufaq-subsection-inline'>
743
  <div class='ufaq-option ufaq-label-option'>
744
- <?php _e("Thank you for submitting an FAQ", 'EWD_UFAQ')?>
745
  <fieldset>
746
  <input type='text' name='thank_you_submit_label' value='<?php echo $Thank_You_Submit_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
747
  </fieldset>
748
  </div>
749
  <div class='ufaq-option ufaq-label-option'>
750
- <?php _e("Submit a Question", 'EWD_UFAQ')?>
751
  <fieldset>
752
  <input type='text' name='submit_question_label' value='<?php echo $Submit_Question_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
753
  </fieldset>
754
  </div>
755
  <div class='ufaq-option ufaq-label-option'>
756
- <?php _e("Please fill out the form below to submit a question.", 'EWD_UFAQ')?>
757
  <fieldset>
758
  <input type='text' name='please_fill_form_below_label' value='<?php echo $Please_Fill_Form_Below_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
759
  </fieldset>
760
  </div>
761
  <div class='ufaq-option ufaq-label-option'>
762
- <?php _e("Send Question", 'EWD_UFAQ')?>
763
  <fieldset>
764
  <input type='text' name='send_question_label' value='<?php echo $Send_Question_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
765
  </fieldset>
766
  </div>
767
  <div class='ufaq-option ufaq-label-option'>
768
- <?php _e("Question Title", 'EWD_UFAQ')?>
769
  <fieldset>
770
  <input type='text' name='question_title_label' value='<?php echo $Question_Title_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
771
  </fieldset>
772
  </div>
773
  <div class='ufaq-option ufaq-label-option'>
774
- <?php _e("What question is being answered?", 'EWD_UFAQ')?>
775
  <fieldset>
776
  <input type='text' name='what_question_being_answered_label' value='<?php echo $What_Question_Being_Answered_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
777
  </fieldset>
778
  </div>
779
  <div class='ufaq-option ufaq-label-option'>
780
- <?php _e("Proposed Answer", 'EWD_UFAQ')?>
781
  <fieldset>
782
  <input type='text' name='proposed_answer_label' value='<?php echo $Proposed_Answer_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
783
  </fieldset>
784
  </div>
785
  <div class='ufaq-option ufaq-label-option'>
786
- <?php _e("Question Author", 'EWD_UFAQ')?>
787
  <fieldset>
788
  <input type='text' name='review_author_label' value='<?php echo $Review_Author_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
789
  </fieldset>
790
  </div>
791
  <div class='ufaq-option ufaq-label-option'>
792
- <?php _e("What name should be displayed with your question?", 'EWD_UFAQ')?>
793
  <fieldset>
794
  <input type='text' name='what_name_with_review_label' value='<?php echo $What_Name_With_Review_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
795
  </fieldset>
796
  </div>
797
  <div class='ufaq-option ufaq-label-option'>
798
- <?php _e("Retrieving Results", 'EWD_UFAQ')?>
799
  <fieldset>
800
  <input type='text' name='retrieving_results' value='<?php echo $Retrieving_Results; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
801
  </fieldset>
802
  </div>
803
  <div class='ufaq-option ufaq-label-option'>
804
- <?php _e("No results FAQ's contained the term '%s'", 'EWD_UFAQ')?>
805
  <fieldset>
806
  <input type='text' name='no_results_found_text' value='<?php echo $No_Results_Found_Text; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
807
  </fieldset>
130
  </div>
131
 
132
  <br />
133
+ <h3 id="general-options" class="ufaq-options-page-tab-title"><?php _e('General', 'ultimate-faqs'); ?></h3>
134
  <table class="form-table">
135
  <tr>
136
  <th scope="row">Custom CSS</th>
194
  </table>
195
 
196
  <br />
197
+ <h3 id="functionality-options" class="ufaq-options-page-tab-title"><?php _e('Functionality', 'ultimate-faqs'); ?></h3>
198
 
199
  <table class="form-table">
200
  <tr>
240
  </table>
241
 
242
  <br />
243
+ <h3 id="display-options" class="ufaq-options-page-tab-title"><?php _e('Display', 'ultimate-faqs'); ?></h3>
244
 
245
  <table class="form-table">
246
  <tr>
310
  <div id='Premium' class='ufaq-option-set ufaq-hidden'>
311
  <h2 id='label-premium-options' class='ufaq-options-page-tab-title'>Premium Options</h2>
312
  <br />
313
+ <h3 id="premium-display-options" class="ufaq-options-page-tab-title"><?php _e('Display', 'ultimate-faqs'); ?></h3>
314
  <table class="form-table">
315
  <tr>
316
  <th scope="row">FAQ Display Style</th>
366
  </table>
367
 
368
  <br />
369
+ <h3 id="premium-general-options" class="ufaq-options-page-tab-title"><?php _e('General', 'ultimate-faqs'); ?></h3>
370
 
371
  <table class="form-table">
372
  <tr>
425
  </table>
426
 
427
  <br />
428
+ <h3 id="premium-woocommerce-options" class="ufaq-options-page-tab-title"><?php _e('WooCommerce', 'ultimate-faqs'); ?></h3>
429
 
430
  <table class="form-table">
431
  <tr>
451
  </table>
452
 
453
  <br />
454
+ <h3 id="premium-submit-faq-options" class="ufaq-options-page-tab-title"><?php _e('Submit FAQ', 'ultimate-faqs'); ?></h3>
455
 
456
  <table class="form-table">
457
  <tr>
546
  </table>
547
 
548
  <div class='ufaq-order-table'>
549
+ <h3><?php echo __("Order Table", 'ultimate-faqs'); ?></h3>
550
+ <p><?php _e("Drag and drop the posts below to reorder them, if you have 'Selected Order' set for the 'FAQ Ordering' option", 'ultimate-faqs'); ?></p>
551
  <?php
552
  if ($UFAQ_Full_Version != "Yes") {echo "<p>Upgrade to premium to access this feature.</p>";}
553
  else {
562
  <table class="wp-list-table widefat tags sorttable ewd-ufaq-list">
563
  <thead>
564
  <tr>
565
+ <th><?php _e("Question", 'ultimate-faqs') ?></th>
566
+ <th><?php _e("Views", 'ultimate-faqs') ?></th>
567
+ <th><?php _e("Categories", 'ultimate-faqs') ?></th>
568
+ <th><?php _e("Tags", 'ultimate-faqs') ?></th>
569
  </tr>
570
  </thead>
571
  <tbody>
595
  </tbody>
596
  <tfoot>
597
  <tr>
598
+ <th><?php _e("Question", 'ultimate-faqs') ?></th>
599
+ <th><?php _e("Views", 'ultimate-faqs') ?></th>
600
+ <th><?php _e("Categories", 'ultimate-faqs') ?></th>
601
+ <th><?php _e("Tags", 'ultimate-faqs') ?></th>
602
  </tr>
603
  </tfoot>
604
  </table>
677
  <div class='ufaq-subsection'>
678
  <div class='ufaq-subsection-content' id='ufaq-subsection-inline'>
679
  <div class='ufaq-option ufaq-label-option'>
680
+ <?php _e("Posted", 'ultimate-faqs')?>
681
  <fieldset>
682
  <input type='text' name='posted_label' value='<?php echo $Posted_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
683
  </fieldset>
684
  </div>
685
  <div class='ufaq-option ufaq-label-option'>
686
+ <?php _e("By", 'ultimate-faqs')?>
687
  <fieldset>
688
  <input type='text' name='by_label' value='<?php echo $By_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
689
  </fieldset>
690
  </div>
691
  <div class='ufaq-option ufaq-label-option'>
692
+ <?php _e("On", 'ultimate-faqs')?>
693
  <fieldset>
694
  <input type='text' name='on_label' value='<?php echo $On_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
695
  </fieldset>
696
  </div>
697
  <div class='ufaq-option ufaq-label-option'>
698
+ <?php _e("Categories", 'ultimate-faqs')?>
699
  <fieldset>
700
  <input type='text' name='category_label' value='<?php echo $Category_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?> />
701
  </fieldset>
702
  </div>
703
  <div class='ufaq-option ufaq-label-option'>
704
+ <?php _e("Tags", 'ultimate-faqs')?>
705
  <fieldset>
706
  <input type='text' name='tag_label' value='<?php echo $Tag_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
707
  </fieldset>
708
  </div>
709
  <div class='ufaq-option ufaq-label-option'>
710
+ <?php _e("Enter your question", 'ultimate-faqs')?>
711
  <fieldset>
712
  <input type='text' name='enter_question_label' value='<?php echo $Enter_Question_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
713
  </fieldset>
714
  </div>
715
  <div class='ufaq-option ufaq-label-option'>
716
+ <?php _e("Search", 'ultimate-faqs')?>
717
  <fieldset>
718
  <input type='text' name='search_label' value='<?php echo $Search_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
719
  </fieldset>
720
  </div>
721
  <div class='ufaq-option ufaq-label-option'>
722
+ <?php _e("Permalink", 'ultimate-faqs')?>
723
  <fieldset>
724
  <input type='text' name='permalink_label' value='<?php echo $Permalink_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
725
  </fieldset>
726
  </div>
727
  <div class='ufaq-option ufaq-label-option'>
728
+ <?php _e("Back To Top", 'ultimate-faqs')?>
729
  <fieldset>
730
  <input type='text' name='back_to_top_label' value='<?php echo $Back_To_Top_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
731
  </fieldset>
732
  </div>
733
  <div class='ufaq-option ufaq-label-option'>
734
+ <?php _e("WooCommerce Tab Label", 'ultimate-faqs')?>
735
  <fieldset>
736
  <input type='text' name='woocommerce_tab_label' value='<?php echo $WooCommerce_Tab_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
737
  </fieldset>
741
  <div class='ufaq-subsection'>
742
  <div class='ufaq-subsection-content' id='ufaq-subsection-inline'>
743
  <div class='ufaq-option ufaq-label-option'>
744
+ <?php _e("Thank you for submitting an FAQ", 'ultimate-faqs')?>
745
  <fieldset>
746
  <input type='text' name='thank_you_submit_label' value='<?php echo $Thank_You_Submit_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
747
  </fieldset>
748
  </div>
749
  <div class='ufaq-option ufaq-label-option'>
750
+ <?php _e("Submit a Question", 'ultimate-faqs')?>
751
  <fieldset>
752
  <input type='text' name='submit_question_label' value='<?php echo $Submit_Question_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
753
  </fieldset>
754
  </div>
755
  <div class='ufaq-option ufaq-label-option'>
756
+ <?php _e("Please fill out the form below to submit a question.", 'ultimate-faqs')?>
757
  <fieldset>
758
  <input type='text' name='please_fill_form_below_label' value='<?php echo $Please_Fill_Form_Below_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
759
  </fieldset>
760
  </div>
761
  <div class='ufaq-option ufaq-label-option'>
762
+ <?php _e("Send Question", 'ultimate-faqs')?>
763
  <fieldset>
764
  <input type='text' name='send_question_label' value='<?php echo $Send_Question_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
765
  </fieldset>
766
  </div>
767
  <div class='ufaq-option ufaq-label-option'>
768
+ <?php _e("Question Title", 'ultimate-faqs')?>
769
  <fieldset>
770
  <input type='text' name='question_title_label' value='<?php echo $Question_Title_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
771
  </fieldset>
772
  </div>
773
  <div class='ufaq-option ufaq-label-option'>
774
+ <?php _e("What question is being answered?", 'ultimate-faqs')?>
775
  <fieldset>
776
  <input type='text' name='what_question_being_answered_label' value='<?php echo $What_Question_Being_Answered_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
777
  </fieldset>
778
  </div>
779
  <div class='ufaq-option ufaq-label-option'>
780
+ <?php _e("Proposed Answer", 'ultimate-faqs')?>
781
  <fieldset>
782
  <input type='text' name='proposed_answer_label' value='<?php echo $Proposed_Answer_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
783
  </fieldset>
784
  </div>
785
  <div class='ufaq-option ufaq-label-option'>
786
+ <?php _e("Question Author", 'ultimate-faqs')?>
787
  <fieldset>
788
  <input type='text' name='review_author_label' value='<?php echo $Review_Author_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
789
  </fieldset>
790
  </div>
791
  <div class='ufaq-option ufaq-label-option'>
792
+ <?php _e("What name should be displayed with your question?", 'ultimate-faqs')?>
793
  <fieldset>
794
  <input type='text' name='what_name_with_review_label' value='<?php echo $What_Name_With_Review_Label; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
795
  </fieldset>
796
  </div>
797
  <div class='ufaq-option ufaq-label-option'>
798
+ <?php _e("Retrieving Results", 'ultimate-faqs')?>
799
  <fieldset>
800
  <input type='text' name='retrieving_results' value='<?php echo $Retrieving_Results; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
801
  </fieldset>
802
  </div>
803
  <div class='ufaq-option ufaq-label-option'>
804
+ <?php _e("No results FAQ's contained the term '%s'", 'ultimate-faqs')?>
805
  <fieldset>
806
  <input type='text' name='no_results_found_text' value='<?php echo $No_Results_Found_Text; ?>' <?php if ($UFAQ_Full_Version != "Yes") {echo "disabled";} ?>/>
807
  </fieldset>
readme.txt CHANGED
@@ -247,6 +247,9 @@ Video 3 - FAQs Ordering
247
  13. View of FAQ custom fields in the admin
248
 
249
  == Changelog ==
 
 
 
250
  = 1.5.32 =
251
  - Minor admin CSS update
252
 
247
  13. View of FAQ custom fields in the admin
248
 
249
  == Changelog ==
250
+ = 1.5.33 =
251
+ - Updated the text domain of the plugin, to use the improved WordPress standard
252
+
253
  = 1.5.32 =
254
  - Minor admin CSS update
255